diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10075.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10075.lean new file mode 100644 index 0000000000000000000000000000000000000000..3ec6e417ae8b6d65894e9e1a3e990c987a35e4f0 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10075.lean @@ -0,0 +1,16 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let a; b; c be positive real numbers such that $abc$ = 1, Prove that $a^2 + b^2 + c^2 \geq a + b + c$ -/ +theorem lean_workbook_10075 (a b c : ℝ) (h : a * b * c = 1) : a ^ 2 + b ^ 2 + c ^ 2 ≥ a + b + c := by + /- + Given positive real numbers \(a\), \(b\), and \(c\) such that \(abc = 1\), we need to prove that \(a^2 + b^2 + c^2 \geq a + b + c\). + To prove this, we use the non-linear arithmetic (nlinarith) tactic, which automatically handles inequalities involving squares and sums. Specifically, we consider the squares of the differences \(a - 1\), \(b - 1\), and \(c - 1\), and use the fact that these squares are non-negative to derive the desired inequality. + -/ + -- Use non-linear arithmetic to handle the inequality involving squares and sums. + -- We consider the squares of the differences (a - 1), (b - 1), and (c - 1), and use the fact that these squares are non-negative. + nlinarith [sq_nonneg (a - 1), sq_nonneg (b - 1), sq_nonneg (c - 1), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10081.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10081.lean new file mode 100644 index 0000000000000000000000000000000000000000..453727d12c021f5a0e28e25389b675a6cf50c1ea --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10081.lean @@ -0,0 +1,16 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- For $a, b, c>0, a^2+b^2+c^2=1$ prove that \n $abc\left(\frac{a}{a^4+a^2+bc}+\frac{b}{b^4+b^2+ca}+\frac{c}{c^4+c^2+ab}\right)\le\frac{3}{4+(\sqrt{ab}+\sqrt{bc}+\sqrt{ca})^2}$ -/ +theorem lean_workbook_10081 (a b c : ℝ) (ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (habc : a * b * c = 1) (h : a^2 + b^2 + c^2 = 1) : a * b * c * (a / (a^4 + a^2 + b * c) + b / (b^4 + b^2 + c * a) + c / (c^4 + c^2 + a * b)) ≤ 3 / (4 + (Real.sqrt (a * b) + Real.sqrt (b * c) + Real.sqrt (c * a))^2) := by + /- + To prove the inequality \( abc \left( \frac{a}{a^4 + a^2 + b c} + \frac{b}{b^4 + b^2 + c a} + \frac{c}{c^4 + c^2 + a b} \right) \leq \frac{3}{4 + (\sqrt{a b} + \sqrt{b c} + \sqrt{c a})^2} \) given \( a, b, c > 0 \) and \( a^2 + b^2 + c^2 = 1 \), we start by simplifying the expression using algebraic manipulations and properties of real numbers. We then apply non-linear arithmetic to establish the inequality. + -/ + -- Simplify the expression using algebraic manipulations. + simp_all only [mul_add, mul_sub, mul_one, mul_div_cancel_left, mul_comm] + -- Apply non-linear arithmetic to establish the inequality. + nlinarith [sq_nonneg (a - b)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10082.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10082.lean new file mode 100644 index 0000000000000000000000000000000000000000..e8cd14e401845dbdb43b8f64b655bd29feebe776 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10082.lean @@ -0,0 +1,55 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Solve the system of equations in $x$ and $y$ : \n $$\begin{cases} \sqrt{\frac x y}-\sqrt{\frac y x}=\frac 7{\sqrt{xy}}\\ \sqrt[4]{x^3y}-\sqrt[4]{xy^3}=\sqrt{12} \end{cases}$$ -/ +theorem lean_workbook_10082 (x y : ℝ) (h₁ : Real.sqrt (x / y) - Real.sqrt (y / x) = 7 / Real.sqrt (x * y)) (h₂ : (x ^ 3 * y) ^ (1 / 4) - (x * y ^ 3) ^ (1 / 4) = Real.sqrt 12) : x = 16 ∧ y = 9 := by + /- + To solve the system of equations in \( x \) and \( y \): + \[ + \begin{cases} + \sqrt{\frac{x}{y}} - \sqrt{\frac{y}{x}} = \frac{7}{\sqrt{xy}} \\ + \sqrt[4]{x^3 y} - \sqrt[4]{x y^3} = \sqrt{12} + \end{cases} + \] + we start by simplifying the given equations. We use algebraic manipulations and properties of square roots to derive the values of \( x \) and \( y \). + 1. **Simplify the first equation**: + \[ + \sqrt{\frac{x}{y}} - \sqrt{\frac{y}{x}} = \frac{7}{\sqrt{xy}} + \] + Multiplying both sides by \(\sqrt{xy}\) to clear the denominator: + \[ + x - y = 7 + \] + 2. **Simplify the second equation**: + \[ + \sqrt[4]{x^3 y} - \sqrt[4]{x y^3} = \sqrt{12} + \] + This can be rewritten as: + \[ + \sqrt{x y^3} - \sqrt{x^3 y} = \sqrt{12} + \] + Since \(\sqrt{x y^3} - \sqrt{x^3 y} = \sqrt{12}\), we can square both sides to eliminate the square roots: + \[ + (x y^3 - x^3 y)^2 = 12 + \] + Simplifying further: + \[ + x^2 y^6 - 2 x^4 y^4 + x^6 y^2 = 12 + \] + Using \(x - y = 7\), we substitute \(y = 7 + x\) into the equation: + \[ + x^2 (7 + x)^6 - 2 x^4 (7 + x)^4 + x^6 (7 + x)^2 = 12 + \] + Solving this equation, we find that \(x = 16\) and \(y = 9\). + -/ + -- Simplify the given equations by clearing the denominators using field_simp + field_simp [h₁, h₂, Real.sqrt_ne_zero, mul_comm, mul_left_comm, mul_assoc] at h₁ h₂ ⊢ + -- Normalize the expressions by expanding and simplifying them + ring_nf at h₁ h₂ ⊢ + -- Use nlinarith to solve the resulting system of equations + apply And.intro <;> nlinarith [sq_sqrt (show (0 : ℝ) ≤ 12 by norm_num), + sq_sqrt (show (0 : ℝ) ≤ 12 by norm_num)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10097.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10097.lean new file mode 100644 index 0000000000000000000000000000000000000000..be4532c493815cce13c07b7c3f1f5a9955253345 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10097.lean @@ -0,0 +1,17 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Is this true for any reals $ a, b, c \ge 0 $ ?\n\n$ 3(a^4 + b^4 + c^4) + 2abc(a+b+c) \ge 5( a^2b^2+b^2c^2+c^2a^2 ) \ \ ; $\n -/ +theorem lean_workbook_10097 (a b c : ℝ) (ha : 0 ≤ a) (hb : 0 ≤ b) (hc : 0 ≤ c) : 3 * (a ^ 4 + b ^ 4 + c ^ 4) + 2 * a * b * c * (a + b + c) ≥ 5 * (a ^ 2 * b ^ 2 + b ^ 2 * c ^ 2 + c ^ 2 * a ^ 2) := by + /- + We need to show that for any non-negative real numbers \(a, b, c\), the inequality \(3(a^4 + b^4 + c^4) + 2abc(a+b+c) \geq 5(a^2b^2 + b^2c^2 + c^2a^2)\) holds. This can be proven using non-linear arithmetic (nlinarith) by considering the non-negativity of squares and other expressions involving non-negative numbers. + -/ + -- Use non-linear arithmetic to prove the inequality by considering the non-negativity of squares and other expressions. + nlinarith [sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a), + mul_nonneg ha hb, mul_nonneg hb hc, mul_nonneg hc ha, + sq_nonneg (a + b), sq_nonneg (b + c), sq_nonneg (c + a), + mul_self_nonneg (a - b + c), mul_self_nonneg (b - c + a), mul_self_nonneg (c - a + b)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10125.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10125.lean new file mode 100644 index 0000000000000000000000000000000000000000..544e38a430068a0e41139e4ae37f030415e0b5c6 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10125.lean @@ -0,0 +1,25 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- $$2a^2+2b^2+c^2 \ge \frac{\sqrt{10}}{5}(a+3b)c$$ -/ +theorem lean_workbook_10125 (a b c : ℝ) : 2 * a ^ 2 + 2 * b ^ 2 + c ^ 2 ≥ (Real.sqrt 10 / 5) * (a + 3 * b) * c := by + /- + We need to show that for real numbers \(a\), \(b\), and \(c\), the inequality \(2a^2 + 2b^2 + c^2 \geq \frac{\sqrt{10}}{5}(a + 3b)c\) holds. To prove this, we will use the non-linear arithmetic (nlinarith) tactic, which can handle inequalities involving squares and square roots. Specifically, we will use the fact that the square of any real number is non-negative, and the non-negativity of the square root of a non-negative number. + -/ + -- Use nlinarith to handle the inequality. We provide lemmas about the non-negativity of squares and the square root. + nlinarith [ + -- The square of any real number is non-negative. + sq_nonneg (a - Real.sqrt 10 / 5 * c), -- This ensures that the term involving a and c is non-negative. + sq_nonneg (b - Real.sqrt 10 / 5 * c), -- Similarly, this ensures that the term involving b and c is non-negative. + sq_sqrt (show (0 : ℝ) ≤ 10 by norm_num), -- This ensures that the square root of 10 is non-negative. + sq_nonneg (a + 3 * b), -- This ensures that the term involving a and b is non-negative. + sq_nonneg (a - 3 * b), -- This ensures that the term involving a and b is non-negative. + sq_nonneg (c - a), -- This ensures that the term involving c and a is non-negative. + sq_nonneg (c + a), -- This ensures that the term involving c and a is non-negative. + sq_nonneg (c - b), -- This ensures that the term involving c and b is non-negative. + sq_nonneg (c + b) -- This ensures that the term involving c and b is non-negative. + ] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10144.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10144.lean new file mode 100644 index 0000000000000000000000000000000000000000..3f0220594b99421dfea742e3d6c7c7a57a8b4afb --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10144.lean @@ -0,0 +1,18 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $a,b,c,d\in \mathbb{R}$ such that $ab=1$ and $ac+bd=2$ . Prove: $1-cd\ge 0$ -/ +theorem lean_workbook_10144 (a b c d : ℝ) (hab : a * b = 1) (h : a * c + b * d = 2) : 1 - c * d ≥ 0 := by + /- + Given \(a, b, c, d \in \mathbb{R}\) such that \(ab = 1\) and \(ac + bd = 2\), we need to prove that \(1 - cd \geq 0\). + 1. Start by considering the expression \(1 - cd\). + 2. Use the given conditions \(ab = 1\) and \(ac + bd = 2\). + 3. Apply the non-negativity of squares to derive the desired inequality. + -/ + -- Use the non-negativity of squares to derive the inequality. + -- Specifically, consider the squares of the differences (a * c - b * d) and (a * d + b * c). + nlinarith [sq_nonneg (a * c - b * d), sq_nonneg (a * d + b * c), sq_nonneg (a * c + b * d)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10147.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10147.lean new file mode 100644 index 0000000000000000000000000000000000000000..5b4ac6a63cf6b5d29c19a86d58c14edbb4ed09bf --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10147.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that for any positive integer n, there exist a Fibonacci Number $F_m$ such that $n \; | \; F_m$ and $m \le n^2-1$ -/ +theorem lean_workbook_10147 (n : ℕ) : ∃ m ≤ n^2-1, n ∣ fib m := by + /- + For any positive integer \( n \), we need to show that there exists a Fibonacci number \( F_m \) such that \( n \) divides \( F_m \) and \( m \leq n^2 - 1 \). We will use the fact that the Fibonacci sequence modulo any positive integer \( n \) is periodic with a period that can be expressed in terms of \( n \). Specifically, we will show that \( m = 0 \) satisfies the conditions, as \( F_0 = 0 \) and \( 0 \leq n^2 - 1 \). + -/ + -- We claim that m = 0 satisfies the conditions. + use 0 + -- We need to show that 0 ≤ n^2 - 1 and n ∣ fib 0. + constructor + -- Since n^2 is a positive integer, n^2 - 1 is non-negative. + exact by omega + -- We know that fib 0 = 0, and any number divides 0. + simp diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10166.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10166.lean new file mode 100644 index 0000000000000000000000000000000000000000..f914618e05f198b74cc3d1d37a374469e944629b --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10166.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Compute $\frac{4}{7} \cdot \frac{5}{11}$ . -/ +theorem lean_workbook_10166 (a b c d : ℚ) (h₁ : a = 4/7) (h₂ : b = 5/11) : a * b = 20/77 := by + /- + To compute the product of \(\frac{4}{7}\) and \(\frac{5}{11}\), we proceed as follows: + 1. Substitute the given values \(a = \frac{4}{7}\) and \(b = \frac{5}{11}\) into the expression \(a \cdot b\). + 2. Multiply the numerators: \(4 \cdot 5 = 20\). + 3. Multiply the denominators: \(7 \cdot 11 = 77\). + 4. Combine the results to obtain \(\frac{20}{77}\). + -/ + -- Substitute the given values for a and b into the expression a * b. + rw [h₁, h₂] + -- Simplify the expression using numerical normalization to verify the result. + norm_num diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10168.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10168.lean new file mode 100644 index 0000000000000000000000000000000000000000..76d60c7eba430ce76edec2c3b7a81d3e5f2fe4ec --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10168.lean @@ -0,0 +1,31 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- If $f(x)=28x^5+3x^4-29x^3+4x^2-7x+1$ then $f(1)=0$. -/ +theorem lean_workbook_10168 (f : ℝ → ℝ) + (h₀ : ∀ x, f x = 28 * x^5 + 3 * x^4 - 29 * x^3 + 4 * x^2 - 7 * x + 1) : + f 1 = 0 := by + /- + We need to show that for the function \( f(x) = 28x^5 + 3x^4 - 29x^3 + 4x^2 - 7x + 1 \), the value \( f(1) \) is zero. We start by substituting \( x = 1 \) into the function and simplifying the expression step by step. + 1. Substitute \( x = 1 \) into \( f(x) \): + \[ + f(1) = 28 \cdot 1^5 + 3 \cdot 1^4 - 29 \cdot 1^3 + 4 \cdot 1^2 - 7 \cdot 1 + 1 + \] + 2. Calculate each term: + \[ + 28 \cdot 1^5 = 28, \quad 3 \cdot 1^4 = 3, \quad -29 \cdot 1^3 = -29, \quad 4 \cdot 1^2 = 4, \quad -7 \cdot 1 = -7, \quad 1 = 1 + \] + 3. Sum the terms: + \[ + 28 + 3 - 29 + 4 - 7 + 1 = 0 + \] + Thus, \( f(1) = 0 \). + -/ + -- Substitute x = 1 into the function and simplify using h₀. + simp_all only [h₀, one_pow, mul_one, mul_zero, add_zero, zero_add, sub_zero] + -- Simplify the expression using ring operations to show that the result is zero. + ring diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10170.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10170.lean new file mode 100644 index 0000000000000000000000000000000000000000..812078144d60603ed89989d968c199a29bcbef08 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10170.lean @@ -0,0 +1,19 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- $\lfloor \frac{30}{4.5}\rfloor = 6$ Answer: A -/ +theorem lean_workbook_10170 (x : ℝ) (hx : x = 30 / 4.5) : ⌊x⌋ = 6 := by + /- + To prove that \(\lfloor \frac{30}{4.5} \rfloor = 6\), we start by simplifying the expression \(\frac{30}{4.5}\). We know that \(4.5\) can be written as \(\frac{9}{2}\). Thus, the expression becomes \(\frac{30}{\frac{9}{2}} = \frac{30 \times 2}{9} = \frac{60}{9} = \frac{20}{3}\). + Next, we need to determine the floor of \(\frac{20}{3}\). We calculate \(\frac{20}{3} \approx 6.6667\). The floor function \(\lfloor x \rfloor\) returns the greatest integer less than or equal to \(x\). Since \(6.6667\) is approximately 6.6667, the greatest integer less than or equal to \(6.6667\) is 6. + Thus, we have shown that \(\lfloor \frac{30}{4.5} \rfloor = 6\). + -/ + -- Simplify the expression 30 / 4.5 to 20 / 3 + norm_num [Int.floor_eq_iff, hx] + -- Verify that 20 / 3 is approximately 6.6667, and thus the floor of 20 / 3 is 6 + <;> norm_num + <;> linarith diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10172.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10172.lean new file mode 100644 index 0000000000000000000000000000000000000000..691058f49efde71693d72a40fce25a1ae3ae10c0 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10172.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $a, b, c\\in[0,1)$ and $a+b+c=\\frac{3}{2}$ . Prove that $$\\sqrt{(1-a)(1-b)(1-c)} \\leq \\frac{2(2ab+3bc+3ca)}{9} $$ -/ +theorem lean_workbook_10172 (a b c : ℝ) (ha : 0 ≤ a ∧ a < 1) (hb : 0 ≤ b ∧ b < 1) (hc : 0 ≤ c ∧ c < 1) (habc : a + b + c = 3 / 2) : (1 - a) * (1 - b) * (1 - c) ≤ (2 * (2 * a * b + 3 * b * c + 3 * c * a)) / 9 := by + /- + Given \(a, b, c \in [0,1)\) with \(a + b + c = \frac{3}{2}\), we need to prove that: + \[ + \sqrt{(1-a)(1-b)(1-c)} \leq \frac{2(2ab+3bc+3ca)}{9} + \] + First, we expand and simplify the expression on both sides. We use algebraic manipulations and properties of real numbers to show that the inequality holds. Specifically, we use the fact that the square root of a product is less than or equal to a certain fraction involving the terms \(a, b,\) and \(c\). + -/ + -- Expand and simplify both sides of the inequality using algebraic identities. + ring_nf + -- Use non-linear arithmetic to prove the inequality, leveraging the non-negativity of squares and the given constraints on a, b, and c. + nlinarith [sq_nonneg (a + b + c - 1), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10178.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10178.lean new file mode 100644 index 0000000000000000000000000000000000000000..d70ddc7338ecd400658d7ce57d2fdfc412a8dcea --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10178.lean @@ -0,0 +1,30 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Suppose $y$ between $x$ and $z.$ By AM-GM Inequality, we have \n $4\,xyz \left( xy+zx+yz \right) \left( x+y+z \right) \leqslant [zx(x+y+z)+y(xy+yz+zx)]^2.$ We need to prove that \n $3\,xyz+{x}^{2}y+{y}^{2}z+{z}^{2}x \geqslant xy(x+y+z)+z(xy+yz+zx),$ equivalent to \n $x(x-y)(y-z) \geqslant 0.$ Which is true.\n -/ +theorem lean_workbook_10178 (x y z : ℝ) + (h₀ : 0 < x ∧ 0 < y ∧ 0 < z) + (h₁ : y ≠ x) + (h₂ : y ≠ z) + (h₃ : z ≠ x) + (h₄ : x + y + z = 1) : + 4 * x * y * z * (x * y + y * z + z * x) * (x + y + z) ≤ (z * x * (x + y + z) + y * (x * y + y * z + z * x))^2 := by + /- + Suppose \( y \) is between \( x \) and \( z \). By the AM-GM Inequality, we have: + \[ 4 \cdot x \cdot y \cdot z \cdot (x \cdot y + y \cdot z + z \cdot x) \cdot (x + y + z) \leq (z \cdot x \cdot (x + y + z) + y \cdot (x \cdot y + y \cdot z + z \cdot x))^2. \] + We need to prove that: + \[ 3 \cdot x \cdot y \cdot z + x^2 \cdot y + y^2 \cdot z + z^2 \cdot x \geq x \cdot y \cdot (x + y + z) + z \cdot (x \cdot y + y \cdot z + z \cdot x), \] + which is equivalent to: + \[ x \cdot (x - y) \cdot (y - z) \geq 0. \] + This is true due to the ordering of \( x, y, \) and \( z \). + -/ + -- Use non-linear arithmetic to prove the inequality. + nlinarith [sq_nonneg (z * x * (x + y + z) + y * (x * y + y * z + z * x)), + sq_nonneg (z * x * (x + y + z) - y * (x * y + y * z + z * x)), + mul_self_nonneg (x - y), + mul_self_nonneg (y - z), + mul_self_nonneg (z - x)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1018.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1018.lean new file mode 100644 index 0000000000000000000000000000000000000000..a80c1b55086fe9bcbc2a5f898d14b173685053b4 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1018.lean @@ -0,0 +1,34 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- By C-S $\sum_{cyc}\frac{a}{b+c+4d}\geq\frac{(a+b+c+d)^2}{\sum\limits_{cyc}(ab+ac+4da)}=\frac{(a+b+c+d)^2}{5\sum\limits_{cyc}ab+2(ac+bd)}$ . \n Hence, it remains to prove that $3(a^2+b^2+c^2+d^2)-4(ab+bc+cd+da)+2(ac+bd)\geq0$ , which is \n $(a-b+c-d)^2+\sum_{cyc}(a-b)^2\geq0$ . Done! -/ +theorem lean_workbook_1018 (a b c d : ℝ) : + 3 * (a^2 + b^2 + c^2 + d^2) - 4 * (a * b + b * c + c * d + d * a) + 2 * (a * c + b * d) ≥ 0 := by + /- + We need to prove that for real numbers \(a, b, c, d\), the inequality \(3(a^2 + b^2 + c^2 + d^2) - 4(ab + bc + cd + da) + 2(ac + bd) \geq 0\) holds. This can be shown using the Cauchy-Schwarz inequality. Specifically, we can rewrite the inequality as: + \[ + \sum_{\text{cyc}} \frac{a}{b + c + 4d} \geq \frac{(a + b + c + d)^2}{\sum_{\text{cyc}} (ab + ac + 4da)} + \] + which simplifies to: + \[ + \frac{(a + b + c + d)^2}{5 \sum_{\text{cyc}} ab + 2(ac + bd)} + \] + Thus, it remains to prove that: + \[ + 3(a^2 + b^2 + c^2 + d^2) - 4(ab + bc + cd + da) + 2(ac + bd) \geq 0 + \] + This can be further simplified to: + \[ + (a - b + c - d)^2 + \sum_{\text{cyc}} (a - b)^2 \geq 0 + \] + which is always non-negative since it is a sum of squares. + -/ + -- Use the `nlinarith` tactic to handle the non-linear arithmetic. + -- We provide specific non-negativity conditions for the terms involved. + nlinarith [sq_nonneg (a - b + c - d), sq_nonneg (a + b - c - d), sq_nonneg (a - b - c + d), + sq_nonneg (a + b + c - d), sq_nonneg (a + b + c + d), sq_nonneg (a - b + c + d), + sq_nonneg (a - b - c - d), sq_nonneg (a + b - c + d)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10187.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10187.lean new file mode 100644 index 0000000000000000000000000000000000000000..3699d0e7528bad84fda4d54dc2a58916fa8a5ab5 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10187.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- If a,b,c are side lengths of triangle , prove that $(a+b)(a+c)(b+c) \geq 8(a+b-c)(a+c-b)(b+c-a)$ -/ +theorem lean_workbook_10187 {a b c : ℝ} (hx: a > 0 ∧ b > 0 ∧ c > 0) (hab : a + b > c) (hbc : b + c > a) (hca : a + c > b) : (a + b) * (a + c) * (b + c) ≥ 8 * (a + b - c) * (a + c - b) * (b + c - a) := by + /- + Given that \(a\), \(b\), and \(c\) are the side lengths of a triangle, we need to prove that: + \[ + (a + b)(a + c)(b + c) \geq 8(a + b - c)(a + c - b)(b + c - a) + \] + To prove this inequality, we can use the non-linear arithmetic (nlinarith) tactic, which automatically handles inequalities involving polynomials. The tactic will use the given conditions to derive the desired inequality. + -/ + -- Use the non-linear arithmetic tactic to handle the inequality. + -- The tactic will use the given conditions to derive the desired inequality. + nlinarith [sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a), + mul_self_nonneg (a + b - c), mul_self_nonneg (b + c - a), mul_self_nonneg (c + a - b)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10191.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10191.lean new file mode 100644 index 0000000000000000000000000000000000000000..3aa1b94865ad172e88eaff18dd8144940c899fa7 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10191.lean @@ -0,0 +1,17 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that for $x, y, z \geq 0$, the following inequality holds: $x^3 + y^3 + z^3 + x^2y + y^2z + z^2x \geq 2(xy^2 + yz^2 + zx^2)$. -/ +theorem lean_workbook_10191 (x y z : ℝ) (hx : x ≥ 0) (hy : y ≥ 0) (hz : z ≥ 0) : x ^ 3 + y ^ 3 + z ^ 3 + x ^ 2 * y + y ^ 2 * z + z ^ 2 * x ≥ 2 * (x * y ^ 2 + y * z ^ 2 + z * x ^ 2) := by + /- + To prove the inequality \( x^3 + y^3 + z^3 + x^2y + y^2z + z^2x \geq 2(xy^2 + yz^2 + zx^2) \) for \( x, y, z \geq 0 \), we can use the non-linear arithmetic tactic `nlinarith`. This tactic is designed to handle inequalities involving polynomials and can automatically deduce the desired inequality by considering the non-negativity of various squared terms and the non-negativity of \( x, y, \) and \( z \). + -/ + -- Use the non-linear arithmetic tactic `nlinarith` to prove the inequality. + -- This tactic will consider the non-negativity of various squared terms and the non-negativity of `x`, `y`, and `z` to deduce the desired inequality. + nlinarith [sq_nonneg (x - y), sq_nonneg (y - z), sq_nonneg (z - x), mul_nonneg hx hy, mul_nonneg hy hz, mul_nonneg hz hx, + sq_nonneg (x + y), sq_nonneg (y + z), sq_nonneg (z + x), mul_nonneg (sq_nonneg x) (sq_nonneg y), + mul_nonneg (sq_nonneg y) (sq_nonneg z), mul_nonneg (sq_nonneg z) (sq_nonneg x)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10197.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10197.lean new file mode 100644 index 0000000000000000000000000000000000000000..76afa95046334fb9a04876a25150c759d74253e1 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10197.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $x$ be positive real number , Prove that $(1+x)^3(1+\frac{16}{x^3})\ge 81.$ -/ +theorem lean_workbook_10197 (x : ℝ) (hx : x > 0) : (1 + x) ^ 3 * (1 + 16 / x ^ 3) ≥ 81 := by + /- + To prove that for a positive real number \( x \), \((1 + x)^3 \left(1 + \frac{16}{x^3}\right) \ge 81\), we start by simplifying the expression. We use the fact that \( x > 0 \) to handle the division and powers. We then apply algebraic manipulations and inequalities to show that the expression is indeed greater than or equal to 81. + -/ + -- Simplify the expression by clearing denominators and handling powers. + field_simp [hx] + -- Rewrite the expression in a more manageable form. + rw [le_div_iff (by positivity)] + -- Normalize the expression by expanding and simplifying it. + ring_nf + -- Use non-linear arithmetic to prove the inequality. + nlinarith [sq_nonneg (x - 2), sq_nonneg (x + 2), sq_nonneg (x ^ 2 - 4)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10198.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10198.lean new file mode 100644 index 0000000000000000000000000000000000000000..6fcbb3cfc99887a4faa80f930d39a462540f99ec --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10198.lean @@ -0,0 +1,25 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- For $x, y, z$ positive real numbers, prove that the following inequality holds $(x-y)\\cdot\\frac{x}{y+z}+(y-z)\\cdot\\frac{y}{z+x}+(z-x)\\cdot\\frac{z}{x+y}\\geq0$ -/ +theorem lean_workbook_10198 (x y z : ℝ) (hx : x > 0) (hy : y > 0) (hz : z > 0) (hxy : x ≠ y) (hyz : y ≠ z) (hxz : x ≠ z) : (x - y) * (x / (y + z)) + (y - z) * (y / (z + x)) + (z - x) * (z / (x + y)) ≥ 0 := by + /- + To prove the inequality \((x-y) \cdot \frac{x}{y+z} + (y-z) \cdot \frac{y}{z+x} + (z-x) \cdot \frac{z}{x+y} \geq 0\) for positive real numbers \(x, y, z\), we proceed as follows: + 1. **Establish non-negativity of the terms**: Each term in the expression is a product of a difference and a fraction. Since \(x, y, z\) are positive, the denominators are positive, ensuring the fractions are non-negative. + 2. **Simplify the expression**: Using the fact that \(x, y, z\) are positive and the inequalities \(x \neq y\), \(y \neq z\), and \(x \neq z\), we can simplify the expression by applying algebraic manipulations and properties of real numbers. + 3. **Combine and verify**: Combine the terms and use the properties of real numbers to verify that the sum of these terms is non-negative. + -/ + have h1 : 0 < y + z := by linarith + have h2 : 0 < z + x := by linarith + have h3 : 0 < x + y := by linarith + have h4 : 0 < x * y := by positivity + have h5 : 0 < y * z := by positivity + have h6 : 0 < z * x := by positivity + field_simp [h1, h2, h3, h4, h5, h6] + rw [le_div_iff (by positivity)] + ring_nf + nlinarith [sq_nonneg (x - y), sq_nonneg (y - z), sq_nonneg (z - x)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_102.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_102.lean new file mode 100644 index 0000000000000000000000000000000000000000..4bb3ecae9b55a2d754a90ea216368d6268900d6e --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_102.lean @@ -0,0 +1,25 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Plugging that into the the top gives $\frac{3 - (4p+3)}{8p^2-8p-3} = \frac{-4p}{8p^2-8p-3}.$ -/ +theorem lean_workbook_102 (p : ℝ) + (h₀ : 8 * p^2 - 8 * p - 3 ≠ 0) + (h₁ : 3 - (4 * p + 3) ≠ 0) : + (3 - (4 * p + 3)) / (8 * p^2 - 8 * p - 3) = (-4 * p) / (8 * p^2 - 8 * p - 3) := by + /- + We need to show that for a real number \( p \), given the conditions \( 8p^2 - 8p - 3 \neq 0 \) and \( 3 - (4p + 3) \neq 0 \), the equation \(\frac{3 - (4p + 3)}{8p^2 - 8p - 3} = \frac{-4p}{8p^2 - 8p - 3}\) holds. This can be achieved by simplifying the numerator on the left-hand side. + First, we simplify the numerator \( 3 - (4p + 3) \): + \[ 3 - (4p + 3) = 3 - 4p - 3 = -4p \] + Thus, the left-hand side of the equation becomes: + \[ \frac{3 - (4p + 3)}{8p^2 - 8p - 3} = \frac{-4p}{8p^2 - 8p - 3} \] + This directly matches the right-hand side of the equation, confirming the equality. + -/ + -- Simplify the numerator 3 - (4 * p + 3) to -4 * p + field_simp [h₀, h₁, sub_eq_zero, add_left_neg, add_right_neg, sub_add_cancel, sub_self, zero_add, + mul_comm] + -- Use linarith to confirm the equality + <;> linarith diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10202.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10202.lean new file mode 100644 index 0000000000000000000000000000000000000000..2a02a7377180fcccd92e5b3a8a6f4211dbff4b91 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10202.lean @@ -0,0 +1,41 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $2^{21} \equiv 1 \pmod 7$ without a calculator. -/ +theorem lean_workbook_10202 : 2^21 ≡ 1 [ZMOD 7] := by + /- + To prove that \(2^{21} \equiv 1 \pmod{7}\), we can use properties of modular arithmetic and exponentiation. Specifically, we will show that \(2^{21} \mod 7 = 1\). + 1. First, observe that \(2^3 = 8 \equiv 1 \pmod{7}\). + 2. This implies that \(2^3 \equiv 1 \pmod{7}\). + 3. Using this result, we can express \(2^{21}\) as \((2^3)^7\). + 4. Since \(2^3 \equiv 1 \pmod{7}\), we have \((2^3)^7 \equiv 1^7 \pmod{7}\). + 5. Simplifying, we get \(1^7 = 1\), thus \(2^{21} \equiv 1 \pmod{7}\). + -/ + -- Use norm_num to simplify the expression involving powers and modular arithmetic. + norm_num [Int.ModEq, pow_succ, Int.mul_emod] + -- Each `rfl` confirms the equivalence step-by-step, ensuring the final result is correct. + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl + <;> rfl diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10204.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10204.lean new file mode 100644 index 0000000000000000000000000000000000000000..19d71e2b391c6bb93bc38e727f9f949c0bdcfa71 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10204.lean @@ -0,0 +1,16 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $(x + 1)(y + 2)(z + 3) \geq 8$ for non-negative real numbers $x, y, z$ with $x + y + z = 1$. -/ +theorem lean_workbook_10204 (x y z : ℝ) (hx : x ≥ 0 ∧ y ≥ 0 ∧ z ≥ 0) (h : x + y + z = 1) : (x + 1) * (y + 2) * (z + 3) ≥ 8 := by + /- + To prove that \((x + 1)(y + 2)(z + 3) \geq 8\) for non-negative real numbers \(x, y, z\) with \(x + y + z = 1\), we can use the non-linear arithmetic (nlinarith) tactic in Lean4. This tactic is designed to handle inequalities involving polynomials and can automatically deduce the required inequality by considering the non-negativity of the variables and the given sum constraint. + -/ + -- Use nlinarith to handle the inequality. This tactic will consider the non-negativity of the variables and the given sum constraint to deduce the required inequality. + nlinarith [mul_nonneg hx.1 hx.2.1, mul_nonneg hx.1 hx.2.2, mul_nonneg hx.2.1 hx.2.2, + mul_self_nonneg (x - 1 / 3), mul_self_nonneg (y - 1 / 3), mul_self_nonneg (z - 1 / 3), + mul_self_nonneg (x - y), mul_self_nonneg (y - z), mul_self_nonneg (z - x)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10207.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10207.lean new file mode 100644 index 0000000000000000000000000000000000000000..dd546d8e6a32d720b7b918767fe25b8dc3d19bdf --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10207.lean @@ -0,0 +1,14 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Using congruence properties, prove that $2^{mn}-1$ is divisible by $2^{m}-1$ for all integers $m, n\ge 1$ . -/ +theorem lean_workbook_10207 (m n : ℕ) (hm : 1 ≤ m) (hn : 1 ≤ n) : (2 ^ m - 1) ∣ (2 ^ (m * n) - 1) := by + /- + We need to prove that for any integers \( m \) and \( n \) both greater than or equal to 1, \( 2^{mn} - 1 \) is divisible by \( 2^m - 1 \). This can be shown using the property of exponents and the fact that \( 2^m - 1 \) divides \( 2^{mn} - 1 \). + -/ + -- Use the property that \( 2^m - 1 \) divides \( 2^{mn} - 1 \) for natural numbers \( m \) and \( n \). + simpa only [one_pow, pow_mul] using nat_sub_dvd_pow_sub_pow _ 1 n diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10208.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10208.lean new file mode 100644 index 0000000000000000000000000000000000000000..621726785633abf096261734c85987d8a164f1b4 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10208.lean @@ -0,0 +1,24 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $2S=k(k+1)$ where $S=k+(k-1)+\cdots+1$. -/ +theorem lean_workbook_10208 (k : ℕ) : 2 * (k * (k + 1) / 2) = k * (k + 1) := by + /- + To prove that \(2S = k(k+1)\) where \(S = k + (k-1) + \cdots + 1\), we start by expressing \(S\) as a sum of the first \(k\) natural numbers. The sum of the first \(k\) natural numbers is given by the formula \(\frac{k(k+1)}{2}\). We then multiply this sum by 2 to get \(2S\). Simplifying the expression, we find that \(2S = k(k+1)\). + -/ + -- Use induction on k to prove the statement for all natural numbers. + induction k with + | zero => + -- Base case: when k = 0, the statement is trivially true. + simp + | succ k ih => + -- Inductive step: assume the statement holds for k, prove it for k+1. + -- Simplify the expression using the induction hypothesis and algebraic manipulation. + simp_all [Nat.succ_eq_add_one, Nat.mul_add, Nat.add_mul, Nat.mul_one, Nat.mul_comm, + Nat.mul_left_comm] + -- Use the omega tactic to solve the resulting linear arithmetic problem. + omega diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10209.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10209.lean new file mode 100644 index 0000000000000000000000000000000000000000..e398decd6015e85299dd0e81019dce5e8d6d14ab --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10209.lean @@ -0,0 +1,22 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Calculate $ 1 + 2 + 3 + 4 + 5 $ -/ +theorem lean_workbook_10209 : ∑ i in Finset.range 6, i = 15 := by + /- + To prove that the sum of the first five natural numbers is 15, we use the formula for the sum of the first \( n \) natural numbers, which is given by \( \frac{n(n+1)}{2} \). For \( n = 5 \), this formula yields: + \[ + \frac{5 \cdot 6}{2} = \frac{30}{2} = 15 + \] + Thus, the sum of the first five natural numbers is indeed 15. + -/ + -- Use the formula for the sum of the first n natural numbers: ∑ i in Finset.range (n+1), i = n * (n + 1) / 2 + rw [Finset.sum_range_succ] + -- Simplify the expression using numerical computation + norm_num + -- Verify that the simplified expression matches the expected result + <;> rfl diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1021.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1021.lean new file mode 100644 index 0000000000000000000000000000000000000000..9cf43c3f111175df69b4aa79503d7ca9147adca7 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1021.lean @@ -0,0 +1,25 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Find the sequence $\{x_1, x_2, x_3, \ldots\}$ where $x_1=r$ and $x_k=2^{k-1} \cdot x_1$ for some real number $r$ -/ +theorem lean_workbook_1021 (r : ℝ) (n : ℕ) : ∃ f : ℕ → ℝ, f 1 = r ∧ ∀ k, f k = (2 : ℝ)^(k-1) * f 1 := by + /- + We need to find a sequence \(\{x_1, x_2, x_3, \ldots\}\) where \(x_1 = r\) and \(x_k = 2^{k-1} \cdot x_1\) for some real number \(r\). To define such a sequence, we can use a function \(f : \mathbb{N} \to \mathbb{R}\) where \(f(k) = 2^{k-1} \cdot r\). This function clearly satisfies the given conditions: + 1. \(f(1) = r\) + 2. For all \(k\), \(f(k) = 2^{k-1} \cdot r\) + -/ + -- We define the function f(k) = 2^(k-1) * r + use fun k => (2 : ℝ)^(k-1) * r + -- We need to prove two conditions: f(1) = r and f(k) = 2^(k-1) * f(1) for all k + constructor + -- First, we prove f(1) = r + -- By definition, f(1) = 2^(1-1) * r = 2^0 * r = 1 * r = r + simp + -- Second, we prove f(k) = 2^(k-1) * f(1) for all k + -- By definition, f(k) = 2^(k-1) * r + intro k + simp [mul_comm] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10218.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10218.lean new file mode 100644 index 0000000000000000000000000000000000000000..d620ae1c3a2c3fdc0f947e70af60e13a781a0a2a --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10218.lean @@ -0,0 +1,17 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- $(x^2+y^2+z^2)(1+1+1)\geq (x+y+z)^{2}$ -/ +theorem lean_workbook_10218 (x y z : ℝ) : (x ^ 2 + y ^ 2 + z ^ 2) * (1 + 1 + 1) ≥ (x + y + z) ^ 2 := by + /- + We need to show that for real numbers \( x \), \( y \), and \( z \), the inequality \((x^2 + y^2 + z^2)(1 + 1 + 1) \geq (x + y + z)^2\) holds. This can be derived using the non-negativity of squares and basic algebraic manipulations. + -/ + -- Use non-linear arithmetic to prove the inequality. + -- The `nlinarith` tactic will handle the proof by leveraging the non-negativity of squares. + -- Specifically, it will use the fact that the square of any real number is non-negative. + nlinarith [sq_nonneg (x - y), sq_nonneg (y - z), sq_nonneg (z - x), + sq_nonneg (x + y), sq_nonneg (y + z), sq_nonneg (z + x)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10222.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10222.lean new file mode 100644 index 0000000000000000000000000000000000000000..18f1ed03b72483de6aba2e6b4e3c244142b98f48 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10222.lean @@ -0,0 +1,49 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $sin(x+y)sin(y+z)=sin(y)sin(x+y+z)+sin(z)sin(x)$ . -/ +theorem lean_workbook_10222 : ∀ x y z : ℝ, sin (x + y) * sin (y + z) = sin y * sin (x + y + z) + sin z * sin x := by + /- + We aim to prove that for any real numbers \( x \), \( y \), and \( z \), the equation \( \sin(x + y) \sin(y + z) = \sin(y) \sin(x + y + z) + \sin(z) \sin(x) \) holds. We start by expanding the sine functions using the addition formulas. Specifically, we use the identities for the sine of a sum: + \[ \sin(a + b) = \sin a \cos b + \cos a \sin b \] + Applying these identities to \( \sin(x + y) \) and \( \sin(y + z) \), we get: + \[ \sin(x + y) = \sin x \cos y + \cos x \sin y \] + \[ \sin(y + z) = \sin y \cos z + \cos y \sin z \] + Multiplying these two expressions, we obtain: + \[ (\sin x \cos y + \cos x \sin y)(\sin y \cos z + \cos y \sin z) \] + Expanding this product, we have: + \[ \sin x \cos y \sin y \cos z + \sin x \cos y \cos y \sin z + \cos x \sin y \sin y \cos z + \cos x \sin y \cos y \sin z \] + Combining like terms, we get: + \[ \sin x \sin y \cos z + \sin x \cos y \sin z + \cos x \sin y \sin z + \cos x \cos y \sin z \] + Next, we use the addition formula for sine again: + \[ \sin(a + b) = \sin a \cos b + \cos a \sin b \] + Applying this to \( \sin(x + y + z) \), we get: + \[ \sin(x + y + z) = \sin(x + y) \cos z + \cos(x + y) \sin z \] + Expanding \( \sin(x + y) \) and \( \cos(x + y) \) using the addition formula, we have: + \[ \sin(x + y) = \sin x \cos y + \cos x \sin y \] + \[ \cos(x + y) = \cos x \cos y - \sin x \sin y \] + Thus, + \[ \sin(x + y + z) = (\sin x \cos y + \cos x \sin y) \cos z + (\cos x \cos y - \sin x \sin y) \sin z \] + Expanding this, we get: + \[ \sin(x + y + z) = \sin x \cos y \cos z + \cos x \sin y \cos z + \cos x \cos y \sin z - \sin x \sin y \sin z \] + Combining like terms, we have: + \[ \sin(x + y + z) = \sin x \cos y \cos z + \cos x \sin y \cos z + \cos x \cos y \sin z - \sin x \sin y \sin z \] + Finally, we observe that the terms involving \( \sin(x + y + z) \) and \( \sin(x + y) \sin(y + z) \) match the desired form, confirming the identity. + -/ + intro x y z + -- Expand the sine functions using the addition formulas. + simp only [sin_add, cos_add, sin_add, cos_add, sin_add, cos_add, sin_add, cos_add, sin_add, cos_add] + -- Simplify the expression using algebraic manipulation. + ring + -- Use the Pythagorean identity for sine and cosine. + <;> simp only [sin_sq, cos_sq] + -- Simplify the expression further. + <;> ring + -- Simplify using trigonometric identities. + <;> simp only [sin_sq, cos_sq] + -- Final simplification to match the desired form. + <;> ring diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10230.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10230.lean new file mode 100644 index 0000000000000000000000000000000000000000..e69eb542730522dbd288e26fa8a0599b58ded326 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10230.lean @@ -0,0 +1,16 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- $M(M+2kc^2)(1-k^2) \leq (M+(k-k^2)c^2)^2,$ -/ +theorem lean_workbook_10230 (M c k : ℝ) : M * (M + 2 * k * c ^ 2) * (1 - k ^ 2) ≤ (M + (k - k ^ 2) * c ^ 2) ^ 2 := by + /- + We need to show that for real numbers \( M \), \( c \), and \( k \), the inequality \( M(M + 2kc^2)(1 - k^2) \leq (M + (k - k^2)c^2)^2 \) holds. To prove this, we use the non-linear arithmetic (nlinarith) tactic, which simplifies the inequality by applying a series of algebraic manipulations and inequalities. Specifically, we use the fact that the square of any real number is non-negative, which helps in proving the inequality. + -/ + -- Use non-linear arithmetic to simplify and prove the inequality. + -- We provide lemmas about the non-negativity of squares to help the tactic. + nlinarith [sq_nonneg (M + (k - k ^ 2) * c ^ 2), sq_nonneg (M - (k - k ^ 2) * c ^ 2), + sq_nonneg (M * k - (k - k ^ 2) * c ^ 2), sq_nonneg (M * k + (k - k ^ 2) * c ^ 2)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10236.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10236.lean new file mode 100644 index 0000000000000000000000000000000000000000..5ee1e450bfd5bb841eb5f1d1b50c297284c4333b --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10236.lean @@ -0,0 +1,26 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $ a,b,c,d $ be reals such that $ a+b+c+d=4 $ and $a^2+b^2+c^2+d^2=18.$ Prove that $ |ab-cd|\leq 9$ -/ +theorem lean_workbook_10236 (a b c d : ℝ) (h₁ : a + b + c + d = 4) (h₂ : a^2 + b^2 + c^2 + d^2 = 18) : |a * b - c * d| ≤ 9 := by + /- + Given real numbers \(a, b, c, d\) such that \(a + b + c + d = 4\) and \(a^2 + b^2 + c^2 + d^2 = 18\), we need to prove that \(|ab - cd| \leq 9\). + To prove this, we use the properties of squares and the non-negativity of real numbers. Specifically, we consider the expressions \((a - b)^2\), \((a + b)^2\), \((c - d)^2\), \((c + d)^2\), \((a - c)^2\), \((a + c)^2\), \((b - d)^2\), and \((b + d)^2\). By leveraging the non-negativity of these squares and the given conditions, we can derive the desired inequality. + -/ + -- Use the non-negativity of squares to derive the inequality + have h₃ := sq_nonneg (a - b) -- The square of any real number is non-negative + have h₄ := sq_nonneg (a + b) -- The square of any real number is non-negative + have h₅ := sq_nonneg (c - d) -- The square of any real number is non-negative + have h₆ := sq_nonneg (c + d) -- The square of any real number is non-negative + have h₇ := sq_nonneg (a - c) -- The square of any real number is non-negative + have h₈ := sq_nonneg (a + c) -- The square of any real number is non-negative + have h₉ := sq_nonneg (b - d) -- The square of any real number is non-negative + have h₁₀ := sq_nonneg (b + d) -- The square of any real number is non-negative + -- Combine the non-negativity properties with the given conditions to derive the inequality + simp only [abs_le, sub_nonneg, sub_nonpos] at * + -- Use linear arithmetic to conclude the proof + constructor <;> nlinarith diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1024.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1024.lean new file mode 100644 index 0000000000000000000000000000000000000000..340b3b4534b69931762c6d9f289ee36db627c372 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1024.lean @@ -0,0 +1,17 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Solve the equation $\left \lfloor x \right \rfloor^3+2x^2=x^3+2\left \lfloor x\right \rfloor^2$ -/ +theorem lean_workbook_1024 (x : ℝ) (hx : ∃ z : ℤ, x = z) : (Int.floor x)^3 + 2 * x^2 = x^3 + 2 * (Int.floor x)^2 := by + /- + Given the equation \(\left \lfloor x \right \rfloor^3 + 2x^2 = x^3 + 2\left \lfloor x \right \rfloor^2\), we need to show that this equation holds for any real number \(x\) such that \(x = z\) for some integer \(z\). The proof involves substituting \(x = z\) into the equation and verifying that both sides are equal. + -/ + -- Substitute x = z into the equation + cases' hx with z hz + rw [hz] + -- Simplify the equation using the fact that x = z + simp [Int.floor_eq_iff, pow_three] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10246.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10246.lean new file mode 100644 index 0000000000000000000000000000000000000000..d05eb1526c2e97bd56ad95b9f80845225ed10cab --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10246.lean @@ -0,0 +1,18 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- If $a,b,c$ are non-negative numbers such that $a^2+b^2+c^2=a+b+c$, then $ab+bc+ca \geq a^2b^2+b^2c^2+c^2a^2$. -/ +theorem lean_workbook_10246 (a b c : ℝ) (ha : a ≥ 0) (hb : b ≥ 0) (hc : c ≥ 0) (hab : a + b + c = a^2 + b^2 + c^2) : a * b + b * c + c * a ≥ a^2 * b^2 + b^2 * c^2 + c^2 * a^2 := by + /- + Given non-negative real numbers \(a\), \(b\), and \(c\) such that \(a^2 + b^2 + c^2 = a + b + c\), we need to show that \(ab + bc + ca \geq a^2 b^2 + b^2 c^2 + c^2 a^2\). + To prove this, we use the non-negativity of squares. Specifically, we consider the squares of the differences \(a - b\), \(b - c\), and \(c - a\). Since these differences are non-negative, their squares are also non-negative. By expanding these squares and summing them up, we can derive the desired inequality. + -/ + -- Use non-linear arithmetic to prove the inequality. + -- We use the non-negativity of squares of differences (a - b), (b - c), and (c - a). + nlinarith [sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a), + mul_nonneg ha hb, mul_nonneg hb hc, mul_nonneg hc ha, + sq_nonneg (a - 1), sq_nonneg (b - 1), sq_nonneg (c - 1)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10253.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10253.lean new file mode 100644 index 0000000000000000000000000000000000000000..42645903326d1bb23a1bf30348456bebc97c59e7 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10253.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- We can rewrite the inequality and use Cauchy-Schwarz to give $LHS \ge (a^2+2)(b^2+2)(c^2+2) \ge $ $\ge 3\left[\frac{(a+b)^2}{2}+1\right] (2+c^2) \ge 3(a+b+c)^2 \ge 9(ab+bc+ca)$ -/ +theorem lean_workbook_10253 (a b c : ℝ) : + (a^2 + 2) * (b^2 + 2) * (c^2 + 2) ≥ 9 * (a * b + b * c + c * a) := by + /- + We need to show that for real numbers \(a\), \(b\), and \(c\), the inequality \((a^2 + 2)(b^2 + 2)(c^2 + 2) \geq 9(a b + b c + c a)\) holds. This can be derived using the non-negativity of squares and basic algebraic manipulations. Specifically, we will expand the left-hand side and compare it with the right-hand side. By leveraging the non-negativity of squares, we can establish the inequality. + -/ + -- Expand the left-hand side of the inequality to compare it with the right-hand side. + ring_nf + -- Use the non-negativity of squares to establish the inequality. + -- Specifically, we use the fact that the square of any real number is non-negative. + nlinarith [sq_nonneg (a * b * c), sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (b - c), + sq_nonneg (c - a), sq_nonneg (a * b + b * c + c * a - 3), sq_nonneg (a * b * c - 1), + sq_nonneg (a * b * c - a), sq_nonneg (a * b * c - b), sq_nonneg (a * b * c - c)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10255.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10255.lean new file mode 100644 index 0000000000000000000000000000000000000000..8228d4c845e18732713970757c78a109b1cc73eb --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10255.lean @@ -0,0 +1,28 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $P(x,y)$ , the assertion $f((x-y)^{2})=x^{2}-2yf(x)+(f(x))^{2}$ Setting $g(x)=f(x)-x$ , the assertion becomes : $g((x-y)^{2})=(g(y))^{2}+2y(g(y)-g(x))$ Hence : $P(x,x)$ : $(g(x))^{2}=g(0) \forall x \in \mathbb{R}$ , which means that the fonction $g$ is constant i.e : there exists a real $a$ such that $g(x)=a$ , which means that the function $f$ is in the form : $f(x)=x+a$ . A check forward give us $a=0$ or $a=1$ And surely the fonctions $f(x)=x$ and $f(x)=x+1$ satisfy the FE. -/ +theorem lean_workbook_10255 (f : ℝ → ℝ) + (h₀ : ∀ x, ∀ y, f ((x - y)^2) = x^2 - 2 * y * f x + (f x)^2) : + ∀ x, f x = x ∨ ∀ x, f x = x + 1 := by + /- + Given the function \( f : \mathbb{R} \to \mathbb{R} \) and the property \( \forall x, \forall y, f((x - y)^2) = x^2 - 2y f(x) + (f(x))^2 \), we introduce a new function \( g(x) = f(x) - x \). The given property then transforms into: + \[ g((x - y)^2) = (g(y))^2 + 2y(g(y) - g(x)) \] + From this, we derive: + \[ P(x, x) : (g(x))^2 = g(0) \] + This implies that \( g \) is a constant function. Therefore, there exists a real number \( a \) such that \( g(x) = a \) for all \( x \in \mathbb{R} \). Consequently, \( f(x) = x + a \) for some constant \( a \). We then check that \( a = 0 \) or \( a = 1 \). + -/ + intro x + have h₁ := h₀ 0 0 + have h₂ := h₀ x 0 + have h₃ := h₀ x x + have h₄ := h₀ 1 1 + simp at h₁ h₂ h₃ h₄ + have h₅ := h₀ 1 0 + have h₆ := h₀ 0 1 + simp at h₅ h₆ + nlinarith diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10290.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10290.lean new file mode 100644 index 0000000000000000000000000000000000000000..325680d195e3a0069b62af32c3922f56eaf4dfbf --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10290.lean @@ -0,0 +1,18 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $(a-1)^2(85a^4-294a^3+506a^2-438a+213)\geq0$. -/ +theorem lean_workbook_10290 (a : ℝ) : (a - 1) ^ 2 * (85 * a ^ 4 - 294 * a ^ 3 + 506 * a ^ 2 - 438 * a + 213) ≥ 0 := by + /- + To prove that \((a-1)^2(85a^4-294a^3+506a^2-438a+213) \geq 0\), we can use the properties of non-negative numbers. Specifically, we note that \((a-1)^2\) is always non-negative because it is a square of a real number. Additionally, the polynomial \(85a^4 - 294a^3 + 506a^2 - 438a + 213\) is non-negative for all real numbers \(a\). Therefore, the product of a non-negative number \((a-1)^2\) and a non-negative polynomial \(85a^4 - 294a^3 + 506a^2 - 438a + 213\) is also non-negative. + -/ + -- Use the property that the product of a non-negative number and a non-negative polynomial is non-negative. + apply mul_nonneg + -- Show that \((a-1)^2\) is non-negative because it is a square. + exact pow_two_nonneg (a - 1) + -- Show that the polynomial \(85a^4 - 294a^3 + 506a^2 - 438a + 213\) is non-negative for all real numbers \(a\). + nlinarith [sq_nonneg (a ^ 2 - a), sq_nonneg (a ^ 2 - 1), sq_nonneg (a - 1), sq_nonneg (a ^ 2 - 2 * a), sq_nonneg (a ^ 2 - 3 * a), sq_nonneg (a ^ 2 - 4 * a), sq_nonneg (a ^ 2 - 5 * a), sq_nonneg (a ^ 2 - 6 * a), sq_nonneg (a ^ 2 - 7 * a), sq_nonneg (a ^ 2 - 8 * a), sq_nonneg (a ^ 2 - 9 * a), sq_nonneg (a ^ 2 - 10 * a)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10291.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10291.lean new file mode 100644 index 0000000000000000000000000000000000000000..d252d26cef8f966b9de782052c8de397deb482e9 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10291.lean @@ -0,0 +1,16 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- For non-negative real numbers x, y and z with $x+y+z=1$ , prove that $7(xy+yz+zx) \le 2+9xyz$ . -/ +theorem lean_workbook_10291 (x y z : ℝ) (hx : 0 ≤ x) (hy : 0 ≤ y) (hz : 0 ≤ z) (h : x + y + z = 1) : + 7 * (x * y + y * z + z * x) ≤ 2 + 9 * x * y * z := by + /- + We need to prove that for non-negative real numbers \( x \), \( y \), and \( z \) with \( x + y + z = 1 \), the inequality \( 7(xy + yz + zx) \leq 2 + 9xyz \) holds. This can be shown using non-linear arithmetic (nlinarith) which takes into account the non-negativity of squares and other algebraic properties to verify the inequality. + -/ + -- Use non-linear arithmetic to handle the inequality, considering the non-negativity of squares and other algebraic properties. + nlinarith [sq_nonneg (x + y + z), sq_nonneg (x - y), sq_nonneg (y - z), sq_nonneg (z - x), + sq_nonneg (x - 1 / 3), sq_nonneg (y - 1 / 3), sq_nonneg (z - 1 / 3)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10295.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10295.lean new file mode 100644 index 0000000000000000000000000000000000000000..488055c2faa3ca47fa6168d2d8764c59291de61d --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10295.lean @@ -0,0 +1,28 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $ a,b,c$ are positive real number such that $a+b+c=3$ , prove that $\frac{1}{11+a^{2}}+\frac{1}{11+b^{2}}+\frac{1}{11+c^{2}}\leqslant \frac{1}{4}.$ -/ +theorem lean_workbook_10295 (a b c : ℝ) (ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (habc : a + b + c = 3) : 1 / (11 + a^2) + 1 / (11 + b^2) + 1 / (11 + c^2) ≤ 1 / 4 := by + /- + We need to prove that for positive real numbers \(a\), \(b\), and \(c\) such that \(a + b + c = 3\), the inequality \(\frac{1}{11 + a^2} + \frac{1}{11 + b^2} + \frac{1}{11 + c^2} \leq \frac{1}{4}\) holds. + To do this, we will show that the sum of the reciprocals of the expressions involving \(a\), \(b\), and \(c\) is less than or equal to \(\frac{1}{4}\). We will use algebraic manipulation and basic properties of inequalities to achieve this. + -/ + have h₁ : 0 < a * b * c := by + -- Since a, b, and c are positive, their product is also positive. + exact mul_pos (mul_pos ha hb) hc + have h₂ : a * b * c ≤ 1 := by + -- Using the fact that a + b + c = 3, we can apply basic inequalities to show that a * b * c ≤ 1. + nlinarith [sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a)] + have h₃ : 1 / (11 + a^2) + 1 / (11 + b^2) + 1 / (11 + c^2) ≤ 1 / 4 := by + -- Using the fact that a * b * c ≤ 1, we can apply basic inequalities to show the desired result. + field_simp + rw [div_le_div_iff] + nlinarith [sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a)] + nlinarith [sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a)] + nlinarith [sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a)] + -- The final inequality follows from the above steps. + exact h₃ diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10299.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10299.lean new file mode 100644 index 0000000000000000000000000000000000000000..a5053acfd09bc5b5b542ba374f254c737861c182 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10299.lean @@ -0,0 +1,23 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $x,y>0$ ,prove that: $\frac{4}{3}\frac{1}{x+y}+\frac{y^2}{2x+y}+\frac{x^2}{2y+x} \geq \frac{4}{3}$ -/ +theorem lean_workbook_10299 (x y : ℝ) (hx : 0 < x) (hy : 0 < y) : (4 / 3) * (1 / (x + y)) + y^2 / (2 * x + y) + x^2 / (2 * y + x) >= 4 / 3 := by + /- + To prove the inequality \(\frac{4}{3}\frac{1}{x+y}+\frac{y^2}{2x+y}+\frac{x^2}{2y+x} \geq \frac{4}{3}\) for \(x, y > 0\), we proceed as follows: + 1. **Simplify the expression**: We start by simplifying the given expression using algebraic manipulations. + 2. **Apply inequalities**: We use known inequalities and properties of real numbers to show that the simplified expression is greater than or equal to \(\frac{4}{3}\). + -/ + -- Simplify the expression by clearing denominators and rearranging terms. + field_simp [add_comm, add_left_comm, add_assoc] + -- Use the fact that all terms are positive to apply the inequality. + rw [div_le_div_iff] + -- Use non-linear arithmetic to prove the inequality. + nlinarith [sq_nonneg (x - y), mul_pos hx hy, sq_nonneg (x - 1), sq_nonneg (y - 1)] + -- Additional non-linear arithmetic to handle different cases. + nlinarith [sq_nonneg (x - y), mul_pos hx hy, sq_nonneg (x - 1), sq_nonneg (y - 1)] + nlinarith [sq_nonneg (x - y), mul_pos hx hy, sq_nonneg (x - 1), sq_nonneg (y - 1)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10303.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10303.lean new file mode 100644 index 0000000000000000000000000000000000000000..a1dc556e450c46840b8138872a6a423d625356d5 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10303.lean @@ -0,0 +1,16 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- For $ a,b,c\geq 0$ prove that $8+2(a^2+b^2+c^2)+abc\geq 5(a+b+c) $ . -/ +theorem lean_workbook_10303 (a b c : ℝ) (ha : a ≥ 0) (hb : b ≥ 0) (hc : c ≥ 0) : 8 + 2 * (a ^ 2 + b ^ 2 + c ^ 2) + a * b * c ≥ 5 * (a + b + c) := by + /- + We need to prove that for non-negative real numbers \(a\), \(b\), and \(c\), the inequality \(8 + 2(a^2 + b^2 + c^2) + abc \geq 5(a + b + c)\) holds. This can be shown using non-linear arithmetic by considering the non-negativity of squares and other expressions. + -/ + -- Use non-linear arithmetic to prove the inequality by considering the non-negativity of squares and other expressions. + nlinarith [sq_nonneg (a + b + c - 3), sq_nonneg (a - 1), sq_nonneg (b - 1), sq_nonneg (c - 1), + mul_nonneg ha hb, mul_nonneg hb hc, mul_nonneg hc ha, sq_nonneg (a - b), sq_nonneg (b - c), + sq_nonneg (c - a), sq_nonneg (a * b - 1), sq_nonneg (b * c - 1), sq_nonneg (c * a - 1)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10305.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10305.lean new file mode 100644 index 0000000000000000000000000000000000000000..045ff7e2dc9889070d8d7ad3dcf6623888959a30 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10305.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Squaring both sides for $t>1$ we get after simplification: $2t\sqrt{t+8}>7t-8$. -/ +theorem lean_workbook_10305 : ∀ t : ℝ, 1 < t → 2 * t * Real.sqrt (t + 8) > 7 * t - 8 := by + /- + For any real number \( t \) greater than 1, we need to show that \( 2t\sqrt{t+8} > 7t - 8 \). We start by noting that since \( t > 1 \), \( t + 8 > 0 \), ensuring that the square root is defined and positive. We then square both sides of the inequality to eliminate the square root. After simplifying, we use algebraic manipulation and properties of inequalities to show that the inequality holds. + -/ + -- Introduce the variable t and the assumption t > 1. + intro t h + -- Show that t + 8 > 0 since t > 1. + have h₀ : 0 < t + 8 := by linarith + -- Use the property that the square root of a positive number is positive. + have h₁ : 0 < Real.sqrt (t + 8) := Real.sqrt_pos.2 h₀ + -- Square both sides of the inequality to eliminate the square root. + nlinarith [sq_sqrt (by linarith : 0 ≤ t + 8), sq_nonneg (t - 4)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10307.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10307.lean new file mode 100644 index 0000000000000000000000000000000000000000..24a76f21a6e2b90ca4f15da709bf83a455d466b8 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10307.lean @@ -0,0 +1,18 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Find the maximum and minimum of $ A=x^2+y^2+z^2+kxyz $, where $ x, y, z $ are non-negative numbers satisfying $ x+y+z=1 $, for all $ k \in R $. -/ +theorem lean_workbook_10307 (x y z k : ℝ) (hx : 0 ≤ x) (hy : 0 ≤ y) (hz : 0 ≤ z) (hx1 : x + y + z = 1) : (x^2 + y^2 + z^2 + k * x * y * z) ≤ 1 + k/27 ∨ (x^2 + y^2 + z^2 + k * x * y * z) ≥ 1 + k/27 := by + /- + To find the maximum and minimum of \( A = x^2 + y^2 + z^2 + kxyz \) where \( x, y, z \) are non-negative numbers satisfying \( x + y + z = 1 \), we need to consider the constraints and the expression itself. The expression \( A \) can be analyzed by considering the non-negativity of the terms and their combinations. Specifically, we can use the fact that the sum \( x + y + z = 1 \) to bound the expression. By applying non-linear arithmetic, we can derive the necessary inequalities to determine the bounds of \( A \). + -/ + -- We use non-linear arithmetic to derive the necessary inequalities. + by_cases h : x^2 + y^2 + z^2 + k * x * y * z ≤ 1 + k/27 + -- If the inequality holds, we consider the case where the expression is less than or equal to 1 + k/27. + { left; linarith } + -- If the inequality does not hold, we consider the case where the expression is greater than or equal to 1 + k/27. + { right; linarith } diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10308.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10308.lean new file mode 100644 index 0000000000000000000000000000000000000000..e50ddb292fd8ee06683923ba31b3b9898bed5912 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10308.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $a^2+b^2+c^2+4+36a^2b^2c^2\ge 19abc(a+b+c)$ given $a,b,c>0$ and $ab+bc+ca=1$. -/ +theorem lean_workbook_10308 (a b c : ℝ) (hab : a > 0 ∧ b > 0 ∧ c > 0) (h : a * b + b * c + c * a = 1) : a ^ 2 + b ^ 2 + c ^ 2 + 4 + 36 * a ^ 2 * b ^ 2 * c ^ 2 ≥ 19 * a * b * c * (a + b + c) := by + /- + Given \(a, b, c > 0\) and \(ab + bc + ca = 1\), we need to prove that: + \[ a^2 + b^2 + c^2 + 4 + 36a^2b^2c^2 \ge 19abc(a + b + c). \] + We use the non-linear arithmetic (nlinarith) tactic, which automatically handles inequalities involving squares and products of real numbers. The tactic checks the non-negativity of various squared terms and combines them to derive the desired inequality. + -/ + -- Use nlinarith to handle the non-linear arithmetic inequality. + -- We provide several non-negative terms to help nlinarith derive the inequality. + nlinarith [sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a), + mul_pos hab.1 hab.2.1, mul_pos hab.2.1 hab.2.2, mul_pos hab.2.2 hab.1, + sq_nonneg (a * b - 1 / 3), sq_nonneg (b * c - 1 / 3), sq_nonneg (c * a - 1 / 3), + sq_nonneg (a * b + b * c + c * a - 1)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10309.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10309.lean new file mode 100644 index 0000000000000000000000000000000000000000..6efacbcb59752a5cea2f5ad985a1944380055890 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10309.lean @@ -0,0 +1,24 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- it's $ 3a^{2}-12a\leq0 ,0\leq a\leq4 $ -/ +theorem lean_workbook_10309 (a : ℝ) (h₁ : 3 * a ^ 2 - 12 * a ≤ 0) (h₂ : 0 ≤ a) (h₃ : a ≤ 4) : 0 ≤ a ∧ a ≤ 4 := by + /- + Given the inequalities \(3a^2 - 12a \leq 0\), \(0 \leq a\), and \(a \leq 4\), we need to show that \(0 \leq a \leq 4\). + 1. From \(3a^2 - 12a \leq 0\), we can factorize it as \(3a(a - 4) \leq 0\). + 2. Since \(0 \leq a\), we know that \(a\) is non-negative. + 3. Combining \(3a(a - 4) \leq 0\) with \(0 \leq a\), we deduce that \(a\) must be less than or equal to 4. + Thus, combining these results, we conclude that \(0 \leq a \leq 4\). + -/ + -- We need to show that 0 ≤ a and a ≤ 4. + refine' ⟨h₂, _⟩ + -- We already know 0 ≤ a from h₂. + -- Now, we need to show a ≤ 4. + -- From h₁: 3a^2 - 12a ≤ 0, we can factorize it as 3a(a - 4) ≤ 0. + -- Since 0 ≤ a, we know a is non-negative. + -- Combining 3a(a - 4) ≤ 0 with 0 ≤ a, we deduce a ≤ 4. + nlinarith diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10314.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10314.lean new file mode 100644 index 0000000000000000000000000000000000000000..88fc917899d13d622c0770e889a802c260b335ac --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10314.lean @@ -0,0 +1,32 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $3^n \ge 2n + 1$ for $n \in \mathbb{Z^+}$ -/ +theorem lean_workbook_10314 (n : ℕ) : 3^n ≥ 2*n + 1 := by + /- + We aim to prove that for any positive integer \( n \), \( 3^n \geq 2n + 1 \). We will use mathematical induction to establish this result. + 1. **Base Case**: When \( n = 1 \), we need to show that \( 3^1 \geq 2 \cdot 1 + 1 \). This simplifies to \( 3 \geq 3 \), which is true. + 2. **Inductive Step**: Assume that the statement holds for some positive integer \( n \), i.e., \( 3^n \geq 2n + 1 \). We need to show that the statement holds for \( n + 1 \), i.e., \( 3^{n+1} \geq 2(n + 1) + 1 \). + Starting from \( 3^{n+1} = 3 \cdot 3^n \), we can use the inductive hypothesis \( 3^n \geq 2n + 1 \) to get: + \[ + 3^{n+1} = 3 \cdot 3^n \geq 3 \cdot (2n + 1) = 6n + 3 + \] + We need to show that \( 6n + 3 \geq 2(n + 1) + 1 = 2n + 3 \). This inequality simplifies to \( 6n + 3 \geq 2n + 3 \), which is equivalent to \( 4n \geq 0 \). Since \( n \) is a positive integer, \( 4n \geq 0 \) is always true. + Thus, by mathematical induction, we have shown that \( 3^n \geq 2n + 1 \) for all positive integers \( n \). + -/ + induction n with + | zero => + -- Base case: when n = 0, we need to show 3^0 ≥ 2*0 + 1 + -- This simplifies to 1 ≥ 1, which is true. + simp + | succ n hn => + -- Inductive step: assume the statement holds for n, i.e., 3^n ≥ 2n + 1 + -- We need to show it holds for n + 1, i.e., 3^(n+1) ≥ 2(n + 1) + 1 + simp_all [Nat.pow_succ, Nat.mul_succ] + -- Simplify the expression to 3^(n+1) = 3 * 3^n ≥ 3 * (2n + 1) = 6n + 3 + -- We need to show 6n + 3 ≥ 2n + 3, which simplifies to 4n ≥ 0, always true for positive n + nlinarith diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10319.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10319.lean new file mode 100644 index 0000000000000000000000000000000000000000..e541f5f9bb7a83324202b848eabcaee275b15ae6 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10319.lean @@ -0,0 +1,19 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $\left(x^2-yz-1\right)^2+\left(y^2-zx-1\right)^2+\left(z^2-xy-1\right)^2\ge0$ -/ +theorem lean_workbook_10319 (x y z : ℝ) : (x^2 - y * z - 1)^2 + (y^2 - z * x - 1)^2 + (z^2 - x * y - 1)^2 ≥ 0 := by + /- + We need to prove that for any real numbers \( x \), \( y \), and \( z \), the expression \(\left(x^2 - yz - 1\right)^2 + \left(y^2 - zx - 1\right)^2 + \left(z^2 - xy - 1\right)^2\) is non-negative. This can be shown by demonstrating that each term in the sum is a square of a real number, hence non-negative, and their sum is therefore non-negative. + -/ + -- Apply the fact that the sum of non-negative numbers is non-negative. + apply le_of_sub_nonneg + -- Use non-linear arithmetic to show that the expression is non-negative. + -- Each term (x^2 - y * z - 1)^2, (y^2 - z * x - 1)^2, and (z^2 - x * y - 1)^2 is a square, hence non-negative. + nlinarith [sq_nonneg (x^2 - y * z - 1), sq_nonneg (y^2 - z * x - 1), sq_nonneg (z^2 - x * y - 1), + sq_nonneg (x^2 - y * z), sq_nonneg (y^2 - z * x), sq_nonneg (z^2 - x * y), + sq_nonneg (x^2 - 1), sq_nonneg (y^2 - 1), sq_nonneg (z^2 - 1)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1032.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1032.lean new file mode 100644 index 0000000000000000000000000000000000000000..f2a73e45e1480c1028ec8b7f2d659d5c6a5bf30c --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1032.lean @@ -0,0 +1,15 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- By Vasc's inequality we have \n $\frac53(a^2+b^2+c^2)^2 \ge 2\sum a^3b+3\sum ab^3$ -/ +theorem lean_workbook_1032 (a b c : ℝ) : (5 / 3) * (a ^ 2 + b ^ 2 + c ^ 2) ^ 2 ≥ 2 * (a ^ 3 * b + b ^ 3 * c + c ^ 3 * a) + 3 * (a * b ^ 3 + b * c ^ 3 + c * a ^ 3) := by + /- + We need to show that for real numbers \(a\), \(b\), and \(c\), the inequality \(\frac{5}{3}(a^2 + b^2 + c^2)^2 \geq 2(a^3b + b^3c + c^3a) + 3(ab^3 + bc^3 + ca^3)\) holds. This can be verified using non-linear arithmetic (nlinarith) by considering the non-negativity of squares and applying basic algebraic inequalities. + -/ + -- Use non-linear arithmetic to verify the inequality by considering the non-negativity of squares and applying basic algebraic inequalities. + nlinarith [sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a), + sq_nonneg (a - b + c), sq_nonneg (b - c + a), sq_nonneg (c - a + b)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10328.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10328.lean new file mode 100644 index 0000000000000000000000000000000000000000..43f3bff125f10d853f8648cd70ed74d03218df54 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10328.lean @@ -0,0 +1,15 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove $4a^3-9a^2+9a+4\geqq 0$ for $a \geq 1$. -/ +theorem lean_workbook_10328 (a : ℝ) (h : a ≥ 1) : 4 * a ^ 3 - 9 * a ^ 2 + 9 * a + 4 ≥ 0 := by + /- + To prove that \(4a^3 - 9a^2 + 9a + 4 \geq 0\) for \(a \geq 1\), we can use the non-linear arithmetic (nlinarith) tactic in Lean4. This tactic is designed to handle inequalities involving polynomials and other non-linear expressions. By providing specific squares that are non-negative, we can establish the desired inequality. + -/ + -- Use nlinarith to handle the inequality. We provide specific non-negative expressions to help nlinarith prove the inequality. + nlinarith [sq_nonneg (a - 1), sq_nonneg (a - 2 / 3), sq_nonneg (a - 1 / 3), + sq_nonneg (a + 1 / 3), sq_nonneg (a + 2 / 3)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10329.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10329.lean new file mode 100644 index 0000000000000000000000000000000000000000..1fbd404c26636ccd64f50b30b23b20184f3addec --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10329.lean @@ -0,0 +1,31 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- $$2 | \binom{n}{2} \implies 4 | n(n-1) \implies n \equiv 0, 1 \mod 4.$$ -/ +theorem lean_workbook_10329 : ∀ n : ℕ, 2 ∣ n.choose 2 → 4 ∣ n * (n - 1) → n ≡ 0 [ZMOD 4] ∨ n ≡ 1 [ZMOD 4] := by + /- + For any natural number \( n \), if \( 2 \) divides \( \binom{n}{2} \) and \( 4 \) divides \( n(n-1) \), then \( n \equiv 0 \mod 4 \) or \( n \equiv 1 \mod 4 \). + 1. **Assumption and Setup**: + - \( 2 \) divides \( \binom{n}{2} \) implies \( n \equiv 0 \mod 2 \) or \( n \equiv 1 \mod 2 \). + - \( 4 \) divides \( n(n-1) \) implies \( n \equiv 0 \mod 4 \) or \( n \equiv 1 \mod 4 \). + 2. **Case Analysis**: + - If \( n \equiv 0 \mod 2 \), then \( n = 2k \) for some integer \( k \). + - If \( n \equiv 1 \mod 2 \), then \( n = 2k + 1 \) for some integer \( k \). + - Similarly, for \( 4 \), we consider \( n \equiv 0 \mod 4 \) or \( n \equiv 1 \mod 4 \). + 3. **Verification**: + - Check the conditions under which \( n \equiv 0 \mod 4 \) and \( n \equiv 1 \mod 4 \). + 4. **Conclusion**: + - By analyzing the conditions, we conclude that \( n \equiv 0 \mod 4 \) or \( n \equiv 1 \mod 4 \). + -/ + intro n h₀ h₁ + -- Normalize the expressions involving divisibility and modular arithmetic. + norm_num [Nat.choose_two_right, Nat.dvd_iff_mod_eq_zero, Int.ModEq] at h₀ h₁ ⊢ + -- Perform case analysis on the possible values of n modulo 4. + have h₂ : n % 4 = 0 ∨ n % 4 = 1 ∨ n % 4 = 2 ∨ n % 4 = 3 := by omega + rcases h₂ with (h₂ | h₂ | h₂ | h₂) <;> simp [h₂, Nat.mul_mod, Nat.add_mod, Nat.mod_mod] at h₀ h₁ ⊢ + -- Use omega to solve the resulting equations and conclude the proof. + <;> omega diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10331.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10331.lean new file mode 100644 index 0000000000000000000000000000000000000000..3d41c83e08a2a17dcdc38b90eb4b854da1264add --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10331.lean @@ -0,0 +1,19 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- We just have to prove that $6(a^2+b^2) \ge (3a^2+3b^2+(a+b)^2+2ab)$ which is equivalent to $2a^2+2b^2 \ge 4ab$ which is true. -/ +theorem lean_workbook_10331 (a b : ℝ) : + 2 * a^2 + 2 * b^2 ≥ 4 * a * b := by + /- + To prove the inequality \(6(a^2 + b^2) \ge 3a^2 + 3b^2 + (a + b)^2 + 2ab\), we start by simplifying the inequality. We can rewrite the inequality as \(2a^2 + 2b^2 \ge 4ab\). This inequality is equivalent to \((a - b)^2 \ge 0\), which is always true since the square of any real number is non-negative. + -/ + -- We start by proving a simpler inequality equivalent to the original. + have h : 0 ≤ (a - b)^2 := by + -- The square of any real number is non-negative. + apply sq_nonneg + -- Using the non-negativity of (a - b)^2, we can conclude the original inequality. + linarith [sq_nonneg (a - b)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10337.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10337.lean new file mode 100644 index 0000000000000000000000000000000000000000..6c7edc3b15c8c6f0a4bbebf27213c15a6b0830f6 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10337.lean @@ -0,0 +1,31 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- If $a,b$ are both odd then $a^2+b^2+c^2 \equiv 2,3 \pmod {4}$ -/ +theorem lean_workbook_10337 {a b c : ℤ} (ha : Odd a) (hb : Odd b) : (a^2 + b^2 + c^2) % 4 = 2 ∨ (a^2 + b^2 + c^2) % 4 = 3 := by + /- + Given that \(a\) and \(b\) are both odd integers, we need to show that \(a^2 + b^2 + c^2\) modulo 4 is either 2 or 3. + 1. Since \(a\) is odd, \(a\) modulo 4 can be either 1 or 3. This is because any odd integer can be written in the form \(2k + 1\) or \(2k + 3\), and modulo 4, these expressions simplify to 1 and 3 respectively. + 2. Similarly, since \(b\) is odd, \(b\) modulo 4 can also be either 1 or 3. + 3. For any integer \(c\), \(c\) modulo 4 can be 0, 1, 2, or 3. + 4. We consider all combinations of these residues and compute \(a^2 + b^2 + c^2\) modulo 4. We find that in all cases, the result is either 2 or 3. + -/ + -- Since a is odd, a modulo 4 can be either 1 or 3. + have h₀ : a % 4 = 1 ∨ a % 4 = 3 := by + cases' ha with k hk + omega + -- Since b is odd, b modulo 4 can be either 1 or 3. + have h₁ : b % 4 = 1 ∨ b % 4 = 3 := by + cases' hb with k hk + omega + -- For any integer c, c modulo 4 can be 0, 1, 2, or 3. + have h₂ : c % 4 = 0 ∨ c % 4 = 1 ∨ c % 4 = 2 ∨ c % 4 = 3 := by + omega + -- Consider all combinations of these residues and compute a^2 + b^2 + c^2 modulo 4. + rcases h₀ with (h₀ | h₀) <;> rcases h₁ with (h₁ | h₁) <;> rcases h₂ with (h₂ | h₂ | h₂ | h₂) <;> + simp [h₀, h₁, h₂, pow_two, Int.add_emod, Int.mul_emod, Int.emod_emod] + <;> omega diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1034.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1034.lean new file mode 100644 index 0000000000000000000000000000000000000000..d8bf984201df82b71751bf4ae2a6628d94e46d38 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1034.lean @@ -0,0 +1,22 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $x,y,z\ge0$ such that $x+y+z\le1,$ prove that $x^2+y^2+z^2-(xy)^2-(yz)^2-(zx)^2+2(xyz)^2\le1.$ -/ +theorem lean_workbook_1034 : ∀ x y z : ℝ, x ≥ 0 ∧ y ≥ 0 ∧ z ≥ 0 ∧ x + y + z ≤ 1 → x ^ 2 + y ^ 2 + z ^ 2 - x * y ^ 2 - y * z ^ 2 - z * x ^ 2 + 2 * x * y * z ≤ 1 := by + /- + Given \( x, y, z \ge 0 \) such that \( x + y + z \le 1 \), we need to prove that: + \[ x^2 + y^2 + z^2 - xy^2 - yz^2 - zx^2 + 2xyz \le 1. \] + To prove this, we use the non-linear arithmetic (nlinarith) tactic, which automatically handles inequalities involving polynomials. We provide specific non-negativity conditions to ensure that the terms involved in the inequality are valid. + -/ + -- Introduce the variables x, y, z and the hypothesis h + intro x y z h + -- Use the nlinarith tactic to handle the inequality + nlinarith [sq_nonneg (x - y), sq_nonneg (y - z), sq_nonneg (z - x), + mul_nonneg h.1 h.2.1, mul_nonneg h.2.1 h.2.2.1, mul_nonneg h.2.2.1 h.1, + mul_nonneg (sq_nonneg x) (sq_nonneg y), mul_nonneg (sq_nonneg y) (sq_nonneg z), + mul_nonneg (sq_nonneg z) (sq_nonneg x), mul_self_nonneg (x - y + z), + mul_self_nonneg (y - z + x), mul_self_nonneg (z - x + y)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10342.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10342.lean new file mode 100644 index 0000000000000000000000000000000000000000..c217d3dbada23563eb1e942aaddbe2d9735d1399 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10342.lean @@ -0,0 +1,24 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Claim 2. Let $x,y$ be nonnegative reals. Then\n\n $$\frac{1}{2x+1}+\frac{1}{2y+1}\ge\frac{2}{xy+2}.$$ -/ +theorem lean_workbook_10342 (x y : ℝ) (hx : 0 ≤ x) (hy : 0 ≤ y) : (1 / (2 * x + 1) + 1 / (2 * y + 1)) ≥ 2 / (x * y + 2) := by + /- + To prove the inequality \(\frac{1}{2x+1}+\frac{1}{2y+1}\ge\frac{2}{xy+2}\) for nonnegative reals \(x\) and \(y\), we proceed as follows: + 1. **Simplify the left-hand side**: Combine the fractions \(\frac{1}{2x+1}\) and \(\frac{1}{2y+1}\) over a common denominator. + 2. **Simplify the right-hand side**: Combine the fractions over a common denominator. + 3. **Use algebraic manipulation**: Apply algebraic identities and inequalities to show that the left-hand side is greater than or equal to the right-hand side. + 4. **Apply inequalities**: Use known inequalities such as the AM-GM inequality to establish the desired result. + -/ + -- Combine the fractions on the left-hand side over a common denominator. + have h₀ : 0 ≤ x * y := mul_nonneg hx hy + have h₁ : 0 ≤ x * y + 2 := by nlinarith + have h₂ : 0 ≤ 2 * x + 1 := by nlinarith + have h₃ : 0 ≤ 2 * y + 1 := by nlinarith + field_simp + rw [div_le_div_iff] <;> + nlinarith [sq_nonneg (x - y), sq_nonneg (x + y), sq_nonneg (x * y - 1), sq_nonneg (x * y + 1)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10344.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10344.lean new file mode 100644 index 0000000000000000000000000000000000000000..323c926629e3d0cd88fc894235330d07ab8310f3 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10344.lean @@ -0,0 +1,28 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $P(x,y)$ be the assertion $f(x-f(y))=1-x-y$. $P(f(0),0)$ $\implies$ $f(0)=\frac 12$. $P(x+\frac 12,0)$ $\implies$ $\boxed{f(x)=\frac 12-x\quad\forall x}$ , which indeed fits. $P(f(y),y)\Rightarrow f(0)=1-f(y)-y$ so $f$ is linear. We see that $\boxed{f(x)=\frac12-x}$ . -/ +theorem lean_workbook_10344 (f : ℝ → ℝ) + (h₀ : ∀ x, ∀ y, f (x - f y) = 1 - x - y) : + ∀ x, f x = 1 / 2 - x := by + /- + Given the function \( f : \mathbb{R} \to \mathbb{R} \) and the property \( P(x, y) \) defined as \( f(x - f(y)) = 1 - x - y \), we need to show that \( f(x) = \frac{1}{2} - x \) for all \( x \). + 1. Start by evaluating \( P \) at specific points to derive useful equalities. + 2. Use \( P(f(0), 0) \) to get \( f(0) = \frac{1}{2} \). + 3. Use \( P(x + \frac{1}{2}, 0) \) to get \( f(x + \frac{1}{2}) = \frac{1}{2} - x \). + 4. From \( P(f(y), y) \), derive \( f(0) = 1 - f(y) - y \), implying \( f \) is linear. + 5. Combine the results to conclude \( f(x) = \frac{1}{2} - x \). + -/ + intro x + have h₁ := h₀ 0 0 + have h₂ := h₀ (f 0) 0 + have h₃ := h₀ x 0 + have h₄ := h₀ (f x) x + -- Simplify the derived equalities to find specific values of f + simp at h₁ h₂ h₃ h₄ + -- Use linear arithmetic to conclude the form of f + linarith diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10348.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10348.lean new file mode 100644 index 0000000000000000000000000000000000000000..89027cbcedb8dd8c06198de2fb5bea83a1b8e927 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10348.lean @@ -0,0 +1,31 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Show that $f(x)=x$ for every real number $x$ given the following inequalities for every pair of real numbers $x,y$ : $f(x)\leq x$ and $f(x+y)\leq f(x)+f(y)$. -/ +theorem lean_workbook_10348 (f : ℝ → ℝ) (hf₁: ∀ x, f x ≤ x) (hf₂: ∀ x y, f (x + y) ≤ f x + f y) : ∀ x, f x = x := by + /- + Given the function \( f : \mathbb{R} \to \mathbb{R} \) and the conditions \( f(x) \leq x \) for all \( x \in \mathbb{R} \) and \( f(x + y) \leq f(x) + f(y) \) for all \( x, y \in \mathbb{R} \), we need to show that \( f(x) = x \) for all \( x \in \mathbb{R} \). + 1. Start by introducing an arbitrary real number \( x \). + 2. Use the second condition \( f(x + y) \leq f(x) + f(y) \) with \( y = x \) to get \( f(x + x) \leq f(x) + f(x) \), which simplifies to \( f(2x) \leq 2f(x) \). + 3. Use the second condition with \( y = -x \) to get \( f(x + (-x)) \leq f(x) + f(-x) \), which simplifies to \( f(0) \leq f(x) + f(-x) \). + 4. Use the first condition \( f(x) \leq x \) and \( f(-x) \leq -x \) to derive additional inequalities. + 5. Combine these inequalities to show that \( f(x) = x \). + -/ + intro x + -- Use the second condition with y = x to get f(2x) ≤ 2f(x) + have h1 := hf₂ 0 x + have h2 := hf₂ x 0 + have h3 := hf₂ x (-x) + have h4 := hf₂ (-x) x + -- Simplify the inequalities using the fact that f(0) = 0 + simp at h1 h2 h3 h4 + -- Use the first condition to derive additional inequalities + have h5 := hf₁ 0 + have h6 := hf₁ x + have h7 := hf₁ (-x) + -- Combine all inequalities to show that f(x) = x + linarith diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10352.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10352.lean new file mode 100644 index 0000000000000000000000000000000000000000..56593458dcb034948d985c3b520a88cef86d605d --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10352.lean @@ -0,0 +1,18 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove $(a^2+b^2+c^2)(a^2b^2+b^2c^2+c^2a^2)\ge (a^2b+b^2c+c^2a)(ab^2+bc^2+ca^2)$ -/ +theorem lean_workbook_10352 (a b c : ℝ) : (a^2 + b^2 + c^2) * (a^2 * b^2 + b^2 * c^2 + c^2 * a^2) ≥ (a^2 * b + b^2 * c + c^2 * a) * (a * b^2 + b * c^2 + c * a^2) := by + /- + To prove the inequality \((a^2 + b^2 + c^2)(a^2b^2 + b^2c^2 + c^2a^2) \geq (a^2b + b^2c + c^2a)(ab^2 + bc^2 + ca^2)\), we can use the non-linear arithmetic tactic `nlinarith` with the non-negativity of squares as a key property. Specifically, we will consider the non-negativity of various expressions involving \(a\), \(b\), and \(c\) to establish the inequality. + -/ + -- Use the non-linear arithmetic tactic `nlinarith` with the non-negativity of squares as a key property. + -- This tactic will consider the non-negativity of various expressions involving `a`, `b`, and `c` to establish the inequality. + nlinarith [sq_nonneg (a * b - b * c), sq_nonneg (b * c - c * a), sq_nonneg (c * a - a * b), + sq_nonneg (a * b + b * c), sq_nonneg (b * c + c * a), sq_nonneg (c * a + a * b), + sq_nonneg (a * b * (a - b)), sq_nonneg (b * c * (b - c)), sq_nonneg (c * a * (c - a)), + sq_nonneg (a * b * (b - a)), sq_nonneg (b * c * (c - b)), sq_nonneg (c * a * (a - c))] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10355.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10355.lean new file mode 100644 index 0000000000000000000000000000000000000000..adb74e51bad6404e60fe0a77954eecf92320deac --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10355.lean @@ -0,0 +1,38 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Suppose $u+2v>4$, use AM-GM inequality to show that $2uv\leq\frac{u^2+4v^2}{2}$. -/ +theorem lean_workbook_10355 (u v : ℝ) (h : u + 2 * v > 4) : 2 * u * v ≤ (u ^ 2 + 4 * v ^ 2) / 2 := by + /- + Given \( u + 2v > 4 \), we aim to show that \( 2uv \leq \frac{u^2 + 4v^2}{2} \). This can be derived using the non-negativity of squares and basic algebraic manipulations. Specifically, we start by considering the square of the difference \( (u - 2v) \), which is non-negative. By expanding and simplifying the expression, we can derive the desired inequality. + -/ + -- Use the non-negativity of the square of the difference (u - 2v) to derive the inequality. + -- Specifically, we know that (u - 2v)^2 ≥ 0. + nlinarith [sq_nonneg (u - 2 * v)] + -- The `nlinarith` tactic will automatically handle the algebraic manipulations and inequalities to conclude the proof. + <;> + nlinarith [sq_nonneg (u - 2 * v)] + <;> + nlinarith [sq_nonneg (u + 2 * v)] + <;> + nlinarith [sq_nonneg (u - 2 * v)] + <;> + nlinarith [sq_nonneg (u + 2 * v)] + <;> + nlinarith [sq_nonneg (u - 2 * v)] + <;> + nlinarith [sq_nonneg (u + 2 * v)] + <;> + nlinarith [sq_nonneg (u - 2 * v)] + <;> + nlinarith [sq_nonneg (u + 2 * v)] + <;> + nlinarith [sq_nonneg (u - 2 * v)] + <;> + nlinarith [sq_nonneg (u + 2 * v)] + <;> + nlinarith [sq_nonneg (u - 2 * v)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10358.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10358.lean new file mode 100644 index 0000000000000000000000000000000000000000..a45eb74f32de7de0fb4c6552b25b50db2253b17a --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10358.lean @@ -0,0 +1,27 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $ a,b,c > 0$ be such that $ a + b + c = 1$ . Find min. value of $ \frac {2 - a^2}{1 - a} + \frac {2 - b^2}{1 - b} + \frac {2 - c^2}{1 - c}$ . -/ +theorem lean_workbook_10358 (a b c : ℝ) (ha : a > 0 ∧ a + b + c = 1) (hb : b > 0 ∧ a + b + c = 1) (hc : c > 0 ∧ a + b + c = 1): (17/2 : ℝ) ≤ (2 - a^2)/(1 - a) + (2 - b^2)/(1 - b) + (2 - c^2)/(1 - c) := by + /- + Given \( a, b, c > 0 \) such that \( a + b + c = 1 \), we aim to find the minimum value of the expression \( \frac{2 - a^2}{1 - a} + \frac{2 - b^2}{1 - b} + \frac{2 - c^2}{1 - c} \). + 1. **Non-negativity of the denominators**: Since \( a, b, c > 0 \) and \( a + b + c = 1 \), it follows that \( 1 - a, 1 - b, 1 - c > 0 \). + 2. **Simplifying the expression**: Each term \( \frac{2 - a^2}{1 - a} \), \( \frac{2 - b^2}{1 - b} \), and \( \frac{2 - c^2}{1 - c} \) can be rewritten using the fact that \( a + b + c = 1 \). + 3. **Combining the terms**: By combining these terms, we can derive a lower bound for the sum. + 4. **Using algebraic manipulation and inequalities**: Utilize algebraic manipulation and inequalities to show that the sum of these terms is at least \( \frac{17}{2} \). + -/ + -- Show that the denominators are positive. + have h₀ : 0 < 1 - a := by linarith + have h₁ : 0 < 1 - b := by linarith + have h₂ : 0 < 1 - c := by linarith + -- Use the fact that the denominators are positive to simplify the expression. + have h₃ : 0 < (1 - a) * (1 - b) := by positivity + have h₄ : 0 < (1 - a) * (1 - b) * (1 - c) := by positivity + -- Use algebraic manipulation and inequalities to derive the lower bound. + field_simp [h₀, h₁, h₂] + rw [div_le_div_iff] <;> + nlinarith [sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (a - c), sq_nonneg (b - c)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1036.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1036.lean new file mode 100644 index 0000000000000000000000000000000000000000..d57f86b20d0a7a3e6682cb668b0b3a4e9ab83759 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1036.lean @@ -0,0 +1,25 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $a,\ b,\ c$ be real numbers such that $|a-1|+|b-1|+|c-1|+|a+1|+|b+1|+|c+1|=12$ . Prove that : $a^2+b^2+c^2\geq 12$ . When does equality hold? -/ +theorem lean_workbook_1036 (a b c : ℝ) (h : abs (a - 1) + abs (b - 1) + abs (c - 1) + abs (a + 1) + abs (b + 1) + abs (c + 1) = 12) : a ^ 2 + b ^ 2 + c ^ 2 ≥ 12 := by + /- + Given real numbers \(a\), \(b\), and \(c\) such that \(|a-1| + |b-1| + |c-1| + |a+1| + |b+1| + |c+1| = 12\), we need to prove that \(a^2 + b^2 + c^2 \geq 12\). + To prove this, we consider the cases where each of \(a-1\), \(b-1\), \(c-1\), \(a+1\), \(b+1\), and \(c+1\) are non-negative or non-positive. By analyzing these cases, we can simplify the absolute values and use algebraic manipulations to show that the sum of the squares of \(a\), \(b\), and \(c\) is at least 12. + -/ + -- Consider the cases where each of the expressions is non-negative or non-positive. + cases' le_total 0 (a - 1) with h₀ h₀ <;> + cases' le_total 0 (b - 1) with h₁ h₁ <;> + cases' le_total 0 (c - 1) with h₂ h₂ <;> + cases' le_total 0 (a + 1) with h₃ h₃ <;> + cases' le_total 0 (b + 1) with h₄ h₄ <;> + cases' le_total 0 (c + 1) with h₅ h₅ <;> + -- Simplify the absolute values based on the non-negativity or non-positivity. + simp_all only [abs_of_nonneg, abs_of_nonpos, sub_nonneg, sub_nonpos] <;> + -- Use algebraic manipulations and inequalities to show the desired result. + nlinarith [sq_nonneg (a - b), sq_nonneg (a - c), sq_nonneg (b - c), + sq_nonneg (a + b), sq_nonneg (a + c), sq_nonneg (b + c)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10364.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10364.lean new file mode 100644 index 0000000000000000000000000000000000000000..14d2d717784065b192773328a90ee33adccc32d1 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10364.lean @@ -0,0 +1,20 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let be $ a,b\in \mathbb{R}$ such that $ 16a^4+12a^2+9b^2+8a\le 3$ . Prove that : $ a(8a^2+b)\le 1$ -/ +theorem lean_workbook_10364 (a b : ℝ) (h : 16 * a ^ 4 + 12 * a ^ 2 + 9 * b ^ 2 + 8 * a ≤ 3) : + a * (8 * a ^ 2 + b) ≤ 1 := by + /- + Given \( a, b \in \mathbb{R} \) such that \( 16a^4 + 12a^2 + 9b^2 + 8a \leq 3 \), we need to prove that \( a(8a^2 + b) \leq 1 \). + First, we use the non-negativity of squares to establish several inequalities. Specifically, we consider the squares of expressions involving \( a \) and \( b \). By leveraging these inequalities, we can derive the desired result using non-linear arithmetic. + -/ + -- Use non-linear arithmetic to prove the inequality. + -- We provide several non-negative expressions to help the arithmetic solver. + nlinarith [sq_nonneg (4 * a ^ 2 + b / 4), sq_nonneg (4 * a ^ 2 - b / 4), + sq_nonneg (2 * a - b / 2), sq_nonneg (2 * a + b / 2), + sq_nonneg (2 * a ^ 2 - b / 2), sq_nonneg (2 * a ^ 2 + b / 2), + sq_nonneg (b / 2 - 2 * a), sq_nonneg (b / 2 + 2 * a)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10370.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10370.lean new file mode 100644 index 0000000000000000000000000000000000000000..14c2ad15c6d3f837672f474157956d861b978042 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10370.lean @@ -0,0 +1,46 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Note that $f(x)=\sum_{k=1}^nkx^k=x\frac{nx^{n+1}-(n+1)x^n+1}{(x-1)^2}$ $\forall x\ne 1$ -/ +theorem lean_workbook_10370 {n : ℕ} (hn : 0 < n) (x : ℝ) (hx : x ≠ 1) : ∑ k in Finset.Icc 1 n, (k * x ^ k) = x * (n * x ^ (n + 1) - (n + 1) * x ^ n + 1) / (x - 1) ^ 2 := by + /- + We need to show that for a given natural number \( n \) greater than 0 and a real number \( x \) not equal to 1, the sum of \( k \cdot x^k \) from \( k = 1 \) to \( n \) equals \( x \cdot \frac{n \cdot x^{n+1} - (n+1) \cdot x^n + 1}{(x-1)^2} \). + 1. **Base Case (n = 1):** + - The sum for \( n = 1 \) is \( 1 \cdot x^1 = x \). + - The right-hand side simplifies to \( x \cdot \frac{1 \cdot x^2 - 2 \cdot x + 1}{(x-1)^2} = x \cdot \frac{x^2 - 2x + 1}{(x-1)^2} \). + - Since \( x \neq 1 \), the denominator \( (x-1)^2 \) is non-zero, and the expression simplifies correctly. + 2. **Inductive Step:** + - Assume the statement holds for \( n \), i.e., \( \sum_{k=1}^n k \cdot x^k = x \cdot \frac{n \cdot x^{n+1} - (n+1) \cdot x^n + 1}{(x-1)^2} \). + - For \( n+1 \), the sum becomes: + \[ + \sum_{k=1}^{n+1} k \cdot x^k = \sum_{k=1}^n k \cdot x^k + (n+1) \cdot x^{n+1} + \] + - Using the inductive hypothesis: + \[ + \sum_{k=1}^{n+1} k \cdot x^k = x \cdot \frac{n \cdot x^{n+1} - (n+1) \cdot x^n + 1}{(x-1)^2} + (n+1) \cdot x^{n+1} + \] + - Simplify the expression using algebraic manipulations to match the form for \( n+1 \). + -/ + induction n with + | zero => + -- This case is impossible because hn : 0 < n + contradiction + | succ n ih => + -- Base case: n = 1 + cases n with + | zero => + -- When n = 1, the sum is 1 * x^1 = x + simp [Finset.sum_Icc_succ_top, mul_add, mul_comm, mul_left_comm] + -- Simplify the right-hand side to match the left-hand side + field_simp [sub_ne_zero.mpr hx] + ring + | succ n => + -- Inductive step: assume the statement holds for n, prove for n+1 + simp_all [Finset.sum_Icc_succ_top, mul_add, mul_comm, mul_left_comm] + -- Simplify the expression using algebraic manipulations + field_simp [sub_ne_zero.mpr hx] + ring diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10373.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10373.lean new file mode 100644 index 0000000000000000000000000000000000000000..8a515e7d394e40df8e20914b94134538751a2523 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10373.lean @@ -0,0 +1,36 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove $y^{n}-1\geqslant n(y-1)$ for $y>0$. -/ +theorem lean_workbook_10373 (y : ℝ) (n : ℕ) (hy : y > 0) : y ^ n - 1 ≥ n * (y - 1) := by + /- + We aim to prove that for any real number \( y > 0 \) and natural number \( n \), the inequality \( y^n - 1 \geq n(y - 1) \) holds. We will use mathematical induction on \( n \). + **Base Case:** + For \( n = 0 \), the left-hand side is \( y^0 - 1 = 1 - 1 = 0 \), and the right-hand side is \( 0 \cdot (y - 1) = 0 \). Thus, the inequality holds trivially. + **Inductive Step:** + Assume the inequality holds for some \( n \), i.e., \( y^n - 1 \geq n(y - 1) \). We need to show it holds for \( n + 1 \). + Starting from the left-hand side for \( n + 1 \): + \[ y^{n+1} - 1 = y \cdot y^n - 1 \] + Using the inductive hypothesis \( y^n - 1 \geq n(y - 1) \), we have: + \[ y \cdot y^n - 1 \geq y \cdot (n(y - 1) + 1) - 1 \] + Simplifying the right-hand side: + \[ y \cdot (n(y - 1) + 1) - 1 = y \cdot n(y - 1) + y - 1 = y^{n+1} - y \cdot n + y - 1 \] + Since \( y > 0 \), we can use the fact that \( y - 1 \geq 0 \) (because \( y > 0 \)): + \[ y^{n+1} - y \cdot n + y - 1 \geq (n + 1)(y - 1) \] + Thus, we have shown that: + \[ y^{n+1} - 1 \geq (n + 1)(y - 1) \] + By induction, the inequality holds for all natural numbers \( n \). + -/ + induction n with + | zero => + -- Base case: when n = 0, the inequality holds trivially. + simp + | succ n hn => + -- Inductive step: assume the inequality holds for n, prove it for n + 1. + simp only [Nat.cast_succ, pow_succ, mul_add, mul_one, Nat.cast_zero, add_zero, mul_comm] at hn ⊢ + -- Simplify the expressions using algebraic properties. + nlinarith [sq_nonneg (y - 1)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10379.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10379.lean new file mode 100644 index 0000000000000000000000000000000000000000..b9e75a6989ff30bbe4eb6c19f6607d925190687d --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10379.lean @@ -0,0 +1,17 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Let $a,b,c$ be non negative reals such that $a+b+c+ab+bc+ca=6$. Prove that $4(a+b+c)+abc\ge\ 13.$ -/ +theorem lean_workbook_10379 (a b c : ℝ) (ha : 0 ≤ a) (hb : 0 ≤ b) (hc : 0 ≤ c) (hab : a + b + c + a * b + b * c + c * a = 6) : 4 * (a + b + c) + a * b * c ≥ 13 := by + /- + Given non-negative real numbers \(a\), \(b\), and \(c\) such that \(a + b + c + ab + bc + ca = 6\), we need to prove that \(4(a + b + c) + abc \geq 13\). + To prove this, we use the non-linear arithmetic (nlinarith) tactic, which automatically handles inequalities involving polynomials. We provide specific non-negativity conditions to ensure that the squares of the differences and the non-negativity of the variables are respected. + -/ + -- Use non-linear arithmetic to handle the inequality. + -- We provide specific non-negativity conditions to ensure the squares of the differences and the non-negativity of the variables are respected. + nlinarith [sq_nonneg (a - 1), sq_nonneg (b - 1), sq_nonneg (c - 1), mul_nonneg ha hb, mul_nonneg hb hc, mul_nonneg hc ha, + sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10385.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10385.lean new file mode 100644 index 0000000000000000000000000000000000000000..b4aebf4d7aba50035b4a8d0633961f7924175ba6 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10385.lean @@ -0,0 +1,42 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $ \frac{\cos\theta + \sqrt{3}\sin\theta}{2} = \cos\left(\theta - \frac{\pi}{3}\right)$ -/ +theorem lean_workbook_10385 : ∀ θ : ℝ, (cos θ + Real.sqrt 3 * sin θ) / 2 = cos (θ - Real.pi / 3) := by + /- + To prove that \( \frac{\cos\theta + \sqrt{3}\sin\theta}{2} = \cos\left(\theta - \frac{\pi}{3}\right) \), we start by using the angle subtraction formula for cosine. Specifically, we use the identity \( \cos(\theta - \phi) = \cos\theta\cos\phi + \sin\theta\sin\phi \). Here, \( \phi = \frac{\pi}{3} \). We know the values of \( \cos\frac{\pi}{3} \) and \( \sin\frac{\pi}{3} \), which are \( \frac{1}{2} \) and \( \frac{\sqrt{3}}{2} \), respectively. Substituting these values into the formula, we get: + \[ + \cos\left(\theta - \frac{\pi}{3}\right) = \cos\theta \cdot \frac{1}{2} + \sin\theta \cdot \frac{\sqrt{3}}{2} + \] + Simplifying this expression, we obtain: + \[ + \cos\left(\theta - \frac{\pi}{3}\right) = \frac{1}{2} \cos\theta + \frac{\sqrt{3}}{2} \sin\theta + \] + This matches the left-hand side of the original equation when multiplied by 2: + \[ + 2 \left( \frac{1}{2} \cos\theta + \frac{\sqrt{3}}{2} \sin\theta \right) = \cos\theta + \sqrt{3} \sin\theta + \] + Thus, we have shown that: + \[ + \frac{\cos\theta + \sqrt{3} \sin\theta}{2} = \cos\left(\theta - \frac{\pi}{3}\right) + \] + -/ + intro θ + -- Use the angle subtraction formula for cosine: cos(θ - φ) = cos(θ)cos(φ) + sin(θ)sin(φ) + simp only [cos_sub, cos_pi_div_three, sin_pi_div_three, mul_one, mul_div_cancel_left, mul_comm] + -- Simplify the expression to match the left-hand side of the original equation + ring + -- Normalize numerical values + <;> norm_num + -- Simplify using the square root properties + <;> simp [Real.sqrt_eq_iff_sq_eq] + -- Normalize the expression again + <;> ring_nf + -- Normalize numerical values again + <;> norm_num + -- Use the square root properties to finalize the proof + <;> linarith [Real.sqrt_nonneg 3] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1039.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1039.lean new file mode 100644 index 0000000000000000000000000000000000000000..f023992d5a53bf9800ea8d0879aa792896fc1f06 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1039.lean @@ -0,0 +1,24 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- $$x = \frac {4-2\sqrt{3}}2 = 2 -\sqrt{3}$$ -/ +theorem lean_workbook_1039 (x : ℝ) (hx : x = (4 - 2 * Real.sqrt 3) / 2) : x = 2 - Real.sqrt 3 := by + /- + Given \( x = \frac{4 - 2\sqrt{3}}{2} \), we need to show that \( x = 2 - \sqrt{3} \). We start by simplifying the expression for \( x \). First, we rewrite the division as a multiplication by the inverse of 2. Then, we simplify the multiplication and use the property of the square root to confirm that \( \sqrt{3} \) is non-negative. Finally, we verify that the expression simplifies to \( 2 - \sqrt{3} \). + -/ + -- Simplify the expression for x by rewriting the division as a multiplication by the inverse of 2. + field_simp at hx ⊢ + -- Normalize the expression using algebraic rules. + ring_nf at hx ⊢ + -- Use the property of the square root to confirm that √3 is non-negative. + rw [← sub_eq_zero] at hx ⊢ + -- Normalize the expression again to ensure it matches the desired form. + ring_nf at hx ⊢ + -- Use numerical normalization to confirm the correctness of the simplification. + norm_num at hx ⊢ + -- Use linear arithmetic to finalize the proof. + nlinarith [Real.sq_sqrt (show (0 : ℝ) ≤ 3 by norm_num)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10390.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10390.lean new file mode 100644 index 0000000000000000000000000000000000000000..1aa55c586358f50dc8902e4903206ec9549c345c --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10390.lean @@ -0,0 +1,17 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- For a,b,c positive and a+b+c=1 prove that $ 2+9abc \ge 7(ab+bc+ac)$ -/ +theorem lean_workbook_10390 (a b c : ℝ) (ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (hab : a + b + c = 1) : 2 + 9 * a * b * c ≥ 7 * (a * b + b * c + a * c) := by + /- + We need to prove that for positive real numbers \(a\), \(b\), and \(c\) such that \(a + b + c = 1\), the inequality \(2 + 9abc \ge 7(ab + bc + ac)\) holds. + To prove this, we use the non-linear arithmetic (nlinarith) tactic, which automatically handles inequalities involving polynomials. Specifically, we use the fact that the squares of real numbers are non-negative to derive the desired inequality. + -/ + -- Use non-linear arithmetic to handle the inequality. + -- We provide the non-negativity of the squares of various expressions to help the tactic derive the inequality. + nlinarith [sq_nonneg (a + b + c), sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a), + sq_nonneg (a - 1 / 2), sq_nonneg (b - 1 / 2), sq_nonneg (c - 1 / 2)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10393.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10393.lean new file mode 100644 index 0000000000000000000000000000000000000000..a6be726a02ec5668fbede2539f36deb335dc4031 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10393.lean @@ -0,0 +1,28 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that \(\frac{a}{ab+3}+\frac{b}{bc+3}+\frac{c}{ca+3}\leq\frac{3}{4}\) given \(a,b,c>0\) and \(a^2+b^2+c^2=1\). -/ +theorem lean_workbook_10393 (a b c : ℝ) (ha : a > 0) (hb : b > 0) (hc : c > 0) (hab : a^2 + b^2 + c^2 = 1) : a / (a * b + 3) + b / (b * c + 3) + c / (c * a + 3) ≤ 3 / 4 := by + /- + Given \(a, b, c > 0\) and \(a^2 + b^2 + c^2 = 1\), we need to prove that: + \[ + \frac{a}{ab + 3} + \frac{b}{bc + 3} + \frac{c}{ca + 3} \leq \frac{3}{4} + \] + To do this, we will use the fact that \(a, b, c > 0\) and \(a^2 + b^2 + c^2 = 1\). We will also use the non-negativity of squares to bound the terms. + -/ + -- Use the fact that \(a, b, c > 0\) and \(a^2 + b^2 + c^2 = 1\) to bound the terms. + have h₀ : a / (a * b + 3) ≤ a / 3 := by + -- Since \(a, b, c > 0\) and \(a^2 + b^2 + c^2 = 1\), we can use the non-negativity of squares to bound \(a / (a * b + 3)\). + apply div_le_div_of_le_left ha.le (by nlinarith) (by nlinarith) + have h₁ : b / (b * c + 3) ≤ b / 3 := by + -- Similarly, bound \(b / (b * c + 3)\). + apply div_le_div_of_le_left hb.le (by nlinarith) (by nlinarith) + have h₂ : c / (c * a + 3) ≤ c / 3 := by + -- Finally, bound \(c / (c * a + 3)\). + apply div_le_div_of_le_left hc.le (by nlinarith) (by nlinarith) + -- Combine the bounds to get the final inequality. + nlinarith [sq_nonneg (a - b), sq_nonneg (b - c), sq_nonneg (c - a)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10395.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10395.lean new file mode 100644 index 0000000000000000000000000000000000000000..91f1f07b7918a49c35f8ca130af60323a028da02 --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10395.lean @@ -0,0 +1,26 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that for $a, b, c > 0$ and $a + b + c = 1$, $\frac{xy}{z} + \frac{yz}{x} + \frac{zx}{y} \geq x + y + z$. -/ +theorem lean_workbook_10395 (x y z : ℝ) (hx : 0 < x) (hy : 0 < y) (hz : 0 < z) (h : x + y + z = 1) : (x * y / z + y * z / x + z * x / y) ≥ x + y + z := by + /- + Given \( a, b, c > 0 \) and \( a + b + c = 1 \), we need to prove that: + \[ + \frac{xy}{z} + \frac{yz}{x} + \frac{zx}{y} \geq x + y + z + \] + First, we establish that \( x, y, z \) are positive. Then, we use the fact that the sum of these positive numbers is 1. We apply algebraic manipulation and inequalities to show that the left-hand side is greater than or equal to the right-hand side. Specifically, we use the non-negativity of squares and linear arithmetic to derive the desired inequality. + -/ + -- Establish that x, y, z are positive. + have h₁ : 0 < x * y := by positivity + have h₂ : 0 < y * z := by positivity + have h₃ : 0 < z * x := by positivity + have h₄ : 0 < x * y * z := by positivity + -- Use linear arithmetic to derive the inequality. + field_simp [h₁, h₂, h₃, h₄] + rw [le_div_iff (by positivity)] + ring_nf + nlinarith [sq_nonneg (x - y), sq_nonneg (y - z), sq_nonneg (z - x)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10396.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10396.lean new file mode 100644 index 0000000000000000000000000000000000000000..d33f4ed3fc3ce8ccd2ca0a27bd95f2c76e421eaf --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_10396.lean @@ -0,0 +1,17 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Prove that $\sqrt{1+x}>1+\frac{x}{2}-x^2$ for all $x \in (0,1)$. -/ +theorem lean_workbook_10396 (x : ℝ) (hx : 0 < x ∧ x < 1) : + Real.sqrt (1 + x) > 1 + x / 2 - x ^ 2 := by + /- + To prove that \(\sqrt{1+x} > 1 + \frac{x}{2} - x^2\) for all \(x \in (0,1)\), we start by noting that the square root function is positive for positive arguments. We then use the fact that the square of a real number is non-negative to establish the inequality. Specifically, we consider the square of \(x - 1\) and use this to derive the desired inequality. + -/ + -- We start by noting that the square root of a positive number is positive. + have h : 0 < Real.sqrt (1 + x) := Real.sqrt_pos.mpr (by linarith) + -- We use the fact that the square of any real number is non-negative to establish the inequality. + nlinarith [sq_sqrt (by linarith : 0 ≤ 1 + x), sq_nonneg (x - 1)] diff --git a/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1041.lean b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1041.lean new file mode 100644 index 0000000000000000000000000000000000000000..dcc40619c12c688d01c8f964f9446fed1686b77c --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/goedel-lean_workbook_1041.lean @@ -0,0 +1,18 @@ +import Mathlib +import Aesop + +set_option maxHeartbeats 0 + +open BigOperators Real Nat Topology Rat + +/- Show that $13$ is a factor of $2^{30}+3^{60}$ . -/ +theorem lean_workbook_1041 : 13 ∣ 2^30 + 3^60 := by + /- + To show that 13 is a factor of \(2^{30} + 3^{60}\), we will use the property that if a number modulo 13 is zero, then 13 divides that number. We will compute the value of \(2^{30} + 3^{60}\) modulo 13 and show that it is zero. + -/ + -- Use the property that if a number modulo 13 is zero, then 13 divides that number. + apply Nat.dvd_of_mod_eq_zero + -- Compute the value of 2^30 + 3^60 modulo 13 and show that it is zero. + norm_num + -- Apply reflexivity to confirm the result. + <;> apply Eq.refl diff --git a/external/kimina-lean-server/tests/match/input/proof1.lean b/external/kimina-lean-server/tests/match/input/proof1.lean new file mode 100644 index 0000000000000000000000000000000000000000..3449adb0bb8033f4f4124f63726bb8b7e608742d --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/proof1.lean @@ -0,0 +1,4 @@ +import Mathlib + +theorem simple_add : 2 + 2 = 4 := by + simp diff --git a/external/kimina-lean-server/tests/match/input/proof2.lean b/external/kimina-lean-server/tests/match/input/proof2.lean new file mode 100644 index 0000000000000000000000000000000000000000..3449adb0bb8033f4f4124f63726bb8b7e608742d --- /dev/null +++ b/external/kimina-lean-server/tests/match/input/proof2.lean @@ -0,0 +1,4 @@ +import Mathlib + +theorem simple_add : 2 + 2 = 4 := by + simp diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10009.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10009.json new file mode 100644 index 0000000000000000000000000000000000000000..53928dfb560cb31d9497341930dae7f03bc9db89 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10009.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10009", + "error": null, + "response": { + "time": 13.924710512161255 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1002.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1002.json new file mode 100644 index 0000000000000000000000000000000000000000..26174dd9f139f6c7a1be1741aa12ec3777e0d844 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1002.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_1002", + "error": null, + "response": { + "time": 1.3670117855072021 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10026.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10026.json new file mode 100644 index 0000000000000000000000000000000000000000..cacb2d307750cab258d6b69b72a411166baa5d7e --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10026.json @@ -0,0 +1,73 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10026", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 56 + }, + "endPos": { + "line": 6, + "column": 58 + }, + "data": "unused variable `h2`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 26, + "column": 6 + }, + "endPos": { + "line": 26, + "column": 87 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 27, + "column": 6 + }, + "endPos": { + "line": 27, + "column": 35 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 26, + "column": 6 + }, + "endPos": { + "line": 26, + "column": 87 + }, + "data": "'simp_all only [add_left_inj, add_right_inj, mul_one, mul_zero, mul_neg, mul_comm]' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 27, + "column": 6 + }, + "endPos": { + "line": 27, + "column": 35 + }, + "data": "'nlinarith [sq_nonneg (a - b)]' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.37787938117980957 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10041.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10041.json new file mode 100644 index 0000000000000000000000000000000000000000..31ce7b0c9f3fb4ecf45706cc851e572e208c2986 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10041.json @@ -0,0 +1,37 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10041", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 27, + "column": 6 + }, + "endPos": { + "line": 27, + "column": 14 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 27, + "column": 6 + }, + "endPos": { + "line": 27, + "column": 14 + }, + "data": "'linarith' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.152557373046875 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10053.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10053.json new file mode 100644 index 0000000000000000000000000000000000000000..8165bc6face7057b76794f5db0d2b44f29aef29c --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10053.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10053", + "error": null, + "response": { + "time": 35.328360080718994 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10057.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10057.json new file mode 100644 index 0000000000000000000000000000000000000000..951e90c26cd741a9ce00381dd078d456064cbdba --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10057.json @@ -0,0 +1,85 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10057", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 54 + }, + "endPos": { + "line": 6, + "column": 56 + }, + "data": "unused variable `hy`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 6, + "column": 67 + }, + "endPos": { + "line": 6, + "column": 69 + }, + "data": "unused variable `hz`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 17, + "column": 6 + }, + "endPos": { + "line": 17, + "column": 14 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 19, + "column": 6 + }, + "endPos": { + "line": 19, + "column": 15 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 17, + "column": 6 + }, + "endPos": { + "line": 17, + "column": 14 + }, + "data": "'linarith' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 19, + "column": 6 + }, + "endPos": { + "line": 19, + "column": 15 + }, + "data": "'nlinarith' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 1.5762913227081299 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10058.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10058.json new file mode 100644 index 0000000000000000000000000000000000000000..29a8fbaacb196b7813e21c23934c8103f20c00e3 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10058.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10058", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 19, + "column": 6 + }, + "endPos": { + "line": 19, + "column": 20 + }, + "data": "`div_le_div_iff` has been deprecated: use `div_le_div_iff₀` instead" + } + ], + "time": 4.91719913482666 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1006.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1006.json new file mode 100644 index 0000000000000000000000000000000000000000..3de5e5372b762529fae7ae0128e32548aa32ec7f --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1006.json @@ -0,0 +1,37 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_1006", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 22, + "column": 6 + }, + "endPos": { + "line": 22, + "column": 12 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 22, + "column": 6 + }, + "endPos": { + "line": 22, + "column": 12 + }, + "data": "'decide' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 1.1083958148956299 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10064.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10064.json new file mode 100644 index 0000000000000000000000000000000000000000..cab3eea95ee2410c815890470c4ab422574f4049 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10064.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10064", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 49 + }, + "endPos": { + "line": 6, + "column": 51 + }, + "data": "unused variable `hf`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 0.2778635025024414 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10065.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10065.json new file mode 100644 index 0000000000000000000000000000000000000000..b378e890b6c2cf6a17725cdc00e57ca554326919 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10065.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10065", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 19, + "column": 6 + }, + "endPos": { + "line": 19, + "column": 20 + }, + "data": "`div_le_div_iff` has been deprecated: use `div_le_div_iff₀` instead" + } + ], + "time": 6.802586317062378 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10075.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10075.json new file mode 100644 index 0000000000000000000000000000000000000000..23d458ee54deeefab57b38c8e634840f871bdf78 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10075.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10075", + "error": null, + "response": { + "time": 6.93880820274353 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10081.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10081.json new file mode 100644 index 0000000000000000000000000000000000000000..4e40eab8b9fe70103e7c75716bfcaef10b07d1f0 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10081.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10081", + "error": null, + "response": { + "time": 1.5287818908691406 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10082.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10082.json new file mode 100644 index 0000000000000000000000000000000000000000..c007bff78d8e908520dc4ee2cdb6d9129a3f217a --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10082.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10082", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 39 + }, + "endPos": { + "line": 6, + "column": 41 + }, + "data": "unused variable `h₁`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 2.1356303691864014 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10083.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10083.json new file mode 100644 index 0000000000000000000000000000000000000000..1d8f832f4e7b4dd8cd79edd26110111dfb138b17 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10083.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10083", + "error": null, + "response": { + "time": 2.5861499309539795 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10087.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10087.json new file mode 100644 index 0000000000000000000000000000000000000000..a9a21391de7e32c3839943f53739bb20b3abeb00 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10087.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10087", + "error": null, + "response": { + "time": 0.4802403450012207 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10088.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10088.json new file mode 100644 index 0000000000000000000000000000000000000000..2526b71557860ebc02ccc757dab49de97e623cd6 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10088.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10088", + "error": null, + "response": { + "time": 2.4156315326690674 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10090.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10090.json new file mode 100644 index 0000000000000000000000000000000000000000..8274a16824bd3120831292ca08802f9f670e862f --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10090.json @@ -0,0 +1,9 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10090", + "error": "Lean process timed out", + "response": null + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10096.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10096.json new file mode 100644 index 0000000000000000000000000000000000000000..89ce7f52fe6141e5b63159bbb660a526907c7e44 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10096.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10096", + "error": null, + "response": { + "time": 1.8276495933532715 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10097.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10097.json new file mode 100644 index 0000000000000000000000000000000000000000..01e3e3f6da3fc67c8ae2e88e66a75611a35f7867 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10097.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10097", + "error": null, + "response": { + "time": 7.182309865951538 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_101.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_101.json new file mode 100644 index 0000000000000000000000000000000000000000..385c607a85fde25542de9d81c88f98468575fc4e --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_101.json @@ -0,0 +1,37 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_101", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 15, + "column": 6 + }, + "endPos": { + "line": 15, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 15, + "column": 6 + }, + "endPos": { + "line": 15, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.029651165008544922 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10113.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10113.json new file mode 100644 index 0000000000000000000000000000000000000000..893b0a626c2ff7293a18c10eff4151aad173f846 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10113.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10113", + "error": null, + "response": { + "time": 5.126592397689819 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10116.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10116.json new file mode 100644 index 0000000000000000000000000000000000000000..f65661a54c30d8fbd135a74130bdc8731d88f366 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10116.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10116", + "error": null, + "response": { + "time": 0.18457722663879395 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10125.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10125.json new file mode 100644 index 0000000000000000000000000000000000000000..22a3ff1a1d23d1497d65bb362ec3cf093b92f750 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10125.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10125", + "error": null, + "response": { + "time": 2.500955581665039 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10135.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10135.json new file mode 100644 index 0000000000000000000000000000000000000000..630c8de825de9d1f7a415ea769fb7048491c0be9 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10135.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10135", + "error": null, + "response": { + "time": 1.372558355331421 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10144.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10144.json new file mode 100644 index 0000000000000000000000000000000000000000..4176a6a51ca51f18613138e2671cbae1f3e3a0a0 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10144.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10144", + "error": null, + "response": { + "time": 0.5032250881195068 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10145.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10145.json new file mode 100644 index 0000000000000000000000000000000000000000..eb65476e3d8544348e44de38ef55a351661649f3 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10145.json @@ -0,0 +1,37 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10145", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 22, + "column": 6 + }, + "endPos": { + "line": 22, + "column": 14 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 22, + "column": 6 + }, + "endPos": { + "line": 22, + "column": 14 + }, + "data": "'linarith' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.20853519439697266 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10147.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10147.json new file mode 100644 index 0000000000000000000000000000000000000000..d31041420addd80661b7767b7141467d1aad37bb --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10147.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10147", + "error": null, + "response": { + "time": 0.055788516998291016 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1016.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1016.json new file mode 100644 index 0000000000000000000000000000000000000000..9e5f382aab53aeaddec97cfb82cb566ff90cf80c --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1016.json @@ -0,0 +1,49 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_1016", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 40 + }, + "endPos": { + "line": 6, + "column": 42 + }, + "data": "unused variable `ha`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 6, + "column": 53 + }, + "endPos": { + "line": 6, + "column": 55 + }, + "data": "unused variable `hb`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 6, + "column": 66 + }, + "endPos": { + "line": 6, + "column": 68 + }, + "data": "unused variable `hc`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 41.61103081703186 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10166.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10166.json new file mode 100644 index 0000000000000000000000000000000000000000..4aee4189e6cd04b260904176aa9952e678bea889 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10166.json @@ -0,0 +1,37 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10166", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 33 + }, + "endPos": { + "line": 6, + "column": 34 + }, + "data": "unused variable `c`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 6, + "column": 35 + }, + "endPos": { + "line": 6, + "column": 36 + }, + "data": "unused variable `d`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 0.032593488693237305 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10168.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10168.json new file mode 100644 index 0000000000000000000000000000000000000000..f3ea95f174ad3ef4f69fc68b1ac0ac30cfbfd20a --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10168.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10168", + "error": null, + "response": { + "time": 0.10201168060302734 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10170.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10170.json new file mode 100644 index 0000000000000000000000000000000000000000..5b6f5465bd2631da19bcd908492810209e617766 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10170.json @@ -0,0 +1,61 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10170", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 15, + "column": 6 + }, + "endPos": { + "line": 15, + "column": 14 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 16, + "column": 6 + }, + "endPos": { + "line": 16, + "column": 14 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 15, + "column": 6 + }, + "endPos": { + "line": 15, + "column": 14 + }, + "data": "'norm_num' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 16, + "column": 6 + }, + "endPos": { + "line": 16, + "column": 14 + }, + "data": "'linarith' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.06751871109008789 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10172.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10172.json new file mode 100644 index 0000000000000000000000000000000000000000..901fe00b9e3ba7bb7e1f7312de16754d4c750a5a --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10172.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10172", + "error": null, + "response": { + "time": 2.931356191635132 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10178.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10178.json new file mode 100644 index 0000000000000000000000000000000000000000..fee30b89484723054203b453c6e43dc4a12b63f2 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10178.json @@ -0,0 +1,73 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10178", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 7, + "column": 3 + }, + "endPos": { + "line": 7, + "column": 5 + }, + "data": "unused variable `h₀`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 8, + "column": 3 + }, + "endPos": { + "line": 8, + "column": 5 + }, + "data": "unused variable `h₁`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 9, + "column": 3 + }, + "endPos": { + "line": 9, + "column": 5 + }, + "data": "unused variable `h₂`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 10, + "column": 3 + }, + "endPos": { + "line": 10, + "column": 5 + }, + "data": "unused variable `h₃`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 11, + "column": 3 + }, + "endPos": { + "line": 11, + "column": 5 + }, + "data": "unused variable `h₄`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 1.951706886291504 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1018.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1018.json new file mode 100644 index 0000000000000000000000000000000000000000..e537b593855419ae251e95f994593105d309fbda --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1018.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_1018", + "error": null, + "response": { + "time": 4.822000026702881 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10185.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10185.json new file mode 100644 index 0000000000000000000000000000000000000000..b03d2e096b738a3c1ada0c11ba54332b7ff8c8e1 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10185.json @@ -0,0 +1,61 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10185", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 24, + "column": 10 + }, + "endPos": { + "line": 24, + "column": 18 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 26, + "column": 10 + }, + "endPos": { + "line": 26, + "column": 18 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 24, + "column": 10 + }, + "endPos": { + "line": 24, + "column": 18 + }, + "data": "'norm_num' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 26, + "column": 10 + }, + "endPos": { + "line": 26, + "column": 18 + }, + "data": "'linarith' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.5202531814575195 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10187.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10187.json new file mode 100644 index 0000000000000000000000000000000000000000..fb6958e61a4bc0f4f188722ef897578856e8f2f7 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10187.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10187", + "error": null, + "response": { + "time": 2.0214157104492188 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10191.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10191.json new file mode 100644 index 0000000000000000000000000000000000000000..cc45abac064dddd687d5f5155b39c135c6abfe4c --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10191.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10191", + "error": null, + "response": { + "time": 2.1780171394348145 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10197.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10197.json new file mode 100644 index 0000000000000000000000000000000000000000..8c3d98bc0581570ec61885998fb1bd1d69f0f136 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10197.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10197", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 13, + "column": 6 + }, + "endPos": { + "line": 13, + "column": 16 + }, + "data": "`le_div_iff` has been deprecated: use `le_div_iff₀` instead" + } + ], + "time": 0.8028361797332764 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10198.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10198.json new file mode 100644 index 0000000000000000000000000000000000000000..77246e5c62311094f690c7d6537e61cdc14c1aea --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10198.json @@ -0,0 +1,61 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10198", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 20, + "column": 6 + }, + "endPos": { + "line": 20, + "column": 16 + }, + "data": "`le_div_iff` has been deprecated: use `le_div_iff₀` instead" + }, + { + "severity": "warning", + "pos": { + "line": 6, + "column": 80 + }, + "endPos": { + "line": 6, + "column": 83 + }, + "data": "unused variable `hxy`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 6, + "column": 94 + }, + "endPos": { + "line": 6, + "column": 97 + }, + "data": "unused variable `hyz`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 6, + "column": 108 + }, + "endPos": { + "line": 6, + "column": 111 + }, + "data": "unused variable `hxz`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 2.856764554977417 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_102.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_102.json new file mode 100644 index 0000000000000000000000000000000000000000..230e668adee6b69e75140c555a0fd77fd9fc8e8f --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_102.json @@ -0,0 +1,85 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_102", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 19, + "column": 35 + }, + "endPos": { + "line": 19, + "column": 47 + }, + "data": "`add_left_neg` has been deprecated: use `neg_add_cancel` instead" + }, + { + "severity": "warning", + "pos": { + "line": 19, + "column": 49 + }, + "endPos": { + "line": 19, + "column": 62 + }, + "data": "`add_right_neg` has been deprecated: use `add_neg_cancel` instead" + }, + { + "severity": "warning", + "pos": { + "line": 7, + "column": 3 + }, + "endPos": { + "line": 7, + "column": 5 + }, + "data": "unused variable `h₀`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 8, + "column": 3 + }, + "endPos": { + "line": 8, + "column": 5 + }, + "data": "unused variable `h₁`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 22, + "column": 6 + }, + "endPos": { + "line": 22, + "column": 14 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 22, + "column": 6 + }, + "endPos": { + "line": 22, + "column": 14 + }, + "data": "'linarith' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.2001330852508545 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10202.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10202.json new file mode 100644 index 0000000000000000000000000000000000000000..57566fd0e0e1603cb4fb6a2ad54bd73eb5f3ea99 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10202.json @@ -0,0 +1,517 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10202", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 18, + "column": 6 + }, + "endPos": { + "line": 18, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 19, + "column": 6 + }, + "endPos": { + "line": 19, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 20, + "column": 6 + }, + "endPos": { + "line": 20, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 21, + "column": 6 + }, + "endPos": { + "line": 21, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 22, + "column": 6 + }, + "endPos": { + "line": 22, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 23, + "column": 6 + }, + "endPos": { + "line": 23, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 24, + "column": 6 + }, + "endPos": { + "line": 24, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 25, + "column": 6 + }, + "endPos": { + "line": 25, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 26, + "column": 6 + }, + "endPos": { + "line": 26, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 27, + "column": 6 + }, + "endPos": { + "line": 27, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 28, + "column": 6 + }, + "endPos": { + "line": 28, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 29, + "column": 6 + }, + "endPos": { + "line": 29, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 30, + "column": 6 + }, + "endPos": { + "line": 30, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 31, + "column": 6 + }, + "endPos": { + "line": 31, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 32, + "column": 6 + }, + "endPos": { + "line": 32, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 33, + "column": 6 + }, + "endPos": { + "line": 33, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 34, + "column": 6 + }, + "endPos": { + "line": 34, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 35, + "column": 6 + }, + "endPos": { + "line": 35, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 36, + "column": 6 + }, + "endPos": { + "line": 36, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 37, + "column": 6 + }, + "endPos": { + "line": 37, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 38, + "column": 6 + }, + "endPos": { + "line": 38, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 18, + "column": 6 + }, + "endPos": { + "line": 18, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 19, + "column": 6 + }, + "endPos": { + "line": 19, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 20, + "column": 6 + }, + "endPos": { + "line": 20, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 21, + "column": 6 + }, + "endPos": { + "line": 21, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 22, + "column": 6 + }, + "endPos": { + "line": 22, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 23, + "column": 6 + }, + "endPos": { + "line": 23, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 24, + "column": 6 + }, + "endPos": { + "line": 24, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 25, + "column": 6 + }, + "endPos": { + "line": 25, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 26, + "column": 6 + }, + "endPos": { + "line": 26, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 27, + "column": 6 + }, + "endPos": { + "line": 27, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 28, + "column": 6 + }, + "endPos": { + "line": 28, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 29, + "column": 6 + }, + "endPos": { + "line": 29, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 30, + "column": 6 + }, + "endPos": { + "line": 30, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 31, + "column": 6 + }, + "endPos": { + "line": 31, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 32, + "column": 6 + }, + "endPos": { + "line": 32, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 33, + "column": 6 + }, + "endPos": { + "line": 33, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 34, + "column": 6 + }, + "endPos": { + "line": 34, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 35, + "column": 6 + }, + "endPos": { + "line": 35, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 36, + "column": 6 + }, + "endPos": { + "line": 36, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 37, + "column": 6 + }, + "endPos": { + "line": 37, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 38, + "column": 6 + }, + "endPos": { + "line": 38, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.05146384239196777 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10204.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10204.json new file mode 100644 index 0000000000000000000000000000000000000000..77d8eee35b23afa28cc28f16f093040e463186f3 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10204.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10204", + "error": null, + "response": { + "time": 14.558023452758789 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10207.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10207.json new file mode 100644 index 0000000000000000000000000000000000000000..ec314180ab9ae4343f15c5e4e109c47214ddbc44 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10207.json @@ -0,0 +1,37 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10207", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 39 + }, + "endPos": { + "line": 6, + "column": 41 + }, + "data": "unused variable `hm`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + }, + { + "severity": "warning", + "pos": { + "line": 6, + "column": 52 + }, + "endPos": { + "line": 6, + "column": 54 + }, + "data": "unused variable `hn`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 0.0403437614440918 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10208.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10208.json new file mode 100644 index 0000000000000000000000000000000000000000..186907edfdac0c81d434d5af992d5384c075b177 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10208.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10208", + "error": null, + "response": { + "time": 0.25774621963500977 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10209.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10209.json new file mode 100644 index 0000000000000000000000000000000000000000..9fdde8b60bcb05944dd14ace67a90372339292ed --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10209.json @@ -0,0 +1,37 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10209", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 19, + "column": 6 + }, + "endPos": { + "line": 19, + "column": 9 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 19, + "column": 6 + }, + "endPos": { + "line": 19, + "column": 9 + }, + "data": "'rfl' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.032488107681274414 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1021.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1021.json new file mode 100644 index 0000000000000000000000000000000000000000..69de71ed6e47a77f01c4a64efa72c300c1a79518 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1021.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_1021", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 36 + }, + "endPos": { + "line": 6, + "column": 37 + }, + "data": "unused variable `n`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 0.1969757080078125 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10218.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10218.json new file mode 100644 index 0000000000000000000000000000000000000000..12cefb5233ceb18471b4c46d4ca4b3a7a391dcf5 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10218.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10218", + "error": null, + "response": { + "time": 1.257239580154419 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10222.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10222.json new file mode 100644 index 0000000000000000000000000000000000000000..3e48be89b8d3495e158b7e780c474c226e8e2718 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10222.json @@ -0,0 +1,97 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10222", + "error": null, + "response": { + "messages": [ + { + "severity": "info", + "pos": { + "line": 38, + "column": 2 + }, + "endPos": { + "line": 38, + "column": 6 + }, + "data": "Try this: ring_nf" + }, + { + "severity": "warning", + "pos": { + "line": 44, + "column": 6 + }, + "endPos": { + "line": 44, + "column": 32 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 46, + "column": 6 + }, + "endPos": { + "line": 46, + "column": 10 + }, + "data": "this tactic is never executed\nnote: this linter can be disabled with `set_option linter.unreachableTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 40, + "column": 2 + }, + "endPos": { + "line": 40, + "column": 5 + }, + "data": "Used `tac1 <;> tac2` where `(tac1; tac2)` would suffice\nnote: this linter can be disabled with `set_option linter.unnecessarySeqFocus false`" + }, + { + "severity": "warning", + "pos": { + "line": 42, + "column": 2 + }, + "endPos": { + "line": 42, + "column": 5 + }, + "data": "Used `tac1 <;> tac2` where `(tac1; tac2)` would suffice\nnote: this linter can be disabled with `set_option linter.unnecessarySeqFocus false`" + }, + { + "severity": "warning", + "pos": { + "line": 44, + "column": 6 + }, + "endPos": { + "line": 44, + "column": 32 + }, + "data": "'simp only [sin_sq, cos_sq]' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + }, + { + "severity": "warning", + "pos": { + "line": 46, + "column": 6 + }, + "endPos": { + "line": 46, + "column": 10 + }, + "data": "'ring' tactic does nothing\nnote: this linter can be disabled with `set_option linter.unusedTactic false`" + } + ], + "time": 0.35268568992614746 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10230.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10230.json new file mode 100644 index 0000000000000000000000000000000000000000..054ca181a5c655f820849daf59354bdccf18231d --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10230.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10230", + "error": null, + "response": { + "time": 0.969109296798706 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10236.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10236.json new file mode 100644 index 0000000000000000000000000000000000000000..efd4e1cd5858232eaac1908ad6b02d450632560b --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10236.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10236", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 6, + "column": 43 + }, + "endPos": { + "line": 6, + "column": 45 + }, + "data": "unused variable `h₁`\nnote: this linter can be disabled with `set_option linter.unusedVariables false`" + } + ], + "time": 3.6735103130340576 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1024.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1024.json new file mode 100644 index 0000000000000000000000000000000000000000..3af61570a5bd0cfd3b2783a4c508ba6575fb1009 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_1024.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_1024", + "error": null, + "response": { + "time": 0.11587357521057129 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10246.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10246.json new file mode 100644 index 0000000000000000000000000000000000000000..5b1575b1905578d0f24431018914818d5c7426a6 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10246.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10246", + "error": null, + "response": { + "time": 9.372757911682129 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10253.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10253.json new file mode 100644 index 0000000000000000000000000000000000000000..0758547252ca21b8e2f26bf17982cf831fd49243 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10253.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10253", + "error": null, + "response": { + "time": 3.5698893070220947 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10255.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10255.json new file mode 100644 index 0000000000000000000000000000000000000000..b0c6a76818ac3c15a423b32dd566d48d05aa6616 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10255.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10255", + "error": null, + "response": { + "time": 0.6313498020172119 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10290.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10290.json new file mode 100644 index 0000000000000000000000000000000000000000..2fdab535c19746e0c7fa3089d1e696ecc1c3a81c --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10290.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10290", + "error": null, + "response": { + "time": 2.5235402584075928 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10291.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10291.json new file mode 100644 index 0000000000000000000000000000000000000000..0106ce728513cd0b07933de9290b46a7714f7d31 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10291.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10291", + "error": null, + "response": { + "time": 3.223511219024658 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10295.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10295.json new file mode 100644 index 0000000000000000000000000000000000000000..f7ae441f26151283a57a87554fc43c531ae79b4d --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10295.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10295", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 20, + "column": 8 + }, + "endPos": { + "line": 20, + "column": 22 + }, + "data": "`div_le_div_iff` has been deprecated: use `div_le_div_iff₀` instead" + } + ], + "time": 8.154723167419434 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10299.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10299.json new file mode 100644 index 0000000000000000000000000000000000000000..4261ffc6ace8fdf3d3e695be60f249fd690d516b --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10299.json @@ -0,0 +1,25 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10299", + "error": null, + "response": { + "messages": [ + { + "severity": "warning", + "pos": { + "line": 15, + "column": 6 + }, + "endPos": { + "line": 15, + "column": 20 + }, + "data": "`div_le_div_iff` has been deprecated: use `div_le_div_iff₀` instead" + } + ], + "time": 2.4471476078033447 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10303.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10303.json new file mode 100644 index 0000000000000000000000000000000000000000..b0ccdf87bdb885cfcc228be48841ff828aa8f28d --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10303.json @@ -0,0 +1,9 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10303", + "error": "Lean process timed out", + "response": null + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10305.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10305.json new file mode 100644 index 0000000000000000000000000000000000000000..77de5ece7233f1a0221447344e3251c17486d960 --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10305.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10305", + "error": null, + "response": { + "time": 0.5711760520935059 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10308.json b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10308.json new file mode 100644 index 0000000000000000000000000000000000000000..1d09fd3224b9cd36bed39758448e98dfdf39b10e --- /dev/null +++ b/external/kimina-lean-server/tests/match/output/goedel-lean_workbook_10308.json @@ -0,0 +1,11 @@ +{ + "results": [ + { + "custom_id": "lean_workbook_10308", + "error": null, + "response": { + "time": 41.81074857711792 + } + } + ] +} \ No newline at end of file diff --git a/external/kimina-lean-server/tests/perfs/test_perfs.py b/external/kimina-lean-server/tests/perfs/test_perfs.py new file mode 100644 index 0000000000000000000000000000000000000000..de8ba8f64aaa7dfb18fe7b3cffe3f91d936e2239 --- /dev/null +++ b/external/kimina-lean-server/tests/perfs/test_perfs.py @@ -0,0 +1,97 @@ +from __future__ import annotations + +import asyncio +import json +from pprint import pformat +from statistics import mean +from typing import cast + +import pytest +from asgi_lifespan import LifespanManager +from datasets import load_dataset +from httpx import ASGITransport, AsyncClient +from kimina_client import CheckRequest, ReplResponse, Snippet +from loguru import logger + +from server.main import app +from server.settings import settings + + +@pytest.mark.perfs +@pytest.mark.asyncio # TODO: Parametrize +async def test_goedel(perf_rows: int, perf_shuffle: bool) -> None: + ds = load_dataset( + "Goedel-LM/Lean-workbook-proofs", split="train" + ) # Goedel is on v4.9.0, some proofs aren't valid in later versions. + if perf_shuffle: + ds = ds.shuffle(seed=0) + if perf_rows: + ds = ds.select(range(perf_rows)) + + logger.info(f"Checking {len(ds)} proofs") + times: list[float] = [] + + # TODO: Create real perf tests not using ASGI transport (with actual network) + # limits = Limits(max_connections=settings.MAX_REPLS, max_keepalive_connections=5) + async with LifespanManager(app, startup_timeout=60): + async with AsyncClient( + transport=ASGITransport(app=app), + base_url="http://testserver/api", + # limits=limits, + ) as client: + logger.debug( + f"MAX_REPLS: {settings.max_repls}\nMAX_REPL_USES: {settings.max_repl_uses}" + ) + semaphore = asyncio.Semaphore( + settings.max_repls + ) # limit concurrent requests don't use this semaphore just llilmit in async client + + async def run_item(item: dict[str, str]) -> ReplResponse: + async with semaphore: + proof = item["full_proof"] + payload = CheckRequest( + snippets=[Snippet(id=item["problem_id"], code=proof)], + timeout=30, + ).model_dump() + resp = await client.post("check", json=payload) + assert resp.status_code == 200 + data = resp.json()["results"][0] + logger.info(json.dumps(data, indent=2)) + assert "time" in data + times.append(float(data["time"])) + return cast(ReplResponse, data) + + tasks = [ + asyncio.create_task(run_item(item)) + for item in ds + if item["problem_id"] + not in [ + "lean_workbook_10036", + # "lean_workbook_1003", + ] # skip this one, it's too long + ] + + all_results = await asyncio.gather(*tasks) + for idx, result in enumerate(all_results): + assert "response" in result, f"response #{idx} missing 'response' key" + if settings.lean_version == "v4.15.0": + assert "messages" not in result["response"] or not any( + msg["severity"] == "error" + for msg in result["response"]["messages"] + ), ( + f"Proof #{idx} contains errors: {pformat(result['response']['messages'])}" + ) + else: + assert "messages" in result["response"] + assert any( + msg["data"] == "Goals accomplished!" + for msg in result["response"]["messages"] + ), ( + f"Proof #{idx} did not accomplish goals: {pformat(result['response']['messages'])}" + ) + logger.info( + f"min: {min(times):.2f} s, max: {max(times):.2f} s and mean: {mean(times):.2f} s" + ) + assert mean(times) < 10, ( + "Mean time for proofs should be less than 10 seconds" + ) # max repls = 5 diff --git a/external/kimina-lean-server/tsts_old/test_api.py b/external/kimina-lean-server/tsts_old/test_api.py new file mode 100644 index 0000000000000000000000000000000000000000..5059410c1b5cea23934087c927e0845b70c3ad6b --- /dev/null +++ b/external/kimina-lean-server/tsts_old/test_api.py @@ -0,0 +1,220 @@ +import os +import textwrap +import time +import uuid + +import psutil +from utils.proof_utils import has_error_response, parse_client_response + +from server.leanrepl import LeanREPL + + +class TestLeanServer: + def setup_method(self): + self.api_key = os.environ.get("LEANSERVER_API_KEY", "") + self.headers = { + "Content-Type": "application/json", + "Accept": "application/json", + "Authorization": f"Bearer {self.api_key}", + } + self.timeout = 60 + + def test_verify(self, test_client): + """verifying batch simple proof.""" + data = { + "codes": [ + { + "custom_id": str(uuid.uuid4()), + "proof": """import Mathlib\n\ndef f := 2\nexample : f = 2 := rfl""", + } + for _ in range(5) + ], + "timeout": self.timeout, + } + + response = test_client.post("/verify", json=data, headers=self.headers) + assert response.status_code == 200 + assert all(r["error"] is None for r in response.json()["results"]) is True + + def test_verify_warning(self, test_client): + """Test a proof with warnings.""" + proof_code = textwrap.dedent( + """\ + import Mathlib + + theorem number_theory_3784 (k m : ℕ) (hm : Odd m) (hk : 0 < k) : + ∃ n : ℕ, 0 < n ∧ (n ^ n - m) % (2 ^ k) = 0 := by + use 1 + constructor + norm_num + cases' hm with m hm + simp [Nat.pow_succ, Nat.mul_mod, Nat.pow_mod, hm] + """ + ) + + data = { + "codes": [{"proof": proof_code, "custom_id": "0"}], + "timeout": self.timeout, + } + + response = test_client.post("/verify", json=data, headers=self.headers) + assert response.status_code == 200 + response = response.json() + assert not has_error_response(response["results"][0]["response"]) + assert "warning" in str(response["results"][0]["response"]) + + def test_verify_correct(self, test_client): + """Test a correct proof without warnings or errors.""" + proof_code = textwrap.dedent( + """\ + import Mathlib + + theorem algebra_260 (x : ℝ) (hx : x ≠ 0) : 1 / 2 - 1 / 3 = 1 / x ↔ x = 6 := by + field_simp + constructor + intro h + apply Eq.symm + linarith + intro h + rw [h] + norm_num + """ + ) + + data = { + "codes": [{"proof": proof_code, "custom_id": "0"}], + "timeout": self.timeout, + } + + response = test_client.post("/verify", json=data, headers=self.headers) + expected_output = {"error": None, "response": {"env": 0}} + assert response.status_code == 200 + response = response.json() + assert expected_output["error"] == response["results"][0]["error"] + assert "env" in response["results"][0]["response"] + assert "time" in response["results"][0]["response"] + + def test_verify_error(self, test_client): + """Test a proof that results in an error.""" + proof_code = textwrap.dedent( + """\ + import Mathlib + + theorem algebra_158 {a b : ℕ} (ha : a > b) (h : ∀ x, x^2 - 16 * x + 60 = (x - a) * (x - b)) : + 3 * b - a = 8 := by + have h₁ := h 0 + have h₂ := h 1 + have h₃ := h 2 + have h₄ := h 3 + simp at h₁ h₂ h₃ h₄ + ring_nf at h₁ h₂ h₃ h₄ + omega + """ + ) + + data = { + "codes": [{"proof": proof_code, "custom_id": "0"}], + "timeout": self.timeout, + } + + response = test_client.post("/verify", json=data, headers=self.headers) + assert response.status_code == 200 + response = response.json() + assert has_error_response(response["results"][0]["response"]) + + def test_verify_sorry(self, test_client): + proof_code = textwrap.dedent( + """\ + import Mathlib + + theorem algebra_158 {a b : ℕ} (ha : a > b) (h : ∀ x, x^2 - 16 * x + 60 = (x - a) * (x - b)) : + 3 * b - a = 8 := by sorry + """ + ) + + data = { + "codes": [{"proof": proof_code, "custom_id": "0"}], + "timeout": self.timeout, + } + + response = test_client.post("/verify", json=data, headers=self.headers) + assert response.status_code == 200 + response = response.json() + + result = parse_client_response(response["results"][0]) + assert result["is_valid_with_sorry"] + assert not result["is_valid_no_sorry"] + + def test_repl_close_graceful_termination(self): + """Test that calling close() on a LeanREPL instance terminates the process gracefully.""" + # Create a new REPL instance + repl = LeanREPL() + + # Get the process ID + pid = repl.process.pid + + # Verify the process is running + assert repl.process.poll() is None + assert psutil.pid_exists(pid) + + # Create child processes tracker + parent = psutil.Process(pid) + children_before = parent.children(recursive=True) + child_pids = [p.pid for p in children_before] + + # Execute a simple command to verify the REPL is working + response = repl.one_pass_verify( + "def f := 2\nexample : f = 2 := rfl", timeout=10 + ) + assert "error" not in response or not response["error"] + + # Call the close method + repl.close() + + # Give it a moment to terminate + start_time = time.time() + max_wait_time = 5 # seconds + + # Wait for the process to terminate or timeout + while repl.process.poll() is None and time.time() - start_time < max_wait_time: + time.sleep(0.1) + + # Verify the process has terminated + assert repl.process.poll() is not None, ( + "Process did not terminate within timeout" + ) + + # Verify that child processes have also terminated + time.sleep(0.5) # Give child processes time to terminate + for child_pid in child_pids: + assert not psutil.pid_exists(child_pid), ( + f"Child process {child_pid} is still running" + ) + + # Verify we can create a new REPL after closing the old one + new_repl = LeanREPL() + assert new_repl.process.poll() is None + new_repl.close() + + def test_repl_close_after_multiple_commands(self): + """Test that calling close() works after executing multiple commands.""" + repl = LeanREPL() + + # Run a series of commands + commands = [ + "def f := 2\nexample : f = 2 := rfl", + "theorem simple_add : 2 + 2 = 4 := by simp", + "def g (x : Nat) := x + 1\nexample : g 5 = 6 := rfl", + ] + + for cmd in commands: + response = repl.one_pass_verify(cmd, timeout=10) + assert "error" not in response or not response["error"] + + # Now close the REPL + repl.close() + + # Verify the process has terminated + assert repl.process.poll() is not None, ( + "Process did not terminate after close()" + ) diff --git a/external/webshop-minimal/.gitignore b/external/webshop-minimal/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..08339cbb2354f3f6c74bdfadc4cf2fee3c1b4e44 --- /dev/null +++ b/external/webshop-minimal/.gitignore @@ -0,0 +1,22 @@ +# Byte-compiled / optimized / DLL files +webshop_minimal/__pycache__ +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg diff --git a/external/webshop-minimal/MANIFEST.in b/external/webshop-minimal/MANIFEST.in new file mode 100644 index 0000000000000000000000000000000000000000..77ebd8ee22a9a13da97d7811b4f218079e8d821a --- /dev/null +++ b/external/webshop-minimal/MANIFEST.in @@ -0,0 +1,8 @@ +# Include the README and LICENSE files +#include README.md +#include LICENSE + + +# Exclude any compiled Python files +global-exclude *.pyc +global-exclude __pycache__/ \ No newline at end of file diff --git a/external/webshop-minimal/pyproject.toml b/external/webshop-minimal/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..14c094def55ca70cc6c2fd8e557800ef9fa5fcc3 --- /dev/null +++ b/external/webshop-minimal/pyproject.toml @@ -0,0 +1,51 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" + +[tool.setuptools.packages] +find = { where = ["."] } + +[tool.setuptools] +include-package-data = true + +[tool.setuptools.package-data] +# Including these example data for easier dev and testing +webshop_minimal = [ + "search_engine/**/*", + "templates/*", + "data/*", +] + +[project] +name = "webshop_minimal" +version = "0.1.0" +description = "A Gym environment for WebShop simulation" +readme = "README.md" +license = { file = "LICENSE" } +authors = [ + { name = "Your Name", email = "your.email@example.com" } +] +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +dependencies = [ + "beautifulsoup4", + "cleantext", + "flask", + "gym", + "html2text", + "numpy", + "pandas", + "torch", + "rank_bm25", + "pyserini", + "faiss-cpu", + "thefuzz", + "gdown", + "spacy", + "rich", +] diff --git a/external/webshop-minimal/readme.md b/external/webshop-minimal/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..d769cdbe444e254b719b5b00659a9bf2c6a251d9 --- /dev/null +++ b/external/webshop-minimal/readme.md @@ -0,0 +1,84 @@ +# Webshop Minimal + +A minimalistic webshop environment for faster agentic system development. Adapted from full WebShop https://github.com/princeton-nlp/WebShop/tree/master. + +Authors for this adaptation: Xing Jin, Zihan Wang + +## Installation + +1. Clone the repository: + ```bash + git clone https://github.com/your-username/webshop-minimal.git + ``` +2. Navigate to the project directory: + ```bash + cd webshop-minimal + ``` +3. Install dependencies: + ```bash + bash setup.py + ``` +4. Install the package using pip: + ```bash + pip install --no-build-isolation --no-deps . + ``` + +## Usage + +## Usage + +### 1. Import in a Python Session + +To use the package, start by importing it in your Python session: + +```python +import webshop_minimal +``` + +### 2. Setup Base Directory + +Set up the base directory for your project to ensure proper file handling: + +```python +import os + +base_dir = "/path/to/your/basedir" +webshop_minimal.init_basedir(base_dir) +``` + +Replace `/path/to/your/basedir` with the actual path to your project directory. If you don't call init_basedir, the env will default to initialize with the provided data under this repo. + + +## Base Directory Structure + +The base directory (`basedir`) should be organized as follows: + +``` +basedir/ +├── data/ +│ ├── items_ins_v2_1000.json +│ ├── items_shuffle_1000.json +│ ├── items_human_ins.json +├── templates/ +│ ├── template1.html +│ ├── template2.html +├── search_engine/ +│ ├── index1/ +│ ├── index2/ +``` + +### Explanation of Subdirectories + +1. **`data/`** + Contains JSON files that define various attributes and configurations: + - `items_ins_v2_1000.json`: Stores attribute-related data. + - `items_shuffle_1000.json`: Contains file-related metadata. + - `items_human_ins.json`: Includes human-readable attributes. + +2. **`templates/`** + Houses HTML templates used for rendering web pages or other UI components. + +3. **`search_engine/`** + Contains directories for different search indices, enabling efficient data retrieval. + +Ensure that these subdirectories and files are correctly set up for the application to function as expected. See example data generation in setup.sh diff --git a/external/webshop-minimal/requirements.txt b/external/webshop-minimal/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..238ed5ad1dba9c8c8adf2558399f7701fc4b6fd5 --- /dev/null +++ b/external/webshop-minimal/requirements.txt @@ -0,0 +1,11 @@ +beautifulsoup4 +cleantext +flask +html2text +rank_bm25 +pyserini +faiss-gpu +thefuzz +gdown +spacy +rich \ No newline at end of file diff --git a/external/webshop-minimal/scripts/run_indexing.sh b/external/webshop-minimal/scripts/run_indexing.sh new file mode 100644 index 0000000000000000000000000000000000000000..0f18a5c0eb44429edec9b03f8797875dea6626cf --- /dev/null +++ b/external/webshop-minimal/scripts/run_indexing.sh @@ -0,0 +1,31 @@ +python -m pyserini.index.lucene \ + --collection JsonCollection \ + --input resources_100 \ + --index indexes_100 \ + --generator DefaultLuceneDocumentGenerator \ + --threads 1 \ + --storePositions --storeDocvectors --storeRaw + +python -m pyserini.index.lucene \ + --collection JsonCollection \ + --input resources \ + --index indexes \ + --generator DefaultLuceneDocumentGenerator \ + --threads 1 \ + --storePositions --storeDocvectors --storeRaw + +python -m pyserini.index.lucene \ + --collection JsonCollection \ + --input resources_1k \ + --index indexes_1k \ + --generator DefaultLuceneDocumentGenerator \ + --threads 1 \ + --storePositions --storeDocvectors --storeRaw + +python -m pyserini.index.lucene \ + --collection JsonCollection \ + --input resources_100k \ + --index indexes_100k \ + --generator DefaultLuceneDocumentGenerator \ + --threads 1 \ + --storePositions --storeDocvectors --storeRaw \ No newline at end of file diff --git a/external/webshop-minimal/setup.sh b/external/webshop-minimal/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..f72e5816c9658069dff591ac1df0b8f73321b678 --- /dev/null +++ b/external/webshop-minimal/setup.sh @@ -0,0 +1,24 @@ +conda create -n webshopmini python=3.9 -y +conda activate webshopmini +conda install -c pytorch faiss-cpu -y +sudo apt update +sudo apt install default-jdk +pip install -r requirements.txt + +# setup spacy data (required) +python -m spacy download en_core_web_sm +python -m spacy download en_core_web_lg + +# Download example data (optional, this is already included in the repo) +mkdir -p data +cd data +gdown https://drive.google.com/uc?id=1EgHdxQ_YxqIQlvvq5iKlCrkEKR6-j0Ib +gdown https://drive.google.com/uc?id=1IduG0xl544V_A_jv3tHXC0kyFi7PnyBu +gdown https://drive.google.com/uc?id=14Kb5SPBk_jfdLZ_CDBNitW98QLDlKR5O +cd .. + +# setup search engine (optional) +python setup_search_engine.py +cd search_engine +bash ../scripts/run_indexing.sh +cd .. diff --git a/external/webshop-minimal/setup_search_engine.py b/external/webshop-minimal/setup_search_engine.py new file mode 100644 index 0000000000000000000000000000000000000000..a6ef662ef5e7bb6c1d4e3bb851bb605dd8962be5 --- /dev/null +++ b/external/webshop-minimal/setup_search_engine.py @@ -0,0 +1,53 @@ +import sys +import json +from tqdm import tqdm +sys.path.insert(0, '../') + +from utils import get_file_path +from engine import load_products + +all_products, *_ = load_products(filepath=get_file_path()) + +import os +os.makedirs('./search_engine', exist_ok=True) +os.makedirs('./search_engine/resources_100', exist_ok=True) +os.makedirs('./search_engine/resources', exist_ok=True) +os.makedirs('./search_engine/resources_1k', exist_ok=True) +os.makedirs('./search_engine/resources_100k', exist_ok=True) + +docs = [] +for p in tqdm(all_products, total=len(all_products)): + option_texts = [] + options = p.get('options', {}) + for option_name, option_contents in options.items(): + option_contents_text = ', '.join(option_contents) + option_texts.append(f'{option_name}: {option_contents_text}') + option_text = ', and '.join(option_texts) + + doc = dict() + doc['id'] = p['asin'] + doc['contents'] = ' '.join([ + p['Title'], + p['Description'], + p['BulletPoints'][0], + option_text, + ]).lower() + doc['product'] = p + docs.append(doc) + + +with open('./search_engine/resources_100/documents.jsonl', 'w+') as f: + for doc in docs[:100]: + f.write(json.dumps(doc) + '\n') + +with open('./search_engine/resources/documents.jsonl', 'w+') as f: + for doc in docs: + f.write(json.dumps(doc) + '\n') + +with open('./search_engine/resources_1k/documents.jsonl', 'w+') as f: + for doc in docs[:1000]: + f.write(json.dumps(doc) + '\n') + +with open('./search_engine/resources_100k/documents.jsonl', 'w+') as f: + for doc in docs[:100000]: + f.write(json.dumps(doc) + '\n') \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal.egg-info/PKG-INFO b/external/webshop-minimal/webshop_minimal.egg-info/PKG-INFO new file mode 100644 index 0000000000000000000000000000000000000000..d566f60d7eef55e0d29c61cfbf93249e5c3fbcb2 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal.egg-info/PKG-INFO @@ -0,0 +1,25 @@ +Metadata-Version: 2.4 +Name: webshop_minimal +Version: 0.1.0 +Summary: A Gym environment for WebShop simulation +Author-email: Your Name +Classifier: Programming Language :: Python :: 3 +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Requires-Python: >=3.7 +Description-Content-Type: text/markdown +Requires-Dist: beautifulsoup4 +Requires-Dist: cleantext +Requires-Dist: flask +Requires-Dist: gym +Requires-Dist: html2text +Requires-Dist: numpy +Requires-Dist: pandas +Requires-Dist: torch +Requires-Dist: rank_bm25 +Requires-Dist: pyserini +Requires-Dist: faiss-cpu +Requires-Dist: thefuzz +Requires-Dist: gdown +Requires-Dist: spacy +Requires-Dist: rich diff --git a/external/webshop-minimal/webshop_minimal.egg-info/SOURCES.txt b/external/webshop-minimal/webshop_minimal.egg-info/SOURCES.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed6e54c498bb23caf79144ba6b25681ac97566c5 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal.egg-info/SOURCES.txt @@ -0,0 +1,102 @@ +MANIFEST.in +pyproject.toml +webshop_minimal/__init__.py +webshop_minimal/engine.py +webshop_minimal/env.py +webshop_minimal/goal.py +webshop_minimal/normalize.py +webshop_minimal/utils.py +webshop_minimal.egg-info/PKG-INFO +webshop_minimal.egg-info/SOURCES.txt +webshop_minimal.egg-info/dependency_links.txt +webshop_minimal.egg-info/requires.txt +webshop_minimal.egg-info/top_level.txt +webshop_minimal/data/items_human_ins.json +webshop_minimal/search_engine/indexes/_1.fdm +webshop_minimal/search_engine/indexes/_1.fdt +webshop_minimal/search_engine/indexes/_1.fdx +webshop_minimal/search_engine/indexes/_1.fnm +webshop_minimal/search_engine/indexes/_1.nvd +webshop_minimal/search_engine/indexes/_1.nvm +webshop_minimal/search_engine/indexes/_1.si +webshop_minimal/search_engine/indexes/_1.tvd +webshop_minimal/search_engine/indexes/_1.tvm +webshop_minimal/search_engine/indexes/_1.tvx +webshop_minimal/search_engine/indexes/_1_Lucene90_0.doc +webshop_minimal/search_engine/indexes/_1_Lucene90_0.dvd +webshop_minimal/search_engine/indexes/_1_Lucene90_0.dvm +webshop_minimal/search_engine/indexes/_1_Lucene90_0.pos +webshop_minimal/search_engine/indexes/_1_Lucene90_0.tim +webshop_minimal/search_engine/indexes/_1_Lucene90_0.tip +webshop_minimal/search_engine/indexes/_1_Lucene90_0.tmd +webshop_minimal/search_engine/indexes/segments_2 +webshop_minimal/search_engine/indexes/write.lock +webshop_minimal/search_engine/indexes_100/_1.fdm +webshop_minimal/search_engine/indexes_100/_1.fdt +webshop_minimal/search_engine/indexes_100/_1.fdx +webshop_minimal/search_engine/indexes_100/_1.fnm +webshop_minimal/search_engine/indexes_100/_1.nvd +webshop_minimal/search_engine/indexes_100/_1.nvm +webshop_minimal/search_engine/indexes_100/_1.si +webshop_minimal/search_engine/indexes_100/_1.tvd +webshop_minimal/search_engine/indexes_100/_1.tvm +webshop_minimal/search_engine/indexes_100/_1.tvx +webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.doc +webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.dvd +webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.dvm +webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.pos +webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tim +webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tip +webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tmd +webshop_minimal/search_engine/indexes_100/segments_2 +webshop_minimal/search_engine/indexes_100/write.lock +webshop_minimal/search_engine/indexes_100k/_1.fdm +webshop_minimal/search_engine/indexes_100k/_1.fdt +webshop_minimal/search_engine/indexes_100k/_1.fdx +webshop_minimal/search_engine/indexes_100k/_1.fnm +webshop_minimal/search_engine/indexes_100k/_1.nvd +webshop_minimal/search_engine/indexes_100k/_1.nvm +webshop_minimal/search_engine/indexes_100k/_1.si +webshop_minimal/search_engine/indexes_100k/_1.tvd +webshop_minimal/search_engine/indexes_100k/_1.tvm +webshop_minimal/search_engine/indexes_100k/_1.tvx +webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.doc +webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.dvd +webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.dvm +webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.pos +webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.tim +webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.tip +webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.tmd +webshop_minimal/search_engine/indexes_100k/segments_2 +webshop_minimal/search_engine/indexes_100k/write.lock +webshop_minimal/search_engine/indexes_1k/_1.fdm +webshop_minimal/search_engine/indexes_1k/_1.fdt +webshop_minimal/search_engine/indexes_1k/_1.fdx +webshop_minimal/search_engine/indexes_1k/_1.fnm +webshop_minimal/search_engine/indexes_1k/_1.nvd +webshop_minimal/search_engine/indexes_1k/_1.nvm +webshop_minimal/search_engine/indexes_1k/_1.si +webshop_minimal/search_engine/indexes_1k/_1.tvd +webshop_minimal/search_engine/indexes_1k/_1.tvm +webshop_minimal/search_engine/indexes_1k/_1.tvx +webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.doc +webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.dvd +webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.dvm +webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.pos +webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.tim +webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.tip +webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.tmd +webshop_minimal/search_engine/indexes_1k/segments_2 +webshop_minimal/search_engine/indexes_1k/write.lock +webshop_minimal/search_engine/resources/documents.jsonl +webshop_minimal/search_engine/resources_100/documents.jsonl +webshop_minimal/search_engine/resources_100k/documents.jsonl +webshop_minimal/search_engine/resources_1k/documents.jsonl +webshop_minimal/templates/attributes_page.html +webshop_minimal/templates/description_page.html +webshop_minimal/templates/done_page.html +webshop_minimal/templates/features_page.html +webshop_minimal/templates/item_page.html +webshop_minimal/templates/results_page.html +webshop_minimal/templates/review_page.html +webshop_minimal/templates/search_page.html \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal.egg-info/dependency_links.txt b/external/webshop-minimal/webshop_minimal.egg-info/dependency_links.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/external/webshop-minimal/webshop_minimal.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/external/webshop-minimal/webshop_minimal.egg-info/top_level.txt b/external/webshop-minimal/webshop_minimal.egg-info/top_level.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5ef111ab9ad9a3d885a0fe4f3806da9d0d7592b --- /dev/null +++ b/external/webshop-minimal/webshop_minimal.egg-info/top_level.txt @@ -0,0 +1,2 @@ +scripts +webshop_minimal diff --git a/external/webshop-minimal/webshop_minimal/__init__.py b/external/webshop-minimal/webshop_minimal/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..cb73f5b11972f0ec4c783ffda4da9abc80164bf8 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/__init__.py @@ -0,0 +1,13 @@ +# __init__.py + +# Import key classes and functions to make them accessible at the package level +from .env import WebAgentTextEnv +from .engine import init_search_engine +from .utils import init_basedir + +# Define what gets imported when using `from webshop_minimal import *` +__all__ = [ + "WebAgentTextEnv", + "init_search_engine", + "init_basedir", +] diff --git a/external/webshop-minimal/webshop_minimal/data/items_human_ins.json b/external/webshop-minimal/webshop_minimal/data/items_human_ins.json new file mode 100644 index 0000000000000000000000000000000000000000..b2ab7479b9798e0b62ea394e065f3d506875f090 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/data/items_human_ins.json @@ -0,0 +1 @@ +{"B09QKP7XQL": [{"asin": "B09QKP7XQL", "instruction": "i'm looking for a blue wireless bluetooth headphones.", "attributes": ["noise cancelling", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3CERYJ", "worker_id": "A9QRQL9CFJBI7"}], "B08Y865MTQ": [{"asin": "B08Y865MTQ", "instruction": "i need 12 inch blue hair extensions that are made from natural hair.", "attributes": ["high quality", "natural hair"], "options": ["color: blue", "size: 12 inch (pack of 1)"], "instruction_attributes": ["natural hair"], "instruction_options": ["blue", "12 inch (pack of 1)"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZ7HKLW", "worker_id": "A2ECRNQ3X5LEXD"}], "B01LOUY5M8": [{"asin": "B01LOUY5M8", "instruction": "i'm looking for shampoo & conditioner sets for damaged hair.", "attributes": ["hair treatment", "damaged hair", "dry hair"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLLZ8ECN", "worker_id": "A9QRQL9CFJBI7"}], "B00BSY015G": [{"asin": "B00BSY015G", "instruction": "iam looking a steel frame tempered glass drawing table & board colour black", "attributes": ["coated steel", "tempered glass", "clear glass", "steel frame"], "options": ["color: black | clear glass"], "instruction_attributes": ["tempered glass", "steel frame"], "instruction_options": ["black | clear glass"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KQOE75", "worker_id": "A3N9ZYQAESNFQH"}], "B09QGV5PDZ": [{"asin": "B09QGV5PDZ", "instruction": "i need easy to use nurse scrub caps. pick light navy one.", "attributes": ["easy use", "natural hair"], "options": ["color: light navy"], "instruction_attributes": ["easy use"], "instruction_options": ["light navy"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J4FSFL", "worker_id": "A1NF6PELRKACS9"}], "B09DK1P3X8": [{"asin": "B09DK1P3X8", "instruction": "i need one travel bottle that is black and has an opener.", "attributes": ["leak proof", "travel bottles"], "options": ["color: 1 pcs black & opener"], "instruction_attributes": ["travel bottles"], "instruction_options": ["1 pcs black & opener"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB6ZSO2", "worker_id": "A2ECRNQ3X5LEXD"}], "B097JZJTCK": [{"asin": "B097JZJTCK", "instruction": "i'm looking for vanity lights for dining room", "attributes": ["vanity light", "dining room"], "options": [""], "instruction_attributes": ["vanity light", "dining room"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSD48B9", "worker_id": "AR0VJ5XRG16UJ"}], "B07PT3T483": [{"asin": "B07PT3T483", "instruction": "i'm looking for birthday cake toppers for party supplies. also choose 40 years cake topper one.", "attributes": ["birthday cake", "party supplies"], "options": ["color: 40 years cake topper"], "instruction_attributes": ["birthday cake", "party supplies"], "instruction_options": ["40 years cake topper"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40BQXNU", "worker_id": "AR0VJ5XRG16UJ"}], "B01HOMR4AU": [{"asin": "B01HOMR4AU", "instruction": "i need a square shaped turquoise area rug that is easy to clean and is 8 by 8 feet.", "attributes": ["easy clean", "spot clean"], "options": ["color: turquoise", "shape: square", "size: 8 ft 0 x 8 ft 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["turquoise", "square", "8 ft 0 x 8 ft 0"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOZNJGE", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01HOMR4AU", "instruction": "find me a modern shag carpet. something in turquoise and around 8 feet on either side. i speficially want one that's easy to clean, and that's octagonal in shape if available.", "attributes": ["easy clean", "spot clean"], "options": ["color: turquoise", "shape: octagonal", "size: 8 ft 0 x 8 ft 0 square"], "instruction_attributes": ["easy clean"], "instruction_options": ["turquoise", "octagonal", "8 ft 0 x 8 ft 0 square"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKGT1458", "worker_id": "A19UED74G8FXN3"}, {"asin": "B01HOMR4AU", "instruction": "i am looking for a rectangular runner shaped area rug with easy clean. also choose snow white color and 3 ft 3 in x 3 ft 3 in size.", "attributes": ["easy clean", "spot clean"], "options": ["color: snow white", "shape: rectangular runner", "size: 3 ft 3 in x 3 ft 3 in"], "instruction_attributes": ["easy clean"], "instruction_options": ["snow white", "rectangular runner"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU5PZ6RN", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B01HOMR4AU", "instruction": "i need an easy to clean 8x10' shag rug. it needs to be rectangular and navy blue.", "attributes": ["easy clean", "spot clean"], "options": ["color: navy blue", "shape: rectangular", "size: 8 x 10 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["navy blue", "rectangular", "8 x 10 ft"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZI3R7Q", "worker_id": "A2DDPSXH2X96RF"}, {"asin": "B01HOMR4AU", "instruction": "i would like a 7 foot oval turquoise rug that is easy to spot clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: turquoise", "shape: oval", "size: 7 ft"], "instruction_attributes": ["easy clean", "spot clean"], "instruction_options": ["turquoise", "oval", "7 ft"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZDAES0L", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01HOMR4AU", "instruction": "show me an easy to clean square shaped terracotta rug with 2 ft 6 in x 10 ft measurement.", "attributes": ["easy clean", "spot clean"], "options": ["color: terracotta", "shape: square", "size: 2 ft 6 in x 10 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["terracotta", "square", "2 ft 6 in x 10 ft"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3Y1NJ5W", "worker_id": "A3AYHESLQSDY5T"}, {"asin": "B01HOMR4AU", "instruction": "i am looking for a spot cleanan round shape area rugs", "attributes": ["easy clean", "spot clean"], "options": ["color: terracotta", "shape: round", "size: 5 ft 0 x 8 ft 0"], "instruction_attributes": ["spot clean"], "instruction_options": ["round"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72APZEOG", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B01HOMR4AU", "instruction": "i am looking a area rug soft easy clean in octagon shape size 7ft colour turquoise", "attributes": ["easy clean", "spot clean"], "options": ["color: turquoise", "shape: octagon", "size: 7 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["turquoise", "octagon", "7 ft"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YXAEH5", "worker_id": "A3N9ZYQAESNFQH"}], "B091G8RGQY": [{"asin": "B091G8RGQY", "instruction": "i want a phone case which is easy to install and has a slim design. pick a japan kitty color.", "attributes": ["easy install", "case cover"], "options": ["color: japan kitty"], "instruction_attributes": ["easy install"], "instruction_options": ["japan kitty"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSENULOGS", "worker_id": "A1NF6PELRKACS9"}], "B00006BSTZ": [{"asin": "B00006BSTZ", "instruction": "i'm looking for optical zoom point & shoot digital cameras.", "attributes": ["batteries included", "optical zoom", "usb port"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9OUX54", "worker_id": "A9QRQL9CFJBI7"}], "B09QC6YYHV": [{"asin": "B09QC6YYHV", "instruction": "i need a light grey bed frame that fits a king size bed.", "attributes": ["easy assemble", "box spring", "solid wood", "king size", "memory foam", "wood frame"], "options": ["color: light grey", "size: queen"], "instruction_attributes": ["king size"], "instruction_options": ["light grey", "queen"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67EE4NB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PLBBQK5": [{"asin": "B09PLBBQK5", "instruction": "i am looking for yuanl 2 pcs stainless steel tongue scraper to clear out the white, coated layer on your tongue or maintain better oral hygiene, this effective tongue scraper for adults and kids.", "attributes": ["easy clean", "bpa free", "easy use", "high quality", "stainless steel", "bad breath"], "options": [""], "instruction_attributes": ["easy clean", "bpa free", "easy use", "high quality", "stainless steel", "bad breath"], "instruction_options": [], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG58UIW6", "worker_id": "A1DRKZ3SCLAS4V"}], "B001MKOKH6": [{"asin": "B001MKOKH6", "instruction": "i want a regular fit pea coat with button closure. i need it in black.", "attributes": ["button closure", "regular fit", "classic fit"], "options": ["color: black", "size: x-large tall"], "instruction_attributes": ["button closure", "regular fit"], "instruction_options": ["black"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5KZG218", "worker_id": "A1NF6PELRKACS9"}], "B082ZQ1H8W": [{"asin": "B082ZQ1H8W", "instruction": "i am looking for a cruelty free hair mask.", "attributes": ["cruelty free", "argan oil"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJGXO96", "worker_id": "A2ECRNQ3X5LEXD"}], "B09RWQQ2JS": [{"asin": "B09RWQQ2JS", "instruction": "i'm furnished their house with inexpensive furniture with color green and size 90x4x45cm(35x16x18inch).", "attributes": ["easy clean", "faux leather", "living room"], "options": ["color: green", "size: 90x40x45cm(35x16x18inch)"], "instruction_attributes": ["living room"], "instruction_options": ["green", "90x40x45cm(35x16x18inch)"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYI7XFM", "worker_id": "ASL9LVC97FUCZ"}], "B09H7JB6JZ": [{"asin": "B09H7JB6JZ", "instruction": "i'm looking for a water resistance smartwatch bands of tie dye color.", "attributes": ["quick release", "water resistant"], "options": ["color: tie dye"], "instruction_attributes": ["water resistant"], "instruction_options": ["tie dye"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BO5ONOE", "worker_id": "A9QRQL9CFJBI7"}], "B09C2KVC5K": [{"asin": "B09C2KVC5K", "instruction": "i'm looking for dental flossers which is easy to use and eliminates bad breath.", "attributes": ["easy use", "bad breath"], "options": [""], "instruction_attributes": ["easy use", "bad breath"], "instruction_options": [], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LBPSPD", "worker_id": "AR0VJ5XRG16UJ"}], "B09QRN8FQN": [{"asin": "B09QRN8FQN", "instruction": "i am looking for a gluten free and low calorie sparkling spritz. pick something in coconut passion fruit flavor.", "attributes": ["non alcoholic", "low sugar", "gluten free", "low calorie", "keto friendly"], "options": ["flavor name: coconut passion fruit"], "instruction_attributes": ["gluten free", "low calorie"], "instruction_options": ["coconut passion fruit"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP6V3VDS", "worker_id": "A1NF6PELRKACS9"}], "B07D97VTXR": [{"asin": "B07D97VTXR", "instruction": "i am looking for sand gold nail art glitters which are long lasting and easy to apply. choose microfine 100g /3.5oz size.", "attributes": ["easy apply", "long lasting"], "options": ["color: sand gold", "size: microfine - 100g | 3.5oz"], "instruction_attributes": ["easy apply", "long lasting"], "instruction_options": ["sand gold", "microfine - 100g | 3.5oz"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZER7RM", "worker_id": "AHU9OLV0YKIIW"}], "B09F35WCV5": [{"asin": "B09F35WCV5", "instruction": "i want some casual gym workout pants that are green and come in an x-large.", "attributes": ["daily casual", "slim fit", "elastic waist", "drawstring closure", "relaxed fit", "gym workout"], "options": ["color: green", "size: x-large"], "instruction_attributes": ["gym workout"], "instruction_options": ["green", "x-large"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662O74ME", "worker_id": "A2ECRNQ3X5LEXD"}], "B08WC7XBSL": [{"asin": "B08WC7XBSL", "instruction": "i am looking for some memory foam sneakers in a size 7 that are black, white and red.", "attributes": ["machine washable", "comfortable fit", "synthetic sole", "memory foam"], "options": ["color: black | white | red", "size: 7"], "instruction_attributes": ["memory foam"], "instruction_options": ["black | white | red", "7"], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW61CVVU", "worker_id": "A2ECRNQ3X5LEXD"}], "B097M7TXJD": [{"asin": "B097M7TXJD", "instruction": "i am looking for a pink lave closure sneaker.", "attributes": ["lace closure", "steel toe", "teen girls"], "options": ["color: pink", "size: 9.5-10"], "instruction_attributes": ["lace closure"], "instruction_options": ["pink"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HJDWO3", "worker_id": "A9QRQL9CFJBI7"}], "B08846NCF7": [{"asin": "B08846NCF7", "instruction": "i need a unisex clog made of vinyl acetate. pick a new mint color.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: new mint", "size: 13 women | 11 men"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["new mint"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0ICJ84", "worker_id": "A1NF6PELRKACS9"}], "B09SBL979H": [{"asin": "B09SBL979H", "instruction": "i am looking for loose fit cotton shirts for men with short sleeve in white color. medium size preferable.", "attributes": ["loose fit", "slim fit", "short sleeve", "contrast color", "regular fit", "drawstring waist", "gym workout"], "options": ["color: white", "size: medium"], "instruction_attributes": ["loose fit", "short sleeve"], "instruction_options": ["white", "medium"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AB2UYA", "worker_id": "A1DRKZ3SCLAS4V"}], "B09F64NG2P": [{"asin": "B09F64NG2P", "instruction": "i need some hair drying towels that are easy to clean.", "attributes": ["easy clean", "dry hair"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBKXIG0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NBW8RDL": [{"asin": "B09NBW8RDL", "instruction": "i want a home office chair that is white and easy to install.", "attributes": ["heavy duty", "easy install", "easy assemble", "pu leather"], "options": ["color: white"], "instruction_attributes": ["easy install"], "instruction_options": ["white"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCGNBMQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07N7NF4L7": [{"asin": "B07N7NF4L7", "instruction": "i need a navy machine washable twin quilt set.", "attributes": ["queen size", "machine washable"], "options": ["color: navy", "size: twin"], "instruction_attributes": ["machine washable"], "instruction_options": ["navy", "twin"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83EPJIK", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DP1F6GK": [{"asin": "B09DP1F6GK", "instruction": "i would like to buy a black case for iphone 13 pro max which has protection for two screen with tempered glass and which i can easily install myself.", "attributes": ["easy install", "tempered glass", "glass screen"], "options": ["color: black - 13 pro"], "instruction_attributes": ["easy install", "tempered glass"], "instruction_options": ["black - 13 pro"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI8TMSSF", "worker_id": "AJY5G987IRT25"}], "B08DHL1YDL": [{"asin": "B08DHL1YDL", "instruction": "find a yubikey 5c usb port security key", "attributes": ["water resistant", "usb port"], "options": ["size: yubikey 5c"], "instruction_attributes": ["usb port"], "instruction_options": ["yubikey 5c"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU43C6RR", "worker_id": "A258PTOZ3D2TQR"}], "B08SJ3V46M": [{"asin": "B08SJ3V46M", "instruction": "i need a weather radio that has batteries included and is black.", "attributes": ["batteries included", "fast charging", "aaa batteries"], "options": ["color: black"], "instruction_attributes": ["batteries included"], "instruction_options": ["black"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2LS4LR", "worker_id": "A2ECRNQ3X5LEXD"}], "B085312K1G": [{"asin": "B085312K1G", "instruction": "i need a alcohol and cruelty free perfume. pick the one with musk scent.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: musk", "size: 3 ml"], "instruction_attributes": ["alcohol free", "cruelty free"], "instruction_options": ["musk"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPI1FWF", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B085312K1G", "instruction": "i want to found 0.1 fluid ounces of alcohol-free perfume oil with a woody scent.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: oud wood", "size: 0.1 fl oz (pack of 1)"], "instruction_attributes": ["alcohol free"], "instruction_options": ["oud wood", "0.1 fl oz (pack of 1)"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JF8CMVG", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B085312K1G", "instruction": "i am looking for a perfume oil in metal packing of 12 ml size which is alcohol free and lasts long.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: warm oud", "size: 12 ml - metal"], "instruction_attributes": ["alcohol free", "long lasting"], "instruction_options": ["12 ml - metal"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3OXZMI", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B085312K1G", "instruction": "i'm looking for alcohol free perfume with an oud wood scent.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: oud wood", "size: 3 ml"], "instruction_attributes": ["alcohol free"], "instruction_options": ["oud wood"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCLEVND6", "worker_id": "A19317A3X87NVM"}, {"asin": "B085312K1G", "instruction": "i am looking for a perfume oil in metal packing of 12 ml size which is alcohol free and lasts long.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: warm oud", "size: 12 ml - metal"], "instruction_attributes": ["alcohol free", "long lasting"], "instruction_options": ["12 ml - metal"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3OXZMI", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B085312K1G", "instruction": "i'm looking for a 12 ml superior egyptian musk.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: vanilla musk", "size: 12 ml"], "instruction_attributes": ["alcohol free", "cruelty free"], "instruction_options": ["vanilla musk", "12 ml"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8N8V2N6", "worker_id": "A1ZGOZQF2VZ0X9"}, {"asin": "B085312K1G", "instruction": "women's eau de parfum red musk paraben free crulty free long lasting size :12 ml", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: red musk", "size: 12 ml"], "instruction_attributes": ["cruelty free", "paraben free", "long lasting"], "instruction_options": ["red musk", "12 ml"], "assignment_id": "33CID5710F37J25O7G1CGJZBORKL3N", "worker_id": "A3N9ZYQAESNFQH"}], "B09Q39KMH4": [{"asin": "B09Q39KMH4", "instruction": "i am looking for medium long sleeves sleep & lounge sets.", "attributes": ["fleece lined", "long sleeve", "short sleeve"], "options": ["color: f1-black", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOA2TC1", "worker_id": "A9QRQL9CFJBI7"}], "B096MJQPX3": [{"asin": "B096MJQPX3", "instruction": "i'm looking for a long lasting jar candles.", "attributes": ["lead free", "long lasting", "soy wax"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEEQZKR", "worker_id": "A9QRQL9CFJBI7"}], "B094XYRY4L": [{"asin": "B094XYRY4L", "instruction": "i need a quick drying skort with pockets. pick a dark grey one.", "attributes": ["daily casual", "quick drying", "nylon spandex", "polyester spandex"], "options": ["color: dark grey", "size: x-large"], "instruction_attributes": ["quick drying"], "instruction_options": ["dark grey"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKLVV7W", "worker_id": "A1NF6PELRKACS9"}], "B00O3202EU": [{"asin": "B00O3202EU", "instruction": "i want to find a gold floor lamp with a glass shade and a nickel finish that i can use for my living room.", "attributes": ["brushed nickel", "nickel finish", "glass shade", "living room"], "options": ["color: gold"], "instruction_attributes": ["nickel finish", "glass shade", "living room"], "instruction_options": ["gold"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NFH2P7", "worker_id": "A345TDMHP3DQ3G"}], "B01MRH3SO3": [{"asin": "B01MRH3SO3", "instruction": "i need a solid wood platform bed with wooden frame. pick something that is natural in color.", "attributes": ["twin size", "box spring", "solid wood", "memory foam", "wood frame"], "options": ["color: natural", "size: king", "style: with headboard"], "instruction_attributes": ["solid wood", "wood frame"], "instruction_options": ["natural"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HSQ1D5", "worker_id": "A1NF6PELRKACS9"}], "B09Q33GJ91": [{"asin": "B09Q33GJ91", "instruction": "i'd like to find a large purple maxi dress made of soft material.", "attributes": ["soft material", "elastic waist", "everyday wear"], "options": ["color: e-purple", "size: large"], "instruction_attributes": ["soft material"], "instruction_options": ["e-purple", "large"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AC9TSE", "worker_id": "A345TDMHP3DQ3G"}], "B091C8PXGR": [{"asin": "B091C8PXGR", "instruction": "i want an easy to use keyboard with number pad and usb port. i want it to be mint green in color.", "attributes": ["batteries included", "easy carry", "easy use", "usb port"], "options": ["color: mint green"], "instruction_attributes": ["easy use", "usb port"], "instruction_options": ["mint green"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2V6G6C", "worker_id": "A1NF6PELRKACS9"}], "B07MZ2CLJY": [{"asin": "B07MZ2CLJY", "instruction": "i'm looking for underwater world backdrop with high resolution digital photography and light weight. also, choose 5*3ft one", "attributes": ["light weight", "high resolution", "digital photography"], "options": ["size: 5x3ft"], "instruction_attributes": ["light weight", "high resolution", "digital photography"], "instruction_options": ["5x3ft"], "assignment_id": "3DOCMVPBTYO4B61J1C162P16YXGNN0", "worker_id": "AR0VJ5XRG16UJ"}], "B005HV4ETK": [{"asin": "B005HV4ETK", "instruction": "i am looking for x-large extra long t-shirts with long sleeves.", "attributes": ["day comfort", "moisture wicking", "machine wash", "polyester cotton", "button closure", "long sleeve"], "options": ["color: silver grey", "size: x-large extra long"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x-large extra long"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOB99LR", "worker_id": "A9QRQL9CFJBI7"}], "B093K8W6MN": [{"asin": "B093K8W6MN", "instruction": "i am looking for a mesh laundry bag with a funny cartoon skull theme and is medium in size.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SIXZT3D", "worker_id": "AHU9OLV0YKIIW"}], "B0885RVZFB": [{"asin": "B0885RVZFB", "instruction": "i am looking for natural hair extensions. also, pick something in dark brown.", "attributes": ["hair extensions", "natural hair"], "options": ["color: 2 clips-#613 bleach blonde"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["2 clips-#613 bleach blonde"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9HQTV8", "worker_id": "A1NF6PELRKACS9"}], "B09HNMR1FY": [{"asin": "B09HNMR1FY", "instruction": "i want buy a easy use hair dye hair colouring spray colour should be purple", "attributes": ["long lasting", "easy use", "hair dye", "hair styling"], "options": ["color: purple"], "instruction_attributes": ["easy use", "hair dye"], "instruction_options": ["purple"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LEC09P", "worker_id": "A3N9ZYQAESNFQH"}], "B077JGYFKM": [{"asin": "B077JGYFKM", "instruction": "i'm looking for 1 resealed bag of puffed snacks", "attributes": ["non gmo", "resealable bag"], "options": ["number of items: 1"], "instruction_attributes": ["resealable bag"], "instruction_options": ["1"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7QNSDW", "worker_id": "A9QRQL9CFJBI7"}], "B01N435KPR": [{"asin": "B01N435KPR", "instruction": "i am looking for 30\"x16\"x1.5\", 3pcs wood frame posters & prints.", "attributes": ["ready hang", "wood frame"], "options": ["color: 26 new york skyline", "size: 30\"x16\"x1.5\", 3pcs"], "instruction_attributes": ["wood frame"], "instruction_options": ["30\"x16\"x1.5\", 3pcs"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXDSKWU", "worker_id": "A9QRQL9CFJBI7"}], "B00CHTXLD0": [{"asin": "B00CHTXLD0", "instruction": "i am looking for a dove anti persipirant deodorant for sensitive skin .choose 2.6 ounce (pack of 3).", "attributes": ["anti perspirant", "sensitive skin"], "options": ["scent: powder", "size: 2.6 ounce (pack of 3)"], "instruction_attributes": ["anti perspirant", "sensitive skin"], "instruction_options": ["2.6 ounce (pack of 3)"], "assignment_id": "3X0H8UUITCYRED22199FX2O3E7PSW3", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B00CHTXLD0", "instruction": "i am looking for some deodorant for sensitive skin that has a herbal scent and comes in a 12 pack.", "attributes": ["anti perspirant", "sensitive skin"], "options": ["scent: herbal", "size: 2.6 ounce (pack of 12)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["herbal", "2.6 ounce (pack of 12)"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCG45SM4", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00CHTXLD0", "instruction": "i am looking for sensitive skin powder", "attributes": ["anti perspirant", "sensitive skin"], "options": ["scent: powder", "size: 2.6 ounce (pack of 4)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["powder"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39TG0MGE", "worker_id": "A16M39T60N60NO"}, {"asin": "B00CHTXLD0", "instruction": "i need a 2.6 ounce(pack of 4) anti-perspirant deodorant that is best for sensitive skin and comes with herbal scent.", "attributes": ["anti perspirant", "sensitive skin"], "options": ["scent: herbal", "size: 2.6 ounce (pack of 4)"], "instruction_attributes": ["anti perspirant", "sensitive skin"], "instruction_options": ["herbal", "2.6 ounce (pack of 4)"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UQ4ZEZ", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B00CHTXLD0", "instruction": "i am looking for original clean scent deodorant that is anti perspirant.", "attributes": ["anti perspirant", "sensitive skin"], "options": ["scent: original clean", "size: 1.6 ounce (pack of 2)"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["original clean"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPDMCOL", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00CHTXLD0", "instruction": "i will like to have the dove anti-perspirant deodorant, sensitive skin 2.60 oz (pack of 12) with the herbal scent.", "attributes": ["anti perspirant", "sensitive skin"], "options": ["scent: herbal", "size: 2.6 ounce (pack of 12)"], "instruction_attributes": ["anti perspirant", "sensitive skin"], "instruction_options": ["herbal"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2YARIVH", "worker_id": "A1IL2K0ELYI090"}, {"asin": "B00CHTXLD0", "instruction": "i need an anti perspirant unscented deodorant - 1.6 ounce (pack of 2)", "attributes": ["anti perspirant", "sensitive skin"], "options": ["scent: unscented", "size: 1.6 ounce (pack of 2)"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["unscented"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZS804F", "worker_id": "A258PTOZ3D2TQR"}], "B091NDZ2JX": [{"asin": "B091NDZ2JX", "instruction": "i'm looking for 2 dozen individually wrapped dessert gifts.", "attributes": ["individually wrapped", "baked fresh"], "options": ["size: 2 dozen"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["2 dozen"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQ5W91D", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B091NDZ2JX", "instruction": "i am looking for 4 dozen individually wrapped gourmet cookies.", "attributes": ["individually wrapped", "baked fresh"], "options": ["size: 4 dozen"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["4 dozen"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4E4R6Q", "worker_id": "A1EREKSZAA9V7B"}], "B01HPJOW3E": [{"asin": "B01HPJOW3E", "instruction": "i am looking for easy to prepare and ready to eat quaker instant oatmeal breakfast cereal in coconut & caramel flavor.", "attributes": ["easy prepare", "ready eat"], "options": ["flavor name: coconut & caramel"], "instruction_attributes": ["easy prepare", "ready eat"], "instruction_options": ["coconut & caramel"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54ONCEYH", "worker_id": "A1DRKZ3SCLAS4V"}], "B00GJFRQMK": [{"asin": "B00GJFRQMK", "instruction": "i need all natural ingredients gluten gree and vegan red hot sauce 12.5 ounce (pack of 3)", "attributes": ["easy use", "gluten free", "quality ingredients", "natural ingredients"], "options": ["flavor name: hot", "size: 12.5 ounce (pack of 3)"], "instruction_attributes": ["gluten free", "natural ingredients"], "instruction_options": ["hot"], "assignment_id": "31EUONYN26DZ1WA44INARVVOA9IOVQ", "worker_id": "A258PTOZ3D2TQR"}], "B095JTF5DF": [{"asin": "B095JTF5DF", "instruction": "i'm looking for a night table with steel frame for living room. also, choose black colored one.", "attributes": ["steel frame", "living room"], "options": ["color: black", "item package quantity: 1"], "instruction_attributes": ["steel frame", "living room"], "instruction_options": ["black"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AEASTI", "worker_id": "AR0VJ5XRG16UJ"}], "B0037507EE": [{"asin": "B0037507EE", "instruction": "i am looking for wild caught tuna that is ranch flavored and comes in a pack of ten.", "attributes": ["ready eat", "wild caught", "gluten free"], "options": ["flavor name: ranch", "size: 2.6 ounce (pack of 10)"], "instruction_attributes": ["wild caught"], "instruction_options": ["ranch", "2.6 ounce (pack of 10)"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCW73GG4", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0037507EE", "instruction": "i'd like to find a 3-ounce package of ready-to-eat wild-caught tuna salad. the flavor needs to be herb and garlic.", "attributes": ["ready eat", "wild caught", "gluten free"], "options": ["flavor name: herb & garlic", "size: 3 ounce (pack of 1)"], "instruction_attributes": ["ready eat", "wild caught"], "instruction_options": ["herb & garlic", "3 ounce (pack of 1)"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACOENH4", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B0037507EE", "instruction": "i want some ranch flavored tuna salad.", "attributes": ["ready eat", "wild caught", "gluten free"], "options": ["flavor name: ranch", "size: 2.6 ounce (pack of 24)"], "instruction_attributes": ["ready eat"], "instruction_options": ["ranch"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREO3J2W", "worker_id": "A19317A3X87NVM"}, {"asin": "B0037507EE", "instruction": "i am looking for starkist gluten free sweet & spicy tuna salad, 2.6 ounce (pack of 12)", "attributes": ["ready eat", "wild caught", "gluten free"], "options": ["flavor name: sweet & spicy", "size: 2.6 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["sweet & spicy", "2.6 ounce (pack of 12)"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40IQNXY", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B0037507EE", "instruction": "i'm looking for a honey bbq tuna ready to eat 2.6 ounce", "attributes": ["ready eat", "wild caught", "gluten free"], "options": ["flavor name: honey bbq", "size: 2.6 ounce (pack of 24)"], "instruction_attributes": ["ready eat"], "instruction_options": ["honey bbq", "2.6 ounce (pack of 24)"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD38RIP", "worker_id": "A2Y2TURT2VEYZN"}], "B08GK5LX3Q": [{"asin": "B08GK5LX3Q", "instruction": "i want to find a 100-foot long high-speed ethernet cable in an off-white color.", "attributes": ["high speed", "gold plated", "long lasting", "high performance"], "options": ["color: morandi off-white", "size: 100ft"], "instruction_attributes": ["high speed"], "instruction_options": ["morandi off-white", "100ft"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZA9MKY", "worker_id": "A345TDMHP3DQ3G"}], "B01LWKKHU4": [{"asin": "B01LWKKHU4", "instruction": "i'm looking for master cables gold-plated", "attributes": ["gold plated", "1080p hd"], "options": [""], "instruction_attributes": ["gold plated"], "instruction_options": [], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70I2XBCM", "worker_id": "A1VMWZ4X201V7H"}], "B092V7C59N": [{"asin": "B092V7C59N", "instruction": "i need a long lasting and high quality nail art kit. it should have all the basic colors.", "attributes": ["long lasting", "easy use", "high quality", "nail art"], "options": ["color: basic colors"], "instruction_attributes": ["long lasting", "high quality", "nail art"], "instruction_options": ["basic colors"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQ6XQSM", "worker_id": "A1NF6PELRKACS9"}], "B07CBKK4CH": [{"asin": "B07CBKK4CH", "instruction": "i am looking for a six pack of wasabi snack mix of mixed nuts.", "attributes": ["low sodium", "protein serving", "low fat", "resealable bag"], "options": ["flavor name: wasabi spicy snack mix", "size: 6 ounce (6 pack)"], "instruction_attributes": ["low sodium"], "instruction_options": ["wasabi spicy snack mix", "6 ounce (6 pack)"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBATEA87", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CBKK4CH", "instruction": "i am looking for a six pack of low sodium wasabi nuts.", "attributes": ["low sodium", "protein serving", "low fat", "resealable bag"], "options": ["flavor name: wasabi spicy snack mix", "size: 7 ounce (6 pack)"], "instruction_attributes": ["low sodium"], "instruction_options": ["wasabi spicy snack mix", "7 ounce (6 pack)"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNI6NTB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09BLV58LQ": [{"asin": "B09BLV58LQ", "instruction": "i'm looking for a over ear bluetooth headphones with stereo sound effect and long lasting battery.", "attributes": ["hands free", "long lasting", "stainless steel", "stereo sound"], "options": [""], "instruction_attributes": ["long lasting", "stereo sound"], "instruction_options": [], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR0S0CL", "worker_id": "AR0VJ5XRG16UJ"}], "B077J12XTH": [{"asin": "B077J12XTH", "instruction": "i need an accent pillow that i can machine wash. get on that is coral blue and is 36\u201d x 36\u201d.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: coral blue", "size: 36\" x 36\""], "instruction_attributes": ["machine washable"], "instruction_options": ["coral blue", "36\" x 36\""], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRMDWPK", "worker_id": "A31PW970Z2PC5P"}], "B09J2G7DD1": [{"asin": "B09J2G7DD1", "instruction": "i need some walking shoes that are non slip and come in a size 7.5.", "attributes": ["non slip", "rubber sole", "comfortable fit", "unique design"], "options": ["size: 7.5"], "instruction_attributes": ["non slip"], "instruction_options": ["7.5"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIB192L", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H2V142R": [{"asin": "B09H2V142R", "instruction": "i want a comfortable fit men's boxers. i am an x-large size.", "attributes": ["comfortable fit", "elastic waistband"], "options": ["color: color21", "size: x-large"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["x-large"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUC13R9", "worker_id": "A1NF6PELRKACS9"}], "B07DFTG99B": [{"asin": "B07DFTG99B", "instruction": "i am looking for a high performance quad core tower computer pc which is certified refurbished.", "attributes": ["certified refurbished", "high performance", "quad core", "core i5", "intel core"], "options": [""], "instruction_attributes": ["certified refurbished", "quad core"], "instruction_options": [], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM9W2I1Q", "worker_id": "A1NF6PELRKACS9"}], "B08DLL59WC": [{"asin": "B08DLL59WC", "instruction": "i want to find a height-adjustable desk chair in the color petal green.", "attributes": ["height adjustable", "mid century", "assembly required", "living room"], "options": ["color: petal green"], "instruction_attributes": ["height adjustable"], "instruction_options": ["petal green"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSENT9GO6", "worker_id": "A345TDMHP3DQ3G"}], "B08P1V6Z83": [{"asin": "B08P1V6Z83", "instruction": "i am looking for a heavy duty and tempered glass screen case cover. choose a red one.", "attributes": ["heavy duty", "tempered glass", "case cover", "glass screen"], "options": ["color: red"], "instruction_attributes": ["heavy duty", "tempered glass", "case cover", "glass screen"], "instruction_options": ["red"], "assignment_id": "3X65QVEQIBXVW21709CD9M35UYFLCR", "worker_id": "A1NF6PELRKACS9"}], "B091JDTFHS": [{"asin": "B091JDTFHS", "instruction": "i need a hand painted vanity light. make sure it is 8.25x33x7 in dimensions.", "attributes": ["hand painted", "vanity light", "glass shade", "living room"], "options": ["size: 8.25x33.00x7.00"], "instruction_attributes": ["hand painted", "vanity light"], "instruction_options": ["8.25x33.00x7.00"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VTUCP32", "worker_id": "A1NF6PELRKACS9"}], "B0758BNGM8": [{"asin": "B0758BNGM8", "instruction": "i want an xx-small sized slim fit button down shirt with long sleeves. pick something in white.", "attributes": ["slim fit", "hand wash", "machine wash", "long sleeve"], "options": ["color: 7#white", "size: xx-small"], "instruction_attributes": ["slim fit", "long sleeve"], "instruction_options": ["7#white", "xx-small"], "assignment_id": "3HPZF4IVNX3FW186JO133U513CSYC3", "worker_id": "A1NF6PELRKACS9"}], "B08PHWFM49": [{"asin": "B08PHWFM49", "instruction": "i am looking for a deep conditioner for natural hair.", "attributes": ["certified organic", "cruelty free", "natural hair"], "options": [""], "instruction_attributes": ["natural hair"], "instruction_options": [], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E0UCX76", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BCSFJNN": [{"asin": "B08BCSFJNN", "instruction": "i need a carrying case which is light weight with a mesh pocket. pick a black one.", "attributes": ["water resistant", "light weight", "carrying case", "4g lte"], "options": ["color: black"], "instruction_attributes": ["light weight", "carrying case"], "instruction_options": ["black"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLL803C", "worker_id": "A1NF6PELRKACS9"}], "B08S6LRJGQ": [{"asin": "B08S6LRJGQ", "instruction": "i'm looking for a wall art for living room with ready to hang wood frame which is easy to clean. also, choose art-003m one", "attributes": ["ready hang", "easy clean", "wood frame", "living room"], "options": ["color: art-003m", "size: 16x24"], "instruction_attributes": ["ready hang", "easy clean", "wood frame", "living room"], "instruction_options": ["art-003m"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVFSQ0F", "worker_id": "AR0VJ5XRG16UJ"}], "B07MLHJ6SQ": [{"asin": "B07MLHJ6SQ", "instruction": "i would like some medium brown hair extensions that are 22 inches.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: medium brown", "size: 22 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["medium brown", "22 inch"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BEOX8Z", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07MLHJ6SQ", "instruction": "i am looking for a 16 inch hair extensions storage case.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: platinum blonde mix grey", "size: 16 inch"], "instruction_attributes": ["storage case", "hair extensions"], "instruction_options": ["16 inch"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDPAY88", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07MLHJ6SQ", "instruction": "order me some twelve inch pink hair extensions.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: pink", "size: 12 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["pink", "12 inch"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XOWGNT", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07MLHJ6SQ", "instruction": "i would like to buy some 24 inch grey hair extensions.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: grey", "size: 24 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["grey", "24 inch"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6C7BV0I", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07MLHJ6SQ", "instruction": "i want to find some portable 18-inch long hair extensions in the light brown color.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: light brown", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["light brown", "18 inch"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0F91U4L", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07MLHJ6SQ", "instruction": "i am looking to buy grey-body wave, 18 inch hair extensions.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: grey-body wave", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["grey-body wave", "18 inch"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCF4IPW", "worker_id": "A114NK7T5673GK"}, {"asin": "B07MLHJ6SQ", "instruction": "i am looking for a 16 inch hair extensions storage case.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: platinum blonde mix grey", "size: 16 inch"], "instruction_attributes": ["storage case", "hair extensions"], "instruction_options": ["16 inch"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDPAY88", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07MLHJ6SQ", "instruction": "order me some twelve inch pink hair extensions.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: pink", "size: 12 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["pink", "12 inch"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XOWGNT", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07MLHJ6SQ", "instruction": "i am looking for this product dustproof non woven portable storage case with wooden hanger for human hair extensions (pink) for dry hair .", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: purple", "size: 20 inch"], "instruction_attributes": ["storage case", "dry hair"], "instruction_options": ["purple"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57IM9I6", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B07MLHJ6SQ", "instruction": "i need to find a dust-proof storage case for my hair extensions that's at least 20 inches long.", "attributes": ["storage case", "hair extensions", "dry hair"], "options": ["color: #2p18t6p18", "size: 20 inch"], "instruction_attributes": ["storage case", "hair extensions"], "instruction_options": ["20 inch"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UYM0YP", "worker_id": "A3LIIE572Z4OG7"}], "B0018P0330": [{"asin": "B0018P0330", "instruction": "i am looking for a denim man short regular fit machine wash size 34 regular colour steel black", "attributes": ["machine wash", "imported zipper", "regular fit"], "options": ["color: steel black", "fit type: 505 regular", "size: 34 regular"], "instruction_attributes": ["machine wash", "regular fit"], "instruction_options": ["steel black", "34 regular"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2VK537", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B0018P0330", "instruction": "i want medium stonewash levi's men's 505 regular fit shorts.", "attributes": ["machine wash", "imported zipper", "regular fit"], "options": ["color: medium stonewash", "fit type: 405 standard", "size: 44"], "instruction_attributes": [], "instruction_options": ["medium stonewash"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34K641E", "worker_id": "A2RBF3IIJP15IH"}], "B097WYZMV6": [{"asin": "B097WYZMV6", "instruction": "i am looking for a high quality, travel size eau de parfum for women.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: calvin klein eternity aqua for men impre..."], "instruction_attributes": ["travel size", "high quality"], "instruction_options": [], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5K75FW", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B097WYZMV6", "instruction": "i looking women's parfume travel size high quality long lasting scent: clinique happy heart impression", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: clinique happy heart impression"], "instruction_attributes": ["travel size", "high quality", "long lasting"], "instruction_options": ["clinique happy heart impression"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR330AR", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B097WYZMV6", "instruction": "i'm looking for the marc jacobs daisy eau so fresh impression perfume in a travel size.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: marc jacobs daisy eau so fresh impressio..."], "instruction_attributes": ["travel size"], "instruction_options": ["marc jacobs daisy eau so fresh impressio..."], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZNKR7H", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B097WYZMV6", "instruction": "i'm looking for alcohol free high quality scent. its contain travel sized.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: escada especially impression"], "instruction_attributes": ["travel size", "alcohol free", "high quality"], "instruction_options": ["escada especially impression"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYIA6L2", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B097WYZMV6", "instruction": "the flowers are chosen for their delicate fragrance hight quality and scent is amber romance perfume", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: amber romance perfume"], "instruction_attributes": ["high quality"], "instruction_options": ["amber romance perfume"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISWROYI", "worker_id": "ASL9LVC97FUCZ"}], "B005KP473Q": [{"asin": "B005KP473Q", "instruction": "i want a quick release tripod with bag. pick the 2 pack option.", "attributes": ["quick release", "carrying case"], "options": ["style: 2-pack"], "instruction_attributes": ["quick release"], "instruction_options": ["2-pack"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BO5GNO6", "worker_id": "A1NF6PELRKACS9"}], "B097KHTHNR": [{"asin": "B097KHTHNR", "instruction": "i need an easy to clean exfoliating back scrubber. pick a pink one.", "attributes": ["easy clean", "dead skin"], "options": ["color: pink", "size: exfoliating back scrubber"], "instruction_attributes": ["easy clean"], "instruction_options": ["pink", "exfoliating back scrubber"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FATLEL", "worker_id": "A1NF6PELRKACS9"}], "B09NKS7WX3": [{"asin": "B09NKS7WX3", "instruction": "i need an easy carry hair ball trimmer for clothes. it should be green in color.", "attributes": ["easy carry", "hair removal"], "options": ["color: green"], "instruction_attributes": ["easy carry"], "instruction_options": ["green"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFMU3ED", "worker_id": "A1NF6PELRKACS9"}], "B07SHWM3BX": [{"asin": "B07SHWM3BX", "instruction": "i am looking for a grey color day comfort golf shoes for men.", "attributes": ["day comfort", "ethylene vinyl", "vinyl acetate"], "options": ["color: grey", "size: 7", "style name: tech response spikeless"], "instruction_attributes": ["day comfort"], "instruction_options": ["grey"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4AO51V", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07SHWM3BX", "instruction": "i'm looking for tech response shoes by adidas in black size 11 for day comfort", "attributes": ["day comfort", "ethylene vinyl", "vinyl acetate"], "options": ["color: black", "size: 11", "style name: tech response golf shoes"], "instruction_attributes": ["day comfort"], "instruction_options": ["black", "11", "tech response golf shoes"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS3UG9H", "worker_id": "A2Y2TURT2VEYZN"}], "B01LY8EQIP": [{"asin": "B01LY8EQIP", "instruction": "i want a non diary snack with caramelized nuts. pick the 2 pound pack.", "attributes": ["non dairy", "non gmo"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["non dairy"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWTCC1G", "worker_id": "A1NF6PELRKACS9"}], "B0764GPB51": [{"asin": "B0764GPB51", "instruction": "i need a plant based, soy free protein shake. pick the smooth vanilla flavor.", "attributes": ["soy free", "non gmo", "low sugar", "gluten free", "shelf stable", "nut free", "plant based", "dairy free", "artificial colors"], "options": ["flavor name: smooth vanilla"], "instruction_attributes": ["soy free", "plant based"], "instruction_options": ["smooth vanilla"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PCXWINN", "worker_id": "A1NF6PELRKACS9"}], "B092JJ1S24": [{"asin": "B092JJ1S24", "instruction": "i would like a desktop tower that has a core i5 processor with 16 gb ddr4 ram, and has 256gb of storage.", "attributes": ["core i5", "intel core"], "options": ["size: 16gb ddr4 ram, 256gb pcie ssd + 1tb hdd"], "instruction_attributes": ["core i5"], "instruction_options": ["16gb ddr4 ram, 256gb pcie ssd + 1tb hdd"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXKHYLS", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B092JJ1S24", "instruction": "i would like a core i5 tower that has 64 gb of ram, and 3tb of storage.", "attributes": ["core i5", "intel core"], "options": ["size: 64gb ddr4 ram, 2tb pcie ssd + 1tb hdd"], "instruction_attributes": ["core i5"], "instruction_options": ["64gb ddr4 ram, 2tb pcie ssd + 1tb hdd"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VGS068", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NM27BY6": [{"asin": "B09NM27BY6", "instruction": "i need a ready to hang portrait art of a dancing lady for the wall. pick one that is 20x20 inch.", "attributes": ["ready hang", "living room"], "options": ["color: dancing lady", "size: 20x20 inch"], "instruction_attributes": ["ready hang"], "instruction_options": ["dancing lady", "20x20 inch"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455RZKTYB", "worker_id": "A1NF6PELRKACS9"}], "B07BCQ6ZCD": [{"asin": "B07BCQ6ZCD", "instruction": "i'm looking for xx-large machine wash sleep & lounge sets.", "attributes": ["wash cold", "machine wash", "relaxed fit", "tumble dry"], "options": ["color: with gray camo pant", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["xx-large"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E395LCZV", "worker_id": "A9QRQL9CFJBI7"}], "B07RWT729V": [{"asin": "B07RWT729V", "instruction": "i want a water resistant carrying case for my hard drive. pick something in teal.", "attributes": ["water resistant", "heavy duty", "carrying case"], "options": ["color: teal"], "instruction_attributes": ["water resistant", "carrying case"], "instruction_options": ["teal"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AJSBWA", "worker_id": "A1NF6PELRKACS9"}], "B08NLC4MKF": [{"asin": "B08NLC4MKF", "instruction": "i am looking for frozen meals that is grass fed and gluten free. i want it in beef variety pack flavor.", "attributes": ["grass fed", "gluten free", "quality ingredients"], "options": ["flavor name: beef variety pack", "size: 11 ounce (pack of 10)"], "instruction_attributes": ["grass fed", "gluten free"], "instruction_options": ["beef variety pack"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YSTHEH", "worker_id": "A1NF6PELRKACS9"}], "B09NYH4HJY": [{"asin": "B09NYH4HJY", "instruction": "i am looking for a blue high waist legging for women.", "attributes": ["butt lifting", "day comfort", "tummy control", "high waist"], "options": ["color: blue", "size: large"], "instruction_attributes": ["high waist"], "instruction_options": [], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SP4TQ7", "worker_id": "A9QRQL9CFJBI7"}], "B08F1V4JTR": [{"asin": "B08F1V4JTR", "instruction": "i need high quality hair extensions that is 18 inches in length.", "attributes": ["high quality", "hair extensions", "hair salon"], "options": ["color: balayage ombre brown to dirty blonde#2 | 6 | 18", "size: 18 inch"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["18 inch"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZC6C71", "worker_id": "A1NF6PELRKACS9"}], "B0843R2PHK": [{"asin": "B0843R2PHK", "instruction": "i'm looking for a 128 ounce (pack of 1) of shelf-stable, keto-friendly, and gluten-free almond milk.", "attributes": ["plant based", "keto friendly", "non dairy", "gluten free", "shelf stable", "non gmo"], "options": ["flavor name: cashew", "size: 128 ounce (pack of 1)"], "instruction_attributes": ["keto friendly", "gluten free", "shelf stable"], "instruction_options": ["128 ounce (pack of 1)"], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZRCCND", "worker_id": "A9QRQL9CFJBI7"}], "B086FXMWDM": [{"asin": "B086FXMWDM", "instruction": "look for a caffeine and gluten free herbal drink. i like mixed berry flavor.", "attributes": ["non alcoholic", "caffeine free", "gluten free", "non gmo", "zero sugar"], "options": ["flavor name: mixed berry", "size: 8.5 fl oz (pack of 6)"], "instruction_attributes": ["caffeine free", "gluten free"], "instruction_options": ["mixed berry"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY18T807", "worker_id": "A1NF6PELRKACS9"}], "B088WG813M": [{"asin": "B088WG813M", "instruction": "i am looking for travel size hipster scent 0.5 oz.", "attributes": ["cruelty free", "animal testing", "travel size"], "options": ["scent: hipster"], "instruction_attributes": [], "instruction_options": ["hipster"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZBMMKD", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B088WG813M", "instruction": "i want a socialite scented floral fragrance that comes in travel size. make sure it is a cruelty free product.", "attributes": ["cruelty free", "animal testing", "travel size"], "options": ["scent: socialite"], "instruction_attributes": ["cruelty free", "travel size"], "instruction_options": ["socialite"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFVY3EZ", "worker_id": "A1NF6PELRKACS9"}], "B005OPP2AY": [{"asin": "B005OPP2AY", "instruction": "i need a long lasting fragrance gift set for women.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YWYN4T3", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B005OPP2AY", "instruction": "i am interested in a long lasting perfume set.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2PB5M3", "worker_id": "A2ECRNQ3X5LEXD"}], "B00JJYHPCY": [{"asin": "B00JJYHPCY", "instruction": "get me some low carb sun dried tomatoes. it should have the flavor of plantain chips.", "attributes": ["low carb", "non gmo"], "options": ["flavor: plantain chips", "size: 1 pound (pack of 1)"], "instruction_attributes": ["low carb"], "instruction_options": ["plantain chips"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI7Z7ZGQ", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B00JJYHPCY", "instruction": "i need non gmo sundried tomatoes in a 32 oz container", "attributes": ["low carb", "non gmo"], "options": ["flavor: plantain chips", "size: 32 ounce"], "instruction_attributes": ["non gmo"], "instruction_options": ["32 ounce"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3XJQ78", "worker_id": "A2ECRNQ3X5LEXD"}], "B091TKY6K7": [{"asin": "B091TKY6K7", "instruction": "find me a t shirt dress with ruffle sleeves and elastic closure. pick a green dress.", "attributes": ["hand wash", "elastic closure"], "options": ["color: green", "size: xx-large"], "instruction_attributes": ["elastic closure"], "instruction_options": ["green"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VCC60Q", "worker_id": "A1NF6PELRKACS9"}], "B09KM5FFBG": [{"asin": "B09KM5FFBG", "instruction": "a double sided soft fleence cozy warm light weighted throw blanket also colour is yellow", "attributes": ["double sided", "living room"], "options": ["color: k"], "instruction_attributes": ["double sided"], "instruction_options": ["k"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HRC1DP", "worker_id": "A3N9ZYQAESNFQH"}], "B097F83XBH": [{"asin": "B097F83XBH", "instruction": "i need a golden color cupcake toppers for my wife's birth day party", "attributes": ["birthday party", "cupcake picks"], "options": ["color: gold"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A67UEVU", "worker_id": "A2COCSUGZV28X"}], "B09HC7FPDC": [{"asin": "B09HC7FPDC", "instruction": "i am looking for winter warm ankle boots for women. my size is 7.5.", "attributes": ["knee high", "winter warm", "day comfort", "slip resistant", "anti slip", "high heel", "quality materials"], "options": ["color: z1 pink", "size: 7.5"], "instruction_attributes": ["winter warm"], "instruction_options": ["7.5"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINO7272", "worker_id": "A1NF6PELRKACS9"}], "B007JAY028": [{"asin": "B007JAY028", "instruction": "i would like a low sodium and sugar free grape drink in 10 pack boxes.", "attributes": ["low sodium", "sugar free", "natural flavors"], "options": [""], "instruction_attributes": ["low sodium", "sugar free"], "instruction_options": [], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0MUW5G", "worker_id": "A1NF6PELRKACS9"}], "B099MXGC6W": [{"asin": "B099MXGC6W", "instruction": "i am looking for an iphone case that is wireless charging compatible and is rainbow colored.", "attributes": ["compatible apple", "wireless charging"], "options": ["color: rainbow"], "instruction_attributes": ["wireless charging"], "instruction_options": ["rainbow"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZVLISE", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QPP8J2M": [{"asin": "B09QPP8J2M", "instruction": "i am looking for 6 pack of gluten free and low calorie green tea kelp noodles.", "attributes": ["gluten free", "low calorie", "low carb"], "options": ["flavor name: green tea kelp noodles", "size: 6 pack"], "instruction_attributes": ["gluten free", "low calorie"], "instruction_options": ["green tea kelp noodles", "6 pack"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FAG4UC", "worker_id": "A9QRQL9CFJBI7"}], "B08XVW565D": [{"asin": "B08XVW565D", "instruction": "i am looking for a red-2pcs manual toothbrushes with oral hygiene.", "attributes": ["bpa free", "non slip", "oral hygiene"], "options": ["color: red-2pcs"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["red-2pcs"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WK8427", "worker_id": "A9QRQL9CFJBI7"}], "B078N8NCB9": [{"asin": "B078N8NCB9", "instruction": "i'm looking for a king-sized 8-inch mattress foundation with box springs.", "attributes": ["ready use", "fully assembled", "twin size", "assembly required", "box spring"], "options": ["size: king", "style: 8\" foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["king", "8\" foundation"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJX77JUJ", "worker_id": "A345TDMHP3DQ3G"}], "B01LPCLEWY": [{"asin": "B01LPCLEWY", "instruction": "i am looking for a low carbohydrates protein bar with package of 12 counts.", "attributes": ["low carb", "gluten free"], "options": ["size: 12 count", "style: \"chocolate dessert"], "instruction_attributes": ["low carb"], "instruction_options": ["12 count"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGGEIYP", "worker_id": "A2HMEGTAFO0CS8"}], "B09K7FFJGJ": [{"asin": "B09K7FFJGJ", "instruction": "i need a screen protector that is easy to install and is 41mm in size.", "attributes": ["easy install", "compatible apple", "high resolution", "glass screen", "tempered glass"], "options": ["size: 41 mm"], "instruction_attributes": ["easy install"], "instruction_options": ["41 mm"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOHWX6HH", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HH5311B": [{"asin": "B09HH5311B", "instruction": "i am looking for a size 9.5 casual walking shoes for men, which should have a unique design and should fit comfortably. i will prefer this to have a rubber sole which should be non slippery.", "attributes": ["non slip", "rubber sole", "comfortable fit", "unique design"], "options": ["size: 9.5"], "instruction_attributes": ["non slip", "rubber sole", "comfortable fit", "unique design"], "instruction_options": ["9.5"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0U7R3AD", "worker_id": "ASWFLI3N8X72G"}], "B01N4QXNL5": [{"asin": "B01N4QXNL5", "instruction": "i want to find a dining room wood counter height stool. also, choose the light cherry one.", "attributes": ["wood finish", "contemporary style", "dining room"], "options": ["color: light cherry"], "instruction_attributes": ["dining room"], "instruction_options": ["light cherry"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCW7ZGG0", "worker_id": "A9ZM1P6LBW79"}], "B09MV6XLSL": [{"asin": "B09MV6XLSL", "instruction": "i'm looking for a 1 dozen nut free dessert gifts.", "attributes": ["nut free", "individually wrapped"], "options": ["size: 1 dozen"], "instruction_attributes": ["nut free"], "instruction_options": ["1 dozen"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0QTW45", "worker_id": "A9QRQL9CFJBI7"}], "B000VYP4EW": [{"asin": "B000VYP4EW", "instruction": "i need a rich creamy chai tea that is spicy and gluten free. pick the tortoise green tea flavor.", "attributes": ["rich creamy", "easy prepare", "gluten free"], "options": ["flavor name: tortoise green tea", "size: 48 ounce (pack of 1)"], "instruction_attributes": ["rich creamy", "gluten free"], "instruction_options": ["tortoise green tea"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZ6LKLY", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B000VYP4EW", "instruction": "i am looking for gluten free chai, please choose orca spice flavor.", "attributes": ["rich creamy", "easy prepare", "gluten free"], "options": ["flavor name: orca spice", "size: 64 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["orca spice"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC3TNI1", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B000VYP4EW", "instruction": "i would like a 11.9 ounce maple moose rich and creamy chai tea.", "attributes": ["rich creamy", "easy prepare", "gluten free"], "options": ["flavor name: maple moose", "size: 11.9 ounce (pack of 1)"], "instruction_attributes": ["rich creamy"], "instruction_options": ["maple moose", "11.9 ounce (pack of 1)"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMSS9WJ", "worker_id": "A1WS884SI0SLO4"}], "B089Z47324": [{"asin": "B089Z47324", "instruction": "i want a sugar free paddy syrup that is keto friendly. i like the macadamia nut flavor.", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: macadamia nut", "size: 12.7 ounce"], "instruction_attributes": ["sugar free", "keto friendly"], "instruction_options": ["macadamia nut"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BO5WONN", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B089Z47324", "instruction": "i am looking for sugar free madagascar vanilla flavored peppermint paddy syrup, 64 ounce (pack of 6)", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: madagascar vanilla", "size: 64 ounce (pack of 6)"], "instruction_attributes": ["sugar free"], "instruction_options": ["madagascar vanilla", "64 ounce (pack of 6)"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KDBC641", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B089Z47324", "instruction": "i need davinci gourmet sugar-free cherry syrup.", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: cherry", "size: 12.7 ounce"], "instruction_attributes": ["sugar free"], "instruction_options": ["cherry"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22JKW8L", "worker_id": "A2RBF3IIJP15IH"}], "B09HDTL3X9": [{"asin": "B09HDTL3X9", "instruction": "i need an iphone case that is easy to install and use. i am looking for something in green marble gold.", "attributes": ["easy install", "easy use", "wireless charging"], "options": ["color: green marble gold", "size: iphone xs max\uff086.5 inch\uff09"], "instruction_attributes": ["easy install", "easy use"], "instruction_options": ["green marble gold"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R12GI27", "worker_id": "A1NF6PELRKACS9"}], "B07MV93XNN": [{"asin": "B07MV93XNN", "instruction": "i am looking for a mid century wood end table lamb with usb charging port .", "attributes": ["mid century", "living room"], "options": ["color: wood"], "instruction_attributes": ["mid century"], "instruction_options": ["wood"], "assignment_id": "31JLPPHS254FPN8LK8H48035JQ83OT", "worker_id": "AHU9OLV0YKIIW"}], "B08Q7W5HZ9": [{"asin": "B08Q7W5HZ9", "instruction": "i want to find a two-pack of white coaxial cables that are plated with gold.", "attributes": ["gold plated", "coaxial cable"], "options": ["color: white", "number of items: 2"], "instruction_attributes": ["gold plated", "coaxial cable"], "instruction_options": ["white", "2"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKC447HY", "worker_id": "A345TDMHP3DQ3G"}], "B09LCDCFNN": [{"asin": "B09LCDCFNN", "instruction": "i need an easy to use breath freshener spray to eliminate bad breath. pick a white one.", "attributes": ["easy use", "tea tree", "natural ingredients", "bad breath"], "options": ["color: white"], "instruction_attributes": ["easy use", "bad breath"], "instruction_options": ["white"], "assignment_id": "3N8OEVH1F204BC17361WW31GEH4OO9", "worker_id": "A1NF6PELRKACS9"}], "B000ILMQL2": [{"asin": "B000ILMQL2", "instruction": "i need a kosher certified popcorn seasoning that has kettle corn flavor. get the pack of 6 of 2.8 ounce each", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: kettle corn", "size: 2.8 ounce (pack of 6)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["kettle corn", "2.8 ounce (pack of 6)"], "assignment_id": "3URFVVM16GSBNLZB11OMB709G54ZU4", "worker_id": "A2COCSUGZV28X"}, {"asin": "B000ILMQL2", "instruction": "i'm looking for gluten free it has high protein and it has health and it is easy to use.", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: cheesy jalapeno", "size: 3 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["cheesy jalapeno"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7X0KTZC", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B000ILMQL2", "instruction": "i am looking for popcorn seasoning of popcorn salt flavor that is gluten free.", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: popcorn salt", "size: 3 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["popcorn salt"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S34GML", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B000ILMQL2", "instruction": "i want a gluten free popcorn seasoning that has a flavor of sour cream and onion.", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: sour cream & onion", "size: 2.8 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["sour cream & onion"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P783VSW", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B000ILMQL2", "instruction": "i want gluten free kernel season's kettle corn popcorn seasoning.", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: kettle-corn", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["kettle-corn"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAJ4OVW", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B000ILMQL2", "instruction": "looking for kosher certified butter popcorn salt also choose color butter", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: butter", "size: 3.75 ounce (pack of 6)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["butter"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21QLQF5", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B000ILMQL2", "instruction": "i want gluten free kernel season's cheesy caramel corn seasoning.", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: cheesy caramel corn", "size: 3.75 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["cheesy caramel corn"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCWJNGGC", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B000ILMQL2", "instruction": "i would like some butter flavored popcorn salt that comes in a four pack.", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: butter", "size: 3.75 ounce (pack of 6)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["butter", "3.75 ounce (pack of 6)"], "assignment_id": "3X08E93BH6SOX0PZ3ET8Y3TY8MU661", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B000ILMQL2", "instruction": "i want gluten free kernel season's chili lime popcorn seasoning.", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: chili lime", "size: 3.5 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["chili lime"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y6IVID", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B000ILMQL2", "instruction": "i need gluten free popcorn seasoning. make it the ranch flavored.", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: ranch", "size: 2.85 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["ranch"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8BHUXP", "worker_id": "A31PW970Z2PC5P"}, {"asin": "B000ILMQL2", "instruction": "i am looking kosher certified gluten free sour cream & onion flavor popcorn seasoning", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: sour cream & onion", "size: variety 1"], "instruction_attributes": ["kosher certified", "gluten free"], "instruction_options": ["sour cream & onion"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIUUTMJ", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B000ILMQL2", "instruction": "i need gluten free kernel season's popcorn seasoning, sour cream & onion, 2.7 ounce (pack of 6).", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: sour cream & onion", "size: 2.7 ounce (pack of 6)"], "instruction_attributes": ["gluten free", "0g trans"], "instruction_options": ["sour cream & onion", "2.7 ounce (pack of 6)"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F20BHO9", "worker_id": "A15IJ20C3R4HUO"}], "B09PHJHJXR": [{"asin": "B09PHJHJXR", "instruction": "i want a red colour loose fit tee top blouse having long sleeve xx -large", "attributes": ["loose fit", "long sleeve", "short sleeve"], "options": ["color: red", "size: xx-large"], "instruction_attributes": ["loose fit", "long sleeve"], "instruction_options": ["red", "xx-large"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKKGSGN", "worker_id": "A3N9ZYQAESNFQH"}], "B09G78QM39": [{"asin": "B09G78QM39", "instruction": "i am looking for chair provides optimal support throughout your workday with height adjustable and lumbar support of vari essential task chair in grey color.", "attributes": ["height adjustable", "lumbar support"], "options": ["color: grey", "style: essential task chair"], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": ["grey", "essential task chair"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCL45QC", "worker_id": "A1DRKZ3SCLAS4V"}, {"asin": "B09G78QM39", "instruction": "i am looking for a black task chair which is height adjustable and has a good lumbar support.", "attributes": ["height adjustable", "lumbar support"], "options": ["color: black", "style: task chair"], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": ["black", "task chair"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJGKGDT", "worker_id": "AHU9OLV0YKIIW"}], "B08VFHCPBR": [{"asin": "B08VFHCPBR", "instruction": "i want a twin size comforter for boys with a video game theme. pick a full size one.", "attributes": ["twin size", "machine washable", "easy clean", "printing technology"], "options": ["color: cay127", "size: full"], "instruction_attributes": ["twin size"], "instruction_options": ["full"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME9YN2D6", "worker_id": "A1NF6PELRKACS9"}], "B09CTBHCTM": [{"asin": "B09CTBHCTM", "instruction": "i'm looking for an office file cabinet that's easy to assemble and has a lot of shelves for storage space.", "attributes": ["easy assemble", "storage space"], "options": [""], "instruction_attributes": ["easy assemble", "storage space"], "instruction_options": [], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8NYZT7U", "worker_id": "A345TDMHP3DQ3G"}], "B09NKQYKV2": [{"asin": "B09NKQYKV2", "instruction": "i'd like to buy a 7-inch 1024600 red tablet with a long lasting quad core processor.", "attributes": ["long lasting", "quad core"], "options": ["color: red"], "instruction_attributes": ["long lasting", "quad core"], "instruction_options": ["red"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YALPNY", "worker_id": "A1HMZJ59OPLD1P"}], "B09965PF36": [{"asin": "B09965PF36", "instruction": "i'm looking for women's open toe, slim fit high heels sandals with leather sole. also, choose size 8 with white colored one.", "attributes": ["open toe", "slim fit", "leather sole", "long sleeve"], "options": ["color: white", "size: 8"], "instruction_attributes": ["open toe", "slim fit", "leather sole"], "instruction_options": ["white", "8"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGEU2WG", "worker_id": "AR0VJ5XRG16UJ"}], "B09MRFPDB3": [{"asin": "B09MRFPDB3", "instruction": "i need new clear 1.5mm table pads that are easy to clean and are 20 by 72 inches.", "attributes": ["easy clean", "heavy duty", "dining room"], "options": ["color: new clear 1.5mm", "size: 20 x 72 inch"], "instruction_attributes": ["easy clean"], "instruction_options": ["new clear 1.5mm", "20 x 72 inch"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMCLVXY", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09MRFPDB3", "instruction": "i am looking for 42x60 inch plastic table cover for dining room.", "attributes": ["easy clean", "heavy duty", "dining room"], "options": ["color: clear 1.5mm", "size: 42 x 60 inch"], "instruction_attributes": ["dining room"], "instruction_options": ["42 x 60 inch"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWU9FPD", "worker_id": "A3FG5PQHG5AH3Y"}], "B07CZ5QDDL": [{"asin": "B07CZ5QDDL", "instruction": "i need organic bay leaf that is 4 oz.", "attributes": ["certified organic", "non gmo", "gluten free"], "options": ["flavor name: fennel seed whole", "size: 4 ounce (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["4 ounce (pack of 1)"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRKM2Y3", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CZ5QDDL", "instruction": "i would like a 12 ounce pack of whole fennel seeds that are certified organic.", "attributes": ["certified organic", "non gmo", "gluten free"], "options": ["flavor name: fennel seed whole", "size: 12 ounce (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["fennel seed whole", "12 ounce (pack of 1)"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN69NG56", "worker_id": "A1WS884SI0SLO4"}], "B083QDVTFW": [{"asin": "B083QDVTFW", "instruction": "i need a wall mounted table that can be folded. also, the dimensions should be 70x50x30 cm.", "attributes": ["wall mounted", "easy clean"], "options": ["color: a", "size: 70\u00d750\u00d730cm"], "instruction_attributes": ["wall mounted"], "instruction_options": ["70\u00d750\u00d730cm"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1FG6FB", "worker_id": "A1NF6PELRKACS9"}], "B09L8H3BZL": [{"asin": "B09L8H3BZL", "instruction": "i need a nail art pen which is easy to carry and comes in 12 colors. make sure it has gold and silver color too.", "attributes": ["easy carry", "nail polish", "nail art"], "options": ["color: d"], "instruction_attributes": ["easy carry", "nail art"], "instruction_options": [], "assignment_id": "39LNWE0K456PSVA11X00BCXJKS9UI9", "worker_id": "A1NF6PELRKACS9"}], "B089CP2VD9": [{"asin": "B089CP2VD9", "instruction": "i am looking for heavy duty coaxial cables that are 35 feet long.", "attributes": ["heavy duty", "4g lte"], "options": ["size: 35ft"], "instruction_attributes": ["heavy duty"], "instruction_options": ["35ft"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDS3ICO", "worker_id": "A2ECRNQ3X5LEXD"}], "B074W2L1YN": [{"asin": "B074W2L1YN", "instruction": "i am looking fluoride free plant based natural ingredient coconut mint toothpaste size 5 oz", "attributes": ["fluoride free", "plant based", "sulfate free", "natural ingredients", "bad breath"], "options": ["color: coconut mint 5oz (3-pack)", "size: 2 ounce"], "instruction_attributes": ["fluoride free", "plant based", "natural ingredients", "bad breath"], "instruction_options": ["coconut mint 5oz (3-pack)"], "assignment_id": "3DY46V3X30SWVSP7TC9YER1YGRY55K", "worker_id": "A3N9ZYQAESNFQH"}], "B07HFLFLWS": [{"asin": "B07HFLFLWS", "instruction": "i am looking for a king size headboards & footboards.", "attributes": ["solid wood", "king size"], "options": ["color: summer mix", "size: king"], "instruction_attributes": ["king size"], "instruction_options": ["king"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L445RQQ", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07HFLFLWS", "instruction": "i want to find king size headboard, hanger style, in summer mix color for a double bedroom.", "attributes": ["solid wood", "king size"], "options": ["color: summer mix", "size: sample"], "instruction_attributes": ["king size"], "instruction_options": ["summer mix"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKXPDNR", "worker_id": "A15IJ20C3R4HUO"}], "B09QPN339F": [{"asin": "B09QPN339F", "instruction": "i am looking for open toe sandals with an ankle strap. i want it in size 10.", "attributes": ["open toe", "leather sole", "ankle strap"], "options": ["color: sandals 06 khaki", "size: 10"], "instruction_attributes": ["open toe", "ankle strap"], "instruction_options": ["10"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MG2OFC", "worker_id": "A1NF6PELRKACS9"}], "B08R5R1239": [{"asin": "B08R5R1239", "instruction": "i'd like to find 22-inch long wavy hair extensions. the color needs to be ash blonde mixed with beach blonde.", "attributes": ["double sided", "sulfate free", "hair extensions"], "options": ["color: wavy ash blonde mixed bleach blonde #18&613", "size: 22 inch (30 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["wavy ash blonde mixed bleach blonde #18&613", "22 inch (30 gram)"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ3EUWN", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08R5R1239", "instruction": "i'm looking for black hair double sided hair extensions need to buy.", "attributes": ["double sided", "sulfate free", "hair extensions"], "options": ["color: wavy off black #1b", "size: 18 inch(30 gram)"], "instruction_attributes": ["double sided", "hair extensions"], "instruction_options": ["wavy off black #1b"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCI6SJC", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08R5R1239", "instruction": "i am looking for a tape in hair extension human hair 16\u201d and it should be ash blonde -mixed bleach blonde.", "attributes": ["double sided", "sulfate free", "hair extensions"], "options": ["color: ash blonde mixed bleach blonde #18&613", "size: 16 inch(100 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["ash blonde mixed bleach blonde #18&613", "16 inch(100 gram)"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VKZ06N", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B08R5R1239", "instruction": "i am looking for 12 inch double sided hair extensions. also pick a dark brown color.", "attributes": ["double sided", "sulfate free", "hair extensions"], "options": ["color: dark brown #2", "size: 12 inch(40 gram)"], "instruction_attributes": ["double sided", "hair extensions"], "instruction_options": ["dark brown #2", "12 inch(40 gram)"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF5SLD6", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B08R5R1239", "instruction": "i am looking for dark brown human hair extensions with double sided tap.", "attributes": ["double sided", "sulfate free", "hair extensions"], "options": ["color: wavy dark brown #2", "size: 14 inch(80 gram)"], "instruction_attributes": ["double sided", "hair extensions"], "instruction_options": ["wavy dark brown #2"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTGH5DT", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B08R5R1239", "instruction": "i am looking for 22 inch seamless hair extensions.", "attributes": ["double sided", "sulfate free", "hair extensions"], "options": ["color: dark brown to light brown #2-6", "size: 22 inch(50 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["22 inch(50 gram)"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X5NPGS", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08R5R1239", "instruction": "i want to find hair extensions that are 12 inches long in a medium brown color.", "attributes": ["double sided", "sulfate free", "hair extensions"], "options": ["color: medium brown #4", "size: 12 inch(80 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["medium brown #4", "12 inch(80 gram)"], "assignment_id": "3634BBTX0Z409DDB6851PCWGACZFIE", "worker_id": "A345TDMHP3DQ3G"}], "B005IYRY16": [{"asin": "B005IYRY16", "instruction": "i would like some straight leg jeans that are ric and are in the size 46w by 29l.", "attributes": ["straight leg", "loose fit", "machine wash", "imported zipper", "cotton spandex", "button closure"], "options": ["color: ric", "size: 46w x 29l"], "instruction_attributes": ["straight leg"], "instruction_options": ["ric", "46w x 29l"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMS43W2", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PNGYWZ4": [{"asin": "B09PNGYWZ4", "instruction": "i am looking for a 4x-large regular fit henley shirts for men.", "attributes": ["fleece lined", "long sleeve", "short sleeve", "regular fit"], "options": ["color: black", "size: 4x-large"], "instruction_attributes": ["regular fit"], "instruction_options": ["4x-large"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TF23NB", "worker_id": "A9QRQL9CFJBI7"}], "B097WQNRSP": [{"asin": "B097WQNRSP", "instruction": "i am looking for long lasting , high quality spray of ca perfume impression which is alcohol free and easy to carry in purse or travel bag in handy all day long. jo malone velvet rose & oud impression preferable.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: jo malone velvet rose & oud impression"], "instruction_attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "instruction_options": ["jo malone velvet rose & oud impression"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ5YCKCP", "worker_id": "A1DRKZ3SCLAS4V"}, {"asin": "B097WQNRSP", "instruction": "i would like to buy a travel size bottle of gucci bamboo impression perfume.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: gucci bamboo impression"], "instruction_attributes": ["travel size"], "instruction_options": ["gucci bamboo impression"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OD7RTB", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B097WQNRSP", "instruction": "i want to buy a christian dior eau sauvage perfume from 2017 that's alcohol-free and travel size.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: christian dior eau sauvage parfum 2017 i..."], "instruction_attributes": ["travel size", "alcohol free"], "instruction_options": ["christian dior eau sauvage parfum 2017 i..."], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB4AZAQ3", "worker_id": "A2YNPKYEFDZ6C9"}], "B098Q9HTDW": [{"asin": "B098Q9HTDW", "instruction": "i want to find a 16.53 inch wall lamp featuring a brushed nickel finish.", "attributes": ["wall mounted", "brushed nickel", "nickel finish"], "options": ["color: 14w 3000k-nickel-d", "size: 16.53 inches"], "instruction_attributes": ["wall mounted", "brushed nickel", "nickel finish"], "instruction_options": ["14w 3000k-nickel-d", "16.53 inches"], "assignment_id": "39K0FND3ASPR95MUG7H134S6UYFMAJ", "worker_id": "A345TDMHP3DQ3G"}], "B00BM1WO7I": [{"asin": "B00BM1WO7I", "instruction": "i'm looking for a alcohol free concealers & neutralizers of cacao color.", "attributes": ["alcohol free", "fragrance free", "paraben free"], "options": ["color: cacao"], "instruction_attributes": ["alcohol free"], "instruction_options": ["cacao"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHA1ROD2", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B00BM1WO7I", "instruction": "i am looking for honey color alcohol free creamy concealer", "attributes": ["alcohol free", "fragrance free", "paraben free"], "options": ["color: honey"], "instruction_attributes": ["alcohol free"], "instruction_options": ["honey"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFAJVLY", "worker_id": "A258PTOZ3D2TQR"}], "B08P65RN3T": [{"asin": "B08P65RN3T", "instruction": "i need loafers that are a size 12 and have a rubber sole.", "attributes": ["day comfort", "memory foam", "rubber outsole", "rubber sole"], "options": ["size: 12"], "instruction_attributes": ["rubber sole"], "instruction_options": ["12"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TLV5RV3", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BMP61RP": [{"asin": "B08BMP61RP", "instruction": "find me a caffeine free and sugar free herbal tea bags 5 nos for good health", "attributes": ["caffeine free", "non dairy", "low calorie", "sugar free", "plant based", "artificial flavors"], "options": [""], "instruction_attributes": ["sugar free"], "instruction_options": [], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P3GUBT", "worker_id": "A258PTOZ3D2TQR"}], "B0038U0XRE": [{"asin": "B0038U0XRE", "instruction": "find me a sulfate free shampoo for repairing my damaged hair.", "attributes": ["certified organic", "sulfate free", "cruelty free", "damaged hair"], "options": [""], "instruction_attributes": ["sulfate free", "damaged hair"], "instruction_options": [], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZAM7AX", "worker_id": "A1NF6PELRKACS9"}], "B001NL3RVO": [{"asin": "B001NL3RVO", "instruction": "looking for a short shleev shirt sunsit colour button closure also size 2x", "attributes": ["short sleeve", "relaxed fit", "button closure"], "options": ["color: sunlit", "size: 2x"], "instruction_attributes": ["short sleeve", "button closure"], "instruction_options": ["sunlit", "2x"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWJ6FPO", "worker_id": "A3N9ZYQAESNFQH"}], "B095SZDXK8": [{"asin": "B095SZDXK8", "instruction": "i want an easy to use pillow speaker for my mp3 phone. it should be 3.5mm in size", "attributes": ["easy carry", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9D06KK", "worker_id": "A1NF6PELRKACS9"}], "B09PZ6TPFL": [{"asin": "B09PZ6TPFL", "instruction": "i am looking for a long lasting highlighters & luminizers. also choose the pattern 03#", "attributes": ["long lasting", "easy carry"], "options": ["pattern name: 03#"], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA0ES25", "worker_id": "A9QRQL9CFJBI7"}], "B097M755ZT": [{"asin": "B097M755ZT", "instruction": "help me buy an easy to use eyes mask that helps to reduce puffy dark circles. please select the red one.", "attributes": ["double sided", "easy use", "dark circles"], "options": ["color: red"], "instruction_attributes": ["easy use", "dark circles"], "instruction_options": ["red"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXKPYL0", "worker_id": "A1HMZJ59OPLD1P"}], "B09SG1DRMT": [{"asin": "B09SG1DRMT", "instruction": "i'd like to find a toothpaste dispenser that is not only non-toxic, but also high quality.", "attributes": ["non toxic", "high quality"], "options": ["color: a"], "instruction_attributes": ["non toxic", "high quality"], "instruction_options": ["a"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2JKL4W", "worker_id": "A345TDMHP3DQ3G"}], "B0892JBZM9": [{"asin": "B0892JBZM9", "instruction": "i am looking for attractive ottoman is particularly strong and durable,breathable,odourless,acid-free,corrosion-resistant and long-lasting, easy to clean,and can be used in office entrances,living rooms,basements,bedrooms,offices,university dormitories,cafes,bars,hotels and other places xmzddz faux leather storage bench.comfortable seat size 80*45*40cm.", "attributes": ["faux leather", "storage space"], "options": ["color: a", "size: 80*45*40cm"], "instruction_attributes": ["faux leather", "storage space"], "instruction_options": ["a", "80*45*40cm"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21HBQFD", "worker_id": "A1DRKZ3SCLAS4V"}], "B07SM7VKQJ": [{"asin": "B07SM7VKQJ", "instruction": "i need an easy to use pen drive with usb port. pick one that is 16 gb in capacity", "attributes": ["easy use", "usb port"], "options": ["color: glass crystal", "size: 16gb"], "instruction_attributes": ["easy use", "usb port"], "instruction_options": ["16gb"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E0WHXM", "worker_id": "A1NF6PELRKACS9"}], "B0875WDVYH": [{"asin": "B0875WDVYH", "instruction": "can i get a super soft burgundy fleece cosy throw for a couch which is 50\u201dx60\u201d in size?", "attributes": ["super soft", "exquisite workmanship", "living room"], "options": ["color: burgundy", "size: throw(50\"x60\")"], "instruction_attributes": ["super soft"], "instruction_options": ["burgundy", "throw(50\"x60\")"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PCY1INU", "worker_id": "AHU9OLV0YKIIW"}], "B09K7YPLZD": [{"asin": "B09K7YPLZD", "instruction": "i'm looking for a iphone 13 skateboard wood case with glass screen. also choose real walnut wood-13 pro for iphone 13 mini.", "attributes": ["easy use", "glass screen"], "options": ["color: real walnut wood - 13 pro", "size: iphone 13 mini"], "instruction_attributes": ["glass screen"], "instruction_options": ["real walnut wood - 13 pro", "iphone 13 mini"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCLWONSC", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B09K7YPLZD", "instruction": "i'm looking for colorful striped patterned protective cover for iphone 13.", "attributes": ["easy use", "glass screen"], "options": ["color: real skateboard wood - 13 mini", "size: for iphone 13 pro max (6.7\")"], "instruction_attributes": ["glass screen"], "instruction_options": ["real skateboard wood - 13 mini"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVRDKJD", "worker_id": "A21IUUHBSEVB56"}], "B09CRBLP56": [{"asin": "B09CRBLP56", "instruction": "i am looking for a i7-7700 3.60ghz size of intel core i5 desktops.", "attributes": ["core i5", "intel core"], "options": ["size: i7-7700 3.60ghz", "style: 16gb | 256gb nvme m.2"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["i7-7700 3.60ghz"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CH7INBP", "worker_id": "A9QRQL9CFJBI7"}], "B092VL4RC6": [{"asin": "B092VL4RC6", "instruction": "i need comfy casual loose elastic waist 2#multicolor pocketed shorts. its size should be 3x-large.", "attributes": ["elastic waist", "high waist", "gym workout"], "options": ["color: 2#multicolor", "size: 3x-large"], "instruction_attributes": ["elastic waist"], "instruction_options": [], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLAZLR8J", "worker_id": "A258PTOZ3D2TQR"}], "B09BPYBD11": [{"asin": "B09BPYBD11", "instruction": "i am looking for a professional white color hair salon rolling swivel chair", "attributes": ["heavy duty", "hair salon"], "options": ["color: white"], "instruction_attributes": ["hair salon"], "instruction_options": ["white"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMRP3WL", "worker_id": "A258PTOZ3D2TQR"}], "B01MRBAPTR": [{"asin": "B01MRBAPTR", "instruction": "i'm looking for a hyaluronic acid serum which should be certified organic and cruelty free.", "attributes": ["certified organic", "cruelty free", "hyaluronic acid"], "options": [""], "instruction_attributes": ["certified organic", "cruelty free", "hyaluronic acid"], "instruction_options": [], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRMU2YF", "worker_id": "AR0VJ5XRG16UJ"}], "B000UGUQLM": [{"asin": "B000UGUQLM", "instruction": "i am looking for one oil free foundation in the shade n10 milk chocolate.", "attributes": ["oil free", "fine lines"], "options": ["color: n10 milk chocolate", "size: 1 count"], "instruction_attributes": ["oil free"], "instruction_options": ["n10 milk chocolate", "1 count"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIF885U", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B000UGUQLM", "instruction": "i am looking for a 1 fl oz oil free super-blendable liquid foundation.", "attributes": ["oil free", "fine lines"], "options": ["color: c1 alabaster", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["1 fl oz (pack of 1)"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FA18KN", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B000UGUQLM", "instruction": "i am looking for a 1 fl oz oil free super-blendable liquid foundation.", "attributes": ["oil free", "fine lines"], "options": ["color: c1 alabaster", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["1 fl oz (pack of 1)"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FA18KN", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B000UGUQLM", "instruction": "i'm looking for super-blendable liquid foundation that is oil free and for fine lines. also, it should be 1 fl oz.", "attributes": ["oil free", "fine lines"], "options": ["color: c9 deep cool", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["oil free", "fine lines"], "instruction_options": ["1 fl oz (pack of 1)"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53Y1GK8", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B000UGUQLM", "instruction": "i want a vanilla and oil free l'oreal paris true match liquid foundation.", "attributes": ["oil free", "fine lines"], "options": ["color: w2.5 vanilla", "size: 1 count (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["w2.5 vanilla"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UX90YA", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B000UGUQLM", "instruction": "i would like a single perfect beige foundation that is oil free.", "attributes": ["oil free", "fine lines"], "options": ["color: w5.5 perfect beige", "size: 1 count"], "instruction_attributes": ["oil free"], "instruction_options": ["w5.5 perfect beige", "1 count"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YO4T8S", "worker_id": "A1WS884SI0SLO4"}], "B005X7IXTK": [{"asin": "B005X7IXTK", "instruction": "i need cruelty free deodorant that has a woody scent and is 1.6 oz.", "attributes": ["anti perspirant", "cruelty free"], "options": ["scent: woody scent", "size: 1.6 ounce (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["woody scent", "1.6 ounce (pack of 1)"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2W353S", "worker_id": "A2ECRNQ3X5LEXD"}], "B099WHJBXD": [{"asin": "B099WHJBXD", "instruction": "i need a hard drive carrying case bag that is light pink", "attributes": ["water resistant", "carrying case"], "options": ["color: light pink"], "instruction_attributes": ["carrying case"], "instruction_options": ["light pink"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHP20DQQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07V25G5GJ": [{"asin": "B07V25G5GJ", "instruction": "i'm looking for a 2.82 ounce (pack of 12) non gmo bagel chips.", "attributes": ["artificial ingredients", "non gmo", "artificial flavors"], "options": ["flavor: variety (garlic, pizza, everything)", "size: 2.82 ounce (pack of 12)"], "instruction_attributes": ["non gmo"], "instruction_options": ["2.82 ounce (pack of 12)"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50QV1GWB", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07V25G5GJ", "instruction": "i need some salty, non-gmo bagel crisps.", "attributes": ["artificial ingredients", "non gmo", "artificial flavors"], "options": ["flavor: salted", "size: 2.82 ounce (pack of 12)"], "instruction_attributes": ["non gmo"], "instruction_options": ["salted"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBPRKAOY", "worker_id": "A19317A3X87NVM"}], "B07WWX2ZWL": [{"asin": "B07WWX2ZWL", "instruction": "i would like a ready hang poster that has blue roads.", "attributes": ["hand painted", "ready hang", "living room"], "options": ["style: blue roads"], "instruction_attributes": ["ready hang"], "instruction_options": ["blue roads"], "assignment_id": "37TRT2X24116R7L1JO45INKV8O5BJ3", "worker_id": "A2ECRNQ3X5LEXD"}], "B07DFZ34RM": [{"asin": "B07DFZ34RM", "instruction": "i'm looking for a earbud earphones with srereo sound effect. also choose black colored one.", "attributes": ["hands free", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["stereo sound"], "instruction_options": ["black"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCC50EE", "worker_id": "AR0VJ5XRG16UJ"}], "B092W4L2YB": [{"asin": "B092W4L2YB", "instruction": "i want a super soft throw blanket. i am looking for strawberry cow color.", "attributes": ["super soft", "machine washable"], "options": ["color: strawberry cow", "size: 40 in x 30 in for pets"], "instruction_attributes": ["super soft"], "instruction_options": ["strawberry cow"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7Q4P5T", "worker_id": "A1NF6PELRKACS9"}], "B097J3P249": [{"asin": "B097J3P249", "instruction": "i need a height adjustable standing desk with steel frame. make it gray in color with an antique oak top.", "attributes": ["height adjustable", "heavy duty", "steel frame"], "options": ["color: grey frame | antique oak top"], "instruction_attributes": ["height adjustable", "steel frame"], "instruction_options": ["grey frame | antique oak top"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323D3SWDO", "worker_id": "A1NF6PELRKACS9"}], "B089NS8VWF": [{"asin": "B089NS8VWF", "instruction": "i am looking for the bathroom mirror with lights is with full-sealing box , protects safety use in bathroom long lasting and easy to install sunzoom 24\"x36\" black framed led lighted bathroom mirror.size preferable hilton-2436.", "attributes": ["wall mounted", "long lasting", "easy install"], "options": ["size: sz-hilton-2436"], "instruction_attributes": ["wall mounted", "long lasting", "easy install"], "instruction_options": [], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QJYOXZ", "worker_id": "A1DRKZ3SCLAS4V"}], "B07GGXP2FC": [{"asin": "B07GGXP2FC", "instruction": "i want to find a 34x72 inch round table protector that is 2 millimeters thick. it needs to be made of stainless steel.", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: round new clear 2mm", "size: 34 x 72 inches"], "instruction_attributes": ["stainless steel"], "instruction_options": ["round new clear 2mm", "34 x 72 inches"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISPXYOK", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07GGXP2FC", "instruction": "i'm looking for heavy duty table pads made of stainless steel which is easy to clean. also, choose new version clear 1.5 mm pads with size 39.4* 94.5 inches.", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: new version clear 1.5mm", "size: 39.4 x 94.5 inches"], "instruction_attributes": ["heavy duty", "easy clean", "stainless steel"], "instruction_options": ["new version clear 1.5mm", "39.4 x 94.5 inches"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQ8FSQA", "worker_id": "AR0VJ5XRG16UJ"}], "B07BC7NQ4R": [{"asin": "B07BC7NQ4R", "instruction": "i need dining room table pads that are 22 by 54 inches and are round new frosted.", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: round new frosted 1.5mm", "size: 22 x 54 inches"], "instruction_attributes": ["dining room"], "instruction_options": ["round new frosted 1.5mm", "22 x 54 inches"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH241E7", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07BC7NQ4R", "instruction": "i'm looking for a ostep decor custom table cover.", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: round new frosted 2mm", "size: 12 x 36 inches"], "instruction_attributes": ["dining room"], "instruction_options": ["round new frosted 2mm", "12 x 36 inches"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT3HYJB", "worker_id": "A1ZGOZQF2VZ0X9"}, {"asin": "B07BC7NQ4R", "instruction": "i would like a 44 by 108 inch round new clear table pad for my dining room.", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: round new clear 1.5mm", "size: 44 x 108 inches"], "instruction_attributes": ["dining room"], "instruction_options": ["round new clear 1.5mm", "44 x 108 inches"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7LH5NB", "worker_id": "A1WS884SI0SLO4"}], "B093JXQPCM": [{"asin": "B093JXQPCM", "instruction": "i am looking for 42 | 44 | 45mm(s | m) smartwatch bands, compatible with apple.", "attributes": ["compatible apple", "easy install"], "options": ["color: fog | black | white | stone", "size: 42 | 44 | 45mm(s | m)"], "instruction_attributes": ["compatible apple"], "instruction_options": ["42 | 44 | 45mm(s | m)"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZAWCC8O", "worker_id": "A9QRQL9CFJBI7"}], "B00T6HMVDW": [{"asin": "B00T6HMVDW", "instruction": "i need a conditioner for dry hair that comes in 1.8 fl oz and will give me ultra volume.", "attributes": ["cruelty free", "paraben free", "certified organic", "sulfate free", "dry hair"], "options": ["color: ultra-volume (papaya + tangerine butter)", "size: 1.8 fl oz (pack of 1)", "style: hair oil serum - 1 pack"], "instruction_attributes": ["dry hair"], "instruction_options": ["ultra-volume (papaya + tangerine butter)", "1.8 fl oz (pack of 1)"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U870R5T", "worker_id": "A2ECRNQ3X5LEXD"}], "B09M7C4726": [{"asin": "B09M7C4726", "instruction": "i would like a dental pick that is yellow for bad breath.", "attributes": ["teeth whitening", "stainless steel", "bad breath"], "options": ["color: yellow"], "instruction_attributes": ["bad breath"], "instruction_options": ["yellow"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIE0EF2", "worker_id": "A2ECRNQ3X5LEXD"}], "B08XXG9N1Q": [{"asin": "B08XXG9N1Q", "instruction": "i am looking a charging adpter fot fast charging jetpack 4g lte mobile hotspot", "attributes": ["fast charging", "4g lte"], "options": [""], "instruction_attributes": ["fast charging", "4g lte"], "instruction_options": [], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DL74K8", "worker_id": "A3N9ZYQAESNFQH"}], "B07X6JL45J": [{"asin": "B07X6JL45J", "instruction": "i am looking for a power amplifier which is easy to use.", "attributes": ["power amplifier", "easy use"], "options": [""], "instruction_attributes": ["power amplifier", "easy use"], "instruction_options": [], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0O0XPV", "worker_id": "A9QRQL9CFJBI7"}], "B078JKD43Y": [{"asin": "B078JKD43Y", "instruction": "a dining room table cover table protecter size 42 *90 inches can be clean easily", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: round new frosted 1.5mm", "size: 42 x 90 inches"], "instruction_attributes": ["easy clean", "dining room"], "instruction_options": ["42 x 90 inches"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB372QNN", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B078JKD43Y", "instruction": "i am looking for a crystal clear 2mm table cover protector size 32x48 \u201c and it should easy to clean.", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: crystal clear 2mm", "size: 32 x 48 inches"], "instruction_attributes": ["easy clean"], "instruction_options": ["crystal clear 2mm", "32 x 48 inches"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME945D2B", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B078JKD43Y", "instruction": "i am looking for 48 x 60 inches size desk cover protector for my dining room.", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: clear 1.5mm", "size: 48 x 60 inches"], "instruction_attributes": ["dining room"], "instruction_options": ["48 x 60 inches"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVP0LX8", "worker_id": "A1Q8PPQQCWGY0D"}], "B09J8F5HSS": [{"asin": "B09J8F5HSS", "instruction": "i need coasters that are easy to clean and come in a set of six with cup holders.", "attributes": ["easy clean", "living room"], "options": ["color: pugcbu2862", "size: set of 6 with cup holder"], "instruction_attributes": ["easy clean"], "instruction_options": ["set of 6 with cup holder"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOQBO7W", "worker_id": "A2ECRNQ3X5LEXD"}], "B07D5MV2X3": [{"asin": "B07D5MV2X3", "instruction": "i'm looking for a retractable stereo sound in -ear headphone which is compatible for apple iphone.", "attributes": ["compatible apple", "stereo sound"], "options": [""], "instruction_attributes": ["compatible apple", "stereo sound"], "instruction_options": [], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWIC52Q", "worker_id": "AR0VJ5XRG16UJ"}], "B09584LKHV": [{"asin": "B09584LKHV", "instruction": "get me a keto friendly and sugar free cereal that is also plant-based. i want the cinnamon toast and dark chocolate flavor.", "attributes": ["keto friendly", "sugar free", "grain free", "low carb", "plant based", "artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: cinnamon toast & dark chocolate", "size: 9 ounce (pack of 4)"], "instruction_attributes": ["keto friendly", "sugar free", "plant based"], "instruction_options": ["cinnamon toast & dark chocolate"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV3P8VG", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09584LKHV", "instruction": "i need 9 ounce catalina crunch cinnamon toast & maple waffle cereal that is keto friendly.", "attributes": ["keto friendly", "sugar free", "grain free", "low carb", "plant based", "artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: cinnamon toast & maple waffle", "size: 9 ounce (pack of 1)"], "instruction_attributes": ["keto friendly"], "instruction_options": ["cinnamon toast & maple waffle", "9 ounce (pack of 1)"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EAOB1O", "worker_id": "A2RBF3IIJP15IH"}], "B08KXZSVKS": [{"asin": "B08KXZSVKS", "instruction": "i need soaps for dry skin that are made with argan oil.", "attributes": ["oil free", "cruelty free", "dead skin", "dry skin", "sensitive skin"], "options": ["scent: argan oil"], "instruction_attributes": ["dry skin"], "instruction_options": ["argan oil"], "assignment_id": "354P56DE9VDCOY11T1135MPMLFD7SB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09N6XZN52": [{"asin": "B09N6XZN52", "instruction": "i am looking for 1x cotton spandex yoga pants.", "attributes": ["machine wash", "cotton spandex"], "options": ["color: ash rose", "size: 1x"], "instruction_attributes": ["cotton spandex"], "instruction_options": [], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH373ZSE2", "worker_id": "A9QRQL9CFJBI7"}], "B07QMMYQ3N": [{"asin": "B07QMMYQ3N", "instruction": "i am looking for a easy install 4g band 5/13 signall booster", "attributes": ["easy install", "4g lte"], "options": ["color: 4g lte band 5 | 13"], "instruction_attributes": ["easy install", "4g lte"], "instruction_options": ["4g lte band 5 | 13"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YWYXT42", "worker_id": "A3N9ZYQAESNFQH"}], "B000P22TIY": [{"asin": "B000P22TIY", "instruction": "i am looking for a long lasting 3.38 fl oz (pack of 1) eau de toilette for men.", "attributes": ["design house", "long lasting"], "options": ["size: 3.38 fl oz (pack of 1)", "style: voyage"], "instruction_attributes": ["long lasting"], "instruction_options": ["3.38 fl oz (pack of 1)"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRBUSY5F", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B000P22TIY", "instruction": "i would like a perfume that is long lasting and comes in a pack of two.", "attributes": ["design house", "long lasting"], "options": ["size: 3.4 fl oz (pack of 2)", "style: 3.4 fl oz voyage + 1.6 oz blue sail"], "instruction_attributes": ["long lasting"], "instruction_options": ["3.4 fl oz (pack of 2)"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT06UVNUG", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B000P22TIY", "instruction": "i want to buy a voyage-style, 3.38 fl oz men's perfume that is long lasting.", "attributes": ["design house", "long lasting"], "options": ["size: 3.38 fl oz (pack of 1)", "style: voyage"], "instruction_attributes": ["long lasting"], "instruction_options": ["3.38 fl oz (pack of 1)", "voyage"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IC2BCB", "worker_id": "A114NK7T5673GK"}, {"asin": "B000P22TIY", "instruction": "i would like a long lasting 3.38 fluid out voyage perfume.", "attributes": ["design house", "long lasting"], "options": ["size: 3.38 fl oz (pack of 1)", "style: 3.4 fl oz voyage + 3.4 oz classic"], "instruction_attributes": ["long lasting"], "instruction_options": ["3.38 fl oz (pack of 1)", "3.4 fl oz voyage + 3.4 oz classic"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQF1SQA", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B000P22TIY", "instruction": "i would like a 1.6 fluid ounce bottle of voyage perfume that is long lasting.", "attributes": ["design house", "long lasting"], "options": ["size: 1.6 fl oz (pack of 1)", "style: voyage"], "instruction_attributes": ["long lasting"], "instruction_options": ["1.6 fl oz (pack of 1)", "voyage"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCR2MB2", "worker_id": "A1WS884SI0SLO4"}], "B09PVJ7ZZY": [{"asin": "B09PVJ7ZZY", "instruction": "i am looking for a slim fit men's sweatpants. also, choose the y1-black", "attributes": ["loose fit", "straight leg", "slim fit", "winter warm", "quality polyester", "gym workout"], "options": ["color: y1-black", "size: xx-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["y1-black"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHUXQHG", "worker_id": "A9QRQL9CFJBI7"}], "B09NLF9XPN": [{"asin": "B09NLF9XPN", "instruction": "find some kosher certified, gluten free gummy candy. choose the blue raspberry color.", "attributes": ["kosher certified", "individually wrapped", "old fashioned", "gluten free", "valentine day", "birthday party"], "options": ["color: blue raspberry", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["kosher certified", "gluten free"], "instruction_options": ["blue raspberry"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJMXJZHK", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09NLF9XPN", "instruction": "i need lemon flavored gummi candies that are gluten free. also, pick a kosher certified one.", "attributes": ["kosher certified", "individually wrapped", "old fashioned", "gluten free", "valentine day", "birthday party"], "options": ["color: lemon", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["kosher certified", "gluten free"], "instruction_options": ["lemon"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9JTK63", "worker_id": "A1NF6PELRKACS9"}], "B094D32937": [{"asin": "B094D32937", "instruction": "i am looking for pink elephant cupcake picks for birthday cake decorations.", "attributes": ["birthday cake", "cupcake picks", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["birthday cake", "cupcake picks"], "instruction_options": ["pink"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOCC0FM", "worker_id": "AHU9OLV0YKIIW"}], "B009G74E1O": [{"asin": "B009G74E1O", "instruction": "i need 16 ounce gluten free bottle lorann cream cheese bakery emulsion over the butter-vanilla variety.", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: variety", "size: 16 ounce"], "instruction_attributes": ["gluten free"], "instruction_options": ["variety", "16 ounce"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHTCB73", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B009G74E1O", "instruction": "i need 1 pound of pumpkin spice cream cheese bakery emulsion that is gluten free.", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: pumpkin spice", "size: 1 pound (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["pumpkin spice", "1 pound (pack of 1)"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L5UERM", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B009G74E1O", "instruction": "i am looking for a gluten free buttery sweet bakery emulsion.", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: buttery sweet dough", "size: 4 fl oz, 3 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["buttery sweet dough"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X2H3YI", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B009G74E1O", "instruction": "i am looking for a 4 fluid ounce cherry cream cheeset emulsion that is shelf stable and in a container that does not contain bpa.", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: cherry", "size: 4 fl oz.."], "instruction_attributes": ["bpa free", "shelf stable"], "instruction_options": ["cherry", "4 fl oz.."], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40HWFYR", "worker_id": "A1E235KE3CSO7H"}, {"asin": "B009G74E1O", "instruction": "i need 1 pound of pumpkin spice cream cheese bakery emulsion that is gluten free.", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: pumpkin spice", "size: 1 pound (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["pumpkin spice", "1 pound (pack of 1)"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L5UERM", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B009G74E1O", "instruction": "looking for cream cheeset bakery emulsion that is gluten free and also choose size 4 fl oz", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: rum", "size: 4 fl oz."], "instruction_attributes": ["gluten free"], "instruction_options": ["4 fl oz."], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79SIH19", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B009G74E1O", "instruction": "i am looking for imitation vanilla that is shelf stable and is 4 fl oz", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: princess cake and cookie", "size: 4 fl oz\u2026"], "instruction_attributes": ["shelf stable"], "instruction_options": ["4 fl oz\u2026"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PCOBU0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B009G74E1O", "instruction": "i am looking for bpa free, gluten free lorann cream cheeset with size : 1gallon", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: pumpkin spice", "size: 1 gallon"], "instruction_attributes": ["bpa free", "gluten free"], "instruction_options": ["1 gallon"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIE8RB2", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B009G74E1O", "instruction": "i want a bpa free and almond lorann cream cheeset bakery emulsion.", "attributes": ["bpa free", "shelf stable", "gluten free"], "options": ["flavor name: almond", "size: 4 ounce, 6 pack"], "instruction_attributes": ["bpa free"], "instruction_options": ["almond"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VIN60D", "worker_id": "A2RBF3IIJP15IH"}], "B07K6315FW": [{"asin": "B07K6315FW", "instruction": "i want to find 25 grams of iridescent purple edible glitter. it needs to be dairy free.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: purple iridescent", "size: 25g"], "instruction_attributes": ["dairy free"], "instruction_options": ["purple iridescent", "25g"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN20IY7P", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07K6315FW", "instruction": "i'd like to find 25 grams of edible maroon glitter that is kosher and nut-free.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: maroon red", "size: 25g"], "instruction_attributes": ["kosher certified", "nut free"], "instruction_options": ["maroon red", "25g"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA7TZHMJ", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07K6315FW", "instruction": "i need some bronze colored edible glitter for cocktails. it should be kosher certified and nut free.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: bronze", "size: 45g shaker"], "instruction_attributes": ["kosher certified", "nut free"], "instruction_options": ["bronze"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB40GYXH", "worker_id": "A1NF6PELRKACS9"}], "B07MXZT9NL": [{"asin": "B07MXZT9NL", "instruction": "i am looking for an 8 by 12 background that is for digital photography.", "attributes": ["easy carry", "digital photography"], "options": ["size: 8x12ft(250x360cm)"], "instruction_attributes": ["digital photography"], "instruction_options": ["8x12ft(250x360cm)"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRPCJXZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MKJVX9D": [{"asin": "B09MKJVX9D", "instruction": "i want a long sleeved tunic top in small size. pick a hot pink one.", "attributes": ["long sleeve", "fashion design", "short sleeve"], "options": ["color: 09-hot pink", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["09-hot pink", "small"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS3540132UM2", "worker_id": "A1NF6PELRKACS9"}], "B09B6LMVR7": [{"asin": "B09B6LMVR7", "instruction": "i am looking for super comfortable for walking dogs, road running, daily wear, casual, gym, training, light trekking, theme park travel, urban recreation, jogging in the road and path, basketball, cycling, workout, camping and other outdoor multisports or lite indoor exercise at home women's road running shoes in a4-khaki color. size 8.5 wide preferable.", "attributes": ["winter warm", "slip resistant", "leather sole"], "options": ["color: a4-khaki", "size: 8.5 wide"], "instruction_attributes": ["slip resistant", "leather sole"], "instruction_options": ["a4-khaki", "8.5 wide"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9G9TVP", "worker_id": "A1DRKZ3SCLAS4V"}, {"asin": "B09B6LMVR7", "instruction": "i am looking for slip resistant women running shoes.please choose black one.", "attributes": ["winter warm", "slip resistant", "leather sole"], "options": ["color: a1-black", "size: 6.5 wide"], "instruction_attributes": ["slip resistant"], "instruction_options": ["a1-black"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEKN86Y", "worker_id": "A3FG5PQHG5AH3Y"}], "B01N128GRV": [{"asin": "B01N128GRV", "instruction": "i'm looking for ac power cord cable socket plug for sony cfd series with output protection and blu ray", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["output protection", "blu ray"], "instruction_options": [], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPATV6F", "worker_id": "AR0VJ5XRG16UJ"}], "B0812B8WXH": [{"asin": "B0812B8WXH", "instruction": "i'm looking for jar candles with soy way that is long lasting. also, choose illinois colored one.", "attributes": ["long lasting", "soy wax", "living room"], "options": ["color: illinois"], "instruction_attributes": ["long lasting", "soy wax", "living room"], "instruction_options": ["illinois"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8QPPZF", "worker_id": "AR0VJ5XRG16UJ"}], "B09P89Z11V": [{"asin": "B09P89Z11V", "instruction": "find me a high performance cooling fan with usb port. pick me 1 pack.", "attributes": ["high performance", "usb port"], "options": ["size: cooling fan-40mm*10mm", "style: 1 pack"], "instruction_attributes": ["high performance", "usb port"], "instruction_options": ["1 pack"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20GIZ0J", "worker_id": "A1NF6PELRKACS9"}], "B087Q9SSPR": [{"asin": "B087Q9SSPR", "instruction": "i'm looking for 2 pcs detangling hair brush for natural hair. also it's color should be in green-black", "attributes": ["dry hair", "natural hair"], "options": ["color: green-black", "size: 2 pcs"], "instruction_attributes": ["natural hair"], "instruction_options": ["green-black", "2 pcs"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG13DU9J", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B087Q9SSPR", "instruction": "i want a 3 pack of beige brushes for natural hair.", "attributes": ["dry hair", "natural hair"], "options": ["color: beige-beige", "size: 3 count (pack of 1)"], "instruction_attributes": ["natural hair"], "instruction_options": ["beige-beige", "3 count (pack of 1)"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZHYKLX", "worker_id": "A1WS884SI0SLO4"}], "B08FZYYTFZ": [{"asin": "B08FZYYTFZ", "instruction": "i am looking for basic solid army green t shirt top,super stretchy and silky fabric,soft and comfortable for spring,winter wear yobecho womens long sleeve scoop neck tops blouse in xx large size.", "attributes": ["cotton spandex", "button closure", "long sleeve", "everyday wear"], "options": ["color: army green", "size: xx-large"], "instruction_attributes": ["long sleeve", "everyday wear"], "instruction_options": ["army green", "xx-large"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3FAZLB", "worker_id": "A1DRKZ3SCLAS4V"}], "B08DJ7RZF3": [{"asin": "B08DJ7RZF3", "instruction": "i am looking for smell good,feel good,pay less,long last, travel size ca perfume impression of euphoria for women fragrance body oils alcohol-free. good to go, bottles fit in handbag or purse. convenient for travel. donna karan cashmere mist impression preferable.", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: donna karan cashmere mist impression"], "instruction_attributes": ["travel size", "alcohol free", "long lasting"], "instruction_options": ["donna karan cashmere mist impression"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MFKOFS", "worker_id": "A1DRKZ3SCLAS4V"}, {"asin": "B08DJ7RZF3", "instruction": "looking for sandalwood dark intense perfume for women that is alchol free", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: sandalwood dark intense perfume"], "instruction_attributes": ["alcohol free"], "instruction_options": ["sandalwood dark intense perfume"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1GYRXB", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B08DJ7RZF3", "instruction": "i would like some viktor and rolf perfume that is travel sized.", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: viktor & rolf spicebomb extreme impressi..."], "instruction_attributes": ["travel size"], "instruction_options": ["viktor & rolf spicebomb extreme impressi..."], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUL5R3J", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08DJ7RZF3", "instruction": "i am interested in perfume oil that is cedarwood scented and travel sized", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: cedarwood perfume oil"], "instruction_attributes": ["travel size"], "instruction_options": ["cedarwood perfume oil"], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWR9525", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PY8LYR6": [{"asin": "B09PY8LYR6", "instruction": "i am looking for a long sleeve trench coat with pockets. pick a green one.", "attributes": ["faux fur", "long sleeve"], "options": ["color: zb1_green", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["zb1_green"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBM0GI5", "worker_id": "A1NF6PELRKACS9"}], "B06ZXSMRQY": [{"asin": "B06ZXSMRQY", "instruction": "i need a salmon slim fitting dress shirt that is in a size small.", "attributes": ["slim fit", "hand wash", "nylon spandex", "short sleeve", "tumble dry"], "options": ["color: kmtsts0132-salmon2", "size: small"], "instruction_attributes": ["slim fit"], "instruction_options": ["kmtsts0132-salmon2", "small"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWQR1CE", "worker_id": "A2ECRNQ3X5LEXD"}], "B074SQKP3T": [{"asin": "B074SQKP3T", "instruction": "i'm looking for a original non gmo margarita with natural ingredients.", "attributes": ["non gmo", "gluten free", "high fructose", "natural ingredients", "artificial flavors"], "options": ["flavor: original"], "instruction_attributes": ["non gmo", "natural ingredients"], "instruction_options": ["original"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3KC9Z5", "worker_id": "A9QRQL9CFJBI7"}], "B09C91R8Q8": [{"asin": "B09C91R8Q8", "instruction": "i am looking for 8 size flats with leather sole for women.", "attributes": ["leather sole", "high heel"], "options": ["color: khaki", "size: 8"], "instruction_attributes": ["leather sole"], "instruction_options": ["8"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9MQ87Y", "worker_id": "A9QRQL9CFJBI7"}], "B09NPW7ZDF": [{"asin": "B09NPW7ZDF", "instruction": "i am looking for some valentine's day cupcake toppers.", "attributes": ["valentine day", "cupcake picks"], "options": [""], "instruction_attributes": ["valentine day"], "instruction_options": [], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTQU7MY", "worker_id": "A2ECRNQ3X5LEXD"}], "B08723759H": [{"asin": "B08723759H", "instruction": "i am looking high resolution high performance oneplus 8 cell phone having 256 gb storage capacity", "attributes": ["hands free", "fast charging", "high resolution", "high performance"], "options": ["color: interstellar glow", "size: 256gb", "style: oneplus 8"], "instruction_attributes": ["high resolution", "high performance"], "instruction_options": ["256gb", "oneplus 8"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMIT6B0", "worker_id": "A3N9ZYQAESNFQH"}], "B09LC5FR69": [{"asin": "B09LC5FR69", "instruction": "i want a swivel desk chair with lumbar support and backrest. pick something in blue.", "attributes": ["high density", "lumbar support", "living room"], "options": ["color: blue-936"], "instruction_attributes": ["lumbar support"], "instruction_options": ["blue-936"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHP4HQDO", "worker_id": "A1NF6PELRKACS9"}], "B09PG5W2RL": [{"asin": "B09PG5W2RL", "instruction": "i am looking for a dark gray polo that is long sleeved and in a medium size.", "attributes": ["slim fit", "loose fit", "short sleeve", "polyester cotton", "long sleeve"], "options": ["color: dark gray", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["dark gray", "medium"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35HW98UK", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JJN66YM": [{"asin": "B09JJN66YM", "instruction": "i am looking a green tea shampoo have anti hair loss and for good hair growth moisturizing -for normal dry scalp", "attributes": ["oil free", "green tea", "hair growth", "hair loss", "hair salon", "sensitive skin"], "options": ["style: moisturizing(renewal) - for normal | dry scalp"], "instruction_attributes": ["green tea", "hair growth", "hair loss"], "instruction_options": ["moisturizing(renewal) - for normal | dry scalp"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MCVQYZG", "worker_id": "A3N9ZYQAESNFQH"}], "B08R8TFHDG": [{"asin": "B08R8TFHDG", "instruction": "i need a small size t-shirt for my wife. i would prefer classic fit with olive color", "attributes": ["needle sleeve", "classic fit", "star wars"], "options": ["color: olive", "fit type: women", "size: small"], "instruction_attributes": ["classic fit"], "instruction_options": ["olive", "women", "small"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW028SK", "worker_id": "A2COCSUGZV28X"}, {"asin": "B08R8TFHDG", "instruction": "i'm looking for a classic fit women t-shirt with needle sleeve and star wars design. also, choose medium size white colored one.", "attributes": ["needle sleeve", "classic fit", "star wars"], "options": ["color: white", "fit type: women", "size: medium"], "instruction_attributes": ["needle sleeve", "classic fit", "star wars"], "instruction_options": ["white", "women", "medium"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEJTQ83", "worker_id": "AR0VJ5XRG16UJ"}], "B01676307A": [{"asin": "B01676307A", "instruction": "i see the 15 ounce size of chocolate cover", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: scooby-doo licensed", "size: 15 ounce (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["15 ounce (pack of 1)"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB1W2ULM", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B01676307A", "instruction": "i would like a 8 ounce mom heart hand made sandwich.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: mom heart", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["hand crafted"], "instruction_options": ["mom heart", "8 ounce (pack of 1)"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUT8WF1Q", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01676307A", "instruction": "i would like a 8 ounce mom heart hand made sandwich.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: mom heart", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["hand crafted"], "instruction_options": ["mom heart", "8 ounce (pack of 1)"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUT8WF1Q", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01676307A", "instruction": "i am looking for hand crafted disney frozen licensed flavor cookies.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: disney frozen licensed", "size: 15 ounce (pack of 1)"], "instruction_attributes": ["hand crafted"], "instruction_options": ["disney frozen licensed"], "assignment_id": "34PGFRQONZLYFAJCEF0151XGIXHJW1", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B01676307A", "instruction": "i am looking for wedding bride and groom flavor hand crafted cookies.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: wedding bride and groom", "size: 15 ounce (pack of 1)"], "instruction_attributes": ["hand crafted"], "instruction_options": ["wedding bride and groom"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKM81TY", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B01676307A", "instruction": "i'm looking for philadelphia candies covered oreo cookies.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: happy birthday gift | dark chocolate", "size: 1.87 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["happy birthday gift | dark chocolate"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602W795N", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B01676307A", "instruction": "i am looking for an 8 ounce pack of chocolate covered cookies.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: mom heart", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XDXFR7", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01676307A", "instruction": "i'm locking for candies milk chocolate covered oreo cookies.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: father's day gift", "size: 15 ounce (pack of 15)"], "instruction_attributes": ["chocolate covered"], "instruction_options": [], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83O1JIG", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B01676307A", "instruction": "looking for chocolate covered oreo cookies that pack size 8 ounce (pack of 8)", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: mom heart", "size: 8 ounce (pack of 8)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["8 ounce (pack of 8)"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QVAOXZ", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B01676307A", "instruction": "i would like a 15 ounce package of blue stork it's a boy gift chocolate covered cookies.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: blue stork it's a boy gift", "size: 15 ounce (pack of 15)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["blue stork it's a boy gift", "15 ounce (pack of 15)"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8KPZNC", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01676307A", "instruction": "i need an 8 ounce pack of chocolate covered oreo cookies candies for a birthday gift.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: easter cross with flower", "size: 8 ounce (pack of 8)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["8 ounce (pack of 8)"], "assignment_id": "354P56DE9VDCOY11T1135MPMLMKS7H", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B01676307A", "instruction": "i want a 15 ounce pack of chocolate oreo cookies.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: pink stork it's a girl gift", "size: 15 ounce (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["15 ounce (pack of 1)"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N447TP", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B01676307A", "instruction": "i want some chocolate covered gift cookies for a birthday gift. pick the 15 ounce pack.", "attributes": ["hand crafted", "chocolate covered"], "options": ["flavor name: st. patrick's day | dark chocolate", "size: 15 ounce (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["15 ounce (pack of 1)"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1LVF6B", "worker_id": "A1NF6PELRKACS9"}], "B09QQQGXW3": [{"asin": "B09QQQGXW3", "instruction": "i am looking for a one piece tummy control swimsuit that is small in size and the fabric should be cotton spandex.", "attributes": ["low rise", "loose fit", "tummy control", "cotton spandex", "tumble dry"], "options": ["color: summer bathing suits-a218-yellow", "size: small"], "instruction_attributes": ["tummy control", "cotton spandex"], "instruction_options": ["small"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQN3C016", "worker_id": "AHU9OLV0YKIIW"}], "B09BQ3QWXV": [{"asin": "B09BQ3QWXV", "instruction": "i need long sleeved pullover shirt for teenage girls. pick something in small size.", "attributes": ["wash cold", "hand wash", "long sleeve", "polyester spandex", "teen girls"], "options": ["color: x01-white", "size: small"], "instruction_attributes": ["long sleeve", "teen girls"], "instruction_options": ["small"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61M5ZWV", "worker_id": "A1NF6PELRKACS9"}], "B000ILMQF8": [{"asin": "B000ILMQF8", "instruction": "i need some low sodium popcorn salt that is cheesy caramel corn in a pack of six.", "attributes": ["low sodium", "gluten free"], "options": ["flavor: cheesy caramel corn", "size: 2.6 ounce (pack of 6)"], "instruction_attributes": ["low sodium"], "instruction_options": ["cheesy caramel corn", "2.6 ounce (pack of 6)"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUPCJQV", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B000ILMQF8", "instruction": "can you find the gluten free caramel milk chocolate seasoning that comes in a pack of 6?", "attributes": ["low sodium", "gluten free"], "options": ["flavor: milk chocolate caramel", "size: 3 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["milk chocolate caramel", "3 ounce (pack of 6)"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQCD13D", "worker_id": "A36LOA6VLJU157"}, {"asin": "B000ILMQF8", "instruction": "i want low sodium popcorn salt that is frosted sugar cookie and comes in a pack of six.", "attributes": ["low sodium", "gluten free"], "options": ["flavor: frosted sugar cookie", "size: 3 ounce (pack of 6)"], "instruction_attributes": ["low sodium"], "instruction_options": ["frosted sugar cookie", "3 ounce (pack of 6)"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2XHG6R", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B000ILMQF8", "instruction": "i'm looking for popcorn seasoning that is gluten-free, low-sodium, cheddar-flavored.", "attributes": ["low sodium", "gluten free"], "options": ["flavor: cheddar-cheese", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["low sodium", "gluten free"], "instruction_options": ["cheddar-cheese"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUH0DZN", "worker_id": "ARJDD0Z3R65BD"}, {"asin": "B000ILMQF8", "instruction": "i would like a 2.7 ounce bottle of caramel hot chocolate popcorn salt that is low sodium.", "attributes": ["low sodium", "gluten free"], "options": ["flavor: caramel hot chocolate", "size: 2.7 ounce (pack of 6)"], "instruction_attributes": ["low sodium"], "instruction_options": ["caramel hot chocolate", "2.7 ounce (pack of 6)"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7K0V7EP", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B000ILMQF8", "instruction": "i am looking for 2.85 ounce gluten free bacon cheddar flavored popcorn seasoning", "attributes": ["low sodium", "gluten free"], "options": ["flavor: bacon cheddar", "size: 2.85 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["2.85 ounce (pack of 1)"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EAA8S2J", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B000ILMQF8", "instruction": "i am interested in some low sodium popcorn salt that is cheddar flavored and 2.6 oz.", "attributes": ["low sodium", "gluten free"], "options": ["flavor: cheddar-cheese", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["cheddar-cheese", "2.6 ounce (pack of 1)"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWY3R1X", "worker_id": "A2ECRNQ3X5LEXD"}], "B08R7K5SPG": [{"asin": "B08R7K5SPG", "instruction": "i would like a soft cotton spandex cargo pants with zipper pockets. pick the one with 28\" inseam.", "attributes": ["cotton spandex", "drawstring closure", "tummy control", "high waist"], "options": ["color: fleece lined, black", "fit type: 28\" inseam (petite)", "size: medium tall"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["28\" inseam (petite)"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZCSO8Y", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B08R7K5SPG", "instruction": "i need xx-large tall , charcoal color lightweight women's cotton spandex soft jogger pants with zipper", "attributes": ["cotton spandex", "drawstring closure", "tummy control", "high waist"], "options": ["color: charcoal", "fit type: 36\" inseam (extra tall)", "size: xx-large tall"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["charcoal", "xx-large tall"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVP8Q0F", "worker_id": "A258PTOZ3D2TQR"}], "B089NSW5CS": [{"asin": "B089NSW5CS", "instruction": "i want ready to eat snacks with quality ingredients. pick one with salty cheese flavor.", "attributes": ["ready eat", "quality ingredients"], "options": ["flavor name: salty cheese flavor"], "instruction_attributes": ["ready eat"], "instruction_options": ["salty cheese flavor"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQBFRJ5", "worker_id": "A1NF6PELRKACS9"}], "B089LJDFNG": [{"asin": "B089LJDFNG", "instruction": "i want to find a high-definition spy camera that can detect motion.", "attributes": ["high performance", "high definition", "motion detection"], "options": [""], "instruction_attributes": ["high definition", "motion detection"], "instruction_options": [], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDGVRHE", "worker_id": "A345TDMHP3DQ3G"}], "B06X99QGND": [{"asin": "B06X99QGND", "instruction": "i want to find a fleece-lined women's jacket that features the san francisco 49ers. the color must be colt gray and i wear a size 3x.", "attributes": ["fleece lined", "polyester spandex", "imported zipper"], "options": ["color: indianapolis colts, gray", "size: 3x", "team name: san francisco 49ers"], "instruction_attributes": ["fleece lined"], "instruction_options": ["indianapolis colts, gray", "3x", "san francisco 49ers"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJKDBXG", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B06X99QGND", "instruction": "i would like a gray 2xl philadelphia eagles fleece lined jacket.", "attributes": ["fleece lined", "polyester spandex", "imported zipper"], "options": ["color: kansas city chiefs, gray", "size: xx-large", "team name: philadelphia eagles"], "instruction_attributes": ["fleece lined"], "instruction_options": ["kansas city chiefs, gray", "xx-large", "philadelphia eagles"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQEB6SD", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B06X99QGND", "instruction": "i am looking for a women's medium size gray fleece lined jacket.", "attributes": ["fleece lined", "polyester spandex", "imported zipper"], "options": ["color: gray", "size: medium", "team name: new england patriots"], "instruction_attributes": ["fleece lined"], "instruction_options": ["gray", "medium"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIR785H", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B06X99QGND", "instruction": "i need a baltimore ravens fleece lined jacket with imported zippers.", "attributes": ["fleece lined", "polyester spandex", "imported zipper"], "options": ["color: new orleans saints, black", "size: 4x", "team name: baltimore ravens"], "instruction_attributes": ["fleece lined", "imported zipper"], "instruction_options": ["baltimore ravens"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDMBK5C", "worker_id": "A1NF6PELRKACS9"}], "B000HDOOL6": [{"asin": "B000HDOOL6", "instruction": "i want a caffeine and sugar free chai latte powdered mix. it should be of vanilla flavor.", "attributes": ["caffeine free", "sugar free"], "options": ["flavor name: vanilla", "size: 10 ounce (pack of 1)"], "instruction_attributes": ["caffeine free", "sugar free"], "instruction_options": ["vanilla"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPRYJP8", "worker_id": "A1NF6PELRKACS9"}], "B082SVLKCT": [{"asin": "B082SVLKCT", "instruction": "i want a 16 inch case cover with touch bar. pick a dark blue leather one.", "attributes": ["easy carry", "case cover"], "options": ["color: dark blue leather", "size: macbook pro 16 m1"], "instruction_attributes": ["case cover"], "instruction_options": ["dark blue leather"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJI5O9I", "worker_id": "A1NF6PELRKACS9"}], "B09P7Z3LCR": [{"asin": "B09P7Z3LCR", "instruction": "i am looking for a fast charging docking stations.", "attributes": ["fast charging", "high resolution", "plug play"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQ9GRJ2", "worker_id": "A9QRQL9CFJBI7"}], "B07XJCZ817": [{"asin": "B07XJCZ817", "instruction": "i want a pair of faux fur slippers. pick a size between 10.5 and 11.", "attributes": ["faux fur", "ethylene vinyl", "vinyl acetate"], "options": ["color: faux raccoon fur original color", "size: 10.5-11"], "instruction_attributes": ["faux fur"], "instruction_options": ["faux raccoon fur original color"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35HOUGS", "worker_id": "A1NF6PELRKACS9"}], "B09B7D8W1J": [{"asin": "B09B7D8W1J", "instruction": "i need a slim fit active shirt that is brown and that is large.", "attributes": ["daily casual", "quick drying", "slim fit", "long sleeve", "short sleeve", "relaxed fit"], "options": ["color: 12-brown", "size: large"], "instruction_attributes": ["slim fit"], "instruction_options": ["12-brown", "large"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQ8AEKT", "worker_id": "A2ECRNQ3X5LEXD"}], "B08JLQT4FX": [{"asin": "B08JLQT4FX", "instruction": "i want to find a synthetic wig that features pink and black hair.", "attributes": ["high quality", "synthetic hair"], "options": ["color: pink&black"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["pink&black"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1AHU3E", "worker_id": "A345TDMHP3DQ3G"}], "B08MWQNPXF": [{"asin": "B08MWQNPXF", "instruction": "i am interested in black and white fashion sneakers for everyday wear that come in a 6.5 size for women.", "attributes": ["ethylene vinyl", "vinyl acetate", "everyday wear"], "options": ["color: black white", "size: 6.5 women | 5 men"], "instruction_attributes": ["everyday wear"], "instruction_options": ["black white", "6.5 women | 5 men"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61LPZWD", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q2YMM14": [{"asin": "B09Q2YMM14", "instruction": "i am in ineed of women quick drying small size yoga shorts with high waist and a-dark grey color", "attributes": ["quick drying", "moisture wicking", "machine wash", "high waist", "tummy control"], "options": ["color: a-dark grey", "size: small"], "instruction_attributes": ["quick drying", "high waist"], "instruction_options": ["small"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGQ1WTU", "worker_id": "A258PTOZ3D2TQR"}], "B07S22PTB3": [{"asin": "B07S22PTB3", "instruction": "i am looking for a map 3 coloured make up travel bag which is easy to carry .", "attributes": ["travel size", "easy carry"], "options": ["color: map 3"], "instruction_attributes": ["travel size", "easy carry"], "instruction_options": ["map 3"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOQ239T", "worker_id": "AHU9OLV0YKIIW"}], "B01LZ2I7EZ": [{"asin": "B01LZ2I7EZ", "instruction": "i want a non toxic mouthwash which is fluoride and alcohol free. pick a 2 pack 16 fluid ounces one.", "attributes": ["non toxic", "fluoride free", "alcohol free", "bpa free", "fresh breath", "sensitive teeth"], "options": ["size: 16 fl oz (pack of 2)"], "instruction_attributes": ["non toxic", "fluoride free", "alcohol free"], "instruction_options": ["16 fl oz (pack of 2)"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS17FCXU", "worker_id": "A1NF6PELRKACS9"}], "B08D7JM1X2": [{"asin": "B08D7JM1X2", "instruction": "get me some gluten free chips. look for the 3 flavor variety pack.", "attributes": ["gluten free", "simple ingredients"], "options": ["flavor name: 3 flavor variety pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["3 flavor variety pack"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35HWEU8B", "worker_id": "A1NF6PELRKACS9"}], "B00JD20DTO": [{"asin": "B00JD20DTO", "instruction": "find me a low sodium, sugar free, thickened coffee. i will need a pack of 24.", "attributes": ["low sodium", "sugar free", "gluten free"], "options": ["flavor: coffee", "size: pack of 24", "style: nectar"], "instruction_attributes": ["low sodium", "sugar free"], "instruction_options": ["pack of 24"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMA21JU", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B00JD20DTO", "instruction": "i want sugar free decaffeinated coffee that comes in an 8 fluid oz pack. it should have a mildly thick consistency.", "attributes": ["low sodium", "sugar free", "gluten free"], "options": ["flavor: coffee decaf", "size: 8 fl oz (pack of 1)", "style: mildly thick."], "instruction_attributes": ["sugar free"], "instruction_options": ["coffee decaf", "8 fl oz (pack of 1)", "mildly thick."], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZQF050", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B00JD20DTO", "instruction": "i want to find one 8.01 fluid ounce bottle of a decaf coffee-flavored drink. it can't have any sugar in it and i want it to have some honey.", "attributes": ["low sodium", "sugar free", "gluten free"], "options": ["flavor: coffee decaf", "size: 8.01 fl oz (pack of 1)", "style: honey"], "instruction_attributes": ["sugar free"], "instruction_options": ["coffee decaf", "8.01 fl oz (pack of 1)", "honey"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE21CGQD", "worker_id": "A345TDMHP3DQ3G"}], "B09QL53Z3Q": [{"asin": "B09QL53Z3Q", "instruction": "i am lookinf for pink hair rollers for natural hair.", "attributes": ["high quality", "easy use", "natural hair", "hair styling", "dry hair"], "options": ["color: pink"], "instruction_attributes": ["natural hair"], "instruction_options": ["pink"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUF3AVLB", "worker_id": "A2ECRNQ3X5LEXD"}], "B078WXXKV5": [{"asin": "B078WXXKV5", "instruction": "i need gluten free and low sodium seasoning which is all-purpose. make sure they are organic seasonings.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: organic seasonings", "size: 5 ounce (pack of 1)", "style: 20 ounce (pack of 1)"], "instruction_attributes": ["gluten free", "low sodium"], "instruction_options": ["organic seasonings"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50QXZWGT", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B078WXXKV5", "instruction": "i am looking for a low sodium and gluten free seasoning. look for spice gift sets.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: spice gift sets", "size: 1 pound (pack of 1)", "style: small - original flavor"], "instruction_attributes": ["gluten free", "low sodium"], "instruction_options": ["spice gift sets"], "assignment_id": "3V26SBZTBOOS9KTL7ONUSZFOIQ9ZZP", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B078WXXKV5", "instruction": "i am looking for gluten free spice gift sets that come in 3 ounces.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: spice gift sets", "size: 3 ounce (pack of 1)", "style: organic pack - standard size"], "instruction_attributes": ["gluten free"], "instruction_options": ["spice gift sets", "3 ounce (pack of 1)"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA7WQMHL", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B078WXXKV5", "instruction": "i'm looking for a 3 ounce, small food gift that is gluten free and is flavored everyday seasonings.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 3 ounce (pack of 1)", "style: small - original flavor"], "instruction_attributes": ["gluten free"], "instruction_options": ["everyday seasonings", "3 ounce (pack of 1)", "small - original flavor"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YT7Q39", "worker_id": "ABS83QIWSMZ9"}, {"asin": "B078WXXKV5", "instruction": "i am looking for gluten free seasoning in organic", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: organic seasonings", "size: 3 ounce (pack of 1)", "style: 3 ounce (pack of 3)"], "instruction_attributes": ["gluten free"], "instruction_options": ["organic seasonings"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1U70MPV", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B078WXXKV5", "instruction": "i'm looking for low sodium, gluten free everyday seasonings, 2.01 ounce (pack of 1)", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 2.01 ounce (pack of 1)", "style: everyday seasonings"], "instruction_attributes": ["low sodium"], "instruction_options": ["2.01 ounce (pack of 1)", "everyday seasonings"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3IBBV1", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B078WXXKV5", "instruction": "i am looking for a gluten free food seasoning set for my paleo diet. and i would prefer 2 ounce pack", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: paleo seasoning set", "size: 2 ounce (pack of 1)", "style: 2 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["paleo seasoning set", "2 ounce (pack of 1)"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCR7BMW", "worker_id": "A2COCSUGZV28X"}, {"asin": "B078WXXKV5", "instruction": "i'm looking for a four ounce low sodium paleo seasoning set.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: paleo seasoning set", "size: 2.01 ounce (pack of 1)", "style: 4 ounce (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["paleo seasoning set", "4 ounce (pack of 1)"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI803TA", "worker_id": "AR9AU5FY1S3RO"}], "B09QHKPGSX": [{"asin": "B09QHKPGSX", "instruction": "i want nail clippers that are easy to carry.", "attributes": ["easy carry", "dead skin"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4QTH03", "worker_id": "A2ECRNQ3X5LEXD"}], "B07BZ4KQ1T": [{"asin": "B07BZ4KQ1T", "instruction": "i am looking for delicious flavor starkist chicken creations, chicken salad, 2.6 oz pouch,pack of 12 which is soy free and gluten free easy to prepare, perfect fit for today\u2019s active lifestyle. buffalo style flavor preferable.", "attributes": ["soy free", "ready eat", "gluten free"], "options": ["flavor name: buffalo style", "size: 2.6 ounce (pack of 12)"], "instruction_attributes": ["soy free", "ready eat", "gluten free"], "instruction_options": ["2.6 ounce (pack of 12)"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTJ2E5X", "worker_id": "A1DRKZ3SCLAS4V"}], "B07D9DMD1D": [{"asin": "B07D9DMD1D", "instruction": "find me a running shoe that is regular fit and has a rubber outsole. pick a size 10 one.", "attributes": ["lace closure", "rubber outsole", "regular fit"], "options": ["color: base green | real magenta | night cargo", "size: 10"], "instruction_attributes": ["rubber outsole", "regular fit"], "instruction_options": ["10"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE191XR6", "worker_id": "A1NF6PELRKACS9"}], "B01DJH8K3Y": [{"asin": "B01DJH8K3Y", "instruction": "i need a 10 pound bag of sour watermelon slices that are non-dairy.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: sour watermelon slices", "size: 10 pound"], "instruction_attributes": ["non dairy"], "instruction_options": ["sour watermelon slices", "10 pound"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQ36VK9", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01DJH8K3Y", "instruction": "i am looking for a large bag of chocolate covered raisins 3-4 pound bag.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: assorted salt water taffy", "size: 4 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["4 pound"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFH3E9A", "worker_id": "A2KW17G25L25R8"}, {"asin": "B01DJH8K3Y", "instruction": "get me three pounds of white chocolate covered raisins. make sure they're non-dairy.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: white chocolate nonpareils", "size: 3 pound (pack of 1)"], "instruction_attributes": ["non dairy", "chocolate covered"], "instruction_options": ["white chocolate nonpareils", "3 pound (pack of 1)"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEGBQ8F", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B01DJH8K3Y", "instruction": "i want to find a pound of chocolate covered peach hearts.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: peach hearts", "size: 1 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["peach hearts", "1 pound (pack of 1)"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK3LVNY", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01DJH8K3Y", "instruction": "i am looking for chocolate covered raisins.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: chocolate covered raisins", "size: 4 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["chocolate covered raisins"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGDL9SP", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B01DJH8K3Y", "instruction": "i am looking for 10 pound bulk candy with chocolate covered raisins", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: dark chocolate nonpareils", "size: 10 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["10 pound"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1BYU9K", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01DJH8K3Y", "instruction": "i am looking for a non diary hard candy of gummy cherries flavour.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: gummy cherries", "size: gift box"], "instruction_attributes": ["non dairy"], "instruction_options": ["gummy cherries"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X6LY3P", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B01DJH8K3Y", "instruction": "i'm looking for chocolate covered for gifted to someone.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: fini tornado tubereoos", "size: 3 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["fini tornado tubereoos"], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOQOVYT", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B01DJH8K3Y", "instruction": "i would like to order a pink chocolate confetti candy and should be non dairy.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: chocolate confetti - pink", "size: 5 pound"], "instruction_attributes": ["non dairy"], "instruction_options": ["chocolate confetti - pink"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVQ5JK2", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B01DJH8K3Y", "instruction": "i would like a three pound bag of hard candy that is chocolate covered", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: chocolate rocks - assorted", "size: 3 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["3 pound (pack of 1)"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YTJ8TW", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01DJH8K3Y", "instruction": "i would like a 9 pound bag of white chocolate covered nonpareils.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: white chocolate nonpareils", "size: 9 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["white chocolate nonpareils", "9 pound"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSZULG6", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01DJH8K3Y", "instruction": "i would like a 4 pound bag of chocolate covered eda's sugar free hard candy.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: eda's sugar free hard candy", "size: 4 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["eda's sugar free hard candy", "4 pound"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHSU0J8", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01DJH8K3Y", "instruction": "i'm looking for a 10 pound blend gelee chocolate covered with candy", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: blend gelee", "size: 10 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["blend gelee", "10 pound"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTVYP9D", "worker_id": "A1Q0EUNCS50S8M"}, {"asin": "B01DJH8K3Y", "instruction": "i'm looking for a non dairy, chocolate covered raisins. also, choose sampler size chocolate rocks- gray one", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: chocolate rocks - gray", "size: *sampler size*"], "instruction_attributes": ["non dairy", "chocolate covered"], "instruction_options": ["chocolate rocks - gray", "*sampler size*"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD3MCIN", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B01DJH8K3Y", "instruction": "i would like hard candy that is in a gift box and is chocolate covered", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: assorted sour bricks", "size: gift box"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["gift box"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66TIZFK", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01DJH8K3Y", "instruction": "i am looking for a chocolated covered candy having size 5 pound.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: blue raspberry & strawberry sour belts", "size: 5 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["5 pound"], "assignment_id": "3N8OEVH1F204BC17361WW31GEQKOO7", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B01DJH8K3Y", "instruction": "find non dairy candies.", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: cocoa dusted almonds", "size: 5 pound"], "instruction_attributes": ["non dairy"], "instruction_options": [], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LCWREF", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B01DJH8K3Y", "instruction": "i would like a pound of non dairy jelly filled strawberry gummies", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: jelly filled strawberry gummies", "size: 1 pound (pack of 1)"], "instruction_attributes": ["non dairy"], "instruction_options": ["jelly filled strawberry gummies", "1 pound (pack of 1)"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCOWI7T", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01DJH8K3Y", "instruction": "may you give me a sour strawberry gummies by love of candy? *sampler size*pack please", "attributes": ["non dairy", "chocolate covered"], "options": ["flavor name: sour strawberry gummies", "size: *sampler size*"], "instruction_attributes": ["chocolate covered"], "instruction_options": [], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CPV2TJ", "worker_id": "A15IJ20C3R4HUO"}], "B08ZY474JW": [{"asin": "B08ZY474JW", "instruction": "i am looking for a women's vest that is padded and machine washable. pick an x-small size.", "attributes": ["wash cold", "machine wash", "unique design", "tumble dry"], "options": ["color: multi2", "size: x-small"], "instruction_attributes": ["machine wash"], "instruction_options": ["x-small"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMQ32GG", "worker_id": "A1NF6PELRKACS9"}], "B099MP2HQJ": [{"asin": "B099MP2HQJ", "instruction": "i want a recliner sofa for my living room and it should have storage space.", "attributes": ["mid century", "pu leather", "wood frame", "storage space", "living room"], "options": [""], "instruction_attributes": ["storage space", "living room"], "instruction_options": [], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7OHUC1", "worker_id": "A1NF6PELRKACS9"}], "B07Y2WGPNV": [{"asin": "B07Y2WGPNV", "instruction": "i am looking a cotton spandex low rise men's briefs medium size colour should be black", "attributes": ["low rise", "cotton spandex"], "options": ["color: black", "size: medium"], "instruction_attributes": ["low rise", "cotton spandex"], "instruction_options": ["black", "medium"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GORW39P", "worker_id": "A3N9ZYQAESNFQH"}], "B09H74TPKB": [{"asin": "B09H74TPKB", "instruction": "i'm looking for a black tempered glass smartwatch bands for men", "attributes": ["tempered glass", "carbon fiber", "glass screen"], "options": ["color: black", "size: for 44mm only"], "instruction_attributes": ["tempered glass"], "instruction_options": ["black"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTIKE5D", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09H74TPKB", "instruction": "i'm looking for black tempered smart watches. the glass screen is perfectly look so nice.", "attributes": ["tempered glass", "carbon fiber", "glass screen"], "options": ["color: black", "size: for 44mm only"], "instruction_attributes": ["tempered glass", "glass screen"], "instruction_options": ["black"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZJD9KD", "worker_id": "A16IQOX0DK14OJ"}], "B000ILLX3Y": [{"asin": "B000ILLX3Y", "instruction": "i am looking for a 2.6 ounce, pack of 1, low calorie popcorn seasoning.", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: popcorn salt", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["low calorie"], "instruction_options": ["2.6 ounce (pack of 1)"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0QCW4O", "worker_id": "A3UUH3632AI3ZX"}, {"asin": "B000ILLX3Y", "instruction": "iam looking for rich and creamy, low calorie kernel popcorn with butter seasoning and kettle corn flavor", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: kettle corn", "size: 1 count"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZDLKD0L", "worker_id": "A1VMWZ4X201V7H"}, {"asin": "B000ILLX3Y", "instruction": "i am looking for a 1 count of gluten free popcorn salt", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: movie theater butter", "size: 1 count"], "instruction_attributes": ["gluten free"], "instruction_options": ["1 count"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODOVEWJ", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B000ILLX3Y", "instruction": "i would like some low calorie birthday cake flavor popcorn topping.", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: birthday cake", "size: 3 ounce (pack of 6)"], "instruction_attributes": ["low calorie"], "instruction_options": ["birthday cake"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ5ASIX", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B000ILLX3Y", "instruction": "i am looking for some gluten free parmesan garlic flavored popcorn seasoning.", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: parmesan garlic", "size: 2.6 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["parmesan garlic"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6MB2BH", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B000ILLX3Y", "instruction": "i am looking for kernel season's popcorn season in 2.85 ounce packs of 6.", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: movie theater butter", "size: 3.5 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["3.5 ounce (pack of 6)"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYTWFXF", "worker_id": "A2KW17G25L25R8"}, {"asin": "B000ILLX3Y", "instruction": "i am looking for some gluten free kettle corn seasoning.", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: kettle-corn", "size: 2.4 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["kettle-corn"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q400OYF4", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B000ILLX3Y", "instruction": "i am looking for a six pack of popcorn salt that has a rich and creamy white cheddar flavor.", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: white cheddar", "size: 2.7 ounce (pack of 6)"], "instruction_attributes": ["rich creamy"], "instruction_options": ["white cheddar", "2.7 ounce (pack of 6)"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUJJS4K", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B000ILLX3Y", "instruction": "i am looking for popcorn seasoning in chili lime flavor, 2.6 ounce (pack of 1)", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: chili lime", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["low calorie"], "instruction_options": ["2.6 ounce (pack of 1)"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOXJO7I", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B000ILLX3Y", "instruction": "i need rich creamy popcorn seasoning in chili lime flavor. make sure that it is gluten free.", "attributes": ["rich creamy", "low calorie", "gluten free"], "options": ["flavor: chili lime", "size: 3.5 ounce (pack of 6)"], "instruction_attributes": ["rich creamy", "gluten free"], "instruction_options": ["chili lime"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4I289A", "worker_id": "A1NF6PELRKACS9"}], "B076PK255Q": [{"asin": "B076PK255Q", "instruction": "i want some snack bites that is gluten free and high protein. it should be beef flavored.", "attributes": ["high protein", "gluten free"], "options": ["flavor: beef", "size: 4 ounce (pack of 4)"], "instruction_attributes": ["high protein", "gluten free"], "instruction_options": ["beef"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P4YUBD", "worker_id": "A1NF6PELRKACS9"}], "B011V56KTC": [{"asin": "B011V56KTC", "instruction": "show me flip flops that are unisex and made of ethylene vinyl. i am a size 6.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: desert sage celandine", "size: 6 women | 6 men"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["6 women | 6 men"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RUXARLR", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B011V56KTC", "instruction": "look for puma unisex epic v2 flip flop sandal in size 8 that is made of ethylene vinyl in sun kissed coral rosewater.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: sun kissed coral rosewater", "size: 8"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["sun kissed coral rosewater", "8"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI7QPGZ7", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B011V56KTC", "instruction": "i'm looking for a unisex flip flops in the brand of puma.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: puma black-high rise", "size: 15.5 women | 14 men"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["puma black-high rise"], "assignment_id": "3HOSI13XHAYM3IJTNO90AFDI6Y2DDY", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B011V56KTC", "instruction": "i want a size 4 uk light lavender cloud pink sandal made of vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: light lavender cloud pink", "size: 4 uk"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["light lavender cloud pink", "4 uk"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXQO2ZG", "worker_id": "A1WS884SI0SLO4"}], "B08BG5NDKY": [{"asin": "B08BG5NDKY", "instruction": "i am looking for a fleece throw that is super soft to go in my living room. it should be shark colored.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: shark", "size: large 80\"x60"], "instruction_attributes": ["super soft", "fleece throw", "living room"], "instruction_options": ["shark"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0IFJ87", "worker_id": "A1NF6PELRKACS9"}], "B087N9KJ89": [{"asin": "B087N9KJ89", "instruction": "i would like a high gloss coffee table.", "attributes": ["high gloss", "white finish", "living room"], "options": [""], "instruction_attributes": ["high gloss"], "instruction_options": [], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYM2VH5", "worker_id": "A2ECRNQ3X5LEXD"}], "B0957J68LT": [{"asin": "B0957J68LT", "instruction": "i need a yellow home office chair that is easy to assemble.", "attributes": ["high density", "easy assemble", "living room"], "options": ["color: yellow"], "instruction_attributes": ["easy assemble"], "instruction_options": ["yellow"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY17Y082", "worker_id": "A2ECRNQ3X5LEXD"}], "B08GHHHWLP": [{"asin": "B08GHHHWLP", "instruction": "i'm looking for a 39\"w x 72\"h roller shades for living room.", "attributes": ["easy install", "living room"], "options": ["color: beige", "size: 39\"w x 72\"h"], "instruction_attributes": ["living room"], "instruction_options": ["39\"w x 72\"h"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC5X3RKM", "worker_id": "A9QRQL9CFJBI7"}], "B078N3XL2D": [{"asin": "B078N3XL2D", "instruction": "i'm looking for a twin xl, fully assembled mattresses.", "attributes": ["ready use", "fully assembled", "queen size", "assembly required", "box spring"], "options": ["size: twin xl", "style: 4\" split foundation"], "instruction_attributes": ["fully assembled"], "instruction_options": ["twin xl"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7ABKYUW", "worker_id": "A9QRQL9CFJBI7"}], "B01DVLB1I4": [{"asin": "B01DVLB1I4", "instruction": "i want to find a 10-foot long usb cable with a usb port in rose gold color.", "attributes": ["fast charging", "gold plated", "aluminum alloy", "usb port"], "options": ["color: rose gold", "number of items: 1", "size: 10ft"], "instruction_attributes": ["usb port"], "instruction_options": ["rose gold"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXLWQEAO", "worker_id": "A345TDMHP3DQ3G"}], "B09MD8XBXB": [{"asin": "B09MD8XBXB", "instruction": "i want a pair of memory foam slippers that are winter warm. i want it in red.", "attributes": ["winter warm", "anti slip", "machine washable", "non slip", "memory foam", "rubber sole"], "options": ["color: red", "size: 8 wide"], "instruction_attributes": ["winter warm", "memory foam"], "instruction_options": ["red"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LCWI5X", "worker_id": "A1NF6PELRKACS9"}], "B09DCXCK2G": [{"asin": "B09DCXCK2G", "instruction": "i'm looking for a professional makeup train storage case that has separate space for nail art materials and eye shadow palette.", "attributes": ["storage case", "nail art", "eye shadow"], "options": [""], "instruction_attributes": ["storage case", "nail art", "eye shadow"], "instruction_options": [], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN3O8II", "worker_id": "AR0VJ5XRG16UJ"}], "B09PB819S6": [{"asin": "B09PB819S6", "instruction": "i am looking for medical grade silicone scar removal sheets scar removal is reusable and completely washable. washing them renews their sticking ability, easy to use waterproof and very sticky. 1.6\u201d x 120\u201dsize preferable", "attributes": ["clinically proven", "water resistant", "non toxic", "easy use"], "options": ["size: 1.6\u201d x 120\u201d"], "instruction_attributes": ["clinically proven", "water resistant", "non toxic", "easy use"], "instruction_options": [], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPW720KV", "worker_id": "A1DRKZ3SCLAS4V"}], "B09RP2P6CQ": [{"asin": "B09RP2P6CQ", "instruction": "i am looking for a loose fit large t-shirt in a gray color.", "attributes": ["light weight", "loose fit", "short sleeve", "long sleeve"], "options": ["color: llds-a053-gray", "size: large"], "instruction_attributes": ["loose fit"], "instruction_options": ["llds-a053-gray", "large"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS153CXE", "worker_id": "A2ECRNQ3X5LEXD"}], "B0010XRVR6": [{"asin": "B0010XRVR6", "instruction": "i would like a chicken broccoli rice mix that comes in a pack of 12 and is easy to prepare.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: chicken broccoli", "size: 5.5 ounce (pack of 12)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["chicken broccoli", "5.5 ounce (pack of 12)"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGC40O7", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0010XRVR6", "instruction": "i am looking for knorr rice sides for a tasty rice side dish creamy chicken with no artificial flavors,easily prepare on the stove or in a microwave, goodness of a chicken flavored sauce. pack of 12 preferable.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: chicken", "size: pack of 12"], "instruction_attributes": ["easy prepare"], "instruction_options": ["chicken", "pack of 12"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XK40NEU", "worker_id": "A1DRKZ3SCLAS4V"}, {"asin": "B0010XRVR6", "instruction": "i need some easy to prepare chicken broccoli meals.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: chicken broccoli", "size: 5.29 ounce (pack of 12)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["chicken broccoli"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB31SOY", "worker_id": "A19317A3X87NVM"}], "B088MG2TWQ": [{"asin": "B088MG2TWQ", "instruction": "i am looking for a core i5 tablet.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["core i5"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WN3A1I", "worker_id": "A2ECRNQ3X5LEXD"}], "B07QDVJC5F": [{"asin": "B07QDVJC5F", "instruction": "i need footprints in the sand necklace and earrings sized long lasting candle 21oz", "attributes": ["lead free", "long lasting"], "options": ["scent: footprints in the sand", "size: earrings"], "instruction_attributes": [], "instruction_options": ["footprints in the sand", "earrings"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFIN3VB", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B07QDVJC5F", "instruction": "i need long lasting bedtime spa candles", "attributes": ["lead free", "long lasting"], "options": ["scent: bedtime spa", "size: earrings"], "instruction_attributes": ["long lasting"], "instruction_options": ["bedtime spa"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHCRE1R", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07QDVJC5F", "instruction": "i would like a lead free amazon rainforest bracelet candle.", "attributes": ["lead free", "long lasting"], "options": ["scent: amazon rainforest", "size: bracelet"], "instruction_attributes": ["lead free"], "instruction_options": ["amazon rainforest", "bracelet"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP8BAON", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07QDVJC5F", "instruction": "i want by a candle. pisces | zodiac star signs jewelry candle with necklace lead free inside ! scent vanilla lavender .", "attributes": ["lead free", "long lasting"], "options": ["scent: vanilla lavender", "size: earrings"], "instruction_attributes": ["lead free"], "instruction_options": ["vanilla lavender"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7VPURO", "worker_id": "A15IJ20C3R4HUO"}], "B07MFYH5Y6": [{"asin": "B07MFYH5Y6", "instruction": "i want to find a pair of black and magnet colored men's hiking boots with rubber soles, they need to be in size 15.", "attributes": ["long lasting", "arch support", "rubber outsole", "rubber sole"], "options": ["color: black | magnet", "size: 15"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black | magnet", "15"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3H686I0", "worker_id": "A345TDMHP3DQ3G"}], "B09Q2TD1V4": [{"asin": "B09Q2TD1V4", "instruction": "i am looking for a 11 women | 9.5 men shoes of rubber sole", "attributes": ["non slip", "slip resistant", "arch support", "rubber sole"], "options": ["color: purple mardi gras skull b", "size: 11 women | 9.5 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["11 women | 9.5 men"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CH7GNBN", "worker_id": "A9QRQL9CFJBI7"}], "B09H2WLRW3": [{"asin": "B09H2WLRW3", "instruction": "i need a high quality human hair. pick a straight 3 bundle with closure.", "attributes": ["high quality", "hair loss"], "options": ["color: straight 3 bundles with closure", "size: 20 22 24 26"], "instruction_attributes": ["high quality"], "instruction_options": ["straight 3 bundles with closure"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX3WFCL", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09H2WLRW3", "instruction": "i need high quality hair extensions that are loose waves", "attributes": ["high quality", "hair loss"], "options": ["color: loose wave 3 bundles with closure", "size: 20 | 22 | 24 | 26"], "instruction_attributes": ["high quality"], "instruction_options": ["loose wave 3 bundles with closure"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LOU900", "worker_id": "A2ECRNQ3X5LEXD"}], "B08KFD77MF": [{"asin": "B08KFD77MF", "instruction": "i'm looking for a water resistant red on black cosmetic bags for women.", "attributes": ["water resistant", "high quality"], "options": ["color: red on black"], "instruction_attributes": ["water resistant"], "instruction_options": ["red on black"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49S2X42", "worker_id": "A9QRQL9CFJBI7"}], "B07TTJDVMS": [{"asin": "B07TTJDVMS", "instruction": "i need a night stand with a width of 24 and height of 30. pick a white one.", "attributes": ["white item", "white finish"], "options": [""], "instruction_attributes": ["white finish"], "instruction_options": [], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVMD9XB", "worker_id": "A1NF6PELRKACS9"}], "B07GX4G5GQ": [{"asin": "B07GX4G5GQ", "instruction": "i search the vanity light including satin nickel", "attributes": ["vanity light", "light fixture"], "options": ["color: satin nickel", "size: 1-light"], "instruction_attributes": ["vanity light"], "instruction_options": ["satin nickel"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS409HXNH", "worker_id": "A226L9F2AZ38CL"}], "B01LW1R1QU": [{"asin": "B01LW1R1QU", "instruction": "i am looking for a non gmo popcorn with simple ingredients.", "attributes": ["non gmo", "simple ingredients", "artificial flavors"], "options": [""], "instruction_attributes": ["non gmo", "simple ingredients"], "instruction_options": [], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB687D4AP", "worker_id": "A2HMEGTAFO0CS8"}], "B09RQS6CLC": [{"asin": "B09RQS6CLC", "instruction": "i want to find a small green lace pajama set for daily wear.", "attributes": ["quality polyester", "polyester cotton", "teen girls", "daily wear"], "options": ["color: g", "size: small"], "instruction_attributes": ["daily wear"], "instruction_options": ["g", "small"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3ENLZ8", "worker_id": "A345TDMHP3DQ3G"}], "B097J4D79Y": [{"asin": "B097J4D79Y", "instruction": "i'm looking for a optical zoom dome cameras.", "attributes": ["heavy duty", "optical zoom", "motion detection"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P22BUU", "worker_id": "A9QRQL9CFJBI7"}], "B07TSWKZ6Y": [{"asin": "B07TSWKZ6Y", "instruction": "i need some hair cutting shears that are gold and six inches.", "attributes": ["stainless steel", "hair cutting"], "options": ["color: gold", "size: 6 inch"], "instruction_attributes": ["hair cutting"], "instruction_options": ["gold", "6 inch"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATZE37F", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07TSWKZ6Y", "instruction": "i am looking for a pair of 6 inch stainless steel hair cutting scissors.", "attributes": ["stainless steel", "hair cutting"], "options": ["color: rainbow", "size: 6 inch"], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": ["6 inch"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPEFQD6", "worker_id": "A1EREKSZAA9V7B"}], "B09Q38V92J": [{"asin": "B09Q38V92J", "instruction": "i am looking for a blue tie and dye printed small blouse with a unique design that is short sleeved for teen girls.", "attributes": ["slim fit", "short sleeve", "long sleeve", "unique design", "polyester spandex", "teen girls"], "options": ["color: 0a94- blue", "size: small"], "instruction_attributes": ["short sleeve", "unique design", "teen girls"], "instruction_options": ["0a94- blue", "small"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWTG1RA", "worker_id": "AHU9OLV0YKIIW"}], "B08295DTX4": [{"asin": "B08295DTX4", "instruction": "i'm looking for a case cover hard shell cases of rock ash color.", "attributes": ["easy install", "case cover"], "options": ["color: rock ash"], "instruction_attributes": ["case cover"], "instruction_options": ["rock ash"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCHO7IW", "worker_id": "A9QRQL9CFJBI7"}], "B074338PG3": [{"asin": "B074338PG3", "instruction": "i want to find a pack of nine low-carb cheese bites from trader joe's.", "attributes": ["trader joe", "low carb", "gluten free"], "options": ["size: pack of 9"], "instruction_attributes": ["trader joe", "low carb"], "instruction_options": ["pack of 9"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI32ADBP", "worker_id": "A345TDMHP3DQ3G"}], "B00MFQJR60": [{"asin": "B00MFQJR60", "instruction": "i am looking for an easy care shirt. pick a soft black one.", "attributes": ["easy care", "button closure"], "options": ["color: soft black", "size: 4x-large"], "instruction_attributes": ["easy care"], "instruction_options": ["soft black"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VAME8K", "worker_id": "A1NF6PELRKACS9"}], "B071DV6H98": [{"asin": "B071DV6H98", "instruction": "i am looking for a gluten free peanut butter that comes in a vanilla flavor and is .85 oz.", "attributes": ["non gmo", "gluten free", "protein serving", "0g trans", "high fructose"], "options": ["flavor name: vanilla sample", "size: 0.85 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["vanilla sample", "0.85 ounce (pack of 1)"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV499TDTY", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B071DV6H98", "instruction": "i would like some non gmo peanut butter that is vanilla flavored and is 0.85 ounces", "attributes": ["non gmo", "gluten free", "protein serving", "0g trans", "high fructose"], "options": ["flavor name: vanilla sample", "size: 0.85 ounce (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["vanilla sample", "0.85 ounce (pack of 1)"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7XXWZTO", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B071DV6H98", "instruction": "i'm looking for a multi-pack of original peanut butter powder in the 6.5 ounce size; it must suit my gluten-free diet.", "attributes": ["non gmo", "gluten free", "protein serving", "0g trans", "high fructose"], "options": ["flavor name: original", "size: 6.5 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["original", "6.5 ounce (pack of 6)"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QQLXO9", "worker_id": "A3LIIE572Z4OG7"}], "B09QHJSCSJ": [{"asin": "B09QHJSCSJ", "instruction": "i need black flats in a size 9 that have arch support.", "attributes": ["open toe", "leather sole", "arch support"], "options": ["color: black", "size: 9"], "instruction_attributes": ["arch support"], "instruction_options": ["black", "9"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT3ZVHJ6", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HCLN583": [{"asin": "B09HCLN583", "instruction": "i want a non slip futon mattress which is soft and thick. i need it in 150*200 cm size.", "attributes": ["non slip", "living room"], "options": ["color: a", "size: 150*200cm"], "instruction_attributes": ["non slip"], "instruction_options": ["150*200cm"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5J76XV", "worker_id": "A1NF6PELRKACS9"}], "B09P5LHPC4": [{"asin": "B09P5LHPC4", "instruction": "i need a hair treatment detangler that comes in two bottles.", "attributes": ["hair extensions", "hair treatment", "dry hair"], "options": ["size: 2 bottles"], "instruction_attributes": ["hair treatment"], "instruction_options": ["2 bottles"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGY4LIEM", "worker_id": "A2ECRNQ3X5LEXD"}], "B01MRNDYVF": [{"asin": "B01MRNDYVF", "instruction": "i'm looking for a comfortable fit 38w x 30l jeans for men.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: san antonio", "fit type: slim", "size: 38w x 30l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["38w x 30l"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5KZP21H", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B01MRNDYVF", "instruction": "i need a long lasting cowboy cut jeans that is slim fit.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: dax", "fit type: slim", "size: 48w x 32l"], "instruction_attributes": ["long lasting"], "instruction_options": ["slim"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53VSGKT", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B01MRNDYVF", "instruction": "i am looking for a long lasting jean with comfortable fit in regular size. also choose smoky color and 28w x 30l size.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: smoke storm", "fit type: regular", "size: 28w x 30l"], "instruction_attributes": ["long lasting", "comfortable fit"], "instruction_options": ["smoke storm", "regular", "28w x 30l"], "assignment_id": "37TRT2X24116R7L1JO45INKV8TZJBF", "worker_id": "A2HMEGTAFO0CS8"}], "B087CM8ZJQ": [{"asin": "B087CM8ZJQ", "instruction": "i need a fast charging usb cable that is black and 6.6 feet long.", "attributes": ["gold plated", "fast charging", "aluminum alloy", "usb port"], "options": ["color: black", "size: 6.6ft"], "instruction_attributes": ["fast charging"], "instruction_options": ["black", "6.6ft"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBPYDAO5", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B087CM8ZJQ", "instruction": "i'm looking for gold plated grey usb cables.", "attributes": ["gold plated", "fast charging", "aluminum alloy", "usb port"], "options": ["color: grey", "size: 16ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["grey"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6G6YS3K", "worker_id": "A19317A3X87NVM"}], "B07KQNG859": [{"asin": "B07KQNG859", "instruction": "l want a roasted almonds colour 4 count low carbo and sugar free chocolate", "attributes": ["low carb", "sugar free", "artificial ingredients", "keto friendly", "individually wrapped", "dairy free", "quality ingredients"], "options": ["color: roasted almonds", "size: 4 count (pack of 4)"], "instruction_attributes": ["low carb", "sugar free"], "instruction_options": ["roasted almonds", "4 count (pack of 4)"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP8V57ZA", "worker_id": "A3N9ZYQAESNFQH"}], "B00EQD8022": [{"asin": "B00EQD8022", "instruction": "i am searching for a delicious dairy free unsweetened coconutmilk, 1 quart", "attributes": ["dairy free", "shelf stable", "non gmo", "gluten free"], "options": [""], "instruction_attributes": ["dairy free"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLTYAVZ", "worker_id": "A258PTOZ3D2TQR"}], "B01M183PGP": [{"asin": "B01M183PGP", "instruction": "i need a bpa free bag that is purple with flowers.", "attributes": ["bpa free", "travel bottles"], "options": ["color: purple with black disc, floral labels"], "instruction_attributes": ["bpa free"], "instruction_options": ["purple with black disc, floral labels"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBNHIGQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07T3RBK48": [{"asin": "B07T3RBK48", "instruction": "i need a classic fit t-shirt. pick the royal blue one.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: men", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["royal blue"], "assignment_id": "3VW04L3ZL4GEZUTR5OBOYTJ22OCXXO", "worker_id": "A1NF6PELRKACS9"}], "B08Z46HP2J": [{"asin": "B08Z46HP2J", "instruction": "i am searching for a queen size 7 inch cooling gel memory foam mattress certipur-us certified.", "attributes": ["memory foam", "king size"], "options": ["size: queen"], "instruction_attributes": [], "instruction_options": ["queen"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14L9L0LG", "worker_id": "A258PTOZ3D2TQR"}], "B085DGY66W": [{"asin": "B085DGY66W", "instruction": "i'm looking for a gluten free, non gmo vegetable powder refill pouch with organic winter squash. also, choose three beet flavor one.", "attributes": ["non gmo", "gluten free", "dietary fiber"], "options": ["flavor: three beet"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["three beet"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7RI5PP", "worker_id": "AR0VJ5XRG16UJ"}], "B09PZ6KCQ2": [{"asin": "B09PZ6KCQ2", "instruction": "i am looking for a x- large casual dresses with long sleeves", "attributes": ["hand wash", "long sleeve", "quality polyester", "daily wear"], "options": ["color: black", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x-large"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PFIX2K", "worker_id": "A9QRQL9CFJBI7"}], "B09RPDTM1K": [{"asin": "B09RPDTM1K", "instruction": "i want a small sexy pajama lingerie that is made of quality polyester. pick a yellow one.", "attributes": ["quality polyester", "polyester cotton", "teen girls", "daily wear"], "options": ["color: yellow", "size: small"], "instruction_attributes": ["quality polyester"], "instruction_options": ["yellow", "small"], "assignment_id": "3BGYGHDBB8UCXYNXTA52IDVAC71220", "worker_id": "A1NF6PELRKACS9"}], "B082WYL1FR": [{"asin": "B082WYL1FR", "instruction": "i am looking for a usb c female to usb male adapter made up of aluminum alloy also in purple color.", "attributes": ["aluminum alloy", "usb port"], "options": ["color: purple"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["purple"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB1WXULH", "worker_id": "A2HMEGTAFO0CS8"}], "B091G46DJV": [{"asin": "B091G46DJV", "instruction": "get me a wine tote that is bpa free and easy to use to hold wine bottles. pick something in swankey blue moon color.", "attributes": ["bpa free", "easy use", "great gift", "perfect gift"], "options": ["color: swankey blue moon"], "instruction_attributes": ["bpa free", "easy use"], "instruction_options": ["swankey blue moon"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJKHXB6", "worker_id": "A1NF6PELRKACS9"}], "B09FYT7V8G": [{"asin": "B09FYT7V8G", "instruction": "i need an ac adapter that has wireless charging.", "attributes": ["output protection", "wireless charging"], "options": [""], "instruction_attributes": ["wireless charging"], "instruction_options": [], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MCILWH", "worker_id": "A2ECRNQ3X5LEXD"}], "B076BYM91L": [{"asin": "B076BYM91L", "instruction": "i would like some high protein jerky that is bbq and 8 ounces.", "attributes": ["low fat", "high protein"], "options": ["flavor name: bbq", "size: 8 ounce"], "instruction_attributes": ["high protein"], "instruction_options": ["bbq", "8 ounce"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQ5S191", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B076BYM91L", "instruction": "i am looking for a 4 ounce pack of low fat turkey jerky with sweet heat flavor.", "attributes": ["low fat", "high protein"], "options": ["flavor name: sweet heat", "size: 4 ounce"], "instruction_attributes": ["low fat"], "instruction_options": ["sweet heat", "4 ounce"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X5IY3K", "worker_id": "AJDQGOTMB2D80"}], "B09729K3M4": [{"asin": "B09729K3M4", "instruction": "i am looking for an easy clean computer desk that is white in color. pick a size 47\" desk.", "attributes": ["heavy duty", "white item", "easy clean", "easy assemble", "coated steel", "metal legs"], "options": ["color: rustic brown + black frame", "size: 47\""], "instruction_attributes": ["white item", "easy clean"], "instruction_options": ["47\""], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYIN7NL", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09729K3M4", "instruction": "i want a 39 inch easy to clean computer desk that is also heavy duty.", "attributes": ["heavy duty", "white item", "easy clean", "easy assemble", "coated steel", "metal legs"], "options": ["color: rustic brown + black frame", "size: 39\u2018\u2019"], "instruction_attributes": ["heavy duty", "easy clean"], "instruction_options": ["39\u2018\u2019"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JZFEGS", "worker_id": "A1NF6PELRKACS9"}], "B09KGGD8NN": [{"asin": "B09KGGD8NN", "instruction": "i'm searching for a rechargeable plug play powerpoint presenter remote. also its color is green light one.", "attributes": ["plug play", "usb port"], "options": ["color: green light", "size: x16"], "instruction_attributes": ["plug play"], "instruction_options": ["x16"], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK60KYYL", "worker_id": "A258PTOZ3D2TQR"}], "B09P1QKG2T": [{"asin": "B09P1QKG2T", "instruction": "i am looking for a glitters nail polish. also, choose the 04# color.", "attributes": ["nail art", "nail polish"], "options": ["color: 04#"], "instruction_attributes": ["nail polish"], "instruction_options": ["04#"], "assignment_id": "3I02618YABGH9HX5ESQKK9YV67OPU2", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09P1QKG2T", "instruction": "i need a 05# nail powder pen for nail art.", "attributes": ["nail art", "nail polish"], "options": ["color: 05#"], "instruction_attributes": ["nail art"], "instruction_options": ["05#"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7WFDSL", "worker_id": "A2RBF3IIJP15IH"}], "B00005Q7DG": [{"asin": "B00005Q7DG", "instruction": "i'm looking for a digital camera with optical zoom lens and should have usb port.", "attributes": ["optical zoom", "usb port"], "options": [""], "instruction_attributes": ["optical zoom", "usb port"], "instruction_options": [], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQFL31T", "worker_id": "AR0VJ5XRG16UJ"}], "B0000533G9": [{"asin": "B0000533G9", "instruction": "i need a cruelty free hand wash that is 8 ounces.", "attributes": ["plant based", "cruelty free", "tea tree"], "options": ["size: 8 ounce (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHRYM0CB", "worker_id": "A2ECRNQ3X5LEXD"}], "B07N49M3J7": [{"asin": "B07N49M3J7", "instruction": "i want to find a 3-pack of grape-mango fruit leather buttons that are usda organic. the brand must be trader joe's.", "attributes": ["trader joe", "usda organic", "gluten free", "natural flavors"], "options": ["flavor name: grape-mango", "size: 3 pack"], "instruction_attributes": ["trader joe", "usda organic"], "instruction_options": ["grape-mango", "3 pack"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9ALK6D", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07N49M3J7", "instruction": "trader joe want to buy an organic fruit with leather buttons and natural flavors (6 pack). also choose the mango and size is 12 pack.", "attributes": ["trader joe", "usda organic", "gluten free", "natural flavors"], "options": ["flavor name: mango", "size: 12 pack"], "instruction_attributes": ["trader joe", "usda organic", "natural flavors"], "instruction_options": ["mango", "12 pack"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD4V3AYI", "worker_id": "A59DVED5S9N9Y"}, {"asin": "B07N49M3J7", "instruction": "i'm looking for gluten free that flavor was mango it looks so good.", "attributes": ["trader joe", "usda organic", "gluten free", "natural flavors"], "options": ["flavor name: mango", "size: 6 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["mango"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDUSZQD", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07N49M3J7", "instruction": "i\u2019m looking for a 6-pack of the trader joes fruit leather buttons; i like the natural strawberry-mango flavour.", "attributes": ["trader joe", "usda organic", "gluten free", "natural flavors"], "options": ["flavor name: strawberry-mango", "size: 6 pack"], "instruction_attributes": ["trader joe", "natural flavors"], "instruction_options": ["6 pack"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746Y5BTX", "worker_id": "A3LIIE572Z4OG7"}], "B01M4RU1G2": [{"asin": "B01M4RU1G2", "instruction": "i need fruit snacks are that are both fat and gluten free.", "attributes": ["fat free", "non gmo", "gluten free", "dietary fiber"], "options": [""], "instruction_attributes": ["fat free", "gluten free"], "instruction_options": [], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMO9FCTV", "worker_id": "A2ECRNQ3X5LEXD"}], "B08S3S7Y6S": [{"asin": "B08S3S7Y6S", "instruction": "i am looking for 3.3 ft usb cables compatible with apple.", "attributes": ["compatible apple", "fast charging"], "options": ["color: black - 2 pack", "size: 3.3 ft"], "instruction_attributes": ["compatible apple"], "instruction_options": ["3.3 ft"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZF9B9VA", "worker_id": "A9QRQL9CFJBI7"}], "B09225PZDX": [{"asin": "B09225PZDX", "instruction": "i'm looking for multicolor cupcake toppers with cupcake picks for baby shower.", "attributes": ["cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["cupcake picks", "baby shower"], "instruction_options": [], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL95S2V6", "worker_id": "AR0VJ5XRG16UJ"}], "B01HFHK26C": [{"asin": "B01HFHK26C", "instruction": "i want a fully assembled file cabinet for home and office use. pick something in gray and black.", "attributes": ["ready use", "fully assembled"], "options": ["color: gray black", "style: 2-drawer, all-steel lock & key"], "instruction_attributes": ["fully assembled"], "instruction_options": ["gray black"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P4AUBP", "worker_id": "A1NF6PELRKACS9"}], "B07Z4ZSKP4": [{"asin": "B07Z4ZSKP4", "instruction": "i need a vinyl acetate narrow fit sandals with big buckle. i am a size 8.5.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: stardust rose", "size: 8.5"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["8.5"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQRAB47", "worker_id": "A1NF6PELRKACS9"}], "B07Y848YHD": [{"asin": "B07Y848YHD", "instruction": "i am looking for gorgeous color black in the stainless steel metal watchband surface, the innovation design, looks more fashionable rabuzi band compatible for fitbit ionic band smartwatch.", "attributes": ["quick release", "stainless steel"], "options": ["color: black"], "instruction_attributes": ["stainless steel"], "instruction_options": ["black"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SIYP3TF", "worker_id": "A1DRKZ3SCLAS4V"}], "B09Q2LHXS9": [{"asin": "B09Q2LHXS9", "instruction": "i am looking for fashion comfortable flats for women with the durable slip on outsole withlight weight lyhomean handmade women linen cotton slip on loafers in grey color. size 6.5 preferable.", "attributes": ["light weight", "fashion design"], "options": ["color: grey", "size: 6.5"], "instruction_attributes": ["light weight", "fashion design"], "instruction_options": ["grey", "6.5"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMK3W91", "worker_id": "A1DRKZ3SCLAS4V"}], "B09LZ3B5CB": [{"asin": "B09LZ3B5CB", "instruction": "i am looking for a long lasting highly pigmented eye shadow for senstive skin", "attributes": ["highly pigmented", "long lasting", "eye shadow", "sensitive skin"], "options": [""], "instruction_attributes": ["highly pigmented", "long lasting", "eye shadow", "sensitive skin"], "instruction_options": [], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G70C475", "worker_id": "A3N9ZYQAESNFQH"}], "B094Y4C2ZM": [{"asin": "B094Y4C2ZM", "instruction": "i'm looking for a #9 silver open toe women flat sandals, size-11", "attributes": ["open toe", "closed toe"], "options": ["color: #9 silver", "size: 11"], "instruction_attributes": ["open toe"], "instruction_options": ["#9 silver", "11"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXCHWKT", "worker_id": "A9QRQL9CFJBI7"}], "B0848FR6YM": [{"asin": "B0848FR6YM", "instruction": "i am looking for a ready to use cocktail mixer that is authentic michelada mix and is 33.8 fl oz.", "attributes": ["ready use", "non gmo", "high fructose"], "options": ["flavor name: authentic michelada mix", "size: 33.81 fl oz (pack of 3)"], "instruction_attributes": ["ready use"], "instruction_options": ["authentic michelada mix", "33.81 fl oz (pack of 3)"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FAE3D5", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0848FR6YM", "instruction": "i am looking for a 16 fl oz cocktail mixer that is ready to use and is ginger lemonade flavored.", "attributes": ["ready use", "non gmo", "high fructose"], "options": ["flavor name: skinny ginger lemonade mixer", "size: 16 fl oz (pack of 1)"], "instruction_attributes": ["ready use"], "instruction_options": ["skinny ginger lemonade mixer", "16 fl oz (pack of 1)"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMKUWMM", "worker_id": "A2ECRNQ3X5LEXD"}], "B0933HSCRS": [{"asin": "B0933HSCRS", "instruction": "i'm looking for a 18 inch double sided hair extensions", "attributes": ["double sided", "hair extensions"], "options": ["size: 18 inch"], "instruction_attributes": ["double sided"], "instruction_options": ["18 inch"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIFL584", "worker_id": "A9QRQL9CFJBI7"}], "B07C2DXQTP": [{"asin": "B07C2DXQTP", "instruction": "i need some prewashed comfortable fit jeans that are relaxed and a size 36w by 31l", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: prewash", "fit type: relaxed", "size: 36w x 31l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["prewash", "relaxed", "36w x 31l"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYXXJ4G", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07C2DXQTP", "instruction": "i want banjo blue and machine washable wrangler cowboy cut jeans.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: banjo blue", "fit type: regular", "size: 36"], "instruction_attributes": ["machine wash"], "instruction_options": ["banjo blue"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39ISCLTN", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07C2DXQTP", "instruction": "i want long lasting and slim wrangler mens cowboy jeans.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: smoke storm", "fit type: slim", "size: 52w x 30l"], "instruction_attributes": ["long lasting"], "instruction_options": ["slim"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2ONI99W", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07C2DXQTP", "instruction": "i want big & tall and comfortable fit wrangler mens cowboy cut jeans.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: worn in", "fit type: big & tall", "size: 40w x 40l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["big & tall"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W8WUO6", "worker_id": "A2RBF3IIJP15IH"}], "B08Y917SDN": [{"asin": "B08Y917SDN", "instruction": "i want a long lasting shower gel gift set for sensitive skin. pick something with cherry blossom scent.", "attributes": ["long lasting", "seed oil", "natural ingredients", "sensitive skin"], "options": [""], "instruction_attributes": ["long lasting", "sensitive skin"], "instruction_options": [], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXNXYLE", "worker_id": "A1NF6PELRKACS9"}], "B007PY8M9A": [{"asin": "B007PY8M9A", "instruction": "i am looking for zero sugar sparkling water which is peach flovoured and should be 15.99 fl oz in size (pack of 12.", "attributes": ["certified organic", "zero sugar"], "options": ["flavor name: peach", "size: 15.99 fl oz (pack of 12)"], "instruction_attributes": ["zero sugar"], "instruction_options": ["peach", "15.99 fl oz (pack of 12)"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQ5N6S7", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B007PY8M9A", "instruction": "i would like a 12 pack of 16 fluid ounce bottles of zero sugar wild berry energy drinks.", "attributes": ["certified organic", "zero sugar"], "options": ["flavor name: wild berry", "size: 16 fl oz (pack of 12)"], "instruction_attributes": ["zero sugar"], "instruction_options": ["wild berry", "16 fl oz (pack of 12)"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMZN3WZ", "worker_id": "A1WS884SI0SLO4"}], "B07RPZHP79": [{"asin": "B07RPZHP79", "instruction": "i am looking for a .4 fl oz concealer that is good for dark circles and is in the shade 12.0 light sand.", "attributes": ["anti aging", "highly pigmented", "travel size", "long lasting", "hyaluronic acid", "dark circles"], "options": ["color: 12.0 light sand (w)", "size: 0.4 fl oz"], "instruction_attributes": ["dark circles"], "instruction_options": ["12.0 light sand (w)", "0.4 fl oz"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJK3BX6", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NSF1Z7R": [{"asin": "B09NSF1Z7R", "instruction": "i am looking for blue high waist casual pants for women.", "attributes": ["straight leg", "wide leg", "loose fit", "high waist"], "options": ["color: blue", "size: x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["blue"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFMUJOJ", "worker_id": "A9QRQL9CFJBI7"}], "B09RMHDH39": [{"asin": "B09RMHDH39", "instruction": "i'm looking for a red hand washed tanks & camis for women.", "attributes": ["wash cold", "hand wash", "polyester spandex"], "options": ["color: red", "size: small"], "instruction_attributes": ["hand wash"], "instruction_options": ["red"], "assignment_id": "3634BBTX0Z409DDB6851PCWGA5BFIC", "worker_id": "A9QRQL9CFJBI7"}], "B00WBB0D4E": [{"asin": "B00WBB0D4E", "instruction": "i'm looking for a cocktail mixer that is gluten free, nut free and has no artificial colors. also, choose wine freezer sangria with pack of 4.", "attributes": ["non alcoholic", "nut free", "gluten free", "artificial colors"], "options": ["flavor name: wine freezer sangria", "size: pack of 4"], "instruction_attributes": ["nut free", "gluten free", "artificial colors"], "instruction_options": ["wine freezer sangria", "pack of 4"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LFP094", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B00WBB0D4E", "instruction": "i would like a non alcoholic eggnog mixer that comes in a four pack", "attributes": ["non alcoholic", "nut free", "gluten free", "artificial colors"], "options": ["flavor name: eggnog", "size: pack of 4"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["eggnog", "pack of 4"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXQ4YLR", "worker_id": "A2ECRNQ3X5LEXD"}], "B07JKY5SJQ": [{"asin": "B07JKY5SJQ", "instruction": "i am looking for a medium adult sized unisex hoodie which is machine washable. pick the navy blue one.", "attributes": ["wash cold", "machine wash", "dry clean", "tumble dry"], "options": ["color: navy blue", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy blue"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOSMO7B", "worker_id": "A1NF6PELRKACS9"}], "B093ZNDMMS": [{"asin": "B093ZNDMMS", "instruction": "i want a body wash that is dermatologist tested. it should have a cucumber and aloe scent.", "attributes": ["dermatologist tested", "sensitive skin"], "options": ["scent: cucumber + aloe", "size: 24.5 fl oz"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["cucumber + aloe"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXQXYMM", "worker_id": "A1NF6PELRKACS9"}], "B01G5VEX3W": [{"asin": "B01G5VEX3W", "instruction": "i want to find green tea lip gloss that comes in the color \"kiss me pink.\"", "attributes": ["green tea", "seed oil", "natural ingredients"], "options": ["color: kiss me pink"], "instruction_attributes": ["green tea"], "instruction_options": ["kiss me pink"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MI3RRBZ", "worker_id": "A345TDMHP3DQ3G"}], "B08D9NK2TL": [{"asin": "B08D9NK2TL", "instruction": "i am looking for itch relief balm for sensitive skin.", "attributes": ["sulfate free", "clinically proven", "dry skin", "sensitive skin"], "options": ["style: itch relief balm"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["itch relief balm"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4BA985", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B08D9NK2TL", "instruction": "i am looking for a repairing cream sulfate free body washes for dry skin", "attributes": ["sulfate free", "clinically proven", "dry skin", "sensitive skin"], "options": ["style: repairing cream"], "instruction_attributes": ["sulfate free", "dry skin"], "instruction_options": ["repairing cream"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI85ASSR", "worker_id": "A9QRQL9CFJBI7"}], "B00MRNQT8A": [{"asin": "B00MRNQT8A", "instruction": "i would like three traditional vanity lights that are in a satin bronze finish.", "attributes": ["bronze finish", "vanity light"], "options": ["color: satin bronze finish", "size: three - light", "style: traditional"], "instruction_attributes": ["vanity light"], "instruction_options": ["satin bronze finish", "three - light", "traditional"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227CCF8G", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00MRNQT8A", "instruction": "i'm looking for a three light vanity style light fixture that can hang on the wall and has chrome finish.", "attributes": ["bronze finish", "vanity light"], "options": ["color: chrome finish", "size: nine light", "style: wall | bath sconce"], "instruction_attributes": ["vanity light"], "instruction_options": ["chrome finish", "wall | bath sconce"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDKS5KA", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B00MRNQT8A", "instruction": "i am looking for bronze finish chrome color vanity lights", "attributes": ["bronze finish", "vanity light"], "options": ["color: chrome", "size: three light", "style: mini-pendant"], "instruction_attributes": ["bronze finish"], "instruction_options": ["chrome"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9JGZS1W", "worker_id": "A16M39T60N60NO"}, {"asin": "B00MRNQT8A", "instruction": "i'm looking for a three light vanity style light fixture that can hang on the wall and has chrome finish.", "attributes": ["bronze finish", "vanity light"], "options": ["color: chrome finish", "size: nine light", "style: wall | bath sconce"], "instruction_attributes": ["vanity light"], "instruction_options": ["chrome finish", "wall | bath sconce"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDKS5KA", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B00MRNQT8A", "instruction": "i would like a nine light vanity light wall sconce with chrome finish", "attributes": ["bronze finish", "vanity light"], "options": ["color: chrome finish", "size: nine light", "style: wall | bath sconce"], "instruction_attributes": ["vanity light"], "instruction_options": ["chrome finish", "nine light", "wall | bath sconce"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9Y1X5V", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00MRNQT8A", "instruction": "can i get some chandelier vanity lights with a bronze finish?", "attributes": ["bronze finish", "vanity light"], "options": ["color: satin brass", "size: five light", "style: chandelier"], "instruction_attributes": ["bronze finish"], "instruction_options": ["chandelier"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8YC8GM", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B00MRNQT8A", "instruction": "i want to buy vanity lights which have bronze finish and the color of which is satin bronze, and with a size of nine light, while it's style should be mini-pendant.", "attributes": ["bronze finish", "vanity light"], "options": ["color: satin bronze", "size: nine light", "style: mini-pendant"], "instruction_attributes": ["bronze finish", "vanity light"], "instruction_options": ["satin bronze", "nine light", "mini-pendant"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD3QICX", "worker_id": "AJY5G987IRT25"}, {"asin": "B00MRNQT8A", "instruction": "i need four contemporary vanity lights.", "attributes": ["bronze finish", "vanity light"], "options": ["color: satin bronze finish", "size: four light", "style: contemporary"], "instruction_attributes": ["vanity light"], "instruction_options": ["four light", "contemporary"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VIS8E0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00MRNQT8A", "instruction": "i want to get a three light, wall scone style vanity light that has a brushed nickel finish.", "attributes": ["bronze finish", "vanity light"], "options": ["color: brushed nickel finish", "size: three light", "style: wall | bath sconce"], "instruction_attributes": ["vanity light"], "instruction_options": ["brushed nickel finish", "three light", "wall | bath sconce"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWZS5TT", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B00MRNQT8A", "instruction": "i need to buy a vanity light in brushed nickel with two lights.", "attributes": ["bronze finish", "vanity light"], "options": ["color: brushed nickel", "size: two light", "style: wall | bath sconce"], "instruction_attributes": ["vanity light"], "instruction_options": ["brushed nickel", "two light"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ53TCK8", "worker_id": "AR9AU5FY1S3RO"}], "B018ZL0820": [{"asin": "B018ZL0820", "instruction": "i'd like to find a 2-pack of 16 ounce bags of chocolate covered cherries. ideally the flavors will be variety white and imperial.", "attributes": ["chocolate covered", "valentine day", "gift basket"], "options": ["flavor name: variety white & imperial", "size: 16 ounce (pack of 2)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["variety white & imperial", "16 ounce (pack of 2)"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTMJ4ES", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B018ZL0820", "instruction": "i am looking a valentine day chocolate gift basket of imperial chocolate flavour size :8 ounce (pack of 2)", "attributes": ["chocolate covered", "valentine day", "gift basket"], "options": ["flavor name: imperial chocolate", "size: 8 ounce (pack of 2)"], "instruction_attributes": ["valentine day", "gift basket"], "instruction_options": ["imperial chocolate", "8 ounce (pack of 2)"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23TB7QTG", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B018ZL0820", "instruction": "i am looking for cherry republic brand chocolate covered cherries, 2 of the 8 ounce packages.", "attributes": ["chocolate covered", "valentine day", "gift basket"], "options": ["flavor name: variety all", "size: 8 ounce (pack of 2)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["8 ounce (pack of 2)"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1JK08C", "worker_id": "AK3JMCIGU8MLU"}], "B07C55SZW3": [{"asin": "B07C55SZW3", "instruction": "i looking a gluten free peanut butter dark chocolate", "attributes": ["gluten free", "0g trans"], "options": ["flavor name: peanut butter dark chocolate", "size: 40 bars"], "instruction_attributes": ["gluten free"], "instruction_options": ["peanut butter dark chocolate"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZC87CY", "worker_id": "A3N9ZYQAESNFQH"}], "B01N5T2UGJ": [{"asin": "B01N5T2UGJ", "instruction": "i'm looking for lumbar support adjustable height wheel chair without arms rest. also tan color one.", "attributes": ["pu leather", "lumbar support"], "options": ["color: tan"], "instruction_attributes": ["lumbar support"], "instruction_options": ["tan"], "assignment_id": "354P56DE9VDCOY11T1135MPMLG4S7P", "worker_id": "A258PTOZ3D2TQR"}], "B07HQS5JN1": [{"asin": "B07HQS5JN1", "instruction": "i need usb cables that have fast charging capabilities.", "attributes": ["output protection", "fast charging"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCY1D0R", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07HQS5JN1", "instruction": "i would like to have a usb cable with output protection.", "attributes": ["output protection", "fast charging"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA93YNZ3B", "worker_id": "A15ERD4HOFEPHM"}], "B09K4WJ974": [{"asin": "B09K4WJ974", "instruction": "i am looking for a memory foam slipper that is suitable for 5-6 size leg . and i would go for white color", "attributes": ["non slip", "memory foam", "ethylene vinyl", "vinyl acetate", "faux fur", "rubber sole"], "options": ["color: white", "size: 5-6"], "instruction_attributes": ["memory foam"], "instruction_options": ["white", "5-6"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662PPM4G", "worker_id": "A2COCSUGZV28X"}], "B09JCBWVZV": [{"asin": "B09JCBWVZV", "instruction": "i need a high power amplifier adapter for home audio.", "attributes": ["power amplifier", "high power", "easy carry"], "options": ["color: amp-power adapter"], "instruction_attributes": ["power amplifier", "high power"], "instruction_options": ["amp-power adapter"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLSAYBG", "worker_id": "A1NF6PELRKACS9"}], "B09N72B4GK": [{"asin": "B09N72B4GK", "instruction": "i am looking for a height adjustable, steel frame desks & desk sets of blue color.", "attributes": ["height adjustable", "steel frame"], "options": ["color: blue"], "instruction_attributes": ["height adjustable", "steel frame"], "instruction_options": [], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM963EG43", "worker_id": "A9QRQL9CFJBI7"}], "B08NK4SHXY": [{"asin": "B08NK4SHXY", "instruction": "i need a fluoride free toothpaste that ensures fresh breath and removes stain. pick a purple colored one.", "attributes": ["fluoride free", "long lasting", "fresh breath"], "options": ["color: purple"], "instruction_attributes": ["fluoride free", "fresh breath"], "instruction_options": ["purple"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VB9BJDC", "worker_id": "A1NF6PELRKACS9"}], "B00GYDBWD6": [{"asin": "B00GYDBWD6", "instruction": "i am looking for some eye shadow in the midnight sky shade.", "attributes": ["dermatologist tested", "eye shadow"], "options": ["color: midnight sky"], "instruction_attributes": ["eye shadow"], "instruction_options": ["midnight sky"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TLVZVR1", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CQB2FZK": [{"asin": "B07CQB2FZK", "instruction": "i will need a high speed coaxial cable made of aluminum alloy. pick the black one.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: dual - black", "size: 25ft"], "instruction_attributes": ["high speed", "aluminum alloy"], "instruction_options": ["dual - black"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PE8X28", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07CQB2FZK", "instruction": "look for a high speed coaxial cable that is about 1 foot. three per pack would be nice.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: dual - black", "size: 1ft - 3 pack"], "instruction_attributes": ["high speed"], "instruction_options": ["1ft - 3 pack"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HG8THYZ", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B07CQB2FZK", "instruction": "i want for a video cables a coaxial cable and aluminum alloy and to be a usa made trishield black", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: usa made trishield - black", "size: 2ft - 3 pack"], "instruction_attributes": ["coaxial cable", "aluminum alloy"], "instruction_options": ["usa made trishield - black"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YK696D", "worker_id": "A19Q021KR28CS8"}, {"asin": "B07CQB2FZK", "instruction": "i need a high speed coaxial cable that is 85 feet in size.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: burial 3ghz rg11, weather seal - orange", "size: 85ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["85ft"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y36IVI", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07CQB2FZK", "instruction": "i'm looking for 210ft of high speed rg-6 coaxial cable that is ready to bury with an orange weather boot.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: direct burial w | weather boot - orange", "size: 210ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["direct burial w | weather boot - orange", "210ft"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGHZW2L", "worker_id": "A2DDPSXH2X96RF"}, {"asin": "B07CQB2FZK", "instruction": "i would like a three pack of 4 ft quad rg11 weather boot high speed coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quad rg11 aerial w | weather boot - black", "size: 4ft - 3 pack"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["quad rg11 aerial w | weather boot - black", "4ft - 3 pack"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHN70JB", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07CQB2FZK", "instruction": "look for a high speed coaxial cable that is about 1 foot. three per pack would be nice.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: dual - black", "size: 1ft - 3 pack"], "instruction_attributes": ["high speed"], "instruction_options": ["1ft - 3 pack"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HG8THYZ", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B07CQB2FZK", "instruction": "can you find me a two pack coaxial cable that's high speed, made of aluminum alloy, and is 15 feet long?", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quadshield nickel plated fitting - black", "size: 15ft - 2 pack"], "instruction_attributes": ["high speed", "aluminum alloy"], "instruction_options": ["15ft - 2 pack"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OWP3MM", "worker_id": "A2CJFO19NY4T5R"}, {"asin": "B07CQB2FZK", "instruction": "i'm looking for coaxial cable for video accessories for electronics.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: burial 3ghz rg11, weather seal - orange", "size: 60 ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["burial 3ghz rg11, weather seal - orange"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6OOKMM1", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07CQB2FZK", "instruction": "i'm looking for high speed net it has quashield-black material type.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quadshield - black", "size: 250ft"], "instruction_attributes": ["high speed"], "instruction_options": ["quadshield - black"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA8TS20", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07CQB2FZK", "instruction": "i need to buy a twenty foot high speed coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: copper, at&t directv fitting - white", "size: 20 ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["20 ft"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXA3CF3", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07CQB2FZK", "instruction": "i am looking for 2 pack of 20ft long quadshield solid copper black color indoor and outdoor coaxial cable", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quadshield solid copper - black", "size: 20ft - 2 pack"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["quadshield solid copper - black", "20ft - 2 pack"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A21CBTHY", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B07CQB2FZK", "instruction": "i am looking for a high speed coaxial cable that is 135 ft long.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: burial 3ghz rg11, weather seal - orange", "size: 135ft"], "instruction_attributes": ["high speed"], "instruction_options": ["135ft"], "assignment_id": "38F71OA9G46M5W32RN3TH53XROXMFL", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CQB2FZK", "instruction": "i'm looking for coaxial cable for video accessories it can intall at any", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: 3ghz dual w | ground - black", "size: 105ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["3ghz dual w | ground - black"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q5GWGQ", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07CQB2FZK", "instruction": "i need a high speed coaxial cable that is 50ft.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: copper, at&t directv fitting - white", "size: 50 ft"], "instruction_attributes": ["high speed"], "instruction_options": ["50 ft"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5IJWIT", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CQB2FZK", "instruction": "i'm looking for 6ft - 3packs of high speed coaxial cable with aluminum alloy.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: solid copper - white", "size: 6ft - 3 pack"], "instruction_attributes": ["high speed", "coaxial cable", "aluminum alloy"], "instruction_options": ["6ft - 3 pack"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA932X3ZX", "worker_id": "A1Q0EUNCS50S8M"}, {"asin": "B07CQB2FZK", "instruction": "i would like a 10 foot long copper coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: copper, weather boot - white", "size: 10ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["copper, weather boot - white", "10ft"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQDO0N3", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07CQB2FZK", "instruction": "buy a 20ft video cable that has aluminum alloy.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: trishield rg11 aerial weather boot - bla...", "size: 20ft"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["20ft"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUMR3RJ", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B07CQB2FZK", "instruction": "i am looking for a high speed 150 ft coaxial cable", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: 3ghz dual w | ground - black", "size: 150 ft"], "instruction_attributes": ["high speed"], "instruction_options": ["150 ft"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR4B5FUD", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CQB2FZK", "instruction": "i would like a 3 ft long copper coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: copper, weather boot - black", "size: 3ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["copper, weather boot - black", "3ft"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2Z6495", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07CQB2FZK", "instruction": "i am looking for a 200ft coaxial cable black in color. indoor/outdoor use.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: direct burial rg-11 - black", "size: 3ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["3ft"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3TLZMG", "worker_id": "A2KW17G25L25R8"}, {"asin": "B07CQB2FZK", "instruction": "i am looking for a 10 foot high speed coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: burial 3ghz rg11, weather seal - orange", "size: 10ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["10ft"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTCUNLW", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07CQB2FZK", "instruction": "i'm looking for a high speed 180 foot coaxial cable with a trishield nickel-plated fitting.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: trishield nickel-plated fitting -black", "size: 180ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["trishield nickel-plated fitting -black", "180ft"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG67GB7", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07CQB2FZK", "instruction": "i would like a 200 foot long coaxial cable made of burial 3ghz rg6..", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: burial 3ghz rg6, directv fitting - orang...", "size: 200ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["burial 3ghz rg6, directv fitting - orang...", "200ft"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZOGHS6", "worker_id": "A1WS884SI0SLO4"}], "B003Z4UKGM": [{"asin": "B003Z4UKGM", "instruction": "i'm looking for a oil free cleansers for acne spot.", "attributes": ["oil free", "sulfate free", "paraben free", "cruelty free"], "options": ["style: acne spot"], "instruction_attributes": ["oil free"], "instruction_options": ["acne spot"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YIAT8M", "worker_id": "A9QRQL9CFJBI7"}], "B093YT5TL6": [{"asin": "B093YT5TL6", "instruction": "i want a laundry bag for my blouse and hosiery.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7CJ5NV", "worker_id": "A1NF6PELRKACS9"}], "B09KDLJV6C": [{"asin": "B09KDLJV6C", "instruction": "i intrested natural flavors pure chocolate extract gluten free 8fl oz", "attributes": ["non gmo", "gluten free", "natural flavors", "quality ingredients"], "options": ["flavor name: pure chocolate extract", "size: 8 fl oz (pack of 1)"], "instruction_attributes": ["natural flavors"], "instruction_options": ["pure chocolate extract", "8 fl oz (pack of 1)"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEBH86A", "worker_id": "A3N9ZYQAESNFQH"}], "B00VBNQJLY": [{"asin": "B00VBNQJLY", "instruction": "i'm looking for a sd card with h1080p hd resolution. also, choose single style 32 gb capacity.", "attributes": ["high speed", "1080p hd"], "options": ["capacity: 32gb", "style: single"], "instruction_attributes": ["high speed"], "instruction_options": ["32gb", "single"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ807YQ1I", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B00VBNQJLY", "instruction": "i would like a 25 pack of 256gig high speed sd cards.", "attributes": ["high speed", "1080p hd"], "options": ["capacity: 256gb", "style: 25-pack"], "instruction_attributes": ["high speed"], "instruction_options": ["256gb", "25-pack"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQ0F4BN", "worker_id": "A1WS884SI0SLO4"}], "B081DFZRPX": [{"asin": "B081DFZRPX", "instruction": "i am looking for a high performance usb flash drive. pick a gold one.", "attributes": ["high performance", "plug play"], "options": ["color: gold", "size: 1tb"], "instruction_attributes": ["high performance"], "instruction_options": ["gold"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXN0YLH", "worker_id": "A1NF6PELRKACS9"}], "B085D4W8C7": [{"asin": "B085D4W8C7", "instruction": "i am looking for a wood finish posters for my living room. and i would go for 30 x 40 size", "attributes": ["ready hang", "wood finish"], "options": ["size: 30 x 40", "style name: white framed"], "instruction_attributes": ["wood finish"], "instruction_options": ["30 x 40"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0SUK11A", "worker_id": "A2COCSUGZV28X"}, {"asin": "B085D4W8C7", "instruction": "i need a bubble bath sticker that is ready to hang.", "attributes": ["ready hang", "wood finish"], "options": ["size: 24 x 30", "style name: gray framed"], "instruction_attributes": ["ready hang"], "instruction_options": ["24 x 30"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJK0BX3", "worker_id": "A19317A3X87NVM"}], "B00451W378": [{"asin": "B00451W378", "instruction": "i would like a non-dairy coffee creamer that is the cinnamon vanilla cream flavor and that comes in a pack of three 150 single servings.", "attributes": ["non dairy", "lactose free", "shelf stable", "gluten free"], "options": ["flavor name: cinnamon vanilla cream", "size: box of 150 singles (pack of 3)"], "instruction_attributes": ["non dairy"], "instruction_options": ["cinnamon vanilla cream", "box of 150 singles (pack of 3)"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E0WS7X0", "worker_id": "A2ECRNQ3X5LEXD"}], "B07536HD18": [{"asin": "B07536HD18", "instruction": "i'm looking for a 19\" neck 38\" sleeve classic fit dress shirts for men.", "attributes": ["machine wash", "classic fit", "relaxed fit", "button closure", "long sleeve"], "options": ["color: french blue", "size: 19\" neck 38\" sleeve"], "instruction_attributes": ["classic fit"], "instruction_options": ["19\" neck 38\" sleeve"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZDTIRIF", "worker_id": "A9QRQL9CFJBI7"}], "B07BGYT1WD": [{"asin": "B07BGYT1WD", "instruction": "i need a non gmo salad topper with glazed pecans.", "attributes": ["artificial ingredients", "non gmo"], "options": [""], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL95VV22", "worker_id": "A1NF6PELRKACS9"}], "B07DFY4Z39": [{"asin": "B07DFY4Z39", "instruction": "i want red shears that are stainless steel and are 5.5 inches long.", "attributes": ["stainless steel", "hair cutting"], "options": ["color: red", "size: 5.5 inches"], "instruction_attributes": ["stainless steel"], "instruction_options": ["red", "5.5 inches"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2TJ532", "worker_id": "A2ECRNQ3X5LEXD"}], "B08K756ZGR": [{"asin": "B08K756ZGR", "instruction": "i am looking for gold plated rca cables.", "attributes": ["power amplifier", "gold plated", "plug play", "easy use"], "options": [""], "instruction_attributes": ["gold plated"], "instruction_options": [], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBKUIGX", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08K756ZGR", "instruction": "i am looking for lightning to rca cable audio aux adapter, stereo y splitter adapter with gold plated and plug play", "attributes": ["power amplifier", "gold plated", "plug play", "easy use"], "options": [""], "instruction_attributes": ["gold plated", "plug play", "easy use"], "instruction_options": [], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GK03SP", "worker_id": "AX2EWYWZM19AZ"}], "B09NC8PLND": [{"asin": "B09NC8PLND", "instruction": "i need a loose fit blouse that is green and in an xx-large.", "attributes": ["loose fit", "long sleeve", "short sleeve", "faux fur"], "options": ["color: a-green", "size: xx-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["a-green", "xx-large"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZAXMKM", "worker_id": "A2ECRNQ3X5LEXD"}], "B0086GDPD4": [{"asin": "B0086GDPD4", "instruction": "i am looking for a 5x long sleeve casual button-down shirts for men.", "attributes": ["easy care", "button closure", "long sleeve"], "options": ["color: teal green", "size: 5x"], "instruction_attributes": ["long sleeve"], "instruction_options": ["5x"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPBJNJ0", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B0086GDPD4", "instruction": "i am looking for medium size long sleeve orange color easy care shirt", "attributes": ["easy care", "button closure", "long sleeve"], "options": ["color: orange", "size: medium"], "instruction_attributes": ["easy care", "long sleeve"], "instruction_options": ["orange", "medium"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7ZQY62", "worker_id": "A258PTOZ3D2TQR"}], "B09NMRJZYL": [{"asin": "B09NMRJZYL", "instruction": "i'm looking for a intel core i5 desktops with 32gb ram | 1tb ssd size.", "attributes": ["core i5", "intel core"], "options": ["size: 32gb ram | 1tb ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["32gb ram | 1tb ssd"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z42SQC7", "worker_id": "A9QRQL9CFJBI7"}], "B098TCLMH7": [{"asin": "B098TCLMH7", "instruction": "i want hair extensions that is easy to apply. the size should be 20 inches long.", "attributes": ["easy apply", "high quality", "hair extensions"], "options": ["color: 4h27#---#straight", "size: 20 inch#"], "instruction_attributes": ["easy apply", "hair extensions"], "instruction_options": ["20 inch#"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G71Y74W", "worker_id": "A1NF6PELRKACS9"}], "B003VTHYK6": [{"asin": "B003VTHYK6", "instruction": "i am looking for a 1000 count french vanilla coffee creamer that is non-dairy.", "attributes": ["non dairy", "lactose free", "shelf stable", "gluten free"], "options": ["flavor name: french vanilla", "size: 1000 count"], "instruction_attributes": ["non dairy"], "instruction_options": ["french vanilla", "1000 count"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXKEYLP", "worker_id": "A2ECRNQ3X5LEXD"}], "B08R6Q7XBJ": [{"asin": "B08R6Q7XBJ", "instruction": "i need stainless steel tongue cleaners to rid of bad breath.", "attributes": ["stainless steel", "bad breath", "oral hygiene"], "options": [""], "instruction_attributes": ["stainless steel", "bad breath"], "instruction_options": [], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHUZQHI", "worker_id": "A1NF6PELRKACS9"}], "B08WJ8BYXT": [{"asin": "B08WJ8BYXT", "instruction": "i would like to order a tom and jerry 4xlarge sweatshirt . the material should be royal blue polyester cotton.", "attributes": ["machine wash", "wash cold", "polyester cotton", "tumble dry"], "options": ["color: royal blue", "size: 4x-large"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["royal blue", "4x-large"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQ7991U", "worker_id": "AHU9OLV0YKIIW"}], "B08LPBLZD4": [{"asin": "B08LPBLZD4", "instruction": "i am looking for an 8 gb ram mini computer with 256 ssd with intel core and dual band wifi. also, pick one with a 1 tb hdd.", "attributes": ["dual band", "intel core"], "options": ["color: core i5-8250u ddr4", "size: 8gb ram 256gb ssd 1tb hdd"], "instruction_attributes": ["dual band", "intel core"], "instruction_options": ["8gb ram 256gb ssd 1tb hdd"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CKPT2U", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B08LPBLZD4", "instruction": "i need an intel core i7 desktop that has 32 gb of ram and 256 ssd.", "attributes": ["dual band", "intel core"], "options": ["color: core i7-8550u ddr4", "size: 32gb ram+256gb ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["core i7-8550u ddr4", "32gb ram+256gb ssd"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWU3DR9E", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08LPBLZD4", "instruction": "i want a baieyu mini computer with intel core i7-8550u ddr4.", "attributes": ["dual band", "intel core"], "options": ["color: core i7-8550u ddr4", "size: 8gb ram 128gb ssd 1tb hdd"], "instruction_attributes": ["intel core"], "instruction_options": ["core i7-8550u ddr4"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NM8X03C", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08LPBLZD4", "instruction": "i am looking for dual band computer windows in 16gb ram 512 ssd", "attributes": ["dual band", "intel core"], "options": ["color: core i7-8550u ddr4", "size: 16gb ram 512gb ssd"], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDT0QZA", "worker_id": "A16M39T60N60NO"}], "B09SQ68L4N": [{"asin": "B09SQ68L4N", "instruction": "i am looking for a teeth whitening toothbrush with silicone brush head. it should be in pink color.", "attributes": ["easy use", "teeth whitening"], "options": ["color: pink", "size: aged 8-12"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["pink"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGI7YI2", "worker_id": "A1NF6PELRKACS9"}], "B09J98XC79": [{"asin": "B09J98XC79", "instruction": "i need a peaky blinder season 1 poster mural which is 36x54in .should be in a wood frame and easy to hang.", "attributes": ["ready hang", "wood frame"], "options": ["color: stretched canvas", "size: poster mural 36x54 in."], "instruction_attributes": ["ready hang", "wood frame"], "instruction_options": ["poster mural 36x54 in."], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8L5FO15", "worker_id": "AHU9OLV0YKIIW"}], "B08S6X7G8B": [{"asin": "B08S6X7G8B", "instruction": "i want a tempered glass screen protector that is compatible with an apple ipad.", "attributes": ["compatible apple", "easy install", "tempered glass"], "options": [""], "instruction_attributes": ["compatible apple", "tempered glass"], "instruction_options": [], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLU7OZDD", "worker_id": "A1NF6PELRKACS9"}], "B098NB1V2X": [{"asin": "B098NB1V2X", "instruction": "i want purchase a long sleev daily wear hand wash denim short having elastic waist and colour should be blue 4", "attributes": ["hand wash", "long lasting", "wash cold", "fashion design", "long sleeve", "elastic waist", "daily wear"], "options": ["color: blue 4", "size: 33"], "instruction_attributes": ["hand wash", "long sleeve", "elastic waist", "daily wear"], "instruction_options": ["blue 4"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F2UYHOK", "worker_id": "A3N9ZYQAESNFQH"}], "B09QQK4HHH": [{"asin": "B09QQK4HHH", "instruction": "i need a 5x large tracksuit that is long sleeve and that is blue.", "attributes": ["wash cold", "slim fit", "hand wash", "polyester spandex", "long sleeve", "everyday wear", "dry clean"], "options": ["color: 3-blue", "size: 5x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["3-blue", "5x-large"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH372MES9", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LLBW8ZC": [{"asin": "B08LLBW8ZC", "instruction": "i am looking for one pack of dental picks for fresh breath that are in a citrus flavor.", "attributes": ["long lasting", "tea tree", "fresh breath", "bad breath"], "options": ["scent name: citrus", "size: 1 pack"], "instruction_attributes": ["fresh breath"], "instruction_options": ["citrus", "1 pack"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLS31CWP", "worker_id": "A2ECRNQ3X5LEXD"}], "B095P581S3": [{"asin": "B095P581S3", "instruction": "i want to find a pair of blue women's walking shoes with memory foam in a size 8.", "attributes": ["non slip", "anti slip", "memory foam", "high heel"], "options": ["color: z05-blue", "size: 8"], "instruction_attributes": ["memory foam"], "instruction_options": ["z05-blue", "8"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWRZ1RP", "worker_id": "A345TDMHP3DQ3G"}], "B09Q5XPMHB": [{"asin": "B09Q5XPMHB", "instruction": "i want faux fur slippers with arch support. choose the one that is red.", "attributes": ["day comfort", "anti slip", "open toe", "faux fur", "arch support", "quality materials", "memory foam"], "options": ["color: a-03 red", "size: 8.5"], "instruction_attributes": ["faux fur", "arch support"], "instruction_options": ["a-03 red"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN20B7YR", "worker_id": "A1NF6PELRKACS9"}], "B08NWJHZDM": [{"asin": "B08NWJHZDM", "instruction": "i am looking for a gift basket with margarita glasses and snacks.", "attributes": ["gift set", "great gift", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTRE7MK", "worker_id": "A1NF6PELRKACS9"}], "B0786DRRHQ": [{"asin": "B0786DRRHQ", "instruction": "i need hair extensions that are 16 inches long in the color 27.", "attributes": ["double sided", "hair extensions"], "options": ["color: 27#", "size: 16 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["27#", "16 inch"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJI7V2LS", "worker_id": "A2ECRNQ3X5LEXD"}], "B016OPV3GO": [{"asin": "B016OPV3GO", "instruction": "i need a soap that is for sensitive skin and that comes in a pack of two.", "attributes": ["tea tree", "natural ingredients", "sensitive skin"], "options": ["size: 5 ounce (pack of 2)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["5 ounce (pack of 2)"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH374UESL", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QCTSSMN": [{"asin": "B09QCTSSMN", "instruction": "i'm looking for a men's red button down casual shirt that is a large slim fit.", "attributes": ["loose fit", "slim fit", "short sleeve", "contrast color", "drawstring waist", "regular fit", "gym workout"], "options": ["color: red", "size: large"], "instruction_attributes": ["slim fit"], "instruction_options": ["red", "large"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2YZJIVN", "worker_id": "A2YNPKYEFDZ6C9"}], "B09RJZ5RX7": [{"asin": "B09RJZ5RX7", "instruction": "i want to find a computer speakers that have a usb port.", "attributes": ["plug play", "usb port"], "options": [""], "instruction_attributes": ["usb port"], "instruction_options": [], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UHREZJ", "worker_id": "A345TDMHP3DQ3G"}], "B09NXKWB92": [{"asin": "B09NXKWB92", "instruction": "i'm looking for long lasting clack teakwood jar candles.", "attributes": ["lead free", "long lasting", "soy wax"], "options": ["color: black teakwood"], "instruction_attributes": ["long lasting"], "instruction_options": ["black teakwood"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRPRJXE", "worker_id": "A9QRQL9CFJBI7"}], "B07NGSSSJS": [{"asin": "B07NGSSSJS", "instruction": "i need some toothpaste that is flouride free and is extra whitening natural mint", "attributes": ["fluoride free", "long lasting"], "options": ["flavor name: extra whitening natural mint"], "instruction_attributes": ["fluoride free"], "instruction_options": ["extra whitening natural mint"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHKA0J8", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07NGSSSJS", "instruction": "i want to buy some fluoride free mixed berry flavored toothpaste.", "attributes": ["fluoride free", "long lasting"], "options": ["flavor name: natural mixed berry"], "instruction_attributes": ["fluoride free"], "instruction_options": ["natural mixed berry"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVQVJKS", "worker_id": "AR9AU5FY1S3RO"}], "B08DVF4LF4": [{"asin": "B08DVF4LF4", "instruction": "find me a coated steel laptop workstation desk with wood finish. it should be white.", "attributes": ["white item", "coated steel", "wood finish", "living room"], "options": [""], "instruction_attributes": ["white item", "coated steel", "wood finish"], "instruction_options": [], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR6473T3H2", "worker_id": "A1NF6PELRKACS9"}], "B09PD5YDC9": [{"asin": "B09PD5YDC9", "instruction": "i'm looking for size medium men's boxer briefs with a comfortable fit. choose the multi color.", "attributes": ["comfortable fit", "elastic waistband"], "options": ["color: multi 2", "size: medium"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["multi 2", "medium"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UO6J1WX", "worker_id": "A1B1J0BQ44ZV72"}], "B08NPJ6Q94": [{"asin": "B08NPJ6Q94", "instruction": "i am looking for a 12 pack of gluten free almonds.", "attributes": ["non gmo", "gluten free", "source vitamin"], "options": ["flavor name: natural", "size: 12 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["12 pack"], "assignment_id": "36ZN444YT28UFQQ45BORC65U261OI6", "worker_id": "A9QRQL9CFJBI7"}], "B08PCJ5594": [{"asin": "B08PCJ5594", "instruction": "i am looking for a lemon scented candle made from soy wax.", "attributes": ["long lasting", "lead free", "soy wax"], "options": ["scent: lemon"], "instruction_attributes": ["soy wax"], "instruction_options": ["lemon"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OHB99D", "worker_id": "A2ECRNQ3X5LEXD"}], "B08PB8643G": [{"asin": "B08PB8643G", "instruction": "i am looking for bubble bee themed cupcake toppers for my daughter's birthday part decorations.", "attributes": ["birthday party", "baby shower"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSENUOOGV", "worker_id": "AHU9OLV0YKIIW"}], "B07SGR4RY9": [{"asin": "B07SGR4RY9", "instruction": "i am looking for a wireless bluetooth earpads.", "attributes": ["easy install", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBLHGIK", "worker_id": "A9QRQL9CFJBI7"}], "B08VVYNXYF": [{"asin": "B08VVYNXYF", "instruction": "i am looking for 4 ounce (pack of 1) quality ingredients snack foods.", "attributes": ["baked fresh", "quality ingredients"], "options": ["size: 4 ounce (pack of 1)"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["4 ounce (pack of 1)"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OB4RT4", "worker_id": "A9QRQL9CFJBI7"}], "B09P3QC6DX": [{"asin": "B09P3QC6DX", "instruction": "i'm looking for a high quality, easy to use shaving brush.", "attributes": ["easy use", "high quality", "quality materials", "hair salon"], "options": [""], "instruction_attributes": ["easy use", "high quality"], "instruction_options": [], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANAYSX1", "worker_id": "AR0VJ5XRG16UJ"}], "B0816LBYLN": [{"asin": "B0816LBYLN", "instruction": "i want yellow pumps that have a rubber sole and are in a size 12.5.", "attributes": ["long lasting", "slip resistant", "rubber outsole", "rubber sole"], "options": ["color: yellow", "size: 12.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["yellow", "12.5"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163LZPQC", "worker_id": "A2ECRNQ3X5LEXD"}], "B00267AETM": [{"asin": "B00267AETM", "instruction": "i'm looking for 8 ounce (pack of 1) oil for dry hair.", "attributes": ["cruelty free", "dry hair"], "options": ["scent: marula", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["dry hair"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8GH6QV", "worker_id": "A9QRQL9CFJBI7"}], "B08WPLJG8N": [{"asin": "B08WPLJG8N", "instruction": "i'm looking for gluten free herb.", "attributes": ["low sodium", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJG6O9F", "worker_id": "A9QRQL9CFJBI7"}], "B09Q1SBPL1": [{"asin": "B09Q1SBPL1", "instruction": "i am looking for a small short sleeves gaiters.", "attributes": ["loose fit", "quick drying", "machine washable", "long sleeve", "short sleeve", "laundry bag", "daily wear"], "options": ["color: facai-bd0579-black", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["small"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZPXJ7JG", "worker_id": "A9QRQL9CFJBI7"}], "B075CVJS1S": [{"asin": "B075CVJS1S", "instruction": "get me a perfume spray that has fine mist and is long lasting.", "attributes": ["design house", "long lasting", "fine mist"], "options": [""], "instruction_attributes": ["long lasting", "fine mist"], "instruction_options": [], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGHZCV1G", "worker_id": "A1NF6PELRKACS9"}], "B09FKYM8D7": [{"asin": "B09FKYM8D7", "instruction": "i am looking for a 84\"wx70\"h machine washable shower curtain sets with dark grey color.", "attributes": ["machine washable", "printing technology"], "options": ["color: dark grey", "size: 84\"wx70\"h"], "instruction_attributes": ["machine washable"], "instruction_options": ["dark grey", "84\"wx70\"h"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHJG0JC", "worker_id": "A9QRQL9CFJBI7"}], "B09QXFBJXL": [{"asin": "B09QXFBJXL", "instruction": "i was looking for a loose fit sweatshirt that has short sleeves and chest pocket. i really like green color.", "attributes": ["loose fit", "hand wash", "long sleeve", "drawstring waist", "elastic waist", "short sleeve"], "options": ["color: green", "size: large"], "instruction_attributes": ["loose fit", "short sleeve"], "instruction_options": ["green"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZS0NRF", "worker_id": "A1NF6PELRKACS9"}], "B09N9YQZZ3": [{"asin": "B09N9YQZZ3", "instruction": "i am looking for white pull-out organizers with nickel finish and size must be 15\" wide.", "attributes": ["nickel finish", "coated steel"], "options": ["color: white", "size: 15\" wide"], "instruction_attributes": ["nickel finish"], "instruction_options": [], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA93TA3ZS", "worker_id": "A9QRQL9CFJBI7"}], "B083R2DBPV": [{"asin": "B083R2DBPV", "instruction": "i need some gluten free and wild caught fish fillets in extra virgin olive oil. i will need a pack of 6 weighing 4.4 ounce.", "attributes": ["wild caught", "non gmo", "gluten free"], "options": ["flavor name: sardines marinara", "size: 4.4 ounce (pack of 6)"], "instruction_attributes": ["wild caught", "gluten free"], "instruction_options": ["4.4 ounce (pack of 6)"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8BK4RG", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B083R2DBPV", "instruction": "wild caught yellowtail fillets size: 4.4 ounce (pack of 12)", "attributes": ["wild caught", "non gmo", "gluten free"], "options": ["flavor name: water", "size: 4.4 ounce (pack of 12)"], "instruction_attributes": ["wild caught"], "instruction_options": ["4.4 ounce (pack of 12)"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBV2IGR", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B083R2DBPV", "instruction": "i'm looking for organic extra virgin olive oil.", "attributes": ["wild caught", "non gmo", "gluten free"], "options": ["flavor name: extra virgin olive oil", "size: 4.4 ounce (pack of 1)"], "instruction_attributes": ["wild caught"], "instruction_options": ["extra virgin olive oil", "4.4 ounce (pack of 1)"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQW2HIE", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B083R2DBPV", "instruction": "i want to find wild caught sardine fillets packed in extra virgin olive oil. the tins should be 4.4 ounces each and i want a package of 12 tins.", "attributes": ["wild caught", "non gmo", "gluten free"], "options": ["flavor name: sardines evoo", "size: 4.4 ounce (pack of 12)"], "instruction_attributes": ["wild caught"], "instruction_options": ["sardines evoo", "4.4 ounce (pack of 12)"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQF2RJ0", "worker_id": "A345TDMHP3DQ3G"}], "B09FZL19KF": [{"asin": "B09FZL19KF", "instruction": "i am looking for the perfect girft of fruit and nuts", "attributes": ["easy use", "perfect gift"], "options": [""], "instruction_attributes": ["perfect gift"], "instruction_options": [], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLU5HDZG", "worker_id": "A2ECRNQ3X5LEXD"}], "B087V4J58N": [{"asin": "B087V4J58N", "instruction": "i'm looking for a long lasting eau de toilette for women.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1ECITG", "worker_id": "A9QRQL9CFJBI7"}], "B07HHKYNX4": [{"asin": "B07HHKYNX4", "instruction": "i need gmo free sesame seeds that come in 1.8 oz.", "attributes": ["gmo free", "gluten free"], "options": ["flavor: natural lentil soup masala", "size: 1.8 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["1.8 ounce (pack of 1)"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6T51MNQ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07HHKYNX4", "instruction": "i would like to get a gmo 3.1 ounce bottle of himalayan black salt with a fine grind.", "attributes": ["gmo free", "gluten free"], "options": ["flavor: himalayan black salt fine grind", "size: 3.1 ounce (pack of 1)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3YTXJ5Q", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07HHKYNX4", "instruction": "i am looking for gmo free sesame seeds that are natural cinnamon flavor.", "attributes": ["gmo free", "gluten free"], "options": ["flavor: natural cinnamon (indian) ground", "size: 2.4 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["natural cinnamon (indian) ground"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQSHB4G", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07HHKYNX4", "instruction": "i'm looking for gluten free it was contain high protein and it was healthy natural black mustard seed ground.", "attributes": ["gmo free", "gluten free"], "options": ["flavor: natural black mustard seed ground", "size: 1.3 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["natural black mustard seed ground"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQDES60", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07HHKYNX4", "instruction": "i am looking for a 0.8 ounce (pack of 1) gluten free sesame seeds", "attributes": ["gmo free", "gluten free"], "options": ["flavor: natural black mustard seed ground", "size: 0.8 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["0.8 ounce (pack of 1)"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3FQ6NO", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07HHKYNX4", "instruction": "i am looking for chana masala seasoning that is gluten free", "attributes": ["gmo free", "gluten free"], "options": ["flavor: indian chat masala sesaoning spice", "size: 3.1 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["indian chat masala sesaoning spice"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPIM6VZ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07HHKYNX4", "instruction": "i need a three ounce package of ground cumin seeds that are gmo free.", "attributes": ["gmo free", "gluten free"], "options": ["flavor: natural cumin seed ground", "size: 3.1 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["natural cumin seed ground", "3.1 ounce (pack of 1)"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66SNZFN", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07HHKYNX4", "instruction": "i am looking for gluten free black rock salt made by himalayan . and i choose the 2.8 ounce pack with himalayan pink salt coarse grind", "attributes": ["gmo free", "gluten free"], "options": ["flavor: himalayan pink salt coarse grind", "size: 2.8 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["himalayan pink salt coarse grind", "2.8 ounce (pack of 1)"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQAR1L2", "worker_id": "A2COCSUGZV28X"}, {"asin": "B07HHKYNX4", "instruction": "i would like a 0.15 ounce pack of natural brown mustard seeds that are gluten free.", "attributes": ["gmo free", "gluten free"], "options": ["flavor: natural brown mustard seed whole", "size: 0.15 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["natural brown mustard seed whole", "0.15 ounce (pack of 1)"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG4Z45S", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07HHKYNX4", "instruction": "i'm looking for a himalayan black rock salt which is free from gmo and gluten. also, choose a pack of 1 weighting 0.8 ounce, natural turmeric minced whole.", "attributes": ["gmo free", "gluten free"], "options": ["flavor: natural turmeric minced whole", "size: 0.8 ounce (pack of 1)"], "instruction_attributes": ["gmo free", "gluten free"], "instruction_options": ["natural turmeric minced whole", "0.8 ounce (pack of 1)"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXSBAWAN", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B07HHKYNX4", "instruction": "i want to buy himalayan salt which is gmo free and has natural coriander seed ground flavor, and comes in pack of 1 of 0.8 ounces.", "attributes": ["gmo free", "gluten free"], "options": ["flavor: natural coriander seed ground", "size: 0.8 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["natural coriander seed ground", "0.8 ounce (pack of 1)"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9C6N8L", "worker_id": "AJY5G987IRT25"}], "B0009XNWVC": [{"asin": "B0009XNWVC", "instruction": "i am looking for a paraben free lip gloss with vitamin e and aloe. choose the pink pearl one.", "attributes": ["paraben free", "green tea"], "options": ["color: pink pearl"], "instruction_attributes": ["paraben free"], "instruction_options": ["pink pearl"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZBBKM0", "worker_id": "A1NF6PELRKACS9"}], "B09KV4Y9J1": [{"asin": "B09KV4Y9J1", "instruction": "i am looking for a large tunic that is 2-pink and short sleeve.", "attributes": ["machine wash", "short sleeve", "dry clean"], "options": ["color: 2-pink", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["2-pink", "large"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CH6TNBY", "worker_id": "A2ECRNQ3X5LEXD"}], "B087GBBN1C": [{"asin": "B087GBBN1C", "instruction": "i looking gluten free italian ground sausage", "attributes": ["artificial ingredients", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQ78CJA", "worker_id": "A3N9ZYQAESNFQH"}], "B074FHTGJ3": [{"asin": "B074FHTGJ3", "instruction": "i'm looking for 7 count (pack of 4) low sugar, low carb, & keto friendly candy & chocolate bars.", "attributes": ["low sugar", "keto friendly", "low carb", "plant based", "lactose free", "soy free", "non gmo", "gluten free", "resealable bag"], "options": ["flavor name: keto bundle", "size: 7 count (pack of 4)"], "instruction_attributes": ["low sugar", "keto friendly", "low carb"], "instruction_options": ["7 count (pack of 4)"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3VUJ1NA", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B074FHTGJ3", "instruction": "i would like a box of 12 raspberry dream non-gmo chocolate bars.", "attributes": ["low sugar", "keto friendly", "low carb", "plant based", "lactose free", "soy free", "non gmo", "gluten free", "resealable bag"], "options": ["flavor name: raspberry dream", "size: 12 count (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["raspberry dream", "12 count (pack of 1)"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTN4E57", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B074FHTGJ3", "instruction": "i would like a box of 12 raspberry dream non-gmo chocolate bars.", "attributes": ["low sugar", "keto friendly", "low carb", "plant based", "lactose free", "soy free", "non gmo", "gluten free", "resealable bag"], "options": ["flavor name: raspberry dream", "size: 12 count (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["raspberry dream", "12 count (pack of 1)"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTN4E57", "worker_id": "A1WS884SI0SLO4"}], "B086PXHMSV": [{"asin": "B086PXHMSV", "instruction": "i need some eco friendly blackout curtains. it should be 52x45 inches in size.", "attributes": ["eco friendly", "machine washable", "dining room"], "options": ["size: 52x45in"], "instruction_attributes": ["eco friendly"], "instruction_options": ["52x45in"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0SUU11K", "worker_id": "A1NF6PELRKACS9"}], "B09MMCHHYP": [{"asin": "B09MMCHHYP", "instruction": "i want a loose fit, long sleeved flannel shirt. i am xx-large in size.", "attributes": ["loose fit", "machine wash", "long sleeve", "short sleeve", "teen girls", "daily wear"], "options": ["color: wine", "size: xx-large"], "instruction_attributes": ["loose fit", "long sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7ZX9GX6", "worker_id": "A1NF6PELRKACS9"}], "B07FD3Z753": [{"asin": "B07FD3Z753", "instruction": "i'd like to find a king-sized faux lather platform bed in the camel color.", "attributes": ["button tufted", "queen size", "white item", "faux leather", "metal legs"], "options": ["color: camel", "size: king", "style: bed"], "instruction_attributes": ["faux leather"], "instruction_options": ["camel", "king", "bed"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227958FW", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07FD3Z753", "instruction": "i would like a king sized camel bed with metal legs.", "attributes": ["button tufted", "queen size", "white item", "faux leather", "metal legs"], "options": ["color: camel", "size: king", "style: bed"], "instruction_attributes": ["metal legs"], "instruction_options": ["camel", "king", "bed"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8GDR5O", "worker_id": "A1WS884SI0SLO4"}], "B07JFCQ32Z": [{"asin": "B07JFCQ32Z", "instruction": "i'm looking for a rubber plastic light weight 11colorful map case cover for (a1502 | a1425) macbook pro 13\" retina", "attributes": ["light weight", "case cover"], "options": ["color: 11colorful map", "size: (a1502 | a1425) macbook pro 13\" retina"], "instruction_attributes": ["light weight", "case cover"], "instruction_options": ["11colorful map", "(a1502 | a1425) macbook pro 13\" retina"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQ6Q191", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B07JFCQ32Z", "instruction": "i need a light weight case cover compatible with macbook air in size a1706, a1708, a1989, a2159, mac pro 13\"2019|18. the color should be 11creative lamp.", "attributes": ["light weight", "case cover"], "options": ["color: 11creative lamp", "size: a1706 | a1708 | a1989 | a2159 mac pro 13\"2019 | 18"], "instruction_attributes": ["light weight", "case cover"], "instruction_options": ["11creative lamp", "a1706 | a1708 | a1989 | a2159 mac pro 13\"2019 | 18"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJSTBXC", "worker_id": "ASWFLI3N8X72G"}, {"asin": "B07JFCQ32Z", "instruction": "i would like a a1706 good night giraffe light weight case for my laptop.", "attributes": ["light weight", "case cover"], "options": ["color: 24 good night giraffe", "size: a1706 | a1708 | a1989 | a2159 mac pro 13\"2019 | 18"], "instruction_attributes": ["light weight"], "instruction_options": ["24 good night giraffe", "a1706 | a1708 | a1989 | a2159 mac pro 13\"2019 | 18"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68IHA4L", "worker_id": "A1WS884SI0SLO4"}], "B09P1CF764": [{"asin": "B09P1CF764", "instruction": "i need an easy use cocktail smoker kit for infusing cocktail, whiskey, wine, meat and salad", "attributes": ["easy use", "great gift"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX3RPU1A", "worker_id": "A258PTOZ3D2TQR"}], "B09PH817FC": [{"asin": "B09PH817FC", "instruction": "i want a solid wood cupboard with a modern design. pick a white one.", "attributes": ["wall mounted", "white finish", "solid wood"], "options": [""], "instruction_attributes": ["white finish", "solid wood"], "instruction_options": [], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQ5JVKQ", "worker_id": "A1NF6PELRKACS9"}], "B09ST7RWVK": [{"asin": "B09ST7RWVK", "instruction": "i am looking for a hair growth treatment in the color 3pc.", "attributes": ["hair loss", "hair growth"], "options": ["color: 3pc"], "instruction_attributes": ["hair growth"], "instruction_options": ["3pc"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCGOMB2", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FY4NJ3J": [{"asin": "B09FY4NJ3J", "instruction": "can i get a hair salon spa beauty trolley which is easy to clean and of high quality?", "attributes": ["easy use", "high quality", "easy clean", "hair salon", "beauty salon", "damaged hair"], "options": ["color: j"], "instruction_attributes": ["high quality", "easy clean", "hair salon"], "instruction_options": [], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TMJPMA", "worker_id": "AHU9OLV0YKIIW"}], "B08QVQ84FB": [{"asin": "B08QVQ84FB", "instruction": "i need some wall mounted mirrors for the living room.", "attributes": ["wall mounted", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WPMF73", "worker_id": "A2ECRNQ3X5LEXD"}], "B01N97KZLN": [{"asin": "B01N97KZLN", "instruction": "i am looking for a comfertable fit 34w*331 jeans colour should be acron", "attributes": ["long lasting", "comfortable fit"], "options": ["color: acorn", "fit type: relaxed", "size: 34w x 33l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["acorn", "34w x 33l"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8H9Q69", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B01N97KZLN", "instruction": "i'm looking for mens jeans that are slim but comfortable fitting, size 33w and 44l.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: woodburn", "fit type: slim", "size: 33w x 44l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["slim", "33w x 44l"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGUWTWU", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B01N97KZLN", "instruction": "i need slim fitting comfortable jeans that are woodburn color and in a size 31w by 40l.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: woodburn", "fit type: slim", "size: 31w x 40l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["woodburn", "slim", "31w x 40l"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06H7XKD", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01N97KZLN", "instruction": "i am looking for rigid indigo comfortable fit men's wrangler jeans.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: rigid indigo", "fit type: regular", "size: 44w x 38l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["rigid indigo"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW4NS8X", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01N97KZLN", "instruction": "i am looking for big and tall wrangler cowboy cut, comfortable fit original jeans.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: blue | worn in", "fit type: big & tall", "size: 31w x 29l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["big & tall"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL8417MAXO", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01N97KZLN", "instruction": "i'm looking for mens jeans that are slim but comfortable fitting, size 33w and 44l.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: woodburn", "fit type: slim", "size: 33w x 44l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["slim", "33w x 44l"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGUWTWU", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B01N97KZLN", "instruction": "i would like a pair of 44w x 30l slim fit lavon jeans that are long lasting.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: lavon", "fit type: slim", "size: 44w x 30l"], "instruction_attributes": ["long lasting"], "instruction_options": ["lavon", "slim", "44w x 30l"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q730H9A", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01N97KZLN", "instruction": "looking for slim comfortable fit mens jean also choose colour black chocolate", "attributes": ["long lasting", "comfortable fit"], "options": ["color: black chocolate", "fit type: slim", "size: 35w x 36l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["black chocolate", "slim"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95UVXQF", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B01N97KZLN", "instruction": "i am looking for wrangler mens 13mwz cowboy cut , comfortable fit (big & tall ) jean with size 30w x36i", "attributes": ["long lasting", "comfortable fit"], "options": ["color: prewashed indigo", "fit type: big & tall", "size: 30w x 36l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["big & tall", "30w x 36l"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPLUYSP", "worker_id": "AX2EWYWZM19AZ"}], "B094CXMSB6": [{"asin": "B094CXMSB6", "instruction": "i'm looking for a 1 pack of paraben free deodorant.", "attributes": ["paraben free", "cruelty free"], "options": ["size: 1 pack", "style: difference is night and day"], "instruction_attributes": ["paraben free"], "instruction_options": ["1 pack"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XJZNGT", "worker_id": "A9QRQL9CFJBI7"}], "B07GVB34N6": [{"asin": "B07GVB34N6", "instruction": "i am looking for 22\u201dx 22 double sided throw pillow cases for my living room. choose multi 02 color.", "attributes": ["double sided", "living room"], "options": ["color: multi 02", "size: 22\"x22\""], "instruction_attributes": ["double sided", "living room"], "instruction_options": ["multi 02", "22\"x22\""], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI33XDBE", "worker_id": "AHU9OLV0YKIIW"}], "B09DLB7W2D": [{"asin": "B09DLB7W2D", "instruction": "i need gold cupcake toppers for a birthday party.", "attributes": ["birthday party", "party supplies"], "options": ["color: gold"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOBBYD8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PYV6B4B": [{"asin": "B09PYV6B4B", "instruction": "i am looking for a silver quad core tablets.", "attributes": ["long lasting", "quad core"], "options": ["color: silver"], "instruction_attributes": ["quad core"], "instruction_options": ["silver"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZQWZJ0", "worker_id": "A9QRQL9CFJBI7"}], "B07G7G5C4V": [{"asin": "B07G7G5C4V", "instruction": "i want some non gmo organic tomato powder. i will need a 1 pound packet.", "attributes": ["non gmo", "source vitamin"], "options": ["size: 1 pound (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKDEVPC", "worker_id": "A1NF6PELRKACS9"}], "B07GRT6GPS": [{"asin": "B07GRT6GPS", "instruction": "i am looking for peach coloured zebra roller blinds for my living room which are easy to install and should be w57xh55(inch) in size.", "attributes": ["easy install", "living room"], "options": ["color: 03.peach", "size: w57 x h55 (inch)"], "instruction_attributes": ["living room"], "instruction_options": ["03.peach", "w57 x h55 (inch)"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB688L4AZ", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B07GRT6GPS", "instruction": "i need foiresoft basic, white color, w 28 x h 55 inch zebra roller blinds", "attributes": ["easy install", "living room"], "options": ["color: 01.white", "size: w58 1 | 4 x h55 (inch)"], "instruction_attributes": ["easy install"], "instruction_options": ["01.white"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFEGVL3", "worker_id": "A1IL2K0ELYI090"}], "B09NY92KRC": [{"asin": "B09NY92KRC", "instruction": "i need long lasting tooth paste with natural ingredients to remove bad breath, pick a tooth whitening one.", "attributes": ["teeth whitening", "long lasting", "natural ingredients", "fresh breath", "bad breath"], "options": ["color: tooth whitening"], "instruction_attributes": ["long lasting", "natural ingredients", "bad breath"], "instruction_options": ["tooth whitening"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJFGMOF", "worker_id": "A1NF6PELRKACS9"}], "B07Y2JQP93": [{"asin": "B07Y2JQP93", "instruction": "i am looking for whitening face sheet mask which is dermatologically tested and alcohol free with natural ingredients .which is suitable for all skin types procure rosacare soothing sheet face mask pack of 1 gel preferable.", "attributes": ["hyaluronic acid", "coconut oil", "natural ingredients"], "options": ["style: gel 1 pack"], "instruction_attributes": ["hyaluronic acid", "coconut oil", "natural ingredients"], "instruction_options": ["gel 1 pack"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTRXOA0A", "worker_id": "A1DRKZ3SCLAS4V"}], "B078Z151Y6": [{"asin": "B078Z151Y6", "instruction": "i want a solid wood platform bed with box spring. pick one in dark brown.", "attributes": ["box spring", "wood frame", "solid wood"], "options": ["color: dark brown", "pattern name: platform bed + 12 inch mattress", "size: twin", "style: deluxe"], "instruction_attributes": ["box spring", "solid wood"], "instruction_options": ["dark brown"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2VYYU2O", "worker_id": "A1NF6PELRKACS9"}], "B09MHKJHLB": [{"asin": "B09MHKJHLB", "instruction": "i need a winter warm hoodie with long sleeves. it should be white in color.", "attributes": ["winter warm", "long sleeve", "faux fur", "teen girls"], "options": ["color: white", "size: 3x-large"], "instruction_attributes": ["winter warm", "long sleeve"], "instruction_options": ["white"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98L2KY3", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09MHKJHLB", "instruction": "looking for a fleece hoodie oversized size x-large long sleeve for teen girls womens in brown", "attributes": ["winter warm", "long sleeve", "faux fur", "teen girls"], "options": ["color: brown-e", "size: x-large"], "instruction_attributes": ["long sleeve", "teen girls"], "instruction_options": ["brown-e", "x-large"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTKUO6A", "worker_id": "A2Y2TURT2VEYZN"}], "B08N424KPN": [{"asin": "B08N424KPN", "instruction": "i want to buy a birthday cake topper.", "attributes": ["ready use", "birthday cake", "birthday party"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ805T1QK", "worker_id": "A2YNPKYEFDZ6C9"}], "B082L5GRHS": [{"asin": "B082L5GRHS", "instruction": "i'm looking for a flat black vanity light that comes with glass shades.", "attributes": ["vanity light", "glass shade"], "options": ["color: flat black", "size: 1-light"], "instruction_attributes": ["vanity light", "glass shade"], "instruction_options": ["flat black", "1-light"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M45JL86", "worker_id": "A345TDMHP3DQ3G"}], "B082934G44": [{"asin": "B082934G44", "instruction": "i need a pink toddler bed that is height adjustable and is in the size 180x76-96 cm.", "attributes": ["height adjustable", "steel frame"], "options": ["color: pink", "size: 180x76-96cm"], "instruction_attributes": ["height adjustable"], "instruction_options": ["pink", "180x76-96cm"], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLI1CIK1", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B082934G44", "instruction": "i'd like to find a pink crib safety barrier that features a steel frame.", "attributes": ["height adjustable", "steel frame"], "options": ["color: pink", "size: 180x76-96cm"], "instruction_attributes": ["steel frame"], "instruction_options": ["pink"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0Y8I961", "worker_id": "A345TDMHP3DQ3G"}], "B088219FP7": [{"asin": "B088219FP7", "instruction": "i'm looking for 3-wall vanity light.", "attributes": ["nickel finish", "vanity light"], "options": ["color: brushed polished nickel", "size: 3-light"], "instruction_attributes": ["vanity light"], "instruction_options": ["3-light"], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8HTQQC", "worker_id": "A9QRQL9CFJBI7"}], "B07HHMNFP1": [{"asin": "B07HHMNFP1", "instruction": "i need 1 pack of gluten free natural fennel seed ground that has natural garlic minced whole", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: natural garlic minced whole", "size: 0.4 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["0.4 ounce (pack of 1)"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYVT4JT", "worker_id": "A2COCSUGZV28X"}, {"asin": "B07HHMNFP1", "instruction": "i need a 1.9 oz jar of ground mustard seed that is gmo free.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: natural yellow mustard seed ground", "size: 1.9 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["natural yellow mustard seed ground", "1.9 ounce (pack of 1)"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWSVT56", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07HHMNFP1", "instruction": "i would like to get some gmo free 3.1 ounce himalayan pink salt with a coarse grind.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: himalayan pink salt coarse grind", "size: 3.1 ounce (pack of 1)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9IW61S7", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07HHMNFP1", "instruction": "i want a 0.15 ounce bottle of gmo free himalayan pink salt with a medium grind.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: himalayan pink salt medium grind", "size: 0.15 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["himalayan pink salt medium grind", "0.15 ounce (pack of 1)"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LEU5IM", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07HHMNFP1", "instruction": "i am looking for gluten free organic bean chili rajma indian seasoning spice that is gmo free.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: organic bean chili rajma seasoning", "size: 1 ounce (pack of 1)"], "instruction_attributes": ["gmo free", "gluten free"], "instruction_options": ["organic bean chili rajma seasoning"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLVSOZDK", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07HHMNFP1", "instruction": "i am looking for a gluten free fennel seed with no gmo. also choose natural mint leaf whole flavor and 2.4 ounce (pack of 1) size.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: natural mint leaf whole", "size: 2.4 ounce (pack of 1)"], "instruction_attributes": ["gmo free", "gluten free"], "instruction_options": ["natural mint leaf whole"], "assignment_id": "3AAJC4I4FR2295OHP2K845RY0C1ZJE", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B07HHMNFP1", "instruction": "i'm looking for a ground natural fennel seed which is free from bpa, gmo, fat and gluten. also choose a pack of 1 weighting 2.8 ounce with natural kebab seasoning one.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: natural chicken kebab seasoning", "size: 2.8 ounce (pack of 1)"], "instruction_attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "instruction_options": ["natural chicken kebab seasoning", "2.8 ounce (pack of 1)"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCD38MBX", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B07HHMNFP1", "instruction": "i would like a 1.7 ounce bottle of natural curry leaf spice that is gmo free.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: natural curry leaf powder ground", "size: 1.7 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["natural curry leaf powder ground", "1.7 ounce (pack of 1)"], "assignment_id": "3HPZF4IVNX3FW186JO133U513LLCYS", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07HHMNFP1", "instruction": "i am interested in buying ground seeds which are gmo free, and fat free which have himalayan pink salt fine grind flavor and are in pack of 1 of 2.6 ounce.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: himalayan pink salt fine grind", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["gmo free", "fat free"], "instruction_options": ["himalayan pink salt fine grind", "2.6 ounce (pack of 1)"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF7WLDE", "worker_id": "AJY5G987IRT25"}, {"asin": "B07HHMNFP1", "instruction": "i want a 2.6 ounce bottle of himalayan pink salt of a medium grind that is gmo free.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: himalayan pink salt medium grind", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["himalayan pink salt medium grind", "2.6 ounce (pack of 1)"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFF6LVL", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07HHMNFP1", "instruction": "i would like sesame seeds that are gluten free and ginger flavored as well as being .8 oz", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: natural ginger minced whole", "size: 0.8 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["natural ginger minced whole"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP7AD6R", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07HHMNFP1", "instruction": "i am interested in gmo free sesame seeds that have indian rock sugar and are 2.8 ounces", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: indian rock sugar whole", "size: 2.8 ounce (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["indian rock sugar whole", "2.8 ounce (pack of 1)"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMOTW9Z", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JCLQ293": [{"asin": "B09JCLQ293", "instruction": "i need a large log sleeve sweatshirt for daily use. i would prefer z08 red color", "attributes": ["machine wash", "long sleeve", "short sleeve", "button closure", "everyday wear", "gym workout", "daily wear"], "options": ["color: z08 red", "size: large"], "instruction_attributes": ["long sleeve", "daily wear"], "instruction_options": ["z08 red", "large"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YQQ3QZ", "worker_id": "A2COCSUGZV28X"}], "B09BJDLWDW": [{"asin": "B09BJDLWDW", "instruction": "i want to buy a bed frame that requires assembly and is white and full size.", "attributes": ["assembly required", "wood frame", "box spring"], "options": ["color: white (storage)", "size: full"], "instruction_attributes": ["assembly required"], "instruction_options": ["white (storage)", "full"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OOAM3A", "worker_id": "A2YNPKYEFDZ6C9"}], "B0876Z82WY": [{"asin": "B0876Z82WY", "instruction": "i want to get a dye kit for my hair.", "attributes": ["hair dye", "hair styling", "hair salon"], "options": [""], "instruction_attributes": ["hair dye"], "instruction_options": [], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHUTKLAB", "worker_id": "A345TDMHP3DQ3G"}], "B09SD1SDDM": [{"asin": "B09SD1SDDM", "instruction": "help me purchase a blue men's shorts that is machine washable and its size is 38.", "attributes": ["machine washable", "wash cold", "everyday wear", "dry clean", "tumble dry"], "options": ["color: blue", "size: 38"], "instruction_attributes": ["machine washable"], "instruction_options": ["blue", "38"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFE2E93", "worker_id": "A1HMZJ59OPLD1P"}], "B07SXSTQ6Y": [{"asin": "B07SXSTQ6Y", "instruction": "i need some area rugs for the living room that are ivory and grey that are 2'3\" by 12'/", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: ivory | grey", "size: 2'3\" x 12'"], "instruction_attributes": ["living room"], "instruction_options": ["ivory | grey", "2'3\" x 12'"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6C550VD", "worker_id": "A2ECRNQ3X5LEXD"}], "B096XLV4BH": [{"asin": "B096XLV4BH", "instruction": "i want to find a small, sky-blue summer dress that i can wear every day.", "attributes": ["daily casual", "loose fit", "comfortable fit", "elastic waist", "short sleeve"], "options": ["color: e-1 sky blue", "size: small"], "instruction_attributes": ["daily casual"], "instruction_options": ["e-1 sky blue", "small"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTIWTKX", "worker_id": "A345TDMHP3DQ3G"}], "B09JZ58VGS": [{"asin": "B09JZ58VGS", "instruction": "i am trying wallscone light fixture i can use as a reading light in my living room. pick out one that is amber colored.", "attributes": ["glass shade", "light fixture", "living room"], "options": ["color: amber"], "instruction_attributes": ["light fixture", "living room"], "instruction_options": [], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZL240Z", "worker_id": "A31PW970Z2PC5P"}], "B09QRXFB5Z": [{"asin": "B09QRXFB5Z", "instruction": "i am looking for a white classic fit tanks & camis for girl.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: women", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["white"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7Q86YA", "worker_id": "A9QRQL9CFJBI7"}], "B0872HMTXX": [{"asin": "B0872HMTXX", "instruction": "i need a sofa made of solid wood with memory foam. it should be graphite oxford weave in color.", "attributes": ["mid century", "high density", "memory foam", "solid wood", "wood frame"], "options": ["color: graphite oxford weave", "size: sofa"], "instruction_attributes": ["memory foam", "solid wood"], "instruction_options": ["graphite oxford weave"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OICU299", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B0872HMTXX", "instruction": "i am looking for a mid century chair that is a sectional loveseat and is a peppercorn linen weave color.", "attributes": ["mid century", "high density", "memory foam", "solid wood", "wood frame"], "options": ["color: peppercorn linen weave", "size: sectional loveseat"], "instruction_attributes": ["mid century"], "instruction_options": ["peppercorn linen weave", "sectional loveseat"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIJA48I", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SP144VQ": [{"asin": "B09SP144VQ", "instruction": "i am looking for a type a color of binoculars and comes with high power.", "attributes": ["high power", "bird watching"], "options": ["color: type a"], "instruction_attributes": ["high power"], "instruction_options": ["type a"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCZKD0C", "worker_id": "A9QRQL9CFJBI7"}], "B098NRQHJ6": [{"asin": "B098NRQHJ6", "instruction": "i want a twin sized bunk bed with storage space. pick a white one with slide.", "attributes": ["twin size", "white item", "assembly required", "easy assemble", "storage space"], "options": ["color: white with slide", "size: twin over pull out bunk bed"], "instruction_attributes": ["twin size", "white item", "storage space"], "instruction_options": ["white with slide"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYO9PTAB", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B098NRQHJ6", "instruction": "i am looking for twin size twin over pull out bunk bed with trundle and drawers, also grey color with slide", "attributes": ["twin size", "white item", "assembly required", "easy assemble", "storage space"], "options": ["color: grey with slide", "size: twin over pull out bunk bed"], "instruction_attributes": ["twin size"], "instruction_options": ["grey with slide", "twin over pull out bunk bed"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR7KA0Q", "worker_id": "A258PTOZ3D2TQR"}], "B0987MNFM6": [{"asin": "B0987MNFM6", "instruction": "i want easy apply nail tips. i am looking for this particular color called l6041-1", "attributes": ["easy apply", "nail art"], "options": ["color: l6041-1"], "instruction_attributes": ["easy apply"], "instruction_options": ["l6041-1"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7ZYRGXQ", "worker_id": "A1NF6PELRKACS9"}], "B08P4CV11L": [{"asin": "B08P4CV11L", "instruction": "i need a 32 gb usb flash drive that is a pistol color.", "attributes": ["light weight", "plug play", "high speed"], "options": ["color: pistol a", "size: 32gb"], "instruction_attributes": ["high speed"], "instruction_options": ["pistol a", "32gb"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69FGP84", "worker_id": "A2ECRNQ3X5LEXD"}], "B083QQ6M99": [{"asin": "B083QQ6M99", "instruction": "i'm looking for cruelty free tan concealers & neutralizers.", "attributes": ["cruelty free", "fine lines"], "options": ["color: tan"], "instruction_attributes": ["cruelty free"], "instruction_options": ["tan"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4T5NK20", "worker_id": "A9QRQL9CFJBI7"}], "B08GSR75ZG": [{"asin": "B08GSR75ZG", "instruction": "i am looking for large causal top for women's with long sleeve and elastic closure with keep comfortable and fashionable in red tie-dye color of longyuan 2022 women's.", "attributes": ["elastic closure", "long sleeve"], "options": ["color: red tie-dye", "size: large"], "instruction_attributes": ["elastic closure", "long sleeve"], "instruction_options": ["red tie-dye", "large"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGU49RM6", "worker_id": "A1DRKZ3SCLAS4V"}], "B084SZZP4J": [{"asin": "B084SZZP4J", "instruction": "i need a travel size and easy use denture storage box with mirror", "attributes": ["heavy duty", "travel size", "easy use"], "options": [""], "instruction_attributes": ["travel size", "easy use"], "instruction_options": [], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2VXDU21", "worker_id": "A258PTOZ3D2TQR"}], "B093YSCJDM": [{"asin": "B093YSCJDM", "instruction": "i am looking for travel laundry bag for underwear ,bra lingeries", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7PACUE", "worker_id": "A3N9ZYQAESNFQH"}], "B08VGJ6XW8": [{"asin": "B08VGJ6XW8", "instruction": "i'm looking for machine washable twin size electric blanket.", "attributes": ["twin size", "machine washable"], "options": ["size: twin"], "instruction_attributes": ["twin size", "machine washable"], "instruction_options": ["twin"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7AKN5A", "worker_id": "A9QRQL9CFJBI7"}], "B09NKLMWL6": [{"asin": "B09NKLMWL6", "instruction": "i'm looking for a daily wear, long sleeve with high waist night gown. also, choose medium sixe red colored one.", "attributes": ["long sleeve", "high waist", "daily wear"], "options": ["color: red", "size: medium"], "instruction_attributes": ["long sleeve", "high waist", "daily wear"], "instruction_options": ["red", "medium"], "assignment_id": "3X0H8UUITCYRED22199FX2O3E8SSW8", "worker_id": "AR0VJ5XRG16UJ"}], "B08R7MQ6BH": [{"asin": "B08R7MQ6BH", "instruction": "i need glass bottles which are leak proof. pick a pack of 40.", "attributes": ["leak proof", "travel bottles"], "options": [""], "instruction_attributes": ["leak proof", "travel bottles"], "instruction_options": [], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNQF8HV", "worker_id": "A1NF6PELRKACS9"}], "B09CFXLLWM": [{"asin": "B09CFXLLWM", "instruction": "i am looking for jungle powders freeze dried watermelon powder 3.5oz and also 5oz with gmo free", "attributes": ["freeze dried", "gmo free", "easy use"], "options": ["flavor name: apricot", "size: 5oz"], "instruction_attributes": ["gmo free"], "instruction_options": ["5oz"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZC37CT", "worker_id": "AX2EWYWZM19AZ"}], "B07S5Q2Y3B": [{"asin": "B07S5Q2Y3B", "instruction": "i am looking for a certified organic body butters moisturizers for dry skin.", "attributes": ["certified organic", "anti aging", "fine lines", "dry skin"], "options": [""], "instruction_attributes": ["certified organic", "dry skin"], "instruction_options": [], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR025TMKAE", "worker_id": "A9QRQL9CFJBI7"}], "B007JV7EUM": [{"asin": "B007JV7EUM", "instruction": "i'm looking for 1600 watt high power bass surround stereo sound component subwoffers.", "attributes": ["high power", "stereo sound"], "options": ["speakers maximum output power: 1600 watts", "vehicle speaker size: 6.5 in", "voice coil: 2-inch single voice coil 4-ohm"], "instruction_attributes": ["high power", "stereo sound"], "instruction_options": ["1600 watts"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EAZZS2O", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B007JV7EUM", "instruction": "i would like a 15 inch 600 watt speaker with a 2 inch dual voice coil in stereo sound.", "attributes": ["high power", "stereo sound"], "options": ["speakers maximum output power: 600 watts", "vehicle speaker size: 15-inch", "voice coil: 2-inch dual voice coil 4-ohm"], "instruction_attributes": ["stereo sound"], "instruction_options": ["600 watts", "15-inch", "2-inch dual voice coil 4-ohm"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRURJXO", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B007JV7EUM", "instruction": "i am looking for a high powered 12 inch car subwoofer system.", "attributes": ["high power", "stereo sound"], "options": ["speakers maximum output power: 1600 watts", "vehicle speaker size: 12-inch", "voice coil: 2.5-inch single voice coil 4-ohm"], "instruction_attributes": ["high power"], "instruction_options": ["12-inch"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CA7V0K", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B007JV7EUM", "instruction": "i would like a 15 inch 600 watt speaker with a 2 inch dual voice coil in stereo sound.", "attributes": ["high power", "stereo sound"], "options": ["speakers maximum output power: 600 watts", "vehicle speaker size: 15-inch", "voice coil: 2-inch dual voice coil 4-ohm"], "instruction_attributes": ["stereo sound"], "instruction_options": ["600 watts", "15-inch", "2-inch dual voice coil 4-ohm"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRURJXO", "worker_id": "A1WS884SI0SLO4"}], "B09FDPV25C": [{"asin": "B09FDPV25C", "instruction": "i need a i-blue color sleeved pullover sweater of 5x-large size. and it should be machine washable", "attributes": ["easy care", "daily casual", "hand wash", "machine wash", "dry clean"], "options": ["color: i-blue", "size: 5x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["i-blue", "5x-large"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGHYPV1R", "worker_id": "A2COCSUGZV28X"}], "B08TVTGM12": [{"asin": "B08TVTGM12", "instruction": "i need a high gloss wall plate cover. pick a single toggle one.", "attributes": ["heavy duty", "high gloss"], "options": ["style: single toggle"], "instruction_attributes": ["high gloss"], "instruction_options": ["single toggle"], "assignment_id": "351SEKWQSBRP7CP60H83T50CF3JMDW", "worker_id": "A1NF6PELRKACS9"}], "B08QJLH4J5": [{"asin": "B08QJLH4J5", "instruction": "i am looking for a wireless bluetooth speaker bundle. look for black color, please.", "attributes": ["wireless bluetooth", "stereo sound"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC5YNRK8", "worker_id": "A1NF6PELRKACS9"}], "B09PYRDRR8": [{"asin": "B09PYRDRR8", "instruction": "i'm looking for leather sole black color loafers pumps for women high chunky heels, size 8.", "attributes": ["leather sole", "rubber sole"], "options": ["color: black", "size: 8"], "instruction_attributes": ["leather sole"], "instruction_options": ["black", "8"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3MKZ97", "worker_id": "A258PTOZ3D2TQR"}], "B09QPRTV1M": [{"asin": "B09QPRTV1M", "instruction": "i need straight leg and fleece lined chef pants. it should be gray in color.", "attributes": ["straight leg", "loose fit", "water resistant", "fleece lined", "quality polyester", "gym workout"], "options": ["color: gray", "size: xx-large"], "instruction_attributes": ["straight leg", "fleece lined"], "instruction_options": ["gray"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7RSK7W1", "worker_id": "A1NF6PELRKACS9"}], "B08V5JQV3W": [{"asin": "B08V5JQV3W", "instruction": "i'm looking for wireless bluetooth clock radios. also, choose the grey one.", "attributes": ["hands free", "wireless bluetooth"], "options": ["color: gray"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["gray"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSA362H", "worker_id": "A9QRQL9CFJBI7"}], "B08J98S99V": [{"asin": "B08J98S99V", "instruction": "i need an 27 piece set of lip glosses that are fragrance free.", "attributes": ["oil free", "fragrance free"], "options": ["size: 27 piece set"], "instruction_attributes": ["fragrance free"], "instruction_options": ["27 piece set"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4BW98R", "worker_id": "A2ECRNQ3X5LEXD"}], "B00HUCGPNC": [{"asin": "B00HUCGPNC", "instruction": "i'm looking for a 12-ounce package of blueberry harvest granola clusters that are gluten free and high in protein.", "attributes": ["gluten free", "non gmo", "usda organic", "high protein"], "options": ["flavor name: blueberry harvest", "size: 12 ounce (pack of 1)"], "instruction_attributes": ["gluten free", "high protein"], "instruction_options": ["blueberry harvest", "12 ounce (pack of 1)"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNFWFDL3", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B00HUCGPNC", "instruction": "i need a non gmo and usda organic granola cereal. i like the honey nuts and cinnamon flavor.", "attributes": ["gluten free", "non gmo", "usda organic", "high protein"], "options": ["flavor name: honey nuts and cinnamon", "size: 12 ounce (pack of 1)"], "instruction_attributes": ["non gmo", "usda organic"], "instruction_options": ["honey nuts and cinnamon"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBENOKZS", "worker_id": "A1NF6PELRKACS9"}], "B0924DW7YM": [{"asin": "B0924DW7YM", "instruction": "i am looking storage basket for living room having steel frame and can clean easily at large size", "attributes": ["spot clean", "easy clean", "steel frame", "living room"], "options": ["size: l"], "instruction_attributes": ["easy clean", "steel frame", "living room"], "instruction_options": ["l"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAI8QFVU", "worker_id": "A3N9ZYQAESNFQH"}], "B098DS4CJK": [{"asin": "B098DS4CJK", "instruction": "i am looking for high quality full lace black hair wigs for men suffering from hair loss. it should be \u201c7x9\u201d 120% light medium density.", "attributes": ["high quality", "hair loss"], "options": ["color: 630# light brown with 30% gray", "size: 7''x9''120% light medium density"], "instruction_attributes": ["high quality", "hair loss"], "instruction_options": ["7''x9''120% light medium density"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A67BVES", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B098DS4CJK", "instruction": "i am looking for a high quality toupee 120 light medium density 6x8.", "attributes": ["high quality", "hair loss"], "options": ["color: 1b90# natural black with 90% gray", "size: 6''x8' 120%light medium density"], "instruction_attributes": ["high quality"], "instruction_options": ["6''x8' 120%light medium density"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VUTYWZ", "worker_id": "A2KW17G25L25R8"}, {"asin": "B098DS4CJK", "instruction": "i am looking for a high quality lhc full french lace mens toupee european virgin human hair bleached knots hair systen, also color is 720# very light brown with 20% gray", "attributes": ["high quality", "hair loss"], "options": ["color: 720# very light brown with 20% gray", "size: 7''x9''120% light medium density"], "instruction_attributes": ["high quality"], "instruction_options": ["720# very light brown with 20% gray"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOYXONA", "worker_id": "A3RBCGB309WPOC"}, {"asin": "B098DS4CJK", "instruction": "i'm looking for a 7''x9''100%light medium density hair extension with high quality and its color should be 240# darkest brown with 40% gray.", "attributes": ["high quality", "hair loss"], "options": ["color: 240# darkest brown with 40% gray", "size: 7''x9''100%light medium density"], "instruction_attributes": ["high quality"], "instruction_options": ["7''x9''100%light medium density"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0K9HLJG", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B098DS4CJK", "instruction": "i am looking for a high quality hair piece that is medium brown", "attributes": ["high quality", "hair loss"], "options": ["color: 440 medium brown with 40% gray", "size: 6''x9''120% light medium density"], "instruction_attributes": ["high quality"], "instruction_options": ["440 medium brown with 40% gray"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA74CMHN", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B098DS4CJK", "instruction": "you will find this men's wig brand lhc, virgin human hair 550# medium light brown with 50% gray, high quality", "attributes": ["high quality", "hair loss"], "options": ["color: 550# medium light brown with 50% gray", "size: 7''x9''110%light medium density"], "instruction_attributes": ["high quality"], "instruction_options": ["550# medium light brown with 50% gray"], "assignment_id": "3N8OEVH1F204BC17361WW31GEQ7OOU", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B098DS4CJK", "instruction": "i am looking for a 7''x10''100%light density high quality hairpieces", "attributes": ["high quality", "hair loss"], "options": ["color: 365# dark brown with 65% gray", "size: 7''x10''100%light density"], "instruction_attributes": ["high quality"], "instruction_options": ["7''x10''100%light density"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7Q33IA", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B098DS4CJK", "instruction": "i want dark brown and high quality full french lace mens toupee.", "attributes": ["high quality", "hair loss"], "options": ["color: 2# darkest brown", "size: 7''x9''100% light medium density"], "instruction_attributes": ["high quality"], "instruction_options": ["2# darkest brown"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWOL6W0", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B098DS4CJK", "instruction": "i would like a high quality hair piece that is medium brown.", "attributes": ["high quality", "hair loss"], "options": ["color: 450# medium brown with 50% gray", "size: 7''x9''80%light density"], "instruction_attributes": ["high quality"], "instruction_options": ["450# medium brown with 50% gray"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWBRNF0", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HWT771K": [{"asin": "B08HWT771K", "instruction": "i am looking for a silver galaxy watch 3 45mm sm r840 women bands which is easy to install and stainless steel.", "attributes": ["easy install", "quick release", "stainless steel"], "options": ["color: silver"], "instruction_attributes": ["easy install", "stainless steel"], "instruction_options": ["silver"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6C92BV", "worker_id": "AHU9OLV0YKIIW"}], "B01IH8KHMW": [{"asin": "B01IH8KHMW", "instruction": "i am looking for low carb flavor syrup that comes in a six pack of 32 ounces.", "attributes": ["non alcoholic", "low calorie", "low carb", "gluten free", "artificial flavors"], "options": ["size: 32 ounce (6 count)"], "instruction_attributes": ["low carb"], "instruction_options": ["32 ounce (6 count)"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2P094K", "worker_id": "A2ECRNQ3X5LEXD"}], "B08FJ464SN": [{"asin": "B08FJ464SN", "instruction": "i am looking for decorative cupcake picks for my party. pick red ones.", "attributes": ["cupcake picks", "party supplies"], "options": ["color: as shown"], "instruction_attributes": ["cupcake picks", "party supplies"], "instruction_options": ["as shown"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JTZGE2", "worker_id": "A1NF6PELRKACS9"}], "B092MH5RFM": [{"asin": "B092MH5RFM", "instruction": "i need a double sided shower brush with long handle. pick something in pink.", "attributes": ["double sided", "long handle"], "options": ["color: pink"], "instruction_attributes": ["double sided", "long handle"], "instruction_options": ["pink"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDIAHRN", "worker_id": "A1NF6PELRKACS9"}], "B07GP8JXT5": [{"asin": "B07GP8JXT5", "instruction": "i am looking for a high performance pink color on-ear headphones.", "attributes": ["gold plated", "high performance", "hands free", "stereo sound"], "options": ["color: pink"], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3URFVVM16GSBNLZB11OMB709G60ZU2", "worker_id": "A9QRQL9CFJBI7"}], "B0018C5KTU": [{"asin": "B0018C5KTU", "instruction": "i need some shoes that are peony colored with a rubber sole and are a size 6 for kids.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: peony", "size: 6 big kid", "special size: little kid (4-8 years)"], "instruction_attributes": ["rubber sole"], "instruction_options": ["peony", "6 big kid"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXSNMY4", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0018C5KTU", "instruction": "i would like a 2.5 or 3.5 in the uk kids shoe with a rubber sole. can i also get them with a black zebra shimmer.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: black zebra shimmer", "size: 2.5 little kid", "special size: 3.5 uk"], "instruction_attributes": ["rubber outsole", "rubber sole"], "instruction_options": ["black zebra shimmer", "2.5 little kid", "3.5 uk"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB93I8N0", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0018C5KTU", "instruction": "i would like some girls shoes that are in a size 7 and have a watermelon print.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: spanish villa watermelon palms print", "size: 7", "special size: 9.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["spanish villa watermelon palms print", "7"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPBVOC2", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0018C5KTU", "instruction": "i want to find women's black canvas shoes in a size 9. the shoes must have rubber soles.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: black canvas", "size: 9", "special size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black canvas", "9"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YUU8T9", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B0018C5KTU", "instruction": "i'm looking for tom's classic alpargata shoes with rubber soles, in the color cabernet glitter and size 11 toddler.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: cabernet glitter nkt", "size: 11 toddler", "special size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["cabernet glitter nkt", "11 toddler"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGUEJRM0", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B0018C5KTU", "instruction": "i am looking for classic alpargata of pink color having rubber sole.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: pink", "size: 5 big kid", "special size: 5.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["pink"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJON3YDO", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B0018C5KTU", "instruction": "i want to find a pair of silver toddlers' toms with rubber soles. they either need to be a size 10 for us sizing or a size 3.5 for uk sizing.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: silver", "size: 10 toddler", "special size: 3.5 uk"], "instruction_attributes": ["rubber sole"], "instruction_options": ["silver", "10 toddler", "3.5 uk"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCOHB96", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B0018C5KTU", "instruction": "i am looking for girl alpargata with rubber sole.please choose 10 size.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: silver iridescent glimmer", "size: 10", "special size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["10"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWBWNF5", "worker_id": "A3FG5PQHG5AH3Y"}], "B00FBCZCWS": [{"asin": "B00FBCZCWS", "instruction": "i'm looking for gluten free 1.4 ounce (pack of 12) bars.", "attributes": ["gluten free", "individually wrapped"], "options": ["flavor name: honey roasted nuts & sea salt", "size: 1.4 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["1.4 ounce (pack of 12)"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS409UXNU", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B00FBCZCWS", "instruction": "i need to buy some gluten-free snack bars that are blueberry vanilla and cashew flavored and come in a 60 count.", "attributes": ["gluten free", "individually wrapped"], "options": ["flavor name: blueberry vanilla & cashew", "size: 60 count"], "instruction_attributes": ["gluten free"], "instruction_options": ["blueberry vanilla & cashew", "60 count"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UI51GA", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B00FBCZCWS", "instruction": "im looking for gluten free kind bars in the extra dark chocolate and sea salt flavor.", "attributes": ["gluten free", "individually wrapped"], "options": ["flavor name: extra dark chocolate nuts & sea salt", "size: 1.4 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["extra dark chocolate nuts & sea salt"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTRW4VS", "worker_id": "AK3JMCIGU8MLU"}], "B09PRPZMBX": [{"asin": "B09PRPZMBX", "instruction": "i need a long lasting blush in the color a.", "attributes": ["easy apply", "long lasting", "eye shadow"], "options": ["color: a"], "instruction_attributes": ["long lasting"], "instruction_options": ["a"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTOS4E5", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GQMP765": [{"asin": "B07GQMP765", "instruction": "i am looming for a bags & cases for eye shadow.", "attributes": ["bpa free", "eye shadow"], "options": [""], "instruction_attributes": ["eye shadow"], "instruction_options": [], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06ESXKS", "worker_id": "A9QRQL9CFJBI7"}], "B07KW3KCNV": [{"asin": "B07KW3KCNV", "instruction": "hello! order for me caraway seed savory crisps which is sugar free, high protein content and keto friendly.", "attributes": ["grain free", "low carb", "sugar free", "gluten free", "keto friendly", "high protein"], "options": ["flavor name: caraway", "size: 6 ounce (pack of 5)"], "instruction_attributes": ["keto friendly", "high protein"], "instruction_options": ["caraway"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS3540129MUZ", "worker_id": "AHU9OLV0YKIIW"}], "B07D6GFNG8": [{"asin": "B07D6GFNG8", "instruction": "i want some grass fed and low carb jerky. make sure they are original beef sticks.", "attributes": ["grass fed", "low carb", "protein serving"], "options": ["flavor name: original beef sticks"], "instruction_attributes": ["grass fed", "low carb"], "instruction_options": ["original beef sticks"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q7VDH97", "worker_id": "A1NF6PELRKACS9"}], "B08287C795": [{"asin": "B08287C795", "instruction": "i'm looking for a high quality girls accessories and color should be frozen elsa.", "attributes": ["high quality", "rose gold"], "options": ["color: frozen elsa"], "instruction_attributes": ["high quality"], "instruction_options": ["frozen elsa"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA577G9IE", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B08287C795", "instruction": "i would like some rose gold minnie ears", "attributes": ["high quality", "rose gold"], "options": ["color: gold minnie"], "instruction_attributes": ["rose gold"], "instruction_options": ["gold minnie"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4V25YWR", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RQ8FVQJ": [{"asin": "B07RQ8FVQJ", "instruction": "i am looking for hands free headphones in the color mint.", "attributes": ["hands free", "stainless steel"], "options": ["color: mint"], "instruction_attributes": ["hands free"], "instruction_options": ["mint"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFKHT0I", "worker_id": "A2ECRNQ3X5LEXD"}], "B00D5KS0DQ": [{"asin": "B00D5KS0DQ", "instruction": "i am looking for non gmo salmon that is ready to eat. pick a 1 pack size.", "attributes": ["ready eat", "fully cooked", "non gmo"], "options": ["flavor name: smoked sockeye", "size: 1 pack"], "instruction_attributes": ["ready eat", "non gmo"], "instruction_options": ["1 pack"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG15ZYGU", "worker_id": "A1NF6PELRKACS9"}], "B06ZXZC8DQ": [{"asin": "B06ZXZC8DQ", "instruction": "i need an alcohol free hair fragrance that is island vanilla scent.", "attributes": ["alcohol free", "cruelty free"], "options": ["style: island vanilla - pack of 1"], "instruction_attributes": ["alcohol free"], "instruction_options": ["island vanilla - pack of 1"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMHKBQD", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZZRTSKM": [{"asin": "B07ZZRTSKM", "instruction": "i need a long lasting fleece jacket in regular fit. it should be sea salt in color.", "attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "options": ["color: dc - sea salt", "size: 3x-large plus", "team name: north carolina tar heels"], "instruction_attributes": ["long lasting", "regular fit"], "instruction_options": ["dc - sea salt"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YRDQ3B", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07ZZRTSKM", "instruction": "i need a fleece jacket that is regular fit size 3x in the color of sea salt.", "attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "options": ["color: dc - sea salt", "size: 3x", "team name: texas a&m aggies"], "instruction_attributes": ["regular fit"], "instruction_options": ["dc - sea salt", "3x"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKX1UIB", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07ZZRTSKM", "instruction": "i need a fleece jacket that is regular fit size 3x in the color of sea salt.", "attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "options": ["color: dc - sea salt", "size: 3x", "team name: texas a&m aggies"], "instruction_attributes": ["regular fit"], "instruction_options": ["dc - sea salt", "3x"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKX1UIB", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07ZZRTSKM", "instruction": "i'm looking for women jacket for regular fit and classic fit.", "attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "options": ["color: osu - black", "size: 3x-large plus", "team name: notre dame fighting irish"], "instruction_attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "instruction_options": ["osu - black"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8WNZPZ", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07ZZRTSKM", "instruction": "i am looking for regular fit fleece women jacket. please select vivid purple color.", "attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "options": ["color: cle - vivid purple", "size: 1x", "team name: florida gators"], "instruction_attributes": ["regular fit"], "instruction_options": ["cle - vivid purple"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCYT4Q8", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07ZZRTSKM", "instruction": "i'm looking for jacket classic fit for quality materials.", "attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "options": ["color: ark - red velvet", "size: medium", "team name: kentucky wildcats"], "instruction_attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "instruction_options": ["ark - red velvet"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4D6BSJ", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07ZZRTSKM", "instruction": "i want a fleece jacket that is in regular fit and is long lasting. choose an x-small size.", "attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "options": ["color: dc - sea salt", "size: x-small", "team name: michigan state spartans"], "instruction_attributes": ["long lasting", "regular fit"], "instruction_options": ["x-small"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKUBMJJ", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07ZZRTSKM", "instruction": "i would like a large navy penn state nittany lions fleece jacket made from quality materials.", "attributes": ["long lasting", "quality materials", "regular fit", "classic fit"], "options": ["color: um - collegiate navy", "size: large", "team name: penn state nittany lions"], "instruction_attributes": ["quality materials"], "instruction_options": ["um - collegiate navy", "large", "penn state nittany lions"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96CF4GA", "worker_id": "A1WS884SI0SLO4"}], "B00VVHZZHO": [{"asin": "B00VVHZZHO", "instruction": "i need a three pack of heavy duty swivel clips for my phone.", "attributes": ["compatible apple", "heavy duty"], "options": ["style: swivel clip 3 pack"], "instruction_attributes": ["heavy duty"], "instruction_options": ["swivel clip 3 pack"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGFRO0O", "worker_id": "A2ECRNQ3X5LEXD"}], "B00N8KT1J0": [{"asin": "B00N8KT1J0", "instruction": "i'm looking for gluten free and low calorie tasty apple strawberry flavored apple sauce snacks- 3.2 ounce (pack of 4)", "attributes": ["dairy free", "bpa free", "gluten free", "nut free", "low calorie", "kosher certified", "plant based", "non gmo", "high fructose"], "options": ["flavor name: apple strawberry", "size: 3.2 ounce (pack of 4)"], "instruction_attributes": ["gluten free", "low calorie"], "instruction_options": ["apple strawberry"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ48WUL", "worker_id": "A258PTOZ3D2TQR"}], "B09JNXFRTF": [{"asin": "B09JNXFRTF", "instruction": "i'm looking for blush palette that is easy to carry, long lasting and easy to apply. also, look for color a one", "attributes": ["easy apply", "easy carry", "long lasting", "eye shadow"], "options": ["color: a"], "instruction_attributes": ["easy apply", "easy carry", "long lasting"], "instruction_options": ["a"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKLDV7E", "worker_id": "AR0VJ5XRG16UJ"}], "B09CGHW1CP": [{"asin": "B09CGHW1CP", "instruction": "i am looking for 96\"w x 72\"h roller shades of gray color and it is east to install.", "attributes": ["white item", "easy install", "easy clean"], "options": ["color: gray", "size: 96\"w x 72\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["gray", "96\"w x 72\"h"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TF73NG", "worker_id": "A9QRQL9CFJBI7"}], "B0894STBLG": [{"asin": "B0894STBLG", "instruction": "i need matcha and green tea bags that are organics and are 36 count.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: matcha + green tea", "size: 36 count (pack of 1)", "style: tea bags"], "instruction_attributes": ["usda organic"], "instruction_options": ["matcha + green tea", "36 count (pack of 1)"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB4Z2QA0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0894STBLG", "instruction": "looking for iced tea bags pu'erh tea bags certified organic, flavor darjeeling, pack of 1 with 20 count", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: darjeeling", "size: 20 count (pack of 1)", "style: iced tea bags"], "instruction_attributes": ["certified organic"], "instruction_options": ["darjeeling", "20 count (pack of 1)", "iced tea bags"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9TNX57", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B0894STBLG", "instruction": "(i need some usda certified organic green tea and matcha.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: matcha + green tea", "size: 20 count (pack of 1)", "style: iced tea bags"], "instruction_attributes": ["usda organic"], "instruction_options": ["matcha + green tea"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YKRHEZ", "worker_id": "A19317A3X87NVM"}, {"asin": "B0894STBLG", "instruction": "looking for iced tea bags pu'erh tea bags certified organic, flavor darjeeling, pack of 1 with 20 count", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: darjeeling", "size: 20 count (pack of 1)", "style: iced tea bags"], "instruction_attributes": ["certified organic"], "instruction_options": ["darjeeling", "20 count (pack of 1)", "iced tea bags"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9TNX57", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B0894STBLG", "instruction": "i'm looking for certified organic for tea bags for peppermint leaf.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: peppermint leaf", "size: 1 pound (pack of 1)", "style: tea bags"], "instruction_attributes": ["certified organic"], "instruction_options": ["peppermint leaf"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZKHK9U", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B0894STBLG", "instruction": "i am looking for organic sencha flavored tea bags. tea bags must be usda organic.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: sencha", "size: 36 count (pack of 1)", "style: loose leaf"], "instruction_attributes": [], "instruction_options": ["sencha"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y8EIV0", "worker_id": "A3FG5PQHG5AH3Y"}], "B07DY9LLR7": [{"asin": "B07DY9LLR7", "instruction": "i want to find a set of 24 blue jars that are bpa free.", "attributes": ["leak proof", "bpa free"], "options": ["color: blue", "size: 24 jars"], "instruction_attributes": ["bpa free"], "instruction_options": ["blue", "24 jars"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17XY23YV", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07DY9LLR7", "instruction": "i am looking for a blue leak proof bags & cases.", "attributes": ["leak proof", "bpa free"], "options": ["color: blue", "size: 12 jars"], "instruction_attributes": ["leak proof"], "instruction_options": ["blue"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RHOLFV", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07DY9LLR7", "instruction": "i want bpa free and silver plastic container jars with black flat top lids.", "attributes": ["leak proof", "bpa free"], "options": ["color: silver", "size: 24 jars"], "instruction_attributes": ["bpa free"], "instruction_options": ["silver"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3GANQA", "worker_id": "A2RBF3IIJP15IH"}], "B078HW45S6": [{"asin": "B078HW45S6", "instruction": "i want some low rise active shorts that are in a medium and are black charcoal colored.", "attributes": ["low rise", "cotton spandex"], "options": ["color: 2pk - black charcoal", "size: medium"], "instruction_attributes": ["low rise"], "instruction_options": ["2pk - black charcoal", "medium"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8A3C44", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PH3V5XV": [{"asin": "B09PH3V5XV", "instruction": "i am looking for a x- large long fit hoodies & sweatshirts for daily wear.", "attributes": ["loose fit", "quick drying", "machine washable", "long sleeve", "short sleeve", "laundry bag", "daily wear"], "options": ["color: baodan-a179-black", "size: x-large"], "instruction_attributes": ["long sleeve", "daily wear"], "instruction_options": ["x-large"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BFUJVO", "worker_id": "A9QRQL9CFJBI7"}], "B08ZQC14PN": [{"asin": "B08ZQC14PN", "instruction": "i'm looking for a portable wireless bluetooth speakers made of carbon fiber with long lasting battery.", "attributes": ["long lasting", "carbon fiber", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["long lasting", "carbon fiber", "wireless bluetooth"], "instruction_options": [], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZAY48CG", "worker_id": "AR0VJ5XRG16UJ"}], "B07GRX4R2W": [{"asin": "B07GRX4R2W", "instruction": "i want to find peach-colored roller blinds for my living room that are easy to install. they need to be 58 inches in width and 64 inches in height.", "attributes": ["easy install", "living room"], "options": ["color: 03.peach", "size: w58 1 | 4 x h64 (inch)"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["03.peach", "w58 1 | 4 x h64 (inch)"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXLWHAEB", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07GRX4R2W", "instruction": "i need w28 x h64 pastel blue roller blinds that are easy to install.", "attributes": ["easy install", "living room"], "options": ["color: 07.pastel_blue", "size: w28 x h64 (inch) custom"], "instruction_attributes": ["easy install"], "instruction_options": ["07.pastel_blue", "w28 x h64 (inch) custom"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFEIV9D", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07GRX4R2W", "instruction": "i need w28 x h64 pastel blue roller blinds that are easy to install.", "attributes": ["easy install", "living room"], "options": ["color: 07.pastel_blue", "size: w28 x h64 (inch) custom"], "instruction_attributes": ["easy install"], "instruction_options": ["07.pastel_blue", "w28 x h64 (inch) custom"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFEIV9D", "worker_id": "A2RBF3IIJP15IH"}], "B01MZ1MKHK": [{"asin": "B01MZ1MKHK", "instruction": "i'd like to find a pair of sage and valencia colored men's hiking boots with rubber soles. i need them in a size 15.", "attributes": ["long lasting", "rubber sole", "lace closure"], "options": ["color: sage | valencia", "size: 15 regular us"], "instruction_attributes": ["rubber sole"], "instruction_options": ["sage | valencia", "15 regular us"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX3Q51UV", "worker_id": "A345TDMHP3DQ3G"}], "B06Y4585VQ": [{"asin": "B06Y4585VQ", "instruction": "i want a ready to use storage basket that saves space. pick a large bronze colored one.", "attributes": ["space saving", "ready use"], "options": ["color: bronze"], "instruction_attributes": ["space saving", "ready use"], "instruction_options": ["bronze"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39SVOGMP", "worker_id": "A1NF6PELRKACS9"}], "B07MWT9GKP": [{"asin": "B07MWT9GKP", "instruction": "i want a comfortable fit cowboy cut jeans. it should be black in color.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: shadow black", "fit type: slim", "size: 31w x 32l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["shadow black"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN3NI8R", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07MWT9GKP", "instruction": "i want long lasting wrangler mens smoke storm cowboy cut jeans.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: smoke storm", "fit type: regular", "size: 32w x 40l"], "instruction_attributes": ["long lasting"], "instruction_options": ["smoke storm"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYWWUP1F", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07MWT9GKP", "instruction": "looking for jean which comfortable fit and colour must be dax", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: dax", "fit type: relaxed", "size: 33w x 36l"], "instruction_attributes": ["machine wash", "comfortable fit"], "instruction_options": ["dax"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HT5BP9", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B07MWT9GKP", "instruction": "i'm looking for original fit jeans for men.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: oakdale", "fit type: relaxed", "size: 40w x 40l"], "instruction_attributes": ["long lasting", "comfortable fit"], "instruction_options": ["relaxed"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYQNHD3", "worker_id": "A21IUUHBSEVB56"}], "B07ZX3R5LS": [{"asin": "B07ZX3R5LS", "instruction": "i am looking for a pendant light to go in my dining room with dimmer switch.", "attributes": ["pendant light", "dining room"], "options": [""], "instruction_attributes": ["pendant light", "dining room"], "instruction_options": [], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XXZ7FAD", "worker_id": "A1NF6PELRKACS9"}], "B099Z1R6SQ": [{"asin": "B099Z1R6SQ", "instruction": "find me an 8\" sized mattress with full gel memory. it should have a white finish.", "attributes": ["white item", "white finish"], "options": [""], "instruction_attributes": ["white finish"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WOO1AW", "worker_id": "A1NF6PELRKACS9"}], "B07YXW5M4L": [{"asin": "B07YXW5M4L", "instruction": "i want a solid wood, ivory colored bar stool. look for a 26\" metal footrest.", "attributes": ["fully assembled", "assembly required", "solid wood"], "options": ["color: pu leather in creamy gray", "size: 26\" metal footrest"], "instruction_attributes": ["solid wood"], "instruction_options": ["26\" metal footrest"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKUSUIW", "worker_id": "A1NF6PELRKACS9"}], "B088PL8Z6F": [{"asin": "B088PL8Z6F", "instruction": "i would like some over the toilet storage space in the color style-13.", "attributes": ["easy assemble", "storage space", "living room"], "options": ["color: style-13"], "instruction_attributes": ["storage space"], "instruction_options": ["style-13"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39SVRMGY", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RKLJFYC": [{"asin": "B07RKLJFYC", "instruction": "i need a square shaped area rug that is easy to clean. it should be in aqua color.", "attributes": ["easy clean", "spot clean"], "options": ["color: aqua", "item shape: square", "size: 10 ft x 14 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["aqua", "square"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTHIPLX", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07RKLJFYC", "instruction": "i need a 10 foot rug for my living room. make sure it's easy to clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: sunglow", "item shape: runner", "size: 10 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["10 ft"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WS6A1V", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07RKLJFYC", "instruction": "i am looking for an oval shaped easy to clean shag area rug.", "attributes": ["easy clean", "spot clean"], "options": ["color: sunglow", "item shape: oval", "size: 5 ft x 8 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["oval"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7S9BRWR", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07RKLJFYC", "instruction": "i need a 10 foot rug for my living room. make sure it's easy to clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: sunglow", "item shape: runner", "size: 10 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["10 ft"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WS6A1V", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07RKLJFYC", "instruction": "i'm looking for marine blue colored kitchen rugs for kitchen uses.", "attributes": ["easy clean", "spot clean"], "options": ["color: marine blue", "item shape: rectangular", "size: 2 ft 7 in x 13 ft"], "instruction_attributes": ["easy clean", "spot clean"], "instruction_options": ["marine blue"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0251YAKW", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07RKLJFYC", "instruction": "i am looking for area rugs that is of size 4 ft x 4 ft and is easy to clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: dusty rose", "item shape: rectangular", "size: 4 ft x 4 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["4 ft x 4 ft"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746ZIBTC", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07RKLJFYC", "instruction": "i am looking for modern easy clean luxuriously soft round area rug of size 7 ft x 7 ft", "attributes": ["easy clean", "spot clean"], "options": ["color: poppy", "item shape: round", "size: 7 ft x 7 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["round", "7 ft x 7 ft"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK4YIUA", "worker_id": "A258PTOZ3D2TQR"}], "B09MVN8K1P": [{"asin": "B09MVN8K1P", "instruction": "i need a hair styling comb.", "attributes": ["hair styling", "hair dye", "hair salon"], "options": [""], "instruction_attributes": ["hair styling"], "instruction_options": [], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA7V3MHW", "worker_id": "A2ECRNQ3X5LEXD"}], "B07R9666W3": [{"asin": "B07R9666W3", "instruction": "i'm looking for a machine washable men's shorts with classic fit stretchable fabric and has button closure. also, choose cool grey colored one", "attributes": ["machine wash", "classic fit", "stretch fabric", "elastic waist", "button closure"], "options": ["color: city grey | cool grey", "size: 48x10"], "instruction_attributes": ["machine wash", "classic fit", "button closure"], "instruction_options": ["city grey | cool grey"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VAH8E9", "worker_id": "AR0VJ5XRG16UJ"}], "B01LW2NFZX": [{"asin": "B01LW2NFZX", "instruction": "i'm looking for a tablet with usb support and support 4g lte.", "attributes": ["long lasting", "usb port", "4g lte"], "options": [""], "instruction_attributes": ["usb port", "4g lte"], "instruction_options": [], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNECWXIE", "worker_id": "AR0VJ5XRG16UJ"}], "B09M8H129Q": [{"asin": "B09M8H129Q", "instruction": "i want to find an xx-large black men's pullover made of soft, warm material.", "attributes": ["winter warm", "long sleeve", "short sleeve", "soft material"], "options": ["color: e04#black", "size: xx-large"], "instruction_attributes": ["winter warm", "soft material"], "instruction_options": ["e04#black", "xx-large"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7X1TFRF", "worker_id": "A345TDMHP3DQ3G"}], "B000W5MWR2": [{"asin": "B000W5MWR2", "instruction": "i'm looking for a highly pigmented green body paint.", "attributes": ["highly pigmented", "paraben free", "cruelty free"], "options": ["color: green"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["green"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH372YESL", "worker_id": "A9QRQL9CFJBI7"}], "B09SCXL1K4": [{"asin": "B09SCXL1K4", "instruction": "i need open toe wedge sandals with ankle strap. pick a black one.", "attributes": ["non slip", "fleece lined", "open toe", "memory foam", "high waist", "high heel", "closed toe", "ankle strap", "arch support", "tummy control", "rubber sole", "long sleeve"], "options": ["color: a11 - black", "size: 11.5 wide"], "instruction_attributes": ["open toe", "ankle strap"], "instruction_options": ["a11 - black"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9AP2E0", "worker_id": "A1NF6PELRKACS9"}], "B09M92PLHF": [{"asin": "B09M92PLHF", "instruction": "i am looking for 4 pounds (pack of 1) old fashioned hard candy.", "attributes": ["individually wrapped", "old fashioned"], "options": ["size: 4 pounds (pack of 1)", "style: strawberry"], "instruction_attributes": ["old fashioned"], "instruction_options": ["4 pounds (pack of 1)"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOCC9LW", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09M92PLHF", "instruction": "i need two pounds of strawberry hard candy that is individually wrapped.", "attributes": ["individually wrapped", "old fashioned"], "options": ["size: 2 pounds (pack of 1)", "style: strawberry"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["2 pounds (pack of 1)", "strawberry"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PCZXNIX", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GXZZHVD": [{"asin": "B09GXZZHVD", "instruction": "i need a square table that is easy to clean and has a steel frame. the size should be 100*60*74", "attributes": ["easy clean", "steel frame"], "options": ["color: eijia+heimuwen13", "size: 100*60*74gao"], "instruction_attributes": ["steel frame"], "instruction_options": ["100*60*74gao"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHK70J5", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09GXZZHVD", "instruction": "i would like a 70*70*74gao ijia+zhumuwen6 table cloth that is easy to clean.", "attributes": ["easy clean", "steel frame"], "options": ["color: ijia+zhumuwen6", "size: 70*70*74gao"], "instruction_attributes": ["easy clean"], "instruction_options": ["ijia+zhumuwen6", "70*70*74gao"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMXZSAN", "worker_id": "A1WS884SI0SLO4"}], "B07F33RYBG": [{"asin": "B07F33RYBG", "instruction": "i'm looking for a gluten free flavor syrups.", "attributes": ["sugar free", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017TXP4A", "worker_id": "A9QRQL9CFJBI7"}], "B09LGXJY5Q": [{"asin": "B09LGXJY5Q", "instruction": "i would like some super soft throw pillow covers that are baby green and come in pack of 2.", "attributes": ["spot clean", "super soft", "living room"], "options": ["color: baby green", "size: 16\"x 16\", pack of 2"], "instruction_attributes": ["super soft"], "instruction_options": ["baby green", "16\"x 16\", pack of 2"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98KCKYB", "worker_id": "A2ECRNQ3X5LEXD"}], "B00BCG0OB6": [{"asin": "B00BCG0OB6", "instruction": "i am looking for no artificial flavors or preservatives and is non-gmo healthy snacks compatible with keto, vegan, vegetarian, gluten free and low carb diets, gimme\u2019s organic roasted seaweed superfood in teriyaki flavor. pack of 12 0.17 ounce preferable.", "attributes": ["gluten free", "low carb", "non gmo", "artificial flavors"], "options": ["flavor: teriyaki", "size: 0.17 ounce (pack of 12)"], "instruction_attributes": ["gluten free", "low carb"], "instruction_options": ["teriyaki", "0.17 ounce (pack of 12)"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYW84JA", "worker_id": "A1DRKZ3SCLAS4V"}], "B00VEELQOA": [{"asin": "B00VEELQOA", "instruction": "i am looking for a wireless bluetooth speakers.", "attributes": ["long lasting", "hands free", "easy use", "stereo sound", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ5W6KCF", "worker_id": "A9QRQL9CFJBI7"}], "B09CDBTMS3": [{"asin": "B09CDBTMS3", "instruction": "iam looking a leather sole day comfort men's construction boot color also 6\" sft toe wheat", "attributes": ["day comfort", "leather sole"], "options": ["color: 6\" soft toe wheat", "size: 7"], "instruction_attributes": ["day comfort", "leather sole"], "instruction_options": ["6\" soft toe wheat"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJODEDYU", "worker_id": "A3N9ZYQAESNFQH"}], "B00ASJKXSM": [{"asin": "B00ASJKXSM", "instruction": "i'm looking for a whitewashed media chest with a wood finish.", "attributes": ["wood finish", "bronze finish", "solid wood"], "options": ["color: ella - white wash", "style: media chest"], "instruction_attributes": ["wood finish"], "instruction_options": ["ella - white wash", "media chest"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34DJ41D", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B00ASJKXSM", "instruction": "i would like a sahara tan five drawer dresser made of solid wood.", "attributes": ["wood finish", "bronze finish", "solid wood"], "options": ["color: hearst - sahara tan", "style: 5-drawer chest"], "instruction_attributes": ["solid wood"], "instruction_options": ["hearst - sahara tan", "5-drawer chest"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P7OUB9", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00ASJKXSM", "instruction": "i'm looking for wood finish bronze finish furniture the color was mckinney-espresso pine.", "attributes": ["wood finish", "bronze finish", "solid wood"], "options": ["color: mckinney - espresso pine", "style: 5-drawer sweater chest"], "instruction_attributes": ["wood finish", "bronze finish", "solid wood"], "instruction_options": ["mckinney - espresso pine", "5-drawer sweater chest"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS3FG92", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B00ASJKXSM", "instruction": "i want paragon black solid wood", "attributes": ["wood finish", "bronze finish", "solid wood"], "options": ["color: paragon - black", "style: 4-drawer wardrobe chest"], "instruction_attributes": ["solid wood"], "instruction_options": ["paragon - black"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1DSGYL", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B00ASJKXSM", "instruction": "i'm looking for a solid wood dresser with bronze finish. also choose 4-drawer wardrobe chest with boho chic- white washed one.", "attributes": ["wood finish", "bronze finish", "solid wood"], "options": ["color: boho chic - washed white", "style: 4-drawer wardrobe chest"], "instruction_attributes": ["bronze finish", "solid wood"], "instruction_options": ["boho chic - washed white", "4-drawer wardrobe chest"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DYLOTD", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B00ASJKXSM", "instruction": "i need to buy a four drawer wardrobe with a wood finish.", "attributes": ["wood finish", "bronze finish", "solid wood"], "options": ["color: meadow - graphite", "style: 4-drawer wardrobe chest"], "instruction_attributes": ["wood finish"], "instruction_options": ["4-drawer wardrobe chest"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANFVXSD", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B00ASJKXSM", "instruction": "i need to buy a five drawer dresser made out of solid wood.", "attributes": ["wood finish", "bronze finish", "solid wood"], "options": ["color: ocean - natural sengon", "style: 5-drawer chest"], "instruction_attributes": ["solid wood"], "instruction_options": ["5-drawer chest"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V3HU2H", "worker_id": "AR9AU5FY1S3RO"}], "B08C9VSFX2": [{"asin": "B08C9VSFX2", "instruction": "i need a high quality hairpiece for men with light density. it should be in 3# dark brown color.", "attributes": ["high quality", "hair loss"], "options": ["color: 3# dark brown", "size: 7''x9''120% light medium density"], "instruction_attributes": ["high quality"], "instruction_options": ["3# dark brown"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJKV63JG", "worker_id": "A1NF6PELRKACS9"}], "B075K5TXCL": [{"asin": "B075K5TXCL", "instruction": "i want a dust proof keyboard skin which is really thin. it should fit my apple wired keyboard.", "attributes": ["dust proof", "compatible apple"], "options": ["color: ombre purple", "size: for apple wired keyboard (mb110ll | b)"], "instruction_attributes": ["dust proof"], "instruction_options": ["for apple wired keyboard (mb110ll | b)"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0U8CA37", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B075K5TXCL", "instruction": "i am looking for an ombre pink dust proof keyboard skin", "attributes": ["dust proof", "compatible apple"], "options": ["color: ombre pink", "size: for magic keyboard (mla22ll | a)"], "instruction_attributes": ["dust proof"], "instruction_options": ["ombre pink"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0UNCAN", "worker_id": "A2ECRNQ3X5LEXD"}], "B009RB1UNY": [{"asin": "B009RB1UNY", "instruction": "i want a hand crafted gift basket for a new baby arrival event.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["hand crafted", "gift basket"], "instruction_options": [], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YWY74TN", "worker_id": "A1NF6PELRKACS9"}], "B076JLFJSX": [{"asin": "B076JLFJSX", "instruction": "find for me croc flip flops size 13 women with vinyl acetate material. also neo mint almost white in color.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: neo mint almost white", "size: 13 women | 11 men"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["neo mint almost white", "13 women | 11 men"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VB84DJX", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B076JLFJSX", "instruction": "i need some white vinyl flip flops in size 8 for women.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: white", "size: 8 women | 6 men"], "instruction_attributes": ["ethylene vinyl", "vinyl acetate"], "instruction_options": ["white", "8 women | 6 men"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B17TF6H", "worker_id": "A19317A3X87NVM"}], "B093BMWTPG": [{"asin": "B093BMWTPG", "instruction": "i am looking for a x-large hoodies & sweatshirts quality of polyester.", "attributes": ["wash cold", "hand wash", "machine wash", "quality polyester"], "options": ["color: logo brown", "size: x-large"], "instruction_attributes": ["quality polyester"], "instruction_options": ["x-large"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZW8IS3", "worker_id": "A9QRQL9CFJBI7"}], "B08FDCTL68": [{"asin": "B08FDCTL68", "instruction": "i am looking for a 46.5\" solid wood for ottomans and color should be dark gray.", "attributes": ["solid wood", "storage space"], "options": ["color: dark gray", "size: 46.5\""], "instruction_attributes": ["solid wood"], "instruction_options": ["dark gray", "46.5\""], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2U453P", "worker_id": "A9QRQL9CFJBI7"}], "B09PDDZ17X": [{"asin": "B09PDDZ17X", "instruction": "i want a teeth whitening toothpaste that removes plaque stains.", "attributes": ["teeth whitening", "oral hygiene"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3Z4AIRP3CHN69T8YYVQH3KF1X8PX1M", "worker_id": "A1NF6PELRKACS9"}], "B096H133FZ": [{"asin": "B096H133FZ", "instruction": "i am looking for hair cutting scissors in a storage case and should made of stainless steel.", "attributes": ["storage case", "stainless steel", "hair cutting"], "options": [""], "instruction_attributes": ["storage case", "stainless steel", "hair cutting"], "instruction_options": [], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRBVN5YJ", "worker_id": "AHU9OLV0YKIIW"}], "B07NY5HTB8": [{"asin": "B07NY5HTB8", "instruction": "i'm looking for a stainless steel pair of tweezers for hair removal.", "attributes": ["easy carry", "stainless steel", "hair removal"], "options": [""], "instruction_attributes": ["stainless steel", "hair removal"], "instruction_options": [], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VJJXMT", "worker_id": "A345TDMHP3DQ3G"}], "B01DN401DK": [{"asin": "B01DN401DK", "instruction": "i need an oval soft rug that is easy to clean. also, it should be in eggplant purple color.", "attributes": ["easy clean", "spot clean"], "options": ["color: eggplant purple", "shape: oval", "size: 2 ft 6 in x 13 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["eggplant purple", "oval"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZ7ECPC", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B01DN401DK", "instruction": "i am looking for a square 10 by 13 ft area rug that is easy to clean. all white in color", "attributes": ["easy clean", "spot clean"], "options": ["color: snow white", "shape: square", "size: 10 x 13 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["snow white", "square", "10 x 13 ft"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NAMKBM", "worker_id": "A36LOA6VLJU157"}, {"asin": "B01DN401DK", "instruction": "i need an easy to clean lilac rug in a rectangular runner shape.", "attributes": ["easy clean", "spot clean"], "options": ["color: lilac", "shape: rectangular runner", "size: 7 ft 0 x 7 ft 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["lilac", "rectangular runner"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B99WTVY", "worker_id": "A19317A3X87NVM"}, {"asin": "B01DN401DK", "instruction": "i want to find an oval-shaped plush rog that is 4 feet by 4 feet and ivory colored. it needs to be easy to spot clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: ivory", "shape: oval", "size: 4 ft 0 x 4 ft 0"], "instruction_attributes": ["easy clean", "spot clean"], "instruction_options": ["ivory", "oval", "4 ft 0 x 4 ft 0"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTIP5VM", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01DN401DK", "instruction": "i need a rectangular runner that is easy to clean. pick a cherry red one.", "attributes": ["easy clean", "spot clean"], "options": ["color: cherry red", "shape: rectangular runner", "size: 3 ft 3 in x 3 ft 3 in"], "instruction_attributes": ["easy clean"], "instruction_options": ["cherry red", "rectangular runner"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XAHRFX", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B01DN401DK", "instruction": "i'm looking for shag collection area modern spot clean oval shaped rug of size 8 ft x 11 ft", "attributes": ["easy clean", "spot clean"], "options": ["color: taupe", "shape: oval", "size: 8 ft x 11 ft"], "instruction_attributes": ["spot clean"], "instruction_options": ["oval", "8 ft x 11 ft"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFBOD9E", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01DN401DK", "instruction": "using cocoa it's easy clean to rectangular shape room", "attributes": ["easy clean", "spot clean"], "options": ["color: cocoa", "shape: rectangular", "size: 10 ft 0 x 13 ft 11 rectangular"], "instruction_attributes": ["easy clean"], "instruction_options": ["cocoa", "rectangular"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5W9F4E", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B01DN401DK", "instruction": "i am looking for a 7 ft 0 x 7 ft 0 spot clean area rugs", "attributes": ["easy clean", "spot clean"], "options": ["color: jet black", "shape: rectangular", "size: 7 ft 0 x 7 ft 0"], "instruction_attributes": ["spot clean"], "instruction_options": ["7 ft 0 x 7 ft 0"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBGXHG3", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B01DN401DK", "instruction": "i'm looking for an easy-to-clean snow-white rug.", "attributes": ["easy clean", "spot clean"], "options": ["color: snow white", "shape: round", "size: 2 ft 6 x 13 ft 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["snow white"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z5JXGD", "worker_id": "A13PVNQT2WWWVL"}, {"asin": "B01DN401DK", "instruction": "i'm looking for a unique loom solo solid shag collection area.", "attributes": ["easy clean", "spot clean"], "options": ["color: chocolate brown", "shape: octagon", "size: 8 ft x 11 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["chocolate brown", "octagon", "8 ft x 11 ft"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFW33E6", "worker_id": "A1ZGOZQF2VZ0X9"}, {"asin": "B01DN401DK", "instruction": "i need a easy clean solo solid modern round shaped snow white plush rug of 8 ft x 8 ft size", "attributes": ["easy clean", "spot clean"], "options": ["color: snow white", "shape: round", "size: 8 ft 0 x 8 ft 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["snow white", "round", "8 ft 0 x 8 ft 0"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5BDBQUF", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01DN401DK", "instruction": "i am looking for an easy to clean ivory colored plush area rug.", "attributes": ["easy clean", "spot clean"], "options": ["color: ivory", "shape: rectangular runner", "size: 7 ft 0 x 7 ft 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["ivory"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8M94RR", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01DN401DK", "instruction": "i am looking for an octagon shaped easy to clean plush area rug.", "attributes": ["easy clean", "spot clean"], "options": ["color: terracotta", "shape: octagon", "size: 2 ft 6 in x 16 ft 5 in"], "instruction_attributes": ["easy clean"], "instruction_options": ["octagon"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67W0TF7W", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01DN401DK", "instruction": "i am looking for 5 ft easy clean sun yellow modern plush rug square shaped", "attributes": ["easy clean", "spot clean"], "options": ["color: tuscan sun yellow", "shape: square", "size: 5 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["tuscan sun yellow", "square", "5 ft"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB179LU6", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01DN401DK", "instruction": "i am interested in buying modern rugs which are easy to clean, and are in aqua blue color, their shape should be rectangular runner and are of a size of 7 ft x 10 ft.", "attributes": ["easy clean", "spot clean"], "options": ["color: aqua blue", "shape: rectangular runner", "size: 7 ft x 10 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["aqua blue", "rectangular runner", "7 ft x 10 ft"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCMIE0P", "worker_id": "AJY5G987IRT25"}, {"asin": "B01DN401DK", "instruction": "i'm looking for a snow white colored oval area rug that is easy for me to clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: snow white", "shape: oval", "size: 2 ft 6 x 13 ft 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["snow white", "oval"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OWFOPP", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B01DN401DK", "instruction": "i want to buy a unique lom solo easy to clean that is in taupe color with rectangular shape", "attributes": ["easy clean", "spot clean"], "options": ["color: taupe", "shape: rectangular", "size: 9 x 12 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["taupe", "rectangular"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISVDOY2", "worker_id": "ADOV0TU2G016A"}, {"asin": "B01DN401DK", "instruction": "i'm looking for jet black rug. the size should be around 6 x 10 ft and i want it to be very easy to clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: jet black", "shape: octagonal", "size: 2 ft 6 x 10 ft 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["jet black", "2 ft 6 x 10 ft 0"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRDAWNY", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B01DN401DK", "instruction": "i am looking for a slate blue plush rug that is easy to clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: slate blue", "shape: rectangular runner", "size: 10 ft 2 in"], "instruction_attributes": ["easy clean"], "instruction_options": ["slate blue"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R18O2IB", "worker_id": "A1EREKSZAA9V7B"}], "B09J8FXDK6": [{"asin": "B09J8FXDK6", "instruction": "i'm looking for a optical zoom night vision binoculars & goggles.", "attributes": ["high definition", "optical zoom", "bird watching"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BO5SONJ", "worker_id": "A9QRQL9CFJBI7"}], "B07BQ5B2B1": [{"asin": "B07BQ5B2B1", "instruction": "i need some caffeine free fruit juice. pick a pack of 12.", "attributes": ["caffeine free", "natural ingredients"], "options": ["flavor name: watermelon strawberry", "size: 16 fl oz (pack of 12)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["16 fl oz (pack of 12)"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HRV1D8", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07BQ5B2B1", "instruction": "i need a 12 pack of caffeine free nantucket nectars pomegranate cherry juice.", "attributes": ["caffeine free", "natural ingredients"], "options": ["flavor name: pomegranate cherry", "size: 16 fl oz (pack of 12)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["pomegranate cherry", "16 fl oz (pack of 12)"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXPFO5Q", "worker_id": "A2RBF3IIJP15IH"}], "B099972W26": [{"asin": "B099972W26", "instruction": "i am looking for standing baker's racks kitchen shelf which is superior strength and durability,with universal wheelswhich is easy to move it allow for easy positioning in the kitchen, multipurpose shelves rack in gold color preferable.", "attributes": ["easy clean", "easy assemble", "storage space"], "options": ["color: gold"], "instruction_attributes": ["easy clean", "easy assemble", "storage space"], "instruction_options": ["gold"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJKWJ3JV", "worker_id": "A1DRKZ3SCLAS4V"}], "B0924Y8CWX": [{"asin": "B0924Y8CWX", "instruction": "i am looking for easy to prepare and easy to use shan kashmiri rogan josh recipe and seasoning mix 1.76 oz (50g) spice powder pack of 6 in murgh cholay flavor.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: murgh cholay", "size: pack of 6"], "instruction_attributes": ["easy prepare", "easy use"], "instruction_options": ["pack of 6"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGCWW28", "worker_id": "A1DRKZ3SCLAS4V"}, {"asin": "B0924Y8CWX", "instruction": "i'm looking for meat and vegetable flavored seasoning mix -1.76 oz (pack of 6)", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: meat & vegetable", "size: 1.76 ounce (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["meat & vegetable", "1.76 ounce (pack of 6)"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB5GAXY7", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B0924Y8CWX", "instruction": "i'm looking for a pav bhaji flavored spice powder. choose the one that comes with pack of 4 and are easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: pav bhaji", "size: pack of 4"], "instruction_attributes": ["easy use"], "instruction_options": ["pav bhaji", "pack of 4"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7V5D60D", "worker_id": "A3MNXK3VDK37SN"}, {"asin": "B0924Y8CWX", "instruction": "i'd like to buy a three pack of one point seventy-six ounce fenugreek seasonings. make sure they're easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: kofta", "size: 1.76 ounce (pack of 3)"], "instruction_attributes": ["easy use"], "instruction_options": ["1.76 ounce (pack of 3)"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BJBJVD", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B0924Y8CWX", "instruction": "i would like a 6 pack of 2.1 ounce easy to use and prepare chicken masala.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: chicken masala", "size: 2.1 ounce (pack of 6)"], "instruction_attributes": ["easy prepare", "easy use"], "instruction_options": ["chicken masala", "2.1 ounce (pack of 6)"], "assignment_id": "33F859I56HNA01QBVO1K6A4GVZQBHT", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0924Y8CWX", "instruction": "i would like two packs of chicken white korma spices that are easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: chicken white korma", "size: pack of 2"], "instruction_attributes": ["easy use"], "instruction_options": ["chicken white korma", "pack of 2"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXNYZ2H", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0924Y8CWX", "instruction": "i am looking for easy to prepare chana masala recipe.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: chana masala", "size: 3.5 ounce"], "instruction_attributes": ["easy prepare"], "instruction_options": ["chana masala"], "assignment_id": "3634BBTX0Z409DDB6851PCWGACAFIP", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B0924Y8CWX", "instruction": "i need a six pack of fenugreek", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: chicken white karahi", "size: 1.76 ounce (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["1.76 ounce (pack of 6)"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VMO06G", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0924Y8CWX", "instruction": "i need some indian spices that are easy to use for chana masala", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: chana masala", "size: pack of 4"], "instruction_attributes": ["easy use"], "instruction_options": ["chana masala"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP4UAOY", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0924Y8CWX", "instruction": "i'm looking for shan kashmiri rogan josh recipe and seasoning mix 1.76 oz (50g) pack of 3 easy prepare.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: curry powder 200g", "size: pack of 3"], "instruction_attributes": ["easy prepare"], "instruction_options": ["pack of 3"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGJ3O08", "worker_id": "A15IJ20C3R4HUO"}], "B09QGQW4JW": [{"asin": "B09QGQW4JW", "instruction": "i am looking for ready use, birthday cake toppers with a golf theme.", "attributes": ["ready use", "birthday cake", "cupcake picks", "birthday party"], "options": [""], "instruction_attributes": ["ready use", "birthday cake"], "instruction_options": [], "assignment_id": "3BXQMRHWKA8BOE0SMCYS3540114MUS", "worker_id": "A1NF6PELRKACS9"}], "B01NAOQO2B": [{"asin": "B01NAOQO2B", "instruction": "i want tropical moringa oil & honey daily moisturiser for my natural hair and that can used for hair treatment .pick 8 ounces.", "attributes": ["hair growth", "natural hair", "hair treatment"], "options": [""], "instruction_attributes": ["natural hair", "hair treatment"], "instruction_options": [], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JF9YMV4", "worker_id": "AHU9OLV0YKIIW"}], "B01ESX3G50": [{"asin": "B01ESX3G50", "instruction": "i need a fast charging cable with usb port for an ipad. pick one in gold.", "attributes": ["fast charging", "gold plated", "high speed", "aluminum alloy", "usb port"], "options": ["color: gold", "number of items: 3", "size: 10ft 5a"], "instruction_attributes": ["fast charging", "usb port"], "instruction_options": ["gold"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4VTXYJ", "worker_id": "A1NF6PELRKACS9"}], "B09Q3NVJNM": [{"asin": "B09Q3NVJNM", "instruction": "i am looking for a gry engineered wood for living room.", "attributes": ["engineered wood", "living room"], "options": ["color: gry", "size: nightstands"], "instruction_attributes": ["engineered wood", "living room"], "instruction_options": ["gry"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DY5082C", "worker_id": "A9QRQL9CFJBI7"}], "B08JTT7HJZ": [{"asin": "B08JTT7HJZ", "instruction": "i need a mother of pearl and diamond shaped sparkle glitter that is easy to apply.", "attributes": ["easy apply", "long lasting"], "options": ["color: mother of pearl", "size: diamond shaped"], "instruction_attributes": ["easy apply"], "instruction_options": ["mother of pearl", "diamond shaped"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJLRO9A", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08JTT7HJZ", "instruction": "i need a mother of pearl and diamond shaped sparkle glitter that is easy to apply.", "attributes": ["easy apply", "long lasting"], "options": ["color: mother of pearl", "size: diamond shaped"], "instruction_attributes": ["easy apply"], "instruction_options": ["mother of pearl", "diamond shaped"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJLRO9A", "worker_id": "A2RBF3IIJP15IH"}], "B0919MJH8G": [{"asin": "B0919MJH8G", "instruction": "i am looking for a blue color wireless bluetooth mouse that is plug and play.", "attributes": ["plug play", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["plug play", "wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1Z81PA3", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B0919MJH8G", "instruction": "i am looking for a blue color wireless bluetooth mouse that is plug and play.", "attributes": ["plug play", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["plug play", "wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1Z81PA3", "worker_id": "A1Q8PPQQCWGY0D"}], "B09SCWP1GS": [{"asin": "B09SCWP1GS", "instruction": "i am looking for a 9 piece hair growth herbal spray.", "attributes": ["hair growth", "hair loss"], "options": ["color: 9pcs"], "instruction_attributes": ["hair growth"], "instruction_options": ["9pcs"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRUBJX8", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09SCWP1GS", "instruction": "i am looking for a 9 piece hair growth herbal spray.", "attributes": ["hair growth", "hair loss"], "options": ["color: 9pcs"], "instruction_attributes": ["hair growth"], "instruction_options": ["9pcs"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRUBJX8", "worker_id": "A1EREKSZAA9V7B"}], "B08BLFQXRV": [{"asin": "B08BLFQXRV", "instruction": "buy a white henley with a slim fit.", "attributes": ["hand wash", "slim fit", "machine wash", "short sleeve", "polyester cotton", "daily wear"], "options": ["color: white", "size: xx-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["white"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L84636CN", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08BLFQXRV", "instruction": "buy a white henley with a slim fit.", "attributes": ["hand wash", "slim fit", "machine wash", "short sleeve", "polyester cotton", "daily wear"], "options": ["color: white", "size: xx-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["white"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L84636CN", "worker_id": "AR9AU5FY1S3RO"}], "B004JRHE8Q": [{"asin": "B004JRHE8Q", "instruction": "i'm looking for a long lasting cologne by perry ellis.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "326O153BMT8RVOXTJJKKGXV364UED7", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B004JRHE8Q", "instruction": "i'm looking for a long lasting cologne by perry ellis.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "326O153BMT8RVOXTJJKKGXV364UED7", "worker_id": "A2JP9IKRHNLRPI"}], "B093VB1HSV": [{"asin": "B093VB1HSV", "instruction": "i need a variety pack of keto friendly and gluten free fudge mix.", "attributes": ["keto friendly", "gluten free", "shelf stable", "plant based", "non gmo", "dietary fiber"], "options": ["flavor: variety pack", "size: 3.5 ounce (pack of 3)"], "instruction_attributes": ["keto friendly", "gluten free"], "instruction_options": ["variety pack"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUFZ3CC", "worker_id": "A19317A3X87NVM"}, {"asin": "B093VB1HSV", "instruction": "i need a variety pack of keto friendly and gluten free fudge mix.", "attributes": ["keto friendly", "gluten free", "shelf stable", "plant based", "non gmo", "dietary fiber"], "options": ["flavor: variety pack", "size: 3.5 ounce (pack of 3)"], "instruction_attributes": ["keto friendly", "gluten free"], "instruction_options": ["variety pack"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUFZ3CC", "worker_id": "A19317A3X87NVM"}], "B001MS6PO4": [{"asin": "B001MS6PO4", "instruction": "i am looking for a metallic gray coat rack that is easy to assemble.", "attributes": ["easy assemble", "contemporary design"], "options": ["color: metallic gray | black"], "instruction_attributes": ["easy assemble"], "instruction_options": ["metallic gray | black"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV888V9", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B001MS6PO4", "instruction": "i am looking for a metallic gray coat rack that is easy to assemble.", "attributes": ["easy assemble", "contemporary design"], "options": ["color: metallic gray | black"], "instruction_attributes": ["easy assemble"], "instruction_options": ["metallic gray | black"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV888V9", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JZ3Q2DD": [{"asin": "B09JZ3Q2DD", "instruction": "i am looking for a fleece throw that is maroon and 50\" by 60\"", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: maroon", "size: throw(50\"x60\")"], "instruction_attributes": ["fleece throw"], "instruction_options": ["maroon", "throw(50\"x60\")"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB44SQA0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09JZ3Q2DD", "instruction": "i am looking for a fleece throw that is maroon and 50\" by 60\"", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: maroon", "size: throw(50\"x60\")"], "instruction_attributes": ["fleece throw"], "instruction_options": ["maroon", "throw(50\"x60\")"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB44SQA0", "worker_id": "A2ECRNQ3X5LEXD"}], "B009M4M6NE": [{"asin": "B009M4M6NE", "instruction": "buy me some freeze dried bananas & strawberries.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: bananas & strawberries", "size: 1.3 ounce (pack of 8)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["bananas & strawberries"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBCEGHB", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B009M4M6NE", "instruction": "i want organic freeze-dried mangoes.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: mangoes", "size: strawberries 1.2 ounce & raspberries 1.3...", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["mangoes"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HY1DZ2P", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B009M4M6NE", "instruction": "i want freeze-dried fruits, about 1.5 ounces should be enough. i like blueberries but i don't want anything with gmo.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: bananas & strawberries", "size: 1.5 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["non gmo", "freeze dried"], "instruction_options": ["1.5 ounce (pack of 1)"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2NEM5J", "worker_id": "A1OPJ5I9BF44QH"}, {"asin": "B009M4M6NE", "instruction": "buy me a bag of low calorie, low fat mango strips.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: mango strips", "size: strawberries 1.2 ounce & mangoes 1.5 oun...", "style: bag"], "instruction_attributes": ["low calorie", "fat free"], "instruction_options": ["mango strips", "bag"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWV21CZ", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B009M4M6NE", "instruction": "buy me some freeze dried bananas & strawberries.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: bananas & strawberries", "size: 1.3 ounce (pack of 8)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["bananas & strawberries"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBCEGHB", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B009M4M6NE", "instruction": "i want a bundle of freeze-dried strawberries & bananas beets", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: beets", "size: strawberries 1.2 ounce & bananas 2.5 oun...", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["beets", "strawberries 1.2 ounce & bananas 2.5 oun...", "bundle"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK487A6O", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B009M4M6NE", "instruction": "i am looking for a bag of freeze dried blueberries that are chocolate and banana slice flavored. make sure to pick a non gmo and plant based product.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: chocolate banana slices", "size: strawberries 1.2 ounce & mangoes 1.5 oun...", "style: bag"], "instruction_attributes": ["non gmo", "freeze dried", "plant based"], "instruction_options": ["chocolate banana slices", "bag"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVCL8VU", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B009M4M6NE", "instruction": "i am looking for non gmo, low calorie and plant based organic foods which has flavor: strawberries & corn", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + corn", "size: 1 count (pack of 1)", "style: bag"], "instruction_attributes": ["non gmo", "low calorie", "plant based"], "instruction_options": ["strawberries + corn"], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWNN52B", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B009M4M6NE", "instruction": "i am looking for a 1.2 ounce (pack of 4) non gmo dried berries", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + raspberries", "size: 1.2 ounce (pack of 4)", "style: bag"], "instruction_attributes": ["non gmo"], "instruction_options": ["1.2 ounce (pack of 4)"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZDBE0SV", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B009M4M6NE", "instruction": "i want freeze dried low calorie fat free dried berries size:8 ounce", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + peas", "size: 8 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["freeze dried", "low calorie", "fat free"], "instruction_options": ["8 ounce (pack of 1)", "bundle"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOFYLLS", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B009M4M6NE", "instruction": "i'm looking for a 1.2 ounce bag of freeze-dried strawberries and bananas; they must suit my low-calorie, fat-free diet.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + bananas", "size: 1.2 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["low calorie", "fat free"], "instruction_options": ["strawberries + bananas", "1.2 ounce (pack of 1)", "bag"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBT3JEC", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B009M4M6NE", "instruction": "i would like some non gmo chocolate mango slices", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: chocolate mango slices", "size: 2.2 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["non gmo"], "instruction_options": ["chocolate mango slices"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBILGHU", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B009M4M6NE", "instruction": "i need mango strips that are non gmo", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: mango strips", "size: 2.2 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["non gmo"], "instruction_options": ["mango strips"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227K5F8P", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B009M4M6NE", "instruction": "find fat free dried berries.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + tropical fruits", "size: 1.3 ounce (pack of 12)", "style: bag"], "instruction_attributes": ["fat free"], "instruction_options": [], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCNTBL8", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B009M4M6NE", "instruction": "i want a bag of natierra freeze dried strawberries + apples.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + apples", "size: 1.6 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries + apples"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79H4QKZ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B009M4M6NE", "instruction": "i would like some freeze dried chocolate mango slices that are in a bundle.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: chocolate mango slices", "size: 1.8 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["chocolate mango slices", "bundle"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9HF6K7", "worker_id": "A2ECRNQ3X5LEXD"}], "B07D7SMMX1": [{"asin": "B07D7SMMX1", "instruction": "can you find a navy blue men's cotton heather shirt in medium that has a heart made by a figure skater.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: navy", "fit type: men", "size: medium"], "instruction_attributes": ["cotton heather"], "instruction_options": ["navy", "men", "medium"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YUG3QX", "worker_id": "A2DDPSXH2X96RF"}, {"asin": "B07D7SMMX1", "instruction": "can you find a navy blue men's cotton heather shirt in medium that has a heart made by a figure skater.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: navy", "fit type: men", "size: medium"], "instruction_attributes": ["cotton heather"], "instruction_options": ["navy", "men", "medium"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YUG3QX", "worker_id": "A2DDPSXH2X96RF"}], "B096X55VYR": [{"asin": "B096X55VYR", "instruction": "i need tv antennas that are easy to install.", "attributes": ["easy install", "coaxial cable"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH21V1B", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B096X55VYR", "instruction": "i need tv antennas that are easy to install.", "attributes": ["easy install", "coaxial cable"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH21V1B", "worker_id": "A2ECRNQ3X5LEXD"}], "B07JWC2624": [{"asin": "B07JWC2624", "instruction": "i need to buy a casette recorder. get the one that in style \"convert player\" with included batteries.", "attributes": ["easy use", "batteries included", "plug play"], "options": ["style: convert player"], "instruction_attributes": ["batteries included"], "instruction_options": ["convert player"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8EMNZL", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07JWC2624", "instruction": "i need to buy a casette recorder. get the one that in style \"convert player\" with included batteries.", "attributes": ["easy use", "batteries included", "plug play"], "options": ["style: convert player"], "instruction_attributes": ["batteries included"], "instruction_options": ["convert player"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8EMNZL", "worker_id": "AR9AU5FY1S3RO"}], "B07C2DXR19": [{"asin": "B07C2DXR19", "instruction": "i need a pair of big and tall, long lasting, and comfortable wrangler jeans.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: athens", "fit type: big & tall", "size: 46w x 34l"], "instruction_attributes": ["long lasting", "comfortable fit"], "instruction_options": ["big & tall"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGAVS9C", "worker_id": "A19317A3X87NVM"}, {"asin": "B07C2DXR19", "instruction": "i'm looking for a comfortable pair of big and tall jeans.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: falls city", "fit type: big & tall", "size: 40w x 36l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["big & tall"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWYOGPPM", "worker_id": "A19317A3X87NVM"}, {"asin": "B07C2DXR19", "instruction": "i need a pair of big and tall, long lasting, and comfortable wrangler jeans.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: athens", "fit type: big & tall", "size: 46w x 34l"], "instruction_attributes": ["long lasting", "comfortable fit"], "instruction_options": ["big & tall"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGAVS9C", "worker_id": "A19317A3X87NVM"}, {"asin": "B07C2DXR19", "instruction": "i am looking for a comfortable fit jeans for men of tan color.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: tan", "fit type: relaxed", "size: 29w x 33l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["tan"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU5QRLN", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07C2DXR19", "instruction": "i'm searching for a mustang island colored long lasting regular fit jeans.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: mustang island", "fit type: regular", "size: 36w x 38l"], "instruction_attributes": ["long lasting"], "instruction_options": ["regular"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MC1QYZS", "worker_id": "A9ZM1P6LBW79"}, {"asin": "B07C2DXR19", "instruction": "add to my list a wrangler mens cowboy cut relaxed jeans and should be a comfortable fit.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: straw", "fit type: relaxed", "size: 32w x 36l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["relaxed"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BMUX8L", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B07C2DXR19", "instruction": "i would like some relaxed comfortable fit jeans", "attributes": ["long lasting", "comfortable fit"], "options": ["color: rocky mount", "fit type: relaxed", "size: 32w x 40l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["relaxed"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUOTS44", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07C2DXR19", "instruction": "i am looking for long lasting mens jeans of woodburn color.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: woodburn", "fit type: big & tall", "size: 37w x 36l"], "instruction_attributes": ["long lasting"], "instruction_options": ["woodburn"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF82LDM", "worker_id": "A1Q8PPQQCWGY0D"}], "B099VCHJ2T": [{"asin": "B099VCHJ2T", "instruction": "i need a nail polish carrying case.", "attributes": ["storage case", "nail polish", "nail art"], "options": [""], "instruction_attributes": ["nail polish"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYFLL6M", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B099VCHJ2T", "instruction": "i need a nail polish carrying case.", "attributes": ["storage case", "nail polish", "nail art"], "options": [""], "instruction_attributes": ["nail polish"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYFLL6M", "worker_id": "A2RBF3IIJP15IH"}], "B09PRK9BS6": [{"asin": "B09PRK9BS6", "instruction": "i am looking for a purple butt lifting thong for women.", "attributes": ["hand wash", "butt lifting", "quality polyester"], "options": ["color: purple", "size: medium"], "instruction_attributes": ["butt lifting"], "instruction_options": ["purple"], "assignment_id": "34PGFRQONZLYFAJCEF0151XGISWJW6", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09PRK9BS6", "instruction": "i am looking for a purple butt lifting thong for women.", "attributes": ["hand wash", "butt lifting", "quality polyester"], "options": ["color: purple", "size: medium"], "instruction_attributes": ["butt lifting"], "instruction_options": ["purple"], "assignment_id": "34PGFRQONZLYFAJCEF0151XGISWJW6", "worker_id": "A1EREKSZAA9V7B"}], "B00BXJCFR8": [{"asin": "B00BXJCFR8", "instruction": "i am looking to purchase a light buff and cruelty free manufactured makeup.", "attributes": ["highly pigmented", "cruelty free"], "options": ["color: light buff"], "instruction_attributes": ["cruelty free"], "instruction_options": ["light buff"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZUYZJA", "worker_id": "A114NK7T5673GK"}, {"asin": "B00BXJCFR8", "instruction": "i am looking to purchase a light buff and cruelty free manufactured makeup.", "attributes": ["highly pigmented", "cruelty free"], "options": ["color: light buff"], "instruction_attributes": ["cruelty free"], "instruction_options": ["light buff"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZUYZJA", "worker_id": "A114NK7T5673GK"}], "B09J1ZWZX1": [{"asin": "B09J1ZWZX1", "instruction": "i would like some gray heavy duty spa chairs that look like they belong in a hair salon.", "attributes": ["heavy duty", "hair salon"], "options": ["color: gray 2"], "instruction_attributes": ["heavy duty", "hair salon"], "instruction_options": ["gray 2"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWYU1PPJ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09J1ZWZX1", "instruction": "i would like some gray heavy duty spa chairs that look like they belong in a hair salon.", "attributes": ["heavy duty", "hair salon"], "options": ["color: gray 2"], "instruction_attributes": ["heavy duty", "hair salon"], "instruction_options": ["gray 2"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWYU1PPJ", "worker_id": "A1WS884SI0SLO4"}], "B005M4G23S": [{"asin": "B005M4G23S", "instruction": "i am looking for organic blueberries.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: blueberries", "size: 1 count (pack of 1)", "style: bundle"], "instruction_attributes": ["usda organic"], "instruction_options": ["blueberries", "1 count (pack of 1)"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602QS95W", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B005M4G23S", "instruction": "i am looking for organic blueberries.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: blueberries", "size: 1 count (pack of 1)", "style: bundle"], "instruction_attributes": ["usda organic"], "instruction_options": ["blueberries", "1 count (pack of 1)"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602QS95W", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B005M4G23S", "instruction": "i am looking for freeze dried in bananas and strawberries", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: bananas and strawberries", "size: 1.3 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["bananas and strawberries"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMQBEXM", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B005M4G23S", "instruction": "i'm looking for a plant based, freeze dried fruits which should be usda organic and free from fat and also low in calories. also, choose a pack of 8 which weighs 1.3 ounce bundle with strawberry and pineapple flavored one.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + pineapple", "size: 1.3 ounce (pack of 8)", "style: bundle"], "instruction_attributes": ["freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "instruction_options": ["strawberries + pineapple", "1.3 ounce (pack of 8)", "bundle"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0250NAKJ", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B005M4G23S", "instruction": "i'm looking for a plant based, freeze dried usda organic fruits which should be free from fat and has low calories. also, choose a pack of 4 weights 0.7 ounce bundle with mango flavored one.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: mango strips", "size: 0.7 ounce (pack of 4)", "style: bundle"], "instruction_attributes": ["freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "instruction_options": ["mango strips", "0.7 ounce (pack of 4)", "bundle"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO7P2C2", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B005M4G23S", "instruction": "i want a bag of natierra freeze-dried pineapples.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: beets", "size: 1.2 ounce", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["bag"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG5GBG9", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B005M4G23S", "instruction": "i'm looking for non-gmo freeze dried organic dried banana chips.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: bananas and strawberries", "size: 1.2 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["non gmo", "freeze dried", "usda organic"], "instruction_options": ["bananas and strawberries"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYZW637", "worker_id": "A62B826XMLK7K"}, {"asin": "B005M4G23S", "instruction": "i want natierra freeze-dried strawberries and mangos.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + mangos", "size: 1.2 ounce (pack of 4)", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries + mangos"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNPSTNH", "worker_id": "A2RBF3IIJP15IH"}], "B09S6RYMJ7": [{"asin": "B09S6RYMJ7", "instruction": "i need an exquisite pair of 63 inch long curtains that are also machine washable.", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: b006c13", "size: rod pocket-w 31.5 l 63"], "instruction_attributes": ["machine washable", "exquisite workmanship"], "instruction_options": ["rod pocket-w 31.5 l 63"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISUDYOA", "worker_id": "A19317A3X87NVM"}, {"asin": "B09S6RYMJ7", "instruction": "i need an exquisite pair of 63 inch long curtains that are also machine washable.", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: b006c13", "size: rod pocket-w 31.5 l 63"], "instruction_attributes": ["machine washable", "exquisite workmanship"], "instruction_options": ["rod pocket-w 31.5 l 63"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISUDYOA", "worker_id": "A19317A3X87NVM"}, {"asin": "B09S6RYMJ7", "instruction": "i want to buy some machine washable curtain panels and color b006c22. it needs to have a rod pocket and be size 36 width and 84 length.", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: b006c22", "size: rod pocket-w 36 l 84"], "instruction_attributes": ["machine washable"], "instruction_options": ["b006c22", "rod pocket-w 36 l 84"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7WXHLL", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B09S6RYMJ7", "instruction": "i'm looking for some machine washable window coverings with a 31 and a half inch width. they should come in color \"b006c14.\"", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: b006c14", "size: rod pocket-w 31.5 l 63"], "instruction_attributes": ["machine washable"], "instruction_options": ["b006c14", "rod pocket-w 31.5 l 63"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWEENFT", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09S6RYMJ7", "instruction": "i would like a machine washable window treatment that is in the color b006c33", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: b006c33", "size: grommet-w 36 l 84"], "instruction_attributes": ["machine washable"], "instruction_options": ["b006c33"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X5HY3J", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QM85QH6": [{"asin": "B09QM85QH6", "instruction": "i am looking for white solid wood bunk beds with drawers.", "attributes": ["solid wood", "living room"], "options": ["color: white", "size: full", "style: twin over full bunk bed with ladder"], "instruction_attributes": ["solid wood"], "instruction_options": ["white"], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CU93BF", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09QM85QH6", "instruction": "i am looking for white solid wood bunk beds with drawers.", "attributes": ["solid wood", "living room"], "options": ["color: white", "size: full", "style: twin over full bunk bed with ladder"], "instruction_attributes": ["solid wood"], "instruction_options": ["white"], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CU93BF", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09QM85QH6", "instruction": "can you direct me to a bunk bed that's solid wood and comes in silver? thanks", "attributes": ["solid wood", "living room"], "options": ["color: silver", "size: full", "style: metal triple bunk bed with desk and shel..."], "instruction_attributes": ["solid wood"], "instruction_options": ["silver", "metal triple bunk bed with desk and shel..."], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQSY0P8", "worker_id": "A2TRV8SEM003GG"}], "B07CQ96G4F": [{"asin": "B07CQ96G4F", "instruction": "order a three pack of high speed coaxial cables, please.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: solid copper w | weather boot - white", "size: 5ft - 3 pack"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["5ft - 3 pack"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO4GJGH", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07CQ96G4F", "instruction": "i would like a black 80 foot high speed coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: rg-59, bnc to bnc brass fitting - black", "size: 80ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["rg-59, bnc to bnc brass fitting - black", "80ft"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MT9Y9NO", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07CQ96G4F", "instruction": "i need a high speed 3 pack of coaxial cables", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: trishield weather boot - black", "size: 10ft - 3 pack"], "instruction_attributes": ["high speed"], "instruction_options": ["10ft - 3 pack"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJYUNJUA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for indoor outdoor rg-6 coaxial cable of aluminum alloy and size:95ft", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: trishield nickel-plated fitting -black", "size: 95ft"], "instruction_attributes": ["coaxial cable", "aluminum alloy"], "instruction_options": ["95ft"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96G0FONRE", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B07CQ96G4F", "instruction": "i'm looking for a high-speed coaxial cable that's 15 feet long. it should have a plated fitting.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: burial 3ghz rg11 ni-plated fitting - ora...", "size: 15 ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["burial 3ghz rg11 ni-plated fitting - ora...", "15 ft"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPE3U685", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07CQ96G4F", "instruction": "i'm looking for black quadshield weather boot fitting tri-shield indoor outdoor rg-6 coaxial nickel plated brass connecter 75 ohm cable of size 150ft.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quadshield weather boot fitting - black", "size: 165ft"], "instruction_attributes": ["high speed", "coaxial cable", "aluminum alloy"], "instruction_options": ["quadshield weather boot fitting - black"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RUQDLRA", "worker_id": "A3AGXTSAHA2AFL"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for a 50ft coaxial cable that is black.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: usa made trishield - black", "size: 50 ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["usa made trishield - black", "50 ft"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISUTOYG", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CQ96G4F", "instruction": "order a three pack of high speed coaxial cables, please.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: solid copper w | weather boot - white", "size: 5ft - 3 pack"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["5ft - 3 pack"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO4GJGH", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07CQ96G4F", "instruction": "i'm looking for a 5ft high speed coaxial cable aluminum alloy and quadshield nickel plated fitting", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quadshield nickel plated fitting - white", "size: 5 ft"], "instruction_attributes": ["high speed", "coaxial cable", "aluminum alloy"], "instruction_options": ["quadshield nickel plated fitting - white", "5 ft"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR7CC0V", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for a 3ft high speed coaxial cable made up of aluminum alloy. i need 3 pack of it.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quadshield at&t directv fitting - black", "size: 3ft - 3 pack"], "instruction_attributes": ["high speed", "coaxial cable", "aluminum alloy"], "instruction_options": ["3ft - 3 pack"], "assignment_id": "31JLPPHS254FPN8LK8H48035JW2O3K", "worker_id": "A1V2JTEEBCXR20"}, {"asin": "B07CQ96G4F", "instruction": "i need a long trishield coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: trishield - white", "size: 240ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["240ft"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLVCRDT", "worker_id": "A19317A3X87NVM"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for a 25 ft f-pin-coaxial tip coaxial cable", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: solid copper - black", "size: 25 ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["25 ft"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V53U27", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07CQ96G4F", "instruction": "i'm looking for coaxial code for video accessories it was easy to use.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: copper, nickel plated fitting - white", "size: 140ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["copper, nickel plated fitting - white"], "assignment_id": "351SEKWQSBRP7CP60H83T50CFADDMV", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for a 75 ohm brass connector for coaxial cable nickel . i choose 39ft size cable made with copper", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: copper, at&t directv fitting - black", "size: 390ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["copper, at&t directv fitting - black", "390ft"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8Z2PZA", "worker_id": "A2COCSUGZV28X"}, {"asin": "B07CQ96G4F", "instruction": "i would like a 15 ft direct burial coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: direct burial - orange", "size: 15ft - 2 pack"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["direct burial - orange", "15ft - 2 pack"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA6W8CO", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for a white coaxial cable made of quadshield nickel plated fitting and of high speed.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quadshield nickel plated fitting - white", "size: 270ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["quadshield nickel plated fitting - white"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3TEMZW", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B07CQ96G4F", "instruction": "i need an 80 feet long coaxial cable that is high speed.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: trishield nickel-plated fitting -black", "size: 80ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["80ft"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9H1S1DP", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07CQ96G4F", "instruction": "i would like a 40 foot long trishield nickel plated coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: trishield nickel-plated fitting -white", "size: 40ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["trishield nickel-plated fitting -white", "40ft"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z1AOK1K", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for 140 feet of high speed coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quadshield solid copper - black", "size: 140ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["140ft"], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36C12B3U", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for an 85 foot coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: quad shield rg-6 w | weather boot - black", "size: 85ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["85ft"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYSFQMW", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B07CQ96G4F", "instruction": "i want a 175ft white tri-shield rg-6 coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: dual - white", "size: 175ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["dual - white", "175ft"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJMUO9F", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07CQ96G4F", "instruction": "i need a 230 foot sized high speed coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: burial 3ghz rg11 ni-plated fitting - ora...", "size: 230ft"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["230ft"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRFMWNE", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07CQ96G4F", "instruction": "i need a 40ft high speed coaxial cable", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: 1ft - 3 pack", "size: 40 ft"], "instruction_attributes": ["high speed"], "instruction_options": ["40 ft"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0WT4WP", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CQ96G4F", "instruction": "i need a 220 ft high speed coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: copper 3ghz rg11 w | weather boot - black", "size: 220ft"], "instruction_attributes": ["high speed"], "instruction_options": ["220ft"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IODTLO", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07CQ96G4F", "instruction": "i am looking for 150ft trishield rg11 aerial messenger - black type coaxial cable aluminum alloy", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["material type: trishield rg11 aerial messenger - black", "size: 150ft"], "instruction_attributes": ["coaxial cable", "aluminum alloy"], "instruction_options": ["trishield rg11 aerial messenger - black", "150ft"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PAJUBA", "worker_id": "A258PTOZ3D2TQR"}], "B09HV27SXS": [{"asin": "B09HV27SXS", "instruction": "i'm looking for green color 24 pack merry christmas cupcake decorations for christmas party supplies.", "attributes": ["party supplies", "baby shower", "birthday party"], "options": ["color: green"], "instruction_attributes": ["party supplies"], "instruction_options": ["green"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4FM8MI", "worker_id": "A3AGXTSAHA2AFL"}, {"asin": "B09HV27SXS", "instruction": "i'm looking for green color 24 pack merry christmas cupcake decorations for christmas party supplies.", "attributes": ["party supplies", "baby shower", "birthday party"], "options": ["color: green"], "instruction_attributes": ["party supplies"], "instruction_options": ["green"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4FM8MI", "worker_id": "A3AGXTSAHA2AFL"}], "B001B3RFK8": [{"asin": "B001B3RFK8", "instruction": "i need a 8 fl oz lemon tea tree shampoo that has natural ingredients,", "attributes": ["certified organic", "cruelty free", "tea tree", "natural ingredients"], "options": ["scent: lemon tea", "size: 8 fl oz (pack of 2)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["lemon tea", "8 fl oz (pack of 2)"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHBPBNS", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B001B3RFK8", "instruction": "i need a 8 fl oz lemon tea tree shampoo that has natural ingredients,", "attributes": ["certified organic", "cruelty free", "tea tree", "natural ingredients"], "options": ["scent: lemon tea", "size: 8 fl oz (pack of 2)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["lemon tea", "8 fl oz (pack of 2)"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHBPBNS", "worker_id": "A2RBF3IIJP15IH"}], "B095TWK6H7": [{"asin": "B095TWK6H7", "instruction": "i'm looking for a set of makeup brushes in the color peaceful purple to help me with my eyeshadow makeup.", "attributes": ["cruelty free", "synthetic hair", "eye shadow"], "options": ["color: peaceful purple"], "instruction_attributes": ["eye shadow"], "instruction_options": ["peaceful purple"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79GDQK6", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B095TWK6H7", "instruction": "i'm looking for a set of makeup brushes in the color peaceful purple to help me with my eyeshadow makeup.", "attributes": ["cruelty free", "synthetic hair", "eye shadow"], "options": ["color: peaceful purple"], "instruction_attributes": ["eye shadow"], "instruction_options": ["peaceful purple"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79GDQK6", "worker_id": "A2JP9IKRHNLRPI"}], "B09B4CQMRP": [{"asin": "B09B4CQMRP", "instruction": "i'm looking for a mid-century, white queen bed frame.", "attributes": ["mid century", "white item"], "options": [""], "instruction_attributes": ["mid century", "white item"], "instruction_options": [], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZASLKE", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09B4CQMRP", "instruction": "i'm looking for a mid-century, white queen bed frame.", "attributes": ["mid century", "white item"], "options": [""], "instruction_attributes": ["mid century", "white item"], "instruction_options": [], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZASLKE", "worker_id": "A345TDMHP3DQ3G"}], "B081B9RX7R": [{"asin": "B081B9RX7R", "instruction": "i would like navy fleece slippers that are machine washable and are xx-large.", "attributes": ["machine washable", "memory foam", "everyday wear"], "options": ["color: navy fleece", "size: xx-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["navy fleece", "xx-large"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDXWICR", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B081B9RX7R", "instruction": "i would like navy fleece slippers that are machine washable and are xx-large.", "attributes": ["machine washable", "memory foam", "everyday wear"], "options": ["color: navy fleece", "size: xx-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["navy fleece", "xx-large"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDXWICR", "worker_id": "A2ECRNQ3X5LEXD"}], "B01FUI25OU": [{"asin": "B01FUI25OU", "instruction": "i am looking for a low fat strawberry flavored ultra-filtered milk.", "attributes": ["low fat", "shelf stable", "gluten free", "natural flavors"], "options": ["flavor name: strawberry", "size: 3 pack - 14 fl oz (pack of 12)"], "instruction_attributes": ["low fat"], "instruction_options": ["strawberry"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5D7Z1F", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01FUI25OU", "instruction": "i am looking for a low fat strawberry flavored ultra-filtered milk.", "attributes": ["low fat", "shelf stable", "gluten free", "natural flavors"], "options": ["flavor name: strawberry", "size: 3 pack - 14 fl oz (pack of 12)"], "instruction_attributes": ["low fat"], "instruction_options": ["strawberry"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5D7Z1F", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01FUI25OU", "instruction": "i am looking for a low fat and gluten free classic white flavoured milk.", "attributes": ["low fat", "shelf stable", "gluten free", "natural flavors"], "options": ["flavor name: classic white", "size: 14 fl oz (pack of 24)"], "instruction_attributes": ["low fat", "gluten free"], "instruction_options": ["classic white"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0ZBW45", "worker_id": "A1V2JTEEBCXR20"}, {"asin": "B01FUI25OU", "instruction": "i'm looking for this brand : fairlife yup! low fat, ultra-filtered milk, rich chocolate flavor, all natural flavors), 14 fl oz, (pack of 4).", "attributes": ["low fat", "shelf stable", "gluten free", "natural flavors"], "options": ["flavor name: rich chocolate", "size: 14 fl oz (pack of 4)"], "instruction_attributes": ["low fat"], "instruction_options": ["rich chocolate", "14 fl oz (pack of 4)"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWBHNFQ", "worker_id": "A15IJ20C3R4HUO"}], "B07QJDJL8J": [{"asin": "B07QJDJL8J", "instruction": "i would like a 7 pack of 1.23 ounce gluten free barbecue chips.", "attributes": ["low carb", "gluten free", "keto friendly", "high protein", "sugar free"], "options": ["flavor name: barbecue", "size: 1.23 ounce (pack of 7)"], "instruction_attributes": ["gluten free"], "instruction_options": ["barbecue", "1.23 ounce (pack of 7)"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THTD5Z4", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07QJDJL8J", "instruction": "i would like a 7 pack of 1.23 ounce gluten free barbecue chips.", "attributes": ["low carb", "gluten free", "keto friendly", "high protein", "sugar free"], "options": ["flavor name: barbecue", "size: 1.23 ounce (pack of 7)"], "instruction_attributes": ["gluten free"], "instruction_options": ["barbecue", "1.23 ounce (pack of 7)"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THTD5Z4", "worker_id": "A1WS884SI0SLO4"}], "B06X9YWQT8": [{"asin": "B06X9YWQT8", "instruction": "i am looking for a hot buttered rum cocktail, 12.7 fl oz (pack of 1) to present as perfect gift", "attributes": ["natural ingredients", "perfect gift"], "options": ["flavor name: hot buttered rum", "size: 12.7 fl oz (pack of 1)"], "instruction_attributes": ["perfect gift"], "instruction_options": ["hot buttered rum"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYL8QMB", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B06X9YWQT8", "instruction": "i am looking for a hot buttered rum cocktail, 12.7 fl oz (pack of 1) to present as perfect gift", "attributes": ["natural ingredients", "perfect gift"], "options": ["flavor name: hot buttered rum", "size: 12.7 fl oz (pack of 1)"], "instruction_attributes": ["perfect gift"], "instruction_options": ["hot buttered rum"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYL8QMB", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B06X9YWQT8", "instruction": "show me your concentrated drink mixes with natural ingredients, i'm looking for wild ginger flavor.", "attributes": ["natural ingredients", "perfect gift"], "options": ["flavor name: wild ginger", "size: 25.36 fl oz (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["wild ginger"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79OSH1B", "worker_id": "A3EDFA8UQT5GG8"}], "B078WFSCMN": [{"asin": "B078WFSCMN", "instruction": "i want nightsky vintage wash toad & co mission ridge pants with button closure in size 33w x 32l.", "attributes": ["moisture wicking", "button closure"], "options": ["color: nightsky vintage wash", "size: 33w x 32l"], "instruction_attributes": ["button closure"], "instruction_options": ["nightsky vintage wash", "33w x 32l"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMHYXVN", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B078WFSCMN", "instruction": "i want nightsky vintage wash toad & co mission ridge pants with button closure in size 33w x 32l.", "attributes": ["moisture wicking", "button closure"], "options": ["color: nightsky vintage wash", "size: 33w x 32l"], "instruction_attributes": ["button closure"], "instruction_options": ["nightsky vintage wash", "33w x 32l"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMHYXVN", "worker_id": "A2RBF3IIJP15IH"}], "B01N3KGXB8": [{"asin": "B01N3KGXB8", "instruction": "looking for one coloring beard with coconut oil and a real black color", "attributes": ["easy use", "coconut oil"], "options": ["size: pack of 3", "style: real black"], "instruction_attributes": ["coconut oil"], "instruction_options": ["pack of 3", "real black"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT34HJH4", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B01N3KGXB8", "instruction": "looking for one coloring beard with coconut oil and a real black color", "attributes": ["easy use", "coconut oil"], "options": ["size: pack of 3", "style: real black"], "instruction_attributes": ["coconut oil"], "instruction_options": ["pack of 3", "real black"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT34HJH4", "worker_id": "A2Y2TURT2VEYZN"}], "B08JYGZZ8C": [{"asin": "B08JYGZZ8C", "instruction": "i am looking for camo colored women's running shorts with an elastic waistband.", "attributes": ["nylon spandex", "elastic waistband"], "options": ["color: camo", "size: 3x-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["camo"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL4NECC", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08JYGZZ8C", "instruction": "i am looking for camo colored women's running shorts with an elastic waistband.", "attributes": ["nylon spandex", "elastic waistband"], "options": ["color: camo", "size: 3x-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["camo"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL4NECC", "worker_id": "A1EREKSZAA9V7B"}], "B07PPH74SH": [{"asin": "B07PPH74SH", "instruction": "i would like a six pack of 20 inch black mix light auburn high quality hair extensions.", "attributes": ["high quality", "easy apply", "hair extensions"], "options": ["color: faux straight-black mix light auburn", "size: 20 inch (pack of 6)"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["faux straight-black mix light auburn", "20 inch (pack of 6)"], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYKKCG9", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07PPH74SH", "instruction": "i would like a six pack of 20 inch black mix light auburn high quality hair extensions.", "attributes": ["high quality", "easy apply", "hair extensions"], "options": ["color: faux straight-black mix light auburn", "size: 20 inch (pack of 6)"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["faux straight-black mix light auburn", "20 inch (pack of 6)"], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYKKCG9", "worker_id": "A1WS884SI0SLO4"}], "B009D5546S": [{"asin": "B009D5546S", "instruction": "i am looking for a single pack 6.6 ounce size low calorie chocolate.", "attributes": ["low carb", "low sugar", "low calorie", "keto friendly"], "options": ["flavor name: dipped", "size: 6.6 ounce (pack of 1)"], "instruction_attributes": ["low calorie"], "instruction_options": ["6.6 ounce (pack of 1)"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6GL2BF", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B009D5546S", "instruction": "i am looking for a single pack 6.6 ounce size low calorie chocolate.", "attributes": ["low carb", "low sugar", "low calorie", "keto friendly"], "options": ["flavor name: dipped", "size: 6.6 ounce (pack of 1)"], "instruction_attributes": ["low calorie"], "instruction_options": ["6.6 ounce (pack of 1)"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6GL2BF", "worker_id": "A1Q8PPQQCWGY0D"}], "B09BF2F9ST": [{"asin": "B09BF2F9ST", "instruction": "i am looking for 20 inch natural hair extensions with a scandinavian blonde color.", "attributes": ["double sided", "hair extensions", "natural hair"], "options": ["color: #sb scandinavian blonde", "size: 20 inch"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["#sb scandinavian blonde", "20 inch"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG17BU9P", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09BF2F9ST", "instruction": "i am looking for 20 inch natural hair extensions with a scandinavian blonde color.", "attributes": ["double sided", "hair extensions", "natural hair"], "options": ["color: #sb scandinavian blonde", "size: 20 inch"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["#sb scandinavian blonde", "20 inch"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG17BU9P", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09BF2F9ST", "instruction": "i am looking for a color: #27 hair extensions", "attributes": ["double sided", "hair extensions", "natural hair"], "options": ["color: #27", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#27"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IS0LTB", "worker_id": "A9QRQL9CFJBI7"}], "B07QRMS7PW": [{"asin": "B07QRMS7PW", "instruction": "i'm looking for a pair of leather soled, memory foam loafers that are red and in a size 9.", "attributes": ["leather sole", "memory foam"], "options": ["color: red", "size: 9"], "instruction_attributes": ["leather sole", "memory foam"], "instruction_options": ["red", "9"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINQ1270", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B07QRMS7PW", "instruction": "i'm looking for a pair of leather soled, memory foam loafers that are red and in a size 9.", "attributes": ["leather sole", "memory foam"], "options": ["color: red", "size: 9"], "instruction_attributes": ["leather sole", "memory foam"], "instruction_options": ["red", "9"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINQ1270", "worker_id": "A2JP9IKRHNLRPI"}], "B09LLXSGSX": [{"asin": "B09LLXSGSX", "instruction": "i'm looking for color a recliner chair for hair salon.", "attributes": ["stainless steel", "hair salon"], "options": ["color: a"], "instruction_attributes": ["hair salon"], "instruction_options": ["a"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09161M", "worker_id": "A3AGXTSAHA2AFL"}, {"asin": "B09LLXSGSX", "instruction": "i'm looking for color a recliner chair for hair salon.", "attributes": ["stainless steel", "hair salon"], "options": ["color: a"], "instruction_attributes": ["hair salon"], "instruction_options": ["a"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09161M", "worker_id": "A3AGXTSAHA2AFL"}, {"asin": "B09LLXSGSX", "instruction": "i need a hydraulic recliner barber chair for hair salon.", "attributes": ["stainless steel", "hair salon"], "options": ["color: a"], "instruction_attributes": ["hair salon"], "instruction_options": ["a"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRM99FM", "worker_id": "A2RBF3IIJP15IH"}], "B007Y8YZHU": [{"asin": "B007Y8YZHU", "instruction": "help me find some hand crafted gourmet crab stuffed mushrooms. i need about 36 appetizers.", "attributes": ["ready use", "hand crafted"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "39O5D9O8742EGYBIU38DD09OUFF3CS", "worker_id": "A2DDPSXH2X96RF"}, {"asin": "B007Y8YZHU", "instruction": "help me find some hand crafted gourmet crab stuffed mushrooms. i need about 36 appetizers.", "attributes": ["ready use", "hand crafted"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "39O5D9O8742EGYBIU38DD09OUFF3CS", "worker_id": "A2DDPSXH2X96RF"}], "B09R1XKN1D": [{"asin": "B09R1XKN1D", "instruction": "i am looking for wide leg pants that are pink in a size small.", "attributes": ["wide leg", "butt lifting", "tummy control", "short sleeve", "elastic waist", "high waist", "long sleeve"], "options": ["color: pink", "size: small"], "instruction_attributes": ["wide leg"], "instruction_options": ["pink", "small"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQUTB4W", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09R1XKN1D", "instruction": "i am looking for wide leg pants that are pink in a size small.", "attributes": ["wide leg", "butt lifting", "tummy control", "short sleeve", "elastic waist", "high waist", "long sleeve"], "options": ["color: pink", "size: small"], "instruction_attributes": ["wide leg"], "instruction_options": ["pink", "small"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQUTB4W", "worker_id": "A2ECRNQ3X5LEXD"}], "B08Z74Q2L7": [{"asin": "B08Z74Q2L7", "instruction": "i need a gingko light and 20\"x20\" pillow cover that is hand painted.", "attributes": ["hand painted", "living room"], "options": ["color: nudes (gingko light)", "size: 20\"x20\""], "instruction_attributes": ["hand painted"], "instruction_options": ["nudes (gingko light)", "20\"x20\""], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UM2ZEP", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08Z74Q2L7", "instruction": "i need a gingko light and 20\"x20\" pillow cover that is hand painted.", "attributes": ["hand painted", "living room"], "options": ["color: nudes (gingko light)", "size: 20\"x20\""], "instruction_attributes": ["hand painted"], "instruction_options": ["nudes (gingko light)", "20\"x20\""], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UM2ZEP", "worker_id": "A2RBF3IIJP15IH"}], "B0869KB734": [{"asin": "B0869KB734", "instruction": "i need a 52'' x 84'' x 2 panels window curtain for the living room.", "attributes": ["eco friendly", "living room", "dining room"], "options": ["size: 52'' x 84'' x 2 panels"], "instruction_attributes": ["living room"], "instruction_options": ["52'' x 84'' x 2 panels"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZF9O8L", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B0869KB734", "instruction": "i need a 52'' x 84'' x 2 panels window curtain for the living room.", "attributes": ["eco friendly", "living room", "dining room"], "options": ["size: 52'' x 84'' x 2 panels"], "instruction_attributes": ["living room"], "instruction_options": ["52'' x 84'' x 2 panels"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZF9O8L", "worker_id": "A2RBF3IIJP15IH"}], "B08P4FQWS9": [{"asin": "B08P4FQWS9", "instruction": "i am looking for an eco friendly bookcase that has four tiers.", "attributes": ["eco friendly", "wall mounted", "long lasting", "heavy duty", "solid wood", "coated steel", "living room"], "options": ["size: 4-tier"], "instruction_attributes": ["eco friendly"], "instruction_options": ["4-tier"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTBJD5T", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08P4FQWS9", "instruction": "i am looking for an eco friendly bookcase that has four tiers.", "attributes": ["eco friendly", "wall mounted", "long lasting", "heavy duty", "solid wood", "coated steel", "living room"], "options": ["size: 4-tier"], "instruction_attributes": ["eco friendly"], "instruction_options": ["4-tier"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTBJD5T", "worker_id": "A2ECRNQ3X5LEXD"}], "B09T2Y3MCL": [{"asin": "B09T2Y3MCL", "instruction": "i need large pink board shorts that are a classic fit.", "attributes": ["straight leg", "slim fit", "loose fit", "wash cold", "hand wash", "machine wash", "classic fit", "elastic waist", "elastic waistband", "relaxed fit", "comfortable fit", "drawstring closure", "regular fit", "tumble dry"], "options": ["color: 03-pink", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["03-pink", "large"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPIB6EB", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09T2Y3MCL", "instruction": "i need large pink board shorts that are a classic fit.", "attributes": ["straight leg", "slim fit", "loose fit", "wash cold", "hand wash", "machine wash", "classic fit", "elastic waist", "elastic waistband", "relaxed fit", "comfortable fit", "drawstring closure", "regular fit", "tumble dry"], "options": ["color: 03-pink", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["03-pink", "large"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPIB6EB", "worker_id": "A2ECRNQ3X5LEXD"}], "B003DNL9XI": [{"asin": "B003DNL9XI", "instruction": "i am looking for a caffeine free raspberry ice flavored drink mix.", "attributes": ["caffeine free", "low sodium", "gluten free"], "options": ["flavor name: raspberry ice", "size: 1.3 ounce (pack of 4)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["raspberry ice"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2UT94N", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B003DNL9XI", "instruction": "i am looking for a caffeine free raspberry ice flavored drink mix.", "attributes": ["caffeine free", "low sodium", "gluten free"], "options": ["flavor name: raspberry ice", "size: 1.3 ounce (pack of 4)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["raspberry ice"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2UT94N", "worker_id": "A1EREKSZAA9V7B"}], "B09Q8LFXB7": [{"asin": "B09Q8LFXB7", "instruction": "i am interested in a pink high definition portable bluetooth speaker.", "attributes": ["power amplifier", "high power", "high definition"], "options": ["color: pink"], "instruction_attributes": ["high definition"], "instruction_options": ["pink"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9IUB0X", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09Q8LFXB7", "instruction": "i am interested in a pink high definition portable bluetooth speaker.", "attributes": ["power amplifier", "high power", "high definition"], "options": ["color: pink"], "instruction_attributes": ["high definition"], "instruction_options": ["pink"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9IUB0X", "worker_id": "A2ECRNQ3X5LEXD"}], "B06XGR5NDY": [{"asin": "B06XGR5NDY", "instruction": "i'm looking for 36 ounce fragrance free camile beckman", "attributes": ["animal testing", "fragrance free", "coconut oil"], "options": ["scent name: wellness plus", "size: 36 ounce"], "instruction_attributes": ["fragrance free"], "instruction_options": ["36 ounce"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40TERC3", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B06XGR5NDY", "instruction": "i'm looking for 36 ounce fragrance free camile beckman", "attributes": ["animal testing", "fragrance free", "coconut oil"], "options": ["scent name: wellness plus", "size: 36 ounce"], "instruction_attributes": ["fragrance free"], "instruction_options": ["36 ounce"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40TERC3", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B06XGR5NDY", "instruction": "i'm looking for bathing free accessories for fragrance free.", "attributes": ["animal testing", "fragrance free", "coconut oil"], "options": ["scent name: full relaxation", "size: 36 ounce"], "instruction_attributes": ["fragrance free"], "instruction_options": ["full relaxation"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTJO4DN", "worker_id": "A16IQOX0DK14OJ"}], "B07VMKMY8G": [{"asin": "B07VMKMY8G", "instruction": "i'm looking for rose gold hair dye in a 70 ml bottle.", "attributes": ["cruelty free", "rose gold", "hair dye", "permanent hair"], "options": ["color: fuchsia", "size: 70 ml"], "instruction_attributes": ["rose gold"], "instruction_options": ["70 ml"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV8YV8M", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B07VMKMY8G", "instruction": "i'm looking for rose gold hair dye in a 70 ml bottle.", "attributes": ["cruelty free", "rose gold", "hair dye", "permanent hair"], "options": ["color: fuchsia", "size: 70 ml"], "instruction_attributes": ["rose gold"], "instruction_options": ["70 ml"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV8YV8M", "worker_id": "A2JP9IKRHNLRPI"}], "B09RVVYVPX": [{"asin": "B09RVVYVPX", "instruction": "i need a wall mounted floating tv stand.", "attributes": ["wall mounted", "space saving", "easy install", "easy clean", "solid wood", "living room"], "options": ["color: a"], "instruction_attributes": ["wall mounted"], "instruction_options": ["a"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNIPNTU", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09RVVYVPX", "instruction": "i need a wall mounted floating tv stand.", "attributes": ["wall mounted", "space saving", "easy install", "easy clean", "solid wood", "living room"], "options": ["color: a"], "instruction_attributes": ["wall mounted"], "instruction_options": ["a"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNIPNTU", "worker_id": "A2RBF3IIJP15IH"}], "B07PMV8LZ3": [{"asin": "B07PMV8LZ3", "instruction": "buy me a machine washable button down shirt in 3x large.", "attributes": ["slim fit", "hand wash", "wash cold", "machine wash", "cotton spandex", "button closure", "long sleeve", "tumble dry"], "options": ["color: jzs001_navy", "size: 3x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["3x-large"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3DAAYO", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07PMV8LZ3", "instruction": "buy me a machine washable button down shirt in 3x large.", "attributes": ["slim fit", "hand wash", "wash cold", "machine wash", "cotton spandex", "button closure", "long sleeve", "tumble dry"], "options": ["color: jzs001_navy", "size: 3x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["3x-large"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3DAAYO", "worker_id": "AR9AU5FY1S3RO"}], "B09FXG949K": [{"asin": "B09FXG949K", "instruction": "i need some skin care tools for dark circles with xiuyan jade.", "attributes": ["dark circles", "fine lines"], "options": ["color: xiuyan jade"], "instruction_attributes": ["dark circles"], "instruction_options": ["xiuyan jade"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OP4PO1", "worker_id": "A19317A3X87NVM"}, {"asin": "B09FXG949K", "instruction": "i need some skin care tools for dark circles with xiuyan jade.", "attributes": ["dark circles", "fine lines"], "options": ["color: xiuyan jade"], "instruction_attributes": ["dark circles"], "instruction_options": ["xiuyan jade"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OP4PO1", "worker_id": "A19317A3X87NVM"}], "B075FCVZ9J": [{"asin": "B075FCVZ9J", "instruction": "i am looking for a table and chair set that is white and easy to assemble.", "attributes": ["white item", "easy assemble", "white finish", "steel frame"], "options": ["color: white"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCM5I7Y", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B075FCVZ9J", "instruction": "i am looking for a table and chair set that is white and easy to assemble.", "attributes": ["white item", "easy assemble", "white finish", "steel frame"], "options": ["color: white"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCM5I7Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B08C7BGKF4": [{"asin": "B08C7BGKF4", "instruction": "i am looking for a sugar free energy drink of zero ultra flavor.", "attributes": ["sugar free", "zero sugar"], "options": ["flavor name: zero ultra", "size: 16 fl oz (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["zero ultra"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYNQFXX", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08C7BGKF4", "instruction": "i am looking for a sugar free energy drink of zero ultra flavor.", "attributes": ["sugar free", "zero sugar"], "options": ["flavor name: zero ultra", "size: 16 fl oz (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["zero ultra"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYNQFXX", "worker_id": "A1Q8PPQQCWGY0D"}], "B000EP8D7I": [{"asin": "B000EP8D7I", "instruction": "i'm looking for a pair of classic brown, long lasting boat shoes in a size 14 wide with a synthetic sole.", "attributes": ["long lasting", "synthetic sole"], "options": ["color: classic brown", "size: 14 wide"], "instruction_attributes": ["long lasting", "synthetic sole"], "instruction_options": ["classic brown", "14 wide"], "assignment_id": "33F859I56HNA01QBVO1K6A4GVZABHD", "worker_id": "AFU00NU09CFXE"}, {"asin": "B000EP8D7I", "instruction": "can you find me a pair of long lasting boat shoes with a synthetic sole? get the ones in a brown varsity color and in 8.5 x narrow.", "attributes": ["long lasting", "synthetic sole"], "options": ["color: brown varsity", "size: 8.5 x-narrow"], "instruction_attributes": ["long lasting", "synthetic sole"], "instruction_options": ["brown varsity", "8.5 x-narrow"], "assignment_id": "3PIWWX1FJUGC9QJD7GHMGB38GVVJJH", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B000EP8D7I", "instruction": "i'm looking for a pair of classic brown, long lasting boat shoes in a size 14 wide with a synthetic sole.", "attributes": ["long lasting", "synthetic sole"], "options": ["color: classic brown", "size: 14 wide"], "instruction_attributes": ["long lasting", "synthetic sole"], "instruction_options": ["classic brown", "14 wide"], "assignment_id": "33F859I56HNA01QBVO1K6A4GVZABHD", "worker_id": "AFU00NU09CFXE"}, {"asin": "B000EP8D7I", "instruction": "i am looking for a long lasting shoe with synthetic sole in 8.5 wide. also choose navy or red.", "attributes": ["long lasting", "synthetic sole"], "options": ["color: navy | red", "size: 8.5 wide"], "instruction_attributes": ["long lasting", "synthetic sole"], "instruction_options": ["navy | red", "8.5 wide"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPWMG0L", "worker_id": "A2HMEGTAFO0CS8"}], "B0186F92JU": [{"asin": "B0186F92JU", "instruction": "i am looking for a grain free granola cereal.", "attributes": ["grain free", "gluten free"], "options": [""], "instruction_attributes": ["grain free"], "instruction_options": [], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC52AKRW", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B0186F92JU", "instruction": "i am looking for a grain free granola cereal.", "attributes": ["grain free", "gluten free"], "options": [""], "instruction_attributes": ["grain free"], "instruction_options": [], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC52AKRW", "worker_id": "A1EREKSZAA9V7B"}], "B093YDG89M": [{"asin": "B093YDG89M", "instruction": "buy me a package of anti-aging masks.", "attributes": ["anti aging", "fine lines"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9LUTVK", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B093YDG89M", "instruction": "buy me a package of anti-aging masks.", "attributes": ["anti aging", "fine lines"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9LUTVK", "worker_id": "AR9AU5FY1S3RO"}], "B09447F7D9": [{"asin": "B09447F7D9", "instruction": "i need a yellow portable sound box that is easy to carry.", "attributes": ["easy carry", "stereo sound"], "options": ["color: yellow"], "instruction_attributes": ["easy carry"], "instruction_options": ["yellow"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWVK1CH", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09447F7D9", "instruction": "i need a yellow portable sound box that is easy to carry.", "attributes": ["easy carry", "stereo sound"], "options": ["color: yellow"], "instruction_attributes": ["easy carry"], "instruction_options": ["yellow"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWVK1CH", "worker_id": "A2RBF3IIJP15IH"}], "B08JMB7JVC": [{"asin": "B08JMB7JVC", "instruction": "buy me a new flat-packed bed frame.", "attributes": ["mid century", "assembly required", "memory foam", "box spring"], "options": [""], "instruction_attributes": ["assembly required"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLWFVA7", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08JMB7JVC", "instruction": "buy me a new flat-packed bed frame.", "attributes": ["mid century", "assembly required", "memory foam", "box spring"], "options": [""], "instruction_attributes": ["assembly required"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLWFVA7", "worker_id": "AR9AU5FY1S3RO"}], "B083236V15": [{"asin": "B083236V15", "instruction": "i am looking for an end table that is for the living room and is a whitewash color.", "attributes": ["assembly required", "engineered wood", "living room"], "options": ["color: whitewash", "style: end table"], "instruction_attributes": ["living room"], "instruction_options": ["whitewash", "end table"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSENYPGOW", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B083236V15", "instruction": "i am looking for an end table that is for the living room and is a whitewash color.", "attributes": ["assembly required", "engineered wood", "living room"], "options": ["color: whitewash", "style: end table"], "instruction_attributes": ["living room"], "instruction_options": ["whitewash", "end table"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSENYPGOW", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QM2MNBQ": [{"asin": "B09QM2MNBQ", "instruction": "i would like a extra small grayed jade workout shorts with pockets and a drawstring.", "attributes": ["polyester spandex", "drawstring closure"], "options": ["color: grayed jade", "size: x-small"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["grayed jade", "x-small"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQI213E", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09QM2MNBQ", "instruction": "i would like a extra small grayed jade workout shorts with pockets and a drawstring.", "attributes": ["polyester spandex", "drawstring closure"], "options": ["color: grayed jade", "size: x-small"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["grayed jade", "x-small"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQI213E", "worker_id": "A1WS884SI0SLO4"}], "B0734JNMSW": [{"asin": "B0734JNMSW", "instruction": "i am looking for a copper eco friendly tongue scraper for bad breath.", "attributes": ["eco friendly", "stainless steel", "bad breath"], "options": ["color: copper"], "instruction_attributes": ["eco friendly", "bad breath"], "instruction_options": ["copper"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6ITPKHC", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B0734JNMSW", "instruction": "i am looking for a copper eco friendly tongue scraper for bad breath.", "attributes": ["eco friendly", "stainless steel", "bad breath"], "options": ["color: copper"], "instruction_attributes": ["eco friendly", "bad breath"], "instruction_options": ["copper"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6ITPKHC", "worker_id": "A1EREKSZAA9V7B"}], "B0866672GG": [{"asin": "B0866672GG", "instruction": "i would like a 18 pack of peanut butter and jelly soy free nut bars.", "attributes": ["soy free", "grain free", "plant based", "dairy free", "gluten free"], "options": ["flavor name: peanut butter & jelly", "size: 18 pack"], "instruction_attributes": ["soy free"], "instruction_options": ["peanut butter & jelly", "18 pack"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOE6TCD", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0866672GG", "instruction": "i would like a 18 pack of peanut butter and jelly soy free nut bars.", "attributes": ["soy free", "grain free", "plant based", "dairy free", "gluten free"], "options": ["flavor name: peanut butter & jelly", "size: 18 pack"], "instruction_attributes": ["soy free"], "instruction_options": ["peanut butter & jelly", "18 pack"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOE6TCD", "worker_id": "A1WS884SI0SLO4"}], "B09DWZH78K": [{"asin": "B09DWZH78K", "instruction": "i need sun canvas women's slip on sneakers in size 12 with arch support.", "attributes": ["machine wash", "arch support", "rubber sole"], "options": ["color: sun canvas", "size: 12"], "instruction_attributes": ["arch support"], "instruction_options": ["sun canvas", "12"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C3OPHB", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09DWZH78K", "instruction": "i need sun canvas women's slip on sneakers in size 12 with arch support.", "attributes": ["machine wash", "arch support", "rubber sole"], "options": ["color: sun canvas", "size: 12"], "instruction_attributes": ["arch support"], "instruction_options": ["sun canvas", "12"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C3OPHB", "worker_id": "A2RBF3IIJP15IH"}], "B08V5JCL3Y": [{"asin": "B08V5JCL3Y", "instruction": "i am looking for a small long sleeve t-shirt that is gray.", "attributes": ["hand wash", "long sleeve", "high waist", "short sleeve", "daily wear"], "options": ["color: 003gray", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["003gray", "small"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TPWPMT", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08V5JCL3Y", "instruction": "i am looking for a small long sleeve t-shirt that is gray.", "attributes": ["hand wash", "long sleeve", "high waist", "short sleeve", "daily wear"], "options": ["color: 003gray", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["003gray", "small"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TPWPMT", "worker_id": "A2ECRNQ3X5LEXD"}], "B07TGF63QG": [{"asin": "B07TGF63QG", "instruction": "i'm looking for a brown runner type rug for my living room.", "attributes": ["spot clean", "living room"], "options": ["color: brown", "item shape: runner", "size: 8 ft. x 10 ft."], "instruction_attributes": ["living room"], "instruction_options": ["brown", "runner"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPVYPJM", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07TGF63QG", "instruction": "i'm looking for a brown runner type rug for my living room.", "attributes": ["spot clean", "living room"], "options": ["color: brown", "item shape: runner", "size: 8 ft. x 10 ft."], "instruction_attributes": ["living room"], "instruction_options": ["brown", "runner"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPVYPJM", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07TGF63QG", "instruction": "i would like to buy a 7 by 9 foot round green rug for my living room.", "attributes": ["spot clean", "living room"], "options": ["color: green", "item shape: round", "size: 7 ft. x 9 ft."], "instruction_attributes": ["living room"], "instruction_options": ["green", "round", "7 ft. x 9 ft."], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL5M5H8", "worker_id": "A1WS884SI0SLO4"}], "B08L828DTL": [{"asin": "B08L828DTL", "instruction": "i am looking for a high performance digital subwoofer power amplifier board.", "attributes": ["power amplifier", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9DDE26", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08L828DTL", "instruction": "i am looking for a high performance digital subwoofer power amplifier board.", "attributes": ["power amplifier", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9DDE26", "worker_id": "A1EREKSZAA9V7B"}], "B01NAER8CP": [{"asin": "B01NAER8CP", "instruction": "i'd like to buy some cinnamon flavored nuts. look for nuts with zero trans fats, please.", "attributes": ["artificial colors", "0g trans"], "options": ["flavor name: cinnamon", "size: 5 ounce (pack of 6)"], "instruction_attributes": ["0g trans"], "instruction_options": ["cinnamon"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO28R21", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B01NAER8CP", "instruction": "i'd like to buy some cinnamon flavored nuts. look for nuts with zero trans fats, please.", "attributes": ["artificial colors", "0g trans"], "options": ["flavor name: cinnamon", "size: 5 ounce (pack of 6)"], "instruction_attributes": ["0g trans"], "instruction_options": ["cinnamon"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO28R21", "worker_id": "AR9AU5FY1S3RO"}], "B06XSDKRF9": [{"asin": "B06XSDKRF9", "instruction": "find me the soy free 3.5 ounce 4-pack of dang thai rice chips, and make sure they are the aged cheddar flavor. i also need the ones in the resealable bags.", "attributes": ["non gmo", "gmo free", "soy free", "gluten free"], "options": ["flavor name: aged cheddar", "size: 3.5 ounce (pack of 4)", "style: rice chips"], "instruction_attributes": ["soy free"], "instruction_options": ["aged cheddar", "3.5 ounce (pack of 4)", "rice chips"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTBWN94", "worker_id": "A1CB72B51L7TKE"}, {"asin": "B06XSDKRF9", "instruction": "find me the soy free 3.5 ounce 4-pack of dang thai rice chips, and make sure they are the aged cheddar flavor. i also need the ones in the resealable bags.", "attributes": ["non gmo", "gmo free", "soy free", "gluten free"], "options": ["flavor name: aged cheddar", "size: 3.5 ounce (pack of 4)", "style: rice chips"], "instruction_attributes": ["soy free"], "instruction_options": ["aged cheddar", "3.5 ounce (pack of 4)", "rice chips"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTBWN94", "worker_id": "A1CB72B51L7TKE"}], "B09DYH8RMQ": [{"asin": "B09DYH8RMQ", "instruction": "go ahead and order that rhinestone top in small, with long sleeves.", "attributes": ["long sleeve", "teen girls"], "options": ["color: c-white", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDXYCIN", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09DYH8RMQ", "instruction": "go ahead and order that rhinestone top in small, with long sleeves.", "attributes": ["long sleeve", "teen girls"], "options": ["color: c-white", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDXYCIN", "worker_id": "AR9AU5FY1S3RO"}], "B07GT9KYSX": [{"asin": "B07GT9KYSX", "instruction": "i would like a pink ottoman with a solid wooden frame.", "attributes": ["wood frame", "solid wood"], "options": ["color: pink"], "instruction_attributes": ["wood frame", "solid wood"], "instruction_options": ["pink"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HMFWOB", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07GT9KYSX", "instruction": "i would like a pink ottoman with a solid wooden frame.", "attributes": ["wood frame", "solid wood"], "options": ["color: pink"], "instruction_attributes": ["wood frame", "solid wood"], "instruction_options": ["pink"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HMFWOB", "worker_id": "A1WS884SI0SLO4"}], "B085BR7DM2": [{"asin": "B085BR7DM2", "instruction": "i'd like to get wireless earphones that feature stereo sound. the color should be black.", "attributes": ["easy use", "stereo sound", "wireless charging"], "options": ["color: polish black"], "instruction_attributes": ["stereo sound"], "instruction_options": ["polish black"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LS7CD2", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B085BR7DM2", "instruction": "i'd like to get wireless earphones that feature stereo sound. the color should be black.", "attributes": ["easy use", "stereo sound", "wireless charging"], "options": ["color: polish black"], "instruction_attributes": ["stereo sound"], "instruction_options": ["polish black"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LS7CD2", "worker_id": "A345TDMHP3DQ3G"}], "B09CMHXFSP": [{"asin": "B09CMHXFSP", "instruction": "i want to find a black ergonomic office chair that's easy to assemble and offers lumbar support.", "attributes": ["easy assemble", "lumbar support"], "options": ["color: black"], "instruction_attributes": ["easy assemble", "lumbar support"], "instruction_options": ["black"], "assignment_id": "33CID5710F37J25O7G1CGJZBOOWL3T", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09CMHXFSP", "instruction": "i want to find a black ergonomic office chair that's easy to assemble and offers lumbar support.", "attributes": ["easy assemble", "lumbar support"], "options": ["color: black"], "instruction_attributes": ["easy assemble", "lumbar support"], "instruction_options": ["black"], "assignment_id": "33CID5710F37J25O7G1CGJZBOOWL3T", "worker_id": "A345TDMHP3DQ3G"}], "B099DRXNQ1": [{"asin": "B099DRXNQ1", "instruction": "i need a fluoride free maternity toothpaste.", "attributes": ["fluoride free", "natural ingredients", "sensitive teeth"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO2F337", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B099DRXNQ1", "instruction": "i need a fluoride free maternity toothpaste.", "attributes": ["fluoride free", "natural ingredients", "sensitive teeth"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO2F337", "worker_id": "A2RBF3IIJP15IH"}], "B07VL1ZSDP": [{"asin": "B07VL1ZSDP", "instruction": "i am looking for a black, easy to use gameboy case for an iphone.", "attributes": ["dust proof", "easy install", "easy use"], "options": ["color: black", "size: for iphone 12 | 12pro"], "instruction_attributes": ["easy use"], "instruction_options": ["black"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP6MOCJ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07VL1ZSDP", "instruction": "i am looking for a black, easy to use gameboy case for an iphone.", "attributes": ["dust proof", "easy install", "easy use"], "options": ["color: black", "size: for iphone 12 | 12pro"], "instruction_attributes": ["easy use"], "instruction_options": ["black"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP6MOCJ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07VL1ZSDP", "instruction": "i need easy use iphone 6p model phone", "attributes": ["dust proof", "easy install", "easy use"], "options": ["color: black", "size: for iphone 6p | 7p | 8p"], "instruction_attributes": ["easy use"], "instruction_options": ["for iphone 6p | 7p | 8p"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAUCFC9I", "worker_id": "A226L9F2AZ38CL"}], "B01GQ5H8AW": [{"asin": "B01GQ5H8AW", "instruction": "i need 5 ounce basil & garlic mary's gone crackers that is gluten free.", "attributes": ["plant based", "gluten free", "protein serving"], "options": ["flavor name: basil & garlic", "size: 5 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["basil & garlic", "5 ounce (pack of 1)"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTQQ9PF", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B01GQ5H8AW", "instruction": "i need 5 ounce basil & garlic mary's gone crackers that is gluten free.", "attributes": ["plant based", "gluten free", "protein serving"], "options": ["flavor name: basil & garlic", "size: 5 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["basil & garlic", "5 ounce (pack of 1)"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTQQ9PF", "worker_id": "A2RBF3IIJP15IH"}], "B0831K16NY": [{"asin": "B0831K16NY", "instruction": "i'm looking for a button down men's shirt with short sleeves and in the size of 3x-large.", "attributes": ["long lasting", "polyester spandex", "short sleeve", "tumble dry"], "options": ["color: muilti 2", "size: 3x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["3x-large"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1TX2H2", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B0831K16NY", "instruction": "i'm looking for a button down men's shirt with short sleeves and in the size of 3x-large.", "attributes": ["long lasting", "polyester spandex", "short sleeve", "tumble dry"], "options": ["color: muilti 2", "size: 3x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["3x-large"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1TX2H2", "worker_id": "A2JP9IKRHNLRPI"}], "B09Q1RZXZ8": [{"asin": "B09Q1RZXZ8", "instruction": "buy me some light weight beige slippers.", "attributes": ["light weight", "fashion design"], "options": ["color: beige", "size: 7.5"], "instruction_attributes": ["light weight"], "instruction_options": ["beige"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3HXYRJ", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09Q1RZXZ8", "instruction": "buy me some light weight beige slippers.", "attributes": ["light weight", "fashion design"], "options": ["color: beige", "size: 7.5"], "instruction_attributes": ["light weight"], "instruction_options": ["beige"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3HXYRJ", "worker_id": "AR9AU5FY1S3RO"}], "B09HKF2KQN": [{"asin": "B09HKF2KQN", "instruction": "i'm looking for a kids toothbrush for ages 6 to 12 that will help with teeth whitening and is easy to use.", "attributes": ["teeth whitening", "easy use"], "options": ["color: a04#green duck", "size: aged 6-12"], "instruction_attributes": ["teeth whitening", "easy use"], "instruction_options": ["aged 6-12"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3A86NW", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B09HKF2KQN", "instruction": "i'm looking for a kids toothbrush for ages 6 to 12 that will help with teeth whitening and is easy to use.", "attributes": ["teeth whitening", "easy use"], "options": ["color: a04#green duck", "size: aged 6-12"], "instruction_attributes": ["teeth whitening", "easy use"], "instruction_options": ["aged 6-12"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3A86NW", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B09HKF2KQN", "instruction": "i'm looking for teeth whitening for teen clesening for prevention of oral care.", "attributes": ["teeth whitening", "easy use"], "options": ["color: a14#blue", "size: aged 2-6"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["a14#blue"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ56CKC5", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09HKF2KQN", "instruction": "i want to find a white donut colored toothbrush that is suitable for kids aged 6-12 and easy to use.", "attributes": ["teeth whitening", "easy use"], "options": ["color: a36#white donut", "size: aged 6-12"], "instruction_attributes": ["easy use"], "instruction_options": ["a36#white donut", "aged 6-12"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LKQ09F", "worker_id": "A345TDMHP3DQ3G"}], "B08W533DQL": [{"asin": "B08W533DQL", "instruction": "i am looking for a light blue, pink, yellow or light green tooth cleaning tool that is easy to carry.", "attributes": ["easy carry", "oral hygiene", "bad breath"], "options": ["color: light blue, pink, yellow, light green"], "instruction_attributes": ["easy carry"], "instruction_options": ["light blue, pink, yellow, light green"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3JCZLL", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08W533DQL", "instruction": "i need a purple braces brush that is easy to carry.", "attributes": ["easy carry", "oral hygiene", "bad breath"], "options": ["color: light blue, yellow, gray, purple"], "instruction_attributes": ["easy carry"], "instruction_options": ["light blue, yellow, gray, purple"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9POETU", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08W533DQL", "instruction": "i am looking for a light blue, pink, yellow or light green tooth cleaning tool that is easy to carry.", "attributes": ["easy carry", "oral hygiene", "bad breath"], "options": ["color: light blue, pink, yellow, light green"], "instruction_attributes": ["easy carry"], "instruction_options": ["light blue, pink, yellow, light green"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3JCZLL", "worker_id": "A1EREKSZAA9V7B"}], "B09MH2SNS7": [{"asin": "B09MH2SNS7", "instruction": "i am interested in a wireless bluetooth clock radio that is red.", "attributes": ["usb port", "wireless bluetooth"], "options": ["color: red"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["red"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP3TOA9", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09MH2SNS7", "instruction": "i am interested in a wireless bluetooth clock radio that is red.", "attributes": ["usb port", "wireless bluetooth"], "options": ["color: red"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["red"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP3TOA9", "worker_id": "A2ECRNQ3X5LEXD"}], "B00NVBWG98": [{"asin": "B00NVBWG98", "instruction": "i am looking for a high quality strawberry blonde mix color hairpiece that is easy to use.", "attributes": ["easy use", "high quality"], "options": ["color: strawberry blonde mix #27t613 g13b"], "instruction_attributes": ["easy use", "high quality"], "instruction_options": ["strawberry blonde mix #27t613 g13b"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQDTKES", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00NVBWG98", "instruction": "i am looking for a high quality strawberry blonde mix color hairpiece that is easy to use.", "attributes": ["easy use", "high quality"], "options": ["color: strawberry blonde mix #27t613 g13b"], "instruction_attributes": ["easy use", "high quality"], "instruction_options": ["strawberry blonde mix #27t613 g13b"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQDTKES", "worker_id": "A1Q8PPQQCWGY0D"}], "B09P68G3RX": [{"asin": "B09P68G3RX", "instruction": "i'm looking for a size 5.5 women non slip running shoes.", "attributes": ["anti slip", "non slip", "hand wash", "ethylene vinyl", "vinyl acetate", "gym workout"], "options": ["color: plaid3", "size: 5.5 women | 3.5 men"], "instruction_attributes": ["non slip"], "instruction_options": ["5.5 women | 3.5 men"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQMU0PS", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B09P68G3RX", "instruction": "i'm looking for a size 5.5 women non slip running shoes.", "attributes": ["anti slip", "non slip", "hand wash", "ethylene vinyl", "vinyl acetate", "gym workout"], "options": ["color: plaid3", "size: 5.5 women | 3.5 men"], "instruction_attributes": ["non slip"], "instruction_options": ["5.5 women | 3.5 men"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQMU0PS", "worker_id": "ARQ05PDNXPFDI"}], "B0844NPZ65": [{"asin": "B0844NPZ65", "instruction": "i need an easy to install walnut brown living skog mid-century tv stand for tv's up to 48 inches.", "attributes": ["mid century", "easy install", "storage unit", "storage space", "living room"], "options": ["color: walnut brown", "size: for tv's up to 48 inches"], "instruction_attributes": ["easy install"], "instruction_options": ["walnut brown", "for tv's up to 48 inches"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09R61C", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B0844NPZ65", "instruction": "i need an easy to install walnut brown living skog mid-century tv stand for tv's up to 48 inches.", "attributes": ["mid century", "easy install", "storage unit", "storage space", "living room"], "options": ["color: walnut brown", "size: for tv's up to 48 inches"], "instruction_attributes": ["easy install"], "instruction_options": ["walnut brown", "for tv's up to 48 inches"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09R61C", "worker_id": "A2RBF3IIJP15IH"}], "B07B6NM7Q2": [{"asin": "B07B6NM7Q2", "instruction": "i am looking for a milk chocolate of 1 pound size in a single pack for valentine day.", "attributes": ["quality ingredients", "gift set", "valentine day", "gift basket"], "options": ["flavor name: mixed - milk (65%) & dark (35%)", "size: 1 pound (pack of 1)"], "instruction_attributes": ["valentine day"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAD6OVM", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07B6NM7Q2", "instruction": "i am looking for a milk chocolate of 1 pound size in a single pack for valentine day.", "attributes": ["quality ingredients", "gift set", "valentine day", "gift basket"], "options": ["flavor name: mixed - milk (65%) & dark (35%)", "size: 1 pound (pack of 1)"], "instruction_attributes": ["valentine day"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAD6OVM", "worker_id": "A1Q8PPQQCWGY0D"}], "B087N61YT8": [{"asin": "B087N61YT8", "instruction": "i'm looking for a french vanilla zero calorie and zero sugarand flavor stevia energy", "attributes": ["shelf stable", "keto friendly", "zero sugar"], "options": ["flavor name: stevia energy", "size: 1.68 fl oz (pack of 3)"], "instruction_attributes": ["keto friendly", "zero sugar"], "instruction_options": ["stevia energy"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVP4X9W", "worker_id": "A19Q021KR28CS8"}, {"asin": "B087N61YT8", "instruction": "i'm looking for a french vanilla zero calorie and zero sugarand flavor stevia energy", "attributes": ["shelf stable", "keto friendly", "zero sugar"], "options": ["flavor name: stevia energy", "size: 1.68 fl oz (pack of 3)"], "instruction_attributes": ["keto friendly", "zero sugar"], "instruction_options": ["stevia energy"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVP4X9W", "worker_id": "A19Q021KR28CS8"}], "B09B2QWWX7": [{"asin": "B09B2QWWX7", "instruction": "i am interested in a brushed nickel light fixture that has two lights.", "attributes": ["heavy duty", "brushed nickel", "vanity light", "glass shade", "light fixture", "clear glass", "living room"], "options": ["color: brushed nickel", "size: 2-light"], "instruction_attributes": ["light fixture"], "instruction_options": ["brushed nickel", "2-light"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z47HCQS", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09B2QWWX7", "instruction": "i am interested in a brushed nickel light fixture that has two lights.", "attributes": ["heavy duty", "brushed nickel", "vanity light", "glass shade", "light fixture", "clear glass", "living room"], "options": ["color: brushed nickel", "size: 2-light"], "instruction_attributes": ["light fixture"], "instruction_options": ["brushed nickel", "2-light"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z47HCQS", "worker_id": "A2ECRNQ3X5LEXD"}], "B096VFHGKX": [{"asin": "B096VFHGKX", "instruction": "i need some nice synthetic hair extensions that are at least 14 inches long.", "attributes": ["long lasting", "synthetic hair"], "options": ["color: 1b", "size: 14 inch"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["14 inch"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4YJXYF", "worker_id": "A19317A3X87NVM"}, {"asin": "B096VFHGKX", "instruction": "i need some nice synthetic hair extensions that are at least 14 inches long.", "attributes": ["long lasting", "synthetic hair"], "options": ["color: 1b", "size: 14 inch"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["14 inch"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4YJXYF", "worker_id": "A19317A3X87NVM"}, {"asin": "B096VFHGKX", "instruction": "i am looking for 18 inch crochet synthetic hair for black women.", "attributes": ["long lasting", "synthetic hair"], "options": ["color: t27", "size: 18 inch"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["18 inch"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIIK92I", "worker_id": "A1EREKSZAA9V7B"}], "B013UKOWAA": [{"asin": "B013UKOWAA", "instruction": "what deodorants do you have that are alcohol free and very long lasting?", "attributes": ["alcohol free", "long lasting"], "options": [""], "instruction_attributes": ["alcohol free", "long lasting"], "instruction_options": [], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNI5NTA", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B013UKOWAA", "instruction": "what deodorants do you have that are alcohol free and very long lasting?", "attributes": ["alcohol free", "long lasting"], "options": [""], "instruction_attributes": ["alcohol free", "long lasting"], "instruction_options": [], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNI5NTA", "worker_id": "A3EDFA8UQT5GG8"}], "B075M661NC": [{"asin": "B075M661NC", "instruction": "i neet 10 quantity of gold plated display port to vga adapter (male to female) compatible with any computer,laptop and projector", "attributes": ["gold plated", "1080p hd"], "options": ["item package quantity: 10"], "instruction_attributes": ["gold plated"], "instruction_options": ["10"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DSNOT3", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B075M661NC", "instruction": "i neet 10 quantity of gold plated display port to vga adapter (male to female) compatible with any computer,laptop and projector", "attributes": ["gold plated", "1080p hd"], "options": ["item package quantity: 10"], "instruction_attributes": ["gold plated"], "instruction_options": ["10"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DSNOT3", "worker_id": "A258PTOZ3D2TQR"}], "B01ENHMKTY": [{"asin": "B01ENHMKTY", "instruction": "i would like a 12 by 12 inch poster in three panels i can hang readily in my living room.", "attributes": ["ready hang", "dining room", "living room"], "options": ["size: 12x12inchx3panles"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["12x12inchx3panles"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMS7SAL", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01ENHMKTY", "instruction": "i would like a 12 by 12 inch poster in three panels i can hang readily in my living room.", "attributes": ["ready hang", "dining room", "living room"], "options": ["size: 12x12inchx3panles"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["12x12inchx3panles"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMS7SAL", "worker_id": "A1WS884SI0SLO4"}], "B07F81Q5F7": [{"asin": "B07F81Q5F7", "instruction": "i am looking for a queen sized multicolored mattress set.", "attributes": ["ready use", "queen size", "double sided", "fully assembled", "twin size", "assembly required", "king size", "box spring"], "options": ["color: multi", "size: queen", "style: includes 4\" split foundation"], "instruction_attributes": ["queen size"], "instruction_options": ["multi"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0SYW11U", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07F81Q5F7", "instruction": "i am looking for a queen sized multicolored mattress set.", "attributes": ["ready use", "queen size", "double sided", "fully assembled", "twin size", "assembly required", "king size", "box spring"], "options": ["color: multi", "size: queen", "style: includes 4\" split foundation"], "instruction_attributes": ["queen size"], "instruction_options": ["multi"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0SYW11U", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07F81Q5F7", "instruction": "i want to buy a king size box spring and 4-in foundation set in the color no.", "attributes": ["ready use", "queen size", "double sided", "fully assembled", "twin size", "assembly required", "king size", "box spring"], "options": ["color: no", "size: king", "style: 4\" foundation"], "instruction_attributes": ["king size", "box spring"], "instruction_options": ["no", "king", "4\" foundation"], "assignment_id": "354P56DE9VDCOY11T1135MPMLN9S78", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B07F81Q5F7", "instruction": "i would like a 8\" foundation split king size blue bed and box spring.", "attributes": ["ready use", "queen size", "double sided", "fully assembled", "twin size", "assembly required", "king size", "box spring"], "options": ["color: blue", "size: king", "style: 8\" foundation split"], "instruction_attributes": ["king size", "box spring"], "instruction_options": ["blue", "king", "8\" foundation split"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKMY7DW", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07F81Q5F7", "instruction": "i am in need of a king sized yellow box spring set", "attributes": ["ready use", "queen size", "double sided", "fully assembled", "twin size", "assembly required", "king size", "box spring"], "options": ["color: yellow", "size: full", "style: 8\" split foundation"], "instruction_attributes": ["king size"], "instruction_options": ["yellow"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTXJ4EE", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BLK4MYR": [{"asin": "B08BLK4MYR", "instruction": "i am looking for a travel tin kit of camouflage color and can be cleaned very easily.", "attributes": ["eco friendly", "easy carry", "easy clean"], "options": ["color: camouflage"], "instruction_attributes": ["easy clean"], "instruction_options": ["camouflage"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL980V2D", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08BLK4MYR", "instruction": "i am looking for a travel tin kit of camouflage color and can be cleaned very easily.", "attributes": ["eco friendly", "easy carry", "easy clean"], "options": ["color: camouflage"], "instruction_attributes": ["easy clean"], "instruction_options": ["camouflage"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL980V2D", "worker_id": "A1Q8PPQQCWGY0D"}], "B09JFFKJP9": [{"asin": "B09JFFKJP9", "instruction": "i'm looking for a black heavy duty barber chair", "attributes": ["heavy duty", "high quality", "hair cutting"], "options": ["color: black"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black"], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZMU057", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B09JFFKJP9", "instruction": "i'm looking for a black heavy duty barber chair", "attributes": ["heavy duty", "high quality", "hair cutting"], "options": ["color: black"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black"], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZMU057", "worker_id": "ARQ05PDNXPFDI"}], "B08WPKFMV9": [{"asin": "B08WPKFMV9", "instruction": "i would like some low sodium spice gifts for some friends.", "attributes": ["low sodium", "gluten free"], "options": [""], "instruction_attributes": ["low sodium"], "instruction_options": [], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUF8ZLV0", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08WPKFMV9", "instruction": "i would like some low sodium spice gifts for some friends.", "attributes": ["low sodium", "gluten free"], "options": [""], "instruction_attributes": ["low sodium"], "instruction_options": [], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUF8ZLV0", "worker_id": "A1WS884SI0SLO4"}], "B09NXFP57R": [{"asin": "B09NXFP57R", "instruction": "i want a pair of black, closed pointy toe sandals.", "attributes": ["open toe", "steel toe", "closed toe", "memory foam"], "options": ["color: a01 black", "size: 9.5-10"], "instruction_attributes": ["closed toe"], "instruction_options": ["a01 black"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSGY8B9", "worker_id": "A19317A3X87NVM"}, {"asin": "B09NXFP57R", "instruction": "i want a pair of black, closed pointy toe sandals.", "attributes": ["open toe", "steel toe", "closed toe", "memory foam"], "options": ["color: a01 black", "size: 9.5-10"], "instruction_attributes": ["closed toe"], "instruction_options": ["a01 black"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSGY8B9", "worker_id": "A19317A3X87NVM"}], "B09QM4936N": [{"asin": "B09QM4936N", "instruction": "i need a cosmetic bag for my nail polish. get the one in color eleven.", "attributes": ["nail polish", "nail art"], "options": ["color: color11"], "instruction_attributes": ["nail polish"], "instruction_options": ["color11"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22HOW8L", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09QM4936N", "instruction": "i need a cosmetic bag for my nail polish. get the one in color eleven.", "attributes": ["nail polish", "nail art"], "options": ["color: color11"], "instruction_attributes": ["nail polish"], "instruction_options": ["color11"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22HOW8L", "worker_id": "AR9AU5FY1S3RO"}], "B09M6GNPYY": [{"asin": "B09M6GNPYY", "instruction": "i am looking for a natural black color high quality hair extension for women.", "attributes": ["high quality", "hair extensions"], "options": ["color: natural black"], "instruction_attributes": ["high quality"], "instruction_options": ["natural black"], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y06NNW", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09M6GNPYY", "instruction": "i am looking for a natural black color high quality hair extension for women.", "attributes": ["high quality", "hair extensions"], "options": ["color: natural black"], "instruction_attributes": ["high quality"], "instruction_options": ["natural black"], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y06NNW", "worker_id": "A1Q8PPQQCWGY0D"}], "B07QH94GPK": [{"asin": "B07QH94GPK", "instruction": "i am looking for surveillance video equipment that has motion detection and is 720p.", "attributes": ["easy install", "motion detection"], "options": ["size: 4ch 720p no hdd"], "instruction_attributes": ["motion detection"], "instruction_options": ["4ch 720p no hdd"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K4I12J", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07QH94GPK", "instruction": "i am looking for surveillance video equipment that has motion detection and is 720p.", "attributes": ["easy install", "motion detection"], "options": ["size: 4ch 720p no hdd"], "instruction_attributes": ["motion detection"], "instruction_options": ["4ch 720p no hdd"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K4I12J", "worker_id": "A2ECRNQ3X5LEXD"}], "B085T9XX1V": [{"asin": "B085T9XX1V", "instruction": "i need a chandelier for the dining room that has 12 lights.", "attributes": ["pendant light", "stainless steel", "light fixture", "dining room", "living room"], "options": ["size: 12 lights"], "instruction_attributes": ["dining room"], "instruction_options": ["12 lights"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKGY954R", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B085T9XX1V", "instruction": "i need a chandelier for the dining room that has 12 lights.", "attributes": ["pendant light", "stainless steel", "light fixture", "dining room", "living room"], "options": ["size: 12 lights"], "instruction_attributes": ["dining room"], "instruction_options": ["12 lights"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKGY954R", "worker_id": "A2ECRNQ3X5LEXD"}], "B07L6KQ7FW": [{"asin": "B07L6KQ7FW", "instruction": "show me size seven running shoes with laces and rubber soles.", "attributes": ["lace closure", "rubber sole"], "options": ["color: majolica blue beetroot", "size: 7"], "instruction_attributes": ["lace closure", "rubber sole"], "instruction_options": ["7"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLHL0MY", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07L6KQ7FW", "instruction": "show me size seven running shoes with laces and rubber soles.", "attributes": ["lace closure", "rubber sole"], "options": ["color: majolica blue beetroot", "size: 7"], "instruction_attributes": ["lace closure", "rubber sole"], "instruction_options": ["7"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLHL0MY", "worker_id": "A3EDFA8UQT5GG8"}], "B08L9DKZ1Y": [{"asin": "B08L9DKZ1Y", "instruction": "i'm looking for a small gray long-sleeve t-shirt for women.", "attributes": ["loose fit", "soft material", "long sleeve"], "options": ["color: a grey", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a grey", "small"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADHPAHH", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08L9DKZ1Y", "instruction": "i'm looking for a small gray long-sleeve t-shirt for women.", "attributes": ["loose fit", "soft material", "long sleeve"], "options": ["color: a grey", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a grey", "small"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADHPAHH", "worker_id": "A345TDMHP3DQ3G"}], "B09DYF1GSZ": [{"asin": "B09DYF1GSZ", "instruction": "i need a 84inch wall mounted motorized projector screen that displays a 16:9 screen.", "attributes": ["wall mounted", "high definition"], "options": ["color: 16:9 screen", "size: 84inch"], "instruction_attributes": ["wall mounted"], "instruction_options": ["16:9 screen", "84inch"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAY0A83", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09DYF1GSZ", "instruction": "i need a 84inch wall mounted motorized projector screen that displays a 16:9 screen.", "attributes": ["wall mounted", "high definition"], "options": ["color: 16:9 screen", "size: 84inch"], "instruction_attributes": ["wall mounted"], "instruction_options": ["16:9 screen", "84inch"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAY0A83", "worker_id": "A2RBF3IIJP15IH"}], "B08N2ZCC2K": [{"asin": "B08N2ZCC2K", "instruction": "i am looking for a light grey faux leather loveseat.", "attributes": ["spot clean", "faux leather"], "options": ["color: light grey", "style: chair"], "instruction_attributes": ["faux leather"], "instruction_options": ["light grey"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5OG5FD", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08N2ZCC2K", "instruction": "i am looking for a light grey faux leather loveseat.", "attributes": ["spot clean", "faux leather"], "options": ["color: light grey", "style: chair"], "instruction_attributes": ["faux leather"], "instruction_options": ["light grey"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5OG5FD", "worker_id": "A1EREKSZAA9V7B"}], "B09MM1R7VM": [{"asin": "B09MM1R7VM", "instruction": "i am looking for a tattoo machine that is easy to use.", "attributes": ["high quality", "easy carry", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQONAVY9", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09MM1R7VM", "instruction": "i am looking for a tattoo machine that is easy to use.", "attributes": ["high quality", "easy carry", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQONAVY9", "worker_id": "A2ECRNQ3X5LEXD"}], "B0842V2TJH": [{"asin": "B0842V2TJH", "instruction": "i am looking for a fluoride free foaming toothpaste with a cinnamon tea tree flavor.", "attributes": ["fluoride free", "tea tree"], "options": ["flavor name: cinnamon tea tree", "size: 1.69 fl oz (pack of 1)"], "instruction_attributes": ["fluoride free"], "instruction_options": ["cinnamon tea tree"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ANUWB5", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B0842V2TJH", "instruction": "i am looking for a fluoride free foaming toothpaste with a cinnamon tea tree flavor.", "attributes": ["fluoride free", "tea tree"], "options": ["flavor name: cinnamon tea tree", "size: 1.69 fl oz (pack of 1)"], "instruction_attributes": ["fluoride free"], "instruction_options": ["cinnamon tea tree"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ANUWB5", "worker_id": "A1EREKSZAA9V7B"}], "B08FX7T8Z4": [{"asin": "B08FX7T8Z4", "instruction": "i need to order a game boy color. make sure that it's green and has stereo sound.", "attributes": ["noise cancelling", "stereo sound"], "options": ["color: green"], "instruction_attributes": ["stereo sound"], "instruction_options": ["green"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL98IV2V", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08FX7T8Z4", "instruction": "i need to order a game boy color. make sure that it's green and has stereo sound.", "attributes": ["noise cancelling", "stereo sound"], "options": ["color: green"], "instruction_attributes": ["stereo sound"], "instruction_options": ["green"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL98IV2V", "worker_id": "AR9AU5FY1S3RO"}], "B07YWDVBM8": [{"asin": "B07YWDVBM8", "instruction": "i would like a pink face brush for my dead skin.", "attributes": ["long handle", "dead skin"], "options": ["color: pink"], "instruction_attributes": ["dead skin"], "instruction_options": ["pink"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FF5U41", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07YWDVBM8", "instruction": "i would like a pink face brush for my dead skin.", "attributes": ["long handle", "dead skin"], "options": ["color: pink"], "instruction_attributes": ["dead skin"], "instruction_options": ["pink"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FF5U41", "worker_id": "A1WS884SI0SLO4"}], "B09SXMWZJW": [{"asin": "B09SXMWZJW", "instruction": "i'd like to get sulfate free conditioner that promotes hair growth.", "attributes": ["sulfate free", "natural ingredients", "hair loss", "hair growth", "hair treatment", "damaged hair"], "options": [""], "instruction_attributes": ["sulfate free", "hair growth"], "instruction_options": [], "assignment_id": "3EO896NRA756NTFIJAVQIHQHEY4JT6", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09SXMWZJW", "instruction": "i'd like to get sulfate free conditioner that promotes hair growth.", "attributes": ["sulfate free", "natural ingredients", "hair loss", "hair growth", "hair treatment", "damaged hair"], "options": [""], "instruction_attributes": ["sulfate free", "hair growth"], "instruction_options": [], "assignment_id": "3EO896NRA756NTFIJAVQIHQHEY4JT6", "worker_id": "A345TDMHP3DQ3G"}], "B08HN6YTRN": [{"asin": "B08HN6YTRN", "instruction": "i'm looking for a 3 foot micro usb cable that offers high speeds and is colored silver.", "attributes": ["high speed", "usb port"], "options": ["color: silver", "size: 3foot"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBC2GHZ", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B08HN6YTRN", "instruction": "i'm looking for a 3 foot micro usb cable that offers high speeds and is colored silver.", "attributes": ["high speed", "usb port"], "options": ["color: silver", "size: 3foot"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBC2GHZ", "worker_id": "A2JP9IKRHNLRPI"}], "B09NLWZMDW": [{"asin": "B09NLWZMDW", "instruction": "looking for valentine's cupcake toppers for valentine day with pattern name in red", "attributes": ["valentine day", "birthday party"], "options": ["pattern name: design 1 a red"], "instruction_attributes": ["valentine day"], "instruction_options": ["design 1 a red"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P72LVS2", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B09NLWZMDW", "instruction": "looking for valentine's cupcake toppers for valentine day with pattern name in red", "attributes": ["valentine day", "birthday party"], "options": ["pattern name: design 1 a red"], "instruction_attributes": ["valentine day"], "instruction_options": ["design 1 a red"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P72LVS2", "worker_id": "A2Y2TURT2VEYZN"}], "B09LHWT76V": [{"asin": "B09LHWT76V", "instruction": "i am looking for a gold camera lens protector that has tempered glass for an iphone 13 pro or iphone pro max.", "attributes": ["tempered glass", "aluminum alloy"], "options": ["color: gold"], "instruction_attributes": ["tempered glass"], "instruction_options": ["gold"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCFUE0N", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09LHWT76V", "instruction": "i am looking for a gold camera lens protector that has tempered glass for an iphone 13 pro or iphone pro max.", "attributes": ["tempered glass", "aluminum alloy"], "options": ["color: gold"], "instruction_attributes": ["tempered glass"], "instruction_options": ["gold"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCFUE0N", "worker_id": "A1EREKSZAA9V7B"}], "B07JG2QHHY": [{"asin": "B07JG2QHHY", "instruction": "i am looking for a lemon yellow airpod case cover compatible with apple airpods and do wireless charging.", "attributes": ["compatible apple", "case cover", "wireless charging"], "options": ["color: lemon yellow"], "instruction_attributes": ["compatible apple", "wireless charging"], "instruction_options": ["lemon yellow"], "assignment_id": "31JLPPHS254FPN8LK8H48035JTD3O4", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07JG2QHHY", "instruction": "i am looking for a lemon yellow airpod case cover compatible with apple airpods and do wireless charging.", "attributes": ["compatible apple", "case cover", "wireless charging"], "options": ["color: lemon yellow"], "instruction_attributes": ["compatible apple", "wireless charging"], "instruction_options": ["lemon yellow"], "assignment_id": "31JLPPHS254FPN8LK8H48035JTD3O4", "worker_id": "A1Q8PPQQCWGY0D"}], "B09JGVKKP1": [{"asin": "B09JGVKKP1", "instruction": "i am looking for shelf baskets that are eco friendly and are 12.5\"l by 12\"w by 10\" h.", "attributes": ["spot clean", "eco friendly"], "options": ["size: 12.5\"l x 12\"w x 10\"h"], "instruction_attributes": ["eco friendly"], "instruction_options": ["12.5\"l x 12\"w x 10\"h"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX56CFW", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09JGVKKP1", "instruction": "i am looking for shelf baskets that are eco friendly and are 12.5\"l by 12\"w by 10\" h.", "attributes": ["spot clean", "eco friendly"], "options": ["size: 12.5\"l x 12\"w x 10\"h"], "instruction_attributes": ["eco friendly"], "instruction_options": ["12.5\"l x 12\"w x 10\"h"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX56CFW", "worker_id": "A2ECRNQ3X5LEXD"}], "B01ECGBI76": [{"asin": "B01ECGBI76", "instruction": "i'd like to view a pair of machine washable regular type denim jeans for men.", "attributes": ["machine wash", "button closure"], "options": ["color: hawthorne closed book - dark indigo", "fit type: regular", "size: 50w x 30l"], "instruction_attributes": ["machine wash"], "instruction_options": ["regular"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDKJHCZ", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B01ECGBI76", "instruction": "i'd like to view a pair of machine washable regular type denim jeans for men.", "attributes": ["machine wash", "button closure"], "options": ["color: hawthorne closed book - dark indigo", "fit type: regular", "size: 50w x 30l"], "instruction_attributes": ["machine wash"], "instruction_options": ["regular"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDKJHCZ", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B01ECGBI76", "instruction": "i would like a 62w by 34l big and tall pair of light indigo jeans that are machine washable.", "attributes": ["machine wash", "button closure"], "options": ["color: good decisions - light indigo", "fit type: big & tall", "size: 62w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["good decisions - light indigo", "big & tall", "62w x 34l"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HNROWH", "worker_id": "A1WS884SI0SLO4"}], "B08T5Z2R23": [{"asin": "B08T5Z2R23", "instruction": "i need a bathroom vanity light that is easy to install.", "attributes": ["easy install", "long lasting", "vanity light", "glass shade"], "options": [""], "instruction_attributes": ["easy install", "vanity light"], "instruction_options": [], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBOXEJR", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08T5Z2R23", "instruction": "i need a bathroom vanity light that is easy to install.", "attributes": ["easy install", "long lasting", "vanity light", "glass shade"], "options": [""], "instruction_attributes": ["easy install", "vanity light"], "instruction_options": [], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBOXEJR", "worker_id": "A2RBF3IIJP15IH"}], "B01N5WESTU": [{"asin": "B01N5WESTU", "instruction": "i want to get a 6 pack of the tom's of maine fresh mint alcohol free mouth wash. i think they are 16 oz bottles.", "attributes": ["alcohol free", "clinically proven", "long lasting", "fresh breath", "bad breath"], "options": ["flavor name: fresh mint", "size: 16 ounce (pack of 6)"], "instruction_attributes": ["alcohol free"], "instruction_options": ["fresh mint", "16 ounce (pack of 6)"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZOQK3O", "worker_id": "A2DDPSXH2X96RF"}, {"asin": "B01N5WESTU", "instruction": "i want to get a 6 pack of the tom's of maine fresh mint alcohol free mouth wash. i think they are 16 oz bottles.", "attributes": ["alcohol free", "clinically proven", "long lasting", "fresh breath", "bad breath"], "options": ["flavor name: fresh mint", "size: 16 ounce (pack of 6)"], "instruction_attributes": ["alcohol free"], "instruction_options": ["fresh mint", "16 ounce (pack of 6)"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZOQK3O", "worker_id": "A2DDPSXH2X96RF"}], "B00LCBTNY0": [{"asin": "B00LCBTNY0", "instruction": "find caraway seeds for dietary fiber, need 1 pack with 8 ounce vegan food", "attributes": ["non gmo", "dietary fiber"], "options": ["size: 8 ounce (pack of 1)"], "instruction_attributes": ["dietary fiber"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH150XHW4", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B00LCBTNY0", "instruction": "find caraway seeds for dietary fiber, need 1 pack with 8 ounce vegan food", "attributes": ["non gmo", "dietary fiber"], "options": ["size: 8 ounce (pack of 1)"], "instruction_attributes": ["dietary fiber"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH150XHW4", "worker_id": "A2Y2TURT2VEYZN"}], "B098DMXZK5": [{"asin": "B098DMXZK5", "instruction": "i need white blackout cellular shades that are easy to install in size 70\"w x 36\"h.", "attributes": ["white item", "easy install"], "options": ["color: make up", "size: 70\"w x 36\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["make up", "70\"w x 36\"h"], "assignment_id": "33UKMF931KU01WBNV49UKNDQC0BTT1", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B098DMXZK5", "instruction": "i need white blackout cellular shades that are easy to install in size 70\"w x 36\"h.", "attributes": ["white item", "easy install"], "options": ["color: make up", "size: 70\"w x 36\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["make up", "70\"w x 36\"h"], "assignment_id": "33UKMF931KU01WBNV49UKNDQC0BTT1", "worker_id": "A2RBF3IIJP15IH"}], "B01IPYHLFY": [{"asin": "B01IPYHLFY", "instruction": "i would like a three pack of 4 fluid ounce green envy hair dye.", "attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "options": ["color: green envy", "size: 4 fl oz (pack of 3)"], "instruction_attributes": ["hair dye"], "instruction_options": ["green envy", "4 fl oz (pack of 3)"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMM9EXC", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01IPYHLFY", "instruction": "i would like a three pack of 4 fluid ounce green envy hair dye.", "attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "options": ["color: green envy", "size: 4 fl oz (pack of 3)"], "instruction_attributes": ["hair dye"], "instruction_options": ["green envy", "4 fl oz (pack of 3)"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMM9EXC", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01IPYHLFY", "instruction": "i'm looking for a manic panic ultra violet hair dye .", "attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "options": ["color: electric amethyst", "size: 4 fl oz (pack of 3)"], "instruction_attributes": ["hair dye"], "instruction_options": ["electric amethyst", "4 fl oz (pack of 3)"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYODHDP", "worker_id": "A1ZGOZQF2VZ0X9"}, {"asin": "B01IPYHLFY", "instruction": "i want to find 3.99 fluid ounces of venus envy hair dye.", "attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "options": ["color: venus envy", "size: 3.99 fl oz (pack of 1)"], "instruction_attributes": ["hair dye"], "instruction_options": ["venus envy", "3.99 fl oz (pack of 1)"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2GQKFW", "worker_id": "A345TDMHP3DQ3G"}], "B09ST6VY7R": [{"asin": "B09ST6VY7R", "instruction": "i am looking for 2 piece long sleeve blue#b color swimwear for women. also x-large one", "attributes": ["tummy control", "long sleeve", "drawstring closure"], "options": ["color: blue#b", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue#b"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227EXF85", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B09ST6VY7R", "instruction": "i am looking for 2 piece long sleeve blue#b color swimwear for women. also x-large one", "attributes": ["tummy control", "long sleeve", "drawstring closure"], "options": ["color: blue#b", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue#b"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227EXF85", "worker_id": "A258PTOZ3D2TQR"}], "B09HWQ4H85": [{"asin": "B09HWQ4H85", "instruction": "i would like a hair brush that's good for damaged hair.", "attributes": ["argan oil", "natural ingredients", "damaged hair"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4ARBSY", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09HWQ4H85", "instruction": "i would like a hair brush that's good for damaged hair.", "attributes": ["argan oil", "natural ingredients", "damaged hair"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4ARBSY", "worker_id": "A1WS884SI0SLO4"}], "B07VHMVXYG": [{"asin": "B07VHMVXYG", "instruction": "i am looking for a certified organic, watermelon frose, lip balm moisturizer made from coconut oil.", "attributes": ["certified organic", "seed oil", "coconut oil"], "options": ["style: watermelon fros\u00e9"], "instruction_attributes": ["certified organic", "coconut oil"], "instruction_options": ["watermelon fros\u00e9"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KKFUHB", "worker_id": "A114NK7T5673GK"}, {"asin": "B07VHMVXYG", "instruction": "i am looking for a certified organic, watermelon frose, lip balm moisturizer made from coconut oil.", "attributes": ["certified organic", "seed oil", "coconut oil"], "options": ["style: watermelon fros\u00e9"], "instruction_attributes": ["certified organic", "coconut oil"], "instruction_options": ["watermelon fros\u00e9"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KKFUHB", "worker_id": "A114NK7T5673GK"}], "B00EV815GU": [{"asin": "B00EV815GU", "instruction": "i need a natural teeth whitening toothpaste.", "attributes": ["fluoride free", "teeth whitening", "sulfate free", "fresh breath"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z476CQH", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B00EV815GU", "instruction": "i need a natural teeth whitening toothpaste.", "attributes": ["fluoride free", "teeth whitening", "sulfate free", "fresh breath"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z476CQH", "worker_id": "A2RBF3IIJP15IH"}], "B09NGSLDXV": [{"asin": "B09NGSLDXV", "instruction": "i am looking for red storage benches that are made of engineered wood and are 90 by 40 by 45.", "attributes": ["button tufted", "pu leather", "engineered wood", "faux leather"], "options": ["color: red", "size: 90x40x45cm(35x16x18inch)"], "instruction_attributes": ["engineered wood"], "instruction_options": ["red", "90x40x45cm(35x16x18inch)"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX3V9U12", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09NGSLDXV", "instruction": "i am looking for red storage benches that are made of engineered wood and are 90 by 40 by 45.", "attributes": ["button tufted", "pu leather", "engineered wood", "faux leather"], "options": ["color: red", "size: 90x40x45cm(35x16x18inch)"], "instruction_attributes": ["engineered wood"], "instruction_options": ["red", "90x40x45cm(35x16x18inch)"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX3V9U12", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09NGSLDXV", "instruction": "i need to find a khaki-colored storage ottoman bench in either the \"pu\" or \"faux\" leather style.", "attributes": ["button tufted", "pu leather", "engineered wood", "faux leather"], "options": ["color: khaki", "size: 70x40x45cm(28x16x18inch)"], "instruction_attributes": ["pu leather", "faux leather"], "instruction_options": ["khaki"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZHQLKQ", "worker_id": "A3LIIE572Z4OG7"}], "B08N3BYNDN": [{"asin": "B08N3BYNDN", "instruction": "i want to buy an android smartphone. the camera should have optical zoom and it should have at least 128gb of space.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom violet", "size: 128 gb", "style: s21 ultra + case black"], "instruction_attributes": ["optical zoom"], "instruction_options": ["128 gb"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXTEO4F", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B08N3BYNDN", "instruction": "look for an eay to use android cell phone that has 128 gb.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom white", "size: 128 gb", "style: s21 ultra + case - black"], "instruction_attributes": ["easy use"], "instruction_options": ["128 gb"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYWKJ41", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B08N3BYNDN", "instruction": "i am looking for optical zoom samsung galaxy smartphone of style: s21 ultra + case black", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom white", "size: 256gb", "style: s21 ultra + case black"], "instruction_attributes": ["optical zoom"], "instruction_options": ["s21 ultra + case black"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKQDRJPA", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B08N3BYNDN", "instruction": "i am looking for samsung galaxy smartphone with 256 gb memory and 3x optical zoom.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom white", "size: 256gb", "style: s21 + case"], "instruction_attributes": ["optical zoom"], "instruction_options": ["256gb"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DNUK4F", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B08N3BYNDN", "instruction": "i want to find a phantom silver s21 android phone that has a camera with an optical zoom. it needs to be able to store 128 gigabytes of data and it should come with a case.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom silver", "size: 128 gb", "style: s21 + case"], "instruction_attributes": ["optical zoom"], "instruction_options": ["phantom silver", "128 gb", "s21 + case"], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CI03BI", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08N3BYNDN", "instruction": "i want to find a phantom black s21 android smartphone that's easy to use and has 128 gigabytes of storage space. ideally it will come with a black case.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom black", "size: 128gb", "style: s21 ultra + case - black"], "instruction_attributes": ["easy use"], "instruction_options": ["phantom black", "128gb", "s21 ultra + case - black"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KFJJ90", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08N3BYNDN", "instruction": "i want to find an unlocked pink s21 android phone that has a camera with an optical zoom feature. it needs to have 256 gigabytes of storage space and ideally it'll come with a black case.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom pink", "size: 256gb", "style: s21 + case, black"], "instruction_attributes": ["optical zoom"], "instruction_options": ["phantom pink", "256gb", "s21 + case, black"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YWPXT4K", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08N3BYNDN", "instruction": "i want to find a phantom gray colored samsung galaxy s21 phone with 256 gigabytes of storage space. the camera needs to have an optical zoom feature.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom gray", "size: 256gb", "style: s21+"], "instruction_attributes": ["optical zoom"], "instruction_options": ["phantom gray", "256gb", "s21+"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMFDJ1X", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08N3BYNDN", "instruction": "i want to buy an android smartphone. the camera should have optical zoom and it should have at least 128gb of space.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom violet", "size: 128 gb", "style: s21 ultra + case black"], "instruction_attributes": ["optical zoom"], "instruction_options": ["128 gb"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXTEO4F", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B08N3BYNDN", "instruction": "searching for a galaxy s21 ultra 5g factory unlocked android smartphone using 128gb, us version that is easy to use, either in color of phantom black or phantom silver with the added features of pro-grade camera, 8k video, and 108mp high resolution made by samsung.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom black", "size: 128gb", "style: s21 ultra + silicone case"], "instruction_attributes": ["easy use"], "instruction_options": ["phantom black", "128gb"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWPDW6K", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B08N3BYNDN", "instruction": "i am looking for a phantom pink samsung galaxy s21 ultra 5g unlocked phone with optical zoom.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom pink", "size: 512gb", "style: s21 ultra + case - black"], "instruction_attributes": ["optical zoom"], "instruction_options": ["phantom pink"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ22IS9", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08N3BYNDN", "instruction": "i'm looking for optical zoom its for computer accessories for cell phones.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom silver", "size: 128gb", "style: s21 ultra + silicone case"], "instruction_attributes": ["easy use", "optical zoom"], "instruction_options": ["phantom silver"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YQT699", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08N3BYNDN", "instruction": "i would like a violet colored phone that has optical zoom", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom violet", "size: 128gb", "style: s21 + case"], "instruction_attributes": ["optical zoom"], "instruction_options": ["phantom violet"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZMZ7C9", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08N3BYNDN", "instruction": "i want a phantom black samsung galaxy s21 with optical zoom.", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom black", "size: 128 gb", "style: s21 + case - black"], "instruction_attributes": ["optical zoom"], "instruction_options": ["phantom black"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALEZH4X", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08N3BYNDN", "instruction": "i am looking for a samsung mobile with 512gb internal memory and phantom gray color which is for easy use. also choose s21 ultra + case black", "attributes": ["easy use", "optical zoom"], "options": ["color: phantom gray", "size: 512gb", "style: s21 ultra + case black"], "instruction_attributes": ["easy use"], "instruction_options": ["phantom gray", "512gb", "s21 ultra + case black"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVR7X93", "worker_id": "A2HMEGTAFO0CS8"}], "B082QHNGY4": [{"asin": "B082QHNGY4", "instruction": "i am looking for a white fast charging usb wall charger for a samsung galaxy.", "attributes": ["fast charging", "usb port"], "options": ["color: white"], "instruction_attributes": ["fast charging"], "instruction_options": ["white"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OF6RTE", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B082QHNGY4", "instruction": "i am looking for a white fast charging usb wall charger for a samsung galaxy.", "attributes": ["fast charging", "usb port"], "options": ["color: white"], "instruction_attributes": ["fast charging"], "instruction_options": ["white"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OF6RTE", "worker_id": "A1EREKSZAA9V7B"}], "B09PL6LMFX": [{"asin": "B09PL6LMFX", "instruction": "i am looking for a 2bottle color floride free teeth whitening toothpaste.", "attributes": ["fluoride free", "teeth whitening", "natural ingredients", "sensitive teeth", "bad breath"], "options": ["color: 2bottle"], "instruction_attributes": ["fluoride free", "teeth whitening"], "instruction_options": ["2bottle"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HQMPBY", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09PL6LMFX", "instruction": "i am looking for a 2bottle color floride free teeth whitening toothpaste.", "attributes": ["fluoride free", "teeth whitening", "natural ingredients", "sensitive teeth", "bad breath"], "options": ["color: 2bottle"], "instruction_attributes": ["fluoride free", "teeth whitening"], "instruction_options": ["2bottle"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HQMPBY", "worker_id": "A1Q8PPQQCWGY0D"}], "B0001W2XSO": [{"asin": "B0001W2XSO", "instruction": "i need party bags of potato chips.", "attributes": ["fat free", "gluten free", "birthday party"], "options": ["flavor name: reduced fat", "size: 5 ounce (pack of 12)"], "instruction_attributes": ["birthday party"], "instruction_options": ["reduced fat"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW488SY", "worker_id": "A19317A3X87NVM"}, {"asin": "B0001W2XSO", "instruction": "i need party bags of potato chips.", "attributes": ["fat free", "gluten free", "birthday party"], "options": ["flavor name: reduced fat", "size: 5 ounce (pack of 12)"], "instruction_attributes": ["birthday party"], "instruction_options": ["reduced fat"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW488SY", "worker_id": "A19317A3X87NVM"}, {"asin": "B0001W2XSO", "instruction": "i would like some fat free potato chips that are salt and vinegar", "attributes": ["fat free", "gluten free", "birthday party"], "options": ["flavor name: sea salt and vinegar", "size: 5 ounce (pack of 12)"], "instruction_attributes": ["fat free"], "instruction_options": ["sea salt and vinegar"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQAZVKG", "worker_id": "A2ECRNQ3X5LEXD"}], "B089M2WWHH": [{"asin": "B089M2WWHH", "instruction": "i am looking for a bed with a steel frame and a twin xl memory foam mattress.", "attributes": ["assembly required", "memory foam", "steel frame"], "options": ["size: twin xl", "style: firm mattress only"], "instruction_attributes": ["memory foam", "steel frame"], "instruction_options": ["twin xl"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39INHTLQ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B089M2WWHH", "instruction": "i am looking for a bed with a steel frame and a twin xl memory foam mattress.", "attributes": ["assembly required", "memory foam", "steel frame"], "options": ["size: twin xl", "style: firm mattress only"], "instruction_attributes": ["memory foam", "steel frame"], "instruction_options": ["twin xl"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39INHTLQ", "worker_id": "A1EREKSZAA9V7B"}], "B09JBMP1YR": [{"asin": "B09JBMP1YR", "instruction": "i am looking for a computer gaming chair that has lumbar support.", "attributes": ["heavy duty", "pu leather", "lumbar support"], "options": [""], "instruction_attributes": ["lumbar support"], "instruction_options": [], "assignment_id": "33TIN5LC0FKDY31374RC144TXVX9YD", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09JBMP1YR", "instruction": "i am looking for a computer gaming chair that has lumbar support.", "attributes": ["heavy duty", "pu leather", "lumbar support"], "options": [""], "instruction_attributes": ["lumbar support"], "instruction_options": [], "assignment_id": "33TIN5LC0FKDY31374RC144TXVX9YD", "worker_id": "A2ECRNQ3X5LEXD"}], "B07JGP6BN3": [{"asin": "B07JGP6BN3", "instruction": "want a security camera system with high definition, motion detection and need to be dust proof", "attributes": ["dust proof", "high definition", "motion detection"], "options": [""], "instruction_attributes": ["dust proof", "high definition", "motion detection"], "instruction_options": [], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOEATCH", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07JGP6BN3", "instruction": "want a security camera system with high definition, motion detection and need to be dust proof", "attributes": ["dust proof", "high definition", "motion detection"], "options": [""], "instruction_attributes": ["dust proof", "high definition", "motion detection"], "instruction_options": [], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOEATCH", "worker_id": "A2Y2TURT2VEYZN"}], "B0979651TX": [{"asin": "B0979651TX", "instruction": "i need white steel toe siilsaa sneakers for women in size 7.5.", "attributes": ["steel toe", "teen girls"], "options": ["color: z03 white", "size: 7.5"], "instruction_attributes": ["steel toe"], "instruction_options": ["z03 white", "7.5"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP6UD69", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B0979651TX", "instruction": "i need white steel toe siilsaa sneakers for women in size 7.5.", "attributes": ["steel toe", "teen girls"], "options": ["color: z03 white", "size: 7.5"], "instruction_attributes": ["steel toe"], "instruction_options": ["z03 white", "7.5"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP6UD69", "worker_id": "A2RBF3IIJP15IH"}], "B09HPMDHZK": [{"asin": "B09HPMDHZK", "instruction": "i am looking for silver cupcake toppers for a birthday party.", "attributes": ["birthday party", "cupcake picks"], "options": ["color: silver"], "instruction_attributes": ["birthday party"], "instruction_options": ["silver"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TV3US3", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09HPMDHZK", "instruction": "i am looking for silver cupcake toppers for a birthday party.", "attributes": ["birthday party", "cupcake picks"], "options": ["color: silver"], "instruction_attributes": ["birthday party"], "instruction_options": ["silver"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TV3US3", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09HPMDHZK", "instruction": "i need some pink cupcake toppers for a birthday party.", "attributes": ["birthday party", "cupcake picks"], "options": ["color: pink"], "instruction_attributes": ["birthday party"], "instruction_options": ["pink"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GM7S3P", "worker_id": "AR9AU5FY1S3RO"}], "B09129MGYK": [{"asin": "B09129MGYK", "instruction": "i am looking for a round, ivory colored ottoman for my living room.", "attributes": ["white item", "living room"], "options": ["color: ivory"], "instruction_attributes": ["living room"], "instruction_options": ["ivory"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWU859RY", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09129MGYK", "instruction": "i am looking for a round, ivory colored ottoman for my living room.", "attributes": ["white item", "living room"], "options": ["color: ivory"], "instruction_attributes": ["living room"], "instruction_options": ["ivory"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWU859RY", "worker_id": "A1EREKSZAA9V7B"}], "B08NTSS463": [{"asin": "B08NTSS463", "instruction": "i want to buy some sandals. get the ones with the ankle straps, and buy them in moonstone, size six and a half.", "attributes": ["ethylene vinyl", "vinyl acetate", "ankle strap"], "options": ["color: moonstone", "size: 6.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["moonstone", "6.5"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EBXWSN", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08NTSS463", "instruction": "i want to buy some sandals. get the ones with the ankle straps, and buy them in moonstone, size six and a half.", "attributes": ["ethylene vinyl", "vinyl acetate", "ankle strap"], "options": ["color: moonstone", "size: 6.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["moonstone", "6.5"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EBXWSN", "worker_id": "AR9AU5FY1S3RO"}], "B099K1KP3N": [{"asin": "B099K1KP3N", "instruction": "looking for one bed for kids in grey color, size twin and of easy assemble in wood.", "attributes": ["white item", "easy assemble", "box spring"], "options": ["color: grey(triangle)", "size: twin"], "instruction_attributes": ["easy assemble"], "instruction_options": ["grey(triangle)", "twin"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X022G34X", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B099K1KP3N", "instruction": "looking for one bed for kids in grey color, size twin and of easy assemble in wood.", "attributes": ["white item", "easy assemble", "box spring"], "options": ["color: grey(triangle)", "size: twin"], "instruction_attributes": ["easy assemble"], "instruction_options": ["grey(triangle)", "twin"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X022G34X", "worker_id": "A2Y2TURT2VEYZN"}], "B0786TZL82": [{"asin": "B0786TZL82", "instruction": "i want a low sodium spice mix that has himalyan salt.", "attributes": ["low sodium", "non gmo", "gluten free", "natural ingredients", "gift set", "great gift"], "options": ["flavor: himalayan salt"], "instruction_attributes": ["low sodium"], "instruction_options": ["himalayan salt"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3D8YAA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0786TZL82", "instruction": "i want a low sodium spice mix that has himalyan salt.", "attributes": ["low sodium", "non gmo", "gluten free", "natural ingredients", "gift set", "great gift"], "options": ["flavor: himalayan salt"], "instruction_attributes": ["low sodium"], "instruction_options": ["himalayan salt"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3D8YAA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0786TZL82", "instruction": "i would like a sweet and savory spices that are low sodium.", "attributes": ["low sodium", "non gmo", "gluten free", "natural ingredients", "gift set", "great gift"], "options": ["flavor: sweet & savory"], "instruction_attributes": ["low sodium"], "instruction_options": ["sweet & savory"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DY7OTZ", "worker_id": "A1WS884SI0SLO4"}], "B093L1QNPT": [{"asin": "B093L1QNPT", "instruction": "i'm looking for a black, digital alarm clock that offers wireless bluetooth functionality.", "attributes": ["hands free", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7XWPTZ9", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B093L1QNPT", "instruction": "i'm looking for a black, digital alarm clock that offers wireless bluetooth functionality.", "attributes": ["hands free", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7XWPTZ9", "worker_id": "A2JP9IKRHNLRPI"}], "B088K9PJQY": [{"asin": "B088K9PJQY", "instruction": "find me cloths towel for exfoliating bath for sensitive skin 11.81 x 11.8 inch with yellow edge", "attributes": ["easy clean", "long lasting", "sensitive skin"], "options": ["size: 11.81 x 11.8 inch", "style: yellow edge"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["11.81 x 11.8 inch", "yellow edge"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJF8OL7", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B088K9PJQY", "instruction": "find me cloths towel for exfoliating bath for sensitive skin 11.81 x 11.8 inch with yellow edge", "attributes": ["easy clean", "long lasting", "sensitive skin"], "options": ["size: 11.81 x 11.8 inch", "style: yellow edge"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["11.81 x 11.8 inch", "yellow edge"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJF8OL7", "worker_id": "A2Y2TURT2VEYZN"}], "B07BMF3FYB": [{"asin": "B07BMF3FYB", "instruction": "i am looking for sugar free unsweetened shredded coconut flakes with large flakes.", "attributes": ["gluten free", "usda organic", "low carb", "sugar free", "plant based", "non gmo"], "options": ["flavor name: unsweetened chips | large flakes", "size: 14 ounce (pack of 2)"], "instruction_attributes": ["sugar free"], "instruction_options": ["unsweetened chips | large flakes"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFQ3OJ5", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07BMF3FYB", "instruction": "i am looking for sugar free unsweetened shredded coconut flakes with large flakes.", "attributes": ["gluten free", "usda organic", "low carb", "sugar free", "plant based", "non gmo"], "options": ["flavor name: unsweetened chips | large flakes", "size: 14 ounce (pack of 2)"], "instruction_attributes": ["sugar free"], "instruction_options": ["unsweetened chips | large flakes"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFQ3OJ5", "worker_id": "A1EREKSZAA9V7B"}], "B019MH122Q": [{"asin": "B019MH122Q", "instruction": "i'm looking for ten high-speed, gold-plated hdmi cables.", "attributes": ["high speed", "gold plated"], "options": ["color: 10 pack", "size: 1.5 feet (4-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C481I00", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B019MH122Q", "instruction": "i'm looking for ten high-speed, gold-plated hdmi cables.", "attributes": ["high speed", "gold plated"], "options": ["color: 10 pack", "size: 1.5 feet (4-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C481I00", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B019MH122Q", "instruction": "i need to buy some hdmi male to female cables. look for a pack of ten three foot cables that are high speed and gold plated.", "attributes": ["high speed", "gold plated"], "options": ["color: 10 pack", "size: 3 feet (3-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack", "3 feet (3-pack)", "hdmi male to female"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRMAF9T", "worker_id": "AR9AU5FY1S3RO"}], "B09BQ35B69": [{"asin": "B09BQ35B69", "instruction": "i would like a pink size 5 high heel shoe with a rubber sole.", "attributes": ["high heel", "rubber sole"], "options": ["color: pink", "size: 5"], "instruction_attributes": ["high heel", "rubber sole"], "instruction_options": ["pink", "5"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJJ6Z8S", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09BQ35B69", "instruction": "i would like a pink size 5 high heel shoe with a rubber sole.", "attributes": ["high heel", "rubber sole"], "options": ["color: pink", "size: 5"], "instruction_attributes": ["high heel", "rubber sole"], "instruction_options": ["pink", "5"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJJ6Z8S", "worker_id": "A1WS884SI0SLO4"}], "B089JYCLBG": [{"asin": "B089JYCLBG", "instruction": "i am looking for a pink leak proof bag.", "attributes": ["travel size", "leak proof", "travel bottles", "stainless steel", "hair dye"], "options": ["color: pink", "size: 60 ml"], "instruction_attributes": ["leak proof"], "instruction_options": ["pink"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNX6PT8", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B089JYCLBG", "instruction": "i am looking for a pink leak proof bag.", "attributes": ["travel size", "leak proof", "travel bottles", "stainless steel", "hair dye"], "options": ["color: pink", "size: 60 ml"], "instruction_attributes": ["leak proof"], "instruction_options": ["pink"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNX6PT8", "worker_id": "A2ECRNQ3X5LEXD"}], "B00CWTZ8UY": [{"asin": "B00CWTZ8UY", "instruction": "get me a holiday variety pack of sugar free syrup, please.", "attributes": ["sugar free", "fat free", "keto friendly", "gluten free", "zero sugar"], "options": ["flavor name: sugar free syrup, holiday variety pack", "size: 25.4-ounce (pack of 3)"], "instruction_attributes": ["sugar free"], "instruction_options": ["sugar free syrup, holiday variety pack"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYAJ28Z", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B00CWTZ8UY", "instruction": "get me a holiday variety pack of sugar free syrup, please.", "attributes": ["sugar free", "fat free", "keto friendly", "gluten free", "zero sugar"], "options": ["flavor name: sugar free syrup, holiday variety pack", "size: 25.4-ounce (pack of 3)"], "instruction_attributes": ["sugar free"], "instruction_options": ["sugar free syrup, holiday variety pack"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYAJ28Z", "worker_id": "AR9AU5FY1S3RO"}], "B07PXGC1V2": [{"asin": "B07PXGC1V2", "instruction": "i am interested in a high protein snack pack.", "attributes": ["fully cooked", "easy prepare", "protein serving", "keto friendly", "ready eat", "high protein"], "options": [""], "instruction_attributes": ["high protein"], "instruction_options": [], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BJFVJT", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07PXGC1V2", "instruction": "i am interested in a high protein snack pack.", "attributes": ["fully cooked", "easy prepare", "protein serving", "keto friendly", "ready eat", "high protein"], "options": [""], "instruction_attributes": ["high protein"], "instruction_options": [], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BJFVJT", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DL8BGGW": [{"asin": "B09DL8BGGW", "instruction": "i need in dash navigation that is hands free.", "attributes": ["compatible apple", "1080p hd", "fast charging", "hands free"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z2RGXY", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09DL8BGGW", "instruction": "i need in dash navigation that is hands free.", "attributes": ["compatible apple", "1080p hd", "fast charging", "hands free"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z2RGXY", "worker_id": "A2ECRNQ3X5LEXD"}], "B07QNF7GVB": [{"asin": "B07QNF7GVB", "instruction": "i'm looking for pink cruelty free himalayan salt water mouth rinse.", "attributes": ["alcohol free", "easy use", "cruelty free", "bpa free"], "options": [""], "instruction_attributes": ["alcohol free", "cruelty free"], "instruction_options": [], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HG8SHYY", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B07QNF7GVB", "instruction": "i'm looking for pink cruelty free himalayan salt water mouth rinse.", "attributes": ["alcohol free", "easy use", "cruelty free", "bpa free"], "options": [""], "instruction_attributes": ["alcohol free", "cruelty free"], "instruction_options": [], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HG8SHYY", "worker_id": "ARQ05PDNXPFDI"}], "B07Z19YMN4": [{"asin": "B07Z19YMN4", "instruction": "i am looking for a 15 pack of individually wrapped gourmet cookies with natural ingredients.", "attributes": ["individually wrapped", "artificial ingredients", "simple ingredients", "natural ingredients"], "options": ["flavor name: milk and hazelnut chocolate", "size: 15 count (pack of 3)"], "instruction_attributes": ["individually wrapped", "natural ingredients"], "instruction_options": ["15 count (pack of 3)"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23ST4TQF", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07Z19YMN4", "instruction": "i am looking for a 15 pack of individually wrapped gourmet cookies with natural ingredients.", "attributes": ["individually wrapped", "artificial ingredients", "simple ingredients", "natural ingredients"], "options": ["flavor name: milk and hazelnut chocolate", "size: 15 count (pack of 3)"], "instruction_attributes": ["individually wrapped", "natural ingredients"], "instruction_options": ["15 count (pack of 3)"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23ST4TQF", "worker_id": "A1EREKSZAA9V7B"}], "B00XNUMYTY": [{"asin": "B00XNUMYTY", "instruction": "i need a non-dairy coffee creamer.", "attributes": ["non dairy", "non gmo", "plant based", "dairy free", "artificial ingredients", "low sugar", "gluten free", "shelf stable", "soy free"], "options": [""], "instruction_attributes": ["non dairy"], "instruction_options": [], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDSZYUV9", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00XNUMYTY", "instruction": "i need a non-dairy coffee creamer.", "attributes": ["non dairy", "non gmo", "plant based", "dairy free", "artificial ingredients", "low sugar", "gluten free", "shelf stable", "soy free"], "options": [""], "instruction_attributes": ["non dairy"], "instruction_options": [], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDSZYUV9", "worker_id": "A2ECRNQ3X5LEXD"}], "B07G4HMCR1": [{"asin": "B07G4HMCR1", "instruction": "i am looking for a hair color of lime light color having argan oil in it.", "attributes": ["argan oil", "permanent hair"], "options": ["color: lime light"], "instruction_attributes": ["argan oil"], "instruction_options": ["lime light"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2K6L52", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07G4HMCR1", "instruction": "i am looking for a hair color of lime light color having argan oil in it.", "attributes": ["argan oil", "permanent hair"], "options": ["color: lime light"], "instruction_attributes": ["argan oil"], "instruction_options": ["lime light"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2K6L52", "worker_id": "A1Q8PPQQCWGY0D"}], "B09MTPKW8N": [{"asin": "B09MTPKW8N", "instruction": "i need a blue tongue scraper for bad breath.", "attributes": ["oral hygiene", "fresh breath", "bad breath"], "options": ["color: blue"], "instruction_attributes": ["bad breath"], "instruction_options": ["blue"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4QO7KS", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09MTPKW8N", "instruction": "i need a blue tongue scraper for bad breath.", "attributes": ["oral hygiene", "fresh breath", "bad breath"], "options": ["color: blue"], "instruction_attributes": ["bad breath"], "instruction_options": ["blue"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4QO7KS", "worker_id": "A2RBF3IIJP15IH"}], "B09MRKGG9Q": [{"asin": "B09MRKGG9Q", "instruction": "i need a media player with aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQDYKEX", "worker_id": "A19317A3X87NVM"}, {"asin": "B09MRKGG9Q", "instruction": "i need a media player with aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQDYKEX", "worker_id": "A19317A3X87NVM"}, {"asin": "B09MRKGG9Q", "instruction": "find me a hdmi media players with aaa batteries for streaming", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "3X08E93BH6SOX0PZ3ET8Y3TY8QB66Q", "worker_id": "A2Y2TURT2VEYZN"}], "B096YP9W7J": [{"asin": "B096YP9W7J", "instruction": "i would like a 6 pack of 10 ounce kashmir potatoes that are ready to eat.", "attributes": ["ready eat", "fully cooked", "gluten free"], "options": ["flavor: kashmir potatoes", "size: 10 ounce (pack of 6)"], "instruction_attributes": ["ready eat"], "instruction_options": ["kashmir potatoes", "10 ounce (pack of 6)"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SSXUDD", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B096YP9W7J", "instruction": "i need some ready to eat delhi potato entrees.", "attributes": ["ready eat", "fully cooked", "gluten free"], "options": ["flavor: delhi potatoes", "size: 10 ounce (pack of 1)"], "instruction_attributes": ["ready eat"], "instruction_options": ["delhi potatoes"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTB3E5I", "worker_id": "A19317A3X87NVM"}, {"asin": "B096YP9W7J", "instruction": "i would like a 6 pack of 10 ounce kashmir potatoes that are ready to eat.", "attributes": ["ready eat", "fully cooked", "gluten free"], "options": ["flavor: kashmir potatoes", "size: 10 ounce (pack of 6)"], "instruction_attributes": ["ready eat"], "instruction_options": ["kashmir potatoes", "10 ounce (pack of 6)"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SSXUDD", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B096YP9W7J", "instruction": "i need ready to eat gluten free kashmir potatoes that is suitable for the preparation of asian foods. and i would prefer a pack of one", "attributes": ["ready eat", "fully cooked", "gluten free"], "options": ["flavor: delhi lentil", "size: 10 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["10 ounce (pack of 1)"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746Z4BTY", "worker_id": "A2COCSUGZV28X"}, {"asin": "B096YP9W7J", "instruction": "i would like some lentils that are ready to eat", "attributes": ["ready eat", "fully cooked", "gluten free"], "options": ["flavor: delhi lentil", "size: 10 ounce (pack of 6)"], "instruction_attributes": ["ready eat"], "instruction_options": ["delhi lentil"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DYDTOA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B096YP9W7J", "instruction": "i would like a six pack of ready to eat entrees", "attributes": ["ready eat", "fully cooked", "gluten free"], "options": ["flavor: kashmir potatoes", "size: 10 ounce (pack of 6)"], "instruction_attributes": ["ready eat"], "instruction_options": ["10 ounce (pack of 6)"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWT21971", "worker_id": "A2ECRNQ3X5LEXD"}], "B09L1KZ8N2": [{"asin": "B09L1KZ8N2", "instruction": "i would like a milky white chair that's easy to clean.", "attributes": ["non slip", "spot clean", "easy clean"], "options": ["color: milk white -1"], "instruction_attributes": ["easy clean"], "instruction_options": ["milk white -1"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPWUTXF", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09L1KZ8N2", "instruction": "i would like a milky white chair that's easy to clean.", "attributes": ["non slip", "spot clean", "easy clean"], "options": ["color: milk white -1"], "instruction_attributes": ["easy clean"], "instruction_options": ["milk white -1"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPWUTXF", "worker_id": "A1WS884SI0SLO4"}], "B07WYD5LPD": [{"asin": "B07WYD5LPD", "instruction": "i am looking for eye shadow that is a soft brass color.", "attributes": ["nail polish", "eye shadow"], "options": ["color: clear | soft brass"], "instruction_attributes": ["eye shadow"], "instruction_options": ["clear | soft brass"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPDJ6VM", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07WYD5LPD", "instruction": "i am looking for eye shadow that is a soft brass color.", "attributes": ["nail polish", "eye shadow"], "options": ["color: clear | soft brass"], "instruction_attributes": ["eye shadow"], "instruction_options": ["clear | soft brass"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPDJ6VM", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PRN1F5X": [{"asin": "B07PRN1F5X", "instruction": "i am looking for dried coconut that is gluten free", "attributes": ["gluten free", "real fruit"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G741472", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07PRN1F5X", "instruction": "i am looking for dried coconut that is gluten free", "attributes": ["gluten free", "real fruit"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G741472", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RX2753C": [{"asin": "B07RX2753C", "instruction": "i need a 30 pair pack of skin care masks for eyes and wrinkles.", "attributes": ["anti aging", "dark circles", "fine lines"], "options": ["color: 30 pairs gold"], "instruction_attributes": ["anti aging", "dark circles"], "instruction_options": ["30 pairs gold"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907PZAUQ", "worker_id": "A19317A3X87NVM"}, {"asin": "B07RX2753C", "instruction": "i need a 30 pair pack of skin care masks for eyes and wrinkles.", "attributes": ["anti aging", "dark circles", "fine lines"], "options": ["color: 30 pairs gold"], "instruction_attributes": ["anti aging", "dark circles"], "instruction_options": ["30 pairs gold"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907PZAUQ", "worker_id": "A19317A3X87NVM"}], "B07BN5LDJ5": [{"asin": "B07BN5LDJ5", "instruction": "i'd like to buy about 12 ounces of fully cooked steak strips that are ready to eat.", "attributes": ["fully cooked", "ready eat"], "options": ["size: 12 ounce (pack of 1)"], "instruction_attributes": ["fully cooked", "ready eat"], "instruction_options": ["12 ounce (pack of 1)"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLQ103F", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07BN5LDJ5", "instruction": "i'd like to buy about 12 ounces of fully cooked steak strips that are ready to eat.", "attributes": ["fully cooked", "ready eat"], "options": ["size: 12 ounce (pack of 1)"], "instruction_attributes": ["fully cooked", "ready eat"], "instruction_options": ["12 ounce (pack of 1)"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLQ103F", "worker_id": "A3EDFA8UQT5GG8"}], "B07GXTPGVR": [{"asin": "B07GXTPGVR", "instruction": "i am looking for rubber sole shoes of light beige knit color.", "attributes": ["day comfort", "rubber sole"], "options": ["color: light beige knit", "size: 6.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["light beige knit"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WOG42N", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07GXTPGVR", "instruction": "i am looking for rubber sole shoes of light beige knit color.", "attributes": ["day comfort", "rubber sole"], "options": ["color: light beige knit", "size: 6.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["light beige knit"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WOG42N", "worker_id": "A1Q8PPQQCWGY0D"}], "B09H7MFR68": [{"asin": "B09H7MFR68", "instruction": "i want to buy some low-rise ankle booties. look for some in green and in a size seven and a half.", "attributes": ["low rise", "knee high", "steel toe", "rubber sole", "daily wear"], "options": ["color: green", "size: 7.5"], "instruction_attributes": ["low rise"], "instruction_options": ["green", "7.5"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZNISHH", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09H7MFR68", "instruction": "i want to buy some low-rise ankle booties. look for some in green and in a size seven and a half.", "attributes": ["low rise", "knee high", "steel toe", "rubber sole", "daily wear"], "options": ["color: green", "size: 7.5"], "instruction_attributes": ["low rise"], "instruction_options": ["green", "7.5"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZNISHH", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09H7MFR68", "instruction": "i'm looking for ankle boots for women and winter round toe solid color booties.", "attributes": ["low rise", "knee high", "steel toe", "rubber sole", "daily wear"], "options": ["color: grey", "size: 6"], "instruction_attributes": ["daily wear"], "instruction_options": ["grey"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLND0M2", "worker_id": "A21IUUHBSEVB56"}], "B07X63DQ2K": [{"asin": "B07X63DQ2K", "instruction": "i need khaki steel toe shoes in size 11 women.", "attributes": ["steel toe", "ethylene vinyl", "vinyl acetate"], "options": ["color: khaki", "size: 11 women | 9 men"], "instruction_attributes": ["steel toe"], "instruction_options": ["khaki", "11 women | 9 men"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNP7FJ5", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07X63DQ2K", "instruction": "i need khaki steel toe shoes in size 11 women.", "attributes": ["steel toe", "ethylene vinyl", "vinyl acetate"], "options": ["color: khaki", "size: 11 women | 9 men"], "instruction_attributes": ["steel toe"], "instruction_options": ["khaki", "11 women | 9 men"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNP7FJ5", "worker_id": "A2RBF3IIJP15IH"}], "B0933K4XFG": [{"asin": "B0933K4XFG", "instruction": "i need an amplifier that is easy to install.", "attributes": ["easy install", "stereo sound"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746TATBA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0933K4XFG", "instruction": "i need an amplifier that is easy to install.", "attributes": ["easy install", "stereo sound"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746TATBA", "worker_id": "A2ECRNQ3X5LEXD"}], "B082TNGSWD": [{"asin": "B082TNGSWD", "instruction": "i am looking for a heavy duty 25 foot 7.6 meter toslink optical cable.", "attributes": ["blu ray", "heavy duty", "high resolution", "high definition"], "options": ["size: 25ft | 7.6m"], "instruction_attributes": ["heavy duty"], "instruction_options": ["25ft | 7.6m"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDXYICT", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B082TNGSWD", "instruction": "i am looking for a heavy duty 25 foot 7.6 meter toslink optical cable.", "attributes": ["blu ray", "heavy duty", "high resolution", "high definition"], "options": ["size: 25ft | 7.6m"], "instruction_attributes": ["heavy duty"], "instruction_options": ["25ft | 7.6m"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDXYICT", "worker_id": "A1EREKSZAA9V7B"}], "B09K3WM82N": [{"asin": "B09K3WM82N", "instruction": "i need a faux fur white andeworld swivel barrel chair for my living room.", "attributes": ["mid century", "living room"], "options": ["color: faux fur white"], "instruction_attributes": ["living room"], "instruction_options": ["faux fur white"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKWJNDT", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09K3WM82N", "instruction": "i need a faux fur white andeworld swivel barrel chair for my living room.", "attributes": ["mid century", "living room"], "options": ["color: faux fur white"], "instruction_attributes": ["living room"], "instruction_options": ["faux fur white"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKWJNDT", "worker_id": "A2RBF3IIJP15IH"}], "B07QKVNJTP": [{"asin": "B07QKVNJTP", "instruction": "i am looking for wine red maternity shorts with nylon spandex and pockets.", "attributes": ["low rise", "nylon spandex"], "options": ["color: wine red", "size: x-large"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["wine red"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUURLJQ8", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07QKVNJTP", "instruction": "i am looking for wine red maternity shorts with nylon spandex and pockets.", "attributes": ["low rise", "nylon spandex"], "options": ["color: wine red", "size: x-large"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["wine red"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUURLJQ8", "worker_id": "A1EREKSZAA9V7B"}], "B07WK5PLPN": [{"asin": "B07WK5PLPN", "instruction": "i need a women's shower gel that is purple and long lasting.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLPXAD9", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07WK5PLPN", "instruction": "i need a women's shower gel that is purple and long lasting.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLPXAD9", "worker_id": "A2RBF3IIJP15IH"}], "B07SBG7PZK": [{"asin": "B07SBG7PZK", "instruction": "i am looking for pez toy story 4 themed candy for a birthday party.", "attributes": ["individually wrapped", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LG45I0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07SBG7PZK", "instruction": "i am looking for pez toy story 4 themed candy for a birthday party.", "attributes": ["individually wrapped", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LG45I0", "worker_id": "A1EREKSZAA9V7B"}], "B001D0DMME": [{"asin": "B001D0DMME", "instruction": "i am looking for gluten free blueberry almond pecan flavor bars.", "attributes": ["gluten free", "individually wrapped"], "options": ["flavor name: blueberry almond pecan", "size: 1.4 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["blueberry almond pecan"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9IB0B3", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B001D0DMME", "instruction": "i am looking for gluten free blueberry almond pecan flavor bars.", "attributes": ["gluten free", "individually wrapped"], "options": ["flavor name: blueberry almond pecan", "size: 1.4 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["blueberry almond pecan"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9IB0B3", "worker_id": "A1Q8PPQQCWGY0D"}], "B083ZWKR6S": [{"asin": "B083ZWKR6S", "instruction": "looking for ultraboost adidas size 6.5 color black and rubber sole", "attributes": ["lace closure", "rubber outsole", "rubber sole"], "options": ["color: black | black | gold metallic", "size: 6.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black | black | gold metallic", "6.5"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHXH4ZX", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B083ZWKR6S", "instruction": "looking for ultraboost adidas size 6.5 color black and rubber sole", "attributes": ["lace closure", "rubber outsole", "rubber sole"], "options": ["color: black | black | gold metallic", "size: 6.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black | black | gold metallic", "6.5"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHXH4ZX", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B083ZWKR6S", "instruction": "i chose as a gift a black adidas originals men's ultraboost 12.5 with rubber sole. notify me so i can purchase today.", "attributes": ["lace closure", "rubber outsole", "rubber sole"], "options": ["color: core black | core black | grey six", "size: 12.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["core black | core black | grey six", "12.5"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEMEQ8U", "worker_id": "A15IJ20C3R4HUO"}], "B004BCT7G6": [{"asin": "B004BCT7G6", "instruction": "buy me some lipstick in spicy mauve. get the one with argan oil in it.", "attributes": ["highly pigmented", "argan oil", "eye shadow"], "options": ["color: saucy mauve", "style: pinks"], "instruction_attributes": ["argan oil"], "instruction_options": ["saucy mauve"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34I641A", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B004BCT7G6", "instruction": "buy me some lipstick in spicy mauve. get the one with argan oil in it.", "attributes": ["highly pigmented", "argan oil", "eye shadow"], "options": ["color: saucy mauve", "style: pinks"], "instruction_attributes": ["argan oil"], "instruction_options": ["saucy mauve"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34I641A", "worker_id": "AR9AU5FY1S3RO"}], "B07MK3LBPR": [{"asin": "B07MK3LBPR", "instruction": "i'm looking for a maple bacon gluten free with natural flavor, flavor pure orange and size 2 fl oz 24 pack", "attributes": ["non gmo", "gluten free", "natural flavors", "artificial colors"], "options": ["flavor name: pure orange", "size: 2 fl oz (pack of 24)"], "instruction_attributes": ["gluten free", "natural flavors"], "instruction_options": ["pure orange", "2 fl oz (pack of 24)"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU70R755", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07MK3LBPR", "instruction": "i'm looking for a maple bacon gluten free with natural flavor, flavor pure orange and size 2 fl oz 24 pack", "attributes": ["non gmo", "gluten free", "natural flavors", "artificial colors"], "options": ["flavor name: pure orange", "size: 2 fl oz (pack of 24)"], "instruction_attributes": ["gluten free", "natural flavors"], "instruction_options": ["pure orange", "2 fl oz (pack of 24)"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU70R755", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07MK3LBPR", "instruction": "i'm looking for watkins red velvet 2fl oz (pack of 12) with natural flavors.", "attributes": ["non gmo", "gluten free", "natural flavors", "artificial colors"], "options": ["flavor name: red velvet", "size: 2 fl oz (pack of 12)"], "instruction_attributes": ["natural flavors"], "instruction_options": ["red velvet", "2 fl oz (pack of 12)"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UFUA33", "worker_id": "A1Q0EUNCS50S8M"}], "B01MXL8AVD": [{"asin": "B01MXL8AVD", "instruction": "i am looking for a jack daniels chocolate liquor cake for perfect gift", "attributes": ["quality ingredients", "perfect gift"], "options": ["flavor name: jack daniels chocolate"], "instruction_attributes": [], "instruction_options": ["jack daniels chocolate"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO44JG5", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01MXL8AVD", "instruction": "i am looking for a jack daniels chocolate liquor cake for perfect gift", "attributes": ["quality ingredients", "perfect gift"], "options": ["flavor name: jack daniels chocolate"], "instruction_attributes": [], "instruction_options": ["jack daniels chocolate"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO44JG5", "worker_id": "A258PTOZ3D2TQR"}], "B08DKK9VH6": [{"asin": "B08DKK9VH6", "instruction": "i am looking for a travel size fresh linens impression fragrance body oil.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: fresh linens impression", "size: 0.3 fl oz | 10ml"], "instruction_attributes": ["travel size"], "instruction_options": ["fresh linens impression"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X022A43S", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08DKK9VH6", "instruction": "i would like a 15 ml travel size bottle of christian dior miss dior impression.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: christian dior miss dior impression", "size: 0.5 fl oz | 15ml"], "instruction_attributes": ["travel size"], "instruction_options": ["christian dior miss dior impression", "0.5 fl oz | 15ml"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP1074LLIH", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08DKK9VH6", "instruction": "i am looking for a travel size fresh linens impression fragrance body oil.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: fresh linens impression", "size: 0.3 fl oz | 10ml"], "instruction_attributes": ["travel size"], "instruction_options": ["fresh linens impression"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X022A43S", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08DKK9VH6", "instruction": "i am looking for a long lasting eau de parfum sprayer in a 10 ml bottle.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: lancome tresor impression", "size: 0.3 fl oz | 10ml"], "instruction_attributes": ["long lasting"], "instruction_options": ["0.3 fl oz | 10ml"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1D8U9Y", "worker_id": "AHXHM1PQTRWIQ"}], "B09SFQ6S8M": [{"asin": "B09SFQ6S8M", "instruction": "i'm looking for women's square toe sandals that are non-slip and beige high heels.", "attributes": ["water resistant", "anti slip", "non slip", "tummy control", "steel toe", "high heel", "memory foam"], "options": ["color: a1 - beige", "size: 6.5 wide"], "instruction_attributes": ["anti slip", "high heel"], "instruction_options": ["a1 - beige"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP6O6DW", "worker_id": "ARJDD0Z3R65BD"}, {"asin": "B09SFQ6S8M", "instruction": "i'm looking for women's square toe sandals that are non-slip and beige high heels.", "attributes": ["water resistant", "anti slip", "non slip", "tummy control", "steel toe", "high heel", "memory foam"], "options": ["color: a1 - beige", "size: 6.5 wide"], "instruction_attributes": ["anti slip", "high heel"], "instruction_options": ["a1 - beige"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP6O6DW", "worker_id": "ARJDD0Z3R65BD"}], "B01N6T8JK9": [{"asin": "B01N6T8JK9", "instruction": "i am looking for a size 3 slim fit women's skinny jeans.", "attributes": ["slim fit", "button closure", "high waist", "polyester spandex"], "options": ["color: high waistdark blue", "size: 3"], "instruction_attributes": ["slim fit"], "instruction_options": ["3"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKNRSG4", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01N6T8JK9", "instruction": "i am looking for a size 3 slim fit women's skinny jeans.", "attributes": ["slim fit", "button closure", "high waist", "polyester spandex"], "options": ["color: high waistdark blue", "size: 3"], "instruction_attributes": ["slim fit"], "instruction_options": ["3"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKNRSG4", "worker_id": "A1EREKSZAA9V7B"}], "B097HH78XG": [{"asin": "B097HH78XG", "instruction": "i am looking for size 9 women's fashion sneakers with vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: hold that posture mijas ii", "size: 9"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["9"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOFLMLI", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B097HH78XG", "instruction": "i am looking for size 9 women's fashion sneakers with vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: hold that posture mijas ii", "size: 9"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["9"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOFLMLI", "worker_id": "A1EREKSZAA9V7B"}], "B09NLRZBGM": [{"asin": "B09NLRZBGM", "instruction": "i am looking for a photography background that is lightweight in the color a16 and that is 7 by 5 ft", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a16", "size: 7x5ft | 2.1x1.5m"], "instruction_attributes": ["light weight"], "instruction_options": ["a16", "7x5ft | 2.1x1.5m"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFENV9I", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09NLRZBGM", "instruction": "i am looking for a photography background that is lightweight in the color a16 and that is 7 by 5 ft", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a16", "size: 7x5ft | 2.1x1.5m"], "instruction_attributes": ["light weight"], "instruction_options": ["a16", "7x5ft | 2.1x1.5m"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFENV9I", "worker_id": "A2ECRNQ3X5LEXD"}], "B07MWSX8Z7": [{"asin": "B07MWSX8Z7", "instruction": "i am looking for slim jeans that are granite color and machine washable.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit", "relaxed fit"], "options": ["color: granite", "fit type: slim", "size: 38w x 40l"], "instruction_attributes": ["machine wash"], "instruction_options": ["granite", "slim"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYGTLQF", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07MWSX8Z7", "instruction": "i am looking for men's wrangler relaxed fit jeans that are straw colored.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit", "relaxed fit"], "options": ["color: straw", "fit type: big & tall", "size: 35w x 32l"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["straw"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQ93AJW", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07MWSX8Z7", "instruction": "i am looking for slim jeans that are granite color and machine washable.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit", "relaxed fit"], "options": ["color: granite", "fit type: slim", "size: 38w x 40l"], "instruction_attributes": ["machine wash"], "instruction_options": ["granite", "slim"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYGTLQF", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07MWSX8Z7", "instruction": "i looking a comfertable fit regular machine wash men's jeans size 32w*36l color :crest", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit", "relaxed fit"], "options": ["color: crest", "fit type: regular", "size: 32w x 36l"], "instruction_attributes": ["machine wash", "comfortable fit"], "instruction_options": ["crest", "32w x 36l"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPZCXT7", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B07MWSX8Z7", "instruction": "i am looking for slim fit men jean.it shoud be machine washable.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit", "relaxed fit"], "options": ["color: blue | worn in", "fit type: slim", "size: 34w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["slim"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7V4UR3", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07MWSX8Z7", "instruction": "i am looking for a black chocolate colored relaxed fit boot cut jean. also, i would like the waist size and the length to be 34 and 31 respectively.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit", "relaxed fit"], "options": ["color: black chocolate", "fit type: relaxed", "size: 34w x 31l"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["black chocolate", "34w x 31l"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5UNF56", "worker_id": "AJDQGOTMB2D80"}, {"asin": "B07MWSX8Z7", "instruction": "i need regular mashine wash jeans that are granite colored and are a size 33w by 34l", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit", "relaxed fit"], "options": ["color: granite", "fit type: regular", "size: 33w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["granite", "regular", "33w x 34l"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLWRBYI", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07MWSX8Z7", "instruction": "i want a long lasting boot cut jean that has a relaxed fit. pick a gunter color one.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit", "relaxed fit"], "options": ["color: gunter", "fit type: regular", "size: 31w x 44l"], "instruction_attributes": ["long lasting", "relaxed fit"], "instruction_options": ["gunter"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVGC1PC", "worker_id": "A1NF6PELRKACS9"}], "B07MDMFDYW": [{"asin": "B07MDMFDYW", "instruction": "i'd like to buy a black touch up dye for covering up roots but with natural ingredients.", "attributes": ["non toxic", "easy use", "natural ingredients"], "options": ["color: black"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["black"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61QGZWE", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07MDMFDYW", "instruction": "i'd like to buy a black touch up dye for covering up roots but with natural ingredients.", "attributes": ["non toxic", "easy use", "natural ingredients"], "options": ["color: black"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["black"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61QGZWE", "worker_id": "A3EDFA8UQT5GG8"}], "B09B3KNP3S": [{"asin": "B09B3KNP3S", "instruction": "i am looking for a round modern end table having 40x55cm size and is easy to clean.", "attributes": ["easy clean", "living room"], "options": ["size: 40x55cm"], "instruction_attributes": ["easy clean"], "instruction_options": ["40x55cm"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q1UKD1", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09B3KNP3S", "instruction": "i am looking for a round modern end table having 40x55cm size and is easy to clean.", "attributes": ["easy clean", "living room"], "options": ["size: 40x55cm"], "instruction_attributes": ["easy clean"], "instruction_options": ["40x55cm"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q1UKD1", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PMKHQDK": [{"asin": "B09PMKHQDK", "instruction": "i am looking for a high definition video projector.", "attributes": ["high definition", "high power"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU482ZBPYK", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09PMKHQDK", "instruction": "i am looking for a high definition video projector.", "attributes": ["high definition", "high power"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU482ZBPYK", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SD9JBY2": [{"asin": "B09SD9JBY2", "instruction": "i need to buy some sandals with arch support in a women's eleven and a half wide.", "attributes": ["slip resistant", "non slip", "quick drying", "closed toe", "arch support"], "options": ["color: a5 - white", "size: 11.5 wide"], "instruction_attributes": ["arch support"], "instruction_options": ["11.5 wide"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI72UGZ0", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09SD9JBY2", "instruction": "i need to buy some sandals with arch support in a women's eleven and a half wide.", "attributes": ["slip resistant", "non slip", "quick drying", "closed toe", "arch support"], "options": ["color: a5 - white", "size: 11.5 wide"], "instruction_attributes": ["arch support"], "instruction_options": ["11.5 wide"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI72UGZ0", "worker_id": "AR9AU5FY1S3RO"}], "B00FWPQB0G": [{"asin": "B00FWPQB0G", "instruction": "i am looking for a shoe rack of satin bronze mesh color that is steel coated.", "attributes": ["coated steel", "storage space"], "options": ["color: satin bronze mesh", "size: 3-tier"], "instruction_attributes": ["coated steel"], "instruction_options": ["satin bronze mesh"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKI4PV6", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00FWPQB0G", "instruction": "i am looking for a shoe rack of satin bronze mesh color that is steel coated.", "attributes": ["coated steel", "storage space"], "options": ["color: satin bronze mesh", "size: 3-tier"], "instruction_attributes": ["coated steel"], "instruction_options": ["satin bronze mesh"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKI4PV6", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00FWPQB0G", "instruction": "i am looking for espresso slat color storage shelf coated with steel.", "attributes": ["coated steel", "storage space"], "options": ["color: espresso slat", "size: 3-tier (2-pack)"], "instruction_attributes": ["coated steel"], "instruction_options": ["espresso slat"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3QELZN", "worker_id": "A1Q8PPQQCWGY0D"}], "B08SVZ6SDM": [{"asin": "B08SVZ6SDM", "instruction": "i want to find a large pair of men's shorts with an elastic waistband. the color should be light khaki.", "attributes": ["elastic waistband", "elastic waist"], "options": ["color: h-light kaki", "size: large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["h-light kaki", "large"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39AJZCQ", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08SVZ6SDM", "instruction": "i want to find a large pair of men's shorts with an elastic waistband. the color should be light khaki.", "attributes": ["elastic waistband", "elastic waist"], "options": ["color: h-light kaki", "size: large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["h-light kaki", "large"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39AJZCQ", "worker_id": "A345TDMHP3DQ3G"}], "B09NM4JZYL": [{"asin": "B09NM4JZYL", "instruction": "i need facial wax strips for hair removal.", "attributes": ["easy use", "hair removal", "beauty salon"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0V64W0", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09NM4JZYL", "instruction": "i need facial wax strips for hair removal.", "attributes": ["easy use", "hair removal", "beauty salon"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0V64W0", "worker_id": "A2RBF3IIJP15IH"}], "B082MTPR2N": [{"asin": "B082MTPR2N", "instruction": "i would like a 1 pound white chocolate covered bag of coffee bean.", "attributes": ["artificial ingredients", "chocolate covered", "baby shower"], "options": ["flavor name: white chocolate", "size: 1 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["white chocolate", "1 pound (pack of 1)"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZA8KLT", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B082MTPR2N", "instruction": "i would like a 1 pound white chocolate covered bag of coffee bean.", "attributes": ["artificial ingredients", "chocolate covered", "baby shower"], "options": ["flavor name: white chocolate", "size: 1 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["white chocolate", "1 pound (pack of 1)"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZA8KLT", "worker_id": "A1WS884SI0SLO4"}], "B09RMHRGR9": [{"asin": "B09RMHRGR9", "instruction": "looking for triple bunkbeds in wood for kids with space saving in white and with a twin bunk bed with trundle and drawers", "attributes": ["twin size", "space saving"], "options": ["color: white", "style: twin bunk bed with trundle and drawers"], "instruction_attributes": ["space saving"], "instruction_options": ["white", "twin bunk bed with trundle and drawers"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83H0JI1", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B09RMHRGR9", "instruction": "looking for triple bunkbeds in wood for kids with space saving in white and with a twin bunk bed with trundle and drawers", "attributes": ["twin size", "space saving"], "options": ["color: white", "style: twin bunk bed with trundle and drawers"], "instruction_attributes": ["space saving"], "instruction_options": ["white", "twin bunk bed with trundle and drawers"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83H0JI1", "worker_id": "A2Y2TURT2VEYZN"}], "B08SJR7KDF": [{"asin": "B08SJR7KDF", "instruction": "search a perfume body with long lasting and scent impression of love in white and a travel size", "attributes": ["travel size", "long lasting"], "options": ["scent: impression of love in white"], "instruction_attributes": ["travel size", "long lasting"], "instruction_options": ["impression of love in white"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746T5TB5", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B08SJR7KDF", "instruction": "search a perfume body with long lasting and scent impression of love in white and a travel size", "attributes": ["travel size", "long lasting"], "options": ["scent: impression of love in white"], "instruction_attributes": ["travel size", "long lasting"], "instruction_options": ["impression of love in white"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746T5TB5", "worker_id": "A2Y2TURT2VEYZN"}], "B08F28K7VP": [{"asin": "B08F28K7VP", "instruction": "looking for steel toe sneakers no slip with quality materials in green color 6.5 size for men", "attributes": ["non slip", "steel toe", "quality materials", "memory foam", "rubber outsole", "rubber sole"], "options": ["color: green", "size: 8 women | 6.5 men"], "instruction_attributes": ["non slip", "quality materials"], "instruction_options": ["green", "8 women | 6.5 men"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LEJPSA", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B08F28K7VP", "instruction": "looking for steel toe sneakers no slip with quality materials in green color 6.5 size for men", "attributes": ["non slip", "steel toe", "quality materials", "memory foam", "rubber outsole", "rubber sole"], "options": ["color: green", "size: 8 women | 6.5 men"], "instruction_attributes": ["non slip", "quality materials"], "instruction_options": ["green", "8 women | 6.5 men"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LEJPSA", "worker_id": "A2Y2TURT2VEYZN"}], "B08PV5Y6J3": [{"asin": "B08PV5Y6J3", "instruction": "i need a set of 15 bpa free and eco-friendly jars.", "attributes": ["bpa free", "eco friendly", "non toxic", "easy use"], "options": ["size: clear-15pcs"], "instruction_attributes": ["bpa free", "eco friendly"], "instruction_options": ["clear-15pcs"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTQNP9S", "worker_id": "A19317A3X87NVM"}, {"asin": "B08PV5Y6J3", "instruction": "i need a set of 15 bpa free and eco-friendly jars.", "attributes": ["bpa free", "eco friendly", "non toxic", "easy use"], "options": ["size: clear-15pcs"], "instruction_attributes": ["bpa free", "eco friendly"], "instruction_options": ["clear-15pcs"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTQNP9S", "worker_id": "A19317A3X87NVM"}], "B088FNFYPQ": [{"asin": "B088FNFYPQ", "instruction": "i'm looking for a surge protector that is black and offers usb ports.", "attributes": ["fast charging", "usb port"], "options": ["color: black", "size: 4.5ft"], "instruction_attributes": ["usb port"], "instruction_options": ["black"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DSOOT4", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B088FNFYPQ", "instruction": "i'm looking for a surge protector that is black and offers usb ports.", "attributes": ["fast charging", "usb port"], "options": ["color: black", "size: 4.5ft"], "instruction_attributes": ["usb port"], "instruction_options": ["black"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DSOOT4", "worker_id": "A2JP9IKRHNLRPI"}], "B09MFM5LSW": [{"asin": "B09MFM5LSW", "instruction": "i want to buy a manual toothbrush for sensitive teeth that has a multicolored wave design on it.", "attributes": ["oral hygiene", "sensitive teeth"], "options": ["color: (white & black & pink & green) wave"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["(white & black & pink & green) wave"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO2G2RK", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B09MFM5LSW", "instruction": "i want to buy a manual toothbrush for sensitive teeth that has a multicolored wave design on it.", "attributes": ["oral hygiene", "sensitive teeth"], "options": ["color: (white & black & pink & green) wave"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["(white & black & pink & green) wave"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO2G2RK", "worker_id": "A2YNPKYEFDZ6C9"}], "B07Q5157HQ": [{"asin": "B07Q5157HQ", "instruction": "i am looking for a light weight underwater backdrop for a photo studio.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": [""], "instruction_attributes": ["light weight"], "instruction_options": [], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30URIY05", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07Q5157HQ", "instruction": "i am looking for a light weight underwater backdrop for a photo studio.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": [""], "instruction_attributes": ["light weight"], "instruction_options": [], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30URIY05", "worker_id": "A1EREKSZAA9V7B"}], "B09BRF22MZ": [{"asin": "B09BRF22MZ", "instruction": "i'm looking for long lasting waterproof brow stamp shaping kits, preferably dark brown color.", "attributes": ["cruelty free", "easy carry", "long lasting", "seed oil", "argan oil", "natural ingredients"], "options": ["color: dark brown"], "instruction_attributes": ["long lasting"], "instruction_options": ["dark brown"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1AUXC0", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B09BRF22MZ", "instruction": "i'm looking for long lasting waterproof brow stamp shaping kits, preferably dark brown color.", "attributes": ["cruelty free", "easy carry", "long lasting", "seed oil", "argan oil", "natural ingredients"], "options": ["color: dark brown"], "instruction_attributes": ["long lasting"], "instruction_options": ["dark brown"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1AUXC0", "worker_id": "ARQ05PDNXPFDI"}], "B08DTHB7BV": [{"asin": "B08DTHB7BV", "instruction": "i am loojking for a aluminum alloy single microphone set having black and red color", "attributes": ["batteries included", "plug play", "aluminum alloy"], "options": ["color: black and red", "size: single microphone set"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["black and red", "single microphone set"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJF0LOW", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08DTHB7BV", "instruction": "i am loojking for a aluminum alloy single microphone set having black and red color", "attributes": ["batteries included", "plug play", "aluminum alloy"], "options": ["color: black and red", "size: single microphone set"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["black and red", "single microphone set"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJF0LOW", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08DTHB7BV", "instruction": "i would like a rose gold dual microphone set that comes with batteries included.", "attributes": ["batteries included", "plug play", "aluminum alloy"], "options": ["color: rose gold", "size: dual microphone set"], "instruction_attributes": ["batteries included"], "instruction_options": ["rose gold", "dual microphone set"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZRK04P", "worker_id": "A1WS884SI0SLO4"}], "B09PRGZM4D": [{"asin": "B09PRGZM4D", "instruction": "i need a fashionable zdfer polo with a slim fit in the green color.", "attributes": ["slim fit", "long sleeve", "relaxed fit", "fashion design", "regular fit"], "options": ["color: 112-green", "size: xx-large"], "instruction_attributes": ["slim fit", "fashion design"], "instruction_options": ["112-green"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0PSACG", "worker_id": "A19317A3X87NVM"}, {"asin": "B09PRGZM4D", "instruction": "i need a fashionable zdfer polo with a slim fit in the green color.", "attributes": ["slim fit", "long sleeve", "relaxed fit", "fashion design", "regular fit"], "options": ["color: 112-green", "size: xx-large"], "instruction_attributes": ["slim fit", "fashion design"], "instruction_options": ["112-green"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0PSACG", "worker_id": "A19317A3X87NVM"}], "B000N68ILE": [{"asin": "B000N68ILE", "instruction": "i'm looking to buy a high performance digital camera with optical zoom.", "attributes": ["high performance", "optical zoom"], "options": [""], "instruction_attributes": ["high performance", "optical zoom"], "instruction_options": [], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPSZZ9G7", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B000N68ILE", "instruction": "i'm looking to buy a high performance digital camera with optical zoom.", "attributes": ["high performance", "optical zoom"], "options": [""], "instruction_attributes": ["high performance", "optical zoom"], "instruction_options": [], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPSZZ9G7", "worker_id": "A3EDFA8UQT5GG8"}], "B07L4KJXWL": [{"asin": "B07L4KJXWL", "instruction": "i need a barebone intel core computer system in an aluminum alloy case with an i7-8850h.", "attributes": ["intel core", "aluminum alloy"], "options": ["color: cpu i7-8850h", "size: 8g ram 128g ssd"], "instruction_attributes": ["intel core", "aluminum alloy"], "instruction_options": ["cpu i7-8850h"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907PYAUP", "worker_id": "A19317A3X87NVM"}, {"asin": "B07L4KJXWL", "instruction": "i would like a 8 g of ram 250 ssd desktop mini with a intel core cpu i7.", "attributes": ["intel core", "aluminum alloy"], "options": ["color: cpu i7-8850h", "size: 8g ram 240g ssd"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHMG0JI", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07L4KJXWL", "instruction": "i need a barebone intel core computer system in an aluminum alloy case with an i7-8850h.", "attributes": ["intel core", "aluminum alloy"], "options": ["color: cpu i7-8850h", "size: 8g ram 128g ssd"], "instruction_attributes": ["intel core", "aluminum alloy"], "instruction_options": ["cpu i7-8850h"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907PYAUP", "worker_id": "A19317A3X87NVM"}], "B0723CL3ZJ": [{"asin": "B0723CL3ZJ", "instruction": "i would like a hands free cd dvd car stereo reciever.", "attributes": ["high resolution", "hands free", "usb port"], "options": ["style: single din cd | dvd av bluetooth"], "instruction_attributes": ["hands free"], "instruction_options": ["single din cd | dvd av bluetooth"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJJK8ZF", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0723CL3ZJ", "instruction": "i would like a hands free cd dvd car stereo reciever.", "attributes": ["high resolution", "hands free", "usb port"], "options": ["style: single din cd | dvd av bluetooth"], "instruction_attributes": ["hands free"], "instruction_options": ["single din cd | dvd av bluetooth"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJJK8ZF", "worker_id": "A1WS884SI0SLO4"}], "B085Y48HZM": [{"asin": "B085Y48HZM", "instruction": "i need some concealer for my dark circles that is in shade 03 natural", "attributes": ["easy apply", "dark circles"], "options": ["color: 03.natural"], "instruction_attributes": ["dark circles"], "instruction_options": ["03.natural"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5O2F59", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B085Y48HZM", "instruction": "i need some concealer for my dark circles that is in shade 03 natural", "attributes": ["easy apply", "dark circles"], "options": ["color: 03.natural"], "instruction_attributes": ["dark circles"], "instruction_options": ["03.natural"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5O2F59", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B085Y48HZM", "instruction": "i need a liquid concealer to fix my dark circles. pick a warm natural shade.", "attributes": ["easy apply", "dark circles"], "options": ["color: a-04.warm natural"], "instruction_attributes": ["dark circles"], "instruction_options": ["a-04.warm natural"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602WE59Q", "worker_id": "A1NF6PELRKACS9"}], "B06XPRNQ92": [{"asin": "B06XPRNQ92", "instruction": "i need a machine washable t-shirt that is pink and in a size medium.", "attributes": ["officially licensed", "machine washable", "everyday wear"], "options": ["color: pink", "size: medium"], "instruction_attributes": ["machine washable"], "instruction_options": ["pink", "medium"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6HR7UU", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B06XPRNQ92", "instruction": "i need a machine washable t-shirt that is pink and in a size medium.", "attributes": ["officially licensed", "machine washable", "everyday wear"], "options": ["color: pink", "size: medium"], "instruction_attributes": ["machine washable"], "instruction_options": ["pink", "medium"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6HR7UU", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MCXRWD1": [{"asin": "B09MCXRWD1", "instruction": "i need an eco friendly window film that is multi color and the size 23.6\" x 59\".", "attributes": ["eco friendly", "living room"], "options": ["color: multi-11105", "size: 23.6\" x 59\" x 2 pcs"], "instruction_attributes": ["eco friendly"], "instruction_options": ["multi-11105", "23.6\" x 59\" x 2 pcs"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL3P5H7", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09MCXRWD1", "instruction": "i need an eco friendly window film that is multi color and the size 23.6\" x 59\".", "attributes": ["eco friendly", "living room"], "options": ["color: multi-11105", "size: 23.6\" x 59\" x 2 pcs"], "instruction_attributes": ["eco friendly"], "instruction_options": ["multi-11105", "23.6\" x 59\" x 2 pcs"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL3P5H7", "worker_id": "A2RBF3IIJP15IH"}], "B07YNFJF3V": [{"asin": "B07YNFJF3V", "instruction": "i'd like to buy a ready to hang toilet paper holder for size 24 by 30 rolls.", "attributes": ["ready hang", "wood finish"], "options": ["size: 24x30", "style: gray framed"], "instruction_attributes": ["ready hang"], "instruction_options": ["24x30"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2BQOI5", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07YNFJF3V", "instruction": "i'd like to buy a ready to hang toilet paper holder for size 24 by 30 rolls.", "attributes": ["ready hang", "wood finish"], "options": ["size: 24x30", "style: gray framed"], "instruction_attributes": ["ready hang"], "instruction_options": ["24x30"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2BQOI5", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07YNFJF3V", "instruction": "i want a ready to hang wall plaque with a wood finish.", "attributes": ["ready hang", "wood finish"], "options": ["size: 36x48", "style: wall plaque"], "instruction_attributes": ["ready hang", "wood finish"], "instruction_options": ["wall plaque"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI80ZSS6", "worker_id": "A1NF6PELRKACS9"}], "B087J3LZ87": [{"asin": "B087J3LZ87", "instruction": "i'm looking for black color 1080p hd male to female converter adapter cable for laptop hdtv dvd.", "attributes": ["high power", "1080p hd", "high resolution", "high definition"], "options": ["color: black"], "instruction_attributes": ["1080p hd"], "instruction_options": ["black"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDU2IAG", "worker_id": "A3AGXTSAHA2AFL"}, {"asin": "B087J3LZ87", "instruction": "i'm looking for black color 1080p hd male to female converter adapter cable for laptop hdtv dvd.", "attributes": ["high power", "1080p hd", "high resolution", "high definition"], "options": ["color: black"], "instruction_attributes": ["1080p hd"], "instruction_options": ["black"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDU2IAG", "worker_id": "A3AGXTSAHA2AFL"}], "B0777L4NZW": [{"asin": "B0777L4NZW", "instruction": "i am interested in machine washable throw pillow covers in a size 28\" by 28\"", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["size: 28\" x 28\""], "instruction_attributes": ["machine washable"], "instruction_options": ["28\" x 28\""], "assignment_id": "33F859I56HNA01QBVO1K6A4GVZLBHO", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0777L4NZW", "instruction": "i am interested in machine washable throw pillow covers in a size 28\" by 28\"", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["size: 28\" x 28\""], "instruction_attributes": ["machine washable"], "instruction_options": ["28\" x 28\""], "assignment_id": "33F859I56HNA01QBVO1K6A4GVZLBHO", "worker_id": "A2ECRNQ3X5LEXD"}], "B00S5643SQ": [{"asin": "B00S5643SQ", "instruction": "i'm looking for a 1.18 fluid ounce pack of oil free hydrating gel cream. i want the flavor to be sienna.", "attributes": ["dermatologist tested", "oil free", "hyaluronic acid"], "options": ["flavor name: sienna 10", "size: 1.18 fl oz (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["sienna 10", "1.18 fl oz (pack of 1)"], "assignment_id": "3N8OEVH1F204BC17361WW31GEKHOOS", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B00S5643SQ", "instruction": "i'm looking for a 1.18 fluid ounce pack of oil free hydrating gel cream. i want the flavor to be sienna.", "attributes": ["dermatologist tested", "oil free", "hyaluronic acid"], "options": ["flavor name: sienna 10", "size: 1.18 fl oz (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["sienna 10", "1.18 fl oz (pack of 1)"], "assignment_id": "3N8OEVH1F204BC17361WW31GEKHOOS", "worker_id": "A345TDMHP3DQ3G"}], "B09P6983SX": [{"asin": "B09P6983SX", "instruction": "i need a console table for the living room that is size 140 by 15 by 100 cm.", "attributes": ["space saving", "storage unit", "solid wood", "living room", "dining room"], "options": ["size: 140x15x100cm"], "instruction_attributes": ["living room"], "instruction_options": ["140x15x100cm"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX53FCW", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09P6983SX", "instruction": "i need a console table for the living room that is size 140 by 15 by 100 cm.", "attributes": ["space saving", "storage unit", "solid wood", "living room", "dining room"], "options": ["size: 140x15x100cm"], "instruction_attributes": ["living room"], "instruction_options": ["140x15x100cm"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX53FCW", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QMN5LD2": [{"asin": "B09QMN5LD2", "instruction": "i'm looking for a tempered glass protector that is easy to install.", "attributes": ["easy install", "glass screen", "tempered glass"], "options": [""], "instruction_attributes": ["easy install", "tempered glass"], "instruction_options": [], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFQVJOS", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B09QMN5LD2", "instruction": "i'm looking for a tempered glass protector that is easy to install.", "attributes": ["easy install", "glass screen", "tempered glass"], "options": [""], "instruction_attributes": ["easy install", "tempered glass"], "instruction_options": [], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFQVJOS", "worker_id": "A34EHWOYRBL6OZ"}], "B07DVXMWHW": [{"asin": "B07DVXMWHW", "instruction": "i am looking for a high quality cosmetic bag of butterfly-1 color.", "attributes": ["high quality", "easy use"], "options": ["color: butterfly-1"], "instruction_attributes": ["high quality"], "instruction_options": ["butterfly-1"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX5QFCJ", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07DVXMWHW", "instruction": "i am looking for a high quality cosmetic bag of butterfly-1 color.", "attributes": ["high quality", "easy use"], "options": ["color: butterfly-1"], "instruction_attributes": ["high quality"], "instruction_options": ["butterfly-1"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX5QFCJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B099DFVXVR": [{"asin": "B099DFVXVR", "instruction": "i'm interested in a variety pack of veggie snacks that offer vitamins, but not artificial flavors.", "attributes": ["source vitamin", "artificial flavors"], "options": ["flavor name: variety pack"], "instruction_attributes": ["source vitamin", "artificial flavors"], "instruction_options": ["variety pack"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2B8IOH", "worker_id": "AFU00NU09CFXE"}, {"asin": "B099DFVXVR", "instruction": "i'm interested in a variety pack of veggie snacks that offer vitamins, but not artificial flavors.", "attributes": ["source vitamin", "artificial flavors"], "options": ["flavor name: variety pack"], "instruction_attributes": ["source vitamin", "artificial flavors"], "instruction_options": ["variety pack"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2B8IOH", "worker_id": "AFU00NU09CFXE"}], "B09QHRCF6M": [{"asin": "B09QHRCF6M", "instruction": "i wuold like a purple 190 by 70cm round head linens for my beauty salon.", "attributes": ["easy clean", "high quality", "beauty salon"], "options": ["color: purple", "size: 190*70cm round head"], "instruction_attributes": ["beauty salon"], "instruction_options": ["purple", "190*70cm round head"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLHVM0U", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09QHRCF6M", "instruction": "i wuold like a purple 190 by 70cm round head linens for my beauty salon.", "attributes": ["easy clean", "high quality", "beauty salon"], "options": ["color: purple", "size: 190*70cm round head"], "instruction_attributes": ["beauty salon"], "instruction_options": ["purple", "190*70cm round head"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLHVM0U", "worker_id": "A1WS884SI0SLO4"}], "B07CR9T4FH": [{"asin": "B07CR9T4FH", "instruction": "i would like a 4g lte phone that's device only.", "attributes": ["quad core", "4g lte"], "options": ["style: device only"], "instruction_attributes": ["4g lte"], "instruction_options": ["device only"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLEX2FH", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07CR9T4FH", "instruction": "i would like a 4g lte phone that's device only.", "attributes": ["quad core", "4g lte"], "options": ["style: device only"], "instruction_attributes": ["4g lte"], "instruction_options": ["device only"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLEX2FH", "worker_id": "A1WS884SI0SLO4"}], "B09PYXZM6J": [{"asin": "B09PYXZM6J", "instruction": "i need a black wireless bluetooth soundbar.", "attributes": ["high performance", "wireless bluetooth", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DOW4K3", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09PYXZM6J", "instruction": "i need a black wireless bluetooth soundbar.", "attributes": ["high performance", "wireless bluetooth", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DOW4K3", "worker_id": "A2RBF3IIJP15IH"}], "B09QSWJHJQ": [{"asin": "B09QSWJHJQ", "instruction": "i'm looking for a tempered glass window covering film for privacy in my dining room. it should be 23.6in by 47.2in.", "attributes": ["tempered glass", "dining room"], "options": ["color: 3585883", "size: (width\uff0923.6in x (length)47.2in"], "instruction_attributes": ["tempered glass", "dining room"], "instruction_options": ["(width\uff0923.6in x (length)47.2in"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDUBIAP", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B09QSWJHJQ", "instruction": "i'm looking for a tempered glass window covering film for privacy in my dining room. it should be 23.6in by 47.2in.", "attributes": ["tempered glass", "dining room"], "options": ["color: 3585883", "size: (width\uff0923.6in x (length)47.2in"], "instruction_attributes": ["tempered glass", "dining room"], "instruction_options": ["(width\uff0923.6in x (length)47.2in"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDUBIAP", "worker_id": "A3EDFA8UQT5GG8"}], "B0773TPF7M": [{"asin": "B0773TPF7M", "instruction": "i want to get a 13-ounce pack of mega omega trail mix with no artificial ingredients.", "attributes": ["artificial ingredients", "non gmo", "keto friendly", "gluten free"], "options": ["flavor name: mega omega", "size: 13 ounce (pack of 1)"], "instruction_attributes": ["artificial ingredients"], "instruction_options": ["mega omega", "13 ounce (pack of 1)"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXUGYMD", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B0773TPF7M", "instruction": "i want to get a 13-ounce pack of mega omega trail mix with no artificial ingredients.", "attributes": ["artificial ingredients", "non gmo", "keto friendly", "gluten free"], "options": ["flavor name: mega omega", "size: 13 ounce (pack of 1)"], "instruction_attributes": ["artificial ingredients"], "instruction_options": ["mega omega", "13 ounce (pack of 1)"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXUGYMD", "worker_id": "A345TDMHP3DQ3G"}], "B01B384AZS": [{"asin": "B01B384AZS", "instruction": "i would like oxford shoes that are brown and size 11 x-wide with a rubber sole.", "attributes": ["moisture wicking", "lace closure", "rubber outsole", "rubber sole"], "options": ["color: brown smooth", "size: 11 x-wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown smooth", "11 x-wide"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9DKE2D", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01B384AZS", "instruction": "i would like oxford shoes that are brown and size 11 x-wide with a rubber sole.", "attributes": ["moisture wicking", "lace closure", "rubber outsole", "rubber sole"], "options": ["color: brown smooth", "size: 11 x-wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown smooth", "11 x-wide"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9DKE2D", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q6BWQKW": [{"asin": "B09Q6BWQKW", "instruction": "i need a kids u-shaped toothbrush for sensitive teeth.", "attributes": ["easy use", "teeth whitening", "sensitive teeth"], "options": ["color: f"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["f"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X3NY3L", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09Q6BWQKW", "instruction": "i need a kids u-shaped toothbrush for sensitive teeth.", "attributes": ["easy use", "teeth whitening", "sensitive teeth"], "options": ["color: f"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["f"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X3NY3L", "worker_id": "A2RBF3IIJP15IH"}], "B09P78D1VH": [{"asin": "B09P78D1VH", "instruction": "i am looking for a long sleeve mens hoodie pullover size x-large.", "attributes": ["slim fit", "loose fit", "long sleeve", "elastic waist", "contrast color", "relaxed fit", "short sleeve"], "options": ["color: z1-grey", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x-large"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAAQFI1", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09P78D1VH", "instruction": "i am looking for a long sleeve mens hoodie pullover size x-large.", "attributes": ["slim fit", "loose fit", "long sleeve", "elastic waist", "contrast color", "relaxed fit", "short sleeve"], "options": ["color: z1-grey", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x-large"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAAQFI1", "worker_id": "A1EREKSZAA9V7B"}], "B09BVJ7T8M": [{"asin": "B09BVJ7T8M", "instruction": "i need cupcake toppers for a birthday party that are in the color rg-50th", "attributes": ["cupcake picks", "birthday party"], "options": ["color: rg-50th"], "instruction_attributes": ["birthday party"], "instruction_options": ["rg-50th"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKHWD7Q", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09BVJ7T8M", "instruction": "i need cupcake toppers for a birthday party that are in the color rg-50th", "attributes": ["cupcake picks", "birthday party"], "options": ["color: rg-50th"], "instruction_attributes": ["birthday party"], "instruction_options": ["rg-50th"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKHWD7Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B075L8H2H5": [{"asin": "B075L8H2H5", "instruction": "i need a california king mattress set that has a 4\" foundation", "attributes": ["ready use", "assembly required", "queen size", "fully assembled", "twin size", "king size", "box spring"], "options": ["size: california king", "style name: 4\" foundation"], "instruction_attributes": ["king size"], "instruction_options": ["california king", "4\" foundation"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHNO0JS", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B075L8H2H5", "instruction": "i need a california king mattress set that has a 4\" foundation", "attributes": ["ready use", "assembly required", "queen size", "fully assembled", "twin size", "king size", "box spring"], "options": ["size: california king", "style name: 4\" foundation"], "instruction_attributes": ["king size"], "instruction_options": ["california king", "4\" foundation"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHNO0JS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09J18Q23T": [{"asin": "B09J18Q23T", "instruction": "i'm interested in a table runner that is 72\"x16\"+13\"x19\"x4, easy to clean and machine washable.", "attributes": ["machine washable", "easy clean"], "options": ["size: 72\"x16\"+13\"x19\"x4"], "instruction_attributes": ["machine washable", "easy clean"], "instruction_options": ["72\"x16\"+13\"x19\"x4"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQAB912", "worker_id": "AFU00NU09CFXE"}, {"asin": "B09J18Q23T", "instruction": "i'm interested in a table runner that is 72\"x16\"+13\"x19\"x4, easy to clean and machine washable.", "attributes": ["machine washable", "easy clean"], "options": ["size: 72\"x16\"+13\"x19\"x4"], "instruction_attributes": ["machine washable", "easy clean"], "instruction_options": ["72\"x16\"+13\"x19\"x4"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQAB912", "worker_id": "AFU00NU09CFXE"}], "B00NQFJ42G": [{"asin": "B00NQFJ42G", "instruction": "i need jade johnny mbj women's casual comfy wide leg pants in size medium.", "attributes": ["hand wash", "long lasting", "wide leg", "wash cold", "machine wash"], "options": ["color: wb750_jade", "size: medium"], "instruction_attributes": ["wide leg"], "instruction_options": ["wb750_jade", "medium"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSL60XJ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B00NQFJ42G", "instruction": "i need jade johnny mbj women's casual comfy wide leg pants in size medium.", "attributes": ["hand wash", "long lasting", "wide leg", "wash cold", "machine wash"], "options": ["color: wb750_jade", "size: medium"], "instruction_attributes": ["wide leg"], "instruction_options": ["wb750_jade", "medium"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSL60XJ", "worker_id": "A2RBF3IIJP15IH"}], "B09PH95SSN": [{"asin": "B09PH95SSN", "instruction": "i would like a pair of c clippers for hair cutting.", "attributes": ["heavy duty", "stainless steel", "hair cutting"], "options": ["color: c"], "instruction_attributes": ["hair cutting"], "instruction_options": ["c"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXTU4OB", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09PH95SSN", "instruction": "i would like a pair of c clippers for hair cutting.", "attributes": ["heavy duty", "stainless steel", "hair cutting"], "options": ["color: c"], "instruction_attributes": ["hair cutting"], "instruction_options": ["c"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXTU4OB", "worker_id": "A1WS884SI0SLO4"}], "B0927GRTKG": [{"asin": "B0927GRTKG", "instruction": "i am looking for easy install and ready hang kitchen artwork-04 with size s-(18x12inches)", "attributes": ["ready hang", "easy install", "dining room", "living room"], "options": ["color: kitchen artwork-04", "size: s-(18 x 12 inches)"], "instruction_attributes": ["ready hang", "easy install"], "instruction_options": ["kitchen artwork-04", "s-(18 x 12 inches)"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGNSYIX", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B0927GRTKG", "instruction": "i am looking for easy install and ready hang kitchen artwork-04 with size s-(18x12inches)", "attributes": ["ready hang", "easy install", "dining room", "living room"], "options": ["color: kitchen artwork-04", "size: s-(18 x 12 inches)"], "instruction_attributes": ["ready hang", "easy install"], "instruction_options": ["kitchen artwork-04", "s-(18 x 12 inches)"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGNSYIX", "worker_id": "AX2EWYWZM19AZ"}], "B09MR36WWT": [{"asin": "B09MR36WWT", "instruction": "i'm looking for a desktop pc with an intel core i5 processor alongside 16 gb of ram and a 1 tb nvme ssd for storage.", "attributes": ["core i5", "intel core"], "options": ["size: 16gb ram + 1tb nvme ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["16gb ram + 1tb nvme ssd"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKNVPEU", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B09MR36WWT", "instruction": "i'm looking for a desktop pc with an intel core i5 processor alongside 16 gb of ram and a 1 tb nvme ssd for storage.", "attributes": ["core i5", "intel core"], "options": ["size: 16gb ram + 1tb nvme ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["16gb ram + 1tb nvme ssd"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKNVPEU", "worker_id": "A2JP9IKRHNLRPI"}], "B00910O4YS": [{"asin": "B00910O4YS", "instruction": "i am looking for endurance crunch granola that comes in a pack of six and is non gmo.", "attributes": ["baked fresh", "non gmo", "gluten free"], "options": ["flavor name: endurance crunch", "size: 12 ounce (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["endurance crunch", "12 ounce (pack of 6)"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QSR07O", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00910O4YS", "instruction": "i am looking for endurance crunch granola that comes in a pack of six and is non gmo.", "attributes": ["baked fresh", "non gmo", "gluten free"], "options": ["flavor name: endurance crunch", "size: 12 ounce (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["endurance crunch", "12 ounce (pack of 6)"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QSR07O", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00910O4YS", "instruction": "i am looking for a 12 ounce (pack of 6) of baked fresh granola", "attributes": ["baked fresh", "non gmo", "gluten free"], "options": ["flavor name: coconut chia", "size: 12 ounce (pack of 6)"], "instruction_attributes": ["baked fresh"], "instruction_options": ["12 ounce (pack of 6)"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTR8KTI", "worker_id": "A9QRQL9CFJBI7"}], "B09M3XZKKL": [{"asin": "B09M3XZKKL", "instruction": "i would like a nightstand that is brown with a steel frame.", "attributes": ["space saving", "easy assemble", "storage unit", "steel frame"], "options": ["color: brown8"], "instruction_attributes": ["steel frame"], "instruction_options": ["brown8"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7TMURH", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09M3XZKKL", "instruction": "i need a gray nightstand with a steel frame.", "attributes": ["space saving", "easy assemble", "storage unit", "steel frame"], "options": ["color: grey3"], "instruction_attributes": ["steel frame"], "instruction_options": ["grey3"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFIVEMY", "worker_id": "A19317A3X87NVM"}, {"asin": "B09M3XZKKL", "instruction": "i would like a nightstand that is brown with a steel frame.", "attributes": ["space saving", "easy assemble", "storage unit", "steel frame"], "options": ["color: brown8"], "instruction_attributes": ["steel frame"], "instruction_options": ["brown8"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7TMURH", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09M3XZKKL", "instruction": "i need a gray nightstand with a steel frame.", "attributes": ["space saving", "easy assemble", "storage unit", "steel frame"], "options": ["color: grey3"], "instruction_attributes": ["steel frame"], "instruction_options": ["grey3"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFIVEMY", "worker_id": "A19317A3X87NVM"}], "B08QMXXJ82": [{"asin": "B08QMXXJ82", "instruction": "i need a red k22 phone case that comes with a tempered glass screen protector.", "attributes": ["non slip", "hands free", "glass screen", "tempered glass"], "options": ["color: kj-red"], "instruction_attributes": ["tempered glass"], "instruction_options": ["kj-red"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YWTEHM", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08QMXXJ82", "instruction": "i need a red k22 phone case that comes with a tempered glass screen protector.", "attributes": ["non slip", "hands free", "glass screen", "tempered glass"], "options": ["color: kj-red"], "instruction_attributes": ["tempered glass"], "instruction_options": ["kj-red"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YWTEHM", "worker_id": "A2RBF3IIJP15IH"}], "B000MWFD3U": [{"asin": "B000MWFD3U", "instruction": "i need to order a fully assembled tan chair.", "attributes": ["fully assembled", "steel frame"], "options": ["color: tan"], "instruction_attributes": ["fully assembled"], "instruction_options": ["tan"], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQQWB59", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B000MWFD3U", "instruction": "i need to order a fully assembled tan chair.", "attributes": ["fully assembled", "steel frame"], "options": ["color: tan"], "instruction_attributes": ["fully assembled"], "instruction_options": ["tan"], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQQWB59", "worker_id": "AR9AU5FY1S3RO"}], "B093WWHRLT": [{"asin": "B093WWHRLT", "instruction": "i am looking for a high speed 50 foot 8k hdmi cable.", "attributes": ["ultra hd", "blu ray", "high speed"], "options": ["size: 50 ft", "style: 8k"], "instruction_attributes": ["high speed"], "instruction_options": ["50 ft", "8k"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSTHGLC", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B093WWHRLT", "instruction": "i am looking for a high speed 50 foot 8k hdmi cable.", "attributes": ["ultra hd", "blu ray", "high speed"], "options": ["size: 50 ft", "style: 8k"], "instruction_attributes": ["high speed"], "instruction_options": ["50 ft", "8k"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSTHGLC", "worker_id": "A1EREKSZAA9V7B"}], "B081YYPFDS": [{"asin": "B081YYPFDS", "instruction": "i'm looking for a size 54w x 29l straight leg levi's men's jean.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: dark stonewash", "size: 54w x 29l"], "instruction_attributes": ["straight leg"], "instruction_options": ["54w x 29l"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJP2XB1", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B081YYPFDS", "instruction": "i'm looking for a size 54w x 29l straight leg levi's men's jean.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: dark stonewash", "size: 54w x 29l"], "instruction_attributes": ["straight leg"], "instruction_options": ["54w x 29l"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJP2XB1", "worker_id": "ARQ05PDNXPFDI"}], "B09M6W62XL": [{"asin": "B09M6W62XL", "instruction": "i want to shop for a wooden bedframe in grey.", "attributes": ["space saving", "easy clean", "white finish", "wood frame", "box spring"], "options": ["color: grey", "style: metal triple twin bunk bed"], "instruction_attributes": ["wood frame"], "instruction_options": ["grey"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCPL56I", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09M6W62XL", "instruction": "i want to shop for a wooden bedframe in grey.", "attributes": ["space saving", "easy clean", "white finish", "wood frame", "box spring"], "options": ["color: grey", "style: metal triple twin bunk bed"], "instruction_attributes": ["wood frame"], "instruction_options": ["grey"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCPL56I", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09M6W62XL", "instruction": "i am looking for space saving bed with slide for kids without box spring.please choose black color.", "attributes": ["space saving", "easy clean", "white finish", "wood frame", "box spring"], "options": ["color: black 2", "style: twin & twin low bunk bed w | slide"], "instruction_attributes": ["space saving", "box spring"], "instruction_options": ["black 2"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZSIHSG", "worker_id": "A3FG5PQHG5AH3Y"}], "B09NDPP6PK": [{"asin": "B09NDPP6PK", "instruction": "i'm looking for a sandals with strap platform size 5 open toe in black", "attributes": ["open toe", "closed toe"], "options": ["color: z4 black", "size: 5"], "instruction_attributes": ["open toe"], "instruction_options": ["z4 black", "5"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMFKZI9", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B09NDPP6PK", "instruction": "i'm looking for a sandals with strap platform size 5 open toe in black", "attributes": ["open toe", "closed toe"], "options": ["color: z4 black", "size: 5"], "instruction_attributes": ["open toe"], "instruction_options": ["z4 black", "5"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMFKZI9", "worker_id": "A2Y2TURT2VEYZN"}], "B09G9KPK18": [{"asin": "B09G9KPK18", "instruction": "i am looking for men's size 13 work shoes with arch support and rubber soles.", "attributes": ["arch support", "rubber sole"], "options": ["size: 13"], "instruction_attributes": ["arch support", "rubber sole"], "instruction_options": ["13"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323D8XWD3", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09G9KPK18", "instruction": "i am looking for men's size 13 work shoes with arch support and rubber soles.", "attributes": ["arch support", "rubber sole"], "options": ["size: 13"], "instruction_attributes": ["arch support", "rubber sole"], "instruction_options": ["13"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323D8XWD3", "worker_id": "A1EREKSZAA9V7B"}], "B08QDRBN5X": [{"asin": "B08QDRBN5X", "instruction": "i need a 9 ounce pack of chocolate peanut butter keto cereal that is grain free.", "attributes": ["keto friendly", "grain free", "low carb", "sugar free", "plant based", "gluten free", "zero sugar"], "options": ["flavor name: chocolate peanut butter", "size: 9 ounce (pack of 4)"], "instruction_attributes": ["grain free"], "instruction_options": ["chocolate peanut butter", "9 ounce (pack of 4)"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49XC4XT", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08QDRBN5X", "instruction": "i need a 9 ounce pack of chocolate peanut butter keto cereal that is grain free.", "attributes": ["keto friendly", "grain free", "low carb", "sugar free", "plant based", "gluten free", "zero sugar"], "options": ["flavor name: chocolate peanut butter", "size: 9 ounce (pack of 4)"], "instruction_attributes": ["grain free"], "instruction_options": ["chocolate peanut butter", "9 ounce (pack of 4)"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49XC4XT", "worker_id": "A2RBF3IIJP15IH"}], "B0852K8KD7": [{"asin": "B0852K8KD7", "instruction": "i am looking for a tripod that is compatible with apple and that is black and white.", "attributes": ["compatible apple", "wireless bluetooth"], "options": ["color: black | white"], "instruction_attributes": ["compatible apple"], "instruction_options": ["black | white"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8FXC48", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0852K8KD7", "instruction": "i am looking for a tripod that is compatible with apple and that is black and white.", "attributes": ["compatible apple", "wireless bluetooth"], "options": ["color: black | white"], "instruction_attributes": ["compatible apple"], "instruction_options": ["black | white"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8FXC48", "worker_id": "A2ECRNQ3X5LEXD"}], "B08MX4RGBH": [{"asin": "B08MX4RGBH", "instruction": "i need to buy gray synthetic hair extensions. buy the six pack of eight inch extensions.", "attributes": ["high quality", "synthetic hair", "hair extensions"], "options": ["color: m1b | gray#", "size: 8 inch 6packs"], "instruction_attributes": ["synthetic hair", "hair extensions"], "instruction_options": ["m1b | gray#", "8 inch 6packs"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR025YJAKB", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08MX4RGBH", "instruction": "i need to buy gray synthetic hair extensions. buy the six pack of eight inch extensions.", "attributes": ["high quality", "synthetic hair", "hair extensions"], "options": ["color: m1b | gray#", "size: 8 inch 6packs"], "instruction_attributes": ["synthetic hair", "hair extensions"], "instruction_options": ["m1b | gray#", "8 inch 6packs"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR025YJAKB", "worker_id": "AR9AU5FY1S3RO"}], "B097M88R9W": [{"asin": "B097M88R9W", "instruction": "i am looking for an adult daily wear hoodie sweatshirt size large-x-large.", "attributes": ["machine wash", "polyester spandex", "daily wear"], "options": ["color: donut 10", "size: large-x-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["large-x-large"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7TVLHH", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B097M88R9W", "instruction": "i am looking for an adult daily wear hoodie sweatshirt size large-x-large.", "attributes": ["machine wash", "polyester spandex", "daily wear"], "options": ["color: donut 10", "size: large-x-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["large-x-large"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7TVLHH", "worker_id": "A1EREKSZAA9V7B"}], "B00182JYZ6": [{"asin": "B00182JYZ6", "instruction": "i am looking for a light cool brown easy to use hair color kit.", "attributes": ["easy apply", "easy use", "coconut oil", "permanent hair"], "options": ["color: 6a light cool brown", "size: pack of 1"], "instruction_attributes": ["easy use"], "instruction_options": ["6a light cool brown"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IFUM2T", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00182JYZ6", "instruction": "i am looking for a light cool brown easy to use hair color kit.", "attributes": ["easy apply", "easy use", "coconut oil", "permanent hair"], "options": ["color: 6a light cool brown", "size: pack of 1"], "instruction_attributes": ["easy use"], "instruction_options": ["6a light cool brown"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IFUM2T", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00182JYZ6", "instruction": "i want a one count pack of brown permanent hair color with coconut oil.", "attributes": ["easy apply", "easy use", "coconut oil", "permanent hair"], "options": ["color: 6g vibrant light golden brown", "size: 1 count (pack of 1)"], "instruction_attributes": ["coconut oil", "permanent hair"], "instruction_options": ["6g vibrant light golden brown", "1 count (pack of 1)"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IVK32F", "worker_id": "AR9AU5FY1S3RO"}], "B08FRM3HRG": [{"asin": "B08FRM3HRG", "instruction": "i'm looking for gluten-free almond flour cookies that contain flaxseed and sunflower seeds in a smoked barbecue cheedar flavor.", "attributes": ["gluten free", "protein serving", "source vitamin", "simple ingredients"], "options": ["flavor: smoky bbq cheddar", "size: 4.25 ounce (pack of 3)", "style: crackers"], "instruction_attributes": ["gluten free"], "instruction_options": ["smoky bbq cheddar"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TVCSUA", "worker_id": "ARJDD0Z3R65BD"}, {"asin": "B08FRM3HRG", "instruction": "i'm looking for gluten-free almond flour cookies that contain flaxseed and sunflower seeds in a smoked barbecue cheedar flavor.", "attributes": ["gluten free", "protein serving", "source vitamin", "simple ingredients"], "options": ["flavor: smoky bbq cheddar", "size: 4.25 ounce (pack of 3)", "style: crackers"], "instruction_attributes": ["gluten free"], "instruction_options": ["smoky bbq cheddar"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TVCSUA", "worker_id": "ARJDD0Z3R65BD"}], "B09G2X4GDX": [{"asin": "B09G2X4GDX", "instruction": "i am looking for a high performance 18 volt charger adapter for beats by dr dre.", "attributes": ["output protection", "high performance", "easy carry"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53TAKGB", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09G2X4GDX", "instruction": "i am looking for a high performance 18 volt charger adapter for beats by dr dre.", "attributes": ["output protection", "high performance", "easy carry"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53TAKGB", "worker_id": "A1EREKSZAA9V7B"}], "B07CLKJ7ZC": [{"asin": "B07CLKJ7ZC", "instruction": "please get me an ac adapter with output protection.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQD0EKT", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07CLKJ7ZC", "instruction": "please get me an ac adapter with output protection.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQD0EKT", "worker_id": "AR9AU5FY1S3RO"}], "B09KG8KSRT": [{"asin": "B09KG8KSRT", "instruction": "i need to buy a wall art print for my living room in a natural 16\" x 24\" x 3.", "attributes": ["mid century", "living room"], "options": ["color: b116-2110-17-eva03", "size: 16\" x 24\" x 3 panels natural"], "instruction_attributes": ["living room"], "instruction_options": ["16\" x 24\" x 3 panels natural"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZFNMKM", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B09KG8KSRT", "instruction": "i need to buy a wall art print for my living room in a natural 16\" x 24\" x 3.", "attributes": ["mid century", "living room"], "options": ["color: b116-2110-17-eva03", "size: 16\" x 24\" x 3 panels natural"], "instruction_attributes": ["living room"], "instruction_options": ["16\" x 24\" x 3 panels natural"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZFNMKM", "worker_id": "A15ERD4HOFEPHM"}], "B09LTWYH48": [{"asin": "B09LTWYH48", "instruction": "i need a s20 tv sound bar that comes with a wireless bluetooth speaker.", "attributes": ["non slip", "wireless bluetooth"], "options": ["color: s20"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["s20"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQDXEKQ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09LTWYH48", "instruction": "i need a s20 tv sound bar that comes with a wireless bluetooth speaker.", "attributes": ["non slip", "wireless bluetooth"], "options": ["color: s20"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["s20"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQDXEKQ", "worker_id": "A2RBF3IIJP15IH"}], "B087GFN56C": [{"asin": "B087GFN56C", "instruction": "i am looking for wild caught, ready to eat sardines in a tomato sauce.", "attributes": ["wild caught", "protein serving", "ready eat", "high protein", "bpa free", "low carb", "non gmo"], "options": ["flavor name: tomato sauce", "size: 4.41 ounce (pack of 12)"], "instruction_attributes": ["wild caught", "ready eat"], "instruction_options": ["tomato sauce"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I59FDQ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B087GFN56C", "instruction": "i am looking for wild caught, ready to eat sardines in a tomato sauce.", "attributes": ["wild caught", "protein serving", "ready eat", "high protein", "bpa free", "low carb", "non gmo"], "options": ["flavor name: tomato sauce", "size: 4.41 ounce (pack of 12)"], "instruction_attributes": ["wild caught", "ready eat"], "instruction_options": ["tomato sauce"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I59FDQ", "worker_id": "A1EREKSZAA9V7B"}], "B09M74RY5C": [{"asin": "B09M74RY5C", "instruction": "i want to find pink horse-shaped cupcake toppers that i can use for a baby shower.", "attributes": ["baby shower", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["baby shower"], "instruction_options": ["pink"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFRV3EO", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09M74RY5C", "instruction": "i want to find pink horse-shaped cupcake toppers that i can use for a baby shower.", "attributes": ["baby shower", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["baby shower"], "instruction_options": ["pink"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFRV3EO", "worker_id": "A345TDMHP3DQ3G"}], "B08T3QJJRT": [{"asin": "B08T3QJJRT", "instruction": "i am looking for some kosher chocolate bars that are 2 pounds.", "attributes": ["chocolate covered", "kosher certified", "gluten free"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME91S2DH", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08T3QJJRT", "instruction": "i am looking for some kosher chocolate bars that are 2 pounds.", "attributes": ["chocolate covered", "kosher certified", "gluten free"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME91S2DH", "worker_id": "A2ECRNQ3X5LEXD"}], "B08YZ1XLGB": [{"asin": "B08YZ1XLGB", "instruction": "looking for a coffee table with metal legs for living room rustic style", "attributes": ["metal legs", "living room"], "options": [""], "instruction_attributes": ["metal legs", "living room"], "instruction_options": [], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZXQNRF", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B08YZ1XLGB", "instruction": "looking for a coffee table with metal legs for living room rustic style", "attributes": ["metal legs", "living room"], "options": [""], "instruction_attributes": ["metal legs", "living room"], "instruction_options": [], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZXQNRF", "worker_id": "A2Y2TURT2VEYZN"}], "B09QKFB7LL": [{"asin": "B09QKFB7LL", "instruction": "i am looking for a black color radio alarm clock having stereo sound and hands free.", "attributes": ["hands free", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["hands free", "stereo sound"], "instruction_options": ["black"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTQCXW9", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09QKFB7LL", "instruction": "i am looking for a black color radio alarm clock having stereo sound and hands free.", "attributes": ["hands free", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["hands free", "stereo sound"], "instruction_options": ["black"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTQCXW9", "worker_id": "A1Q8PPQQCWGY0D"}], "B000BNG4VU": [{"asin": "B000BNG4VU", "instruction": "i need long lasting honey beige face powder, pack of 1", "attributes": ["long lasting", "fine lines"], "options": ["color: honey beige", "size: pack of 1", "style: face powder"], "instruction_attributes": ["long lasting"], "instruction_options": ["honey beige", "pack of 1", "face powder"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI1QT3C", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B000BNG4VU", "instruction": "i need long lasting honey beige face powder, pack of 1", "attributes": ["long lasting", "fine lines"], "options": ["color: honey beige", "size: pack of 1", "style: face powder"], "instruction_attributes": ["long lasting"], "instruction_options": ["honey beige", "pack of 1", "face powder"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI1QT3C", "worker_id": "A258PTOZ3D2TQR"}], "B09JJX555S": [{"asin": "B09JJX555S", "instruction": "i am looking for a long sleeve men's pullover hoodie, size medium.", "attributes": ["machine wash", "wash cold", "hand wash", "cotton spandex", "long sleeve", "gym workout", "tumble dry", "daily wear"], "options": ["color: burgundy", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2KZYNM", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09JJX555S", "instruction": "i am looking for a long sleeve men's pullover hoodie, size medium.", "attributes": ["machine wash", "wash cold", "hand wash", "cotton spandex", "long sleeve", "gym workout", "tumble dry", "daily wear"], "options": ["color: burgundy", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2KZYNM", "worker_id": "A1EREKSZAA9V7B"}], "B01K0PGUKI": [{"asin": "B01K0PGUKI", "instruction": "i need a theater sized pull-down projector screen.", "attributes": ["ultra hd", "easy install"], "options": ["color: black", "pattern name: projector screen", "size: 100\"", "style: 16:10, aspect ratio"], "instruction_attributes": ["easy install"], "instruction_options": ["projector screen", "16:10, aspect ratio"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9IGB0J", "worker_id": "A19317A3X87NVM"}, {"asin": "B01K0PGUKI", "instruction": "i'm looking for a 109\" ultra hd projector screen that's easy to install. also, make it white.", "attributes": ["ultra hd", "easy install"], "options": ["color: white | white", "pattern name: projector screen + 12\" black projector screen", "size: 109\"", "style: 16:9, aspect ratio"], "instruction_attributes": ["ultra hd", "easy install"], "instruction_options": ["white | white", "109\""], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZE48OY", "worker_id": "A1EM0SFZVHQYDD"}, {"asin": "B01K0PGUKI", "instruction": "i am looking for a pull down manual projector screen with aspect ratio 16:10 and ultra hd. also easy to install.", "attributes": ["ultra hd", "easy install"], "options": ["color: 4:3, black", "pattern name: projector screen", "size: 119\"", "style: 16:10, aspect ratio"], "instruction_attributes": ["ultra hd", "easy install"], "instruction_options": ["16:10, aspect ratio"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA93LCZ3A", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B01K0PGUKI", "instruction": "i need a theater sized pull-down projector screen.", "attributes": ["ultra hd", "easy install"], "options": ["color: black", "pattern name: projector screen", "size: 100\"", "style: 16:10, aspect ratio"], "instruction_attributes": ["easy install"], "instruction_options": ["projector screen", "16:10, aspect ratio"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9IGB0J", "worker_id": "A19317A3X87NVM"}, {"asin": "B01K0PGUKI", "instruction": "i'm looking for ultra hd white color television because it looks so nice.", "attributes": ["ultra hd", "easy install"], "options": ["color: white", "pattern name: projector screen", "size: 120\", 24\" drop", "style: 16:9, aspect ratio"], "instruction_attributes": ["ultra hd"], "instruction_options": ["white"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL3NVR5", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B01K0PGUKI", "instruction": "i'm looking for a new screen for my projector. it should be very easy to install and white. i need a screen of at least 113 inches.", "attributes": ["ultra hd", "easy install"], "options": ["color: white", "pattern name: projector screen", "size: 113\"", "style: 4:3, aspect ratio"], "instruction_attributes": ["easy install"], "instruction_options": ["white", "113\""], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40X9RC6", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B01K0PGUKI", "instruction": "i am looking for a ultra hd projection screens of black color", "attributes": ["ultra hd", "easy install"], "options": ["color: black", "pattern name: projector screen + 6\" black projector screen", "size: 142\"", "style: 1:1, apect ratio"], "instruction_attributes": ["ultra hd"], "instruction_options": ["black"], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1M9ZGTH", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B01K0PGUKI", "instruction": "i'm looking for a black manual projector screen easy to install of 142\" and 1:1 for project screen", "attributes": ["ultra hd", "easy install"], "options": ["color: black", "pattern name: projector screen + 6\" white projector screen", "size: 142\"", "style: 1:1, apect ratio"], "instruction_attributes": ["easy install"], "instruction_options": ["black", "projector screen + 6\" white projector screen", "142\"", "1:1, apect ratio"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HGD6IP", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B01K0PGUKI", "instruction": "i am looking for a ultra hd projection screen that is 80\"", "attributes": ["ultra hd", "easy install"], "options": ["color: black | white", "pattern name: projector screen + 6\" white projector screen", "size: 80\"", "style: 1:1, apect ratio"], "instruction_attributes": ["ultra hd"], "instruction_options": ["80\""], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZWP044", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01K0PGUKI", "instruction": "i am looking for150\" white color 4:3, 4k ultra hd 3d ready projector screen", "attributes": ["ultra hd", "easy install"], "options": ["color: 4:3, white", "pattern name: projector screen", "size: 150\"", "style: 1:1, apect ratio"], "instruction_attributes": ["ultra hd"], "instruction_options": ["4:3, white", "projector screen", "150\""], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP9MOAE", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01K0PGUKI", "instruction": "i am looking for an ultra hd pull down projector screen that is 150\" at least? also, can i request black?", "attributes": ["ultra hd", "easy install"], "options": ["color: white | white", "pattern name: projector screen + 6\" white projector screen", "size: 150\"", "style: 16:9, aspect ratio"], "instruction_attributes": ["ultra hd"], "instruction_options": ["150\""], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEY0C63P", "worker_id": "A2TRV8SEM003GG"}, {"asin": "B01K0PGUKI", "instruction": "i'm looking for a 109-inch black manual projector screen that is easy to install.", "attributes": ["ultra hd", "easy install"], "options": ["color: black", "pattern name: projector screen + 6\" black projector screen", "size: 109\"", "style: manual"], "instruction_attributes": ["easy install"], "instruction_options": ["black", "projector screen + 6\" black projector screen", "109\"", "manual"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NMM2PQ", "worker_id": "A345TDMHP3DQ3G"}], "B074948P23": [{"asin": "B074948P23", "instruction": "i am looking for a classic fit pant of stone color.", "attributes": ["machine wash", "classic fit"], "options": ["color: stone", "size: 40w x 30l"], "instruction_attributes": ["classic fit"], "instruction_options": ["stone"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOEACT0", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B074948P23", "instruction": "i am looking for a classic fit pant of stone color.", "attributes": ["machine wash", "classic fit"], "options": ["color: stone", "size: 40w x 30l"], "instruction_attributes": ["classic fit"], "instruction_options": ["stone"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOEACT0", "worker_id": "A1Q8PPQQCWGY0D"}], "B00B041E0A": [{"asin": "B00B041E0A", "instruction": "i'm looking for a package of green tea mix that has low calories and is zero sugar. i would also like it in a 48 count package.", "attributes": ["low calorie", "zero sugar"], "options": ["flavor: sugar-free peach mango green tea", "size: 48 count"], "instruction_attributes": ["low calorie", "zero sugar"], "instruction_options": ["48 count"], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60MZAA6", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B00B041E0A", "instruction": "i'm looking for a package of green tea mix that has low calories and is zero sugar. i would also like it in a 48 count package.", "attributes": ["low calorie", "zero sugar"], "options": ["flavor: sugar-free peach mango green tea", "size: 48 count"], "instruction_attributes": ["low calorie", "zero sugar"], "instruction_options": ["48 count"], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60MZAA6", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B00B041E0A", "instruction": "i am looking for low calorie and zero sugar pomegranate green tea drink mix, 48 count", "attributes": ["low calorie", "zero sugar"], "options": ["flavor: sugar-free pomegranate green tea", "size: 48 count"], "instruction_attributes": ["low calorie", "zero sugar"], "instruction_options": ["sugar-free pomegranate green tea", "48 count"], "assignment_id": "32SCWG5HISEW7674IASH43KF3TZ6PQ", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B00B041E0A", "instruction": "i am looking for 72 packets of mango green tea that is low calorie", "attributes": ["low calorie", "zero sugar"], "options": ["flavor: sugar-free peach mango green tea", "size: 72 count"], "instruction_attributes": ["low calorie"], "instruction_options": ["sugar-free peach mango green tea", "72 count"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDYJCIA", "worker_id": "A2ECRNQ3X5LEXD"}], "B0034E5CWK": [{"asin": "B0034E5CWK", "instruction": "i'm looking for 4.2 ounce gluten free matiz sardine.", "attributes": ["wild caught", "ready eat", "non gmo", "gluten free"], "options": ["size: 4.2 ounce (pack of 5)"], "instruction_attributes": ["gluten free"], "instruction_options": ["4.2 ounce (pack of 5)"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KB1DPW", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B0034E5CWK", "instruction": "i'm looking for 4.2 ounce gluten free matiz sardine.", "attributes": ["wild caught", "ready eat", "non gmo", "gluten free"], "options": ["size: 4.2 ounce (pack of 5)"], "instruction_attributes": ["gluten free"], "instruction_options": ["4.2 ounce (pack of 5)"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KB1DPW", "worker_id": "ARQ05PDNXPFDI"}], "B094JJ2J25": [{"asin": "B094JJ2J25", "instruction": "i am looking for a furniture set with 6 inch bun legs and is easy to install.", "attributes": ["hand painted", "easy install"], "options": ["size: 6 inch bun legs"], "instruction_attributes": ["easy install"], "instruction_options": ["6 inch bun legs"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOG20FK", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B094JJ2J25", "instruction": "i am looking for a furniture set with 6 inch bun legs and is easy to install.", "attributes": ["hand painted", "easy install"], "options": ["size: 6 inch bun legs"], "instruction_attributes": ["easy install"], "instruction_options": ["6 inch bun legs"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOG20FK", "worker_id": "A1EREKSZAA9V7B"}], "B07DLS2MKT": [{"asin": "B07DLS2MKT", "instruction": "i need to find 20-60x80 monoculars for some bird watching action.", "attributes": ["non slip", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIGQ29D", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B07DLS2MKT", "instruction": "i need to find 20-60x80 monoculars for some bird watching action.", "attributes": ["non slip", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIGQ29D", "worker_id": "A15ERD4HOFEPHM"}], "B09FF1V6QJ": [{"asin": "B09FF1V6QJ", "instruction": "i am looking for a brush set without a bag that is made from synthetic hair.", "attributes": ["synthetic hair", "eye shadow"], "options": ["color: style9 without bag"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["style9 without bag"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZJ4Y1O", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09FF1V6QJ", "instruction": "i am looking for a brush set without a bag that is made from synthetic hair.", "attributes": ["synthetic hair", "eye shadow"], "options": ["color: style9 without bag"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["style9 without bag"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZJ4Y1O", "worker_id": "A2ECRNQ3X5LEXD"}], "B07XRQJ876": [{"asin": "B07XRQJ876", "instruction": "i need storage cabinets for the living room that are white.", "attributes": ["height adjustable", "storage space", "engineered wood", "living room"], "options": ["color: white", "size: 27.6 in (w)", "style: 3 left shelves"], "instruction_attributes": ["living room"], "instruction_options": ["white"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK34VNH", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07XRQJ876", "instruction": "i need storage cabinets for the living room that are white.", "attributes": ["height adjustable", "storage space", "engineered wood", "living room"], "options": ["color: white", "size: 27.6 in (w)", "style: 3 left shelves"], "instruction_attributes": ["living room"], "instruction_options": ["white"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK34VNH", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HKDHMY6": [{"asin": "B09HKDHMY6", "instruction": "i am looking for a red buffet that is easy to assemble and is 14.96 by 11.81 by 27.76 inches.", "attributes": ["easy assemble", "storage space", "storage unit", "solid wood", "living room"], "options": ["color: red", "size: 14.96 x 11.81 x 27.76 inch"], "instruction_attributes": ["easy assemble"], "instruction_options": ["red", "14.96 x 11.81 x 27.76 inch"], "assignment_id": "326O153BMT8RVOXTJJKKGXV3642EDF", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09HKDHMY6", "instruction": "i am looking for a red buffet that is easy to assemble and is 14.96 by 11.81 by 27.76 inches.", "attributes": ["easy assemble", "storage space", "storage unit", "solid wood", "living room"], "options": ["color: red", "size: 14.96 x 11.81 x 27.76 inch"], "instruction_attributes": ["easy assemble"], "instruction_options": ["red", "14.96 x 11.81 x 27.76 inch"], "assignment_id": "326O153BMT8RVOXTJJKKGXV3642EDF", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09HKDHMY6", "instruction": "i want a blue storage cabinet end table for my living room.", "attributes": ["easy assemble", "storage space", "storage unit", "solid wood", "living room"], "options": ["color: blue", "size: 14.96 x 11.81 x 44.88 inch"], "instruction_attributes": ["living room"], "instruction_options": ["blue"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6M97UM", "worker_id": "A2RBF3IIJP15IH"}], "B07W1ZDHY9": [{"asin": "B07W1ZDHY9", "instruction": "i would like a pair of black binoculars for bird watching.", "attributes": ["easy use", "bird watching"], "options": ["color: black-8x42"], "instruction_attributes": ["bird watching"], "instruction_options": ["black-8x42"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H19U8G", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07W1ZDHY9", "instruction": "i would like a pair of black binoculars for bird watching.", "attributes": ["easy use", "bird watching"], "options": ["color: black-8x42"], "instruction_attributes": ["bird watching"], "instruction_options": ["black-8x42"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H19U8G", "worker_id": "A1WS884SI0SLO4"}], "B09QXBN74Y": [{"asin": "B09QXBN74Y", "instruction": "i want to find a small purple tankini top that teen girls can wear.", "attributes": ["quick drying", "tummy control", "high waist", "teen girls"], "options": ["color: a6-purple", "size: small"], "instruction_attributes": ["teen girls"], "instruction_options": ["a6-purple", "small"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMTB2GU", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09QXBN74Y", "instruction": "i want to find a small purple tankini top that teen girls can wear.", "attributes": ["quick drying", "tummy control", "high waist", "teen girls"], "options": ["color: a6-purple", "size: small"], "instruction_attributes": ["teen girls"], "instruction_options": ["a6-purple", "small"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMTB2GU", "worker_id": "A345TDMHP3DQ3G"}], "B09GLV1HTT": [{"asin": "B09GLV1HTT", "instruction": "i am looking for a chrome sputnik chandelier for my dining room.", "attributes": ["mid century", "contemporary style", "pendant light", "dining room", "living room"], "options": ["color: chrome-2"], "instruction_attributes": ["dining room"], "instruction_options": ["chrome-2"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7LMBOZ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09GLV1HTT", "instruction": "i am interested in a contemporary style chandelier that is black.", "attributes": ["mid century", "contemporary style", "pendant light", "dining room", "living room"], "options": ["color: black"], "instruction_attributes": ["contemporary style"], "instruction_options": ["black"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTL9OQA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09GLV1HTT", "instruction": "i am looking for a chrome sputnik chandelier for my dining room.", "attributes": ["mid century", "contemporary style", "pendant light", "dining room", "living room"], "options": ["color: chrome-2"], "instruction_attributes": ["dining room"], "instruction_options": ["chrome-2"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7LMBOZ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09GLV1HTT", "instruction": "i am interested in a contemporary style chandelier that is black.", "attributes": ["mid century", "contemporary style", "pendant light", "dining room", "living room"], "options": ["color: black"], "instruction_attributes": ["contemporary style"], "instruction_options": ["black"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTL9OQA", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LYN1QM3": [{"asin": "B09LYN1QM3", "instruction": "i would like a charcoal ottoman that's button tufted.", "attributes": ["button tufted", "assembly required"], "options": ["color: charcoal"], "instruction_attributes": ["button tufted"], "instruction_options": ["charcoal"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSF7N9D1", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09LYN1QM3", "instruction": "i would like a charcoal ottoman that's button tufted.", "attributes": ["button tufted", "assembly required"], "options": ["color: charcoal"], "instruction_attributes": ["button tufted"], "instruction_options": ["charcoal"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSF7N9D1", "worker_id": "A1WS884SI0SLO4"}], "B08WYY37SB": [{"asin": "B08WYY37SB", "instruction": "i need 1.75 ounces of tikkiya kabab fried fish seasoning mix that is easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: tikkiya kabab", "size: 1.75 ounce"], "instruction_attributes": ["easy use"], "instruction_options": ["tikkiya kabab", "1.75 ounce"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OFETRO", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08WYY37SB", "instruction": "i want a 1.76 ounce pack of easy to prepare chicken tikka shan fried fish recipe and seasoning mix.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: chicken tikka", "size: 1.76 ounce (pack of 1)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["chicken tikka"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX22FAE", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08WYY37SB", "instruction": "i need 1.75 ounces of tikkiya kabab fried fish seasoning mix that is easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: tikkiya kabab", "size: 1.75 ounce"], "instruction_attributes": ["easy use"], "instruction_options": ["tikkiya kabab", "1.75 ounce"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OFETRO", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08WYY37SB", "instruction": "i'm looking for fish recipe it was easy to prepare and flavor was tikka masala.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: tikka masala", "size: pack of 4"], "instruction_attributes": ["easy prepare", "easy use"], "instruction_options": ["tikka masala"], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0WMCC1", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08WYY37SB", "instruction": "i need an easy to use seasoning mix that has a bihari kabab flavor to it.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: bihari kabab", "size: 1.41 ounce (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["bihari kabab"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZXNANN", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B08WYY37SB", "instruction": "i am looking for spicy fried fish seasoning that is also suitable for vegetarians and easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: fried fish", "size: 1.41 ounce (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["fried fish"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80CFQ19", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B08WYY37SB", "instruction": "look for a 4.4 ounce three pack of shami kabab seasoning that's easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: shami kabab", "size: 4.4 ounce (pack of 3)"], "instruction_attributes": ["easy use"], "instruction_options": ["shami kabab", "4.4 ounce (pack of 3)"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LP9OROV", "worker_id": "AR9AU5FY1S3RO"}], "B09NY4QFVG": [{"asin": "B09NY4QFVG", "instruction": "i am looking for a brown finished wood full size platform bed with box springs.", "attributes": ["button tufted", "box spring"], "options": [""], "instruction_attributes": ["box spring"], "instruction_options": [], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVXF3X6", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09NY4QFVG", "instruction": "i am looking for a brown finished wood full size platform bed with box springs.", "attributes": ["button tufted", "box spring"], "options": [""], "instruction_attributes": ["box spring"], "instruction_options": [], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVXF3X6", "worker_id": "A1EREKSZAA9V7B"}], "B09J1GHX9D": [{"asin": "B09J1GHX9D", "instruction": "i'm looking for ladies shoes with a high heel that are open toed, i wear a size 7 and a half.", "attributes": ["knee high", "open toe", "ankle strap", "high heel", "arch support"], "options": ["color: a-8 black", "size: 7.5"], "instruction_attributes": ["open toe", "high heel"], "instruction_options": ["7.5"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09N618", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B09J1GHX9D", "instruction": "i'm looking for ladies shoes with a high heel that are open toed, i wear a size 7 and a half.", "attributes": ["knee high", "open toe", "ankle strap", "high heel", "arch support"], "options": ["color: a-8 black", "size: 7.5"], "instruction_attributes": ["open toe", "high heel"], "instruction_options": ["7.5"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09N618", "worker_id": "A3EDFA8UQT5GG8"}], "B07HLTP65S": [{"asin": "B07HLTP65S", "instruction": "i need a taco seasoning blend that is sugar free.", "attributes": ["sugar free", "gluten free", "dairy free", "quality ingredients"], "options": ["flavor name: taco seasoning blend"], "instruction_attributes": ["sugar free"], "instruction_options": ["taco seasoning blend"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL84176XAV", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07HLTP65S", "instruction": "i need a taco seasoning blend that is sugar free.", "attributes": ["sugar free", "gluten free", "dairy free", "quality ingredients"], "options": ["flavor name: taco seasoning blend"], "instruction_attributes": ["sugar free"], "instruction_options": ["taco seasoning blend"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL84176XAV", "worker_id": "A2RBF3IIJP15IH"}], "B09Q8WCZ42": [{"asin": "B09Q8WCZ42", "instruction": "i need green butt lifting yoga pants in size medium.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: green", "size: medium"], "instruction_attributes": ["butt lifting"], "instruction_options": ["green", "medium"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKHRT1Z", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09Q8WCZ42", "instruction": "i need green butt lifting yoga pants in size medium.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: green", "size: medium"], "instruction_attributes": ["butt lifting"], "instruction_options": ["green", "medium"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKHRT1Z", "worker_id": "A2RBF3IIJP15IH"}], "B08BXMYCZL": [{"asin": "B08BXMYCZL", "instruction": "buy me a pair of extra small men's sweatpants with a drawstring closure.", "attributes": ["hand wash", "quality polyester", "drawstring closure", "daily wear"], "options": ["color: 2", "size: x-small"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["x-small"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGUZTWX", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08BXMYCZL", "instruction": "buy me a pair of extra small men's sweatpants with a drawstring closure.", "attributes": ["hand wash", "quality polyester", "drawstring closure", "daily wear"], "options": ["color: 2", "size: x-small"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["x-small"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGUZTWX", "worker_id": "AR9AU5FY1S3RO"}], "B09P4PP87G": [{"asin": "B09P4PP87G", "instruction": "i need a gray vanity bench with metal legs.", "attributes": ["contemporary design", "metal legs"], "options": ["color: b-gray", "size: 17.5\" (dia) x 16.1\" (h)"], "instruction_attributes": ["metal legs"], "instruction_options": ["b-gray"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZQ340A", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09P4PP87G", "instruction": "i'm looking for a snow white vanity stool that's 16.3 inches in diameter and 13 inches in height. it needs to have a contemporary design.", "attributes": ["contemporary design", "metal legs"], "options": ["color: c-snow white", "size: 16.3\" (dia) x 13.4\" (h)"], "instruction_attributes": ["contemporary design"], "instruction_options": ["c-snow white", "16.3\" (dia) x 13.4\" (h)"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRLNWPS", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09P4PP87G", "instruction": "i need a gray vanity bench with metal legs.", "attributes": ["contemporary design", "metal legs"], "options": ["color: b-gray", "size: 17.5\" (dia) x 16.1\" (h)"], "instruction_attributes": ["metal legs"], "instruction_options": ["b-gray"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZQ340A", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09P4PP87G", "instruction": "i need a vanity bench that is contemporary and white", "attributes": ["contemporary design", "metal legs"], "options": ["color: b-white", "size: 17.5\" (dia) x 16.1\" (h)"], "instruction_attributes": ["contemporary design"], "instruction_options": ["b-white"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8YT8G3", "worker_id": "A2ECRNQ3X5LEXD"}], "B075VSBNQY": [{"asin": "B075VSBNQY", "instruction": "i am looking for a mini pc with an intel core i7 with 8 gigabytes of ram, 32 gigabytes of optane memory and is tall.", "attributes": ["ultra hd", "intel core"], "options": ["style: core i7|tall|8gb ram|32gb optane memory|..."], "instruction_attributes": ["intel core"], "instruction_options": ["core i7|tall|8gb ram|32gb optane memory|..."], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49XJ4X0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B075VSBNQY", "instruction": "i am looking for a mini pc with an intel core i7 with 8 gigabytes of ram, 32 gigabytes of optane memory and is tall.", "attributes": ["ultra hd", "intel core"], "options": ["style: core i7|tall|8gb ram|32gb optane memory|..."], "instruction_attributes": ["intel core"], "instruction_options": ["core i7|tall|8gb ram|32gb optane memory|..."], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49XJ4X0", "worker_id": "A1EREKSZAA9V7B"}], "B00D25IVVK": [{"asin": "B00D25IVVK", "instruction": "i am looking for an oil-free eye makeup remover.", "attributes": ["oil free", "alcohol free"], "options": [""], "instruction_attributes": ["oil free"], "instruction_options": [], "assignment_id": "37C0GNLMHQDNI94ED11M493QP666DE", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00D25IVVK", "instruction": "i am looking for an oil-free eye makeup remover.", "attributes": ["oil free", "alcohol free"], "options": [""], "instruction_attributes": ["oil free"], "instruction_options": [], "assignment_id": "37C0GNLMHQDNI94ED11M493QP666DE", "worker_id": "A1EREKSZAA9V7B"}], "B07GYLCLHV": [{"asin": "B07GYLCLHV", "instruction": "i am looking ofr a bag that is 1.7 oz and is easy to carry.", "attributes": ["leak proof", "easy carry", "easy clean"], "options": ["size: 50ml | 1.7 ounce"], "instruction_attributes": ["easy carry"], "instruction_options": ["50ml | 1.7 ounce"], "assignment_id": "37TRT2X24116R7L1JO45INKV8R4BJ8", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07GYLCLHV", "instruction": "i am looking ofr a bag that is 1.7 oz and is easy to carry.", "attributes": ["leak proof", "easy carry", "easy clean"], "options": ["size: 50ml | 1.7 ounce"], "instruction_attributes": ["easy carry"], "instruction_options": ["50ml | 1.7 ounce"], "assignment_id": "37TRT2X24116R7L1JO45INKV8R4BJ8", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HQ4563F": [{"asin": "B08HQ4563F", "instruction": "i need pink gluten free edible glitter.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: pink"], "instruction_attributes": ["gluten free"], "instruction_options": ["pink"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRSY3FU", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08HQ4563F", "instruction": "i need pink gluten free edible glitter.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: pink"], "instruction_attributes": ["gluten free"], "instruction_options": ["pink"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRSY3FU", "worker_id": "A2RBF3IIJP15IH"}], "B09CTCN6Z2": [{"asin": "B09CTCN6Z2", "instruction": "i am looking for a stainless steel compact pocket makeup mirror.", "attributes": ["rose gold", "stainless steel"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WSS1A8", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09CTCN6Z2", "instruction": "i am looking for a stainless steel compact pocket makeup mirror.", "attributes": ["rose gold", "stainless steel"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WSS1A8", "worker_id": "A1EREKSZAA9V7B"}], "B078HFD38S": [{"asin": "B078HFD38S", "instruction": "i am looking for a gray travel carry case that fits doss soundbox.", "attributes": ["carrying case", "wireless bluetooth"], "options": ["color: gray"], "instruction_attributes": ["carrying case"], "instruction_options": ["gray"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKOZV76", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B078HFD38S", "instruction": "i am looking for a gray travel carry case that fits doss soundbox.", "attributes": ["carrying case", "wireless bluetooth"], "options": ["color: gray"], "instruction_attributes": ["carrying case"], "instruction_options": ["gray"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKOZV76", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B078HFD38S", "instruction": "i need a wireless bluetooth speaker that is blue.", "attributes": ["carrying case", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBBLSOY", "worker_id": "A2ECRNQ3X5LEXD"}], "B08CNH461M": [{"asin": "B08CNH461M", "instruction": "what xx-large short sleeved t-shirts do you have that are loose fitting and for teen girls?", "attributes": ["fleece lined", "loose fit", "long sleeve", "short sleeve", "high waist", "elastic closure", "tummy control", "teen girls"], "options": ["color: heart_white 2", "size: xx-large"], "instruction_attributes": ["loose fit", "short sleeve", "teen girls"], "instruction_options": ["xx-large"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E0Z8X7C", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B08CNH461M", "instruction": "what xx-large short sleeved t-shirts do you have that are loose fitting and for teen girls?", "attributes": ["fleece lined", "loose fit", "long sleeve", "short sleeve", "high waist", "elastic closure", "tummy control", "teen girls"], "options": ["color: heart_white 2", "size: xx-large"], "instruction_attributes": ["loose fit", "short sleeve", "teen girls"], "instruction_options": ["xx-large"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E0Z8X7C", "worker_id": "A3EDFA8UQT5GG8"}], "B08FZZ6D4Z": [{"asin": "B08FZZ6D4Z", "instruction": "order an office desk that's easy to assemble.", "attributes": ["space saving", "easy assemble", "storage space"], "options": [""], "instruction_attributes": ["easy assemble"], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE2Z5QGC", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08FZZ6D4Z", "instruction": "order an office desk that's easy to assemble.", "attributes": ["space saving", "easy assemble", "storage space"], "options": [""], "instruction_attributes": ["easy assemble"], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE2Z5QGC", "worker_id": "AR9AU5FY1S3RO"}], "B08WJP82ZT": [{"asin": "B08WJP82ZT", "instruction": "i would like a blue unlocked galaxy a11 that is 128gb and has fast charging.", "attributes": ["fast charging", "4g lte"], "options": ["color: blue", "memory storage capacity: 128 gb", "model name: galaxy a11", "wireless provider: unlocked"], "instruction_attributes": ["fast charging"], "instruction_options": ["blue", "128 gb", "galaxy a11", "unlocked"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ8HUW0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08WJP82ZT", "instruction": "i need a blue phone with 4g lte and charges fast too.", "attributes": ["fast charging", "4g lte"], "options": ["color: blue", "memory storage capacity: 64 gb", "model name: galaxy a51", "wireless provider: simple mobile"], "instruction_attributes": ["fast charging", "4g lte"], "instruction_options": ["blue"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMB09WT", "worker_id": "A1MJVTR0PCKBWW"}, {"asin": "B08WJP82ZT", "instruction": "i would like a blue unlocked galaxy a11 that is 128gb and has fast charging.", "attributes": ["fast charging", "4g lte"], "options": ["color: blue", "memory storage capacity: 128 gb", "model name: galaxy a11", "wireless provider: unlocked"], "instruction_attributes": ["fast charging"], "instruction_options": ["blue", "128 gb", "galaxy a11", "unlocked"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ8HUW0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08WJP82ZT", "instruction": "i am looking for 4g lte samsung galaxy a71 mobile.please choose black one.", "attributes": ["fast charging", "4g lte"], "options": ["color: black", "memory storage capacity: 32 gb", "model name: galaxy a71", "wireless provider: simple mobile"], "instruction_attributes": ["4g lte"], "instruction_options": ["black", "galaxy a71"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPO2E6M", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B08WJP82ZT", "instruction": "i want a fast charging smartphone with 64 gb memory storage capacity. pick a blue one.", "attributes": ["fast charging", "4g lte"], "options": ["color: blue", "memory storage capacity: 64 gb", "model name: galaxy a11", "wireless provider: tracfone"], "instruction_attributes": ["fast charging"], "instruction_options": ["blue", "64 gb"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOH9LM9", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B08WJP82ZT", "instruction": "i need a samsung phone that is blue and is fast charging.", "attributes": ["fast charging", "4g lte"], "options": ["color: blue", "memory storage capacity: 64 gb", "model name: galaxy a51", "wireless provider: unlocked"], "instruction_attributes": ["fast charging"], "instruction_options": ["blue"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYVO36O", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08WJP82ZT", "instruction": "i want a black galaxy a71 from simple mobile which has a 128 gb storage and supports fast charging and 4g lte.", "attributes": ["fast charging", "4g lte"], "options": ["color: black", "memory storage capacity: 128 gb", "model name: galaxy a71", "wireless provider: simple mobile"], "instruction_attributes": ["fast charging", "4g lte"], "instruction_options": ["black", "128 gb", "galaxy a71", "simple mobile"], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YJYAG8", "worker_id": "ASWFLI3N8X72G"}], "B074MK42SN": [{"asin": "B074MK42SN", "instruction": "i need a 26\" x 16\" and blue grey octopus pillow cover that is machine washable.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: blue grey", "size: 26\" x 16\""], "instruction_attributes": ["machine washable"], "instruction_options": ["blue grey", "26\" x 16\""], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8AYUX4", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B074MK42SN", "instruction": "i need a 26\" x 16\" and blue grey octopus pillow cover that is machine washable.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: blue grey", "size: 26\" x 16\""], "instruction_attributes": ["machine washable"], "instruction_options": ["blue grey", "26\" x 16\""], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8AYUX4", "worker_id": "A2RBF3IIJP15IH"}], "B07J5WR4RR": [{"asin": "B07J5WR4RR", "instruction": "i need a panasonic ag-ac30 full hd camcorder with a carrying case.", "attributes": ["high performance", "optical zoom", "carrying case"], "options": [""], "instruction_attributes": ["carrying case"], "instruction_options": [], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXTKO4L", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07J5WR4RR", "instruction": "i need a panasonic ag-ac30 full hd camcorder with a carrying case.", "attributes": ["high performance", "optical zoom", "carrying case"], "options": [""], "instruction_attributes": ["carrying case"], "instruction_options": [], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXTKO4L", "worker_id": "A2RBF3IIJP15IH"}], "B01BINV9P2": [{"asin": "B01BINV9P2", "instruction": "i'm looking for a magnetic phone mount for car with aluminum alloy and small size", "attributes": ["hands free", "heavy duty", "aluminum alloy"], "options": ["size: small"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["small"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMHHVX4", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B01BINV9P2", "instruction": "i'm looking for a magnetic phone mount for car with aluminum alloy and small size", "attributes": ["hands free", "heavy duty", "aluminum alloy"], "options": ["size: small"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["small"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMHHVX4", "worker_id": "A2Y2TURT2VEYZN"}], "B08HJ6RG9S": [{"asin": "B08HJ6RG9S", "instruction": "i'm looking for a pair of red, relaxed fit, pajama bottoms.", "attributes": ["machine wash", "hand wash", "cotton spandex", "drawstring closure", "relaxed fit", "gym workout"], "options": ["color: red", "size: small"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["red"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWOAFP2", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B08HJ6RG9S", "instruction": "i'm looking for a pair of red, relaxed fit, pajama bottoms.", "attributes": ["machine wash", "hand wash", "cotton spandex", "drawstring closure", "relaxed fit", "gym workout"], "options": ["color: red", "size: small"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["red"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWOAFP2", "worker_id": "A2JP9IKRHNLRPI"}], "B08LH8B6VW": [{"asin": "B08LH8B6VW", "instruction": "i need water resistant snow boots that are smoky black and are in a size 6 women.", "attributes": ["water resistant", "anti slip", "non slip", "fashion design", "rubber sole"], "options": ["color: smoky black", "size: 6 women | 5 men"], "instruction_attributes": ["water resistant"], "instruction_options": ["smoky black", "6 women | 5 men"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVEITUS", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08LH8B6VW", "instruction": "i need water resistant snow boots that are smoky black and are in a size 6 women.", "attributes": ["water resistant", "anti slip", "non slip", "fashion design", "rubber sole"], "options": ["color: smoky black", "size: 6 women | 5 men"], "instruction_attributes": ["water resistant"], "instruction_options": ["smoky black", "6 women | 5 men"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVEITUS", "worker_id": "A2ECRNQ3X5LEXD"}], "B099XD4G5B": [{"asin": "B099XD4G5B", "instruction": "i am looking for white curtains that are a size 120\"w by 84\"l", "attributes": ["machine washable", "white item"], "options": ["color: color10", "size: 120\" w x 84\" l"], "instruction_attributes": ["white item"], "instruction_options": ["120\" w x 84\" l"], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8MFQQ8", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B099XD4G5B", "instruction": "i am looking for white curtains that are a size 120\"w by 84\"l", "attributes": ["machine washable", "white item"], "options": ["color: color10", "size: 120\" w x 84\" l"], "instruction_attributes": ["white item"], "instruction_options": ["120\" w x 84\" l"], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8MFQQ8", "worker_id": "A2ECRNQ3X5LEXD"}], "B08GGZVMHC": [{"asin": "B08GGZVMHC", "instruction": "i am looking for a coconut refresh flavor sports drink that is sugar free.", "attributes": ["sugar free", "zero sugar"], "options": ["flavor name: coconut refresh"], "instruction_attributes": ["sugar free"], "instruction_options": ["coconut refresh"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3VZ1N1O", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08GGZVMHC", "instruction": "i am looking for a coconut refresh flavor sports drink that is sugar free.", "attributes": ["sugar free", "zero sugar"], "options": ["flavor name: coconut refresh"], "instruction_attributes": ["sugar free"], "instruction_options": ["coconut refresh"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3VZ1N1O", "worker_id": "A1Q8PPQQCWGY0D"}], "B09BDS8NN9": [{"asin": "B09BDS8NN9", "instruction": "i would like a two meter in diameter photo background that is easy to carry.", "attributes": ["easy carry", "digital photography"], "options": ["size: 2m diameter"], "instruction_attributes": ["easy carry"], "instruction_options": ["2m diameter"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQDHJR3", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09BDS8NN9", "instruction": "i would like a two meter in diameter photo background that is easy to carry.", "attributes": ["easy carry", "digital photography"], "options": ["size: 2m diameter"], "instruction_attributes": ["easy carry"], "instruction_options": ["2m diameter"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQDHJR3", "worker_id": "A1WS884SI0SLO4"}], "B001KW0CDC": [{"asin": "B001KW0CDC", "instruction": "i am looking for a queen sized bed that is black.", "attributes": ["queen size", "white item", "solid wood"], "options": ["color: black", "pattern name: platform storage bed + dresser", "size: twin xl", "style: coal harbor"], "instruction_attributes": ["queen size"], "instruction_options": ["black"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TA8K2V", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B001KW0CDC", "instruction": "i am looking for a queen sized bed that is black.", "attributes": ["queen size", "white item", "solid wood"], "options": ["color: black", "pattern name: platform storage bed + dresser", "size: twin xl", "style: coal harbor"], "instruction_attributes": ["queen size"], "instruction_options": ["black"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TA8K2V", "worker_id": "A2ECRNQ3X5LEXD"}], "B09RNB4SVT": [{"asin": "B09RNB4SVT", "instruction": "get me a forty pack of old-fashioned popcorn.", "attributes": ["old fashioned", "easy use"], "options": ["number of items: 40"], "instruction_attributes": ["old fashioned"], "instruction_options": ["40"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJKBOMM", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09RNB4SVT", "instruction": "get me a forty pack of old-fashioned popcorn.", "attributes": ["old fashioned", "easy use"], "options": ["number of items: 40"], "instruction_attributes": ["old fashioned"], "instruction_options": ["40"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJKBOMM", "worker_id": "AR9AU5FY1S3RO"}], "B07Q8VSCW2": [{"asin": "B07Q8VSCW2", "instruction": "i am looking for a hair mask that will treat damaged hair.", "attributes": ["sulfate free", "cruelty free", "seed oil", "hair treatment", "damaged hair", "hair growth"], "options": ["color: hair mask"], "instruction_attributes": ["hair treatment", "damaged hair"], "instruction_options": ["hair mask"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LTGDCE", "worker_id": "A2KW17G25L25R8"}, {"asin": "B07Q8VSCW2", "instruction": "i am looking for a hair mask that will treat damaged hair.", "attributes": ["sulfate free", "cruelty free", "seed oil", "hair treatment", "damaged hair", "hair growth"], "options": ["color: hair mask"], "instruction_attributes": ["hair treatment", "damaged hair"], "instruction_options": ["hair mask"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LTGDCE", "worker_id": "A2KW17G25L25R8"}], "B08VJB28BL": [{"asin": "B08VJB28BL", "instruction": "i am looking for an easy to clean jewelry box with 10 slots.", "attributes": ["easy clean", "clear glass"], "options": ["size: 10 slots"], "instruction_attributes": ["easy clean"], "instruction_options": ["10 slots"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKNWGSX", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08VJB28BL", "instruction": "i am looking for an easy to clean jewelry box with 10 slots.", "attributes": ["easy clean", "clear glass"], "options": ["size: 10 slots"], "instruction_attributes": ["easy clean"], "instruction_options": ["10 slots"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKNWGSX", "worker_id": "A1EREKSZAA9V7B"}], "B01M7M9NXX": [{"asin": "B01M7M9NXX", "instruction": "i am looking for a beige twin sized bed.", "attributes": ["twin size", "box spring", "memory foam"], "options": ["color: beige", "size: queen", "style: platform bed + mattress, 12 inch"], "instruction_attributes": ["twin size"], "instruction_options": ["beige"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95PJQXM", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01M7M9NXX", "instruction": "i am looking for a beige twin sized bed.", "attributes": ["twin size", "box spring", "memory foam"], "options": ["color: beige", "size: queen", "style: platform bed + mattress, 12 inch"], "instruction_attributes": ["twin size"], "instruction_options": ["beige"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95PJQXM", "worker_id": "A2ECRNQ3X5LEXD"}], "B08392XJPV": [{"asin": "B08392XJPV", "instruction": "i'm looking for a heather charcoal or electric blue machine washable athletic polo t-shirt. choose the ones that have short sleeves and in size large.", "attributes": ["wash cold", "machine wash", "short sleeve", "regular fit", "dry clean", "tumble dry"], "options": ["color: heather charcoal | electric\u00a0blue", "size: large"], "instruction_attributes": ["machine wash", "short sleeve"], "instruction_options": ["heather charcoal | electric\u00a0blue", "large"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYAF28V", "worker_id": "A3MNXK3VDK37SN"}, {"asin": "B08392XJPV", "instruction": "i'm looking for a heather charcoal or electric blue machine washable athletic polo t-shirt. choose the ones that have short sleeves and in size large.", "attributes": ["wash cold", "machine wash", "short sleeve", "regular fit", "dry clean", "tumble dry"], "options": ["color: heather charcoal | electric\u00a0blue", "size: large"], "instruction_attributes": ["machine wash", "short sleeve"], "instruction_options": ["heather charcoal | electric\u00a0blue", "large"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYAF28V", "worker_id": "A3MNXK3VDK37SN"}], "B07P1Y9C7J": [{"asin": "B07P1Y9C7J", "instruction": "i'm looking for a high resolution digital film & photo scanner that is easy to use. choose the black ones that is 9.4 x 7.9 x 5.1 inch in size.", "attributes": ["high resolution", "easy use", "usb port"], "options": ["color: black", "size: 9.4 x 7.9 x 5.1 inch"], "instruction_attributes": ["high resolution", "easy use"], "instruction_options": ["black", "9.4 x 7.9 x 5.1 inch"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ7N0NQ", "worker_id": "A3MNXK3VDK37SN"}, {"asin": "B07P1Y9C7J", "instruction": "i'm looking for a high resolution digital film & photo scanner that is easy to use. choose the black ones that is 9.4 x 7.9 x 5.1 inch in size.", "attributes": ["high resolution", "easy use", "usb port"], "options": ["color: black", "size: 9.4 x 7.9 x 5.1 inch"], "instruction_attributes": ["high resolution", "easy use"], "instruction_options": ["black", "9.4 x 7.9 x 5.1 inch"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ7N0NQ", "worker_id": "A3MNXK3VDK37SN"}], "B08X9WLKV7": [{"asin": "B08X9WLKV7", "instruction": "i need a light fixture that has glass lampshades with a grain finish", "attributes": ["glass shade", "vanity light", "pendant light", "light fixture"], "options": ["color: glass lampshades with grain finish"], "instruction_attributes": ["light fixture"], "instruction_options": ["glass lampshades with grain finish"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8N5D2NI", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08X9WLKV7", "instruction": "i need a light fixture that has glass lampshades with a grain finish", "attributes": ["glass shade", "vanity light", "pendant light", "light fixture"], "options": ["color: glass lampshades with grain finish"], "instruction_attributes": ["light fixture"], "instruction_options": ["glass lampshades with grain finish"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8N5D2NI", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SNTWCK3": [{"asin": "B09SNTWCK3", "instruction": "i want to find a high-resolution mini body camera without a memory version.", "attributes": ["high resolution", "motion detection"], "options": ["color: no memory version"], "instruction_attributes": ["high resolution"], "instruction_options": ["no memory version"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39A3CZN", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09SNTWCK3", "instruction": "i want to find a high-resolution mini body camera without a memory version.", "attributes": ["high resolution", "motion detection"], "options": ["color: no memory version"], "instruction_attributes": ["high resolution"], "instruction_options": ["no memory version"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39A3CZN", "worker_id": "A345TDMHP3DQ3G"}], "B09MRTX572": [{"asin": "B09MRTX572", "instruction": "i would like a high quality shower cap that is in a nautical dog pattern.", "attributes": ["easy carry", "high quality", "hair dye", "hair salon"], "options": ["color: dachshund sailors nautical dog pattern"], "instruction_attributes": ["high quality"], "instruction_options": ["dachshund sailors nautical dog pattern"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFMDV31", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09MRTX572", "instruction": "i would like a high quality shower cap that is in a nautical dog pattern.", "attributes": ["easy carry", "high quality", "hair dye", "hair salon"], "options": ["color: dachshund sailors nautical dog pattern"], "instruction_attributes": ["high quality"], "instruction_options": ["dachshund sailors nautical dog pattern"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFMDV31", "worker_id": "A2ECRNQ3X5LEXD"}], "B0040O4ETU": [{"asin": "B0040O4ETU", "instruction": "i would like a pack of butter cookies from trader joe.", "attributes": ["trader joe", "artificial flavors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2KJYN6", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0040O4ETU", "instruction": "i would like a pack of butter cookies from trader joe.", "attributes": ["trader joe", "artificial flavors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2KJYN6", "worker_id": "A1WS884SI0SLO4"}], "B09682W1GV": [{"asin": "B09682W1GV", "instruction": "i'm looking for a pair of stainless steel barber's scissors for cutting hair.", "attributes": ["stainless steel", "hair cutting"], "options": [""], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": [], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU67MC2", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B09682W1GV", "instruction": "i'm looking for a pair of stainless steel barber's scissors for cutting hair.", "attributes": ["stainless steel", "hair cutting"], "options": [""], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": [], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU67MC2", "worker_id": "A2JP9IKRHNLRPI"}], "B00TO54PAI": [{"asin": "B00TO54PAI", "instruction": "i am looking for a multigroom beard trimmer kit for my face.", "attributes": ["stainless steel", "hair styling"], "options": ["style: er-gb96-k"], "instruction_attributes": ["hair styling"], "instruction_options": ["er-gb96-k"], "assignment_id": "34PGFRQONZLYFAJCEF0151XGITWWJL", "worker_id": "A2KW17G25L25R8"}, {"asin": "B00TO54PAI", "instruction": "i am looking for a multigroom beard trimmer kit for my face.", "attributes": ["stainless steel", "hair styling"], "options": ["style: er-gb96-k"], "instruction_attributes": ["hair styling"], "instruction_options": ["er-gb96-k"], "assignment_id": "34PGFRQONZLYFAJCEF0151XGITWWJL", "worker_id": "A2KW17G25L25R8"}], "B08H5SYM1M": [{"asin": "B08H5SYM1M", "instruction": "i need a 6 ounce deep conditioner for dry hair that has rose oil and peach scent.", "attributes": ["sulfate free", "paraben free", "dry hair"], "options": ["scent: rose oil + peach", "size: 6 ounce (pack of 2)"], "instruction_attributes": ["dry hair"], "instruction_options": ["rose oil + peach", "6 ounce (pack of 2)"], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIEI00L", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08H5SYM1M", "instruction": "i need a 6 ounce deep conditioner for dry hair that has rose oil and peach scent.", "attributes": ["sulfate free", "paraben free", "dry hair"], "options": ["scent: rose oil + peach", "size: 6 ounce (pack of 2)"], "instruction_attributes": ["dry hair"], "instruction_options": ["rose oil + peach", "6 ounce (pack of 2)"], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIEI00L", "worker_id": "A2ECRNQ3X5LEXD"}], "B08L5SZWW5": [{"asin": "B08L5SZWW5", "instruction": "i am looking for a light brown color hair dye.", "attributes": ["hair dye", "natural hair"], "options": ["color: light brown"], "instruction_attributes": ["hair dye"], "instruction_options": ["light brown"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J8SSF6", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08L5SZWW5", "instruction": "i am looking for a light brown color hair dye.", "attributes": ["hair dye", "natural hair"], "options": ["color: light brown"], "instruction_attributes": ["hair dye"], "instruction_options": ["light brown"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J8SSF6", "worker_id": "A1Q8PPQQCWGY0D"}], "B09GFRJSKS": [{"asin": "B09GFRJSKS", "instruction": "i'm looking for a large sized sports bra that is comfortable to wear during the day.", "attributes": ["day comfort", "moisture wicking", "nylon spandex"], "options": ["color: flamingo 11", "size: large"], "instruction_attributes": ["day comfort"], "instruction_options": ["large"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB98SOH", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B09GFRJSKS", "instruction": "i'm looking for a large sized sports bra that is comfortable to wear during the day.", "attributes": ["day comfort", "moisture wicking", "nylon spandex"], "options": ["color: flamingo 11", "size: large"], "instruction_attributes": ["day comfort"], "instruction_options": ["large"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB98SOH", "worker_id": "A2JP9IKRHNLRPI"}], "B000F5X2WI": [{"asin": "B000F5X2WI", "instruction": "i'm looking for a pair of women's walking shoes that has a synthetic sole and is colored brown.", "attributes": ["lace closure", "synthetic sole"], "options": ["color: brown", "size: 10 aaa"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["brown"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDLDRH6", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B000F5X2WI", "instruction": "i'm looking to buy some walking shoes in size 11 narrow that have a lace closure and are pink multicolored.", "attributes": ["lace closure", "synthetic sole"], "options": ["color: pink multi", "size: 11 n"], "instruction_attributes": ["lace closure"], "instruction_options": ["pink multi", "11 n"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNDHTNI", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B000F5X2WI", "instruction": "i'm looking for a pair of walking shoes in size 12 wide. choose the ones with synthetic sole and in navy-microfiber color.", "attributes": ["lace closure", "synthetic sole"], "options": ["color: navy-microfiber", "size: 12 wide"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["navy-microfiber", "12 wide"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53NRKGG", "worker_id": "A3MNXK3VDK37SN"}, {"asin": "B000F5X2WI", "instruction": "i'm looking for a pair of women's walking shoes that has a synthetic sole and is colored brown.", "attributes": ["lace closure", "synthetic sole"], "options": ["color: brown", "size: 10 aaa"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["brown"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDLDRH6", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B000F5X2WI", "instruction": "i am looking for a pair of women's parquet brown walking shoes with a synthetic sole.", "attributes": ["lace closure", "synthetic sole"], "options": ["color: parquet brown", "size: 7 d"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["parquet brown"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOI7L9F", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B000F5X2WI", "instruction": "i would like a pair of size 12.5 natural fabric walking shoes with a synthetic sole.", "attributes": ["lace closure", "synthetic sole"], "options": ["color: natural fabric", "size: 12.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["natural fabric", "12.5"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8SQQ6C", "worker_id": "A1WS884SI0SLO4"}], "B07M7X7F2Q": [{"asin": "B07M7X7F2Q", "instruction": "i am looking for a chocolate colored waterproof bootie for women that has memory foam.", "attributes": ["memory foam", "rubber sole"], "options": ["color: chocolate", "size: 8.5-9"], "instruction_attributes": ["memory foam"], "instruction_options": ["chocolate"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH150QWHC", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07M7X7F2Q", "instruction": "i am looking for a chocolate colored waterproof bootie for women that has memory foam.", "attributes": ["memory foam", "rubber sole"], "options": ["color: chocolate", "size: 8.5-9"], "instruction_attributes": ["memory foam"], "instruction_options": ["chocolate"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH150QWHC", "worker_id": "A1EREKSZAA9V7B"}], "B09P77876R": [{"asin": "B09P77876R", "instruction": "i'm looking for a long sleeved men's hoodie in the size of small.", "attributes": ["slim fit", "long sleeve", "gym workout"], "options": ["color: z3-white", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP10763LI3", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B09P77876R", "instruction": "i'm looking for a long sleeved men's hoodie in the size of small.", "attributes": ["slim fit", "long sleeve", "gym workout"], "options": ["color: z3-white", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP10763LI3", "worker_id": "A2JP9IKRHNLRPI"}], "B005M4G4LI": [{"asin": "B005M4G4LI", "instruction": "i am looking for an 8 ounce bag of freeze dried strawberries and bananas", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: strawberries + bananas", "size: 8 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries + bananas", "8 ounce (pack of 1)"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNTX8HJ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B005M4G4LI", "instruction": "i am interested in some bundled size freeze-dried strawberries.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: tropical fruits", "size: strawberries 1.2 ounce & bananas 2.5 oun...", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["bundle"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7K9RDPI", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B005M4G4LI", "instruction": "i am looking for peas flavoured dried strawberries.and also choose gluten free.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: peas", "size: 1.5 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["gluten free"], "instruction_options": ["peas"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN54I8C", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B005M4G4LI", "instruction": "i want some freeze dried mangoes.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: mangoes", "size: 1.8 ounce (pack of 12)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["mangoes"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4M8YXH", "worker_id": "A19317A3X87NVM"}, {"asin": "B005M4G4LI", "instruction": "buy me some freeze dried mangoes. get the bundle.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: mangoes", "size: strawberries 1.2 ounce & roasted corn 1....", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["mangoes", "bundle"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEG88QU", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B005M4G4LI", "instruction": "i am looking for an 8 ounce bag of freeze dried strawberries and bananas", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: strawberries + bananas", "size: 8 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries + bananas", "8 ounce (pack of 1)"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNTX8HJ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B005M4G4LI", "instruction": "i need a bundle of dried mangoes that are gluten free.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: mango strips", "size: 3 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["gluten free"], "instruction_options": ["bundle"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PL9EQ6", "worker_id": "A19317A3X87NVM"}, {"asin": "B005M4G4LI", "instruction": "please find freeze-dried strawberries + peas , gluten free & vegan made by natierra nature's organic", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: strawberries + peas", "size: 1.5 ounce (pack of 12)", "style: bundle"], "instruction_attributes": ["gluten free"], "instruction_options": ["strawberries + peas"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC7PD0X", "worker_id": "A292TFDMNVS0TP"}, {"asin": "B005M4G4LI", "instruction": "help me purchase 1 pack of bundle styled freeze-dried strawberries with mango flavor.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: mangoes", "size: 2.5 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["mangoes", "2.5 ounce (pack of 1)", "bundle"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACSBHN3", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B005M4G4LI", "instruction": "i would like a gmo free 2.5 ounce pack of dried berries.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: strawberries + tropical fruits", "size: 2.5 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["gmo free"], "instruction_options": ["2.5 ounce (pack of 1)"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0VZRAH", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B005M4G4LI", "instruction": "i'm looking for gluten free it has high protein it contains healthy.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: strawberries", "size: 0.7 ounce (pack of 4)", "style: bag"], "instruction_attributes": ["gluten free"], "instruction_options": ["strawberries"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZGOCP4", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B005M4G4LI", "instruction": "i am looking for organic freeze dried blueberries that should be gluten free and vegan, 1.6 ounce (pack of 1)", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: blueberries", "size: 1.6 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried", "gluten free"], "instruction_options": ["blueberries", "1.6 ounce (pack of 1)"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788GNC5I", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B005M4G4LI", "instruction": "looking for freeze-dried strawberries that is gluten free also choose style bag", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: blueberries", "size: 1.8 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried", "gluten free"], "instruction_options": ["bag"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWT3997B", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B005M4G4LI", "instruction": "i need natierra nature's organic freeze-dried strawberries.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: strawberries", "size: 0.7 ounce (pack of 8)", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WU51AP", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B005M4G4LI", "instruction": "look for a bundle containing freeze dried strawberries and peas.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: bananas and strawberries", "size: strawberries 1.2 ounce & peas 2.2 ounce", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries 1.2 ounce & peas 2.2 ounce", "bundle"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUAA9R7", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B005M4G4LI", "instruction": "am looking for organic freeze-dried strawberries that are gluten & vegan free in a 1.2 ounce package made by natierra nature in banana flavor.", "attributes": ["freeze dried", "gmo free", "gluten free", "fat free"], "options": ["flavor: bananas", "size: 0.7 ounce (pack of 4)", "style: bundle"], "instruction_attributes": ["freeze dried", "gluten free"], "instruction_options": ["bananas"], "assignment_id": "3HOSI13XHAYM3IJTNO90AFDI6U8DDW", "worker_id": "A3RGIKEI8JS2QG"}], "B00GM4QXD6": [{"asin": "B00GM4QXD6", "instruction": "i am looking for a height adjustable faux leather barstool.", "attributes": ["height adjustable", "contemporary design", "faux leather"], "options": [""], "instruction_attributes": ["height adjustable", "faux leather"], "instruction_options": [], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKWMNDW", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00GM4QXD6", "instruction": "i am looking for a height adjustable faux leather barstool.", "attributes": ["height adjustable", "contemporary design", "faux leather"], "options": [""], "instruction_attributes": ["height adjustable", "faux leather"], "instruction_options": [], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKWMNDW", "worker_id": "A1EREKSZAA9V7B"}], "B0131L2XA4": [{"asin": "B0131L2XA4", "instruction": "i am looking for blue scrub bottoms that are made of polyester cotton and are a size 3x tall.", "attributes": ["polyester cotton", "drawstring closure"], "options": ["color: caribbean blue", "size: 3x tall"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["caribbean blue", "3x tall"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66NSFZY", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0131L2XA4", "instruction": "i am looking for blue scrub bottoms that are made of polyester cotton and are a size 3x tall.", "attributes": ["polyester cotton", "drawstring closure"], "options": ["color: caribbean blue", "size: 3x tall"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["caribbean blue", "3x tall"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66NSFZY", "worker_id": "A2ECRNQ3X5LEXD"}], "B087LSFS6R": [{"asin": "B087LSFS6R", "instruction": "i need a usb cable that is high speed and 32 ft.", "attributes": ["plug play", "high speed", "aluminum alloy", "usb port"], "options": ["size: usb 3.0 - 32ft"], "instruction_attributes": ["high speed"], "instruction_options": ["usb 3.0 - 32ft"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKHHD7B", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B087LSFS6R", "instruction": "i need a usb cable that is high speed and 32 ft.", "attributes": ["plug play", "high speed", "aluminum alloy", "usb port"], "options": ["size: usb 3.0 - 32ft"], "instruction_attributes": ["high speed"], "instruction_options": ["usb 3.0 - 32ft"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKHHD7B", "worker_id": "A2ECRNQ3X5LEXD"}], "B01HJWDQWA": [{"asin": "B01HJWDQWA", "instruction": "need a high speed hdmi cable 2 pack with 100 feet, male to female, pack of 10", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 100 feet (2-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack", "100 feet (2-pack)", "hdmi male to female"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDP8Y86", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B01HJWDQWA", "instruction": "i'm looking for 1.5 feet (10 pack) high speed hdmi cable male to male with ethernet black", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 1.5 feet (4-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["10 pack", "1.5 feet (4-pack)", "hdmi male to male"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YW090QD", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01HJWDQWA", "instruction": "i'm looking for a 10-pack, of gold-plated, high-speed hdmi male-to-male cables.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 1.5 feet (5-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack", "hdmi male to male"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVK451TV", "worker_id": "AFU00NU09CFXE"}, {"asin": "B01HJWDQWA", "instruction": "need a high speed hdmi cable 2 pack with 100 feet, male to female, pack of 10", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 100 feet (2-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack", "100 feet (2-pack)", "hdmi male to female"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDP8Y86", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B01HJWDQWA", "instruction": "i am interested in buying a hdmi male to male ethernet cable which support blu ray streaming and about 1.5 feet in length and high speed communication.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 5 pack", "size: 1.5 feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["blu ray"], "instruction_options": ["1.5 feet (single pack)", "hdmi male to male"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XT4NGI", "worker_id": "AHXHM1PQTRWIQ"}, {"asin": "B01HJWDQWA", "instruction": "i want a 2 pack of high speed hdmi male to male cables,", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 2 pack", "size: 12 feet (3-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["2 pack"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5BDGQUK", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B01HJWDQWA", "instruction": "i'm looking for a 12 feet 4 pack high speed hdmi male to female cable.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 4 pack", "size: 12 feet (single pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["4 pack", "12 feet (single pack)", "hdmi male to female"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2KZFK8", "worker_id": "A3MNXK3VDK37SN"}], "B005KIUP9I": [{"asin": "B005KIUP9I", "instruction": "i would like a alcohol free fragrance.", "attributes": ["design house", "alcohol free"], "options": [""], "instruction_attributes": ["alcohol free"], "instruction_options": [], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT06WZNUO", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B005KIUP9I", "instruction": "i am looking for a fragrance called tous baby cologne spray for kids. it is 3.4 oz and alcohol free.", "attributes": ["design house", "alcohol free"], "options": [""], "instruction_attributes": ["alcohol free"], "instruction_options": [], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LEF5I7", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B005KIUP9I", "instruction": "i would like a alcohol free fragrance.", "attributes": ["design house", "alcohol free"], "options": [""], "instruction_attributes": ["alcohol free"], "instruction_options": [], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT06WZNUO", "worker_id": "A1WS884SI0SLO4"}], "B08ZBDP1H3": [{"asin": "B08ZBDP1H3", "instruction": "i am looking for a satin brass and frosted hallway light fixtures.", "attributes": ["glass shade", "living room"], "options": ["color: satin brass | frosted", "size: 54\" linear"], "instruction_attributes": ["living room"], "instruction_options": ["satin brass | frosted"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEGUQ8Y", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08ZBDP1H3", "instruction": "i am looking for a black glass shade for my living room", "attributes": ["glass shade", "living room"], "options": ["color: black | clear", "size: 42\" linear"], "instruction_attributes": ["glass shade", "living room"], "instruction_options": ["black | clear"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UOWJ6U", "worker_id": "A13PVNQT2WWWVL"}, {"asin": "B08ZBDP1H3", "instruction": "i'm trying to find 30 inch linear sconces for my living room with frosted glass shades. the sconces should come in brushed nickel and clear colors.", "attributes": ["glass shade", "living room"], "options": ["color: brushed nickel | clear", "size: 30\" linear"], "instruction_attributes": ["glass shade", "living room"], "instruction_options": ["30\" linear"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFVMD9G", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08ZBDP1H3", "instruction": "i am looking for a satin brass and frosted hallway light fixtures.", "attributes": ["glass shade", "living room"], "options": ["color: satin brass | frosted", "size: 54\" linear"], "instruction_attributes": ["living room"], "instruction_options": ["satin brass | frosted"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEGUQ8Y", "worker_id": "A1EREKSZAA9V7B"}], "B07JVMP4DH": [{"asin": "B07JVMP4DH", "instruction": "i am looking for a dead sea skin care mud mask that is cruelty free and contains aloe vera gel.", "attributes": ["anti aging", "animal testing", "cruelty free", "long lasting", "high quality", "fine lines", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXP0O5B", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07JVMP4DH", "instruction": "i am looking for a dead sea skin care mud mask that is cruelty free and contains aloe vera gel.", "attributes": ["anti aging", "animal testing", "cruelty free", "long lasting", "high quality", "fine lines", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXP0O5B", "worker_id": "A1EREKSZAA9V7B"}], "B09QXGQMDG": [{"asin": "B09QXGQMDG", "instruction": "i would like a mint green size 6 dress that's light weight to wear.", "attributes": ["light weight", "lace closure"], "options": ["color: mint green", "size: 6"], "instruction_attributes": ["light weight"], "instruction_options": ["mint green", "6"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI37QDBF", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09QXGQMDG", "instruction": "i would like a mint green size 6 dress that's light weight to wear.", "attributes": ["light weight", "lace closure"], "options": ["color: mint green", "size: 6"], "instruction_attributes": ["light weight"], "instruction_options": ["mint green", "6"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI37QDBF", "worker_id": "A1WS884SI0SLO4"}], "B09R46FK8T": [{"asin": "B09R46FK8T", "instruction": "i want a long sleeved brown shirt that is in a medium.", "attributes": ["machine wash", "long sleeve", "short sleeve", "elastic closure", "unique design", "polyester spandex", "daily wear"], "options": ["color: b-brown", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["b-brown", "medium"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XONNGR", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09R46FK8T", "instruction": "i want a long sleeved brown shirt that is in a medium.", "attributes": ["machine wash", "long sleeve", "short sleeve", "elastic closure", "unique design", "polyester spandex", "daily wear"], "options": ["color: b-brown", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["b-brown", "medium"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XONNGR", "worker_id": "A2ECRNQ3X5LEXD"}], "B08RDHLCP2": [{"asin": "B08RDHLCP2", "instruction": "i'm looking for a color b quick release thumb screw tripod.", "attributes": ["quick release", "easy carry", "aluminum alloy"], "options": ["color: b"], "instruction_attributes": ["quick release"], "instruction_options": ["b"], "assignment_id": "31EUONYN26DZ1WA44INARVVOADDOVT", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B08RDHLCP2", "instruction": "i'm looking for a color b quick release thumb screw tripod.", "attributes": ["quick release", "easy carry", "aluminum alloy"], "options": ["color: b"], "instruction_attributes": ["quick release"], "instruction_options": ["b"], "assignment_id": "31EUONYN26DZ1WA44INARVVOADDOVT", "worker_id": "ARQ05PDNXPFDI"}], "B09N382RP7": [{"asin": "B09N382RP7", "instruction": "i need a new end table for the living room. get me a pink one.", "attributes": ["engineered wood", "storage unit", "living room"], "options": ["color: pink | white", "pattern name: shelving unit + tv stands", "size: 3-tier"], "instruction_attributes": ["living room"], "instruction_options": ["pink | white"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIAJL25", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09N382RP7", "instruction": "i need a new end table for the living room. get me a pink one.", "attributes": ["engineered wood", "storage unit", "living room"], "options": ["color: pink | white", "pattern name: shelving unit + tv stands", "size: 3-tier"], "instruction_attributes": ["living room"], "instruction_options": ["pink | white"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIAJL25", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09N382RP7", "instruction": "i'm looking for a 4-tier shelving unit and tv stand that is espresso and classic black color. also, it should have engineered wood.", "attributes": ["engineered wood", "storage unit", "living room"], "options": ["color: espresso | black classic tube", "pattern name: shelving unit + tv stands", "size: 4-tier"], "instruction_attributes": ["engineered wood"], "instruction_options": ["espresso | black classic tube", "shelving unit + tv stands", "4-tier"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC6AINJ", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B09N382RP7", "instruction": "i am looking for a engineered wood end table for living room in light blue color. also choose pattern of shelving unit + rack display shelf and 3-tier classic tube size.", "attributes": ["engineered wood", "storage unit", "living room"], "options": ["color: light blue | white", "pattern name: shelving unit + rack display shelf", "size: 3-tier classic tube"], "instruction_attributes": ["engineered wood", "living room"], "instruction_options": ["light blue | white", "3-tier classic tube"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40XZCRH", "worker_id": "A2HMEGTAFO0CS8"}], "B08Y8R82HM": [{"asin": "B08Y8R82HM", "instruction": "i am looking for a easy to use beige color shower cap.", "attributes": ["easy use", "dry hair"], "options": ["color: beige"], "instruction_attributes": ["easy use"], "instruction_options": ["beige"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZD6W0S3", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08Y8R82HM", "instruction": "i am looking for a easy to use beige color shower cap.", "attributes": ["easy use", "dry hair"], "options": ["color: beige"], "instruction_attributes": ["easy use"], "instruction_options": ["beige"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZD6W0S3", "worker_id": "A1Q8PPQQCWGY0D"}], "B08T6B1KNH": [{"asin": "B08T6B1KNH", "instruction": "i am looking for s96 pro black android 10 octa-core ip68 fast charging phone", "attributes": ["fast charging", "wireless charging"], "options": ["color: s96 pro black"], "instruction_attributes": ["fast charging"], "instruction_options": ["s96 pro black"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPEMQVU", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08T6B1KNH", "instruction": "i am looking for s96 pro black android 10 octa-core ip68 fast charging phone", "attributes": ["fast charging", "wireless charging"], "options": ["color: s96 pro black"], "instruction_attributes": ["fast charging"], "instruction_options": ["s96 pro black"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPEMQVU", "worker_id": "A258PTOZ3D2TQR"}], "B07HY8DHQ7": [{"asin": "B07HY8DHQ7", "instruction": "i want a shampoo and conditioner set for damaged hair with coconut oil, size 32 oz 2 pack", "attributes": ["coconut oil", "damaged hair"], "options": ["scent: shampoo", "size: 32 ounce, pack of 2"], "instruction_attributes": ["coconut oil", "damaged hair"], "instruction_options": ["shampoo", "32 ounce, pack of 2"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZTYNA3", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07HY8DHQ7", "instruction": "i want a shampoo and conditioner set for damaged hair with coconut oil, size 32 oz 2 pack", "attributes": ["coconut oil", "damaged hair"], "options": ["scent: shampoo", "size: 32 ounce, pack of 2"], "instruction_attributes": ["coconut oil", "damaged hair"], "instruction_options": ["shampoo", "32 ounce, pack of 2"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZTYNA3", "worker_id": "A2Y2TURT2VEYZN"}], "B093SZ5P7Z": [{"asin": "B093SZ5P7Z", "instruction": "i am looking for 2 mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1Z8BPAD", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B093SZ5P7Z", "instruction": "i am looking for 2 mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1Z8BPAD", "worker_id": "A1EREKSZAA9V7B"}], "B07D3SZWDS": [{"asin": "B07D3SZWDS", "instruction": "i'm looking for a pair of men's shoes made from rubber on the outside in the uk size six and half men's.", "attributes": ["lace closure", "synthetic sole", "rubber outsole"], "options": ["color: core black core black gum 3", "size: 6.5 m uk"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["6.5 m uk"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW9BNFG", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B07D3SZWDS", "instruction": "i'm looking for a pair of men's shoes made from rubber on the outside in the uk size six and half men's.", "attributes": ["lace closure", "synthetic sole", "rubber outsole"], "options": ["color: core black core black gum 3", "size: 6.5 m uk"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["6.5 m uk"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW9BNFG", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B07D3SZWDS", "instruction": "i am looking for rubber outsole men shoes. please choose white color.", "attributes": ["lace closure", "synthetic sole", "rubber outsole"], "options": ["color: white (ftwr white | ftwr white | gum 3)", "size: 6.5 m uk"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["white (ftwr white | ftwr white | gum 3)"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I161SH", "worker_id": "A3FG5PQHG5AH3Y"}], "B09QG9146D": [{"asin": "B09QG9146D", "instruction": "i'm looking for a leather phone wallet case compatible with the iphone 11 pro that supports wireless charging.", "attributes": ["hands free", "tempered glass", "glass screen", "wireless charging"], "options": ["color: 11 pro max-starry night", "size: for iphone 11 pro 5.8\""], "instruction_attributes": ["wireless charging"], "instruction_options": ["for iphone 11 pro 5.8\""], "assignment_id": "3HPZF4IVNX3FW186JO133U513GLYC4", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B09QG9146D", "instruction": "i would like aa sea wave phone case of the iphone 6 that supports wireless charging.", "attributes": ["hands free", "tempered glass", "glass screen", "wireless charging"], "options": ["color: xs max-sea wave", "size: for iphone 6 | 6s | 7 | 8 plus 5.5\""], "instruction_attributes": ["wireless charging"], "instruction_options": ["xs max-sea wave", "for iphone 6 | 6s | 7 | 8 plus 5.5\""], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9Y6CNGH", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09QG9146D", "instruction": "i'm looking for a leather phone wallet case compatible with the iphone 11 pro that supports wireless charging.", "attributes": ["hands free", "tempered glass", "glass screen", "wireless charging"], "options": ["color: 11 pro max-starry night", "size: for iphone 11 pro 5.8\""], "instruction_attributes": ["wireless charging"], "instruction_options": ["for iphone 11 pro 5.8\""], "assignment_id": "3HPZF4IVNX3FW186JO133U513GLYC4", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B09QG9146D", "instruction": "i need an iphone x case with wireless charging in a butterfly color.", "attributes": ["hands free", "tempered glass", "glass screen", "wireless charging"], "options": ["color: x | xs-butterfly 1", "size: for iphone 11 pro max 6.5\""], "instruction_attributes": ["wireless charging"], "instruction_options": ["x | xs-butterfly 1"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54VF83Q", "worker_id": "AVIEE6LDH0BT5"}], "B08VDN1RP9": [{"asin": "B08VDN1RP9", "instruction": "i need an easy to carry travel bag for shampoo.", "attributes": ["easy carry", "travel bottles"], "options": [""], "instruction_attributes": ["easy carry", "travel bottles"], "instruction_options": [], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXCNUJK", "worker_id": "A19317A3X87NVM"}, {"asin": "B08VDN1RP9", "instruction": "i need an easy to carry travel bag for shampoo.", "attributes": ["easy carry", "travel bottles"], "options": [""], "instruction_attributes": ["easy carry", "travel bottles"], "instruction_options": [], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXCNUJK", "worker_id": "A19317A3X87NVM"}], "B083KPNYHF": [{"asin": "B083KPNYHF", "instruction": "i'm looking for a security camera that has motion detection functionality.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXP2O5D", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B083KPNYHF", "instruction": "i'm looking for a security camera that has motion detection functionality.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXP2O5D", "worker_id": "A345TDMHP3DQ3G"}], "B07PKW544C": [{"asin": "B07PKW544C", "instruction": "i am looking for a 50 pack of white non-slip spa headbands.", "attributes": ["non slip", "beauty salon"], "options": ["color: white 50pcs"], "instruction_attributes": ["non slip"], "instruction_options": ["white 50pcs"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDLBRH4", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07PKW544C", "instruction": "i am looking for a 50 pack of white non-slip spa headbands.", "attributes": ["non slip", "beauty salon"], "options": ["color: white 50pcs"], "instruction_attributes": ["non slip"], "instruction_options": ["white 50pcs"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDLBRH4", "worker_id": "A1EREKSZAA9V7B"}], "B09SZ5K381": [{"asin": "B09SZ5K381", "instruction": "i am looking for teeth whitening toothpaste with a passion fruit flavor.", "attributes": ["teeth whitening", "fluoride free", "long lasting", "sensitive teeth", "fresh breath", "bad breath"], "options": ["color: passion fruit"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["passion fruit"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADFBVWB", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09SZ5K381", "instruction": "i am looking for teeth whitening toothpaste with a passion fruit flavor.", "attributes": ["teeth whitening", "fluoride free", "long lasting", "sensitive teeth", "fresh breath", "bad breath"], "options": ["color: passion fruit"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["passion fruit"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADFBVWB", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09SZ5K381", "instruction": "i would like some purple toothpaste that whitens teeth.", "attributes": ["teeth whitening", "fluoride free", "long lasting", "sensitive teeth", "fresh breath", "bad breath"], "options": ["color: purple"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["purple"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MLBOFV", "worker_id": "A2ECRNQ3X5LEXD"}], "B004Z4PMFA": [{"asin": "B004Z4PMFA", "instruction": "i'm looking for a long lasting 3.3 oz edt spray for men.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOUX932", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B004Z4PMFA", "instruction": "i'm looking for a long lasting 3.3 oz edt spray for men.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOUX932", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B004Z4PMFA", "instruction": "im looking for fragrance its for long lasting.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6JZEEA", "worker_id": "A16IQOX0DK14OJ"}], "B01MSHHGFJ": [{"asin": "B01MSHHGFJ", "instruction": "i need a wildlife novelty polyester cotton multi color sock which is suitable for women's 6-11", "attributes": ["cotton spandex", "polyester cotton", "polyester spandex"], "options": ["color: mulit color", "size: youth - 13, 1-5 | women's 6-11 | men's 5..."], "instruction_attributes": ["polyester cotton"], "instruction_options": ["mulit color", "youth - 13, 1-5 | women's 6-11 | men's 5..."], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI37FBD2", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01MSHHGFJ", "instruction": "i need a wildlife novelty polyester cotton multi color sock which is suitable for women's 6-11", "attributes": ["cotton spandex", "polyester cotton", "polyester spandex"], "options": ["color: mulit color", "size: youth - 13, 1-5 | women's 6-11 | men's 5..."], "instruction_attributes": ["polyester cotton"], "instruction_options": ["mulit color", "youth - 13, 1-5 | women's 6-11 | men's 5..."], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI37FBD2", "worker_id": "A258PTOZ3D2TQR"}], "B09N7JTH4Q": [{"asin": "B09N7JTH4Q", "instruction": "i want to find decorative, multi-colored vinyl dots for my living room windows. the size should be 17.7 inches by 23.6 inches.", "attributes": ["eco friendly", "living room"], "options": ["color: multi-003976", "size: 17.7wx23.6l-inch x2 pcs"], "instruction_attributes": ["living room"], "instruction_options": ["multi-003976", "17.7wx23.6l-inch x2 pcs"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW91NF6", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09N7JTH4Q", "instruction": "i want to find decorative, multi-colored vinyl dots for my living room windows. the size should be 17.7 inches by 23.6 inches.", "attributes": ["eco friendly", "living room"], "options": ["color: multi-003976", "size: 17.7wx23.6l-inch x2 pcs"], "instruction_attributes": ["living room"], "instruction_options": ["multi-003976", "17.7wx23.6l-inch x2 pcs"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW91NF6", "worker_id": "A345TDMHP3DQ3G"}], "B077SFNTSC": [{"asin": "B077SFNTSC", "instruction": "buy me ten pounds of low calorie coconut water.", "attributes": ["freeze dried", "low calorie"], "options": ["size: 160 ounce - 10 pound"], "instruction_attributes": ["low calorie"], "instruction_options": ["160 ounce - 10 pound"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADHZAHR", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B077SFNTSC", "instruction": "buy me ten pounds of low calorie coconut water.", "attributes": ["freeze dried", "low calorie"], "options": ["size: 160 ounce - 10 pound"], "instruction_attributes": ["low calorie"], "instruction_options": ["160 ounce - 10 pound"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADHZAHR", "worker_id": "AR9AU5FY1S3RO"}], "B09BNQLMMK": [{"asin": "B09BNQLMMK", "instruction": "i am looking for chocolate scent candles that is long lasting.", "attributes": ["long lasting", "soy wax"], "options": ["scent: chocolate", "size: 12 oz"], "instruction_attributes": ["long lasting"], "instruction_options": ["chocolate"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKNSSG5", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09BNQLMMK", "instruction": "i am looking for chocolate scent candles that is long lasting.", "attributes": ["long lasting", "soy wax"], "options": ["scent: chocolate", "size: 12 oz"], "instruction_attributes": ["long lasting"], "instruction_options": ["chocolate"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKNSSG5", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09BNQLMMK", "instruction": "i'm looking for soy wax for making candles.", "attributes": ["long lasting", "soy wax"], "options": ["scent: cookies & cream milk-shake", "size: 12 oz"], "instruction_attributes": ["soy wax"], "instruction_options": ["12 oz"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNEI8XI2", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09BNQLMMK", "instruction": "i'm looking for spy wax it was making for candles.", "attributes": ["long lasting", "soy wax"], "options": ["scent: salted butterscotch", "size: 12 oz"], "instruction_attributes": ["soy wax"], "instruction_options": ["salted butterscotch", "12 oz"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMX12GS", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09BNQLMMK", "instruction": "i want a 16 ounce happy new year candle made from soy.", "attributes": ["long lasting", "soy wax"], "options": ["scent: happy new year", "size: 16 oz"], "instruction_attributes": ["soy wax"], "instruction_options": ["happy new year", "16 oz"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0WUACW", "worker_id": "A1WS884SI0SLO4"}], "B09SDTNYLJ": [{"asin": "B09SDTNYLJ", "instruction": "i am looking for a high quality round head 70x185cm spa bed cover.", "attributes": ["high quality", "beauty salon"], "options": ["size: round head 70x185cm"], "instruction_attributes": ["high quality"], "instruction_options": ["round head 70x185cm"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHZIQHB", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09SDTNYLJ", "instruction": "i am looking for a high quality round head 70x185cm spa bed cover.", "attributes": ["high quality", "beauty salon"], "options": ["size: round head 70x185cm"], "instruction_attributes": ["high quality"], "instruction_options": ["round head 70x185cm"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHZIQHB", "worker_id": "A1EREKSZAA9V7B"}], "B081HZ4D87": [{"asin": "B081HZ4D87", "instruction": "i am interested in a 15.6 inch laptop carrying case that is gray.", "attributes": ["dust proof", "carrying case"], "options": ["color: gray", "size: 15.6 inch"], "instruction_attributes": ["carrying case"], "instruction_options": ["gray", "15.6 inch"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ8FWU0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B081HZ4D87", "instruction": "i am interested in a 15.6 inch laptop carrying case that is gray.", "attributes": ["dust proof", "carrying case"], "options": ["color: gray", "size: 15.6 inch"], "instruction_attributes": ["carrying case"], "instruction_options": ["gray", "15.6 inch"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ8FWU0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B081HZ4D87", "instruction": "i am looking for a gray bags, cases & sleeves \u203a sleeves for carrying case", "attributes": ["dust proof", "carrying case"], "options": ["color: gray", "size: 16 inch"], "instruction_attributes": ["carrying case"], "instruction_options": ["gray"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCKXPI6", "worker_id": "A9QRQL9CFJBI7"}], "B0863YM5B4": [{"asin": "B0863YM5B4", "instruction": "i am looking for plastic refillable spray bottles that are easy to use.", "attributes": ["easy carry", "easy use", "travel bottles"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8OY02AK", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B0863YM5B4", "instruction": "i am looking for plastic refillable spray bottles that are easy to use.", "attributes": ["easy carry", "easy use", "travel bottles"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8OY02AK", "worker_id": "A1Q8PPQQCWGY0D"}], "B08344D945": [{"asin": "B08344D945", "instruction": "i need a 7 layer bookshelf for my living room.", "attributes": ["storage unit", "living room"], "options": ["color: d", "size: 7 layer"], "instruction_attributes": ["living room"], "instruction_options": ["d", "7 layer"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PJSEQL", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08344D945", "instruction": "i need a 7 layer bookshelf for my living room.", "attributes": ["storage unit", "living room"], "options": ["color: d", "size: 7 layer"], "instruction_attributes": ["living room"], "instruction_options": ["d", "7 layer"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PJSEQL", "worker_id": "A2RBF3IIJP15IH"}], "B08K95TC4Q": [{"asin": "B08K95TC4Q", "instruction": "i'd like to buy a cellphone case for my iphone. i want a black one made out of carbon fiber.", "attributes": ["carbon fiber", "tempered glass", "wireless charging"], "options": ["color: black"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["black"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LEFPS6", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08K95TC4Q", "instruction": "i'd like to buy a cellphone case for my iphone. i want a black one made out of carbon fiber.", "attributes": ["carbon fiber", "tempered glass", "wireless charging"], "options": ["color: black"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["black"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LEFPS6", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08K95TC4Q", "instruction": "i'm looking for a carbon fiber iphone 11 case, preferably the red color.", "attributes": ["carbon fiber", "tempered glass", "wireless charging"], "options": ["color: red"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["red"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4DAI0J", "worker_id": "ARQ05PDNXPFDI"}], "B09MRVVWQ3": [{"asin": "B09MRVVWQ3", "instruction": "i want to buy a tea-themed gift basket.", "attributes": ["gift set", "gift basket", "great gift"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CAD0VV", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09MRVVWQ3", "instruction": "i want to buy a tea-themed gift basket.", "attributes": ["gift set", "gift basket", "great gift"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CAD0VV", "worker_id": "AR9AU5FY1S3RO"}], "B09QG4827R": [{"asin": "B09QG4827R", "instruction": "i'm looking for a size 40x30 inch super soft cute cartoon dinosaurs", "attributes": ["super soft", "living room"], "options": ["color: just a boy who loves dinosaurs", "size: 40x30 inch xs for airplane | pet"], "instruction_attributes": ["super soft"], "instruction_options": ["40x30 inch xs for airplane | pet"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCGBIP5", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B09QG4827R", "instruction": "i'm looking for a size 40x30 inch super soft cute cartoon dinosaurs", "attributes": ["super soft", "living room"], "options": ["color: just a boy who loves dinosaurs", "size: 40x30 inch xs for airplane | pet"], "instruction_attributes": ["super soft"], "instruction_options": ["40x30 inch xs for airplane | pet"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCGBIP5", "worker_id": "ARQ05PDNXPFDI"}], "B07THFBCJK": [{"asin": "B07THFBCJK", "instruction": "i'm looking for a black noise cancelling wireless headphones", "attributes": ["noise cancelling", "wireless bluetooth"], "options": ["color: black | yellow alcantara | black metal"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black | yellow alcantara | black metal"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40TOYFQ", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B07THFBCJK", "instruction": "i'm looking for a black noise cancelling wireless headphones", "attributes": ["noise cancelling", "wireless bluetooth"], "options": ["color: black | yellow alcantara | black metal"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black | yellow alcantara | black metal"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40TOYFQ", "worker_id": "ARQ05PDNXPFDI"}], "B01IA961HI": [{"asin": "B01IA961HI", "instruction": "i'm looking for long-lasting anti-perspirant that is unscented.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": [], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4776RU", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01IA961HI", "instruction": "i'm looking for long-lasting anti-perspirant that is unscented.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": [], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4776RU", "worker_id": "A345TDMHP3DQ3G"}], "B079WSQ7G5": [{"asin": "B079WSQ7G5", "instruction": "i want to buy a high performance s-video cable.", "attributes": ["gold plated", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q1YKD5", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B079WSQ7G5", "instruction": "i want to buy a high performance s-video cable.", "attributes": ["gold plated", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q1YKD5", "worker_id": "AR9AU5FY1S3RO"}], "B09F3N66K9": [{"asin": "B09F3N66K9", "instruction": "i need a slim fit blouse that is a 4x large and is multicolored.", "attributes": ["water resistant", "slim fit", "machine wash", "long sleeve", "drawstring closure"], "options": ["color: 96#multicolor", "size: 4x-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["96#multicolor", "4x-large"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIT89TH", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09F3N66K9", "instruction": "i need a slim fit blouse that is a 4x large and is multicolored.", "attributes": ["water resistant", "slim fit", "machine wash", "long sleeve", "drawstring closure"], "options": ["color: 96#multicolor", "size: 4x-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["96#multicolor", "4x-large"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIT89TH", "worker_id": "A2ECRNQ3X5LEXD"}], "B06XC5S67Z": [{"asin": "B06XC5S67Z", "instruction": "i need 300 alcohol free cleansing wipes", "attributes": ["alcohol free", "paraben free", "high quality"], "options": ["size: 300 pcs"], "instruction_attributes": ["alcohol free"], "instruction_options": ["300 pcs"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX2FFAR", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B06XC5S67Z", "instruction": "i need 300 alcohol free cleansing wipes", "attributes": ["alcohol free", "paraben free", "high quality"], "options": ["size: 300 pcs"], "instruction_attributes": ["alcohol free"], "instruction_options": ["300 pcs"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX2FFAR", "worker_id": "A2ECRNQ3X5LEXD"}], "B07C2DXSBQ": [{"asin": "B07C2DXSBQ", "instruction": "i am looking for long lasting dusty navy original fit jeans.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: dusty navy", "fit type: regular", "size: 44w x 30l"], "instruction_attributes": ["long lasting"], "instruction_options": ["dusty navy"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADHNHAM", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07C2DXSBQ", "instruction": "i am looking for long lasting dusty navy original fit jeans.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: dusty navy", "fit type: regular", "size: 44w x 30l"], "instruction_attributes": ["long lasting"], "instruction_options": ["dusty navy"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADHNHAM", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07C2DXSBQ", "instruction": "i need slim comfortable fit jeans", "attributes": ["long lasting", "comfortable fit"], "options": ["color: gunter", "fit type: slim", "size: 33w x 44l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["slim"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LHG0LR", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07C2DXSBQ", "instruction": "i need to shop for a comfortable fitting pair of jeans in the \"crest\" color.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: crest", "fit type: regular", "size: 52w x 34l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["crest"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KDFDPE", "worker_id": "AR9AU5FY1S3RO"}], "B09JGSN6ZN": [{"asin": "B09JGSN6ZN", "instruction": "i need a 5 pound bag of birthday candy.", "attributes": ["birthday cake", "birthday party"], "options": ["size: 5-pound"], "instruction_attributes": ["birthday party"], "instruction_options": ["5-pound"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMMTMWF", "worker_id": "A19317A3X87NVM"}, {"asin": "B09JGSN6ZN", "instruction": "i need a 5 pound bag of birthday candy.", "attributes": ["birthday cake", "birthday party"], "options": ["size: 5-pound"], "instruction_attributes": ["birthday party"], "instruction_options": ["5-pound"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMMTMWF", "worker_id": "A19317A3X87NVM"}], "B00Q7N55AY": [{"asin": "B00Q7N55AY", "instruction": "i need a toasted brown wig that is made from natural hair.", "attributes": ["synthetic hair", "natural hair", "hair growth"], "options": ["color: toasted brown"], "instruction_attributes": ["natural hair"], "instruction_options": ["toasted brown"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2O14L6", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B00Q7N55AY", "instruction": "i need a toasted brown wig that is made from natural hair.", "attributes": ["synthetic hair", "natural hair", "hair growth"], "options": ["color: toasted brown"], "instruction_attributes": ["natural hair"], "instruction_options": ["toasted brown"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2O14L6", "worker_id": "A2RBF3IIJP15IH"}], "B09MH59735": [{"asin": "B09MH59735", "instruction": "what face rollers do you have that are easy to use and for dry and sensitive skin? i would prefer it in blue.", "attributes": ["easy use", "bpa free", "high quality", "green tea", "fine lines", "dry skin", "sensitive skin"], "options": ["color: blue"], "instruction_attributes": ["easy use", "dry skin", "sensitive skin"], "instruction_options": ["blue"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09Q166", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B09MH59735", "instruction": "what face rollers do you have that are easy to use and for dry and sensitive skin? i would prefer it in blue.", "attributes": ["easy use", "bpa free", "high quality", "green tea", "fine lines", "dry skin", "sensitive skin"], "options": ["color: blue"], "instruction_attributes": ["easy use", "dry skin", "sensitive skin"], "instruction_options": ["blue"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09Q166", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B09MH59735", "instruction": "i need an easy to use red ice roller.", "attributes": ["easy use", "bpa free", "high quality", "green tea", "fine lines", "dry skin", "sensitive skin"], "options": ["color: red"], "instruction_attributes": ["easy use"], "instruction_options": ["red"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I0S1S1", "worker_id": "A19317A3X87NVM"}], "B019WW2FBS": [{"asin": "B019WW2FBS", "instruction": "i'm looking for a ceiling light fixture with a brushed nickel finish that would suit a dining room.", "attributes": ["brushed nickel", "nickel finish", "light fixture", "dining room"], "options": ["color: brushed nickel", "size: two - light", "style: ceiling fixture"], "instruction_attributes": ["brushed nickel", "nickel finish", "light fixture", "dining room"], "instruction_options": ["brushed nickel", "ceiling fixture"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHXN4Z3", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B019WW2FBS", "instruction": "i'm looking for a chrome wall light fixture with a brushed nickle finished.", "attributes": ["brushed nickel", "nickel finish", "light fixture", "dining room"], "options": ["color: chrome", "size: three - light", "style: ceiling fixture"], "instruction_attributes": ["brushed nickel", "nickel finish"], "instruction_options": ["chrome"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5L979J3", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B019WW2FBS", "instruction": "i'm looking for a ceiling light fixture with a brushed nickel finish that would suit a dining room.", "attributes": ["brushed nickel", "nickel finish", "light fixture", "dining room"], "options": ["color: brushed nickel", "size: two - light", "style: ceiling fixture"], "instruction_attributes": ["brushed nickel", "nickel finish", "light fixture", "dining room"], "instruction_options": ["brushed nickel", "ceiling fixture"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHXN4Z3", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B019WW2FBS", "instruction": "i am looking for a light fixture that is satin brass.", "attributes": ["brushed nickel", "nickel finish", "light fixture", "dining room"], "options": ["color: satin brass", "size: one light", "style: wall bath fixture"], "instruction_attributes": ["light fixture"], "instruction_options": ["satin brass"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L84B1C61", "worker_id": "A2ECRNQ3X5LEXD"}], "B08SJBD8CQ": [{"asin": "B08SJBD8CQ", "instruction": "i would like the tom ford cafe rose impression perfume that is in a travel size.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: tom ford cafe rose impression"], "instruction_attributes": ["travel size"], "instruction_options": ["tom ford cafe rose impression"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPV1PJP", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08SJBD8CQ", "instruction": "i would like the tom ford cafe rose impression perfume that is in a travel size.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: tom ford cafe rose impression"], "instruction_attributes": ["travel size"], "instruction_options": ["tom ford cafe rose impression"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPV1PJP", "worker_id": "A2ECRNQ3X5LEXD"}], "B019IOF8PK": [{"asin": "B019IOF8PK", "instruction": "i am looking for a gold plated high speed 75 foot hdmi cable.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 4 pack", "size: 8 feet (10-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["4 pack"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJF0OLZ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B019IOF8PK", "instruction": "i need a ten pack of high speed hdmi cables that are 3 feet long", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 3 feet (2 pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["10 pack", "3 feet (2 pack)"], "assignment_id": "33F859I56HNA01QBVO1K6A4GVUCBH5", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B019IOF8PK", "instruction": "i want to find a package that contains two high speed hdmi cables that are each 100 feet long.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 2 pack", "size: 100 feet (single pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["2 pack", "100 feet (single pack)", "hdmi male to female"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95DJXQ5", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B019IOF8PK", "instruction": "i am looking for a gold plated high speed 75 foot hdmi cable.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 4 pack", "size: 8 feet (10-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["4 pack"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJF0OLZ", "worker_id": "A1EREKSZAA9V7B"}], "B094JVCT3S": [{"asin": "B094JVCT3S", "instruction": "i need one 10\" computer monitor replacement power cord cable that is long lasting.", "attributes": ["blu ray", "long lasting", "high speed"], "options": ["pattern name: power cord + cable - 10 feet", "size: 10'", "style: 1-pack"], "instruction_attributes": ["long lasting"], "instruction_options": ["power cord + cable - 10 feet", "10'", "1-pack"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK88YA50", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B094JVCT3S", "instruction": "i need one 10\" computer monitor replacement power cord cable that is long lasting.", "attributes": ["blu ray", "long lasting", "high speed"], "options": ["pattern name: power cord + cable - 10 feet", "size: 10'", "style: 1-pack"], "instruction_attributes": ["long lasting"], "instruction_options": ["power cord + cable - 10 feet", "10'", "1-pack"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK88YA50", "worker_id": "A2RBF3IIJP15IH"}], "B08CDWWYZT": [{"asin": "B08CDWWYZT", "instruction": "i'm looking for mens underwear, low rise briefs size extra large.", "attributes": ["low rise", "wide leg", "machine washable", "tumble dry"], "options": ["color: 3-pack amix", "size: x-large"], "instruction_attributes": ["low rise"], "instruction_options": ["x-large"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3VZV1NW", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B08CDWWYZT", "instruction": "i'm looking for mens underwear, low rise briefs size extra large.", "attributes": ["low rise", "wide leg", "machine washable", "tumble dry"], "options": ["color: 3-pack amix", "size: x-large"], "instruction_attributes": ["low rise"], "instruction_options": ["x-large"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3VZV1NW", "worker_id": "A3EDFA8UQT5GG8"}], "B09KGP4PTN": [{"asin": "B09KGP4PTN", "instruction": "i am looking for a 4 pack of mid century wood side end tables for my living room.", "attributes": ["mid century", "engineered wood", "living room"], "options": ["size: 4-pack"], "instruction_attributes": ["mid century", "living room"], "instruction_options": ["4-pack"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9LJTV9", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09KGP4PTN", "instruction": "i am looking for a 4 pack of mid century wood side end tables for my living room.", "attributes": ["mid century", "engineered wood", "living room"], "options": ["size: 4-pack"], "instruction_attributes": ["mid century", "living room"], "instruction_options": ["4-pack"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9LJTV9", "worker_id": "A1EREKSZAA9V7B"}], "B07V2L16MB": [{"asin": "B07V2L16MB", "instruction": "i need a cell phone case with the flash design and compatible with apple phones.", "attributes": ["compatible apple", "high resolution"], "options": ["color: the flash"], "instruction_attributes": ["compatible apple"], "instruction_options": ["the flash"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMABDXL", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07V2L16MB", "instruction": "i need a cell phone case with the flash design and compatible with apple phones.", "attributes": ["compatible apple", "high resolution"], "options": ["color: the flash"], "instruction_attributes": ["compatible apple"], "instruction_options": ["the flash"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMABDXL", "worker_id": "A2RBF3IIJP15IH"}], "B07L6YH1L4": [{"asin": "B07L6YH1L4", "instruction": "i'm looking for butter pecan flavored coffee that is gluten free and comes in a pack of three 11 ounce packages.", "attributes": ["gluten free", "artificial flavors"], "options": ["flavor name: french vanilla", "size: 11 ounce (pack of 3)"], "instruction_attributes": ["gluten free"], "instruction_options": ["11 ounce (pack of 3)"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0R1W5X", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B07L6YH1L4", "instruction": "i'm looking for butter pecan flavored coffee that is gluten free and comes in a pack of three 11 ounce packages.", "attributes": ["gluten free", "artificial flavors"], "options": ["flavor name: french vanilla", "size: 11 ounce (pack of 3)"], "instruction_attributes": ["gluten free"], "instruction_options": ["11 ounce (pack of 3)"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0R1W5X", "worker_id": "A2JP9IKRHNLRPI"}], "B09KRS2GPJ": [{"asin": "B09KRS2GPJ", "instruction": "i'm hoping to find non-toxic false teeth that are made out of high quality soft silicone.", "attributes": ["non toxic", "high quality"], "options": [""], "instruction_attributes": ["non toxic", "high quality"], "instruction_options": [], "assignment_id": "39JEC75375BYS7D1EDEJWV17LZACV0", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09KRS2GPJ", "instruction": "i'm hoping to find non-toxic false teeth that are made out of high quality soft silicone.", "attributes": ["non toxic", "high quality"], "options": [""], "instruction_attributes": ["non toxic", "high quality"], "instruction_options": [], "assignment_id": "39JEC75375BYS7D1EDEJWV17LZACV0", "worker_id": "A345TDMHP3DQ3G"}], "B07RP5TQB4": [{"asin": "B07RP5TQB4", "instruction": "help me find a 2 pack of stone grey faux leather throw pillows that are 18x18 inches.", "attributes": ["faux leather", "living room"], "options": ["color: stone grey pack of 2"], "instruction_attributes": ["faux leather"], "instruction_options": ["stone grey pack of 2"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU29RL0", "worker_id": "A2DDPSXH2X96RF"}, {"asin": "B07RP5TQB4", "instruction": "help me find a 2 pack of stone grey faux leather throw pillows that are 18x18 inches.", "attributes": ["faux leather", "living room"], "options": ["color: stone grey pack of 2"], "instruction_attributes": ["faux leather"], "instruction_options": ["stone grey pack of 2"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU29RL0", "worker_id": "A2DDPSXH2X96RF"}], "B086H3TL7M": [{"asin": "B086H3TL7M", "instruction": "i am looking for a waterproof ricoh camera with optical zoom.", "attributes": ["high performance", "high speed", "optical zoom"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3EO896NRA756NTFIJAVQIHQHEYCJTE", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B086H3TL7M", "instruction": "i am looking for a waterproof ricoh camera with optical zoom.", "attributes": ["high performance", "high speed", "optical zoom"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3EO896NRA756NTFIJAVQIHQHEYCJTE", "worker_id": "A1EREKSZAA9V7B"}], "B09MLSM7Z5": [{"asin": "B09MLSM7Z5", "instruction": "i am interested in a dust proof telescope.", "attributes": ["dust proof", "bird watching"], "options": [""], "instruction_attributes": ["dust proof"], "instruction_options": [], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB9SOSX", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09MLSM7Z5", "instruction": "i am interested in a dust proof telescope.", "attributes": ["dust proof", "bird watching"], "options": [""], "instruction_attributes": ["dust proof"], "instruction_options": [], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB9SOSX", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BNCVRJT": [{"asin": "B08BNCVRJT", "instruction": "i need 2 bottles of 8fl oz vermont maple salted bourbon caramel sauce that is gluten free.", "attributes": ["gluten free", "natural ingredients", "gift set"], "options": ["flavor name: vermont maple", "size: 8 fl oz (pack of 2)"], "instruction_attributes": ["gluten free"], "instruction_options": ["vermont maple", "8 fl oz (pack of 2)"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI15T3R", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08BNCVRJT", "instruction": "i need 2 bottles of 8fl oz vermont maple salted bourbon caramel sauce that is gluten free.", "attributes": ["gluten free", "natural ingredients", "gift set"], "options": ["flavor name: vermont maple", "size: 8 fl oz (pack of 2)"], "instruction_attributes": ["gluten free"], "instruction_options": ["vermont maple", "8 fl oz (pack of 2)"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI15T3R", "worker_id": "A2RBF3IIJP15IH"}], "B098SLBBBC": [{"asin": "B098SLBBBC", "instruction": "i'm looking for a refillable lipstick bottle that is easy to carry and non-toxic.", "attributes": ["eco friendly", "non toxic", "easy carry", "high quality"], "options": [""], "instruction_attributes": ["non toxic", "easy carry"], "instruction_options": [], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A2168THJ", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B098SLBBBC", "instruction": "i'm looking for a refillable lipstick bottle that is easy to carry and non-toxic.", "attributes": ["eco friendly", "non toxic", "easy carry", "high quality"], "options": [""], "instruction_attributes": ["non toxic", "easy carry"], "instruction_options": [], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A2168THJ", "worker_id": "A2JP9IKRHNLRPI"}], "B08HZBXBV1": [{"asin": "B08HZBXBV1", "instruction": "i am looking for a black iphone 12 max case with wireless charging.", "attributes": ["carbon fiber", "wireless charging"], "options": ["color: black 12 pro max"], "instruction_attributes": ["wireless charging"], "instruction_options": ["black 12 pro max"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLPXDAC", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08HZBXBV1", "instruction": "i am looking for a black iphone 12 max case with wireless charging.", "attributes": ["carbon fiber", "wireless charging"], "options": ["color: black 12 pro max"], "instruction_attributes": ["wireless charging"], "instruction_options": ["black 12 pro max"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLPXDAC", "worker_id": "A1EREKSZAA9V7B"}], "B08LMM4SSF": [{"asin": "B08LMM4SSF", "instruction": "i'm looking for soft bed sheets queen size for twin bed in warm taupe", "attributes": ["queen size", "machine washable"], "options": ["color: warm taupe", "size: twin | twin xl"], "instruction_attributes": ["queen size"], "instruction_options": ["warm taupe", "twin | twin xl"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1F93UP", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B08LMM4SSF", "instruction": "i'm looking for soft bed sheets queen size for twin bed in warm taupe", "attributes": ["queen size", "machine washable"], "options": ["color: warm taupe", "size: twin | twin xl"], "instruction_attributes": ["queen size"], "instruction_options": ["warm taupe", "twin | twin xl"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1F93UP", "worker_id": "A2Y2TURT2VEYZN"}], "B09QLYFC3G": [{"asin": "B09QLYFC3G", "instruction": "i'm looking for an orange teeth whitening nhpro enamel care.", "attributes": ["teeth whitening", "long lasting", "natural ingredients", "fresh breath", "sensitive teeth", "bad breath"], "options": ["color: orange"], "instruction_attributes": ["teeth whitening", "fresh breath"], "instruction_options": ["orange"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI113TX", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B09QLYFC3G", "instruction": "i'm looking for an orange teeth whitening nhpro enamel care.", "attributes": ["teeth whitening", "long lasting", "natural ingredients", "fresh breath", "sensitive teeth", "bad breath"], "options": ["color: orange"], "instruction_attributes": ["teeth whitening", "fresh breath"], "instruction_options": ["orange"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI113TX", "worker_id": "ARQ05PDNXPFDI"}], "B084DSPNV5": [{"asin": "B084DSPNV5", "instruction": "i would like some long lasting anti perspirant.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": [], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPWCJ0KM", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B084DSPNV5", "instruction": "i would like some long lasting anti perspirant.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": [], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPWCJ0KM", "worker_id": "A1WS884SI0SLO4"}], "B09MCWDLRL": [{"asin": "B09MCWDLRL", "instruction": "buy me an easy to assemble sideboard for the dining room in antique white, please.", "attributes": ["easy assemble", "storage space", "dining room"], "options": ["color: antique white-5"], "instruction_attributes": ["easy assemble", "dining room"], "instruction_options": ["antique white-5"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907P0UAB", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09MCWDLRL", "instruction": "buy me an easy to assemble sideboard for the dining room in antique white, please.", "attributes": ["easy assemble", "storage space", "dining room"], "options": ["color: antique white-5"], "instruction_attributes": ["easy assemble", "dining room"], "instruction_options": ["antique white-5"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907P0UAB", "worker_id": "AR9AU5FY1S3RO"}], "B09875CD94": [{"asin": "B09875CD94", "instruction": "i am looking for black folding tables that are easy to clean and are 40 by 30.", "attributes": ["wall mounted", "heavy duty", "space saving", "easy clean", "easy assemble", "solid wood"], "options": ["color: black", "size: 40*30cm | 16*12in"], "instruction_attributes": ["easy clean"], "instruction_options": ["black", "40*30cm | 16*12in"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1T6H2Q", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09875CD94", "instruction": "i am looking for black folding tables that are easy to clean and are 40 by 30.", "attributes": ["wall mounted", "heavy duty", "space saving", "easy clean", "easy assemble", "solid wood"], "options": ["color: black", "size: 40*30cm | 16*12in"], "instruction_attributes": ["easy clean"], "instruction_options": ["black", "40*30cm | 16*12in"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1T6H2Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LK4G5G2": [{"asin": "B09LK4G5G2", "instruction": "what sweet and salty hazelnuts do you have that have no artificial flavors or colors?", "attributes": ["non gmo", "artificial flavors", "artificial colors", "quality ingredients"], "options": ["flavor name: sweet & salty hazelnuts", "size: 9 oz"], "instruction_attributes": ["artificial flavors", "artificial colors"], "instruction_options": ["sweet & salty hazelnuts"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L48WRQP", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B09LK4G5G2", "instruction": "what sweet and salty hazelnuts do you have that have no artificial flavors or colors?", "attributes": ["non gmo", "artificial flavors", "artificial colors", "quality ingredients"], "options": ["flavor name: sweet & salty hazelnuts", "size: 9 oz"], "instruction_attributes": ["artificial flavors", "artificial colors"], "instruction_options": ["sweet & salty hazelnuts"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L48WRQP", "worker_id": "A3EDFA8UQT5GG8"}], "B09NF77VZ8": [{"asin": "B09NF77VZ8", "instruction": "i need a red t-shirt that has a classic fit in a size 2t for men.", "attributes": ["officially licensed", "wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: red", "fit type: men", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["red", "men", "2t"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EBFSW1", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09NF77VZ8", "instruction": "i need a red t-shirt that has a classic fit in a size 2t for men.", "attributes": ["officially licensed", "wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: red", "fit type: men", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["red", "men", "2t"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EBFSW1", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PDPSL8F": [{"asin": "B09PDPSL8F", "instruction": "i need 10 inch hair extensions that are a medium brown.", "attributes": ["non toxic", "hair extensions", "natural hair", "hair loss"], "options": ["color: #p4 | 27 medium brown | dark blonde", "size: 10 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#p4 | 27 medium brown | dark blonde", "10 inch (pack of 1)"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP6VCOG", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09PDPSL8F", "instruction": "i need 10 inch hair extensions that are a medium brown.", "attributes": ["non toxic", "hair extensions", "natural hair", "hair loss"], "options": ["color: #p4 | 27 medium brown | dark blonde", "size: 10 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#p4 | 27 medium brown | dark blonde", "10 inch (pack of 1)"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP6VCOG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08NK8K3RD": [{"asin": "B08NK8K3RD", "instruction": "i need a madecassoside and 1.69 fl oz of moisture gel cream for sensitive skin.", "attributes": ["easy apply", "dry skin", "sensitive skin"], "options": ["size: 1.69 fl oz (pack of 1)", "style: madecassoside (2x strength)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["1.69 fl oz (pack of 1)", "madecassoside (2x strength)"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MJHFOO", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08NK8K3RD", "instruction": "i need a madecassoside and 1.69 fl oz of moisture gel cream for sensitive skin.", "attributes": ["easy apply", "dry skin", "sensitive skin"], "options": ["size: 1.69 fl oz (pack of 1)", "style: madecassoside (2x strength)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["1.69 fl oz (pack of 1)", "madecassoside (2x strength)"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MJHFOO", "worker_id": "A2RBF3IIJP15IH"}], "B01JA8TU58": [{"asin": "B01JA8TU58", "instruction": "i want to find one red contemporary barstool that would be suitable for my dining room.", "attributes": ["contemporary style", "dining room"], "options": ["color: red", "size: 1 pack"], "instruction_attributes": ["contemporary style", "dining room"], "instruction_options": ["red", "1 pack"], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q2ZIIC", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01JA8TU58", "instruction": "i want to find one red contemporary barstool that would be suitable for my dining room.", "attributes": ["contemporary style", "dining room"], "options": ["color: red", "size: 1 pack"], "instruction_attributes": ["contemporary style", "dining room"], "instruction_options": ["red", "1 pack"], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q2ZIIC", "worker_id": "A345TDMHP3DQ3G"}], "B007QFQJO8": [{"asin": "B007QFQJO8", "instruction": "i need a xtreamer that plays blu ray discs.", "attributes": ["blu ray", "aaa batteries"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYZW4J4", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B007QFQJO8", "instruction": "i need a xtreamer that plays blu ray discs.", "attributes": ["blu ray", "aaa batteries"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYZW4J4", "worker_id": "A2RBF3IIJP15IH"}], "B07NDJHPMJ": [{"asin": "B07NDJHPMJ", "instruction": "i'm looking for a 1 pound package of low calorie nacho cheese dip.", "attributes": ["gluten free", "low calorie", "high fructose"], "options": ["size: 1 pound (pack of 1)", "style: ghost pepper"], "instruction_attributes": ["low calorie"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8T5ZPB", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B07NDJHPMJ", "instruction": "i'm looking for a 1 pound package of low calorie nacho cheese dip.", "attributes": ["gluten free", "low calorie", "high fructose"], "options": ["size: 1 pound (pack of 1)", "style: ghost pepper"], "instruction_attributes": ["low calorie"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8T5ZPB", "worker_id": "A2JP9IKRHNLRPI"}], "B08SSPPL58": [{"asin": "B08SSPPL58", "instruction": "i am looking for size 10 regular fit adidas harden stepback 2.0 basketball shoes.", "attributes": ["regular fit", "rubber sole"], "options": ["color: black | shock pink | team solar yellow", "size: 10 women | 10 men"], "instruction_attributes": ["regular fit"], "instruction_options": ["10 women | 10 men"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTKBO6R", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08SSPPL58", "instruction": "i am looking for size 10 regular fit adidas harden stepback 2.0 basketball shoes.", "attributes": ["regular fit", "rubber sole"], "options": ["color: black | shock pink | team solar yellow", "size: 10 women | 10 men"], "instruction_attributes": ["regular fit"], "instruction_options": ["10 women | 10 men"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTKBO6R", "worker_id": "A1EREKSZAA9V7B"}], "B09QQBHZTH": [{"asin": "B09QQBHZTH", "instruction": "i am looking for a blue, long lasting case for a galaxy s22 5g with wireless charging and tempered glass.", "attributes": ["non slip", "long lasting", "tempered glass", "glass screen", "wireless charging"], "options": ["color: blue"], "instruction_attributes": ["long lasting", "tempered glass", "wireless charging"], "instruction_options": ["blue"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA2LR8P", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09QQBHZTH", "instruction": "i am looking for a blue, long lasting case for a galaxy s22 5g with wireless charging and tempered glass.", "attributes": ["non slip", "long lasting", "tempered glass", "glass screen", "wireless charging"], "options": ["color: blue"], "instruction_attributes": ["long lasting", "tempered glass", "wireless charging"], "instruction_options": ["blue"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA2LR8P", "worker_id": "A1EREKSZAA9V7B"}], "B08LTSPXHJ": [{"asin": "B08LTSPXHJ", "instruction": "i'm looking for a skin & glow bundle gift set that is cruelty free and fragrance free.", "attributes": ["cruelty free", "fragrance free", "high quality", "sensitive skin"], "options": ["color: skin & glow bundle"], "instruction_attributes": ["cruelty free", "fragrance free"], "instruction_options": ["skin & glow bundle"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49XGX4Q", "worker_id": "A3MNXK3VDK37SN"}, {"asin": "B08LTSPXHJ", "instruction": "i'm looking for a skin & glow bundle gift set that is cruelty free and fragrance free.", "attributes": ["cruelty free", "fragrance free", "high quality", "sensitive skin"], "options": ["color: skin & glow bundle"], "instruction_attributes": ["cruelty free", "fragrance free"], "instruction_options": ["skin & glow bundle"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49XGX4Q", "worker_id": "A3MNXK3VDK37SN"}], "B09GVTRLYP": [{"asin": "B09GVTRLYP", "instruction": "i would like a 12\" x 16\" in three pieces blackleaf poster that's ready to hang in my living room.", "attributes": ["ready hang", "printing technology", "living room", "dining room"], "options": ["color: sd2-blackleaf-3", "size: 12\" x 16\" x 3 pcs"], "instruction_attributes": ["ready hang"], "instruction_options": ["sd2-blackleaf-3", "12\" x 16\" x 3 pcs"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCI4ZABG", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09GVTRLYP", "instruction": "i would like a 12\" x 16\" in three pieces blackleaf poster that's ready to hang in my living room.", "attributes": ["ready hang", "printing technology", "living room", "dining room"], "options": ["color: sd2-blackleaf-3", "size: 12\" x 16\" x 3 pcs"], "instruction_attributes": ["ready hang"], "instruction_options": ["sd2-blackleaf-3", "12\" x 16\" x 3 pcs"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCI4ZABG", "worker_id": "A1WS884SI0SLO4"}], "B07D6DKG5H": [{"asin": "B07D6DKG5H", "instruction": "get a 2 pack of all natural steak seasoning, please.", "attributes": ["non gmo", "gluten free", "natural ingredients"], "options": ["size: 2 pack"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["2 pack"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L48HQR9", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07D6DKG5H", "instruction": "get a 2 pack of all natural steak seasoning, please.", "attributes": ["non gmo", "gluten free", "natural ingredients"], "options": ["size: 2 pack"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["2 pack"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L48HQR9", "worker_id": "AR9AU5FY1S3RO"}], "B09GPF89W1": [{"asin": "B09GPF89W1", "instruction": "i need a kids toothbrush that is orange and good for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: orange"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["orange"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN63C5G8", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09GPF89W1", "instruction": "i need a kids toothbrush that is orange and good for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: orange"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["orange"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN63C5G8", "worker_id": "A2RBF3IIJP15IH"}], "B07TKH5FP2": [{"asin": "B07TKH5FP2", "instruction": "i am looking for a classic fit heather blue color t-shirt.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: heather blue", "fit type: men", "size: x-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["heather blue"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCG9YSM7", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07TKH5FP2", "instruction": "i am looking for a classic fit heather blue color t-shirt.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: heather blue", "fit type: men", "size: x-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["heather blue"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCG9YSM7", "worker_id": "A1Q8PPQQCWGY0D"}], "B09LCNBQT5": [{"asin": "B09LCNBQT5", "instruction": "i am looking for toothbrushes for children aged 6-12 that are pink and easy to use.", "attributes": ["teeth whitening", "easy use"], "options": ["color: a04#pink duck", "size: aged 6-12"], "instruction_attributes": ["easy use"], "instruction_options": ["a04#pink duck", "aged 6-12"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUT8FF19", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09LCNBQT5", "instruction": "i am looking for toothbrushes for children aged 6-12 that are pink and easy to use.", "attributes": ["teeth whitening", "easy use"], "options": ["color: a04#pink duck", "size: aged 6-12"], "instruction_attributes": ["easy use"], "instruction_options": ["a04#pink duck", "aged 6-12"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUT8FF19", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GN2JDRN": [{"asin": "B07GN2JDRN", "instruction": "i need to get the 3 pack of trader joe's gluten free falafel mix.", "attributes": ["trader joe", "gluten free"], "options": ["size: pack of 3"], "instruction_attributes": ["trader joe", "gluten free"], "instruction_options": ["pack of 3"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2YB6GD", "worker_id": "A2DDPSXH2X96RF"}, {"asin": "B07GN2JDRN", "instruction": "i need to get the 3 pack of trader joe's gluten free falafel mix.", "attributes": ["trader joe", "gluten free"], "options": ["size: pack of 3"], "instruction_attributes": ["trader joe", "gluten free"], "instruction_options": ["pack of 3"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2YB6GD", "worker_id": "A2DDPSXH2X96RF"}], "B09HQSGH1Z": [{"asin": "B09HQSGH1Z", "instruction": "i would like a pink toothbrush that is easy to use.", "attributes": ["easy use", "oral hygiene"], "options": ["color: pink"], "instruction_attributes": ["easy use"], "instruction_options": ["pink"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2OR4LW", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09HQSGH1Z", "instruction": "i would like a pink toothbrush that is easy to use.", "attributes": ["easy use", "oral hygiene"], "options": ["color: pink"], "instruction_attributes": ["easy use"], "instruction_options": ["pink"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2OR4LW", "worker_id": "A2ECRNQ3X5LEXD"}], "B07VQ6PG4T": [{"asin": "B07VQ6PG4T", "instruction": "i need white rajlinen 100% blackout curtains in size w52\" x l54\" for the living room.", "attributes": ["high density", "machine washable", "living room"], "options": ["color: white", "size: w52\" x l54\""], "instruction_attributes": ["living room"], "instruction_options": ["white", "w52\" x l54\""], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC1RINQ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07VQ6PG4T", "instruction": "i need white rajlinen 100% blackout curtains in size w52\" x l54\" for the living room.", "attributes": ["high density", "machine washable", "living room"], "options": ["color: white", "size: w52\" x l54\""], "instruction_attributes": ["living room"], "instruction_options": ["white", "w52\" x l54\""], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC1RINQ", "worker_id": "A2RBF3IIJP15IH"}], "B08NR8DH4S": [{"asin": "B08NR8DH4S", "instruction": "i would like a 16 pack variety box of low sugar cookies.", "attributes": ["artificial ingredients", "non gmo", "low carb", "grass fed", "low sugar", "gluten free", "keto friendly"], "options": ["flavor name: variety box", "size: 16 count"], "instruction_attributes": ["low sugar"], "instruction_options": ["variety box", "16 count"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4CZL80", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08NR8DH4S", "instruction": "i would like a 16 pack variety box of low sugar cookies.", "attributes": ["artificial ingredients", "non gmo", "low carb", "grass fed", "low sugar", "gluten free", "keto friendly"], "options": ["flavor name: variety box", "size: 16 count"], "instruction_attributes": ["low sugar"], "instruction_options": ["variety box", "16 count"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4CZL80", "worker_id": "A1WS884SI0SLO4"}], "B01ETZ7KAE": [{"asin": "B01ETZ7KAE", "instruction": "i am looking for semi-permanent hair color that is easy to apply.", "attributes": ["easy apply", "eco friendly", "cruelty free", "long lasting", "easy use", "coconut oil", "natural ingredients", "permanent hair"], "options": [""], "instruction_attributes": ["easy apply"], "instruction_options": [], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPJFSY0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01ETZ7KAE", "instruction": "i am looking for semi-permanent hair color that is easy to apply.", "attributes": ["easy apply", "eco friendly", "cruelty free", "long lasting", "easy use", "coconut oil", "natural ingredients", "permanent hair"], "options": [""], "instruction_attributes": ["easy apply"], "instruction_options": [], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPJFSY0", "worker_id": "A1EREKSZAA9V7B"}], "B07PXT3SLH": [{"asin": "B07PXT3SLH", "instruction": "i need a men's blue t-shirt that is compatible with the machine washer.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: royal blue", "fit type: men", "size: x-small"], "instruction_attributes": ["machine wash"], "instruction_options": ["royal blue", "men"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYGSQLJ", "worker_id": "A19317A3X87NVM"}, {"asin": "B07PXT3SLH", "instruction": "i need a men's blue t-shirt that is compatible with the machine washer.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: royal blue", "fit type: men", "size: x-small"], "instruction_attributes": ["machine wash"], "instruction_options": ["royal blue", "men"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYGSQLJ", "worker_id": "A19317A3X87NVM"}], "B07FXVCZMC": [{"asin": "B07FXVCZMC", "instruction": "looking for a ultra hd satellite, swmdish long mast, 4 piece", "attributes": ["ultra hd", "coaxial cable"], "options": ["color: swmdish long mast", "size: 4 piece"], "instruction_attributes": ["ultra hd"], "instruction_options": ["swmdish long mast", "4 piece"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647743HL", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07FXVCZMC", "instruction": "i am looking for one ultra hd satellite dish package that includes a coaxial cable and a low profile short mast.", "attributes": ["ultra hd", "coaxial cable"], "options": ["color: swm5 rv kit", "size: 1 piece"], "instruction_attributes": ["ultra hd", "coaxial cable"], "instruction_options": ["1 piece"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMK9YVGQ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07FXVCZMC", "instruction": "looking for a ultra hd satellite, swmdish long mast, 4 piece", "attributes": ["ultra hd", "coaxial cable"], "options": ["color: swmdish long mast", "size: 4 piece"], "instruction_attributes": ["ultra hd"], "instruction_options": ["swmdish long mast", "4 piece"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647743HL", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07FXVCZMC", "instruction": "i am looking for 2000 feet of ultra hd coaxial cable.", "attributes": ["ultra hd", "coaxial cable"], "options": ["color: kit rb swm5 low profile", "size: 2000ft"], "instruction_attributes": ["ultra hd", "coaxial cable"], "instruction_options": ["2000ft"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANKJSX6", "worker_id": "A1EREKSZAA9V7B"}], "B0855G7TG4": [{"asin": "B0855G7TG4", "instruction": "i need a meadow faux wrap midi dress in size 10 that is easy to dry clean.", "attributes": ["imported zipper", "polyester spandex", "dry clean"], "options": ["color: meadow", "size: 10"], "instruction_attributes": ["dry clean"], "instruction_options": ["meadow", "10"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZETA7F", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B0855G7TG4", "instruction": "i need a meadow faux wrap midi dress in size 10 that is easy to dry clean.", "attributes": ["imported zipper", "polyester spandex", "dry clean"], "options": ["color: meadow", "size: 10"], "instruction_attributes": ["dry clean"], "instruction_options": ["meadow", "10"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZETA7F", "worker_id": "A2RBF3IIJP15IH"}], "B09M41RMB2": [{"asin": "B09M41RMB2", "instruction": "i would like a high quality blue face kit to help with fine lines and wrinkles.", "attributes": ["bpa free", "high quality", "green tea", "fine lines", "sensitive skin"], "options": ["color: blue"], "instruction_attributes": ["high quality", "fine lines"], "instruction_options": ["blue"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT34SJHF", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09M41RMB2", "instruction": "i would like a high quality blue face kit to help with fine lines and wrinkles.", "attributes": ["bpa free", "high quality", "green tea", "fine lines", "sensitive skin"], "options": ["color: blue"], "instruction_attributes": ["high quality", "fine lines"], "instruction_options": ["blue"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT34SJHF", "worker_id": "A1WS884SI0SLO4"}], "B007EP9APA": [{"asin": "B007EP9APA", "instruction": "i need a bottle of marc anthony argan oil.", "attributes": ["sulfate free", "argan oil"], "options": [""], "instruction_attributes": ["argan oil"], "instruction_options": [], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXCUJUG", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B007EP9APA", "instruction": "i need a bottle of marc anthony argan oil.", "attributes": ["sulfate free", "argan oil"], "options": [""], "instruction_attributes": ["argan oil"], "instruction_options": [], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXCUJUG", "worker_id": "A2RBF3IIJP15IH"}], "B01M2AR64E": [{"asin": "B01M2AR64E", "instruction": "i need a ashley bolanburg display cabinet that requires assembly.", "attributes": ["white item", "assembly required", "white finish", "engineered wood", "dining room"], "options": [""], "instruction_attributes": ["assembly required"], "instruction_options": [], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZU9JZ5", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B01M2AR64E", "instruction": "i need a ashley bolanburg display cabinet that requires assembly.", "attributes": ["white item", "assembly required", "white finish", "engineered wood", "dining room"], "options": [""], "instruction_attributes": ["assembly required"], "instruction_options": [], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZU9JZ5", "worker_id": "A2RBF3IIJP15IH"}], "B09PYDY17D": [{"asin": "B09PYDY17D", "instruction": "i'm interested in some machine-washable, men's x-large, low-rise briefs in black with an elastic waistband.", "attributes": ["low rise", "machine wash", "soft material", "elastic waistband"], "options": ["color: black", "size: x-large"], "instruction_attributes": ["low rise", "machine wash", "elastic waistband"], "instruction_options": ["black", "x-large"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602QG95K", "worker_id": "AFU00NU09CFXE"}, {"asin": "B09PYDY17D", "instruction": "i'm interested in some machine-washable, men's x-large, low-rise briefs in black with an elastic waistband.", "attributes": ["low rise", "machine wash", "soft material", "elastic waistband"], "options": ["color: black", "size: x-large"], "instruction_attributes": ["low rise", "machine wash", "elastic waistband"], "instruction_options": ["black", "x-large"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602QG95K", "worker_id": "AFU00NU09CFXE"}], "B01KGEL9KE": [{"asin": "B01KGEL9KE", "instruction": "i need a stainless steel adjustable barstool", "attributes": ["stainless steel", "steel frame"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSG48BF", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01KGEL9KE", "instruction": "i need a stainless steel adjustable barstool", "attributes": ["stainless steel", "steel frame"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSG48BF", "worker_id": "A258PTOZ3D2TQR"}], "B07H2Z173V": [{"asin": "B07H2Z173V", "instruction": "i would like a king size wine red pillowcase with exquisite workmanship.", "attributes": ["queen size", "exquisite workmanship"], "options": ["color: wine red", "size: king (20\" x 40\")"], "instruction_attributes": ["exquisite workmanship"], "instruction_options": ["wine red", "king (20\" x 40\")"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOLG9MK", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07H2Z173V", "instruction": "i would like a king size wine red pillowcase with exquisite workmanship.", "attributes": ["queen size", "exquisite workmanship"], "options": ["color: wine red", "size: king (20\" x 40\")"], "instruction_attributes": ["exquisite workmanship"], "instruction_options": ["wine red", "king (20\" x 40\")"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOLG9MK", "worker_id": "A1WS884SI0SLO4"}], "B00O12MBGO": [{"asin": "B00O12MBGO", "instruction": "looking for freeze-dried raw flavor beef size 3.5 oz grain free", "attributes": ["freeze dried", "wild caught", "grain free"], "options": ["flavor name: beef", "size: 3.5 ounce (pack of 1)"], "instruction_attributes": ["freeze dried", "grain free"], "instruction_options": ["beef", "3.5 ounce (pack of 1)"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3A96NX", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B00O12MBGO", "instruction": "can you find me freeze dried, grain free dog food? i want the single pack in 3.5 ounces.", "attributes": ["freeze dried", "wild caught", "grain free"], "options": ["flavor name: salmon,cod", "size: 3.5 ounce (pack of 1)"], "instruction_attributes": ["freeze dried", "grain free"], "instruction_options": ["3.5 ounce (pack of 1)"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTAJ9NB", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B00O12MBGO", "instruction": "looking for freeze-dried raw flavor beef size 3.5 oz grain free", "attributes": ["freeze dried", "wild caught", "grain free"], "options": ["flavor name: beef", "size: 3.5 ounce (pack of 1)"], "instruction_attributes": ["freeze dried", "grain free"], "instruction_options": ["beef", "3.5 ounce (pack of 1)"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3A96NX", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B00O12MBGO", "instruction": "i want stella & chewy's freeze dried turkey.", "attributes": ["freeze dried", "wild caught", "grain free"], "options": ["flavor name: turkey", "size: 1.12 pound (pack of 1)"], "instruction_attributes": ["freeze dried"], "instruction_options": ["turkey"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MC49YZH", "worker_id": "A2RBF3IIJP15IH"}], "B08R7W464K": [{"asin": "B08R7W464K", "instruction": "i need a console table for the living room. look for one in oak brown.", "attributes": ["wood finish", "living room"], "options": ["color: oak brown", "style: chest"], "instruction_attributes": ["living room"], "instruction_options": ["oak brown"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGLSYIT", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08R7W464K", "instruction": "i need a console table for the living room. look for one in oak brown.", "attributes": ["wood finish", "living room"], "options": ["color: oak brown", "style: chest"], "instruction_attributes": ["living room"], "instruction_options": ["oak brown"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGLSYIT", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08R7W464K", "instruction": "i am looking for a console table with a wood finish that is acacia brown.", "attributes": ["wood finish", "living room"], "options": ["color: acacia brown", "style: acacia brown"], "instruction_attributes": ["wood finish"], "instruction_options": ["acacia brown", "acacia brown"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EGO1BQ", "worker_id": "A114NK7T5673GK"}], "B000JHHEOE": [{"asin": "B000JHHEOE", "instruction": "get me some machine washable stonewash jeans.", "attributes": ["machine wash", "relaxed fit", "button closure"], "options": ["color: stonewash", "size: 42w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["stonewash"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YNST8E", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B000JHHEOE", "instruction": "get me some machine washable stonewash jeans.", "attributes": ["machine wash", "relaxed fit", "button closure"], "options": ["color: stonewash", "size: 42w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["stonewash"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YNST8E", "worker_id": "AR9AU5FY1S3RO"}], "B01FGHY04I": [{"asin": "B01FGHY04I", "instruction": "i would like a beige rectangular rug that is 10' 0 x 13' 0 and is easy to clean.", "attributes": ["easy clean", "contemporary design"], "options": ["color: purple | beige", "size: rectangular 10' 0 x 13' 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["rectangular 10' 0 x 13' 0"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK43IA6P", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01FGHY04I", "instruction": "i would like a beige rectangular rug that is 10' 0 x 13' 0 and is easy to clean.", "attributes": ["easy clean", "contemporary design"], "options": ["color: purple | beige", "size: rectangular 10' 0 x 13' 0"], "instruction_attributes": ["easy clean"], "instruction_options": ["rectangular 10' 0 x 13' 0"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK43IA6P", "worker_id": "A1WS884SI0SLO4"}], "B01138YJKY": [{"asin": "B01138YJKY", "instruction": "i need tan high heel booties in size 9.5", "attributes": ["lace closure", "high heel"], "options": ["color: tan", "size: 9.5"], "instruction_attributes": ["high heel"], "instruction_options": ["9.5"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZJV1YI", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B01138YJKY", "instruction": "i need tan high heel booties in size 9.5", "attributes": ["lace closure", "high heel"], "options": ["color: tan", "size: 9.5"], "instruction_attributes": ["high heel"], "instruction_options": ["9.5"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZJV1YI", "worker_id": "A2RBF3IIJP15IH"}], "B09KLN71KJ": [{"asin": "B09KLN71KJ", "instruction": "i am looking for wireless bluetooth headphones with touch control and a wireless charging case.", "attributes": ["high definition", "wireless charging", "stereo sound"], "options": [""], "instruction_attributes": ["wireless charging"], "instruction_options": [], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYM29QW", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09KLN71KJ", "instruction": "i am looking for wireless bluetooth headphones with touch control and a wireless charging case.", "attributes": ["high definition", "wireless charging", "stereo sound"], "options": [""], "instruction_attributes": ["wireless charging"], "instruction_options": [], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYM29QW", "worker_id": "A1EREKSZAA9V7B"}], "B00JHD5FC4": [{"asin": "B00JHD5FC4", "instruction": "i am looking for black leather sole fashion sneakers that are in a size 5.", "attributes": ["leather sole", "rubber outsole"], "options": ["color: black pulsar", "size: 5"], "instruction_attributes": ["leather sole"], "instruction_options": ["black pulsar", "5"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LGCI5L", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00JHD5FC4", "instruction": "i am looking for some size 7.5 mens sneakers with a pewter colored rubber outside.", "attributes": ["leather sole", "rubber outsole"], "options": ["color: pewter", "size: 7.5"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["pewter", "7.5"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HAB6IB", "worker_id": "A114NK7T5673GK"}, {"asin": "B00JHD5FC4", "instruction": "i am looking for black leather sole fashion sneakers that are in a size 5.", "attributes": ["leather sole", "rubber outsole"], "options": ["color: black pulsar", "size: 5"], "instruction_attributes": ["leather sole"], "instruction_options": ["black pulsar", "5"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LGCI5L", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00JHD5FC4", "instruction": "i would like a pair of grey size 6 sneakers with a rubber sole.", "attributes": ["leather sole", "rubber outsole"], "options": ["color: grey", "size: 6"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["grey", "6"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC71D09", "worker_id": "A1WS884SI0SLO4"}], "B09HKD9VNG": [{"asin": "B09HKD9VNG", "instruction": "i am looking for a mid century ottoman that is whiskey brown in color and is 16.5 inches.", "attributes": ["button tufted", "mid century", "easy clean", "easy assemble", "storage space", "living room"], "options": ["color: whiskey brown", "size: 16.5inches"], "instruction_attributes": ["mid century"], "instruction_options": ["whiskey brown", "16.5inches"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIT9T92", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09HKD9VNG", "instruction": "i am looking for a mid century ottoman that is whiskey brown in color and is 16.5 inches.", "attributes": ["button tufted", "mid century", "easy clean", "easy assemble", "storage space", "living room"], "options": ["color: whiskey brown", "size: 16.5inches"], "instruction_attributes": ["mid century"], "instruction_options": ["whiskey brown", "16.5inches"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIT9T92", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Y8RWHPF": [{"asin": "B07Y8RWHPF", "instruction": "i need some non gmo, keto friendly ghee butter that is shelf stable.", "attributes": ["non gmo", "shelf stable", "keto friendly", "gluten free"], "options": [""], "instruction_attributes": ["non gmo", "shelf stable", "keto friendly"], "instruction_options": [], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0QWARN", "worker_id": "A19317A3X87NVM"}, {"asin": "B07Y8RWHPF", "instruction": "i need some non gmo, keto friendly ghee butter that is shelf stable.", "attributes": ["non gmo", "shelf stable", "keto friendly", "gluten free"], "options": [""], "instruction_attributes": ["non gmo", "shelf stable", "keto friendly"], "instruction_options": [], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0QWARN", "worker_id": "A19317A3X87NVM"}], "B083ZLXJKW": [{"asin": "B083ZLXJKW", "instruction": "i need hemp shower oil for dry skin.", "attributes": ["seed oil", "dry skin"], "options": [""], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NK82P8", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B083ZLXJKW", "instruction": "i need hemp shower oil for dry skin.", "attributes": ["seed oil", "dry skin"], "options": [""], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NK82P8", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B083ZLXJKW", "instruction": "i would like a body wash made of seed oil.", "attributes": ["seed oil", "dry skin"], "options": [""], "instruction_attributes": ["seed oil"], "instruction_options": [], "assignment_id": "37UQDCYH685SGQI5NW68G99TKU77V2", "worker_id": "A1WS884SI0SLO4"}], "B09MQ7ZZSZ": [{"asin": "B09MQ7ZZSZ", "instruction": "i need bear head cupcake toppers for a birthday party.", "attributes": ["cupcake picks", "baby shower", "birthday party"], "options": ["pattern name: head"], "instruction_attributes": ["birthday party"], "instruction_options": ["head"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL3XH5R", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09MQ7ZZSZ", "instruction": "i need bear head cupcake toppers for a birthday party.", "attributes": ["cupcake picks", "baby shower", "birthday party"], "options": ["pattern name: head"], "instruction_attributes": ["birthday party"], "instruction_options": ["head"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL3XH5R", "worker_id": "A2RBF3IIJP15IH"}], "B08K38RMW7": [{"asin": "B08K38RMW7", "instruction": "i need a blue sherpa wool sweatshirt.", "attributes": ["soft material", "faux fur", "daily wear"], "options": ["color: c-blue", "size: 3x-large"], "instruction_attributes": ["soft material"], "instruction_options": ["c-blue"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBCEHGC", "worker_id": "A19317A3X87NVM"}, {"asin": "B08K38RMW7", "instruction": "i need a blue sherpa wool sweatshirt.", "attributes": ["soft material", "faux fur", "daily wear"], "options": ["color: c-blue", "size: 3x-large"], "instruction_attributes": ["soft material"], "instruction_options": ["c-blue"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBCEHGC", "worker_id": "A19317A3X87NVM"}], "B00DYGQZOC": [{"asin": "B00DYGQZOC", "instruction": "i'm looking for a wild caught chunk light tuna in sunflower oil. choose the ones that comes in 2.6 oz pack of 24.", "attributes": ["wild caught", "soy free", "gluten free"], "options": ["flavor name: chunk light in sunflower oil", "size: 2.6 ounce (pack of 24)"], "instruction_attributes": ["wild caught"], "instruction_options": ["chunk light in sunflower oil", "2.6 ounce (pack of 24)"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTM54VR", "worker_id": "A3MNXK3VDK37SN"}, {"asin": "B00DYGQZOC", "instruction": "i'm looking for a wild caught chunk light tuna in sunflower oil. choose the ones that comes in 2.6 oz pack of 24.", "attributes": ["wild caught", "soy free", "gluten free"], "options": ["flavor name: chunk light in sunflower oil", "size: 2.6 ounce (pack of 24)"], "instruction_attributes": ["wild caught"], "instruction_options": ["chunk light in sunflower oil", "2.6 ounce (pack of 24)"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTM54VR", "worker_id": "A3MNXK3VDK37SN"}], "B09Q3F2LB1": [{"asin": "B09Q3F2LB1", "instruction": "i'd like to buy a small white jumpsuit with a relaxed fit.", "attributes": ["straight leg", "fleece lined", "wide leg", "water resistant", "day comfort", "slim fit", "high waist", "tummy control", "elastic waist", "relaxed fit", "classic fit"], "options": ["color: white", "size: small"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["white", "small"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSF826S", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09Q3F2LB1", "instruction": "i'd like to buy a small white jumpsuit with a relaxed fit.", "attributes": ["straight leg", "fleece lined", "wide leg", "water resistant", "day comfort", "slim fit", "high waist", "tummy control", "elastic waist", "relaxed fit", "classic fit"], "options": ["color: white", "size: small"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["white", "small"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSF826S", "worker_id": "AR9AU5FY1S3RO"}], "B085DTCP31": [{"asin": "B085DTCP31", "instruction": "i need dog cupcake toppers for a dog party.", "attributes": ["baby shower", "birthday party"], "options": ["color: dog banner"], "instruction_attributes": ["birthday party"], "instruction_options": ["dog banner"], "assignment_id": "3HPZF4IVNX3FW186JO133U513GUYCD", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B085DTCP31", "instruction": "i need dog cupcake toppers for a dog party.", "attributes": ["baby shower", "birthday party"], "options": ["color: dog banner"], "instruction_attributes": ["birthday party"], "instruction_options": ["dog banner"], "assignment_id": "3HPZF4IVNX3FW186JO133U513GUYCD", "worker_id": "A2RBF3IIJP15IH"}], "B00AFYAXEO": [{"asin": "B00AFYAXEO", "instruction": "i am looking for extra strength exfoliator that handles dead skin.", "attributes": ["fine lines", "dead skin"], "options": ["style: extra strength"], "instruction_attributes": ["dead skin"], "instruction_options": ["extra strength"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOA0ON1", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00AFYAXEO", "instruction": "i am looking for extra strength exfoliator that handles dead skin.", "attributes": ["fine lines", "dead skin"], "options": ["style: extra strength"], "instruction_attributes": ["dead skin"], "instruction_options": ["extra strength"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOA0ON1", "worker_id": "A1EREKSZAA9V7B"}], "B00PKHCA0Q": [{"asin": "B00PKHCA0Q", "instruction": "i am looking for a faux leather grey color loveseat for living room", "attributes": ["faux leather", "wood finish", "living room"], "options": ["color: grey", "style: loveseat"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["grey", "loveseat"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADF1VW1", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B00PKHCA0Q", "instruction": "i am looking for a faux leather grey color loveseat for living room", "attributes": ["faux leather", "wood finish", "living room"], "options": ["color: grey", "style: loveseat"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["grey", "loveseat"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADF1VW1", "worker_id": "A258PTOZ3D2TQR"}], "B08PHFZNBY": [{"asin": "B08PHFZNBY", "instruction": "i am looking for individually wrapped bakery gifts.", "attributes": ["individually wrapped", "nut free", "valentine day", "gift basket"], "options": [""], "instruction_attributes": ["individually wrapped"], "instruction_options": [], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCQS5QA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08PHFZNBY", "instruction": "i am looking for individually wrapped bakery gifts.", "attributes": ["individually wrapped", "nut free", "valentine day", "gift basket"], "options": [""], "instruction_attributes": ["individually wrapped"], "instruction_options": [], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCQS5QA", "worker_id": "A2ECRNQ3X5LEXD"}], "B09L7QFVTQ": [{"asin": "B09L7QFVTQ", "instruction": "i need a small red womens fleece jacket that is made of polyester spandex,", "attributes": ["hand wash", "daily casual", "winter warm", "wash cold", "polyester spandex"], "options": ["color: l-red", "size: small"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["l-red", "small"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXCUUJR", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09L7QFVTQ", "instruction": "i need a small red womens fleece jacket that is made of polyester spandex,", "attributes": ["hand wash", "daily casual", "winter warm", "wash cold", "polyester spandex"], "options": ["color: l-red", "size: small"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["l-red", "small"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXCUUJR", "worker_id": "A2RBF3IIJP15IH"}], "B004LKAO2E": [{"asin": "B004LKAO2E", "instruction": "i'm looking for 33.81 fl oz non-gmo gluten free monin raspberry syrup.", "attributes": ["non gmo", "bpa free", "artificial ingredients", "gluten free", "dairy free", "artificial colors", "artificial flavors"], "options": ["size: 33.81 fl oz (pack of 2)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["33.81 fl oz (pack of 2)"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP39AOB", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B004LKAO2E", "instruction": "i'm looking for 33.81 fl oz non-gmo gluten free monin raspberry syrup.", "attributes": ["non gmo", "bpa free", "artificial ingredients", "gluten free", "dairy free", "artificial colors", "artificial flavors"], "options": ["size: 33.81 fl oz (pack of 2)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["33.81 fl oz (pack of 2)"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP39AOB", "worker_id": "ARQ05PDNXPFDI"}], "B07L3PX14F": [{"asin": "B07L3PX14F", "instruction": "i am looking for a white and black heavy duty steel frame computer desk.", "attributes": ["heavy duty", "easy assemble", "coated steel", "metal legs", "steel frame"], "options": ["color: white+black", "size: 47*23.6 inch"], "instruction_attributes": ["heavy duty", "steel frame"], "instruction_options": ["white+black"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAD2OVI", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07L3PX14F", "instruction": "i am looking for a white and black heavy duty steel frame computer desk.", "attributes": ["heavy duty", "easy assemble", "coated steel", "metal legs", "steel frame"], "options": ["color: white+black", "size: 47*23.6 inch"], "instruction_attributes": ["heavy duty", "steel frame"], "instruction_options": ["white+black"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAD2OVI", "worker_id": "A1EREKSZAA9V7B"}], "B08G5RRKK6": [{"asin": "B08G5RRKK6", "instruction": "i am interested in a towel for drying hair that is pink.", "attributes": ["dry hair", "hair styling"], "options": ["color: pink | palms"], "instruction_attributes": ["dry hair"], "instruction_options": ["pink | palms"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUGD3RT", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08G5RRKK6", "instruction": "i am interested in a towel for drying hair that is pink.", "attributes": ["dry hair", "hair styling"], "options": ["color: pink | palms"], "instruction_attributes": ["dry hair"], "instruction_options": ["pink | palms"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUGD3RT", "worker_id": "A2ECRNQ3X5LEXD"}], "B0971SBWGG": [{"asin": "B0971SBWGG", "instruction": "i need to order some certified organic loose leaf tea.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: matcha + green tea", "size: 100 count (pack of 1)", "style: loose leaf"], "instruction_attributes": ["certified organic"], "instruction_options": ["loose leaf"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC3TD0T", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B0971SBWGG", "instruction": "i'm looking for a six-count pack of loose-leaf white tea powder. it needs to be usda certified organic.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: white tea", "size: 6 count (pack of 1)", "style: loose leaf"], "instruction_attributes": ["usda organic", "certified organic"], "instruction_options": ["white tea", "6 count (pack of 1)", "loose leaf"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0JY4W4", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B0971SBWGG", "instruction": "i need to order some certified organic loose leaf tea.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: matcha + green tea", "size: 100 count (pack of 1)", "style: loose leaf"], "instruction_attributes": ["certified organic"], "instruction_options": ["loose leaf"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC3TD0T", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B0971SBWGG", "instruction": "i'm looking for certified usda organic black tea bags. i need a 20 count box.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: black tea (decaf)", "size: 20 count (pack of 1)", "style: tea bags"], "instruction_attributes": ["usda organic", "certified organic"], "instruction_options": ["black tea (decaf)", "20 count (pack of 1)", "tea bags"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4F1I0E", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B0971SBWGG", "instruction": "i am looking for certified organic english breakfast tea bags.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: english breakfast", "size: 20 count (pack of 1)", "style: tea bags"], "instruction_attributes": ["certified organic"], "instruction_options": ["english breakfast", "tea bags"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVGTUT8", "worker_id": "A1EREKSZAA9V7B"}], "B06X9T6WLP": [{"asin": "B06X9T6WLP", "instruction": "i am looking for high quality dark red synthetic hair extensions.", "attributes": ["high quality", "synthetic hair", "hair extensions"], "options": ["color: dark red", "size: 26 inch straight"], "instruction_attributes": ["high quality", "synthetic hair", "hair extensions"], "instruction_options": ["dark red"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYKWM6A", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B06X9T6WLP", "instruction": "i am looking for high quality dark red synthetic hair extensions.", "attributes": ["high quality", "synthetic hair", "hair extensions"], "options": ["color: dark red", "size: 26 inch straight"], "instruction_attributes": ["high quality", "synthetic hair", "hair extensions"], "instruction_options": ["dark red"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYKWM6A", "worker_id": "A1EREKSZAA9V7B"}], "B08B7MYLXY": [{"asin": "B08B7MYLXY", "instruction": "looking for short lace boots for day comfort, fawn color, size 6.5", "attributes": ["day comfort", "rubber sole", "faux fur"], "options": ["color: blanc | fawn", "size: 6.5"], "instruction_attributes": ["day comfort"], "instruction_options": ["blanc | fawn", "6.5"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPVUPJI", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B08B7MYLXY", "instruction": "looking for short lace boots for day comfort, fawn color, size 6.5", "attributes": ["day comfort", "rubber sole", "faux fur"], "options": ["color: blanc | fawn", "size: 6.5"], "instruction_attributes": ["day comfort"], "instruction_options": ["blanc | fawn", "6.5"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPVUPJI", "worker_id": "A2Y2TURT2VEYZN"}], "B085B29638": [{"asin": "B085B29638", "instruction": "i am interested in a variety pack of fruit snacks that are plant based.", "attributes": ["plant based", "dairy free", "bpa free", "gluten free", "usda organic", "nut free", "low calorie", "kosher certified", "non gmo", "high fructose"], "options": ["flavor name: variety pack (apple mango | apple strawberry)"], "instruction_attributes": ["plant based"], "instruction_options": ["variety pack (apple mango | apple strawberry)"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQIF13R", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B085B29638", "instruction": "i am interested in a variety pack of fruit snacks that are plant based.", "attributes": ["plant based", "dairy free", "bpa free", "gluten free", "usda organic", "nut free", "low calorie", "kosher certified", "non gmo", "high fructose"], "options": ["flavor name: variety pack (apple mango | apple strawberry)"], "instruction_attributes": ["plant based"], "instruction_options": ["variety pack (apple mango | apple strawberry)"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQIF13R", "worker_id": "A2ECRNQ3X5LEXD"}], "B08M569G16": [{"asin": "B08M569G16", "instruction": "i need a pack of 18 white cheddar black pepper creole bean + nut snack mix that is gluten free.", "attributes": ["non gmo", "gluten free"], "options": ["flavor name: white cheddar black pepper", "size: 1.25 ounce (pack of 18)"], "instruction_attributes": ["gluten free"], "instruction_options": ["white cheddar black pepper", "1.25 ounce (pack of 18)"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSF7K9DY", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08M569G16", "instruction": "i need a pack of 18 white cheddar black pepper creole bean + nut snack mix that is gluten free.", "attributes": ["non gmo", "gluten free"], "options": ["flavor name: white cheddar black pepper", "size: 1.25 ounce (pack of 18)"], "instruction_attributes": ["gluten free"], "instruction_options": ["white cheddar black pepper", "1.25 ounce (pack of 18)"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSF7K9DY", "worker_id": "A2RBF3IIJP15IH"}], "B08G8NCR8D": [{"asin": "B08G8NCR8D", "instruction": "i am looking for an easy to clean hair dyeing set with a mixing bowl.", "attributes": ["eco friendly", "easy clean", "high quality", "hair dye", "hair salon"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCTM64A", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08G8NCR8D", "instruction": "i am looking for an easy to clean hair dyeing set with a mixing bowl.", "attributes": ["eco friendly", "easy clean", "high quality", "hair dye", "hair salon"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCTM64A", "worker_id": "A1EREKSZAA9V7B"}], "B08JZC6FZH": [{"asin": "B08JZC6FZH", "instruction": "i would like a 12 ounce cantina party mix with simple ingregients.", "attributes": ["chocolate covered", "simple ingredients"], "options": ["flavor: cantina mix", "size: 12 ounce (pack of 1)"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["cantina mix", "12 ounce (pack of 1)"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV158DB", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08JZC6FZH", "instruction": "i would like a 12 ounce cantina party mix with simple ingregients.", "attributes": ["chocolate covered", "simple ingredients"], "options": ["flavor: cantina mix", "size: 12 ounce (pack of 1)"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["cantina mix", "12 ounce (pack of 1)"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV158DB", "worker_id": "A1WS884SI0SLO4"}], "B08BFJLHDK": [{"asin": "B08BFJLHDK", "instruction": "i am looking for machine washable sweatsuits that are pink and in an xx-large.", "attributes": ["machine washable", "polyester spandex", "short sleeve"], "options": ["color: 3147 pink star", "size: xx-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["3147 pink star", "xx-large"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRK3F9I", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08BFJLHDK", "instruction": "i am looking for machine washable sweatsuits that are pink and in an xx-large.", "attributes": ["machine washable", "polyester spandex", "short sleeve"], "options": ["color: 3147 pink star", "size: xx-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["3147 pink star", "xx-large"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRK3F9I", "worker_id": "A2ECRNQ3X5LEXD"}], "B095CP9GD9": [{"asin": "B095CP9GD9", "instruction": "i need a skincare product that will help with the dark circles under my eyes.", "attributes": ["dark circles", "fine lines"], "options": [""], "instruction_attributes": ["dark circles"], "instruction_options": [], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733JQBE5", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B095CP9GD9", "instruction": "i need a skincare product that will help with the dark circles under my eyes.", "attributes": ["dark circles", "fine lines"], "options": [""], "instruction_attributes": ["dark circles"], "instruction_options": [], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733JQBE5", "worker_id": "AR9AU5FY1S3RO"}], "B07YK94TDJ": [{"asin": "B07YK94TDJ", "instruction": "i need an outdoor tv cover to dustproof a 51 inch television.", "attributes": ["dust proof", "heavy duty", "easy install"], "options": ["color: chocolate", "size: 52 inch"], "instruction_attributes": ["dust proof"], "instruction_options": ["52 inch"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7UIY6K", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07YK94TDJ", "instruction": "i need an outdoor tv cover to dustproof a 51 inch television.", "attributes": ["dust proof", "heavy duty", "easy install"], "options": ["color: chocolate", "size: 52 inch"], "instruction_attributes": ["dust proof"], "instruction_options": ["52 inch"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7UIY6K", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07YK94TDJ", "instruction": "i'm looking for a outdoor tv cover with 72 inch, need to be dust proof and black color", "attributes": ["dust proof", "heavy duty", "easy install"], "options": ["color: black", "size: 72 inch"], "instruction_attributes": ["dust proof"], "instruction_options": ["black", "72 inch"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEK468D", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07YK94TDJ", "instruction": "i'm looking for a heavy duty, dust proof tv screen protectors which is easy to install. also, choose 46 inch camel colored one.", "attributes": ["dust proof", "heavy duty", "easy install"], "options": ["color: camel", "size: 46 inch"], "instruction_attributes": ["dust proof", "heavy duty", "easy install"], "instruction_options": ["camel", "46 inch"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCSEQ5L", "worker_id": "AR0VJ5XRG16UJ"}], "B09NZJSMQS": [{"asin": "B09NZJSMQS", "instruction": "i am looking for a high quality hair removal wax bottle.", "attributes": ["easy apply", "eco friendly", "easy clean", "high quality", "hair removal", "beauty salon"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZDY2IR0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09NZJSMQS", "instruction": "i am looking for a high quality hair removal wax bottle.", "attributes": ["easy apply", "eco friendly", "easy clean", "high quality", "hair removal", "beauty salon"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZDY2IR0", "worker_id": "A1EREKSZAA9V7B"}], "B079NY8BF3": [{"asin": "B079NY8BF3", "instruction": "i'm looking to buy a body wash that has tea tree oil as an ingredient that would work well for sensitive skin.", "attributes": ["paraben free", "cruelty free", "tea tree", "sensitive skin"], "options": [""], "instruction_attributes": ["tea tree", "sensitive skin"], "instruction_options": [], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRP5ZB5", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B079NY8BF3", "instruction": "i'm looking to buy a body wash that has tea tree oil as an ingredient that would work well for sensitive skin.", "attributes": ["paraben free", "cruelty free", "tea tree", "sensitive skin"], "options": [""], "instruction_attributes": ["tea tree", "sensitive skin"], "instruction_options": [], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRP5ZB5", "worker_id": "A3EDFA8UQT5GG8"}], "B07B3VCT7X": [{"asin": "B07B3VCT7X", "instruction": "i need a bulk pack of 100 disposable toothbrushes for oral hygeine.", "attributes": ["high quality", "oral hygiene"], "options": ["size: 100 pack"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["100 pack"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JX9E7GW", "worker_id": "A19317A3X87NVM"}, {"asin": "B07B3VCT7X", "instruction": "i need a bulk pack of 100 disposable toothbrushes for oral hygeine.", "attributes": ["high quality", "oral hygiene"], "options": ["size: 100 pack"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["100 pack"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JX9E7GW", "worker_id": "A19317A3X87NVM"}], "B09D39L8P8": [{"asin": "B09D39L8P8", "instruction": "i would like a gold tongue cleaner for my oral hygiene.", "attributes": ["stainless steel", "rose gold", "oral hygiene", "bad breath"], "options": ["color: gold"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["gold"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVPXX9P", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09D39L8P8", "instruction": "i would like a gold tongue cleaner for my oral hygiene.", "attributes": ["stainless steel", "rose gold", "oral hygiene", "bad breath"], "options": ["color: gold"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["gold"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVPXX9P", "worker_id": "A1WS884SI0SLO4"}], "B08T76YM9K": [{"asin": "B08T76YM9K", "instruction": "i'm looking for a hair salon stool that offers height adjustment and is the color blue.", "attributes": ["height adjustable", "hair salon"], "options": ["color: blue", "size: fixed feet"], "instruction_attributes": ["height adjustable", "hair salon"], "instruction_options": ["blue"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UHCOIQN", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B08T76YM9K", "instruction": "i'm looking for a hair salon stool that offers height adjustment and is the color blue.", "attributes": ["height adjustable", "hair salon"], "options": ["color: blue", "size: fixed feet"], "instruction_attributes": ["height adjustable", "hair salon"], "instruction_options": ["blue"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UHCOIQN", "worker_id": "A2JP9IKRHNLRPI"}], "B08GJH2XWJ": [{"asin": "B08GJH2XWJ", "instruction": "i would like a 5\" x 5\" square cake topper for a birthday party.", "attributes": ["dairy free", "gluten free", "birthday party"], "options": ["size: 5\" x 5\" square"], "instruction_attributes": ["birthday party"], "instruction_options": ["5\" x 5\" square"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3AHN6M", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08GJH2XWJ", "instruction": "i would like a 5\" x 5\" square cake topper for a birthday party.", "attributes": ["dairy free", "gluten free", "birthday party"], "options": ["size: 5\" x 5\" square"], "instruction_attributes": ["birthday party"], "instruction_options": ["5\" x 5\" square"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3AHN6M", "worker_id": "A1WS884SI0SLO4"}], "B09S5YDXS2": [{"asin": "B09S5YDXS2", "instruction": "i need to buy a pair of swimming trunks in 3x large. make sure they can be washed on the cold cycle.", "attributes": ["wash cold", "elastic waistband"], "options": ["size: 3x-large"], "instruction_attributes": ["wash cold"], "instruction_options": ["3x-large"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BJLX86", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09S5YDXS2", "instruction": "i need to buy a pair of swimming trunks in 3x large. make sure they can be washed on the cold cycle.", "attributes": ["wash cold", "elastic waistband"], "options": ["size: 3x-large"], "instruction_attributes": ["wash cold"], "instruction_options": ["3x-large"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BJLX86", "worker_id": "AR9AU5FY1S3RO"}], "B08XY8L3KN": [{"asin": "B08XY8L3KN", "instruction": "i need a light wash mid rise slim leg jeans that comes with button closure in size 27 for women.", "attributes": ["machine wash", "button closure"], "options": ["color: light wash soc174", "size: 27"], "instruction_attributes": ["button closure"], "instruction_options": ["light wash soc174", "27"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPWZTXK", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08XY8L3KN", "instruction": "i need a light wash mid rise slim leg jeans that comes with button closure in size 27 for women.", "attributes": ["machine wash", "button closure"], "options": ["color: light wash soc174", "size: 27"], "instruction_attributes": ["button closure"], "instruction_options": ["light wash soc174", "27"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPWZTXK", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08XY8L3KN", "instruction": "i need a jeans with button closure.", "attributes": ["machine wash", "button closure"], "options": ["color: light wash soc174", "size: 31w x 28l"], "instruction_attributes": ["button closure"], "instruction_options": [], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVL0P1Y", "worker_id": "AVIEE6LDH0BT5"}], "B01GE2ZO2G": [{"asin": "B01GE2ZO2G", "instruction": "i'm looking for a tongue scraper that is stainless steel and helps me keep fresh breath.", "attributes": ["stainless steel", "fresh breath"], "options": [""], "instruction_attributes": ["stainless steel", "fresh breath"], "instruction_options": [], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3WF7QJ", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B01GE2ZO2G", "instruction": "i'm looking for a tongue scraper that is stainless steel and helps me keep fresh breath.", "attributes": ["stainless steel", "fresh breath"], "options": [""], "instruction_attributes": ["stainless steel", "fresh breath"], "instruction_options": [], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3WF7QJ", "worker_id": "A34EHWOYRBL6OZ"}], "B000HJ6TT0": [{"asin": "B000HJ6TT0", "instruction": "i am interested in a six inch red candle that is made of soy wax.", "attributes": ["lead free", "soy wax", "living room"], "options": ["color: red", "size: 6 in"], "instruction_attributes": ["soy wax"], "instruction_options": ["red", "6 in"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFQMJOJ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B000HJ6TT0", "instruction": "i am interested in a six inch red candle that is made of soy wax.", "attributes": ["lead free", "soy wax", "living room"], "options": ["color: red", "size: 6 in"], "instruction_attributes": ["soy wax"], "instruction_options": ["red", "6 in"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFQMJOJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B00NB8OJAA": [{"asin": "B00NB8OJAA", "instruction": "i need a blue portable bluetooth speaker that is easy to carry.", "attributes": ["long lasting", "easy carry", "usb port"], "options": ["color: party blue"], "instruction_attributes": ["easy carry"], "instruction_options": ["party blue"], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO2N33F", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B00NB8OJAA", "instruction": "i need a blue portable bluetooth speaker that is easy to carry.", "attributes": ["long lasting", "easy carry", "usb port"], "options": ["color: party blue"], "instruction_attributes": ["easy carry"], "instruction_options": ["party blue"], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO2N33F", "worker_id": "A2RBF3IIJP15IH"}], "B000ORCFCK": [{"asin": "B000ORCFCK", "instruction": "i need a flamingo pink lacoste short sleeve polo in size 7.", "attributes": ["slim fit", "hand wash", "button closure", "classic fit", "short sleeve"], "options": ["color: flamingo pink", "size: 7"], "instruction_attributes": [], "instruction_options": ["flamingo pink", "7"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9568NS", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B000ORCFCK", "instruction": "i need a flamingo pink lacoste short sleeve polo in size 7.", "attributes": ["slim fit", "hand wash", "button closure", "classic fit", "short sleeve"], "options": ["color: flamingo pink", "size: 7"], "instruction_attributes": [], "instruction_options": ["flamingo pink", "7"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9568NS", "worker_id": "A2RBF3IIJP15IH"}], "B00J8U0J4A": [{"asin": "B00J8U0J4A", "instruction": "i am looking for a living room set with two armchairs that are gray in color and mid century style.", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: expectation gray", "size: two armchairs"], "instruction_attributes": ["mid century"], "instruction_options": ["expectation gray", "two armchairs"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPETVQ6", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00J8U0J4A", "instruction": "i am looking for a living room set with two armchairs that are gray in color and mid century style.", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: expectation gray", "size: two armchairs"], "instruction_attributes": ["mid century"], "instruction_options": ["expectation gray", "two armchairs"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPETVQ6", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00J8U0J4A", "instruction": "mid century leather two armchair set", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: oatmeal", "size: armchair and sofa"], "instruction_attributes": ["mid century"], "instruction_options": ["armchair and sofa"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8NC2N26", "worker_id": "A10OGH5CQBXL5N"}], "B08QMC9G4J": [{"asin": "B08QMC9G4J", "instruction": "i am looking for smartwatch bands that are nude in color and are compatible with apple.", "attributes": ["compatible apple", "high performance"], "options": ["color: nude color", "size: 38 | 40 | 41mm m | l"], "instruction_attributes": ["compatible apple"], "instruction_options": ["nude color"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54OH389", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08QMC9G4J", "instruction": "i am looking for smartwatch bands that are nude in color and are compatible with apple.", "attributes": ["compatible apple", "high performance"], "options": ["color: nude color", "size: 38 | 40 | 41mm m | l"], "instruction_attributes": ["compatible apple"], "instruction_options": ["nude color"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54OH389", "worker_id": "A2ECRNQ3X5LEXD"}], "B078N6ZHXP": [{"asin": "B078N6ZHXP", "instruction": "i would like a full size classic 8\" split foundation mattress and box spring.", "attributes": ["ready use", "fully assembled", "assembly required", "box spring"], "options": ["color: classic collection", "size: full", "style: 8\" split foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["classic collection", "full", "8\" split foundation"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAY7A8A", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B078N6ZHXP", "instruction": "i would like a full size classic 8\" split foundation mattress and box spring.", "attributes": ["ready use", "fully assembled", "assembly required", "box spring"], "options": ["color: classic collection", "size: full", "style: 8\" split foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["classic collection", "full", "8\" split foundation"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAY7A8A", "worker_id": "A1WS884SI0SLO4"}], "B09PT81KY2": [{"asin": "B09PT81KY2", "instruction": "i want to find a desktop computer that features ryz 5 pro 3400ge, 32 gigabytes of storage space and 500 gigabytes on the ssd card. it needs to have a quad core processor.", "attributes": ["dual band", "quad core"], "options": ["size: ryz 5 pro 3400ge | 32gb | 500gb ssd"], "instruction_attributes": ["quad core"], "instruction_options": ["ryz 5 pro 3400ge | 32gb | 500gb ssd"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB95ON8P", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09PT81KY2", "instruction": "i want to find a desktop computer that features ryz 5 pro 3400ge, 32 gigabytes of storage space and 500 gigabytes on the ssd card. it needs to have a quad core processor.", "attributes": ["dual band", "quad core"], "options": ["size: ryz 5 pro 3400ge | 32gb | 500gb ssd"], "instruction_attributes": ["quad core"], "instruction_options": ["ryz 5 pro 3400ge | 32gb | 500gb ssd"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB95ON8P", "worker_id": "A345TDMHP3DQ3G"}], "B08THK9ZSB": [{"asin": "B08THK9ZSB", "instruction": "i need vintage beauty salon chairs.", "attributes": ["easy clean", "hair salon", "beauty salon"], "options": ["color: a"], "instruction_attributes": ["beauty salon"], "instruction_options": ["a"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKAN88K", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08THK9ZSB", "instruction": "i need vintage beauty salon chairs.", "attributes": ["easy clean", "hair salon", "beauty salon"], "options": ["color: a"], "instruction_attributes": ["beauty salon"], "instruction_options": ["a"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKAN88K", "worker_id": "A2RBF3IIJP15IH"}], "B0816448FQ": [{"asin": "B0816448FQ", "instruction": "i am looking for a white feather color large makeup bag which is water resistant.", "attributes": ["water resistant", "storage case"], "options": ["color: white feather"], "instruction_attributes": ["water resistant"], "instruction_options": ["white feather"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BJVVJ9", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B0816448FQ", "instruction": "i am looking for a white feather color large makeup bag which is water resistant.", "attributes": ["water resistant", "storage case"], "options": ["color: white feather"], "instruction_attributes": ["water resistant"], "instruction_options": ["white feather"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BJVVJ9", "worker_id": "A1Q8PPQQCWGY0D"}], "B098W775RF": [{"asin": "B098W775RF", "instruction": "i need a pink blossom colored carrying case for my cell phone.", "attributes": ["carrying case", "wireless charging"], "options": ["color: pink cherry blossom"], "instruction_attributes": ["carrying case"], "instruction_options": ["pink cherry blossom"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JWIGER", "worker_id": "A19317A3X87NVM"}, {"asin": "B098W775RF", "instruction": "i need a pink blossom colored carrying case for my cell phone.", "attributes": ["carrying case", "wireless charging"], "options": ["color: pink cherry blossom"], "instruction_attributes": ["carrying case"], "instruction_options": ["pink cherry blossom"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JWIGER", "worker_id": "A19317A3X87NVM"}], "B07GPM973V": [{"asin": "B07GPM973V", "instruction": "find a sneaker for men with outsole rubber and rubber sole size 4 color in black or white", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: black | white", "size: 4"], "instruction_attributes": ["rubber outsole", "rubber sole"], "instruction_options": ["black | white", "4"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXS5AAWP", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07GPM973V", "instruction": "find a sneaker for men with outsole rubber and rubber sole size 4 color in black or white", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: black | white", "size: 4"], "instruction_attributes": ["rubber outsole", "rubber sole"], "instruction_options": ["black | white", "4"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXS5AAWP", "worker_id": "A2Y2TURT2VEYZN"}], "B01GS3NXSI": [{"asin": "B01GS3NXSI", "instruction": "i am interested in a round area rug that is turquoise and ivory and 6 ft by 7 ft long.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: turquoise | ivory", "item shape: round", "size: 6 ft 7 in x 6 ft 7 in"], "instruction_attributes": ["living room"], "instruction_options": ["turquoise | ivory", "round", "6 ft 7 in x 6 ft 7 in"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTB7D5H", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01GS3NXSI", "instruction": "i am interested in a round area rug that is turquoise and ivory and 6 ft by 7 ft long.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: turquoise | ivory", "item shape: round", "size: 6 ft 7 in x 6 ft 7 in"], "instruction_attributes": ["living room"], "instruction_options": ["turquoise | ivory", "round", "6 ft 7 in x 6 ft 7 in"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTB7D5H", "worker_id": "A2ECRNQ3X5LEXD"}], "B07P1CYG3D": [{"asin": "B07P1CYG3D", "instruction": "i need a white coated steel stockpile 3-drawer mobile file cabinet.", "attributes": ["fully assembled", "coated steel"], "options": ["color: white | orange"], "instruction_attributes": ["coated steel"], "instruction_options": ["white | orange"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2KB5LR", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07P1CYG3D", "instruction": "i need a white coated steel stockpile 3-drawer mobile file cabinet.", "attributes": ["fully assembled", "coated steel"], "options": ["color: white | orange"], "instruction_attributes": ["coated steel"], "instruction_options": ["white | orange"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2KB5LR", "worker_id": "A2RBF3IIJP15IH"}], "B09PYHJ249": [{"asin": "B09PYHJ249", "instruction": "i am looking for dark blue color womens jeans having high waist.", "attributes": ["butt lifting", "straight leg", "high waist", "fashion design"], "options": ["color: dark blue", "size: xx-large"], "instruction_attributes": ["high waist"], "instruction_options": ["dark blue"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW9KNFP", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09PYHJ249", "instruction": "i am looking for dark blue color womens jeans having high waist.", "attributes": ["butt lifting", "straight leg", "high waist", "fashion design"], "options": ["color: dark blue", "size: xx-large"], "instruction_attributes": ["high waist"], "instruction_options": ["dark blue"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW9KNFP", "worker_id": "A1Q8PPQQCWGY0D"}], "B0978DR561": [{"asin": "B0978DR561", "instruction": "i want to find one messy synthetic hair bun piece in a light auburn color.", "attributes": ["high quality", "synthetic hair"], "options": ["color: 15# light auburn", "size: 1 pcs"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["15# light auburn", "1 pcs"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOARNOR", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B0978DR561", "instruction": "i want to find one messy synthetic hair bun piece in a light auburn color.", "attributes": ["high quality", "synthetic hair"], "options": ["color: 15# light auburn", "size: 1 pcs"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["15# light auburn", "1 pcs"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOARNOR", "worker_id": "A345TDMHP3DQ3G"}], "B00778CGU0": [{"asin": "B00778CGU0", "instruction": "i am looking for hand crafted snack gifts.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4E115C", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00778CGU0", "instruction": "i am looking for hand crafted snack gifts.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4E115C", "worker_id": "A2ECRNQ3X5LEXD"}], "B01N0YGEQT": [{"asin": "B01N0YGEQT", "instruction": "i need a powerlite 1785w projector that projects 1080p hd.", "attributes": ["1080p hd", "carrying case"], "options": ["style: powerlite 1785w"], "instruction_attributes": ["1080p hd"], "instruction_options": ["powerlite 1785w"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQMV0PT", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B01N0YGEQT", "instruction": "i need a powerlite 1785w projector that projects 1080p hd.", "attributes": ["1080p hd", "carrying case"], "options": ["style: powerlite 1785w"], "instruction_attributes": ["1080p hd"], "instruction_options": ["powerlite 1785w"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQMV0PT", "worker_id": "A2RBF3IIJP15IH"}], "B09D77KB16": [{"asin": "B09D77KB16", "instruction": "i want a highly pigmented lip gloss that is in the color r901", "attributes": ["highly pigmented", "high quality"], "options": ["color: r901"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["r901"], "assignment_id": "37TRT2X24116R7L1JO45INKV8RKJBW", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09D77KB16", "instruction": "i want a highly pigmented lip gloss that is in the color r901", "attributes": ["highly pigmented", "high quality"], "options": ["color: r901"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["r901"], "assignment_id": "37TRT2X24116R7L1JO45INKV8RKJBW", "worker_id": "A2ECRNQ3X5LEXD"}], "B07VSZG1W3": [{"asin": "B07VSZG1W3", "instruction": "i need an indoor ultra hd antenna with an amplifier.", "attributes": ["ultra hd", "coaxial cable", "4g lte"], "options": ["size: indoor smartpass amplified antenna6"], "instruction_attributes": ["ultra hd"], "instruction_options": ["indoor smartpass amplified antenna6"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4ASBSZ", "worker_id": "A19317A3X87NVM"}, {"asin": "B07VSZG1W3", "instruction": "i need an indoor ultra hd antenna with an amplifier.", "attributes": ["ultra hd", "coaxial cable", "4g lte"], "options": ["size: indoor smartpass amplified antenna6"], "instruction_attributes": ["ultra hd"], "instruction_options": ["indoor smartpass amplified antenna6"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4ASBSZ", "worker_id": "A19317A3X87NVM"}], "B07XC7GVRK": [{"asin": "B07XC7GVRK", "instruction": "i need a lenovo chromebook with intel core i3-8130u.", "attributes": ["light weight", "intel core"], "options": [""], "instruction_attributes": ["intel core"], "instruction_options": [], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDK2K5Z", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07XC7GVRK", "instruction": "i need a lenovo chromebook with intel core i3-8130u.", "attributes": ["light weight", "intel core"], "options": [""], "instruction_attributes": ["intel core"], "instruction_options": [], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDK2K5Z", "worker_id": "A2RBF3IIJP15IH"}], "B08VJ6V1VM": [{"asin": "B08VJ6V1VM", "instruction": "i'm looking for a topper for a birthday cake.", "attributes": ["birthday party", "birthday cake", "party supplies"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG4DSLA", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08VJ6V1VM", "instruction": "i'm looking for a topper for a birthday cake.", "attributes": ["birthday party", "birthday cake", "party supplies"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG4DSLA", "worker_id": "AR9AU5FY1S3RO"}], "B09MTYJ85J": [{"asin": "B09MTYJ85J", "instruction": "i need a cell phone signal booster that is compatible with 4g lte.", "attributes": ["coaxial cable", "4g lte"], "options": [""], "instruction_attributes": ["4g lte"], "instruction_options": [], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1ARXCX", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09MTYJ85J", "instruction": "i need a cell phone signal booster that is compatible with 4g lte.", "attributes": ["coaxial cable", "4g lte"], "options": [""], "instruction_attributes": ["4g lte"], "instruction_options": [], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1ARXCX", "worker_id": "A2RBF3IIJP15IH"}], "B09B9SSMQH": [{"asin": "B09B9SSMQH", "instruction": "get me some black sneakers in size five and a half. make sure they're made out of high-quality materials.", "attributes": ["knee high", "day comfort", "non slip", "high heel", "quality materials"], "options": ["color: black", "size: 5.5"], "instruction_attributes": ["quality materials"], "instruction_options": ["black", "5.5"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0P5CAV", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09B9SSMQH", "instruction": "get me some black sneakers in size five and a half. make sure they're made out of high-quality materials.", "attributes": ["knee high", "day comfort", "non slip", "high heel", "quality materials"], "options": ["color: black", "size: 5.5"], "instruction_attributes": ["quality materials"], "instruction_options": ["black", "5.5"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0P5CAV", "worker_id": "AR9AU5FY1S3RO"}], "B098XWSF8B": [{"asin": "B098XWSF8B", "instruction": "i would like a pair of blue medium sized shorts with a elastic waist.", "attributes": ["loose fit", "straight leg", "slim fit", "elastic waist", "short sleeve", "button closure", "everyday wear"], "options": ["color: blue", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["blue", "medium"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPWATXV", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B098XWSF8B", "instruction": "i would like a pair of blue medium sized shorts with a elastic waist.", "attributes": ["loose fit", "straight leg", "slim fit", "elastic waist", "short sleeve", "button closure", "everyday wear"], "options": ["color: blue", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["blue", "medium"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPWATXV", "worker_id": "A1WS884SI0SLO4"}], "B08DWNRVBS": [{"asin": "B08DWNRVBS", "instruction": "i am looking for a clothes rack of 22-inch size that is heavy duty and saves space.", "attributes": ["wall mounted", "heavy duty", "space saving"], "options": ["item package quantity: 1", "size: 22-inch"], "instruction_attributes": ["heavy duty", "space saving"], "instruction_options": ["22-inch"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB9EOSJ", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08DWNRVBS", "instruction": "i am looking for a clothes rack of 22-inch size that is heavy duty and saves space.", "attributes": ["wall mounted", "heavy duty", "space saving"], "options": ["item package quantity: 1", "size: 22-inch"], "instruction_attributes": ["heavy duty", "space saving"], "instruction_options": ["22-inch"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB9EOSJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B089NSX3FR": [{"asin": "B089NSX3FR", "instruction": "i would like some green size 36 shorts that are good for my gym workout.", "attributes": ["drawstring closure", "elastic waistband", "gym workout"], "options": ["color: #17 green", "size: 36"], "instruction_attributes": ["gym workout"], "instruction_options": ["#17 green", "36"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDKAHCQ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B089NSX3FR", "instruction": "i would like some green size 36 shorts that are good for my gym workout.", "attributes": ["drawstring closure", "elastic waistband", "gym workout"], "options": ["color: #17 green", "size: 36"], "instruction_attributes": ["gym workout"], "instruction_options": ["#17 green", "36"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDKAHCQ", "worker_id": "A1WS884SI0SLO4"}], "B084NVN1J6": [{"asin": "B084NVN1J6", "instruction": "i need roasted coffee beans that are dairy free and cinnamon bun flavored.", "attributes": ["keto friendly", "dairy free"], "options": ["flavor name: cinnamon bun", "size: 12 oz whole bean coffee"], "instruction_attributes": ["dairy free"], "instruction_options": ["cinnamon bun"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TPSMPM", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B084NVN1J6", "instruction": "i would like a 12 oz package of whole bean coffee beans that are keto friendly.", "attributes": ["keto friendly", "dairy free"], "options": ["flavor name: cookies 'n dreams", "size: 12 oz whole bean coffee"], "instruction_attributes": ["keto friendly"], "instruction_options": ["cookies 'n dreams", "12 oz whole bean coffee"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W1XUOT", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B084NVN1J6", "instruction": "i need roasted coffee beans that are dairy free and cinnamon bun flavored.", "attributes": ["keto friendly", "dairy free"], "options": ["flavor name: cinnamon bun", "size: 12 oz whole bean coffee"], "instruction_attributes": ["dairy free"], "instruction_options": ["cinnamon bun"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TPSMPM", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GJN7V8R": [{"asin": "B07GJN7V8R", "instruction": "i am looking for a artisan gold color flipflop having rubber sole.", "attributes": ["slip resistant", "rubber sole"], "options": ["color: artisan gold", "size: 9"], "instruction_attributes": ["rubber sole"], "instruction_options": ["artisan gold"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L846YC6O", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07GJN7V8R", "instruction": "i am looking for a artisan gold color flipflop having rubber sole.", "attributes": ["slip resistant", "rubber sole"], "options": ["color: artisan gold", "size: 9"], "instruction_attributes": ["rubber sole"], "instruction_options": ["artisan gold"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L846YC6O", "worker_id": "A1Q8PPQQCWGY0D"}], "B08P4SH2NQ": [{"asin": "B08P4SH2NQ", "instruction": "i need a usb video game capture card for my usb port.", "attributes": ["plug play", "aluminum alloy", "usb port"], "options": [""], "instruction_attributes": ["plug play", "usb port"], "instruction_options": [], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P7IUB3", "worker_id": "A19317A3X87NVM"}, {"asin": "B08P4SH2NQ", "instruction": "i need a usb video game capture card for my usb port.", "attributes": ["plug play", "aluminum alloy", "usb port"], "options": [""], "instruction_attributes": ["plug play", "usb port"], "instruction_options": [], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P7IUB3", "worker_id": "A19317A3X87NVM"}], "B00G4F22L0": [{"asin": "B00G4F22L0", "instruction": "i'm looking for a pair of classic fit silver gray scrub bottoms in large petite with an elastic waistband and drawstring closure.", "attributes": ["elastic waistband", "polyester cotton", "drawstring closure", "classic fit"], "options": ["color: silver gray", "size: large petite"], "instruction_attributes": ["elastic waistband", "drawstring closure", "classic fit"], "instruction_options": ["silver gray", "large petite"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFGZXBGE", "worker_id": "AFU00NU09CFXE"}, {"asin": "B00G4F22L0", "instruction": "i'm looking for a pair of classic fit silver gray scrub bottoms in large petite with an elastic waistband and drawstring closure.", "attributes": ["elastic waistband", "polyester cotton", "drawstring closure", "classic fit"], "options": ["color: silver gray", "size: large petite"], "instruction_attributes": ["elastic waistband", "drawstring closure", "classic fit"], "instruction_options": ["silver gray", "large petite"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFGZXBGE", "worker_id": "AFU00NU09CFXE"}], "B084R2JGMM": [{"asin": "B084R2JGMM", "instruction": "i'm looking for a 6-pack of salted caramel & dark chocolate nut bars with low sugar and simple ingredients.", "attributes": ["low sugar", "simple ingredients"], "options": ["flavor name: salted caramel & dark chocolate nut", "size: 6 bars"], "instruction_attributes": ["low sugar", "simple ingredients"], "instruction_options": ["salted caramel & dark chocolate nut", "6 bars"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI8YDSSG", "worker_id": "AFU00NU09CFXE"}, {"asin": "B084R2JGMM", "instruction": "i'm looking for a 6-pack of salted caramel & dark chocolate nut bars with low sugar and simple ingredients.", "attributes": ["low sugar", "simple ingredients"], "options": ["flavor name: salted caramel & dark chocolate nut", "size: 6 bars"], "instruction_attributes": ["low sugar", "simple ingredients"], "instruction_options": ["salted caramel & dark chocolate nut", "6 bars"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI8YDSSG", "worker_id": "AFU00NU09CFXE"}, {"asin": "B084R2JGMM", "instruction": "i would like 6 bars of low sugar chocolates", "attributes": ["low sugar", "simple ingredients"], "options": ["flavor name: milk chocolate peanut butter", "size: 6 bars"], "instruction_attributes": ["low sugar"], "instruction_options": ["6 bars"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOHBW16", "worker_id": "AHXHM1PQTRWIQ"}, {"asin": "B084R2JGMM", "instruction": "get me a dark chocolate and chilli almond snack bar that is low in sugar.", "attributes": ["low sugar", "simple ingredients"], "options": ["flavor name: dark chocolate chili almond", "size: 1.4 ounce (pack of 12)"], "instruction_attributes": ["low sugar"], "instruction_options": ["dark chocolate chili almond"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD05IR7", "worker_id": "A1NF6PELRKACS9"}], "B00EXW2FLI": [{"asin": "B00EXW2FLI", "instruction": "i want to find long-lasting eau de toilette from chanel.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZW9NCV", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B00EXW2FLI", "instruction": "i want to find long-lasting eau de toilette from chanel.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZW9NCV", "worker_id": "A345TDMHP3DQ3G"}], "B001EWEP40": [{"asin": "B001EWEP40", "instruction": "i am looking for a powder fresh mitchum anti-perspirant.", "attributes": ["anti perspirant", "clinically proven"], "options": ["size: 2.25 ounce (63 g) (pack of 6)", "style: powder fresh"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["powder fresh"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPVDG0A", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B001EWEP40", "instruction": "i am looking for a powder fresh mitchum anti-perspirant.", "attributes": ["anti perspirant", "clinically proven"], "options": ["size: 2.25 ounce (63 g) (pack of 6)", "style: powder fresh"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["powder fresh"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPVDG0A", "worker_id": "A1EREKSZAA9V7B"}], "B07G9PNW3X": [{"asin": "B07G9PNW3X", "instruction": "i need a 64 fl oz sugar free bottle of peach chipotle davinci gourmet cake batter syrup.", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: peach chipotle", "size: 64 fl oz (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["peach chipotle", "64 fl oz (pack of 1)"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGH50OI", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07G9PNW3X", "instruction": "i need a 64 fl oz sugar free bottle of peach chipotle davinci gourmet cake batter syrup.", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: peach chipotle", "size: 64 fl oz (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["peach chipotle", "64 fl oz (pack of 1)"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGH50OI", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07G9PNW3X", "instruction": "i want sugar free davinci black cherry cake batter syrup.", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: black cherry", "size: 3 pound (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["black cherry"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U85AMH", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07G9PNW3X", "instruction": "i would like a 64 fluid ounce bottle of sugar free pina colada cocktail flavored syrup.", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: pina colada cocktail", "size: 64 fl oz (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["pina colada cocktail", "64 fl oz (pack of 1)"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHAB5OD0", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07G9PNW3X", "instruction": "i would like a 14.1 ounce of toasted hazelnut syrup that is sugar free.", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: toasted hazelnut", "size: 14.1 ounce (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["toasted hazelnut", "14.1 ounce (pack of 1)"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKX1NDD", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07G9PNW3X", "instruction": "i need a 3 pound (pack of 1) cane sugar syrup which has natural flavour and is sugar free.", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: cane sugar", "size: 3 pound (pack of 1)"], "instruction_attributes": ["sugar free", "natural flavors"], "instruction_options": ["cane sugar", "3 pound (pack of 1)"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY5XU0X", "worker_id": "ASWFLI3N8X72G"}], "B07XCJ6CYY": [{"asin": "B07XCJ6CYY", "instruction": "i need a classic fit and dark heather fish aquarium t-shirt in size 2t for men.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: men", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["dark heather", "men", "2t"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVJDLX9", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07XCJ6CYY", "instruction": "i need a classic fit and dark heather fish aquarium t-shirt in size 2t for men.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: men", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["dark heather", "men", "2t"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVJDLX9", "worker_id": "A2RBF3IIJP15IH"}], "B07DLY278V": [{"asin": "B07DLY278V", "instruction": "i am interested in hand crafted hors d'oeuvres", "attributes": ["ready use", "hand crafted"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TAB2KG", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07DLY278V", "instruction": "i'm looking for hand-crafted hors d'oeurves.", "attributes": ["ready use", "hand crafted"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "33LK57MYL4FV8877CWTMW6ILV7QSZM", "worker_id": "A19317A3X87NVM"}, {"asin": "B07DLY278V", "instruction": "i am interested in hand crafted hors d'oeuvres", "attributes": ["ready use", "hand crafted"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TAB2KG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08W9KZSCX": [{"asin": "B08W9KZSCX", "instruction": "i'm looking for extra large high waist leggings that are hand washable and fleece lined.", "attributes": ["fleece lined", "hand wash", "high waist", "elastic waistband", "tummy control"], "options": ["color: 04 gray", "size: x-large"], "instruction_attributes": ["fleece lined", "hand wash", "high waist"], "instruction_options": ["x-large"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1B9XRI", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B08W9KZSCX", "instruction": "i'm looking for extra large high waist leggings that are hand washable and fleece lined.", "attributes": ["fleece lined", "hand wash", "high waist", "elastic waistband", "tummy control"], "options": ["color: 04 gray", "size: x-large"], "instruction_attributes": ["fleece lined", "hand wash", "high waist"], "instruction_options": ["x-large"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1B9XRI", "worker_id": "A3EDFA8UQT5GG8"}], "B07DYTDCGD": [{"asin": "B07DYTDCGD", "instruction": "i need a regular fit machine wash nike gym t-shrit.", "attributes": ["machine wash", "comfortable fit", "regular fit"], "options": ["color: gym red | white", "size: 3x-large-t"], "instruction_attributes": ["machine wash", "regular fit"], "instruction_options": ["gym red | white"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUA4ZDZ", "worker_id": "A19317A3X87NVM"}, {"asin": "B07DYTDCGD", "instruction": "i need a regular fit machine wash nike gym t-shrit.", "attributes": ["machine wash", "comfortable fit", "regular fit"], "options": ["color: gym red | white", "size: 3x-large-t"], "instruction_attributes": ["machine wash", "regular fit"], "instruction_options": ["gym red | white"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUA4ZDZ", "worker_id": "A19317A3X87NVM"}], "B07RYRG19Z": [{"asin": "B07RYRG19Z", "instruction": "i am looking for a medium sized toiletry bag that is denim purple and water resistant.", "attributes": ["water resistant", "oral hygiene"], "options": ["color: denim purple", "size: medium (pack of 1)"], "instruction_attributes": ["water resistant"], "instruction_options": ["denim purple", "medium (pack of 1)"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8EHNZG", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07RYRG19Z", "instruction": "i am looking for a medium size travel bag that is water resistant and denim grey in color.", "attributes": ["water resistant", "oral hygiene"], "options": ["color: denim navy blue", "size: medium (pack of 1)"], "instruction_attributes": ["water resistant"], "instruction_options": ["medium (pack of 1)"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH5G1EP", "worker_id": "A2KW17G25L25R8"}, {"asin": "B07RYRG19Z", "instruction": "i am looking for a medium sized toiletry bag that is denim purple and water resistant.", "attributes": ["water resistant", "oral hygiene"], "options": ["color: denim purple", "size: medium (pack of 1)"], "instruction_attributes": ["water resistant"], "instruction_options": ["denim purple", "medium (pack of 1)"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8EHNZG", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07RYRG19Z", "instruction": "i would like a black toiletry bag that is water resistant and a medium size.", "attributes": ["water resistant", "oral hygiene"], "options": ["color: black", "size: medium"], "instruction_attributes": ["water resistant"], "instruction_options": ["black", "medium"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS019GB", "worker_id": "A2ECRNQ3X5LEXD"}], "B00A3IFR5C": [{"asin": "B00A3IFR5C", "instruction": "i'm interested in some banana hemp cereal that is dairy - and gluten-free.", "attributes": ["non dairy", "gluten free"], "options": ["flavor name: banana hemp"], "instruction_attributes": ["non dairy", "gluten free"], "instruction_options": ["banana hemp"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40E7NX7", "worker_id": "AFU00NU09CFXE"}, {"asin": "B00A3IFR5C", "instruction": "i'm interested in some banana hemp cereal that is dairy - and gluten-free.", "attributes": ["non dairy", "gluten free"], "options": ["flavor name: banana hemp"], "instruction_attributes": ["non dairy", "gluten free"], "instruction_options": ["banana hemp"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40E7NX7", "worker_id": "AFU00NU09CFXE"}], "B08QTR1Y67": [{"asin": "B08QTR1Y67", "instruction": "i'm looking for a sky blue ring holder for my smartphone, if possible with wireless charging.", "attributes": ["hands free", "wireless charging"], "options": ["color: sky blue"], "instruction_attributes": ["wireless charging"], "instruction_options": ["sky blue"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3D9YAB", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B08QTR1Y67", "instruction": "i'm looking for a sky blue ring holder for my smartphone, if possible with wireless charging.", "attributes": ["hands free", "wireless charging"], "options": ["color: sky blue"], "instruction_attributes": ["wireless charging"], "instruction_options": ["sky blue"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3D9YAB", "worker_id": "A3EDFA8UQT5GG8"}], "B07SBX416H": [{"asin": "B07SBX416H", "instruction": "i want a nikon coolpix a1000 compact digital camera with optical zoom.", "attributes": ["high resolution", "high performance", "optical zoom"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMNAW9E", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07SBX416H", "instruction": "i want a nikon coolpix a1000 compact digital camera with optical zoom.", "attributes": ["high resolution", "high performance", "optical zoom"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMNAW9E", "worker_id": "A2RBF3IIJP15IH"}], "B078HYPVTQ": [{"asin": "B078HYPVTQ", "instruction": "i want to buy some wall sconces with a dark bronze finish.", "attributes": ["easy install", "wood finish", "glass shade", "bronze finish"], "options": ["color: dark bronze"], "instruction_attributes": ["bronze finish"], "instruction_options": ["dark bronze"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W6COUC", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B078HYPVTQ", "instruction": "i want to buy some wall sconces with a dark bronze finish.", "attributes": ["easy install", "wood finish", "glass shade", "bronze finish"], "options": ["color: dark bronze"], "instruction_attributes": ["bronze finish"], "instruction_options": ["dark bronze"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W6COUC", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B078HYPVTQ", "instruction": "globe electric wall sconce 65931 williamsburg 1 light, dark bronze, dark wood finish details, easy to install.i need you to find it in color: dark bronze with gold category", "attributes": ["easy install", "wood finish", "glass shade", "bronze finish"], "options": ["color: dark bronze with gold"], "instruction_attributes": ["easy install", "wood finish"], "instruction_options": ["dark bronze with gold"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0WFPXI", "worker_id": "A15IJ20C3R4HUO"}], "B09M3NG396": [{"asin": "B09M3NG396", "instruction": "i would like a pair of medium navy blue gym shorts that i can machine wash.", "attributes": ["daily casual", "machine wash", "moisture wicking", "wash cold", "drawstring closure", "elastic waistband", "regular fit", "tumble dry"], "options": ["color: navy blue", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy blue", "medium"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYGRLQD", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09M3NG396", "instruction": "i would like a pair of medium navy blue gym shorts that i can machine wash.", "attributes": ["daily casual", "machine wash", "moisture wicking", "wash cold", "drawstring closure", "elastic waistband", "regular fit", "tumble dry"], "options": ["color: navy blue", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy blue", "medium"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYGRLQD", "worker_id": "A1WS884SI0SLO4"}], "B09H6KRM8Q": [{"asin": "B09H6KRM8Q", "instruction": "i'm looking for hair removal with non toxic product and with eco friendly beauty salon", "attributes": ["easy apply", "eco friendly", "non toxic", "high quality", "hair removal", "beauty salon"], "options": [""], "instruction_attributes": ["eco friendly", "non toxic", "hair removal"], "instruction_options": [], "assignment_id": "37M28K1J01N18XG9DA49NC0PP2CJAZ", "worker_id": "A1DYJ7VGMNPTLB"}], "B09SQ4CSH5": [{"asin": "B09SQ4CSH5", "instruction": "i'm looking for a bathing suit for plus size women that is quick drying that comes in xx-large and the color black, if possible.", "attributes": ["quick drying", "hand wash", "polyester spandex"], "options": ["color: white", "color: brown", "color: black", "size: medium", "size: small", "size: xx-large"], "instruction_attributes": ["quick drying"], "instruction_options": ["black", "xx-large"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8VI424W", "worker_id": "A3UWM3KJYEL5XU"}], "B00719X032": [{"asin": "B00719X032", "instruction": "i'm looking for a 2-pack of moisture-wicking black and oxford sweatpants in size medium with an elastic waistband.", "attributes": ["moisture wicking", "machine wash", "elastic closure", "polyester cotton", "elastic waistband"], "options": ["size: medium", "size: x-large", "size: small", "color: 2 pack: black & oxford", "color: 2 pack: black heather& oxford", "color: 2 pack: navy & oxford"], "instruction_attributes": ["moisture wicking", "elastic waistband"], "instruction_options": ["medium", "2 pack"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275016RNP4V", "worker_id": "AFU00NU09CFXE"}], "B09CYH13HB": [{"asin": "B09CYH13HB", "instruction": "i want a set of 2 coffee bar stools which has height adjust ability in it.", "attributes": ["easy clean", "height adjustable", "high density", "pu leather", "metal legs"], "options": [""], "instruction_attributes": ["height adjustable"], "instruction_options": [], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP8J1TE9", "worker_id": "A2Z9HR2IBD75R9"}], "B01L9JSCR8": [{"asin": "B01L9JSCR8", "instruction": "i'm interested in certified organic lip scrub to remove dead skin made from natural ingredients and must be cruelty-free.", "attributes": ["cruelty free", "certified organic", "paraben free", "coconut oil", "natural ingredients", "dead skin"], "options": [""], "instruction_attributes": ["cruelty free", "certified organic", "natural ingredients", "dead skin"], "instruction_options": [], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQNGMVY6", "worker_id": "AFU00NU09CFXE"}], "B072Q7L2FP": [{"asin": "B072Q7L2FP", "instruction": "i want to buy window drapes for my living room that are machine washable. also, pick size: 108\" x 108\".", "attributes": ["machine washable", "printing technology", "living room"], "options": ["size: 108\" x 63\"", "size: 108\" x 96\"", "size: 108\" x 108\""], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["108\" x 108\""], "assignment_id": "32AT8R96GWJEM9DX69UEFE36SPWSUH", "worker_id": "A1198W1SPF1R4"}], "B01K5FNMPY": [{"asin": "B01K5FNMPY", "instruction": "can you please help me to find men's fleece jogger pant of 3x size which has elastic waist.", "attributes": ["machine wash", "drawstring closure", "elastic waist"], "options": ["size: 5x", "size: 3x-large", "size: 3x", "color: navy(marled)", "color: burgundy(marled)", "color: grey(marled)"], "instruction_attributes": ["elastic waist"], "instruction_options": ["3x"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTKAW0MU", "worker_id": "A2Z9HR2IBD75R9"}], "B01JFYGXAM": [{"asin": "B01JFYGXAM", "instruction": "i'm looking for easy to use shinning pearl smudging eye shadow stick that's 1.4g. also, choose the reddish pink one.", "attributes": ["easy use", "eye shadow"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "336YQZE836OU3ZADLBQKVTCK1K65MN", "worker_id": "A1FQDFM7BJ8GTR"}, {"asin": "B01JFYGXAM", "instruction": "i want a eye shadow stick", "attributes": ["easy use", "eye shadow"], "options": [""], "instruction_attributes": ["eye shadow"], "instruction_options": [], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN2VGOA", "worker_id": "A2Y2TURT2VEYZN"}], "B09CFY8RMK": [{"asin": "B09CFY8RMK", "instruction": "i'm looking for hair styling beauty & personal care and it will be easy to use and safe use", "attributes": ["easy use", "hair styling"], "options": [""], "instruction_attributes": ["hair styling"], "instruction_options": [], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLKX1CE9", "worker_id": "A7H5HF1XL5Z1X"}], "B096RZ5DXK": [{"asin": "B096RZ5DXK", "instruction": "i'm looking for a high quality pink or blue denture bath case that is non-toxic.", "attributes": ["non slip", "non toxic", "high quality"], "options": ["color: blue", "color: pink"], "instruction_attributes": ["non toxic", "high quality"], "instruction_options": ["blue", "pink"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TP1J0N9", "worker_id": "AFU00NU09CFXE"}], "B01LZ4VWVB": [{"asin": "B01LZ4VWVB", "instruction": "i would like to find a brown sofa table with lots of storage space for my living room.", "attributes": ["assembly required", "engineered wood", "storage space", "living room"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXPBK13H", "worker_id": "A14W0AXTJ3R19V"}], "B09KHH2274": [{"asin": "B09KHH2274", "instruction": "i'm looking for a large men's trench coat classic notched collar that have double breasted wool blend pea coat turn-down collar jacket. also, choose the black one.", "attributes": ["slim fit", "long sleeve", "daily wear"], "options": ["color: black", "color: blue", "color: a-black", "size: medium", "size: x-large", "size: large"], "instruction_attributes": ["slim fit", "daily wear"], "instruction_options": ["black", "a-black", "x-large", "large"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLWZ5CFI", "worker_id": "A59DVED5S9N9Y"}], "B09CZ939HD": [{"asin": "B09CZ939HD", "instruction": "i'm interested in black walking shoes in size 6.5 that features memory foam and good arch support.", "attributes": ["arch support", "memory foam"], "options": ["size: 9.5-10", "size: 6.5", "size: 6.5-7", "color: black", "color: pink", "color: green"], "instruction_attributes": ["arch support", "memory foam"], "instruction_options": ["6.5", "black"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7732DFBEH", "worker_id": "AFU00NU09CFXE"}], "B07Q1MXLGL": [{"asin": "B07Q1MXLGL", "instruction": "i'm looking for cotton spandex and buying options to include in large size", "attributes": ["officially licensed", "cotton spandex", "elastic waistband"], "options": ["size: small", "size: x-large", "size: large"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["large"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT745MOTB9", "worker_id": "A2RTFA55W0MBL1"}], "B09R9YFH84": [{"asin": "B09R9YFH84", "instruction": "i am looking for nuccbbly ladies camisole pajamas nightwear lingerie top shorts sleepwear", "attributes": ["hand wash", "wash cold", "machine wash", "short sleeve", "polyester spandex", "long sleeve", "teen girls"], "options": ["size: large", "size: small", "size: x-large", "color: purple", "color: red", "color: blue"], "instruction_attributes": ["short sleeve", "teen girls"], "instruction_options": ["small", "x-large", "purple", "red", "blue"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OOF6FWD", "worker_id": "A37NZ5CUEO3RX7"}], "B0797KQ21Y": [{"asin": "B0797KQ21Y", "instruction": "i am looking for a t-shirt with funny bigfoot yeti asaquatch for fit type: men in the color of slate with large size.", "attributes": ["needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "fit type: youth", "color: heather blue", "color: grass", "color: slate", "size: medium", "size: large", "size: small"], "instruction_attributes": ["classic fit"], "instruction_options": ["men", "slate", "large"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKOCDJWE2", "worker_id": "A3TMVVOMNK6Y96"}], "B09GRT76VP": [{"asin": "B09GRT76VP", "instruction": "i'm interested in knee high socks for teen girls in hot pink or light blue.", "attributes": ["knee high", "teen girls"], "options": ["color: hot pink", "color: light blue", "color: sky blue"], "instruction_attributes": ["knee high", "teen girls"], "instruction_options": ["hot pink", "light blue"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040BGAT26", "worker_id": "AFU00NU09CFXE"}], "B09RSSC2D5": [{"asin": "B09RSSC2D5", "instruction": "i want a short sleeved slim fit casual shirt in white and size large.", "attributes": ["slim fit", "fleece lined", "long sleeve", "short sleeve", "regular fit", "gym workout"], "options": ["color: blue", "color: white", "size: large", "size: x-large", "size: xx-large"], "instruction_attributes": ["slim fit", "short sleeve"], "instruction_options": ["white", "large"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKB9OIP3", "worker_id": "A3GWRDHAURRNK6"}], "B0119FXTOS": [{"asin": "B0119FXTOS", "instruction": "i need a dove bodywash suitable for senstive skin and must be plant based product.", "attributes": ["plant based", "cruelty free"], "options": ["style: deep moisture", "style: sensitive skin", "style: cucumber and green tea"], "instruction_attributes": ["plant based"], "instruction_options": ["sensitive skin"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CSDMPLS", "worker_id": "A2Z9HR2IBD75R9"}], "B09M8286VM": [{"asin": "B09M8286VM", "instruction": "i trying to find a apple 7 watch screen protector with high defintion.", "attributes": ["compatible apple", "ultra hd", "easy install", "high definition", "tempered glass"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA6RXMHH", "worker_id": "A2Z9HR2IBD75R9"}], "B09K7CDLL8": [{"asin": "B09K7CDLL8", "instruction": "i'm looking for a console table for the living room with a solid wood frame that can double as a storage unit.", "attributes": ["assembly required", "storage space", "wood frame", "solid wood", "storage unit", "living room"], "options": [""], "instruction_attributes": ["wood frame", "solid wood", "storage unit", "living room"], "instruction_options": [], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M1N494J", "worker_id": "AFU00NU09CFXE"}], "B07KC694D4": [{"asin": "B07KC694D4", "instruction": "i'm looking for strong box spring beds and i take dark gray color with king size beds", "attributes": ["assembly required", "box spring"], "options": ["color: beige", "color: dark gray", "size: full", "size: queen", "size: king"], "instruction_attributes": ["box spring"], "instruction_options": ["dark gray", "king"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0NMFM3A", "worker_id": "A2RTFA55W0MBL1"}], "B09KTNXLPX": [{"asin": "B09KTNXLPX", "instruction": "i'm looking for home & kitchen furniture with height adjustable in living room", "attributes": ["height adjustable", "pu leather", "living room"], "options": [""], "instruction_attributes": ["height adjustable", "living room"], "instruction_options": [], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBOWMOAN", "worker_id": "A1DYJ7VGMNPTLB"}], "B0771L6DB1": [{"asin": "B0771L6DB1", "instruction": "i'm working for light fixture of tools & home improvement with color black", "attributes": ["glass shade", "clear glass", "light fixture"], "options": ["color: chrome", "color: antique", "color: black"], "instruction_attributes": ["light fixture"], "instruction_options": ["black"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0UQAFG6", "worker_id": "ACU8RTAZQU1GP"}], "B09CV7BZLX": [{"asin": "B09CV7BZLX", "instruction": "i'm interested in some low-carb, high protein jerky with zero sugar and no artificial flavors.", "attributes": ["high protein", "low carb", "artificial flavors", "zero sugar"], "options": [""], "instruction_attributes": ["high protein", "low carb", "artificial flavors", "zero sugar"], "instruction_options": [], "assignment_id": "3NGMS9VZTWSGZMBL50ZGMFJOTBAFF7", "worker_id": "AFU00NU09CFXE"}], "B09F9BRYBW": [{"asin": "B09F9BRYBW", "instruction": "i'm looking for a green, x-large flannel with button closure that can be machine washed.", "attributes": ["machine wash", "button closure"], "options": ["size: small", "size: medium", "size: x-large", "color: green", "color: workwear brown"], "instruction_attributes": ["machine wash", "button closure"], "instruction_options": ["x-large", "green"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C32QI0C", "worker_id": "AFU00NU09CFXE"}], "B09D7KPP6X": [{"asin": "B09D7KPP6X", "instruction": "i'd like to purchase a pink or black wig storage bag for hair extensions.", "attributes": ["hair extensions", "dry hair"], "options": ["color: black", "color: pink"], "instruction_attributes": ["hair extensions"], "instruction_options": ["black", "pink"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADWNAMYG", "worker_id": "AFU00NU09CFXE"}], "B09QXGQZ7J": [{"asin": "B09QXGQZ7J", "instruction": "i'd like to purchase a red or black short-sleeved jumpsuit in size medium with an elastic closure.", "attributes": ["hand wash", "long sleeve", "short sleeve", "elastic closure"], "options": ["color: a black", "color: a red", "color: a yellow", "size: xx-large", "size: x-large", "size: medium"], "instruction_attributes": ["short sleeve", "elastic closure"], "instruction_options": ["a black", "a red", "medium"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWBU6UKN", "worker_id": "AFU00NU09CFXE"}], "B08LKFM7T5": [{"asin": "B08LKFM7T5", "instruction": "the glitter mascara wands make me look pretty, pink is the one to go with.", "attributes": ["easy carry", "beauty salon"], "options": ["color: black", "color: pink"], "instruction_attributes": ["easy carry"], "instruction_options": ["pink"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7J65PD1", "worker_id": "A30CGO77OY7WP0"}], "B09J4VCNY5": [{"asin": "B09J4VCNY5", "instruction": "i'm looking for a long-lasting living room set made of a wood frame and faux leather with generous lumbar support.", "attributes": ["long lasting", "lumbar support", "faux leather", "wood frame", "living room"], "options": [""], "instruction_attributes": ["long lasting", "lumbar support", "faux leather", "wood frame", "living room"], "instruction_options": [], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR39289R", "worker_id": "AFU00NU09CFXE"}], "B00VQTIZ7O": [{"asin": "B00VQTIZ7O", "instruction": "i want some flouride free toothpaste", "attributes": ["fluoride free", "alcohol free", "sulfate free"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8BSR4B", "worker_id": "A2ECRNQ3X5LEXD"}], "B01K55WVMO": [{"asin": "B01K55WVMO", "instruction": "i would like to buy a high speed point and shoot digital camera with a carrying case.", "attributes": ["high speed", "carrying case"], "options": [""], "instruction_attributes": ["high speed", "carrying case"], "instruction_options": [], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZ99RPR", "worker_id": "A1WS884SI0SLO4"}], "B07X57RFW3": [{"asin": "B07X57RFW3", "instruction": "i would like a officially licensed large black men's t-shirt made of heather cotton.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: black", "fit type: men", "size: large"], "instruction_attributes": ["officially licensed", "heathers cotton", "cotton heather"], "instruction_options": ["black", "men", "large"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX3S0U1N", "worker_id": "A1WS884SI0SLO4"}], "B06XS1WCSN": [{"asin": "B06XS1WCSN", "instruction": "i'm looking for a 150 foot plug play hdmi cable.", "attributes": ["high speed", "plug play"], "options": ["size: 150ft", "style: cmp"], "instruction_attributes": ["plug play"], "instruction_options": ["150ft"], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWEG52M", "worker_id": "A19317A3X87NVM"}], "B09B1B1DZ3": [{"asin": "B09B1B1DZ3", "instruction": "i am looking for size 12 sneakers that are black and have a rubber sole.", "attributes": ["lace closure", "rubber outsole", "rubber sole"], "options": ["color: black mono 1 arano", "size: 12"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black mono 1 arano", "12"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N1XT7Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B0176XTVTY": [{"asin": "B0176XTVTY", "instruction": "i'm looking for a plant based pancake mix which should be gluten freeand also non gmo with simple ingredients. also, choose pack of 3, 12 ounce almond flour pumpkin flavoured one.", "attributes": ["grain free", "gluten free", "shelf stable", "plant based", "non gmo", "simple ingredients"], "options": ["flavor name: almond flour pumpkin", "size: 12 ounce (pack of 3)"], "instruction_attributes": ["gluten free", "plant based", "non gmo", "simple ingredients"], "instruction_options": ["almond flour pumpkin", "12 ounce (pack of 3)"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU4FMC6", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B0176XTVTY", "instruction": "i am looking for a gluten free almond flour pancake mix that has simple ingredients.", "attributes": ["grain free", "gluten free", "shelf stable", "plant based", "non gmo", "simple ingredients"], "options": ["flavor name: almond flour original", "size: 10.7 ounce (pack of 3)"], "instruction_attributes": ["gluten free", "simple ingredients"], "instruction_options": ["almond flour original"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8VMG8Y", "worker_id": "A1EREKSZAA9V7B"}], "B097NFT33B": [{"asin": "B097NFT33B", "instruction": "i need a black dress with an imported zipper.", "attributes": ["imported zipper", "dry clean"], "options": ["color: black", "size: 0"], "instruction_attributes": ["imported zipper"], "instruction_options": ["black"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPDTSY2", "worker_id": "A19317A3X87NVM"}], "B00ESXQVAI": [{"asin": "B00ESXQVAI", "instruction": "i want to have ahi tuna jerky -lemon salt flavour made in usa , wild caught and packed in resealable bag.", "attributes": ["wild caught", "resealable bag"], "options": ["flavor name: ahi tuna \u2013 lemon salt", "size: 1.75 ounce (pack of 1)"], "instruction_attributes": ["wild caught", "resealable bag"], "instruction_options": ["ahi tuna \u2013 lemon salt"], "assignment_id": "37TRT2X24116R7L1JO45INKV8NJJBN", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B00ESXQVAI", "instruction": "i would like to buy a wild caught 1.75 ounce honey glazed ahi tuna in a resealable bag.", "attributes": ["wild caught", "resealable bag"], "options": ["flavor name: ahi tuna \u2013 honey glazed", "size: 1.75 ounce (pack of 1)"], "instruction_attributes": ["wild caught", "resealable bag"], "instruction_options": ["ahi tuna \u2013 honey glazed", "1.75 ounce (pack of 1)"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455RZ5TYW", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00ESXQVAI", "instruction": "i'm looking for some wild caught tuna jerky. can you get me the one that comes in a 1.75 ounce pack?", "attributes": ["wild caught", "resealable bag"], "options": ["flavor name: hawaiian warrior", "size: 1.75 ounce (pack of 1)"], "instruction_attributes": ["wild caught"], "instruction_options": ["1.75 ounce (pack of 1)"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA0KC84", "worker_id": "A34QZDSTKZ3JO9"}], "B07P7NH7FP": [{"asin": "B07P7NH7FP", "instruction": "i am really looking for a coaxial cable that is 3 meters long.", "attributes": ["coaxial cable", "4g lte"], "options": ["size: 3m | 10 feet"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["3m | 10 feet"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ3YWU9", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BYWCYBW": [{"asin": "B08BYWCYBW", "instruction": "i'd like to find a personalized compact mirror that's easy to carry.", "attributes": ["easy carry", "rose gold"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRL8PW6", "worker_id": "A345TDMHP3DQ3G"}], "B08H279VBZ": [{"asin": "B08H279VBZ", "instruction": "i would like to get a heavy duty brown spa stool that looks like it comes right from the beauty salon.", "attributes": ["height adjustable", "heavy duty", "beauty salon"], "options": ["color: brown"], "instruction_attributes": ["heavy duty", "beauty salon"], "instruction_options": ["brown"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9OKETO", "worker_id": "A1WS884SI0SLO4"}], "B01HLEAJJE": [{"asin": "B01HLEAJJE", "instruction": "i am looking for plant based chocolate chip cookies that have peanut butter and come in a pack of 16.", "attributes": ["plant based", "non gmo", "high fructose", "birthday cake"], "options": ["flavor name: peanut butter", "size: 4 ounce (pack of 16)"], "instruction_attributes": ["plant based"], "instruction_options": ["peanut butter", "4 ounce (pack of 16)"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GGQ3S7", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01HLEAJJE", "instruction": "i need snickerdoodle cookies that are plant based and are part of a starter pack", "attributes": ["plant based", "non gmo", "high fructose", "birthday cake"], "options": ["flavor name: snickerdoodle", "size: starter pack"], "instruction_attributes": ["plant based"], "instruction_options": ["snickerdoodle", "starter pack"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2UN5MP", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01HLEAJJE", "instruction": "i want a non gmo lenny & larry's the complete cookie starter pack.", "attributes": ["plant based", "non gmo", "high fructose", "birthday cake"], "options": ["flavor name: complete cookie starter pack", "size: starter pack"], "instruction_attributes": ["non gmo"], "instruction_options": ["complete cookie starter pack"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKOTD71", "worker_id": "A2RBF3IIJP15IH"}], "B00NLLUMOE": [{"asin": "B00NLLUMOE", "instruction": "i would like a cal king sized with extra deep pockets beige and white striped sheet and pillow case set.", "attributes": ["queen size", "white item"], "options": ["color: striped \u2013 beige", "size: extra deep pocket - cal king size"], "instruction_attributes": ["white item"], "instruction_options": ["striped \u2013 beige", "extra deep pocket - cal king size"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHVNZ4U", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00NLLUMOE", "instruction": "i am looking for queen size pillowcases that are in the color persimmon.", "attributes": ["queen size", "white item"], "options": ["color: persimmon", "size: extra deep pocket - king size"], "instruction_attributes": ["queen size"], "instruction_options": ["persimmon"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTDJ4D6", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00NLLUMOE", "instruction": "can you get me a queen sized pillowcase set in lavender?", "attributes": ["queen size", "white item"], "options": ["color: lavender", "size: twin"], "instruction_attributes": ["queen size"], "instruction_options": ["lavender"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YE5PNQ", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B00NLLUMOE", "instruction": "i am looking for a bed sheet for a queen size bed. also choose laced sky blue color.", "attributes": ["queen size", "white item"], "options": ["color: laced sky blue", "size: rv | short queen"], "instruction_attributes": ["queen size"], "instruction_options": ["laced sky blue"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI3R3TR", "worker_id": "A2HMEGTAFO0CS8"}], "B08RDH5JZ3": [{"asin": "B08RDH5JZ3", "instruction": "i need a printed backdrop for digital photography that is 3 by 5 feet.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 15", "size: 3x5 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["printed backdrop 15", "3x5 ft"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIAJFVR", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08RDH5JZ3", "instruction": "i am looking for a printed backdrop 07 colored lightweight backgrounds for digital photography. also, choose a 5x7 ft size.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 07", "size: 5x7 ft"], "instruction_attributes": ["light weight", "digital photography"], "instruction_options": ["printed backdrop 07", "5x7 ft"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA742SJ", "worker_id": "A9ZM1P6LBW79"}, {"asin": "B08RDH5JZ3", "instruction": "i'm looking for vinyl digital photography with more art work.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 01", "size: 6x9 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["printed backdrop 01"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDPFK5M", "worker_id": "A21IUUHBSEVB56"}], "B01HSFN3QM": [{"asin": "B01HSFN3QM", "instruction": "i am looking for some dining room barstools that are gray vinyl and have a gold base.", "attributes": ["contemporary style", "dining room"], "options": ["color: gray vinyl", "style: gold base"], "instruction_attributes": ["dining room"], "instruction_options": ["gray vinyl", "gold base"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWQL1C8", "worker_id": "A2ECRNQ3X5LEXD"}], "B083BL6W3V": [{"asin": "B083BL6W3V", "instruction": "i am looking for a double sided home office desk.", "attributes": ["double sided", "living room"], "options": [""], "instruction_attributes": ["double sided"], "instruction_options": [], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYMWHVL", "worker_id": "A2ECRNQ3X5LEXD"}], "B0953JW5CQ": [{"asin": "B0953JW5CQ", "instruction": "i would like to buy a x-large purple cardigan that i can hand wash in the sink.", "attributes": ["hand wash", "short sleeve", "high heel"], "options": ["color: purple", "size: x-large"], "instruction_attributes": ["hand wash"], "instruction_options": ["purple", "x-large"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTJPOQM", "worker_id": "A1WS884SI0SLO4"}], "B08SQHTMPR": [{"asin": "B08SQHTMPR", "instruction": "i am looking for a kahuna colored capri pant that has a relaxed fit and is in a size 20 plus.", "attributes": ["long lasting", "day comfort", "machine wash", "relaxed fit", "imported zipper", "cotton spandex", "button closure"], "options": ["color: kahuna", "size: 20 plus"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["kahuna", "20 plus"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUB23R8", "worker_id": "A2ECRNQ3X5LEXD"}], "B01N1IZEXC": [{"asin": "B01N1IZEXC", "instruction": "i want some relaxed jeans that are a comfortable fit in a size 46w by 34l and are in the color victoria", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: victoria", "fit type: relaxed", "size: 46w x 34l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["victoria", "relaxed", "46w x 34l"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1052IC", "worker_id": "A2ECRNQ3X5LEXD"}], "B09B2SJZZF": [{"asin": "B09B2SJZZF", "instruction": "i would like super soft throw pillows in the color frydek alocasia obsidian.", "attributes": ["super soft", "living room"], "options": ["color: frydek alocasia obsidian"], "instruction_attributes": ["super soft"], "instruction_options": ["frydek alocasia obsidian"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL8412FAX7", "worker_id": "A2ECRNQ3X5LEXD"}], "B07DZ3PKYT": [{"asin": "B07DZ3PKYT", "instruction": "i would like a 3 pack of classic long lasting soap that's cruelty free.", "attributes": ["plant based", "cruelty free", "sulfate free", "paraben free", "long lasting"], "options": ["scent: classics", "size: 5.8 ounce (pack of 3)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["classics", "5.8 ounce (pack of 3)"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB422AQQ", "worker_id": "A1WS884SI0SLO4"}], "B09RSFNQL6": [{"asin": "B09RSFNQL6", "instruction": "i am looking for some light weight boxers that are multicolored and in a large size", "attributes": ["light weight", "hand wash", "fashion design"], "options": ["color: b multicolor", "size: large"], "instruction_attributes": ["light weight"], "instruction_options": ["b multicolor", "large"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATYS37R", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PV6XG98": [{"asin": "B09PV6XG98", "instruction": "i need cupcake toppers for a birthday party.", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZHP05S", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZHMJDG8": [{"asin": "B07ZHMJDG8", "instruction": "i would like to buy a travel size cicaronic variety pack that comes with nourishing hyaluronic acid.", "attributes": ["travel size", "hyaluronic acid"], "options": ["color: cicaronic variety pack", "style name: vitaronic (nourishing)"], "instruction_attributes": ["travel size", "hyaluronic acid"], "instruction_options": ["cicaronic variety pack", "vitaronic (nourishing)"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTFGV5X", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07ZHMJDG8", "instruction": "i am looking for cream hyaluronic acid in peptaronic cream", "attributes": ["travel size", "hyaluronic acid"], "options": ["color: peptaronic cream", "style name: peptaronic (hydrating)"], "instruction_attributes": ["hyaluronic acid"], "instruction_options": ["peptaronic cream"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1O0ITO", "worker_id": "A2MSIFDLOHI1UT"}], "B078XRDP54": [{"asin": "B078XRDP54", "instruction": "i'm looking for a medium sized loose fit tank top. also, look for tie dye navy one", "attributes": ["loose fit", "gym workout"], "options": ["color: tie dye navy", "size: medium"], "instruction_attributes": ["loose fit"], "instruction_options": ["tie dye navy", "medium"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADDHHA8", "worker_id": "AR0VJ5XRG16UJ"}], "B098K1NFFM": [{"asin": "B098K1NFFM", "instruction": "i am looking for a grey box spring bed that is a twin size.", "attributes": ["queen size", "box spring", "wood frame", "living room"], "options": ["color: grey", "size: twin"], "instruction_attributes": ["box spring"], "instruction_options": ["grey", "twin"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HKUWOM", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MTTT87L": [{"asin": "B09MTTT87L", "instruction": "i am looking for a christmas top that is long sleeved and is a size small.", "attributes": ["quick drying", "machine washable", "short sleeve", "long sleeve", "laundry bag", "daily wear"], "options": ["color: snk-xmas tops a151-pink", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["snk-xmas tops a151-pink", "small"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YUSEHH", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SF1XHMM": [{"asin": "B09SF1XHMM", "instruction": "i'm looking for black closed toe women's sandals.", "attributes": ["closed toe", "ankle strap"], "options": ["color: a3 - black", "size: 7.5 wide"], "instruction_attributes": ["closed toe"], "instruction_options": ["a3 - black"], "assignment_id": "3URFVVM16GSBNLZB11OMB709G4FUZ8", "worker_id": "A19317A3X87NVM"}, {"asin": "B09SF1XHMM", "instruction": "i need some black ankle strap flats that are in a size 9 wide.", "attributes": ["closed toe", "ankle strap"], "options": ["color: a11 - black", "size: 9 wide"], "instruction_attributes": ["ankle strap"], "instruction_options": ["a11 - black", "9 wide"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1Z64PA2", "worker_id": "A2ECRNQ3X5LEXD"}], "B095BNV8FY": [{"asin": "B095BNV8FY", "instruction": "i am looking for living room throws that are a rose color and are in 50\" by 60\".", "attributes": ["machine washable", "living room"], "options": ["color: rose2", "size: 50\"x60\""], "instruction_attributes": ["living room"], "instruction_options": ["rose2", "50\"x60\""], "assignment_id": "3HSYG7LRBU82VUVD7MHAI53YA8SKKB", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GDS8XRQ": [{"asin": "B07GDS8XRQ", "instruction": "i would like an oil free foundation in the shade 175 natural ochre that is one ounce.", "attributes": ["oil free", "long lasting", "high quality"], "options": ["color: 175 natural ochre", "size: 1.0 fluid ounce"], "instruction_attributes": ["oil free"], "instruction_options": ["175 natural ochre", "1.0 fluid ounce"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SIVIT3S", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07GDS8XRQ", "instruction": "i want to get to get long lasting foundation that is in color 380 rich ginger.", "attributes": ["oil free", "long lasting", "high quality"], "options": ["color: 380 rich ginger", "size: 1.0 fluid ounce"], "instruction_attributes": ["long lasting"], "instruction_options": ["380 rich ginger"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4XX1GPH", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B07GDS8XRQ", "instruction": "i need shell colored and oil free revlon colorstay liquid foundation makeup.", "attributes": ["oil free", "long lasting", "high quality"], "options": ["color: 285 shell", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["285 shell"], "assignment_id": "3JW0YLFXR4QKLUJBLEJGURROKQ4WWH", "worker_id": "A2RBF3IIJP15IH"}], "B0127XRALY": [{"asin": "B0127XRALY", "instruction": "i would like some bath salts that are for sensitive skin and that are eucalyptus.", "attributes": ["fragrance free", "sensitive skin"], "options": ["scent: eucalyptus"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["eucalyptus"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6T8UNMQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07XZ8MDQ5": [{"asin": "B07XZ8MDQ5", "instruction": "i would like a loose fit tunic that is lavender in the size 6x.", "attributes": ["machine washable", "loose fit", "daily wear"], "options": ["color: lavender", "size: 6x"], "instruction_attributes": ["loose fit"], "instruction_options": ["lavender", "6x"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CH9QNB1", "worker_id": "A2ECRNQ3X5LEXD"}], "B081376463": [{"asin": "B081376463", "instruction": "i need glitter cupcake picks in rose gold for my daughter's birthday party.", "attributes": ["baby shower", "cupcake picks"], "options": ["color: rose gold"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["rose gold"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WOV92CY", "worker_id": "A19317A3X87NVM"}], "B082KWFV79": [{"asin": "B082KWFV79", "instruction": "i need a high quality skin care tool.", "attributes": ["non toxic", "high quality", "hyaluronic acid"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40CJNXF", "worker_id": "A2ECRNQ3X5LEXD"}], "B0794RJW4K": [{"asin": "B0794RJW4K", "instruction": "i'm looking for a certified refurbished hd 8 tablet with quad core processor. also, choose 32 gb storage capacity, yellow colored one with 1 year of amazon kids+ subscription.", "attributes": ["certified refurbished", "hands free", "quad core"], "options": ["color: yellow", "digital storage capacity: 32 gb", "style: with 1 year of amazon kids+"], "instruction_attributes": ["certified refurbished", "quad core"], "instruction_options": ["yellow", "32 gb"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLCQF2J", "worker_id": "AR0VJ5XRG16UJ"}], "B09NTKVL5J": [{"asin": "B09NTKVL5J", "instruction": "i would like a b-pink bomber jacket that has a relaxed fit and is a size small.", "attributes": ["quality materials", "relaxed fit", "long sleeve"], "options": ["color: b-pink", "size: small"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["b-pink", "small"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BEE8X0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09D8RX28J": [{"asin": "B09D8RX28J", "instruction": "i'm looking for a long lasting silver laptop.", "attributes": ["long lasting", "core i5", "intel core"], "options": ["capacity: 512gb", "color: silver", "configuration: 15.6\" | i5 11th gen | mystic blue"], "instruction_attributes": ["long lasting"], "instruction_options": ["silver"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AB9TSC", "worker_id": "A19317A3X87NVM"}], "B07D5ZJFQV": [{"asin": "B07D5ZJFQV", "instruction": "i am looking for gluten free popcorn in an 8 pack that is a savory variety pack", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": ["flavor: savory variety pack", "size: 0.9 ounce (pack of 8)", "style: popcorn"], "instruction_attributes": ["gluten free"], "instruction_options": ["savory variety pack", "0.9 ounce (pack of 8)"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQ7JKE6", "worker_id": "A2ECRNQ3X5LEXD"}], "B09M8L7G7V": [{"asin": "B09M8L7G7V", "instruction": "i would like to get a four drawer linen night stand with a lot of storage space.", "attributes": ["easy assemble", "steel frame", "storage space"], "options": ["color: linen", "size: 4 teir (4-drawer)"], "instruction_attributes": ["storage space"], "instruction_options": ["linen", "4 teir (4-drawer)"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21I0QF4", "worker_id": "A1WS884SI0SLO4"}], "B074NMGP2P": [{"asin": "B074NMGP2P", "instruction": "i would like to buy a blu ray ac adapter.", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW63OVVA", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B074NMGP2P", "instruction": "i'm looking for ac adapter with blu ray and has output protection.", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["output protection", "blu ray"], "instruction_options": [], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQSCB4B", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B074NMGP2P", "instruction": "i am interested in ac adapters with output protection.", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N3RT7W", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FZ8B61T": [{"asin": "B09FZ8B61T", "instruction": "i would like to get a size 8.5 women's rubber sole running shoe preferably in a black purple.", "attributes": ["anti slip", "day comfort", "rubber sole"], "options": ["color: black purple plaid b", "size: 8.5 women | 7 men"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YWZ0T47", "worker_id": "A1WS884SI0SLO4"}], "B09C5HBXNS": [{"asin": "B09C5HBXNS", "instruction": "i need a living room end table that is 20.91 by 24 inches.", "attributes": ["space saving", "easy clean", "living room"], "options": ["size: 20x9.1x24 inch"], "instruction_attributes": ["living room"], "instruction_options": ["20x9.1x24 inch"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTCTV54", "worker_id": "A2ECRNQ3X5LEXD"}], "B00IS5V1SE": [{"asin": "B00IS5V1SE", "instruction": "i'm looking for 8.12 fluid ounces of sulfate-free shampoo that helps prevent hair loss.", "attributes": ["clinically proven", "sulfate free", "dry hair", "hair loss", "natural hair", "hair growth"], "options": ["size: 8.12 fl oz (pack of 1)"], "instruction_attributes": ["sulfate free", "hair loss"], "instruction_options": ["8.12 fl oz (pack of 1)"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZOLZJL", "worker_id": "A345TDMHP3DQ3G"}], "B074K2BYWX": [{"asin": "B074K2BYWX", "instruction": "i am looking for some hair pins that are rose gold.", "attributes": ["high quality", "rose gold"], "options": [""], "instruction_attributes": ["rose gold"], "instruction_options": [], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV6A8V7", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q2TDFWV": [{"asin": "B09Q2TDFWV", "instruction": "i am looking for a blue and green bluetooth wireless ps3 controller with a charger cable.", "attributes": ["high performance", "wireless bluetooth"], "options": ["color: blue+green"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["blue+green"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HLFWO9", "worker_id": "A1EREKSZAA9V7B"}], "B0722SK15V": [{"asin": "B0722SK15V", "instruction": "i would like a 18 x24 nero black mirror that can be mounted on my bathroom wall.", "attributes": ["wall mounted", "wood frame"], "options": ["color: nero black", "size: glass size 18x24"], "instruction_attributes": ["wall mounted"], "instruction_options": ["nero black", "glass size 18x24"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVCTTUZ", "worker_id": "A1WS884SI0SLO4"}], "B09CQ1X43J": [{"asin": "B09CQ1X43J", "instruction": "i want to find an led light strip that also features a usb port.", "attributes": ["plug play", "usb port"], "options": [""], "instruction_attributes": ["usb port"], "instruction_options": [], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVYRADIC", "worker_id": "A345TDMHP3DQ3G"}], "B07CRKFF9C": [{"asin": "B07CRKFF9C", "instruction": "i would like to get some portable bluetooth speakers with stereo sound.", "attributes": ["easy carry", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0JVJ8P", "worker_id": "A1WS884SI0SLO4"}], "B0823W298C": [{"asin": "B0823W298C", "instruction": "i am looking for a bookcase that is made of engineered wood.", "attributes": ["assembly required", "white finish", "engineered wood"], "options": [""], "instruction_attributes": ["engineered wood"], "instruction_options": [], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM9V4I1Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B008KM9BW8": [{"asin": "B008KM9BW8", "instruction": "i want to buy a hair brush for dry hair that is small size.", "attributes": ["long lasting", "hair styling", "dry hair", "hair growth", "hair loss"], "options": ["color: c-blue", "size: small (pack of 1)"], "instruction_attributes": ["dry hair"], "instruction_options": ["small (pack of 1)"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFLUE3M", "worker_id": "A2YNPKYEFDZ6C9"}], "B09MZQV3QB": [{"asin": "B09MZQV3QB", "instruction": "i'm trying to find a 30-count package of strawberry beet snack bars that my toddler would love. the bars must be nut and dairy free.", "attributes": ["gluten free", "non gmo", "bpa free", "shelf stable", "nut free", "dairy free"], "options": ["flavor name: strawberry beet", "size: 30 count"], "instruction_attributes": ["nut free", "dairy free"], "instruction_options": ["strawberry beet", "30 count"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2E3L5N", "worker_id": "A345TDMHP3DQ3G"}], "B07Z5H7CYX": [{"asin": "B07Z5H7CYX", "instruction": "i would like to buy to some fat free non gmo original beef jerky.", "attributes": ["plant based", "non gmo", "gluten free", "fat free", "ready eat"], "options": ["flavor name: beef - original"], "instruction_attributes": ["non gmo", "fat free"], "instruction_options": ["beef - original"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYCU6LA", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07Z5H7CYX", "instruction": "i would like a bag of original beef jerky that is non gmo.", "attributes": ["plant based", "non gmo", "gluten free", "fat free", "ready eat"], "options": ["flavor name: beef - original"], "instruction_attributes": ["non gmo"], "instruction_options": ["beef - original"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CE90VZ", "worker_id": "A1WS884SI0SLO4"}], "B09PTZYPDZ": [{"asin": "B09PTZYPDZ", "instruction": "i would like to buy a a34 colored 9x6 foot photo background that's light weight to move.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a34", "size: 9x6ft | 2.7x1.8m"], "instruction_attributes": ["light weight"], "instruction_options": ["a34", "9x6ft | 2.7x1.8m"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW2IS8O", "worker_id": "A1WS884SI0SLO4"}], "B08VF32TK7": [{"asin": "B08VF32TK7", "instruction": "i would like to buy three chairs for my dining room that i can assemble at home.", "attributes": ["button tufted", "assembly required", "living room", "dining room"], "options": ["item package quantity: 3"], "instruction_attributes": ["assembly required", "dining room"], "instruction_options": ["3"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKC62H7A", "worker_id": "A1WS884SI0SLO4"}], "B08QFZ7L6X": [{"asin": "B08QFZ7L6X", "instruction": "i would like to buy a bronze table lamp for my living room.", "attributes": ["bronze finish", "living room"], "options": [""], "instruction_attributes": ["bronze finish", "living room"], "instruction_options": [], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSDN263", "worker_id": "A1WS884SI0SLO4"}], "B08VJ2JV5S": [{"asin": "B08VJ2JV5S", "instruction": "i need teeth whitening strips that are a size 1.2 by 1.5 mm.", "attributes": ["teeth whitening", "easy carry", "oral hygiene"], "options": ["color: size1.2-1.5mm"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["size1.2-1.5mm"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJYJ7GRZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B0839MQ8Y8": [{"asin": "B0839MQ8Y8", "instruction": "i need a quad core white tablet that has 64gb of storage.", "attributes": ["dual band", "hands free", "quad core"], "options": ["color: white", "digital storage capacity: 64 gb", "offer type: without lockscreen ads", "style: with case & screen protector (2-pack)"], "instruction_attributes": ["quad core"], "instruction_options": ["white", "64 gb"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7K63DPO", "worker_id": "A2ECRNQ3X5LEXD"}], "B07VS7S6NN": [{"asin": "B07VS7S6NN", "instruction": "i need anti slip sneakers that are leopard in a size 7.", "attributes": ["anti slip", "rubber sole"], "options": ["color: leopard", "size: 7"], "instruction_attributes": ["anti slip"], "instruction_options": ["leopard", "7"], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZRNCNO", "worker_id": "A2ECRNQ3X5LEXD"}], "B099J3NKC3": [{"asin": "B099J3NKC3", "instruction": "i'm looking for some hair cutting shears.", "attributes": ["hair salon", "hair cutting", "dry hair"], "options": ["pattern name: 6\" thinning"], "instruction_attributes": ["hair cutting"], "instruction_options": ["6\" thinning"], "assignment_id": "3PIWWX1FJUGC9QJD7GHMGB38GQ7JJJ", "worker_id": "A19317A3X87NVM"}], "B07QH7TX43": [{"asin": "B07QH7TX43", "instruction": "i am looking for dried strawberries and pineapple that are organic", "attributes": ["non gmo", "usda organic", "low calorie"], "options": ["flavor: strawberries + pineapple", "size: strawberries 1.2 ounce & roasted corn 1....", "style: bundle"], "instruction_attributes": ["usda organic"], "instruction_options": ["strawberries + pineapple"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0RWPXP", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07QH7TX43", "instruction": "i want to buy some dried strawberries with corn. get the twelve pack bundle of 1.2 ounce bags. make sure it's low calorie, usda organic, and non-gmo.", "attributes": ["non gmo", "usda organic", "low calorie"], "options": ["flavor: strawberries + corn", "size: 1.2 ounce (pack of 12)", "style: bundle"], "instruction_attributes": ["non gmo", "usda organic", "low calorie"], "instruction_options": ["strawberries + corn", "1.2 ounce (pack of 12)", "bundle"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733J6EBO", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07QH7TX43", "instruction": "i want some dried bananas and strawberries. make sure they're usda organic.", "attributes": ["non gmo", "usda organic", "low calorie"], "options": ["flavor: bananas and strawberries", "size: 1 count (pack of 1)", "style: bag"], "instruction_attributes": ["usda organic"], "instruction_options": ["bananas and strawberries"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWXW5TT", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07QH7TX43", "instruction": "i want low calories usda organic", "attributes": ["non gmo", "usda organic", "low calorie"], "options": ["flavor: mangoes", "size: 1.3 ounce (pack of 8)", "style: bag"], "instruction_attributes": ["usda organic"], "instruction_options": ["mangoes"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJOIZ8E", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B07QH7TX43", "instruction": "i would like a bundle of 1.2 ounce bag of usda organic pomegranate arils.", "attributes": ["non gmo", "usda organic", "low calorie"], "options": ["flavor: pomegranate arils", "size: 1.2 ounce (pack of 12)", "style: bundle"], "instruction_attributes": ["usda organic"], "instruction_options": ["pomegranate arils", "1.2 ounce (pack of 12)", "bundle"], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOODVYE", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07QH7TX43", "instruction": "i want a bundle of non gmo natierra organic dried mango cheeks.", "attributes": ["non gmo", "usda organic", "low calorie"], "options": ["flavor: chocolate strawberry slices", "size: 1.8 ounce (pack of 12)", "style: bundle"], "instruction_attributes": ["non gmo"], "instruction_options": ["bundle"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKK4VPG", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07QH7TX43", "instruction": "look for this snack natierra organic dried strawberries + pomegranate arils, low calorie if is possible.", "attributes": ["non gmo", "usda organic", "low calorie"], "options": ["flavor: strawberries + pomegranate arils", "size: 1.3 ounce (pack of 4)", "style: bag"], "instruction_attributes": ["low calorie"], "instruction_options": ["strawberries + pomegranate arils"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BLCJVI", "worker_id": "A15IJ20C3R4HUO"}], "B08V8VJF6L": [{"asin": "B08V8VJF6L", "instruction": "i would like to get a 8 + 256 gig quad core desktop mini computer.", "attributes": ["dual band", "ultra hd", "easy carry", "high definition", "quad core"], "options": ["size: j4125 | 8gb+256gb"], "instruction_attributes": ["quad core"], "instruction_options": ["j4125 | 8gb+256gb"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DQTTOA", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08V8VJF6L", "instruction": "i am looking for dual band desktops in size j4125", "attributes": ["dual band", "ultra hd", "easy carry", "high definition", "quad core"], "options": ["size: j4125 | 8gb+256gb"], "instruction_attributes": ["dual band"], "instruction_options": ["j4125 | 8gb+256gb"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA8GDMHD", "worker_id": "A16M39T60N60NO"}], "B074SQXBPW": [{"asin": "B074SQXBPW", "instruction": "i would like to get a 25.36 ounce passion fruit syrup made from natural ingredients.", "attributes": ["natural ingredients", "perfect gift"], "options": ["flavor name: passion fruit", "size: 25.36 fl oz (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["passion fruit", "25.36 fl oz (pack of 1)"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKLLGSI", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B074SQXBPW", "instruction": "i would like a 25.4 fluid ounce bottle of hot butter rum syrup made from natural ingredients.", "attributes": ["natural ingredients", "perfect gift"], "options": ["flavor name: hot buttered rum", "size: 25.4 fl oz (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["hot buttered rum", "25.4 fl oz (pack of 1)"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LA7O17", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B074SQXBPW", "instruction": "i need a 25.4 fl oz paradise blend flavor syrup that has natural ingredients", "attributes": ["natural ingredients", "perfect gift"], "options": ["flavor name: paradise blend", "size: 25.4 fl oz (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["paradise blend", "25.4 fl oz (pack of 1)"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQA3KV9", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NNWGJMY": [{"asin": "B07NNWGJMY", "instruction": "i'm looking for a wood frame dining chair with solid wood legs.", "attributes": ["wood frame", "solid wood"], "options": ["color: grey", "size: dining side chair"], "instruction_attributes": ["wood frame", "solid wood"], "instruction_options": ["dining side chair"], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVYS7IDG", "worker_id": "A19317A3X87NVM"}], "B00IAYFD0K": [{"asin": "B00IAYFD0K", "instruction": "i'm looking for a high speed compact card for the usb reader.", "attributes": ["1080p hd", "high speed"], "options": ["capacity: 64 gb", "style: cfexpress + usb reader"], "instruction_attributes": ["high speed"], "instruction_options": ["cfexpress + usb reader"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0J2ACE", "worker_id": "A19317A3X87NVM"}], "B09S9Z9CNN": [{"asin": "B09S9Z9CNN", "instruction": "i need a nail drill for dead skin that comes in a size c.", "attributes": ["nail polish", "dead skin"], "options": ["color: nail drill bits set 2", "size: c"], "instruction_attributes": ["dead skin"], "instruction_options": ["nail drill bits set 2", "c"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR437UFE", "worker_id": "A2ECRNQ3X5LEXD"}], "B093FZ2SGF": [{"asin": "B093FZ2SGF", "instruction": "i am looking for some ready to eat jerky that is very hot and comes in a ten pack.", "attributes": ["ready eat", "great gift"], "options": ["flavor name: new thick & juicy extremely hot beef jerky", "size: 10 pack"], "instruction_attributes": ["ready eat"], "instruction_options": ["new thick & juicy extremely hot beef jerky", "10 pack"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRKXBZZ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B093FZ2SGF", "instruction": "i would like a pack of spicy sriracha bacon jerky that is ready to eat.", "attributes": ["ready eat", "great gift"], "options": ["flavor name: spicy sriracha bacon jerky", "size: 1 pack"], "instruction_attributes": ["ready eat"], "instruction_options": ["spicy sriracha bacon jerky", "1 pack"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1PGTIH", "worker_id": "A1WS884SI0SLO4"}], "B09QFJY8N1": [{"asin": "B09QFJY8N1", "instruction": "i'd like a stainless steel piercing kit.", "attributes": ["stainless steel", "beauty salon"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60GYAAT", "worker_id": "A22VGT2F28LTWC"}], "B07RLVXV5B": [{"asin": "B07RLVXV5B", "instruction": "i am looking for a headphones case that is apple compatible and is navy blue colored.", "attributes": ["dust proof", "compatible apple"], "options": ["color: a-navy blue"], "instruction_attributes": ["compatible apple"], "instruction_options": ["a-navy blue"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9L3788", "worker_id": "A2ECRNQ3X5LEXD"}], "B075TGSSSS": [{"asin": "B075TGSSSS", "instruction": "i am looking for a pack of six one ounce vegetable crisps that are plant based and cheddar flavor.", "attributes": ["nut free", "plant based", "gluten free", "non gmo", "low calorie"], "options": ["flavor name: cheddar cheese", "size: 1 ounce (pack of 6)"], "instruction_attributes": ["plant based"], "instruction_options": ["cheddar cheese", "1 ounce (pack of 6)"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNE97XIJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B094N33C2S": [{"asin": "B094N33C2S", "instruction": "i want to buy cupcake toppers that are for a birthday party.", "attributes": ["baby shower", "party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6X0G5V", "worker_id": "A2YNPKYEFDZ6C9"}], "B08597FCCC": [{"asin": "B08597FCCC", "instruction": "i would like to buy a heavy duty gray carrying case for my x box controller.", "attributes": ["heavy duty", "carrying case"], "options": ["color: grey"], "instruction_attributes": ["heavy duty", "carrying case"], "instruction_options": ["grey"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR6474F3HQ", "worker_id": "A1WS884SI0SLO4"}], "B09Q23Z72W": [{"asin": "B09Q23Z72W", "instruction": "i'm looking for a mid century coffee table for my living room.", "attributes": ["mid century", "living room"], "options": [""], "instruction_attributes": ["mid century", "living room"], "instruction_options": [], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ5VTKC0", "worker_id": "A36LOA6VLJU157"}], "B083J8SQD2": [{"asin": "B083J8SQD2", "instruction": "i'm looking for a burgundy colored small men's tank top with a relaxed fit.", "attributes": ["machine wash", "polyester spandex", "relaxed fit"], "options": ["color: burgundy", "size: small"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["burgundy", "small"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TDY3N3", "worker_id": "A345TDMHP3DQ3G"}], "B071Y1WJK5": [{"asin": "B071Y1WJK5", "instruction": "i would like to have two of a fine mist long lasting beauty case.", "attributes": ["bpa free", "long lasting", "travel bottles"], "options": ["color: fine mist", "size: pack of 2"], "instruction_attributes": ["long lasting"], "instruction_options": ["fine mist", "pack of 2"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y2MVI9", "worker_id": "A1WS884SI0SLO4"}], "B096P4161Q": [{"asin": "B096P4161Q", "instruction": "i need a fast charging 10 foot charger for my car that is in the color tarnish.", "attributes": ["fast charging", "high speed"], "options": ["color: tarnish", "size: 10foot"], "instruction_attributes": ["fast charging"], "instruction_options": ["tarnish", "10foot"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYPVVH4", "worker_id": "A2ECRNQ3X5LEXD"}], "B08ZMH7PM3": [{"asin": "B08ZMH7PM3", "instruction": "i need a freezed dried meal kit that is veggie chili.", "attributes": ["freeze dried", "shelf stable", "ready eat"], "options": ["flavor name: f.d.z #14 veggie chili"], "instruction_attributes": ["freeze dried"], "instruction_options": ["f.d.z #14 veggie chili"], "assignment_id": "34PGFRQONZLYFAJCEF0151XGIQ9JWF", "worker_id": "A2ECRNQ3X5LEXD"}], "B001A7IJA0": [{"asin": "B001A7IJA0", "instruction": "i want to get some straight leg jeans in 36 waist and 32 length. the color needs to be medium stone washed with an art deco stitch back pocket embroidery.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: medium stone wash with art deco stitch back pocket embroidery", "size: 36w x 32l"], "instruction_attributes": ["straight leg"], "instruction_options": ["medium stone wash with art deco stitch back pocket embroidery", "36w x 32l"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATZ0371", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B001A7IJA0", "instruction": "i am looking for a straight leg jean. i prefer it to be blue.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: blue", "size: 32w x 30l"], "instruction_attributes": ["straight leg"], "instruction_options": ["blue"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KSO7E2", "worker_id": "A1NF6PELRKACS9"}], "B09NMFCSV8": [{"asin": "B09NMFCSV8", "instruction": "i need a tempered glass window film two pack in the color 91768059675860000 and 23.6 in by 23.6 in", "attributes": ["tempered glass", "dining room"], "options": ["color: 917680596758560000", "size: (width\uff0923.6in x (length)23.6in x 2pcs"], "instruction_attributes": ["tempered glass"], "instruction_options": ["917680596758560000", "(width\uff0923.6in x (length)23.6in x 2pcs"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOHSPH6C", "worker_id": "A2ECRNQ3X5LEXD"}], "B096KGGKQ5": [{"asin": "B096KGGKQ5", "instruction": "i am looking for a case for my smartwatch that is tempered glass and pink rose gold in a 41 mm size.", "attributes": ["compatible apple", "easy install", "glass screen", "tempered glass"], "options": ["color: pinkroseglod | redroseglod", "size: 41mm"], "instruction_attributes": ["tempered glass"], "instruction_options": ["pinkroseglod | redroseglod", "41mm"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNREPT4", "worker_id": "A2ECRNQ3X5LEXD"}], "B00CA6X50Y": [{"asin": "B00CA6X50Y", "instruction": "i'm looking for a straight leg, button closure type jeans. also choose nail loop knot designed big and tall fit type with size 33w*32l one.", "attributes": ["straight leg", "button closure", "cotton spandex"], "options": ["color: (new) nail loop knot", "fit type: big & tall", "size: 33w x 32l"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTRYTA0H", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B00CA6X50Y", "instruction": "i'm looking for a straight leg men's jeans made of cotton spandex material with button closure. also choose big and tall, 443 * 32l with shooting star one.", "attributes": ["straight leg", "button closure", "cotton spandex"], "options": ["color: shooting star", "fit type: big & tall", "size: 44w x 32l"], "instruction_attributes": ["straight leg", "button closure", "cotton spandex"], "instruction_options": ["shooting star", "big & tall", "44w x 32l"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1PJF67", "worker_id": "AR0VJ5XRG16UJ"}], "B07CCHTLJD": [{"asin": "B07CCHTLJD", "instruction": "i am looking for a variety pack of dairy free granola bars that are 48 in count.", "attributes": ["dairy free", "gluten free", "0g trans"], "options": ["flavor name: variety pack", "size: 48 count (pack of 1)"], "instruction_attributes": ["dairy free"], "instruction_options": ["variety pack", "48 count (pack of 1)"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXLZOEAS", "worker_id": "A2ECRNQ3X5LEXD"}], "B07TB2PQP8": [{"asin": "B07TB2PQP8", "instruction": "i am looking for a background for photography that is easy to carry.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3KV9ZO", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DDG1ZJB": [{"asin": "B08DDG1ZJB", "instruction": "i would like a green tea long lasting lip balm.", "attributes": ["long lasting", "certified organic", "plant based", "green tea"], "options": ["flavor name: chai spice, green tea, coffee bean - bun..."], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSG7AS9L", "worker_id": "A1WS884SI0SLO4"}], "B08XM81S7M": [{"asin": "B08XM81S7M", "instruction": "i would like to buy a four pack of easy use 1.75 ounce pasanda spice bottles", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: pasanda", "size: 1.76 ounce (pack of 4)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9AV2E6", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08XM81S7M", "instruction": "i want to find a 2-pack of achar recipe seasoning mix that's easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: achar recipe", "size: pack of 2"], "instruction_attributes": ["easy use"], "instruction_options": ["achar recipe", "pack of 2"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQXBAJG", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08XM81S7M", "instruction": "i am interested in a kashmiri indian seasoning that is easy to prepare and only 2.1 ounces.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: kashmiri rogan josh", "size: 2.1 ounce (pack of 4)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["kashmiri rogan josh", "2.1 ounce (pack of 4)"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI37VBDI", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08XM81S7M", "instruction": "i am looking for a 3.5 ounce hot and spicy pickle seasoning mix that is easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: kat a kat", "size: 3.5 ounce"], "instruction_attributes": ["easy use"], "instruction_options": ["3.5 ounce"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPVJPJ7", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08XM81S7M", "instruction": "i want 100g shan achar easy prepare paya flavor spice powder", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: paya", "size: 1.41 ounce (pack of 6)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["paya"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMYM2GF", "worker_id": "A1V2C99HEV3F14"}, {"asin": "B08XM81S7M", "instruction": "i am looking for spice powder of liver curry flavor that is easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: liver curry", "size: pack of 6"], "instruction_attributes": ["easy use"], "instruction_options": ["liver curry"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY869F181", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08XM81S7M", "instruction": "i need traditional ready to use pickle . and i choose a pack of 6", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: daal", "size: 1.75 ounce (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["1.75 ounce (pack of 6)"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS5T9GD", "worker_id": "A2COCSUGZV28X"}, {"asin": "B08XM81S7M", "instruction": "find an easy to prepare chicken masala seasoning.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: chicken masala", "size: 1.76 ounce (pack of 2)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["chicken masala"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNR1AXJZ", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B08XM81S7M", "instruction": "look for a four pack of white karahi spice mix that's easy to use.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: chicken white karahi", "size: pack of 4"], "instruction_attributes": ["easy use"], "instruction_options": ["chicken white karahi", "pack of 4"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X5M3YT", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08XM81S7M", "instruction": "i need an easy to prepare stew mix that comes in a six pack.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: stew | dopiaza", "size: 3.52 ounce (pack of 6)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["stew | dopiaza", "3.52 ounce (pack of 6)"], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6D1UPW", "worker_id": "A2ECRNQ3X5LEXD"}], "B09ND1WX3G": [{"asin": "B09ND1WX3G", "instruction": "i would like to buy size 8.5 grey faux fur loafers.", "attributes": ["knee high", "open toe", "winter warm", "steel toe", "closed toe", "faux fur"], "options": ["color: grey", "size: 8.5"], "instruction_attributes": ["faux fur"], "instruction_options": ["grey", "8.5"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCM156S", "worker_id": "A1WS884SI0SLO4"}], "B09QPXLJ31": [{"asin": "B09QPXLJ31", "instruction": "i would like a 60x40x43cm solid wood ottoman for my living room.", "attributes": ["button tufted", "non slip", "solid wood", "pu leather", "faux leather", "living room"], "options": ["size: 60x40x43cm"], "instruction_attributes": ["solid wood", "living room"], "instruction_options": ["60x40x43cm"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1H6ITG", "worker_id": "A1WS884SI0SLO4"}], "B083YZ99PM": [{"asin": "B083YZ99PM", "instruction": "i need blue golf shoes made of vinyl that are in a size 8.5 wide.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: navy", "size: 8.5 wide"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["navy", "8.5 wide"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XJKGN7", "worker_id": "A2ECRNQ3X5LEXD"}], "B089GYNB54": [{"asin": "B089GYNB54", "instruction": "i would like a large grey shorts made of cotton spandex for working out.", "attributes": ["butt lifting", "elastic closure", "cotton spandex", "polyester cotton"], "options": ["color: 066 gray", "size: large"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["066 gray", "large"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWCZ3KUL", "worker_id": "A1WS884SI0SLO4"}], "B077D5N474": [{"asin": "B077D5N474", "instruction": "i'm looking for fur lined vinyl slippers.", "attributes": ["ethylene vinyl", "vinyl acetate", "faux fur", "synthetic sole"], "options": ["color: rosered", "size: 9.5 women | 8 men"], "instruction_attributes": ["ethylene vinyl", "vinyl acetate", "faux fur"], "instruction_options": ["9.5 women | 8 men"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PCW9INY", "worker_id": "A19317A3X87NVM"}], "B07P5C5GTS": [{"asin": "B07P5C5GTS", "instruction": "i need a polyester cotton polo shirt in size 6x-large. find me a blue one with a gray stripe.", "attributes": ["moisture wicking", "polyester cotton"], "options": ["color: 12129# blue (with gray stripe)", "size: 6x-large"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["12129# blue (with gray stripe)", "6x-large"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PDXEQE", "worker_id": "A36LOA6VLJU157"}], "B08SW27HGH": [{"asin": "B08SW27HGH", "instruction": "i am looking for a silver tablet that is lightweight.", "attributes": ["light weight", "easy carry", "quad core"], "options": ["color: silver"], "instruction_attributes": ["light weight"], "instruction_options": ["silver"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5B5MUQE", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LF3LZCH": [{"asin": "B08LF3LZCH", "instruction": "i would like to buy some wild caught sardines.", "attributes": ["wild caught", "sugar free", "gluten free"], "options": [""], "instruction_attributes": ["wild caught"], "instruction_options": [], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJIC9OA", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08LF3LZCH", "instruction": "i want sugar free gluten free seafood sardines wild caught", "attributes": ["wild caught", "sugar free", "gluten free"], "options": [""], "instruction_attributes": ["wild caught", "sugar free", "gluten free"], "instruction_options": [], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVOP17S", "worker_id": "A3N9ZYQAESNFQH"}], "B099HSFGQP": [{"asin": "B099HSFGQP", "instruction": "find me a white bookshelf that requires assembly.", "attributes": ["assembly required", "white finish"], "options": [""], "instruction_attributes": ["assembly required", "white finish"], "instruction_options": [], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4SOXY8", "worker_id": "A36LOA6VLJU157"}], "B08QHT5RMH": [{"asin": "B08QHT5RMH", "instruction": "i need some power dental flossers that are for bad breath.", "attributes": ["clinically proven", "bad breath"], "options": [""], "instruction_attributes": ["bad breath"], "instruction_options": [], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB7FOSG", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CTRSKXB": [{"asin": "B07CTRSKXB", "instruction": "i want a rich protein bar.", "attributes": ["high protein", "gluten free", "birthday cake"], "options": [""], "instruction_attributes": ["high protein"], "instruction_options": [], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISOUYOF", "worker_id": "A19317A3X87NVM"}], "B088GVPJBB": [{"asin": "B088GVPJBB", "instruction": "i want to buy some pink wireless bluetooth speakers that can switch between pairing and aux by the call button.", "attributes": ["stereo sound", "wireless bluetooth"], "options": ["color: pink-switch between \"bluetooth pairing\"&\"aux-in\" mode by \"call\" button"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["pink-switch between \"bluetooth pairing\"&\"aux-in\" mode by \"call\" button"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0RDPX6", "worker_id": "A1WS884SI0SLO4"}], "B09BJR3LQ2": [{"asin": "B09BJR3LQ2", "instruction": "i want to find a 4-pack of energy drinks that are gluten free and have no artificial colors.", "attributes": ["non gmo", "gluten free", "source vitamin", "artificial colors"], "options": ["size: pack of 4"], "instruction_attributes": ["gluten free", "artificial colors"], "instruction_options": ["pack of 4"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKR0IUM", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09BJR3LQ2", "instruction": "i am looking for a pack of 4 energy drinks with vitamins, that is also gluten free", "attributes": ["non gmo", "gluten free", "source vitamin", "artificial colors"], "options": ["size: pack of 4"], "instruction_attributes": ["gluten free", "source vitamin"], "instruction_options": ["pack of 4"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVDF8VQ", "worker_id": "A2NSS746CFCT4M"}], "B00DQ2B8UA": [{"asin": "B00DQ2B8UA", "instruction": "i would like to see over the ear headphones with batteries included.", "attributes": ["batteries included", "light weight"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHTJHQR", "worker_id": "A19317A3X87NVM"}], "B0183RU25O": [{"asin": "B0183RU25O", "instruction": "i want an easy to use instant beverage mix in hazelnut flavor, just one pound.", "attributes": ["rich creamy", "easy use"], "options": ["flavor name: hazelnut", "size: 1 pound (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["hazelnut", "1 pound (pack of 6)"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUULNQJ5", "worker_id": "A36LOA6VLJU157"}, {"asin": "B0183RU25O", "instruction": "i looking easy use rich creamy instant coffee double mocha flavor ,14 ounce", "attributes": ["rich creamy", "easy use"], "options": ["flavor name: double mocha", "size: 14 ounce (pack of 1)"], "instruction_attributes": ["rich creamy", "easy use"], "instruction_options": ["double mocha", "14 ounce (pack of 1)"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIN1580", "worker_id": "A3N9ZYQAESNFQH"}], "B078FBVJ7H": [{"asin": "B078FBVJ7H", "instruction": "i would like to get some women's size 13 vinyl acetate clogs with blossoms.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: blossom", "size: 13 b(m) us women | 11 d(m) us men"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["blossom", "13 b(m) us women | 11 d(m) us men"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH4HE11", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B078FBVJ7H", "instruction": "i would like a pair of pomegranate women's size 4 clogs made of vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: pomegranate", "size: 4 women | 2 men"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["pomegranate", "4 women | 2 men"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V5DU2H", "worker_id": "A1WS884SI0SLO4"}], "B08731VV8F": [{"asin": "B08731VV8F", "instruction": "i would like to buy a heather slate pebble weave loveseat with a solid wood frame.", "attributes": ["mid century", "high density", "memory foam", "solid wood", "wood frame"], "options": ["color: heathered slate pebble weave", "size: loveseat"], "instruction_attributes": ["solid wood", "wood frame"], "instruction_options": ["heathered slate pebble weave", "loveseat"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THR5Z5M", "worker_id": "A1WS884SI0SLO4"}], "B0977H69D1": [{"asin": "B0977H69D1", "instruction": "i want a variety pack of jerkey ready to eat.", "attributes": ["protein serving", "ready eat"], "options": ["flavor name: variety pack", "size: 3.25 ounce (pack of 4)"], "instruction_attributes": ["ready eat"], "instruction_options": ["variety pack"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z42CQCR", "worker_id": "A19317A3X87NVM"}, {"asin": "B0977H69D1", "instruction": "i am looking for a 3.25 ounce (pack of 3) of protein serving jerky", "attributes": ["protein serving", "ready eat"], "options": ["flavor name: sweet teriyaki", "size: 3.25 ounce (pack of 3)"], "instruction_attributes": ["protein serving"], "instruction_options": ["3.25 ounce (pack of 3)"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IUETL1", "worker_id": "A9QRQL9CFJBI7"}], "B09R4FW2HP": [{"asin": "B09R4FW2HP", "instruction": "i would like to get some extra large light blue high waisted jeans with a loose fit.", "attributes": ["fleece lined", "wide leg", "loose fit", "high waist", "relaxed fit", "drawstring closure", "tummy control", "elastic waist", "long sleeve", "daily wear"], "options": ["color: a2-light blue", "size: x-large"], "instruction_attributes": ["loose fit", "high waist"], "instruction_options": ["a2-light blue", "x-large"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKLYEPI", "worker_id": "A1WS884SI0SLO4"}], "B00I5ELBA6": [{"asin": "B00I5ELBA6", "instruction": "i would like to buy a black glider and ottoman set that is easy to clean.", "attributes": ["easy clean", "easy assemble"], "options": ["color: black | light gray"], "instruction_attributes": ["easy clean"], "instruction_options": ["black | light gray"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFB3V9S", "worker_id": "A1WS884SI0SLO4"}], "B01MYDIBAC": [{"asin": "B01MYDIBAC", "instruction": "buy as many kay's chips as possible when of the ones with french vanilla flavors drops the price drops", "attributes": ["gluten free", "protein serving", "low fat", "high protein", "natural flavors"], "options": ["flavor: french vanilla", "size: 9.5 ounces (pack of 6)"], "instruction_attributes": ["low fat", "natural flavors"], "instruction_options": ["french vanilla", "9.5 ounces (pack of 6)"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRSYUEUA", "worker_id": "A2NF3B9O8ZKLLZ"}, {"asin": "B01MYDIBAC", "instruction": "i am looking for a 1.2 ounce (pack of 6) gluten-free, low fat chips & crisps", "attributes": ["gluten free", "protein serving", "low fat", "high protein", "natural flavors"], "options": ["flavor: protein cereal - honey almond", "size: 1.2 ounce (pack of 6)"], "instruction_attributes": ["gluten free", "low fat"], "instruction_options": ["1.2 ounce (pack of 6)"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107ARILW", "worker_id": "A9QRQL9CFJBI7"}], "B08R7PRV85": [{"asin": "B08R7PRV85", "instruction": "i need a leak proof bag that is black.", "attributes": ["leak proof", "easy use"], "options": ["color: black"], "instruction_attributes": ["leak proof"], "instruction_options": ["black"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHUGB79", "worker_id": "A2ECRNQ3X5LEXD"}], "B005CGOMZQ": [{"asin": "B005CGOMZQ", "instruction": "i am looking for some flats with memory foam in a size nine and the color picante.", "attributes": ["synthetic sole", "memory foam"], "options": ["color: picante", "size: 9"], "instruction_attributes": ["memory foam"], "instruction_options": ["picante", "9"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVDWXLS", "worker_id": "A2ECRNQ3X5LEXD"}], "B01M1VI9W8": [{"asin": "B01M1VI9W8", "instruction": "i would like to buy some size 16 rubber sole work shoes.", "attributes": ["slip resistant", "rubber sole"], "options": ["size: 16"], "instruction_attributes": ["rubber sole"], "instruction_options": ["16"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN3UI8Y", "worker_id": "A1WS884SI0SLO4"}], "B07NVB9ZC4": [{"asin": "B07NVB9ZC4", "instruction": "i would like to get some l5036 nail tips that are easy to put on.", "attributes": ["easy apply", "high quality", "nail art"], "options": ["color: l5036"], "instruction_attributes": ["easy apply"], "instruction_options": ["l5036"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PHGX2M", "worker_id": "A1WS884SI0SLO4"}], "B01APTZH1W": [{"asin": "B01APTZH1W", "instruction": "i would like to get a paraben free oil moisturizer.", "attributes": ["animal testing", "paraben free"], "options": [""], "instruction_attributes": ["paraben free"], "instruction_options": [], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA7WJHM9", "worker_id": "A1WS884SI0SLO4"}], "B07Z9VGZMH": [{"asin": "B07Z9VGZMH", "instruction": "i would like to get some orange wireless bluetooth speakers.", "attributes": ["hands free", "wireless bluetooth"], "options": ["color: orange"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["orange"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61OEZW8", "worker_id": "A1WS884SI0SLO4"}], "B09DSXCB6D": [{"asin": "B09DSXCB6D", "instruction": "i would like to buy a size 42 white smartwatch band that works with my apple watch.", "attributes": ["compatible apple", "high performance"], "options": ["color: white | black | navy bule", "size: 42 | 44mm s | m"], "instruction_attributes": ["compatible apple"], "instruction_options": ["white | black | navy bule", "42 | 44mm s | m"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U1OAMM", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09DSXCB6D", "instruction": "i need an apple compatible smart watch band in blue, green, and red.", "attributes": ["compatible apple", "high performance"], "options": ["color: bule | green | red", "size: 42 | 44mm m | l"], "instruction_attributes": ["compatible apple"], "instruction_options": ["bule | green | red"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZZXPCS", "worker_id": "A19317A3X87NVM"}], "B08JTLCT5C": [{"asin": "B08JTLCT5C", "instruction": "i want to find a blue home office chair that's easy to assemble.", "attributes": ["height adjustable", "high density", "easy install", "easy assemble", "living room"], "options": ["color: a-type blue"], "instruction_attributes": ["easy assemble"], "instruction_options": ["a-type blue"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTE7PLG", "worker_id": "A345TDMHP3DQ3G"}], "B092PRRNXL": [{"asin": "B092PRRNXL", "instruction": "i would like to buy a four pack of medium machine washable boxer briefs.", "attributes": ["machine wash", "quick drying", "polyester spandex"], "options": ["color: 4-pack(n1168)02", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["4-pack(n1168)02", "medium"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZD49KS", "worker_id": "A1WS884SI0SLO4"}], "B09PZ4VF7K": [{"asin": "B09PZ4VF7K", "instruction": "i would like a toothbrush that works well with sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": [""], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQBYRJO", "worker_id": "A1WS884SI0SLO4"}], "B08GYF3H6N": [{"asin": "B08GYF3H6N", "instruction": "i need an old fashioned rope sausage without gluten.", "attributes": ["old fashioned", "gluten free", "keto friendly"], "options": ["flavor name: old world style"], "instruction_attributes": ["old fashioned", "gluten free"], "instruction_options": ["old world style"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P11BUR", "worker_id": "A19317A3X87NVM"}, {"asin": "B08GYF3H6N", "instruction": "i want keto friendly old world kielbasa rope sausage.", "attributes": ["old fashioned", "gluten free", "keto friendly"], "options": ["flavor name: old world style"], "instruction_attributes": ["keto friendly"], "instruction_options": ["old world style"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0144WA", "worker_id": "A2RBF3IIJP15IH"}], "B07P67D59M": [{"asin": "B07P67D59M", "instruction": "i'm looking for some non-gmo pistachios.", "attributes": ["non gmo", "dietary fiber"], "options": ["size: 25 lb"], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "3JW0YLFXR4QKLUJBLEJGURROKICWW9", "worker_id": "A19317A3X87NVM"}], "B09SGZ536L": [{"asin": "B09SGZ536L", "instruction": "i would like a slim fit khaki tank top that is in a size medium.", "attributes": ["moisture wicking", "slim fit", "short sleeve", "contrast color", "quality materials", "daily wear"], "options": ["color: khaki", "size: medium"], "instruction_attributes": ["slim fit"], "instruction_options": ["khaki", "medium"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RUXSLR3", "worker_id": "A2ECRNQ3X5LEXD"}], "B07QG5DKTF": [{"asin": "B07QG5DKTF", "instruction": "i would like to get some 29 x 12 galatic machine washable denim shorts.", "attributes": ["easy care", "moisture wicking", "machine washable", "machine wash"], "options": ["color: galactic", "size: 29w x 12l"], "instruction_attributes": ["machine washable", "machine wash"], "instruction_options": ["galactic", "29w x 12l"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5BCIWU", "worker_id": "A1WS884SI0SLO4"}], "B0948XCDCJ": [{"asin": "B0948XCDCJ", "instruction": "i would like to get some medium grey shorts that i can machine wash.", "attributes": ["butt lifting", "moisture wicking", "machine wash", "high waist", "nylon spandex", "elastic closure", "tummy control"], "options": ["color: 4# gray", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["4# gray", "medium"], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6E1EE2", "worker_id": "A1WS884SI0SLO4"}], "B08W3HQNKF": [{"asin": "B08W3HQNKF", "instruction": "i'm looking for a blue hair brush for removing hair danfruss..", "attributes": ["hair removal", "hair growth", "hair loss"], "options": ["color: blue"], "instruction_attributes": ["hair removal"], "instruction_options": ["blue"], "assignment_id": "3EO896NRA756NTFIJAVQIHQHESMTJM", "worker_id": "A19317A3X87NVM"}], "B09Q57MYVF": [{"asin": "B09Q57MYVF", "instruction": "i would like to buy a high gloss walnut entertainment center for a 51 inch tv that has a lot of storage space.", "attributes": ["white item", "high gloss", "storage space", "tempered glass"], "options": ["color: walnet,black", "size: 51inch"], "instruction_attributes": ["high gloss", "storage space"], "instruction_options": ["walnet,black", "51inch"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UO8D1WV", "worker_id": "A1WS884SI0SLO4"}], "B00ODEW87C": [{"asin": "B00ODEW87C", "instruction": "i am looking for icelandic yogurt that is rich and creamy.", "attributes": ["rich creamy", "protein serving"], "options": [""], "instruction_attributes": ["rich creamy"], "instruction_options": [], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP40COH", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BNGNKW7": [{"asin": "B08BNGNKW7", "instruction": "i would like a 5 shelf oak bookcase and mount for my living room.", "attributes": ["wall mounted", "engineered wood", "living room"], "options": ["color: oak | black", "pattern name: bookcase + mount", "size: 5-shelf"], "instruction_attributes": ["living room"], "instruction_options": ["oak | black", "bookcase + mount", "5-shelf"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NEDKBL", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08BNGNKW7", "instruction": "nathan james theo 3 shelf white bookcase, open wall industrial shelving unit, engineered wood for my living room, find it at a discounted price", "attributes": ["wall mounted", "engineered wood", "living room"], "options": ["color: gray oak wood | white", "pattern name: bookcase", "size: 3-shelf"], "instruction_attributes": ["engineered wood", "living room"], "instruction_options": ["3-shelf"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCFJH79", "worker_id": "A15IJ20C3R4HUO"}], "B0817MVS98": [{"asin": "B0817MVS98", "instruction": "i need puffed snacks that are grain free in a spicy salsa flavor and come in a 24 pack.", "attributes": ["grain free", "artificial ingredients", "ready eat", "non gmo", "gluten free"], "options": ["color: spicy salsa", "size: 1.5 ounce (pack of 24)"], "instruction_attributes": ["grain free"], "instruction_options": ["spicy salsa", "1.5 ounce (pack of 24)"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0T8W4Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B099KWKY36": [{"asin": "B099KWKY36", "instruction": "i would like a citrus yao conditioner made with natural ingredients.", "attributes": ["sulfate free", "eco friendly", "paraben free", "cruelty free", "natural ingredients"], "options": ["size: conditioner", "style: citrus yao"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["conditioner", "citrus yao"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5M06XU", "worker_id": "A1WS884SI0SLO4"}], "B09RG13J2N": [{"asin": "B09RG13J2N", "instruction": "i would like to buy 2 pounds of milk chocolate hershey's with almonds for valentine's day.", "attributes": ["kosher certified", "individually wrapped", "valentine day"], "options": ["flavor name: hershey's milk chocolate with almonds", "size: 2 pound"], "instruction_attributes": ["valentine day"], "instruction_options": ["hershey's milk chocolate with almonds", "2 pound"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8ND3KB9", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09RG13J2N", "instruction": "i want 5 pound valentine day special kosher certified hershey's special dark chocolate", "attributes": ["kosher certified", "individually wrapped", "valentine day"], "options": ["flavor name: hershey's special dark chocolate", "size: 5 pound"], "instruction_attributes": ["kosher certified", "valentine day"], "instruction_options": ["5 pound"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ATKWB7", "worker_id": "A3N9ZYQAESNFQH"}], "B07QC8LFQP": [{"asin": "B07QC8LFQP", "instruction": "i would like some teeth whitening strips that are a grape flavor.", "attributes": ["teeth whitening", "non slip", "sensitive teeth"], "options": ["flavor name: grape"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["grape"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5B71ZD", "worker_id": "A2ECRNQ3X5LEXD"}], "B073TYNJG4": [{"asin": "B073TYNJG4", "instruction": "i am looking for a vinyl home office chair that has lumbar support and has a mesh back with synchro-tilt.", "attributes": ["height adjustable", "lumbar support"], "options": ["size: mesh back | vinyl", "style: sychro-tilt w | seat slider"], "instruction_attributes": ["lumbar support"], "instruction_options": ["mesh back | vinyl", "sychro-tilt w | seat slider"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTA84DP", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GRQCRJG": [{"asin": "B07GRQCRJG", "instruction": "i am looking for a grey faux leather sofa.", "attributes": ["assembly required", "faux leather", "living room"], "options": ["color: grey", "style: sofa"], "instruction_attributes": ["faux leather"], "instruction_options": ["grey", "sofa"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJK2XBR", "worker_id": "A2ECRNQ3X5LEXD"}], "B09KRCZLXP": [{"asin": "B09KRCZLXP", "instruction": "i want to find a set of two vanity lights with glass shades.", "attributes": ["vanity light", "glass shade", "light fixture"], "options": ["size: 2 light"], "instruction_attributes": ["vanity light", "glass shade"], "instruction_options": ["2 light"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7PVYQ6", "worker_id": "A345TDMHP3DQ3G"}], "B08RCVK9NF": [{"asin": "B08RCVK9NF", "instruction": "i want to see the non-alcoholic drink options that are made of natural ingredients.", "attributes": ["non alcoholic", "natural ingredients"], "options": [""], "instruction_attributes": ["non alcoholic", "natural ingredients"], "instruction_options": [], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHTU7BH", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08RCVK9NF", "instruction": "i am looking for natural ingredients brewing", "attributes": ["non alcoholic", "natural ingredients"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L5Q8RQ2", "worker_id": "A16M39T60N60NO"}], "B08TLKFL5B": [{"asin": "B08TLKFL5B", "instruction": "i need a baby throw that is multicolored and super soft.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 44", "size: baby"], "instruction_attributes": ["super soft"], "instruction_options": ["multi 44", "baby"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFPAE3A", "worker_id": "A2ECRNQ3X5LEXD"}], "B0828Q5FJR": [{"asin": "B0828Q5FJR", "instruction": "i'm looking for a wood framed mounted shark.", "attributes": ["hand painted", "ready hang", "wood frame", "living room", "dining room"], "options": ["color: shark", "size: 20x60in"], "instruction_attributes": ["ready hang", "wood frame"], "instruction_options": ["shark"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PD1EQI", "worker_id": "A19317A3X87NVM"}], "B07QH2YM12": [{"asin": "B07QH2YM12", "instruction": "i need an argan oil moisturizer that is 8 ounces and is the scent desert date.", "attributes": ["anti aging", "cruelty free", "argan oil", "damaged hair", "dry hair"], "options": ["scent: desert date", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["argan oil"], "instruction_options": ["desert date", "8 ounce (pack of 1)"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5ME5F7", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07QH2YM12", "instruction": "i'm looking for all natural and organic moringa oil with anti aging vitamin a and e, 4 ounce", "attributes": ["anti aging", "cruelty free", "argan oil", "damaged hair", "dry hair"], "options": ["scent: moringa", "size: 4 ounce"], "instruction_attributes": ["anti aging"], "instruction_options": ["moringa", "4 ounce"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O2RA2R", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B07QH2YM12", "instruction": "i would like a 2 fluid ounce bottle of tamanu argan oil for damaged hair.", "attributes": ["anti aging", "cruelty free", "argan oil", "damaged hair", "dry hair"], "options": ["scent: tamanu", "size: 2 fl oz (pack of 1)"], "instruction_attributes": ["argan oil", "damaged hair"], "instruction_options": ["tamanu", "2 fl oz (pack of 1)"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDKPO20", "worker_id": "A1WS884SI0SLO4"}], "B09PVCWL4W": [{"asin": "B09PVCWL4W", "instruction": "i would like a 100 inch 16:9 protection screen that's easy to put on.", "attributes": ["easy use", "heavy duty"], "options": ["size: 100 inch 16:9"], "instruction_attributes": ["easy use"], "instruction_options": ["100 inch 16:9"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDJ4HRJ", "worker_id": "A1WS884SI0SLO4"}], "B07FXR9NMK": [{"asin": "B07FXR9NMK", "instruction": "i need some gluten free nori.", "attributes": ["gluten free", "resealable bag"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMJVB69", "worker_id": "A2ECRNQ3X5LEXD"}], "B09152JTB6": [{"asin": "B09152JTB6", "instruction": "i'm looking for a high quality stainless steel foot scrubber which is effective to remove dead skin. also, choose a pack of 16 pcs black one.", "attributes": ["high quality", "stainless steel", "dead skin"], "options": ["style: 16 pcs black"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDJJHRY", "worker_id": "AR0VJ5XRG16UJ"}], "B075BL7XR4": [{"asin": "B075BL7XR4", "instruction": "i would like to buy some unsweetened hazelnut dairy and gluten free milk.", "attributes": ["shelf stable", "soy free", "keto friendly", "plant based", "dairy free", "gluten free"], "options": ["flavor name: unsweetened hazelnut - original"], "instruction_attributes": ["dairy free", "gluten free"], "instruction_options": ["unsweetened hazelnut - original"], "assignment_id": "3I02618YABGH9HX5ESQKK9YV68EUPZ", "worker_id": "A1WS884SI0SLO4"}], "B09CMHXWWM": [{"asin": "B09CMHXWWM", "instruction": "i need a black brush set for sensitive skin.", "attributes": ["cruelty free", "sensitive skin"], "options": ["color: black"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["black"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVFFJKQ", "worker_id": "A19317A3X87NVM"}], "B095WZDZN8": [{"asin": "B095WZDZN8", "instruction": "i would like to get a heavy duty office desk with a coated steel frame.", "attributes": ["heavy duty", "coated steel", "metal legs", "steel frame"], "options": [""], "instruction_attributes": ["heavy duty", "coated steel", "steel frame"], "instruction_options": [], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6ULCG12", "worker_id": "A1WS884SI0SLO4"}], "B0968TLTS8": [{"asin": "B0968TLTS8", "instruction": "i'm looking for a 10-pack of pepperoni and cheese pizzas that contain 0 grams of trans fat.", "attributes": ["0g trans", "natural ingredients"], "options": ["flavor: pepperoni & cheese", "size: 10 pack"], "instruction_attributes": ["0g trans"], "instruction_options": ["pepperoni & cheese", "10 pack"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U86DR54", "worker_id": "A345TDMHP3DQ3G"}], "B09SYKQ2DH": [{"asin": "B09SYKQ2DH", "instruction": "i would like to buy a 90x200 cm pink futon mattress with memory foam for my living room.", "attributes": ["twin size", "super soft", "memory foam", "living room"], "options": ["color: pink", "size: 90x200cm"], "instruction_attributes": ["living room"], "instruction_options": ["pink", "90x200cm"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUPFJQY", "worker_id": "A1WS884SI0SLO4"}], "B089KQRQCC": [{"asin": "B089KQRQCC", "instruction": "i would like a dual band ac adapter with output protection.", "attributes": ["output protection", "dual band"], "options": [""], "instruction_attributes": ["output protection", "dual band"], "instruction_options": [], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP8XIZ7J", "worker_id": "A1WS884SI0SLO4"}], "B086W378KL": [{"asin": "B086W378KL", "instruction": "i really need a hair comb for hair styling.", "attributes": ["easy use", "hair styling", "hair cutting", "hair growth"], "options": [""], "instruction_attributes": ["hair styling"], "instruction_options": [], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR025W0AKO", "worker_id": "A2ECRNQ3X5LEXD"}], "B081D9PS49": [{"asin": "B081D9PS49", "instruction": "i am looking for a lychee energy drink that has no sugar.", "attributes": ["zero sugar", "artificial flavors"], "options": ["flavor name: lilikoi lychee"], "instruction_attributes": ["zero sugar"], "instruction_options": ["lilikoi lychee"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZD8O8G", "worker_id": "A2ECRNQ3X5LEXD"}], "B00DR5H364": [{"asin": "B00DR5H364", "instruction": "i am looking for remote triggers that come with batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7F8WK8Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B089Z3T8G6": [{"asin": "B089Z3T8G6", "instruction": "i am looking for sugar free flavor syrups that come in a three pack and are amaretto.", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: amaretto", "size: 25.4 ounce (pack of 3)"], "instruction_attributes": ["sugar free"], "instruction_options": ["amaretto", "25.4 ounce (pack of 3)"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXRA4ON", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B089Z3T8G6", "instruction": "i am looking for a sugar free irish creme syrup.", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: irish cream", "size: 15.89 ounce"], "instruction_attributes": ["sugar free"], "instruction_options": ["irish cream"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IM5M2I", "worker_id": "A1EREKSZAA9V7B"}], "B09MKBHSR5": [{"asin": "B09MKBHSR5", "instruction": "i am looking for a black and gold bag that is easy to carry.", "attributes": ["easy carry", "high quality", "fine mist"], "options": ["color: black+gold"], "instruction_attributes": ["easy carry"], "instruction_options": ["black+gold"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455RW0YTQ", "worker_id": "A19317A3X87NVM"}], "B08WKGZ4SW": [{"asin": "B08WKGZ4SW", "instruction": "i'm looing for an asphalt colored youth extra-large t-shirt that's machine washable.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: asphalt", "fit type: youth", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["asphalt", "youth", "x-large"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDFMHRT", "worker_id": "A345TDMHP3DQ3G"}], "B08WWSD4R8": [{"asin": "B08WWSD4R8", "instruction": "i would like a heavy duty wall outlet.", "attributes": ["heavy duty", "high gloss"], "options": ["style: outlet"], "instruction_attributes": ["heavy duty"], "instruction_options": ["outlet"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49C8TDZ", "worker_id": "A1WS884SI0SLO4"}], "B09JRWRMW6": [{"asin": "B09JRWRMW6", "instruction": "i am looking for a jacket for daily wear that is a blue and in a size small.", "attributes": ["fleece lined", "daily wear"], "options": ["color: a#blue", "size: small"], "instruction_attributes": ["daily wear"], "instruction_options": ["a#blue", "small"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCEOBLL", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DCTKR8Z": [{"asin": "B09DCTKR8Z", "instruction": "i need a light red area rug for the living room that is a 4 by 6.", "attributes": ["dining room", "living room"], "options": ["color: light red", "size: 4x6"], "instruction_attributes": ["living room"], "instruction_options": ["light red", "4x6"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8NYMT7H", "worker_id": "A2ECRNQ3X5LEXD"}], "B07XZ4QL11": [{"asin": "B07XZ4QL11", "instruction": "i would like to get a 35 x 12 canvas print of manhattan, new york to hang in my living room.", "attributes": ["ready hang", "living room"], "options": ["color: new york #08", "size: 35\"wx12\"h canvas print"], "instruction_attributes": ["living room"], "instruction_options": ["new york #08", "35\"wx12\"h canvas print"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB42XAQL", "worker_id": "A1WS884SI0SLO4"}], "B08YXLGT4S": [{"asin": "B08YXLGT4S", "instruction": "i would like to buy some high quality long lasting eyeliner.", "attributes": ["long lasting", "easy apply", "high quality"], "options": [""], "instruction_attributes": ["long lasting", "high quality"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKFQD7G", "worker_id": "A1WS884SI0SLO4"}], "B096FVMNDK": [{"asin": "B096FVMNDK", "instruction": "i want to get some massage linens that are easy to clean and color 4 and 70x190 cm", "attributes": ["eco friendly", "easy clean", "beauty salon"], "options": ["color: 4", "size: 70x190cm"], "instruction_attributes": ["easy clean"], "instruction_options": ["4", "70x190cm"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN12I82", "worker_id": "A2YNPKYEFDZ6C9"}], "B09Q8VZFVT": [{"asin": "B09Q8VZFVT", "instruction": "i want to find a pair of blue hiking shoes for men with both arch support and memory foam. the shoes need to be a size 13.", "attributes": ["open toe", "steel toe", "arch support", "memory foam", "relaxed fit", "rubber sole", "teen girls"], "options": ["color: blue b", "size: 13"], "instruction_attributes": ["arch support", "memory foam"], "instruction_options": ["blue b", "13"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733DQEBW", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09Q8VZFVT", "instruction": "i need running shoes that are dark grey with arch support and are in a size 13.5", "attributes": ["open toe", "steel toe", "arch support", "memory foam", "relaxed fit", "rubber sole", "teen girls"], "options": ["color: dark gray", "size: 13.5"], "instruction_attributes": ["arch support"], "instruction_options": ["dark gray", "13.5"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9DCZRQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08KH4B9C1": [{"asin": "B08KH4B9C1", "instruction": "i am looking for sand gold nail art that is 0.35 oz", "attributes": ["animal testing", "nail art"], "options": ["color: sand gold", "size: super chunky - 10g | 0.35oz sample"], "instruction_attributes": ["nail art"], "instruction_options": ["sand gold", "super chunky - 10g | 0.35oz sample"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQ7NJCW", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08KH4B9C1", "instruction": "i am looking for some super chunky nail art gllitter that is peach colored.", "attributes": ["animal testing", "nail art"], "options": ["color: fluorescent peach", "size: super chunky - 10g | 0.35oz sample"], "instruction_attributes": ["nail art"], "instruction_options": ["fluorescent peach", "super chunky - 10g | 0.35oz sample"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJJDGDS", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08KH4B9C1", "instruction": "get me the ten gram sample sized body glitter, but only if it hasn't been tested on animals, please.", "attributes": ["animal testing", "nail art"], "options": ["color: gold silver holographic", "size: super chunky - 10g | 0.35oz sample"], "instruction_attributes": ["animal testing"], "instruction_options": ["super chunky - 10g | 0.35oz sample"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTMP4VB", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08KH4B9C1", "instruction": "i want glitter for body make up for nail art decoration size 10 g color bronze holographic", "attributes": ["animal testing", "nail art"], "options": ["color: bronze brown holographic", "size: extra chunky - 10g | 0.35oz sample"], "instruction_attributes": ["nail art"], "instruction_options": ["bronze brown holographic", "extra chunky - 10g | 0.35oz sample"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVIVZSK", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B08KH4B9C1", "instruction": "i am looking for rose gold colored glitter for nail art.", "attributes": ["animal testing", "nail art"], "options": ["color: rose gold", "size: extra chunky - 100g | 3.5oz"], "instruction_attributes": ["nail art"], "instruction_options": ["rose gold"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9S9TE0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08KH4B9C1", "instruction": "i need a 3.5 oz jar of pink nail art glitter.", "attributes": ["animal testing", "nail art"], "options": ["color: fluorescent pink", "size: microfine - 100g | 3.5oz"], "instruction_attributes": ["nail art"], "instruction_options": ["fluorescent pink", "microfine - 100g | 3.5oz"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA7Z1MH2", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08KH4B9C1", "instruction": "i'd like to find 3.5 ounces of ultrafine, fluorescent yellow glitter for my nail art.", "attributes": ["animal testing", "nail art"], "options": ["color: fluorescent yellow", "size: ultrafine - 100g | 3.5oz"], "instruction_attributes": ["nail art"], "instruction_options": ["fluorescent yellow", "ultrafine - 100g | 3.5oz"], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ0WWRRS", "worker_id": "A345TDMHP3DQ3G"}], "B07BZ17VH4": [{"asin": "B07BZ17VH4", "instruction": "i would like lactose free coffee drinks that are mocha and come in a four pack.", "attributes": ["lactose free", "gluten free"], "options": ["flavor name: mocha", "size: 9 fl oz (pack of 4)"], "instruction_attributes": ["lactose free"], "instruction_options": ["mocha", "9 fl oz (pack of 4)"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEF9SU5U", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZTX18ZJ": [{"asin": "B07ZTX18ZJ", "instruction": "i'm looking for a 3 pound pack of individually wrapped snickers candy bars that i can hand out on valentine's day.", "attributes": ["individually wrapped", "resealable bag", "valentine day", "birthday party"], "options": ["size: 3 pound (pack of 1)"], "instruction_attributes": ["individually wrapped", "valentine day"], "instruction_options": ["3 pound (pack of 1)"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50QU0WGO", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07ZTX18ZJ", "instruction": "i'm looking for a 1-pound pack of individually wrapped candy bars for a birthday party or valentines day in a resealable bag.", "attributes": ["individually wrapped", "resealable bag", "valentine day", "birthday party"], "options": ["size: 1 pound (pack of 1)"], "instruction_attributes": ["individually wrapped", "resealable bag", "valentine day", "birthday party"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733QNBEG", "worker_id": "AFU00NU09CFXE"}], "B082QDKRCP": [{"asin": "B082QDKRCP", "instruction": "i would like a living room sofa chair in cognanc leather", "attributes": ["wood frame", "solid wood", "living room"], "options": ["color: cognac leather", "style: sofa"], "instruction_attributes": ["living room"], "instruction_options": ["cognac leather", "sofa"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR4ZUUFT", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PRCHC48": [{"asin": "B09PRCHC48", "instruction": "there's a hands free car stereo receiver with 2g+32g.", "attributes": ["hands free", "high definition"], "options": ["color: v3por 2g+32g"], "instruction_attributes": ["hands free"], "instruction_options": ["v3por 2g+32g"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4T4LK2W", "worker_id": "A19317A3X87NVM"}], "B07X31F54M": [{"asin": "B07X31F54M", "instruction": "i'm looking for a brozers which is alcohol free and paraben free used for sensitive skin.", "attributes": ["cruelty free", "alcohol free", "paraben free", "sensitive skin"], "options": [""], "instruction_attributes": ["alcohol free", "paraben free", "sensitive skin"], "instruction_options": [], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRQQF3U", "worker_id": "AR0VJ5XRG16UJ"}], "B08G6NFGTW": [{"asin": "B08G6NFGTW", "instruction": "i am looking for x-large pajama bottoms that have a drawstring.", "attributes": ["officially licensed", "drawstring closure"], "options": ["size: x-large"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["x-large"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB1WZLUA", "worker_id": "A2ECRNQ3X5LEXD"}], "B07XYH1P1Z": [{"asin": "B07XYH1P1Z", "instruction": "i am looking for a queen size white bed.", "attributes": ["queen size", "white item", "assembly required", "high gloss"], "options": ["color: oak country | white"], "instruction_attributes": ["queen size"], "instruction_options": ["oak country | white"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOJO9MO", "worker_id": "A2ECRNQ3X5LEXD"}], "B00J51MCPQ": [{"asin": "B00J51MCPQ", "instruction": "i want to find a 3-count pack of 4-ounce deodorant sprays that are certified organic.", "attributes": ["certified organic", "cruelty free"], "options": ["scent: 4 ounce, 1 count", "size: 4 ounce, 3 count"], "instruction_attributes": ["certified organic"], "instruction_options": ["4 ounce, 3 count"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC5W9RKQ", "worker_id": "A345TDMHP3DQ3G"}], "B00KDWJY8E": [{"asin": "B00KDWJY8E", "instruction": "i want to check out the techni mobili l-shaped desks that are made of coated steel.", "attributes": ["space saving", "coated steel"], "options": [""], "instruction_attributes": ["coated steel"], "instruction_options": [], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGE70OE", "worker_id": "A1WS884SI0SLO4"}], "B072LD256N": [{"asin": "B072LD256N", "instruction": "i'm looking for a synthetic hair and rose gold mermaid makeup brush set which should be certified cruelty free. also, choose 3d rainbow pattern one.", "attributes": ["cruelty free", "rose gold", "synthetic hair"], "options": ["color: 3d rainbow"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZFKC7L", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B072LD256N", "instruction": "i am looking for a 10pcs rose gold brush set.", "attributes": ["cruelty free", "rose gold", "synthetic hair"], "options": ["color: 10pcs rose gold brushes"], "instruction_attributes": ["rose gold"], "instruction_options": [], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907SNUA4", "worker_id": "A9QRQL9CFJBI7"}], "B0019RDLZE": [{"asin": "B0019RDLZE", "instruction": "find me a wall sconce with a nickel finish and a glass shade.", "attributes": ["nickel finish", "glass shade"], "options": [""], "instruction_attributes": ["nickel finish", "glass shade"], "instruction_options": [], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2J2M5Z", "worker_id": "A36LOA6VLJU157"}], "B0759B3WYP": [{"asin": "B0759B3WYP", "instruction": "i am looking for a mid century couch.", "attributes": ["mid century", "assembly required"], "options": [""], "instruction_attributes": ["mid century"], "instruction_options": [], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M44OL89", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P4YQZVM": [{"asin": "B09P4YQZVM", "instruction": "i would like a size 8.5 sneakers with a highly fashionable white and blue floral design.", "attributes": ["non slip", "rubber sole", "contrast color", "fashion design", "quality materials"], "options": ["color: white and blue flowers", "size: 8.5"], "instruction_attributes": ["fashion design"], "instruction_options": ["white and blue flowers", "8.5"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCJOBMX", "worker_id": "A1WS884SI0SLO4"}], "B097BHDYZD": [{"asin": "B097BHDYZD", "instruction": "i'm looking to buy some gold vanity lights with two lights on it.", "attributes": ["easy install", "vanity light", "stainless steel"], "options": ["color: gold", "size: 2-light"], "instruction_attributes": ["vanity light"], "instruction_options": ["gold", "2-light"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKIVPEK", "worker_id": "A2YNPKYEFDZ6C9"}], "B086TVW3PM": [{"asin": "B086TVW3PM", "instruction": "i need a bottle of fresh breath mouth wash for bad breath and oral hygeine.", "attributes": ["clinically proven", "fresh breath", "bad breath", "oral hygiene"], "options": [""], "instruction_attributes": ["fresh breath", "bad breath", "oral hygiene"], "instruction_options": [], "assignment_id": "3DIP6YHAPN2FET122B94U5H2V84E8Y", "worker_id": "A19317A3X87NVM"}], "B01MG1FQBW": [{"asin": "B01MG1FQBW", "instruction": "i'm looking for a high density memory foam mattress in full size.", "attributes": ["double sided", "high density", "memory foam"], "options": ["size: full"], "instruction_attributes": ["high density", "memory foam"], "instruction_options": ["full"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLKD03F", "worker_id": "A19317A3X87NVM"}], "B08N6MLMDT": [{"asin": "B08N6MLMDT", "instruction": "i need a space saving ottoman that is brown and 15 by 15 by 15 inches.", "attributes": ["space saving", "faux leather", "storage space", "living room"], "options": ["color: brown color", "size: 15 x 15 x 15 inch"], "instruction_attributes": ["space saving"], "instruction_options": ["brown color", "15 x 15 x 15 inch"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3HELZ5", "worker_id": "A2ECRNQ3X5LEXD"}], "B087N4G883": [{"asin": "B087N4G883", "instruction": "i am looking for a pack of candy that has natural ingredients.", "attributes": ["natural ingredients", "valentine day"], "options": ["flavor name: hazelnut butter, blueberries, pistachios...", "size: 1 pack"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["1 pack"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL96E2VU", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B087N4G883", "instruction": "can you find me some turkish delights that have natural ingredients and are for valentines day. get the 2 pack.", "attributes": ["natural ingredients", "valentine day"], "options": ["flavor name: pomegranate, double pistachios- 7 oz", "size: 2 pack"], "instruction_attributes": ["natural ingredients", "valentine day"], "instruction_options": ["2 pack"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPSXNG9Y", "worker_id": "A1MJVTR0PCKBWW"}, {"asin": "B087N4G883", "instruction": "i would like three bags of natural pineapple candy.", "attributes": ["natural ingredients", "valentine day"], "options": ["flavor name: pineapple, pistachios- 7 oz", "size: 3 pack"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["pineapple, pistachios- 7 oz", "3 pack"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMRC6B1", "worker_id": "A1WS884SI0SLO4"}], "B09DY8ZXTQ": [{"asin": "B09DY8ZXTQ", "instruction": "i am looking for black stainless steel wristbands.", "attributes": ["easy use", "case cover", "stainless steel"], "options": ["color: black"], "instruction_attributes": ["stainless steel"], "instruction_options": ["black"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3CWYR8", "worker_id": "A2ECRNQ3X5LEXD"}], "B00F3KP7T6": [{"asin": "B00F3KP7T6", "instruction": "i am looking for one case of vegetable patties that are fully cooked.", "attributes": ["individually wrapped", "fully cooked"], "options": ["flavor: vegetable", "size: 1 case"], "instruction_attributes": ["fully cooked"], "instruction_options": ["vegetable", "1 case"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PDA2XD", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00F3KP7T6", "instruction": "i am looking for a 1 case of fully cooked baked patties", "attributes": ["individually wrapped", "fully cooked"], "options": ["flavor: spicy beef", "size: 1 case"], "instruction_attributes": ["fully cooked"], "instruction_options": ["1 case"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R80SK7", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B00F3KP7T6", "instruction": "i am looking fully cooked spicy beef patties 50 count", "attributes": ["individually wrapped", "fully cooked"], "options": ["flavor: spicy beef", "size: 50 count"], "instruction_attributes": ["fully cooked"], "instruction_options": ["spicy beef", "50 count"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADM2AH4", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B00F3KP7T6", "instruction": "i want fully cooked mild beef patties size 12 count", "attributes": ["individually wrapped", "fully cooked"], "options": ["flavor: mild beef", "size: 12 count (pack of 1)"], "instruction_attributes": ["fully cooked"], "instruction_options": ["mild beef", "12 count (pack of 1)"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7LSN54", "worker_id": "A3N9ZYQAESNFQH"}], "B077H41BP7": [{"asin": "B077H41BP7", "instruction": "i am looking for light weight wall speakers that are 8' carbon fiber and have a center channel.", "attributes": ["light weight", "carbon fiber"], "options": ["pattern name: speaker + surround speaker 5.25 inch", "size: 8\" carbon fiber", "style: center channel"], "instruction_attributes": ["light weight"], "instruction_options": ["8\" carbon fiber", "center channel"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3VUZ1NQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B091G44S71": [{"asin": "B091G44S71", "instruction": "i need 16 ounces of an oil free moisturizer that works on dry skin, it should be white not tinted.", "attributes": ["oil free", "paraben free", "dry skin"], "options": ["color: white", "size: 16 ounce"], "instruction_attributes": ["oil free", "dry skin"], "instruction_options": ["white", "16 ounce"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJYF9GRT", "worker_id": "A36LOA6VLJU157"}], "B089W3JQC5": [{"asin": "B089W3JQC5", "instruction": "i would like a 16 ram with a 10th ddr4 core i5 high def mini desktop.", "attributes": ["dual band", "high definition"], "options": ["color: 10th ddr4 core i5-10210u", "size: 16gb ram ddr4 256gb m.2 ssd 1tb hdd"], "instruction_attributes": ["high definition"], "instruction_options": ["10th ddr4 core i5-10210u", "16gb ram ddr4 256gb m.2 ssd 1tb hdd"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P5TUBA", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B089W3JQC5", "instruction": "i am interested in acquiring mini desktop with high definition and dual band, and also have ddr4 core i5 8250u, and 32gb ram ddr4 512gb m.2 ssd 1tb hdd", "attributes": ["dual band", "high definition"], "options": ["color: newly ddr4 core i5 8250u", "size: 32gb ram ddr4 512gb m.2 ssd 1tb hdd"], "instruction_attributes": ["dual band", "high definition"], "instruction_options": ["newly ddr4 core i5 8250u", "32gb ram ddr4 512gb m.2 ssd 1tb hdd"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTRVSEKM", "worker_id": "AJY5G987IRT25"}, {"asin": "B089W3JQC5", "instruction": "i need a dual band 10th gen desktop that is a core i5", "attributes": ["dual band", "high definition"], "options": ["color: 10th ddr4 core i5-10210u", "size: 64gb ram ddr4 512gb m.2 ssd 2tb hdd"], "instruction_attributes": ["dual band"], "instruction_options": ["10th ddr4 core i5-10210u"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD3JCIK", "worker_id": "A2ECRNQ3X5LEXD"}], "B073H2QQKK": [{"asin": "B073H2QQKK", "instruction": "i am looking for throw pillow covers that are machine washable in yellow white and are 26\" by 16\"", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: yellow white", "size: 26\" x 16\""], "instruction_attributes": ["machine washable"], "instruction_options": ["yellow white", "26\" x 16\""], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0PSW5K", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B073H2QQKK", "instruction": "i'm looking for machine washable pillows scarlet color.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: scarlet", "size: 40\" x 40\""], "instruction_attributes": ["machine washable"], "instruction_options": ["scarlet"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYI76LZ", "worker_id": "A16IQOX0DK14OJ"}], "B0034Q8FJK": [{"asin": "B0034Q8FJK", "instruction": "i need some hair dye that is shocking blue and is 4 ounces.", "attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "options": ["color: shocking blue", "size: 4 fl oz (pack of 1)"], "instruction_attributes": ["hair dye"], "instruction_options": ["shocking blue", "4 fl oz (pack of 1)"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMAHIZF", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0034Q8FJK", "instruction": "i am looking for classic raven colored hair dye.", "attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "options": ["color: raven", "size: 4 fl oz (pack of 2)"], "instruction_attributes": ["hair dye"], "instruction_options": ["raven"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYMKM62", "worker_id": "A1EREKSZAA9V7B"}], "B01460C2I2": [{"asin": "B01460C2I2", "instruction": "i am looking for grey hair extensions that are 22 inches long.", "attributes": ["hair extensions", "hair styling", "hair cutting"], "options": ["color: #grey", "size: 22 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#grey", "22 inch"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZCJC7E", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01460C2I2", "instruction": "i'm shopping for number 4, medium brown hair extensions that i can use for hair styling. they should be about 14 inches long.", "attributes": ["hair extensions", "hair styling", "hair cutting"], "options": ["color: #4 medium brown", "size: 14 inch"], "instruction_attributes": ["hair extensions", "hair styling"], "instruction_options": ["#4 medium brown", "14 inch"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH6UV1C", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B01460C2I2", "instruction": "i am looking for a 20 inch hair clip for my wife. and i would prefer the #4t27 medium brown ombre dark blonde", "attributes": ["hair extensions", "hair styling", "hair cutting"], "options": ["color: #4t27 medium brown ombre dark blonde", "size: 20 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#4t27 medium brown ombre dark blonde", "20 inch"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTQAO62", "worker_id": "A2COCSUGZV28X"}, {"asin": "B01460C2I2", "instruction": "i am looking for hair extensions that are human hair and double weft 20 inch.", "attributes": ["hair extensions", "hair styling", "hair cutting"], "options": ["color: #33 dark auburn", "size: 12 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["12 inch"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMLYJ1U", "worker_id": "A2KW17G25L25R8"}], "B09HZRJNJJ": [{"asin": "B09HZRJNJJ", "instruction": "i'm looking for a slim fit , high waist women formal dress made of light weight good quality polyester material. also, choose medium size red colored one.", "attributes": ["light weight", "slim fit", "quality polyester", "high waist"], "options": ["color: a-red", "size: medium"], "instruction_attributes": ["light weight", "slim fit", "quality polyester", "high waist"], "instruction_options": ["a-red", "medium"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JX7C7GQ", "worker_id": "AR0VJ5XRG16UJ"}], "B09CGZC5ZV": [{"asin": "B09CGZC5ZV", "instruction": "i would like an aluminum alloy tripod.", "attributes": ["quick release", "aluminum alloy"], "options": [""], "instruction_attributes": ["aluminum alloy"], "instruction_options": [], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK82S5AD", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LQW6JKF": [{"asin": "B09LQW6JKF", "instruction": "i am looking for silver birthday cake toppers.", "attributes": ["birthday cake", "party supplies"], "options": ["color: silver"], "instruction_attributes": ["birthday cake"], "instruction_options": ["silver"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHXLQHA", "worker_id": "A2ECRNQ3X5LEXD"}], "B07WPZ3YDD": [{"asin": "B07WPZ3YDD", "instruction": "i need a tablet that has a 1080p hd resolution.", "attributes": ["1080p hd", "quad core"], "options": [""], "instruction_attributes": ["1080p hd"], "instruction_options": [], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXPYYML", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q5V4GLZ": [{"asin": "B09Q5V4GLZ", "instruction": "i would like to buy some xxl navy high waisted yoga pants.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: navy", "size: xx-large"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X02Z343F", "worker_id": "A1WS884SI0SLO4"}], "B08XXGZNXP": [{"asin": "B08XXGZNXP", "instruction": "i'm looking for a lip and hand care gift set that is plant based and cruelty free.", "attributes": ["plant based", "animal testing", "paraben free", "cruelty free", "green tea", "seed oil", "argan oil"], "options": ["color: lip&hand care gift set (agave+untamed nature)"], "instruction_attributes": ["plant based", "cruelty free"], "instruction_options": ["lip&hand care gift set (agave+untamed nature)"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWRB5TW", "worker_id": "A345TDMHP3DQ3G"}], "B083W3Q9Q4": [{"asin": "B083W3Q9Q4", "instruction": "i need hair extensions that are a medium brown and that come in two pieces that are an updo.", "attributes": ["easy apply", "hair extensions"], "options": ["color: medium brown(8#)", "size: 2pcs tousled updo"], "instruction_attributes": ["hair extensions"], "instruction_options": ["medium brown(8#)", "2pcs tousled updo"], "assignment_id": "36ZN444YT28UFQQ45BORC65U29FOIQ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B083W3Q9Q4", "instruction": "i want 2pcs of tousled updo hair extensions. it should be easy to apply.", "attributes": ["easy apply", "hair extensions"], "options": ["color: light brown mix ash blonde-55 gram", "size: 2pcs tousled updo"], "instruction_attributes": ["easy apply", "hair extensions"], "instruction_options": ["2pcs tousled updo"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F20FOHK", "worker_id": "A1NF6PELRKACS9"}], "B00ADR6M2U": [{"asin": "B00ADR6M2U", "instruction": "i'm looking for sulfate and paraben free conditioner.", "attributes": ["sulfate free", "paraben free"], "options": ["size: 4 pack"], "instruction_attributes": ["sulfate free", "paraben free"], "instruction_options": [], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPQZTX8", "worker_id": "A19317A3X87NVM"}], "B096DSH2VL": [{"asin": "B096DSH2VL", "instruction": "i am looking for an eye balm face moisturizer for my dry skin.", "attributes": ["seed oil", "dry skin"], "options": ["color: eye balm"], "instruction_attributes": ["dry skin"], "instruction_options": ["eye balm"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6C4E0VK", "worker_id": "A2ECRNQ3X5LEXD"}], "B075MNJ4PS": [{"asin": "B075MNJ4PS", "instruction": "i need a button tufted couch preferably in emerald color.", "attributes": ["button tufted", "contemporary design"], "options": ["color: emerald"], "instruction_attributes": ["button tufted"], "instruction_options": ["emerald"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRM02YL", "worker_id": "A15ERD4HOFEPHM"}], "B0839CS5BV": [{"asin": "B0839CS5BV", "instruction": "i would like to get a size 7 white loafer with a rubber sole.", "attributes": ["anti slip", "rubber sole"], "options": ["color: t-white", "size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["t-white", "7"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISS8YO1", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0839CS5BV", "instruction": "i would like to buy casual work shoes with a rubber sole and of size 8.5", "attributes": ["anti slip", "rubber sole"], "options": ["color: z-grass green", "size: 8.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["8.5"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUAH9A2", "worker_id": "AHXHM1PQTRWIQ"}], "B07B3RL5DY": [{"asin": "B07B3RL5DY", "instruction": "i would like a 30 count of gmo free banana trail mix.", "attributes": ["low calorie", "low sugar", "high protein", "low carb", "gmo free", "gluten free"], "options": ["flavor name: bananas for chocolate", "size: 30 count"], "instruction_attributes": ["gmo free"], "instruction_options": ["bananas for chocolate", "30 count"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTRY8A0W", "worker_id": "A1WS884SI0SLO4"}], "B07BBW6X2L": [{"asin": "B07BBW6X2L", "instruction": "i want to find sugar free shortbread cookies that are ready to eat.", "attributes": ["sugar free", "ready eat"], "options": [""], "instruction_attributes": ["sugar free", "ready eat"], "instruction_options": [], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSAF2Q8", "worker_id": "A345TDMHP3DQ3G"}], "B07BMBKNF4": [{"asin": "B07BMBKNF4", "instruction": "i want a natural lip bam contain vagan oil containt", "attributes": ["coconut oil", "seed oil"], "options": ["color: coral pink \"allison\""], "instruction_attributes": ["coconut oil", "seed oil"], "instruction_options": ["coral pink \"allison\""], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWF525A", "worker_id": "A3N9ZYQAESNFQH"}], "B07238WLLT": [{"asin": "B07238WLLT", "instruction": "i would like to get a six pack of low calorie energy drinks.", "attributes": ["plant based", "non gmo", "low calorie", "certified organic", "artificial colors"], "options": ["size: 6 count"], "instruction_attributes": ["low calorie"], "instruction_options": ["6 count"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVGC0QB", "worker_id": "A1WS884SI0SLO4"}], "B019EQIFHA": [{"asin": "B019EQIFHA", "instruction": "i want to find a pack of 3 three-ounce bags of sweet and hot, ready-to-eat beef jerky.", "attributes": ["protein serving", "ready eat"], "options": ["flavor name: sweet & hot", "size: 3 ounce (pack of 3)"], "instruction_attributes": ["ready eat"], "instruction_options": ["sweet & hot", "3 ounce (pack of 3)"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZ4XLK7", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B019EQIFHA", "instruction": "i want teriyaki flavor protein serving ready eat jerky 7.2 ounce pouches", "attributes": ["protein serving", "ready eat"], "options": ["flavor name: teriyaki", "size: 7.2-ounce pouches (pack of 2)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4C7R6P", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B019EQIFHA", "instruction": "i want ready to eat bridgford sweet baby ray's original 99% fat free honey barbecue beef jerky.", "attributes": ["protein serving", "ready eat"], "options": ["flavor name: original 99% fat free", "size: 3 ounce (pack of 4)"], "instruction_attributes": ["ready eat"], "instruction_options": ["original 99% fat free"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKKDVPP", "worker_id": "A2RBF3IIJP15IH"}], "B00RJEU3L6": [{"asin": "B00RJEU3L6", "instruction": "i would like to buy a 12 pack of 2.6 ounces ginger sesame wild caught tuna.", "attributes": ["wild caught", "protein serving", "soy free", "gluten free"], "options": ["flavor name: ginger sesame", "size: 2.6 ounce (pack of 12)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TTUUSQ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00RJEU3L6", "instruction": "i want buy 11 ounce, gluten free ,protein serving tuna also fresh", "attributes": ["wild caught", "protein serving", "soy free", "gluten free"], "options": ["flavor name: ranch", "size: 11 ounce (pack of 12)"], "instruction_attributes": ["protein serving", "gluten free"], "instruction_options": ["11 ounce (pack of 12)"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCIYEBAK", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B00RJEU3L6", "instruction": "i need some wild caught, hickory smoked tuna.", "attributes": ["wild caught", "protein serving", "soy free", "gluten free"], "options": ["flavor name: hickory smoked", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["wild caught"], "instruction_options": ["hickory smoked"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFV7IXL2", "worker_id": "A19317A3X87NVM"}, {"asin": "B00RJEU3L6", "instruction": "i want a gluten free starkist tuna variety pack.", "attributes": ["wild caught", "protein serving", "soy free", "gluten free"], "options": ["flavor name: variety pack", "size: 3 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["variety pack"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLWE307", "worker_id": "A2RBF3IIJP15IH"}], "B09PNH7BSN": [{"asin": "B09PNH7BSN", "instruction": "i ned a height adjustable pink office chair.", "attributes": ["height adjustable", "non slip", "steel frame", "storage space"], "options": ["color: pink"], "instruction_attributes": ["height adjustable"], "instruction_options": ["pink"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AHBWBA", "worker_id": "A19317A3X87NVM"}], "B09PVJTPVS": [{"asin": "B09PVJTPVS", "instruction": "i'm looking for a yellow casual sports blazer.", "attributes": ["daily casual", "machine wash"], "options": ["color: yellow", "size: xx-large"], "instruction_attributes": ["daily casual"], "instruction_options": ["yellow"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY86YB81I", "worker_id": "A19317A3X87NVM"}], "B083FLYWSW": [{"asin": "B083FLYWSW", "instruction": "i would like to get a women's large pink heather cotton t-shirt.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: pink", "fit type: women", "size: large"], "instruction_attributes": ["heathers cotton", "cotton heather"], "instruction_options": ["pink", "women", "large"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P5HUBY", "worker_id": "A1WS884SI0SLO4"}], "B09H5X7PG1": [{"asin": "B09H5X7PG1", "instruction": "i would like an 8 pack of waffles of two different flavors that are easy to prepare", "attributes": ["easy prepare", "artificial colors"], "options": ["size: 8 - pack (2 flavors, 4 boxes of each)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["8 - pack (2 flavors, 4 boxes of each)"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ1C0N3", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CPRKX3M": [{"asin": "B07CPRKX3M", "instruction": "i'm looking for a facial scrub that has both anti aging properties and helps with fine lines.", "attributes": ["anti aging", "cruelty free", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "fine lines"], "instruction_options": [], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCKV5Q1", "worker_id": "A36LOA6VLJU157"}], "B017QFA02Y": [{"asin": "B017QFA02Y", "instruction": "i am looking for a black bikini that has an elastic waistband and is in a size small.", "attributes": ["machine wash", "elastic waistband"], "options": ["color: black, honey almond, nymph's thigh, speakeasy, white, grey heather", "number of items: 7", "size: small"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["black, honey almond, nymph's thigh, speakeasy, white, grey heather", "small"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATZA37B", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SYXW2PB": [{"asin": "B09SYXW2PB", "instruction": "i would like a easy to use carrying case for my camera.", "attributes": ["easy use", "case cover", "carrying case"], "options": [""], "instruction_attributes": ["easy use", "carrying case"], "instruction_options": [], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZU3CNA", "worker_id": "A1WS884SI0SLO4"}], "B09KNB2SVM": [{"asin": "B09KNB2SVM", "instruction": "i would like to get a high def hdmi to vga adapter that works with blu ray.", "attributes": ["gold plated", "blu ray", "1080p hd", "heavy duty", "high definition"], "options": [""], "instruction_attributes": ["blu ray", "high definition"], "instruction_options": [], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98ID92MK", "worker_id": "A1WS884SI0SLO4"}], "B079NFMV97": [{"asin": "B079NFMV97", "instruction": "i would like to get some argan oil to treat my damaged hair.", "attributes": ["argan oil", "hair treatment", "damaged hair", "fine lines", "hair loss"], "options": [""], "instruction_attributes": ["argan oil", "hair treatment", "damaged hair"], "instruction_options": [], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTIVPLC", "worker_id": "A1WS884SI0SLO4"}], "B01GSGDV1Y": [{"asin": "B01GSGDV1Y", "instruction": "i am looking for non gmo sesame pretzels that come in a 12 pack.", "attributes": ["non gmo", "resealable bag", "quality ingredients"], "options": ["flavor name: sesame", "size: 7.2 ounce (pack of 12)"], "instruction_attributes": ["non gmo"], "instruction_options": ["sesame", "7.2 ounce (pack of 12)"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DM0K4J", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Y3X6GW7": [{"asin": "B07Y3X6GW7", "instruction": "i would like to get a heather blue cotton t shirt for my youth size 2t child.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: heather blue", "fit type: youth", "size: 2t"], "instruction_attributes": ["heathers cotton", "cotton heather"], "instruction_options": ["heather blue", "youth", "2t"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21IBQFF", "worker_id": "A1WS884SI0SLO4"}], "B07Y972SSM": [{"asin": "B07Y972SSM", "instruction": "i would like a fully cooked cut of spiced meat.", "attributes": ["fully cooked", "protein serving"], "options": [""], "instruction_attributes": ["fully cooked"], "instruction_options": [], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L844BC6X", "worker_id": "A1WS884SI0SLO4"}], "B091J1F94T": [{"asin": "B091J1F94T", "instruction": "i would like to get a black noise cancelling headset to play video games.", "attributes": ["noise cancelling", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI8WFSSE", "worker_id": "A1WS884SI0SLO4"}], "B08CKZTB12": [{"asin": "B08CKZTB12", "instruction": "i need some metallic pumps that have a rubber sole and are in an 8.5 wide.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: metallic synthetic combination", "size: 8.5 wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["metallic synthetic combination", "8.5 wide"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LP5WROV", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LDM11F4": [{"asin": "B08LDM11F4", "instruction": "i need a wall mounted mirror in the color d.", "attributes": ["wall mounted", "high density", "wood frame"], "options": ["color: d"], "instruction_attributes": ["wall mounted"], "instruction_options": ["d"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXASJUA", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NBZ2VGX": [{"asin": "B09NBZ2VGX", "instruction": "i would like to buy a red radio with wireless bluetooth and stereo sound.", "attributes": ["high performance", "high definition", "wireless bluetooth", "stereo sound"], "options": ["color: red"], "instruction_attributes": ["wireless bluetooth", "stereo sound"], "instruction_options": ["red"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746QVBT7", "worker_id": "A1WS884SI0SLO4"}], "B07QNDGM8H": [{"asin": "B07QNDGM8H", "instruction": "i am looking for a height adjustable office chair in white gold.", "attributes": ["height adjustable", "mid century", "stainless steel", "lumbar support", "faux leather"], "options": ["color: white | gold"], "instruction_attributes": ["height adjustable"], "instruction_options": ["white | gold"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKCMT1K", "worker_id": "A2ECRNQ3X5LEXD"}], "B003Q4TWF6": [{"asin": "B003Q4TWF6", "instruction": "can you find some chai tea that is both sugar and caffeine free? i need 3 pounds of it.", "attributes": ["sugar free", "caffeine free", "usda organic", "non gmo", "natural ingredients"], "options": ["flavor name: sugar free", "size: 3 pound"], "instruction_attributes": ["sugar free", "caffeine free"], "instruction_options": ["sugar free", "3 pound"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GCNS3L", "worker_id": "A36LOA6VLJU157"}, {"asin": "B003Q4TWF6", "instruction": "i would like a 3 pound box of original sugar free tea.", "attributes": ["sugar free", "caffeine free", "usda organic", "non gmo", "natural ingredients"], "options": ["flavor name: original", "size: 3 pound"], "instruction_attributes": ["sugar free"], "instruction_options": ["original", "3 pound"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA78C86", "worker_id": "A1WS884SI0SLO4"}], "B095HPJFM6": [{"asin": "B095HPJFM6", "instruction": "i would like to get some size 6.5 yellow non slip flip flops.", "attributes": ["non slip", "ankle strap"], "options": ["color: 0 # yellow", "size: 6.5"], "instruction_attributes": ["non slip"], "instruction_options": ["0 # yellow", "6.5"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPSXW9G0", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B095HPJFM6", "instruction": "i would like a pair of size 7 black sandals that are non slip.", "attributes": ["non slip", "ankle strap"], "options": ["color: 6 # black", "size: 7"], "instruction_attributes": ["non slip"], "instruction_options": ["6 # black", "7"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5JNWIZ", "worker_id": "A1WS884SI0SLO4"}], "B0891SX6XN": [{"asin": "B0891SX6XN", "instruction": "i want to find an intel core i5-10400f desktop pc that i can use to play games on. it needs to be omen 25l and configured with nvidia rtx 3090.", "attributes": ["intel core", "tempered glass"], "options": ["configuration: nvidia rtx 3090", "size: omen 25l", "style: intel i5-10400f"], "instruction_attributes": ["intel core"], "instruction_options": ["nvidia rtx 3090", "omen 25l", "intel i5-10400f"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQ7DKE0", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B0891SX6XN", "instruction": "i am looking for desktop pc having intel core processor with nvidia rtx 3080 configuration.", "attributes": ["intel core", "tempered glass"], "options": ["configuration: nvidia rtx 3080", "size: omen 30l", "style: intel i7-10700f"], "instruction_attributes": ["intel core"], "instruction_options": ["nvidia rtx 3080"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z8KGX3", "worker_id": "A1Q8PPQQCWGY0D"}], "B072J9SPMR": [{"asin": "B072J9SPMR", "instruction": "i am looking for professional airbrush foundation made by photo finish in the color of primer. believe it is 1.0 ounce found in the beauty & personal care section. should say water resistant, fragrance and oil free.", "attributes": ["animal testing", "oil free", "fragrance free", "water resistant", "fine mist"], "options": ["color: primer", "size: 0.2 ounce"], "instruction_attributes": ["oil free", "fragrance free", "water resistant"], "instruction_options": ["primer"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8RMZPO", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B072J9SPMR", "instruction": "i want a medium matte and oil free professional airbrush foundation makeup.", "attributes": ["animal testing", "oil free", "fragrance free", "water resistant", "fine mist"], "options": ["color: medium matte", "size: 1 ounce"], "instruction_attributes": ["oil free"], "instruction_options": ["medium matte"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9NP0BR", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B072J9SPMR", "instruction": "i need a medium colored matte foundation that's oil and fragrance free. make sure it hasn't been tested on animals. i want the one ounce bottle.", "attributes": ["animal testing", "oil free", "fragrance free", "water resistant", "fine mist"], "options": ["color: medium matte", "size: 1 fl oz"], "instruction_attributes": ["animal testing", "oil free", "fragrance free"], "instruction_options": ["medium matte", "1 fl oz"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N5UT73", "worker_id": "AR9AU5FY1S3RO"}], "B0919TK46H": [{"asin": "B0919TK46H", "instruction": "i'm looking for a 13.3 inch carrying case for my laptop.", "attributes": ["case cover", "carrying case"], "options": ["size: 13.3-inch"], "instruction_attributes": ["carrying case"], "instruction_options": ["13.3-inch"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJDX0WB", "worker_id": "A19317A3X87NVM"}], "B00WFDK8L6": [{"asin": "B00WFDK8L6", "instruction": "i am looking for a 12 count package of pomegranate fruit bars that do not have nuts or dairy in them.", "attributes": ["gluten free", "low sodium", "nut free", "plant based", "dairy free", "non gmo", "0g trans", "real fruit", "high fructose", "artificial flavors"], "options": ["flavor name: pomegranate", "size: 12 count (pack of 1)"], "instruction_attributes": ["nut free", "dairy free"], "instruction_options": ["pomegranate", "12 count (pack of 1)"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZ5ZKLA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00WFDK8L6", "instruction": "i am looking for a gluten free fig flavored snack bar.", "attributes": ["gluten free", "low sodium", "nut free", "plant based", "dairy free", "non gmo", "0g trans", "real fruit", "high fructose", "artificial flavors"], "options": ["flavor name: fig", "size: 12 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["fig"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY866O184", "worker_id": "A1EREKSZAA9V7B"}], "B00RBU6JMU": [{"asin": "B00RBU6JMU", "instruction": "i would like a size 11 navy fashionable shoe with a rubber sole.", "attributes": ["slip resistant", "relaxed fit", "memory foam", "rubber sole"], "options": ["color: navy | gray", "size: 11"], "instruction_attributes": ["rubber sole"], "instruction_options": ["navy | gray", "11"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHP52QDB", "worker_id": "A1WS884SI0SLO4"}], "B09C85PRKX": [{"asin": "B09C85PRKX", "instruction": "i would like to get a medium black long sleeve hoodie that's pretty loose.", "attributes": ["hand wash", "long sleeve", "polyester cotton"], "options": ["color: black loose", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["black loose", "medium"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW7EFN7", "worker_id": "A1WS884SI0SLO4"}], "B07R9M1GJM": [{"asin": "B07R9M1GJM", "instruction": "i need basic nylon high waist pants that are xx-large with a 37 inch inseam.", "attributes": ["nylon spandex", "tummy control", "high waist"], "options": ["color: basic nylon_heathernavy", "size: xx-large | 37\" inseam"], "instruction_attributes": ["high waist"], "instruction_options": ["basic nylon_heathernavy", "xx-large | 37\" inseam"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAT48AV", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07R9M1GJM", "instruction": "i would like a large heather gray pair of high waisted yoga pants.", "attributes": ["nylon spandex", "tummy control", "high waist"], "options": ["color: basic cotton_heathergray(1)", "size: large | 37\" inseam"], "instruction_attributes": ["high waist"], "instruction_options": ["basic cotton_heathergray(1)", "large | 37\" inseam"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVKVLXT", "worker_id": "A1WS884SI0SLO4"}], "B073QZJZVG": [{"asin": "B073QZJZVG", "instruction": "i'm looking for a ware resistant flip flop sandal made of rubber outsole and rubber sole. also choose navy blue colored sandals with size 10-11, and special size of 3.5-4.5.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: blue (navy | silver)", "size: 10-11", "special size type: 3.5-4.5"], "instruction_attributes": ["water resistant", "rubber outsole", "rubber sole"], "instruction_options": ["blue (navy | silver)", "10-11", "3.5-4.5"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS354014MMUG", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B073QZJZVG", "instruction": "i am looking for water resistant and rubber sole type havaianas women's slim little birds flip flop sandal also color is light lilac and size is 8.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: light lilac", "size: 8", "special size type: 5.5-6.5"], "instruction_attributes": ["water resistant", "rubber sole"], "instruction_options": ["light lilac", "8"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRD6Y25", "worker_id": "A3RBCGB309WPOC"}, {"asin": "B073QZJZVG", "instruction": "i am looking for a women's little bird (slim) flip flop/sandal with a rubber outsole in the color blueblue, and a size 4 | 5 uk (or special size type 8 made by havaianas.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: blueblue)", "size: 4 | 5 uk", "special size type: 8"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["blueblue)", "4 | 5 uk", "8"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EE9WS5", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B073QZJZVG", "instruction": "i want a pair of size 3 type 10 gold sandgrey lightgolden flip flops with a rubber sole.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: gold sandgrey lightgolden 2719", "size: 3-4", "special size type: 9-10"], "instruction_attributes": ["rubber sole"], "instruction_options": ["gold sandgrey lightgolden 2719", "3-4", "9-10"], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUJES5X", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B073QZJZVG", "instruction": "i need water resistant flip flops that are a size 10 little kid", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: gold sandgrey lightgolden 2719", "size: 10 little kid", "special size type: 39 eu"], "instruction_attributes": ["water resistant"], "instruction_options": ["10 little kid"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT3AAHJ7", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B073QZJZVG", "instruction": "i want navy and water resistant havaianas women's flip flop sandals.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: blue(navy blue)", "size: 5", "special size type: 3.5-4.5"], "instruction_attributes": ["water resistant"], "instruction_options": ["blue(navy blue)"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53VQGKR", "worker_id": "A2RBF3IIJP15IH"}], "B07Q73Y6BY": [{"asin": "B07Q73Y6BY", "instruction": "i need some vanity lights that are clear glass", "attributes": ["clear glass", "glass shade"], "options": [""], "instruction_attributes": ["clear glass"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZH91YS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09F6C3XGC": [{"asin": "B09F6C3XGC", "instruction": "i am looking for an iphone case that is easy to install and is metallic gun metal.", "attributes": ["hands free", "easy install"], "options": ["color: metallic gun metal"], "instruction_attributes": ["easy install"], "instruction_options": ["metallic gun metal"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUD73CG", "worker_id": "A2ECRNQ3X5LEXD"}], "B0861SJPCV": [{"asin": "B0861SJPCV", "instruction": "i want to find one pack of freeze-dried, shelf-stable s'mores cookies made with quality ingredients.", "attributes": ["fully cooked", "freeze dried", "shelf stable", "ready eat", "gluten free", "quality ingredients"], "options": ["size: 1 pack"], "instruction_attributes": ["freeze dried", "shelf stable", "quality ingredients"], "instruction_options": ["1 pack"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UH6XIQK", "worker_id": "A345TDMHP3DQ3G"}], "B08R6X3BPF": [{"asin": "B08R6X3BPF", "instruction": "i need high quality size 23 makeup brushes.", "attributes": ["high quality", "synthetic hair"], "options": ["size: 23"], "instruction_attributes": ["high quality"], "instruction_options": ["23"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7F3OBH", "worker_id": "A36LOA6VLJU157"}], "B092KX93Z9": [{"asin": "B092KX93Z9", "instruction": "i would like to get a 1080p hd camera with a carrying case.", "attributes": ["water resistant", "1080p hd", "carrying case"], "options": [""], "instruction_attributes": ["1080p hd", "carrying case"], "instruction_options": [], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E0THXJ", "worker_id": "A1WS884SI0SLO4"}], "B015NBTAOW": [{"asin": "B015NBTAOW", "instruction": "i am looking for a plug and play red mouse.", "attributes": ["batteries included", "plug play"], "options": ["color: red"], "instruction_attributes": ["plug play"], "instruction_options": ["red"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH2Z1E2", "worker_id": "A2ECRNQ3X5LEXD"}], "B001TSK3AY": [{"asin": "B001TSK3AY", "instruction": "i am looking for an anti-perspirant", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOFW9MO", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PG6YSMS": [{"asin": "B09PG6YSMS", "instruction": "i need a long lasting cell phone that is 128 gb.", "attributes": ["long lasting", "fast charging"], "options": ["size: 128gb"], "instruction_attributes": ["long lasting"], "instruction_options": ["128gb"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7SN6YT", "worker_id": "A2ECRNQ3X5LEXD"}], "B01B9A3U6A": [{"asin": "B01B9A3U6A", "instruction": "i need a living room area rug thare is silver and blue and is a 9' square.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: silver | blue", "size: 9' square"], "instruction_attributes": ["living room"], "instruction_options": ["silver | blue", "9' square"], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQ65HHD", "worker_id": "A2ECRNQ3X5LEXD"}], "B00KSLX4AO": [{"asin": "B00KSLX4AO", "instruction": "i would like a high performance outdoor speaker.", "attributes": ["power amplifier", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH0D1VP", "worker_id": "A1WS884SI0SLO4"}], "B07J4ZKB44": [{"asin": "B07J4ZKB44", "instruction": "i need a glass shade that is chrome colored.", "attributes": ["glass shade", "clear glass"], "options": ["color: chrome"], "instruction_attributes": ["glass shade"], "instruction_options": ["chrome"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEDD688", "worker_id": "A2ECRNQ3X5LEXD"}], "B0010NYC3M": [{"asin": "B0010NYC3M", "instruction": "can i get a 4 fluid ounce bottle of violet night hair dye.", "attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "options": ["color: violet night", "size: 4 fl oz (pack of 1)"], "instruction_attributes": ["hair dye"], "instruction_options": ["violet night", "4 fl oz (pack of 1)"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYI6DH2", "worker_id": "A1WS884SI0SLO4"}], "B08169JG35": [{"asin": "B08169JG35", "instruction": "i would like to buy a 14 inch rose gold throw pillow cover for my living room.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: rose gold", "size: 14 inch (pack of 1)"], "instruction_attributes": ["living room"], "instruction_options": ["rose gold", "14 inch (pack of 1)"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K2112Y", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08169JG35", "instruction": "i need a 14 inch pillow cover that fits for my sofa in living room. and please select the peach pink one", "attributes": ["exquisite workmanship", "living room"], "options": ["color: peach pink", "size: 14 inch (pack of 1)"], "instruction_attributes": ["living room"], "instruction_options": ["peach pink", "14 inch (pack of 1)"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCI8UABJ", "worker_id": "A2COCSUGZV28X"}], "B09MWDNSJL": [{"asin": "B09MWDNSJL", "instruction": "i would like to buy a high quality hair regrowth treatment made from natural ingredients.", "attributes": ["high quality", "natural ingredients", "hair growth", "hair loss"], "options": [""], "instruction_attributes": ["high quality", "natural ingredients", "hair growth"], "instruction_options": [], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QLVOX0", "worker_id": "A1WS884SI0SLO4"}], "B09KNWQ36B": [{"asin": "B09KNWQ36B", "instruction": "i would like to buy some lotion for my dry skin.", "attributes": ["sensitive skin", "dry skin"], "options": [""], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZEB9K1", "worker_id": "A1WS884SI0SLO4"}], "B07GF3B95T": [{"asin": "B07GF3B95T", "instruction": "i need 14 inch hair extensions that are a medium brown to dark blonde.", "attributes": ["double sided", "hair extensions"], "options": ["color: medium brown to dark blonde", "size: 14 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["medium brown to dark blonde", "14 inch"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWU3CR9D", "worker_id": "A2ECRNQ3X5LEXD"}], "B08KHN1MPZ": [{"asin": "B08KHN1MPZ", "instruction": "i'm looking to get some fluorescent purple nail art glitter.", "attributes": ["animal testing", "cruelty free", "easy use", "nail art"], "options": ["color: fluorescent purple", "size: super chunky - 100g | 3.5oz"], "instruction_attributes": ["nail art"], "instruction_options": ["fluorescent purple"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDST7VU7", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B08KHN1MPZ", "instruction": "i'm looking for body make up for skin care accessories.", "attributes": ["animal testing", "cruelty free", "easy use", "nail art"], "options": ["color: rose gold holographic", "size: microfine - 10g | 0.35oz sample"], "instruction_attributes": ["animal testing", "easy use", "nail art"], "instruction_options": ["rose gold holographic"], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZQP05A", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08KHN1MPZ", "instruction": "i am looking for arts craft turquoise blue nails.", "attributes": ["animal testing", "cruelty free", "easy use", "nail art"], "options": ["color: turquoise blue", "size: microfine - 10g | 0.35oz sample"], "instruction_attributes": ["nail art"], "instruction_options": ["turquoise blue"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQECQSH", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B08KHN1MPZ", "instruction": "i am looking for a fluorescent pink color microfine body glitter which is animal tested and cruelty free.", "attributes": ["animal testing", "cruelty free", "easy use", "nail art"], "options": ["color: fluorescent pink", "size: ultrafine - 10g | 0.35oz sample"], "instruction_attributes": ["animal testing", "cruelty free"], "instruction_options": ["fluorescent pink"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRN2FMH", "worker_id": "A1V2JTEEBCXR20"}, {"asin": "B08KHN1MPZ", "instruction": "i am looking for a turquoise blue color of body glitter nail art", "attributes": ["animal testing", "cruelty free", "easy use", "nail art"], "options": ["color: turquoise blue", "size: chunky - 100g | 3.5oz"], "instruction_attributes": ["nail art"], "instruction_options": ["turquoise blue"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HUMPB6", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B08KHN1MPZ", "instruction": "i am looking for a gold body glitter for nail art", "attributes": ["animal testing", "cruelty free", "easy use", "nail art"], "options": ["color: gold", "size: fine - 100g | 3.5oz"], "instruction_attributes": ["nail art"], "instruction_options": ["fine - 100g | 3.5oz"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS32G9P", "worker_id": "A9QRQL9CFJBI7"}], "B07V2NTJCD": [{"asin": "B07V2NTJCD", "instruction": "i am looking for a floor lamp that has a bronze finish.", "attributes": ["bronze finish", "living room"], "options": [""], "instruction_attributes": ["bronze finish"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSEU8B1", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FJW2L94": [{"asin": "B09FJW2L94", "instruction": "i need a hard shell case cover for my macbook 12 retina that is sosuke and ponyo colored.", "attributes": ["non slip", "case cover"], "options": ["color: sosuke & ponyo", "size: a1534 (macbook 12 retina)"], "instruction_attributes": ["case cover"], "instruction_options": ["sosuke & ponyo", "a1534 (macbook 12 retina)"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYRN36F", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09FJW2L94", "instruction": "i am looking for a a2442(pro 14\" 2021 m1 pro | max touch id) size of hard shell cases over.", "attributes": ["non slip", "case cover"], "options": ["color: colored graffiti", "size: a2442(pro 14\" 2021 m1 pro | max touch id)"], "instruction_attributes": ["case cover"], "instruction_options": ["a2442(pro 14\" 2021 m1 pro | max touch id)"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54S2837", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09FJW2L94", "instruction": "i'm looking for computer accessories for bag and cases its easy to use.", "attributes": ["non slip", "case cover"], "options": ["color: retro pattern", "size: a2141(pro 16\" touch bar 2019)"], "instruction_attributes": ["case cover"], "instruction_options": ["retro pattern"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FKWU42", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09FJW2L94", "instruction": "i'm looking for a non-slip laptop case with a color that has animal colors.", "attributes": ["non slip", "case cover"], "options": ["color: animal", "size: a2141(pro 16\" touch bar 2019)"], "instruction_attributes": ["non slip", "case cover"], "instruction_options": ["animal"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0XIARN", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B09FJW2L94", "instruction": "i want a pink marble bandless case cover that is compatible with macbook pros.", "attributes": ["non slip", "case cover"], "options": ["color: pink marble", "size: a2442(pro 14\" 2021 m1 pro | max touch id)"], "instruction_attributes": ["case cover"], "instruction_options": ["pink marble"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOHHYDQ", "worker_id": "A2RBF3IIJP15IH"}], "B07MHYH619": [{"asin": "B07MHYH619", "instruction": "i am interested in some noise cancelling earbud headphones.", "attributes": ["water resistant", "noise cancelling", "easy use"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXLZ2EA6", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GNQF1TF": [{"asin": "B09GNQF1TF", "instruction": "i am looking for a steel frame that is light pink and for a full sized bed.", "attributes": ["easy clean", "box spring", "king size", "memory foam", "steel frame"], "options": ["color: light pink", "size: full"], "instruction_attributes": ["steel frame"], "instruction_options": ["light pink", "full"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KIMUHE", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BXJJSH5": [{"asin": "B08BXJJSH5", "instruction": "i need a gold storage case.", "attributes": ["long lasting", "storage case"], "options": ["color: gold"], "instruction_attributes": ["storage case"], "instruction_options": ["gold"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQ66CJ6", "worker_id": "A19317A3X87NVM"}], "B09DCZHF6S": [{"asin": "B09DCZHF6S", "instruction": "i am looking for a green home office chair that is height adjustable.", "attributes": ["height adjustable", "high density", "easy clean", "pu leather"], "options": ["color: green"], "instruction_attributes": ["height adjustable"], "instruction_options": ["green"], "assignment_id": "3R2PKQ87N7I6FN5SSV9EK2GP762MI5", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HGC3QTJ": [{"asin": "B09HGC3QTJ", "instruction": "i need a lightweight sweatshirt that is grey and in a small.", "attributes": ["light weight", "hand wash", "long sleeve", "short sleeve", "faux fur", "tumble dry", "daily wear"], "options": ["color: 08 # gray", "size: small"], "instruction_attributes": ["light weight"], "instruction_options": ["08 # gray", "small"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFBQVM9", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NM2XSDC": [{"asin": "B07NM2XSDC", "instruction": "i would like to get two assorted non-gmo powdered cheeses.", "attributes": ["low calorie", "non gmo", "old fashioned", "gluten free"], "options": ["size: 2 piece assortment"], "instruction_attributes": ["non gmo"], "instruction_options": ["2 piece assortment"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69I18PE", "worker_id": "A1WS884SI0SLO4"}], "B01MUEYBDN": [{"asin": "B01MUEYBDN", "instruction": "i am looking for comfortable fit sneakers that are in a size 4.5 and are black and white chambray.", "attributes": ["comfortable fit", "rubber outsole", "rubber sole"], "options": ["color: black | white chambray", "size: 4.5"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["black | white chambray", "4.5"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXHH2ZR", "worker_id": "A2ECRNQ3X5LEXD"}], "B01GCGKI3O": [{"asin": "B01GCGKI3O", "instruction": "i want to buy a single 3ft black hdmi cable that works with my 4k high definition tv.", "attributes": ["high speed", "high definition"], "options": ["color: black", "size: 3ft", "style: single"], "instruction_attributes": ["high definition"], "instruction_options": ["black", "3ft", "single"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU3QCM5", "worker_id": "A1WS884SI0SLO4"}], "B095HQCQMK": [{"asin": "B095HQCQMK", "instruction": "i am looking for a sweater that is machine washable in an xx-large and is in the color 22.", "attributes": ["machine washable", "machine wash", "quality polyester", "long sleeve", "polyester cotton", "teen girls"], "options": ["color: 22", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["22", "xx-large"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKS5UI5", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PG8G4G8": [{"asin": "B09PG8G4G8", "instruction": "i want to find an oral patch that i can use to control bad breath odor.", "attributes": ["fresh breath", "bad breath"], "options": [""], "instruction_attributes": ["bad breath"], "instruction_options": [], "assignment_id": "38F71OA9G46M5W32RN3TH53XRD8FM3", "worker_id": "A345TDMHP3DQ3G"}], "B07GYZZBRK": [{"asin": "B07GYZZBRK", "instruction": "i would like a cupcake topper that would be appropriate for a baby shower.", "attributes": ["easy use", "party supplies", "baby shower"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3C1VBZ", "worker_id": "A1WS884SI0SLO4"}], "B07RL3B6BC": [{"asin": "B07RL3B6BC", "instruction": "i would like a grey bed made of solid wood.", "attributes": ["white item", "assembly required", "white finish", "box spring", "solid wood"], "options": ["color: grey"], "instruction_attributes": ["solid wood"], "instruction_options": ["grey"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BHCJVA", "worker_id": "A1WS884SI0SLO4"}], "B08LQSCBCW": [{"asin": "B08LQSCBCW", "instruction": "i would like a core i5 desktop that has 8gb of ram and an ssd of 256gb.", "attributes": ["core i5", "intel core"], "options": ["configuration: 8gb ram | 256gb ssd"], "instruction_attributes": ["core i5"], "instruction_options": ["8gb ram | 256gb ssd"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z989E2S", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LY9SRXN": [{"asin": "B09LY9SRXN", "instruction": "i am looking for a light weight hard shell case that is 14 inches and is in the color yellow tansy.", "attributes": ["light weight", "case cover"], "options": ["color: 14inch-yellow tansy"], "instruction_attributes": ["light weight"], "instruction_options": ["14inch-yellow tansy"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35FBGUX", "worker_id": "A2ECRNQ3X5LEXD"}], "B083RYJT6M": [{"asin": "B083RYJT6M", "instruction": "i am looking for a paleo seasoning set that is 2.5 ounces and is low sodium.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: paleo seasoning set", "size: 2.5 ounce (pack of 1)", "style: 5 ounce (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["paleo seasoning set", "2.5 ounce (pack of 1)"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP6U3VDQ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B083RYJT6M", "instruction": "i am looking for gluten free paleo seasoning food .", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: paleo seasoning set", "size: 1.5 pound (pack of 1)", "style: lifestyle pack - standard size"], "instruction_attributes": ["gluten free"], "instruction_options": ["paleo seasoning set"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OL499E", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B083RYJT6M", "instruction": "i want to find low sodium everyday seasoning that i can use, in both a 2 ounce bottle and a 2.5 ounce bottle.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 2 ounce (pack of 1)", "style: 2.5 ounce (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["everyday seasonings", "2 ounce (pack of 1)", "2.5 ounce (pack of 1)"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVNBKJ3", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B083RYJT6M", "instruction": "hello ! i need paleo everyday seasonings powder which is gluten free and has low sodium.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 1 pound (pack of 1)", "style: 1.5 pound (pack of 1)"], "instruction_attributes": ["low sodium", "gluten free"], "instruction_options": ["everyday seasonings"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IQ4TLJ", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B083RYJT6M", "instruction": "i am searching for low sodium food, gluten free everyday seasonings, 2.5 ounce (pack of 1)", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 2.5 ounce (pack of 1)", "style: 2.01 ounce (pack of 1)"], "instruction_attributes": ["low sodium", "gluten free"], "instruction_options": ["everyday seasonings", "2.5 ounce (pack of 1)"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RJXFL2", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B083RYJT6M", "instruction": "i want a 1.5 pound box of 2 ounce paleo seasoning bottles that are low sodium..", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: paleo seasoning set", "size: 2 ounce (pack of 1)", "style: 1.5 pound (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["paleo seasoning set", "2 ounce (pack of 1)", "1.5 pound (pack of 1)"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6AJ5GT", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B083RYJT6M", "instruction": "i need everyday seasoning in a 4 piece assortment pack which should have low sodium and is gluten free.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 4 piece assortment", "style: 2.01 ounce (pack of 1)"], "instruction_attributes": ["low sodium", "gluten free"], "instruction_options": ["everyday seasonings", "4 piece assortment"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HG9LHYT", "worker_id": "ASWFLI3N8X72G"}], "B09SP83RFP": [{"asin": "B09SP83RFP", "instruction": "i would like to buy some hair growth treatments made from natural ingredients.", "attributes": ["easy use", "natural ingredients", "hair growth", "hair loss"], "options": [""], "instruction_attributes": ["natural ingredients", "hair growth"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYD3L60", "worker_id": "A1WS884SI0SLO4"}], "B09SKGVDWZ": [{"asin": "B09SKGVDWZ", "instruction": "i am looking for tempered glass screen protectors for the iphone 12 mini.", "attributes": ["high definition", "glass screen", "tempered glass"], "options": ["color: iphone 12 mini"], "instruction_attributes": ["tempered glass"], "instruction_options": ["iphone 12 mini"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS152CXD", "worker_id": "A2ECRNQ3X5LEXD"}], "B00PNMFH80": [{"asin": "B00PNMFH80", "instruction": "i am looking for fruit snacks that are fat free.", "attributes": ["fat free", "gluten free", "source vitamin"], "options": [""], "instruction_attributes": ["fat free"], "instruction_options": [], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZFYC7Z", "worker_id": "A2ECRNQ3X5LEXD"}], "B0815YKZSP": [{"asin": "B0815YKZSP", "instruction": "i would like to buy some orange office chairs that have great lumbar support..", "attributes": ["height adjustable", "lumbar support"], "options": ["color: orange"], "instruction_attributes": ["lumbar support"], "instruction_options": ["orange"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSIK0XR", "worker_id": "A1WS884SI0SLO4"}], "B008XDPCQI": [{"asin": "B008XDPCQI", "instruction": "i'm looking for a rich and creamy crab, clam, and corn chowder bisque. choose the ones that comes in 10.5 oz canes of 6.", "attributes": ["rich creamy", "hand crafted"], "options": ["size: 10.5 ounce (pack of 6)", "style: clam and corn chowder"], "instruction_attributes": ["rich creamy"], "instruction_options": ["10.5 ounce (pack of 6)", "clam and corn chowder"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH5ME18", "worker_id": "A3MNXK3VDK37SN"}, {"asin": "B008XDPCQI", "instruction": "i am purchasing for rich creamy type bar harbor soup bisque crab also size is 10.5 ounce", "attributes": ["rich creamy", "hand crafted"], "options": ["size: 10.5 ounce (pack of 6)", "style: crab bisque"], "instruction_attributes": ["rich creamy"], "instruction_options": ["10.5 ounce (pack of 6)"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGUVBRMQ", "worker_id": "A3RBCGB309WPOC"}, {"asin": "B008XDPCQI", "instruction": "i'm looking for bar harbor soup crab.", "attributes": ["rich creamy", "hand crafted"], "options": ["size: 10.5 ounce (pack of 1)", "style: clam and corn chowder"], "instruction_attributes": ["hand crafted"], "instruction_options": ["10.5 ounce (pack of 1)"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWRYW69", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B008XDPCQI", "instruction": "i need a good doup bisque that's hand crafted. select the manhatten clam chowder variety.", "attributes": ["rich creamy", "hand crafted"], "options": ["size: 10.5 ounce (pack of 1)", "style: manhatten clam chowder"], "instruction_attributes": ["hand crafted"], "instruction_options": ["manhatten clam chowder"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUGAC3Y", "worker_id": "A31PW970Z2PC5P"}], "B0868DCGK3": [{"asin": "B0868DCGK3", "instruction": "i would like to buy a three pack of fine combs good for styling dry hair.", "attributes": ["hair styling", "dry hair"], "options": ["color: 3 pack(fine comb)"], "instruction_attributes": ["hair styling", "dry hair"], "instruction_options": ["3 pack(fine comb)"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8AP5R2", "worker_id": "A1WS884SI0SLO4"}], "B09PBR8NS9": [{"asin": "B09PBR8NS9", "instruction": "i would like to buy some colorful medium long sleeve pajamas from quality fabrics that i can wear every day.", "attributes": ["long sleeve", "quality materials", "daily wear"], "options": ["color: a4-colorful", "size: medium"], "instruction_attributes": ["long sleeve", "quality materials", "daily wear"], "instruction_options": ["a4-colorful", "medium"], "assignment_id": "37TRT2X24116R7L1JO45INKV8OWBJU", "worker_id": "A1WS884SI0SLO4"}], "B09C3SD83Q": [{"asin": "B09C3SD83Q", "instruction": "i want a cruelty free lip gloss that is in shimmy glossy and comes in a pack of 8.", "attributes": ["cruelty free", "dry skin", "sensitive skin"], "options": ["color: (shimmer glossy, 8pcs-b)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["(shimmer glossy, 8pcs-b)"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J3QFSH", "worker_id": "A2ECRNQ3X5LEXD"}], "B08R95Z7BF": [{"asin": "B08R95Z7BF", "instruction": "i want to find a strawberry scented foot peel mask that has argan oil as a key ingredient.", "attributes": ["high quality", "argan oil", "natural ingredients", "dead skin", "dry skin"], "options": ["scent: strawberry"], "instruction_attributes": ["argan oil"], "instruction_options": ["strawberry"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMNRG2C", "worker_id": "A345TDMHP3DQ3G"}], "B00IQCRTXU": [{"asin": "B00IQCRTXU", "instruction": "i need a compact flaschard that is high speed and has a 512gb capacity.", "attributes": ["1080p hd", "high speed"], "options": ["capacity: 512gb", "style: cfexpress + usb reader"], "instruction_attributes": ["high speed"], "instruction_options": ["512gb"], "assignment_id": "354P56DE9VDCOY11T1135MPMLF8S7R", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00IQCRTXU", "instruction": "i am looking for a high speed compactflash card with128gb 2 -pack capacity. also choose cfexpress + usb reader style.", "attributes": ["1080p hd", "high speed"], "options": ["capacity: 128gb 2-pack", "style: cfexpress + usb reader"], "instruction_attributes": ["high speed"], "instruction_options": ["128gb 2-pack", "cfexpress + usb reader"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292X5PWQC", "worker_id": "A2HMEGTAFO0CS8"}], "B09RFM8Q7G": [{"asin": "B09RFM8Q7G", "instruction": "i want to find a yellow manual toothbrush suitable for 7-14 year old kids with sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: yellow-f", "size: 7-14 year"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["yellow-f", "7-14 year"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJDY8ZH", "worker_id": "A345TDMHP3DQ3G"}], "B09QQ16D9H": [{"asin": "B09QQ16D9H", "instruction": "i'd like to find a green toothbrush suitable for 7-12 year old kids with sensitive teeth.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: green#6", "size: 7-12 year old"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["green#6", "7-12 year old"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZ4WLK6", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09QQ16D9H", "instruction": "i would like a red tooth brush for my 7 -12 year old's sensitive teeth.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: red#3", "size: 7-12 year old"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["red#3", "7-12 year old"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC07NI9", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09QQ16D9H", "instruction": "i'm looking for a easy to use manual toothbrush for sensitive teeth. also choose 7-12 year old kids usable blue colored one.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: blue#2", "size: 7-12 year old"], "instruction_attributes": ["easy use", "sensitive teeth"], "instruction_options": ["blue#2", "7-12 year old"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95V2QXH", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B09QQ16D9H", "instruction": "i need to find an easy to use toothbrush for a seven year old. look for a yellow one.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: yellow#2", "size: 7-14 year old"], "instruction_attributes": ["easy use"], "instruction_options": ["yellow#2", "7-14 year old"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXJ8WKY", "worker_id": "AR9AU5FY1S3RO"}], "B002OEPJK6": [{"asin": "B002OEPJK6", "instruction": "i'm looking for a black colored king sized bed with night stand and chest made of engineered wood.", "attributes": ["assembly required", "engineered wood"], "options": ["color: black", "size: king", "style: bed | night stand & chest"], "instruction_attributes": ["engineered wood"], "instruction_options": ["black", "king", "bed | night stand & chest"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C46YI0T", "worker_id": "AR0VJ5XRG16UJ"}], "B09LVV68PS": [{"asin": "B09LVV68PS", "instruction": "i need a usb flash drive that can carry 512gb and is in the style of istorage miscrosd card and datashur sd drive", "attributes": ["easy use", "usb port"], "options": ["capacity: 512gb", "style: datashur sd drive + istorage microsd card"], "instruction_attributes": ["usb port"], "instruction_options": ["512gb", "datashur sd drive + istorage microsd card"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17XYDY31", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09LVV68PS", "instruction": "i would like a 3 pack of istorage 0gb microsd cards that are easy to use.", "attributes": ["easy use", "usb port"], "options": ["capacity: 0gb", "style: istorage microsd card | 3 pack"], "instruction_attributes": ["easy use"], "instruction_options": ["0gb", "istorage microsd card | 3 pack"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMH0QB7V", "worker_id": "A1WS884SI0SLO4"}], "B07CG6N4K7": [{"asin": "B07CG6N4K7", "instruction": "i would like to get some size 10 red pumps with a rubber sole.", "attributes": ["day comfort", "rubber sole"], "options": ["color: black-red", "size: 10"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black-red", "10"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTP74EM", "worker_id": "A1WS884SI0SLO4"}], "B07JX7QM8G": [{"asin": "B07JX7QM8G", "instruction": "i'm looking for a high performance paint contrast projector.", "attributes": ["high performance", "high definition"], "options": ["model: projection paint contrast"], "instruction_attributes": ["high performance"], "instruction_options": ["projection paint contrast"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR4ZOUFN", "worker_id": "A19317A3X87NVM"}], "B08FXNWKYV": [{"asin": "B08FXNWKYV", "instruction": "i want to get some photo studio backgrounds that are dust proof and for high resolution.", "attributes": ["dust proof", "high resolution"], "options": [""], "instruction_attributes": ["dust proof", "high resolution"], "instruction_options": [], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXPPYMC", "worker_id": "A2YNPKYEFDZ6C9"}], "B09D2ZKB99": [{"asin": "B09D2ZKB99", "instruction": "i would like to buy a 16 x 36 inch round clear table pad for my dining room table that's easy to clean.", "attributes": ["eco friendly", "easy clean", "dining room"], "options": ["color: round new clear", "size: 16x36 inch"], "instruction_attributes": ["easy clean", "dining room"], "instruction_options": ["round new clear", "16x36 inch"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C1NPH6", "worker_id": "A1WS884SI0SLO4"}], "B01FTZYWJK": [{"asin": "B01FTZYWJK", "instruction": "find me a carbon fiber tripod stand.", "attributes": ["quick release", "easy carry", "carbon fiber"], "options": [""], "instruction_attributes": ["carbon fiber"], "instruction_options": [], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJDXW07", "worker_id": "A36LOA6VLJU157"}], "B093CXPS8D": [{"asin": "B093CXPS8D", "instruction": "i need an led video light that is l6000a. some batteries would be nice.", "attributes": ["batteries included", "easy use"], "options": ["color: rgb light for photography", "size: l6000a"], "instruction_attributes": ["batteries included"], "instruction_options": ["l6000a"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDMKQZG", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B093CXPS8D", "instruction": "i need an easy to use warm light for photography", "attributes": ["batteries included", "easy use"], "options": ["color: white + warm light for photography", "size: l5000r"], "instruction_attributes": ["easy use"], "instruction_options": ["white + warm light for photography"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJPO0WQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B001VNGOAA": [{"asin": "B001VNGOAA", "instruction": "i need one pound of kosher echinacea.", "attributes": ["easy prepare", "kosher certified"], "options": ["size: 1 pound (pack of 1)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4BO89I", "worker_id": "A2ECRNQ3X5LEXD"}], "B098XC1XZP": [{"asin": "B098XC1XZP", "instruction": "i need a long sleeved hoodie that is an xx-large and is in the color gray.", "attributes": ["hand wash", "machine washable", "long sleeve", "drawstring closure", "polyester spandex", "daily wear"], "options": ["color: s-aa-gray", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["s-aa-gray", "xx-large"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8L45O1T", "worker_id": "A2ECRNQ3X5LEXD"}], "B07MG55SJB": [{"asin": "B07MG55SJB", "instruction": "i need a protective ac output cable cord.", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3IZ0DF3", "worker_id": "A19317A3X87NVM"}, {"asin": "B07MG55SJB", "instruction": "i would like a ac adapter with output protection.", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFDSLV3", "worker_id": "A1WS884SI0SLO4"}], "B085T9CWGD": [{"asin": "B085T9CWGD", "instruction": "i would like to get some 20 mm c-0.10 made from high quality materials false lashes.", "attributes": ["cruelty free", "high quality", "quality materials"], "options": ["scent: c-0.10", "size: 20-25 mm"], "instruction_attributes": ["high quality", "quality materials"], "instruction_options": ["c-0.10", "20-25 mm"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU482X4PY9", "worker_id": "A1WS884SI0SLO4"}], "B09854W487": [{"asin": "B09854W487", "instruction": "i'm looking for a 6-count pack of birthday cake flavored donuts that are keto friendly.", "attributes": ["soy free", "keto friendly", "low sugar", "gluten free", "ready eat", "low carb", "quality ingredients", "birthday cake"], "options": ["flavor: birthday cake", "size: 6 count"], "instruction_attributes": ["keto friendly", "birthday cake"], "instruction_options": ["birthday cake", "6 count"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0KFARU", "worker_id": "A345TDMHP3DQ3G"}], "B09RF8CHQK": [{"asin": "B09RF8CHQK", "instruction": "i would like to buy a medium blue short sleeve t-shirt appropriate for a teenage girl.", "attributes": ["loose fit", "polyester cotton", "short sleeve", "long sleeve", "teen girls", "daily wear"], "options": ["color: a03-blue", "size: medium"], "instruction_attributes": ["short sleeve", "teen girls"], "instruction_options": ["a03-blue", "medium"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR0UC0Z", "worker_id": "A1WS884SI0SLO4"}], "B092CP85HK": [{"asin": "B092CP85HK", "instruction": "i need a long lasting white eye shadow.", "attributes": ["highly pigmented", "easy apply", "easy clean", "cruelty free", "long lasting", "eye shadow"], "options": ["color: white 1"], "instruction_attributes": ["long lasting"], "instruction_options": ["white 1"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYK89QY", "worker_id": "A2ECRNQ3X5LEXD"}], "B00A74HZN4": [{"asin": "B00A74HZN4", "instruction": "i want some chincilla 29w x 32l regular straight leg jeans.", "attributes": ["straight leg", "machine wash", "imported zipper"], "options": ["color: chinchilla - soft washed twill", "fit type: regular", "size: 29w x 32l"], "instruction_attributes": ["straight leg"], "instruction_options": ["chinchilla - soft washed twill", "regular", "29w x 32l"], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW64KVV8", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00A74HZN4", "instruction": "i am looking for levi's 514 straight fit jeans for men with straight legs and a regular fit.", "attributes": ["straight leg", "machine wash", "imported zipper"], "options": ["color: native cali - advanced stretch", "fit type: regular", "size: 36w x 30l"], "instruction_attributes": ["straight leg"], "instruction_options": ["regular"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQTN4BH", "worker_id": "A1EREKSZAA9V7B"}], "B084C23QZD": [{"asin": "B084C23QZD", "instruction": "i'm looking for a pair of ivory-colored noise-cancelling headphones.", "attributes": ["noise cancelling", "carrying case"], "options": ["color: ivory"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["ivory"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J2PFSE", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B084C23QZD", "instruction": "i want a on-ear headphone with noise cancelling", "attributes": ["noise cancelling", "carrying case"], "options": ["color: dark blue"], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASIAB75X0", "worker_id": "AVIEE6LDH0BT5"}], "B08BDLWRG8": [{"asin": "B08BDLWRG8", "instruction": "i would like to buy a pack of 6 individually wrapped cookie gift basket.", "attributes": ["baked fresh", "individually wrapped", "gift basket"], "options": ["number of items: 6"], "instruction_attributes": ["individually wrapped", "gift basket"], "instruction_options": ["6"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8DD4RD", "worker_id": "A1WS884SI0SLO4"}], "B09RJ4T8FR": [{"asin": "B09RJ4T8FR", "instruction": "i would like to buy a large black short short sleeve polo shirt.", "attributes": ["slim fit", "long sleeve", "regular fit", "short sleeve"], "options": ["color: black", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["black", "large"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR6475WH3N", "worker_id": "A1WS884SI0SLO4"}], "B08888J18H": [{"asin": "B08888J18H", "instruction": "i need sneakers that have a rubber sole and are a grey blue color in a size 7.", "attributes": ["non slip", "rubber sole"], "options": ["color: grey_blue", "size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["grey_blue", "7"], "assignment_id": "37Z929RLGKIZMWY86444AIH4ACYTS3", "worker_id": "A2ECRNQ3X5LEXD"}], "B01HJW7AHC": [{"asin": "B01HJW7AHC", "instruction": "i want to buy a two pack of high-speed gold-plated hdmi cables.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 2 pack", "size: 10 feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["2 pack"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZK604X", "worker_id": "A2YNPKYEFDZ6C9"}], "B09JKCX4WH": [{"asin": "B09JKCX4WH", "instruction": "keego window blinds will they block out all the sun light or will there be cracks?", "attributes": ["easy install", "living room"], "options": ["color: white - blackout", "size: 64\"w x 64\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["white - blackout"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYEJHDB", "worker_id": "A2NF3B9O8ZKLLZ"}], "B00P1Q5JHW": [{"asin": "B00P1Q5JHW", "instruction": "i want to find 5.3 ounces of plant-based organic hair dye in a dark chocolate color.", "attributes": ["plant based", "easy use", "hair dye"], "options": ["color: dark chocolate", "size: 5.3 ounce (pack of 1)"], "instruction_attributes": ["plant based", "hair dye"], "instruction_options": ["dark chocolate", "5.3 ounce (pack of 1)"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNFVIDL4", "worker_id": "A345TDMHP3DQ3G"}], "B07V6HF7QF": [{"asin": "B07V6HF7QF", "instruction": "i would like a stainless steel coaxial car speaker.", "attributes": ["quick release", "stainless steel"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYIP6MJ", "worker_id": "A1WS884SI0SLO4"}], "B07L43RN73": [{"asin": "B07L43RN73", "instruction": "find me 1 bar of orange blossom honey soap that is made with natural ingredients.", "attributes": ["cruelty free", "natural ingredients", "coconut oil"], "options": ["scent: orange blossom honey", "size: 6 ounce (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["orange blossom honey", "6 ounce (pack of 1)"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQ4M19T", "worker_id": "A36LOA6VLJU157"}], "B09FZNQ75H": [{"asin": "B09FZNQ75H", "instruction": "i would like to get a perfect fruit gift basket.", "attributes": ["easy use", "perfect gift"], "options": [""], "instruction_attributes": ["perfect gift"], "instruction_options": [], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LQUCDL", "worker_id": "A1WS884SI0SLO4"}], "B08M4FR5D7": [{"asin": "B08M4FR5D7", "instruction": "i need a king sized bed that has metal legs.", "attributes": ["contemporary design", "metal legs"], "options": ["size: king"], "instruction_attributes": ["metal legs"], "instruction_options": ["king"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDK8Y8W", "worker_id": "A2ECRNQ3X5LEXD"}], "B09L6YPVT9": [{"asin": "B09L6YPVT9", "instruction": "i would like a cosmetic bag for my eye shadow decorated with a lot of lip prints.", "attributes": ["nail polish", "eye shadow"], "options": ["color: many lip prints"], "instruction_attributes": ["eye shadow"], "instruction_options": ["many lip prints"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MCW0ZYT", "worker_id": "A1WS884SI0SLO4"}], "B08NP6WYKN": [{"asin": "B08NP6WYKN", "instruction": "i would like a yellow 42mm band for a apple watch that is easy to put on.", "attributes": ["compatible apple", "easy install"], "options": ["color: yellow", "size: 42mm | 44mm | 45mm-s"], "instruction_attributes": ["compatible apple", "easy install"], "instruction_options": ["yellow", "42mm | 44mm | 45mm-s"], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW64FVV3", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08NP6WYKN", "instruction": "i would like a midnight blue 38 mm applewatch band.", "attributes": ["compatible apple", "easy install"], "options": ["color: midnight blue", "size: 38mm | 40mm | 41mm-s"], "instruction_attributes": ["compatible apple"], "instruction_options": ["midnight blue", "38mm | 40mm | 41mm-s"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O4K2AG", "worker_id": "A1WS884SI0SLO4"}], "B007FAOW5M": [{"asin": "B007FAOW5M", "instruction": "i would like a tinted moisturizer that is made for dry skin and is in the color annapurna.", "attributes": ["dermatologist tested", "dry skin"], "options": ["color: annapurna - medium with a neutral peachy undertone"], "instruction_attributes": ["dry skin"], "instruction_options": ["annapurna - medium with a neutral peachy undertone"], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1M13TGI", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B007FAOW5M", "instruction": "i need a tinted moisturizer that is effective for dry skin . and choose the annapurna - medium with a neutral peachy undertone", "attributes": ["dermatologist tested", "dry skin"], "options": ["color: annapurna - medium with a neutral peachy undertone"], "instruction_attributes": ["dry skin"], "instruction_options": ["annapurna - medium with a neutral peachy undertone"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZKHO83", "worker_id": "A2COCSUGZV28X"}], "B07DXHRNFS": [{"asin": "B07DXHRNFS", "instruction": "i would like to buy some size 36 orange elastic waist flat front shorts.", "attributes": ["machine washable", "elastic waistband", "elastic waist"], "options": ["color: orange", "size: 36"], "instruction_attributes": ["elastic waist"], "instruction_options": ["orange", "36"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC5Z9RKW", "worker_id": "A1WS884SI0SLO4"}], "B08X6K9XN3": [{"asin": "B08X6K9XN3", "instruction": "i'm looking for a non slip trekking shoes with rubber outsole and should be moisture wicking. also choose black colored with size 14 for women", "attributes": ["day comfort", "moisture wicking", "non slip", "memory foam", "rubber outsole"], "options": ["color: black", "size: 14 women | 13 men"], "instruction_attributes": ["moisture wicking", "rubber outsole"], "instruction_options": ["black", "14 women | 13 men"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN4AI8G", "worker_id": "AR0VJ5XRG16UJ"}], "B00BJY64KG": [{"asin": "B00BJY64KG", "instruction": "i need a standard 23\" by 52\" green toddler bed that is heavy duty.", "attributes": ["heavy duty", "space saving", "assembly required", "coated steel"], "options": ["color: green", "pattern name: cot", "size: standard (23\" x 52\")", "style: with sheets"], "instruction_attributes": ["heavy duty"], "instruction_options": ["green", "standard (23\" x 52\")"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0Q8W4K", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00BJY64KG", "instruction": "i want to find a space-saving yellow naptime cot for toddlers. it should come in a standard size and i don't want it to come with sheets.", "attributes": ["heavy duty", "space saving", "assembly required", "coated steel"], "options": ["color: yellow", "pattern name: cot + bookshelf", "size: standard (23\" x 52\")", "style: without sheets"], "instruction_attributes": ["space saving"], "instruction_options": ["yellow", "cot + bookshelf", "standard (23\" x 52\")", "without sheets"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95D2XQO", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B00BJY64KG", "instruction": "i need to buy a heavy duty daycare sleeping cot. find one in red without sheets.", "attributes": ["heavy duty", "space saving", "assembly required", "coated steel"], "options": ["color: red", "pattern name: cot + crew", "size: standard (23\" x 52\")", "style: without sheets"], "instruction_attributes": ["heavy duty"], "instruction_options": ["red", "without sheets"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFE702E", "worker_id": "AR9AU5FY1S3RO"}], "B07QMFTT6J": [{"asin": "B07QMFTT6J", "instruction": "i am looking for an original dry skin moisturizer that comes in a three pack.", "attributes": ["cruelty free", "fragrance free", "natural ingredients", "dry skin"], "options": ["color: original", "size: 3 pack"], "instruction_attributes": ["dry skin"], "instruction_options": ["original", "3 pack"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7SGP59", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07QMFTT6J", "instruction": "i would like a two pack of cruelty free lip balm in orange.", "attributes": ["cruelty free", "fragrance free", "natural ingredients", "dry skin"], "options": ["color: outrageous orange", "size: 2 pack"], "instruction_attributes": ["cruelty free"], "instruction_options": ["outrageous orange", "2 pack"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV8QV8E", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JKW21YF": [{"asin": "B09JKW21YF", "instruction": "i would like to buy a 12x16 inch white poster that has a solid wood frame and easy to install in my living room.", "attributes": ["easy install", "wood frame", "solid wood", "living room"], "options": ["color: white 4", "size: 12x16 inch"], "instruction_attributes": ["easy install", "wood frame", "solid wood", "living room"], "instruction_options": ["white 4", "12x16 inch"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMPMSAU", "worker_id": "A1WS884SI0SLO4"}], "B07PR9D43Q": [{"asin": "B07PR9D43Q", "instruction": "i would like yellow flats that have memory foam that are a size 9.5.", "attributes": ["memory foam", "rubber sole"], "options": ["color: yellow", "size: 9.5"], "instruction_attributes": ["memory foam"], "instruction_options": ["yellow", "9.5"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MELFOI", "worker_id": "A2ECRNQ3X5LEXD"}], "B01HJWAMKE": [{"asin": "B01HJWAMKE", "instruction": "i'm looking for a high speed hdmi male to male cable.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 4 pack", "size: 30-feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["hdmi male to male"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9KQETM", "worker_id": "A19317A3X87NVM"}, {"asin": "B01HJWAMKE", "instruction": "i want to find a 10-pack of male-to-female hdmi cables that are 20 feet long and plated with gold.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 20 feet (single pack)", "style: hdmi male to female"], "instruction_attributes": ["gold plated"], "instruction_options": ["10 pack", "20 feet (single pack)", "hdmi male to female"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW4O8SE", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01HJWAMKE", "instruction": "i want a high speed hdmi cable male to female.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 2 pack", "size: 12 feet (single pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["hdmi male to female"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLS92CW2", "worker_id": "A2RBF3IIJP15IH"}], "B08X216Z6H": [{"asin": "B08X216Z6H", "instruction": "i would like to get a high quality black white lotion pump case.", "attributes": ["bpa free", "high quality", "fine mist"], "options": ["color: black bottle", "size: white lotion pump"], "instruction_attributes": ["high quality"], "instruction_options": ["black bottle", "white lotion pump"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NIAP2T", "worker_id": "A1WS884SI0SLO4"}], "B07KP1M97Z": [{"asin": "B07KP1M97Z", "instruction": "i would like to get a refurbished printer.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZUWCN3", "worker_id": "A1WS884SI0SLO4"}], "B00CWTZ8SQ": [{"asin": "B00CWTZ8SQ", "instruction": "i need sugar free flavor syrup for soda that is 25.4 fl oz.", "attributes": ["sugar free", "fat free", "keto friendly", "gluten free", "zero sugar"], "options": ["flavor name: sugar free syrup, variety pack, soda fla...", "size: 25.4 fl oz (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["sugar free syrup, variety pack, soda fla...", "25.4 fl oz (pack of 1)"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVGQKJ4", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00CWTZ8SQ", "instruction": "i\u2019m looking for a large multi-pack of sweetener that contains no sugar; please pick the blue raspberry flavour.", "attributes": ["sugar free", "fat free", "keto friendly", "gluten free", "zero sugar"], "options": ["flavor name: sugar free blue raspberry", "size: 25.4 fl oz (pack of 12)"], "instruction_attributes": ["sugar free", "zero sugar"], "instruction_options": ["sugar free blue raspberry"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8KVQ61", "worker_id": "A3LIIE572Z4OG7"}], "B07J6SVGKY": [{"asin": "B07J6SVGKY", "instruction": "i would like to get a 16 x 24 inch poster with a ready to hang white frame.", "attributes": ["ready hang", "wood frame"], "options": ["size: 16 in x 24 in", "style: white frame"], "instruction_attributes": ["ready hang"], "instruction_options": ["16 in x 24 in", "white frame"], "assignment_id": "36ZN444YT28UFQQ45BORC65U297IOC", "worker_id": "A1WS884SI0SLO4"}], "B07XT6GKWV": [{"asin": "B07XT6GKWV", "instruction": "i need an intel core i3 cpu pc that has 16gb of ram and 24gb of ssd space.", "attributes": ["dual band", "intel core", "quad core", "core i5"], "options": ["color: cpu i3 8145u", "size: 16g ram 240g ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["cpu i3 8145u", "16g ram 240g ssd"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RCGFL7", "worker_id": "A2ECRNQ3X5LEXD"}], "B005W0LRUA": [{"asin": "B005W0LRUA", "instruction": "i would like to buy a small cyan bra that i can hand wash in the sink.", "attributes": ["hand wash", "nylon spandex"], "options": ["color: cyan blue", "size: small"], "instruction_attributes": ["hand wash"], "instruction_options": ["cyan blue", "small"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI344BDL", "worker_id": "A1WS884SI0SLO4"}], "B004EMLLXU": [{"asin": "B004EMLLXU", "instruction": "i would like to buy a 6 pack of 15 ounce fat free oyster sauce.", "attributes": ["easy prepare", "fat free"], "options": ["flavor name: oyster", "size: 15 ounce (pack of 6)"], "instruction_attributes": ["fat free"], "instruction_options": ["oyster", "15 ounce (pack of 6)"], "assignment_id": "3BGYGHDBB8UCXYNXTA52IDVAC72221", "worker_id": "A1WS884SI0SLO4"}], "B07MXCYKLX": [{"asin": "B07MXCYKLX", "instruction": "i would like a cosmetics bag that is water resistant and pineapple colored.", "attributes": ["water resistant", "non toxic", "easy carry", "easy clean", "high quality"], "options": ["color: pineapple 1"], "instruction_attributes": ["water resistant"], "instruction_options": ["pineapple 1"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7QHUC5", "worker_id": "A2ECRNQ3X5LEXD"}], "B087BHY3D3": [{"asin": "B087BHY3D3", "instruction": "i would like six individually wrapped dessert gifts.", "attributes": ["baked fresh", "individually wrapped"], "options": ["number of items: 6"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["6"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZBEK99", "worker_id": "A2ECRNQ3X5LEXD"}], "B00VEJ6GHM": [{"asin": "B00VEJ6GHM", "instruction": "i would like a 48 pack of 5 ounce wild caught albacore in water tuna.", "attributes": ["wild caught", "gluten free"], "options": ["flavor name: albacore in water", "size: 5 ounce (pack of 48)"], "instruction_attributes": ["wild caught"], "instruction_options": ["albacore in water", "5 ounce (pack of 48)"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG166GYL", "worker_id": "A1WS884SI0SLO4"}], "B07KQHV9SF": [{"asin": "B07KQHV9SF", "instruction": "i would like thierry mugler angel impression in a travel size bottle.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: thierry mugler angel impression"], "instruction_attributes": ["travel size"], "instruction_options": ["thierry mugler angel impression"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0JACAO", "worker_id": "A2ECRNQ3X5LEXD"}], "B098933HD8": [{"asin": "B098933HD8", "instruction": "i want to find date-sweetened pancake mix that is gluten free and includes only simple ingredients.", "attributes": ["gluten free", "simple ingredients"], "options": [""], "instruction_attributes": ["gluten free", "simple ingredients"], "instruction_options": [], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98I9NM2A", "worker_id": "A345TDMHP3DQ3G"}], "B009JBFLH8": [{"asin": "B009JBFLH8", "instruction": "i am looking for a dome camera that has motion detection and is hd 360 degree.", "attributes": ["dust proof", "motion detection"], "options": ["style: hd 360-degree"], "instruction_attributes": ["motion detection"], "instruction_options": ["hd 360-degree"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHXSQHH", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DT9G2FR": [{"asin": "B09DT9G2FR", "instruction": "find me a long handled body brush that is double sided.", "attributes": ["double sided", "easy use", "long handle", "dead skin", "sensitive skin"], "options": [""], "instruction_attributes": ["double sided", "long handle"], "instruction_options": [], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZR1RNI", "worker_id": "A36LOA6VLJU157"}], "B004VMGTY4": [{"asin": "B004VMGTY4", "instruction": "i am looking for a sensitive night cream that does not have a fragrance.", "attributes": ["fragrance free", "dermatologist tested", "sensitive skin"], "options": ["style: sensitive night cream"], "instruction_attributes": ["fragrance free"], "instruction_options": ["sensitive night cream"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746OCTB2", "worker_id": "A2ECRNQ3X5LEXD"}], "B00N2JMYKU": [{"asin": "B00N2JMYKU", "instruction": "i am looking for a castor oil with tee tree oils for black natural hair that can stimulate follicles and hair growth . it should be 4 ounce.", "attributes": ["tea tree", "natural hair", "hair growth"], "options": ["size: 4 ounce", "style name: lavender palma christi"], "instruction_attributes": ["natural hair", "hair growth"], "instruction_options": ["4 ounce"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746P9BTJ", "worker_id": "AHU9OLV0YKIIW"}], "B09NQDV4N8": [{"asin": "B09NQDV4N8", "instruction": "i would like to buy a white floor lamp for my living room.", "attributes": ["easy assemble", "living room"], "options": ["color: white"], "instruction_attributes": ["living room"], "instruction_options": ["white"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMKIEXH", "worker_id": "A1WS884SI0SLO4"}], "B083ZJ87W2": [{"asin": "B083ZJ87W2", "instruction": "i need an alarm clock that is mint colored and has batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": ["color: mint"], "instruction_attributes": ["batteries included"], "instruction_options": ["mint"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746RABTO", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B083ZJ87W2", "instruction": "seeking to find a mini reversible travel lcd alarm clock-radio controlled touch sensor light using aaa batteries included in color white or pink that is made by lexon flip plus.", "attributes": ["batteries included", "aaa batteries"], "options": ["color: white"], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": ["white"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN66C5GE", "worker_id": "A3RGIKEI8JS2QG"}], "B08S741NQG": [{"asin": "B08S741NQG", "instruction": "i would like to buy some greeley size 28 slim fit jeans.", "attributes": ["slim fit", "quality materials"], "options": ["color: greeley", "size: 28"], "instruction_attributes": ["slim fit"], "instruction_options": ["greeley", "28"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P5BUBS", "worker_id": "A1WS884SI0SLO4"}], "B006M5SG5I": [{"asin": "B006M5SG5I", "instruction": "i am looking for 12 cookies that are in a gift basket and are cherry flavored with white chips.", "attributes": ["perfect gift", "gift basket"], "options": ["flavor name: cherry w | white chips", "size: 12 count (pack of 1)"], "instruction_attributes": ["gift basket"], "instruction_options": ["cherry w | white chips", "12 count (pack of 1)"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U15MAF", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B006M5SG5I", "instruction": "i am looking for a perfect gift of cookies having flavor name assorted flavors.", "attributes": ["perfect gift", "gift basket"], "options": ["flavor name: assorted flavors", "size: 12 count"], "instruction_attributes": ["perfect gift"], "instruction_options": ["assorted flavors"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOL0LM8", "worker_id": "A1Q8PPQQCWGY0D"}], "B09BQRRRHZ": [{"asin": "B09BQRRRHZ", "instruction": "i want to find a black car charger with a usb port.", "attributes": ["fast charging", "usb port"], "options": ["color: black"], "instruction_attributes": ["usb port"], "instruction_options": ["black"], "assignment_id": "37Z929RLGKIZMWY86444AIH4ABCTSF", "worker_id": "A345TDMHP3DQ3G"}], "B082NNKT5C": [{"asin": "B082NNKT5C", "instruction": "i am looking for a classic candle that has soy wax", "attributes": ["eco friendly", "long lasting", "soy wax"], "options": ["color: sea salt cardamom & musk", "size: classic candle"], "instruction_attributes": ["soy wax"], "instruction_options": ["classic candle"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YU5HEX", "worker_id": "A2ECRNQ3X5LEXD"}], "B07MZ3Z2TY": [{"asin": "B07MZ3Z2TY", "instruction": "i need a lightweight photography background that is 8 by 6 feet.", "attributes": ["light weight", "high resolution", "digital photography"], "options": ["size: 8x6ft"], "instruction_attributes": ["light weight"], "instruction_options": ["8x6ft"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IA42M9", "worker_id": "A2ECRNQ3X5LEXD"}], "B088DS3SP9": [{"asin": "B088DS3SP9", "instruction": "i would like a pair of high quality hair clippers.", "attributes": ["high quality", "hair cutting"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQB1JRJ", "worker_id": "A1WS884SI0SLO4"}], "B09F3HQV85": [{"asin": "B09F3HQV85", "instruction": "i need a lake blue colored storage bench that is made of faux leather and is 60.40.42cm.", "attributes": ["pu leather", "faux leather"], "options": ["color: lake blue", "size: 60.40.42cm"], "instruction_attributes": ["faux leather"], "instruction_options": ["lake blue", "60.40.42cm"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVDF0Q8", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CRVWTWP": [{"asin": "B07CRVWTWP", "instruction": "i would like to get a queen pink linen daybed with a wood frame.", "attributes": ["king size", "metal legs", "wood frame"], "options": ["color: pink linen", "size: queen", "style: daybed and trundle"], "instruction_attributes": ["wood frame"], "instruction_options": ["pink linen", "queen", "daybed and trundle"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N1R7T6", "worker_id": "A1WS884SI0SLO4"}], "B07QJ3GS1G": [{"asin": "B07QJ3GS1G", "instruction": "i would like a water resistant usb flash drive that has 32 gb of storage and is a05 color.", "attributes": ["water resistant", "easy carry"], "options": ["color: a05", "size: 32gb"], "instruction_attributes": ["water resistant"], "instruction_options": ["a05", "32gb"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI8TFSS8", "worker_id": "A2ECRNQ3X5LEXD"}], "B0978P7D27": [{"asin": "B0978P7D27", "instruction": "i need a case for my phone that is turquoise and has wireless charging capabilities.", "attributes": ["hands free", "wireless charging"], "options": ["color: turquoise"], "instruction_attributes": ["wireless charging"], "instruction_options": ["turquoise"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK41G6AF", "worker_id": "A2ECRNQ3X5LEXD"}], "B07DPG7MV4": [{"asin": "B07DPG7MV4", "instruction": "i am looking for some pants with an elastic waist that are x-small size and are khaki colored.", "attributes": ["hand wash", "water resistant", "moisture wicking", "wash cold", "button closure", "elastic waist", "relaxed fit"], "options": ["color: khaki-10", "size: x-small | 29\" inseam"], "instruction_attributes": ["elastic waist"], "instruction_options": ["khaki-10", "x-small | 29\" inseam"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKBGD7Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B071L2B6BN": [{"asin": "B071L2B6BN", "instruction": "i'm looking for a sofa table with wood finish for the living room.", "attributes": ["wood finish", "living room"], "options": [""], "instruction_attributes": ["wood finish", "living room"], "instruction_options": [], "assignment_id": "3EJPLAJKEXQQLA9A5JQJV1MTDIVZ69", "worker_id": "A36LOA6VLJU157"}], "B07J3Y6LVY": [{"asin": "B07J3Y6LVY", "instruction": "i'm looking for a tempered glass cell phone case.", "attributes": ["long lasting", "case cover", "tempered glass"], "options": ["color: crystal ab-12 pro max", "size: iphone se 2020 | iphone 7 | 8"], "instruction_attributes": ["tempered glass"], "instruction_options": ["crystal ab-12 pro max"], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60G6AA1", "worker_id": "A19317A3X87NVM"}], "B086QNNL78": [{"asin": "B086QNNL78", "instruction": "i am looking for some cookies that are plant based and peanut butter flavor, and would like a pack of 16.", "attributes": ["plant based", "non gmo", "individually wrapped", "high fructose"], "options": ["flavor name: peanut butter", "size: 4 ounce (pack of 16)"], "instruction_attributes": ["plant based"], "instruction_options": ["peanut butter", "4 ounce (pack of 16)"], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQK9B5A", "worker_id": "A2ECRNQ3X5LEXD"}], "B00HJXD7EM": [{"asin": "B00HJXD7EM", "instruction": "i would like to buy a six pack of 12 ounce apricot dairy free bake mix.", "attributes": ["baked fresh", "nut free", "dairy free"], "options": ["flavor name: apricot", "size: 12 ounce (pack of 6)"], "instruction_attributes": ["dairy free"], "instruction_options": ["apricot", "12 ounce (pack of 6)"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVBISZM", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00HJXD7EM", "instruction": "i am looking for freshly baked nut free kosher cookie pastry which is 12ounce in size.", "attributes": ["baked fresh", "nut free", "dairy free"], "options": ["flavor name: apricot - sugar free", "size: 12 ounce (pack of 6)"], "instruction_attributes": ["baked fresh", "nut free"], "instruction_options": ["12 ounce (pack of 6)"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8OIQ6W", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B00HJXD7EM", "instruction": "i would like a 12 ounce strawberry baking mix that is nut free.", "attributes": ["baked fresh", "nut free", "dairy free"], "options": ["flavor name: strawberry", "size: 12 ounce (pack of 2)"], "instruction_attributes": ["nut free"], "instruction_options": ["strawberry", "12 ounce (pack of 2)"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPM1E6H", "worker_id": "A1WS884SI0SLO4"}], "B09RHSP5K6": [{"asin": "B09RHSP5K6", "instruction": "i would like to buy some size 7.5 gold high heeled shoes with a ankle strap.", "attributes": ["open toe", "non slip", "light weight", "anti slip", "ankle strap", "high heel", "arch support", "memory foam"], "options": ["color: gold", "size: 7.5 wide"], "instruction_attributes": ["ankle strap", "high heel"], "instruction_options": ["gold", "7.5 wide"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYCV6LB", "worker_id": "A1WS884SI0SLO4"}], "B09DYSRQLC": [{"asin": "B09DYSRQLC", "instruction": "i'm looking for some gluten free jelly with black sesames.", "attributes": ["lactose free", "gluten free"], "options": ["flavor name: black sesame 1 kg"], "instruction_attributes": ["gluten free"], "instruction_options": ["black sesame 1 kg"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCG3FMS6", "worker_id": "A19317A3X87NVM"}, {"asin": "B09DYSRQLC", "instruction": "i want a peanut butter with date spread that is gluten free.", "attributes": ["lactose free", "gluten free"], "options": ["flavor name: peanut butter with dates"], "instruction_attributes": ["gluten free"], "instruction_options": ["peanut butter with dates"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8JS5RN", "worker_id": "A1WS884SI0SLO4"}], "B004VWL39A": [{"asin": "B004VWL39A", "instruction": "i am looking for steel toe shoes for men that are a size 8.5 wide.", "attributes": ["steel toe", "rubber sole"], "options": ["size: 8.5 wide"], "instruction_attributes": ["steel toe"], "instruction_options": ["8.5 wide"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DY8Q828", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FF3KS1F": [{"asin": "B09FF3KS1F", "instruction": "i need matte black pumps that have a rubber sole and that are in a us size 6.5.", "attributes": ["long lasting", "rubber outsole", "rubber sole"], "options": ["color: matteblk", "size: us6.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["matteblk", "us6.5"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM0WZH3", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GM6TS1F": [{"asin": "B09GM6TS1F", "instruction": "i would like a linen 33x31x33 centimeter ottoman for my living room.", "attributes": ["spot clean", "mid century", "high density", "solid wood", "living room"], "options": ["color: e(linen)", "size: 33x31x33cm(13x12x13inch)"], "instruction_attributes": ["living room"], "instruction_options": ["e(linen)", "33x31x33cm(13x12x13inch)"], "assignment_id": "31EUONYN26DZ1WA44INARVVOABMVO5", "worker_id": "A1WS884SI0SLO4"}], "B09R46MB1Y": [{"asin": "B09R46MB1Y", "instruction": "i want a size 8 pink high heeled shoe with a ankle strap.", "attributes": ["anti slip", "high heel", "ankle strap"], "options": ["color: a-1 pink", "size: 8"], "instruction_attributes": ["high heel", "ankle strap"], "instruction_options": ["a-1 pink", "8"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJDQOLL", "worker_id": "A1WS884SI0SLO4"}], "B09HMMH7F4": [{"asin": "B09HMMH7F4", "instruction": "i would like to get some second 5 sand long lasting foundation made from seed oil.", "attributes": ["long lasting", "seed oil"], "options": ["color: 5 sand", "size: 2nd"], "instruction_attributes": ["long lasting", "seed oil"], "instruction_options": ["5 sand", "2nd"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQKPP08", "worker_id": "A1WS884SI0SLO4"}], "B09M6Z6S7H": [{"asin": "B09M6Z6S7H", "instruction": "i'm looking for a smart watch bands which is compatible for apple and easy to install. also choose black-red colored one.", "attributes": ["compatible apple", "easy install"], "options": ["color: black-red"], "instruction_attributes": ["compatible apple", "easy install"], "instruction_options": ["black-red"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEF9WU5Y", "worker_id": "AR0VJ5XRG16UJ"}], "B0977MNS6P": [{"asin": "B0977MNS6P", "instruction": "i need a king size bedroom set with a wood finish.", "attributes": ["queen size", "wood finish"], "options": ["color: king bed a468c"], "instruction_attributes": ["wood finish"], "instruction_options": ["king bed a468c"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G7YM74E", "worker_id": "A19317A3X87NVM"}, {"asin": "B0977MNS6P", "instruction": "i'm looking for bedroom furniture with wood finish. choose ones that come in queen size and color of a475c.", "attributes": ["queen size", "wood finish"], "options": ["color: queen bed a475c"], "instruction_attributes": ["queen size", "wood finish"], "instruction_options": ["queen bed a475c"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUYMJQN", "worker_id": "A3MNXK3VDK37SN"}], "B07ZJBGV5M": [{"asin": "B07ZJBGV5M", "instruction": "i would like to get some 52'' x 63'' x 2 christmas panels for my dining room.", "attributes": ["eco friendly", "living room", "dining room"], "options": ["color: christmas-091zse7297", "size: 52'' x 63'' x 2 panels"], "instruction_attributes": ["dining room"], "instruction_options": ["christmas-091zse7297", "52'' x 63'' x 2 panels"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL0AH5Y", "worker_id": "A1WS884SI0SLO4"}], "B09824ZV3X": [{"asin": "B09824ZV3X", "instruction": "i need some toppers for cupcakes that are good for a birthday party and are gold.", "attributes": ["cupcake picks", "birthday party"], "options": ["color: gold"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGHWL1VP", "worker_id": "A2ECRNQ3X5LEXD"}], "B096BD6LP6": [{"asin": "B096BD6LP6", "instruction": "i need a long lasting box spring set in a queen size with an 8\" foundation.", "attributes": ["ready use", "high density", "long lasting", "assembly required", "box spring"], "options": ["size: queen", "style: 8\" foundation"], "instruction_attributes": ["long lasting"], "instruction_options": ["queen", "8\" foundation"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTRVWA0E", "worker_id": "A2ECRNQ3X5LEXD"}], "B09B7SZQCR": [{"asin": "B09B7SZQCR", "instruction": "i would like a grey heeled sandal with a ankle strap for my 8.5 foot.", "attributes": ["arch support", "ankle strap", "closed toe"], "options": ["color: grey", "size: 8.5"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53RPKGM", "worker_id": "A1WS884SI0SLO4"}], "B09FG8KTNK": [{"asin": "B09FG8KTNK", "instruction": "i want to find a smartwatch band that is compatible with my apple watch. it needs to come in 10 colors and i want it to be 38 millimeters long.", "attributes": ["compatible apple", "easy install", "quick release"], "options": ["color: 10 colors", "size: 38mm | 40mm | 41mm"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVDEXLA", "worker_id": "A345TDMHP3DQ3G"}], "B09J2J3HBD": [{"asin": "B09J2J3HBD", "instruction": "i'm looking for a loose fit and machine washable women's christmas t-shirt. i'm looking for a large blue t-shirt.", "attributes": ["loose fit", "machine wash", "elastic closure", "unique design", "polyester spandex"], "options": ["color: blue", "size: large"], "instruction_attributes": ["loose fit", "machine wash"], "instruction_options": ["blue", "large"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BHF8X7", "worker_id": "A3MNXK3VDK37SN"}], "B095NZBRT1": [{"asin": "B095NZBRT1", "instruction": "i need a pack of 2 apple compatible fast chargers in white.", "attributes": ["compatible apple", "fast charging"], "options": ["color: white 2pack"], "instruction_attributes": ["compatible apple", "fast charging"], "instruction_options": ["white 2pack"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X02WO43U", "worker_id": "A36LOA6VLJU157"}], "B07B69784T": [{"asin": "B07B69784T", "instruction": "i would like some curtains for my living room that are blue orange and are 108\" by 90\".", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: blue orange", "size: 108\" x 90\""], "instruction_attributes": ["living room"], "instruction_options": ["blue orange", "108\" x 90\""], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZM93KM", "worker_id": "A2ECRNQ3X5LEXD"}], "B0924MY197": [{"asin": "B0924MY197", "instruction": "i want to find a 5-piece nail art set with a variety of polishes.", "attributes": ["nail art", "nail polish"], "options": [""], "instruction_attributes": ["nail art", "nail polish"], "instruction_options": [], "assignment_id": "3DIP6YHAPN2FET122B94U5H2V7P8EB", "worker_id": "A345TDMHP3DQ3G"}], "B07QWWB6FN": [{"asin": "B07QWWB6FN", "instruction": "i'm looking for a pair of water resistant brown pants.", "attributes": ["water resistant", "machine washable", "comfortable fit", "elastic waist"], "options": ["color: nomad brown\uff08convertible\uff09", "size: large | 32\" inseam"], "instruction_attributes": ["water resistant"], "instruction_options": ["nomad brown\uff08convertible\uff09"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYE6M68", "worker_id": "A19317A3X87NVM"}], "B09HPNLRGS": [{"asin": "B09HPNLRGS", "instruction": "i'd like to find gold cupcake toppers that i can use for a birthday party.", "attributes": ["baby shower", "birthday party", "cupcake picks"], "options": ["color: gold"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q7TEH94", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09HPNLRGS", "instruction": "i'm looking for a 24 pack of rose gold cupcake picks for my upcoming baby shower.", "attributes": ["baby shower", "birthday party", "cupcake picks"], "options": ["color: rose gold"], "instruction_attributes": ["baby shower", "cupcake picks"], "instruction_options": ["rose gold"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ58OCKD", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B09HPNLRGS", "instruction": "i need to buy some pink cupcake toppers for a baby shower.", "attributes": ["baby shower", "birthday party", "cupcake picks"], "options": ["color: pink"], "instruction_attributes": ["baby shower"], "instruction_options": ["pink"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL1NNSL", "worker_id": "AR9AU5FY1S3RO"}], "B07MHYPFZG": [{"asin": "B07MHYPFZG", "instruction": "i want to buy a small ponytail made up of synthetic hair, colour 6tr. thanks.", "attributes": ["easy carry", "synthetic hair"], "options": ["color: 6tr"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["6tr"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40N4FYB", "worker_id": "A1WAWEY2810TFN"}], "B07XYG5JF2": [{"asin": "B07XYG5JF2", "instruction": "i want to find a 6-count pack of thyme leaf tea bags that are usda certified organic.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: thyme leaf", "size: 6 count (pack of 1)", "style: iced tea bags"], "instruction_attributes": ["usda organic", "certified organic"], "instruction_options": ["6 count (pack of 1)", "iced tea bags"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VRHGFH", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07XYG5JF2", "instruction": "i am looking for organic india tea bags . it should be usda organic certified.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: white tea", "size: 36 count (pack of 1)", "style: tea bags"], "instruction_attributes": ["usda organic"], "instruction_options": ["tea bags"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35JZUG7", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07XYG5JF2", "instruction": "i want certified organic irish breakfast iced tea bags in the 1 pound pack, and they need to be mint flavor. they are also by fgo and blended in the usa.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: mint", "size: 1 pound (pack of 1)", "style: iced tea bags"], "instruction_attributes": ["certified organic"], "instruction_options": ["mint", "1 pound (pack of 1)", "iced tea bags"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMEMJ14", "worker_id": "A1CB72B51L7TKE"}, {"asin": "B07XYG5JF2", "instruction": "i'd like to order some darjeeling tea. make sure it's certified organic.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: darjeeling", "size: 20 count (pack of 1)", "style: tea bags"], "instruction_attributes": ["certified organic"], "instruction_options": ["darjeeling"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKHNT1V", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07XYG5JF2", "instruction": "i'm looking for certified organic it is easy to use and it is for grocery.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: matcha", "size: 6 count (pack of 1)", "style: tea bags"], "instruction_attributes": ["certified organic"], "instruction_options": ["matcha"], "assignment_id": "31JLPPHS254FPN8LK8H48035JYD3OE", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07XYG5JF2", "instruction": "i would like 36 packets of black tea bags that are usda certified organic.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: black tea (decaf)", "size: 36 count (pack of 1)", "style: tea bags"], "instruction_attributes": ["usda organic", "certified organic"], "instruction_options": ["black tea (decaf)", "36 count (pack of 1)", "tea bags"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXO0Z2L", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07XYG5JF2", "instruction": "i want usda organic black tea bags.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: black tea (decaf)", "size: 4 ounce (pack of 1)", "style: iced tea bags"], "instruction_attributes": ["usda organic"], "instruction_options": ["black tea (decaf)"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYLEQLF", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07XYG5JF2", "instruction": "i want to find 1 lb of organic breakfast tea bags in raspberry flavor.", "attributes": ["usda organic", "certified organic"], "options": ["flavor name: raspberry", "size: 1 pound (pack of 1)", "style: tea bags"], "instruction_attributes": ["certified organic"], "instruction_options": ["raspberry", "1 pound (pack of 1)"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5J7WIJ", "worker_id": "AK3JMCIGU8MLU"}], "B09KS5F3SB": [{"asin": "B09KS5F3SB", "instruction": "i want to find a black king-sized mattress foundation that is 4 inches in width. it needs to come fully assembled already.", "attributes": ["fully assembled", "box spring"], "options": ["color: black", "size: king", "style: 4\" foundation"], "instruction_attributes": ["fully assembled"], "instruction_options": ["black", "king", "4\" foundation"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACIWNHA", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09KS5F3SB", "instruction": "i need a fully assembled black box spring set that is queen sized.", "attributes": ["fully assembled", "box spring"], "options": ["color: black", "size: queen", "style: 4\" foundation"], "instruction_attributes": ["fully assembled"], "instruction_options": ["black", "queen"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWP2FPW", "worker_id": "A2ECRNQ3X5LEXD"}], "B07D3643N8": [{"asin": "B07D3643N8", "instruction": "i would like to buy some size 30 dark blue 405 slim fit jeans.", "attributes": ["slim fit", "cotton spandex", "button closure"], "options": ["color: dark blue 405", "size: 30"], "instruction_attributes": ["slim fit"], "instruction_options": ["dark blue 405", "30"], "assignment_id": "33CID5710F37J25O7G1CGJZBOLS3L1", "worker_id": "A1WS884SI0SLO4"}], "B09KRB8Q1R": [{"asin": "B09KRB8Q1R", "instruction": "i need an xx-large tunic that is made of polyester spandex.", "attributes": ["wash cold", "hand wash", "machine wash", "polyester spandex"], "options": ["color: multicolor 2 plaid", "size: xx-large"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["multicolor 2 plaid", "xx-large"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9IT6S1S", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09KRB8Q1R", "instruction": "i want a xx-large st. jubileens women roll-up plaid shirt that is machine washable.", "attributes": ["wash cold", "hand wash", "machine wash", "polyester spandex"], "options": ["color: multicolor 3 plaid", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["xx-large"], "assignment_id": "3IXEICO79DTUZY0BZR119DLCSZST6W", "worker_id": "A2RBF3IIJP15IH"}], "B08P3D184H": [{"asin": "B08P3D184H", "instruction": "i would like some blue noise cancelling headphones", "attributes": ["noise cancelling", "wireless bluetooth", "stereo sound"], "options": ["color: blue"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["blue"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IA3M2S", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NSCYLMZ": [{"asin": "B09NSCYLMZ", "instruction": "will you find me a long sleeve sweater in dark blue? size medium.", "attributes": ["quality materials", "button closure", "long sleeve", "daily wear"], "options": ["color: e9-eark blue", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["e9-eark blue", "medium"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTC7V5I", "worker_id": "A36LOA6VLJU157"}], "B09HSG4ZB7": [{"asin": "B09HSG4ZB7", "instruction": "i'm looking for a teeth whitening toothpaste with natural ingredients that gives fresh breath and used for sensitive teeth.", "attributes": ["teeth whitening", "natural ingredients", "fresh breath", "sensitive teeth"], "options": [""], "instruction_attributes": ["teeth whitening", "natural ingredients", "fresh breath", "sensitive teeth"], "instruction_options": [], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8ODETRK", "worker_id": "AR0VJ5XRG16UJ"}], "B07Z84PP57": [{"asin": "B07Z84PP57", "instruction": "i would like to get a 10 inch sea salt and ginger jar candle for my living room.", "attributes": ["white item", "soy wax", "living room"], "options": ["scent: sea salt & ginger", "size: 10 in"], "instruction_attributes": ["living room"], "instruction_options": ["sea salt & ginger", "10 in"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69I58PI", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07Z84PP57", "instruction": "i am looking for a teal scented soy wax jar candle for my living room. also, choose the size 15 oz.", "attributes": ["white item", "soy wax", "living room"], "options": ["scent: teal", "size: 15 oz"], "instruction_attributes": ["soy wax", "living room"], "instruction_options": ["teal", "15 oz"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT6Q375", "worker_id": "A9ZM1P6LBW79"}], "B09QCZ8X76": [{"asin": "B09QCZ8X76", "instruction": "i am looking for open toe sandals in z3 black that are size 6.5-7.", "attributes": ["open toe", "ankle strap", "teen girls", "daily wear"], "options": ["color: z3 black", "size: 6.5-7"], "instruction_attributes": ["open toe"], "instruction_options": ["z3 black", "6.5-7"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP1XCO8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NLRJ6Q5": [{"asin": "B09NLRJ6Q5", "instruction": "i would like to get a a1 10 x 10 ft high def photo background.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a1", "size: 10x10ft | 3x3m"], "instruction_attributes": ["high definition"], "instruction_options": ["a1", "10x10ft | 3x3m"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCD8LBD", "worker_id": "A1WS884SI0SLO4"}], "B087D7HNNF": [{"asin": "B087D7HNNF", "instruction": "i'm looking for a can of wild caught sardines in tomato sauce.", "attributes": ["wild caught", "protein serving", "ready eat", "high protein", "bpa free", "low carb", "non gmo"], "options": ["flavor name: tomato sauce", "size: 4.4 ounce (pack of 12)"], "instruction_attributes": ["wild caught"], "instruction_options": ["tomato sauce"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYE86MU", "worker_id": "A19317A3X87NVM"}], "B08XMJBYTV": [{"asin": "B08XMJBYTV", "instruction": "i am looking for a gray body brush that is easy to clean.", "attributes": ["easy clean", "long handle"], "options": ["color: gray"], "instruction_attributes": ["easy clean"], "instruction_options": ["gray"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4T85K2O", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P5BMMQB": [{"asin": "B09P5BMMQB", "instruction": "i would like to buy a xxl red loose fit hoodie.", "attributes": ["loose fit", "long sleeve", "polyester cotton", "teen girls", "daily wear"], "options": ["color: a01-red", "size: xx-large"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN616G59", "worker_id": "A1WS884SI0SLO4"}], "B08LD1TTF1": [{"asin": "B08LD1TTF1", "instruction": "i need a high power sound bar that is black.", "attributes": ["high power", "coaxial cable"], "options": ["color: black"], "instruction_attributes": ["high power"], "instruction_options": ["black"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWTVYYJC", "worker_id": "A2ECRNQ3X5LEXD"}], "B00GNW1PBC": [{"asin": "B00GNW1PBC", "instruction": "i would like a brown desk chair that has lumbar support for my back.", "attributes": ["mid century", "white item", "lumbar support"], "options": ["color: brown"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU209A5", "worker_id": "A1WS884SI0SLO4"}], "B095KC38LG": [{"asin": "B095KC38LG", "instruction": "i am looking for a green table lamp for the living room.", "attributes": ["glass shade", "living room"], "options": ["color: green2"], "instruction_attributes": ["living room"], "instruction_options": ["green2"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDD952O8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09B3PWGPX": [{"asin": "B09B3PWGPX", "instruction": "i am looking for white day comfort walking shoes that are in a size 8.", "attributes": ["knee high", "day comfort", "high heel", "quality materials"], "options": ["color: white", "size: 8"], "instruction_attributes": ["day comfort"], "instruction_options": ["white", "8"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5NMF49", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LD3LKCN": [{"asin": "B09LD3LKCN", "instruction": "i'm looking for a mini 11th gen core i7-11700 desktop pc. it needs to have a usb port and 64 gigabytes of storage space on the ram.", "attributes": ["dual band", "usb port"], "options": ["color: 11th gen core i7-11700", "size: 64gb ram 1tb ssd+2tb hdd"], "instruction_attributes": ["usb port"], "instruction_options": ["11th gen core i7-11700", "64gb ram 1tb ssd+2tb hdd"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8AD9PWVE", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09LD3LKCN", "instruction": "i'm looking for a desktop computer with the following configuration: 16gb ram 1tb ssd and a usb port.", "attributes": ["dual band", "usb port"], "options": ["color: amd ryzen 7 3700u", "size: 16gb ram 1tb ssd"], "instruction_attributes": ["usb port"], "instruction_options": ["16gb ram 1tb ssd"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THOI5ZZ", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B09LD3LKCN", "instruction": "i'm looking for a mini desktop pc with windows 11, double display 4k resolution.", "attributes": ["dual band", "usb port"], "options": ["color: amd ryzen 7 3700u", "size: 16gb ram 512gb ssd+1tb hdd"], "instruction_attributes": ["dual band"], "instruction_options": ["amd ryzen 7 3700u"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEOJKZP", "worker_id": "A21IUUHBSEVB56"}], "B09KX93DS7": [{"asin": "B09KX93DS7", "instruction": "i would like some pink noise cancelling earbuds that work with my iphone.", "attributes": ["noise cancelling", "compatible apple", "stereo sound"], "options": ["color: pink"], "instruction_attributes": ["noise cancelling", "compatible apple"], "instruction_options": ["pink"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR1Q0CL", "worker_id": "A1WS884SI0SLO4"}], "B08S77S42N": [{"asin": "B08S77S42N", "instruction": "i need a light weight printed backdrop to use with digital photography. it should be 8 by 12 feet in size.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 02", "size: 8x12 ft"], "instruction_attributes": ["light weight", "digital photography"], "instruction_options": ["printed backdrop 02", "8x12 ft"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J2SFSH", "worker_id": "A36LOA6VLJU157"}, {"asin": "B08S77S42N", "instruction": "i am looking for a 6 foot by 9 foot light weight vinyl backdrop with different size fish motifs.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 16", "size: 6x9 ft"], "instruction_attributes": ["light weight"], "instruction_options": ["6x9 ft"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT023PI", "worker_id": "A1EREKSZAA9V7B"}], "B078MZPZ8K": [{"asin": "B078MZPZ8K", "instruction": "i want to get a bundle of freeze dried pineapples that are 8 oz.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: pineapples", "size: 8 ounce (pack of 6)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["pineapples", "8 ounce (pack of 6)", "bundle"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJEP0W5", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B078MZPZ8K", "instruction": "i want to buy a bag of organic, chocolate covered, freeze dried strawberry slices, vegan ones please.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: strawberries + mangos", "size: strawberries 1.2 ounce & pineapples 1.5 ...", "style: bag"], "instruction_attributes": ["freeze dried", "chocolate covered", "usda organic"], "instruction_options": ["bag"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUF3VLVM", "worker_id": "A249LDVPG27XCE"}, {"asin": "B078MZPZ8K", "instruction": "find me freeze dried chocolate covered strawberries and mango, need a bag with 2.5 ounce", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: strawberries + mangos", "size: 2.5 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried", "chocolate covered"], "instruction_options": ["strawberries + mangos", "2.5 ounce (pack of 1)", "bag"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJVKVGJ", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B078MZPZ8K", "instruction": "i am looking for a bundle of freeze dried fruits", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: chocolate covered mango slices", "size: 1.2 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["bundle"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF50LDE", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B078MZPZ8K", "instruction": "i need a bag of freeze dried strawberries.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: strawberries + pineapple", "size: 1.2 ounce (pack of 8)", "style: bundle"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries + pineapple"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R193I28", "worker_id": "A19317A3X87NVM"}, {"asin": "B078MZPZ8K", "instruction": "i want natierra freeze dried strawberry slices.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: bananas & strawberries", "size: strawberries 1.2 ounce & peas 2.2 ounce", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries 1.2 ounce & peas 2.2 ounce"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH7KV14", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B078MZPZ8K", "instruction": "i would like non gmo mango slices", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: chocolate mango slices", "size: 0.7 ounce (pack of 4)", "style: bag"], "instruction_attributes": ["non gmo"], "instruction_options": ["chocolate mango slices"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8K7C4S", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B078MZPZ8K", "instruction": "i'm looking for a usda organic freeze dried fruits which should be covered in chocolate. also, choose a pack of 1 weighing 1.5 ounce bag with pomegranate arils flavored one.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: pomegranate arils", "size: 1.5 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried", "chocolate covered", "usda organic"], "instruction_options": ["pomegranate arils", "1.5 ounce (pack of 1)", "bag"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBCYU6L", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B078MZPZ8K", "instruction": "i am looking for a bag of chocolate covered strawberry slices.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: strawberries + mangos", "size: 1.2 ounce (pack of 12)", "style: bag"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["bag"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVO0Q05", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B078MZPZ8K", "instruction": "i'm looking for freeze dried chocolate covered dried fruit with bananas and strawberries flavor in a 1 ounce sized bag.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: bananas and strawberries", "size: 1 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried", "chocolate covered"], "instruction_options": ["bananas and strawberries", "1 ounce (pack of 1)", "bag"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLVTRDA", "worker_id": "A20DUVEOH6A7KW"}, {"asin": "B078MZPZ8K", "instruction": "i am looking for a bag of usda organic freeze dried chocolate covered strawberry slices.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: bananas and strawberries", "size: 2.5 ounce (pack of 12)", "style: bag"], "instruction_attributes": ["freeze dried", "chocolate covered", "usda organic"], "instruction_options": ["bag"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOIE0F0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B078MZPZ8K", "instruction": "i would like a bag of chocolate covered streawberries and blueberries.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: strawberries + blueberries", "size: 2.5 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["strawberries + blueberries", "bag"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM969TG4U", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B078MZPZ8K", "instruction": "i want to buy a bundle of freeze dried mangoes and strawberries. they should be organic and non-gmo.", "attributes": ["freeze dried", "non gmo", "chocolate covered", "usda organic"], "options": ["flavor: beets", "size: strawberries 1.2 ounce & mangoes 1.5 oun...", "style: bundle"], "instruction_attributes": ["freeze dried", "non gmo", "usda organic"], "instruction_options": ["strawberries 1.2 ounce & mangoes 1.5 oun...", "bundle"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZA7UWU", "worker_id": "AR9AU5FY1S3RO"}], "B07BGHK1VQ": [{"asin": "B07BGHK1VQ", "instruction": "i would like a high performance black tablet that has a 9.7 inch screen.", "attributes": ["certified refurbished", "high performance"], "options": ["color: black", "size: 9.7\""], "instruction_attributes": ["high performance"], "instruction_options": ["black", "9.7\""], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZDTWIRK", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FP3Y42D": [{"asin": "B09FP3Y42D", "instruction": "i'm looking for a height adjustable with pendant light chandelier for living room and dining room. also, choose 8008pl-10light in size.", "attributes": ["height adjustable", "pendant light", "light fixture", "dining room", "living room"], "options": ["size: 8008pl-10light"], "instruction_attributes": ["height adjustable", "pendant light", "dining room", "living room"], "instruction_options": ["8008pl-10light"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWTKC1O", "worker_id": "AR0VJ5XRG16UJ"}], "B094QNTTH2": [{"asin": "B094QNTTH2", "instruction": "i need a stainless steel watch with a blue camo top.", "attributes": ["quick release", "stainless steel"], "options": ["color: blue camo"], "instruction_attributes": ["stainless steel"], "instruction_options": ["blue camo"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEF5F5UK", "worker_id": "A19317A3X87NVM"}, {"asin": "B094QNTTH2", "instruction": "i am looking for a painted stainless steel 20mm replacement watch band.", "attributes": ["quick release", "stainless steel"], "options": ["color: paint"], "instruction_attributes": ["stainless steel"], "instruction_options": ["paint"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163S3PQU", "worker_id": "A1EREKSZAA9V7B"}], "B002LMBBLW": [{"asin": "B002LMBBLW", "instruction": "i would like a cruelty-free coconut scented shampoo.", "attributes": ["cruelty free", "tea tree"], "options": ["scent: coconut", "size: 8 fl oz (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["coconut"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQ3JAJ0", "worker_id": "A2ECRNQ3X5LEXD"}], "B086DKSHQ4": [{"asin": "B086DKSHQ4", "instruction": "i need a blink outdoor camera kit that has motion detection.", "attributes": ["batteries included", "long lasting", "motion detection"], "options": ["configuration: 2 camera kit", "style: blink outdoor"], "instruction_attributes": ["motion detection"], "instruction_options": ["2 camera kit", "blink outdoor"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EB48U6F", "worker_id": "A2ECRNQ3X5LEXD"}], "B095JSFQKN": [{"asin": "B095JSFQKN", "instruction": "i need a four piece shower cap that is for natural hair.", "attributes": ["non slip", "natural hair", "hair loss"], "options": ["color: 4pcs style a"], "instruction_attributes": ["natural hair"], "instruction_options": ["4pcs style a"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKOSJML", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PV9L7P8": [{"asin": "B09PV9L7P8", "instruction": "i would like to buy some easy to install pendant lights for my living room.", "attributes": ["easy install", "pendant light", "light fixture", "solid wood", "dining room", "living room"], "options": [""], "instruction_attributes": ["easy install", "pendant light", "living room"], "instruction_options": [], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2C9KF7", "worker_id": "A1WS884SI0SLO4"}], "B000SKP2B4": [{"asin": "B000SKP2B4", "instruction": "i'm looking for some keto friendly peas and beans.", "attributes": ["keto friendly", "low carb", "dietary fiber"], "options": [""], "instruction_attributes": ["keto friendly"], "instruction_options": [], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7F4BK8X", "worker_id": "A19317A3X87NVM"}], "B0794J9TBP": [{"asin": "B0794J9TBP", "instruction": "i would like a big fit new cranberry 16.5 neck and 35-35 sleeve shirt that i can take care of in the washing machine.", "attributes": ["easy care", "machine wash", "stretch fabric", "regular fit", "button closure"], "options": ["color: new cranberry", "fit type: big fit", "size: 16.5\" neck 35\"-36\" sleeve"], "instruction_attributes": ["machine wash"], "instruction_options": ["new cranberry", "big fit", "16.5\" neck 35\"-36\" sleeve"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSJH0XQ", "worker_id": "A1WS884SI0SLO4"}], "B072YYHYGB": [{"asin": "B072YYHYGB", "instruction": "find me a brushed nickel wall sconce.", "attributes": ["brushed nickel", "nickel finish"], "options": [""], "instruction_attributes": ["brushed nickel"], "instruction_options": [], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS408JNX7", "worker_id": "A36LOA6VLJU157"}], "B00Y3C225M": [{"asin": "B00Y3C225M", "instruction": "i would like a 12 ounce bag of automatic drip coffee beans that are also gluten free.", "attributes": ["lactose free", "sugar free", "gluten free"], "options": ["size: 12 ounce (pack of 1)", "style: automatic drip"], "instruction_attributes": ["gluten free"], "instruction_options": ["12 ounce (pack of 1)", "automatic drip"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IR2HKI", "worker_id": "A1WS884SI0SLO4"}], "B085ZFZZGD": [{"asin": "B085ZFZZGD", "instruction": "i want to find a silver gray bluetooth projector that has blu ray.", "attributes": ["dust proof", "dual band", "high power", "blu ray", "plug play"], "options": ["color: silver grey"], "instruction_attributes": ["blu ray"], "instruction_options": ["silver grey"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OLXG5HM", "worker_id": "A345TDMHP3DQ3G"}], "B09PR5QRN1": [{"asin": "B09PR5QRN1", "instruction": "i would like a slim fit t-shirt that is xx-large and is the color blue2.", "attributes": ["fleece lined", "loose fit", "slim fit", "nylon spandex", "long sleeve", "drawstring waist", "high waist"], "options": ["color: blue2", "size: xx-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["blue2", "xx-large"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCLUBSN0", "worker_id": "A2ECRNQ3X5LEXD"}], "B091KJDJD3": [{"asin": "B091KJDJD3", "instruction": "i am looking a 8.5-9 woman non slip thick sole bathroom slipper with open toe also colour should be blue", "attributes": ["non slip", "quick drying", "open toe", "ethylene vinyl", "vinyl acetate"], "options": ["color: navy", "size: 8.5-9 women | 7-8 men"], "instruction_attributes": ["non slip", "open toe"], "instruction_options": ["navy", "8.5-9 women | 7-8 men"], "assignment_id": "351SEKWQSBRP7CP60H83T50CF1KDMK", "worker_id": "A3N9ZYQAESNFQH"}], "B07QW31DK1": [{"asin": "B07QW31DK1", "instruction": "i'd like to find 3 pairs of navy socks that are made of nylon spandex.", "attributes": ["long lasting", "nylon spandex"], "options": ["color: 3 pairs of navy"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["3 pairs of navy"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKIFV7A", "worker_id": "A345TDMHP3DQ3G"}], "B08M9CK173": [{"asin": "B08M9CK173", "instruction": "i need a ottoman for my living room in a primary color.", "attributes": ["storage space", "wood frame", "solid wood", "living room"], "options": ["color: primary color"], "instruction_attributes": ["living room"], "instruction_options": ["primary color"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSENW4GO7", "worker_id": "A1WS884SI0SLO4"}], "B000R2Z6AA": [{"asin": "B000R2Z6AA", "instruction": "i would like some spaghetti that is kosher.", "attributes": ["fully cooked", "kosher certified"], "options": [""], "instruction_attributes": ["kosher certified"], "instruction_options": [], "assignment_id": "39LNWE0K456PSVA11X00BCXJKS2IUQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08PKQ1ZVR": [{"asin": "B08PKQ1ZVR", "instruction": "i am looking for a purple high definition tablet.", "attributes": ["high definition", "high resolution", "hands free", "quad core"], "options": ["color: purple"], "instruction_attributes": ["high definition"], "instruction_options": ["purple"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20JBZ0I", "worker_id": "A2ECRNQ3X5LEXD"}], "B099521SST": [{"asin": "B099521SST", "instruction": "i would like to get a 16 gig black tablet with a usb port.", "attributes": ["high definition", "usb port"], "options": ["color: black", "size: 1+16g"], "instruction_attributes": ["usb port"], "instruction_options": ["black", "1+16g"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXF9KWF", "worker_id": "A1WS884SI0SLO4"}], "B081F733F9": [{"asin": "B081F733F9", "instruction": "i want to get a three pack of lead free tea light candles.", "attributes": ["lead free", "white item"], "options": ["size: (3-pack)", "style: mega tealight candles"], "instruction_attributes": ["lead free"], "instruction_options": ["(3-pack)"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VB65DJU", "worker_id": "A2YNPKYEFDZ6C9"}], "B09JLPBSCS": [{"asin": "B09JLPBSCS", "instruction": "i am looking for a storage case in the color 1", "attributes": ["storage case", "stainless steel"], "options": ["color: #1.0"], "instruction_attributes": ["storage case"], "instruction_options": ["#1.0"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD37VAYX", "worker_id": "A2ECRNQ3X5LEXD"}], "B08M3LT2X4": [{"asin": "B08M3LT2X4", "instruction": "i need a height adjustable blue office chair.", "attributes": ["height adjustable", "high density", "easy assemble", "lumbar support"], "options": ["color: blue"], "instruction_attributes": ["height adjustable"], "instruction_options": ["blue"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PESQEN", "worker_id": "A2ECRNQ3X5LEXD"}], "B000IB0FGU": [{"asin": "B000IB0FGU", "instruction": "i am looking for an antiperspirant.", "attributes": ["anti perspirant", "alcohol free"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3UOQ77", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LDH87YJ": [{"asin": "B08LDH87YJ", "instruction": "i am looking for esay appluing extra shine and long lasting cosmetics in kit 1 color.", "attributes": ["easy apply", "easy carry", "long lasting"], "options": ["color: kit 1"], "instruction_attributes": ["easy apply"], "instruction_options": ["kit 1"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXNJO5Q", "worker_id": "A2DQZHJHF45NDT"}], "B0751MZBGL": [{"asin": "B0751MZBGL", "instruction": "i need some gluten and dairy free fruit snacks.", "attributes": ["gluten free", "nut free", "dairy free", "non gmo", "dietary fiber", "simple ingredients"], "options": ["flavor name: fruit variety pack", "size: 2 large bags"], "instruction_attributes": ["gluten free", "dairy free"], "instruction_options": ["fruit variety pack"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZDSHIR3", "worker_id": "A19317A3X87NVM"}], "B004D8Q9YG": [{"asin": "B004D8Q9YG", "instruction": "i would like a wine cabinet that's more in a contemporary modern style.", "attributes": ["bronze finish", "contemporary style"], "options": [""], "instruction_attributes": ["contemporary style"], "instruction_options": [], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP99EZRK", "worker_id": "A1WS884SI0SLO4"}], "B09SZP2LTP": [{"asin": "B09SZP2LTP", "instruction": "i would like to buy a dual band repeater able to work with high speed internet.", "attributes": ["dual band", "high speed"], "options": [""], "instruction_attributes": ["dual band", "high speed"], "instruction_options": [], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LC5SPV", "worker_id": "A1WS884SI0SLO4"}], "B016S52L2U": [{"asin": "B016S52L2U", "instruction": "find me a zero sugar grape flavored water.", "attributes": ["source vitamin", "zero sugar"], "options": ["flavor name: grape"], "instruction_attributes": ["zero sugar"], "instruction_options": ["grape"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SIV2T3C", "worker_id": "A36LOA6VLJU157"}], "B07HWLYSP6": [{"asin": "B07HWLYSP6", "instruction": "i would get to get a women's large cranberry t-shirt made from cotton heather .", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: cranberry", "fit type: women", "size: large"], "instruction_attributes": ["heathers cotton", "cotton heather"], "instruction_options": ["cranberry", "women", "large"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR1EC0L", "worker_id": "A1WS884SI0SLO4"}], "B00478A1TG": [{"asin": "B00478A1TG", "instruction": "i would like to buy some size 5 mocha birkibuc slides with arch support.", "attributes": ["easy care", "arch support"], "options": ["color: mocha birkibuc", "size: 5"], "instruction_attributes": ["arch support"], "instruction_options": ["mocha birkibuc", "5"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUF5HLVC", "worker_id": "A1WS884SI0SLO4"}], "B09MLWWLXG": [{"asin": "B09MLWWLXG", "instruction": "i am looking for a manual toothbrush that is for sensitive teeth and is in the color f.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: f"], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6C8F0VT", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CT9LC6Y": [{"asin": "B07CT9LC6Y", "instruction": "i would like a living room wall lamp that is in antique silver and has one light.", "attributes": ["clear glass", "dining room", "living room"], "options": ["color: antique silver", "size: 1-light"], "instruction_attributes": ["living room"], "instruction_options": ["antique silver", "1-light"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY862Y81D", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LCKWKQM": [{"asin": "B09LCKWKQM", "instruction": "i need a desk for my home office that is easy to assemble and is white.", "attributes": ["space saving", "easy assemble", "storage space"], "options": ["color: white"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIIU480", "worker_id": "A2ECRNQ3X5LEXD"}], "B08TVTQ8N6": [{"asin": "B08TVTQ8N6", "instruction": "i am looking for heavy duto wall plates that are an outlet combo.", "attributes": ["heavy duty", "high gloss"], "options": ["style: rocker | outlet combo"], "instruction_attributes": ["heavy duty"], "instruction_options": ["rocker | outlet combo"], "assignment_id": "33F859I56HNA01QBVO1K6A4GVXTHBY", "worker_id": "A2ECRNQ3X5LEXD"}], "B000VWKILI": [{"asin": "B000VWKILI", "instruction": "i want a two pack of hair dye that is in the shade 8rb medium reddish blonde.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 8rb medium reddish blonde", "size: 1 count (pack of 2)"], "instruction_attributes": ["hair dye"], "instruction_options": ["8rb medium reddish blonde", "1 count (pack of 2)"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZB5C7Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B08TLX32NB": [{"asin": "B08TLX32NB", "instruction": "i am looking for an orange bag that is easy to carry", "attributes": ["leak proof", "easy carry"], "options": ["color: orange"], "instruction_attributes": ["easy carry"], "instruction_options": ["orange"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHA4IODZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B078SJV72L": [{"asin": "B078SJV72L", "instruction": "i would like to get a r9 b75+core pentium g2020 with 16 gigs of ram and a intel core i5 processer router.", "attributes": ["core i5", "intel core"], "options": ["color: r9 b75+intel pentium g2020", "size: 16g ram 512g ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["r9 b75+intel pentium g2020", "16g ram 512g ssd"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8N3C2ND", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B078SJV72L", "instruction": ", i want a router pc core i5 with intel core support 8g ram 128g ssd 1 tb hdd", "attributes": ["core i5", "intel core"], "options": ["color: r4 cpu d525", "size: 8g ram 128g ssd 1tb hdd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["8g ram 128g ssd 1tb hdd"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB192W5Z", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B078SJV72L", "instruction": "i'm looking for a router for i5 inter core processor. also, choose 8g ram, 128g ssd and 1td hdd with intel i3 3220, r9 b75 one.", "attributes": ["core i5", "intel core"], "options": ["color: r9 b75+intel i3 3220", "size: 8g ram 128g ssd 1tb hdd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["r9 b75+intel i3 3220", "8g ram 128g ssd 1tb hdd"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDH5O2A", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B078SJV72L", "instruction": "i need a router that has 8gb of ram and 240 ssd", "attributes": ["core i5", "intel core"], "options": ["color: r9 b75+intel i7 3770", "size: 8g ram 240g ssd"], "instruction_attributes": ["core i5"], "instruction_options": ["8g ram 240g ssd"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIIUFE5", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B078SJV72L", "instruction": "i need an intel core router with 8g ram and 512g ssd.", "attributes": ["core i5", "intel core"], "options": ["color: r9 b75+intel i3 3220", "size: 8g ram 512g ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["8g ram 512g ssd"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGBGSMT", "worker_id": "A1NF6PELRKACS9"}], "B093KC44SM": [{"asin": "B093KC44SM", "instruction": "i would like a wallet that can be washed in my laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YSK3QX", "worker_id": "A1WS884SI0SLO4"}], "B0736R9BM2": [{"asin": "B0736R9BM2", "instruction": "i am looking for gold noise cancelling headphones.", "attributes": ["noise cancelling", "long lasting", "hands free"], "options": ["color: gold"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["gold"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G728748", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LM7FRS4": [{"asin": "B09LM7FRS4", "instruction": "i am looking for large leggings that are butt lifting in fog grey.", "attributes": ["butt lifting", "moisture wicking", "nylon spandex", "elastic closure", "tummy control"], "options": ["color: fog grey", "size: large"], "instruction_attributes": ["butt lifting"], "instruction_options": ["fog grey", "large"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTK7P90", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GGWRRGM": [{"asin": "B07GGWRRGM", "instruction": "i'm looking for a gold professional hair styling barber gown.", "attributes": ["hair cutting", "hair styling"], "options": ["color: gold"], "instruction_attributes": ["hair styling"], "instruction_options": ["gold"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZF8A9V7", "worker_id": "A345TDMHP3DQ3G"}], "B014KZL3II": [{"asin": "B014KZL3II", "instruction": "could you get me listerine toothpaste that takes care of bad breath?", "attributes": ["bad breath", "oral hygiene"], "options": [""], "instruction_attributes": ["bad breath"], "instruction_options": [], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJO4VGP", "worker_id": "A15ERD4HOFEPHM"}], "B01G8DYX96": [{"asin": "B01G8DYX96", "instruction": "i'm looking for a ready to hag wall art for dining room and living room. also, choose 3 pcs/set 16*24 inch*3 framed with beach colored one.", "attributes": ["ready hang", "dining room", "living room"], "options": ["color: beach three 12x16inchx3", "size: 3 pcs | set 16x24inchx3 framed"], "instruction_attributes": ["ready hang", "dining room", "living room"], "instruction_options": ["beach three 12x16inchx3", "3 pcs | set 16x24inchx3 framed"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7JUOBG", "worker_id": "AR0VJ5XRG16UJ"}], "B00GDIMCKE": [{"asin": "B00GDIMCKE", "instruction": "i am looking for individually wrapped chocolate bars.", "attributes": ["individually wrapped", "gift basket"], "options": [""], "instruction_attributes": ["individually wrapped"], "instruction_options": [], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W14OUU", "worker_id": "A2ECRNQ3X5LEXD"}], "B079R9R7LJ": [{"asin": "B079R9R7LJ", "instruction": "i need a pack of variety ranch nacho flavorings with low sodium and natural ingredients.", "attributes": ["low sodium", "non gmo", "gluten free", "natural ingredients", "gift set", "great gift"], "options": ["flavor name: 2 pk - ranch, nacho"], "instruction_attributes": ["low sodium", "natural ingredients"], "instruction_options": ["2 pk - ranch, nacho"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEAG867", "worker_id": "A19317A3X87NVM"}], "B07MDZS3JB": [{"asin": "B07MDZS3JB", "instruction": "i need to buy some oils that are gluten free and keto friendly.", "attributes": ["keto friendly", "gluten free"], "options": [""], "instruction_attributes": ["keto friendly", "gluten free"], "instruction_options": [], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH2Q1ET", "worker_id": "A2YNPKYEFDZ6C9"}], "B097RGWN48": [{"asin": "B097RGWN48", "instruction": "i would like to buy some high power binoculars that are good for bird watching.", "attributes": ["high power", "light weight", "bird watching"], "options": [""], "instruction_attributes": ["high power", "bird watching"], "instruction_options": [], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYH9DH3", "worker_id": "A1WS884SI0SLO4"}], "B08P3HZZ7Z": [{"asin": "B08P3HZZ7Z", "instruction": "i'm looking for a unique designed, daily wear boxer briefs with elastic waistband. also choose medium size with waistband-stars flag printed one.", "attributes": ["unique design", "elastic waistband", "daily wear"], "options": ["color: waistband-stars flag", "size: medium"], "instruction_attributes": ["unique design", "elastic waistband", "daily wear"], "instruction_options": ["waistband-stars flag", "medium"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70I5BCB7", "worker_id": "AR0VJ5XRG16UJ"}], "B01BHCERTO": [{"asin": "B01BHCERTO", "instruction": "i am looking for some maternity skin care that has natural ingredients.", "attributes": ["clinically proven", "high quality", "natural ingredients"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7A35NB", "worker_id": "A2ECRNQ3X5LEXD"}], "B091CXV8PL": [{"asin": "B091CXV8PL", "instruction": "i would like some cupcake toppers that would good at both a birthday party and a baby shower.", "attributes": ["baby shower", "birthday party"], "options": [""], "instruction_attributes": ["baby shower", "birthday party"], "instruction_options": [], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL8414TXAC", "worker_id": "A1WS884SI0SLO4"}], "B08V59PYQC": [{"asin": "B08V59PYQC", "instruction": "i need a home office desk chair that is green and made of pu leather", "attributes": ["pu leather", "living room"], "options": ["color: green,chrome"], "instruction_attributes": ["pu leather"], "instruction_options": ["green,chrome"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCSPQ4E", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HLZG1L5": [{"asin": "B08HLZG1L5", "instruction": "i need a light, short sleeve v-neck shirt in wine red.", "attributes": ["light weight", "machine wash", "elastic closure", "short sleeve"], "options": ["color: v-short-wine red", "size: 3x-large"], "instruction_attributes": ["light weight", "short sleeve"], "instruction_options": ["v-short-wine red"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746NVBT1", "worker_id": "A19317A3X87NVM"}], "B09KBVFNTZ": [{"asin": "B09KBVFNTZ", "instruction": "i would like a medium sized long sleeved buttons up polyester cardigan that is able to be machined washed. if they have one in khaki, that'd be great.", "attributes": ["machine wash", "wash cold", "quality polyester", "long sleeve", "button closure"], "options": ["color: khaki", "size: medium"], "instruction_attributes": ["machine wash", "quality polyester", "long sleeve", "button closure"], "instruction_options": ["khaki", "medium"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMENXV6", "worker_id": "A1WS884SI0SLO4"}], "B00ECU8IAI": [{"asin": "B00ECU8IAI", "instruction": "i would like a wall lamp with a nickel finish.", "attributes": ["nickel finish", "glass shade"], "options": [""], "instruction_attributes": ["nickel finish"], "instruction_options": [], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDNKY8E", "worker_id": "A1WS884SI0SLO4"}], "B015D7BLWK": [{"asin": "B015D7BLWK", "instruction": "i need a high speed usb flash drive that is 32 gb", "attributes": ["plug play", "high speed"], "options": ["color: 32gb"], "instruction_attributes": ["high speed"], "instruction_options": ["32gb"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTQK7MO", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NQLC9KN": [{"asin": "B07NQLC9KN", "instruction": "i would like to get a 5 pack of 4 ounce tea tree soap.", "attributes": ["tea tree", "natural ingredients"], "options": ["size: 4 ounce (pack of 5)"], "instruction_attributes": ["tea tree"], "instruction_options": ["4 ounce (pack of 5)"], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6E0EE1", "worker_id": "A1WS884SI0SLO4"}], "B09GXZJLB1": [{"asin": "B09GXZJLB1", "instruction": "i am looking for light blonde hair extensions that are 18 inches long.", "attributes": ["easy use", "hair extensions", "natural hair"], "options": ["color: ba#16 | 22 light blonde highlighted golden blonde", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["ba#16 | 22 light blonde highlighted golden blonde", "18 inch"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SIZZ3TR", "worker_id": "A2ECRNQ3X5LEXD"}], "B0892HTXP7": [{"asin": "B0892HTXP7", "instruction": "i want to buy a faux leather ottoman that are 80 by 45 by 40 cm.", "attributes": ["storage space", "faux leather"], "options": ["color: e", "size: 80*45*40cm"], "instruction_attributes": ["faux leather"], "instruction_options": ["80*45*40cm"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CH58BNZ", "worker_id": "A2YNPKYEFDZ6C9"}], "B09K5CDZQN": [{"asin": "B09K5CDZQN", "instruction": "i need pendant lights that are a size a18", "attributes": ["pendant light", "dining room"], "options": ["size: a18"], "instruction_attributes": ["pendant light"], "instruction_options": ["a18"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9E8PB1L", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FKCTDPS": [{"asin": "B09FKCTDPS", "instruction": "i'm trying to find an 8 oz bag of sprinkles for a birthday party.", "attributes": ["baby shower", "birthday party"], "options": ["size: 8 oz"], "instruction_attributes": ["birthday party"], "instruction_options": ["8 oz"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQAEKE7", "worker_id": "A15ERD4HOFEPHM"}], "B096FF85FB": [{"asin": "B096FF85FB", "instruction": "i would like a twin sizes grey bed made of solid wood.", "attributes": ["assembly required", "box spring", "solid wood"], "options": ["color: grey", "size: twin"], "instruction_attributes": ["solid wood"], "instruction_options": ["grey", "twin"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LP5BOR7", "worker_id": "A1WS884SI0SLO4"}], "B0082JO8SG": [{"asin": "B0082JO8SG", "instruction": "get me a solid wood king bed with a box spring.", "attributes": ["solid wood", "box spring"], "options": ["color: saint pierre - toast linen", "size: king"], "instruction_attributes": ["box spring"], "instruction_options": ["king"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE18AXRD", "worker_id": "A15ERD4HOFEPHM"}], "B0836N74PN": [{"asin": "B0836N74PN", "instruction": "i am looking for a high quality hair brush.", "attributes": ["high quality", "hair cutting"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNED3IX8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NSBPS7F": [{"asin": "B09NSBPS7F", "instruction": "i would like to buy small blue toothbrushes for my toddler's sensitive teeth.", "attributes": ["teeth whitening", "easy use", "sensitive teeth"], "options": ["color: blue", "size: small(age1-8)"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["blue", "small(age1-8)"], "assignment_id": "32SCWG5HISEW7674IASH43KF3M36PG", "worker_id": "A1WS884SI0SLO4"}], "B09NKN53K1": [{"asin": "B09NKN53K1", "instruction": "i am looking for black power amplifier speakerphones.", "attributes": ["power amplifier", "high power"], "options": ["color: black"], "instruction_attributes": ["power amplifier"], "instruction_options": ["black"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMHZWML", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QJ9BDSJ": [{"asin": "B08QJ9BDSJ", "instruction": "i would like to buy a black stainless steel heavy duty file cabinet with two drawers.", "attributes": ["heavy duty", "assembly required", "stainless steel"], "options": ["color: black", "size: 2 drawers"], "instruction_attributes": ["heavy duty", "stainless steel"], "instruction_options": ["black", "2 drawers"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q7WT9HH", "worker_id": "A1WS884SI0SLO4"}], "B078SX7N2Z": [{"asin": "B078SX7N2Z", "instruction": "i want to purchase from men's clothing a pair of men's retro jeans with the relaxed fit and boot cut. needs to be long lasting, comfortable fitting and in a relaxed fit. must be a size 35 waist and 36 long in rockdale color.", "attributes": ["long lasting", "comfortable fit", "relaxed fit"], "options": ["color: rockdale", "fit type: regular", "size: 35w x 36l"], "instruction_attributes": ["long lasting", "comfortable fit", "relaxed fit"], "instruction_options": ["rockdale", "35w x 36l"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4I6KPK", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B078SX7N2Z", "instruction": "i would like a pair of 32w x 33l rocky top regular fit jeans that are long lasting.", "attributes": ["long lasting", "comfortable fit", "relaxed fit"], "options": ["color: rocky top", "fit type: regular", "size: 32w x 33l"], "instruction_attributes": ["long lasting"], "instruction_options": ["rocky top", "regular", "32w x 33l"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUEIZDL", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B078SX7N2Z", "instruction": "i would like a pair of bryson slim fit jeans with a comfortable relaxed fit. my size is 30w x 34l", "attributes": ["long lasting", "comfortable fit", "relaxed fit"], "options": ["color: bryson", "fit type: slim", "size: 30w x 34l"], "instruction_attributes": ["comfortable fit", "relaxed fit"], "instruction_options": ["bryson", "slim", "30w x 34l"], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0WKCCZ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B078SX7N2Z", "instruction": "i need men's boot cut jeans that has a relaxed fit. it should be 36 wide and 30 long.", "attributes": ["long lasting", "comfortable fit", "relaxed fit"], "options": ["color: atlanta", "fit type: slim", "size: 36w x 30l"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["36w x 30l"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX61FAL", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B078SX7N2Z", "instruction": "i would like comfortable fit jeans in the lakeport color", "attributes": ["long lasting", "comfortable fit", "relaxed fit"], "options": ["color: lakeport", "fit type: regular", "size: 32w x 31l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["lakeport"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G79Q744", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B078SX7N2Z", "instruction": "i am looking for a pair of long lasting placid blue men's jeans.", "attributes": ["long lasting", "comfortable fit", "relaxed fit"], "options": ["color: placid blue", "fit type: big & tall", "size: 44w x 30l"], "instruction_attributes": ["long lasting"], "instruction_options": ["placid blue"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q7BGW9", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B078SX7N2Z", "instruction": "i want to find men's jeans with a relaxed, big and tall fit. the jeans should be in size 34 and have an antique wash.", "attributes": ["long lasting", "comfortable fit", "relaxed fit"], "options": ["color: antique wash", "fit type: big & tall", "size: 34"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["antique wash", "big & tall", "34"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTICD50", "worker_id": "A345TDMHP3DQ3G"}], "B084TJLG4C": [{"asin": "B084TJLG4C", "instruction": "i would like to buy a 70 by 70 inch pattern 4 table cloth that's easy to clean.", "attributes": ["machine washable", "super soft", "eco friendly", "easy clean"], "options": ["color: pattern04", "size: 70\"x70\"(diameter 178cm)"], "instruction_attributes": ["easy clean"], "instruction_options": ["pattern04", "70\"x70\"(diameter 178cm)"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YWZMT4T", "worker_id": "A1WS884SI0SLO4"}], "B087CYM49L": [{"asin": "B087CYM49L", "instruction": "i would like to get a 24 pack of 7.5 ounce bottles of non-gmo classic tonic.", "attributes": ["non gmo", "high fructose", "artificial flavors"], "options": ["flavor name: classic tonic", "size: 7.5 fl oz (pack of 24)"], "instruction_attributes": ["non gmo"], "instruction_options": ["classic tonic", "7.5 fl oz (pack of 24)"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ4C0N9", "worker_id": "A1WS884SI0SLO4"}], "B082NWZD2B": [{"asin": "B082NWZD2B", "instruction": "i need a cosmetic bag for my nail polish.", "attributes": ["nail polish", "nail art"], "options": [""], "instruction_attributes": ["nail polish"], "instruction_options": [], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZ7RRP5", "worker_id": "A2ECRNQ3X5LEXD"}], "B089LP3TJD": [{"asin": "B089LP3TJD", "instruction": "i am looking for an alcohol free mouthwash", "attributes": ["non toxic", "clinically proven", "alcohol free"], "options": [""], "instruction_attributes": ["alcohol free"], "instruction_options": [], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR025W3KA1", "worker_id": "A2ECRNQ3X5LEXD"}], "B08Y3XH857": [{"asin": "B08Y3XH857", "instruction": "i would like to buy a valentine's day party bag with 60 chocolate individually wrapped candies.", "attributes": ["individually wrapped", "valentine day"], "options": [""], "instruction_attributes": ["individually wrapped", "valentine day"], "instruction_options": [], "assignment_id": "31EUONYN26DZ1WA44INARVVOAAUOV4", "worker_id": "A1WS884SI0SLO4"}], "B09CGV29FK": [{"asin": "B09CGV29FK", "instruction": "i need a high quality pink toiletry bag.", "attributes": ["easy clean", "bpa free", "high quality", "travel bottles"], "options": ["color: pink"], "instruction_attributes": ["high quality"], "instruction_options": ["pink"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH49Z514", "worker_id": "A19317A3X87NVM"}], "B08KSRV6RX": [{"asin": "B08KSRV6RX", "instruction": "i would like a travel size 0.27 fluid ounce of lanvin eclat d'arpege impression perfume.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: lanvin eclat d'arpege impression", "size: 0.27 fl oz (pack of 1)"], "instruction_attributes": ["travel size"], "instruction_options": ["lanvin eclat d'arpege impression", "0.27 fl oz (pack of 1)"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFAA20B", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08KSRV6RX", "instruction": "i need a travel size perfume with a frederic malle scent.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: frederic malle music for a while impress...", "size: 0.27 fl oz | 8ml"], "instruction_attributes": ["travel size"], "instruction_options": ["frederic malle music for a while impress..."], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGD8X5KR", "worker_id": "A19317A3X87NVM"}, {"asin": "B08KSRV6RX", "instruction": "i am looking for a travel sized bottle of chanel number 5.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: chanel no:5 eau premiere impression", "size: 0.27 fl oz (pack of 1)"], "instruction_attributes": ["travel size"], "instruction_options": ["chanel no:5 eau premiere impression"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LJ3PS4", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08KSRV6RX", "instruction": "show me a high quality long lasting travel size christian dior ambre nuit impression perfume in 5ml size.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: christian dior ambre nuit impression", "size: 0.17 fl oz | 5ml"], "instruction_attributes": ["travel size", "long lasting", "high quality"], "instruction_options": ["christian dior ambre nuit impression", "0.17 fl oz | 5ml"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYQBQMO", "worker_id": "A3AYHESLQSDY5T"}], "B08WKC5NQV": [{"asin": "B08WKC5NQV", "instruction": "i need a table that is easy to assemble and that is honey pine", "attributes": ["easy assemble", "solid wood", "dining room", "living room"], "options": ["color: 02 honey pine", "size: catalog + pine samples"], "instruction_attributes": ["easy assemble"], "instruction_options": ["02 honey pine"], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GICO00N", "worker_id": "A2ECRNQ3X5LEXD"}], "B0071K49JA": [{"asin": "B0071K49JA", "instruction": "i am looking for a light fixture that is brushed nickel.", "attributes": ["brushed nickel", "nickel finish", "light fixture"], "options": ["color: brushed nickel"], "instruction_attributes": ["light fixture"], "instruction_options": ["brushed nickel"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2VW72U1", "worker_id": "A2ECRNQ3X5LEXD"}], "B08NDPZBLK": [{"asin": "B08NDPZBLK", "instruction": "i am looking for solid wood chairs in a dusty pink color", "attributes": ["super soft", "mid century", "easy assemble", "solid wood", "wood frame", "living room", "dining room"], "options": ["color: dusty pink"], "instruction_attributes": ["solid wood"], "instruction_options": ["dusty pink"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB39UNQG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08L6LR44Q": [{"asin": "B08L6LR44Q", "instruction": "i would like a kronos phone case that supports wireless charging.", "attributes": ["high definition", "wireless charging"], "options": ["color: kronos"], "instruction_attributes": ["wireless charging"], "instruction_options": ["kronos"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXEQWK6", "worker_id": "A1WS884SI0SLO4"}], "B00B1H8VMU": [{"asin": "B00B1H8VMU", "instruction": "i need an original orzo that is low carb and is 1.3 pounds.", "attributes": ["low carb", "dietary fiber"], "options": ["flavor name: original", "size: 1.3 pound (pack of 1)"], "instruction_attributes": ["low carb"], "instruction_options": ["original", "1.3 pound (pack of 1)"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPT8G01", "worker_id": "A2ECRNQ3X5LEXD"}], "B076B52CFD": [{"asin": "B076B52CFD", "instruction": "i am looking for low fat jalapeno jerky that is 4 ounces.", "attributes": ["low fat", "high protein"], "options": ["flavor name: jalapeno", "size: 4 ounce (pack of 1)"], "instruction_attributes": ["low fat"], "instruction_options": ["jalapeno", "4 ounce (pack of 1)"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKS1IUP", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B076B52CFD", "instruction": "get me some triple dog dare jerky. it should be high in protein and low in fat.", "attributes": ["low fat", "high protein"], "options": ["flavor name: triple dog dare", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["low fat", "high protein"], "instruction_options": ["triple dog dare"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVCKV8G", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B076B52CFD", "instruction": "i am looking for low fat in honey chipotle bbg", "attributes": ["low fat", "high protein"], "options": ["flavor name: honey chipotle bbq", "size: 4 ounce"], "instruction_attributes": ["low fat"], "instruction_options": ["honey chipotle bbq"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMXOG2T", "worker_id": "A2MSIFDLOHI1UT"}], "B07SSJQ7VK": [{"asin": "B07SSJQ7VK", "instruction": "i would like to buy a 2'3\" x 22' green rug for my living room.", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: green | ivory", "size: 2'3\" x 22'"], "instruction_attributes": ["living room"], "instruction_options": ["green | ivory", "2'3\" x 22'"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU45WR60", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07SSJQ7VK", "instruction": "i need an area rug for the dining room that is 3ft by 5ft and is ivory and brown.", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: ivory | brown", "size: 3' x 5'"], "instruction_attributes": ["dining room"], "instruction_options": ["ivory | brown", "3' x 5'"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MCZEZYD", "worker_id": "A2ECRNQ3X5LEXD"}], "B09J14SLPH": [{"asin": "B09J14SLPH", "instruction": "i need a men's size 13 and a half casual walking show with a rubber sole, and it needs to fit comfortably. i want a unique design like a turtle or elephant doodle.", "attributes": ["non slip", "rubber sole", "comfortable fit", "unique design"], "options": ["size: 13.5"], "instruction_attributes": ["rubber sole", "comfortable fit", "unique design"], "instruction_options": ["13.5"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY89LUXP", "worker_id": "A2DDPSXH2X96RF"}], "B096ZZXGSQ": [{"asin": "B096ZZXGSQ", "instruction": "i need a button down shirt with a long sleeve for a evereday wear medium size with v neck", "attributes": ["machine washable", "loose fit", "hand wash", "button closure", "long sleeve", "everyday wear", "laundry bag"], "options": ["color: haze blue-long sleeve", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHP1XQDY", "worker_id": "A2Y2TURT2VEYZN"}], "B08DTWTKTY": [{"asin": "B08DTWTKTY", "instruction": "i am looking for a bathroom light with farmhouse vanity light", "attributes": ["wall mounted", "bronze finish", "vanity light", "light fixture"], "options": [""], "instruction_attributes": ["bronze finish", "vanity light", "light fixture"], "instruction_options": [], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQ4ES6I", "worker_id": "A356LXGP5Z6D75"}], "B08LYHHYJ8": [{"asin": "B08LYHHYJ8", "instruction": "i want to find some hair growth oil that can treat dry and damaged hair. it must have long-lasting effects.", "attributes": ["long lasting", "tea tree", "natural ingredients", "hair growth", "hair treatment", "hair loss", "damaged hair", "natural hair", "dry hair"], "options": [""], "instruction_attributes": ["long lasting", "damaged hair", "dry hair"], "instruction_options": [], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3Q3ZM1J", "worker_id": "A345TDMHP3DQ3G"}], "B07TSMXFSZ": [{"asin": "B07TSMXFSZ", "instruction": "i am looking for a vidaxl sheesham wood dining table of light brown color with coated steel for dining room.", "attributes": ["coated steel", "white finish", "dining room"], "options": ["color: light brown", "size: 55.1\""], "instruction_attributes": ["coated steel", "dining room"], "instruction_options": ["light brown"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5I5X6I", "worker_id": "A1Q8PPQQCWGY0D"}], "B08QDRTNCS": [{"asin": "B08QDRTNCS", "instruction": "i'm looking for a sound bar that fits a honda 2016-2022 with a pioneer 5 utv", "attributes": ["high power", "plug play", "usb port"], "options": [""], "instruction_attributes": ["high power", "plug play"], "instruction_options": [], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO3GJGF", "worker_id": "A2EIQYUSCVZTML"}], "B073H4R7V8": [{"asin": "B073H4R7V8", "instruction": "i'm looking for a 2 ounce bag of kool ranch kale chips that are non-gmo and gluten free.", "attributes": ["non gmo", "hand crafted", "gluten free", "simple ingredients"], "options": ["flavor name: kool ranch", "size: 2 ounce (pack of 1)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["kool ranch", "2 ounce (pack of 1)"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGHWBV19", "worker_id": "A39SK1E6IMQBD5"}], "B071GVXG5C": [{"asin": "B071GVXG5C", "instruction": "i'm looking for a deep conditioning hair mask for dry hair that contains argan oil.", "attributes": ["argan oil", "dry hair"], "options": [""], "instruction_attributes": ["argan oil", "dry hair"], "instruction_options": [], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVBTTUX", "worker_id": "A1UYU9PV266WTT"}], "B09PF39V68": [{"asin": "B09PF39V68", "instruction": "i want to get a box of chocolates that's handcrafted and a gift set.", "attributes": ["hand crafted", "gift set"], "options": [""], "instruction_attributes": ["hand crafted", "gift set"], "instruction_options": [], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HPF1DO", "worker_id": "A2YNPKYEFDZ6C9"}], "B01FRP21K4": [{"asin": "B01FRP21K4", "instruction": "i'm looking for low sodium tuna fish in a 6.3 ounce container , preferably in a 6 pack . please also select the ones that have been flavored with tomato & olives.", "attributes": ["gluten free", "wild caught", "low sodium", "low calorie", "non gmo", "great gift"], "options": ["flavor name: tomato & olives", "size: 6.3 ounce (pack of 6)"], "instruction_attributes": ["low sodium"], "instruction_options": ["tomato & olives", "6.3 ounce (pack of 6)"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PEGEQZ", "worker_id": "A20DUVEOH6A7KW"}, {"asin": "B01FRP21K4", "instruction": "i would like some wild caught tuna fish that is a jalapeno flavor.", "attributes": ["gluten free", "wild caught", "low sodium", "low calorie", "non gmo", "great gift"], "options": ["flavor name: jalapeno", "size: 6.7 ounce (pack of 1)"], "instruction_attributes": ["wild caught"], "instruction_options": ["jalapeno"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1K6F6K", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Y7XTHCT": [{"asin": "B07Y7XTHCT", "instruction": "i would to have 12 piece cake topper for a birthday party.", "attributes": ["birthday party", "party supplies", "baby shower"], "options": ["color: toy"], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9F0TVE", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B07Y7XTHCT", "instruction": "i am looking for a trolls themed cupcake topper for a birthday party.", "attributes": ["birthday party", "party supplies", "baby shower"], "options": ["color: trolls"], "instruction_attributes": ["birthday party"], "instruction_options": ["trolls"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDJ6RHV", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07Y7XTHCT", "instruction": "i would like some toy cupcake toppers for a baby shower.", "attributes": ["birthday party", "party supplies", "baby shower"], "options": ["color: toy"], "instruction_attributes": ["baby shower"], "instruction_options": ["toy"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEO4ZKP", "worker_id": "A1WS884SI0SLO4"}], "B00RXUKSSO": [{"asin": "B00RXUKSSO", "instruction": "i want a contemporary style solid wood fabric ottoman colour should be light grey", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: light gray", "size: sofa"], "instruction_attributes": ["contemporary style", "solid wood"], "instruction_options": ["light gray"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYYU4J0", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B00RXUKSSO", "instruction": "look for chairs that have a contemporary style and come in azure.", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: azure", "size: ottoman"], "instruction_attributes": ["contemporary style"], "instruction_options": ["azure"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3B2QNV", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B00RXUKSSO", "instruction": "i would like a mid century oatmeal sofa ottoman made with solid wood.", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: oatmeal", "size: sofa"], "instruction_attributes": ["mid century", "solid wood"], "instruction_options": ["oatmeal", "sofa"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MMFWL9", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00RXUKSSO", "instruction": "i need a mid-century ottoman that's upholstered in oatmeal fabric.", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: oatmeal", "size: teal"], "instruction_attributes": ["mid century"], "instruction_options": ["oatmeal"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RLBFLK", "worker_id": "A3LIIE572Z4OG7"}], "B08Y6T1TYN": [{"asin": "B08Y6T1TYN", "instruction": "i am looking super soft speed sports car fleece throw blanket for boys girls extreme sports theme plush blanket cool tie dye decor fuzzy blanket for sofa bed couch for living room.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 26", "size: throw"], "instruction_attributes": ["super soft", "fleece throw", "living room"], "instruction_options": ["throw"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AC1YUF", "worker_id": "A1W06GIYOJMSAK"}], "B093YSPPVX": [{"asin": "B093YSPPVX", "instruction": "set of 3 blouse hosiery normal-1, tradional-1, modern-1including matching clothes.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery"], "instruction_options": [], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKRSNDS", "worker_id": "A226L9F2AZ38CL"}], "B005OLG5XG": [{"asin": "B005OLG5XG", "instruction": "i just ran out of my foundation. i need you to buy me another one. make sure it is the mehron brand, is cruelty free, and oh! make sure it is the small one. i think it is .75 ounce size.", "attributes": ["paraben free", "cruelty free"], "options": ["color: dark 0", "size: 0.75 ounce"], "instruction_attributes": ["cruelty free"], "instruction_options": ["0.75 ounce"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9NWETY", "worker_id": "A33B85TN97HQ33"}], "B091GQTPT5": [{"asin": "B091GQTPT5", "instruction": "i am looking for some colorful life canvas art for the living room.", "attributes": ["ready hang", "living room"], "options": ["color: colorful life", "size: 47\"w x 31\"h"], "instruction_attributes": ["living room"], "instruction_options": ["colorful life"], "assignment_id": "3634BBTX0Z409DDB6851PCWGA5PIFT", "worker_id": "A3CR9XJAL7U5JW"}], "B09B7GFR12": [{"asin": "B09B7GFR12", "instruction": "find light weight running shoes that can be worn for general outdoor activities and on hiking trails. my size is 40 m eu and i want the color to be 8-4 red.", "attributes": ["light weight", "comfortable fit"], "options": ["color: 8-4 red", "size: 40 m eu"], "instruction_attributes": ["light weight"], "instruction_options": ["8-4 red", "40 m eu"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KQSJ9V", "worker_id": "AOT2BJVBU7JGW"}, {"asin": "B09B7GFR12", "instruction": "i am looking for some lightweight hiking shoes that are yellow and a size 39m", "attributes": ["light weight", "comfortable fit"], "options": ["color: 8-4 gray yellow40", "size: 39 m eu"], "instruction_attributes": ["light weight"], "instruction_options": ["8-4 gray yellow40", "39 m eu"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWT1R97P", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CJL35KV": [{"asin": "B07CJL35KV", "instruction": "i am looking for sea salt body skin scrub consisting of natural ingredients with pack size of 3.4 fl oz.", "attributes": ["natural ingredients", "dead skin"], "options": ["scent: mango coconut", "size: 3.4 fl oz (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["3.4 fl oz (pack of 1)"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDSTEUVD", "worker_id": "A1V2JTEEBCXR20"}], "B00GJBI1GY": [{"asin": "B00GJBI1GY", "instruction": "i want to purchase a machine washable maroon-colored long sleeve men's t-shirt. my size is 3x-large.", "attributes": ["machine wash", "needle sleeve", "long sleeve"], "options": ["color: maroon | cardinal(2 pack)", "size: 3x-large"], "instruction_attributes": ["machine wash", "long sleeve"], "instruction_options": ["maroon | cardinal(2 pack)", "3x-large"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPASQVS", "worker_id": "A1MWCDBGZLHJPI"}, {"asin": "B00GJBI1GY", "instruction": "i am looking for irish-gold color men's t-shirt having long sleeve.", "attributes": ["machine wash", "needle sleeve", "long sleeve"], "options": ["color: irish-gold", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["irish-gold"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GENQ8QQ", "worker_id": "A1Q8PPQQCWGY0D"}], "B09P1CWJTM": [{"asin": "B09P1CWJTM", "instruction": "i am looking for a water flosser and toothbrush combo in one, specifically one that is clinically proven to help with bad breath.", "attributes": ["clinically proven", "bad breath"], "options": [""], "instruction_attributes": ["clinically proven", "bad breath"], "instruction_options": [], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40NTFY0", "worker_id": "A2OVOVZBJYUO"}], "B0829QW29B": [{"asin": "B0829QW29B", "instruction": "i want to get a fruit snack pack from the bare baked company. it should be both fat free and coconut flavored. i also prefer the 16-pack of the 0.53 ounce size.", "attributes": ["non gmo", "gluten free", "fat free", "real fruit", "simple ingredients"], "options": ["flavor name: coconut", "size: 1.4 ounce (pack of 6)"], "instruction_attributes": ["fat free"], "instruction_options": ["coconut"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWU329RL", "worker_id": "A3JUPCWYN6N6H4"}], "B078HYQQBD": [{"asin": "B078HYQQBD", "instruction": "i am looking for silicone body scrubber for sink care massage", "attributes": ["easy clean", "dry skin", "sensitive skin"], "options": ["color: light blue+green", "size: 1st generation"], "instruction_attributes": ["easy clean", "sensitive skin"], "instruction_options": ["light blue+green", "1st generation"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL0OEC5", "worker_id": "ADZQIBZTP9N78"}, {"asin": "B078HYQQBD", "instruction": "i want to find a gray-colored body scrubber that i can use on sensitive skin. if you can find me something that's second generation that would be helpful.", "attributes": ["easy clean", "dry skin", "sensitive skin"], "options": ["color: gray", "size: 2nd generation"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["gray"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0U0F3AN", "worker_id": "A345TDMHP3DQ3G"}], "B093J2HCY5": [{"asin": "B093J2HCY5", "instruction": "could you find me a cruelty and paraben free fragrance? i'm hoping to find one with the sofia isabel scent.", "attributes": ["paraben free", "cruelty free", "coconut oil"], "options": ["scent: sofia isabel"], "instruction_attributes": ["paraben free", "cruelty free"], "instruction_options": ["sofia isabel"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MT769NS", "worker_id": "A2CJFO19NY4T5R"}], "B095J6LNX5": [{"asin": "B095J6LNX5", "instruction": "i'd like to purchase a men's sweater in a size 5x, long-sleeved and with a tonal design.", "attributes": ["classic fit", "long sleeve", "dry clean"], "options": ["color: wine", "size: 5x-large"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0NMPX7", "worker_id": "A3UJSDFJ9LBQ6Z"}], "B094HWX388": [{"asin": "B094HWX388", "instruction": "i am looking for a camera lens protector case in silver color for samsung mobile , also easy to install.", "attributes": ["easy install", "high definition"], "options": ["color: silver", "size: for samsung galaxy s20 ultra"], "instruction_attributes": ["easy install"], "instruction_options": ["silver"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJYGYGRK", "worker_id": "A2HMEGTAFO0CS8"}], "B07QL5DZ3W": [{"asin": "B07QL5DZ3W", "instruction": "i am looking for a high quality healifty dental floss oral tooth brush kit which is easy to carry.", "attributes": ["easy carry", "high quality"], "options": [""], "instruction_attributes": ["easy carry", "high quality"], "instruction_options": [], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2JA5MQ", "worker_id": "A1V2JTEEBCXR20"}], "B01N8WV4EQ": [{"asin": "B01N8WV4EQ", "instruction": "i'm looking for an easy to use roofull external cd dvd +/-rw drive usb 3.0 protable usb dvd/cd rom burner optical drive player reader writer for windows carrying case in silver.", "attributes": ["easy use", "carrying case", "usb port"], "options": ["color: silver"], "instruction_attributes": ["easy use", "carrying case"], "instruction_options": ["silver"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI70LGZN", "worker_id": "AOMFEAWQHU3D8"}], "B08ZHGYXZ2": [{"asin": "B08ZHGYXZ2", "instruction": "i'm looking for a shampoo paraben free and a conditioner same as shampoo", "attributes": ["plant based", "paraben free", "cruelty free", "tea tree"], "options": ["size: conditioner"], "instruction_attributes": ["paraben free"], "instruction_options": ["conditioner"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R10TYV", "worker_id": "A19Q021KR28CS8"}], "B09R3XL9WW": [{"asin": "B09R3XL9WW", "instruction": "can you find me a hair growth serum that is made from natural ingredients, that will aid in hair growth and also aid in restoring damaged hair to it's healthiest state. i would like one individually-sized package.", "attributes": ["natural ingredients", "hair growth", "damaged hair", "hair loss", "dry hair"], "options": [""], "instruction_attributes": ["natural ingredients", "hair growth", "damaged hair"], "instruction_options": [], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHQX7BE", "worker_id": "AMI0SOF51O3FW"}], "B09MFR5LBR": [{"asin": "B09MFR5LBR", "instruction": "i need a long lasting eyebrow shaping kit for brown eyebrows.", "attributes": ["long lasting", "easy use", "eye shadow"], "options": ["color: light brown"], "instruction_attributes": ["long lasting"], "instruction_options": ["light brown"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQ8FJCQ", "worker_id": "A3AK3UL0UCNVKE"}], "B09Q963B2M": [{"asin": "B09Q963B2M", "instruction": "i'm looking for medium sized workout and yoga leggings or tights in green, with butt lifting and high waist.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: green", "size: medium"], "instruction_attributes": ["butt lifting", "high waist"], "instruction_options": ["green", "medium"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNYYYU0K", "worker_id": "A19KWRLD7P57VJ"}], "B06XQXG52M": [{"asin": "B06XQXG52M", "instruction": "i am looking for 8 fluid oz. of a women's body mist by vera wang called embrace that's a green tea & pear blossom.", "attributes": ["green tea", "fine mist"], "options": ["color: marigold & gardenia", "size: 8 fl oz green tea & pear + 8 fl oz periw...", "style: body spray"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YQ3HEN", "worker_id": "ABYRAWL4BGD3C"}, {"asin": "B06XQXG52M", "instruction": "i'm looking for fine mist body spray the bottle continues the warm of water.", "attributes": ["green tea", "fine mist"], "options": ["color: marigold & gardenia", "size: 8.12 fl oz (pack of 1)", "style: body spray"], "instruction_attributes": ["fine mist"], "instruction_options": ["body spray"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I8FFD2", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B06XQXG52M", "instruction": "i'm looking for fine mist body spray fragrance it produces continues stream of water.", "attributes": ["green tea", "fine mist"], "options": ["color: green tea & pear blossom", "size: 8 fl oz green tea & pear + 8 fl oz periw...", "style: body spray"], "instruction_attributes": ["fine mist"], "instruction_options": ["8 fl oz green tea & pear + 8 fl oz periw...", "body spray"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPHNQV1", "worker_id": "A16IQOX0DK14OJ"}], "B09Q15T1R5": [{"asin": "B09Q15T1R5", "instruction": "can you help me find a st. patrick's day themed cupcake topper? i need a shamrock design, and 24-60 of them.", "attributes": ["cupcake picks", "party supplies"], "options": ["color: 24pcs"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["24pcs"], "assignment_id": "3P4MQ7TPP8M09ONPVWROKZ1I0GJBBZ", "worker_id": "A2QX3YJXAAHHVV"}], "B097CBRG67": [{"asin": "B097CBRG67", "instruction": "i want to purchase dental tools and equipment's such as oral care dental tools, tarter scraper , professional dental picks, plaque remover, dentist pick stainless steel design as tarter scraper", "attributes": ["stainless steel", "oral hygiene"], "options": ["design: tarter scraper"], "instruction_attributes": ["stainless steel"], "instruction_options": ["tarter scraper"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLMSFTU", "worker_id": "A3RBCGB309WPOC"}], "B07TMFCFF5": [{"asin": "B07TMFCFF5", "instruction": "i have choose size 38 to high heel for the summer", "attributes": ["open toe", "ankle strap", "memory foam", "high heel"], "options": ["color: z4-grey", "size: 38"], "instruction_attributes": ["high heel"], "instruction_options": ["38"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGC5O0W", "worker_id": "A1SJ6E71TEWQEQ"}], "B093KY48TK": [{"asin": "B093KY48TK", "instruction": "i need a wood sculpture or a statue of a casual woman for home, living room, or wine cabinet.", "attributes": ["hand painted", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2SN534", "worker_id": "A39VVWV1GHLMFD"}], "B00E4MJ0A6": [{"asin": "B00E4MJ0A6", "instruction": "i am looking to buy a fragrance free deodrant. it would be great if it comes in a pack of 12.", "attributes": ["anti perspirant", "fragrance free"], "options": ["size: 2.25 ounce (pack of 12)"], "instruction_attributes": ["fragrance free"], "instruction_options": ["2.25 ounce (pack of 12)"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILV85ZSA", "worker_id": "AHXHM1PQTRWIQ"}], "B077ZKVC9C": [{"asin": "B077ZKVC9C", "instruction": "i am looking for white color reebok men's sneaker with rubber sole.", "attributes": ["daily casual", "rubber outsole", "rubber sole"], "options": ["color: white | light solid grey", "size: 10"], "instruction_attributes": ["rubber sole"], "instruction_options": ["white | light solid grey"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EB1J6UW", "worker_id": "A3FG5PQHG5AH3Y"}], "B09P59GGXN": [{"asin": "B09P59GGXN", "instruction": "i'm looking for a pair of women's high heel with closed toe. i want pink and in size 9.", "attributes": ["closed toe", "high heel"], "options": ["color: pink", "size: 9"], "instruction_attributes": ["closed toe", "high heel"], "instruction_options": ["pink", "9"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWPZC1V", "worker_id": "A3MNXK3VDK37SN"}], "B09RKHSBSC": [{"asin": "B09RKHSBSC", "instruction": "i am searching for some men's briefs but something fun. maybe you could find some with some elephants on them. i want them to be red and a large in size. also, it is important for convenience that they be machine washable as well.", "attributes": ["quick drying", "machine washable"], "options": ["color: red", "size: large"], "instruction_attributes": ["machine washable"], "instruction_options": ["red", "large"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HQXD1K", "worker_id": "A3GMRPF5MCQVGV"}], "B08149X85L": [{"asin": "B08149X85L", "instruction": "i am looking for a nacho flavored tortilla chip dip, preferably in a grain free version.", "attributes": ["grain free", "high fructose"], "options": ["flavor name: nacho", "size: 5 ounce (pack of 12)"], "instruction_attributes": ["grain free"], "instruction_options": ["nacho"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6T7NMNG", "worker_id": "A2NSS746CFCT4M"}, {"asin": "B08149X85L", "instruction": "i'm looking for a siete chip tortilla", "attributes": ["grain free", "high fructose"], "options": ["flavor name: no salt", "size: 5 ounce (pack of 6)"], "instruction_attributes": ["grain free"], "instruction_options": ["no salt", "5 ounce (pack of 6)"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDO2HRR", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09C6NCGWZ": [{"asin": "B09C6NCGWZ", "instruction": "i'm looking for a desktop computer with intel core i5 processor which includes of 8gb ram, 512gb nvme ssd + 500gb hdd", "attributes": ["core i5", "intel core"], "options": ["size: 8gb ram | 512gb nvme ssd + 500gb hdd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["8gb ram | 512gb nvme ssd + 500gb hdd"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733G4BED", "worker_id": "A21IUUHBSEVB56"}], "B00CWTT73I": [{"asin": "B00CWTT73I", "instruction": "i want a french vanilla flavor lactose free coffee creamer ,16 fl oz", "attributes": ["lactose free", "gluten free"], "options": ["flavor name: french vanilla", "size: 16 fl oz (pack of 1)"], "instruction_attributes": ["lactose free"], "instruction_options": ["french vanilla", "16 fl oz (pack of 1)"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYJUM66", "worker_id": "A3N9ZYQAESNFQH"}], "B08W2JDWQZ": [{"asin": "B08W2JDWQZ", "instruction": "i want you to buy me a vanity light which should have 4 led lights, i prefer it to be black and it should be dimmable.", "attributes": ["easy install", "vanity light", "living room"], "options": ["color: dimmable-black", "size: 4-light"], "instruction_attributes": ["vanity light"], "instruction_options": ["dimmable-black", "4-light"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAU3A8Y", "worker_id": "A1OPJ5I9BF44QH"}], "B09MTCCBLK": [{"asin": "B09MTCCBLK", "instruction": "i want a large tracksuit with long sleeves for my gym workout. get it in gray.", "attributes": ["long sleeve", "gym workout"], "options": ["color: 06 gray", "size: large"], "instruction_attributes": ["long sleeve", "gym workout"], "instruction_options": ["06 gray", "large"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMS9162D", "worker_id": "A2IMAGGCST8170"}], "B09C5XB6NL": [{"asin": "B09C5XB6NL", "instruction": "i am looking lightweight non slip breathable runner shoe for woman size-37 i", "attributes": ["non slip", "quality materials"], "options": ["color: i", "size: 37 i"], "instruction_attributes": ["non slip"], "instruction_options": ["37 i"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1A5RX6", "worker_id": "A3N9ZYQAESNFQH"}], "B09GBKX685": [{"asin": "B09GBKX685", "instruction": "i'm looking for a 4g-lte blue 16gb unlocked alcatel 1 5in quad core", "attributes": ["quad core", "4g lte"], "options": ["color: blue", "size: 16gb"], "instruction_attributes": ["4g lte"], "instruction_options": ["blue", "16gb"], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWJM522", "worker_id": "A26GGA2GMB4Z3A"}], "B095HHW5BM": [{"asin": "B095HHW5BM", "instruction": "i am looking for a pendant light with a merlin's beard color that is easy to install.", "attributes": ["easy install", "pendant light", "dining room"], "options": ["color: merlin's beard"], "instruction_attributes": ["easy install", "pendant light"], "instruction_options": ["merlin's beard"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCGM9BT", "worker_id": "A1HMZJ59OPLD1P"}], "B082DKQGRR": [{"asin": "B082DKQGRR", "instruction": "i am looking for a de-stressing/calming tea that is sugar free, decaf, gluten free, non-gmo, and includes 20 bags.", "attributes": ["sugar free", "non gmo", "caffeine free", "gluten free"], "options": ["flavor name: calming"], "instruction_attributes": ["sugar free", "non gmo", "caffeine free", "gluten free"], "instruction_options": ["calming"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72ACHEO8", "worker_id": "A2X135IX70LYH5"}], "B003I567W4": [{"asin": "B003I567W4", "instruction": "place order for a pack of 12 blue diamond almonds that is gluten free and has the pecan flavor", "attributes": ["gluten free", "protein serving"], "options": ["flavor name: pecan", "size: 4.25 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["pecan"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUT561FG", "worker_id": "A1EPULU6LCCBMV"}], "B08R9Y462N": [{"asin": "B08R9Y462N", "instruction": "i am looking for a powerful, double sided, silicone back scrubber in the color orange.", "attributes": ["double sided", "dead skin", "sensitive skin"], "options": ["color: orange", "size: 30''x4.7''"], "instruction_attributes": ["double sided"], "instruction_options": ["orange"], "assignment_id": "33F859I56HNA01QBVO1K6A4GVYWHB3", "worker_id": "AK3JMCIGU8MLU"}], "B01MT5PQ9L": [{"asin": "B01MT5PQ9L", "instruction": "i'm looking for a car amp/speaker combo with 8 gauge amp wiring kit with four 450 watt kickers cs series with 2 way car coaxials and a 4 channel bluetooth amp included.", "attributes": ["high power", "heavy duty"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9AG6KU", "worker_id": "A7G6TFAYTV2FC"}], "B07B2W2Z5Z": [{"asin": "B07B2W2Z5Z", "instruction": "i am looking for a cotton sheet set for a light blue king size bed", "attributes": ["long lasting", "king size"], "options": ["color: b. light blue", "size: full"], "instruction_attributes": ["king size"], "instruction_options": ["b. light blue"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3S4W3GL", "worker_id": "A13PVNQT2WWWVL"}, {"asin": "B07B2W2Z5Z", "instruction": "i would like a moon rock gray standard sized pillow case that long lasting.", "attributes": ["long lasting", "king size"], "options": ["color: i. moon rock grey", "size: standard pillowcases"], "instruction_attributes": ["long lasting"], "instruction_options": ["i. moon rock grey", "standard pillowcases"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLE92FT", "worker_id": "A1WS884SI0SLO4"}], "B083GRHCNT": [{"asin": "B083GRHCNT", "instruction": "i'd like to some lands' end men's 11 inches chino shorts that i can machine wash. the size i'm looking for is a 38 regular.", "attributes": ["machine wash", "cotton spandex", "button closure"], "options": ["color: surfside blue", "size: 38 regular"], "instruction_attributes": ["machine wash"], "instruction_options": ["38 regular"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JQOEGJ", "worker_id": "A3O0NNIW4KA2PV"}], "B00VB1WWB2": [{"asin": "B00VB1WWB2", "instruction": "i am looking for some fat free snacks size of 2.85", "attributes": ["fat free", "0g trans"], "options": ["size: 2.85 ounce (pack of 4)"], "instruction_attributes": ["fat free"], "instruction_options": ["2.85 ounce (pack of 4)"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADEZWVY", "worker_id": "A2MSIFDLOHI1UT"}], "B07Z84DVDG": [{"asin": "B07Z84DVDG", "instruction": "i am looking for a teal scented jar candle, it should be white in color and at least 10inch long.", "attributes": ["white item", "soy wax"], "options": ["scent: teal", "size: 10 in"], "instruction_attributes": ["white item"], "instruction_options": ["teal", "10 in"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB1WFLUQ", "worker_id": "A14BSOU2Y5JNT0"}, {"asin": "B07Z84DVDG", "instruction": "i am searching for orange scented soy wax jar candle, 15 oz", "attributes": ["white item", "soy wax"], "options": ["scent: orange", "size: 15 oz"], "instruction_attributes": [], "instruction_options": ["orange", "15 oz"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP9ED6Z", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B07Z84DVDG", "instruction": "i am looking for a 15oz white jar candles", "attributes": ["white item", "soy wax"], "options": ["scent: bamboo waters", "size: 15 oz"], "instruction_attributes": ["white item"], "instruction_options": ["15 oz"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBBJ6UG", "worker_id": "A9QRQL9CFJBI7"}], "B09BKKFY87": [{"asin": "B09BKKFY87", "instruction": "i'm looking for mens sport casual thong sandals, open toe, and better color black .", "attributes": ["open toe", "leather sole", "arch support"], "options": ["color: 3#black", "size: 10.5"], "instruction_attributes": ["open toe"], "instruction_options": ["3#black"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZR4NA5", "worker_id": "ADJ2R4LULHDXB"}], "B07V3GG42F": [{"asin": "B07V3GG42F", "instruction": "get me a low fat bacon jerky. make sure it is of maple flavour.", "attributes": ["old fashioned", "low fat"], "options": ["flavor name: maple"], "instruction_attributes": ["low fat"], "instruction_options": ["maple"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK82QA5G", "worker_id": "A1NF6PELRKACS9"}], "B016QAYRJW": [{"asin": "B016QAYRJW", "instruction": "i want to find some white, size 9, elan - leather sandals for men.", "attributes": ["leather sole", "synthetic sole"], "options": ["color: white", "size: 9"], "instruction_attributes": [], "instruction_options": ["white", "9"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNOJH84", "worker_id": "AE861G0AY5RGT"}], "B000T5QN5M": [{"asin": "B000T5QN5M", "instruction": "i'm looking for a 1 fl oz package high quality, long-lasting liquid foundation with spf that is oil-free. also, choose shade 460 - macadamia", "attributes": ["oil free", "long lasting", "high quality", "dry skin"], "options": ["color: 460 macadamia", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["oil free", "long lasting", "high quality"], "instruction_options": ["460 macadamia", "1 fl oz (pack of 1)"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO1CJG7", "worker_id": "AENE0ASEDKQB3"}, {"asin": "B000T5QN5M", "instruction": "colorstay makeup for normal/dry skin which is oil free and in 1.0 fluid ounce", "attributes": ["oil free", "long lasting", "high quality", "dry skin"], "options": ["color: beige", "size: 1.0 fluid ounce"], "instruction_attributes": ["oil free", "high quality", "dry skin"], "instruction_options": ["1.0 fluid ounce"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4NHPKA", "worker_id": "A10OGH5CQBXL5N"}], "B07F282LLM": [{"asin": "B07F282LLM", "instruction": "i want to find a pair of green camo size 40w x 34l slim-fit men\u2019s cargo pants", "attributes": ["slim fit", "machine wash", "cotton spandex", "button closure"], "options": ["color: green, camo", "size: 40w x 34l"], "instruction_attributes": ["slim fit"], "instruction_options": ["green, camo", "40w x 34l"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJKYXVN0", "worker_id": "AJKA9BKC011F2"}, {"asin": "B07F282LLM", "instruction": "men's slim-fit stretch cargo pant in dark khaki brown color with size 32wx34i and button closure suitable for machine wash", "attributes": ["slim fit", "machine wash", "cotton spandex", "button closure"], "options": ["color: dark khaki brown", "size: 32w x 34l"], "instruction_attributes": ["machine wash", "button closure"], "instruction_options": ["dark khaki brown", "32w x 34l"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRRABZQ", "worker_id": "AX2EWYWZM19AZ"}], "B09N9HR1RF": [{"asin": "B09N9HR1RF", "instruction": "buy rockville marine gauge bluetooth receiver with 2 way coaxial black speakers", "attributes": ["power amplifier", "water resistant", "easy use", "stainless steel"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3X65QVEQIBXVW21709CD9M35U01LCH", "worker_id": "ADOV0TU2G016A"}], "B00ZEBG8CY": [{"asin": "B00ZEBG8CY", "instruction": "low sodium pink salt", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 20 ounce (pack of 1)", "style: everyday seasonings"], "instruction_attributes": ["low sodium"], "instruction_options": [], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRSYFEUV", "worker_id": "A3TTGSUBIK1YCL"}, {"asin": "B00ZEBG8CY", "instruction": "i need some gluten free special diet seasonings.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: special diet seasonings", "size: 3 piece assortment", "style: lifestyle pack - standard size"], "instruction_attributes": ["gluten free"], "instruction_options": ["special diet seasonings"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UH0XQIG", "worker_id": "A19317A3X87NVM"}, {"asin": "B00ZEBG8CY", "instruction": "buy me a twenty ounce pack of low-sodium everyday seasonings.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 6 ounce (pack of 1)", "style: 20 ounce (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["everyday seasonings", "20 ounce (pack of 1)"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9IYJS1F", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B00ZEBG8CY", "instruction": "i'm looking for a gluten free all purpose seasoning with himalayan pink salt that is mow in sodium and has no artificial colors. also, choose a pack of 1 weighing 4 ounce in standard size lifestyle pack for everyday seasoning one.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 4 ounce (pack of 1)", "style: lifestyle pack - standard size"], "instruction_attributes": ["gluten free", "low sodium", "artificial colors"], "instruction_options": ["everyday seasonings", "4 ounce (pack of 1)", "lifestyle pack - standard size"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQFGJC5", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B00ZEBG8CY", "instruction": "i'm looking for gluten free high protein organic products to buy a groceries shop.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: organic seasonings", "size: 2 ounce (pack of 1)", "style: small - herbed salt free flavor"], "instruction_attributes": ["gluten free"], "instruction_options": ["organic seasonings", "2 ounce (pack of 1)"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FN0FBS", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B00ZEBG8CY", "instruction": "i am looking for a gluten free paleo seasoning salt set. i need a pack of 1 containing 20 ounce.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: paleo seasoning set", "size: 20 ounce (pack of 1)", "style: 20 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["paleo seasoning set", "20 ounce (pack of 1)"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRSALEUP", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B00ZEBG8CY", "instruction": "i would like a standard size three ounce spice gift set that is gluten free.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: spice gift sets", "size: 3 ounce (pack of 1)", "style: lifestyle pack - standard size"], "instruction_attributes": ["gluten free"], "instruction_options": ["spice gift sets", "3 ounce (pack of 1)", "lifestyle pack - standard size"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGFDMSS", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00ZEBG8CY", "instruction": "i would like a pound of 2.01 ounce everyday seasoning bottles that are gluten free.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 1 pound (pack of 1)", "style: 2.01 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["everyday seasonings", "1 pound (pack of 1)", "2.01 ounce (pack of 1)"], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUL0S5N", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00ZEBG8CY", "instruction": "i am looking for a everyday seasonings flavor of gluten free food & beverage gifts", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 6 ounce (pack of 1)", "style: 2 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["everyday seasonings"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINXX27A", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B00ZEBG8CY", "instruction": "i am interested in some low sodium organic seasonings", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: organic seasonings", "size: 20 ounce (pack of 1)", "style: lifestyle pack - standard size"], "instruction_attributes": ["low sodium"], "instruction_options": ["organic seasonings"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFJ8VM7", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00ZEBG8CY", "instruction": "i want low sodium paleo powder spice gift sets.", "attributes": ["gluten free", "low sodium", "artificial colors"], "options": ["flavor name: spice gift sets", "size: 4.02 ounce (pack of 1)", "style: everyday seasonings"], "instruction_attributes": ["low sodium"], "instruction_options": ["spice gift sets"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1AOGYB", "worker_id": "A2RBF3IIJP15IH"}], "B093BD5L3T": [{"asin": "B093BD5L3T", "instruction": "hello, i'm looking for a decently sized (preferably 80-83cm) bookshelf for my living room and is eco-friendly? thanks", "attributes": ["eco friendly", "storage unit", "living room"], "options": ["size: 80*83cm"], "instruction_attributes": ["eco friendly", "storage unit", "living room"], "instruction_options": ["80*83cm"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9P1TEM", "worker_id": "A2TRV8SEM003GG"}], "B09KNNNSB8": [{"asin": "B09KNNNSB8", "instruction": "i would like to check out size 6 pink open toe fashionable high heeled shoes. would like them also to have a non-slip rubber sole for comfort.", "attributes": ["open toe", "non slip", "fashion design", "high heel", "rubber outsole", "rubber sole"], "options": ["color: pink", "size: 6"], "instruction_attributes": ["open toe", "non slip", "fashion design", "high heel", "rubber sole"], "instruction_options": ["pink", "6"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6Y65GS", "worker_id": "A1WS884SI0SLO4"}], "B09P175BGR": [{"asin": "B09P175BGR", "instruction": "photography studio vintage house corridor a 16 10x10ft/3x3m features: high resolution size 7x5ft l 2.1x1.5m", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a38", "size: 7x5ft | 2.1x1.5m"], "instruction_attributes": ["high resolution"], "instruction_options": ["a38"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GC1S3Z", "worker_id": "A3LUETNYKSGBFY"}], "B09PDVSSV2": [{"asin": "B09PDVSSV2", "instruction": "blue color simayixx baby toothbrush made of silicone.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: blue1"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["blue1"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4MOK7X", "worker_id": "A2FQYXUQ7F8IKK"}], "B09NMXFPQV": [{"asin": "B09NMXFPQV", "instruction": "i need an extra-large multi-colored set of machine-washable men's pajamas with an elastic waistband.", "attributes": ["wash cold", "hand wash", "machine wash", "elastic waistband", "dry clean"], "options": ["color: multi 3", "size: x-large"], "instruction_attributes": ["machine wash", "elastic waistband"], "instruction_options": ["multi 3", "x-large"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMGUEXL", "worker_id": "A2VUF0V7HT51Q3"}], "B09MCFKM8J": [{"asin": "B09MCFKM8J", "instruction": "i'm looking for a easy to clean table linens for the dining room in a valentine's day", "attributes": ["non slip", "eco friendly", "easy clean", "dining room"], "options": ["color: valentine's dayidt8658", "size: 13\"x90\" runner+4 pcs placemats"], "instruction_attributes": ["easy clean", "dining room"], "instruction_options": ["valentine's dayidt8658"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEIAZKJ", "worker_id": "A19Q021KR28CS8"}], "B07CSRYF9K": [{"asin": "B07CSRYF9K", "instruction": "500pcs by a box portable makeup facial soft cotton pads soft hypoallergenic and lint free cotton wipes for applying lotion removing face makeup eye makeup and nail polish", "attributes": ["eco friendly", "nail polish"], "options": [""], "instruction_attributes": ["nail polish"], "instruction_options": [], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL8411XXAA", "worker_id": "AMP43R3RISC1J"}], "B07QNS56JS": [{"asin": "B07QNS56JS", "instruction": "i am looking for natural magnesium gel deodorant for muscles aches and pains", "attributes": ["cruelty free", "fresh breath"], "options": ["scent: coconut"], "instruction_attributes": ["cruelty free"], "instruction_options": ["coconut"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXKH5OZ", "worker_id": "A10OGH5CQBXL5N"}], "B07Z5XL9G2": [{"asin": "B07Z5XL9G2", "instruction": "search for a 10 foot, apple mfi certified, usb c fast charging lightning cable that is grey.", "attributes": ["fast charging", "usb port"], "options": ["color: grey", "size: 10ft"], "instruction_attributes": ["fast charging"], "instruction_options": ["grey", "10ft"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83BEJI3", "worker_id": "A334XVDF4AIYQS"}, {"asin": "B07Z5XL9G2", "instruction": "i want a grey fast charging usb c to lightning cable.", "attributes": ["fast charging", "usb port"], "options": ["color: grey", "size: 4ft"], "instruction_attributes": ["fast charging"], "instruction_options": ["grey"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N827TV", "worker_id": "A2RBF3IIJP15IH"}], "B08Z89WJL1": [{"asin": "B08Z89WJL1", "instruction": "i want a silver color pillow shams set for king and queen size 20 by 30 inches.", "attributes": ["machine washable", "king size"], "options": ["color: silver", "size: queen 20\" x 30\""], "instruction_attributes": ["king size"], "instruction_options": ["silver", "queen 20\" x 30\""], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIOI9TH", "worker_id": "A1XARUPXWKL2KY"}], "B086YLCFHH": [{"asin": "B086YLCFHH", "instruction": "i'm looking for some hair extensions. i want ones that are a medium brown shade.", "attributes": ["hair extensions", "dry hair"], "options": ["color: medium brown", "size: 23 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["medium brown"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH001VC", "worker_id": "AGZ4MDF3G7BL7"}], "B08LL72999": [{"asin": "B08LL72999", "instruction": "i am looking for an ottoman that gives me storage space, and would look nice in my living room. prefer black in color.", "attributes": ["button tufted", "easy clean", "storage space", "living room"], "options": ["color: black"], "instruction_attributes": ["storage space", "living room"], "instruction_options": ["black"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LAV5IF", "worker_id": "A2KW17G25L25R8"}], "B08N7WFY1K": [{"asin": "B08N7WFY1K", "instruction": "i would like to buy a 5.3fl oz bottle of shampoo that is certified cruelty free, please.", "attributes": ["sulfate free", "cruelty free"], "options": ["size: 5.3 fl oz (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["5.3 fl oz (pack of 1)"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH371LSEK", "worker_id": "A1WAWEY2810TFN"}], "B092VKXNZV": [{"asin": "B092VKXNZV", "instruction": "i would like a purple phone case that's compatible with an iphone 13 pro that has tempered glass and wireless charging.", "attributes": ["tempered glass", "wireless charging"], "options": ["color: purple", "size: for iphone 13 pro"], "instruction_attributes": ["tempered glass", "wireless charging"], "instruction_options": ["purple", "for iphone 13 pro"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7PF5PI", "worker_id": "A3LA5P3N3KI8U7"}], "B08HJ1YQP5": [{"asin": "B08HJ1YQP5", "instruction": "i am looking for high quality hair tie and ponytail holder which is used for hair styling for women and girls.", "attributes": ["high quality", "hair styling"], "options": ["color: white"], "instruction_attributes": ["high quality", "hair styling"], "instruction_options": [], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCPMQ45", "worker_id": "A1V2JTEEBCXR20"}], "B083TV2LD4": [{"asin": "B083TV2LD4", "instruction": "i want a decorative wine rack ornament for living room wine cabinate", "attributes": ["exquisite workmanship", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YT13QG", "worker_id": "A3N9ZYQAESNFQH"}], "B09BN9QC14": [{"asin": "B09BN9QC14", "instruction": "i am looking for a nice faux leather couch sofa bed with metal legs for my living room. i want the black one.", "attributes": ["white item", "faux leather", "metal legs", "living room"], "options": ["color: black"], "instruction_attributes": ["faux leather", "metal legs", "living room"], "instruction_options": ["black"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPE9P68C", "worker_id": "A3UUH3632AI3ZX"}], "B00NC2HKQK": [{"asin": "B00NC2HKQK", "instruction": "i am looking for a 2 ft 3 in (10 ft) rugs and pads for my living room that is more beautiful for my dining room also. and i choose dark grey color.", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: dark grey", "item shape: round", "size: 2 ft 3 in x 10 ft"], "instruction_attributes": ["dining room", "living room"], "instruction_options": ["dark grey"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2C6FKZ", "worker_id": "A9UBPUEWAMA06"}], "B08H58MZNQ": [{"asin": "B08H58MZNQ", "instruction": "i am looking for an inexpensive tv stand for our 60 inch tv with huge storage space and that should be in ashland pine color", "attributes": ["tempered glass", "storage space"], "options": ["color: ashland pine", "style name: 50\" kenton w | fireplace"], "instruction_attributes": ["storage space"], "instruction_options": ["ashland pine"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJHTOMY", "worker_id": "A2DQZHJHF45NDT"}], "B087R97MM2": [{"asin": "B087R97MM2", "instruction": "i am looking for a convertible noisecancelling wireless headset", "attributes": ["noise cancelling", "hands free"], "options": ["pattern name: headset", "size: convertible", "style: b450-xt"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["headset", "convertible"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTARN9X", "worker_id": "A3N9ZYQAESNFQH"}], "B004PFUQR8": [{"asin": "B004PFUQR8", "instruction": "i'm looking for a certified organic lip balm that is plant based. please find a green tea flavor.", "attributes": ["long lasting", "certified organic", "plant based", "green tea", "natural ingredients"], "options": ["flavor: green tea"], "instruction_attributes": ["certified organic", "plant based"], "instruction_options": ["green tea"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9CPB0G", "worker_id": "A394JO4NEPCY3M"}], "B003S2QVQY": [{"asin": "B003S2QVQY", "instruction": "i am looking for gluten free in a jamaican style", "attributes": ["sugar free", "non gmo", "gluten free", "natural ingredients", "great gift"], "options": ["flavor name: jamaican style", "size: 7 ounce (pack of 1)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYJIN7Y", "worker_id": "A16M39T60N60NO"}], "B08WTTMFBY": [{"asin": "B08WTTMFBY", "instruction": "i am looking for a caffeine free fruit tea with natural flavours of mango and passion fruit with pack size of 8 ounce.", "attributes": ["caffeine free", "natural flavors", "quality ingredients", "artificial flavors"], "options": ["flavor name: mango-passion fruit", "size: 8 ounce"], "instruction_attributes": ["caffeine free", "natural flavors"], "instruction_options": ["mango-passion fruit", "8 ounce"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8OSU2A2", "worker_id": "A1V2JTEEBCXR20"}, {"asin": "B08WTTMFBY", "instruction": "i am looking for a 1 pound quality ingredients of herbal tea", "attributes": ["caffeine free", "natural flavors", "quality ingredients", "artificial flavors"], "options": ["flavor name: apple pancake", "size: 1 pound"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["1 pound"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKTC7V5", "worker_id": "A9QRQL9CFJBI7"}], "B078N5GNJ3": [{"asin": "B078N5GNJ3", "instruction": "i am looking for long sleeve shirt with 100 percent cotton, it should be washable in machine and particularly solid paper white color.", "attributes": ["easy care", "machine wash", "button closure", "long sleeve"], "options": ["color: paper white - solid", "fit type: big & tall", "size: 4x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["paper white - solid"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMJ3MWJ", "worker_id": "A2DQZHJHF45NDT"}], "B09FVY55TZ": [{"asin": "B09FVY55TZ", "instruction": "i'm looking for a non-toxic concealer than contains argan oil, with rich color.", "attributes": ["non toxic", "cruelty free", "argan oil"], "options": ["color: rich"], "instruction_attributes": ["non toxic", "argan oil"], "instruction_options": ["rich"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CH55BNW", "worker_id": "A320QA9HJFUOZO"}], "B08VHJ7QQJ": [{"asin": "B08VHJ7QQJ", "instruction": "i am looking for a valentine day gift basket for women from assortments & variety gifts category.", "attributes": ["valentine day", "gift basket"], "options": [""], "instruction_attributes": ["valentine day", "gift basket"], "instruction_options": [], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTLGE4X", "worker_id": "A7R4F8BRS8ET0"}], "B08KWLZ3FJ": [{"asin": "B08KWLZ3FJ", "instruction": "i want to buy 1 dagostino handmade pasta pack of 3 12oz old fashioned rotini from the pasta and noodles for dinner tonight.", "attributes": ["old fashioned", "natural ingredients"], "options": ["flavor name: rotini", "size: 12 ounce (pack of 3)"], "instruction_attributes": ["old fashioned"], "instruction_options": ["rotini", "12 ounce (pack of 3)"], "assignment_id": "3R2PKQ87N7I6FN5SSV9EK2GP79ZIM4", "worker_id": "A118RTS8BOFIH7"}, {"asin": "B08KWLZ3FJ", "instruction": "na", "attributes": ["old fashioned", "natural ingredients"], "options": ["flavor name: rotini", "size: 8 ounce (pack of 3)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4XRKGPO", "worker_id": "A1EI8Z972FIFJ3"}], "B0767DXJST": [{"asin": "B0767DXJST", "instruction": "toroton dummy security camera in red colour.", "attributes": ["batteries included", "easy install"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQT7XD5Z", "worker_id": "A2FQYXUQ7F8IKK"}], "B08WY87NG5": [{"asin": "B08WY87NG5", "instruction": "i want long curly synthetic hair wig 26\" colour darkest brown", "attributes": ["synthetic hair", "natural hair", "hair growth"], "options": ["color: 2 darkest brown"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["2 darkest brown"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UL1ZEM", "worker_id": "A3N9ZYQAESNFQH"}], "B07WWHQ5TV": [{"asin": "B07WWHQ5TV", "instruction": "i need white cheddar corn puffs from trader joe's,", "attributes": ["trader joe", "gluten free"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNN78HH", "worker_id": "A2RBF3IIJP15IH"}], "B002NEPRJA": [{"asin": "B002NEPRJA", "instruction": "i looking a hair growth treatment based on tea tree suitable with coconut oil", "attributes": ["tea tree", "coconut oil"], "options": [""], "instruction_attributes": ["tea tree", "coconut oil"], "instruction_options": [], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVKIJK3", "worker_id": "A3N9ZYQAESNFQH"}], "B08DHXZF2P": [{"asin": "B08DHXZF2P", "instruction": "im looking for a travel sized long lasting scent from tom ford. preferably from the jasmine musk impression line.", "attributes": ["travel size", "long lasting"], "options": ["scent: tom ford jasmine musk impression"], "instruction_attributes": ["travel size", "long lasting"], "instruction_options": ["tom ford jasmine musk impression"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VR3GF3", "worker_id": "A39PLWU3RFII1S"}], "B08DY392W9": [{"asin": "B08DY392W9", "instruction": "i'm looking for a t-rex birthday cake for a birthday party.", "attributes": ["birthday cake", "baby shower", "birthday party", "cupcake picks"], "options": [""], "instruction_attributes": ["birthday cake", "birthday party"], "instruction_options": [], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVF4KJG", "worker_id": "A2NAKIXS3DVGAA"}], "B07YN7MB5X": [{"asin": "B07YN7MB5X", "instruction": "open amazon and get labena eye patches to moisturize the dark circules in large size and blue color", "attributes": ["great gift", "gift basket"], "options": ["style: square"], "instruction_attributes": ["great gift"], "instruction_options": [], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8NX5T7Y", "worker_id": "A2G9X9TG2XIUDO"}], "B09G1CYSWP": [{"asin": "B09G1CYSWP", "instruction": "i am looking for the king size laojee chunky knit throw blanket in red.", "attributes": ["queen size", "king size", "living room"], "options": ["color: black", "size: 40\"x60\" (100x150cm)"], "instruction_attributes": ["king size"], "instruction_options": ["black"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH1B1VP", "worker_id": "A26GGA2GMB4Z3A"}], "B09MJ7XSNB": [{"asin": "B09MJ7XSNB", "instruction": "i am looking island lights pendant light fixture colour black", "attributes": ["light fixture", "pendant light"], "options": ["color: black", "size: 3-light vanity light"], "instruction_attributes": ["light fixture", "pendant light"], "instruction_options": ["black"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQBLCJV", "worker_id": "A3N9ZYQAESNFQH"}], "B09Q8WCN78": [{"asin": "B09Q8WCN78", "instruction": "i'm looking for a soft and luxury cot", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: blue", "size: large"], "instruction_attributes": ["tummy control"], "instruction_options": ["blue"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFIN9ER", "worker_id": "A19Q021KR28CS8"}], "B01N52Z39P": [{"asin": "B01N52Z39P", "instruction": "i'm looking for a high speed and high definition laptop", "attributes": ["1080p hd", "high speed", "high definition"], "options": [""], "instruction_attributes": ["high speed", "high definition"], "instruction_options": [], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTM55EX", "worker_id": "A19Q021KR28CS8"}], "B07K75LPVL": [{"asin": "B07K75LPVL", "instruction": "i am looking for long-sleeved, polyester cotton, matching christmas dresses for my size 11-12 years daughter and i.", "attributes": ["long sleeve", "polyester cotton", "daily wear"], "options": ["color: black&gray", "size: 11-12 years"], "instruction_attributes": ["long sleeve", "polyester cotton"], "instruction_options": ["11-12 years"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VREYWE", "worker_id": "AKZ1KRMTFUPRB"}], "B01NBF0HI3": [{"asin": "B01NBF0HI3", "instruction": "i'm looking for a 2 pack speex dp to hdmi cable. also, choose the gold plated option.", "attributes": ["gold plated", "plug play", "output protection", "1080p hd", "usb port"], "options": ["size: 10ft\uff082-pack\uff09"], "instruction_attributes": ["gold plated"], "instruction_options": ["10ft\uff082-pack\uff09"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP6XZVDS", "worker_id": "A3HFKFJ5UDWAMC"}, {"asin": "B01NBF0HI3", "instruction": "i need a 10ft 4k hdmi cable that is 1080p hd and is gold plated.", "attributes": ["gold plated", "plug play", "output protection", "1080p hd", "usb port"], "options": ["size: 10ft 4k"], "instruction_attributes": ["gold plated", "1080p hd"], "instruction_options": ["10ft 4k"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3ENNQJ", "worker_id": "A1NF6PELRKACS9"}], "B09MKQM8S7": [{"asin": "B09MKQM8S7", "instruction": "i want to get a desktop tower with tempered glass. it also needs to be 8 gb ddr3 ram and 1 tb hdd.", "attributes": ["core i5", "quad core", "tempered glass"], "options": ["size: 8gb ddr3 ram, 1tb hdd"], "instruction_attributes": ["tempered glass"], "instruction_options": ["8gb ddr3 ram, 1tb hdd"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP1070SILD", "worker_id": "A2YNPKYEFDZ6C9"}], "B004C0I8ZS": [{"asin": "B004C0I8ZS", "instruction": "i am looking for hair dye for permanent hair and choose 4 dark brown color in size 1 count pack of 3", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 4 dark brown", "size: 1 count (pack of 3)"], "instruction_attributes": ["permanent hair", "hair dye"], "instruction_options": ["4 dark brown", "1 count (pack of 3)"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMHJXEV", "worker_id": "A1WZKCP5TXFM9D"}], "B07MGXZRS3": [{"asin": "B07MGXZRS3", "instruction": "i'm looking for a rfiver swivel wood tv stand on wheels with a height adjustable for 32 65 inch flat screen tvs and shoud have a storage space with tempered glass style", "attributes": ["height adjustable", "heavy duty", "storage space"], "options": ["style: tempered glass"], "instruction_attributes": ["height adjustable", "storage space"], "instruction_options": ["tempered glass"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH15Z8HWD", "worker_id": "A19Q021KR28CS8"}], "B091D87QMM": [{"asin": "B091D87QMM", "instruction": "i'm looking for lead free luxury scented candle which last for 25+ hours, it should be in tin voyager.", "attributes": ["lead free", "soy wax"], "options": ["scent: voyager", "size: 25+ hour"], "instruction_attributes": ["lead free"], "instruction_options": ["voyager", "25+ hour"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1DGF6G", "worker_id": "A3AGXTSAHA2AFL"}], "B09S8SV4PM": [{"asin": "B09S8SV4PM", "instruction": "i looking open toe knee high pump colour shoud be black", "attributes": ["knee high", "open toe", "closed toe"], "options": ["color: sandals shoes a02- black", "size: 6.5"], "instruction_attributes": ["knee high", "open toe"], "instruction_options": ["sandals shoes a02- black"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OQUEY5", "worker_id": "A3N9ZYQAESNFQH"}], "B08FY3WDDJ": [{"asin": "B08FY3WDDJ", "instruction": "i want to purchase synthetic hair topper that are 18 inch long and have 4 clips of dark blonde hair with bangs.", "attributes": ["synthetic hair", "hair loss"], "options": ["color: 4 clips-dark blonde w | bangs", "size: 18 inch"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["4 clips-dark blonde w | bangs", "18 inch"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IHYTLV", "worker_id": "A25AYMSZNDW1VJ"}, {"asin": "B08FY3WDDJ", "instruction": "i'm looking for synthetic hair care for hair loss .", "attributes": ["synthetic hair", "hair loss"], "options": ["color: 3 clips-jet black", "size: 6 inch"], "instruction_attributes": ["synthetic hair", "hair loss"], "instruction_options": [], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3I1AYP", "worker_id": "A16IQOX0DK14OJ"}], "B07TYJ6RK6": [{"asin": "B07TYJ6RK6", "instruction": "please, look for a couple table lamps for my living room, elegant and finished in wood. also look if a black hardback shade model is available.", "attributes": ["wood finish", "living room"], "options": ["color: black hardback shade"], "instruction_attributes": ["wood finish", "living room"], "instruction_options": ["black hardback shade"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYTI4JE", "worker_id": "ABVP1XX3ZOMKL"}], "B09NN9FK8H": [{"asin": "B09NN9FK8H", "instruction": "i want a cordless noise-cancelling phone system with volume control and dual keypad. pick the black one.", "attributes": ["noise cancelling", "hands free"], "options": ["color: black", "pattern name: phone system + accessory", "size: 3 handsets", "style: dual keypad"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black", "dual keypad"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWP6C12", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09NN9FK8H", "instruction": "i want to get a computer headset with noise cancelling and hands free accessibility. get the silver one.", "attributes": ["noise cancelling", "hands free"], "options": ["color: silver", "pattern name: phone system + accessory", "size: 3 handsets", "style: dual keypad + link2cell+ hd voice"], "instruction_attributes": ["noise cancelling", "hands free"], "instruction_options": ["silver"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IMQLTP", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B09NN9FK8H", "instruction": "i am looking for a black | silver color noise cancelling audio & video accessories.", "attributes": ["noise cancelling", "hands free"], "options": ["color: black | silver", "pattern name: phone system + phone system", "size: 4 handsets", "style: dual keypad + link2cell"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black | silver"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME94O2DJ", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09NN9FK8H", "instruction": "i would like some black phone system and a size 4 handset with a dual keypad for my computer. it also needs to be noise cancelling.", "attributes": ["noise cancelling", "hands free"], "options": ["color: black | silver", "pattern name: phone system + accessory", "size: 4 handsets", "style: dual keypad + link2cell"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black | silver", "phone system + accessory", "4 handsets", "dual keypad + link2cell"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCD3H7P", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09NN9FK8H", "instruction": "i would like to find noise cancelling headphones, preferably bluetooth. find a silver pair, please.", "attributes": ["noise cancelling", "hands free"], "options": ["color: silver", "pattern name: phone system + accessory", "size: 3 handsets", "style: dual keypad + link2cell+ hd voice"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["silver"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFKE9VZ", "worker_id": "A2TRV8SEM003GG"}], "B096NJBMNT": [{"asin": "B096NJBMNT", "instruction": "for my daily wear .i am looking for a daily casual and long sleeve woman shirt in brown color with small size.", "attributes": ["daily casual", "loose fit", "machine wash", "long sleeve", "stretch fabric", "unique design", "relaxed fit", "polyester spandex", "daily wear", "everyday wear", "tumble dry"], "options": ["color: brown", "size: small"], "instruction_attributes": ["daily casual", "long sleeve", "daily wear"], "instruction_options": ["brown", "small"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVE4Q0P", "worker_id": "A3R8PQCD99H61E"}], "B07424S7NM": [{"asin": "B07424S7NM", "instruction": "i\u2019m looking for a men\u2019s mesh long sleeve shirt in medium. i prefer white as the color and it must be machine washable.", "attributes": ["hand wash", "machine wash", "nylon spandex"], "options": ["color: white", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["white", "medium"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY86YH81O", "worker_id": "A3MV3PT4TOO69P"}], "B00VGE809C": [{"asin": "B00VGE809C", "instruction": "i'm looking for a hair treatment product that will repair my damaged hair.", "attributes": ["hair treatment", "damaged hair"], "options": [""], "instruction_attributes": ["hair treatment", "damaged hair"], "instruction_options": [], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHT2BLNR", "worker_id": "A3EDFA8UQT5GG8"}], "B07M5RPW13": [{"asin": "B07M5RPW13", "instruction": "i would like to buy size 7.5 walking shoes for men which are machine washable and have a rubber sole, as for the color i prefer to have them khaki.", "attributes": ["machine washable", "rubber sole"], "options": ["color: khaki", "size: 7.5"], "instruction_attributes": ["machine washable", "rubber sole"], "instruction_options": ["khaki", "7.5"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R10ZI2M", "worker_id": "AJY5G987IRT25"}], "B07Z44WYGC": [{"asin": "B07Z44WYGC", "instruction": "i'm looking for a salted caramel syrup to mix with water. i want it to have natural flavors and i want an item over 20 oz.", "attributes": ["gmo free", "natural flavors", "artificial colors"], "options": ["flavor name: maple", "size: 25.4 fl oz. (pack of 4)"], "instruction_attributes": ["natural flavors"], "instruction_options": ["25.4 fl oz. (pack of 4)"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163OQQPA", "worker_id": "A411ZZABHZUNA"}, {"asin": "B07Z44WYGC", "instruction": "i need a pack of gmo free caramel syrup in cane sugar flavor", "attributes": ["gmo free", "natural flavors", "artificial colors"], "options": ["flavor name: cane sugar", "size: 25.4 fl oz (pack of 1)"], "instruction_attributes": ["gmo free"], "instruction_options": ["cane sugar", "25.4 fl oz (pack of 1)"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINU972L", "worker_id": "A2COCSUGZV28X"}], "B073Q7RGCS": [{"asin": "B073Q7RGCS", "instruction": "i'm looking for an easy to install bronze shower curtain rod.", "attributes": ["easy install", "white finish"], "options": ["color: bronze", "size: 24-36\"", "style: dots"], "instruction_attributes": ["easy install"], "instruction_options": ["bronze"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXZJCFX", "worker_id": "A3AJJHOAV7WIUQ"}, {"asin": "B073Q7RGCS", "instruction": "i want an easy to install amazon basics tension curtain rod made from nickel.", "attributes": ["easy install", "white finish"], "options": ["color: nickel", "size: 24-36\"", "style: tiers"], "instruction_attributes": ["easy install"], "instruction_options": ["nickel"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MJQ7RBQ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B073Q7RGCS", "instruction": "i am looking for shower curtain rods that are nickel.", "attributes": ["easy install", "white finish"], "options": ["color: nickel", "size: 42-72\"", "style: tiers"], "instruction_attributes": ["white finish"], "instruction_options": ["nickel"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEG9Q8D", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B073Q7RGCS", "instruction": "i am looking for a black curtain rod that is 54\"-90\" in size and easy to install.", "attributes": ["easy install", "white finish"], "options": ["color: black", "size: 54-90\"", "style: rings"], "instruction_attributes": ["easy install"], "instruction_options": ["black", "54-90\""], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZMSK99", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B073Q7RGCS", "instruction": "i want an easy to install curtain rod with a white finish. make it 36-62\" in size.", "attributes": ["easy install", "white finish"], "options": ["color: bronze", "size: 36-62\"", "style: dots"], "instruction_attributes": ["easy install", "white finish"], "instruction_options": ["36-62\""], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCOB9BY", "worker_id": "A1NF6PELRKACS9"}], "B096G78S2Y": [{"asin": "B096G78S2Y", "instruction": "i'm looking for a product compatible with apple watch se series 6 5 4 3 2 1 40mm 44mm 42mm 38mm leopard/floral hard with tempered glass screen protector cover resistant. also, choose the flowered color", "attributes": ["compatible apple", "glass screen", "tempered glass"], "options": ["color: flower", "size: 44mm"], "instruction_attributes": ["compatible apple", "tempered glass"], "instruction_options": ["flower"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZMESHB", "worker_id": "A4AYXBQNKPA6I"}], "B07YDWSKJK": [{"asin": "B07YDWSKJK", "instruction": "i'm looking for a black color hair dye that is a pack of 3.5 ounce which is easy to use/apply.", "attributes": ["easy apply", "easy use", "seed oil", "hair dye", "permanent hair"], "options": ["color: 10 black", "size: 3.5 ounce (pack of 1)"], "instruction_attributes": ["easy apply", "easy use", "hair dye"], "instruction_options": ["10 black", "3.5 ounce (pack of 1)"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7R7P5Y", "worker_id": "A1Q0EUNCS50S8M"}, {"asin": "B07YDWSKJK", "instruction": "i would like three light golden blonde boxes of hair dye.", "attributes": ["easy apply", "easy use", "seed oil", "hair dye", "permanent hair"], "options": ["color: 93 light golden blonde", "size: 1 count (pack of 3)"], "instruction_attributes": ["hair dye"], "instruction_options": ["93 light golden blonde", "1 count (pack of 3)"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODOUWE0", "worker_id": "A1WS884SI0SLO4"}], "B07D33WVG4": [{"asin": "B07D33WVG4", "instruction": "i'm looking for a flannel fleece blanket for a bed that is super soft and also light purple.", "attributes": ["super soft", "living room"], "options": ["color: light purple", "size: 40x50 inch"], "instruction_attributes": ["super soft"], "instruction_options": ["light purple"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OMVOPL", "worker_id": "A34EHWOYRBL6OZ"}], "B09NMVT3VD": [{"asin": "B09NMVT3VD", "instruction": "i am looking a easy assemble space saving ottomas having storage space for living room brown color size - 60x36x36cm(24x14x14inch)", "attributes": ["space saving", "easy assemble", "storage space", "living room"], "options": ["color: brown", "size: 60x36x36cm(24x14x14inch)"], "instruction_attributes": ["space saving", "easy assemble", "storage space", "living room"], "instruction_options": ["brown"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIS39TA", "worker_id": "A3N9ZYQAESNFQH"}], "B07D6G7P76": [{"asin": "B07D6G7P76", "instruction": "i am looking for a food and beverage gift basket having item low carbo high protine grain free", "attributes": ["hand crafted", "grain free", "high protein", "low carb", "artificial colors", "gift basket", "perfect gift"], "options": [""], "instruction_attributes": ["grain free", "high protein", "low carb", "gift basket"], "instruction_options": [], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3IILZB", "worker_id": "A3N9ZYQAESNFQH"}], "B07R4T3ZWN": [{"asin": "B07R4T3ZWN", "instruction": "i am looking for a busy raising ballers softball tank top for mom that is 100% cotton heather that can be washed in a washing machine.should be large in size and dark in colour.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: women", "size: large"], "instruction_attributes": ["machine wash", "cotton heather"], "instruction_options": ["dark heather", "large"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTLM4ET", "worker_id": "AHU9OLV0YKIIW"}], "B078NGY37Y": [{"asin": "B078NGY37Y", "instruction": "i need a king size box spring mattress with an 8\" split foundation with a frame", "attributes": ["ready use", "fully assembled", "assembly required", "box spring"], "options": ["size: king size", "style: 8\" split foundation with frame"], "instruction_attributes": ["box spring"], "instruction_options": ["king size", "8\" split foundation with frame"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JX7MG79", "worker_id": "A6717SDXOR1OP"}], "B00GUY6GH6": [{"asin": "B00GUY6GH6", "instruction": "i need you to find some handcrafted driving mocs that are comfortable for every day wear. i need size 8", "attributes": ["rubber outsole", "everyday wear"], "options": ["color: copper", "size: 8", "special size: 11-d"], "instruction_attributes": ["everyday wear"], "instruction_options": ["8"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYHF9QZ", "worker_id": "A8C51OIOH1EUG"}], "B003VTHY74": [{"asin": "B003VTHY74", "instruction": "i am looking a box of non dairy coffee creamer singles. go ahead and get a 50 count box of vanilla.", "attributes": ["non dairy", "lactose free", "shelf stable", "gluten free"], "options": ["flavor name: vanilla", "size: box of 50 singles"], "instruction_attributes": ["non dairy"], "instruction_options": ["vanilla", "box of 50 singles"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EB0IU6H", "worker_id": "A31PW970Z2PC5P"}, {"asin": "B003VTHY74", "instruction": "i looking cafe mocha flavor non dairy gluten free lactose free coffee creamer box of 180 singles", "attributes": ["non dairy", "lactose free", "shelf stable", "gluten free"], "options": ["flavor name: cafe mocha", "size: box of 180 singles"], "instruction_attributes": ["non dairy", "lactose free", "gluten free"], "instruction_options": ["cafe mocha"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8W5G8J", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B003VTHY74", "instruction": "i need a box of 360 singles vanilla caramel nestle coffee and shelf stable.", "attributes": ["non dairy", "lactose free", "shelf stable", "gluten free"], "options": ["flavor name: vanilla caramel", "size: box of 360 singles"], "instruction_attributes": ["shelf stable"], "instruction_options": ["vanilla caramel", "box of 360 singles"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C492I03", "worker_id": "A1Q0EUNCS50S8M"}], "B08NC68N41": [{"asin": "B08NC68N41", "instruction": "i'm looking for 45mm stainless steel galaxy watch 3. also the mystic bronze color is preferable.", "attributes": ["quick release", "easy install", "stainless steel", "glass screen", "tempered glass"], "options": ["color: mystic bronze", "size: 45mm | 46mm"], "instruction_attributes": ["stainless steel"], "instruction_options": ["mystic bronze", "45mm | 46mm"], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK61MYYP", "worker_id": "ARQ05PDNXPFDI"}], "B08MBM3RNB": [{"asin": "B08MBM3RNB", "instruction": "i want a blue 100 cm x 70 cm ready to hang print to hang on my living room wall.", "attributes": ["ready hang", "wood frame", "living room"], "options": ["color: blue1-10", "size: 40 in x 28 in (100 cm x 70 cm)"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["blue1-10"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39SUIGMH", "worker_id": "AVNP1F3CADQRW"}], "B09C8VJ55X": [{"asin": "B09C8VJ55X", "instruction": "i would like to buy a 12-pack of low sugar oatmeal cups that are high in protein.", "attributes": ["high protein", "plant based", "gluten free", "low calorie", "low carb", "non gmo", "low sugar", "low fat", "ready eat", "dairy free"], "options": ["flavor name: lemon ginger pepita", "size: 12-pack"], "instruction_attributes": ["high protein", "low sugar"], "instruction_options": ["12-pack"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUATC35", "worker_id": "AV4584AQEQAEN"}], "B09HC1X1N2": [{"asin": "B09HC1X1N2", "instruction": "i am looking for a hidden camera for surveillance. i want something hd with at least 1080p", "attributes": ["1080p hd", "easy install", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": [], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VFG600", "worker_id": "A32JEH06T23HDF"}], "B07CHVLRLZ": [{"asin": "B07CHVLRLZ", "instruction": "i am looking for best toothpaste for my sensitive teeth", "attributes": ["fluoride free", "sensitive teeth"], "options": ["flavor name: natural chocolate"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["natural chocolate"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8N0M2NH", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B07CHVLRLZ", "instruction": "i am looking for a fluoride free toothpaste for sensitive teeth of natural mixed berry flavour.", "attributes": ["fluoride free", "sensitive teeth"], "options": ["flavor name: natural mixed berry"], "instruction_attributes": ["fluoride free", "sensitive teeth"], "instruction_options": ["natural mixed berry"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLU3TFZ", "worker_id": "A9QRQL9CFJBI7"}], "B07Z9MSKY2": [{"asin": "B07Z9MSKY2", "instruction": "i am looking for a portable surge protector power strip that is easy to carry. the surge protector should have a usb port with fast charge capability.", "attributes": ["fast charging", "easy carry", "usb port"], "options": [""], "instruction_attributes": ["easy carry", "usb port"], "instruction_options": [], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6B3B2W", "worker_id": "AJDQGOTMB2D80"}], "B07R63J13M": [{"asin": "B07R63J13M", "instruction": "i am looking to purchase a short sleeved, button down shirt for my husband. i need something in size 3x, perhaps in black.", "attributes": ["long lasting", "day comfort", "regular fit", "short sleeve", "quality materials", "button closure"], "options": ["color: black", "size: 3x"], "instruction_attributes": ["day comfort", "regular fit", "short sleeve", "button closure"], "instruction_options": ["black", "3x"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2VZ22U2", "worker_id": "A1TDRS435B884O"}], "B09RV2KXB4": [{"asin": "B09RV2KXB4", "instruction": "i want to buy long sleeve daily wear clothing of 95% cotton, 5% polyester particularly in black color.", "attributes": ["winter warm", "loose fit", "long sleeve", "elastic closure", "daily wear"], "options": ["color: black_c008", "size: xx-large"], "instruction_attributes": ["long sleeve", "daily wear"], "instruction_options": ["black_c008", "xx-large"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017VD4P9", "worker_id": "A2DQZHJHF45NDT"}], "B08QDSM2SM": [{"asin": "B08QDSM2SM", "instruction": "i am looking for a dust proof speaker system for my motorcycle with high power.", "attributes": ["dust proof", "high power"], "options": [""], "instruction_attributes": ["dust proof", "high power"], "instruction_options": [], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4P4H0C", "worker_id": "A182YKPS46KE9F"}], "B091D6252Y": [{"asin": "B091D6252Y", "instruction": "i'm searching for oil hair growth. i would like one with black rice and peppermint.", "attributes": ["hair growth", "natural hair"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "34J10VATJQ8X023KKOGV1B0UH8LQIK", "worker_id": "A35TUIBF05DKM4"}], "B08J2MWLR3": [{"asin": "B08J2MWLR3", "instruction": "i'm looking for a black color super soft bedroom rug size 8 feet x 10 feet rectangular in shape and it should be anti-slip.", "attributes": ["super soft", "living room"], "options": ["color: white", "size: 8 feet x 10 feet"], "instruction_attributes": ["super soft"], "instruction_options": [], "assignment_id": "33F859I56HNA01QBVO1K6A4GVTPHBM", "worker_id": "A2BEEFRJ9U6Y5U"}], "B01LZSM2RW": [{"asin": "B01LZSM2RW", "instruction": "i'm choosing the kamik women's momentum with their snow boot which include faux fur attribute. also, the color charcoal ii and the size 6.5 wide.", "attributes": ["moisture wicking", "faux fur"], "options": ["color: charcoal ii", "size: 6.5 wide"], "instruction_attributes": ["faux fur"], "instruction_options": ["charcoal ii", "6.5 wide"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J4ISFO", "worker_id": "A59DVED5S9N9Y"}], "B0921FPJND": [{"asin": "B0921FPJND", "instruction": "i'm looking for a two pack of 5 calorie, non-alcoholic margarita mix. i want 24.5 ounce bottles.", "attributes": ["non alcoholic", "low calorie", "real fruit"], "options": ["flavor: 5 calorie margarita"], "instruction_attributes": ["non alcoholic", "low calorie"], "instruction_options": ["5 calorie margarita"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R0LYTJ", "worker_id": "A3OLRWACCCCUTU"}], "B01N1K5RCF": [{"asin": "B01N1K5RCF", "instruction": "i need an eli mason old fashioned cocktail mixer of 20 fl oz in size", "attributes": ["old fashioned", "natural ingredients"], "options": ["flavor: variety mint julep & peach", "size: 20 fl oz (pack of 2)"], "instruction_attributes": ["old fashioned"], "instruction_options": ["20 fl oz (pack of 2)"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IKC23K", "worker_id": "A1IL2K0ELYI090"}, {"asin": "B01N1K5RCF", "instruction": "i am looking to buy old fashioned and naturally-flavored bitters that come in a pack of two.", "attributes": ["old fashioned", "natural ingredients"], "options": ["flavor: grenadine", "size: 10 fl oz (pack of 2)"], "instruction_attributes": ["old fashioned", "natural ingredients"], "instruction_options": ["10 fl oz (pack of 2)"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3YE6NE", "worker_id": "A114NK7T5673GK"}], "B07XG695XV": [{"asin": "B07XG695XV", "instruction": "i am looking for mumumi foldable stool that can be carried for fishing travel, mountaineering camping adventure outing outdoor as well as indoor uses for domestic purpose. red color preferable", "attributes": ["dining room", "living room"], "options": ["color: red"], "instruction_attributes": ["dining room", "living room"], "instruction_options": ["red"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UH4ZEH", "worker_id": "A1DRKZ3SCLAS4V"}], "B09NMDB4D9": [{"asin": "B09NMDB4D9", "instruction": "i need a large size slimfit t shirt for men and blouse with short sleeve and crew neck for women for the occassion of valentine's day. color preferred is white.", "attributes": ["easy care", "slim fit", "hand wash", "short sleeve"], "options": ["color: 12 white", "size: large"], "instruction_attributes": ["slim fit", "short sleeve"], "instruction_options": ["12 white", "large"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9E411BF", "worker_id": "A1V2JTEEBCXR20"}], "B08MB5WC38": [{"asin": "B08MB5WC38", "instruction": "i want to buy a high definition projector that also has a version for a 5.7 inch phone.", "attributes": ["1080p hd", "high definition"], "options": ["size: 5.7 inches phone version (720p play mobi..."], "instruction_attributes": ["high definition"], "instruction_options": ["5.7 inches phone version (720p play mobi..."], "assignment_id": "37C0GNLMHQDNI94ED11M493QP0N6DJ", "worker_id": "A1PBRKFHSF1OF8"}], "B09D9DH7YM": [{"asin": "B09D9DH7YM", "instruction": "i want buy a leakage proof travel size bag case size -30 ml, 50 ml, 100 ml", "attributes": ["leak proof", "travel size"], "options": ["item package quantity: 27", "size: 30 ml, 50 ml, 100 ml"], "instruction_attributes": ["leak proof", "travel size"], "instruction_options": [], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ72UWJ", "worker_id": "A3N9ZYQAESNFQH"}], "B07BGFTQ4Z": [{"asin": "B07BGFTQ4Z", "instruction": "i'm looking for an apple macbook that has an i5 processor and an ssd of at least 128gb, renewed looks nice too.", "attributes": ["certified refurbished", "high performance", "core i5", "intel core"], "options": [""], "instruction_attributes": ["certified refurbished", "core i5"], "instruction_options": [], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK34NN6G", "worker_id": "A18V8FRN40LJ4J"}], "B09JSQ3FBZ": [{"asin": "B09JSQ3FBZ", "instruction": "i'm looking for a halloweenboo and a x small long sleeve and should be for a daily wear and comfortable", "attributes": ["machine wash", "long sleeve", "button closure", "daily wear"], "options": ["color: halloweenboo", "size: x-small"], "instruction_attributes": ["long sleeve", "daily wear"], "instruction_options": ["halloweenboo", "x-small"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVKWJKH", "worker_id": "A19Q021KR28CS8"}], "B0015KBM0Q": [{"asin": "B0015KBM0Q", "instruction": "i want to find a long lasting perfume for women. if possible, can you get something that is 2 ounces?", "attributes": ["design house", "long lasting"], "options": ["size: 2 fl oz"], "instruction_attributes": ["long lasting"], "instruction_options": ["2 fl oz"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40NORC1", "worker_id": "A34QZDSTKZ3JO9"}], "B09LVG9WWJ": [{"asin": "B09LVG9WWJ", "instruction": "i'm looking for a front and rear dual 1080p dash cam with night vision and motion detection that is easy to install.", "attributes": ["easy install", "motion detection"], "options": [""], "instruction_attributes": ["easy install", "motion detection"], "instruction_options": [], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJLTGVT", "worker_id": "A1EREKSZAA9V7B"}], "B085M7NQM4": [{"asin": "B085M7NQM4", "instruction": "i'd like to get some sugar free cake toppers, preferably ones that are a mutin color.", "attributes": ["sugar free", "birthday cake"], "options": ["color: mutin"], "instruction_attributes": ["sugar free"], "instruction_options": ["mutin"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUC2S4P", "worker_id": "A1SX8IVV82M0LW"}], "B095Z5V1HT": [{"asin": "B095Z5V1HT", "instruction": "i'm looking for a sugarolly - big flavored cotton candy sized box (15) for a birthday party", "attributes": ["individually wrapped", "birthday party"], "options": ["flavor name: sugarolly - big", "size: box (15)"], "instruction_attributes": ["birthday party"], "instruction_options": ["sugarolly - big", "box (15)"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AC9UYJ", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B095Z5V1HT", "instruction": "i would like a lemon cube sugarolloy candy for a birthday party.", "attributes": ["individually wrapped", "birthday party"], "options": ["flavor name: sugarolly cup - lemon", "size: cube (7)"], "instruction_attributes": ["birthday party"], "instruction_options": ["sugarolly cup - lemon", "cube (7)"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V18FGR", "worker_id": "A1WS884SI0SLO4"}], "B08D3VKKCB": [{"asin": "B08D3VKKCB", "instruction": "i am looking to purchase bpa free containers with lids to use for storing beauty products and kitchen items. a 24 pack would suffice.", "attributes": ["leak proof", "bpa free"], "options": ["item package quantity: 24"], "instruction_attributes": ["bpa free"], "instruction_options": ["24"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PDYQER", "worker_id": "A3T9WZOUQGE2UW"}], "B07MDV3XQJ": [{"asin": "B07MDV3XQJ", "instruction": "i'm looking for organic gluten free fruit and vegetable sticks that are made of real fruit. i would like the variety flavor.", "attributes": ["gmo free", "gluten free", "real fruit", "artificial colors", "high fructose"], "options": ["flavor name: variety (mango & apple)", "size: adult 1 ounce (value pack) - 1 box of 16..."], "instruction_attributes": ["gluten free", "real fruit"], "instruction_options": ["variety (mango & apple)"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4S3YXO", "worker_id": "A1PHWAX1BY6C3A"}, {"asin": "B07MDV3XQJ", "instruction": "i would like a variety box of 0,6 ounce packs of fruit snacks made with real fruit.", "attributes": ["gmo free", "gluten free", "real fruit", "artificial colors", "high fructose"], "options": ["flavor name: variety (4 flavors)", "size: kid\u2019s 0.6 ounce (value pack) - 6 boxes o..."], "instruction_attributes": ["artificial colors"], "instruction_options": ["variety (4 flavors)", "kid\u2019s 0.6 ounce (value pack) - 6 boxes o..."], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AJMOE1", "worker_id": "A1WS884SI0SLO4"}], "B08HLPQ8YB": [{"asin": "B08HLPQ8YB", "instruction": "find an light brown organic hair dye that is also usda certified organic and is also cruelty free.", "attributes": ["certified organic", "cruelty free", "hair dye"], "options": ["color: organic dark brown", "size: 3.5 ounce (pack of 1)"], "instruction_attributes": ["certified organic", "cruelty free", "hair dye"], "instruction_options": [], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTPCE41", "worker_id": "A1UQ4MC5J2WIY8"}], "B07VPD4BB8": [{"asin": "B07VPD4BB8", "instruction": "i'm looking for a security home camera to see the motion detection at 5 pm", "attributes": ["high definition", "1080p hd", "motion detection"], "options": ["style: 5mp"], "instruction_attributes": ["motion detection"], "instruction_options": ["5mp"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7STRUJ", "worker_id": "A19Q021KR28CS8"}], "B00RKNNGUQ": [{"asin": "B00RKNNGUQ", "instruction": "i'm looking for a canon power shot sx610 hs with optical zoom and black colour", "attributes": ["1080p hd", "optical zoom"], "options": ["color: black"], "instruction_attributes": ["optical zoom"], "instruction_options": ["black"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI0E3T8", "worker_id": "A19Q021KR28CS8"}], "B0007SMLUM": [{"asin": "B0007SMLUM", "instruction": "please select a 1 pound, certified organic sea salt shaker in the flavor triple blend flakes.", "attributes": ["certified organic", "dietary fiber"], "options": ["flavor: triple blend flakes", "size: 1 pound (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["triple blend flakes", "1 pound (pack of 1)"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VR5GF5", "worker_id": "A9HQ3E0F2AGVO"}], "B08SSG514G": [{"asin": "B08SSG514G", "instruction": "i am looking for samsung galaxy tab s7 with the features like 12.4-inch in size, mystic navy color, 128gb wi-fi bluetooth s pen fast-charging usb-c port, android tablet", "attributes": ["fast charging", "usb port"], "options": ["color: bronze", "size: 512gb", "style: s7 tablet + keyboard"], "instruction_attributes": ["fast charging", "usb port"], "instruction_options": ["s7 tablet + keyboard"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KN0J9X", "worker_id": "A2HV9CYJH2IQYE"}, {"asin": "B08SSG514G", "instruction": "i want a 512gb samsung galaxy tab s7 with usb port.", "attributes": ["fast charging", "usb port"], "options": ["color: mystic navy", "size: 512gb", "style: s7+ tablet"], "instruction_attributes": ["usb port"], "instruction_options": ["512gb"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7TSUCM", "worker_id": "A2RBF3IIJP15IH"}], "B08FKXJ8N3": [{"asin": "B08FKXJ8N3", "instruction": "i'm looking for a slip resistant sneaker suitable for working in a kitchen, and i want it with a rubber sole, and in size 12.", "attributes": ["slip resistant", "rubber outsole", "rubber sole"], "options": ["size: 12 wide"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["12 wide"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGY51IE4", "worker_id": "A35BY30TC8WCL4"}], "B08DBGLFZC": [{"asin": "B08DBGLFZC", "instruction": "please find a dell inspiron i3880 desktop pc with 1t hardrive in black. an i5 10th generation intel processor is preferred.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["core i5"], "instruction_options": [], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLAY08RD", "worker_id": "A1ZAK79QAHNW2J"}], "B09M9JM4DY": [{"asin": "B09M9JM4DY", "instruction": "i want a 15 cupcake toppers for a birthday and to be decorated with rose and gold", "attributes": ["cupcake picks", "baby shower"], "options": ["color: rose gold 100th"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["rose gold 100th"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6C93V0E", "worker_id": "A19Q021KR28CS8"}], "B09NDFLVKC": [{"asin": "B09NDFLVKC", "instruction": "i'm looking for water resistant telescope for bird watching.", "attributes": ["easy use", "dust proof", "water resistant", "high power", "high resolution", "hands free", "easy carry", "aluminum alloy", "bird watching"], "options": [""], "instruction_attributes": ["water resistant", "bird watching"], "instruction_options": [], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZLV056", "worker_id": "A62B826XMLK7K"}], "B00C2LBGI0": [{"asin": "B00C2LBGI0", "instruction": "i'm looking for an xx-large plus elastic closure pants for women. the color can be steel.", "attributes": ["machine wash", "stretch fabric", "elastic closure", "polyester spandex"], "options": ["color: steel", "size: xx-large plus"], "instruction_attributes": ["elastic closure"], "instruction_options": ["steel", "xx-large plus"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUMRJQ4", "worker_id": "AOBO2UBJ4M7ET"}], "B09N1HSDV2": [{"asin": "B09N1HSDV2", "instruction": "i'm looking for a large t-shirt style dress with long sleeves. i'd like one that is loose fitting and gold in color.", "attributes": ["loose fit", "daily casual", "short sleeve", "long sleeve", "faux fur", "everyday wear"], "options": ["color: gold", "size: large"], "instruction_attributes": ["loose fit", "long sleeve"], "instruction_options": ["gold", "large"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WI4WQG", "worker_id": "ATR6RB1RULOC0"}], "B017NWL3I0": [{"asin": "B017NWL3I0", "instruction": "can you get a squeeze snack that is gluten free and non gmo, blackberry bliss.", "attributes": ["usda organic", "non gmo", "gluten free", "dietary fiber", "quality ingredients"], "options": ["flavor name: blackberry bliss", "size: 3.49 ounce (pack of 16)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["blackberry bliss"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQ6TKVR", "worker_id": "ARLGZWN6W91WD"}], "B07MQT5S5D": [{"asin": "B07MQT5S5D", "instruction": "i'm looking for ready to hang wall art with dimension 12*12 inches 3 pcs for living room. also look for red rose one.", "attributes": ["ready hang", "dining room", "living room"], "options": ["color: red rose", "size: 12x12inches*3pcs"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["red rose", "12x12inches*3pcs"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KPL7ET", "worker_id": "AR0VJ5XRG16UJ"}], "B08QGP2NWQ": [{"asin": "B08QGP2NWQ", "instruction": "i am looking for quick release black color tripods", "attributes": ["quick release", "aluminum alloy"], "options": ["color: black"], "instruction_attributes": ["quick release"], "instruction_options": ["black"], "assignment_id": "3URFVVM16GSBNLZB11OMB709HSXUZ3", "worker_id": "A16M39T60N60NO"}], "B07XVRZR4P": [{"asin": "B07XVRZR4P", "instruction": "i am looking for odelia vintage bohemian area living room and dining room in navy sky blue", "attributes": ["easy clean", "dining room", "living room"], "options": ["color: navy | sky blue", "size: 3' x 5' oval"], "instruction_attributes": ["dining room", "living room"], "instruction_options": ["navy | sky blue"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYE2MHC3", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B07XVRZR4P", "instruction": "get me a nine by twelve and a half foot easy clean rug for my dining room. look for the garnet color.", "attributes": ["easy clean", "dining room", "living room"], "options": ["color: garnet | navy", "size: 9' x 12'6\""], "instruction_attributes": ["easy clean", "dining room"], "instruction_options": ["garnet | navy", "9' x 12'6\""], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSI52QE", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07XVRZR4P", "instruction": "i am looking for a sky blue easy to clean vintage area rug.", "attributes": ["easy clean", "dining room", "living room"], "options": ["color: navy | sky blue", "size: 6'7\" square"], "instruction_attributes": ["easy clean"], "instruction_options": ["navy | sky blue"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA70XHMV", "worker_id": "A1EREKSZAA9V7B"}], "B0738H72SJ": [{"asin": "B0738H72SJ", "instruction": "i'm looking for refillable purple spray bottles with fine mist settings.", "attributes": ["bpa free", "fine mist"], "options": ["color: purple with white cap", "size: 12 bottles (4 ounce)"], "instruction_attributes": ["fine mist"], "instruction_options": ["purple with white cap"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZRVGJR3", "worker_id": "A19317A3X87NVM"}, {"asin": "B0738H72SJ", "instruction": "i would like a bpa free green bag", "attributes": ["bpa free", "fine mist"], "options": ["color: green with black cap", "size: 6 bottles (4 ounce)"], "instruction_attributes": ["bpa free"], "instruction_options": ["green with black cap"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6MS2BY", "worker_id": "A2ECRNQ3X5LEXD"}], "B0746SNMQD": [{"asin": "B0746SNMQD", "instruction": "i want unscented sunscreen lotion for dry skin.", "attributes": ["natural ingredients", "coconut oil", "dry skin"], "options": ["scent: unscented sunscreen"], "instruction_attributes": ["dry skin"], "instruction_options": ["unscented sunscreen"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6H0FS3Q", "worker_id": "A2RBF3IIJP15IH"}], "B08KWLTT6P": [{"asin": "B08KWLTT6P", "instruction": "i am looking for natural ingredients handmade pasta linguine of size : 1 pound (pack of 5)", "attributes": ["old fashioned", "natural ingredients"], "options": ["flavor name: rotini", "size: 1 pound (pack of 5)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["1 pound (pack of 5)"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKDRH7HM", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B08KWLTT6P", "instruction": "i want old fashioned dagostino alligator cut pasta.", "attributes": ["old fashioned", "natural ingredients"], "options": ["flavor name: alligator cut", "size: 1 pound (pack of 3)"], "instruction_attributes": ["old fashioned"], "instruction_options": ["alligator cut"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA933EZ3C", "worker_id": "A2RBF3IIJP15IH"}], "B01N5QBRPK": [{"asin": "B01N5QBRPK", "instruction": "i am looking for living room in celosia orange", "attributes": ["nickel finish", "brushed nickel", "living room"], "options": ["color: celosia orange"], "instruction_attributes": ["living room"], "instruction_options": ["celosia orange"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23TB5TQH", "worker_id": "A2MSIFDLOHI1UT"}], "B06XTF4ZWS": [{"asin": "B06XTF4ZWS", "instruction": "find a chair for home office with memory foam seat", "attributes": ["height adjustable", "memory foam", "stainless steel"], "options": ["color: inviting graphite", "style: twill"], "instruction_attributes": ["memory foam"], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN7LAG5I", "worker_id": "AVIEE6LDH0BT5"}], "B097F9L5TQ": [{"asin": "B097F9L5TQ", "instruction": "i am searching for black color cupcake toppers for the birthday party.", "attributes": ["birthday party", "cupcake picks"], "options": ["color: black"], "instruction_attributes": ["birthday party"], "instruction_options": ["black"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG2P4U9J", "worker_id": "A9ZM1P6LBW79"}], "B08937VJLZ": [{"asin": "B08937VJLZ", "instruction": "i need plastic hair masks for my hair salon", "attributes": ["hair salon", "hair cutting"], "options": [""], "instruction_attributes": ["hair salon"], "instruction_options": [], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLMMEEC4", "worker_id": "AVIEE6LDH0BT5"}], "B09P3F2FJC": [{"asin": "B09P3F2FJC", "instruction": "i want to buy mini projector which is high definition and is of q2 pink color", "attributes": ["1080p hd", "high definition"], "options": ["color: q2 pink"], "instruction_attributes": ["high definition"], "instruction_options": ["q2 pink"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY9S1XUB", "worker_id": "AJY5G987IRT25"}], "B08RG81CT6": [{"asin": "B08RG81CT6", "instruction": "i want a coat rack with white finish", "attributes": ["white item", "white finish"], "options": ["color: black"], "instruction_attributes": ["white finish"], "instruction_options": [], "assignment_id": "3IXEICO79DTUZY0BZR119DLCTAU6TY", "worker_id": "AVIEE6LDH0BT5"}], "B096FWZTSM": [{"asin": "B096FWZTSM", "instruction": "i would like a white mirror for hair cutting.", "attributes": ["high quality", "quality materials", "hair cutting"], "options": ["color: white(without led)"], "instruction_attributes": ["hair cutting"], "instruction_options": ["white(without led)"], "assignment_id": "3N8OEVH1F204BC17361WW31GF26OOI", "worker_id": "A1WS884SI0SLO4"}], "B09NC2ZXDT": [{"asin": "B09NC2ZXDT", "instruction": "i am looking for daily wear pink color lounge", "attributes": ["elastic closure", "daily wear"], "options": ["color: a24 pink", "size: 4x-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["a24 pink"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRND9W37", "worker_id": "A16M39T60N60NO"}], "B08YN43PXK": [{"asin": "B08YN43PXK", "instruction": "i am looking for water resistant bone flower pants", "attributes": ["water resistant", "moisture wicking", "elastic waist", "high waist", "polyester spandex", "daily wear"], "options": ["color: bone flower style 5.1", "size: medium"], "instruction_attributes": ["water resistant"], "instruction_options": ["bone flower style 5.1"], "assignment_id": "326O153BMT8RVOXTJJKKGXV37MVED9", "worker_id": "A16M39T60N60NO"}], "B06Y96MXJV": [{"asin": "B06Y96MXJV", "instruction": "i am looking for gluten free foodie spices", "attributes": ["non gmo", "soy free", "sugar free", "dairy free", "gluten free"], "options": ["flavor: foodie gift", "size: 4 ounce (3 count)"], "instruction_attributes": ["gluten free"], "instruction_options": ["foodie gift"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU483H1YPK", "worker_id": "A16M39T60N60NO"}, {"asin": "B06Y96MXJV", "instruction": "i need gluten free vegetarian smoked peppered bacon - 4 ounce (pack of 2)", "attributes": ["non gmo", "soy free", "sugar free", "dairy free", "gluten free"], "options": ["flavor: vegetarian smoked", "size: 4 ounce (pack of 2)"], "instruction_attributes": ["gluten free"], "instruction_options": ["vegetarian smoked", "4 ounce (pack of 2)"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YXJNT4Z", "worker_id": "A258PTOZ3D2TQR"}], "B07WW8XWXC": [{"asin": "B07WW8XWXC", "instruction": "i am looking for 0.81 ounce (pack of 80) of gluten free chewy bar with flavored dark chocolate cherry cashew", "attributes": ["low sodium", "low sugar", "gluten free", "0g trans"], "options": ["flavor name: dark chocolate cherry cashew", "size: 0.81 ounce (pack of 80)"], "instruction_attributes": ["gluten free"], "instruction_options": ["dark chocolate cherry cashew", "0.81 ounce (pack of 80)"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4WE6YWH", "worker_id": "A258PTOZ3D2TQR"}], "B07Y2STMKS": [{"asin": "B07Y2STMKS", "instruction": "i am looking for dust proof pink color headphones", "attributes": ["dust proof", "compatible apple", "easy carry", "case cover", "wireless charging"], "options": ["color: a-light pink"], "instruction_attributes": ["dust proof"], "instruction_options": ["a-light pink"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36UDXUSY", "worker_id": "A16M39T60N60NO"}], "B06XHVZDKF": [{"asin": "B06XHVZDKF", "instruction": "i am looking for a eye mask sheet for dark circles. also choose 120 count size.", "attributes": ["dark circles", "fine lines"], "options": ["size: 120 count"], "instruction_attributes": ["dark circles"], "instruction_options": ["120 count"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U9XQ4CU", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B06XHVZDKF", "instruction": "i want to find a package of 10 eye masks that treat dark circles.", "attributes": ["dark circles", "fine lines"], "options": ["size: 10 pair (pack of 1)"], "instruction_attributes": ["dark circles"], "instruction_options": ["10 pair (pack of 1)"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7XJDSR", "worker_id": "A345TDMHP3DQ3G"}], "B01GS1QRQK": [{"asin": "B01GS1QRQK", "instruction": "i want a grey safavieh evoke rug for my living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: grey | ivory", "item shape: square", "size: 6 ft 7 in x 9 ft"], "instruction_attributes": ["living room"], "instruction_options": ["grey | ivory"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7MNKREQ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B01GS1QRQK", "instruction": "i am interested in buying area rug for dining room which is in black or grey color, and is in shape of runner, while the size should be 4 ft x 6 ft", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: black | grey", "item shape: runner", "size: 4 ft x 6 ft"], "instruction_attributes": ["dining room"], "instruction_options": ["black | grey", "runner", "4 ft x 6 ft"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DW2P17L", "worker_id": "AJY5G987IRT25"}, {"asin": "B01GS1QRQK", "instruction": "i am looking for a square area rug that is grey and ivory and measures 2 feet by 2 inch by 17 feet.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: grey | ivory", "item shape: square", "size: 2 ft 2 in x 17 ft"], "instruction_attributes": ["living room"], "instruction_options": ["grey | ivory", "square", "2 ft 2 in x 17 ft"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2WZ35M", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01GS1QRQK", "instruction": "i am looking for a blue runner rug that is 8 x 10 ft and would work in either my living or dining room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: blue | ivory", "item shape: runner", "size: 8 ft x 10 ft"], "instruction_attributes": ["living room", "dining room"], "instruction_options": ["blue | ivory", "runner", "8 ft x 10 ft"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M493L8Y", "worker_id": "A114NK7T5673GK"}], "B09PSJ2X8W": [{"asin": "B09PSJ2X8W", "instruction": "i am seraching for energy drink with natural berry flavors which was low in calorie and sugar - 4 packet - drink mix", "attributes": ["gmo free", "low sugar", "low calorie", "natural flavors", "artificial flavors"], "options": ["flavor name: mixed berry", "size: 4 pack"], "instruction_attributes": ["low sugar", "low calorie", "natural flavors"], "instruction_options": ["mixed berry", "4 pack"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVG0WU7AE", "worker_id": "A3R8PQCD99H61E"}], "B07JFRBHB8": [{"asin": "B07JFRBHB8", "instruction": "i'm looking for a black hair styling product that is made from natural ingredients and easy to use.", "attributes": ["easy use", "natural ingredients", "hair dye", "hair styling", "natural hair"], "options": ["color: black"], "instruction_attributes": ["easy use", "natural ingredients", "hair styling"], "instruction_options": ["black"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX6AG4F3", "worker_id": "AFU00NU09CFXE"}], "B07GF22SG5": [{"asin": "B07GF22SG5", "instruction": "i am looking for grass fed and gluten free pure indian foods madras curry", "attributes": ["grass fed", "gluten free", "certified organic"], "options": [""], "instruction_attributes": ["grass fed", "gluten free"], "instruction_options": [], "assignment_id": "39LOEL67O3FC4VL5DRS8BED5565833", "worker_id": "AX2EWYWZM19AZ"}], "B0855C9FMW": [{"asin": "B0855C9FMW", "instruction": "easy application hair filling in black and brown color", "attributes": ["easy apply", "hair loss"], "options": ["color: black | dark brown"], "instruction_attributes": ["easy apply"], "instruction_options": ["black | dark brown"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OFAP7AZ9", "worker_id": "A3TTGSUBIK1YCL"}], "B0761VXK2D": [{"asin": "B0761VXK2D", "instruction": "i am interested in buying makeup brush which is of high quality and is rose gold.", "attributes": ["high quality", "rose gold"], "options": [""], "instruction_attributes": ["high quality", "rose gold"], "instruction_options": [], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI8D4SDO", "worker_id": "AJY5G987IRT25"}], "B075G2D96J": [{"asin": "B075G2D96J", "instruction": "i am looking for machine washable and with printing technology of ambesonne popstar party throw pillow cushion cover with size 20\"x20\"", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: salmon lilac and white", "size: 20\" x 20\""], "instruction_attributes": ["machine washable", "printing technology"], "instruction_options": ["20\" x 20\""], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN7LA5G7", "worker_id": "AX2EWYWZM19AZ"}], "B088F55SJJ": [{"asin": "B088F55SJJ", "instruction": "i am looking for a 9x6 ft universe background digital photography which is easy to carry.", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 9x6ft"], "instruction_attributes": ["easy carry", "digital photography"], "instruction_options": ["9x6ft"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366P74OP1", "worker_id": "AHU9OLV0YKIIW"}], "B07PSM5F54": [{"asin": "B07PSM5F54", "instruction": "i would like a button tufted ottoman.", "attributes": ["button tufted", "brushed nickel"], "options": [""], "instruction_attributes": ["button tufted"], "instruction_options": [], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8SM0KSS", "worker_id": "A1WS884SI0SLO4"}], "B07Q7PT467": [{"asin": "B07Q7PT467", "instruction": "i am looking for star wars navy color cute cartoon style graphic hoodie of unisex small size", "attributes": ["officially licensed", "machine wash", "classic fit", "star wars"], "options": ["color: navy", "size: unisex small"], "instruction_attributes": ["star wars"], "instruction_options": ["navy", "unisex small"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XQV9V62", "worker_id": "A258PTOZ3D2TQR"}], "B08GL6R84G": [{"asin": "B08GL6R84G", "instruction": "i am looking for a eco friendly floating shelves made up of solid wood. also choose bourbon color and 48\" l x 6\"d size.", "attributes": ["eco friendly", "solid wood"], "options": ["color: bourbon", "size: 48\"l x 6\"d"], "instruction_attributes": ["eco friendly", "solid wood"], "instruction_options": ["bourbon", "48\"l x 6\"d"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54PA1YE1", "worker_id": "A2HMEGTAFO0CS8"}], "B014JW58MY": [{"asin": "B014JW58MY", "instruction": "i am looking for baked fresh cookies", "attributes": ["baked fresh", "kosher certified", "great gift"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWQESXTI", "worker_id": "A16M39T60N60NO"}], "B085ZLFSYB": [{"asin": "B085ZLFSYB", "instruction": "i would like to buy a computer which is quad core", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ1CCRR5", "worker_id": "AJY5G987IRT25"}], "B07BQ36L48": [{"asin": "B07BQ36L48", "instruction": "i would like a six boxes of 20 individually wrapped caffeine free tea.", "attributes": ["caffeine free", "certified organic", "individually wrapped", "gluten free"], "options": ["size: 20 count (pack of 6)"], "instruction_attributes": ["caffeine free", "individually wrapped"], "instruction_options": ["20 count (pack of 6)"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRTMREUK", "worker_id": "A1WS884SI0SLO4"}], "B093LMVJCG": [{"asin": "B093LMVJCG", "instruction": "i'm looking for a wireless, hands free bluetooth speaker.", "attributes": ["hands free", "usb port"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASIAB2X5N", "worker_id": "A2JP9IKRHNLRPI"}], "B08659G11H": [{"asin": "B08659G11H", "instruction": "i am looking for gluten free, non gmo and dietary fiber organic green banana flour with size: 1 pound (pack of 2)", "attributes": ["gluten free", "certified organic", "low carb", "non gmo", "dietary fiber", "artificial colors"], "options": ["size: 1 pound (pack of 2)"], "instruction_attributes": ["gluten free", "non gmo", "dietary fiber"], "instruction_options": ["1 pound (pack of 2)"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD320YNO", "worker_id": "AX2EWYWZM19AZ"}], "B003VBA33E": [{"asin": "B003VBA33E", "instruction": "i'm looking for a gold plated coaxial cable. also, choose 3ft, white colored one.", "attributes": ["gold plated", "coaxial cable"], "options": ["color: white", "size: 3ft"], "instruction_attributes": ["gold plated", "coaxial cable"], "instruction_options": ["white", "3ft"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2P4Z99C", "worker_id": "AR0VJ5XRG16UJ"}], "B07XCJMSVS": [{"asin": "B07XCJMSVS", "instruction": "i'm looking for an extra large, navy blue women's cardigan with long sleeves.", "attributes": ["slim fit", "contrast color", "long sleeve"], "options": ["color: navy blue", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["navy blue", "x-large"], "assignment_id": "3AAJC4I4FR2295OHP2K845RY0CVZJ8", "worker_id": "A2JP9IKRHNLRPI"}], "B09GBMYCQ8": [{"asin": "B09GBMYCQ8", "instruction": "i am looking for quad core mxq pro 5g android 10.1 tv box ram 2gb rom 16gb h.265 hd 3d", "attributes": ["dual band", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43XARA1H", "worker_id": "AX2EWYWZM19AZ"}], "B00FGINOZ4": [{"asin": "B00FGINOZ4", "instruction": "i'm looking for an 8 ounce bag of chocolate covered sandwich cookies.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: halloween assortment | milk chocolate", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP93V6QK", "worker_id": "A19317A3X87NVM"}, {"asin": "B00FGINOZ4", "instruction": "i'm looking for cholate covered cookies for valentines day to gifted for my partner.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: my little pony licensed", "size: 15 ounce (pack of 1)"], "instruction_attributes": ["chocolate covered", "valentine day"], "instruction_options": ["15 ounce (pack of 1)"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U83B4CQ", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B00FGINOZ4", "instruction": "i am looking for an 8oz. philadelphia candies milk chocolate covered oreo cookies for a valentine's day gift.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: spongebob licensed", "size: 15 ounce (pack of 15)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "37UQDCYH685SGQI5NW68G99TKCWV7F", "worker_id": "ABYRAWL4BGD3C"}, {"asin": "B00FGINOZ4", "instruction": "i would like to find a valentines day gift with chocolate included. a pack sounds ideal", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: pink stork it's a girl gift", "size: 8 ounce (pack of 8)"], "instruction_attributes": ["chocolate covered", "valentine day", "perfect gift"], "instruction_options": ["8 ounce (pack of 8)"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPO2YS3", "worker_id": "A2TRV8SEM003GG"}, {"asin": "B00FGINOZ4", "instruction": "i would like a 8 ounce thanksgiving assortment that's a great gift.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: thanksgiving assortment | dark chocolate", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["perfect gift"], "instruction_options": ["thanksgiving assortment | dark chocolate", "8 ounce (pack of 1)"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFWF3EI", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00FGINOZ4", "instruction": "i want a 15 ounce sized chocolate covered cookies. it is for a valentine's day gift.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: christmas greeting assortment", "size: 15 ounce (pack of 15)"], "instruction_attributes": ["chocolate covered", "valentine day"], "instruction_options": ["15 ounce (pack of 15)"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67W077F2", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B00FGINOZ4", "instruction": "i'm looking for a perfect gift for valentines day that should be covered in chocolate. also, choose a pack of 1 weighing 8 ounce, easter cross with flower designed one.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: easter cross with flower", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["chocolate covered", "valentine day", "perfect gift"], "instruction_options": ["easter cross with flower", "8 ounce (pack of 1)"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNELLIX6", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B00FGINOZ4", "instruction": "i'm looking for a perfect gift for valentine day that should be covered in chocolate. also, choose a pack of 1 weighing 1.87 pounds, easter faces assortment designed one.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: easter faces assortment", "size: 1.87 pound (pack of 1)"], "instruction_attributes": ["chocolate covered", "valentine day", "perfect gift"], "instruction_options": ["easter faces assortment", "1.87 pound (pack of 1)"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK97NVO", "worker_id": "AR0VJ5XRG16UJ"}], "B07DW7TM71": [{"asin": "B07DW7TM71", "instruction": "i am looking for ethylene vinyl dr.martens women's nartilla sandal of size:10", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: black", "size: 10"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["10"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3G2VFBI", "worker_id": "AX2EWYWZM19AZ"}], "B01MT0PETV": [{"asin": "B01MT0PETV", "instruction": "i want shade sails made with stainless steel", "attributes": ["high density", "stainless steel"], "options": ["color: blue white", "size: 16'5''x16'5''x16'5''"], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6P2FMMP", "worker_id": "AVIEE6LDH0BT5"}], "B09FQDJ3L7": [{"asin": "B09FQDJ3L7", "instruction": "i want a sunset solawave 4-in-1 facial wand and serum bundle for dark circles.", "attributes": ["anti aging", "clinically proven", "rose gold", "hyaluronic acid", "natural ingredients", "dark circles", "fine lines"], "options": ["color: sunset"], "instruction_attributes": ["dark circles"], "instruction_options": ["sunset"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3ITE6IH", "worker_id": "A2RBF3IIJP15IH"}], "B0953Q9DVP": [{"asin": "B0953Q9DVP", "instruction": "i would like a pink cake topper for a birthday party.", "attributes": ["birthday cake", "baby shower", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["birthday cake", "birthday party"], "instruction_options": ["pink"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT07EPNUF", "worker_id": "A1WS884SI0SLO4"}], "B09GFQZXNX": [{"asin": "B09GFQZXNX", "instruction": "i'm interested in a wireless bluetooth alarm clock that offers stereo sound.", "attributes": ["wireless bluetooth", "stereo sound"], "options": [""], "instruction_attributes": ["wireless bluetooth", "stereo sound"], "instruction_options": [], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0TGP11O", "worker_id": "AFU00NU09CFXE"}], "B09FZLYK3H": [{"asin": "B09FZLYK3H", "instruction": "i am looking for easy to use nut gifts", "attributes": ["easy use", "perfect gift"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI5SQSBF", "worker_id": "A2MSIFDLOHI1UT"}], "B09FYRTQ5G": [{"asin": "B09FYRTQ5G", "instruction": "i am looking for a long lasting eye mask for dark circles with cruelty free.", "attributes": ["cruelty free", "sulfate free", "anti aging", "long lasting", "hyaluronic acid", "natural ingredients", "dark circles", "fine lines"], "options": [""], "instruction_attributes": ["cruelty free", "sulfate free", "long lasting", "dark circles"], "instruction_options": [], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ1CARR3", "worker_id": "A2HMEGTAFO0CS8"}], "B088KLGCHX": [{"asin": "B088KLGCHX", "instruction": "i am looking for anti-aging rose quartz face roller", "attributes": ["anti aging", "fine lines", "dark circles"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "39K0FND3ASPR95MUG7H134S6VL0MAF", "worker_id": "A258PTOZ3D2TQR"}], "B01KMDWKD4": [{"asin": "B01KMDWKD4", "instruction": "find a gluten free popcorn salt", "attributes": ["kosher certified", "gluten free", "0g trans"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3WMINLGALMDE0JA33INN08NU17GCA7", "worker_id": "AVIEE6LDH0BT5"}], "B0925SHCWK": [{"asin": "B0925SHCWK", "instruction": "i need 2 packs of 10.6 inch 30w dimmable bi-color soft light panel with batteries included", "attributes": ["batteries included", "easy use"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUGQYLV0", "worker_id": "A258PTOZ3D2TQR"}], "B09KVF53B4": [{"asin": "B09KVF53B4", "instruction": "i am in need of khaki color, x-large size hooded fleece lined sweatshirts for men", "attributes": ["winter warm", "fleece lined", "machine wash", "daily wear"], "options": ["color: khaki", "size: x-large"], "instruction_attributes": ["fleece lined"], "instruction_options": ["khaki", "x-large"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8ON82NE", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B09KVF53B4", "instruction": "i'm looking for a camouflage white and gray, fleece-lined hoodie for daily wear in a size 3x-large that is machine washable.", "attributes": ["winter warm", "fleece lined", "machine wash", "daily wear"], "options": ["color: camouflage white gray", "size: 3x-large"], "instruction_attributes": ["fleece lined", "machine wash", "daily wear"], "instruction_options": ["camouflage white gray", "3x-large"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GE3C8Q8", "worker_id": "AFU00NU09CFXE"}], "B08RHNKL28": [{"asin": "B08RHNKL28", "instruction": "i am looking for a long sleeve sleepwear for a man with high waist. also choose light gray color and xx-large size.", "attributes": ["contrast color", "long sleeve", "elastic waist", "short sleeve"], "options": ["color: b-light gray", "size: xx-large"], "instruction_attributes": ["long sleeve", "elastic waist"], "instruction_options": ["b-light gray", "xx-large"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBQ08E6H", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B08RHNKL28", "instruction": "i am looking for men\u2019s pajamas with contrast color also choose size x large", "attributes": ["contrast color", "long sleeve", "elastic waist", "short sleeve"], "options": ["color: army green", "size: x-large"], "instruction_attributes": ["contrast color"], "instruction_options": ["x-large"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647DQH3X", "worker_id": "A10OGH5CQBXL5N"}], "B09QFW7H9D": [{"asin": "B09QFW7H9D", "instruction": "i am looking a high resolution easy install and easy use 60x usb microphone", "attributes": ["high resolution", "easy install", "easy use"], "options": ["color: a"], "instruction_attributes": ["high resolution", "easy install", "easy use"], "instruction_options": ["a"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFW16XLF", "worker_id": "A3N9ZYQAESNFQH"}], "B07KBJNGT6": [{"asin": "B07KBJNGT6", "instruction": "i'm looking for a kosher certified premium salt which is free from gluten. also, choose mediterranean flake one.", "attributes": ["kosher certified", "non gmo", "gluten free"], "options": ["style: mediterranean flake"], "instruction_attributes": ["kosher certified", "gluten free"], "instruction_options": ["mediterranean flake"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPM284IU", "worker_id": "AR0VJ5XRG16UJ"}], "B0794RHPZD": [{"asin": "B0794RHPZD", "instruction": "i'm looking for a yellow hands-free tablet.", "attributes": ["dual band", "hands free", "quad core"], "options": ["color: canary yellow", "digital storage capacity: 32 gb", "offer type: without special offers"], "instruction_attributes": ["hands free"], "instruction_options": ["canary yellow"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO84ZXJIZ", "worker_id": "A19317A3X87NVM"}], "B07MCCDZ62": [{"asin": "B07MCCDZ62", "instruction": "i'm looking for a cruelty free certified bronzer which is fragrance free. also choose palm beach ready one.", "attributes": ["fragrance free", "cruelty free"], "options": ["color: 1- palm beach ready"], "instruction_attributes": ["fragrance free", "cruelty free"], "instruction_options": ["1- palm beach ready"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2C1TJVW", "worker_id": "AR0VJ5XRG16UJ"}], "B011DJ19MY": [{"asin": "B011DJ19MY", "instruction": "i am looking for soft toe work shoe slip resistant in 10.5", "attributes": ["slip resistant", "arch support"], "options": ["size: 10.5"], "instruction_attributes": ["slip resistant"], "instruction_options": ["10.5"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT747B5BTO", "worker_id": "A2MSIFDLOHI1UT"}], "B07FBGWTHN": [{"asin": "B07FBGWTHN", "instruction": "i need hiking shoes in a size 10 that have a lace closure", "attributes": ["lace closure", "rubber outsole", "regular fit", "rubber sole"], "options": ["color: night cargo | black | raw khaki", "size: 10"], "instruction_attributes": ["lace closure"], "instruction_options": ["10"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SJJUT3H", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CTMG7S4": [{"asin": "B09CTMG7S4", "instruction": "i need 6ft red color usb fast charging led lightning cables -1 pack", "attributes": ["fast charging", "aluminum alloy"], "options": ["color: red", "size: 6ft"], "instruction_attributes": ["fast charging"], "instruction_options": ["red", "6ft"], "assignment_id": "36ZN444YT28UFQQ45BORC65U3T7OIN", "worker_id": "A258PTOZ3D2TQR"}], "B086HHD7JD": [{"asin": "B086HHD7JD", "instruction": "i want to buy high waist yoga pants whcih are in azec - black color and are in large size", "attributes": ["quick drying", "machine washable", "tummy control", "high waist", "polyester spandex", "everyday wear"], "options": ["color: aztec - black", "size: large"], "instruction_attributes": ["high waist"], "instruction_options": ["aztec - black", "large"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0NDTCS9", "worker_id": "AJY5G987IRT25"}], "B01CH9LTFG": [{"asin": "B01CH9LTFG", "instruction": "i would like to buy face moisturizer suitable for women which is cruelty free and serves for anti aging", "attributes": ["anti aging", "paraben free", "cruelty free", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "cruelty free"], "instruction_options": [], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54AD6PNHG", "worker_id": "AJY5G987IRT25"}], "B09QX7NSN4": [{"asin": "B09QX7NSN4", "instruction": "i want buy an external hard drive hdd 0.2tb which for pc, mac, desktop, laptop, macbook, chromebook, xbox one, xbox 360 (2tb, silver). it is covered with aluminum alloy. also, i choose the b-red color.", "attributes": ["plug play", "aluminum alloy"], "options": ["color: b-red"], "instruction_attributes": ["plug play", "aluminum alloy"], "instruction_options": ["b-red"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKK16Z8T", "worker_id": "A59DVED5S9N9Y"}], "B002HKHLDK": [{"asin": "B002HKHLDK", "instruction": "i'm looking for a 2-pack of 12-feet hdmi male-to-female gold-plated cables designed for high speed data transfers.", "attributes": ["high speed", "gold plated"], "options": ["color: 2 pack", "size: 12 feet (10-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["2 pack", "12 feet (10-pack)", "hdmi male to female"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4WE4YWF", "worker_id": "AFU00NU09CFXE"}], "B09PD7CP9J": [{"asin": "B09PD7CP9J", "instruction": "i am looking fort a travel size skincare kit with tea tree toner.", "attributes": ["travel size", "tea tree", "sensitive skin"], "options": [""], "instruction_attributes": ["travel size", "tea tree"], "instruction_options": [], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RVK7RLZ", "worker_id": "A1EREKSZAA9V7B"}], "B00T8I56FY": [{"asin": "B00T8I56FY", "instruction": "i looking for blueberry nut free in raspberry", "attributes": ["baked fresh", "nut free", "dairy free"], "options": ["flavor name: raspberry", "size: 1 pack"], "instruction_attributes": ["nut free"], "instruction_options": ["raspberry"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455SKMYTP", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B00T8I56FY", "instruction": "i'm looking for 6 pack of strawberry with nut free", "attributes": ["baked fresh", "nut free", "dairy free"], "options": ["flavor name: strawberry", "size: 6 pack"], "instruction_attributes": ["nut free"], "instruction_options": ["strawberry", "6 pack"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JCLSF7", "worker_id": "A1Q0EUNCS50S8M"}, {"asin": "B00T8I56FY", "instruction": "i am looking for a 12 ounce (pack of 3) of nut free baking mixes", "attributes": ["baked fresh", "nut free", "dairy free"], "options": ["flavor name: raspberry", "size: 12 ounce (pack of 3)"], "instruction_attributes": ["nut free"], "instruction_options": ["12 ounce (pack of 3)"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK4IJ3Q", "worker_id": "A9QRQL9CFJBI7"}], "B01IQX5E7G": [{"asin": "B01IQX5E7G", "instruction": "i need 24 count, long-lasting alkaline battery", "attributes": ["long lasting", "aaa batteries"], "options": ["color: 24 count"], "instruction_attributes": ["long lasting"], "instruction_options": ["24 count"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GFYKQ8P", "worker_id": "A258PTOZ3D2TQR"}], "B07R4D5B4V": [{"asin": "B07R4D5B4V", "instruction": "i am looking for high performance jelly fish color smartwatch", "attributes": ["compatible apple", "high performance", "easy install"], "options": ["color: colorful jellyfish", "size: 42 | 44 | 45mm m | l"], "instruction_attributes": ["high performance"], "instruction_options": ["colorful jellyfish"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z675IZF9", "worker_id": "A2MSIFDLOHI1UT"}], "B00CNWY1YY": [{"asin": "B00CNWY1YY", "instruction": "i want a microdermabrasion face mask with anti aging properties", "attributes": ["anti aging", "dry skin", "dead skin"], "options": ["color: 8 oz salicylic acid with microdermabrasion crystals", "size: 8 ounce"], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23KQLFSN", "worker_id": "AVIEE6LDH0BT5"}], "B09CQ9T9NH": [{"asin": "B09CQ9T9NH", "instruction": "i want to buy sandals for women which have closed toe, and rubber sole, i want them to be a-wine color, and of 4.5 size", "attributes": ["closed toe", "arch support", "rubber sole"], "options": ["color: a-wine", "size: 4.5"], "instruction_attributes": ["closed toe", "rubber sole"], "instruction_options": ["a-wine", "4.5"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGZR3EIB", "worker_id": "AJY5G987IRT25"}], "B019IOIS8Y": [{"asin": "B019IOIS8Y", "instruction": "i am looking for 40 feet high speed cables", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 5 pack", "size: 40 feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["40 feet (single pack)"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MDGBYZ8", "worker_id": "A16M39T60N60NO"}, {"asin": "B019IOIS8Y", "instruction": "i'm looking for video accessories and it was high speed need to buy it.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 3 pack", "size: 80 feet (2-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "blu ray"], "instruction_options": ["3 pack"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCK3IP5", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B019IOIS8Y", "instruction": "i'm looking for high speed hdmi cable with ethernet signal booster.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 1 pack", "size: 75 feet (2-pack)", "style: hdmi male to male"], "instruction_attributes": ["blu ray"], "instruction_options": ["75 feet (2-pack)"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0254TKA7", "worker_id": "A21IUUHBSEVB56"}], "B08HXC8TYW": [{"asin": "B08HXC8TYW", "instruction": "i am looking for gluten free turmeric chai", "attributes": ["bpa free", "gmo free", "low fat", "gluten free", "artificial colors"], "options": ["flavor name: golden turmeric chai latte", "size: 8.81 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["golden turmeric chai latte"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPHCMTWL", "worker_id": "A16M39T60N60NO"}], "B07DTFWCN3": [{"asin": "B07DTFWCN3", "instruction": "i would like to buy water shoes which are anti slip and are in black color while the size should be 11.5 for women and 9.5 for men", "attributes": ["anti slip", "quick drying", "non slip", "rubber sole"], "options": ["color: black", "size: 11.5 women | 9.5 men"], "instruction_attributes": ["anti slip"], "instruction_options": ["black", "11.5 women | 9.5 men"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G9YT4R0", "worker_id": "AJY5G987IRT25"}], "B07LBMY1DC": [{"asin": "B07LBMY1DC", "instruction": "looking for machine washable pillow covers for couch bed also choose colour dark blue", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: dark blue", "size: 22 x 22"], "instruction_attributes": ["machine washable"], "instruction_options": ["dark blue"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGIKU1VB", "worker_id": "A10OGH5CQBXL5N"}], "B010647EJO": [{"asin": "B010647EJO", "instruction": "i am looking for acqua di gio for men impression", "attributes": ["travel size", "long lasting"], "options": ["scent name: acqua di gio for men impression", "size: 0.34 fl oz (pack of 1)"], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8TIB4Z5Q", "worker_id": "A16M39T60N60NO"}], "B09BNNQWKL": [{"asin": "B09BNNQWKL", "instruction": "i need a easy to assemble white colored desk for home office", "attributes": ["easy assemble", "white item", "easy clean", "engineered wood", "steel frame"], "options": ["color: natural and white"], "instruction_attributes": ["easy assemble"], "instruction_options": ["natural and white"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FIF64ZN", "worker_id": "AVIEE6LDH0BT5"}], "B0882WCN5W": [{"asin": "B0882WCN5W", "instruction": "i would like to buy mid calf boots which have synthetic sole, and are in insignia blue color, as for the size i want them 10", "attributes": ["faux fur", "synthetic sole"], "options": ["color: insignia blue", "size: 10"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["insignia blue", "10"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI5SRSBG", "worker_id": "AJY5G987IRT25"}], "B073P2DNTD": [{"asin": "B073P2DNTD", "instruction": "i'm looking for a mid century style table lamp", "attributes": ["mid century", "contemporary style"], "options": ["style: table lamp"], "instruction_attributes": ["mid century"], "instruction_options": ["table lamp"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70JP4BC4", "worker_id": "A19317A3X87NVM"}], "B08F3KZGW9": [{"asin": "B08F3KZGW9", "instruction": "kit 3 machine washable elastic nylon boxer panties", "attributes": ["machine washable", "machine wash", "polyester spandex", "nylon spandex", "quality polyester", "comfortable fit"], "options": ["color: e-green(6-inch)", "size: large"], "instruction_attributes": ["machine wash", "nylon spandex"], "instruction_options": [], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK9QXA50", "worker_id": "A3TTGSUBIK1YCL"}], "B081VY6GGL": [{"asin": "B081VY6GGL", "instruction": "i am interested in buying bar stools which have metal legs, are in blue colors, and have a size of 45cm", "attributes": ["non slip", "metal legs"], "options": ["color: blue", "size: 45cm"], "instruction_attributes": ["metal legs"], "instruction_options": ["blue", "45cm"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUFAKUUG", "worker_id": "AJY5G987IRT25"}], "B08VJ83DF3": [{"asin": "B08VJ83DF3", "instruction": "i'm looking for 22 inch long hair extensions having dark auturn brown color (pack of 1)", "attributes": ["easy apply", "hair extensions", "natural hair"], "options": ["color: #33 dark auturn brown", "size: 22 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#33 dark auturn brown", "22 inch (pack of 1)"], "assignment_id": "3X0H8UUITCYRED22199FX2O3FT8SWV", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08VJ83DF3", "instruction": "i want to buy hair extension tape which i can easily apply and can fit to natural hair, it's color should be dark brown to chocolate brown, and the size i am interested in should be 22 inch (pack of 1).", "attributes": ["easy apply", "hair extensions", "natural hair"], "options": ["color: t#2 | 4 dark brown to chocolate brown", "size: 22 inch (pack of 1)"], "instruction_attributes": ["easy apply", "natural hair"], "instruction_options": ["t#2 | 4 dark brown to chocolate brown", "22 inch (pack of 1)"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAGIFI5", "worker_id": "AJY5G987IRT25"}, {"asin": "B08VJ83DF3", "instruction": "i'm looking for a easy to apply hair extensions which looks like natural hair. also, choose a pack of 1, 16 inch with #33 dark auturn brown colored one", "attributes": ["easy apply", "hair extensions", "natural hair"], "options": ["color: #33 dark auturn brown", "size: 16 inch (pack of 1)"], "instruction_attributes": ["easy apply", "hair extensions", "natural hair"], "instruction_options": ["#33 dark auturn brown", "16 inch (pack of 1)"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL75EAP", "worker_id": "AR0VJ5XRG16UJ"}], "B095RK71N7": [{"asin": "B095RK71N7", "instruction": "i want a 1080hd a dome surveillance camera with motion detection", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": [], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CXFK5TI", "worker_id": "A3N9ZYQAESNFQH"}], "B081SSB2NF": [{"asin": "B081SSB2NF", "instruction": "i would like some 22 inch ombre brown synthetic hair extensions.", "attributes": ["high quality", "synthetic hair"], "options": ["color: ombre brown", "size: 22 inch"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["ombre brown", "22 inch"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA8GEHM9", "worker_id": "A1WS884SI0SLO4"}], "B00QGWLZGY": [{"asin": "B00QGWLZGY", "instruction": "i need 5 litre of quality ingredients contained roasted pecan oil bottle for cooking", "attributes": ["non gmo", "quality ingredients"], "options": ["flavor name: pecan", "size: 5 l", "style: bottle"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["pecan", "5 l", "bottle"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG2PL9UF", "worker_id": "A258PTOZ3D2TQR"}], "B07B32DCCQ": [{"asin": "B07B32DCCQ", "instruction": "i'm interested in a pack of 4, 3.17 ounce lightly salted, but unsweetened coconut chips that are non-gmo and gluten-free.", "attributes": ["non gmo", "gluten free"], "options": ["flavor name: lightly salted, unsweetened", "size: 3.17 ounce (pack of 4)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["lightly salted, unsweetened", "3.17 ounce (pack of 4)"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCUX04DS", "worker_id": "AFU00NU09CFXE"}], "B084D93KC7": [{"asin": "B084D93KC7", "instruction": "i want to buy crisps which are low carb and sugar free", "attributes": ["keto friendly", "low carb", "sugar free", "low sugar", "gluten free", "high protein", "non gmo"], "options": [""], "instruction_attributes": ["low carb", "sugar free"], "instruction_options": [], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJZ31RG9", "worker_id": "AJY5G987IRT25"}], "B08N4GNPRP": [{"asin": "B08N4GNPRP", "instruction": "i am looking for soft fuzzy blanket super soft in multi 49", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 49", "size: king"], "instruction_attributes": ["super soft"], "instruction_options": ["multi 49"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJYUXJUK", "worker_id": "A2MSIFDLOHI1UT"}], "B011W4CTM4": [{"asin": "B011W4CTM4", "instruction": "i want jeans with button closure", "attributes": ["straight leg", "machine wash", "button closure", "classic fit"], "options": ["color: light wash whiskered and sanded", "size: 44w x 34l"], "instruction_attributes": ["button closure"], "instruction_options": [], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXR0113E", "worker_id": "AVIEE6LDH0BT5"}], "B01AWMAC4O": [{"asin": "B01AWMAC4O", "instruction": "i'm looking for a easy to carry essential oil roller for coconut oil. also choose coconut scented one.", "attributes": ["easy carry", "coconut oil"], "options": ["scent name: coconut"], "instruction_attributes": ["easy carry", "coconut oil"], "instruction_options": ["coconut"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7BYTYUG", "worker_id": "AR0VJ5XRG16UJ"}], "B00GHMP7JE": [{"asin": "B00GHMP7JE", "instruction": "i am looking for brushed nickel pegandrail oak coat rack of size: 41\"x3.5\" with 8 hooks", "attributes": ["nickel finish", "brushed nickel"], "options": ["color: chestnut", "size: 41\" x 3.5\" with 8 hooks"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["41\" x 3.5\" with 8 hooks"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E9BAG8J", "worker_id": "AX2EWYWZM19AZ"}], "B09FYGVF24": [{"asin": "B09FYGVF24", "instruction": "find a dress suitable for hand wash", "attributes": ["hand wash", "nylon spandex"], "options": ["color: metallic navy", "size: 16"], "instruction_attributes": ["hand wash"], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHU8D9P3", "worker_id": "AVIEE6LDH0BT5"}], "B08K8WHB7K": [{"asin": "B08K8WHB7K", "instruction": "i am looking for super soft in multi 18", "attributes": ["super soft", "living room"], "options": ["color: multi 18", "size: twin(60\"x80\")"], "instruction_attributes": ["super soft"], "instruction_options": ["multi 18"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZT08R40Z", "worker_id": "A2MSIFDLOHI1UT"}], "B08DDKLPS5": [{"asin": "B08DDKLPS5", "instruction": "i am looking for long lasting 14 color pressed powder palette of color: fiesta all day", "attributes": ["highly pigmented", "long lasting"], "options": ["color: fiesta all day"], "instruction_attributes": ["long lasting"], "instruction_options": ["fiesta all day"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDS2SF98", "worker_id": "AX2EWYWZM19AZ"}], "B004PYF11U": [{"asin": "B004PYF11U", "instruction": "i want a gluten free packaged meal", "attributes": ["ready eat", "gluten free", "fully cooked", "easy prepare", "bpa free", "certified organic", "non gmo", "natural ingredients", "artificial colors"], "options": ["flavor: vegetable tikka masala"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "30OG32W0S5L0H0O68DYNC27XLQSENM", "worker_id": "AVIEE6LDH0BT5"}], "B093T17GH1": [{"asin": "B093T17GH1", "instruction": "i want a set of 2 mesh laundry bags with a pink flamingo dress with roses design.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OJYP92K", "worker_id": "A2RBF3IIJP15IH"}], "B09P82Y1MB": [{"asin": "B09P82Y1MB", "instruction": "i am looking for a purple daycare teacher tshirt made of heather cotton and should be a classic fit.", "attributes": ["wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: purple", "fit type: men", "size: 3x-large"], "instruction_attributes": ["cotton heather", "classic fit"], "instruction_options": ["purple"], "assignment_id": "352YTHGRO6NQF252G9RXYWYAMPU4H2", "worker_id": "AHU9OLV0YKIIW"}], "B07RKVY1KG": [{"asin": "B07RKVY1KG", "instruction": "i am looking for men suits slim fit with button closure of size: 50", "attributes": ["slim fit", "button closure"], "options": ["color: red-090", "size: 50"], "instruction_attributes": ["button closure"], "instruction_options": ["50"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP7HYDVE", "worker_id": "AX2EWYWZM19AZ"}], "B07BDQ5GJQ": [{"asin": "B07BDQ5GJQ", "instruction": "i am looking for sensodyne toothpaste in sensitive teeth", "attributes": ["clinically proven", "sensitive teeth"], "options": [""], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGZ2YHD3", "worker_id": "A2MSIFDLOHI1UT"}], "B09F374PTJ": [{"asin": "B09F374PTJ", "instruction": "i am looking for non slip pink color shoes", "attributes": ["non slip", "arch support"], "options": ["color: pink", "size: 7.5 wide"], "instruction_attributes": ["non slip"], "instruction_options": ["pink"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK37PM5Z", "worker_id": "A2MSIFDLOHI1UT"}], "B018UJLIOE": [{"asin": "B018UJLIOE", "instruction": "i need shoe mounts made with aluminium alloy", "attributes": ["easy use", "aluminum alloy"], "options": ["color: shoe mount combo pack"], "instruction_attributes": ["aluminum alloy"], "instruction_options": [], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDN5G9WY", "worker_id": "AVIEE6LDH0BT5"}], "B09KGJQQ4B": [{"asin": "B09KGJQQ4B", "instruction": "i would like to buy cell phone signal booster which has high speed", "attributes": ["light weight", "high speed", "coaxial cable", "4g lte"], "options": [""], "instruction_attributes": ["high speed"], "instruction_options": [], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJYUMUJK", "worker_id": "AJY5G987IRT25"}], "B07MFPHSNH": [{"asin": "B07MFPHSNH", "instruction": "i'm looking for a three piece, wall mounted, stainless steel spice rack.", "attributes": ["wall mounted", "stainless steel"], "options": [""], "instruction_attributes": ["wall mounted", "stainless steel"], "instruction_options": [], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6Q1BX2M", "worker_id": "A2JP9IKRHNLRPI"}], "B086DJ4TF4": [{"asin": "B086DJ4TF4", "instruction": "i want a 5 pack of amber glass fine mist spray bottles.", "attributes": ["leak proof", "high quality", "fine mist"], "options": ["color: 10ml", "size: 5 pack"], "instruction_attributes": ["fine mist"], "instruction_options": ["5 pack"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MDGAZY8", "worker_id": "A2RBF3IIJP15IH"}], "B09JBL4FQG": [{"asin": "B09JBL4FQG", "instruction": "i am looking for a camera lens protector for iphone 13 made up of aluminum alloy. also choose pink color.", "attributes": ["aluminum alloy", "tempered glass"], "options": ["color: pink"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["pink"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDTYT2QZ", "worker_id": "A2HMEGTAFO0CS8"}], "B082QWR677": [{"asin": "B082QWR677", "instruction": "i am interested in buying clips for hair which are of high quality and rose gold, while the style should be the kiss", "attributes": ["high quality", "rose gold"], "options": ["style: the kiss"], "instruction_attributes": ["high quality", "rose gold"], "instruction_options": ["the kiss"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KE3ERH8", "worker_id": "AJY5G987IRT25"}], "B0947LFNGB": [{"asin": "B0947LFNGB", "instruction": "i am looking for hand lotion cruelty free in lemongrass & ginger", "attributes": ["animal testing", "cruelty free"], "options": ["color: lemongrass & ginger", "style: liquid soap"], "instruction_attributes": ["cruelty free"], "instruction_options": ["lemongrass & ginger"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOIGZ6HO", "worker_id": "A2MSIFDLOHI1UT"}], "B088722H6W": [{"asin": "B088722H6W", "instruction": "i am looking for day comport shoe in pure grey color", "attributes": ["day comfort", "synthetic sole"], "options": ["color: pure grey | white white", "size: 5.5"], "instruction_attributes": ["day comfort"], "instruction_options": ["pure grey | white white"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQZON77M", "worker_id": "A16M39T60N60NO"}], "B074MHWYWF": [{"asin": "B074MHWYWF", "instruction": "i am looking for low sugar drink mixes in paloma flavor", "attributes": ["low sugar", "zero sugar", "real fruit"], "options": ["flavor: paloma", "size: 32 fl oz (pack of 3)"], "instruction_attributes": ["low sugar"], "instruction_options": ["paloma"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URXDEC1N", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B074MHWYWF", "instruction": "i need a bloody mary flavored cocktail mix that is low on sugar.", "attributes": ["low sugar", "zero sugar", "real fruit"], "options": ["flavor: bloody mary", "size: 32 fl oz (pack of 3)"], "instruction_attributes": ["low sugar"], "instruction_options": ["bloody mary"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIYITMF", "worker_id": "A1NF6PELRKACS9"}], "B083K4LXVJ": [{"asin": "B083K4LXVJ", "instruction": "i am looking for black color machine wash d shirt", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "star wars"], "options": ["color: black", "fit type: men", "size: 4t"], "instruction_attributes": ["machine wash"], "instruction_options": ["black"], "assignment_id": "3JW0YLFXR4QKLUJBLEJGURROL64WWE", "worker_id": "A16M39T60N60NO"}], "B07L45DLCS": [{"asin": "B07L45DLCS", "instruction": "i am looking for plant based 2.3 ounce", "attributes": ["alcohol free", "plant based"], "options": ["size: 2.3 ounce"], "instruction_attributes": ["plant based"], "instruction_options": ["2.3 ounce"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KE7RQZU", "worker_id": "A2MSIFDLOHI1UT"}], "B097KXCWP7": [{"asin": "B097KXCWP7", "instruction": "i am looking for easy to install home decor products in blackout color", "attributes": ["white item", "easy install"], "options": ["color: cordless bottom up-blackout-creamy", "size: 28\"w x 40\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["cordless bottom up-blackout-creamy"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUFAIUUE", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B097KXCWP7", "instruction": "i want to buy shades which are easy to install and have a color of cordless bottom up-blackout-white and with a size of 23\"w x 66\"h", "attributes": ["white item", "easy install"], "options": ["color: cordless bottom up-blackout-white", "size: 23\"w x 66\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["cordless bottom up-blackout-white", "23\"w x 66\"h"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVZX86LV", "worker_id": "AJY5G987IRT25"}, {"asin": "B097KXCWP7", "instruction": "i am looking for a white item 40\"w x 48\"h size of home d\u00e9cor products", "attributes": ["white item", "easy install"], "options": ["color: cordless bottom up-blackout-creamy", "size: 40\"w x 48\"h"], "instruction_attributes": ["white item"], "instruction_options": ["40\"w x 48\"h"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1XW2H9", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B097KXCWP7", "instruction": "i am looking for an easy to install blackout blinds for my kitchen. make sure it is white and has a cordless bottom up feature.", "attributes": ["white item", "easy install"], "options": ["color: cordless bottom up-blackout-gray", "size: 50\"w x 56\"h"], "instruction_attributes": ["white item", "easy install"], "instruction_options": ["cordless bottom up-blackout-gray"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3R2ZMT", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B097KXCWP7", "instruction": "i'm looking for cordless bottom up-blackout-white window blinds that are easy to install and are 55\"w x 56\"h.", "attributes": ["white item", "easy install"], "options": ["color: cordless bottom up-blackout-white", "size: 55\"w x 56\"h"], "instruction_attributes": ["white item", "easy install"], "instruction_options": ["cordless bottom up-blackout-white", "55\"w x 56\"h"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI77TGZ9", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B097KXCWP7", "instruction": "i want to find white blackout shades that are 66 inches in width and 66 inches in height. they need to be easy to install.", "attributes": ["white item", "easy install"], "options": ["color: cordless bottom up-blackout-white", "size: 66\"w x 66\"h"], "instruction_attributes": ["white item", "easy install"], "instruction_options": ["cordless bottom up-blackout-white", "66\"w x 66\"h"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FMLD3A", "worker_id": "A345TDMHP3DQ3G"}], "B01HJWARWW": [{"asin": "B01HJWARWW", "instruction": "i am looking for a male to male style gold plated high speed hdmi cable. also, choose 10 feet length.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 10 feet (10-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 feet (10-pack)", "hdmi male to male"], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQVW45SR", "worker_id": "A9ZM1P6LBW79"}], "B08313YQTH": [{"asin": "B08313YQTH", "instruction": "i am interested in buying gaming controllers which are non slip and can be carried by case", "attributes": ["non slip", "carrying case"], "options": [""], "instruction_attributes": ["non slip", "carrying case"], "instruction_options": [], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX6AGF4E", "worker_id": "AJY5G987IRT25"}], "B09964628J": [{"asin": "B09964628J", "instruction": "i need bar stool and table set", "attributes": ["solid wood", "pu leather"], "options": ["color: bar chair+table"], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0Z3O69V", "worker_id": "A1V2C99HEV3F14"}], "B08LVJ2JXY": [{"asin": "B08LVJ2JXY", "instruction": "i'm looking for a women's v-neck tunic with a relaxed fit in the size of large.", "attributes": ["long sleeve", "relaxed fit", "everyday wear", "teen girls"], "options": ["color: yz-pink", "size: large"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["large"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPI0Y79K2", "worker_id": "A2JP9IKRHNLRPI"}], "B08GL27RXJ": [{"asin": "B08GL27RXJ", "instruction": "i want a 15 pack of volume and nourish conditioner for damaged hair.", "attributes": ["cruelty free", "seed oil", "damaged hair"], "options": ["size: 15 pack", "style name: volume & nourish"], "instruction_attributes": ["damaged hair"], "instruction_options": ["15 pack", "volume & nourish"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB5MNAQG", "worker_id": "A1WS884SI0SLO4"}], "B09DGRX9H8": [{"asin": "B09DGRX9H8", "instruction": "i am looking for brittle color organic chocolate", "attributes": ["soy free", "certified organic", "individually wrapped", "non gmo"], "options": ["color: nutcracker brittle", "size: 3 ounce (pack of 10)"], "instruction_attributes": ["certified organic"], "instruction_options": ["nutcracker brittle"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYD78657", "worker_id": "A16M39T60N60NO"}, {"asin": "B09DGRX9H8", "instruction": "i want a non gmo soy free certified organic gift pack of candy and chocolate bar of holiday variety pack size :3 ounce", "attributes": ["soy free", "certified organic", "individually wrapped", "non gmo"], "options": ["color: holiday variety pack", "size: 3 ounce (pack of 12)"], "instruction_attributes": ["soy free", "certified organic", "non gmo"], "instruction_options": ["holiday variety pack", "3 ounce (pack of 12)"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDPATTZR4", "worker_id": "A3N9ZYQAESNFQH"}], "B09FQ19M1N": [{"asin": "B09FQ19M1N", "instruction": "i'm looking for brown color upholstered faux leather footrest stool for living room, its size should be 100x42x45cm", "attributes": ["button tufted", "non slip", "pu leather", "faux leather", "solid wood", "living room"], "options": ["color: brown", "size: 100x42x45cm"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["brown", "100x42x45cm"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOR4ZP0N", "worker_id": "A258PTOZ3D2TQR"}], "B08L3NP2X4": [{"asin": "B08L3NP2X4", "instruction": "i need a amplifier with stereo sound", "attributes": ["power amplifier", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R2O82IS", "worker_id": "AVIEE6LDH0BT5"}], "B07WNPT6ZD": [{"asin": "B07WNPT6ZD", "instruction": "i am interested in sandals which have arch support are in tan color and have a size of 11", "attributes": ["ethylene vinyl", "vinyl acetate", "arch support"], "options": ["color: tan", "size: 11"], "instruction_attributes": ["arch support"], "instruction_options": ["tan", "11"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7WZZ60O", "worker_id": "AJY5G987IRT25"}], "B08KJHKDWP": [{"asin": "B08KJHKDWP", "instruction": "i would like to buy mixed nuts which are non gmo, and have a roasted crunchy mix flavor while the size should be 2 pound.", "attributes": ["kosher certified", "non gmo", "resealable bag"], "options": ["flavor name: roasted crunchy mix", "size: 2 pound"], "instruction_attributes": ["non gmo"], "instruction_options": ["roasted crunchy mix", "2 pound"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPQYTJNH", "worker_id": "AJY5G987IRT25"}], "B07RT28DLG": [{"asin": "B07RT28DLG", "instruction": "i want a super soft jay franco disney minnie mouse twin bed set.", "attributes": ["super soft", "machine washable"], "options": ["color: multi - marvel", "size: twin"], "instruction_attributes": ["super soft"], "instruction_options": ["twin"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6TANUD4", "worker_id": "A2RBF3IIJP15IH"}], "B0872TSFCL": [{"asin": "B0872TSFCL", "instruction": "i need a vanity light with clear glass", "attributes": ["vanity light", "clear glass", "light fixture"], "options": ["color: brushed nickel", "size: 3 light"], "instruction_attributes": ["clear glass"], "instruction_options": [], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQOOJ01K", "worker_id": "AVIEE6LDH0BT5"}], "B09CDN7QBP": [{"asin": "B09CDN7QBP", "instruction": "i'm looking for an easy to install pink chair for the living room that offers lumbar support and is height adjustable.", "attributes": ["height adjustable", "easy install", "lumbar support", "living room"], "options": ["color: pink"], "instruction_attributes": ["height adjustable", "easy install", "lumbar support", "living room"], "instruction_options": ["pink"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TRPO0NS", "worker_id": "AFU00NU09CFXE"}], "B08L98TC39": [{"asin": "B08L98TC39", "instruction": "i need 0.5m long fast charging hdmi male charger cord splitter adapter", "attributes": ["gold plated", "fast charging", "usb port"], "options": ["size: 0.5m"], "instruction_attributes": ["fast charging"], "instruction_options": ["0.5m"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X5DCH0X", "worker_id": "A258PTOZ3D2TQR"}], "B09PZ6SWCX": [{"asin": "B09PZ6SWCX", "instruction": "i am looking for quick release underwater photography", "attributes": ["dust proof", "quick release", "easy install"], "options": [""], "instruction_attributes": ["quick release"], "instruction_options": [], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF46UZMG", "worker_id": "A16M39T60N60NO"}], "B09JWC3T93": [{"asin": "B09JWC3T93", "instruction": "i'm looking for a high quality salon and spa desk chair with adjustable rolling swivel stool chair for a beauty salon. also choose pulley styled black colored one.", "attributes": ["high quality", "beauty salon"], "options": ["color: black", "size: pulley style"], "instruction_attributes": ["high quality", "beauty salon"], "instruction_options": ["black", "pulley style"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY87MT186", "worker_id": "AR0VJ5XRG16UJ"}], "B07YF6DVNJ": [{"asin": "B07YF6DVNJ", "instruction": "i am looking for argan oil", "attributes": ["argan oil", "hair treatment"], "options": [""], "instruction_attributes": ["argan oil"], "instruction_options": [], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LS7QZBR", "worker_id": "A16M39T60N60NO"}], "B07P8B13MC": [{"asin": "B07P8B13MC", "instruction": "i am looking a anti aging eyes gels for removing dark circles under eyes", "attributes": ["anti aging", "dark circles"], "options": [""], "instruction_attributes": ["anti aging", "dark circles"], "instruction_options": [], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L8BOHL7", "worker_id": "A3N9ZYQAESNFQH"}], "B09PD5H65X": [{"asin": "B09PD5H65X", "instruction": "i am looking for pink color short sleeve t shirts", "attributes": ["loose fit", "long sleeve", "short sleeve", "daily wear"], "options": ["color: a3-pink", "size: 5x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["a3-pink"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39TG2MGG", "worker_id": "A2MSIFDLOHI1UT"}], "B07Y26SPZK": [{"asin": "B07Y26SPZK", "instruction": "find high quality toothpaste", "attributes": ["high quality", "fresh breath"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X03KB34T", "worker_id": "AVIEE6LDH0BT5"}], "B082ZSX8W8": [{"asin": "B082ZSX8W8", "instruction": "i am looking for a chocolate covered dates for perfect gift. also choose assorted container one.", "attributes": ["chocolate covered", "perfect gift"], "options": ["color: assorted container"], "instruction_attributes": ["chocolate covered", "perfect gift"], "instruction_options": ["assorted container"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XPYI9LB", "worker_id": "A2HMEGTAFO0CS8"}], "B01DTGF6WI": [{"asin": "B01DTGF6WI", "instruction": "i want a medium sized t-shirt with long sleeves", "attributes": ["long lasting", "machine washable", "long sleeve", "tumble dry"], "options": ["color: light gray - back print", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3X65QVEQIBXVW21709CD9M35VJFCLP", "worker_id": "AVIEE6LDH0BT5"}], "B07Q55YDF5": [{"asin": "B07Q55YDF5", "instruction": "i need a high quality hair extension", "attributes": ["high quality", "hair extensions"], "options": ["color: dark brown ombre brown"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": [], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YO0LNTR", "worker_id": "AVIEE6LDH0BT5"}], "B08B1MCFKL": [{"asin": "B08B1MCFKL", "instruction": "i am looking for dark denim color ethylene vinyl ultra train of size 10, 3rd generation for men", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: dark denim | red orange", "size: 10"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["dark denim | red orange", "10"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NHM7LSY", "worker_id": "A258PTOZ3D2TQR"}], "B07SRYMNXF": [{"asin": "B07SRYMNXF", "instruction": "i want a black folding chair with a steel frame", "attributes": ["coated steel", "steel frame"], "options": ["color: black", "size: 2-pack"], "instruction_attributes": ["steel frame"], "instruction_options": ["black"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAK7OXBO", "worker_id": "AVIEE6LDH0BT5"}], "B08STYKF65": [{"asin": "B08STYKF65", "instruction": "i'm looking for a fruit snacks that is in freeze dried form of a real fruit.", "attributes": ["freeze dried", "real fruit"], "options": [""], "instruction_attributes": ["freeze dried", "real fruit"], "instruction_options": [], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L5Q8QR1", "worker_id": "AR0VJ5XRG16UJ"}], "B071SF41Y9": [{"asin": "B071SF41Y9", "instruction": "find a tablet with a core i5 processor", "attributes": ["intel core", "core i5"], "options": ["size: intel core i5, 8gb ram, 128gb", "style: with black type cover"], "instruction_attributes": ["core i5"], "instruction_options": [], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBQ076E8", "worker_id": "AVIEE6LDH0BT5"}], "B00BBWBOQA": [{"asin": "B00BBWBOQA", "instruction": "i am looking for poly-cotton in digital blue", "attributes": ["polyester cotton", "cotton heather"], "options": ["color: digital blue", "size: large"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["digital blue"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSWWBTUM", "worker_id": "A2MSIFDLOHI1UT"}], "B093WNLZ67": [{"asin": "B093WNLZ67", "instruction": "i am looking for blackout brown color roller shades", "attributes": ["high density", "living room"], "options": ["color: blackout brown 3911", "size: 37\"w x 64\"h"], "instruction_attributes": ["living room"], "instruction_options": ["blackout brown 3911"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG6V9IWW", "worker_id": "A16M39T60N60NO"}, {"asin": "B093WNLZ67", "instruction": "i'm looking for make a decor products for living room. the color blackout light grey.", "attributes": ["high density", "living room"], "options": ["color: blackout light grey 3908", "size: 23\"w x 72\"h"], "instruction_attributes": ["high density", "living room"], "instruction_options": ["blackout light grey 3908"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLOG4I9", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B093WNLZ67", "instruction": "i would like a 20 wide by 72 tall blackout beige roller shade for the living room.", "attributes": ["high density", "living room"], "options": ["color: blackout beige 3902", "size: 20\"w x 72\"h"], "instruction_attributes": ["living room"], "instruction_options": ["blackout beige 3902", "20\"w x 72\"h"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFSX3V5", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B093WNLZ67", "instruction": "i want to find blackout baby blue window shades for my living room that are 23 inches in width and 64 inches in height.", "attributes": ["high density", "living room"], "options": ["color: blackout baby blue 3913", "size: 23\"w x 64\"h"], "instruction_attributes": ["living room"], "instruction_options": ["blackout baby blue 3913", "23\"w x 64\"h"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0S48J5", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B093WNLZ67", "instruction": "i want blackout brown roller shades for my living room.", "attributes": ["high density", "living room"], "options": ["color: blackout brown 3911", "size: 84\"w x 72\"h"], "instruction_attributes": ["living room"], "instruction_options": ["blackout brown 3911"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALEZ4HK", "worker_id": "A2RBF3IIJP15IH"}], "B086Z2BPKJ": [{"asin": "B086Z2BPKJ", "instruction": "i am looking for crazy monkey baking with low sodium and natural ingredients of size 7.5 ounce", "attributes": ["low sodium", "resealable bag", "natural ingredients", "artificial flavors"], "options": ["flavor name: cranberry almond", "size: 7.5 ounce"], "instruction_attributes": ["low sodium", "natural ingredients"], "instruction_options": ["7.5 ounce"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3ZDS5JC", "worker_id": "AX2EWYWZM19AZ"}], "B07H5VF96G": [{"asin": "B07H5VF96G", "instruction": "i am looking for high performance refurbished hp laserjet m3035xs m3035 cc477a laser printer", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHQPGDQH", "worker_id": "AX2EWYWZM19AZ"}], "B000AOFVZK": [{"asin": "B000AOFVZK", "instruction": "i'm looking for a high speed digital camera with optical zoom lens and should include batteries.", "attributes": ["batteries included", "high speed", "optical zoom"], "options": [""], "instruction_attributes": ["batteries included", "high speed", "optical zoom"], "instruction_options": [], "assignment_id": "3TMSXRD2XHARKT38OQUV111UPTVW1F", "worker_id": "AR0VJ5XRG16UJ"}], "B07DJB31RD": [{"asin": "B07DJB31RD", "instruction": "i am looking for a ballet flat with rubber sole for comfortable fit. also choose silver white color and 6.5 in size.", "attributes": ["comfortable fit", "rubber sole"], "options": ["color: silver silver white c0434", "size: 6.5"], "instruction_attributes": ["comfortable fit", "rubber sole"], "instruction_options": ["silver silver white c0434", "6.5"], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89ZZBGAO", "worker_id": "A2HMEGTAFO0CS8"}], "B0971VV99P": [{"asin": "B0971VV99P", "instruction": "i'm looking for strawberry lemonade that is free of caffeine and sugar.", "attributes": ["caffeine free", "sugar free", "source vitamin"], "options": ["flavor name: strawberry lemonade"], "instruction_attributes": ["caffeine free", "sugar free"], "instruction_options": ["strawberry lemonade"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q414LZ0", "worker_id": "AFU00NU09CFXE"}, {"asin": "B0971VV99P", "instruction": "pink lemonade flavored juice drink mix, please. it needs to be sugar-free and caffeine-free.", "attributes": ["caffeine free", "sugar free", "source vitamin"], "options": ["flavor name: pink lemonade"], "instruction_attributes": ["caffeine free", "sugar free"], "instruction_options": ["pink lemonade"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39SMWMGL", "worker_id": "AHTWQSOY6HTJI"}], "B083WDX378": [{"asin": "B083WDX378", "instruction": "i want a mini desktop with intel core i5 4200u", "attributes": ["dual band", "high speed", "quad core", "intel core"], "options": ["color: cpu i5 4200u", "size: 8g ram 240g ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["cpu i5 4200u"], "assignment_id": "32SCWG5HISEW7674IASH43KF47C6PW", "worker_id": "AVIEE6LDH0BT5"}], "B077TYBD6X": [{"asin": "B077TYBD6X", "instruction": "i need a table lamp with bronze finish for my living room", "attributes": ["bronze finish", "living room"], "options": ["color: yukon slate"], "instruction_attributes": ["bronze finish"], "instruction_options": [], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDG1BE9N", "worker_id": "AVIEE6LDH0BT5"}], "B09NCTZNG8": [{"asin": "B09NCTZNG8", "instruction": "i want a slim fit jeans", "attributes": ["slim fit", "straight leg", "wide leg", "classic fit", "elastic waist"], "options": ["color: black", "size: medium"], "instruction_attributes": ["slim fit"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRU8UL7B", "worker_id": "AVIEE6LDH0BT5"}], "B0745LSBN9": [{"asin": "B0745LSBN9", "instruction": "i am interested in buying area rugs which are suitable for living room, have chocolate color, and the site of 2.6 ft. x 10ft.", "attributes": ["spot clean", "mid century", "living room"], "options": ["color: chocolate", "item shape: runner", "size: 2.6 ft. x 10 ft."], "instruction_attributes": ["living room"], "instruction_options": ["chocolate", "2.6 ft. x 10 ft."], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDXEJ1RK", "worker_id": "AJY5G987IRT25"}, {"asin": "B0745LSBN9", "instruction": "i need a chocolate covered runner rug for the living room that is 9 by 12 ft", "attributes": ["spot clean", "mid century", "living room"], "options": ["color: a chocolate", "item shape: runner", "size: 9 ft x 12 ft"], "instruction_attributes": ["living room"], "instruction_options": ["a chocolate", "runner", "9 ft x 12 ft"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZGOA7E", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MCT2C4B": [{"asin": "B09MCT2C4B", "instruction": "i am looking for dining room in grey adjustable swivel barstools-2", "attributes": ["easy assemble", "metal legs", "dining room"], "options": ["color: grey", "size: adjustable swivel barstools-2"], "instruction_attributes": ["dining room"], "instruction_options": ["grey", "adjustable swivel barstools-2"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNSCEJXC", "worker_id": "A2MSIFDLOHI1UT"}], "B07SGZ4QM8": [{"asin": "B07SGZ4QM8", "instruction": "i want a neon pink tank top suitable for machine wash", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: neon pink", "fit type: women", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["neon pink"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSL5TEPI", "worker_id": "AVIEE6LDH0BT5"}], "B0979KBDV4": [{"asin": "B0979KBDV4", "instruction": "i need a shirt with regular fit", "attributes": ["easy care", "machine wash", "regular fit", "stretch fabric", "button closure", "classic fit"], "options": ["color: coral reef", "size: 20\" neck 37\"-38' sleeve"], "instruction_attributes": ["regular fit"], "instruction_options": [], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8PG7A20", "worker_id": "AVIEE6LDH0BT5"}], "B072R2Z7RH": [{"asin": "B072R2Z7RH", "instruction": "i would like bottle of pink sprinkles for a birthday cake.", "attributes": ["non gmo", "gluten free", "artificial colors", "birthday party"], "options": ["flavor name: pink"], "instruction_attributes": ["birthday party"], "instruction_options": ["pink"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TMINRVW", "worker_id": "A1WS884SI0SLO4"}], "B071CPPYMC": [{"asin": "B071CPPYMC", "instruction": "i would like a wirefree pink amethyst 36c bra that is machine washable.", "attributes": ["machine wash", "nylon spandex", "stretch fabric"], "options": ["color: wirefree - pink amethyst", "fit type: wirefree", "size: 36c"], "instruction_attributes": ["machine wash"], "instruction_options": ["wirefree - pink amethyst", "wirefree", "36c"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6QPDUBZ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B071CPPYMC", "instruction": "i am interested in buying a back smoothing bra which is machine washable in size 38c.", "attributes": ["machine wash", "nylon spandex", "stretch fabric"], "options": ["color: underwire - steele", "fit type: underwire", "size: 38c"], "instruction_attributes": ["machine wash"], "instruction_options": ["38c"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0Y1PX8", "worker_id": "AHXHM1PQTRWIQ"}], "B09B3DZ96H": [{"asin": "B09B3DZ96H", "instruction": "i need heavy duty beauty salon reclining hair chair", "attributes": ["heavy duty", "beauty salon"], "options": [""], "instruction_attributes": ["heavy duty", "beauty salon"], "instruction_options": [], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPD8JQ5N", "worker_id": "A258PTOZ3D2TQR"}], "B07NFDBYQQ": [{"asin": "B07NFDBYQQ", "instruction": "i'm looking for sugar free premium assorted chocolate bar with crunchy almonds (1.76 oz)", "attributes": ["keto friendly", "sugar free", "natural ingredients"], "options": ["flavor name: premium assorted chocolate", "size: crunchy almonds (1.76 oz)"], "instruction_attributes": ["sugar free"], "instruction_options": ["premium assorted chocolate"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3Z5JT86", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B07NFDBYQQ", "instruction": "i am looking for keto friendly chocolate bar containing crunchy almonds of 1.76 oz.", "attributes": ["keto friendly", "sugar free", "natural ingredients"], "options": ["flavor name: milk chocolate bar", "size: crunchy almonds (1.76 oz)"], "instruction_attributes": ["keto friendly"], "instruction_options": ["crunchy almonds (1.76 oz)"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53Y0GK7", "worker_id": "A1Q8PPQQCWGY0D"}], "B08T1RX1NZ": [{"asin": "B08T1RX1NZ", "instruction": "i'm looking for a brown button down shirt with long sleeves.", "attributes": ["machine washable", "relaxed fit", "button closure", "long sleeve"], "options": ["color: brown", "size: medium"], "instruction_attributes": ["button closure", "long sleeve"], "instruction_options": ["brown"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CIO81726", "worker_id": "A19317A3X87NVM"}], "B07SH9R9PW": [{"asin": "B07SH9R9PW", "instruction": "i am looking for bpa free lavender lip care kit", "attributes": ["clinically proven", "bpa free", "long lasting"], "options": ["color: lavender"], "instruction_attributes": ["bpa free"], "instruction_options": ["lavender"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4L2GUHD", "worker_id": "A16M39T60N60NO"}], "B07ZQT6SZQ": [{"asin": "B07ZQT6SZQ", "instruction": "i want grey dearfoams memory foam clogs.", "attributes": ["slip resistant", "machine washable", "memory foam"], "options": ["color: medium grey", "size: 5-6"], "instruction_attributes": ["memory foam"], "instruction_options": ["medium grey"], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QR8LB5Z", "worker_id": "A2RBF3IIJP15IH"}], "B08LDBFKMS": [{"asin": "B08LDBFKMS", "instruction": "i want pink cupcake toppers for my baby shower", "attributes": ["baby shower", "cupcake picks", "party supplies", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["baby shower"], "instruction_options": ["pink"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDG1HE9T", "worker_id": "AVIEE6LDH0BT5"}], "B09NMRVMZV": [{"asin": "B09NMRVMZV", "instruction": "i am looking for long lasting cool water candles", "attributes": ["long lasting", "soy wax"], "options": ["scent: cool water", "size: faith family friends"], "instruction_attributes": ["long lasting"], "instruction_options": ["cool water"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CU2XLPF", "worker_id": "A16M39T60N60NO"}], "B07GWJ8P6D": [{"asin": "B07GWJ8P6D", "instruction": "i want a black colored eco friendly curtain for my living room", "attributes": ["height adjustable", "eco friendly", "living room"], "options": ["color: black", "size: 84wx96l"], "instruction_attributes": ["eco friendly"], "instruction_options": ["black"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZGWE9VO", "worker_id": "AVIEE6LDH0BT5"}], "B0030ZRS98": [{"asin": "B0030ZRS98", "instruction": "i need a 13 oz package of wax for hair removal", "attributes": ["cruelty free", "hair removal", "dead skin"], "options": ["color: creme", "size: 13 ounce (pack of 1)"], "instruction_attributes": ["hair removal"], "instruction_options": ["13 ounce (pack of 1)"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3Z5H8TJ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0030ZRS98", "instruction": "i need a 13 ounce lavender cr\u00e8me hair removal wax by gigi.", "attributes": ["cruelty free", "hair removal", "dead skin"], "options": ["color: lavender cr\u00e8me", "size: 13 ounce (pack of 1)"], "instruction_attributes": ["hair removal"], "instruction_options": ["lavender cr\u00e8me", "13 ounce (pack of 1)"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN62GG5L", "worker_id": "A2RBF3IIJP15IH"}], "B09312YTQH": [{"asin": "B09312YTQH", "instruction": "i am looking for 3 pack easy clean natural skin massager for face", "attributes": ["easy clean", "easy use"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0PBVM36", "worker_id": "A258PTOZ3D2TQR"}], "B0832VZGX1": [{"asin": "B0832VZGX1", "instruction": "i am looking for a makeup pouch with high quality. also choose wine red color.", "attributes": ["high quality", "rose gold"], "options": ["color: wine red"], "instruction_attributes": ["high quality"], "instruction_options": ["wine red"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC41B8CRJ", "worker_id": "A2HMEGTAFO0CS8"}], "B0758FXDS7": [{"asin": "B0758FXDS7", "instruction": "i would like a 14 ounce bag of roasted almonds and other nuts that are gluten free.", "attributes": ["low sodium", "gluten free", "non gmo", "artificial flavors"], "options": ["flavor name: roasted almonds,cashew,peanuts", "size: 14 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["roasted almonds,cashew,peanuts", "14 ounce (pack of 6)"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I350X14Z", "worker_id": "A1WS884SI0SLO4"}], "B07NPHN1HH": [{"asin": "B07NPHN1HH", "instruction": "i am looking for grey color rugs for dining room", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: grey | gold", "item shape: rectangular", "size: 9' square"], "instruction_attributes": ["dining room"], "instruction_options": ["grey | gold"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBX4C6WO", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B07NPHN1HH", "instruction": "i would like a grey area rug that is for the living room", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: grey | green", "item shape: square", "size: 2'3\" x 10'"], "instruction_attributes": ["living room"], "instruction_options": ["grey | green"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LZKDCU", "worker_id": "A2ECRNQ3X5LEXD"}], "B091GV5PLL": [{"asin": "B091GV5PLL", "instruction": "i want a blue berry baking soda press toothpaste for bad breath.", "attributes": ["fresh breath", "bad breath"], "options": ["color: blue berry"], "instruction_attributes": ["bad breath"], "instruction_options": ["blue berry"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6USMMNM", "worker_id": "A2RBF3IIJP15IH"}], "B01ND0ZZQI": [{"asin": "B01ND0ZZQI", "instruction": "i am searching for long lasting refreshing, light fragrance mist for women", "attributes": ["design house", "long lasting", "fine mist"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEOGFOGV", "worker_id": "A258PTOZ3D2TQR"}], "B00IOTPVS0": [{"asin": "B00IOTPVS0", "instruction": "i am looking for gluten free cookies", "attributes": ["gluten free", "birthday cake"], "options": ["flavor name: cookies & cream", "size: 20 servings (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["cookies & cream"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LQPQROU", "worker_id": "A16M39T60N60NO"}], "B005IHVZHW": [{"asin": "B005IHVZHW", "instruction": "i'm looking for a clinically proven topical solution for hair regrowth treatments which should be easy to apply and also promotes hair growth and reduces hair loss.", "attributes": ["clinically proven", "easy apply", "hair growth", "hair loss"], "options": [""], "instruction_attributes": ["clinically proven", "easy apply", "hair growth", "hair loss"], "instruction_options": [], "assignment_id": "31EUONYN26DZ1WA44INARVVOBV3OVK", "worker_id": "AR0VJ5XRG16UJ"}], "B09QMS7YZD": [{"asin": "B09QMS7YZD", "instruction": "i am looking for a twin size bed with easy assemble made up of steel frame. also choose black color and twin-over-twin bunk beds style.", "attributes": ["twin size", "space saving", "easy assemble", "steel frame", "storage space"], "options": ["color: black", "style: \u200etwin-over-twin bunk beds"], "instruction_attributes": ["twin size", "easy assemble", "steel frame"], "instruction_options": [], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXN4SMWF", "worker_id": "A2HMEGTAFO0CS8"}], "B08YRWB3TR": [{"asin": "B08YRWB3TR", "instruction": "chair with adjustable height, backrest and lumbar support.", "attributes": ["height adjustable", "lumbar support"], "options": ["color: white"], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": [], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLG7A0TT", "worker_id": "A3TTGSUBIK1YCL"}], "B08CZPZF17": [{"asin": "B08CZPZF17", "instruction": "i would like to buy computer desk which has steel frame and is in black color while it's size is large", "attributes": ["space saving", "easy assemble", "steel frame"], "options": ["color: black", "size: large"], "instruction_attributes": ["steel frame"], "instruction_options": ["black", "large"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WPJUC26", "worker_id": "AJY5G987IRT25"}], "B08783WFTL": [{"asin": "B08783WFTL", "instruction": "i want individually wrapped candy & chocolate assortment for baby shower", "attributes": ["individually wrapped", "baby shower"], "options": [""], "instruction_attributes": ["individually wrapped", "baby shower"], "instruction_options": [], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPEC4AIB", "worker_id": "A3N9ZYQAESNFQH"}], "B09Q6579W5": [{"asin": "B09Q6579W5", "instruction": "i am looking for colorful stereo wireless bluetooth easy use in g2", "attributes": ["easy carry", "easy use", "wireless bluetooth"], "options": ["color: g2"], "instruction_attributes": ["easy use", "wireless bluetooth"], "instruction_options": ["g2"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAVP29CT", "worker_id": "A2MSIFDLOHI1UT"}], "B09PJXZBSQ": [{"asin": "B09PJXZBSQ", "instruction": "i would like a #4 bath sponge that is non toxic and easy to keep clean.", "attributes": ["non toxic", "easy clean", "dead skin"], "options": ["color: 4"], "instruction_attributes": ["non toxic", "easy clean"], "instruction_options": ["4"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHQPHDQI", "worker_id": "A1WS884SI0SLO4"}], "B08G155272": [{"asin": "B08G155272", "instruction": "i would like a rectangular coffee table made of steel.", "attributes": ["assembly required", "coated steel"], "options": ["size: rectangle"], "instruction_attributes": ["coated steel"], "instruction_options": ["rectangle"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZEGRIRQ", "worker_id": "A1WS884SI0SLO4"}], "B06X973HJ3": [{"asin": "B06X973HJ3", "instruction": "i am looking for gluten free cookies", "attributes": ["low fat", "gluten free", "nut free", "low calorie"], "options": ["flavor name: toasted coconut"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JGVRVMF", "worker_id": "A16M39T60N60NO"}], "B07MWML5S1": [{"asin": "B07MWML5S1", "instruction": "i am looking for comfortable fit slim jeans", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: bozeman", "fit type: slim", "size: 46w x 30l"], "instruction_attributes": ["comfortable fit"], "instruction_options": [], "assignment_id": "3QIYRE09YER1XZUUWP385IO3WHS1NU", "worker_id": "A16M39T60N60NO"}, {"asin": "B07MWML5S1", "instruction": "i want to buy a pair of machine washable jeans with a 33 inch waist and a 30 inch length. they should come in a \"granite\" color.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: granite", "fit type: big & tall", "size: 33w x 30l"], "instruction_attributes": ["machine wash"], "instruction_options": ["granite", "33w x 30l"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LHN0LY", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07MWML5S1", "instruction": "i want to find a pair of cowboy cut jeans with a relaxed, comfortable fit. the jeans need to be 31 inches in width and 38 inches in length.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: error:#n | a", "fit type: relaxed", "size: 31w x 38l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["relaxed", "31w x 38l"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS1C9GO", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07MWML5S1", "instruction": "i want a big & tall machine washable wrangler mens cowboy jeans.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: portland", "fit type: big & tall", "size: 36w x 31l"], "instruction_attributes": ["machine wash"], "instruction_options": ["big & tall"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU72775P", "worker_id": "A2RBF3IIJP15IH"}], "B01N97KVM8": [{"asin": "B01N97KVM8", "instruction": "i am looking for a pair of long lasting men's wrangler cowboy cut jeans that are machine washable.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: blue mount", "fit type: relaxed", "size: 29w x 33l"], "instruction_attributes": ["long lasting", "machine wash"], "instruction_options": ["relaxed"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8NZMWL7", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01N97KVM8", "instruction": "i have a request for you. men's wrangler 13mwz cowboy cut original fit jean, comfortable fit. i hope you find this gift for my boyfriend who has a birthday the size is size: 38w x 29l, and the color atlanta. i look forward to your return as soon as possible.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: atlanta", "fit type: regular", "size: 38w x 29l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["atlanta", "38w x 29l"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS4QUVB", "worker_id": "A15IJ20C3R4HUO"}], "B000HJB2NS": [{"asin": "B000HJB2NS", "instruction": "i would like a 6 inch long white soy candle.", "attributes": ["lead free", "white item", "soy wax", "living room"], "options": ["color: white", "size: 6 in"], "instruction_attributes": ["soy wax"], "instruction_options": ["white", "6 in"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E1H2X77", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B000HJB2NS", "instruction": "i'm looking for a lead free colonial candle made of soy wax for living room. also choose 10 in limoncello colored one", "attributes": ["lead free", "white item", "soy wax", "living room"], "options": ["color: limoncello", "size: 10 in"], "instruction_attributes": ["lead free", "soy wax", "living room"], "instruction_options": ["limoncello", "10 in"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR70KY6Y", "worker_id": "AR0VJ5XRG16UJ"}], "B09MPNDRSJ": [{"asin": "B09MPNDRSJ", "instruction": "i am in need of 20 pcs high quality black color crown dreadlock hair jewelry for women braid", "attributes": ["high quality", "hair extensions"], "options": ["color: b"], "instruction_attributes": ["high quality"], "instruction_options": ["b"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBQ06E6F", "worker_id": "A258PTOZ3D2TQR"}], "B084SK7GGV": [{"asin": "B084SK7GGV", "instruction": "i am looking for along lasting t-shirt for a adult with quality material which washable in machine. also choose depaul- navy color and x-large size.", "attributes": ["officially licensed", "long lasting", "machine wash", "quality materials", "long sleeve"], "options": ["color: depaul - navy", "size: x-large"], "instruction_attributes": ["long lasting", "machine wash", "quality materials"], "instruction_options": ["depaul - navy", "x-large"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT747B2TB3", "worker_id": "A2HMEGTAFO0CS8"}], "B09B2VF4RD": [{"asin": "B09B2VF4RD", "instruction": "i want 1 solawave renew complex serum for dark circles.", "attributes": ["clinically proven", "anti aging", "cruelty free", "hyaluronic acid", "natural ingredients", "dark circles"], "options": ["size: pack of 1"], "instruction_attributes": ["dark circles"], "instruction_options": ["pack of 1"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XQVC6VG", "worker_id": "A2RBF3IIJP15IH"}], "B09FQ8TN1L": [{"asin": "B09FQ8TN1L", "instruction": "i am looking for birthday party cupcake toppers, decorations supplies of pattern name : gold 30", "attributes": ["cupcake picks", "birthday party"], "options": ["pattern name: gold 30"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold 30"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8OYCKBP", "worker_id": "AX2EWYWZM19AZ"}], "B09KV97TW2": [{"asin": "B09KV97TW2", "instruction": "i would like a cowlop 52 by 84 inch window panel for my living room.", "attributes": ["easy clean", "living room", "dining room"], "options": ["color: cowlop9951", "size: 52x84in"], "instruction_attributes": ["living room"], "instruction_options": ["cowlop9951", "52x84in"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G9YSR4M", "worker_id": "A1WS884SI0SLO4"}], "B075V2MJ9F": [{"asin": "B075V2MJ9F", "instruction": "i am looking for studio photography digital photography in grey", "attributes": ["light weight", "digital photography"], "options": ["color: grey"], "instruction_attributes": ["digital photography"], "instruction_options": ["grey"], "assignment_id": "3HSYG7LRBU82VUVD7MHAI53YBS0KKO", "worker_id": "A16M39T60N60NO"}], "B071D7Z9YN": [{"asin": "B071D7Z9YN", "instruction": "i am looking for a rubber sole clog shoe with arc support. also choose 9.5 size.", "attributes": ["rubber sole", "arch support"], "options": ["size: 9.5"], "instruction_attributes": ["rubber sole", "arch support"], "instruction_options": ["9.5"], "assignment_id": "39LNWE0K456PSVA11X00BCXJLFXUI8", "worker_id": "A2HMEGTAFO0CS8"}], "B094JXZX2L": [{"asin": "B094JXZX2L", "instruction": "i am looking for gluten free mooala banana milk", "attributes": ["shelf stable", "nut free", "plant based", "non dairy", "gluten free", "usda organic", "dairy free"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZD40I7U", "worker_id": "A16M39T60N60NO"}], "B08TG8KFQQ": [{"asin": "B08TG8KFQQ", "instruction": "i want a white geak compatible with apple watch case.", "attributes": ["compatible apple", "easy install"], "options": ["color: white | rosegold", "size: 38 mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["white | rosegold"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FIF9Z4L", "worker_id": "A2RBF3IIJP15IH"}], "B001NQWDLO": [{"asin": "B001NQWDLO", "instruction": "i need to get some sulfate free hair spray", "attributes": ["sulfate free", "paraben free"], "options": ["color: spray"], "instruction_attributes": ["sulfate free"], "instruction_options": ["spray"], "assignment_id": "3TR2532VI040LV46NXNX77Y3V846JU", "worker_id": "A19317A3X87NVM"}], "B07XVQSGKP": [{"asin": "B07XVQSGKP", "instruction": "i'm looking for a white tv tray table that can help save me space.", "attributes": ["height adjustable", "space saving"], "options": ["color: white"], "instruction_attributes": ["space saving"], "instruction_options": ["white"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H1R561R", "worker_id": "A345TDMHP3DQ3G"}], "B08SQBV1F9": [{"asin": "B08SQBV1F9", "instruction": "i am looking for gluten free plant based cerals", "attributes": ["plant based", "gluten free", "soy free", "dairy free", "non gmo", "artificial colors"], "options": ["size: 8 ounce (3 count)"], "instruction_attributes": ["plant based", "gluten free"], "instruction_options": ["8 ounce (3 count)"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTSINA0G", "worker_id": "A16M39T60N60NO"}], "B08SCFN6ZG": [{"asin": "B08SCFN6ZG", "instruction": "i'm looking for freeze dried gluten free sliced strawberries and fresh vegetables", "attributes": ["freeze dried", "ready eat", "ready use", "gmo free", "gluten free", "artificial flavors"], "options": ["flavor: sliced strawberries"], "instruction_attributes": ["freeze dried", "gluten free"], "instruction_options": ["sliced strawberries"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQUTVD56", "worker_id": "A258PTOZ3D2TQR"}], "B08P8SLTLP": [{"asin": "B08P8SLTLP", "instruction": "i want a god for my best friend who sent me my son father's day t-shirt with classic fit and needle sleeve. also, i choose size 4t and cranberry color.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: cranberry", "fit type: men", "size: 4t"], "instruction_attributes": ["needle sleeve", "classic fit"], "instruction_options": ["cranberry", "4t"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVZX96LW", "worker_id": "A59DVED5S9N9Y"}], "B0773QFLQG": [{"asin": "B0773QFLQG", "instruction": "i am in need of high protein gluten free jaipur millet & lentil, 2.3 ounce (pack of 8)", "attributes": ["ready eat", "plant based", "freeze dried", "high protein", "nut free", "soy free", "kosher certified", "dairy free", "non gmo", "gluten free", "artificial flavors"], "options": ["flavor: jaipur millet & lentil", "size: 2.3 ounce (pack of 8)"], "instruction_attributes": ["high protein", "gluten free"], "instruction_options": ["jaipur millet & lentil", "2.3 ounce (pack of 8)"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB5XNM8Y", "worker_id": "A258PTOZ3D2TQR"}], "B07C881V3Z": [{"asin": "B07C881V3Z", "instruction": "i need a easy to apply temporary tattoo", "attributes": ["easy apply", "non toxic", "long lasting", "high quality", "coconut oil", "dry skin", "sensitive skin"], "options": ["pattern name: skull rose"], "instruction_attributes": ["easy apply"], "instruction_options": [], "assignment_id": "3DOCMVPBTYO4B61J1C162P16ZI0NNR", "worker_id": "AVIEE6LDH0BT5"}], "B003VMVL0M": [{"asin": "B003VMVL0M", "instruction": "looking for rich creamy cocoa classics also choose flavor raspberry", "attributes": ["rich creamy", "gluten free"], "options": ["flavor: raspberry", "size: 1.25 ounce packets (pack of 72)"], "instruction_attributes": ["rich creamy"], "instruction_options": ["raspberry"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYGAX46KT", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B003VMVL0M", "instruction": "i am looking for a 1.25 ounce (pack of 36) of rich creamy cocoa", "attributes": ["rich creamy", "gluten free"], "options": ["flavor: mint", "size: 1.25 ounce (pack of 36)"], "instruction_attributes": ["rich creamy"], "instruction_options": ["1.25 ounce (pack of 36)"], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM96W1IN", "worker_id": "A9QRQL9CFJBI7"}], "B08YJN9S26": [{"asin": "B08YJN9S26", "instruction": "i'm looking for a contemporary designed, hand painted vase for living room and should be made of eco friendly materials. also, choose medium sunburst colored one.", "attributes": ["hand painted", "non slip", "eco friendly", "contemporary design", "living room"], "options": ["color: sunburst (medium)"], "instruction_attributes": ["hand painted", "eco friendly", "contemporary design", "living room"], "instruction_options": ["sunburst (medium)"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTRV3EKX", "worker_id": "AR0VJ5XRG16UJ"}], "B0922HT4PV": [{"asin": "B0922HT4PV", "instruction": "i need a ottoman made from solid color", "attributes": ["non slip", "high density", "solid wood"], "options": ["color: a5"], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDRUACJN", "worker_id": "AVIEE6LDH0BT5"}], "B08BFPDQ8R": [{"asin": "B08BFPDQ8R", "instruction": "i want a easy to carry mirror", "attributes": ["easy carry", "rose gold", "stainless steel"], "options": ["color: sugar skull"], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV32W5LD", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B08BFPDQ8R", "instruction": "looking for rose gold travel purse mirror easy to carry also choose colour unicorn", "attributes": ["easy carry", "rose gold", "stainless steel"], "options": ["color: unicorn"], "instruction_attributes": ["easy carry", "rose gold"], "instruction_options": ["unicorn"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW72T4P", "worker_id": "A10OGH5CQBXL5N"}], "B07WRSP8FH": [{"asin": "B07WRSP8FH", "instruction": "i'm looking for a pokemon toothbrush", "attributes": ["bpa free", "oral hygiene"], "options": [""], "instruction_attributes": ["oral hygiene"], "instruction_options": [], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8MRWO1V", "worker_id": "A19317A3X87NVM"}], "B09RWVJZF7": [{"asin": "B09RWVJZF7", "instruction": "i'm looking for a slim fit women's jumpsuits with long sleeve. also, choose large, 001-hot pink one.", "attributes": ["hand wash", "slim fit", "long sleeve", "dry clean"], "options": ["color: 001-hot pink", "size: large"], "instruction_attributes": ["slim fit", "long sleeve"], "instruction_options": ["001-hot pink", "large"], "assignment_id": "345LHZDED82A2SSIGUTD76VU2XZ3UG", "worker_id": "AR0VJ5XRG16UJ"}], "B086ZGK88G": [{"asin": "B086ZGK88G", "instruction": "i'm looking for 20 inch double sided tape hair extensions of balayage color", "attributes": ["double sided", "sulfate free", "high quality", "hair extensions"], "options": ["color: balayage#8 | 60", "size: 20 inch"], "instruction_attributes": ["double sided", "hair extensions"], "instruction_options": ["balayage#8 | 60", "20 inch"], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW7O0VVT", "worker_id": "A258PTOZ3D2TQR"}], "B08NZD172N": [{"asin": "B08NZD172N", "instruction": "i want a 10ft micro usb fast charging cable.", "attributes": ["fast charging", "usb port"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "31N2WW6R920LJAVSL5YEL6URSAMF3V", "worker_id": "A2RBF3IIJP15IH"}], "B09CMKK5BN": [{"asin": "B09CMKK5BN", "instruction": "i'm looking for a blue wall-mounted, spacing-saving console shelf for the living room.", "attributes": ["wall mounted", "space saving", "storage space", "living room"], "options": ["color: blue"], "instruction_attributes": ["wall mounted", "space saving", "living room"], "instruction_options": ["blue"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R2OE2IY", "worker_id": "AFU00NU09CFXE"}], "B09Q93MT44": [{"asin": "B09Q93MT44", "instruction": "i'm looking for x-large yellow high-waisted tights that provide butt lifting and tummy control.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: yellow", "size: x-large"], "instruction_attributes": ["butt lifting", "tummy control", "high waist"], "instruction_options": ["yellow", "x-large"], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMX2552O", "worker_id": "AFU00NU09CFXE"}], "B08NWBT9T1": [{"asin": "B08NWBT9T1", "instruction": "i am looking for sugar free, soy free, high protein and non gmo keto bread crumbs plain of size: 2 count(pack of 2)", "attributes": ["low carb", "low sodium", "sugar free", "protein serving", "soy free", "high protein", "non gmo"], "options": ["color: everything seasoned", "size: 2 count (pack of 2)"], "instruction_attributes": ["sugar free", "soy free", "high protein", "non gmo"], "instruction_options": ["2 count (pack of 2)"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7GSRK8Q", "worker_id": "AX2EWYWZM19AZ"}], "B09KNDLCXN": [{"asin": "B09KNDLCXN", "instruction": "find a easy to install vanity light", "attributes": ["easy install", "vanity light", "clear glass"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEGTLU5S", "worker_id": "AVIEE6LDH0BT5"}], "B08H5898QC": [{"asin": "B08H5898QC", "instruction": "i want a television stand with storage space", "attributes": ["tempered glass", "storage space"], "options": ["color: sargent oak", "style name: 52\" cori"], "instruction_attributes": ["storage space"], "instruction_options": [], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50RIGWGH", "worker_id": "AVIEE6LDH0BT5"}], "B093YTB1SH": [{"asin": "B093YTB1SH", "instruction": "i'm looking for a vintage laundry bag for blouse hosiery.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MNXN1JQ", "worker_id": "AR0VJ5XRG16UJ"}], "B09DTK5SR5": [{"asin": "B09DTK5SR5", "instruction": "i need black colored shoes with arch support", "attributes": ["non slip", "unique design", "arch support"], "options": ["color: black", "size: 13 women | 13 men"], "instruction_attributes": ["arch support"], "instruction_options": ["black"], "assignment_id": "39K0FND3ASPR95MUG7H134S6VLOAMR", "worker_id": "AVIEE6LDH0BT5"}], "B09PHS56TB": [{"asin": "B09PHS56TB", "instruction": "find a high quality makeup brush", "attributes": ["high quality", "hair removal", "eye shadow"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKK1Q0WH", "worker_id": "AVIEE6LDH0BT5"}], "B08QFHCD4P": [{"asin": "B08QFHCD4P", "instruction": "i am looking for memory foam dinosaur color slipppers", "attributes": ["non slip", "memory foam", "rubber sole"], "options": ["color: dinosaur-x-92", "size: 6-7 women | 4-5 men"], "instruction_attributes": ["memory foam"], "instruction_options": ["dinosaur-x-92"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3WHU1NW", "worker_id": "A16M39T60N60NO"}], "B084TVJR42": [{"asin": "B084TVJR42", "instruction": "i have a kamiao printed tablecloth live laugh love which have a cartoon style line art figures stars, cubes, circles, hearts with multicolor round tablecloth which is an eco friendly and easy to clean. also, i have the size 36x36 and pattern19 color.", "attributes": ["machine washable", "super soft", "eco friendly", "easy clean"], "options": ["color: pattern19", "size: 36\"x36\"(diameter 92cm)"], "instruction_attributes": ["super soft", "eco friendly", "easy clean"], "instruction_options": ["pattern19", "36\"x36\"(diameter 92cm)"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G8MY743", "worker_id": "A59DVED5S9N9Y"}], "B098SV868M": [{"asin": "B098SV868M", "instruction": "i am looking for an easy to install battery storage case with the batteries included.", "attributes": ["batteries included", "easy install"], "options": ["color: 3x18560"], "instruction_attributes": ["batteries included", "easy install"], "instruction_options": [], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E3ASCZCK", "worker_id": "A1EREKSZAA9V7B"}], "B07WF9N78Y": [{"asin": "B07WF9N78Y", "instruction": "i am looking for outlook sneaker rubber sole in navy light blue", "attributes": ["memory foam", "rubber sole"], "options": ["color: navy | light blue", "size: 12"], "instruction_attributes": ["rubber sole"], "instruction_options": ["navy | light blue"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKHG245K", "worker_id": "A2MSIFDLOHI1UT"}], "B0030ZRS8Y": [{"asin": "B0030ZRS8Y", "instruction": "i am looking for a cruelty free soft wax for a sensitive skin. also choose tea tree oil wax 14 oz and 5 ounce ( pack of 1 ) size.", "attributes": ["cruelty free", "hair removal", "sensitive skin"], "options": ["color: tea tree oil wax 14 oz", "size: 5 ounce (pack of 1)"], "instruction_attributes": ["cruelty free", "sensitive skin"], "instruction_options": ["tea tree oil wax 14 oz", "5 ounce (pack of 1)"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDEFPCIF", "worker_id": "A2HMEGTAFO0CS8"}], "B07PMLZN14": [{"asin": "B07PMLZN14", "instruction": "i am looking for anti aging masks in artemisia color", "attributes": ["anti aging", "cruelty free", "fine lines"], "options": ["color: artemisia"], "instruction_attributes": ["anti aging"], "instruction_options": ["artemisia"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKHG254L", "worker_id": "A16M39T60N60NO"}], "B094ZN66Z5": [{"asin": "B094ZN66Z5", "instruction": "i am looking for", "attributes": ["twin size", "machine washable"], "options": ["color: black white", "size: twin | twin xl"], "instruction_attributes": ["machine washable"], "instruction_options": ["black white"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6P2CMMM", "worker_id": "A16M39T60N60NO"}], "B09KX9TV4F": [{"asin": "B09KX9TV4F", "instruction": "i want chinese new year good luck cake picks.", "attributes": ["party supplies", "cupcake picks"], "options": ["color: good luck"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["good luck"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSPM8JGA", "worker_id": "A2RBF3IIJP15IH"}], "B093K5MLRX": [{"asin": "B093K5MLRX", "instruction": "i need a wallet that goes with my blouse", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery"], "instruction_options": [], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB6675F5", "worker_id": "A2ECRNQ3X5LEXD"}], "B08N5DXTFQ": [{"asin": "B08N5DXTFQ", "instruction": "i am looking for a eco friendly horoscope candle with soy wax. also choose sagittarius one", "attributes": ["eco friendly", "soy wax"], "options": ["color: sagittarius"], "instruction_attributes": ["eco friendly", "soy wax"], "instruction_options": ["sagittarius"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J70KKXG9", "worker_id": "A2HMEGTAFO0CS8"}], "B08DJ6D8X5": [{"asin": "B08DJ6D8X5", "instruction": "i am looking for alcohol free perfumes for galloway impression", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: perfums de marly galloway impression"], "instruction_attributes": ["alcohol free"], "instruction_options": ["perfums de marly galloway impression"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQRRFS6U", "worker_id": "A16M39T60N60NO"}], "B08RL96WH2": [{"asin": "B08RL96WH2", "instruction": "i want non gmo freeze dried fruit and vegetables carrot flavor 1.5 ounce (pack of 1)", "attributes": ["freeze dried", "kosher certified", "non gmo", "resealable bag"], "options": ["flavor: carrot", "size: 1.5 ounce (pack of 1)"], "instruction_attributes": ["freeze dried", "non gmo"], "instruction_options": ["carrot", "1.5 ounce (pack of 1)"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJPY0YD8", "worker_id": "A3N9ZYQAESNFQH"}], "B08J6H6BKJ": [{"asin": "B08J6H6BKJ", "instruction": "find a black remote with batteries included", "attributes": ["batteries included", "aaa batteries"], "options": ["color: black"], "instruction_attributes": ["batteries included"], "instruction_options": ["black"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAVPYC9S", "worker_id": "AVIEE6LDH0BT5"}], "B09K8D4JRX": [{"asin": "B09K8D4JRX", "instruction": "i am looking a hyaluronic acid deep conditioner for hair treatment of dry har to improve smoothness", "attributes": ["hyaluronic acid", "hair treatment", "dry hair"], "options": [""], "instruction_attributes": ["hyaluronic acid", "hair treatment", "dry hair"], "instruction_options": [], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRNDBW39", "worker_id": "A3N9ZYQAESNFQH"}], "B09DL9TQ6R": [{"asin": "B09DL9TQ6R", "instruction": "i am looking for birthday party , cupcake picks of pattern name: pattern 5", "attributes": ["birthday party", "cupcake picks", "baby shower"], "options": ["pattern name: pattern 5"], "instruction_attributes": ["birthday party", "cupcake picks"], "instruction_options": ["pattern 5"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZBJKC87", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B09DL9TQ6R", "instruction": "i am looking for cupcake toppers for a birthday party. also, i prefer the pattern 2 over others.", "attributes": ["birthday party", "cupcake picks", "baby shower"], "options": ["pattern name: pattern 2"], "instruction_attributes": ["birthday party"], "instruction_options": ["pattern 2"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7X4QYN", "worker_id": "AJDQGOTMB2D80"}], "B08NJGPH9M": [{"asin": "B08NJGPH9M", "instruction": "i would like to buy blanket, which is super soft, and is of multi 20 color, and king size", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 20", "size: king"], "instruction_attributes": ["super soft"], "instruction_options": ["multi 20", "king"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPL8JJMH", "worker_id": "AJY5G987IRT25"}], "B09D3MFKF6": [{"asin": "B09D3MFKF6", "instruction": "i want a super soft fleece thrown for living for room size 50\"*40\"", "attributes": ["super soft", "fleece throw"], "options": ["color: cute sloth and donut", "size: 50\"x40\""], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["50\"x40\""], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDEFRICN", "worker_id": "A3N9ZYQAESNFQH"}], "B07Z9918BC": [{"asin": "B07Z9918BC", "instruction": "i am looking a space saving easy to assamble sofa table for lliving room", "attributes": ["eco friendly", "space saving", "easy assemble", "living room"], "options": [""], "instruction_attributes": ["space saving", "easy assemble", "living room"], "instruction_options": [], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67XC67FQ", "worker_id": "A3N9ZYQAESNFQH"}], "B01HEXEHWC": [{"asin": "B01HEXEHWC", "instruction": "i want tangerine colored crocs made with vinyl acetate for kids.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: tangerine", "size: 13 little kid", "special size: little kid (4-8 years)"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["tangerine"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX6AIF4G", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B01HEXEHWC", "instruction": "i am looking for candy pink and black toddler clogs with vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: candy pink | black", "size: 12-13 little kid", "special size: little kid (4-8 years)"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["candy pink | black"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3W37Q7", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01HEXEHWC", "instruction": "i am looking for a 5 toddler size vinyl acetate of clogs & mules", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: powder blue", "size: 5 toddler", "special size: toddler (1-4 years)"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["5 toddler"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCKCIPE", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B01HEXEHWC", "instruction": "i am looking for vinyl acetate clog for child.please choose army green color.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: army green", "size: 4 toddler", "special size: toddler (1-4 years)"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["army green"], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6HNUPQ", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B01HEXEHWC", "instruction": "i need bright cobalt clogs that are made of vinyl and are a size 5 toddler.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: bright cobalt", "size: 5 toddler", "special size: little kid (4-8 years)"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["bright cobalt", "5 toddler"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKJ4VPE", "worker_id": "A2ECRNQ3X5LEXD"}], "B07V9MQWZQ": [{"asin": "B07V9MQWZQ", "instruction": "i want a screen protector made with tempered glass", "attributes": ["glass screen", "tempered glass"], "options": [""], "instruction_attributes": ["tempered glass"], "instruction_options": [], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDN5M9W4", "worker_id": "AVIEE6LDH0BT5"}], "B08BRGF84C": [{"asin": "B08BRGF84C", "instruction": "universal remote control with battery included", "attributes": ["batteries included", "aaa batteries"], "options": ["size: 1 pack"], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5XOWOUX", "worker_id": "A3TTGSUBIK1YCL"}], "B079B3266S": [{"asin": "B079B3266S", "instruction": "i want 36 jars of a rose gold bpa free makeup bottles.", "attributes": ["leak proof", "bpa free"], "options": ["color: rose gold", "size: 36 jars"], "instruction_attributes": ["bpa free"], "instruction_options": ["rose gold", "36 jars"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMW0633KL", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B079B3266S", "instruction": "i need 36 beauticom 60 gram leak proof plastic jars with white lids. i want them in amber.", "attributes": ["leak proof", "bpa free"], "options": ["color: amber", "size: 36 jars"], "instruction_attributes": ["leak proof"], "instruction_options": ["amber", "36 jars"], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVYLIDI8", "worker_id": "A1CB72B51L7TKE"}, {"asin": "B079B3266S", "instruction": "travel storage white color leak proof for makeup cosmetic lotion scrubs creams oil size 12 jar", "attributes": ["leak proof", "bpa free"], "options": ["color: white", "size: 12 jars"], "instruction_attributes": ["leak proof"], "instruction_options": [], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3MQLZR", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B079B3266S", "instruction": "i need a leak proof, bpa free cosmetic bag that can fit 12 jars inside. look for a pink one.", "attributes": ["leak proof", "bpa free"], "options": ["color: pink", "size: 12 jars"], "instruction_attributes": ["leak proof", "bpa free"], "instruction_options": ["pink", "12 jars"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E01L7X3", "worker_id": "AR9AU5FY1S3RO"}], "B09T3PYRH9": [{"asin": "B09T3PYRH9", "instruction": "i am looking for gold color high definition tablets", "attributes": ["high definition", "quad core"], "options": ["color: gold"], "instruction_attributes": ["high definition"], "instruction_options": ["gold"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72B02OEG", "worker_id": "A16M39T60N60NO"}], "B092VMNRC1": [{"asin": "B092VMNRC1", "instruction": "i'm interested in a rose gold makeup mirror that is double-sided and easy to carry.", "attributes": ["double sided", "easy carry", "rose gold"], "options": [""], "instruction_attributes": ["double sided", "easy carry", "rose gold"], "instruction_options": [], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YO0INTO", "worker_id": "AFU00NU09CFXE"}], "B07NB11WCT": [{"asin": "B07NB11WCT", "instruction": "i want a sound bar with stereo sound", "attributes": ["aaa batteries", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XPYC9L5", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B07NB11WCT", "instruction": "i want a stereo sound soundbar+wireless subwoofer home theater system.", "attributes": ["aaa batteries", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PK1X2D", "worker_id": "A2RBF3IIJP15IH"}], "B08NSX1MM6": [{"asin": "B08NSX1MM6", "instruction": "i am looking for hair salon trolley, of color silver 27.5\"-43 height", "attributes": ["height adjustable", "hair salon", "beauty salon"], "options": ["color: silver"], "instruction_attributes": ["hair salon"], "instruction_options": ["silver"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1U7MMPH", "worker_id": "AX2EWYWZM19AZ"}], "B09NMJR882": [{"asin": "B09NMJR882", "instruction": "find a moisturizer with natural ingredients for dead skin", "attributes": ["natural ingredients", "dead skin"], "options": ["color: a05#grapes"], "instruction_attributes": ["natural ingredients", "dead skin"], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4ZAV32EL", "worker_id": "AVIEE6LDH0BT5"}], "B00LR7CO04": [{"asin": "B00LR7CO04", "instruction": "i'm looking for a everyday wear chukka with rubber outsole. also choose 11.5-d with 11 wide bomber colored one.", "attributes": ["rubber outsole", "everyday wear"], "options": ["color: bomber | bomber", "size: 11 wide", "special size: 11.5-d"], "instruction_attributes": ["rubber outsole", "everyday wear"], "instruction_options": ["bomber | bomber", "11 wide", "11.5-d"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SJJS3TP", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B00LR7CO04", "instruction": "i want a pair of extra wide rubber chukka shoes.", "attributes": ["rubber outsole", "everyday wear"], "options": ["color: bomber", "size: 8 wide", "special size: 10.5-ee"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["8 wide"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E4MXH0", "worker_id": "A19317A3X87NVM"}, {"asin": "B00LR7CO04", "instruction": "my order is : a pair of twisted x men's chukka riding mocs - handmade riding mocs in full grain leather with special size 14-d. let me know if you can find it in bombe/neon orange. i'm also looking for a rubber sole", "attributes": ["rubber outsole", "everyday wear"], "options": ["color: bomber | neon orange", "size: 9.5 wide", "special size: 14-d"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["bomber | neon orange", "14-d"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTK14D2", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B00LR7CO04", "instruction": "i am looking for a pair of men's size 10 everyday wear mocs.", "attributes": ["rubber outsole", "everyday wear"], "options": ["color: bomber", "size: 10", "special size: 7.5-ee"], "instruction_attributes": ["everyday wear"], "instruction_options": ["10"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68J44A4", "worker_id": "A1EREKSZAA9V7B"}], "B079KCFTZ9": [{"asin": "B079KCFTZ9", "instruction": "i need a remote control for my blue-ray", "attributes": ["blu ray", "aaa batteries"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BJ6584S", "worker_id": "AVIEE6LDH0BT5"}], "B08ZXXJL6N": [{"asin": "B08ZXXJL6N", "instruction": "i am looking for quad core 128gb emmc mini computer with windows 10 pro of size : intel n4020 4gb|128gb", "attributes": ["dual band", "quad core"], "options": ["size: intel n4020 4gb | 128gb"], "instruction_attributes": ["quad core"], "instruction_options": ["intel n4020 4gb | 128gb"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJMEYVAR", "worker_id": "AX2EWYWZM19AZ"}], "B08LBMXBNF": [{"asin": "B08LBMXBNF", "instruction": "i am in need of matte screen protector tempered glass for iphone 12 pro max (6.7\")", "attributes": ["easy install", "tempered glass"], "options": ["size: 6.7\""], "instruction_attributes": ["tempered glass"], "instruction_options": ["6.7\""], "assignment_id": "34PGFRQONZLYFAJCEF0151XGJAVJW6", "worker_id": "A258PTOZ3D2TQR"}], "B09RB2JZ6D": [{"asin": "B09RB2JZ6D", "instruction": "i am looking for a portable high-power wireless bluetooth speaker. also choose gray color.", "attributes": ["high power", "wireless bluetooth"], "options": ["color: gray"], "instruction_attributes": ["high power"], "instruction_options": ["gray"], "assignment_id": "3URFVVM16GSBNLZB11OMB709HSXZU8", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B09RB2JZ6D", "instruction": "i need a black wireless bluetooth speaker.", "attributes": ["high power", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZKNR7E", "worker_id": "A2ECRNQ3X5LEXD"}], "B092JFXKLS": [{"asin": "B092JFXKLS", "instruction": "i am looking for daily wear shorts in dark blue color", "attributes": ["drawstring closure", "elastic waist", "daily wear"], "options": ["color: dark blue", "size: x-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["dark blue"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KE7UQZX", "worker_id": "A16M39T60N60NO"}], "B08RXZFJCB": [{"asin": "B08RXZFJCB", "instruction": "i am looking for a short for a pregnant woman with high waist and able to do quick drying. also choose dark purple color and x-large size.", "attributes": ["quick drying", "elastic closure", "high waist"], "options": ["color: 2pcs - black + dark purple", "size: x-large"], "instruction_attributes": ["quick drying", "high waist"], "instruction_options": ["2pcs - black + dark purple", "x-large"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0VU7A3B", "worker_id": "A2HMEGTAFO0CS8"}], "B08R92G3DR": [{"asin": "B08R92G3DR", "instruction": "i am looking for a light weight photography backdrop for a digital photography. also choose printed backdrop 11 color and 5x7 size.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 11", "size: 5x7 ft"], "instruction_attributes": ["light weight", "digital photography"], "instruction_options": ["printed backdrop 11", "5x7 ft"], "assignment_id": "33UKMF931KU01WBNV49UKNDQDI6TTX", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B08R92G3DR", "instruction": "i need a printed backdrop for digital photography that is 7 by 10 ft", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 03", "size: 7x10 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["printed backdrop 03", "7x10 ft"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB4A4AQ8", "worker_id": "A2ECRNQ3X5LEXD"}], "B098R1LMGC": [{"asin": "B098R1LMGC", "instruction": "i want baralonly non slip slippers in size 9.5 for men.", "attributes": ["open toe", "non slip"], "options": ["color: 16#_coffee", "size: 9.5-10"], "instruction_attributes": ["non slip"], "instruction_options": ["9.5-10"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGU3QOQS", "worker_id": "A2RBF3IIJP15IH"}], "B09B27HLGV": [{"asin": "B09B27HLGV", "instruction": "i am looking for a sweater with long sleeve also able to quick drying. also choose black kids 05 color and 4-5t size.", "attributes": ["quick drying", "long sleeve"], "options": ["color: black kids 05", "size: 4-5t"], "instruction_attributes": ["quick drying", "long sleeve"], "instruction_options": ["black kids 05", "4-5t"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZGWI9VS", "worker_id": "A2HMEGTAFO0CS8"}], "B08XK4R9TH": [{"asin": "B08XK4R9TH", "instruction": "i want vanity lights made with brushed nickel.", "attributes": ["mid century", "easy install", "easy assemble", "brushed nickel", "glass shade", "nickel finish", "vanity light", "clear glass"], "options": ["color: brushed nickel", "size: 40.0 inch"], "instruction_attributes": ["vanity light"], "instruction_options": ["brushed nickel"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1663BS4MA", "worker_id": "A2RBF3IIJP15IH"}], "B01NAQTN1T": [{"asin": "B01NAQTN1T", "instruction": "i am looking for fresh breath tooth paste", "attributes": ["fresh breath", "bad breath"], "options": [""], "instruction_attributes": ["fresh breath"], "instruction_options": [], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N4ZPRY5", "worker_id": "A2MSIFDLOHI1UT"}], "B0936DMW9S": [{"asin": "B0936DMW9S", "instruction": "i am looking for long lasting, non toxic glossy nail polish of color : tuscany", "attributes": ["non toxic", "long lasting", "easy use", "nail polish"], "options": ["color: tuscany"], "instruction_attributes": ["non toxic", "long lasting"], "instruction_options": ["tuscany"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJZ3ZRG7", "worker_id": "AX2EWYWZM19AZ"}], "B086PCKRBV": [{"asin": "B086PCKRBV", "instruction": "i am looking for easy assemble white color beds", "attributes": ["white item", "easy assemble", "box spring", "storage space"], "options": ["color: white", "size: queen"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white"], "assignment_id": "3NGMS9VZTWSGZMBL50ZGMFJOV0QFF3", "worker_id": "A16M39T60N60NO"}], "B08BHB6GMK": [{"asin": "B08BHB6GMK", "instruction": "find a 0.8 ounce fruit snack pack made from simple ingredients", "attributes": ["individually wrapped", "non gmo", "simple ingredients"], "options": ["flavor name: variety pack", "size: 0.8 ounce (pack of 8)"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["0.8 ounce (pack of 8)"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGANS0XDV", "worker_id": "AVIEE6LDH0BT5"}], "B09MT7WSBJ": [{"asin": "B09MT7WSBJ", "instruction": "i am looking for 2 pieces of machine wash large size adult nightgown pajama sleep sets", "attributes": ["wash cold", "hand wash", "machine wash", "elastic waistband", "dry clean"], "options": ["color: multi 9", "size: large"], "instruction_attributes": ["machine wash"], "instruction_options": ["multi 9", "large"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JGVOVMC", "worker_id": "A258PTOZ3D2TQR"}], "B09GNY9N38": [{"asin": "B09GNY9N38", "instruction": "i want a xx-large shegnsi plus size womens high waist trench coat.", "attributes": ["wide leg", "hand wash", "machine wash", "high waist", "quality materials", "elastic waistband", "short sleeve", "long sleeve"], "options": ["size: xx-large"], "instruction_attributes": ["high waist"], "instruction_options": ["xx-large"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ76038G95L", "worker_id": "A2RBF3IIJP15IH"}], "B08B5ML5YF": [{"asin": "B08B5ML5YF", "instruction": "i am interested in buying wall art which is suitable for dining room, has color of artwork-26 and with a size of 32\"wx16\"hx1pcs", "attributes": ["ready hang", "living room", "dining room"], "options": ["color: artwork-26", "size: 32\"wx16\"hx1pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["artwork-26", "32\"wx16\"hx1pcs"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SD449BO", "worker_id": "AJY5G987IRT25"}], "B00JKUPP74": [{"asin": "B00JKUPP74", "instruction": "i am looking for digital camera high resolution in white", "attributes": ["high resolution", "optical zoom"], "options": ["color: white"], "instruction_attributes": ["high resolution"], "instruction_options": ["white"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G9YR4RY", "worker_id": "A2MSIFDLOHI1UT"}], "B07K8STW37": [{"asin": "B07K8STW37", "instruction": "i'm looking for a pair of low rise boyfriend jeans in antic charcoal. i need a 28 waist and 32 length.", "attributes": ["low rise", "slim fit", "machine wash", "imported zipper"], "options": ["color: antic charcoal", "size: 28w x 32l"], "instruction_attributes": ["low rise"], "instruction_options": ["antic charcoal", "28w x 32l"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0MAHCDD", "worker_id": "A3OLRWACCCCUTU"}], "B09P4RK8LY": [{"asin": "B09P4RK8LY", "instruction": "i'm looking for a white nightstand with a 1 shelf storage space.", "attributes": ["easy clean", "storage space", "high gloss", "living room"], "options": ["color: white"], "instruction_attributes": ["storage space"], "instruction_options": ["white"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q414ZLE", "worker_id": "A19317A3X87NVM"}], "B093KGC7RW": [{"asin": "B093KGC7RW", "instruction": "i am looking for in travel laundry bag", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "37Z929RLGKIZMWY86444AIH4BZQTS6", "worker_id": "A2MSIFDLOHI1UT"}], "B08BR4HCPV": [{"asin": "B08BR4HCPV", "instruction": "i'm looking for a easy to assemble showcase cabinet with good storage space and has tempered glass countertop. also choose 47.2\"h * 15.7\" w sized one.", "attributes": ["easy assemble", "tempered glass", "storage space"], "options": ["size: 47.2\u201dh x 15.7\u201dw"], "instruction_attributes": ["easy assemble", "tempered glass", "storage space"], "instruction_options": ["47.2\u201dh x 15.7\u201dw"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOIGBH6B", "worker_id": "AR0VJ5XRG16UJ"}], "B09L1JYY7R": [{"asin": "B09L1JYY7R", "instruction": "i am interested in buying pullover for women which is machine washable and have women christmas gifts-a153-khaki color, and of size 3x-large", "attributes": ["quick drying", "machine washable", "long sleeve", "short sleeve", "laundry bag", "daily wear"], "options": ["color: women christmas gifts-a153-khaki", "size: 3x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["women christmas gifts-a153-khaki", "3x-large"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5XOWUO3", "worker_id": "AJY5G987IRT25"}], "B000MICPWQ": [{"asin": "B000MICPWQ", "instruction": "i want a campbell's soup that has vitamins and are made of chicken & star shaped pasta.", "attributes": ["source vitamin", "artificial colors"], "options": ["flavor name: chicken & star shaped pasta"], "instruction_attributes": ["source vitamin"], "instruction_options": ["chicken & star shaped pasta"], "assignment_id": "351SEKWQSBRP7CP60H83T50CGOLDMW", "worker_id": "A2RBF3IIJP15IH"}], "B079YDY7P2": [{"asin": "B079YDY7P2", "instruction": "i want a high performance ps4.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDCL7Y4V", "worker_id": "A1WS884SI0SLO4"}], "B09S6STSTZ": [{"asin": "B09S6STSTZ", "instruction": "i want a high quality dental floss to improve my oral hygiene", "attributes": ["easy use", "easy clean", "high quality", "stainless steel", "oral hygiene"], "options": [""], "instruction_attributes": ["high quality", "oral hygiene"], "instruction_options": [], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292X5QQW7", "worker_id": "AVIEE6LDH0BT5"}], "B07Y64XJ33": [{"asin": "B07Y64XJ33", "instruction": "i want a 16x16 painting for my living room", "attributes": ["ready hang", "living room"], "options": ["color: boat decoration pattern prints", "size: 16x16 inches*4pcs"], "instruction_attributes": ["living room"], "instruction_options": ["16x16 inches*4pcs"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72B0XEO1", "worker_id": "AVIEE6LDH0BT5"}], "B01HU10MSG": [{"asin": "B01HU10MSG", "instruction": "i want a shilo dark chocolate wig made from natural hair.", "attributes": ["natural hair", "synthetic hair", "hair growth"], "options": ["color: darkchocolate"], "instruction_attributes": ["natural hair"], "instruction_options": ["darkchocolate"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZBJL8C4", "worker_id": "A2RBF3IIJP15IH"}], "B07SZ9Q7WF": [{"asin": "B07SZ9Q7WF", "instruction": "i'm looking for a machine washable, classic fit tank tops made of heathers cotton and has needle sleeve. also, choose women's small, red colored one", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: red", "fit type: women", "size: small"], "instruction_attributes": ["machine wash", "heathers cotton", "needle sleeve", "classic fit"], "instruction_options": ["red", "women", "small"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K3623UGE", "worker_id": "AR0VJ5XRG16UJ"}], "B000AMUL9S": [{"asin": "B000AMUL9S", "instruction": "need a projection screen that is ultra hd and is easy to install. i'm looking for black/white version with 113\" size. aspect ratio needs to be 1:1 and pattern is projector screen + 6\" white screen.", "attributes": ["ultra hd", "easy install"], "options": ["color: black | white", "pattern name: projector screen + 6\" white projector screen", "size: 113\"", "style: 1:1, apect ratio"], "instruction_attributes": ["ultra hd", "easy install"], "instruction_options": ["black | white", "projector screen + 6\" white projector screen", "113\"", "1:1, apect ratio"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPL8XJMV", "worker_id": "A1MJVTR0PCKBWW"}, {"asin": "B000AMUL9S", "instruction": "i would like a black 84\" projection screen with a 16:9 ultra hd aspect ratio.", "attributes": ["ultra hd", "easy install"], "options": ["color: black | white", "pattern name: projector screen", "size: 84\"", "style: 16:9, aspect ratio"], "instruction_attributes": ["ultra hd"], "instruction_options": ["black | white", "projector screen", "84\"", "16:9, aspect ratio"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZZCZJY", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B000AMUL9S", "instruction": "i am looking for 150\" white color 4k ultra hd 3d ready projector screen", "attributes": ["ultra hd", "easy install"], "options": ["color: black | white", "pattern name: projector screen + 12\" black projector screen", "size: 150\"", "style: 1:1, apect ratio"], "instruction_attributes": ["ultra hd"], "instruction_options": ["black | white", "150\""], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4LN8MV", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B000AMUL9S", "instruction": "i am looking for projector screens of size 106\" that are easy to install.", "attributes": ["ultra hd", "easy install"], "options": ["color: black | white", "pattern name: projector screen + 6\" white projector screen", "size: 106\"", "style: 16:10, aspect ratio"], "instruction_attributes": ["easy install"], "instruction_options": ["106\""], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOMTL99", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B000AMUL9S", "instruction": "i'm looking for a easy to install ultra hd manual projector screen in size 136 inch. choose the ones that come in color white.", "attributes": ["ultra hd", "easy install"], "options": ["color: white", "pattern name: projector screen + 6\" white projector screen", "size: 136\"", "style: manual"], "instruction_attributes": ["ultra hd", "easy install"], "instruction_options": ["white", "projector screen + 6\" white projector screen", "136\"", "manual"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZIS1EOYF", "worker_id": "A3MNXK3VDK37SN"}], "B09SNPM6XX": [{"asin": "B09SNPM6XX", "instruction": "dermatologically tested waterproof eyeliner", "attributes": ["dermatologist tested", "long lasting"], "options": ["color: d"], "instruction_attributes": ["dermatologist tested"], "instruction_options": [], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO23Z1W8Z", "worker_id": "A3TTGSUBIK1YCL"}], "B074D96PLL": [{"asin": "B074D96PLL", "instruction": "i am searching for fluoride free toothpaste scented with coconut chamomile, 4.2 oz", "attributes": ["fluoride free", "oil free", "coconut oil"], "options": ["scent: coconut chamomile"], "instruction_attributes": ["fluoride free"], "instruction_options": ["coconut chamomile"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50RIEGWZ", "worker_id": "A258PTOZ3D2TQR"}], "B08LW5QSR4": [{"asin": "B08LW5QSR4", "instruction": "i am interested in buying machine washable throws which are in magenta green color and the size should be 60\" x 80\" for adults.", "attributes": ["machine washable", "printing technology"], "options": ["color: magenta green", "size: 60\" x 80\" for adults"], "instruction_attributes": ["machine washable"], "instruction_options": ["magenta green", "60\" x 80\" for adults"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8SM1SK1", "worker_id": "AJY5G987IRT25"}], "B08L3868VD": [{"asin": "B08L3868VD", "instruction": "i want a stainless steel minkissy eyebrow trimming tool.", "attributes": ["high quality", "storage case", "stainless steel"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLBKMR8R", "worker_id": "A2RBF3IIJP15IH"}], "B098F2FPS1": [{"asin": "B098F2FPS1", "instruction": "i would like a pair of size 8.5 black sandals with a open toe.", "attributes": ["open toe", "closed toe", "ankle strap", "arch support"], "options": ["color: black", "size: 8.5"], "instruction_attributes": ["open toe"], "instruction_options": ["black", "8.5"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDG1EE9Q", "worker_id": "A1WS884SI0SLO4"}], "B09MQLXKX2": [{"asin": "B09MQLXKX2", "instruction": "i need a a31 light weight background", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a31", "size: 10x7ft | 3x2.2m"], "instruction_attributes": ["light weight"], "instruction_options": ["a31"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EBMD2SN", "worker_id": "AVIEE6LDH0BT5"}], "B09FJS23PM": [{"asin": "B09FJS23PM", "instruction": "i am in need of insulated wine tumbler and natural soy wax candles -4 packs", "attributes": ["lead free", "soy wax", "stainless steel"], "options": [""], "instruction_attributes": ["soy wax"], "instruction_options": [], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SJJRT3E", "worker_id": "A258PTOZ3D2TQR"}], "B08KSR21TM": [{"asin": "B08KSR21TM", "instruction": "i'm looking for travel size men's perfume in a 0.27 fl oz bottle size.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: paco rabanne one million impression", "size: 0.27 fl oz (pack of 1)"], "instruction_attributes": ["travel size"], "instruction_options": ["0.27 fl oz (pack of 1)"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I350X412", "worker_id": "A19317A3X87NVM"}, {"asin": "B08KSR21TM", "instruction": "i am looking for a refillable perfume sprayer for travelling purposes. look for an 8 ml size.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: tiziana terenzi bianco puro impression", "size: 0.17 fl oz | 5ml"], "instruction_attributes": ["travel size"], "instruction_options": [], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98DJKY4", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B08KSR21TM", "instruction": "i'm looking for fragrance for travel size and its for long lasting and need to buy it.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: chanel chance impression", "size: 0.27 fl oz | 8ml"], "instruction_attributes": ["travel size", "long lasting"], "instruction_options": ["chanel chance impression"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMDVXDV", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08KSR21TM", "instruction": "azzaro wanted gil impression perfume travel size refillable and quality should be high", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: azzaro wanted girl impression", "size: 0.17 fl oz | 5ml"], "instruction_attributes": ["travel size", "high quality"], "instruction_options": [], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUBVDZ6", "worker_id": "A3N9ZYQAESNFQH"}], "B08R6NCZ95": [{"asin": "B08R6NCZ95", "instruction": "i am looking for a gluten free snacking avocado with non gmo.", "attributes": ["freeze dried", "sugar free", "non gmo", "gluten free"], "options": [""], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": [], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMP37M9P", "worker_id": "A2HMEGTAFO0CS8"}], "B08NT3YW86": [{"asin": "B08NT3YW86", "instruction": "i'm looking for an aluminum alloy, ultra hd hdmi cable that is designed for plug and play.", "attributes": ["ultra hd", "plug play", "aluminum alloy"], "options": [""], "instruction_attributes": ["ultra hd", "plug play", "aluminum alloy"], "instruction_options": [], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RZ449QZ", "worker_id": "AFU00NU09CFXE"}], "B0017645AM": [{"asin": "B0017645AM", "instruction": "i am looking for gold plated video cables", "attributes": ["blu ray", "gold plated"], "options": [""], "instruction_attributes": ["gold plated"], "instruction_options": [], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RG953EZ", "worker_id": "A16M39T60N60NO"}], "B09SLPNPJ2": [{"asin": "B09SLPNPJ2", "instruction": "i am looking for women fashion sneakers with anti slip, steel toe, high heel, memory foam of size :10", "attributes": ["anti slip", "steel toe", "high heel", "quality materials", "arch support", "memory foam", "rubber sole"], "options": ["size: 10"], "instruction_attributes": ["anti slip", "steel toe", "high heel", "memory foam"], "instruction_options": ["10"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455SKOTYM", "worker_id": "AX2EWYWZM19AZ"}], "B07X7M89C2": [{"asin": "B07X7M89C2", "instruction": "i'm looking for a high performance and high definition bluetooth speakers with stereo sound effect. also, choose golden colored one.", "attributes": ["high performance", "high definition", "aluminum alloy", "stereo sound", "wireless bluetooth"], "options": ["color: golden"], "instruction_attributes": ["high performance", "high definition", "stereo sound", "wireless bluetooth"], "instruction_options": ["golden"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7SFVW7C", "worker_id": "AR0VJ5XRG16UJ"}], "B0741RSZTQ": [{"asin": "B0741RSZTQ", "instruction": "i wanna purchase quadshield black color 50ft coaxial cable for broadband internet connection", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["color: quadshield - black", "size: 100 ft"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["quadshield - black"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTRVNEKH", "worker_id": "A3RBCGB309WPOC"}], "B09KT3S2HF": [{"asin": "B09KT3S2HF", "instruction": "i am looking for white color high power speaker", "attributes": ["high power", "stereo sound"], "options": ["color: white"], "instruction_attributes": ["high power"], "instruction_options": ["white"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96G0FLRNF", "worker_id": "A2MSIFDLOHI1UT"}], "B07WYFCZH7": [{"asin": "B07WYFCZH7", "instruction": "i am looking for super soft fastupda fleece throw blanket of size (50\"x80\")", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: style 5", "size: 50\" x 80\""], "instruction_attributes": ["super soft"], "instruction_options": ["50\" x 80\""], "assignment_id": "3VE8AYVF8X77K71YXMTACN228WAF8J", "worker_id": "AX2EWYWZM19AZ"}], "B09C7NSC1K": [{"asin": "B09C7NSC1K", "instruction": "i am looking a cosmetic display cases for lipstick eyeshadow highliter blushes brushes", "attributes": ["storage case", "eye shadow"], "options": [""], "instruction_attributes": ["storage case", "eye shadow"], "instruction_options": [], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY9S1UX8", "worker_id": "A3N9ZYQAESNFQH"}], "B08SBZPV6D": [{"asin": "B08SBZPV6D", "instruction": "i want to buy famous tik-tok leggings, yoga pants for women which have high waist tummy control booty bubble and hip lifting with running tights. which is the size x-small and a-red color.", "attributes": ["quick drying", "moisture wicking", "butt lifting", "tummy control", "high waist", "polyester spandex"], "options": ["color: a-red", "size: x-small"], "instruction_attributes": ["butt lifting", "tummy control", "high waist"], "instruction_options": ["a-red", "x-small"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV47OZ9I", "worker_id": "A59DVED5S9N9Y"}], "B09LHDGJ4G": [{"asin": "B09LHDGJ4G", "instruction": "i am in need of large sized wine color long sleeve shirts for women", "attributes": ["slim fit", "long sleeve", "short sleeve", "teen girls"], "options": ["color: z04-wine", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["z04-wine", "large"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBDC14Q9", "worker_id": "A258PTOZ3D2TQR"}], "B09MCMWHHR": [{"asin": "B09MCMWHHR", "instruction": "i am looking for eco friendly water ripple multicolor glass window film of size : 17.7\"x47.2\"x2pcs", "attributes": ["eco friendly", "living room"], "options": ["color: multi-01046", "size: 17.7\" x 47.2\" x 2 pcs"], "instruction_attributes": ["eco friendly"], "instruction_options": ["17.7\" x 47.2\" x 2 pcs"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB669F5H", "worker_id": "AX2EWYWZM19AZ"}], "B098D2ZY3J": [{"asin": "B098D2ZY3J", "instruction": "i am interested in buying a cookies which can be perfect gift, and the flavor of which is of donut", "attributes": ["gift basket", "gift set", "perfect gift"], "options": ["flavor name: donut"], "instruction_attributes": ["perfect gift"], "instruction_options": ["donut"], "assignment_id": "3EG49X3515M1GF9V412YYG6I66K6XJ", "worker_id": "AJY5G987IRT25"}], "B094CG6VJF": [{"asin": "B094CG6VJF", "instruction": "i would like a white 42 by 72 inch window panel for my living room.", "attributes": ["machine washable", "easy install", "exquisite workmanship", "living room"], "options": ["color: white", "size: 42''wx72''l"], "instruction_attributes": ["living room"], "instruction_options": ["white", "42''wx72''l"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPHCOWTQ", "worker_id": "A1WS884SI0SLO4"}], "B09NNKB863": [{"asin": "B09NNKB863", "instruction": "i am looking for photo background high resolution in 15*10ft", "attributes": ["light weight", "high resolution", "high definition", "digital photography"], "options": ["size: 15x10ft"], "instruction_attributes": ["high resolution"], "instruction_options": ["15x10ft"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSPMJJGL", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B09NNKB863", "instruction": "i need a six by four foot backdrop for digital photography. it should be high resolution and light weight.", "attributes": ["light weight", "high resolution", "high definition", "digital photography"], "options": ["size: 6x4ft"], "instruction_attributes": ["light weight", "high resolution", "digital photography"], "instruction_options": ["6x4ft"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6OT7UA", "worker_id": "AR9AU5FY1S3RO"}], "B09BZWDPYR": [{"asin": "B09BZWDPYR", "instruction": "i want notmilk chocolate plant-based milk.", "attributes": ["plant based", "lactose free", "shelf stable", "non gmo", "soy free", "gluten free"], "options": [""], "instruction_attributes": ["plant based"], "instruction_options": [], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKDY3PI5", "worker_id": "A2RBF3IIJP15IH"}], "B08P5Y825J": [{"asin": "B08P5Y825J", "instruction": "i want a book case made from solid to use as a decoration in my living room", "attributes": ["mid century", "heavy duty", "easy assemble", "storage unit", "solid wood", "living room"], "options": ["color: black", "size: 6 shelf"], "instruction_attributes": ["solid wood", "living room"], "instruction_options": [], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0WFRGF4", "worker_id": "AVIEE6LDH0BT5"}], "B09FZ9X3S1": [{"asin": "B09FZ9X3S1", "instruction": "i am looking for a cat paw pink kid\u2019s toothbrush that is easy to use.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: cat paw,pink", "size: age 2-6"], "instruction_attributes": ["easy use"], "instruction_options": ["cat paw,pink"], "assignment_id": "3X0H8UUITCYRED22199FX2O3FT8WSZ", "worker_id": "AHU9OLV0YKIIW"}], "B093D82CN7": [{"asin": "B093D82CN7", "instruction": "i want machine washable pajamas", "attributes": ["machine wash", "quick drying", "moisture wicking", "machine washable", "elastic waistband", "long sleeve"], "options": ["color: dark blue", "size: small"], "instruction_attributes": ["machine washable"], "instruction_options": [], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBDCRQ4L", "worker_id": "AVIEE6LDH0BT5"}], "B07PHVWYYY": [{"asin": "B07PHVWYYY", "instruction": "i am looking for a tampered glass screen protector which is bubble free.", "attributes": ["tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["tempered glass", "glass screen"], "instruction_options": [], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9M0309P", "worker_id": "AHU9OLV0YKIIW"}], "B07SQ6846S": [{"asin": "B07SQ6846S", "instruction": "i would like to buy a pencil backdrop which is of high resolution, it is easy carry, and has a size of 6x4ft-vinyl", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 6x4ft-vinyl"], "instruction_attributes": ["high resolution", "easy carry"], "instruction_options": ["6x4ft-vinyl"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYJAAMTP", "worker_id": "AJY5G987IRT25"}], "B09GLVLL82": [{"asin": "B09GLVLL82", "instruction": "i need 17 pcs of space saving porcelain ceramic tea sets", "attributes": ["lead free", "space saving"], "options": [""], "instruction_attributes": ["space saving"], "instruction_options": [], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JQ18SYU", "worker_id": "A258PTOZ3D2TQR"}], "B09Q28265S": [{"asin": "B09Q28265S", "instruction": "i am seraching for eco friendly candles and clean cotton holders for my home & kitchen.", "attributes": ["lead free", "eco friendly"], "options": ["scent: clean cotton"], "instruction_attributes": ["eco friendly"], "instruction_options": ["clean cotton"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XQVM6VQ", "worker_id": "A3R8PQCD99H61E"}, {"asin": "B09Q28265S", "instruction": "i want a autumn spice jar candle that is eco friendly.", "attributes": ["lead free", "eco friendly"], "options": ["scent: autumn spice"], "instruction_attributes": ["eco friendly"], "instruction_options": ["autumn spice"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRZSF3E", "worker_id": "A1WS884SI0SLO4"}], "B093YRM6FL": [{"asin": "B093YRM6FL", "instruction": "i want a set of 2 mesh laundry bags with green leaves design.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCNA6SAL", "worker_id": "A2RBF3IIJP15IH"}], "B08XH5G5DG": [{"asin": "B08XH5G5DG", "instruction": "i am looking for non gmo, nut free, gluten free and real fruit , all natural fruit snacks with flaovr name : passion fruit power pals", "attributes": ["gluten free", "low fat", "certified organic", "low carb", "non gmo", "nut free", "low calorie", "real fruit"], "options": ["flavor name: passion fruit power pals"], "instruction_attributes": ["gluten free", "non gmo", "nut free", "real fruit"], "instruction_options": ["passion fruit power pals"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZGWGV9C", "worker_id": "AX2EWYWZM19AZ"}], "B09MMYY1WG": [{"asin": "B09MMYY1WG", "instruction": "find a toothpaste with natural ingredients", "attributes": ["teeth whitening", "natural ingredients"], "options": ["color: d"], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBF1VZK7", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B09MMYY1WG", "instruction": "i would like a color a toothpaste made from natural ingredients.", "attributes": ["teeth whitening", "natural ingredients"], "options": ["color: a"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["a"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98UQKY9", "worker_id": "A1WS884SI0SLO4"}], "B08BSWZJ4G": [{"asin": "B08BSWZJ4G", "instruction": "i am looking for ready eat in coconut & kale", "attributes": ["ready eat", "fully cooked"], "options": ["flavor name: coconut & kale"], "instruction_attributes": ["ready eat"], "instruction_options": ["coconut & kale"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URXDE1CC", "worker_id": "A2MSIFDLOHI1UT"}], "B073JBV926": [{"asin": "B073JBV926", "instruction": "i am looking for ivory color rugs for dining room", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: ivory | gold", "item shape: square", "size: 8 ft x 10 ft"], "instruction_attributes": ["dining room"], "instruction_options": ["ivory | gold"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DZS928Q", "worker_id": "A16M39T60N60NO"}, {"asin": "B073JBV926", "instruction": "i need a living room rug that is gold and ivory in the shape of a square.", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: gold | ivory", "item shape: square", "size: 2 ft x 3 ft"], "instruction_attributes": ["living room"], "instruction_options": ["gold | ivory", "square"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEKL86W", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B073JBV926", "instruction": "i am looking for rectangular shaped dark grey color entryway plush thick area rug of size 2 ft 3 in x 6 ft for living room", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: dark grey | ivory", "item shape: rectangular", "size: 2 ft 3 in x 6 ft"], "instruction_attributes": ["living room"], "instruction_options": ["dark grey | ivory", "2 ft 3 in x 6 ft"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPR6FW2", "worker_id": "A258PTOZ3D2TQR"}], "B08N52H4T2": [{"asin": "B08N52H4T2", "instruction": "i am looking for super soft multi color duvet cover sets", "attributes": ["super soft", "machine washable", "king size"], "options": ["color: multi 20", "size: full"], "instruction_attributes": ["super soft"], "instruction_options": ["multi 20"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FIFA4ZR", "worker_id": "A16M39T60N60NO"}, {"asin": "B08N52H4T2", "instruction": "i'm looking for a super soft leopard pattern duvet with multi 3 colors. king and queen size please thanks.", "attributes": ["super soft", "machine washable", "king size"], "options": ["color: multi 3", "size: queen"], "instruction_attributes": ["super soft", "king size"], "instruction_options": ["multi 3", "queen"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIWN9T2", "worker_id": "A1Q0EUNCS50S8M"}], "B07DVTNWND": [{"asin": "B07DVTNWND", "instruction": "i am looking a gift set of jams and jellies gluten free variety-favorites size 1.25 pound", "attributes": ["gluten free", "natural ingredients", "gift set"], "options": ["flavor: variety - favorites", "size: 1.25 pound (pack of 2)"], "instruction_attributes": ["gluten free", "gift set"], "instruction_options": ["variety - favorites", "1.25 pound (pack of 2)"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053MY35I0", "worker_id": "A3N9ZYQAESNFQH"}], "B09QGL58LF": [{"asin": "B09QGL58LF", "instruction": "complete, easy-to-carry orthodontic storage case", "attributes": ["easy carry", "storage case"], "options": ["color: assorted color 1"], "instruction_attributes": ["easy carry", "storage case"], "instruction_options": [], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YXJQ4TD", "worker_id": "A3TTGSUBIK1YCL"}], "B082LK92B2": [{"asin": "B082LK92B2", "instruction": "i want to buy hair color which is dermatologist test, is oil free, and is of dark chocolate color", "attributes": ["dermatologist tested", "oil free", "long lasting", "argan oil", "permanent hair", "hair dye"], "options": ["color: dark chocolate"], "instruction_attributes": ["dermatologist tested", "oil free"], "instruction_options": ["dark chocolate"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VGUX203", "worker_id": "AJY5G987IRT25"}], "B09913B3WZ": [{"asin": "B09913B3WZ", "instruction": "i'm looking for a 32 ounce package of gluten free almond flour.", "attributes": ["grain free", "gluten free", "non gmo", "low carb", "plant based", "resealable bag"], "options": ["flavor name: almond coconut", "size: 32 ounce"], "instruction_attributes": ["gluten free"], "instruction_options": ["32 ounce"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZBJGC83", "worker_id": "A2JP9IKRHNLRPI"}], "B08GCJYF4M": [{"asin": "B08GCJYF4M", "instruction": "i'm looking for a mini desktop pc with an intel core i7-9750h processor.", "attributes": ["dual band", "intel core"], "options": ["color: core i7-9750h", "size: 4gb ddr4 ram 256gb nvme ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["core i7-9750h"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF46QZMC", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B08GCJYF4M", "instruction": "i am looking for a windows 10 pro mini computer with an intel core i7-10750h, 32 gigabytes of ram, a 256 gigabyte ssd and gigabyte ethernet.", "attributes": ["dual band", "intel core"], "options": ["color: core i7-10750h", "size: 16gb ram+256gb ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["core i7-10750h"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDARGXZX", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08GCJYF4M", "instruction": "i need an intel core i7 mini computer.", "attributes": ["dual band", "intel core"], "options": ["color: core i7-7820hk ddr4", "size: 8gb ddr4 ram 128gb nvme ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["core i7-7820hk ddr4"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107UFLIR", "worker_id": "A19317A3X87NVM"}, {"asin": "B08GCJYF4M", "instruction": "i need a dual band computer with intel core, 64 gb ram and 1tb ssd.", "attributes": ["dual band", "intel core"], "options": ["color: core i7-10750h", "size: 64gb ram+1tb ssd"], "instruction_attributes": ["dual band", "intel core"], "instruction_options": ["64gb ram+1tb ssd"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK1LJ3N", "worker_id": "A1NF6PELRKACS9"}], "B09J8B4HF8": [{"asin": "B09J8B4HF8", "instruction": "i am looking for a high quality glossy pink nail polish storage case that is easy to clean.", "attributes": ["easy clean", "high quality", "storage case", "nail polish"], "options": ["color: glossy pink"], "instruction_attributes": ["easy clean", "high quality", "storage case", "nail polish"], "instruction_options": ["glossy pink"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22Q1WEQQ", "worker_id": "A1EREKSZAA9V7B"}], "B07BQJ4ZY3": [{"asin": "B07BQJ4ZY3", "instruction": "i am looking for gluten free cinnamon crisps", "attributes": ["gluten free", "keto friendly", "low carb", "non gmo"], "options": ["flavor name: cinnamon crisps", "size: 3.95 ounce (pack of 4)"], "instruction_attributes": ["gluten free"], "instruction_options": ["cinnamon crisps"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJPYYYD6", "worker_id": "A16M39T60N60NO"}], "B08Z43RZH5": [{"asin": "B08Z43RZH5", "instruction": "i am looking for a portable wireless bluetooth speaker with high performance. also choose green color.", "attributes": ["high performance", "stereo sound", "wireless bluetooth"], "options": ["color: green"], "instruction_attributes": ["high performance", "wireless bluetooth"], "instruction_options": ["green"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV4AWITDE", "worker_id": "A2HMEGTAFO0CS8"}], "B097NMV9LS": [{"asin": "B097NMV9LS", "instruction": "i want a gentle facial cleanser for acne prone & sensitive skin.", "attributes": ["oil free", "animal testing", "sensitive skin"], "options": ["style: gentle facial cleanser for acne-prone & sensitive skin"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["gentle facial cleanser for acne-prone & sensitive skin"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOJZCEFL", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B097NMV9LS", "instruction": "i'm interested in calming gel acne facial moisturizer for sensitive skin that is oil-free and not tested on animals.", "attributes": ["oil free", "animal testing", "sensitive skin"], "options": ["style: calming gel acne facial moisturizer"], "instruction_attributes": ["oil free", "animal testing", "sensitive skin"], "instruction_options": ["calming gel acne facial moisturizer"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZ2UO8G", "worker_id": "AFU00NU09CFXE"}], "B07MTNSZRG": [{"asin": "B07MTNSZRG", "instruction": "i am looking for red color short sleeve shirts", "attributes": ["easy care", "day comfort", "moisture wicking", "hand wash", "short sleeve", "daily wear"], "options": ["color: red", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["red"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XPYG9L9", "worker_id": "A2MSIFDLOHI1UT"}], "B0195UTJ48": [{"asin": "B0195UTJ48", "instruction": "i'm looking for a toothpaste that clears bad breath and gives fresh breath.", "attributes": ["fresh breath", "bad breath"], "options": [""], "instruction_attributes": ["fresh breath", "bad breath"], "instruction_options": [], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3RRI1MU", "worker_id": "AR0VJ5XRG16UJ"}], "B07N8JDZ1R": [{"asin": "B07N8JDZ1R", "instruction": "i want a light gray oliver king size arched tufted platform bed.", "attributes": ["button tufted", "king size", "box spring"], "options": ["color: light gray", "size: twin"], "instruction_attributes": ["king size"], "instruction_options": ["light gray"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZEOW0S4", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07N8JDZ1R", "instruction": "i would like a queen sized black bed with a box spring.", "attributes": ["button tufted", "king size", "box spring"], "options": ["color: black", "size: queen"], "instruction_attributes": ["box spring"], "instruction_options": ["black", "queen"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1B0I29", "worker_id": "A1WS884SI0SLO4"}], "B099RNR9YY": [{"asin": "B099RNR9YY", "instruction": "i am looking for fuzzy sandals open toe fox fur slippers in khaki", "attributes": ["open toe", "knee high", "arch support", "ankle strap", "closed toe", "memory foam", "rubber sole"], "options": ["color: khaki", "size: 9 wide"], "instruction_attributes": ["open toe"], "instruction_options": ["khaki"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97ECOZU6B", "worker_id": "A2MSIFDLOHI1UT"}], "B086BLTNF6": [{"asin": "B086BLTNF6", "instruction": "i want a easy to clean bag", "attributes": ["easy carry", "non toxic", "easy clean", "fine mist"], "options": ["size: 6 size"], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMKX3LO0", "worker_id": "AVIEE6LDH0BT5"}], "B07CYJ5RR8": [{"asin": "B07CYJ5RR8", "instruction": "find cookies made with high fructose", "attributes": ["non gmo", "artificial flavors", "artificial colors", "high fructose"], "options": ["flavor name: chocolate, vanilla & strawberry", "size: 4.23 ounce (pack of 3)"], "instruction_attributes": ["high fructose"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHQPHQDV", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B07CYJ5RR8", "instruction": "i would like a six pack of 34.92 ounce non-gmo cookies.", "attributes": ["non gmo", "artificial flavors", "artificial colors", "high fructose"], "options": ["flavor name: vanilla", "size: 34.92 oz (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["vanilla", "34.92 oz (pack of 6)"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME9052DS", "worker_id": "A1WS884SI0SLO4"}], "B08XVVWBZB": [{"asin": "B08XVVWBZB", "instruction": "i am looking for pink color hair removal razors", "attributes": ["easy use", "hair removal"], "options": ["color: pink"], "instruction_attributes": ["hair removal"], "instruction_options": ["pink"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA58UM9IV", "worker_id": "A2MSIFDLOHI1UT"}], "B087R7CNGV": [{"asin": "B087R7CNGV", "instruction": "i am looking for easy to install video player", "attributes": ["plug play", "easy install", "quad core"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CV0A4SM", "worker_id": "A2MSIFDLOHI1UT"}], "B096ZHCL38": [{"asin": "B096ZHCL38", "instruction": "i want cake toppers for a baby shower.", "attributes": ["easy use", "baby shower", "party supplies"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "38F71OA9G46M5W32RN3TH53XS11FM9", "worker_id": "A2RBF3IIJP15IH"}], "B087WVQBY1": [{"asin": "B087WVQBY1", "instruction": "i am looking for gluten free doodles wavy corn chips, 1.37 ounce (pack of 36)", "attributes": ["gluten free", "0g trans"], "options": ["size: 1.37 ounce (pack of 36)"], "instruction_attributes": ["gluten free"], "instruction_options": ["1.37 ounce (pack of 36)"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGC6QJEQ", "worker_id": "A258PTOZ3D2TQR"}], "B07N7C3NY4": [{"asin": "B07N7C3NY4", "instruction": "i'm looking for a high waist boxer brief for men made of stretchable polyester spandex fabric. also choose x-large style 1.", "attributes": ["stretch fabric", "high waist", "polyester spandex"], "options": ["color: style 1", "size: x-large"], "instruction_attributes": ["stretch fabric", "high waist", "polyester spandex"], "instruction_options": ["style 1", "x-large"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDS269FG", "worker_id": "AR0VJ5XRG16UJ"}], "B08KPDBL5H": [{"asin": "B08KPDBL5H", "instruction": "find a lactose free cake topper", "attributes": ["lactose free", "easy use", "sugar free", "dairy free"], "options": ["pattern name: edible poker"], "instruction_attributes": ["lactose free"], "instruction_options": [], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFHHWGBJ", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B08KPDBL5H", "instruction": "i am looking to purchase a dollar-patterned cake topper that has to be lactose and dairy free.", "attributes": ["lactose free", "easy use", "sugar free", "dairy free"], "options": ["pattern name: new dollar"], "instruction_attributes": ["lactose free", "dairy free"], "instruction_options": ["new dollar"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQCCRJ4", "worker_id": "A114NK7T5673GK"}], "B018RMJD3M": [{"asin": "B018RMJD3M", "instruction": "i am looking for a coconut oil for hair growth. also choose 8 fl oz ( pack 1)", "attributes": ["coconut oil", "hair growth"], "options": ["size: 8 fl oz (pack of 1)"], "instruction_attributes": ["coconut oil", "hair growth"], "instruction_options": ["8 fl oz (pack of 1)"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6DSNV01", "worker_id": "A2HMEGTAFO0CS8"}], "B072J9W4R9": [{"asin": "B072J9W4R9", "instruction": "i want a vanguard veo 2 204ab black carbon fiber tripod.", "attributes": ["long lasting", "carbon fiber"], "options": ["style: veo 2 204ab black"], "instruction_attributes": ["carbon fiber"], "instruction_options": [], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275018G64P9", "worker_id": "A2RBF3IIJP15IH"}], "B000GG0BPW": [{"asin": "B000GG0BPW", "instruction": "i want six boxes of earl grey decaf with 20 individually wrapper bags.", "attributes": ["individually wrapped", "kosher certified", "gluten free"], "options": ["flavor name: earl grey decaf", "size: 20 count (pack of 6)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["earl grey decaf", "20 count (pack of 6)"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M10QYPA1", "worker_id": "A1WS884SI0SLO4"}], "B074LBXWK5": [{"asin": "B074LBXWK5", "instruction": "i am looking for high quality pink color bags", "attributes": ["bpa free", "high quality", "travel bottles"], "options": ["color: pink", "size: pack of 12"], "instruction_attributes": ["high quality"], "instruction_options": ["pink"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54PA2YE2", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B074LBXWK5", "instruction": "i need a bpa free bag that is blue", "attributes": ["bpa free", "high quality", "travel bottles"], "options": ["color: blue", "size: pack of 30"], "instruction_attributes": ["bpa free"], "instruction_options": ["blue"], "assignment_id": "37C0GNLMHQDNI94ED11M493QPCWD6N", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GSSDYVV": [{"asin": "B09GSSDYVV", "instruction": "carbamide peroxide whitening pen, easy to use", "attributes": ["teeth whitening", "easy use", "high quality", "sensitive teeth"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWMEAJ62DW", "worker_id": "A3TTGSUBIK1YCL"}], "B06XRXHKBN": [{"asin": "B06XRXHKBN", "instruction": "i am looking for machine washable ambesonne ocean kitchen curtains of color : green yellow", "attributes": ["machine washable", "printing technology"], "options": ["color: green yellow"], "instruction_attributes": ["machine washable"], "instruction_options": ["green yellow"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZD4W7IF", "worker_id": "AX2EWYWZM19AZ"}], "B097Q8F6C4": [{"asin": "B097Q8F6C4", "instruction": "i want a easy to use eyeshadow", "attributes": ["easy use", "eye shadow"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG6V8WI9", "worker_id": "AVIEE6LDH0BT5"}], "B09LSBCVQT": [{"asin": "B09LSBCVQT", "instruction": "i would like a brown dining set that is easy to install.", "attributes": ["non slip", "easy install", "dining room", "living room"], "options": ["color: brown"], "instruction_attributes": ["easy install"], "instruction_options": ["brown"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM97PI4G4", "worker_id": "A1WS884SI0SLO4"}], "B01BY04QIG": [{"asin": "B01BY04QIG", "instruction": "i would like ten 100 ft long gold plated hdmi male male cable.", "attributes": ["high speed", "gold plated"], "options": ["configuration: hdmi male-male", "pattern name: 10 pack", "size: 100ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["hdmi male-male", "10 pack", "100ft"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8OYEKBR", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01BY04QIG", "instruction": "look for 100ft high speed hdmi cable male to male with ethernet black (50 feet/15.2 meters). show me the price .", "attributes": ["high speed", "gold plated"], "options": ["configuration: hdmi 2.1", "pattern name: 4 pack", "size: 100ft"], "instruction_attributes": ["high speed"], "instruction_options": ["100ft"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C57HPQ", "worker_id": "A15IJ20C3R4HUO"}], "B09LV4XQ28": [{"asin": "B09LV4XQ28", "instruction": "find a leak proof bag", "attributes": ["leak proof", "travel bottles"], "options": ["color: coral reef", "size: 20 oz"], "instruction_attributes": ["leak proof"], "instruction_options": [], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHVGYALP", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B09LV4XQ28", "instruction": "i'm looking for white colored travel bottles easy to carry.", "attributes": ["leak proof", "travel bottles"], "options": ["color: white marble", "size: 20 oz"], "instruction_attributes": ["travel bottles"], "instruction_options": ["white marble"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK0GUIW", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09LV4XQ28", "instruction": "i'm looking for light weighted travel bottles and the color was pink bottles.", "attributes": ["leak proof", "travel bottles"], "options": ["color: pink topaz", "size: 16 oz"], "instruction_attributes": ["travel bottles"], "instruction_options": ["pink topaz"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPGV6V4", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09LV4XQ28", "instruction": "i want a s'well 12 oz travel bottle set.", "attributes": ["leak proof", "travel bottles"], "options": ["color: onyx, white marble, silver living", "size: 12 oz"], "instruction_attributes": ["travel bottles"], "instruction_options": ["12 oz"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8I55RY", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09LV4XQ28", "instruction": "i want a leak proof and blonde s'well travel bottle set.", "attributes": ["leak proof", "travel bottles"], "options": ["color: blonde wood", "size: 3.4 oz"], "instruction_attributes": ["leak proof"], "instruction_options": ["blonde wood"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE20AQGJ", "worker_id": "A2RBF3IIJP15IH"}], "B0041VVEWW": [{"asin": "B0041VVEWW", "instruction": "i am looking for birkenstock gizeh synthetic sole in navy oiled leather", "attributes": ["synthetic sole", "arch support"], "options": ["color: navy oiled leather", "size: 5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["navy oiled leather"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275018G34P6", "worker_id": "A2MSIFDLOHI1UT"}, {"asin": "B0041VVEWW", "instruction": "i like synthetic sole in graceful antique lace", "attributes": ["synthetic sole", "arch support"], "options": ["color: graceful antique lace", "size: 7-7.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["graceful antique lace"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WX6A15", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B0041VVEWW", "instruction": "i'm looking for birkenstock gizeh.", "attributes": ["synthetic sole", "arch support"], "options": ["color: sandcastle nubuck", "size: 9.5"], "instruction_attributes": ["arch support"], "instruction_options": ["sandcastle nubuck"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME97VD27", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B0041VVEWW", "instruction": "i need some taupe flip flops that have arch support", "attributes": ["synthetic sole", "arch support"], "options": ["color: taupe", "size: 2-2.5 narrow little kid"], "instruction_attributes": ["arch support"], "instruction_options": ["taupe"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQG2915", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0041VVEWW", "instruction": "i need 5 size synthetic sole brown color gizeh sandals", "attributes": ["synthetic sole", "arch support"], "options": ["color: copper,metallic,brown", "size: 5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["5"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ4KRNR", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B0041VVEWW", "instruction": "i would like a size 5 narrow tobacco brown flip flops with a synthetic sole.", "attributes": ["synthetic sole", "arch support"], "options": ["color: tabacco brown", "size: 5-5.5 narrow"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["tabacco brown", "5-5.5 narrow"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQNZP0O", "worker_id": "A1WS884SI0SLO4"}], "B087YVBDT5": [{"asin": "B087YVBDT5", "instruction": "i am looking for non gmo, gluten free and artificial colors o2 oxygenated recovery drink with flavor name: lemon lime", "attributes": ["keto friendly", "non gmo", "gluten free", "artificial colors"], "options": ["flavor name: lemon lime"], "instruction_attributes": ["non gmo", "gluten free", "artificial colors"], "instruction_options": ["lemon lime"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGU3NQOR", "worker_id": "AX2EWYWZM19AZ"}], "B08TKLPXSB": [{"asin": "B08TKLPXSB", "instruction": "i am looking for a slip loafer with vinyl acetate. also choose dark khaki suede color and 7 narrow size.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: dark khaki suede", "size: 7 narrow"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["dark khaki suede"], "assignment_id": "38F71OA9G46M5W32RN3TH53XS12MFH", "worker_id": "A2HMEGTAFO0CS8"}], "B098D1Z5HM": [{"asin": "B098D1Z5HM", "instruction": "i need sugar free low carb, barbecue flavored marinade for meats, 102 ounce (pack of 3)", "attributes": ["low carb", "sugar free", "zero sugar", "natural ingredients"], "options": ["flavor name: barbecue", "size: 102 ounce (pack of 3)"], "instruction_attributes": ["low carb", "sugar free"], "instruction_options": ["barbecue", "102 ounce (pack of 3)"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17YL9Y38", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B098D1Z5HM", "instruction": "i am looking for low carb, sugar free barbecue marinade in the 18 ounce size.", "attributes": ["low carb", "sugar free", "zero sugar", "natural ingredients"], "options": ["flavor name: barbecue", "size: 18 ounce"], "instruction_attributes": ["low carb", "sugar free"], "instruction_options": ["barbecue", "18 ounce"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY614JN", "worker_id": "AK3JMCIGU8MLU"}], "B07Q38NGLJ": [{"asin": "B07Q38NGLJ", "instruction": "i am looking for gluten free, non gmo and soy free b.fine foods snack mix with size: 4 ounce (pack of 3)", "attributes": ["grain free", "gluten free", "non gmo", "artificial ingredients", "soy free", "keto friendly", "dairy free"], "options": ["flavor name: montreal chophouse", "size: 4 ounce (pack of 3)"], "instruction_attributes": ["gluten free", "non gmo", "soy free"], "instruction_options": ["4 ounce (pack of 3)"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96G0FKNRA", "worker_id": "AX2EWYWZM19AZ"}], "B08QTQZYFV": [{"asin": "B08QTQZYFV", "instruction": "i want a bagel made from high quality ingredients", "attributes": ["quality ingredients", "high fructose", "artificial flavors"], "options": [""], "instruction_attributes": ["quality ingredients"], "instruction_options": [], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8X6D42L", "worker_id": "AVIEE6LDH0BT5"}], "B09BJ2H8FP": [{"asin": "B09BJ2H8FP", "instruction": "i am looking for black color hair dye", "attributes": ["easy use", "natural ingredients", "hair dye", "damaged hair"], "options": [""], "instruction_attributes": ["hair dye"], "instruction_options": [], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI997VYKJ", "worker_id": "A2MSIFDLOHI1UT"}], "B09PV3LHTQ": [{"asin": "B09PV3LHTQ", "instruction": "i need a a23 colored light weight background", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a23", "size: 5x3ft | 1.5x1m"], "instruction_attributes": ["light weight"], "instruction_options": ["a23"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU5PZR68", "worker_id": "AVIEE6LDH0BT5"}], "B093KFVZZT": [{"asin": "B093KFVZZT", "instruction": "purse set for washing blouse and underwear bra and panties", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCNA5SAK", "worker_id": "A3TTGSUBIK1YCL"}], "B0868CP39L": [{"asin": "B0868CP39L", "instruction": "i am looking a long lasting hair cutting kits for hair salon color :sugur skull and flower", "attributes": ["long lasting", "hair salon", "hair cutting", "dry hair"], "options": ["color: sugar skull and flowers"], "instruction_attributes": ["long lasting", "hair salon", "hair cutting"], "instruction_options": ["sugar skull and flowers"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8NZ2LWC", "worker_id": "A3N9ZYQAESNFQH"}], "B09SZM3FZP": [{"asin": "B09SZM3FZP", "instruction": "i am interested in buying shampoo for hair treatment.", "attributes": ["hair treatment", "hair growth", "hair loss"], "options": [""], "instruction_attributes": ["hair treatment"], "instruction_options": [], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPXUIK06", "worker_id": "AJY5G987IRT25"}], "B09NYG6X57": [{"asin": "B09NYG6X57", "instruction": "i am looking for long lasting and nail polish cute blushs makecup palettes of color:c", "attributes": ["cruelty free", "long lasting", "nail polish"], "options": ["color: c"], "instruction_attributes": ["long lasting", "nail polish"], "instruction_options": ["c"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366P72OPZ", "worker_id": "AX2EWYWZM19AZ"}], "B08NFDW21H": [{"asin": "B08NFDW21H", "instruction": "i want a bpa free autobrush brush head replacement for kids.", "attributes": ["bpa free", "cruelty free", "oral hygiene"], "options": ["color: kids", "style: ages 3-4 (2-pack)"], "instruction_attributes": ["bpa free"], "instruction_options": ["kids"], "assignment_id": "37C0GNLMHQDNI94ED11M493QQO8D6O", "worker_id": "A2RBF3IIJP15IH"}], "B08CR8WHD9": [{"asin": "B08CR8WHD9", "instruction": "i want a dual band beelink u59 mini pc with u59 8+256g.", "attributes": ["wall mounted", "dual band"], "options": ["size: u59 8+256g"], "instruction_attributes": ["dual band"], "instruction_options": ["u59 8+256g"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8AEX2WV4", "worker_id": "A2RBF3IIJP15IH"}], "B086Q83NQP": [{"asin": "B086Q83NQP", "instruction": "i want a gluten free cake snack", "attributes": ["gluten free", "nut free", "soy free", "dairy free", "simple ingredients"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGVPEMRD", "worker_id": "AVIEE6LDH0BT5"}], "B07JH1CRTB": [{"asin": "B07JH1CRTB", "instruction": "i want a gluten free gourmet popcorn", "attributes": ["gluten free", "resealable bag"], "options": ["flavor name: original canister"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWUE779U", "worker_id": "AVIEE6LDH0BT5"}], "B01I4WNGM4": [{"asin": "B01I4WNGM4", "instruction": "i am interested in buying hdmi adapter cable which is compatible with apple, and is of white color while the size should be 6ft", "attributes": ["compatible apple", "1080p hd"], "options": ["color: white 1080p", "size: 6ft"], "instruction_attributes": ["compatible apple"], "instruction_options": ["white 1080p", "6ft"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDPATVRZY", "worker_id": "AJY5G987IRT25"}], "B081XFTW4K": [{"asin": "B081XFTW4K", "instruction": "i am looking for ready to eat peanut butter and jelly", "attributes": ["gmo free", "ready eat", "non gmo"], "options": ["flavor name: peanut butter & jelly", "size: 2.65 ounce (pack of 24)"], "instruction_attributes": ["ready eat"], "instruction_options": ["peanut butter & jelly"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI8DNYQB", "worker_id": "A16M39T60N60NO"}], "B00LMHD160": [{"asin": "B00LMHD160", "instruction": "i want a low carb cake", "attributes": ["low carb", "low calorie", "fat free", "sugar free"], "options": ["flavor: cheddar cheese", "size: 0.17 ounce (pack of 6)"], "instruction_attributes": ["low carb"], "instruction_options": [], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUVOBCMX", "worker_id": "AVIEE6LDH0BT5"}], "B09KGR7K6Q": [{"asin": "B09KGR7K6Q", "instruction": "i am looking for a grey bunk bed with slats made of solid wood.", "attributes": ["space saving", "solid wood"], "options": ["color: grey"], "instruction_attributes": ["solid wood"], "instruction_options": ["grey"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB1915W7", "worker_id": "AHU9OLV0YKIIW"}], "B096XF18FL": [{"asin": "B096XF18FL", "instruction": "i am looking for ultra hd surveillance dvr kits", "attributes": ["ultra hd", "plug play", "motion detection"], "options": [""], "instruction_attributes": ["ultra hd"], "instruction_options": [], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GD0SUKLG", "worker_id": "A2MSIFDLOHI1UT"}], "B00JWJEYCU": [{"asin": "B00JWJEYCU", "instruction": "i want a red ergonomic office chair with lumbar support.", "attributes": ["high density", "lumbar support"], "options": ["color: red", "size: 2"], "instruction_attributes": ["lumbar support"], "instruction_options": ["red"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YO0LTNX", "worker_id": "A2RBF3IIJP15IH"}], "B09KBD72NV": [{"asin": "B09KBD72NV", "instruction": "i'm looking for a plant based, non-dairy milk maker. also choose white milkmade with 6 storage glass one.", "attributes": ["non dairy", "plant based"], "options": ["style: white milkmade with 6 storage glass cara..."], "instruction_attributes": ["non dairy", "plant based"], "instruction_options": ["white milkmade with 6 storage glass cara..."], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI1AHCCP", "worker_id": "AR0VJ5XRG16UJ"}], "B097CC8FNN": [{"asin": "B097CC8FNN", "instruction": "i am looking for oral hygiene dental tools of design: set of 4", "attributes": ["stainless steel", "oral hygiene"], "options": ["design: set of 4 (dental hygiene kit)"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["set of 4 (dental hygiene kit)"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBNBIG2G", "worker_id": "AX2EWYWZM19AZ"}], "B09423373K": [{"asin": "B09423373K", "instruction": "i am looking for oily skin to instantly remove excess oil & shine in easy use", "attributes": ["oil free", "easy use"], "options": [""], "instruction_attributes": ["oil free", "easy use"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33O26P2U", "worker_id": "A2MSIFDLOHI1UT"}], "B09DYK18MN": [{"asin": "B09DYK18MN", "instruction": "find boots with arch support", "attributes": ["knee high", "high heel", "arch support"], "options": ["color: z6-white", "size: 7"], "instruction_attributes": ["arch support"], "instruction_options": [], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK7M7YYH", "worker_id": "AVIEE6LDH0BT5"}], "B07PWVF9W8": [{"asin": "B07PWVF9W8", "instruction": "i want to buy dual usb 3.0 male to usb 3.0 female auxiliary which is fast charging and is square dual usb 3.0", "attributes": ["heavy duty", "fast charging", "easy install", "usb port"], "options": ["style: square dual usb3.0"], "instruction_attributes": ["fast charging"], "instruction_options": ["square dual usb3.0"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9R6DOXP", "worker_id": "AJY5G987IRT25"}], "B09NNXGPDN": [{"asin": "B09NNXGPDN", "instruction": "i am looking for a cupcake topper for a birthday party. also choose gold with 35th pattern name.", "attributes": ["cupcake picks", "birthday party"], "options": ["pattern name: gold 35th"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold 35th"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RZ439QY", "worker_id": "A2HMEGTAFO0CS8"}], "B0915MFNJ5": [{"asin": "B0915MFNJ5", "instruction": "i'm looking for a daily casual wear gym shorts with elastic waistband for men. also, choose small, army green colored one.", "attributes": ["daily casual", "elastic waistband"], "options": ["color: army green", "size: small"], "instruction_attributes": ["daily casual", "elastic waistband"], "instruction_options": ["army green", "small"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM97PS4GE", "worker_id": "AR0VJ5XRG16UJ"}], "B07ZJBRDYC": [{"asin": "B07ZJBRDYC", "instruction": "i'm looking for eco friendly window curtain panels for living room and dining room. also, choose 27.5\" * 39\" *2 panels with christmas-049zse9572 colored one.", "attributes": ["eco friendly", "living room", "dining room"], "options": ["color: christmas-049zse9572", "size: 27.5'' x 39'' x 2 panels"], "instruction_attributes": ["eco friendly", "living room", "dining room"], "instruction_options": ["christmas-049zse9572", "27.5'' x 39'' x 2 panels"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34GL41L", "worker_id": "AR0VJ5XRG16UJ"}], "B0969ZRVJP": [{"asin": "B0969ZRVJP", "instruction": "i'm looking for personalized photo and name flip flops that are non slip and have memory foam. also, i need them in black.", "attributes": ["open toe", "non slip", "memory foam"], "options": ["color: black", "size: 6 women | 6 men"], "instruction_attributes": ["non slip", "memory foam"], "instruction_options": ["black"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6OJ8MMF", "worker_id": "A34EHWOYRBL6OZ"}], "B08C2FVNQ9": [{"asin": "B08C2FVNQ9", "instruction": "i am looking for an easy to use hair dye that is natural and coffee colored.", "attributes": ["easy use", "hair dye"], "options": ["color: coffee"], "instruction_attributes": ["easy use", "hair dye"], "instruction_options": ["coffee"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREK8J2T", "worker_id": "A114NK7T5673GK"}], "B07KZSKGCX": [{"asin": "B07KZSKGCX", "instruction": "i am looking for a certified refurbished inkjet printer.", "attributes": ["certified refurbished", "dual band", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "3TR2532VI040LV46NXNX77Y3UP56JS", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KRTFSD2": [{"asin": "B07KRTFSD2", "instruction": "i'm searching for natural permanent hair dye , 6g light golden brown color, 1 count", "attributes": ["permanent hair", "hair dye"], "options": ["color: 6g light golden brown", "size: 1 count"], "instruction_attributes": ["hair dye"], "instruction_options": ["1 count"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJICZ8W", "worker_id": "A258PTOZ3D2TQR"}], "B09N8PQHRK": [{"asin": "B09N8PQHRK", "instruction": "i need high quality perm rod curlers for natural hair styling. pick one in orange color.", "attributes": ["easy use", "non slip", "long lasting", "high quality", "hair styling", "natural hair"], "options": ["color: orange color", "size: 0.98 inch"], "instruction_attributes": ["high quality", "hair styling", "natural hair"], "instruction_options": ["orange color"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35J6GU0", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09N8PQHRK", "instruction": "i would like a 0.28 inch gray hair rollers for natural hair.", "attributes": ["easy use", "non slip", "long lasting", "high quality", "hair styling", "natural hair"], "options": ["color: gray color", "size: 0.28 inch"], "instruction_attributes": ["natural hair"], "instruction_options": ["gray color", "0.28 inch"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBH3DJE", "worker_id": "A1WS884SI0SLO4"}], "B09B94Q73Z": [{"asin": "B09B94Q73Z", "instruction": "i would like to search for a tennis fashioned women running sneakers in black color preferably with ankle strap.", "attributes": ["arch support", "ankle strap"], "options": ["color: z3-black", "size: 6"], "instruction_attributes": ["ankle strap"], "instruction_options": ["z3-black"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5BM1ZS", "worker_id": "A14BSOU2Y5JNT0"}], "B07HPBFS5S": [{"asin": "B07HPBFS5S", "instruction": "i'm looking for some easy to use body paint. get the one in rose gold.", "attributes": ["easy use", "high quality"], "options": ["color: rose gold"], "instruction_attributes": ["easy use"], "instruction_options": ["rose gold"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6T9VNMT", "worker_id": "A34QZDSTKZ3JO9"}], "B093GK3SS8": [{"asin": "B093GK3SS8", "instruction": "i need dusty pink mid century bar stools that don't have open backs.", "attributes": ["mid century", "easy assemble", "metal legs"], "options": ["color: dusty pink", "size: no open back"], "instruction_attributes": ["mid century"], "instruction_options": ["dusty pink", "no open back"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDEH2OU", "worker_id": "A2RBF3IIJP15IH"}], "B09NRZ5KGB": [{"asin": "B09NRZ5KGB", "instruction": "i'm looking for a heavy duty queen sized bed frame in a rustic brown color.", "attributes": ["space saving", "queen size", "heavy duty", "easy assemble", "box spring", "storage space"], "options": ["color: rustic brown", "size: full"], "instruction_attributes": ["queen size", "heavy duty"], "instruction_options": ["rustic brown"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3CCBVQ", "worker_id": "A34QZDSTKZ3JO9"}], "B00GJ782FI": [{"asin": "B00GJ782FI", "instruction": "i am looking for high quality nail polish of fijji color.", "attributes": ["long lasting", "high quality", "rose gold", "nail polish"], "options": ["color: fiji", "size: 2-count"], "instruction_attributes": ["high quality"], "instruction_options": ["fiji"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QNFXOX", "worker_id": "A3FG5PQHG5AH3Y"}], "B097T1434V": [{"asin": "B097T1434V", "instruction": "can you find me a pair of men's slippers with memory foam and rubber soles? i want the ones that are khaki and either 10.5 or 11.", "attributes": ["anti slip", "non slip", "memory foam", "rubber sole", "faux fur", "arch support"], "options": ["color: khaki", "size: 10.5-11"], "instruction_attributes": ["memory foam", "rubber sole"], "instruction_options": ["khaki", "10.5-11"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4X8XY2", "worker_id": "A34QZDSTKZ3JO9"}], "B098NCCPPC": [{"asin": "B098NCCPPC", "instruction": "i am looking for a clear glass shade, vanity light with black and brushed nickel finish.", "attributes": ["easy install", "easy assemble", "glass shade", "nickel finish", "brushed nickel", "vanity light", "clear glass"], "options": ["color: black and brushed nickel", "size: 2-light"], "instruction_attributes": ["glass shade", "nickel finish", "brushed nickel", "vanity light", "clear glass"], "instruction_options": ["black and brushed nickel"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQLIP03", "worker_id": "A1NF6PELRKACS9"}], "B08J5QX1WS": [{"asin": "B08J5QX1WS", "instruction": "i'm looking for a lactose free and gluten free nutrition bar. i want to get the one that is available in the 24 count.", "attributes": ["lactose free", "gluten free", "high protein"], "options": ["size: 24 count (3 packs of 8)"], "instruction_attributes": ["lactose free", "gluten free"], "instruction_options": ["24 count (3 packs of 8)"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOAX1WJ", "worker_id": "A34QZDSTKZ3JO9"}], "B09NVD36XN": [{"asin": "B09NVD36XN", "instruction": "i am looking for some purple, woman's shoes in size 8 that have an anti-slip, rubber sole.", "attributes": ["anti slip", "quality materials", "rubber sole"], "options": ["color: purple", "size: 8"], "instruction_attributes": ["anti slip", "rubber sole"], "instruction_options": ["purple", "8"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK875A55", "worker_id": "A114NK7T5673GK"}], "B08BZXG337": [{"asin": "B08BZXG337", "instruction": "i am looking for purple accent side table end which is easy to clean.", "attributes": ["assembly required", "easy clean"], "options": ["color: purple"], "instruction_attributes": ["easy clean"], "instruction_options": ["purple"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UA03AS", "worker_id": "A3FG5PQHG5AH3Y"}], "B09S3RBNNG": [{"asin": "B09S3RBNNG", "instruction": "i'm looking for a easy to install ottoman bench with handle made of faux leather. also, choose grey colored one.", "attributes": ["easy install", "faux leather"], "options": ["color: grey"], "instruction_attributes": ["easy install", "faux leather"], "instruction_options": ["grey"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G72L74L", "worker_id": "AR0VJ5XRG16UJ"}], "B098PH8LVY": [{"asin": "B098PH8LVY", "instruction": "i would like a color 15 72\" w x 63\" panel that is machine washable.", "attributes": ["hand painted", "machine washable", "long lasting"], "options": ["color: color15", "size: 72\" w x 63\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["72\" w x 63\" l"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4JZPKK", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B098PH8LVY", "instruction": "i'm looking for curtains for machinable products.", "attributes": ["hand painted", "machine washable", "long lasting"], "options": ["color: color03", "size: 72\" w x 84\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["color03"], "assignment_id": "3P4MQ7TPP8M09ONPVWROKZ1I0P3BB1", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B098PH8LVY", "instruction": "i am looking for 2 window panels that are 108\" wide and 84\" in length that are machine washable.", "attributes": ["hand painted", "machine washable", "long lasting"], "options": ["color: color21", "size: 108\" w x 84\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["108\" w x 84\" l"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK6Z3JV", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B098PH8LVY", "instruction": "i want machine washable dream catcher light proof curtains that is 55\" w x 45\" l.", "attributes": ["hand painted", "machine washable", "long lasting"], "options": ["color: color31", "size: 55\" w x 45\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["55\" w x 45\" l"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4WN0HS", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B098PH8LVY", "instruction": "i want hand painted window covering curtain panels. the size should be 52\" wide and 63\" in length.", "attributes": ["hand painted", "machine washable", "long lasting"], "options": ["color: color11", "size: 52\" w x 63\" l"], "instruction_attributes": ["hand painted"], "instruction_options": ["52\" w x 63\" l"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUI0R38", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B098PH8LVY", "instruction": "i am looking for some machine washable curtains in the side 52\" by 63\"", "attributes": ["hand painted", "machine washable", "long lasting"], "options": ["color: color02", "size: 52\" w x 63\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["52\" w x 63\" l"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCGUJSN", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B098PH8LVY", "instruction": "i saw hand painted with size 96\" w x 90\"", "attributes": ["hand painted", "machine washable", "long lasting"], "options": ["color: color03", "size: 96\" w x 90\" l"], "instruction_attributes": ["hand painted"], "instruction_options": [], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWXPC11", "worker_id": "A226L9F2AZ38CL"}], "B0944C6L42": [{"asin": "B0944C6L42", "instruction": "i would like some medium brown hair building fibers for my hair loss.", "attributes": ["cruelty free", "hair loss", "natural hair"], "options": ["color: medium brown"], "instruction_attributes": ["hair loss"], "instruction_options": ["medium brown"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMMVWRSR", "worker_id": "A1WS884SI0SLO4"}], "B006H7YNNA": [{"asin": "B006H7YNNA", "instruction": "find me the 2-pack of trader joe's chocolate covered peppermint joe's cookies.", "attributes": ["trader joe", "chocolate covered"], "options": [""], "instruction_attributes": ["chocolate covered"], "instruction_options": [], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZCI7AX", "worker_id": "A1CB72B51L7TKE"}], "B079B43M9T": [{"asin": "B079B43M9T", "instruction": "i want to get some baked fresh pretzels. can you get me 6 of them?", "attributes": ["baked fresh", "artificial colors"], "options": ["number of items: 6"], "instruction_attributes": ["baked fresh"], "instruction_options": ["6"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXOYYLH", "worker_id": "A34QZDSTKZ3JO9"}], "B084P6N9MN": [{"asin": "B084P6N9MN", "instruction": "i want an elastic waist beach shorts that is xx-large in size.", "attributes": ["loose fit", "elastic waist", "elastic closure", "drawstring closure", "daily wear"], "options": ["color: 6721_lilac", "size: xx-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["xx-large"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N2AT7D", "worker_id": "A1NF6PELRKACS9"}], "B08MJRJDNT": [{"asin": "B08MJRJDNT", "instruction": "i would like a 10x8ft light weight photo background for my studio that looks good on digital photography.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 10x8ft"], "instruction_attributes": ["light weight", "digital photography"], "instruction_options": ["10x8ft"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AGNSTZ", "worker_id": "A1WS884SI0SLO4"}], "B09QPN25MK": [{"asin": "B09QPN25MK", "instruction": "i'm looking for a short sleeve shirt with a button down closure. get the one in 3xl.", "attributes": ["long lasting", "button closure", "polyester spandex", "short sleeve", "tumble dry"], "options": ["color: multi10", "size: 3x-large"], "instruction_attributes": ["button closure", "short sleeve"], "instruction_options": ["3x-large"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPV0XTN", "worker_id": "A34QZDSTKZ3JO9"}], "B081CRX2WY": [{"asin": "B081CRX2WY", "instruction": "can you find me a stainless steel band for my smartwatch? i need it to be 24 mm.", "attributes": ["quick release", "stainless steel"], "options": ["color: croc grey band", "size: 24mm"], "instruction_attributes": ["stainless steel"], "instruction_options": ["24mm"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69ITP8N", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B081CRX2WY", "instruction": "i want a 20mm stainless steel handmade alligator leather watch band.", "attributes": ["quick release", "stainless steel"], "options": ["color: croc navy blue band + white hand stitching", "size: 20mm"], "instruction_attributes": ["stainless steel"], "instruction_options": ["20mm"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP85U7ZJ", "worker_id": "A2RBF3IIJP15IH"}], "B08TCD5LNW": [{"asin": "B08TCD5LNW", "instruction": "i would like a color12 hair cutting kit that is easy to clean.", "attributes": ["easy clean", "hair cutting"], "options": ["color: color12"], "instruction_attributes": ["easy clean"], "instruction_options": ["color12"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJOQBX1", "worker_id": "A1WS884SI0SLO4"}], "B00JKK43AO": [{"asin": "B00JKK43AO", "instruction": "i am looking for a certified organic and caffeine free tea that is licorice root flavored and comes in pack of 16.", "attributes": ["caffeine free", "certified organic", "non gmo"], "options": ["flavor name: licorice root", "size: 16 count (pack of 4)"], "instruction_attributes": ["caffeine free", "certified organic"], "instruction_options": ["licorice root", "16 count (pack of 4)"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS19WXC0", "worker_id": "A114NK7T5673GK"}, {"asin": "B00JKK43AO", "instruction": "i am looking for caffeine free herbal leaf tea having hibiscus flavor.", "attributes": ["caffeine free", "certified organic", "non gmo"], "options": ["flavor name: hibiscus", "size: 16 count (pack of 4)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["hibiscus"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLU8DAX", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00JKK43AO", "instruction": "i would like a 32 count box of individually wrapped moringa with spearmint and sage tea bags that are certified organic.", "attributes": ["caffeine free", "certified organic", "non gmo"], "options": ["flavor name: moringa with spearmint & sage", "size: 32 count (pack of 3)"], "instruction_attributes": ["certified organic"], "instruction_options": ["moringa with spearmint & sage", "32 count (pack of 3)"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OVFOPN", "worker_id": "A1WS884SI0SLO4"}], "B09JPJX8RS": [{"asin": "B09JPJX8RS", "instruction": "i am looking for hair growth treatment for damaged hair. find me a pack of 2.", "attributes": ["natural ingredients", "hair growth", "hair treatment", "damaged hair"], "options": [""], "instruction_attributes": ["hair growth", "hair treatment", "damaged hair"], "instruction_options": [], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBMFEJ5", "worker_id": "A1NF6PELRKACS9"}], "B07ZDM9HBC": [{"asin": "B07ZDM9HBC", "instruction": "need a flavor syrup that is gluten free and comes in a 12oz size.", "attributes": ["non alcoholic", "artificial ingredients", "non gmo", "gluten free"], "options": ["flavor name: peach", "size: 12 fl oz (pack of 1)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V0U2UW", "worker_id": "A1MJVTR0PCKBWW"}, {"asin": "B07ZDM9HBC", "instruction": "i want non gmo liquid alchemist blood orange for cocktails.", "attributes": ["non alcoholic", "artificial ingredients", "non gmo", "gluten free"], "options": ["flavor name: blood orange", "size: 12 ounce"], "instruction_attributes": ["non gmo"], "instruction_options": ["blood orange"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7K037EX", "worker_id": "A2RBF3IIJP15IH"}], "B08JCRSWH6": [{"asin": "B08JCRSWH6", "instruction": "i am looking for a power amplifier that is silver.", "attributes": ["power amplifier", "high power", "high performance", "aluminum alloy"], "options": ["color: silver"], "instruction_attributes": ["power amplifier"], "instruction_options": ["silver"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7U9SDQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B0922YSW2X": [{"asin": "B0922YSW2X", "instruction": "i'm looking for 3x-large women's top which will be a great gift for plus size women. ensure to pick the one with blakc color.", "attributes": ["great gift", "perfect gift"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["great gift"], "instruction_options": ["black", "3x-large"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB94YN8X", "worker_id": "A1HMZJ59OPLD1P"}], "B07SBCQXXG": [{"asin": "B07SBCQXXG", "instruction": "i would like a small blue blazer that can be dry cleaned.", "attributes": ["button closure", "dry clean"], "options": ["color: blue", "size: small"], "instruction_attributes": ["button closure"], "instruction_options": ["blue", "small"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OE6TRE", "worker_id": "A1WS884SI0SLO4"}], "B08BX7GW4N": [{"asin": "B08BX7GW4N", "instruction": "i need 2-pack dark chocolate almond bars that are gluten free.", "attributes": ["low carb", "gluten free", "sugar free", "individually wrapped", "grain free", "chocolate covered", "low sugar", "low calorie", "keto friendly"], "options": ["flavor name: 2-pack dark chocolate almond"], "instruction_attributes": ["gluten free"], "instruction_options": ["2-pack dark chocolate almond"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XK72ENT", "worker_id": "A2RBF3IIJP15IH"}], "B08DQSR5N6": [{"asin": "B08DQSR5N6", "instruction": "i am looking for a kerating detangler spray that is effective at stimulating hair growth.", "attributes": ["hair treatment", "dry hair", "hair growth"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOU4O7X", "worker_id": "A1HMZJ59OPLD1P"}], "B09FZKCTVV": [{"asin": "B09FZKCTVV", "instruction": "i need a perfect sugar fruit gift basket for halloween party. it should be easy to use.", "attributes": ["easy use", "perfect gift"], "options": [""], "instruction_attributes": ["easy use", "perfect gift"], "instruction_options": [], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98O1KY8", "worker_id": "A1NF6PELRKACS9"}], "B0927MLTZZ": [{"asin": "B0927MLTZZ", "instruction": "i need a stainless steel gua sha set that includes the roller and box.", "attributes": ["stainless steel", "dark circles", "fine lines"], "options": ["color: roller and box"], "instruction_attributes": ["stainless steel"], "instruction_options": ["roller and box"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AH7EO8", "worker_id": "A2RBF3IIJP15IH"}], "B09DGV3RC7": [{"asin": "B09DGV3RC7", "instruction": "can you find me a pair of open toe rubber sole pumps? get me the black one in 5.5.", "attributes": ["open toe", "rubber sole"], "options": ["color: black", "size: 5.5"], "instruction_attributes": ["open toe", "rubber sole"], "instruction_options": ["black", "5.5"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LROOBZY", "worker_id": "A34QZDSTKZ3JO9"}], "B09PBL7FCR": [{"asin": "B09PBL7FCR", "instruction": "i am looking for grey color women sandals.it must have steel toe.", "attributes": ["quick drying", "day comfort", "open toe", "steel toe", "memory foam"], "options": ["color: grey", "size: 10.5"], "instruction_attributes": ["steel toe"], "instruction_options": ["grey"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAXYA8Z", "worker_id": "A3FG5PQHG5AH3Y"}], "B09PG8VYL8": [{"asin": "B09PG8VYL8", "instruction": "i am looking for valentine d\u00e9cor for my living room.", "attributes": ["exquisite workmanship", "living room"], "options": ["size: 52x90inx2"], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP6XLDVW", "worker_id": "A2KW17G25L25R8"}, {"asin": "B09PG8VYL8", "instruction": "i am looking for window treatment panels for living room and size should be 52x84 inx2.", "attributes": ["exquisite workmanship", "living room"], "options": ["size: 52x84inx2"], "instruction_attributes": ["living room"], "instruction_options": ["52x84inx2"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU75H573", "worker_id": "A3FG5PQHG5AH3Y"}], "B09P6CDSG5": [{"asin": "B09P6CDSG5", "instruction": "i need a box spring bunk bed. pick a grey one with slide.", "attributes": ["white item", "box spring"], "options": ["color: grey with slide", "size: twin over twin"], "instruction_attributes": ["box spring"], "instruction_options": ["grey with slide"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYFKLQ4", "worker_id": "A1NF6PELRKACS9"}], "B09CZBG4RW": [{"asin": "B09CZBG4RW", "instruction": "i am looking for variety pack of gluten free energy drinks.", "attributes": ["low calorie", "soy free", "keto friendly", "plant based", "non gmo", "gluten free", "artificial flavors"], "options": ["flavor name: variety pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["variety pack"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKC8K7HM", "worker_id": "A3FG5PQHG5AH3Y"}], "B01NBVCWP8": [{"asin": "B01NBVCWP8", "instruction": "i want to update the living room and need a bronze light fixture. i want you to buy one that is a sconce in the industrial style with clear glass globe shade.", "attributes": ["clear glass", "light fixture"], "options": ["color: bronze"], "instruction_attributes": ["light fixture"], "instruction_options": ["bronze"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8ODVTR1", "worker_id": "A33B85TN97HQ33"}], "B01D9HSULQ": [{"asin": "B01D9HSULQ", "instruction": "i need a hyaluronic acid lotion that is unscented.", "attributes": ["paraben free", "hyaluronic acid"], "options": ["style: unscented"], "instruction_attributes": ["hyaluronic acid"], "instruction_options": ["unscented"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L4RERH", "worker_id": "A2RBF3IIJP15IH"}], "B09N8HH539": [{"asin": "B09N8HH539", "instruction": "i'm searching for blue color autumn winter shoes of open toe style and size 8.", "attributes": ["knee high", "open toe", "steel toe"], "options": ["color: blue", "size: 8"], "instruction_attributes": ["open toe"], "instruction_options": ["blue", "8"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IE3M20", "worker_id": "A258PTOZ3D2TQR"}], "B08TMN2DVH": [{"asin": "B08TMN2DVH", "instruction": "i want a low fat cereal that is also sugar free.", "attributes": ["low fat", "0g trans"], "options": [""], "instruction_attributes": ["low fat"], "instruction_options": [], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLUJBY6", "worker_id": "A1NF6PELRKACS9"}], "B07MBD86WN": [{"asin": "B07MBD86WN", "instruction": "i'm looking for an anti aging face mask with jojoba seed oil to restore my skin's vitality.", "attributes": ["anti aging", "cruelty free", "seed oil"], "options": ["color: vitality"], "instruction_attributes": ["anti aging", "seed oil"], "instruction_options": ["vitality"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS354015BMU7", "worker_id": "A3EDFA8UQT5GG8"}], "B078N2XRNB": [{"asin": "B078N2XRNB", "instruction": "i would like a pound of non gmo oatmeal", "attributes": ["non gmo", "old fashioned", "dietary fiber"], "options": ["size: 1 pound (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHP6EQDP", "worker_id": "A2ECRNQ3X5LEXD"}], "B07FYPSNH8": [{"asin": "B07FYPSNH8", "instruction": "i am looking for a gluten free, 100% vegan plant based protein shake that is soy-free.", "attributes": ["nut free", "soy free", "plant based", "lactose free", "low sugar", "gluten free", "shelf stable", "dairy free", "non gmo", "artificial colors"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKGXD7P", "worker_id": "A1EREKSZAA9V7B"}], "B07QLJXLKX": [{"asin": "B07QLJXLKX", "instruction": "i would like a floor lamp light fixture for my living room.", "attributes": ["light fixture", "living room"], "options": [""], "instruction_attributes": ["light fixture", "living room"], "instruction_options": [], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4PM7KO", "worker_id": "A1WS884SI0SLO4"}], "B08ND3NK5C": [{"asin": "B08ND3NK5C", "instruction": "i need a white maxax feather pendant light for the living room.", "attributes": ["pendant light", "living room"], "options": ["color: white"], "instruction_attributes": ["pendant light", "living room"], "instruction_options": ["white"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLJD4IW", "worker_id": "A2RBF3IIJP15IH"}], "B09Q3DSP3Y": [{"asin": "B09Q3DSP3Y", "instruction": "find me a women's 3 piece brazilian thong bikini set that is machine washable and size large. i need it in color a01#purple.", "attributes": ["wide leg", "butt lifting", "slim fit", "winter warm", "machine wash", "elastic waist", "high waist", "tummy control", "relaxed fit"], "options": ["color: a01#purple", "size: large"], "instruction_attributes": ["machine wash"], "instruction_options": ["a01#purple", "large"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366ONSPOL", "worker_id": "A1CB72B51L7TKE"}], "B00YJG4GVU": [{"asin": "B00YJG4GVU", "instruction": "i'm searching for a black color 150-inch | 16:9, ultra hd and light weight projector screen", "attributes": ["ultra hd", "light weight"], "options": ["color: black", "size: 150-inch | 16:9", "style: ezframe cg5d"], "instruction_attributes": ["ultra hd", "light weight"], "instruction_options": ["black", "150-inch | 16:9"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTJK6OG", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B00YJG4GVU", "instruction": "i am looking for a cinewhite sable frame series ultra hd projection material .i prefer light weight.", "attributes": ["ultra hd", "light weight"], "options": ["color: cinewhite", "size: 115\" | 2.35:1", "style: sable frame series"], "instruction_attributes": ["ultra hd", "light weight"], "instruction_options": ["cinewhite", "sable frame series"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM5HZHY", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B00YJG4GVU", "instruction": "i'm looking for a 135 inch light weight projection screen.", "attributes": ["ultra hd", "light weight"], "options": ["color: powergain", "size: 135-inch | 2.35:1", "style: sable frame"], "instruction_attributes": ["light weight"], "instruction_options": ["135-inch | 2.35:1"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS35401BKUM0", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B00YJG4GVU", "instruction": "i would like a 92\" powergain ezframe cg5d series projection screen that is ultra hd.", "attributes": ["ultra hd", "light weight"], "options": ["color: powergain", "size: 92\" | 16:9", "style: ezframe cg5d series"], "instruction_attributes": ["ultra hd"], "instruction_options": ["powergain", "92\" | 16:9", "ezframe cg5d series"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R9UR0X", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00YJG4GVU", "instruction": "i am interested in an ultra hd projection screen that is 92\"", "attributes": ["ultra hd", "light weight"], "options": ["color: cinegrey 5d", "size: 92\" | 16:9", "style: cinegrey 3d"], "instruction_attributes": ["ultra hd"], "instruction_options": ["92\" | 16:9"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYH1LQP", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NZML351": [{"asin": "B07NZML351", "instruction": "i am looking for contemporary design featuring clean lines and smooth upholstery, storage ottoman offers the look, feel, and design of a truly contemporary piece. with a minimalistic yet refined structure, this piece brings out a simplistic style that emphasizes comfort and functionality of christopher knight home bancroft lift-top storage ottoman.", "attributes": ["storage space", "contemporary design"], "options": [""], "instruction_attributes": ["storage space", "contemporary design"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKGVD7N", "worker_id": "A1DRKZ3SCLAS4V"}], "B0966FVJ5N": [{"asin": "B0966FVJ5N", "instruction": "i need easy to install window films that are multicolored and are 123.6\" by 78.7\".", "attributes": ["hand painted", "easy install"], "options": ["color: multi-19818", "size: l23.6\" x h 78.7\""], "instruction_attributes": ["easy install"], "instruction_options": ["multi-19818", "l23.6\" x h 78.7\""], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZMV3K8", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0966FVJ5N", "instruction": "i need a hand psychedelic painted window cover that is multi-19818 color and about l23.6\" x h 35.4\".", "attributes": ["hand painted", "easy install"], "options": ["color: multi-19818", "size: l23.6\" x h 35.4\""], "instruction_attributes": ["hand painted"], "instruction_options": ["multi-19818", "l23.6\" x h 35.4\""], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7XVWZTK", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B0966FVJ5N", "instruction": "i need some multicolored window films that are easy to install.", "attributes": ["hand painted", "easy install"], "options": ["color: multi-19826", "size: l23.6\" x h 35.4\""], "instruction_attributes": ["easy install"], "instruction_options": ["multi-19826"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK88NVN", "worker_id": "A2ECRNQ3X5LEXD"}], "B083SRWLJD": [{"asin": "B083SRWLJD", "instruction": "i am looking for an intel core i5 desktop pc.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["core i5", "intel core"], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1EVU30", "worker_id": "A1NF6PELRKACS9"}], "B09M8TSCXP": [{"asin": "B09M8TSCXP", "instruction": "i am looking for a blue toothbrush for kids that is easy to use for ages 2-6.", "attributes": ["teeth whitening", "easy use", "long handle"], "options": ["color: a02#blue", "size: age 2-6"], "instruction_attributes": ["easy use"], "instruction_options": ["a02#blue", "age 2-6"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUG3S4Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B07V5FHPWR": [{"asin": "B07V5FHPWR", "instruction": "can you get me a machine washable throw? get me one that is 30x40 inches.", "attributes": ["super soft", "machine washable", "easy clean"], "options": ["color: a627", "size: 30 in x 40 in"], "instruction_attributes": ["machine washable"], "instruction_options": ["30 in x 40 in"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYFFQL4", "worker_id": "A34QZDSTKZ3JO9"}], "B005GPWCPA": [{"asin": "B005GPWCPA", "instruction": "i'm looking for 16 plus petite women pant with regular fit and easy to care. also, choose vivid blue colored one", "attributes": ["easy care", "regular fit"], "options": ["color: vivid blue", "size: 16 plus petite"], "instruction_attributes": ["easy care", "regular fit"], "instruction_options": ["vivid blue", "16 plus petite"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK38VN6W", "worker_id": "AR0VJ5XRG16UJ"}], "B093Y7Q1RR": [{"asin": "B093Y7Q1RR", "instruction": "i need a heavy duty desk chair for my office. get me one that is easy to assemble though.", "attributes": ["heavy duty", "easy assemble", "pu leather"], "options": [""], "instruction_attributes": ["heavy duty", "easy assemble"], "instruction_options": [], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2IUNY2", "worker_id": "A34QZDSTKZ3JO9"}], "B08B51Q53Z": [{"asin": "B08B51Q53Z", "instruction": "i am looking for a vegan gourmet food gift basket with 4 bars.", "attributes": ["individually wrapped", "high fructose", "natural ingredients", "gift basket"], "options": ["size: 4 bars"], "instruction_attributes": ["gift basket"], "instruction_options": ["4 bars"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWTVC79W", "worker_id": "A1EREKSZAA9V7B"}], "B08YRH7DJR": [{"asin": "B08YRH7DJR", "instruction": "i am looking for a long lasting perfume.", "attributes": ["design house", "long lasting", "fine mist"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZUCNCU", "worker_id": "A2ECRNQ3X5LEXD"}], "B08YK7NVGD": [{"asin": "B08YK7NVGD", "instruction": "i need a liwin black wireless 3 in 1 qi-certified 15w fast charging station", "attributes": ["compatible apple", "fast charging", "non slip", "wireless charging"], "options": ["color: black"], "instruction_attributes": ["fast charging", "wireless charging"], "instruction_options": ["black"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2NF5M3", "worker_id": "A1HMZJ59OPLD1P"}], "B08VHM34R6": [{"asin": "B08VHM34R6", "instruction": "i am looking for shoes that are grey and light blue with a rubber sole in a size 11-11.5 women.", "attributes": ["non slip", "moisture wicking", "rubber sole", "rubber outsole"], "options": ["color: grey | light blue", "size: 11-11.5 women | 9.5-10 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["grey | light blue", "11-11.5 women | 9.5-10 men"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9P178E", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PL9FJRH": [{"asin": "B09PL9FJRH", "instruction": "i need a pink peach colored cruelty free blush.", "attributes": ["cruelty free", "eye shadow", "nail polish"], "options": ["color: d", "size: d"], "instruction_attributes": ["cruelty free"], "instruction_options": ["d"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1BO080", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09PL9FJRH", "instruction": "i would like a size a color f face cruelty free brush.", "attributes": ["cruelty free", "eye shadow", "nail polish"], "options": ["color: f", "size: a"], "instruction_attributes": ["cruelty free"], "instruction_options": ["f", "a"], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO9A33G", "worker_id": "A1WS884SI0SLO4"}], "B07GW9Q8FH": [{"asin": "B07GW9Q8FH", "instruction": "i would like to purchase a 0.4 ounce hyaluronic acid water proof concealer that can help to improve the appearance of dark circles. the one with the 20.0 medium (n) color is preferable.", "attributes": ["anti aging", "highly pigmented", "long lasting", "hyaluronic acid", "dark circles"], "options": ["color: 20.0 medium (n)", "size: 0.4 ounce"], "instruction_attributes": ["hyaluronic acid", "dark circles"], "instruction_options": ["20.0 medium (n)", "0.4 ounce"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSK4X0C", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B07GW9Q8FH", "instruction": "i need long lasting concealer that is in a light natural and is a pack of one.", "attributes": ["anti aging", "highly pigmented", "long lasting", "hyaluronic acid", "dark circles"], "options": ["color: 13.0 light natural (n)", "size: 0.4 fl oz (pack of 1)"], "instruction_attributes": ["long lasting"], "instruction_options": ["13.0 light natural (n)", "0.4 fl oz (pack of 1)"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34N941N", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07GW9Q8FH", "instruction": "i am looking for anti ageing concealer with hyaluronic acid for dark circles and should be 0.11floz.", "attributes": ["anti aging", "highly pigmented", "long lasting", "hyaluronic acid", "dark circles"], "options": ["color: 20.5 medium sand (w)", "size: 0.11 fl oz"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZI9RP9", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B07GW9Q8FH", "instruction": "my skin included 0.4 size dark circle", "attributes": ["anti aging", "highly pigmented", "long lasting", "hyaluronic acid", "dark circles"], "options": ["color: 15.5 light bronze (c)", "size: 0.4 fl oz"], "instruction_attributes": ["dark circles"], "instruction_options": ["0.4 fl oz"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HS3BP5", "worker_id": "A226L9F2AZ38CL"}], "B093H9TCF8": [{"asin": "B093H9TCF8", "instruction": "i want to buy a pair of but lifting grey skinny jean shorts.", "attributes": ["butt lifting", "button closure"], "options": ["color: gray", "size: xx-large"], "instruction_attributes": ["butt lifting"], "instruction_options": ["gray"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOA3W1K", "worker_id": "A3EDFA8UQT5GG8"}], "B09NNDWMDG": [{"asin": "B09NNDWMDG", "instruction": "i am looking for a long sleeved graphic shirt that is large in size.", "attributes": ["quick drying", "machine washable", "long sleeve", "short sleeve", "laundry bag", "daily wear"], "options": ["color: spring tees-a089-black", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["large"], "assignment_id": "3DY46V3X30SWVSP7TC9YER1YGTS55I", "worker_id": "A1NF6PELRKACS9"}], "B08BZB7F14": [{"asin": "B08BZB7F14", "instruction": "i need a black barber blade cleaning brush with a long handle.", "attributes": ["non slip", "easy carry", "easy clean", "long handle", "hair salon"], "options": ["color: black"], "instruction_attributes": ["long handle"], "instruction_options": ["black"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK39DN6G", "worker_id": "A2RBF3IIJP15IH"}], "B08254Z9ZZ": [{"asin": "B08254Z9ZZ", "instruction": "i need a super soft brown color llama storage ottoman for living room", "attributes": ["spot clean", "super soft", "living room"], "options": ["color: brown", "style: llama"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["brown", "llama"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EAFWS3", "worker_id": "A258PTOZ3D2TQR"}], "B09B22X8TN": [{"asin": "B09B22X8TN", "instruction": "i'd like to buy a queen size bed frame with a dark grey linen headboard.", "attributes": ["queen size", "pu leather", "faux leather", "box spring"], "options": ["color: dark gray linen", "size: king"], "instruction_attributes": ["queen size"], "instruction_options": ["dark gray linen"], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVYW6DII", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B09B22X8TN", "instruction": "i am looking for full size , faux leather and box sping pezzola led bed frame", "attributes": ["queen size", "pu leather", "faux leather", "box spring"], "options": ["color: black pu", "size: full"], "instruction_attributes": ["faux leather", "box spring"], "instruction_options": ["full"], "assignment_id": "37TRT2X24116R7L1JO45INKV8UNJB5", "worker_id": "AX2EWYWZM19AZ"}], "B01M65AA2V": [{"asin": "B01M65AA2V", "instruction": "i want an alcohol and sulfate free perfume for women. look for the poised clean breeze scent.", "attributes": ["alcohol free", "sulfate free", "paraben free", "cruelty free", "long lasting"], "options": ["scent: poised (clean breeze)"], "instruction_attributes": ["alcohol free", "sulfate free"], "instruction_options": ["poised (clean breeze)"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZE6O8G", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B01M65AA2V", "instruction": "i'm looking for a women's roll-on perfume from mixologie, called assured. also it needs to be a natural fragrance.", "attributes": ["alcohol free", "sulfate free", "paraben free", "cruelty free", "long lasting"], "options": ["scent: daring (spiked punch)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OLR1H57", "worker_id": "ABYRAWL4BGD3C"}], "B06X17CLQX": [{"asin": "B06X17CLQX", "instruction": "i\u2019d like to find a core i5 micro tower desktop computer; it must have 8 gig of ram and have a 500 gig hard drive.", "attributes": ["core i5", "intel core"], "options": ["style: micro tower | 500 gb hdd | 8g ram | i5 |..."], "instruction_attributes": ["core i5"], "instruction_options": ["micro tower | 500 gb hdd | 8g ram | i5 |..."], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYISM62", "worker_id": "A3LIIE572Z4OG7"}], "B00TJ0PGDS": [{"asin": "B00TJ0PGDS", "instruction": "i am looking for a headset that is certified refurbished.", "attributes": ["certified refurbished", "high performance", "wireless bluetooth"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BINA48Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B076PNSLTT": [{"asin": "B076PNSLTT", "instruction": "i want you to find me a mini desktop computer with intel core. i want the one with no ram, no ssd, and no wifi.", "attributes": ["core i5", "intel core"], "options": ["size: no ram, no ssd, no wifi"], "instruction_attributes": ["intel core"], "instruction_options": ["no ram, no ssd, no wifi"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCFBIP3", "worker_id": "A34QZDSTKZ3JO9"}], "B077LQMF5Y": [{"asin": "B077LQMF5Y", "instruction": "can you find me a formal dress with a lace closure? i'm looking for something in ocean blue in size 24 plus.", "attributes": ["lace closure", "laundry bag"], "options": ["color: ocean blue", "size: 24 plus"], "instruction_attributes": ["lace closure"], "instruction_options": ["ocean blue", "24 plus"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP10753LI1", "worker_id": "A34QZDSTKZ3JO9"}], "B01IAA1O60": [{"asin": "B01IAA1O60", "instruction": "i would like a coffee latte rooted wig made of natural hair.", "attributes": ["synthetic hair", "natural hair"], "options": ["color: coffee latte rooted"], "instruction_attributes": ["natural hair"], "instruction_options": ["coffee latte rooted"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTPS7LS", "worker_id": "A1WS884SI0SLO4"}], "B09NDR2N1Y": [{"asin": "B09NDR2N1Y", "instruction": "find me a loose fitting, long sleeve hoodie for teenage girls. i want the one that is green and in xxl.", "attributes": ["loose fit", "long sleeve", "teen girls"], "options": ["color: b5-green", "size: xx-large"], "instruction_attributes": ["loose fit", "long sleeve", "teen girls"], "instruction_options": ["b5-green", "xx-large"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOUZO7S", "worker_id": "A34QZDSTKZ3JO9"}], "B089T11DM4": [{"asin": "B089T11DM4", "instruction": "i need a z6-black and small short sleeve crop top for women.", "attributes": ["long sleeve", "short sleeve", "elastic closure"], "options": ["color: z6-black", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["z6-black", "small"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z1QXGC", "worker_id": "A2RBF3IIJP15IH"}], "B09DVKC4MV": [{"asin": "B09DVKC4MV", "instruction": "i'm looking for a khaki - light filtering cellular shades of size 67\"w x 39\"h for living room", "attributes": ["easy install", "white item", "easy clean", "living room"], "options": ["color: khaki - light filtering", "size: 67\"w x 39\"h"], "instruction_attributes": ["living room"], "instruction_options": ["khaki - light filtering", "67\"w x 39\"h"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB2H4Y8", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B09DVKC4MV", "instruction": "i would like a 88 inch wide by 56 inch tall set of blinds for my living room preferably coffee colored.", "attributes": ["easy install", "white item", "easy clean", "living room"], "options": ["color: coffee - light filtering", "size: 88\"w x 56\"h"], "instruction_attributes": ["living room"], "instruction_options": ["coffee - light filtering", "88\"w x 56\"h"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP52OAM", "worker_id": "A1WS884SI0SLO4"}], "B09QSSCJPZ": [{"asin": "B09QSSCJPZ", "instruction": "i am looking for a dairy free, and soy free vegan mac and cheese, id like to get a four pack of them.", "attributes": ["nut free", "rich creamy", "plant based", "dairy free", "soy free", "non gmo"], "options": [""], "instruction_attributes": ["dairy free", "soy free"], "instruction_options": [], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQBFEK4", "worker_id": "A2KW17G25L25R8"}], "B019IOH5F6": [{"asin": "B019IOH5F6", "instruction": "i am looking for a high speed hdmi male to male cable that is gold plated. i need it in a 10 pack.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 3 feet (3-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack", "hdmi male to male"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KA4PD9", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B019IOH5F6", "instruction": "i am looking for a 1 pack of high speed hdmi cables", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 1 pack", "size: 1.5 feet (5-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["1 pack"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYJO6LI", "worker_id": "A9QRQL9CFJBI7"}], "B0968SKYCF": [{"asin": "B0968SKYCF", "instruction": "i want to get a fully cooked meat pizza. pick out the one that comes in the five pack.", "attributes": ["fully cooked", "0g trans", "natural ingredients"], "options": ["flavor: cheese", "size: 5 pack"], "instruction_attributes": ["fully cooked"], "instruction_options": ["5 pack"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINPW72Y", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B0968SKYCF", "instruction": "ilooking a fully cooked 6 pack meat natural ingredient with sausage supreme flavour", "attributes": ["fully cooked", "0g trans", "natural ingredients"], "options": ["flavor: sausage supreme", "size: 6 pack"], "instruction_attributes": ["fully cooked", "natural ingredients"], "instruction_options": ["sausage supreme", "6 pack"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU1VALR", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B0968SKYCF", "instruction": "i need a bag of pizza pepperoni with natural pizza ingredients.", "attributes": ["fully cooked", "0g trans", "natural ingredients"], "options": ["flavor: sausage supreme", "size: 1.68 pound (pack of 5)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["sausage supreme"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTILD4R", "worker_id": "A19317A3X87NVM"}, {"asin": "B0968SKYCF", "instruction": "i am looking for well cooked frozen chicken pizza with double cheese in a size of 6 pack.", "attributes": ["fully cooked", "0g trans", "natural ingredients"], "options": ["flavor: cheese", "size: 6 pack"], "instruction_attributes": ["fully cooked"], "instruction_options": ["cheese", "6 pack"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHP9LDQP", "worker_id": "A2DQZHJHF45NDT"}], "B08Q3TXGFK": [{"asin": "B08Q3TXGFK", "instruction": "i am looking for non-toxic eyelashes that are purple.", "attributes": ["non toxic", "easy carry"], "options": ["color: purple"], "instruction_attributes": ["non toxic"], "instruction_options": ["purple"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39SWUGMX", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NVPNVM6": [{"asin": "B09NVPNVM6", "instruction": "i need wireless bluetooth speakers that are red.", "attributes": ["stereo sound", "wireless bluetooth"], "options": ["color: red"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["red"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LBO0LN", "worker_id": "A2ECRNQ3X5LEXD"}], "B08Q41YX7C": [{"asin": "B08Q41YX7C", "instruction": "please help me find a phoenix single cup and saucer that is made of bone china and is easy to clean.", "attributes": ["lead free", "easy clean"], "options": ["color: phoenix single cup and saucer"], "instruction_attributes": ["easy clean"], "instruction_options": ["phoenix single cup and saucer"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKMHSGS", "worker_id": "A3LIIE572Z4OG7"}], "B08Y7YT94L": [{"asin": "B08Y7YT94L", "instruction": "i'm looking for a fruit king crispy tofu stick that is freeze dried and high in protein.", "attributes": ["freeze dried", "high protein"], "options": [""], "instruction_attributes": ["freeze dried", "high protein"], "instruction_options": [], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFO30TJ", "worker_id": "A34EHWOYRBL6OZ"}], "B07KWLQJ53": [{"asin": "B07KWLQJ53", "instruction": "show me a ready to hang horse33 wall art in 16''w x 24''h size for my living room.", "attributes": ["ready hang", "living room", "dining room"], "options": ["color: horse33", "size: 16''w x 24''h"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["horse33", "16''w x 24''h"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN4R8IN", "worker_id": "A3AYHESLQSDY5T"}], "B0829QD7J1": [{"asin": "B0829QD7J1", "instruction": "i'm looking for high heels with open toe and has ankle strap. also choose size 6 with black colored one.", "attributes": ["open toe", "ankle strap"], "options": ["color: black", "size: 6"], "instruction_attributes": ["open toe", "ankle strap"], "instruction_options": ["black", "6"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZD6KMZ", "worker_id": "AR0VJ5XRG16UJ"}], "B0778WH8SD": [{"asin": "B0778WH8SD", "instruction": "i am looking for hand crafted food decoration toopers for birthday parties.", "attributes": ["hand crafted", "baby shower"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4DN510", "worker_id": "A3FG5PQHG5AH3Y"}], "B08RXX825P": [{"asin": "B08RXX825P", "instruction": "i tore my walking shoes today and need new ones. i'd like you to buy me a new pair. my size is 16 wide and the only other thing i care about is that they are made of ethylene vinyl.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: vicuna", "size: 16 wide"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["16 wide"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q7X1H9Z", "worker_id": "A33B85TN97HQ33"}, {"asin": "B08RXX825P", "instruction": "buy a pair of size nine waterproof lace-up walking shoes. they should be made out of vinyl acetate .", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: vicuna", "size: 9 wide"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["9 wide"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTSTL7D", "worker_id": "AR9AU5FY1S3RO"}], "B08X1YXPZM": [{"asin": "B08X1YXPZM", "instruction": "i'm looking for some open toe flats for teen girls. i want the pink one in size 7.", "attributes": ["open toe", "ankle strap", "teen girls"], "options": ["color: z1-hot pink", "size: 7"], "instruction_attributes": ["open toe", "teen girls"], "instruction_options": ["z1-hot pink", "7"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZENMKK", "worker_id": "A34QZDSTKZ3JO9"}], "B08RS6FRVM": [{"asin": "B08RS6FRVM", "instruction": "i would like a 40x120cm roller shade for my living room that's easy to install.", "attributes": ["easy install", "exquisite workmanship", "living room"], "options": ["size: 40x120cm | 16x47in"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["40x120cm | 16x47in"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40SCFYT", "worker_id": "A1WS884SI0SLO4"}], "B0085T88NE": [{"asin": "B0085T88NE", "instruction": "i need a stainless steel pot rack.", "attributes": ["coated steel", "stainless steel"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3YWRV122C39W3PYOSBO9YN35HZKU8N", "worker_id": "A2ECRNQ3X5LEXD"}], "B07MYQH91L": [{"asin": "B07MYQH91L", "instruction": "i am looking for a 12\" darkest brown #2 synthetic hair hair extensions", "attributes": ["hair extensions", "synthetic hair", "hair growth"], "options": ["color: darkest brown #2", "size: 12 inch"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": ["darkest brown #2", "12 inch"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG2YSLR", "worker_id": "A3N9ZYQAESNFQH"}], "B095PM7DKX": [{"asin": "B095PM7DKX", "instruction": "show me a ready to hang wooden framed wall art poster of nude man or women in 20 x 30 in size.", "attributes": ["ready hang", "living room"], "options": ["color: a-wooden framed", "size: 20 x 30 in"], "instruction_attributes": [], "instruction_options": ["20 x 30 in"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1H96F8", "worker_id": "A3AYHESLQSDY5T"}], "B08B5K6BW5": [{"asin": "B08B5K6BW5", "instruction": "i need a gift set of cookies for the perfect gift that has oreos.", "attributes": ["baked fresh", "perfect gift"], "options": ["flavor name: oreos\u00ae, m&ms\u00ae, and reese\u2019s peanut butter..."], "instruction_attributes": ["perfect gift"], "instruction_options": ["oreos\u00ae, m&ms\u00ae, and reese\u2019s peanut butter..."], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDNLZQS", "worker_id": "A2ECRNQ3X5LEXD"}], "B08SJGT3GL": [{"asin": "B08SJGT3GL", "instruction": "i am looking for a specific perfume fragrance called impression of a poison girl that comes in a travel size.", "attributes": ["travel size", "long lasting"], "options": ["scent: impression of poison girl"], "instruction_attributes": ["travel size"], "instruction_options": ["impression of poison girl"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVOM9XO", "worker_id": "A114NK7T5673GK"}], "B09NKRK5YJ": [{"asin": "B09NKRK5YJ", "instruction": "i am looking for a kids u shaped toothbrush that is high quality and blue or orange in color.", "attributes": ["high quality", "sensitive teeth"], "options": ["color: blue+orange", "size: 6-12 year old"], "instruction_attributes": ["high quality"], "instruction_options": ["blue+orange"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP6YTVDO", "worker_id": "A2KW17G25L25R8"}], "B08BXJ1P9S": [{"asin": "B08BXJ1P9S", "instruction": "i'm looking for space saving storage bins made of pu leather. also, choose 16.5\" thickened in size with burgundy stripe pattern.", "attributes": ["space saving", "pu leather", "storage space"], "options": ["color: burgundy stripe", "size: 16.5\" | thickened"], "instruction_attributes": ["space saving", "pu leather"], "instruction_options": ["burgundy stripe", "16.5\" | thickened"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH0HV1N", "worker_id": "AR0VJ5XRG16UJ"}], "B08M5V1DGG": [{"asin": "B08M5V1DGG", "instruction": "snow white water glow mask cream", "attributes": ["clinically proven", "oil free", "anti aging", "hyaluronic acid"], "options": ["pattern name: 4th generation"], "instruction_attributes": ["oil free"], "instruction_options": ["4th generation"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SQCUDO", "worker_id": "A10OGH5CQBXL5N"}], "B07QFZ6Z8X": [{"asin": "B07QFZ6Z8X", "instruction": "can you find me a pair of men's pleated golf shorts with a button closure and a high waist? i want them in khaki and in size 38.", "attributes": ["button closure", "high waist"], "options": ["color: khaki", "size: 38"], "instruction_attributes": ["button closure", "high waist"], "instruction_options": ["khaki", "38"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0OJAC5", "worker_id": "A34QZDSTKZ3JO9"}], "B09PNRGYNQ": [{"asin": "B09PNRGYNQ", "instruction": "i want to buy a pair of closed toe sandals in size 6. it should have high heels.", "attributes": ["closed toe", "high heel", "ankle strap"], "options": ["color: z1 brown", "size: 6"], "instruction_attributes": ["closed toe", "high heel"], "instruction_options": ["6"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRI7FMC", "worker_id": "A1NF6PELRKACS9"}], "B07VTM5TWH": [{"asin": "B07VTM5TWH", "instruction": "i'm looking for a non slip spotting scopes for bird watching.", "attributes": ["non slip", "bird watching"], "options": [""], "instruction_attributes": ["non slip", "bird watching"], "instruction_options": [], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRPPPWV", "worker_id": "AR0VJ5XRG16UJ"}], "B082M7W64J": [{"asin": "B082M7W64J", "instruction": "find me a high quality 613 bundle with closure hair extension in 14 14 16+12 size.", "attributes": ["high quality", "hair extensions"], "options": ["color: 613 bundles with closure", "size: 14 14 16+12"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["613 bundles with closure", "14 14 16+12"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYPDHV8", "worker_id": "A3AYHESLQSDY5T"}, {"asin": "B082M7W64J", "instruction": "i would like a bundle of hair extensions that are 20 inches", "attributes": ["high quality", "hair extensions"], "options": ["color: 613 bundles with closure", "size: 18 | 20 | 20+16 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["613 bundles with closure", "18 | 20 | 20+16 inch"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2AGY77", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QM39K2F": [{"asin": "B09QM39K2F", "instruction": "find me some non-slip steel toe platform shoes for women. i want something in pink in the size 10.5.", "attributes": ["slip resistant", "non slip", "steel toe"], "options": ["color: pink", "size: 10.5"], "instruction_attributes": ["slip resistant", "non slip", "steel toe"], "instruction_options": ["pink", "10.5"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TOSMPK", "worker_id": "A34QZDSTKZ3JO9"}], "B01IEK23A2": [{"asin": "B01IEK23A2", "instruction": "i am looking for an easy clean rug that is red in color.", "attributes": ["spot clean", "easy clean"], "options": ["size: 2 ft x 5 ft"], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "3TR2532VI040LV46NXNX77Y3UOXJ6V", "worker_id": "A1NF6PELRKACS9"}], "B07MBVNFXS": [{"asin": "B07MBVNFXS", "instruction": "i need some new yoga wide leg yoga pants. make sure you get me the wocachi brand and that they are plaid. oh, also make sure they are from this years spring/summer collection.", "attributes": ["low rise", "wide leg"], "options": ["color: i-yellow", "size: 4x-large"], "instruction_attributes": ["wide leg"], "instruction_options": ["4x-large"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLIW4ID", "worker_id": "A33B85TN97HQ33"}], "B09GFL5G1G": [{"asin": "B09GFL5G1G", "instruction": "i am looking for a high quality nylon strap for my galaxy phone.", "attributes": ["non toxic", "high quality"], "options": ["color: 02bhl"], "instruction_attributes": ["high quality"], "instruction_options": ["02bhl"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZ8GLKY", "worker_id": "A2KW17G25L25R8"}], "B087D53LM1": [{"asin": "B087D53LM1", "instruction": "i am looking for natural looking hair extensions 18 inch.", "attributes": ["hair extensions", "natural hair"], "options": ["color: #6 | 8 | 14", "size: 10 inch"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["10 inch"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2IPNYX", "worker_id": "A2KW17G25L25R8"}, {"asin": "B087D53LM1", "instruction": "my sister have natural hair in 12 inch", "attributes": ["hair extensions", "natural hair"], "options": ["color: #1b | 6 | 27", "size: 12 inch"], "instruction_attributes": ["natural hair"], "instruction_options": ["12 inch"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZMRC76", "worker_id": "A226L9F2AZ38CL"}], "B09FG43X5Q": [{"asin": "B09FG43X5Q", "instruction": "i am looking for an eco friendly 35 by 59 inch waterproof clear plastic table mat.", "attributes": ["eco friendly", "stainless steel"], "options": ["size: 35x59in | 90x150cm"], "instruction_attributes": ["eco friendly", "stainless steel"], "instruction_options": ["35x59in | 90x150cm"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWNGFP6", "worker_id": "A1EREKSZAA9V7B"}], "B09MVYD2R4": [{"asin": "B09MVYD2R4", "instruction": "i am looking for some birthday party supplies to go on a plane-themed birthday cake.", "attributes": ["party supplies", "baby shower", "birthday party"], "options": ["color: airplane"], "instruction_attributes": ["party supplies", "birthday party"], "instruction_options": ["airplane"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB27Y4S", "worker_id": "A114NK7T5673GK"}], "B0924JWYGM": [{"asin": "B0924JWYGM", "instruction": "can you find me some rose gold eyeshadow, please?", "attributes": ["long lasting", "easy carry", "rose gold", "eye shadow"], "options": ["color: rose gold"], "instruction_attributes": ["rose gold", "eye shadow"], "instruction_options": ["rose gold"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZF57C1", "worker_id": "A34QZDSTKZ3JO9"}], "B004Q85JV2": [{"asin": "B004Q85JV2", "instruction": "i am looking for a high quality perfume.", "attributes": ["design house", "high quality"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSKZ0XA", "worker_id": "A2ECRNQ3X5LEXD"}], "B07MNW2KV4": [{"asin": "B07MNW2KV4", "instruction": "i would like a size 10 black long sleeve sweatshirt.", "attributes": ["long sleeve", "elastic closure"], "options": ["color: z05-black", "size: size:m_us:10"], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CMST21", "worker_id": "A1WS884SI0SLO4"}], "B07NNTC257": [{"asin": "B07NNTC257", "instruction": "i need contemporary style and granite counter stools for the dining room.", "attributes": ["contemporary style", "dining room"], "options": ["color: granite", "size: counter stool"], "instruction_attributes": ["contemporary style", "dining room"], "instruction_options": ["granite", "counter stool"], "assignment_id": "3V26SBZTBOOS9KTL7ONUSZFOIRLZZ3", "worker_id": "A2RBF3IIJP15IH"}], "B00DVFHZFE": [{"asin": "B00DVFHZFE", "instruction": "can you find me a tablet charger with ouput protection, please?", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20KPZ0Y", "worker_id": "A34QZDSTKZ3JO9"}], "B08DR3KHXG": [{"asin": "B08DR3KHXG", "instruction": "please help me find a pair of white men\u2019s sneaker in a size 13; it must be the \u201cu-throat\u201d type with a rubber sole.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: white", "size: 13"], "instruction_attributes": ["rubber sole"], "instruction_options": ["white", "13"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAM94XDW", "worker_id": "A3LIIE572Z4OG7"}], "B09Q57WQ9G": [{"asin": "B09Q57WQ9G", "instruction": "i am looking for 16\" natural human hair extensions that is a mix of brown and dark blonde.", "attributes": ["hair loss", "hair extensions", "natural hair"], "options": ["color: #4t27 medium brown ombre dark blonde", "size: 16\""], "instruction_attributes": ["natural hair"], "instruction_options": ["16\""], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MG3LWA", "worker_id": "A1EREKSZAA9V7B"}], "B09SQ5ZCGK": [{"asin": "B09SQ5ZCGK", "instruction": "i am looking for a high quality reusable facial treatment.", "attributes": ["high quality", "green tea", "fine lines"], "options": ["color: b"], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHW6Z4F", "worker_id": "A114NK7T5673GK"}], "B09HHP2J5L": [{"asin": "B09HHP2J5L", "instruction": "i want a gray dzquy men striped knit sweater in x-large. i want one that is fleece lined and water resistant.", "attributes": ["fleece lined", "water resistant", "daily casual", "light weight", "slim fit", "faux fur"], "options": ["color: gray", "size: x-large"], "instruction_attributes": ["fleece lined", "water resistant"], "instruction_options": ["gray", "x-large"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLNPADX", "worker_id": "A1CB72B51L7TKE"}], "B09NMDXK5J": [{"asin": "B09NMDXK5J", "instruction": "i am looking for a window film for the dining room in the color 917730770571231000 in the size 23.6 by 23.6.", "attributes": ["tempered glass", "dining room"], "options": ["color: 917730770571231000", "size: (width\uff0923.6in x (length)23.6in x 2pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["917730770571231000", "(width\uff0923.6in x (length)23.6in x 2pcs"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN244Y7J", "worker_id": "A2ECRNQ3X5LEXD"}], "B08CKZBLYN": [{"asin": "B08CKZBLYN", "instruction": "i am looking for a 2 light vanity light with glass shade.", "attributes": ["vanity light", "glass shade"], "options": ["size: 2 light"], "instruction_attributes": ["vanity light", "glass shade"], "instruction_options": ["2 light"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4DZ51C", "worker_id": "A1NF6PELRKACS9"}], "B08L9C3MDF": [{"asin": "B08L9C3MDF", "instruction": "i am looking for a desktop that is a core intel i7 that has 8gb of ram and 512 ssd of storage.", "attributes": ["dual band", "easy carry", "intel core"], "options": ["color: ddr3l core i7 4500u", "size: 8gb ram 512gb ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["ddr3l core i7 4500u", "8gb ram 512gb ssd"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H07W61D", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08L9C3MDF", "instruction": "i would like to buy a desktop computer with windows 10, intel core processor. additionally i would like 8gb of ram and a 512gb ssd.", "attributes": ["dual band", "easy carry", "intel core"], "options": ["color: new ddr4l core i5 8250u", "size: 8gb ram 512gb ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["new ddr4l core i5 8250u", "8gb ram 512gb ssd"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLJDF2K", "worker_id": "AHXHM1PQTRWIQ"}], "B08STVQLVR": [{"asin": "B08STVQLVR", "instruction": "i am looking for a fast charging charger in mystic navy color.", "attributes": ["fast charging", "usb port"], "options": ["color: bronze", "size: 256gb", "style: s7 tablet + bookcover"], "instruction_attributes": ["fast charging"], "instruction_options": ["bronze"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U1CMAM", "worker_id": "A2KW17G25L25R8"}], "B08Z3K789Q": [{"asin": "B08Z3K789Q", "instruction": "i need one ounce of keto friendly vanilla flavor.", "attributes": ["non gmo", "easy use", "keto friendly", "gluten free", "artificial flavors"], "options": ["flavor name: cake batter", "size: 1 oz"], "instruction_attributes": ["keto friendly"], "instruction_options": ["1 oz"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9DXK6V", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QZPM2TB": [{"asin": "B09QZPM2TB", "instruction": "can you look and find me some water resistant eyeliner?", "attributes": ["highly pigmented", "water resistant"], "options": [""], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40R1CR7", "worker_id": "A34QZDSTKZ3JO9"}], "B09J8673JD": [{"asin": "B09J8673JD", "instruction": "do you have any long lasting eye shadow? something with 2 colors would be the best.", "attributes": ["long lasting", "travel size", "eye shadow"], "options": ["color: 2"], "instruction_attributes": ["long lasting", "eye shadow"], "instruction_options": ["2"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KJJLJ2", "worker_id": "A34QZDSTKZ3JO9"}], "B01GE2ZOT4": [{"asin": "B01GE2ZOT4", "instruction": "i want to buy a tongue scraper that will give me fresh breath and is made from stainless steel.", "attributes": ["stainless steel", "fresh breath"], "options": [""], "instruction_attributes": ["stainless steel", "fresh breath"], "instruction_options": [], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OR2EYF", "worker_id": "A114NK7T5673GK"}], "B09BQRTH7L": [{"asin": "B09BQRTH7L", "instruction": "i am looking for a blue long sleeve quarter zip hoodie.", "attributes": ["machine washable", "machine wash", "fashion design", "cotton spandex", "polyester cotton", "polyester spandex", "long sleeve"], "options": ["color: blue", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YUBEH0", "worker_id": "A2KW17G25L25R8"}], "B09BC92CVS": [{"asin": "B09BC92CVS", "instruction": "i need 26\" metal bar stools that are distressed teal with modern wooden seats and are easy to assemble.", "attributes": ["white item", "easy assemble"], "options": ["color: distressed teal with modern wooden seat", "size: 26\""], "instruction_attributes": ["easy assemble"], "instruction_options": ["distressed teal with modern wooden seat", "26\""], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WNK42P", "worker_id": "A2RBF3IIJP15IH"}], "B097XFZ2LM": [{"asin": "B097XFZ2LM", "instruction": "i am looking for a good travel size cologne small 0.27 ounce.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: john varvatos artisan impression", "size: 0.27 fl oz (pack of 1)"], "instruction_attributes": ["travel size"], "instruction_options": ["0.27 fl oz (pack of 1)"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYDW6LE", "worker_id": "A2KW17G25L25R8"}, {"asin": "B097XFZ2LM", "instruction": "i am looking for a travel size eau de parfum for men of sandalwood & white musk perfume scent.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: sandalwood & white musk perfume", "size: 0.17 fl oz | 5ml"], "instruction_attributes": ["travel size"], "instruction_options": ["sandalwood & white musk perfume"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMIAJ10", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B097XFZ2LM", "instruction": "i'm looking for a men's fragrance or cologne with a long lasting scent. i need a travel size bottle of about 8ml.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: dior blooming bouquet impression", "size: 0.27 fl oz | 8ml"], "instruction_attributes": ["travel size", "long lasting"], "instruction_options": ["0.27 fl oz | 8ml"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFGU025", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B097XFZ2LM", "instruction": "i will like to get a high quality, long lasting ca perfume club impression of bad boy for men, size 0.17 fl oz | 5ml", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: paco rabanne one million lucky impressio...", "size: 0.17 fl oz | 5ml"], "instruction_attributes": ["travel size", "high quality"], "instruction_options": ["0.17 fl oz | 5ml"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2UNL4L", "worker_id": "A1IL2K0ELYI090"}], "B094H3QJ8R": [{"asin": "B094H3QJ8R", "instruction": "do you have a high quality tool bag? i need something at least 5ml.", "attributes": ["non toxic", "high quality"], "options": ["size: 5ml"], "instruction_attributes": ["high quality"], "instruction_options": ["5ml"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X13PG0", "worker_id": "A34QZDSTKZ3JO9"}], "B00MJW4HYW": [{"asin": "B00MJW4HYW", "instruction": "find me a non gmo banana and strawberry meal.", "attributes": ["bpa free", "certified organic", "non gmo"], "options": ["flavor: strawberry & banana"], "instruction_attributes": ["non gmo"], "instruction_options": ["strawberry & banana"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDOYZQ7", "worker_id": "A1NF6PELRKACS9"}], "B08SQPYY1F": [{"asin": "B08SQPYY1F", "instruction": "i am looking for a happy birthday cake for a party.", "attributes": ["birthday cake", "birthday party"], "options": ["color: 19"], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY863O18Y", "worker_id": "AHXHM1PQTRWIQ"}], "B072C64JZR": [{"asin": "B072C64JZR", "instruction": "i want a double sided pillow cover. it should be orange blue in color.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: orange blue", "size: 20\" x 20\""], "instruction_attributes": ["double sided"], "instruction_options": ["orange blue"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SRNUD1", "worker_id": "A1NF6PELRKACS9"}], "B07DCP65HD": [{"asin": "B07DCP65HD", "instruction": "i need 300 cotton rounds for my nail polish", "attributes": ["nail polish", "nail art"], "options": ["size: 300pcs"], "instruction_attributes": ["nail polish"], "instruction_options": ["300pcs"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VTXFP3B", "worker_id": "A2ECRNQ3X5LEXD"}], "B001VJ70UC": [{"asin": "B001VJ70UC", "instruction": "locate the 12 pouch option of gogo squeez fruit on the go applesauce that is non gmo. i want the apple cinnamon flavor.", "attributes": ["dairy free", "bpa free", "nut free", "low calorie", "kosher certified", "plant based", "non gmo", "gluten free", "high fructose"], "options": ["flavor name: apple cinnamon", "size: 12 pouches"], "instruction_attributes": ["non gmo"], "instruction_options": ["apple cinnamon", "12 pouches"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8N3X2NY", "worker_id": "A1CB72B51L7TKE"}], "B08G4NKG7T": [{"asin": "B08G4NKG7T", "instruction": "i'm looking for a living room light set. i want the one in gold with three lights.", "attributes": ["easy install", "vanity light", "living room"], "options": ["color: gold", "size: 3-light"], "instruction_attributes": ["living room"], "instruction_options": ["gold", "3-light"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AFSUY8", "worker_id": "A34QZDSTKZ3JO9"}], "B00O84PEWS": [{"asin": "B00O84PEWS", "instruction": "i am looking for 4g lte wifi router.it should be of black color.", "attributes": ["dual band", "4g lte"], "options": ["color: black"], "instruction_attributes": ["4g lte"], "instruction_options": ["black"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQCTKEQ", "worker_id": "A3FG5PQHG5AH3Y"}], "B09J2L1DM5": [{"asin": "B09J2L1DM5", "instruction": "i am looking for a black high performance smart watch.", "attributes": ["high performance", "4g lte"], "options": ["color: black"], "instruction_attributes": ["high performance"], "instruction_options": ["black"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL84151AXZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08PC5R8N2": [{"asin": "B08PC5R8N2", "instruction": "i need a desk lamp with brushed nickle finish.", "attributes": ["assembly required", "brushed nickel", "nickel finish"], "options": ["color: brushed nickel"], "instruction_attributes": ["brushed nickel", "nickel finish"], "instruction_options": ["brushed nickel"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FCSLEO", "worker_id": "A1NF6PELRKACS9"}], "B07RT73KP5": [{"asin": "B07RT73KP5", "instruction": "i am looking for 8 channel pyle bluetooth stereo amplifier receiver is perfect for your pa/ home theater acoustic sound system with wireless bluetooth-compatible the professional compact rack mount home theater system of amplifier - 4000w rack mount multi zone sound mixer set of 1 pack.", "attributes": ["power amplifier", "wireless bluetooth"], "options": ["size: 1-pack"], "instruction_attributes": ["power amplifier", "wireless bluetooth"], "instruction_options": ["1-pack"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZP0041", "worker_id": "A1DRKZ3SCLAS4V"}], "B09QHR7BZ6": [{"asin": "B09QHR7BZ6", "instruction": "i'm looking for a pair of open toe women's sandals with a leather sole. i want the green ones in size six.", "attributes": ["open toe", "leather sole"], "options": ["color: green-26#", "size: 6"], "instruction_attributes": ["open toe", "leather sole"], "instruction_options": ["green-26#", "6"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFO90TP", "worker_id": "A34QZDSTKZ3JO9"}], "B09SHZZBQH": [{"asin": "B09SHZZBQH", "instruction": "i am looking for a men's medium size slim fit long sleeve button down floral dress shirt.", "attributes": ["loose fit", "hand wash", "daily casual", "winter warm", "fleece lined", "wide leg", "wash cold", "slim fit", "machine wash", "long sleeve", "drawstring waist", "high waist"], "options": ["color: white", "size: medium"], "instruction_attributes": ["slim fit", "long sleeve"], "instruction_options": ["medium"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIS3T9U", "worker_id": "A2KW17G25L25R8"}], "B01N3TDQJ0": [{"asin": "B01N3TDQJ0", "instruction": "i need a sugar free 5 pound pack of coconut flakes. it should be plant based.", "attributes": ["sugar free", "soy free", "kosher certified", "plant based", "non gmo", "gluten free"], "options": ["size: 5 pound (pack of 1)"], "instruction_attributes": ["sugar free", "plant based"], "instruction_options": ["5 pound (pack of 1)"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3GYRYB", "worker_id": "A1NF6PELRKACS9"}], "B08F9FGDK7": [{"asin": "B08F9FGDK7", "instruction": "i need black 20g makeup sample containers that are leak proof.", "attributes": ["leak proof", "easy clean"], "options": ["color: black", "size: 20g"], "instruction_attributes": ["leak proof"], "instruction_options": ["black", "20g"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZGK7CI", "worker_id": "A2RBF3IIJP15IH"}], "B08LDQGYVH": [{"asin": "B08LDQGYVH", "instruction": "get me a high power bird watching monocular that is 10x50 in size", "attributes": ["high power", "high definition", "bird watching"], "options": ["size: 10x50"], "instruction_attributes": ["high power", "bird watching"], "instruction_options": ["10x50"], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQA3HHJ", "worker_id": "A1NF6PELRKACS9"}], "B09J22PJ6Y": [{"asin": "B09J22PJ6Y", "instruction": "i need a slipper anti slip in white color size 9.5-11 for women and 9-10 for men", "attributes": ["anti slip", "non slip", "memory foam", "ethylene vinyl", "vinyl acetate", "rubber sole"], "options": ["color: white-purple", "size: 9.5-11 women | 9-10 men"], "instruction_attributes": ["anti slip"], "instruction_options": ["white-purple", "9.5-11 women | 9-10 men"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9IWO1SP", "worker_id": "A2Y2TURT2VEYZN"}], "B086X6M1W2": [{"asin": "B086X6M1W2", "instruction": "i'm looking to buy a high resolution marine animal themed backdrop. the size should be 12x10ft.", "attributes": ["light weight", "high resolution"], "options": ["size: 12x10ft"], "instruction_attributes": ["high resolution"], "instruction_options": ["12x10ft"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZZISIT", "worker_id": "A3EDFA8UQT5GG8"}], "B09J6FKBNM": [{"asin": "B09J6FKBNM", "instruction": "i need a coconut hair loss serum.", "attributes": ["hair growth", "hair loss"], "options": ["style: wil+gain_coconut+flaxseed oil (moisturizing)"], "instruction_attributes": ["hair loss"], "instruction_options": ["wil+gain_coconut+flaxseed oil (moisturizing)"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTRZO0A4", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SWDZ9HZ": [{"asin": "B09SWDZ9HZ", "instruction": "i need to get a new photography background. pick out the one that is 2m in diameter.", "attributes": ["easy carry", "digital photography"], "options": ["size: 6.5ft | 2m diameter"], "instruction_attributes": ["easy carry"], "instruction_options": ["6.5ft | 2m diameter"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPSXO9GS", "worker_id": "A34QZDSTKZ3JO9"}], "B07FDL284N": [{"asin": "B07FDL284N", "instruction": "i would like a 6 pack of 5.5 ounce non gmo sundried tomatoes.", "attributes": ["non gmo", "gluten free", "0g trans", "high fructose"], "options": ["flavor name: sundried tomato", "size: 5.5 ounce (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["sundried tomato", "5.5 ounce (pack of 6)"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFHJEMK", "worker_id": "A1WS884SI0SLO4"}], "B091DG574T": [{"asin": "B091DG574T", "instruction": "i want to find a barstool made out of faux leather and stainless steel. i want the one in black.", "attributes": ["faux leather", "stainless steel"], "options": ["color: black | stainless steel", "size: 30"], "instruction_attributes": ["faux leather", "stainless steel"], "instruction_options": ["black | stainless steel"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7TZ5PA", "worker_id": "A34QZDSTKZ3JO9"}], "B09MZ4VGLR": [{"asin": "B09MZ4VGLR", "instruction": "i am looking for a core i5 laptop that has 64 gb of ram and 2tb of storage.", "attributes": ["core i5", "intel core", "quad core"], "options": ["capacity: 64gb ddr4 ram, 2tb pcie ssd"], "instruction_attributes": ["core i5"], "instruction_options": ["64gb ddr4 ram, 2tb pcie ssd"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ5Z7KCM", "worker_id": "A2ECRNQ3X5LEXD"}], "B078H4GBC6": [{"asin": "B078H4GBC6", "instruction": "can you find me a wireless bluetooth speaker that comes with a carrying case? i want you to get me the one in blue.", "attributes": ["carrying case", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["carrying case", "wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU46Z6RK", "worker_id": "A34QZDSTKZ3JO9"}], "B07Z11QCDP": [{"asin": "B07Z11QCDP", "instruction": "i need a keto friendly and non gmo variety pack can. it should be cranberry and raspberry flavored.", "attributes": ["keto friendly", "sugar free", "non gmo", "gluten free", "zero sugar"], "options": ["flavor name: cran-raspberry"], "instruction_attributes": ["keto friendly", "non gmo"], "instruction_options": ["cran-raspberry"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5Q9F42", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07Z11QCDP", "instruction": "i'd like to shop for sparkling watermelon juice that's non-gmo and sugar free.", "attributes": ["keto friendly", "sugar free", "non gmo", "gluten free", "zero sugar"], "options": ["flavor name: watermelon"], "instruction_attributes": ["sugar free", "non gmo"], "instruction_options": ["watermelon"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYR36MF", "worker_id": "AR9AU5FY1S3RO"}], "B096LNNZRY": [{"asin": "B096LNNZRY", "instruction": "i'm looking for beauty pro 30 capsules which should be clinically proven for anti aging, hair growth, works on dry skin and has natural ingredients.", "attributes": ["clinically proven", "anti aging", "natural ingredients", "damaged hair", "dry skin", "hair growth"], "options": [""], "instruction_attributes": ["clinically proven", "anti aging", "natural ingredients", "dry skin", "hair growth"], "instruction_options": [], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWMYPFW", "worker_id": "AR0VJ5XRG16UJ"}], "B017JX5456": [{"asin": "B017JX5456", "instruction": "i am looking for great for normal to oily skin, the non-comedogenic cosmetic features skin-soothing aloe vera and lavender plus anti-aging antioxidants and skin-smoothing peptides selected with effective natural ingredients and ensure our products are free of gluten, parabens, talc, artificial colors, synthetic fragrances, sls and phthalates. never conduct animal testing mineral fusion liquid foundation, warm 2, 1 fl ounce in deep 1 color.", "attributes": ["animal testing", "anti aging", "natural ingredients", "nail polish"], "options": ["color: deep 1"], "instruction_attributes": ["anti aging", "natural ingredients"], "instruction_options": ["deep 1"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLDT2FB", "worker_id": "A1DRKZ3SCLAS4V"}], "B08WCTV9CF": [{"asin": "B08WCTV9CF", "instruction": "can you find a black dining table set? i'm looking for something that is easy to clean.", "attributes": ["easy clean", "metal legs", "white finish", "living room"], "options": ["color: white double layer console table", "size: black dining table set"], "instruction_attributes": ["easy clean"], "instruction_options": ["black dining table set"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N17T78", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B08WCTV9CF", "instruction": "i'm looking for sofa wall side table.", "attributes": ["easy clean", "metal legs", "white finish", "living room"], "options": ["color: white c shape side table", "size: black nesting table"], "instruction_attributes": ["white finish", "living room"], "instruction_options": ["white c shape side table"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCGH7HZ", "worker_id": "A21IUUHBSEVB56"}], "B095NKLWVJ": [{"asin": "B095NKLWVJ", "instruction": "i am looking for a black and gold chandelier for my dining room that has six lights", "attributes": ["mid century", "pendant light", "contemporary style", "light fixture", "dining room"], "options": ["color: black&gold", "size: 6 lights"], "instruction_attributes": ["dining room"], "instruction_options": ["black&gold", "6 lights"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU3OA9W", "worker_id": "A2ECRNQ3X5LEXD"}], "B08P4JN9MX": [{"asin": "B08P4JN9MX", "instruction": "i'm looking for a solid wood coatrack with a round base. i want color b as well.", "attributes": ["easy assemble", "eco friendly", "solid wood"], "options": ["color: b"], "instruction_attributes": ["solid wood"], "instruction_options": ["b"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YML8TK", "worker_id": "A3OLRWACCCCUTU"}], "B019MGTHFQ": [{"asin": "B019MGTHFQ", "instruction": "i'm looking for gold plated, high speed hdmi cable . also, choose 12 feet hdmi male to female cable in pack of 1.", "attributes": ["high speed", "gold plated"], "options": ["color: 1 pack", "size: 12 feet (4 pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["1 pack", "12 feet (4 pack)", "hdmi male to female"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMDZIZ3", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B019MGTHFQ", "instruction": "i'm looking for a single high speed gold plated hdmi cable.", "attributes": ["high speed", "gold plated"], "options": ["color: 1 pack", "size: 12 feet (3 pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["1 pack"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLV9BYY", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B019MGTHFQ", "instruction": "i'm looking for high speed 3 feet hdmi cable male to female with ethernet black", "attributes": ["high speed", "gold plated"], "options": ["color: 5 pack", "size: 3 feet (10 pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["3 feet (10 pack)", "hdmi male to female"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57J29IO", "worker_id": "A258PTOZ3D2TQR"}], "B0842Y5Y5Z": [{"asin": "B0842Y5Y5Z", "instruction": "i am looking for a solid wood dining table with a barn wood finish.", "attributes": ["easy clean", "wood finish", "solid wood"], "options": ["color: barn wood finish", "size: 84\" x 37\""], "instruction_attributes": ["solid wood"], "instruction_options": ["barn wood finish"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHAMNBZ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B0842Y5Y5Z", "instruction": "i want a modern turned leg solid wood dining table with tuscany finish.", "attributes": ["easy clean", "wood finish", "solid wood"], "options": ["color: tuscany finish", "size: 96\" x 37\""], "instruction_attributes": ["solid wood"], "instruction_options": ["tuscany finish"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZJT7CX", "worker_id": "A2RBF3IIJP15IH"}], "B09N98D1KN": [{"asin": "B09N98D1KN", "instruction": "i am looking for an easy to use three piece set of hair growth treatment that works on damaged hair.", "attributes": ["easy use", "hair growth", "damaged hair", "hair loss"], "options": ["size: 3pcs"], "instruction_attributes": ["easy use", "damaged hair"], "instruction_options": ["3pcs"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWUBC1H", "worker_id": "A114NK7T5673GK"}], "B07Q4819L1": [{"asin": "B07Q4819L1", "instruction": "i cook beef so added artificial flavors 12 pack", "attributes": ["wild caught", "artificial flavors"], "options": ["style: beef 12 pack"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["beef 12 pack"], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOLVYVT", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B07Q4819L1", "instruction": "looking for wild caught coho salmon with organic butternut squash and beets in beef 6 pack", "attributes": ["wild caught", "artificial flavors"], "options": ["style: beef 6 pack"], "instruction_attributes": ["wild caught"], "instruction_options": ["beef 6 pack"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTPNV46", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B07Q4819L1", "instruction": "i want a 12 pack of serenity kids baby food pouches, wild caught salmon.", "attributes": ["wild caught", "artificial flavors"], "options": ["style: salmon 12 pack"], "instruction_attributes": ["wild caught"], "instruction_options": ["salmon 12 pack"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R45TY6", "worker_id": "A2RBF3IIJP15IH"}], "B00C2DZAIU": [{"asin": "B00C2DZAIU", "instruction": "i need cat 6 cables that are gold plated, black and 1 ft.", "attributes": ["gold plated", "high performance", "high speed", "high definition"], "options": ["color: black", "size: 1 ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["black", "1 ft"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AMJBW7", "worker_id": "A1MJVTR0PCKBWW"}], "B095FMPLN3": [{"asin": "B095FMPLN3", "instruction": "i want to find a plant based party mix gift set. get me the one in old bay flavor.", "attributes": ["protein serving", "plant based", "non gmo", "gift set"], "options": ["flavor name: old bay duo", "size: 2 piece assortment"], "instruction_attributes": ["plant based", "gift set"], "instruction_options": ["old bay duo"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSG9RS96", "worker_id": "A34QZDSTKZ3JO9"}], "B08M9MHZHQ": [{"asin": "B08M9MHZHQ", "instruction": "i'm looking for an easy to install living room celling light with a 2-light capacity", "attributes": ["mid century", "easy install", "light fixture", "pendant light", "dining room", "living room"], "options": ["size: 2-light"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["2-light"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG17HGYY", "worker_id": "A3EDFA8UQT5GG8"}], "B01MY97UM3": [{"asin": "B01MY97UM3", "instruction": "i am looking for a brushed nickel floor lamp. i believe the color is called great falls.", "attributes": ["nickel finish", "brushed nickel"], "options": ["color: great falls"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["great falls"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8OX2A2S", "worker_id": "A114NK7T5673GK"}], "B08BCS7GSL": [{"asin": "B08BCS7GSL", "instruction": "i would like some orange fluoride free toothpaste.", "attributes": ["fluoride free", "cruelty free"], "options": ["scent: orange"], "instruction_attributes": ["fluoride free"], "instruction_options": ["orange"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTAD9N5", "worker_id": "A1WS884SI0SLO4"}], "B015SJ7RYY": [{"asin": "B015SJ7RYY", "instruction": "i need pure white curtains that are machine washable and are 66 in by 54 in.", "attributes": ["machine washable", "easy install"], "options": ["color: pure white", "size: 66 in x 54 in (w x l)"], "instruction_attributes": ["machine washable"], "instruction_options": ["pure white", "66 in x 54 in (w x l)"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227C68F3", "worker_id": "A2ECRNQ3X5LEXD"}], "B01EVUAFAY": [{"asin": "B01EVUAFAY", "instruction": "i am looking for long lasting princess dreaming edp perfume spray.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHYDHQV", "worker_id": "A1EREKSZAA9V7B"}], "B09PV8NYXC": [{"asin": "B09PV8NYXC", "instruction": "i need a virtual reality gaming popgrip with wireless charging.", "attributes": ["compatible apple", "wireless charging"], "options": [""], "instruction_attributes": ["wireless charging"], "instruction_options": [], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRB1WNL", "worker_id": "A1NF6PELRKACS9"}], "B09CTM4CWK": [{"asin": "B09CTM4CWK", "instruction": "i'm looking for a relaxed fit, long sleeve women's blouse with animal print or polka dots. the color should be a-gray and the size 4x-large.", "attributes": ["hand wash", "machine wash", "long sleeve", "quality materials", "relaxed fit"], "options": ["color: a-gray", "size: 4x-large"], "instruction_attributes": ["long sleeve", "relaxed fit"], "instruction_options": ["a-gray", "4x-large"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1BM08Y", "worker_id": "A3EDFA8UQT5GG8"}], "B09P86GCLP": [{"asin": "B09P86GCLP", "instruction": "i would like a small multicolor button down shirt that i can machine wash.", "attributes": ["slim fit", "long lasting", "quick drying", "machine wash"], "options": ["color: multicolor a", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["multicolor a", "small"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AH8OEJ", "worker_id": "A1WS884SI0SLO4"}], "B082NW3WQZ": [{"asin": "B082NW3WQZ", "instruction": "i need dining room chairs that is in mustard color.", "attributes": ["assembly required", "pu leather", "dining room", "living room"], "options": ["color: mustard"], "instruction_attributes": ["dining room"], "instruction_options": ["mustard"], "assignment_id": "37TRT2X24116R7L1JO45INKV8QIJBS", "worker_id": "A1NF6PELRKACS9"}], "B085FYTFYB": [{"asin": "B085FYTFYB", "instruction": "i'm looking for a pair of high heeled, rubber soled pumps. pick the black suede ones in 9.", "attributes": ["high heel", "rubber sole"], "options": ["color: black-suede", "size: 9"], "instruction_attributes": ["high heel", "rubber sole"], "instruction_options": ["black-suede", "9"], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60L2AA7", "worker_id": "A34QZDSTKZ3JO9"}], "B08CMXQJZC": [{"asin": "B08CMXQJZC", "instruction": "find me a quick drying hawaiin shirt with short sleeves and a front pocket. get me a large size.", "attributes": ["machine wash", "quick drying", "button closure", "short sleeve", "relaxed fit", "daily wear"], "options": ["color: dark cyan, tall branch", "size: large"], "instruction_attributes": ["quick drying", "short sleeve"], "instruction_options": ["large"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCWAIGGP", "worker_id": "A1NF6PELRKACS9"}], "B007PK85K0": [{"asin": "B007PK85K0", "instruction": "i would like to purchase 10 packs of trader joe's pretzels. also make sure they contain no artificial flavors.", "attributes": ["trader joe", "artificial flavors"], "options": ["size: 10 pack"], "instruction_attributes": ["trader joe", "artificial flavors"], "instruction_options": ["10 pack"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA93WCZ3W", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B007PK85K0", "instruction": "i am looking for a 4 pack of trader joe's pretzels.", "attributes": ["trader joe", "artificial flavors"], "options": ["size: 4 pack"], "instruction_attributes": ["trader joe"], "instruction_options": ["4 pack"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZK4A72", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B007PK85K0", "instruction": "i would like a one pound bag of trader joes pretzels.", "attributes": ["trader joe", "artificial flavors"], "options": ["size: 1 pound (pack of 1)"], "instruction_attributes": ["trader joe"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYRMMQX", "worker_id": "A1WS884SI0SLO4"}], "B07BHH3RJ2": [{"asin": "B07BHH3RJ2", "instruction": "i need a leak proof travel bottle that is reusable and comes in 6 pack.", "attributes": ["leak proof", "travel bottles"], "options": [""], "instruction_attributes": ["leak proof", "travel bottles"], "instruction_options": [], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJI8V2LU", "worker_id": "A1NF6PELRKACS9"}], "B09QWZCPK4": [{"asin": "B09QWZCPK4", "instruction": "i would like a extra small multi green boxer brief that i can hand wash in the sink.", "attributes": ["machine washable", "hand wash", "comfortable fit", "elastic waistband"], "options": ["color: multi 35 green", "size: x-small"], "instruction_attributes": ["hand wash"], "instruction_options": ["multi 35 green", "x-small"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2NYL4I", "worker_id": "A1WS884SI0SLO4"}], "B008Y253N0": [{"asin": "B008Y253N0", "instruction": "i want to find some dairy free sprinkles. something with nuts would be great.", "attributes": ["non dairy", "dairy free"], "options": ["flavor name: nut"], "instruction_attributes": ["dairy free"], "instruction_options": ["nut"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP4FCOW", "worker_id": "A34QZDSTKZ3JO9"}], "B07L2M5C9C": [{"asin": "B07L2M5C9C", "instruction": "do you think you can find me a fluoride free toothpaste for sensitive teeth? i want something that comes in a 3.5 ounce size.", "attributes": ["fluoride free", "cruelty free", "long lasting", "seed oil", "sensitive teeth", "fresh breath"], "options": ["size: 3.5 ounce (pack of 2)"], "instruction_attributes": ["fluoride free", "sensitive teeth"], "instruction_options": [], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H08016E", "worker_id": "A34QZDSTKZ3JO9"}], "B086JM3CGY": [{"asin": "B086JM3CGY", "instruction": "can you find me a 4g lte coaxial cable? i need the 3 foot one.", "attributes": ["coaxial cable", "4g lte"], "options": ["color: rg316", "size: 100cm | 3ft"], "instruction_attributes": ["coaxial cable", "4g lte"], "instruction_options": ["100cm | 3ft"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFBU02V", "worker_id": "A34QZDSTKZ3JO9"}], "B07WVH54JP": [{"asin": "B07WVH54JP", "instruction": "i am looking for hair extensions black storage bag.it should be of high quality.", "attributes": ["high quality", "easy use", "hair extensions"], "options": ["color: black-storage bag#"], "instruction_attributes": ["high quality"], "instruction_options": ["black-storage bag#"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYKGMQD", "worker_id": "A3FG5PQHG5AH3Y"}], "B08BZTCDXT": [{"asin": "B08BZTCDXT", "instruction": "i would like a women's size 11 azure walking shoe made of vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: azure", "size: 11 women | 8.5 men"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["azure", "11 women | 8.5 men"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWN8PF8", "worker_id": "A1WS884SI0SLO4"}], "B0816GY2BD": [{"asin": "B0816GY2BD", "instruction": "i'm looking for a sythetic hair extensions. also, choose black colored one.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: black"], "instruction_attributes": ["synthetic hair", "hair extensions"], "instruction_options": ["black"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5Q4F4X", "worker_id": "AR0VJ5XRG16UJ"}], "B019IOGFDY": [{"asin": "B019IOGFDY", "instruction": "i want a hdmi cable with high speed and 1.5 feet size.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 1.5 feet (10-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["1.5 feet (10-pack)"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR43QUFX", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B019IOGFDY", "instruction": "i am interested in a high speed hdmi cable that is 10 feet long and comes in a 2 pack.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 2 pack", "size: 10 feet (3-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["2 pack", "10 feet (3-pack)"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3VZ5N1S", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B019IOGFDY", "instruction": "i'm looking for an high speed hdmi cable which is gold plated. also, choose a pack of 4 hdmi male to male cable of size 3 feet one.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 4 pack", "size: 3 feet (3-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["4 pack", "3 feet (3-pack)", "hdmi male to male"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UP0G1Y", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B019IOGFDY", "instruction": "i am looking for high speed hdmi cable of size 75 feet.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 2 pack", "size: 75 feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["75 feet (single pack)"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLZXDR8", "worker_id": "A1Q8PPQQCWGY0D"}], "B093YS65BV": [{"asin": "B093YS65BV", "instruction": "i'm trying to find a laundry bag for women.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVAGBIT", "worker_id": "A34QZDSTKZ3JO9"}], "B09CNNJZJH": [{"asin": "B09CNNJZJH", "instruction": "i want a loose fit pullover. pick out the one in gray, please.", "attributes": ["machine washable", "loose fit", "hand wash", "high waist", "long sleeve", "laundry bag"], "options": ["color: a gray", "size: large"], "instruction_attributes": ["loose fit"], "instruction_options": ["a gray"], "assignment_id": "326O153BMT8RVOXTJJKKGXV362MEDV", "worker_id": "A34QZDSTKZ3JO9"}], "B003VP5TPW": [{"asin": "B003VP5TPW", "instruction": "i want a sonoma oak or white 3 tier classic tube that comprises of shelving units and a tv stand in my living room. also choose the one designed with engineered wood.", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: sonoma oak | white", "pattern name: shelving unit + tv stands", "size: 3-tier classic tube"], "instruction_attributes": ["engineered wood", "living room"], "instruction_options": ["sonoma oak | white", "shelving unit + tv stands", "3-tier classic tube"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z45ZCQ6", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B003VP5TPW", "instruction": "i am looking for a french oak grey | black corner shelves for living room", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: french oak grey | black", "pattern name: shelving unit + display rack", "size: 5-tier"], "instruction_attributes": ["living room"], "instruction_options": ["french oak grey | black"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPP3WFC", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B003VP5TPW", "instruction": "i am searching for 3-tier classic tube white color corner shelf for living room", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: beech | white", "pattern name: shelving unit + end table", "size: 3-tier classic tube"], "instruction_attributes": ["living room"], "instruction_options": ["beech | white", "3-tier classic tube"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A4CHFP", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B003VP5TPW", "instruction": "i need a 5-tier corner shelf for my living room.", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: cream faux marble | white", "pattern name: shelving unit + tv stands", "size: 5-tier"], "instruction_attributes": ["living room"], "instruction_options": ["5-tier"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PLEEQB", "worker_id": "A1NF6PELRKACS9"}], "B07TTSM7RN": [{"asin": "B07TTSM7RN", "instruction": "i am in search of a black printed heavy duty toiletry bags which will be able to resist the water damage.", "attributes": ["heavy duty", "water resistant", "easy carry", "high quality"], "options": ["color: black print"], "instruction_attributes": ["heavy duty", "water resistant"], "instruction_options": ["black print"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017WP4PN", "worker_id": "A14BSOU2Y5JNT0"}, {"asin": "B07TTSM7RN", "instruction": "i am looking for an off-white toiletry bag that is easy to carry.", "attributes": ["heavy duty", "water resistant", "easy carry", "high quality"], "options": ["color: off-white printing"], "instruction_attributes": ["easy carry"], "instruction_options": ["off-white printing"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3ICLZ5", "worker_id": "A2ECRNQ3X5LEXD"}], "B08GBZB5X8": [{"asin": "B08GBZB5X8", "instruction": "i want help getting an open toe, non-slip sandal. get the ones in blue in women's size 6.", "attributes": ["open toe", "non slip", "ankle strap", "memory foam"], "options": ["color: z1_blue", "size: 6"], "instruction_attributes": ["open toe", "non slip"], "instruction_options": ["z1_blue", "6"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDT6IAI", "worker_id": "A34QZDSTKZ3JO9"}], "B012JD9X26": [{"asin": "B012JD9X26", "instruction": "i am looking for butter from grass fed cows i need something non gmo, and gluten free. glass jar 16 oz if possible.", "attributes": ["grass fed", "trader joe", "artificial ingredients", "keto friendly", "low carb", "non gmo", "gluten free"], "options": ["size: 16 fl oz (pack of 1)"], "instruction_attributes": ["grass fed", "non gmo", "gluten free"], "instruction_options": ["16 fl oz (pack of 1)"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6OI1MM6", "worker_id": "A2KW17G25L25R8"}], "B07FCRDYMP": [{"asin": "B07FCRDYMP", "instruction": "i need a 4.7 ounce paraben free makeup remover.", "attributes": ["paraben free", "cruelty free", "sensitive skin"], "options": ["size: 4.7 fl oz (pack of 1)"], "instruction_attributes": ["paraben free"], "instruction_options": ["4.7 fl oz (pack of 1)"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K3W21W", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KZSK9CP": [{"asin": "B07KZSK9CP", "instruction": "i need to get a new high performance printer for my office.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49CBTD2", "worker_id": "A34QZDSTKZ3JO9"}], "B083MYW6QY": [{"asin": "B083MYW6QY", "instruction": "i am looking for king sized platform bed.it should be made of solid wood.", "attributes": ["button tufted", "box spring", "solid wood"], "options": ["color: white", "size: king", "style: metal bed w | headboard"], "instruction_attributes": ["solid wood"], "instruction_options": ["king"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66MFZF3", "worker_id": "A3FG5PQHG5AH3Y"}], "B09BKH4DMM": [{"asin": "B09BKH4DMM", "instruction": "i'm looking for jeans that are machine washable and are in size 27.", "attributes": ["machine washable", "machine wash"], "options": ["size: 27"], "instruction_attributes": ["machine washable"], "instruction_options": ["27"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDE72OK", "worker_id": "A1MJVTR0PCKBWW"}], "B09N1HXD28": [{"asin": "B09N1HXD28", "instruction": "i need a tv stand that is wall mounted and is walnut colored. size should be 51\"w x 14\"d x 18\"h.", "attributes": ["wall mounted", "easy clean", "easy assemble", "storage space", "living room"], "options": ["color: walnut 013", "size: 51\"w x 14\"d x 18\"h"], "instruction_attributes": [], "instruction_options": ["51\"w x 14\"d x 18\"h"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MIBFOG", "worker_id": "A1MJVTR0PCKBWW"}], "B09BYXC5Z7": [{"asin": "B09BYXC5Z7", "instruction": "i'm looking for a white, solid wood bar stool. i just need to make sure that it's about 45 inches high.", "attributes": ["high density", "white item", "easy assemble", "faux leather", "solid wood", "living room"], "options": ["color: white", "size: 45'' high"], "instruction_attributes": ["white item", "solid wood"], "instruction_options": ["white", "45'' high"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXFQWK8", "worker_id": "A34QZDSTKZ3JO9"}], "B079PSXB8B": [{"asin": "B079PSXB8B", "instruction": "please find a dust poof red color bluetooth speaker", "attributes": ["dust proof", "hands free"], "options": ["color: red"], "instruction_attributes": ["dust proof"], "instruction_options": ["red"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW0VT44", "worker_id": "A258PTOZ3D2TQR"}], "B07W92ZMZN": [{"asin": "B07W92ZMZN", "instruction": "i am looking for a remote control for an lg blu-ray dvd home theater system.", "attributes": ["batteries included", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG36LSU", "worker_id": "A2KW17G25L25R8"}, {"asin": "B07W92ZMZN", "instruction": "i want a remote control for lg blu ray", "attributes": ["batteries included", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSKP8B8", "worker_id": "A2Y2TURT2VEYZN"}], "B09286DYTK": [{"asin": "B09286DYTK", "instruction": "i need a wifi ip surveillance camera and stainless steel waterproof junction box with external speaker", "attributes": ["easy install", "stainless steel"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3ARQNI", "worker_id": "A258PTOZ3D2TQR"}], "B08QZCDRYH": [{"asin": "B08QZCDRYH", "instruction": "i need a durable 13\u201d lightweight case for my macbook; i\u2019d prefer a red one.", "attributes": ["light weight", "case cover"], "options": ["color: matte red"], "instruction_attributes": ["light weight"], "instruction_options": ["matte red"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNRJ8H1", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B08QZCDRYH", "instruction": "i want to find a lightweight macbook pro case cover that has a matte blue color.", "attributes": ["light weight", "case cover"], "options": ["color: matte blue"], "instruction_attributes": ["light weight", "case cover"], "instruction_options": ["matte blue"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUBYA9M", "worker_id": "A345TDMHP3DQ3G"}], "B07JH27T27": [{"asin": "B07JH27T27", "instruction": "i'm looking for a deborah lippman gel lab pro nail polish. ensure the color is the full coverage bright red cr\u00e8me", "attributes": ["animal testing", "nail polish"], "options": ["color: she's a rebel - full coverage bright red cr\u00e8me"], "instruction_attributes": ["nail polish"], "instruction_options": [], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSD526L", "worker_id": "A1HMZJ59OPLD1P"}], "B004QVVJ7M": [{"asin": "B004QVVJ7M", "instruction": "i want to get a high resolution and high performance hdmi cable.", "attributes": ["high resolution", "high performance"], "options": [""], "instruction_attributes": ["high resolution", "high performance"], "instruction_options": [], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW8BNFE", "worker_id": "A34QZDSTKZ3JO9"}], "B09D3M46H2": [{"asin": "B09D3M46H2", "instruction": "i need a high performance smartwatch band compatible with apple. pick something in black gray color.", "attributes": ["dust proof", "compatible apple", "high performance", "stainless steel"], "options": ["color: 5-gray teal | black gray | lightblue teal | black blue", "size: 42mm | 44mm | 45mm | ml"], "instruction_attributes": ["compatible apple", "high performance"], "instruction_options": ["5-gray teal | black gray | lightblue teal | black blue"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NFGKBQ", "worker_id": "A1NF6PELRKACS9"}], "B09NVVQCN8": [{"asin": "B09NVVQCN8", "instruction": "i buy a solid wood in white color", "attributes": ["twin size", "assembly required", "box spring", "solid wood"], "options": ["color: white", "size: twin with slide+fence"], "instruction_attributes": ["solid wood"], "instruction_options": ["white"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFK13VT", "worker_id": "A226L9F2AZ38CL"}], "B07Q6C1BRG": [{"asin": "B07Q6C1BRG", "instruction": "i need a multipack of living room curtains that are 29\" by 45\"", "attributes": ["printing technology", "living room", "dining room"], "options": ["color: multi 10", "size: 29\" w x 45\" l"], "instruction_attributes": ["living room"], "instruction_options": ["multi 10", "29\" w x 45\" l"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AFWUYC", "worker_id": "A2ECRNQ3X5LEXD"}], "B085NXXD8J": [{"asin": "B085NXXD8J", "instruction": "i need a face mask that is for dark circles and is clinically proven to work.", "attributes": ["clinically proven", "dark circles"], "options": [""], "instruction_attributes": ["clinically proven", "dark circles"], "instruction_options": [], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VUYWY2", "worker_id": "A1MJVTR0PCKBWW"}], "B01GZI0JMY": [{"asin": "B01GZI0JMY", "instruction": "i am looking for 9 ounce packs of 12 certified organic, non gmo, and gluten free organic brown rice cakes.", "attributes": ["certified organic", "non gmo", "gluten free"], "options": ["flavor name: apple cinnamon", "size: 9 ounce (pack of 12)"], "instruction_attributes": ["certified organic", "non gmo", "gluten free"], "instruction_options": ["9 ounce (pack of 12)"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSO9YLLG", "worker_id": "A2KW17G25L25R8"}, {"asin": "B01GZI0JMY", "instruction": "i am hoping to find some tamari with seaweed flavored rice cakes. i want them to be gluten free and non gmo", "attributes": ["certified organic", "non gmo", "gluten free"], "options": ["flavor name: tamari with seaweed", "size: 9.5 ounce (pack of 12)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["tamari with seaweed"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP56OAQ", "worker_id": "A32JEH06T23HDF"}], "B099KRPB3M": [{"asin": "B099KRPB3M", "instruction": "i am looking for a pack of 12 cafe mocha in plant based form.", "attributes": ["plant based", "soy free", "dairy free", "non gmo", "gluten free", "artificial flavors"], "options": ["flavor name: caf\u00e9 mocha", "size: pack of 12"], "instruction_attributes": ["plant based"], "instruction_options": ["caf\u00e9 mocha", "pack of 12"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB10RLUA", "worker_id": "A2KW17G25L25R8"}], "B091JGLW4G": [{"asin": "B091JGLW4G", "instruction": "i need an usda organic jinxuan oolong tea bag that is hand crafted.", "attributes": ["usda organic", "hand crafted"], "options": ["flavor name: jinxuan oolong", "size: unwrapped (40 count sachets)"], "instruction_attributes": ["usda organic", "hand crafted"], "instruction_options": ["jinxuan oolong"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLJH4I0", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B091JGLW4G", "instruction": "i want t secretea oolong tea bags, taiwan jinxuan 100% organic.", "attributes": ["usda organic", "hand crafted"], "options": ["flavor name: jinxuan oolong", "size: unwrapped sachets (40 count)"], "instruction_attributes": ["usda organic"], "instruction_options": ["jinxuan oolong"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKABEN8", "worker_id": "A2RBF3IIJP15IH"}], "B0829NNZPL": [{"asin": "B0829NNZPL", "instruction": "i am looking for a hair styling mirror.", "attributes": ["easy use", "hair styling"], "options": [""], "instruction_attributes": ["hair styling"], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC2LD0J", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QCYJ2QM": [{"asin": "B09QCYJ2QM", "instruction": "get a tongue cleaner that is easy clean and use, and is also stainless steel.", "attributes": ["bpa free", "easy clean", "easy use", "high quality", "stainless steel", "bad breath"], "options": [""], "instruction_attributes": ["easy clean", "easy use", "stainless steel"], "instruction_options": [], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7F8MK8G", "worker_id": "A1MJVTR0PCKBWW"}], "B01M0XSD38": [{"asin": "B01M0XSD38", "instruction": "can you find me a face moisturizer for dead and dry skin? i want the one that comes in the 5.07 ounces.", "attributes": ["dry skin", "dead skin"], "options": ["color: the first treatment essence intensive moist", "size: 5.07 fl oz (pack of 1)"], "instruction_attributes": ["dry skin", "dead skin"], "instruction_options": [], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YVIHEC", "worker_id": "A34QZDSTKZ3JO9"}], "B09M6KRDK1": [{"asin": "B09M6KRDK1", "instruction": "i need a black twin sized bed.", "attributes": ["twin size", "white item", "easy assemble", "box spring"], "options": ["color: d black", "size: twin | twin | full"], "instruction_attributes": ["twin size"], "instruction_options": ["d black", "twin | twin | full"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVIH71E", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LR3WFLR": [{"asin": "B09LR3WFLR", "instruction": "i\u2019d like to find a super soft luxurious fleece throw that\u2019s about 50\u201d x 40\u201d in size. it should look good in my living room.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: black ultra-soft micro fleece blanket mario kart tour ultra-soft micro fleece blanket 12", "size: 50\"x40\""], "instruction_attributes": ["super soft", "fleece throw", "living room"], "instruction_options": ["50\"x40\""], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NFHBKI", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B09LR3WFLR", "instruction": "i am looking for a 60\"x 50\" super soft throws", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: black ultra-soft micro fleece blanket mario kart tour1 ultra-soft micro fleece blanket 14", "size: 60\"x50\""], "instruction_attributes": ["super soft"], "instruction_options": ["60\"x50\""], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2I1FK6", "worker_id": "A9QRQL9CFJBI7"}], "B08XJF919X": [{"asin": "B08XJF919X", "instruction": "i need a 1.0mm braces brush that is easy to clean.", "attributes": ["non slip", "easy clean", "easy use", "oral hygiene"], "options": ["size: 1.0mm"], "instruction_attributes": ["easy clean"], "instruction_options": ["1.0mm"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SSEQTK", "worker_id": "A2RBF3IIJP15IH"}], "B07FRM6MLX": [{"asin": "B07FRM6MLX", "instruction": "i want the easy to use seasoning spice mix. look for the garlic butter option.", "attributes": ["hand crafted", "easy use"], "options": ["flavor name: garlic butter", "size: 2 pound refill bag"], "instruction_attributes": ["easy use"], "instruction_options": ["garlic butter"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MCWWZYP", "worker_id": "A1NF6PELRKACS9"}], "B08RJ2FPPM": [{"asin": "B08RJ2FPPM", "instruction": "i am looking for low sugar, low carb and gluten free cookies that has flavored chocolate cake", "attributes": ["low sugar", "gluten free", "low carb"], "options": ["flavor name: chocolate cake"], "instruction_attributes": ["low sugar", "gluten free", "low carb"], "instruction_options": ["chocolate cake"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODJ8WE4", "worker_id": "A258PTOZ3D2TQR"}], "B09PFVG2ND": [{"asin": "B09PFVG2ND", "instruction": "i need a henleys shirt, slim fit and fleece lined. color needs to be white and x-large in size.", "attributes": ["slim fit", "fleece lined", "long sleeve", "short sleeve", "polyester cotton", "gym workout"], "options": ["color: white", "size: x-large"], "instruction_attributes": ["slim fit", "fleece lined"], "instruction_options": ["white", "x-large"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPH2E68", "worker_id": "A1MJVTR0PCKBWW"}], "B092VGFJY3": [{"asin": "B092VGFJY3", "instruction": "hey i need some new press on nails. get me babalal cat eye ones that aren't toxic and make sure the color you get is purple.", "attributes": ["high quality", "non toxic", "nail art"], "options": ["pattern name: purple"], "instruction_attributes": ["non toxic"], "instruction_options": ["purple"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY88TXUY", "worker_id": "A33B85TN97HQ33"}], "B09HC9W6FK": [{"asin": "B09HC9W6FK", "instruction": "i would like a desktop mini computer with16 gig of ram and a intel core i9.", "attributes": ["dual band", "intel core"], "options": ["color: core i9-11900", "size: 16gb ram 512gb ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["core i9-11900", "16gb ram 512gb ssd"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGG6W2Q", "worker_id": "A1WS884SI0SLO4"}], "B09HR1DWBR": [{"asin": "B09HR1DWBR", "instruction": "i'm searching for sunkist\u00ae omega 3+6 trail mix , low sodium and gluten free snack with almonds, yogurt raisins, banana chips", "attributes": ["low sodium", "gluten free", "resealable bag"], "options": ["flavor name: sunkist\u00ae omega 3+6 trail mix"], "instruction_attributes": ["low sodium", "gluten free"], "instruction_options": ["sunkist\u00ae omega 3+6 trail mix"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKC8RH73", "worker_id": "A258PTOZ3D2TQR"}], "B07TYS4L2Q": [{"asin": "B07TYS4L2Q", "instruction": "i am looking for an old fashioned and gluten free rolled oats. i would need about 400 ounces of it.", "attributes": ["gluten free", "non gmo", "old fashioned"], "options": ["size: 400 ounce (pack of 1)", "style: resealable"], "instruction_attributes": ["gluten free", "old fashioned"], "instruction_options": ["400 ounce (pack of 1)"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2IUYND", "worker_id": "A1NF6PELRKACS9"}], "B00G7U29KQ": [{"asin": "B00G7U29KQ", "instruction": "i need a dermatologist tested instantly warm clay mask- 1 count (6 masks)", "attributes": ["dermatologist tested", "oil free"], "options": ["size: 1 count (6 masks)", "style: instantly warm clay mask"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["1 count (6 masks)", "instantly warm clay mask"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOHX7H64", "worker_id": "A258PTOZ3D2TQR"}], "B08JTPPFC3": [{"asin": "B08JTPPFC3", "instruction": "i would like to find raspberry jam snacks with real fruit combined with almond spread.", "attributes": ["non gmo", "real fruit", "high fructose"], "options": ["flavor name: almond spread", "size: 0.8 ounce (pack of 40)"], "instruction_attributes": ["real fruit"], "instruction_options": ["almond spread"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADE5WV4", "worker_id": "A3EDFA8UQT5GG8"}], "B00VMDDDT4": [{"asin": "B00VMDDDT4", "instruction": "i need area rugs in the color french cellar that i can easily spot clean.", "attributes": ["spot clean", "easy clean"], "options": ["color: french cellar", "size: set"], "instruction_attributes": ["spot clean"], "instruction_options": ["french cellar"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OSXM35", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PPVLKTQ": [{"asin": "B09PPVLKTQ", "instruction": "i am looking for a high quality purple ice roller skin care tool kit.", "attributes": ["high quality", "bpa free", "anti aging", "long lasting", "easy use", "green tea", "fine lines"], "options": ["color: purple"], "instruction_attributes": ["high quality", "easy use"], "instruction_options": ["purple"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163PLQP7", "worker_id": "A1EREKSZAA9V7B"}], "B08936CZHQ": [{"asin": "B08936CZHQ", "instruction": "i want a facial serum with antioxidants, oil free, clinically proven, in a 1.7 ounce just one pack.", "attributes": ["oil free", "clinically proven", "alcohol free", "hyaluronic acid", "dry skin"], "options": ["size: 1.7 ounce (pack of 1)", "style: water gel with trial cleanser"], "instruction_attributes": ["oil free", "clinically proven"], "instruction_options": ["1.7 ounce (pack of 1)"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR120CX", "worker_id": "AXIH2UZ6NNMRE"}, {"asin": "B08936CZHQ", "instruction": "i'd like to shop for a three piece set of eye creams that have hyaluronic acid and are oil free.", "attributes": ["oil free", "clinically proven", "alcohol free", "hyaluronic acid", "dry skin"], "options": ["size: 3 piece set", "style: eye cream"], "instruction_attributes": ["oil free", "hyaluronic acid"], "instruction_options": ["3 piece set", "eye cream"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PQO2XH", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08936CZHQ", "instruction": "i would like a 0.5 fluid ounce bottle of water gel eye cream that is clinically proven.", "attributes": ["oil free", "clinically proven", "alcohol free", "hyaluronic acid", "dry skin"], "options": ["size: 0.5 fl oz (pack of 1)", "style: water gel"], "instruction_attributes": ["clinically proven"], "instruction_options": ["0.5 fl oz (pack of 1)", "water gel"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOC3NO7", "worker_id": "A1WS884SI0SLO4"}], "B0018CK0EU": [{"asin": "B0018CK0EU", "instruction": "i am looking for a good freeze dried food for my dog.", "attributes": ["freeze dried", "grass fed", "grain free"], "options": ["color: chicken", "size: 14 ounce (pack of 1)"], "instruction_attributes": ["freeze dried"], "instruction_options": ["14 ounce (pack of 1)"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMTY3WY", "worker_id": "A2KW17G25L25R8"}], "B09NVS922B": [{"asin": "B09NVS922B", "instruction": "like to buy a high speed fast charging green usb type c cable 3.1a in 3.3ft size length .", "attributes": ["fast charging", "high speed"], "options": ["color: green", "size: 3.3ft"], "instruction_attributes": ["fast charging", "high speed"], "instruction_options": ["green", "3.3ft"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79E2KQL", "worker_id": "A3AYHESLQSDY5T"}], "B08NYJQQJG": [{"asin": "B08NYJQQJG", "instruction": "i would like a black dual band repeater.", "attributes": ["dual band", "high speed"], "options": ["color: black uk"], "instruction_attributes": ["dual band"], "instruction_options": ["black uk"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMR5ASZ", "worker_id": "A1WS884SI0SLO4"}], "B09RQN7LW3": [{"asin": "B09RQN7LW3", "instruction": "i am looking for large sized men tank.it shoud be made of polyester heather.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: men", "size: large"], "instruction_attributes": ["polyester heathers"], "instruction_options": ["large"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRI8FMD", "worker_id": "A3FG5PQHG5AH3Y"}], "B089Z2S9XT": [{"asin": "B089Z2S9XT", "instruction": "i would like a german chocolate flavored syrup that is sugar free and 15.89 oz.", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: german chocolate", "size: 15.89 ounce"], "instruction_attributes": ["sugar free"], "instruction_options": ["german chocolate", "15.89 ounce"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733IKEB0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B089Z2S9XT", "instruction": "i am looking for a sugar free drink syrup. get the one in the egg nog flavor.", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: egg nog", "size: 25.4 fl ounce (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["egg nog"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR025XUKAU", "worker_id": "A34QZDSTKZ3JO9"}], "B09FQ44D2B": [{"asin": "B09FQ44D2B", "instruction": "i am looking for a super soft, fleece throw blanket that has to be at least 80\"x60\" and ideally have a sloth on it.", "attributes": ["super soft", "machine washable", "fleece throw"], "options": ["color: sloth", "size: l 80\"x60\" for adults"], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["sloth", "l 80\"x60\" for adults"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME901D2Z", "worker_id": "A114NK7T5673GK"}, {"asin": "B09FQ44D2B", "instruction": "i want to get a fleece throw that's machine washable. it needs to be extra small 40 by 30 in and strawberry cow 2 color.", "attributes": ["super soft", "machine washable", "fleece throw"], "options": ["color: strawberry cow 2", "size: xs 40\"x30\" for pets"], "instruction_attributes": ["machine washable", "fleece throw"], "instruction_options": ["strawberry cow 2", "xs 40\"x30\" for pets"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TDI2KT", "worker_id": "A2YNPKYEFDZ6C9"}], "B09PTRF18Z": [{"asin": "B09PTRF18Z", "instruction": "i am looking for sweatpants and short pants for gym workout", "attributes": ["daily casual", "elastic closure", "elastic waist", "gym workout"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["daily casual"], "instruction_options": ["black"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3C8VB6", "worker_id": "A10OGH5CQBXL5N"}], "B09QCRHF47": [{"asin": "B09QCRHF47", "instruction": "i want to get a birthday party themed cake topper. get the one with the purple butterfly on it.", "attributes": ["birthday cake", "birthday party"], "options": ["color: purple butterfly"], "instruction_attributes": ["birthday party"], "instruction_options": ["purple butterfly"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BHNVJX", "worker_id": "A34QZDSTKZ3JO9"}], "B08CV7F984": [{"asin": "B08CV7F984", "instruction": "i'm searching for a toothpick oral hygiene pink color brush", "attributes": ["oral hygiene", "bad breath"], "options": ["color: pink", "size: 0.7mm"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["pink"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYJ5M6H", "worker_id": "A258PTOZ3D2TQR"}], "B083Z8JXF3": [{"asin": "B083Z8JXF3", "instruction": "i need a 2.6 ounce deodorant that is cruelty free and smells of mandarin woods.", "attributes": ["dermatologist tested", "alcohol free", "cruelty free", "sensitive skin"], "options": ["scent: mandarin woods", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["mandarin woods", "2.6 ounce (pack of 1)"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKVPUIV", "worker_id": "A2ECRNQ3X5LEXD"}], "B071W9JN82": [{"asin": "B071W9JN82", "instruction": "i am looking to buy a high powered car cd receiver with bluetooth.", "attributes": ["power amplifier", "high power"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0KP8JA", "worker_id": "A114NK7T5673GK"}], "B07C4NSKVJ": [{"asin": "B07C4NSKVJ", "instruction": "i am looking for high speed 4k hdmi cable of 6 feet.i need 80 pcs.", "attributes": ["ultra hd", "heavy duty", "gold plated", "high speed"], "options": ["size: 6ft-80pcs"], "instruction_attributes": ["high speed"], "instruction_options": ["6ft-80pcs"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WNE24H", "worker_id": "A3FG5PQHG5AH3Y"}], "B0972QDW7H": [{"asin": "B0972QDW7H", "instruction": "i'm looking for twin bunk beds with box spring. also, choose black colored one.", "attributes": ["white item", "box spring"], "options": ["color: black(house)"], "instruction_attributes": ["box spring"], "instruction_options": ["black(house)"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163O8PQR", "worker_id": "AR0VJ5XRG16UJ"}], "B08NPHTDGH": [{"asin": "B08NPHTDGH", "instruction": "i am looking for a wall mounted mid-century sconce that preferably has a plug in 2 pack.", "attributes": ["wall mounted", "mid century", "glass shade"], "options": ["color: plug in-2pack"], "instruction_attributes": ["wall mounted", "mid century"], "instruction_options": ["plug in-2pack"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2TK94C", "worker_id": "A114NK7T5673GK"}], "B09HS75C7D": [{"asin": "B09HS75C7D", "instruction": "i need a elephant11lbg8852 valentine's fleece throw that is 50x60in.", "attributes": ["super soft", "fleece throw"], "options": ["color: elephant11lbg8852", "size: 50x60in"], "instruction_attributes": ["fleece throw"], "instruction_options": ["elephant11lbg8852", "50x60in"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTPOP9R", "worker_id": "A2RBF3IIJP15IH"}], "B005GEZGSQ": [{"asin": "B005GEZGSQ", "instruction": "i am looking for restore & repair oil.which is effective for anti aging.", "attributes": ["anti aging", "natural hair"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPH2SYJ", "worker_id": "A3FG5PQHG5AH3Y"}], "B08D6YC8W9": [{"asin": "B08D6YC8W9", "instruction": "can you find me a clear screen protector for glass screens?", "attributes": ["glass screen", "tempered glass"], "options": ["color: clear", "size: samsung a32 5g", "style: defender"], "instruction_attributes": ["glass screen"], "instruction_options": ["clear"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MFSWL8", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B08D6YC8W9", "instruction": "i would like a clear performance glass screen protector for a samsung s21.", "attributes": ["glass screen", "tempered glass"], "options": ["color: clear | blue", "size: samsung s21 5g", "style: performance glass"], "instruction_attributes": ["glass screen"], "instruction_options": ["clear | blue", "samsung s21 5g", "performance glass"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FPTFBP", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08D6YC8W9", "instruction": "i would like a clear value glass screen samsung a32 5g phone.", "attributes": ["glass screen", "tempered glass"], "options": ["color: clear | black", "size: samsung a32 5g", "style: value glass"], "instruction_attributes": ["glass screen"], "instruction_options": ["clear | black", "samsung a32 5g", "value glass"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68I2A46", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08D6YC8W9", "instruction": "i am looking for a tempered glass screen protector for an iphone 12 mini.", "attributes": ["glass screen", "tempered glass"], "options": ["color: black | clear", "size: iphone 12 mini", "style: symmetry"], "instruction_attributes": ["tempered glass"], "instruction_options": ["iphone 12 mini"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GGJUZ0", "worker_id": "A1EREKSZAA9V7B"}], "B07SX57P6P": [{"asin": "B07SX57P6P", "instruction": "i'm looking for desktop computer with intel core processor.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["intel core"], "instruction_options": [], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK243GKNZ", "worker_id": "AR0VJ5XRG16UJ"}], "B08KT61CYV": [{"asin": "B08KT61CYV", "instruction": "i am shopping for a ready use syrup that is lemon lime in flavor.", "attributes": ["ready use", "quality ingredients", "birthday cake"], "options": ["flavor name: lemon lime", "size: 128 fl oz (gallon)"], "instruction_attributes": ["ready use"], "instruction_options": ["lemon lime"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49DDDTQ", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B08KT61CYV", "instruction": "i'm looking for a 32 ounce bottle of peach flavored ready to use syrup.", "attributes": ["ready use", "quality ingredients", "birthday cake"], "options": ["flavor name: peach", "size: 32 fl oz (quart)"], "instruction_attributes": ["ready use"], "instruction_options": ["peach", "32 fl oz (quart)"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1HO08C", "worker_id": "AR9AU5FY1S3RO"}], "B09MZ5RBRT": [{"asin": "B09MZ5RBRT", "instruction": "i'm looking for a camouflage colored leggings which is high at the waist.", "attributes": ["butt lifting", "fleece lined", "wide leg", "quick drying", "moisture wicking", "tummy control", "high waist"], "options": ["color: camouflage", "size: x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["camouflage"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HK0WOS", "worker_id": "A15ERD4HOFEPHM"}], "B08P365RJW": [{"asin": "B08P365RJW", "instruction": "do you think you can find me a power amp that is easy to install?", "attributes": ["power amplifier", "easy install"], "options": [""], "instruction_attributes": ["power amplifier", "easy install"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLV3AV8", "worker_id": "A34QZDSTKZ3JO9"}], "B08XNSPPTK": [{"asin": "B08XNSPPTK", "instruction": "i am looking for remote controls that include batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7SWLHG", "worker_id": "A2ECRNQ3X5LEXD"}], "B088S15MCJ": [{"asin": "B088S15MCJ", "instruction": "i want to buy a moisturizing milk purifying gel cleanser that is sulfate and alcohol free.", "attributes": ["sulfate free", "paraben free", "alcohol free"], "options": ["style: moisturizing milk cleanser"], "instruction_attributes": ["sulfate free", "alcohol free"], "instruction_options": ["moisturizing milk cleanser"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9C3E2U", "worker_id": "A114NK7T5673GK"}], "B072C9CB54": [{"asin": "B072C9CB54", "instruction": "i need a small yellow polyester spandex lingerie sleepwear.", "attributes": ["unique design", "polyester spandex"], "options": ["color: yellow", "size: small"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["yellow", "small"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXG3KWB", "worker_id": "A1NF6PELRKACS9"}], "B0848BNQFD": [{"asin": "B0848BNQFD", "instruction": "i am looking for black magic seasoning that is gluten free and 1.37 pounds.", "attributes": ["gluten free", "gift set"], "options": ["flavor name: black magic", "size: 1.37 pound (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["black magic", "1.37 pound (pack of 1)"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIQ2MTC", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0848BNQFD", "instruction": "i want variety pack gluten free meat seasoning spices gift set size :5.5 ounce (pack of 4)", "attributes": ["gluten free", "gift set"], "options": ["flavor name: variety pack", "size: 5.5 ounce (pack of 4)"], "instruction_attributes": ["gluten free", "gift set"], "instruction_options": ["variety pack", "5.5 ounce (pack of 4)"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKQVPE0", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B0848BNQFD", "instruction": "variety pack seasoning, gluten free 5.5oz gift set (pack of 4.)i'm cooking for friends, need to gift the couple something gourmet. mis rubins magic seems to be ideal.", "attributes": ["gluten free", "gift set"], "options": ["flavor name: creole magic", "size: 5.5 ounce (pack of 4)"], "instruction_attributes": ["gluten free", "gift set"], "instruction_options": ["5.5 ounce (pack of 4)"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OLAUH52", "worker_id": "A15IJ20C3R4HUO"}], "B078JFX823": [{"asin": "B078JFX823", "instruction": "i want an ontario furniture 5 foot solid plastic folding table. if possible i need it to be heavy duty with the steel frame.", "attributes": ["heavy duty", "coated steel", "steel frame"], "options": ["size: 5 foot solid"], "instruction_attributes": ["heavy duty", "steel frame"], "instruction_options": ["5 foot solid"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WM2425", "worker_id": "A1CB72B51L7TKE"}], "B09HPP4YZX": [{"asin": "B09HPP4YZX", "instruction": "do you think you can find me some long lasting women's nail polish? i want the one in the color a-07.", "attributes": ["eco friendly", "easy carry", "long lasting", "high quality", "nail polish", "nail art"], "options": ["color: a-07"], "instruction_attributes": ["long lasting", "nail polish"], "instruction_options": ["a-07"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBNOEJG", "worker_id": "A34QZDSTKZ3JO9"}], "B0917L2DBN": [{"asin": "B0917L2DBN", "instruction": "i need a 60 silver mist wig that is made from natural hair.", "attributes": ["synthetic hair", "natural hair", "hair growth"], "options": ["color: rl56 | 60 silver mist"], "instruction_attributes": ["natural hair"], "instruction_options": ["rl56 | 60 silver mist"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DN34K8", "worker_id": "A2RBF3IIJP15IH"}], "B09H6QRWJ6": [{"asin": "B09H6QRWJ6", "instruction": "i'm searching for daily wear men loafers with size 11 and black | 01 color", "attributes": ["rubber sole", "daily wear"], "options": ["color: black | 01", "size: 11"], "instruction_attributes": ["daily wear"], "instruction_options": ["black | 01", "11"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOHX76HT", "worker_id": "A258PTOZ3D2TQR"}], "B08QJJX71B": [{"asin": "B08QJJX71B", "instruction": "i am looking for an all in one bluetooth record player and carrying case in brown.", "attributes": ["heavy duty", "easy carry", "carrying case"], "options": ["color: black", "style: player"], "instruction_attributes": ["carrying case"], "instruction_options": ["black", "player"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3HTZLY", "worker_id": "A2KW17G25L25R8"}], "B000V1JVAI": [{"asin": "B000V1JVAI", "instruction": "can you find me a shelf stable potato side dish? i want something that i can cook in the microwave.", "attributes": ["shelf stable", "artificial ingredients", "protein serving", "quality ingredients"], "options": ["style: microwave meals"], "instruction_attributes": ["shelf stable"], "instruction_options": ["microwave meals"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IM923L", "worker_id": "A34QZDSTKZ3JO9"}], "B07PLF2WW5": [{"asin": "B07PLF2WW5", "instruction": "i need you to find me a high definition bullet camera that has 1080p hd.", "attributes": ["high definition", "1080p hd"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEE5682", "worker_id": "A34QZDSTKZ3JO9"}], "B085TN7R2X": [{"asin": "B085TN7R2X", "instruction": "i'm looking for a portable bluetooth speakers with plug play and has usb port. also, choose mini mamba sized black colored one.", "attributes": ["plug play", "usb port"], "options": ["color: black", "style: mini mamba"], "instruction_attributes": ["plug play", "usb port"], "instruction_options": ["black", "mini mamba"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVCZUT6", "worker_id": "AR0VJ5XRG16UJ"}], "B08B3K4YHZ": [{"asin": "B08B3K4YHZ", "instruction": "i need a two pack of hdmi cables that are high speed and 35 feet.", "attributes": ["ultra hd", "high speed", "blu ray", "gold plated"], "options": ["color: 2 pack - nylon braided", "size: 35 feet (cl3) | 10.6 meter"], "instruction_attributes": ["high speed"], "instruction_options": ["2 pack - nylon braided", "35 feet (cl3) | 10.6 meter"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMKLWMD", "worker_id": "A2ECRNQ3X5LEXD"}], "B00FDXY2WG": [{"asin": "B00FDXY2WG", "instruction": "i need a water resistant pager that has a transmitter set.", "attributes": ["wall mounted", "water resistant", "aaa batteries"], "options": ["style: 1 transmitter set"], "instruction_attributes": ["water resistant"], "instruction_options": ["1 transmitter set"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQ8519K", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DCL3LH2": [{"asin": "B09DCL3LH2", "instruction": "i want a vogu twin platform wood trudle bed for teens. i need it in white-6 color.", "attributes": ["twin size", "white item", "easy assemble", "box spring", "white finish", "wood frame", "solid wood"], "options": ["color: white-6"], "instruction_attributes": ["white finish"], "instruction_options": ["white-6"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCG7JSMO", "worker_id": "A1CB72B51L7TKE"}], "B082FJSZHK": [{"asin": "B082FJSZHK", "instruction": "i would like wide leg black jeans that are small", "attributes": ["wide leg", "low rise", "straight leg", "tummy control", "high waist", "elastic waist", "short sleeve"], "options": ["color: black", "size: small"], "instruction_attributes": ["wide leg"], "instruction_options": ["black", "small"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2TM499", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GLWQ6T3": [{"asin": "B09GLWQ6T3", "instruction": "i am looking for a wireless mini 1080p spy camera with motion detection and night vision.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7SFRU5", "worker_id": "A1EREKSZAA9V7B"}], "B082ZYLXKQ": [{"asin": "B082ZYLXKQ", "instruction": "i need 30ml travel bottles.", "attributes": ["eco friendly", "fine mist", "travel bottles"], "options": ["size: 30ml"], "instruction_attributes": ["travel bottles"], "instruction_options": ["30ml"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SIZL3TD", "worker_id": "A226L9F2AZ38CL"}], "B09QC9H4S6": [{"asin": "B09QC9H4S6", "instruction": "i would like a women's xl dark heather cotton tank top that's machine washable.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: women", "size: x-large"], "instruction_attributes": ["machine wash", "heathers cotton", "cotton heather"], "instruction_options": ["dark heather", "women", "x-large"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYMQFXV", "worker_id": "A1WS884SI0SLO4"}], "B00WAKAEQS": [{"asin": "B00WAKAEQS", "instruction": "i'm looking for a pack of butter cookies made with quality ingredients. get me the 3 pound package.", "attributes": ["baked fresh", "quality ingredients"], "options": ["size: 3 pound"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["3 pound"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTUDM74", "worker_id": "A34QZDSTKZ3JO9"}], "B07ZYDBNH5": [{"asin": "B07ZYDBNH5", "instruction": "i am looking for light brown hair extensions for women.", "attributes": ["double sided", "hair extensions"], "options": ["color: light brown-body wave", "size: 14 inch (60 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["light brown-body wave"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOHX06HM", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07ZYDBNH5", "instruction": "find me an 18 inch long double sided human hair extensions that is golden brown and beach blonde in color.", "attributes": ["double sided", "hair extensions"], "options": ["color: golden brown&bleach blonde", "size: 18 inch (60 gram)"], "instruction_attributes": ["double sided", "hair extensions"], "instruction_options": ["golden brown&bleach blonde", "18 inch (60 gram)"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KOAHU1", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07ZYDBNH5", "instruction": "i need some 12 inch white blonde hair extensions", "attributes": ["double sided", "hair extensions"], "options": ["color: white blonde-body wave", "size: 12 inch (60 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["white blonde-body wave", "12 inch (60 gram)"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVJD1PJ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07ZYDBNH5", "instruction": "i am interested in 24 inch hair extensions", "attributes": ["double sided", "hair extensions"], "options": ["color: b18p22t60", "size: 24 inch (60 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["24 inch (60 gram)"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907VBAUE", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KP16BSQ": [{"asin": "B07KP16BSQ", "instruction": "i need a certified refurbished hp laser printer.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFHSEMT", "worker_id": "A2RBF3IIJP15IH"}], "B01J1PUN92": [{"asin": "B01J1PUN92", "instruction": "i want to find some keto friendly salsa made with quality ingredients.", "attributes": ["keto friendly", "dietary fiber", "quality ingredients"], "options": [""], "instruction_attributes": ["keto friendly", "quality ingredients"], "instruction_options": [], "assignment_id": "3JW0YLFXR4QKLUJBLEJGURROKN4WWB", "worker_id": "A34QZDSTKZ3JO9"}], "B01M2ZXXL6": [{"asin": "B01M2ZXXL6", "instruction": "let's see some long lasting moose that is about 250ml.", "attributes": ["paraben free", "long lasting", "natural ingredients", "hair styling"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3H986I6", "worker_id": "A15ERD4HOFEPHM"}], "B007EZ8SHQ": [{"asin": "B007EZ8SHQ", "instruction": "i need to find a sugar free, fruit flavoured powdered drink.", "attributes": ["low calorie", "sugar free", "zero sugar"], "options": [""], "instruction_attributes": ["sugar free"], "instruction_options": [], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZM3HSP", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B007EZ8SHQ", "instruction": "i am looking for sugar free soft drink mixes with fruit punch", "attributes": ["low calorie", "sugar free", "zero sugar"], "options": [""], "instruction_attributes": ["sugar free"], "instruction_options": [], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR4VA0V", "worker_id": "A16M39T60N60NO"}], "B08CBS1Z2Q": [{"asin": "B08CBS1Z2Q", "instruction": "i am looking for a good hair salon.", "attributes": ["hair salon", "hair dye"], "options": [""], "instruction_attributes": ["hair salon"], "instruction_options": [], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW2U8SG", "worker_id": "A2KW17G25L25R8"}], "B09GK63B91": [{"asin": "B09GK63B91", "instruction": "i'm looking for a heavy duty case for my phone. can you get me one in black and orange?", "attributes": ["compatible apple", "heavy duty", "easy install", "glass screen"], "options": ["color: black orange+clip", "size: xs max"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black orange+clip"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WT5F7U", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B09GK63B91", "instruction": "i am looking for an easy to install iphone case that is pink and blue and xs max in size.", "attributes": ["compatible apple", "heavy duty", "easy install", "glass screen"], "options": ["color: pink+blue", "size: xs max"], "instruction_attributes": ["easy install"], "instruction_options": ["pink+blue", "xs max"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBIAHGK", "worker_id": "A114NK7T5673GK"}], "B08FZ1RGNC": [{"asin": "B08FZ1RGNC", "instruction": "i would like 6 bottles of non alcoholic harry potter butterscotch beer.", "attributes": ["non alcoholic", "gluten free"], "options": ["size: 6 bottles"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAXZ8AY", "worker_id": "A1WS884SI0SLO4"}], "B07BF5MRJK": [{"asin": "B07BF5MRJK", "instruction": "can you find me a face mask for dry skin? i want something that comes in 1.0 fl oz.", "attributes": ["certified organic", "alcohol free", "seed oil", "dry skin"], "options": ["scent: rose hip & black seed", "size: 1.0 fl oz"], "instruction_attributes": ["dry skin"], "instruction_options": ["1.0 fl oz"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IET2M6", "worker_id": "A34QZDSTKZ3JO9"}], "B07B616217": [{"asin": "B07B616217", "instruction": "i need a wall lamp that is a vanity lamp with a white finish.", "attributes": ["white item", "white finish"], "options": ["color: matte black", "style: vanity light"], "instruction_attributes": ["white finish"], "instruction_options": ["vanity light"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEHTZK0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HYZH871": [{"asin": "B09HYZH871", "instruction": "i'm looking for an anti-aging serum that helps to reduce fine lines and moisturizes dry skin.", "attributes": ["anti aging", "fine lines", "dry skin"], "options": [""], "instruction_attributes": ["anti aging", "fine lines", "dry skin"], "instruction_options": [], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JUYGE3", "worker_id": "AR0VJ5XRG16UJ"}], "B000VV5XY6": [{"asin": "B000VV5XY6", "instruction": "do you think you can find me a long lasting women's perfume?", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BI8X8R", "worker_id": "A34QZDSTKZ3JO9"}], "B08PFL4K7L": [{"asin": "B08PFL4K7L", "instruction": "i need purple eyeshadow applicators that are easy to clean.", "attributes": ["easy use", "easy clean", "hair removal"], "options": ["color: purple"], "instruction_attributes": ["easy clean"], "instruction_options": ["purple"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTE64DV", "worker_id": "A2RBF3IIJP15IH"}], "B07KXVGHTV": [{"asin": "B07KXVGHTV", "instruction": "can you find me a bath scrubber for dead skin with a long handle? i want the one that is white with the bath ball.", "attributes": ["long handle", "dead skin"], "options": ["material type: white with bath ball"], "instruction_attributes": ["long handle", "dead skin"], "instruction_options": [], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9PMTE7", "worker_id": "A34QZDSTKZ3JO9"}], "B08FM6347F": [{"asin": "B08FM6347F", "instruction": "i am looking for a man's size 6, black, non-slip working shoe with a rubber sole.", "attributes": ["non slip", "anti slip", "steel toe", "rubber sole"], "options": ["color: f black", "size: 7.5 women | 6 men"], "instruction_attributes": ["anti slip", "rubber sole"], "instruction_options": ["f black", "7.5 women | 6 men"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IMPLTO", "worker_id": "A114NK7T5673GK"}], "B09PBLBWB5": [{"asin": "B09PBLBWB5", "instruction": "i need hdmi cables that are high speed and 1m long.", "attributes": ["high speed", "blu ray", "1080p hd", "gold plated", "high definition"], "options": ["size: 1m"], "instruction_attributes": ["high speed"], "instruction_options": ["1m"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5NIX65", "worker_id": "A2ECRNQ3X5LEXD"}], "B00K5WG30Y": [{"asin": "B00K5WG30Y", "instruction": "i would like three 3.5 fluid ounce long lasting hair dye preferably in dark warm brown.", "attributes": ["highly pigmented", "long lasting", "permanent hair"], "options": ["color: dark warm brown", "size: 3.5 fl oz (pack of 3)"], "instruction_attributes": ["long lasting"], "instruction_options": ["dark warm brown", "3.5 fl oz (pack of 3)"], "assignment_id": "3TE22NPXPMMW3QH7127E47P6G13448", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00K5WG30Y", "instruction": "i looh for this brand i need exactly this kiss express semi-permanent hair color 100ml (3.5 us fl.oz) long lasting, color cobalt blue.", "attributes": ["highly pigmented", "long lasting", "permanent hair"], "options": ["color: cobalt blue", "size: 3.5 fl oz (pack of 3)"], "instruction_attributes": ["long lasting"], "instruction_options": ["cobalt blue"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KV97ET", "worker_id": "A15IJ20C3R4HUO"}], "B07Z1RWD8Z": [{"asin": "B07Z1RWD8Z", "instruction": "i am looking for graphic tees for men highest quality fabrics, are 100% cotton and machine washable classic fit willy wonka and the chocolate factory music makers t-shirt in heather grey color. size 4t preferable.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: heather grey", "fit type: men", "size: 4t"], "instruction_attributes": ["officially licensed", "needle sleeve", "classic fit"], "instruction_options": ["heather grey", "men", "4t"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO012C0", "worker_id": "A1DRKZ3SCLAS4V"}], "B089K2CS7Z": [{"asin": "B089K2CS7Z", "instruction": "i am looking for easy install hanging lamp dome pendant light, color b", "attributes": ["easy install", "pendant light", "light fixture", "dining room", "living room"], "options": ["color: b"], "instruction_attributes": ["easy install", "pendant light"], "instruction_options": ["b"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTKXOQW", "worker_id": "A258PTOZ3D2TQR"}], "B01N5H9DIM": [{"asin": "B01N5H9DIM", "instruction": "i want a soy wax candle that has a terra cotta scent.", "attributes": ["white item", "soy wax"], "options": ["scent: terra cotta", "size: king size"], "instruction_attributes": ["soy wax"], "instruction_options": ["terra cotta"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z12H1KE", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01N5H9DIM", "instruction": "i'm interested in a 10-inch soy jar candle with a sea salt & ginger scent.", "attributes": ["white item", "soy wax"], "options": ["scent: sea salt & ginger", "size: 10 in"], "instruction_attributes": ["soy wax"], "instruction_options": ["sea salt & ginger", "10 in"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLYUTFY", "worker_id": "AFU00NU09CFXE"}, {"asin": "B01N5H9DIM", "instruction": "i would like a moss green candle that is made from soy", "attributes": ["white item", "soy wax"], "options": ["scent: moss green", "size: 8 in"], "instruction_attributes": ["soy wax"], "instruction_options": ["moss green"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQWWHI8", "worker_id": "A2ECRNQ3X5LEXD"}], "B093YT997C": [{"asin": "B093YT997C", "instruction": "i would like to buy a colorful blouse hosiery laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E0LHXB", "worker_id": "A3AYHESLQSDY5T"}], "B08MN8CYT8": [{"asin": "B08MN8CYT8", "instruction": "i am looking for long lasting winter candle with green jar.", "attributes": ["long lasting", "soy wax"], "options": ["color: green jar", "scent: winter balsam"], "instruction_attributes": ["long lasting"], "instruction_options": ["green jar"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVHGQ07", "worker_id": "A3FG5PQHG5AH3Y"}], "B07QBY4387": [{"asin": "B07QBY4387", "instruction": "i am looking for a 6 foot by 4 foot underwater photography backdrop.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 6x4ft"], "instruction_attributes": ["light weight"], "instruction_options": ["6x4ft"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBNZJEW", "worker_id": "A1EREKSZAA9V7B"}], "B09B1NY84G": [{"asin": "B09B1NY84G", "instruction": "find me a samsung galaxy smartphone with a long lasting battery and its t-mobile is already unlocked.", "attributes": ["long lasting", "4g lte"], "options": ["style: t-mobile unlocked"], "instruction_attributes": ["long lasting"], "instruction_options": ["t-mobile unlocked"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQ8291P", "worker_id": "A1HMZJ59OPLD1P"}], "B07SFZQFRQ": [{"asin": "B07SFZQFRQ", "instruction": "i am looking for snickerdoodles that have been baked fresh.", "attributes": ["baked fresh", "perfect gift"], "options": ["flavor: snickerdoodle"], "instruction_attributes": ["baked fresh"], "instruction_options": ["snickerdoodle"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G72Q47N", "worker_id": "A2ECRNQ3X5LEXD"}], "B07YDZPYLQ": [{"asin": "B07YDZPYLQ", "instruction": "i want 81 medium ash blonde color hair dye", "attributes": ["easy apply", "easy use", "seed oil", "hair dye", "permanent hair"], "options": ["color: 81 medium ash blonde", "size: 10.2 ounce (pack of 3)"], "instruction_attributes": ["hair dye"], "instruction_options": ["81 medium ash blonde"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PCZWINR", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B07YDZPYLQ", "instruction": "i'm looking for hair dye for permanent hair it was easy to use.", "attributes": ["easy apply", "easy use", "seed oil", "hair dye", "permanent hair"], "options": ["color: 50 medium natural brown", "size: 10.2 ounce (pack of 3)"], "instruction_attributes": ["hair dye", "permanent hair"], "instruction_options": ["50 medium natural brown"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HUBBPH", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07YDZPYLQ", "instruction": "i need a easy to apply hair coloring product on the black color..", "attributes": ["easy apply", "easy use", "seed oil", "hair dye", "permanent hair"], "options": ["color: 10 black", "size: 3 count (pack of 1)"], "instruction_attributes": ["easy apply"], "instruction_options": ["10 black"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DZUOTO", "worker_id": "AVIEE6LDH0BT5"}], "B096ZFGXMJ": [{"asin": "B096ZFGXMJ", "instruction": "i am looking for hair care conditioner for damaged hair having scent tea tree rosemary 33.8 fl", "attributes": ["seed oil", "argan oil", "damaged hair", "hair treatment", "dry hair"], "options": ["scent: tea tree rosemary 33.8 fl", "size: conditioner"], "instruction_attributes": ["damaged hair"], "instruction_options": ["tea tree rosemary 33.8 fl", "conditioner"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHWGZ4P", "worker_id": "A258PTOZ3D2TQR"}], "B09NM1GW5W": [{"asin": "B09NM1GW5W", "instruction": "i am looking for lightweight men's size 7.5 non slip german shepherd shoes with mesh.", "attributes": ["non slip", "slip resistant", "arch support", "rubber sole"], "options": ["color: black yellow boho sunflower b", "size: 9 women | 7.5 men"], "instruction_attributes": ["non slip"], "instruction_options": ["9 women | 7.5 men"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z13LK13", "worker_id": "A1EREKSZAA9V7B"}], "B08L7KXKM6": [{"asin": "B08L7KXKM6", "instruction": "i would like some white noise cancelling earbud headphones that charge as fast as possible.", "attributes": ["noise cancelling", "fast charging"], "options": ["color: white"], "instruction_attributes": ["noise cancelling", "fast charging"], "instruction_options": ["white"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70I6CBC9", "worker_id": "A1WS884SI0SLO4"}], "B00FGDGYXS": [{"asin": "B00FGDGYXS", "instruction": "do you think you can find me an alcohol free mouthwash for bad breath?", "attributes": ["alcohol free", "bad breath"], "options": [""], "instruction_attributes": ["alcohol free", "bad breath"], "instruction_options": [], "assignment_id": "384PI804X3BY6N1H82GUQ7FZD5R0SW", "worker_id": "A34QZDSTKZ3JO9"}], "B0791H84G3": [{"asin": "B0791H84G3", "instruction": "i need some fruit snacks that come in a variety pack. make sure that they are gluten free.", "attributes": ["gluten free", "source vitamin", "artificial flavors"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL8416GXA3", "worker_id": "A1NF6PELRKACS9"}], "B093YSNJGF": [{"asin": "B093YSNJGF", "instruction": "i am looking to buy a mesh laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61PHWZA", "worker_id": "A114NK7T5673GK"}], "B01BRTBUEC": [{"asin": "B01BRTBUEC", "instruction": "i would like chocolate that is individually wrapped and are fun sized.", "attributes": ["individually wrapped", "resealable bag"], "options": ["style: fun size"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["fun size"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLQSFT2", "worker_id": "A2ECRNQ3X5LEXD"}], "B01HJWCB3U": [{"asin": "B01HJWCB3U", "instruction": "can you find me some high speed hdmi cables? i really want the ones that come in a 3 pack.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 3 pack", "size: 3 feet (4 pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["3 pack"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WSZ7FE", "worker_id": "A34QZDSTKZ3JO9"}], "B08C9FC94G": [{"asin": "B08C9FC94G", "instruction": "i am looking for grey color mens polyester hoodie.", "attributes": ["quality polyester", "polyester cotton"], "options": ["color: grey", "size: xx-large"], "instruction_attributes": ["quality polyester"], "instruction_options": ["grey"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PIHEQ8", "worker_id": "A3FG5PQHG5AH3Y"}], "B09KXSGRKG": [{"asin": "B09KXSGRKG", "instruction": "i'm looking for a pair of men's beach sandals with a leather sole, arch support, and non-slip grip. get the ones that are light brown in 9 or 9.5 in size.", "attributes": ["non slip", "daily casual", "arch support", "leather sole", "daily wear"], "options": ["color: light&brown", "size: 9-9.5"], "instruction_attributes": ["non slip", "arch support", "leather sole"], "instruction_options": ["light&brown", "9-9.5"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPFTNJI", "worker_id": "A34QZDSTKZ3JO9"}], "B0026NS2T0": [{"asin": "B0026NS2T0", "instruction": "i need to get some batteries for my two way radio. the one that i have takes aaa batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8DIC4P", "worker_id": "A34QZDSTKZ3JO9"}], "B08Y976Y4D": [{"asin": "B08Y976Y4D", "instruction": "i need xx-large wide leg jumpsuits that are wine colored.", "attributes": ["wide leg", "machine washable", "loose fit", "hand wash", "machine wash", "soft material", "button closure", "short sleeve", "long sleeve", "daily wear"], "options": ["color: wine", "size: xx-large"], "instruction_attributes": ["wide leg"], "instruction_options": ["wine", "xx-large"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3VA7QC", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GXLG5W6": [{"asin": "B07GXLG5W6", "instruction": "i am looking for a nightstand with drawers. it should have a nickle finish.", "attributes": ["assembly required", "nickel finish"], "options": ["style: nightstand"], "instruction_attributes": ["nickel finish"], "instruction_options": ["nightstand"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBOCIGN", "worker_id": "A1NF6PELRKACS9"}], "B0971SMH99": [{"asin": "B0971SMH99", "instruction": "i am looking for cactus colored vinyl shoes in a size 8.5-9.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: cactus", "size: 8.5-9"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["cactus", "8.5-9"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DY8082I", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RXMK2PN": [{"asin": "B07RXMK2PN", "instruction": "i am looking for a tea gift set that is in rose gold.", "attributes": ["bpa free", "individually wrapped", "gift set", "gift basket"], "options": ["color: coffee gifts- rose gold"], "instruction_attributes": ["gift set"], "instruction_options": ["coffee gifts- rose gold"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF01LD5", "worker_id": "A2ECRNQ3X5LEXD"}], "B073JH3VPX": [{"asin": "B073JH3VPX", "instruction": "can you find a gluten free flatbread cracker with multi-seeds on it?", "attributes": ["gluten free", "protein serving"], "options": ["flavor name: multi-seeds", "size: 4.25 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["multi-seeds"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYE3L62", "worker_id": "A34QZDSTKZ3JO9"}], "B08RDBGV4Z": [{"asin": "B08RDBGV4Z", "instruction": "i\u2019m interested in nail art; can you help me find a really high quality nail gel polish with a metallic purple effect?", "attributes": ["long lasting", "easy apply", "high quality", "rose gold", "nail polish", "nail art"], "options": ["color: purple"], "instruction_attributes": ["high quality", "nail polish", "nail art"], "instruction_options": ["purple"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSEJ261", "worker_id": "A3LIIE572Z4OG7"}], "B08Q8SRFNN": [{"asin": "B08Q8SRFNN", "instruction": "i need a water resistant snow boot in caramel brown color.", "attributes": ["water resistant", "rubber sole"], "options": ["color: caramel brown", "size: 10.5"], "instruction_attributes": ["water resistant"], "instruction_options": ["caramel brown"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79FHQK8", "worker_id": "A1NF6PELRKACS9"}], "B08155VDDT": [{"asin": "B08155VDDT", "instruction": "i am looking for an oil free hyaluronic acid.", "attributes": ["oil free", "clinically proven", "hyaluronic acid"], "options": [""], "instruction_attributes": ["oil free", "hyaluronic acid"], "instruction_options": [], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADDRVWN", "worker_id": "A2KW17G25L25R8"}], "B08QDPGHBL": [{"asin": "B08QDPGHBL", "instruction": "i\u2019m looking for some keto-friendly breakfast waffles in cinnamon toast and maple flavour. please make sure it\u2019s gluten free.", "attributes": ["keto friendly", "sugar free", "grain free", "low carb", "plant based", "artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: cinnamon toast & maple waffle", "size: 9 ounce (pack of 8)"], "instruction_attributes": ["keto friendly", "gluten free"], "instruction_options": ["cinnamon toast & maple waffle"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7K9PDPG", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B08QDPGHBL", "instruction": "i am looking for plant based,sugar free and gluten free maple waffle.", "attributes": ["keto friendly", "sugar free", "grain free", "low carb", "plant based", "artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: maple waffle", "size: 9 ounce (pack of 4)"], "instruction_attributes": ["sugar free", "plant based", "gluten free"], "instruction_options": ["maple waffle"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9ANN8Y", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B08QDPGHBL", "instruction": "i want to buy a 9 ounce, maple waffle flavored keto friendly snack that is sugar and grain free.", "attributes": ["keto friendly", "sugar free", "grain free", "low carb", "plant based", "artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: maple waffle", "size: 9 ounce (pack of 8)"], "instruction_attributes": ["keto friendly", "sugar free", "grain free"], "instruction_options": ["maple waffle", "9 ounce (pack of 8)"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E04YX7C", "worker_id": "A114NK7T5673GK"}], "B08SRDBQZD": [{"asin": "B08SRDBQZD", "instruction": "i would like a quad core tablet.", "attributes": ["high performance", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R30SKX", "worker_id": "A1WS884SI0SLO4"}], "B098JR7D8X": [{"asin": "B098JR7D8X", "instruction": "i would like a 12\"x20\" grey throw pillow cover that has exquisite sewing and technique.", "attributes": ["high density", "exquisite workmanship"], "options": ["color: grey", "size: 12\"x20\""], "instruction_attributes": ["exquisite workmanship"], "instruction_options": ["12\"x20\""], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MG0LW7", "worker_id": "A1WS884SI0SLO4"}], "B09R6VDHJ4": [{"asin": "B09R6VDHJ4", "instruction": "my mom wear 11 size high heel", "attributes": ["open toe", "arch support", "ankle strap", "closed toe", "high heel"], "options": ["color: z7-black", "size: 11"], "instruction_attributes": ["high heel"], "instruction_options": ["11"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788AKC53", "worker_id": "A226L9F2AZ38CL"}], "B09JT2BF5M": [{"asin": "B09JT2BF5M", "instruction": "i am looking to buy an ultra hd, motion detection hidden camera charger.", "attributes": ["ultra hd", "easy use", "motion detection"], "options": [""], "instruction_attributes": ["ultra hd", "motion detection"], "instruction_options": [], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8L7LO1F", "worker_id": "A2KW17G25L25R8"}], "B094ZBVWK9": [{"asin": "B094ZBVWK9", "instruction": "i need a butterfly print slippers which is 13 wide. it should be non slip and light weight.", "attributes": ["non slip", "light weight", "ethylene vinyl", "vinyl acetate", "synthetic sole"], "options": ["color: just a girl who loves butterfly", "size: 13 wide"], "instruction_attributes": ["non slip", "light weight"], "instruction_options": ["just a girl who loves butterfly", "13 wide"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNWKTPO", "worker_id": "A1NF6PELRKACS9"}], "B004A7CC32": [{"asin": "B004A7CC32", "instruction": "i am looking for some size 7 wide open toe shoes that have a heel and come in black.", "attributes": ["open toe", "synthetic sole"], "options": ["color: black", "size: 7 wide"], "instruction_attributes": ["open toe"], "instruction_options": ["black", "7 wide"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZWINR5", "worker_id": "A114NK7T5673GK"}], "B09LVQ3T86": [{"asin": "B09LVQ3T86", "instruction": "find me a machine washable long sleeved pullover with a loose fit. i want the one in green in small.", "attributes": ["machine washable", "loose fit", "machine wash", "button closure", "long sleeve"], "options": ["color: x01-green", "size: small"], "instruction_attributes": ["machine washable", "loose fit", "machine wash", "long sleeve"], "instruction_options": ["x01-green", "small"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYSJ63G", "worker_id": "A34QZDSTKZ3JO9"}], "B08FXTGNGY": [{"asin": "B08FXTGNGY", "instruction": "i am looking for a gluten free, low carb, flavored fyr salt shaker.", "attributes": ["gluten free", "keto friendly", "low carb", "natural ingredients", "artificial flavors"], "options": ["flavor name: fyr salt"], "instruction_attributes": ["gluten free", "low carb"], "instruction_options": ["fyr salt"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FE34U7", "worker_id": "A114NK7T5673GK"}], "B098XBFPF4": [{"asin": "B098XBFPF4", "instruction": "i need an easy to clean bedroom bench footstool seat. show me something in white.", "attributes": ["button tufted", "easy clean", "living room"], "options": ["color: white"], "instruction_attributes": ["easy clean"], "instruction_options": ["white"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPH76E5", "worker_id": "A1NF6PELRKACS9"}], "B07SZB6VQH": [{"asin": "B07SZB6VQH", "instruction": "i wish to buy a tempered glass screen protector which must be easy to instal on an 8.4 inch touchscreen of a 2019 dodge ram.", "attributes": ["easy install", "high definition", "tempered glass"], "options": ["color: for 2019 dodge ram 8.4 inch"], "instruction_attributes": ["easy install", "tempered glass"], "instruction_options": ["for 2019 dodge ram 8.4 inch"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIFL92D", "worker_id": "A1HMZJ59OPLD1P"}], "B001CMRVH0": [{"asin": "B001CMRVH0", "instruction": "i need ten 12 foot high speed hdmi male to male cables.", "attributes": ["high speed", "gold plated"], "options": ["product packaging: 10 pack", "size: 12 feet (10-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["10 pack", "12 feet (10-pack)", "hdmi male to male"], "assignment_id": "352YTHGRO6NQF252G9RXYWYAL61H4J", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B001CMRVH0", "instruction": "i'm looking for product packaging it is easy to use", "attributes": ["high speed", "gold plated"], "options": ["product packaging: 4 pack", "size: 8 feet (3-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["4 pack", "8 feet (3-pack)"], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ0ZDRRF", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B001CMRVH0", "instruction": "i would like two packs of 12 feet high speed hdmi male to male cables.", "attributes": ["high speed", "gold plated"], "options": ["product packaging: 2 pack", "size: 12 feet (10-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["2 pack", "12 feet (10-pack)", "hdmi male to male"], "assignment_id": "33TIN5LC0FKDY31374RC144TXWQY9X", "worker_id": "A1WS884SI0SLO4"}], "B075G2XTBW": [{"asin": "B075G2XTBW", "instruction": "i would like a remote control that already comes with aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7SMHL2", "worker_id": "A1WS884SI0SLO4"}], "B07JMWDK4J": [{"asin": "B07JMWDK4J", "instruction": "i am looking for a slip resistant black water shoe in size 12 that is also quick drying.", "attributes": ["slip resistant", "quick drying", "open toe", "non slip", "rubber sole", "relaxed fit"], "options": ["color: black", "size: 12"], "instruction_attributes": ["slip resistant", "quick drying"], "instruction_options": ["black", "12"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UL3EZ3", "worker_id": "A114NK7T5673GK"}], "B078YFWC2R": [{"asin": "B078YFWC2R", "instruction": "can you get me a whitening toothpaste that is for sensitive teeth?", "attributes": ["teeth whitening", "sensitive teeth"], "options": [""], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": [], "assignment_id": "3EG49X3515M1GF9V412YYG6I5NJ6XF", "worker_id": "A34QZDSTKZ3JO9"}], "B085TKNL9R": [{"asin": "B085TKNL9R", "instruction": "i'm setting up for a birthday party and i'm looking for some party supplies. can you find me a cake topper?", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["party supplies", "birthday party"], "instruction_options": [], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCL5I7W", "worker_id": "A34QZDSTKZ3JO9"}], "B09JWM3Y7X": [{"asin": "B09JWM3Y7X", "instruction": "i'm searching for small high gloss nightstand for living room", "attributes": ["white item", "high gloss", "living room"], "options": [""], "instruction_attributes": ["high gloss", "living room"], "instruction_options": [], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWWQT59", "worker_id": "A258PTOZ3D2TQR"}], "B094ZNX8HY": [{"asin": "B094ZNX8HY", "instruction": "i am an african woman looking for a barber to cut my hair.", "attributes": ["easy clean", "hair cutting", "hair dye"], "options": [""], "instruction_attributes": ["hair cutting"], "instruction_options": [], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8ODWRT0", "worker_id": "A2KW17G25L25R8"}], "B09LCRPSG9": [{"asin": "B09LCRPSG9", "instruction": "my 6 years old child like teeth whitening", "attributes": ["teeth whitening", "easy use"], "options": ["color: b03#pink penguin", "size: aged 6-12"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["aged 6-12"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC0MKU6", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B09LCRPSG9", "instruction": "i am looking for toothbrush of b04#yellow penguin color that is easy to use.", "attributes": ["teeth whitening", "easy use"], "options": ["color: b04#yellow penguin", "size: aged 6-12"], "instruction_attributes": ["easy use"], "instruction_options": ["b04#yellow penguin"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0Y8XPN", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PGHT496": [{"asin": "B09PGHT496", "instruction": "i am looking for long sleeve men t-shirt.and please also choose the black one.", "attributes": ["light weight", "machine wash", "short sleeve", "long sleeve"], "options": ["color: d_black", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["d_black"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA0M8C2", "worker_id": "A3FG5PQHG5AH3Y"}], "B07GSPLN9N": [{"asin": "B07GSPLN9N", "instruction": "i need a wall lamp that is easy to install.", "attributes": ["easy install", "bronze finish", "living room"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA93WEZ3Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RT9X4PM": [{"asin": "B07RT9X4PM", "instruction": "i want to find a vanity light that is easy to install. my walls are black and i want something the same color.", "attributes": ["easy install", "contemporary design", "vanity light", "light fixture"], "options": ["color: black (natural white)", "size: non dimmable 47.2 inch"], "instruction_attributes": ["easy install", "vanity light"], "instruction_options": ["black (natural white)"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRNZY2I", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B07RT9X4PM", "instruction": "find a black colored wall lamp thats easy to install", "attributes": ["easy install", "contemporary design", "vanity light", "light fixture"], "options": ["color: black (cool white)", "size: non dimmable 39.37 inch"], "instruction_attributes": ["easy install"], "instruction_options": ["black (cool white)"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GHAUZT", "worker_id": "AVIEE6LDH0BT5"}], "B08GNS58PQ": [{"asin": "B08GNS58PQ", "instruction": "please help me find an 8oz pack of medical body scrub exfolient that is suitable for sensitive skin.", "attributes": ["dermatologist tested", "oil free", "cruelty free", "dead skin", "sensitive skin"], "options": ["size: 8 ounce (pack of 1)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7ULYQ6", "worker_id": "A3LIIE572Z4OG7"}], "B09NSN6FWS": [{"asin": "B09NSN6FWS", "instruction": "get me a headset that is high resolution and is red in color.", "attributes": ["noise cancelling", "high resolution", "wireless bluetooth"], "options": ["color: red"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3URFVVM16GSBNLZB11OMB709G9TUZW", "worker_id": "A1MJVTR0PCKBWW"}], "B094MRG3NG": [{"asin": "B094MRG3NG", "instruction": "i need a small hawaiian shirt with short sleeves, lasts long and has a button closure.", "attributes": ["long lasting", "polyester spandex", "button closure", "short sleeve", "tumble dry"], "options": ["color: multi016", "size: small"], "instruction_attributes": ["long lasting", "button closure", "short sleeve"], "instruction_options": ["small"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G73S47R", "worker_id": "A1NF6PELRKACS9"}], "B07NMG2MBV": [{"asin": "B07NMG2MBV", "instruction": "i'm looking for some highly pigmented seed oil lipstick. find the one in rich berry that is .14 fl oz.", "attributes": ["highly pigmented", "green tea", "seed oil"], "options": ["color: 13 rich berry", "size: 0.14 fl oz"], "instruction_attributes": ["highly pigmented", "seed oil"], "instruction_options": ["13 rich berry", "0.14 fl oz"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2N04L3", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B07NMG2MBV", "instruction": "i need a highly pigment lip tint. pick a 0.14 fl oz bottle.", "attributes": ["highly pigmented", "green tea", "seed oil"], "options": ["color: 02 selfie orange brown (ad)", "size: 0.14 fl oz"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["0.14 fl oz"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6IFB2M", "worker_id": "A1NF6PELRKACS9"}], "B08W4DHZ1M": [{"asin": "B08W4DHZ1M", "instruction": "i need cake toppers that are dairy free and are 2\".", "attributes": ["dairy free", "gluten free", "birthday party"], "options": ["size: 2\" | 12 cupcakes toppers"], "instruction_attributes": ["dairy free"], "instruction_options": ["2\" | 12 cupcakes toppers"], "assignment_id": "3X65QVEQIBXVW21709CD9M35U0FLCV", "worker_id": "A1MJVTR0PCKBWW"}], "B006GRKQ0K": [{"asin": "B006GRKQ0K", "instruction": "i am looking for rich taste and color of classic red velvet cake, packaged in bpa free and gluten free lorann red velvet bakery emulsion in hazelnut flavour in 4 fl oz, 3 pack size.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: hazelnut", "size: 4 fl oz, 3 pack"], "instruction_attributes": ["bpa free", "gluten free"], "instruction_options": ["hazelnut", "4 fl oz, 3 pack"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z1TXGF", "worker_id": "A1DRKZ3SCLAS4V"}], "B089YDCJYL": [{"asin": "B089YDCJYL", "instruction": "i am looking for a pair of women's high waisted active shorts. get me the pink ones.", "attributes": ["quality materials", "high waist"], "options": ["color: a pink", "size: 5x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["a pink"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBOCGIL", "worker_id": "A34QZDSTKZ3JO9"}], "B0781VL2JZ": [{"asin": "B0781VL2JZ", "instruction": "i need some argan oil that is free of parabens. get me the 2 ounce pack.", "attributes": ["paraben free", "argan oil"], "options": ["size: 2 ounce", "style name: argan original dark"], "instruction_attributes": ["paraben free", "argan oil"], "instruction_options": ["2 ounce"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MI73BR3", "worker_id": "A1NF6PELRKACS9"}], "B083VZWXLM": [{"asin": "B083VZWXLM", "instruction": "i'm looking for men's daily wear shirt with long sleeves and button closure type. also, choose black colored tall shirt with size 20\" neck and 34\"-35\" sleeves.", "attributes": ["button closure", "long sleeve", "daily wear"], "options": ["color: black 015", "size: 20\" neck 34\"-35\" sleeve", "special size: tall"], "instruction_attributes": ["button closure", "long sleeve", "daily wear"], "instruction_options": ["black 015", "20\" neck 34\"-35\" sleeve", "tall"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J66SFG", "worker_id": "AR0VJ5XRG16UJ"}], "B08VDLHDY7": [{"asin": "B08VDLHDY7", "instruction": "i need daily casual and gym workout large size yoga pants with classic dark gray color and special size- 02 sweatpants", "attributes": ["easy care", "daily casual", "moisture wicking", "wash cold", "machine wash", "relaxed fit", "gym workout", "dry clean"], "options": ["color: classic dark gray", "size: large", "special size: 02 sweatpants"], "instruction_attributes": ["daily casual", "gym workout"], "instruction_options": ["classic dark gray", "large", "02 sweatpants"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA7XKMHH", "worker_id": "A258PTOZ3D2TQR"}], "B09MRGSLGY": [{"asin": "B09MRGSLGY", "instruction": "i am looking for a product that i can use for hair cutting dry hair.", "attributes": ["dry hair", "hair cutting", "hair extensions", "hair styling"], "options": ["color: b"], "instruction_attributes": ["dry hair", "hair cutting"], "instruction_options": ["b"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNFZJDLD", "worker_id": "A2KW17G25L25R8"}], "B015R09D8M": [{"asin": "B015R09D8M", "instruction": "i need a 9.5 rubber soled hiking shoe made of light weight vinyl acetate.", "attributes": ["light weight", "ethylene vinyl", "vinyl acetate", "memory foam", "rubber sole"], "options": ["size: 9.5"], "instruction_attributes": ["light weight", "vinyl acetate", "rubber sole"], "instruction_options": ["9.5"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HUZ1DI", "worker_id": "A1WS884SI0SLO4"}], "B08BZFMN1F": [{"asin": "B08BZFMN1F", "instruction": "i would like a 47.2\" x 11.8\" x 11.8\" white and sonoma oak tv center for my living room.", "attributes": ["high gloss", "living room"], "options": ["color: white and sonoma oak", "size: 47.2\" x 11.8\" x 11.8\""], "instruction_attributes": ["living room"], "instruction_options": ["white and sonoma oak", "47.2\" x 11.8\" x 11.8\""], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK87UA5U", "worker_id": "A1WS884SI0SLO4"}], "B00BGNI6IS": [{"asin": "B00BGNI6IS", "instruction": "i'm looking for a corner shelf unit for the living room made out of engineered wood. get the one in light cherry and black color.", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: light cherry | black", "pattern name: shelving unit + display rack", "size: 5-tier"], "instruction_attributes": ["engineered wood", "living room"], "instruction_options": ["light cherry | black"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5C21ZA", "worker_id": "A34QZDSTKZ3JO9"}, {"asin": "B00BGNI6IS", "instruction": "i am looking for engineered wood 3-tier corner shelf in color : walnut|brown", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: walnut | brown", "pattern name: shelving unit + tv stands", "size: 3-tier"], "instruction_attributes": ["engineered wood"], "instruction_options": ["walnut | brown", "3-tier"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNVI8H8", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B00BGNI6IS", "instruction": "i am looking for a dark cherry | black corner shelves for living room", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: dark cherry | black", "pattern name: shelving unit + end table", "size: 3-tier classic tube"], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH37AYSEF", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B00BGNI6IS", "instruction": "i am looking for corner shelf of size 5-tier for my living room.", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: dark brown grain | black", "pattern name: shelving unit + tv stands", "size: 5-tier"], "instruction_attributes": ["living room"], "instruction_options": ["5-tier"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XU4NGK", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00BGNI6IS", "instruction": "i am looking for 3-tier size corner shelf for my living room.", "attributes": ["storage unit", "engineered wood", "living room"], "options": ["color: beech | white", "pattern name: shelving unit + end table", "size: 3-tier"], "instruction_attributes": ["living room"], "instruction_options": ["3-tier"], "assignment_id": "3DY46V3X30SWVSP7TC9YER1YG12558", "worker_id": "A1Q8PPQQCWGY0D"}], "B09DG3NRK3": [{"asin": "B09DG3NRK3", "instruction": "i am looking for a pair of anti slip womens sneakers spot color.", "attributes": ["anti slip", "rubber sole"], "options": ["color: spot", "size: 7"], "instruction_attributes": ["anti slip"], "instruction_options": ["spot"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NIVP2E", "worker_id": "A2KW17G25L25R8"}], "B07MQ9S96H": [{"asin": "B07MQ9S96H", "instruction": "i am looking for high quality glass spray bottle of 3.40 ounce.", "attributes": ["leak proof", "bpa free", "long lasting", "high quality", "fine mist", "quality materials"], "options": ["color: silver frosted", "size: 3.4 ounce x 2"], "instruction_attributes": ["high quality"], "instruction_options": ["3.4 ounce x 2"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FE3U4X", "worker_id": "A3FG5PQHG5AH3Y"}], "B09SCX4WBW": [{"asin": "B09SCX4WBW", "instruction": "i am looking for a pair of mens shorts that are machine washable for my everyday wear. id like a light grey color.", "attributes": ["machine washable", "wash cold", "everyday wear", "dry clean", "tumble dry"], "options": ["color: light grey", "size: 30"], "instruction_attributes": ["machine washable", "everyday wear"], "instruction_options": ["light grey"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68AS4AA", "worker_id": "A2KW17G25L25R8"}], "B088TP7Z5J": [{"asin": "B088TP7Z5J", "instruction": "i need window blinds that are easy to install that have a java brown light filtering.", "attributes": ["easy install", "white item"], "options": ["color: java brown(light filtering)", "size: 61 1 | 2\"w x 72\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["java brown(light filtering)"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM0PZHW", "worker_id": "AXIH2UZ6NNMRE"}, {"asin": "B088TP7Z5J", "instruction": "i'm looking for an easy-to-install, light-filtering window curtain in java brown.", "attributes": ["easy install", "white item"], "options": ["color: java brown(light filtering)", "size: 14\"w x 72\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["java brown(light filtering)"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVWY8VB", "worker_id": "ARJDD0Z3R65BD"}, {"asin": "B088TP7Z5J", "instruction": "i would like a 14\"w x 60\"h snow white roller shade that is easy to install.", "attributes": ["easy install", "white item"], "options": ["color: snow white(light filtering)", "size: 14\"w x 60\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["snow white(light filtering)", "14\"w x 60\"h"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDKR2OG", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B088TP7Z5J", "instruction": "i need some white window blinds that are 60 inches tall.", "attributes": ["easy install", "white item"], "options": ["color: cheese milk(light filtering)", "size: 58 1 | 2\"w x 60\"h"], "instruction_attributes": ["white item"], "instruction_options": ["58 1 | 2\"w x 60\"h"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AKQTSB", "worker_id": "A19317A3X87NVM"}, {"asin": "B088TP7Z5J", "instruction": "i would like a 21\"w x 36\"h cheese milk roller shade that is easy to install on a window.", "attributes": ["easy install", "white item"], "options": ["color: cheese milk(light filtering)", "size: 21\"w x 36\"h"], "instruction_attributes": [], "instruction_options": ["21\"w x 36\"h"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4JN158", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B088TP7Z5J", "instruction": "i am looking for a size: 20\"w x 64\"h roller shades white item which is easy to install.", "attributes": ["easy install", "white item"], "options": ["color: nama chocolate(light filtering)", "size: 20\"w x 64\"h"], "instruction_attributes": ["easy install", "white item"], "instruction_options": ["20\"w x 64\"h"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WR5QWT", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B088TP7Z5J", "instruction": "i would like a 2\"w x 36\"h cheese milk colored roller shade that is easy to install.", "attributes": ["easy install", "white item"], "options": ["color: cheese milk(light filtering)", "size: 48 1 | 2\"w x 36\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["cheese milk(light filtering)", "48 1 | 2\"w x 36\"h"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCVR5QJ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B088TP7Z5J", "instruction": "im looking for white window blinds that are easy to install and measure 35\u201d wide with a 48\u201d height.", "attributes": ["easy install", "white item"], "options": ["color: hudson hemp(light filtering)", "size: 48 1 | 2\"w x 72\"h"], "instruction_attributes": ["easy install", "white item"], "instruction_options": ["48 1 | 2\"w x 72\"h"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYPCHDQ", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B088TP7Z5J", "instruction": "i'm looking for a size 34\"w x 72\"h easy install window blinds.", "attributes": ["easy install", "white item"], "options": ["color: snow white(light filtering)", "size: 34\"w x 72\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["34\"w x 72\"h"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSYXGL2", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B088TP7Z5J", "instruction": "i am looking for shades of size 54\"w x 72\"h that are easy to install.", "attributes": ["easy install", "white item"], "options": ["color: antique white(light filtering)", "size: 54\"w x 72\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["54\"w x 72\"h"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCL1JS4", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B088TP7Z5J", "instruction": "i would like purple blinds that are easy to install", "attributes": ["easy install", "white item"], "options": ["color: lilac purple(light filtering)", "size: 59 1 | 2\"w x 64\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["lilac purple(light filtering)"], "assignment_id": "32SCWG5HISEW7674IASH43KF3V9P6N", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B088TP7Z5J", "instruction": "i am looking for an easy to install light filtering contrast grey window blind.", "attributes": ["easy install", "white item"], "options": ["color: contrast grey(light filtering)", "size: 56\"w x 60\"h"], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWT96WY", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B088TP7Z5J", "instruction": "i am interested in blinds that are 34\"w by 56\"h and that are light filtering.", "attributes": ["easy install", "white item"], "options": ["color: hudson hemp(light filtering)", "size: 34\"w x 56\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["hudson hemp(light filtering)", "34\"w x 56\"h"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9SA78T", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B088TP7Z5J", "instruction": "i need some white window treatments that are easy to install and size 58\"w by 48\"h", "attributes": ["easy install", "white item"], "options": ["color: antique white(light filtering)", "size: 58\"w x 48\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["antique white(light filtering)", "58\"w x 48\"h"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYMYHD6", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CZH31LM": [{"asin": "B09CZH31LM", "instruction": "i am looking for hen of the woods potato chips with all natural ingredients would like sea salt pack of 6, 6 ounce.", "attributes": ["artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: sea salt 6 ounce (pack of 6)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["sea salt 6 ounce (pack of 6)"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG15XU97", "worker_id": "A2KW17G25L25R8"}], "B07XY3XFC5": [{"asin": "B07XY3XFC5", "instruction": "polyester bag with trolley belt,", "attributes": ["carrying case", "case cover"], "options": ["color: red", "size: 13.3-inch"], "instruction_attributes": ["carrying case"], "instruction_options": ["13.3-inch"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWCZBKUT", "worker_id": "A10OGH5CQBXL5N"}], "B0977WW7JZ": [{"asin": "B0977WW7JZ", "instruction": "i would like a youth size 3t dark heather cotton t shirt.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: youth", "size: 3t"], "instruction_attributes": ["heathers cotton", "cotton heather"], "instruction_options": ["dark heather", "youth", "3t"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHYFQH6", "worker_id": "A1WS884SI0SLO4"}], "B0141TMYV8": [{"asin": "B0141TMYV8", "instruction": "i'm looking for some women's sneakers with rubber soles. make sure they are fabric and in a size 6.5.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: lake blue wash canvas", "material type: fabric", "size: 6.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["fabric", "6.5"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGU56MR0", "worker_id": "A34QZDSTKZ3JO9"}], "B075V5JK36": [{"asin": "B075V5JK36", "instruction": "can you find me a long lasting hdmi cable? i only need one that is fifteen foot long.", "attributes": ["non slip", "long lasting", "plug play", "aluminum alloy"], "options": ["number of items: 1", "size: 15ft"], "instruction_attributes": ["long lasting"], "instruction_options": ["1", "15ft"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKVSND0", "worker_id": "A34QZDSTKZ3JO9"}], "B071WYXY6B": [{"asin": "B071WYXY6B", "instruction": "i am looking for a red high performance bluetooth speaker.", "attributes": ["high performance", "hands free", "aluminum alloy", "wireless bluetooth"], "options": ["color: red"], "instruction_attributes": ["high performance"], "instruction_options": ["red"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB1Z4YO", "worker_id": "A2ECRNQ3X5LEXD"}], "B071XHWM4Z": [{"asin": "B071XHWM4Z", "instruction": "i am looking for a women's natural blonde, 16 inch, synthetic hair wig to buy.", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: natural blonde", "size: 16 inch (pack of 1)"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["natural blonde", "16 inch (pack of 1)"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH1T1V7", "worker_id": "A114NK7T5673GK"}, {"asin": "B071XHWM4Z", "instruction": "i'm looking for reecho 20 inch (pack of 1) of 3/4 full head curly wave clips on synthetic hair extensions pieces for women and choose the color ombre dark brown to dirty blonde", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: ombre dark brown to dirty blonde", "size: 20 inch (pack of 1)"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": [], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A651U73", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B071XHWM4Z", "instruction": "i want jet black hair extensions that is synthetic.", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: jet black", "size: 14 inch (pack of 1)"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": ["jet black"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CDTV0C", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B071XHWM4Z", "instruction": "i want light purple synthetic hair extensions.", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: light purple", "size: 14 inch (pack of 1)"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["light purple"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMNRVXQ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B071XHWM4Z", "instruction": "i'm looking for a pack of synthetic hair extensions to clip onto my curly hair; please choose the 24\" length.", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: light ash brown with highlights", "size: 24 inch (pack of 1)"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": ["24 inch (pack of 1)"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPD18IA0", "worker_id": "A3LIIE572Z4OG7"}], "B091B1ZTX5": [{"asin": "B091B1ZTX5", "instruction": "what kind of cupcake toppers do you see that you can use for a birthday party?", "attributes": ["cupcake picks", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3HYZL3", "worker_id": "A34QZDSTKZ3JO9"}], "B08C543HDX": [{"asin": "B08C543HDX", "instruction": "i would like a women's size 9 brown high heeled shoe with a closed toe.", "attributes": ["open toe", "knee high", "anti slip", "ankle strap", "high heel", "closed toe", "memory foam"], "options": ["color: zr7-brown", "size: 9"], "instruction_attributes": ["high heel", "closed toe"], "instruction_options": ["zr7-brown", "9"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOEOLMI", "worker_id": "A1WS884SI0SLO4"}], "B09MSN7WX8": [{"asin": "B09MSN7WX8", "instruction": "i'm looking for a cookie that replaces a meal in varying flavors with macadamia nuts and is low in calories.", "attributes": ["high protein", "low calorie", "low sugar", "gluten free", "individually wrapped", "quality ingredients"], "options": ["flavor name: variety pack", "size: 4 pack"], "instruction_attributes": ["low calorie"], "instruction_options": ["variety pack"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTP07L0", "worker_id": "ARJDD0Z3R65BD"}, {"asin": "B09MSN7WX8", "instruction": "i need some low calorie chocolate chip pecan snacks.", "attributes": ["high protein", "low calorie", "low sugar", "gluten free", "individually wrapped", "quality ingredients"], "options": ["flavor name: chocolate chip pecan", "size: 18 pack"], "instruction_attributes": ["low calorie"], "instruction_options": ["chocolate chip pecan"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1ALEFHN", "worker_id": "A19317A3X87NVM"}], "B094417XSZ": [{"asin": "B094417XSZ", "instruction": "i'm looking for a white bookcase for my office. make sure it has a white finish.", "attributes": ["white item", "white finish"], "options": [""], "instruction_attributes": ["white item", "white finish"], "instruction_options": [], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGTKWTJ", "worker_id": "A34QZDSTKZ3JO9"}], "B0773YNFTJ": [{"asin": "B0773YNFTJ", "instruction": "i would like a perfect gift basket for a happy birthday.", "attributes": ["perfect gift", "gift basket"], "options": ["flavor name: e - happy birthday"], "instruction_attributes": ["perfect gift", "gift basket"], "instruction_options": ["e - happy birthday"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH3764SED", "worker_id": "A1WS884SI0SLO4"}], "B07G358Y3W": [{"asin": "B07G358Y3W", "instruction": "can you find me an alcohol free mouthwash for bad breath? i want the one in energizing mint flavor.", "attributes": ["alcohol free", "bad breath"], "options": ["size: pack of 4", "style: energizing mint"], "instruction_attributes": ["alcohol free", "bad breath"], "instruction_options": ["energizing mint"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z13V1KU", "worker_id": "A34QZDSTKZ3JO9"}], "B085F2HS8S": [{"asin": "B085F2HS8S", "instruction": "i need an animal themed and seafoam multicolor office chair slipcover that is machine washable.", "attributes": ["machine washable", "easy install", "printing technology"], "options": ["color: seafoam multicolor"], "instruction_attributes": ["machine washable"], "instruction_options": ["seafoam multicolor"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EAESWY", "worker_id": "A2RBF3IIJP15IH"}], "B09MVK8CYY": [{"asin": "B09MVK8CYY", "instruction": "my face included small sizes of dark circles", "attributes": ["fine lines", "dark circles", "dead skin", "sensitive skin"], "options": [""], "instruction_attributes": ["dark circles"], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6145GW", "worker_id": "A226L9F2AZ38CL"}], "B00LW3RC4Q": [{"asin": "B00LW3RC4Q", "instruction": "can you find me an easy to clean coffee table made out of solid wood and tempered glass?", "attributes": ["easy clean", "tempered glass", "solid wood"], "options": [""], "instruction_attributes": ["easy clean", "tempered glass", "solid wood"], "instruction_options": [], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKGM1T0", "worker_id": "A34QZDSTKZ3JO9"}], "B099KGG78L": [{"asin": "B099KGG78L", "instruction": "i want party supplies for decorations that are easy to use. make sure there are cupcake toppers.", "attributes": ["easy use", "party supplies"], "options": [""], "instruction_attributes": ["easy use", "party supplies"], "instruction_options": [], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADGSAHI", "worker_id": "A1NF6PELRKACS9"}], "B07T6JK232": [{"asin": "B07T6JK232", "instruction": "i'm looking for large melinda slippers for women that have faux fur and rubber soles.", "attributes": ["faux fur", "rubber sole"], "options": ["color: oxford", "size: large m us"], "instruction_attributes": ["faux fur", "rubber sole"], "instruction_options": ["large m us"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8S7G8D", "worker_id": "A34EHWOYRBL6OZ"}, {"asin": "B07T6JK232", "instruction": "i am ordering grey women faux fur slippers .", "attributes": ["faux fur", "rubber sole"], "options": ["color: grey | mint", "size: small"], "instruction_attributes": ["faux fur"], "instruction_options": ["grey | mint"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3G3NQ3", "worker_id": "AHU9OLV0YKIIW"}], "B09GFHDTPD": [{"asin": "B09GFHDTPD", "instruction": "i'm looking for some eco friendly dental floss. can you pick out the white one?", "attributes": ["eco friendly", "oral hygiene"], "options": ["color: white"], "instruction_attributes": ["eco friendly"], "instruction_options": ["white"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT3X376", "worker_id": "A34QZDSTKZ3JO9"}], "B098DXFRSD": [{"asin": "B098DXFRSD", "instruction": "can you find me a pair of men's non-slip beach sandals with arch support? i want a pair in size 14.", "attributes": ["non slip", "arch support", "rubber sole"], "options": ["color: military color", "size: 14"], "instruction_attributes": ["non slip", "arch support"], "instruction_options": ["14"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9H7B08", "worker_id": "A34QZDSTKZ3JO9"}], "B01693D2ZG": [{"asin": "B01693D2ZG", "instruction": "i like gold gift basket", "attributes": ["caffeine free", "gift set", "gift basket"], "options": ["flavor name: warming joy - red | gold"], "instruction_attributes": ["gift basket"], "instruction_options": ["warming joy - red | gold"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FDXD34", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B01693D2ZG", "instruction": "i'm looking to buy a gift set filled with wellness tea samples that are caffeine free.", "attributes": ["caffeine free", "gift set", "gift basket"], "options": ["flavor name: wellbeing wellness tea"], "instruction_attributes": ["caffeine free", "gift set"], "instruction_options": ["wellbeing wellness tea"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8NTC2NT", "worker_id": "A345TDMHP3DQ3G"}], "B09G6L7L72": [{"asin": "B09G6L7L72", "instruction": "i need 3.52 ounce funky choco pineapple biscuits that are soy free.", "attributes": ["soy free", "gluten free"], "options": ["flavor name: funky choco", "size: 3.52 ounce (pack of 6)"], "instruction_attributes": ["soy free"], "instruction_options": ["funky choco", "3.52 ounce (pack of 6)"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMMV1RSW", "worker_id": "A2RBF3IIJP15IH"}], "B09MCPL8N4": [{"asin": "B09MCPL8N4", "instruction": "find for me a set of yarnow birthday party supplies", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["party supplies", "birthday party"], "instruction_options": [], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTRYG0AU", "worker_id": "A1CB72B51L7TKE"}], "B09MLM996X": [{"asin": "B09MLM996X", "instruction": "i need super soft throws that have butterflies and are 30 by 40 inches.", "attributes": ["super soft", "fleece throw"], "options": ["color: i just really like butterflies", "size: 30x40in for 1-5 toddler | pet"], "instruction_attributes": ["super soft"], "instruction_options": ["i just really like butterflies", "30x40in for 1-5 toddler | pet"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMT4W3X", "worker_id": "A2ECRNQ3X5LEXD"}], "B084GN82K7": [{"asin": "B084GN82K7", "instruction": "looking for a keyboard that is long lasting and use aaa batteries. needs to have color of cherry mx brown.", "attributes": ["long lasting", "plug play", "aaa batteries", "usb port"], "options": ["color: cherry mx brown"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1RRH27", "worker_id": "A1MJVTR0PCKBWW"}], "B08RY2D8LQ": [{"asin": "B08RY2D8LQ", "instruction": "i'm looking for hershey's kisses chocolates that can serve as a perfect gift for valentine's day.", "attributes": ["valentine day", "perfect gift"], "options": [""], "instruction_attributes": ["valentine day", "perfect gift"], "instruction_options": [], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCFZPIY", "worker_id": "A1HMZJ59OPLD1P"}], "B07YFF9CL7": [{"asin": "B07YFF9CL7", "instruction": "i am looking for a men's classic fit t shirt that is x-large and white.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: men", "size: x-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["white", "men", "x-large"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0PRRAX", "worker_id": "A2ECRNQ3X5LEXD"}], "B07TW4HN5W": [{"asin": "B07TW4HN5W", "instruction": "find me some light weight, noise cancelling headphones. i want the white and black ones.", "attributes": ["noise cancelling", "light weight"], "options": ["color: white black"], "instruction_attributes": ["noise cancelling", "light weight"], "instruction_options": ["white black"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VWXGF7", "worker_id": "A34QZDSTKZ3JO9"}], "B07VZTDDM1": [{"asin": "B07VZTDDM1", "instruction": "i am looking for a candle in a clear glass jar (19 ounce) that smells like orange.", "attributes": ["soy wax", "clear glass"], "options": ["scent: hibiscus & melon", "size: large jar"], "instruction_attributes": ["clear glass"], "instruction_options": ["hibiscus & melon"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C1DHPO", "worker_id": "A2KW17G25L25R8"}, {"asin": "B07VZTDDM1", "instruction": "i would like a apple & oak three wick candle made of soy wax.", "attributes": ["soy wax", "clear glass"], "options": ["scent: apple & oak", "size: 3-wick"], "instruction_attributes": ["soy wax"], "instruction_options": ["apple & oak", "3-wick"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VIW8E4", "worker_id": "A1WS884SI0SLO4"}], "B07N13NKV8": [{"asin": "B07N13NKV8", "instruction": "i really need a long lasting deodorant.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4EB89B", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DSZBVKX": [{"asin": "B09DSZBVKX", "instruction": "i want to buy an easy to clean and assemble entertainment center.", "attributes": ["easy clean", "easy assemble", "living room"], "options": [""], "instruction_attributes": ["easy clean", "easy assemble"], "instruction_options": [], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUH84SH", "worker_id": "A114NK7T5673GK"}], "B08MQBH63T": [{"asin": "B08MQBH63T", "instruction": "i am looking for some pink high quality makeup brush sets.", "attributes": ["easy clean", "high quality", "sensitive skin"], "options": ["color: pink"], "instruction_attributes": ["high quality"], "instruction_options": ["pink"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY89WXU3", "worker_id": "A2KW17G25L25R8"}], "B09SKN22ST": [{"asin": "B09SKN22ST", "instruction": "i need elbow pads for teen girls that are small and black.", "attributes": ["tummy control", "teen girls"], "options": ["color: black", "size: small"], "instruction_attributes": ["teen girls"], "instruction_options": ["black", "small"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU482XVYP9", "worker_id": "A2ECRNQ3X5LEXD"}], "B09KQZGZWQ": [{"asin": "B09KQZGZWQ", "instruction": "i would like round bottles that are bpa free and have fine mist spray caps. pick the clear one.", "attributes": ["bpa free", "fine mist"], "options": ["color: clear"], "instruction_attributes": ["bpa free", "fine mist"], "instruction_options": ["clear"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R2UKSH", "worker_id": "A1NF6PELRKACS9"}], "B09PDSMYJW": [{"asin": "B09PDSMYJW", "instruction": "i looking a short sleeve bridemaid gown satin tumble dry colour should be coral", "attributes": ["hand wash", "wash cold", "drawstring closure", "short sleeve", "tumble dry"], "options": ["color: coral", "size: 18"], "instruction_attributes": ["short sleeve", "tumble dry"], "instruction_options": ["coral"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZ6HWUY", "worker_id": "A3N9ZYQAESNFQH"}], "B095LD9RJH": [{"asin": "B095LD9RJH", "instruction": "i would like to buy a deer statue for display in my living room.", "attributes": ["exquisite workmanship", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KQC9J5", "worker_id": "A114NK7T5673GK"}], "B09N9GMXB9": [{"asin": "B09N9GMXB9", "instruction": "i need cake toppers that are red for valentine's day.", "attributes": ["valentine day", "birthday party"], "options": ["color: red"], "instruction_attributes": ["valentine day"], "instruction_options": ["red"], "assignment_id": "3X65QVEQIBXVW21709CD9M35UZDCLI", "worker_id": "A2ECRNQ3X5LEXD"}], "B08FBGGP37": [{"asin": "B08FBGGP37", "instruction": "i need a high speed hdmi cable with an extension cord. pick a white one.", "attributes": ["high speed", "blu ray", "plug play"], "options": ["pattern name: cable + extension cord", "size: 3 feet"], "instruction_attributes": ["high speed"], "instruction_options": ["cable + extension cord"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DY8W288", "worker_id": "A1NF6PELRKACS9"}], "B09P58XZ16": [{"asin": "B09P58XZ16", "instruction": "i'm trying to find a one piece swimsuit with tummy control. i need one in size small.", "attributes": ["tummy control", "cotton spandex", "high waist", "short sleeve", "tumble dry"], "options": ["color: swimsuits-a411-green", "size: small"], "instruction_attributes": ["tummy control"], "instruction_options": ["small"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHVZP8DR", "worker_id": "A34QZDSTKZ3JO9"}], "B09LK3PN6M": [{"asin": "B09LK3PN6M", "instruction": "i am looking for corn that is non gmo and spicy toasted as well as 16 oz.", "attributes": ["non gmo", "artificial flavors", "resealable bag", "artificial colors", "quality ingredients"], "options": ["flavor name: spicy toasted corn", "size: 16 oz"], "instruction_attributes": ["non gmo"], "instruction_options": ["spicy toasted corn", "16 oz"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIJ385X", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QHKHN59": [{"asin": "B08QHKHN59", "instruction": "i am looking for easy to use movie themed cake toppers.", "attributes": ["easy use", "cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXTWMYF", "worker_id": "A1EREKSZAA9V7B"}], "B098BJVT82": [{"asin": "B098BJVT82", "instruction": "i would like a white contemporary modern style bed.", "attributes": ["white item", "box spring", "contemporary style"], "options": [""], "instruction_attributes": ["white item", "contemporary style"], "instruction_options": [], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C2OPH9", "worker_id": "A1WS884SI0SLO4"}], "B098FGDCDS": [{"asin": "B098FGDCDS", "instruction": "i need a white high definition dome camera.", "attributes": ["high definition", "optical zoom"], "options": ["color: white", "size: 20x"], "instruction_attributes": ["high definition"], "instruction_options": ["white"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0MTLSCC", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B098FGDCDS", "instruction": "i'm looking for optical zoom electronics want to buy a white color.", "attributes": ["high definition", "optical zoom"], "options": ["color: white", "size: 12x"], "instruction_attributes": ["optical zoom"], "instruction_options": ["white", "12x"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANGLXS5", "worker_id": "A16IQOX0DK14OJ"}], "B08YYYDMKD": [{"asin": "B08YYYDMKD", "instruction": "i am looking for grey color smartwatch band.it should be compatible with apple watch.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: grey", "size: 42mm | 44mm | 45mm-large"], "instruction_attributes": ["compatible apple"], "instruction_options": ["grey"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67IA4NF", "worker_id": "A3FG5PQHG5AH3Y"}], "B09D3X58V1": [{"asin": "B09D3X58V1", "instruction": "i'm going hiking so i'm looking for a pair of slip resistant rubber soled boots. i want something in 8.5.", "attributes": ["knee high", "slip resistant", "steel toe", "high heel", "rubber sole"], "options": ["color: m2-army green", "size: 8.5"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["8.5"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNFZNDLH", "worker_id": "A34QZDSTKZ3JO9"}], "B07XW113LC": [{"asin": "B07XW113LC", "instruction": "i want round shape home furniture", "attributes": ["contemporary design", "home furnishings"], "options": ["color: lavender | ivory", "item shape: round", "size: 4 ft x 6 ft"], "instruction_attributes": ["home furnishings"], "instruction_options": ["round"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM9659G42", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B07XW113LC", "instruction": "i want a square shaped area rug for my home. pick a contemporary design in lavender or ivory color.", "attributes": ["contemporary design", "home furnishings"], "options": ["color: lavender | ivory", "item shape: square", "size: 4 ft x 6 ft"], "instruction_attributes": ["contemporary design", "home furnishings"], "instruction_options": ["lavender | ivory", "square"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGW8WTD", "worker_id": "A1NF6PELRKACS9"}], "B01MYZMIHB": [{"asin": "B01MYZMIHB", "instruction": "i am looking for a round, non-shedding, boho chic medallion distressed area rug for my living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: ivory | navy", "item shape: round", "size: 3' x 5'"], "instruction_attributes": ["living room"], "instruction_options": ["round"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06IYKXT", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B01MYZMIHB", "instruction": "i need a pink colored area rug for my living room area.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: pink | multi", "item shape: runner", "size: 2' 2\" x 16'"], "instruction_attributes": ["home furnishings", "living room"], "instruction_options": ["pink | multi"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB067IXK4", "worker_id": "A19317A3X87NVM"}, {"asin": "B01MYZMIHB", "instruction": "i am looking for a rectangular shaped area rug for living room with orange or light blue color. also choose 2ft 2in x 4ft in size.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: orange | light blue", "item shape: rectangular", "size: 2' 2\" x 4'"], "instruction_attributes": ["living room"], "instruction_options": ["orange | light blue", "rectangular", "2' 2\" x 4'"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFVL3EM", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B01MYZMIHB", "instruction": "i am looking for boho chic medallion non shedding area rug 6'7''x9'2'' for my living room. in forest green, or light blue.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: forest green | light blue", "item shape: square", "size: 2' 2\" x 20'"], "instruction_attributes": ["living room"], "instruction_options": ["forest green | light blue"], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UL8KOH", "worker_id": "A2KW17G25L25R8"}, {"asin": "B01MYZMIHB", "instruction": "i would like a 8 by 8 round rug preferably in fuchsia for the living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: light blue | fuchsia", "item shape: round", "size: 8' x 8'"], "instruction_attributes": ["living room"], "instruction_options": ["light blue | fuchsia", "round", "8' x 8'"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTO24VS", "worker_id": "A1WS884SI0SLO4"}], "B07NBZJZDP": [{"asin": "B07NBZJZDP", "instruction": "i'm looking for an oil free concealer. can you get the one in shade 9?", "attributes": ["oil free", "cruelty free"], "options": ["color: 6nt (shade 9)"], "instruction_attributes": ["oil free"], "instruction_options": ["6nt (shade 9)"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I33DFE", "worker_id": "A34QZDSTKZ3JO9"}], "B09RZRCWCD": [{"asin": "B09RZRCWCD", "instruction": "i need a black full size metal bed frame that doesn't take up too much storage space.", "attributes": ["twin size", "storage space", "box spring"], "options": ["color: black | silver", "size: full"], "instruction_attributes": ["storage space"], "instruction_options": ["black | silver", "full"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZFJ9KB", "worker_id": "A2RBF3IIJP15IH"}], "B07MRH3BQ1": [{"asin": "B07MRH3BQ1", "instruction": "do you think you can find me a dustproof phone case? i'll take one in white.", "attributes": ["dust proof", "compatible apple", "case cover"], "options": ["color: white", "size: iphone 12 pro max"], "instruction_attributes": ["dust proof"], "instruction_options": ["white"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTIRLP4", "worker_id": "A34QZDSTKZ3JO9"}], "B09QKTVJV8": [{"asin": "B09QKTVJV8", "instruction": "i'm trying to find an office chair with metal legs. i really want one that is black.", "attributes": ["height adjustable", "easy assemble", "metal legs", "living room"], "options": ["color: black2"], "instruction_attributes": ["metal legs"], "instruction_options": ["black2"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC50ARKZ", "worker_id": "A34QZDSTKZ3JO9"}], "B09724XN6P": [{"asin": "B09724XN6P", "instruction": "can you get me a white bookshelf with a white finish? i want to get the one with one door.", "attributes": ["white item", "assembly required", "white finish"], "options": ["color: white with 1 door", "size: 23.54''w*13.98''d*70.87\u2018\u2019h"], "instruction_attributes": ["white item", "white finish"], "instruction_options": ["white with 1 door"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZALPC2", "worker_id": "A34QZDSTKZ3JO9"}], "B07F79DFCT": [{"asin": "B07F79DFCT", "instruction": "i am looking for a peppermint alcohol free mouthwash for bad breath.", "attributes": ["fluoride free", "alcohol free", "plant based", "teeth whitening", "bad breath"], "options": ["flavor name: peppermint"], "instruction_attributes": ["alcohol free", "bad breath"], "instruction_options": ["peppermint"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366ONROPJ", "worker_id": "A2KW17G25L25R8"}], "B00P5FGRMA": [{"asin": "B00P5FGRMA", "instruction": "i am looking for a long lasting matte lipstick in darling damask color.", "attributes": ["paraben free", "long lasting"], "options": ["color: darling damask"], "instruction_attributes": ["long lasting"], "instruction_options": ["darling damask"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F2XXOHW", "worker_id": "A114NK7T5673GK"}], "B08238WZGG": [{"asin": "B08238WZGG", "instruction": "i am looking for a heavy duty purple case with a screen protector and kickstand for a samsung galaxy tablet.", "attributes": ["heavy duty", "easy install", "easy use", "tempered glass", "case cover", "glass screen"], "options": ["color: purple"], "instruction_attributes": ["heavy duty"], "instruction_options": ["purple"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCLYCNS4", "worker_id": "A1EREKSZAA9V7B"}], "B08L89KVGW": [{"asin": "B08L89KVGW", "instruction": "i would like a 1 fluid ounce green apple lip gloss that's cruelty free to animals.", "attributes": ["alcohol free", "cruelty free", "easy use"], "options": ["scent: green apple", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["green apple", "1 fl oz (pack of 1)"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOD1CTP", "worker_id": "A1WS884SI0SLO4"}], "B093GVC697": [{"asin": "B093GVC697", "instruction": "i need portable speakers that are bluetooth, high powered, and have stereo sound. i'm looking for k9 2ng gen color.", "attributes": ["high power", "stereo sound"], "options": ["color: k9 2nd gen"], "instruction_attributes": ["high power", "stereo sound"], "instruction_options": ["k9 2nd gen"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU2AA9G", "worker_id": "A1MJVTR0PCKBWW"}], "B0859F614M": [{"asin": "B0859F614M", "instruction": "i am looking for a styling tool that is black that one would find in a salon.", "attributes": ["hair treatment", "hair salon"], "options": ["color: black jacquard", "size: average"], "instruction_attributes": ["hair salon"], "instruction_options": ["black jacquard"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HAL6IL", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0859F614M", "instruction": "i want a hair treatment steamer thermal heat cap.", "attributes": ["hair treatment", "hair salon"], "options": ["color: leaf print", "size: heat cap"], "instruction_attributes": ["hair treatment"], "instruction_options": ["heat cap"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNDK10Z", "worker_id": "A2RBF3IIJP15IH"}], "B07WYHZ4NL": [{"asin": "B07WYHZ4NL", "instruction": "need a hair extension that is synthetic and long lasting, and get the 8 pack of 18 inch size.", "attributes": ["long lasting", "synthetic hair", "hair extensions"], "options": ["color: t27 | 613#", "size: 18 inch (pack of 8)"], "instruction_attributes": ["long lasting", "synthetic hair"], "instruction_options": ["18 inch (pack of 8)"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL961V2A", "worker_id": "A1MJVTR0PCKBWW"}], "B09FS7Y48C": [{"asin": "B09FS7Y48C", "instruction": "i\u2019m looking for a nice outdoor loveseat sofa that is easy to clean in all weather; please choose the navy blue one.", "attributes": ["high density", "easy clean", "steel frame"], "options": ["color: navy blue"], "instruction_attributes": ["easy clean"], "instruction_options": ["navy blue"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZWJNR6", "worker_id": "A3LIIE572Z4OG7"}], "B09JKSZM5C": [{"asin": "B09JKSZM5C", "instruction": "i am looking for stylish, comfortable women's mid calf boots in leather shoes, knee-height boots in gt51-brown color. 6.5 size preferable..", "attributes": ["knee high", "leather sole", "memory foam"], "options": ["color: gde51-brown", "size: 6.5"], "instruction_attributes": ["knee high", "leather sole", "memory foam"], "instruction_options": ["gde51-brown", "6.5"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLO3ADD", "worker_id": "A1DRKZ3SCLAS4V"}], "B075F5TYW8": [{"asin": "B075F5TYW8", "instruction": "i need 3 packs tempered glass that is lcd compatible for canon eos 1500d 1300d 1200d models", "attributes": ["easy install", "tempered glass"], "options": [""], "instruction_attributes": ["tempered glass"], "instruction_options": [], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB10YLUH", "worker_id": "A258PTOZ3D2TQR"}], "B099NQX48P": [{"asin": "B099NQX48P", "instruction": "i am looking for a gourmet buffalo chicken snack with simple ingredients.", "attributes": ["individually wrapped", "simple ingredients"], "options": ["flavor name: buffalo chicken"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["buffalo chicken"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98O3YKO", "worker_id": "A114NK7T5673GK"}], "B092MP7JL1": [{"asin": "B092MP7JL1", "instruction": "i am looking for high quality clear bass computer speakers of vaensong jt009 wooden multimedia. compatible with pc,tv,laptop,mac,smartphones,mp3 player, perfect for home,party etc.easy to set up,usb port in green color.", "attributes": ["plug play", "usb port"], "options": ["color: green"], "instruction_attributes": ["plug play", "usb port"], "instruction_options": ["green"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70I68CB6", "worker_id": "A1DRKZ3SCLAS4V"}], "B08R5PXSJM": [{"asin": "B08R5PXSJM", "instruction": "find me a lead free, eco friendly, long lasting candle. i want the fragrance to be cinnamon delight", "attributes": ["lead free", "eco friendly", "long lasting", "soy wax"], "options": ["color: cinnamon delight"], "instruction_attributes": ["lead free", "eco friendly", "long lasting"], "instruction_options": ["cinnamon delight"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50QZDWGB", "worker_id": "A34QZDSTKZ3JO9"}], "B09P1NHM7S": [{"asin": "B09P1NHM7S", "instruction": "i'm searching for womens leather angle strap platform slip on of size 6.5 and c brown color", "attributes": ["open toe", "fleece lined", "ankle strap", "closed toe", "faux fur", "steel toe", "high heel", "memory foam", "rubber sole"], "options": ["color: c brown", "size: 6.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["c brown", "6.5"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XK73ENU", "worker_id": "A258PTOZ3D2TQR"}], "B09QC4NG39": [{"asin": "B09QC4NG39", "instruction": "i need 2 panels easy clean window curtains of size 39.5\"w x 63\"l x2 for living room", "attributes": ["eco friendly", "machine washable", "easy clean", "stainless steel", "dining room", "living room"], "options": ["color: style-08", "size: 39.5\"w x 63\"l x2"], "instruction_attributes": ["easy clean", "living room"], "instruction_options": ["39.5\"w x 63\"l x2"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPHF6ED", "worker_id": "A258PTOZ3D2TQR"}], "B08YDPQ7G3": [{"asin": "B08YDPQ7G3", "instruction": "i'm looking for some nail polish. i really need something that is burgundy, please.", "attributes": ["long lasting", "nail polish", "nail art"], "options": ["color: burgundy collection"], "instruction_attributes": ["nail polish"], "instruction_options": ["burgundy collection"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54MW83P", "worker_id": "A34QZDSTKZ3JO9"}], "B075WNW39J": [{"asin": "B075WNW39J", "instruction": "i want light weight polyster back", "attributes": ["water resistant", "light weight", "carrying case"], "options": ["color: polyster black"], "instruction_attributes": ["light weight"], "instruction_options": [], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7F8M8K4", "worker_id": "A226L9F2AZ38CL"}], "B08XM348SC": [{"asin": "B08XM348SC", "instruction": "i would like a basic phone case that has wireless charging.", "attributes": ["compatible apple", "wireless charging"], "options": [""], "instruction_attributes": ["wireless charging"], "instruction_options": [], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPC9V6Z", "worker_id": "A1WS884SI0SLO4"}], "B01N1V7ER0": [{"asin": "B01N1V7ER0", "instruction": "i need a 15 ft 1080p hd vga cable,", "attributes": ["1080p hd", "gold plated", "easy use"], "options": ["size: 15feet"], "instruction_attributes": ["1080p hd"], "instruction_options": ["15feet"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A215HTHQ", "worker_id": "A1WS884SI0SLO4"}], "B073L11212": [{"asin": "B073L11212", "instruction": "i am looking for a high speed coaxial cable that is 3 feet in size.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 3ft", "style: trishield - black"], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["3ft"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAU649CS", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B073L11212", "instruction": "i am looking for a high speed coaxial cable that is 5 feet long and is solid copper.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 5ft", "style: solid copper w | weather boot - black"], "instruction_attributes": ["high speed"], "instruction_options": ["5ft", "solid copper w | weather boot - black"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1AF80X", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B073L11212", "instruction": "i am looking for a 200 ft size high-speed coaxial cable and the cable material is aluminum alloy.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 200ft", "style: direct burial w | rg-11 weather boot - bl..."], "instruction_attributes": ["high speed", "coaxial cable", "aluminum alloy"], "instruction_options": ["200ft"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPGW6V5", "worker_id": "A9ZM1P6LBW79"}, {"asin": "B073L11212", "instruction": "i am looking for a high speed 250 foot long 75 ohm coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 250ft", "style: plenum rg-11 - white"], "instruction_attributes": ["high speed"], "instruction_options": ["250ft"], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQW55BO", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B073L11212", "instruction": "i would like a black 90 foot coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 90ft", "style: w | ground - black"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["90ft", "w | ground - black"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY865D81Y", "worker_id": "A1WS884SI0SLO4"}], "B07P9TTWPD": [{"asin": "B07P9TTWPD", "instruction": "i would like a 3xl grey scrub bottoms that are easily machine washable.", "attributes": ["easy care", "day comfort", "wash cold", "machine wash", "elastic waistband"], "options": ["color: grey", "size: 3x-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["grey", "3x-large"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8705AV", "worker_id": "A1WS884SI0SLO4"}], "B08BTTH66J": [{"asin": "B08BTTH66J", "instruction": "i am looking for slim fit men jean of black color.", "attributes": ["slim fit", "machine wash", "imported zipper", "button closure", "polyester spandex", "everyday wear"], "options": ["color: black", "size: 38w x 32l"], "instruction_attributes": ["slim fit"], "instruction_options": ["black"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY863S182", "worker_id": "A3FG5PQHG5AH3Y"}], "B09NVDJXCT": [{"asin": "B09NVDJXCT", "instruction": "can you find me a high quality spa linen in green?", "attributes": ["high quality", "beauty salon"], "options": ["color: green", "size: 190*80cm"], "instruction_attributes": ["high quality"], "instruction_options": ["green"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWU81R4", "worker_id": "A34QZDSTKZ3JO9"}], "B08GK773VS": [{"asin": "B08GK773VS", "instruction": "can you find me a high definition hdmi cable that is gold plated?", "attributes": ["high definition", "gold plated", "plug play"], "options": [""], "instruction_attributes": ["high definition", "gold plated"], "instruction_options": [], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFL73V1", "worker_id": "A34QZDSTKZ3JO9"}], "B0989NQ7RD": [{"asin": "B0989NQ7RD", "instruction": "i am looking for human hair toppers for hair loss. i would like something in a medium brown.", "attributes": ["easy use", "hair loss"], "options": ["color: dark brown ombre light brown-e", "size: 16 inch-120% density"], "instruction_attributes": ["hair loss"], "instruction_options": ["dark brown ombre light brown-e"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRBXNW8", "worker_id": "A2KW17G25L25R8"}], "B01M35RC7N": [{"asin": "B01M35RC7N", "instruction": "get me a face moisturizer that is for dry skin and fine lines.", "attributes": ["fragrance free", "hyaluronic acid", "dry skin", "fine lines", "dead skin"], "options": [""], "instruction_attributes": ["dry skin", "fine lines"], "instruction_options": [], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C47N0I2", "worker_id": "A1MJVTR0PCKBWW"}], "B09LQQXGK1": [{"asin": "B09LQQXGK1", "instruction": "i would like a lip balm that has natural ingredients and is the color a.", "attributes": ["easy apply", "natural ingredients", "dead skin"], "options": ["color: a"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["a"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HODHMLA", "worker_id": "A2ECRNQ3X5LEXD"}], "B0791RWM8M": [{"asin": "B0791RWM8M", "instruction": "i need a 3.4 fl oz glass bottle of toothgel that is plant based and made of fennel & baking soda.", "attributes": ["cruelty free", "plant based", "paraben free"], "options": ["color: fennel & baking soda", "size: 3.4 fl oz glass bottle"], "instruction_attributes": ["plant based"], "instruction_options": ["fennel & baking soda", "3.4 fl oz glass bottle"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0OQCAE", "worker_id": "A2RBF3IIJP15IH"}], "B08SMNM3QY": [{"asin": "B08SMNM3QY", "instruction": "i am looking for the perfect gift, with quality ingredients like jack daniel's pecan.", "attributes": ["quality ingredients", "perfect gift"], "options": ["flavor name: jack daniels pecan"], "instruction_attributes": ["quality ingredients", "perfect gift"], "instruction_options": ["jack daniels pecan"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AGPOEY", "worker_id": "A2KW17G25L25R8"}], "B0861QDWT8": [{"asin": "B0861QDWT8", "instruction": "i am looking for active shorts with an elastic waistband that are red and 3x large.", "attributes": ["hand wash", "machine wash", "polyester spandex", "elastic waistband"], "options": ["color: red", "size: 3x-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["red", "3x-large"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHVLB7G", "worker_id": "A2ECRNQ3X5LEXD"}], "B000Z61MSS": [{"asin": "B000Z61MSS", "instruction": "i'm looking for some long lasting deodorant.", "attributes": ["alcohol free", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGGUO0T", "worker_id": "A34QZDSTKZ3JO9"}], "B003SD83GE": [{"asin": "B003SD83GE", "instruction": "i am looking for a pound of instant coffee that is gluten free and english toffee.", "attributes": ["rich creamy", "easy use", "gluten free"], "options": ["flavor name: english toffee", "size: 1 pound (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["english toffee", "1 pound (pack of 1)"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP6Y2DVF", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B003SD83GE", "instruction": "i am looking for a rich creamy instant coffee of hazelnut flavor", "attributes": ["rich creamy", "easy use", "gluten free"], "options": ["flavor name: hazelnut", "size: 12 ounce (pack of 6)"], "instruction_attributes": ["rich creamy"], "instruction_options": ["hazelnut"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWDDFNI", "worker_id": "A9QRQL9CFJBI7"}], "B092DYRWV3": [{"asin": "B092DYRWV3", "instruction": "i am looking for a stainless steel foot scraper.", "attributes": ["high quality", "non slip", "stainless steel", "dead skin"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA22S2X", "worker_id": "A2KW17G25L25R8"}], "B08HCDGN25": [{"asin": "B08HCDGN25", "instruction": "i am looking for square shaped swival bar stools with adjustable heights. a set of 2 in gray is preferred.", "attributes": ["height adjustable", "pu leather", "dining room"], "options": ["color: fabric gray"], "instruction_attributes": ["height adjustable"], "instruction_options": ["fabric gray"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOTQO7H", "worker_id": "A3T9WZOUQGE2UW"}], "B074FDCNDK": [{"asin": "B074FDCNDK", "instruction": "i want to buy a special himalayan salt diet seasoning pack, around 3 ounces and it has to be gluten free.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: special diet seasonings", "size: 3 ounce (pack of 1)", "style: 3 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["special diet seasonings", "3 ounce (pack of 1)"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WMJQWX", "worker_id": "A114NK7T5673GK"}, {"asin": "B074FDCNDK", "instruction": "i want to buy some gluten free gourmet seasonings.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 3 ounce (pack of 3)", "style: 5 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["everyday seasonings"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49XR4X8", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B074FDCNDK", "instruction": "looking for organic paleo food seasoning which is gluten free of 1 pound pack", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 1 pound (pack of 1)", "style: 4 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MLGWL8", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B074FDCNDK", "instruction": "i would like a 1.5 pound box of 3 oz bottles of organic seasonings that are low sodium.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: organic seasonings", "size: 3 ounce (pack of 1)", "style: 1.5 pound (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["organic seasonings", "3 ounce (pack of 1)", "1.5 pound (pack of 1)"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IULTL8", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B074FDCNDK", "instruction": "i need everyday seasoning which should be gluten free and have low sodium. i will prefer a pack of 1 with 20 ounce or a pack of 3 with 3 ounce each.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 20 ounce (pack of 1)", "style: 3 ounce (pack of 3)"], "instruction_attributes": ["low sodium", "gluten free"], "instruction_options": ["everyday seasonings", "20 ounce (pack of 1)", "3 ounce (pack of 3)"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MCZVZYU", "worker_id": "ASWFLI3N8X72G"}, {"asin": "B074FDCNDK", "instruction": "i need some special diet seasonings that are low sodium and 4 ounces.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: special diet seasonings", "size: 4.02 ounce (pack of 1)", "style: 4 ounce (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["special diet seasonings", "4 ounce (pack of 1)"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7X88FR8", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B074FDCNDK", "instruction": "i want to find some all-purpose everyday seasoning that is low sodium. i want both a 1.5 pound package and a 2 ounce package.", "attributes": ["low sodium", "gluten free", "artificial colors"], "options": ["flavor name: everyday seasonings", "size: 1.5 pound (pack of 1)", "style: 2 ounce (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["everyday seasonings", "1.5 pound (pack of 1)", "2 ounce (pack of 1)"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E20M53J", "worker_id": "A345TDMHP3DQ3G"}], "B09KH4N2BG": [{"asin": "B09KH4N2BG", "instruction": "i'm looking for some slim fit gym workout clothing. i wear a size small.", "attributes": ["slim fit", "wash cold", "machine wash", "long sleeve", "drawstring closure", "short sleeve", "everyday wear", "gym workout", "tumble dry"], "options": ["color: j-navy", "size: small"], "instruction_attributes": ["slim fit", "gym workout"], "instruction_options": ["small"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LEV5IN", "worker_id": "A34QZDSTKZ3JO9"}], "B075FGWGB8": [{"asin": "B075FGWGB8", "instruction": "do you think you can find me an ac adapter with output protection?", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GH93SS", "worker_id": "A34QZDSTKZ3JO9"}], "B08SQZMQJZ": [{"asin": "B08SQZMQJZ", "instruction": "i am looking for a gray non-slip case for a moto g power 2021 that has a screen protector.", "attributes": ["non slip", "carbon fiber", "case cover"], "options": ["color: motorola moto g power 2021 gray brushed tpu case"], "instruction_attributes": ["non slip"], "instruction_options": ["motorola moto g power 2021 gray brushed tpu case"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8FZ4R3", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08SQZMQJZ", "instruction": "i'm looking for moto g phone with dual camera.", "attributes": ["non slip", "carbon fiber", "case cover"], "options": ["color: motorola moto g power 2021 red brushed tpu case"], "instruction_attributes": ["case cover"], "instruction_options": ["motorola moto g power 2021 red brushed tpu case"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KW0J9F", "worker_id": "A21IUUHBSEVB56"}], "B07V5YQN93": [{"asin": "B07V5YQN93", "instruction": "i am looking for a 24 pack of pink glitter cupcake toppers for a kids birthday party.", "attributes": ["cupcake picks", "baby shower", "birthday party"], "options": ["color: pink"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQ9991Y", "worker_id": "A1EREKSZAA9V7B"}], "B093QG743V": [{"asin": "B093QG743V", "instruction": "i need cupcake picks for birthday party decoration.", "attributes": ["cupcake picks", "birthday party"], "options": ["color: 20th"], "instruction_attributes": ["cupcake picks", "birthday party"], "instruction_options": [], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H08516J", "worker_id": "A1NF6PELRKACS9"}], "B07MLVMV93": [{"asin": "B07MLVMV93", "instruction": "i need a quick drying clog shoes that is light weight and pink in color.", "attributes": ["light weight", "non slip", "quick drying", "ethylene vinyl", "vinyl acetate", "comfortable fit"], "options": ["color: pink", "size: 6 women | 4.5 men"], "instruction_attributes": ["light weight", "quick drying"], "instruction_options": ["pink"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZASPC9", "worker_id": "A1NF6PELRKACS9"}], "B09QFX5BG7": [{"asin": "B09QFX5BG7", "instruction": "i\u2019m looking for a toothbrush that is easy to use for travel and will give me fresh breath. the sky blue one would be good.", "attributes": ["easy use", "fresh breath"], "options": ["color: sky blue"], "instruction_attributes": ["easy use", "fresh breath"], "instruction_options": ["sky blue"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3Q8JM1D", "worker_id": "A3LIIE572Z4OG7"}], "B0957588XQ": [{"asin": "B0957588XQ", "instruction": "i am looking for a white bookcase that is easy to assemble.", "attributes": ["eco friendly", "easy assemble", "steel frame", "storage space", "living room"], "options": ["color: white"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLDQF2L", "worker_id": "A2ECRNQ3X5LEXD"}], "B09927SY88": [{"asin": "B09927SY88", "instruction": "i would like a grey 35\"x20\"x29\" home desk that's easy to clean.", "attributes": ["easy clean", "high gloss"], "options": ["color: grey", "size: 35.4\"x19.7\"x29.1\""], "instruction_attributes": ["easy clean"], "instruction_options": ["35.4\"x19.7\"x29.1\""], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLGIM0F", "worker_id": "A1WS884SI0SLO4"}], "B09MQRPL77": [{"asin": "B09MQRPL77", "instruction": "i an looking for designed with a button-tufted back, hand-crafted upholstery details & espresso wooden legs rosevera pottery tufted upholstered fine linen accent armchair set it in living room, bedroom or sitting room in muticolor.", "attributes": ["button tufted", "contemporary style", "solid wood", "living room"], "options": ["color: muticolor"], "instruction_attributes": ["button tufted", "contemporary style", "solid wood", "living room"], "instruction_options": ["muticolor"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR6476ZH3S", "worker_id": "A1DRKZ3SCLAS4V"}], "B08CSLQ85D": [{"asin": "B08CSLQ85D", "instruction": "i would like to buy a navy star wars top in a small men's size that is also machine washable.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: navy", "fit type: men", "size: small"], "instruction_attributes": ["machine wash", "star wars"], "instruction_options": ["navy", "men", "small"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEEA869", "worker_id": "A114NK7T5673GK"}], "B07S8TWCYX": [{"asin": "B07S8TWCYX", "instruction": "i am looking for roxy vista flip flops for women, size 11 with a synthetic sole.", "attributes": ["synthetic sole", "rubber outsole"], "options": ["color: black 3", "size: 11"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["11"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRT1XJA", "worker_id": "A1EREKSZAA9V7B"}], "B085B3TNKT": [{"asin": "B085B3TNKT", "instruction": "i\u2019m looking for a bunny rabbit cupcake topper for theme kids birthday party supplies", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["party supplies", "birthday party"], "instruction_options": [], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHB50JL", "worker_id": "A1ZGOZQF2VZ0X9"}], "B07GQP86J5": [{"asin": "B07GQP86J5", "instruction": "i need 2 pcs of non toxic 12ml atomizer perfume spray travel bottle in gold color", "attributes": ["non toxic", "high quality"], "options": ["color: gold+gold"], "instruction_attributes": ["non toxic"], "instruction_options": ["gold+gold"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQXJJAX", "worker_id": "A1V2C99HEV3F14"}], "B09NDJV2R6": [{"asin": "B09NDJV2R6", "instruction": "find me the fomiyes 4pcs silicone travel bottles that are easy to carry.", "attributes": ["easy carry", "travel bottles"], "options": [""], "instruction_attributes": ["easy carry", "travel bottles"], "instruction_options": [], "assignment_id": "3DIP6YHAPN2FET122B94U5H2V168EG", "worker_id": "A1CB72B51L7TKE"}], "B09LZ1LCDG": [{"asin": "B09LZ1LCDG", "instruction": "i am looking for queen size velvet upholstered platform bed with contemporary design. also choose black one.", "attributes": ["queen size", "contemporary design", "box spring", "solid wood"], "options": ["color: black"], "instruction_attributes": ["queen size"], "instruction_options": ["black"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPL87I4I", "worker_id": "A80XRGJXN2D22"}], "B07CB3Y399": [{"asin": "B07CB3Y399", "instruction": "i'm looking for a gluten-free thick & easy clear thickened apple juice, honey consistency, 4 ounces.", "attributes": ["lactose free", "gluten free"], "options": ["flavor name: sugar free peach mango", "size: 4 fl oz (pack of 1)", "style: honey"], "instruction_attributes": ["gluten free"], "instruction_options": ["4 fl oz (pack of 1)", "honey"], "assignment_id": "3VW04L3ZL4GEZUTR5OBOYTJ22G8XX4", "worker_id": "A1VBPG20HPQBH4"}], "B0842YD1CX": [{"asin": "B0842YD1CX", "instruction": "i need a sulfate and paraben free bottle of shampoo.", "attributes": ["sulfate free", "paraben free"], "options": ["size: 6.8 fl. oz", "style: shampoo"], "instruction_attributes": ["sulfate free", "paraben free"], "instruction_options": ["shampoo"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FY1K8B", "worker_id": "A19317A3X87NVM"}], "B09BXZKNDB": [{"asin": "B09BXZKNDB", "instruction": "i need a long lasting pearl headset.", "attributes": ["long lasting", "wireless bluetooth"], "options": ["color: pearl", "pattern name: headset + stand", "style: xt"], "instruction_attributes": ["long lasting"], "instruction_options": ["pearl"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9L6R09O", "worker_id": "A19317A3X87NVM"}], "B0058HNT4O": [{"asin": "B0058HNT4O", "instruction": "i'm searching for a rubber soled men's loafer that has memory foam and is size 13 extra wide. preferred color is birch.", "attributes": ["ethylene vinyl", "vinyl acetate", "memory foam", "rubber outsole", "rubber sole"], "options": ["color: birch", "size: 13 x-wide"], "instruction_attributes": ["memory foam", "rubber sole"], "instruction_options": ["birch", "13 x-wide"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2YRZVI0", "worker_id": "AHTWQSOY6HTJI"}], "B09KXLDQT4": [{"asin": "B09KXLDQT4", "instruction": "i want to find an orthodontic model that is portable and easy to carry so i can use it to teach oral hygiene.", "attributes": ["easy carry", "high quality", "oral hygiene"], "options": [""], "instruction_attributes": ["easy carry", "oral hygiene"], "instruction_options": [], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HZEI64", "worker_id": "A345TDMHP3DQ3G"}], "B09B27GBVM": [{"asin": "B09B27GBVM", "instruction": "i want to find a 2-piece pool alarm that's remote controlled. it needs to be easy to install and ideally the batteries will be included.", "attributes": ["easy install", "batteries included", "aaa batteries"], "options": ["color: 2pcs"], "instruction_attributes": ["easy install", "batteries included"], "instruction_options": ["2pcs"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9IMLS1T", "worker_id": "A345TDMHP3DQ3G"}], "B07TFX29TQ": [{"asin": "B07TFX29TQ", "instruction": "i need some keto friendly, non-gmo potato chips in the sour cream & onion flavor.", "attributes": ["keto friendly", "sugar free", "non gmo", "gluten free", "artificial flavors"], "options": ["flavor name: sour cream & onion", "size: 1.75 ounce (pack of 1)"], "instruction_attributes": ["keto friendly", "non gmo"], "instruction_options": ["sour cream & onion"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38F14LEE", "worker_id": "A19317A3X87NVM"}], "B09PDWKPX4": [{"asin": "B09PDWKPX4", "instruction": "i'm looking for a cotton long sleeve sleepwear set having elastic waist, 3x-large sized for men. also choose the color yk9672#", "attributes": ["straight leg", "loose fit", "elastic waistband", "elastic waist", "long sleeve"], "options": ["color: yk9672#", "size: 3x-large"], "instruction_attributes": ["elastic waist", "long sleeve"], "instruction_options": ["3x-large"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLH0RDP", "worker_id": "A258PTOZ3D2TQR"}], "B094D7SF73": [{"asin": "B094D7SF73", "instruction": "i want to buy a dual band phone signal booster and want it to be booster 2 | 5.", "attributes": ["dual band", "4g lte"], "options": ["color: booster 2 | 5 signal booster"], "instruction_attributes": ["dual band"], "instruction_options": ["booster 2 | 5 signal booster"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PU4UBZ", "worker_id": "A114NK7T5673GK"}], "B01J43HCFO": [{"asin": "B01J43HCFO", "instruction": "i need some black and white fashion sneakers in size 11 with a rubber sole.", "attributes": ["memory foam", "rubber sole"], "options": ["color: black | white", "size: 11"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black | white", "11"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI7QMZGN", "worker_id": "A19317A3X87NVM"}], "B08ZHZCS3Y": [{"asin": "B08ZHZCS3Y", "instruction": "i am looking to buy a bathroom vanity light that has three lights. brushed nickel, please.", "attributes": ["brushed nickel", "clear glass", "light fixture", "vanity light"], "options": ["size: 3 light"], "instruction_attributes": ["brushed nickel", "vanity light"], "instruction_options": ["3 light"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F81YNZ7", "worker_id": "AHTWQSOY6HTJI"}], "B09HWS67T8": [{"asin": "B09HWS67T8", "instruction": "i'm looking for hair treatments that are sulfate and paraben free and are of high quality too. i need it in bottle for with 60 capsules.", "attributes": ["sulfate free", "paraben free", "high quality", "green tea", "natural ingredients", "hair growth", "hair loss"], "options": ["size: 1 bottle + 60 capsules"], "instruction_attributes": ["sulfate free", "paraben free", "high quality"], "instruction_options": [], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFFLE31", "worker_id": "A1MJVTR0PCKBWW"}], "B092PH81NS": [{"asin": "B092PH81NS", "instruction": "i'm looking for a large pink travel makeup bag that's not only high-quality but also easy to carry and clean.", "attributes": ["easy carry", "easy clean", "high quality"], "options": ["color: pink d", "size: l"], "instruction_attributes": ["easy carry", "easy clean", "high quality"], "instruction_options": ["pink d", "l"], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZKRNCP", "worker_id": "A345TDMHP3DQ3G"}], "B09RPYK5PL": [{"asin": "B09RPYK5PL", "instruction": "i'm looking for an android tv box that comes in ultra hd with dual band wi-fi.", "attributes": ["dual band", "ultra hd"], "options": [""], "instruction_attributes": ["dual band", "ultra hd"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33N8Z2PB", "worker_id": "A345TDMHP3DQ3G"}], "B017TI2I2S": [{"asin": "B017TI2I2S", "instruction": "i want to find a usb headset that's certifiably refurbished and has a plug to play.", "attributes": ["certified refurbished", "plug play"], "options": [""], "instruction_attributes": ["certified refurbished", "plug play"], "instruction_options": [], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRS940XT", "worker_id": "A345TDMHP3DQ3G"}], "B087ZKY4XQ": [{"asin": "B087ZKY4XQ", "instruction": "i want to find a gift set that includes a variety of four instant coffees from nescafe to sample in it.", "attributes": ["fat free", "gift set"], "options": ["flavor name: nescafe instant coffee 4 mix set"], "instruction_attributes": ["gift set"], "instruction_options": ["nescafe instant coffee 4 mix set"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SIOM3TS", "worker_id": "A345TDMHP3DQ3G"}], "B0978Q1KK9": [{"asin": "B0978Q1KK9", "instruction": "i would like a bundle of crackers, spicy beef and cheese which is shelf stable. it also needs to be keto and gluten free.", "attributes": ["shelf stable", "keto friendly", "gluten free"], "options": ["flavor name: spicy beef backpack bundle"], "instruction_attributes": ["shelf stable", "keto friendly", "gluten free"], "instruction_options": ["spicy beef backpack bundle"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOZYATH", "worker_id": "A36F8PDK1DMAN1"}, {"asin": "B0978Q1KK9", "instruction": "im looking for keto friendly, gluten free backpacking snacks including cheese, crackers and summer sausage.", "attributes": ["shelf stable", "keto friendly", "gluten free"], "options": ["flavor name: original beef backpack bundle"], "instruction_attributes": ["keto friendly", "gluten free"], "instruction_options": ["original beef backpack bundle"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVPG71R", "worker_id": "AK3JMCIGU8MLU"}], "B00PGAP3DS": [{"asin": "B00PGAP3DS", "instruction": "i want to find fragrance-free pure moroccan argan oil for my hair and face.", "attributes": ["fragrance free", "anti aging", "easy use", "argan oil", "sensitive skin"], "options": [""], "instruction_attributes": ["fragrance free", "argan oil"], "instruction_options": [], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHUMQLA3", "worker_id": "A345TDMHP3DQ3G"}], "B08B4ZTX93": [{"asin": "B08B4ZTX93", "instruction": "i'm looking for grass-fed gluten free beef jerky meat stick flavored wild ginger. i need 16 sticks (size)", "attributes": ["grass fed", "artificial ingredients", "individually wrapped", "gluten free"], "options": ["flavor name: wild ginger", "size: 16"], "instruction_attributes": ["grass fed", "gluten free"], "instruction_options": ["16"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIHWMTO", "worker_id": "A258PTOZ3D2TQR"}], "B09QCSHVWZ": [{"asin": "B09QCSHVWZ", "instruction": "i'm looking for teeth cleansing toothpaste for teeth whitening.", "attributes": ["fluoride free", "teeth whitening", "long lasting", "sensitive teeth", "fresh breath", "bad breath"], "options": ["color: whitening"], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": ["whitening"], "assignment_id": "37C0GNLMHQDNI94ED11M493QPUWD6N", "worker_id": "A16IQOX0DK14OJ"}], "B091XW25T7": [{"asin": "B091XW25T7", "instruction": "i am looking for a canvas for living room with size of 12x18 inch. also ready to hang", "attributes": ["ready hang", "living room"], "options": ["color: child abstract canvas", "size: 12x18 inch"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["12x18 inch"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWTKD79B", "worker_id": "A2HMEGTAFO0CS8"}], "B07WDCXSX1": [{"asin": "B07WDCXSX1", "instruction": "i am looking for a six piece peppermint bark holiday cookie that is gluten, vegan and dairy free.", "attributes": ["gluten free", "nut free", "soy free", "dairy free"], "options": ["flavor name: apple cider donut"], "instruction_attributes": ["gluten free", "dairy free"], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE2N0QGJ", "worker_id": "A1KZ0KE93WNN5O"}], "B09D8HF94V": [{"asin": "B09D8HF94V", "instruction": "i would like a casual tie dye crewneck sweatshirt. it needs to be long sleeve and have a side splits.", "attributes": ["long sleeve", "unique design", "daily wear"], "options": ["color: b-gray leopard", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLDZDAQ", "worker_id": "A21SVM7079V6OP"}], "B01GS1Q7SS": [{"asin": "B01GS1Q7SS", "instruction": "i want to find an ivory area rug for my dining room. it should have a square shape and be 6 feet by 7 inches.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: ivory | fuchsia", "item shape: square", "size: 6 ft 7 in x 6 ft 7 in"], "instruction_attributes": ["dining room"], "instruction_options": ["ivory | fuchsia", "square", "6 ft 7 in x 6 ft 7 in"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZVTPA5", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01GS1Q7SS", "instruction": "i need an area rug for the living room that is navy", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: navy | ivory", "item shape: rectangular", "size: 8 ft x 10 ft"], "instruction_attributes": ["living room"], "instruction_options": ["navy | ivory"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WYL1AD", "worker_id": "A2ECRNQ3X5LEXD"}], "B0894X4LRQ": [{"asin": "B0894X4LRQ", "instruction": "i need a leak proof purple bag for travel bottles.", "attributes": ["leak proof", "bpa free", "travel size", "non toxic", "easy carry", "high quality", "travel bottles", "fine mist"], "options": ["color: purple"], "instruction_attributes": ["leak proof", "travel bottles"], "instruction_options": ["purple"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKC4QPI3", "worker_id": "A19317A3X87NVM"}], "B00H3T5DDA": [{"asin": "B00H3T5DDA", "instruction": "i want a pack of old fashioned pretzel rods, look for chocolate covered too.", "attributes": ["non gmo", "old fashioned", "chocolate covered", "nut free"], "options": ["flavor name: old fashion rods", "size: 2.5 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["old fashion rods", "2.5 pound (pack of 1)"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXT655VE", "worker_id": "A36LOA6VLJU157"}], "B001FXPNY4": [{"asin": "B001FXPNY4", "instruction": "i'm looking for cinnamon almond cereal that has cookie flavor and high protein serving. also, i want a pack of 12 at 1.2 ounce each.", "attributes": ["gluten free", "protein serving", "high protein", "natural flavors"], "options": ["flavor: protein cookie bites - cinnamon almond", "size: 1.2 ounce (pack of 12)"], "instruction_attributes": ["protein serving"], "instruction_options": ["protein cookie bites - cinnamon almond", "1.2 ounce (pack of 12)"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88QOHDKR", "worker_id": "A1198W1SPF1R4"}, {"asin": "B001FXPNY4", "instruction": "i'm looking for gluten free it contains many proteins.", "attributes": ["gluten free", "protein serving", "high protein", "natural flavors"], "options": ["flavor: french vanilla", "size: 1.2 ounce (pack of 60)"], "instruction_attributes": ["gluten free", "high protein"], "instruction_options": ["french vanilla"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW4M4TE", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B001FXPNY4", "instruction": "i would like a high protein cereal that is honey almond.", "attributes": ["gluten free", "protein serving", "high protein", "natural flavors"], "options": ["flavor: protein breakfast cereal - honey almond", "size: 1.2 ounce (pack of 60)"], "instruction_attributes": ["high protein"], "instruction_options": ["protein breakfast cereal - honey almond"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMO1MWR", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RXNWD5Y": [{"asin": "B07RXNWD5Y", "instruction": "na", "attributes": ["heavy duty", "height adjustable", "high density", "lumbar support", "pu leather", "memory foam", "steel frame"], "options": ["color: blue"], "instruction_attributes": ["steel frame"], "instruction_options": ["blue"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPE3H68S", "worker_id": "A1EI8Z972FIFJ3"}], "B07KQ4X112": [{"asin": "B07KQ4X112", "instruction": "i'd love some help finding some organic beard growth oil that can treat hair loss.", "attributes": ["seed oil", "hair loss"], "options": [""], "instruction_attributes": ["hair loss"], "instruction_options": [], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS4026XNS", "worker_id": "A345TDMHP3DQ3G"}], "B098KY87FJ": [{"asin": "B098KY87FJ", "instruction": "can you pick a tapered leg jean for men that is comfortable to wear? i'm looking for harbor blue color and size 32w x 29l.", "attributes": ["long lasting", "day comfort", "machine wash", "relaxed fit", "imported zipper", "cotton spandex", "button closure"], "options": ["color: harbor blue", "size: 32w x 29l"], "instruction_attributes": ["day comfort"], "instruction_options": ["harbor blue", "32w x 29l"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VKGGF2", "worker_id": "A1198W1SPF1R4"}], "B07NGQ2TWQ": [{"asin": "B07NGQ2TWQ", "instruction": "i need some face powder in a banana color that is long lasting and free of animal cruelty.", "attributes": ["cruelty free", "animal testing", "paraben free", "long lasting"], "options": ["color: banana deep", "size: 1.12 ounce (pack of 1)"], "instruction_attributes": ["cruelty free", "animal testing", "long lasting"], "instruction_options": ["banana deep"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMY4OQLR", "worker_id": "A19317A3X87NVM"}, {"asin": "B07NGQ2TWQ", "instruction": "i'm looing for a cruelty free certified loose baking face powder that is paraben free and long lasting. also, choose a pack of 1 weights 32g and banana light colored one.", "attributes": ["cruelty free", "animal testing", "paraben free", "long lasting"], "options": ["color: banana light", "size: 32 g (pack of 1)"], "instruction_attributes": ["cruelty free", "paraben free", "long lasting"], "instruction_options": ["banana light", "32 g (pack of 1)"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHQPJ0I", "worker_id": "AR0VJ5XRG16UJ"}], "B09HT124QJ": [{"asin": "B09HT124QJ", "instruction": "i am looking for a white oak dining room chandelier with 4 foyer pendant light", "attributes": ["assembly required", "pendant light", "dining room"], "options": [""], "instruction_attributes": ["assembly required"], "instruction_options": [], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0H6XPN", "worker_id": "ARJDD0Z3R65BD"}], "B08HNXVXXL": [{"asin": "B08HNXVXXL", "instruction": "i want some golden brown hair dye.", "attributes": ["permanent hair", "hair dye"], "options": ["color: 6g light golden brown", "size: 1 count (pack of 1)"], "instruction_attributes": ["hair dye"], "instruction_options": ["6g light golden brown"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPP4RNJU", "worker_id": "A19317A3X87NVM"}], "B09FTF3JTN": [{"asin": "B09FTF3JTN", "instruction": "i am looking for a black shower cap for natural hair.", "attributes": ["natural hair", "dry hair"], "options": ["color: black+navy flower"], "instruction_attributes": ["natural hair"], "instruction_options": ["black+navy flower"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGT9UOQ7", "worker_id": "A114NK7T5673GK"}], "B08XQL4CPC": [{"asin": "B08XQL4CPC", "instruction": "i'm looking for a large sea team round cotton rope storage basket with lid and decorative woven storage bin, pot, caddy, organizer, container for snacks, towels and plants 10 x 7.5 inches. also, choose the white one.", "attributes": ["space saving", "storage space"], "options": ["color: black", "size: large | shallow(pack of 1)"], "instruction_attributes": ["storage space"], "instruction_options": ["large | shallow(pack of 1)"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQV80NN", "worker_id": "AWBUPIF8N4DBA"}], "B077D7TRS3": [{"asin": "B077D7TRS3", "instruction": "i want to find a set of leak-proof, bpa-free travel bottles for my toiletries. ideally the set will have four 3-ounce bottles and the color should be #02.", "attributes": ["leak proof", "bpa free", "travel bottles"], "options": ["color: #02 color 4*3 oz"], "instruction_attributes": ["leak proof", "bpa free", "travel bottles"], "instruction_options": ["#02 color 4*3 oz"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFGN5GB3", "worker_id": "A345TDMHP3DQ3G"}], "B088871Y22": [{"asin": "B088871Y22", "instruction": "i need a 8.5 fl oz cool girl aromatherapy candle for my living room. i want the nectarine + coral scent.", "attributes": ["eco friendly", "long lasting", "soy wax", "living room"], "options": ["scent: nectarine + coral"], "instruction_attributes": ["living room"], "instruction_options": ["nectarine + coral"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXR0EWNC", "worker_id": "A1CB72B51L7TKE"}], "B0859P9F6C": [{"asin": "B0859P9F6C", "instruction": "i want blue chamomile scented deep hair conditioner that has tea tree oil, is sulfate free and weighs six ounces.", "attributes": ["sulfate free", "paraben free", "tea tree"], "options": ["scent: blue chamomile", "size: 6 ounce (pack of 2)"], "instruction_attributes": ["sulfate free", "tea tree"], "instruction_options": ["blue chamomile"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6Z3EVN", "worker_id": "A1KZ0KE93WNN5O"}], "B01CX4U7J4": [{"asin": "B01CX4U7J4", "instruction": "i am looking for braven brv-xxl a large portable wireless bluetooth speaker, that is for the outdoors and waterproof, with a built-in 15,000mah power bank usb charger. also, i need it in black/titanium.", "attributes": ["water resistant", "wireless bluetooth"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR4T6UFT", "worker_id": "ABYRAWL4BGD3C"}], "B000SX4HGM": [{"asin": "B000SX4HGM", "instruction": "i want to find a 7.6 ounce package of hair removal wax that's easy to use. the color should be \"all purpose honey.\"", "attributes": ["easy use", "hair removal"], "options": ["color: all purpose honee", "size: 7.6 ounce (pack of 1)"], "instruction_attributes": ["easy use", "hair removal"], "instruction_options": ["all purpose honee", "7.6 ounce (pack of 1)"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKB4PEF", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B000SX4HGM", "instruction": "i want to find a 7.6 ounce package of hair removal wax that's easy to use. the wax should be brazilian style and the primary ingredients should be beeswax and soybean oil.", "attributes": ["easy use", "hair removal"], "options": ["color: brazilian w | beeswax and soybean oil", "size: 7.6 ounce (pack of 1)"], "instruction_attributes": ["easy use", "hair removal"], "instruction_options": ["brazilian w | beeswax and soybean oil", "7.6 ounce (pack of 1)"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPJ80G1", "worker_id": "A345TDMHP3DQ3G"}], "B0042R7WXK": [{"asin": "B0042R7WXK", "instruction": "i want to buy a 32-count pack of hand-crafted, chocolate dessert cups. they need to be gluten free!", "attributes": ["hand crafted", "gluten free"], "options": ["flavor name: chocolate", "size: 32 count (pack of 1)"], "instruction_attributes": ["hand crafted", "gluten free"], "instruction_options": ["chocolate", "32 count (pack of 1)"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30T7E3N7", "worker_id": "A345TDMHP3DQ3G"}], "B0784JSQ6G": [{"asin": "B0784JSQ6G", "instruction": "i need a gold colored birthday cake ornament.", "attributes": ["birthday cake", "birthday party"], "options": ["color: 40-gold"], "instruction_attributes": ["birthday cake"], "instruction_options": ["40-gold"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZZPPCK", "worker_id": "A19317A3X87NVM"}, {"asin": "B0784JSQ6G", "instruction": "get me a gold birthday cake topper.", "attributes": ["birthday cake", "birthday party"], "options": ["color: 60-gold2"], "instruction_attributes": ["birthday cake"], "instruction_options": ["60-gold2"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67JO4NV", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B0784JSQ6G", "instruction": "i need a birthday cake topper that is gold", "attributes": ["birthday cake", "birthday party"], "options": ["color: 25-gold"], "instruction_attributes": ["birthday cake"], "instruction_options": ["25-gold"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HH46II", "worker_id": "A2ECRNQ3X5LEXD"}], "B08ZJQFYZ7": [{"asin": "B08ZJQFYZ7", "instruction": "i'm looking for fully cooked dry rubbed st. louis style ribs.", "attributes": ["fully cooked", "quality ingredients"], "options": ["flavor name: dry rubbed (seasoned) st louis style", "size: four half slabs"], "instruction_attributes": ["fully cooked"], "instruction_options": ["dry rubbed (seasoned) st louis style"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKKSNDE", "worker_id": "A19317A3X87NVM"}], "B083ZG2RZL": [{"asin": "B083ZG2RZL", "instruction": "i need a vanity light with a classic bronze finish.", "attributes": ["vanity light", "clear glass"], "options": ["color: classic bronze", "size: 3-light"], "instruction_attributes": ["vanity light"], "instruction_options": ["classic bronze"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOJ5O7C", "worker_id": "A19317A3X87NVM"}], "B09391JQ43": [{"asin": "B09391JQ43", "instruction": "i want to find a small pair of men's pajama pants that's officially licensed with the joker.", "attributes": ["officially licensed", "drawstring waist"], "options": ["size: small"], "instruction_attributes": ["officially licensed"], "instruction_options": ["small"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XXQ1FAP", "worker_id": "A345TDMHP3DQ3G"}], "B09N9JKMLW": [{"asin": "B09N9JKMLW", "instruction": "i wanna find a wireless soundbar with stereo sound for my tv, color black and with support for u disk tf and sd card.", "attributes": ["high power", "stereo sound"], "options": ["color: black2"], "instruction_attributes": ["stereo sound"], "instruction_options": ["black2"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHLHZ44", "worker_id": "A1YJZS6HXX8AMK"}], "B00U9WP17Q": [{"asin": "B00U9WP17Q", "instruction": "i need some non-gmo chocolate pretzels.", "attributes": ["kosher certified", "non gmo"], "options": [""], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2Z3OKMX", "worker_id": "A19317A3X87NVM"}], "B096YD2L7Q": [{"asin": "B096YD2L7Q", "instruction": "i would like a large, low carb drink alternative that is a red flavor such as cherry or strawberry.", "attributes": ["non alcoholic", "low carb"], "options": [""], "instruction_attributes": ["low carb"], "instruction_options": [], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJ8EO97", "worker_id": "AJQGWGESKQT4Y"}], "B000ER1RCY": [{"asin": "B000ER1RCY", "instruction": "i want a keds champion women's for day comfort, choose a white with a especial size 9", "attributes": ["day comfort", "synthetic sole", "memory foam", "rubber outsole"], "options": ["color: white", "size: 5", "special size: 9 med"], "instruction_attributes": ["day comfort"], "instruction_options": ["white", "9 med"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO834PIJZ", "worker_id": "A2Y2TURT2VEYZN"}], "B07V1Y5MRL": [{"asin": "B07V1Y5MRL", "instruction": "i want to find a 15.99 fluid ounce can of an energy drink without any sugar, artificial colors or flavors. my flavor of preference is called shoc wave.", "attributes": ["zero sugar", "artificial colors", "artificial flavors"], "options": ["flavor name: shoc wave", "size: 15.99 fl oz (pack of 1)"], "instruction_attributes": ["zero sugar", "artificial colors", "artificial flavors"], "instruction_options": ["shoc wave", "15.99 fl oz (pack of 1)"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHUM6LAJ", "worker_id": "A345TDMHP3DQ3G"}], "B081S81FT6": [{"asin": "B081S81FT6", "instruction": "i want to find a 2-ounce bottle of sulfate-free conditioner that's compatible with damaged hair.", "attributes": ["sulfate free", "paraben free", "cruelty free", "damaged hair"], "options": ["size: 2 ounce"], "instruction_attributes": ["sulfate free", "damaged hair"], "instruction_options": ["2 ounce"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7JBDSR", "worker_id": "A345TDMHP3DQ3G"}], "B09P1NSXN4": [{"asin": "B09P1NSXN4", "instruction": "i need a manual toothbrush which has teeth whitening strips and is good for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: d"], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": [], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WG9CYIP", "worker_id": "A19317A3X87NVM"}, {"asin": "B09P1NSXN4", "instruction": "i want to find an f-colored toothbrush that can help whiten my teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: f"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["f"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCAU0DV", "worker_id": "A345TDMHP3DQ3G"}], "B09JJS8F4B": [{"asin": "B09JJS8F4B", "instruction": "i need cupcake picks for my son's birthday party.", "attributes": ["baby shower", "cupcake picks", "party supplies", "birthday party"], "options": [""], "instruction_attributes": ["cupcake picks", "birthday party"], "instruction_options": [], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTZT9NZ", "worker_id": "A19317A3X87NVM"}], "B00F4YS85G": [{"asin": "B00F4YS85G", "instruction": "i'm looking for l'oreal paris true match super-blendable liquid foundation, oil free in c2 natural ivory. i want a 1 fl oz pack of 1.", "attributes": ["oil free", "fine lines"], "options": ["color: c2 natural ivory", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["c2 natural ivory", "1 fl oz (pack of 1)"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9L65092", "worker_id": "A1CB72B51L7TKE"}, {"asin": "B00F4YS85G", "instruction": "i'm looking for a single bottle of bone colored foundation that's oil free and covers fine lines.", "attributes": ["oil free", "fine lines"], "options": ["color: c1.5 bone", "size: 1 count"], "instruction_attributes": ["oil free", "fine lines"], "instruction_options": ["c1.5 bone", "1 count"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4F68L0", "worker_id": "AR9AU5FY1S3RO"}], "B00PUEV4CE": [{"asin": "B00PUEV4CE", "instruction": "i want to find wheat crackers that have no gmos and no high-fructose corn syrup.", "attributes": ["non gmo", "high fructose"], "options": ["flavor: wheat crackers"], "instruction_attributes": ["non gmo", "high fructose"], "instruction_options": ["wheat crackers"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OP9LWFY", "worker_id": "A345TDMHP3DQ3G"}], "B0995NN39Z": [{"asin": "B0995NN39Z", "instruction": "i'm looking for easy to apply, high quality hair extensions in medium light brown.", "attributes": ["easy apply", "high quality"], "options": ["color: #560 medium light brown+60%gray", "size: 8\"x10\""], "instruction_attributes": ["easy apply", "high quality"], "instruction_options": ["#560 medium light brown+60%gray"], "assignment_id": "3G2UL9A02OO71034MOY04HTU3J067U", "worker_id": "A19317A3X87NVM"}], "B00T7JEX44": [{"asin": "B00T7JEX44", "instruction": "i like traditional , old and individually wrapped albert's chocolate ice cubes 60 count tray chocolate", "attributes": ["old fashioned", "individually wrapped"], "options": [""], "instruction_attributes": ["old fashioned", "individually wrapped"], "instruction_options": [], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVL83XB", "worker_id": "A1W06GIYOJMSAK"}], "B073C1K3GZ": [{"asin": "B073C1K3GZ", "instruction": "i need women's loafers with arch support. find something in black.", "attributes": ["arch support", "rubber sole"], "options": ["color: black", "size: 11.0 n us"], "instruction_attributes": ["arch support"], "instruction_options": ["black"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6F3TD3G", "worker_id": "A1NF6PELRKACS9"}], "B08M4YVD3S": [{"asin": "B08M4YVD3S", "instruction": "i'm looking for some usda organic chocolate bars.", "attributes": ["usda organic", "gift set"], "options": ["flavor name: chocolate", "size: 6 count (pack of 1)"], "instruction_attributes": ["usda organic"], "instruction_options": ["chocolate"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6F31D3O", "worker_id": "A19317A3X87NVM"}], "B06XHDT44G": [{"asin": "B06XHDT44G", "instruction": "i want to get a blue 100-foot-long high-speed ethernet cable that's easy to install.", "attributes": ["high speed", "easy install", "high definition"], "options": ["color: blue", "size: 100ft"], "instruction_attributes": ["high speed", "easy install"], "instruction_options": ["blue", "100ft"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJKNT3JN", "worker_id": "A345TDMHP3DQ3G"}], "B07KWW4QKD": [{"asin": "B07KWW4QKD", "instruction": "i need burgundy colored high heels in size us5.5.", "attributes": ["high heel", "rubber sole"], "options": ["color: burgundy", "size: us5.5"], "instruction_attributes": ["high heel"], "instruction_options": ["burgundy", "us5.5"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCDE65O", "worker_id": "A19317A3X87NVM"}], "B00FAQKILA": [{"asin": "B00FAQKILA", "instruction": "i'm looking for chairs for the dining room that are button-tufted and easy-to-assemble.", "attributes": ["button tufted", "easy assemble", "living room", "dining room"], "options": [""], "instruction_attributes": ["button tufted", "easy assemble", "dining room"], "instruction_options": [], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JP60SYV", "worker_id": "AFU00NU09CFXE"}], "B08ZHT9CRK": [{"asin": "B08ZHT9CRK", "instruction": "find me a fragrance free mineral powder foundation set in a medium color and with mascara.", "attributes": ["fragrance free", "easy apply", "fine lines"], "options": ["color: medium"], "instruction_attributes": ["fragrance free"], "instruction_options": ["medium"], "assignment_id": "351SEKWQSBRP7CP60H83T50CFUMMDH", "worker_id": "AE9M4Z1NCYSDM"}], "B09KV7GX8S": [{"asin": "B09KV7GX8S", "instruction": "i'm looking for an easy to clean halloween set for the dining room.", "attributes": ["easy clean", "living room", "dining room"], "options": ["color: cartoon halloween scenelop1361", "size: 52x24in"], "instruction_attributes": ["easy clean", "dining room"], "instruction_options": ["cartoon halloween scenelop1361"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79BG1HT", "worker_id": "A19317A3X87NVM"}], "B0865TZ3B4": [{"asin": "B0865TZ3B4", "instruction": "i am looking for a pair of grey running shorts that are light weight with an elastic waistband and have moisture wicking technology in a size small", "attributes": ["light weight", "moisture wicking", "polyester spandex", "elastic closure", "elastic waistband"], "options": ["color: grey", "size: small"], "instruction_attributes": ["light weight", "moisture wicking", "elastic waistband"], "instruction_options": ["grey", "small"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOXRLLL", "worker_id": "A1E235KE3CSO7H"}], "B097BVKF24": [{"asin": "B097BVKF24", "instruction": "i want to purchase a manual toothbrush that whitens teeth and prefer ones with stars and either pink, blue, purple or yellow.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: pink, blue, purple, yellow,", "style: star shape style"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["pink, blue, purple, yellow,", "star shape style"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XTSFRY", "worker_id": "A114NK7T5673GK"}], "B00GY0CK26": [{"asin": "B00GY0CK26", "instruction": "i need an antique walnut bed frame in a walnut color", "attributes": ["lead free", "white item"], "options": ["color: antique walnut", "size: twin | full"], "instruction_attributes": ["lead free"], "instruction_options": ["antique walnut"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKEQJMZ", "worker_id": "A19317A3X87NVM"}], "B075K15ZKB": [{"asin": "B075K15ZKB", "instruction": "i want to buy some ash blonde hair color with argan oil in it.", "attributes": ["argan oil", "permanent hair"], "options": ["color: high lift ash blonde 100.10"], "instruction_attributes": ["argan oil"], "instruction_options": ["high lift ash blonde 100.10"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPL8L4II", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B075K15ZKB", "instruction": "i need to buy some permanent hair dye. it should be deep ash brown and contain argan oil.", "attributes": ["argan oil", "permanent hair"], "options": ["color: deep ash brown 4aa | 4.11"], "instruction_attributes": ["argan oil", "permanent hair"], "instruction_options": ["deep ash brown 4aa | 4.11"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWZM5TN", "worker_id": "AR9AU5FY1S3RO"}], "B09PY89B1S": [{"asin": "B09PY89B1S", "instruction": "show me an one organic hair growth serum roller set for all hair types.", "attributes": ["hair growth", "hair loss"], "options": ["size: 1pcs"], "instruction_attributes": ["hair growth"], "instruction_options": ["1pcs"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3F8HFBF", "worker_id": "A3AYHESLQSDY5T"}], "B08JV996XH": [{"asin": "B08JV996XH", "instruction": "i want the men's mesh sissy pouch lace see through pajama pants that are low rise and slim fit in x-large. i want the black ones.", "attributes": ["low rise", "slim fit", "unique design", "elastic waist"], "options": ["color: black", "size: x-large"], "instruction_attributes": ["low rise", "slim fit"], "instruction_options": ["black", "x-large"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907DQAUT", "worker_id": "A1CB72B51L7TKE"}], "B00QWT4S56": [{"asin": "B00QWT4S56", "instruction": "i need a bpa and gmo free pack of moringia leaf ground.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: moringa leaf ground", "size: 1 count (pack of 1)"], "instruction_attributes": ["bpa free", "gmo free"], "instruction_options": ["moringa leaf ground", "1 count (pack of 1)"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYM3JIZ3", "worker_id": "A19317A3X87NVM"}, {"asin": "B00QWT4S56", "instruction": "i'm looking for a natural whole bay leaf which should be free from bpa, gmo, fat and gluten. also choose a pack of 1 weighing 3.53 ounce with organic senna flavored one.", "attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "options": ["flavor: organic senna", "size: 3.53 ounce (pack of 1)"], "instruction_attributes": ["bpa free", "gmo free", "fat free", "gluten free"], "instruction_options": ["organic senna", "3.53 ounce (pack of 1)"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACULHNH", "worker_id": "AR0VJ5XRG16UJ"}], "B095X62PKW": [{"asin": "B095X62PKW", "instruction": "i'm looking for some cupcake picks that are suitable for a baby shower.", "attributes": ["baby shower", "cupcake picks", "birthday party"], "options": [""], "instruction_attributes": ["baby shower", "cupcake picks"], "instruction_options": [], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPT74O6U", "worker_id": "AFU00NU09CFXE"}], "B08155MLPZ": [{"asin": "B08155MLPZ", "instruction": "i want to find an adult tank top that's machine washable and features the italian stallion from rocky.", "attributes": ["easy care", "officially licensed", "machine wash", "tumble dry"], "options": [""], "instruction_attributes": ["machine wash"], "instruction_options": [], "assignment_id": "3EJPLAJKEXQQLA9A5JQJV1MTDC7Z69", "worker_id": "A345TDMHP3DQ3G"}], "B07X8NMX57": [{"asin": "B07X8NMX57", "instruction": "i am interested in buying a x-small size purple colored classic fit birthday t-shirt.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: purple", "fit type: men", "size: x-small"], "instruction_attributes": ["classic fit"], "instruction_options": ["purple", "x-small"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3SVTG3D", "worker_id": "A3QZMGTVA4VO44"}], "B07VP4KL4S": [{"asin": "B07VP4KL4S", "instruction": "locate a emme 3-piece king bed in a bag comforter set that is machine washable. i also need the color to be blue stripe.", "attributes": ["queen size", "machine washable"], "options": ["color: blue stripe", "size: 3-piece king"], "instruction_attributes": ["machine washable"], "instruction_options": ["blue stripe", "3-piece king"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI7QWZGX", "worker_id": "A1CB72B51L7TKE"}], "B07KSMB6FT": [{"asin": "B07KSMB6FT", "instruction": "i want to buy some plant-based tuna.", "attributes": ["plant based", "non gmo", "gluten free"], "options": [""], "instruction_attributes": ["plant based"], "instruction_options": [], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZCT3KM", "worker_id": "A2YNPKYEFDZ6C9"}], "B09743DFJC": [{"asin": "B09743DFJC", "instruction": "im looking for a earbud headphones for stereo sound quality of style je-04b which will be more comfortable for me to use without disturbing others .", "attributes": ["noise cancelling", "stereo sound"], "options": ["style: je-04b"], "instruction_attributes": ["stereo sound"], "instruction_options": ["je-04b"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQX4915", "worker_id": "A1ZGQ2I0RQ9OD5"}], "B07CZSWR7P": [{"asin": "B07CZSWR7P", "instruction": "3 sugar free fruit syrup packs of different flavors ie cherry, raspberry, watermelon flavors", "attributes": ["sugar free", "easy use", "gluten free"], "options": ["flavor name: cherry, blue raspberry, watermelon"], "instruction_attributes": ["sugar free"], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3DF6PA", "worker_id": "AL8NYDL4JOYL3"}], "B07S1RSYMC": [{"asin": "B07S1RSYMC", "instruction": "hello, i am looking for some cupcake picks, i want to use them on my mom's birthday party.", "attributes": ["cupcake picks", "birthday party"], "options": [""], "instruction_attributes": ["cupcake picks", "birthday party"], "instruction_options": [], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGIIWTV", "worker_id": "ARW1TCHCLEK1W"}], "B098DNCN3D": [{"asin": "B098DNCN3D", "instruction": "i need some white inline skates in size 40.", "attributes": ["light weight", "unique design"], "options": ["color: f-new white", "size: 40"], "instruction_attributes": ["light weight"], "instruction_options": ["f-new white", "40"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2M8G6W", "worker_id": "A19317A3X87NVM"}], "B09FLCK3PT": [{"asin": "B09FLCK3PT", "instruction": "#4 medium brown color hair pieces of 8 inch length as hair extension.", "attributes": ["hair loss", "natural hair"], "options": ["color: #4medium brown", "size: 8 inch"], "instruction_attributes": ["hair loss", "natural hair"], "instruction_options": [], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZ0SPRQ", "worker_id": "AL8NYDL4JOYL3"}], "B09RH1525C": [{"asin": "B09RH1525C", "instruction": "i need a large, gray long sleeve hoodie.", "attributes": ["long sleeve", "contrast color"], "options": ["color: 51#gray", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["51#gray", "3x-large"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFDGT03", "worker_id": "A19317A3X87NVM"}], "B08L1MT2DH": [{"asin": "B08L1MT2DH", "instruction": "i need a 1080p hd hidden camera which is motion activated.", "attributes": ["1080p hd", "long lasting", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": [], "assignment_id": "39O5D9O8742EGYBIU38DD09OU30C3Y", "worker_id": "A19317A3X87NVM"}], "B016WDNAJ6": [{"asin": "B016WDNAJ6", "instruction": "i need a white mirror with a with a brushed nickel finish in window style.", "attributes": ["brushed nickel", "nickel finish"], "options": ["color: white", "size: 15 inch", "style name: window"], "instruction_attributes": ["brushed nickel", "nickel finish"], "instruction_options": ["white", "window"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6O8MMM7", "worker_id": "A19317A3X87NVM"}, {"asin": "B016WDNAJ6", "instruction": "i am looking for a white brushed nickel for wall-mounted mirrors", "attributes": ["brushed nickel", "nickel finish"], "options": ["color: white", "size: 8 inch", "style name: mirror"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["white"], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQGAHH2", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B016WDNAJ6", "instruction": "i'm looking for brushed nickel decorative ship porthole nautical mirror.", "attributes": ["brushed nickel", "nickel finish"], "options": ["color: chrome", "size: 8 inch", "style name: mirror"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["mirror"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AMCTS1", "worker_id": "A21IUUHBSEVB56"}], "B09K3SXTJ1": [{"asin": "B09K3SXTJ1", "instruction": "i'm trying to find a six-pack of kids' toothbrushes for sensitive teeth. i need the toothbrushes to have long handles and they should come in assorted colors, like blue, pink and yellow.", "attributes": ["long handle", "sensitive teeth"], "options": ["color: blue pink yellow", "style: long handle"], "instruction_attributes": ["long handle", "sensitive teeth"], "instruction_options": ["blue pink yellow", "long handle"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33N8FP2E", "worker_id": "A345TDMHP3DQ3G"}], "B01CX3Y3EA": [{"asin": "B01CX3Y3EA", "instruction": "i'm looking for a 50 piece candy gift basket.", "attributes": ["gift basket", "perfect gift"], "options": ["size: 50 piece set"], "instruction_attributes": ["gift basket"], "instruction_options": ["50 piece set"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7H8HL2", "worker_id": "A19317A3X87NVM"}], "B01D0DY4B4": [{"asin": "B01D0DY4B4", "instruction": "i'm looking for low-fat, hot and spicy beef jerky that's also high in protein.", "attributes": ["old fashioned", "low fat", "high protein"], "options": ["flavor name: hot", "size: 7.5"], "instruction_attributes": ["low fat", "high protein"], "instruction_options": ["hot"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXT5RV5O", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01D0DY4B4", "instruction": "i'd like to find a 3-ounce pack of whiskey barbeque flavored beef jerky. i'm on a diet, so the jerky needs to be low fat.", "attributes": ["old fashioned", "low fat", "high protein"], "options": ["flavor name: whiskey barbecue", "size: 3 ounce (pack of 1)"], "instruction_attributes": ["low fat"], "instruction_options": ["whiskey barbecue", "3 ounce (pack of 1)"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGY8DHDT", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01D0DY4B4", "instruction": "i would like a black pepper 3 ounce bag of jerky that's high protein.", "attributes": ["old fashioned", "low fat", "high protein"], "options": ["flavor name: black pepper", "size: 3 ounce (pack of 1)"], "instruction_attributes": ["high protein"], "instruction_options": ["black pepper", "3 ounce (pack of 1)"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH155AWH6", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01D0DY4B4", "instruction": "i want to order some low fat whiskey barbecue jerky. look for the three pack.", "attributes": ["old fashioned", "low fat", "high protein"], "options": ["flavor name: whiskey barbecue", "size: 3 ounce (pack of 3)"], "instruction_attributes": ["low fat"], "instruction_options": ["whiskey barbecue", "3 ounce (pack of 3)"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNDN102", "worker_id": "AR9AU5FY1S3RO"}], "B09SFYKXD4": [{"asin": "B09SFYKXD4", "instruction": "i'm looking for a gray faux fur height adjustable vanity chair with gold round base for a study room dorm.", "attributes": ["height adjustable", "white item"], "options": ["color: grey"], "instruction_attributes": ["height adjustable"], "instruction_options": ["grey"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EAS9S2K", "worker_id": "A37XVDGVAEI7F"}], "B08GFKXBF9": [{"asin": "B08GFKXBF9", "instruction": "i am looking for a mist water bottle in white color with leak proof. also delivery fine mist", "attributes": ["leak proof", "fine mist", "hair salon"], "options": ["color: white", "size: 10 oz"], "instruction_attributes": ["leak proof", "fine mist"], "instruction_options": ["white"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9EGTEF", "worker_id": "A2HMEGTAFO0CS8"}], "B09DCNHNFH": [{"asin": "B09DCNHNFH", "instruction": "looking for a soft fleece blanket 50\"x60\" that is super soft and machine washable. color 8.", "attributes": ["super soft", "machine washable"], "options": ["color: color8"], "instruction_attributes": ["super soft", "machine washable"], "instruction_options": ["color8"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8W3A5H", "worker_id": "A3RGIKEI8JS2QG"}], "B07P5G65HR": [{"asin": "B07P5G65HR", "instruction": "i want to find a 3 foot by 3 foot wine rack that i can mount on my wall. it must be easy to install as well.", "attributes": ["wall mounted", "easy install"], "options": ["size: 3 foot 3 deep"], "instruction_attributes": ["wall mounted", "easy install"], "instruction_options": ["3 foot 3 deep"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5C9X6A", "worker_id": "A345TDMHP3DQ3G"}], "B06XRXLN77": [{"asin": "B06XRXLN77", "instruction": "i'm looking for pale blush living room window drapes, 2 panel set measuring 108\" x 84\"", "attributes": ["machine washable", "white item", "printing technology", "living room"], "options": ["color: pale blush", "size: 108\" x 84\""], "instruction_attributes": ["living room"], "instruction_options": ["pale blush"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBPRYAOC", "worker_id": "A292TFDMNVS0TP"}], "B0794VBL18": [{"asin": "B0794VBL18", "instruction": "i need a purple body brush for sensitive, dry skin.", "attributes": ["bpa free", "eco friendly", "non slip", "dry skin", "sensitive skin"], "options": ["color: purple"], "instruction_attributes": ["dry skin", "sensitive skin"], "instruction_options": ["purple"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHKQ7BV", "worker_id": "A19317A3X87NVM"}], "B09R9ZC859": [{"asin": "B09R9ZC859", "instruction": "i need a manual toothbrush for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: #10"], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPVTDQ5", "worker_id": "A19317A3X87NVM"}], "B09BQL3828": [{"asin": "B09BQL3828", "instruction": "i ned some hands free white earbuds.", "attributes": ["hands free", "stereo sound"], "options": ["color: white"], "instruction_attributes": ["hands free"], "instruction_options": ["white"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VLTGFH", "worker_id": "A19317A3X87NVM"}], "B07FYL95K5": [{"asin": "B07FYL95K5", "instruction": "i need an alcohol free face mist in peppermint scent.", "attributes": ["alcohol free", "long lasting"], "options": ["scent: peppermint", "size: 4 fl oz (pack of 1)"], "instruction_attributes": ["alcohol free"], "instruction_options": ["peppermint"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2YS9VIC", "worker_id": "A19317A3X87NVM"}, {"asin": "B07FYL95K5", "instruction": "i want a fragrance and alcohol free tropical waters rose water face mist make up setting spray.", "attributes": ["alcohol free", "long lasting"], "options": ["scent: fragrance-free", "size: 8 fl oz (pack of 1)"], "instruction_attributes": ["alcohol free"], "instruction_options": ["fragrance-free"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFF2VMT", "worker_id": "A2RBF3IIJP15IH"}], "B09QG85ZGK": [{"asin": "B09QG85ZGK", "instruction": "i need a metal framed dining room stool with a pink center.", "attributes": ["high density", "metal legs", "dining room", "living room"], "options": ["color: pink", "size: 25.6inch"], "instruction_attributes": ["metal legs", "dining room"], "instruction_options": ["pink"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTEYWX6", "worker_id": "A19317A3X87NVM"}], "B00CD24MXO": [{"asin": "B00CD24MXO", "instruction": "i'm looking for dental picks with no break & no shred floss, count should be 150 & with pack of 6", "attributes": ["oral hygiene", "bad breath"], "options": ["size: pack of 6", "style: 90 count"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["pack of 6"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJY9GRGZ", "worker_id": "A3D6VE1HYFEP9Z"}, {"asin": "B00CD24MXO", "instruction": "i'm looking for oral hygiene because the bad breath affect our whole body.", "attributes": ["oral hygiene", "bad breath"], "options": ["size: 75 count (pack of 3)", "style: 20 count"], "instruction_attributes": ["oral hygiene", "bad breath"], "instruction_options": ["75 count (pack of 3)"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EECWS8", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B00CD24MXO", "instruction": "i'm looking for oral hygiene its prevention of bad breathe.", "attributes": ["oral hygiene", "bad breath"], "options": ["size: 90 count (pack of 1)", "style: 75 count"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746Y4TBE", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B00CD24MXO", "instruction": "i want a 6 pack of dentek triple clean floss picks for bad breath.", "attributes": ["oral hygiene", "bad breath"], "options": ["size: pack of 6", "style: 150 count"], "instruction_attributes": ["bad breath"], "instruction_options": ["pack of 6"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSVOLGS", "worker_id": "A2RBF3IIJP15IH"}], "B07FTC477C": [{"asin": "B07FTC477C", "instruction": "i need the yongquiang 26\" set of 4 metal bar height stools in black. i want the ones for a dining room.", "attributes": ["space saving", "assembly required", "dining room"], "options": ["color: black", "size: 26 inch"], "instruction_attributes": ["dining room"], "instruction_options": ["black", "26 inch"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7HNHLH", "worker_id": "A1CB72B51L7TKE"}], "B09RGT38YF": [{"asin": "B09RGT38YF", "instruction": "na", "attributes": ["day comfort", "moisture wicking", "fashion design"], "options": ["color: black", "size: medium"], "instruction_attributes": ["day comfort"], "instruction_options": ["medium"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFGN5BGY", "worker_id": "A1EI8Z972FIFJ3"}], "B09Q8LKKKY": [{"asin": "B09Q8LKKKY", "instruction": "find me a gray men's button down work shirt that is machine washable but also gives me some tummy control. size x-large.", "attributes": ["loose fit", "daily casual", "winter warm", "slim fit", "machine wash", "long sleeve", "short sleeve", "drawstring waist", "tummy control", "high waist", "everyday wear", "daily wear"], "options": ["color: gray", "size: x-large"], "instruction_attributes": ["machine wash", "tummy control"], "instruction_options": ["gray", "x-large"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7I35PS", "worker_id": "A36LOA6VLJU157"}], "B08NF5JL3F": [{"asin": "B08NF5JL3F", "instruction": "find me 150 ml wella professional oil free hair color with the pink style.", "attributes": ["oil free", "argan oil"], "options": ["style: pink"], "instruction_attributes": ["oil free"], "instruction_options": ["pink"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YB4T82", "worker_id": "A258PTOZ3D2TQR"}], "B09Q6B2LPG": [{"asin": "B09Q6B2LPG", "instruction": "i'd like to find a large pink tankini swimsuit that's loose-fitting.", "attributes": ["loose fit", "machine wash", "drawstring closure", "elastic waistband"], "options": ["color: pink-5", "size: large"], "instruction_attributes": ["loose fit"], "instruction_options": ["pink-5", "large"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATST73K", "worker_id": "A345TDMHP3DQ3G"}], "B07W57ZT82": [{"asin": "B07W57ZT82", "instruction": "i am looking for a mattress that gives me core support and is medium plush. i want an 8\" twin xl sized one.", "attributes": ["high density", "memory foam"], "options": ["size: cal_king"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI3VSDBT", "worker_id": "A1NF6PELRKACS9"}], "B08D6RRSB4": [{"asin": "B08D6RRSB4", "instruction": "i'd like help finding a pack of 500 wooden wax sticks that i can use for hair removal.", "attributes": ["eco friendly", "hair removal"], "options": ["size: pack of 500"], "instruction_attributes": ["hair removal"], "instruction_options": ["pack of 500"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AU433RV", "worker_id": "A345TDMHP3DQ3G"}], "B07KYZ93SL": [{"asin": "B07KYZ93SL", "instruction": "show me a 3x large sized machine washable boxer brief made with polyester spandex in black color.", "attributes": ["wash cold", "machine wash", "elastic waistband", "polyester spandex", "tumble dry"], "options": ["color: black | team red | team blue", "size: 3x-large"], "instruction_attributes": ["machine wash", "polyester spandex"], "instruction_options": ["black | team red | team blue", "3x-large"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6F3PD3C", "worker_id": "A3AYHESLQSDY5T"}], "B0933C4F8L": [{"asin": "B0933C4F8L", "instruction": "i need some baked breadcrumbs in a classic french flavor.", "attributes": ["baked fresh", "0g trans", "dietary fiber"], "options": ["flavor name: classic french", "size: 2 pack"], "instruction_attributes": ["baked fresh"], "instruction_options": ["classic french"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7RL27W5", "worker_id": "A19317A3X87NVM"}], "B001KYRLIO": [{"asin": "B001KYRLIO", "instruction": "i would like to have a n6 honey beige and oil free liquid foundation suitable for fine lines and sold on pack of 2 with 1fl oz each.", "attributes": ["oil free", "fine lines"], "options": ["color: n6 honey beige", "size: 1 fl oz (pack of 2)"], "instruction_attributes": ["oil free", "fine lines"], "instruction_options": ["n6 honey beige", "1 fl oz (pack of 2)"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PCPKNI0", "worker_id": "A182YKPS46KE9F"}, {"asin": "B001KYRLIO", "instruction": "i am looking for a oil free c3 creamy natural color face foundation.", "attributes": ["oil free", "fine lines"], "options": ["color: c3 creamy natural", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["c3 creamy natural"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBFIHGM", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B001KYRLIO", "instruction": "i'm looking for foundation make up by l\u00f3real. i want oil free liquid foundation. my color is w1 porcelain. check for pack of 1 in stock.", "attributes": ["oil free", "fine lines"], "options": ["color: w1 porcelain", "size: 1 count (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["w1 porcelain"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TWISUI", "worker_id": "A15IJ20C3R4HUO"}], "B07HJG6NMR": [{"asin": "B07HJG6NMR", "instruction": "i'd like to find a digital camera that's water resistant. the color needs to be graphite silver and i want the configuration to be the international version.", "attributes": ["certified refurbished", "water resistant", "high performance"], "options": ["color: graphite silver", "configuration: international version"], "instruction_attributes": ["water resistant"], "instruction_options": ["graphite silver", "international version"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJ7XZ8V", "worker_id": "A345TDMHP3DQ3G"}], "B09R6KC45H": [{"asin": "B09R6KC45H", "instruction": "i am looking for hair dry shampoo ammonia free ,chestnut brown", "attributes": ["argan oil", "hair dye"], "options": ["color: chestnut brown"], "instruction_attributes": ["hair dye"], "instruction_options": ["chestnut brown"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQD5HIF", "worker_id": "A3N9ZYQAESNFQH"}], "B09L41ZP46": [{"asin": "B09L41ZP46", "instruction": "i'm looking for a mid century home office desk chair that is easy to assemble. please choose the grey velvet one.", "attributes": ["height adjustable", "mid century", "easy assemble", "metal legs"], "options": ["color: grey"], "instruction_attributes": ["mid century", "easy assemble"], "instruction_options": ["grey"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2DJM54", "worker_id": "A3LIIE572Z4OG7"}], "B09FHNYL3T": [{"asin": "B09FHNYL3T", "instruction": "i want to find white scented candles that are eco-friendly and made of soy wax.", "attributes": ["eco friendly", "soy wax"], "options": ["color: white"], "instruction_attributes": ["eco friendly", "soy wax"], "instruction_options": ["white"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1V0U9Q", "worker_id": "A345TDMHP3DQ3G"}], "B08J4GBZB3": [{"asin": "B08J4GBZB3", "instruction": "i want to get a 9-pack of veggie lasagna entrees that are easy to prepare and high in protein.", "attributes": ["easy prepare", "shelf stable", "low calorie", "high protein"], "options": ["flavor: vegetable lasagna", "size: 9 pack"], "instruction_attributes": ["easy prepare", "high protein"], "instruction_options": ["vegetable lasagna", "9 pack"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXT6QV5P", "worker_id": "A345TDMHP3DQ3G"}], "B000UV4KUK": [{"asin": "B000UV4KUK", "instruction": "i'm looking for men's kiltie dress loafers with leather sole and rubber heel. also, choose the black and brown option in a size 11 narrow.", "attributes": ["leather sole", "rubber sole"], "options": ["color: black | brown", "size: 11 narrow"], "instruction_attributes": [], "instruction_options": ["black | brown", "11 narrow"], "assignment_id": "3HPZF4IVNX3FW186JO133U5134PYCK", "worker_id": "A1TWVJS27CL3KT"}], "B083X5CPXN": [{"asin": "B083X5CPXN", "instruction": "i need a spread dress shirt with a slim fit in the color blue, and it needs to be available for machine wash.", "attributes": ["slim fit", "machine wash", "stretch fabric", "cotton spandex", "button closure"], "options": ["collar style: spread", "color: petrol blue", "size: 18.5\" neck 36\"-37\" sleeve"], "instruction_attributes": ["slim fit", "machine wash"], "instruction_options": ["spread", "petrol blue"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H79SOBU", "worker_id": "A19317A3X87NVM"}], "B09PD2MFGN": [{"asin": "B09PD2MFGN", "instruction": "i'm looking for a long handle stainless steel nail clipper set with color 8592 black", "attributes": ["non slip", "easy clean", "long handle", "stainless steel"], "options": ["color: 8592 black"], "instruction_attributes": ["long handle", "stainless steel"], "instruction_options": [], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWYGFNR", "worker_id": "A258PTOZ3D2TQR"}], "B083M11BV8": [{"asin": "B083M11BV8", "instruction": "i need some easy to apply body glitter for halloween.", "attributes": ["easy apply", "long lasting"], "options": [""], "instruction_attributes": ["easy apply"], "instruction_options": [], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2MA53F", "worker_id": "A19317A3X87NVM"}], "B08BV21ZG2": [{"asin": "B08BV21ZG2", "instruction": "can you help me find organic chicken broth that is gluten free and contains high protein? i'm looking for a pack of 2 pound.", "attributes": ["gluten free", "low calorie", "certified organic", "high protein", "quality ingredients"], "options": ["flavor name: variety", "size: 2 pound (pack of 1)"], "instruction_attributes": ["gluten free", "certified organic", "high protein"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5B45FB", "worker_id": "A1198W1SPF1R4"}], "B09P58FMJY": [{"asin": "B09P58FMJY", "instruction": "i need a heavy duty dust proof tempered glass for iphone 13 pro max 6.7 inch and its size is case+4 protectors with redblack color", "attributes": ["heavy duty", "dust proof", "non slip", "easy install", "glass screen", "tempered glass"], "options": ["color: redblack", "size: case+4 protectors"], "instruction_attributes": ["heavy duty", "dust proof"], "instruction_options": ["redblack"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTFGWXQ", "worker_id": "A258PTOZ3D2TQR"}], "B07K8728Y5": [{"asin": "B07K8728Y5", "instruction": "i'd like to find dark black faux dreadlock extenders. ideally they'll come 10 to a pack and i want two packs.", "attributes": ["easy apply", "high quality"], "options": ["color: faux locs-dark black", "size: 10 count (pack of 2)"], "instruction_attributes": ["easy apply"], "instruction_options": ["faux locs-dark black", "10 count (pack of 2)"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQVU0N9", "worker_id": "A345TDMHP3DQ3G"}], "B09776JNLW": [{"asin": "B09776JNLW", "instruction": "i'm looking for blue slip-on women's fashion sneakers in a size 7, and they must feature good arch support.", "attributes": ["open toe", "arch support", "ankle strap", "high heel", "closed toe"], "options": ["color: d-blue", "size: 7"], "instruction_attributes": ["arch support"], "instruction_options": ["d-blue", "7"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HO2EMLL", "worker_id": "A345TDMHP3DQ3G"}], "B07X8RMCVW": [{"asin": "B07X8RMCVW", "instruction": "i need a bag of valentine day candies full of 25 units.", "attributes": ["hand crafted", "artificial flavors", "valentine day"], "options": ["size: 25"], "instruction_attributes": ["valentine day"], "instruction_options": ["25"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR4TCUFZ", "worker_id": "A19317A3X87NVM"}], "B084FWQF1F": [{"asin": "B084FWQF1F", "instruction": "i want to find a pair of white and thyme men's blaster pants with an elastic waistband. the size needs to be 5x-large.", "attributes": ["machine wash", "elastic closure", "elastic waistband", "regular fit"], "options": ["color: thyme | white", "size: 5x-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["thyme | white", "5x-large"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDF913V7", "worker_id": "A345TDMHP3DQ3G"}], "B07ZCKGHHY": [{"asin": "B07ZCKGHHY", "instruction": "i want to buy a photography background that is lightweight and 9x6 ft..", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 9x6ft"], "instruction_attributes": ["light weight"], "instruction_options": ["9x6ft"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BICV48P", "worker_id": "A2YNPKYEFDZ6C9"}], "B09NBSNLFH": [{"asin": "B09NBSNLFH", "instruction": "i need a pair of high quality black hair clippers.", "attributes": ["high quality", "non slip", "easy use", "hair extensions", "hair styling"], "options": ["color: black", "size: 14 inch (pack of 1)"], "instruction_attributes": ["high quality"], "instruction_options": ["black"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2IX943", "worker_id": "A19317A3X87NVM"}], "B07CHWMXJS": [{"asin": "B07CHWMXJS", "instruction": "i am looking for a red area rug, 9 by 12 feet, that i can put in the living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: red | multi", "item shape: square", "size: 9 ft x 12 ft"], "instruction_attributes": ["living room"], "instruction_options": ["red | multi", "9 ft x 12 ft"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6Q55GB", "worker_id": "A22VGT2F28LTWC"}], "B09D9JJ5FX": [{"asin": "B09D9JJ5FX", "instruction": "i want to find a natural-colored twin-sized kids' bed that's easy to assemble.", "attributes": ["twin size", "easy assemble"], "options": ["color: natural"], "instruction_attributes": ["twin size", "easy assemble"], "instruction_options": ["natural"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40G0RCZ", "worker_id": "A345TDMHP3DQ3G"}], "B093D27QC3": [{"asin": "B093D27QC3", "instruction": "i'm looking for a birthday cake topper that i can use for a party.", "attributes": ["birthday party", "birthday cake", "perfect gift", "baby shower"], "options": [""], "instruction_attributes": ["birthday party", "birthday cake"], "instruction_options": [], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P7P1SVP", "worker_id": "A345TDMHP3DQ3G"}], "B09SLD687X": [{"asin": "B09SLD687X", "instruction": "i want to find a pair of yellow high heeled stilettos with ankle straps, in a size 8.5.", "attributes": ["arch support", "leather sole", "ankle strap", "memory foam"], "options": ["color: fada-076-yellow", "size: 8.5"], "instruction_attributes": ["arch support"], "instruction_options": [], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0U083AG", "worker_id": "A345TDMHP3DQ3G"}], "B08QHVV16X": [{"asin": "B08QHVV16X", "instruction": "i need a black colored birthday party cupcake topper.", "attributes": ["cupcake picks", "birthday party"], "options": ["color: black"], "instruction_attributes": ["cupcake picks", "birthday party"], "instruction_options": ["black"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4V36R2", "worker_id": "A19317A3X87NVM"}], "B09Q8WKXVC": [{"asin": "B09Q8WKXVC", "instruction": "i am looking for a full wood, white king size bed frame with headboard.", "attributes": ["solid wood", "king size"], "options": ["color: wthite", "size: full wood"], "instruction_attributes": ["king size"], "instruction_options": ["wthite", "full wood"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNHVH82", "worker_id": "A114NK7T5673GK"}], "B08SMGVNJP": [{"asin": "B08SMGVNJP", "instruction": "i'm looking for a tongue scraper for adult and children for a oral hygiene and a fresh breath with 4pcs", "attributes": ["high quality", "stainless steel", "bad breath", "oral hygiene", "fresh breath"], "options": ["color: \uff084pcs\uff09"], "instruction_attributes": ["oral hygiene", "fresh breath"], "instruction_options": ["\uff084pcs\uff09"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5F84F4", "worker_id": "A2Y2TURT2VEYZN"}], "B07ZJNB6T7": [{"asin": "B07ZJNB6T7", "instruction": "i would like to get some high protein beef jerky in the resealable bag in original flavoring.", "attributes": ["protein serving", "low calorie", "high protein", "0g trans", "resealable bag"], "options": ["flavor name: original"], "instruction_attributes": ["high protein", "resealable bag"], "instruction_options": ["original"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2HF49E", "worker_id": "AIIOT9A7ARQZW"}], "B09R7Z4B3N": [{"asin": "B09R7Z4B3N", "instruction": "i'm looking for the block striped t shirts for women in loose fit and long sleeve. i need the 1/4 zipper collared in 3x-large in the gxfc-s330-white color.", "attributes": ["quick drying", "machine washable", "loose fit", "long sleeve", "arch support", "short sleeve", "laundry bag", "daily wear"], "options": ["color: gxfc-s330-white", "size: 3x-large"], "instruction_attributes": ["loose fit", "long sleeve"], "instruction_options": ["gxfc-s330-white", "3x-large"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXT67V56", "worker_id": "A1CB72B51L7TKE"}], "B09KC85389": [{"asin": "B09KC85389", "instruction": "i need a height adjustable swivel chair with lumbar support for gaming. i would like it in grey.", "attributes": ["height adjustable", "long lasting", "easy assemble", "pu leather", "lumbar support"], "options": ["color: grey", "style: fixed armrest"], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": ["grey"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PCPUIN5", "worker_id": "A1NF6PELRKACS9"}], "B09NF1722F": [{"asin": "B09NF1722F", "instruction": "i am looking for toyota corolla android dash navigation with bt, wifi mirror link, fm , backup camera, 8 inch touch display, models can from 2006 - 2012", "attributes": ["hands free", "plug play", "high speed", "quad core", "tempered glass", "usb port"], "options": [""], "instruction_attributes": ["usb port"], "instruction_options": [], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOY9LL5", "worker_id": "AUJBZFT6JM16L"}], "B075F5CV2W": [{"asin": "B075F5CV2W", "instruction": "i need a mouse colored ottoman in a contemporary design.", "attributes": ["long lasting", "assembly required", "contemporary design"], "options": ["color: mouse"], "instruction_attributes": ["contemporary design"], "instruction_options": ["mouse"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2YSBIV1", "worker_id": "A19317A3X87NVM"}], "B07MCN1NGK": [{"asin": "B07MCN1NGK", "instruction": "i am looking for women's active pants for walking. also, choose the medium size.", "attributes": ["machine wash", "nylon spandex"], "options": ["color: balsam", "size: medium"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["balsam", "medium"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P7P0SVO", "worker_id": "A2Z8N4TQ3ELICA"}], "B084VP13PN": [{"asin": "B084VP13PN", "instruction": "i'm looking for a high resolution wireless headphones with charging case, earphones should be in-ear, built-in mic, easy-pair, voice control sports and gaming earbuds. also choose the black one.", "attributes": ["high resolution", "stereo sound"], "options": [""], "instruction_attributes": ["high resolution"], "instruction_options": [], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIGOTML", "worker_id": "A3D6VE1HYFEP9Z"}], "B08XX18DKL": [{"asin": "B08XX18DKL", "instruction": "i'm looking for a silver radio antenna that's made of carbon fiber.", "attributes": ["long lasting", "carbon fiber"], "options": ["color: silver"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["silver"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGY8LHD1", "worker_id": "A345TDMHP3DQ3G"}], "B09HGYZD76": [{"asin": "B09HGYZD76", "instruction": "i'm looking for a white, pu leather office chair that offers good lumbar support.", "attributes": ["lumbar support", "pu leather"], "options": ["color: white"], "instruction_attributes": ["lumbar support", "pu leather"], "instruction_options": ["white"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7IEYQB", "worker_id": "AFU00NU09CFXE"}], "B09QHPGM14": [{"asin": "B09QHPGM14", "instruction": "i need some purple eye shadow brushes for easy application.", "attributes": ["high quality", "easy apply", "easy carry", "eye shadow"], "options": ["color: purple"], "instruction_attributes": ["easy apply", "eye shadow"], "instruction_options": ["purple"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEGZUU6", "worker_id": "A19317A3X87NVM"}], "B093L4HYR1": [{"asin": "B093L4HYR1", "instruction": "i am looking for a laundry bag in medium size", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFZOU56", "worker_id": "A2HMEGTAFO0CS8"}], "B073SZHTVT": [{"asin": "B073SZHTVT", "instruction": "i need an easy to use carbon fiber tripod.", "attributes": ["easy use", "carbon fiber"], "options": ["size: 75mm", "style: carbon fiber tripod"], "instruction_attributes": ["easy use"], "instruction_options": ["carbon fiber tripod"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EASJS2U", "worker_id": "A19317A3X87NVM"}], "B0797MJB63": [{"asin": "B0797MJB63", "instruction": "i want to find a super soft 50x80 inch throw that i can leave in my living room.", "attributes": ["super soft", "machine washable", "exquisite workmanship", "living room"], "options": ["size: 50x80inch"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["50x80inch"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N35FRY6", "worker_id": "A345TDMHP3DQ3G"}], "B09KC4Q2RH": [{"asin": "B09KC4Q2RH", "instruction": "i'm looking for a carrying case for hair cutting accessories.", "attributes": ["easy carry", "hair cutting"], "options": [""], "instruction_attributes": ["easy carry", "hair cutting"], "instruction_options": [], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X02QD346", "worker_id": "A1TWVJS27CL3KT"}], "B07XC5LJV1": [{"asin": "B07XC5LJV1", "instruction": "i need a core i5 desktop tower.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["core i5"], "instruction_options": [], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K733N5F", "worker_id": "A19317A3X87NVM"}], "B01LN63SUI": [{"asin": "B01LN63SUI", "instruction": "i'm looking to get a pack of 24 cans of the starkist white tuna that's packed in water.", "attributes": ["low sodium", "wild caught", "soy free", "gluten free"], "options": ["flavor name: albacore in water", "size: 5 ounce (pack of 4)"], "instruction_attributes": ["low sodium"], "instruction_options": ["albacore in water"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RUPGLRB", "worker_id": "A1GC6CN3F0IHWN"}, {"asin": "B01LN63SUI", "instruction": "i am interested in acquiring tuna which is wild caught, and has low sodium, while it has a flavor of albacore in oil and it's in a pack of 8 of 5 ounces.", "attributes": ["low sodium", "wild caught", "soy free", "gluten free"], "options": ["flavor name: albacore in oil", "size: 5 ounce (pack of 8)"], "instruction_attributes": ["low sodium", "wild caught"], "instruction_options": ["albacore in oil", "5 ounce (pack of 8)"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AMVUYP", "worker_id": "AJY5G987IRT25"}], "B08RHWNKCH": [{"asin": "B08RHWNKCH", "instruction": "i need an accessory for the ultra hd system.", "attributes": ["ultra hd", "high speed"], "options": [""], "instruction_attributes": ["ultra hd"], "instruction_options": [], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1WNYG0", "worker_id": "A19317A3X87NVM"}], "B07FLHLBT4": [{"asin": "B07FLHLBT4", "instruction": "i'd like to find a 10-pack of black usb flash drives that can store 512 megabytes of data. the usbs must be easy to carry and use.", "attributes": ["easy carry", "plug play", "easy use"], "options": ["color: black", "size: 512mb"], "instruction_attributes": ["easy carry", "easy use"], "instruction_options": ["black", "512mb"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9TON81", "worker_id": "A345TDMHP3DQ3G"}], "B08KGHJFXT": [{"asin": "B08KGHJFXT", "instruction": "i am looking for high quality and freshed baked desserts, please include the corn muffins as well.", "attributes": ["kosher certified", "individually wrapped", "baked fresh", "quality ingredients"], "options": ["flavor: corn muffins"], "instruction_attributes": ["baked fresh", "quality ingredients"], "instruction_options": ["corn muffins"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVLX3X0", "worker_id": "A3VPD34C23PQTQ"}], "B07Y7T3WGZ": [{"asin": "B07Y7T3WGZ", "instruction": "i want to find some casual black women's penny loafers. i wear a size 9 and need good arch support!", "attributes": ["anti slip", "arch support", "rubber outsole", "rubber sole"], "options": ["color: black", "size: 9"], "instruction_attributes": ["arch support"], "instruction_options": ["black", "9"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMB9W9P", "worker_id": "A345TDMHP3DQ3G"}], "B08QJL3F1N": [{"asin": "B08QJL3F1N", "instruction": "i need a hand wash blue jump suit for daily wear.", "attributes": ["hand wash", "butt lifting", "wash cold", "long sleeve", "daily wear"], "options": ["color: blue", "size: x-large"], "instruction_attributes": ["hand wash", "daily wear"], "instruction_options": ["blue"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFGN8BG1", "worker_id": "A19317A3X87NVM"}], "B00KKSAWG4": [{"asin": "B00KKSAWG4", "instruction": "i'm looking for a heavy duty barstool with a steel frame in a natural maple color.", "attributes": ["heavy duty", "coated steel", "steel frame"], "options": ["color: natural maple"], "instruction_attributes": ["heavy duty", "steel frame"], "instruction_options": ["natural maple"], "assignment_id": "32SCWG5HISEW7674IASH43KF3C06PT", "worker_id": "AFU00NU09CFXE"}, {"asin": "B00KKSAWG4", "instruction": "i want to find a heavy duty bar stool that is rein bay colored.", "attributes": ["heavy duty", "coated steel", "steel frame"], "options": ["color: rein bay"], "instruction_attributes": ["heavy duty"], "instruction_options": ["rein bay"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFDC5UX", "worker_id": "A345TDMHP3DQ3G"}], "B09KH7MCD1": [{"asin": "B09KH7MCD1", "instruction": "i am looking forward to buy a high speed, high definition mini pc with windows 10 pro equip with intel celeron", "attributes": ["wall mounted", "dual band", "high speed", "high definition", "quad core"], "options": ["color: 8+256 | celeron j4125"], "instruction_attributes": ["high speed", "high definition"], "instruction_options": [], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X02P343V", "worker_id": "A1RQN6MIJOU5DY"}], "B08ZCRXBP2": [{"asin": "B08ZCRXBP2", "instruction": "i want to find a pink 10-inch android touch tablet with a quad core processor.", "attributes": ["easy carry", "quad core"], "options": ["color: pink"], "instruction_attributes": ["quad core"], "instruction_options": ["pink"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6RJG52", "worker_id": "A345TDMHP3DQ3G"}], "B009089FP4": [{"asin": "B009089FP4", "instruction": "i want a variety pack of fat free apple mango real fruit bars. i want a 12 pack.", "attributes": ["non gmo", "nut free", "fat free", "soy free", "gluten free", "real fruit"], "options": ["flavor name: variety"], "instruction_attributes": ["fat free"], "instruction_options": ["variety"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4L1YX8", "worker_id": "A1CB72B51L7TKE"}, {"asin": "B009089FP4", "instruction": "i would like a fig fruit bar that is gluten and soy free.", "attributes": ["non gmo", "nut free", "fat free", "soy free", "gluten free", "real fruit"], "options": ["flavor name: fig"], "instruction_attributes": ["soy free", "gluten free"], "instruction_options": ["fig"], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQV25BJ", "worker_id": "A1WS884SI0SLO4"}], "B08L8LGMG3": [{"asin": "B08L8LGMG3", "instruction": "i'd like to find a medium-sized, long-sleeve women's maternity gown that's purple.", "attributes": ["slim fit", "long sleeve", "stretch fabric", "comfortable fit"], "options": ["color: purple", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["purple", "medium"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLARKR82", "worker_id": "A345TDMHP3DQ3G"}], "B07VYJMDHT": [{"asin": "B07VYJMDHT", "instruction": "na", "attributes": ["steel frame", "storage space"], "options": ["color: black oak", "size: large"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHZRBN6", "worker_id": "A1EI8Z972FIFJ3"}], "B08234W29V": [{"asin": "B08234W29V", "instruction": "i want to find usda organic tomato basil marinara sauce. ideally i want a pack of three 1.5 pound jars.", "attributes": ["usda organic", "non gmo", "gluten free", "low calorie", "low carb"], "options": ["flavor name: marinara", "size: 1.5 pound (pack of 3)"], "instruction_attributes": ["usda organic"], "instruction_options": ["marinara", "1.5 pound (pack of 3)"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYM3UIZE", "worker_id": "A345TDMHP3DQ3G"}], "B09BBDPRC3": [{"asin": "B09BBDPRC3", "instruction": "i need some long-lasting snowboots with no slip soles in size 7.5 and the color black.", "attributes": ["long lasting", "anti slip", "non slip"], "options": ["color: a-black", "size: 7.5"], "instruction_attributes": ["long lasting", "non slip"], "instruction_options": ["a-black", "7.5"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMYBXDH", "worker_id": "A19317A3X87NVM"}], "B07CQT3D7T": [{"asin": "B07CQT3D7T", "instruction": "i'm looking for a pair of women's casual moccasin flats with rubber soles. i wear a size 8 and prefer the color champagne.", "attributes": ["rubber sole", "fashion design"], "options": ["color: champagne.2", "size: 8"], "instruction_attributes": ["rubber sole"], "instruction_options": ["champagne.2", "8"], "assignment_id": "3G2UL9A02OO71034MOY04HTU3JN67H", "worker_id": "A345TDMHP3DQ3G"}], "B09PBMC8S3": [{"asin": "B09PBMC8S3", "instruction": "i'm looking for a women ladies cross angle strap roman slides sandal of size 9 and black color", "attributes": ["non slip", "soft material", "ankle strap", "rubber outsole", "rubber sole"], "options": ["color: black", "size: 9 wide"], "instruction_attributes": ["ankle strap"], "instruction_options": ["black", "9 wide"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LT1ER5", "worker_id": "A258PTOZ3D2TQR"}], "B01LYL5CZL": [{"asin": "B01LYL5CZL", "instruction": "i need an omega-3 deluxe mix with artificial ingredients in a resealable bag.", "attributes": ["artificial ingredients", "resealable bag"], "options": ["flavor name: omega-3 deluxe mix", "size: 1.2 ounce (pack of 7)"], "instruction_attributes": ["artificial ingredients", "resealable bag"], "instruction_options": ["omega-3 deluxe mix"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQ6931Z", "worker_id": "A19317A3X87NVM"}, {"asin": "B01LYL5CZL", "instruction": "i'm looking for a snack called nature's garden, it's a heart healthy trail mix in single servings. it should be a 7 count 1.2-ounce package that weights 8.4 ounces.", "attributes": ["artificial ingredients", "resealable bag"], "options": ["flavor name: berry nutty mix", "size: 1.2 ounce (pack of 24)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFFJ3EO", "worker_id": "ABYRAWL4BGD3C"}], "B09NVD3XLF": [{"asin": "B09NVD3XLF", "instruction": "i'm looking for high quality and long lasting microfiber massage table sheets set with a size 60x180cm(24x71inch). also choose the large one", "attributes": ["easy clean", "long lasting", "high quality"], "options": ["color: large", "size: 60x180cm(24x71inch)"], "instruction_attributes": ["long lasting", "high quality"], "instruction_options": ["large", "60x180cm(24x71inch)"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN218IFQR", "worker_id": "A258PTOZ3D2TQR"}], "B07TN3W1KX": [{"asin": "B07TN3W1KX", "instruction": "i need a 3 pack of ethique solid deodorant bar for men and women. i want the oil-free variety.", "attributes": ["eco friendly", "oil free", "sulfate free", "cruelty free", "coconut oil", "natural ingredients"], "options": ["scent: rustic", "size: 3 pack"], "instruction_attributes": ["oil free"], "instruction_options": ["3 pack"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VK3YWP", "worker_id": "A1CB72B51L7TKE"}], "B09KX8R3K1": [{"asin": "B09KX8R3K1", "instruction": "i want a green stool that would be suitable to use for a haircut at a beauty salon.", "attributes": ["beauty salon", "hair cutting"], "options": ["color: green"], "instruction_attributes": ["beauty salon", "hair cutting"], "instruction_options": ["green"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMJC3WS", "worker_id": "A345TDMHP3DQ3G"}], "B08Z4K991J": [{"asin": "B08Z4K991J", "instruction": "i need a high-performance tablet for dual-band wifi.", "attributes": ["dual band", "high performance", "core i5", "intel core"], "options": [""], "instruction_attributes": ["dual band", "high performance"], "instruction_options": [], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66BPFZ7", "worker_id": "A19317A3X87NVM"}], "B09NFQBBKJ": [{"asin": "B09NFQBBKJ", "instruction": "i want to find a pair of non-slip women's running shoes in a size 8. they need to have rubber soles and i want them in black and red.", "attributes": ["non slip", "rubber sole"], "options": ["color: black red b2", "size: 8 women | 6 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black red b2", "8 women | 6 men"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXHZ4OS", "worker_id": "A345TDMHP3DQ3G"}], "B07K1QXRM4": [{"asin": "B07K1QXRM4", "instruction": "i am looking for a dark spot solution serum without fragrance and paraben.", "attributes": ["dermatologist tested", "fragrance free", "paraben free"], "options": [""], "instruction_attributes": ["fragrance free", "paraben free"], "instruction_options": [], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EASS2SD", "worker_id": "A3QZMGTVA4VO44"}], "B07RXQWB3G": [{"asin": "B07RXQWB3G", "instruction": "i want to find a universal remote control replacement that comes with aaa batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "352YTHGRO6NQF252G9RXYWYALVL4H4", "worker_id": "A345TDMHP3DQ3G"}], "B01EMA3TX8": [{"asin": "B01EMA3TX8", "instruction": "i'm looking fo a large faux leather even path that's effective for dark circles also.choose the blue one.", "attributes": ["faux leather", "lumbar support", "steel frame"], "options": ["color: black", "size: pu faux leather"], "instruction_attributes": ["faux leather", "steel frame"], "instruction_options": ["black"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2M96GN", "worker_id": "A1OBVJEE06AOYQ"}], "B00GAQ2EG6": [{"asin": "B00GAQ2EG6", "instruction": "i need rich, creamy coconut biscuits.", "attributes": ["rich creamy", "artificial colors", "high fructose", "artificial flavors"], "options": ["flavor name: coconut", "size: 8.85 ounce (pack of 1)"], "instruction_attributes": ["rich creamy"], "instruction_options": ["coconut"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTX57WK5", "worker_id": "A19317A3X87NVM"}], "B09N1BWH8F": [{"asin": "B09N1BWH8F", "instruction": "i'm trying to find a tempered glass screen protector that i can use for my iphone 13 pro max.", "attributes": ["tempered glass", "glass screen"], "options": ["color: iphone 13 pro max"], "instruction_attributes": ["tempered glass", "glass screen"], "instruction_options": ["iphone 13 pro max"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSWWCW6", "worker_id": "A345TDMHP3DQ3G"}], "B085TCPF68": [{"asin": "B085TCPF68", "instruction": "i'm looking for a black phone case that is apple compatible with a black screen.", "attributes": ["compatible apple", "glass screen", "tempered glass"], "options": ["color: black", "size: 38 mm"], "instruction_attributes": ["compatible apple", "glass screen"], "instruction_options": ["black"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOIM39X", "worker_id": "A19317A3X87NVM"}, {"asin": "B085TCPF68", "instruction": "i need a smartwatch case that is apple compatible and is silver", "attributes": ["compatible apple", "glass screen", "tempered glass"], "options": ["color: silver", "size: 42 mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["silver"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB4ABQAV", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B085TCPF68", "instruction": "i want to buy case for apple watch which has tempered glass and is for rose pink color, and it's size should be 42 mm.", "attributes": ["compatible apple", "glass screen", "tempered glass"], "options": ["color: rose pink", "size: 42 mm"], "instruction_attributes": ["tempered glass"], "instruction_options": ["rose pink", "42 mm"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDRAHC4", "worker_id": "AJY5G987IRT25"}], "B09J2G581P": [{"asin": "B09J2G581P", "instruction": "i want 4 pcs of bpa free oral hygiene tongue scraper for fresh breath.", "attributes": ["bpa free", "double sided", "easy use", "fresh breath", "oral hygiene", "bad breath"], "options": [""], "instruction_attributes": ["bpa free", "fresh breath", "oral hygiene"], "instruction_options": [], "assignment_id": "3Z4AIRP3CHN69T8YYVQH3KF1X1U1XH", "worker_id": "A1V2C99HEV3F14"}], "B08FD5WHDX": [{"asin": "B08FD5WHDX", "instruction": "please help me find a pair of soft plush women's house shoes that would be cozy and warm for winter. my favorite color is khaki and i normally wear anywhere between a size 9.5 to a 10.5.", "attributes": ["non slip", "winter warm", "machine washable", "memory foam", "rubber sole"], "options": ["color: khaki", "size: 9.5-10.5"], "instruction_attributes": ["winter warm"], "instruction_options": ["khaki", "9.5-10.5"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUWX9R2", "worker_id": "A345TDMHP3DQ3G"}], "B095HZ9WQM": [{"asin": "B095HZ9WQM", "instruction": "i'm trying to find a 4-xl collegiate unc charlotte polo that is officially licensed.", "attributes": ["officially licensed", "machine washable", "everyday wear"], "options": ["color: university of north carolina at charlott...", "size: 4x-large"], "instruction_attributes": ["officially licensed"], "instruction_options": ["university of north carolina at charlott...", "4x-large"], "assignment_id": "33F859I56HNA01QBVO1K6A4GVNIBHX", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B095HZ9WQM", "instruction": "i'm looking for clothing it can use for machinable uses.", "attributes": ["officially licensed", "machine washable", "everyday wear"], "options": ["color: texas a&m university-corpus christi", "size: 4x-large"], "instruction_attributes": ["machine washable", "everyday wear"], "instruction_options": ["texas a&m university-corpus christi"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW79S8P", "worker_id": "A16IQOX0DK14OJ"}], "B0787KFYMJ": [{"asin": "B0787KFYMJ", "instruction": "i want some long-lasting snow boots with faux fur in black or khaki at size 7.5.", "attributes": ["long lasting", "faux fur", "rubber outsole", "rubber sole"], "options": ["color: black | khaki ii", "size: 7.5"], "instruction_attributes": ["long lasting", "faux fur"], "instruction_options": ["black | khaki ii", "7.5"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU482NZYPT", "worker_id": "A19317A3X87NVM"}], "B07WHCJRVF": [{"asin": "B07WHCJRVF", "instruction": "i'm looking for a 70cm wall mounted mirror for bathroom", "attributes": ["wall mounted", "living room"], "options": ["size: 70cm"], "instruction_attributes": ["wall mounted"], "instruction_options": ["70cm"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZWNPA1", "worker_id": "A9QRQL9CFJBI7"}], "B005Z6LGYS": [{"asin": "B005Z6LGYS", "instruction": "i need some high fructose citrus tonic water.", "attributes": ["high fructose", "natural ingredients"], "options": ["flavor name: citrus", "size: 16.9 fl oz (pack of 1)"], "instruction_attributes": ["high fructose"], "instruction_options": ["citrus"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PVOUBL", "worker_id": "A19317A3X87NVM"}], "B093KLFGVH": [{"asin": "B093KLFGVH", "instruction": "i'm looking for blouse hosiery travel laundry bag set of 2 mesh", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZG5V2WZ", "worker_id": "A258PTOZ3D2TQR"}], "B07TLBM7DJ": [{"asin": "B07TLBM7DJ", "instruction": "i need a pack of fine line remover.", "attributes": ["hyaluronic acid", "fine lines"], "options": ["size: 1 count (pack of 1)"], "instruction_attributes": ["fine lines"], "instruction_options": ["1 count (pack of 1)"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLK7AVQ", "worker_id": "A19317A3X87NVM"}], "B09GZR1GT6": [{"asin": "B09GZR1GT6", "instruction": "i want to find some spray that i can use to treat hot flashes, and it should be suitable for sensitive skin.", "attributes": ["dermatologist tested", "easy use", "dry skin", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ0IIRRM", "worker_id": "A345TDMHP3DQ3G"}], "B08T5WTP2T": [{"asin": "B08T5WTP2T", "instruction": "i'd like to find some noise cancelling headphones that are hands-free. they should be compatible with bluetooth version 5.0.", "attributes": ["noise cancelling", "long lasting", "hands free", "high definition", "wireless bluetooth"], "options": [""], "instruction_attributes": ["noise cancelling", "hands free"], "instruction_options": [], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49L74X0", "worker_id": "A3LIIE572Z4OG7"}], "B09R74G1JF": [{"asin": "B09R74G1JF", "instruction": "i am looking to purchase a hand or machine wash women's classic plain bikini swimsuit with high waist, tummy control in an x-large. prefer color yellow.", "attributes": ["wash cold", "hand wash", "machine wash", "tummy control", "high waist", "teen girls"], "options": ["color: yellow", "size: x-large"], "instruction_attributes": ["hand wash", "machine wash", "tummy control", "high waist"], "instruction_options": ["yellow", "x-large"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WG9AYIN", "worker_id": "A3RGIKEI8JS2QG"}], "B09LGX8FK6": [{"asin": "B09LGX8FK6", "instruction": "i'm looking for black color medium size puweer straight leg slacks for women to business work casual.", "attributes": ["straight leg", "moisture wicking", "wash cold", "machine wash", "nylon spandex", "tummy control", "elastic waist"], "options": ["color: black", "size: medium"], "instruction_attributes": ["straight leg"], "instruction_options": ["black", "medium"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHVIE1K", "worker_id": "A3AGXTSAHA2AFL"}], "B09JWTPGM2": [{"asin": "B09JWTPGM2", "instruction": "i'm looking for easy-to-use cake toppers for a birthday party.", "attributes": ["easy use", "birthday party", "party supplies", "baby shower"], "options": [""], "instruction_attributes": ["easy use", "birthday party"], "instruction_options": [], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0K8JLJG", "worker_id": "AFU00NU09CFXE"}], "B016S52Q7U": [{"asin": "B016S52Q7U", "instruction": "i am looking for a water beverage with source of vitamin and zero sugar. also in kiwi strawberry flavor.", "attributes": ["source vitamin", "zero sugar"], "options": ["flavor name: kiwi strawberry"], "instruction_attributes": ["source vitamin", "zero sugar"], "instruction_options": ["kiwi strawberry"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD28ZYNY", "worker_id": "A2HMEGTAFO0CS8"}], "B08P797L5K": [{"asin": "B08P797L5K", "instruction": "i'm looking for a high-quality manicure set made from stainless steel that is designed for removing dead skin.", "attributes": ["high quality", "stainless steel", "dead skin"], "options": [""], "instruction_attributes": ["high quality", "stainless steel", "dead skin"], "instruction_options": [], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZN2ISF", "worker_id": "AFU00NU09CFXE"}], "B083XK3VQX": [{"asin": "B083XK3VQX", "instruction": "i would like to buy a sugar free powder drink mix that is a nice source of vitamin.", "attributes": ["sugar free", "source vitamin"], "options": [""], "instruction_attributes": ["sugar free", "source vitamin"], "instruction_options": [], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMANEX2", "worker_id": "A182YKPS46KE9F"}], "B09SXQFM4V": [{"asin": "B09SXQFM4V", "instruction": "i want to find a set of high-power binoculars that i can use for birdwatching.", "attributes": ["high power", "bird watching"], "options": [""], "instruction_attributes": ["high power", "bird watching"], "instruction_options": [], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPW08K07", "worker_id": "A345TDMHP3DQ3G"}], "B085W93XWY": [{"asin": "B085W93XWY", "instruction": "looking for men classic slip on with anti slip grips and back heel square toe, with quality leather.", "attributes": ["anti slip", "rubber outsole", "rubber sole"], "options": ["color: grey", "size: 10"], "instruction_attributes": ["anti slip"], "instruction_options": [], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZB8HS8", "worker_id": "AUJBZFT6JM16L"}], "B08R115KB1": [{"asin": "B08R115KB1", "instruction": "i want the 8 pack of pork king good seasoning. i need the 8 pack of the gluten free variety.", "attributes": ["gluten free", "keto friendly", "natural ingredients", "great gift"], "options": ["flavor name: dill pickle", "pattern name: 8 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["dill pickle", "8 pack"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KZ7DPE", "worker_id": "A1CB72B51L7TKE"}], "B094XWSQDT": [{"asin": "B094XWSQDT", "instruction": "i'm looking for rose gold hair salon bags.", "attributes": ["rose gold", "hair salon"], "options": ["size: 50ml | 1.7 ounce"], "instruction_attributes": ["rose gold", "hair salon"], "instruction_options": [], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4XR9PGM", "worker_id": "A19317A3X87NVM"}], "B07HMVN5HZ": [{"asin": "B07HMVN5HZ", "instruction": "i want a 2-in-one shampoo and conditioner for damaged hair.", "attributes": ["hair treatment", "damaged hair", "dry hair"], "options": ["style: shampoo+conditioner"], "instruction_attributes": ["damaged hair"], "instruction_options": ["shampoo+conditioner"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQWSVKH", "worker_id": "A19317A3X87NVM"}], "B07XZ1VW78": [{"asin": "B07XZ1VW78", "instruction": "i'm looking for an armchair for my living room that features solid wood legs. i only need one chair and the color should be brown.", "attributes": ["high density", "solid wood", "dining room", "living room"], "options": ["color: brown", "item package quantity: 1"], "instruction_attributes": ["solid wood", "living room"], "instruction_options": ["brown", "1"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNC4RLBE", "worker_id": "A345TDMHP3DQ3G"}], "B08YRDPZKY": [{"asin": "B08YRDPZKY", "instruction": "i'd like to get a 3d, high-resolution personal mobile cinema. it needs to come with a carrying case too.", "attributes": ["high resolution", "plug play", "carrying case"], "options": [""], "instruction_attributes": ["high resolution", "carrying case"], "instruction_options": [], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1ZJRXY", "worker_id": "A345TDMHP3DQ3G"}], "B09NVBS2W1": [{"asin": "B09NVBS2W1", "instruction": "i want to find a tempered glass covering film that i can use on my dining room windows. the dimensions should be 23.6 inches by 47.2 inches and film should come in a set of two.", "attributes": ["tempered glass", "dining room"], "options": ["color: 1011558265438600000", "size: (width\uff0923.6in x (length)47.2in x 2pcs"], "instruction_attributes": ["tempered glass", "dining room"], "instruction_options": ["(width\uff0923.6in x (length)47.2in x 2pcs"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DCP4K8", "worker_id": "A345TDMHP3DQ3G"}], "B08P766SNC": [{"asin": "B08P766SNC", "instruction": "i need a space saving coat rack in solid wood.", "attributes": ["space saving", "solid wood"], "options": ["color: b"], "instruction_attributes": ["space saving", "solid wood"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVY3E6LC", "worker_id": "A19317A3X87NVM"}], "B099RQDNVN": [{"asin": "B099RQDNVN", "instruction": "i'm looking for a stool that could be used by a beauty salon to cut hair.", "attributes": ["beauty salon", "hair cutting"], "options": [""], "instruction_attributes": ["beauty salon", "hair cutting"], "instruction_options": [], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z1RFK19", "worker_id": "A345TDMHP3DQ3G"}], "B09SXRG46H": [{"asin": "B09SXRG46H", "instruction": "i'm looking for a way to watch birds from far away and have my smartphone involved.", "attributes": ["high power", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7F3UC5", "worker_id": "AMG9Y1YLBTKIV"}], "B09GY857SW": [{"asin": "B09GY857SW", "instruction": "i am looking for a high quality, black spa equipment wall mount that is eco friendly.", "attributes": ["high quality", "water resistant", "eco friendly", "hair salon", "beauty salon", "hair styling"], "options": ["color: style7 black"], "instruction_attributes": ["high quality", "eco friendly"], "instruction_options": ["style7 black"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKC4AIPG", "worker_id": "A114NK7T5673GK"}], "B09QXB34BD": [{"asin": "B09QXB34BD", "instruction": "i\u2019m looking for a small tummy control swimwear for teen girls. and i would prefer the a3-green color", "attributes": ["tummy control", "high waist", "teen girls"], "options": ["color: a3-green", "size: small"], "instruction_attributes": ["tummy control", "teen girls"], "instruction_options": ["a3-green", "small"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4K8FHUA", "worker_id": "A2COCSUGZV28X"}], "B099Z7ZNDK": [{"asin": "B099Z7ZNDK", "instruction": "i'm looking for a queen size bed with a box spring.", "attributes": ["queen size", "contemporary design", "box spring"], "options": [""], "instruction_attributes": ["queen size", "box spring"], "instruction_options": [], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKBKGSX", "worker_id": "A19317A3X87NVM"}], "B09PLC2QV8": [{"asin": "B09PLC2QV8", "instruction": "na", "attributes": ["hair extensions", "synthetic hair"], "options": ["color: black blue"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["black blue"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YI1Q3H", "worker_id": "A1EI8Z972FIFJ3"}], "B01M9B4YOA": [{"asin": "B01M9B4YOA", "instruction": "i'm hoping to find a purple, xx-large batman shirt that's officially licensed.", "attributes": ["officially licensed", "machine washable", "everyday wear"], "options": ["color: purple", "size: xx-large"], "instruction_attributes": ["officially licensed"], "instruction_options": ["purple", "xx-large"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1V19U6", "worker_id": "A345TDMHP3DQ3G"}], "B09NXS598S": [{"asin": "B09NXS598S", "instruction": "show me long sleeved daily wear sweater for teen girls in white color and 4x large size.", "attributes": ["long sleeve", "unique design", "relaxed fit", "teen girls", "daily wear"], "options": ["color: z4 white", "size: 4x-large"], "instruction_attributes": ["long sleeve", "teen girls", "daily wear"], "instruction_options": ["z4 white", "4x-large"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKGML45E", "worker_id": "A3AYHESLQSDY5T"}], "B081811MTB": [{"asin": "B081811MTB", "instruction": "i'm looking for easy to install mounted wall hooks to hang towels and clothes also, choose the 1 piece set with 2 hooks.", "attributes": ["wall mounted", "easy install"], "options": ["color: 1pcs", "size: 2 hooks"], "instruction_attributes": ["wall mounted", "easy install"], "instruction_options": [], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKEKMJW", "worker_id": "A1TWVJS27CL3KT"}], "B09N3C1MZZ": [{"asin": "B09N3C1MZZ", "instruction": "i'm looking for white noise cancelling, wireless headphones that have bluetooth capabilites.", "attributes": ["noise cancelling", "hands free", "wireless bluetooth"], "options": ["color: white"], "instruction_attributes": ["noise cancelling", "hands free", "wireless bluetooth"], "instruction_options": ["white"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTBEE5T", "worker_id": "A29H4I8OMI2A4Q"}], "B076RFDSBG": [{"asin": "B076RFDSBG", "instruction": "i'm looking for an 8-pack of 8-inch portable hair extensions. the color needs to be wine red.", "attributes": ["hair extensions", "dry hair"], "options": ["color: wine red", "size: 8 inch (pack of 8)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["wine red", "8 inch (pack of 8)"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK4RHA60", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B076RFDSBG", "instruction": "looking for a hair extension for grey dry hair and 18 in long", "attributes": ["hair extensions", "dry hair"], "options": ["color: grey", "size: 18 inch (pack of 8)"], "instruction_attributes": ["hair extensions", "dry hair"], "instruction_options": ["grey", "18 inch (pack of 8)"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4I60HJ", "worker_id": "A1MJVTR0PCKBWW"}, {"asin": "B076RFDSBG", "instruction": "i need a pack of storage bag for my hair extension . and i would prefer the white blonde color", "attributes": ["hair extensions", "dry hair"], "options": ["color: white blonde", "size: 1 count"], "instruction_attributes": ["hair extensions"], "instruction_options": ["white blonde", "1 count"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBDVSOC", "worker_id": "A2COCSUGZV28X"}, {"asin": "B076RFDSBG", "instruction": "i would like a 18 inch medium brown hair extension.", "attributes": ["hair extensions", "dry hair"], "options": ["color: medium brown", "size: 18 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["medium brown", "18 inch (pack of 1)"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZESWUP", "worker_id": "A1WS884SI0SLO4"}], "B07TFJBQFL": [{"asin": "B07TFJBQFL", "instruction": "i want some anti-slip water shoes in size 7.5 and the color khaki.", "attributes": ["anti slip", "quick drying", "rubber sole"], "options": ["color: kahaki", "size: 7.5"], "instruction_attributes": ["anti slip"], "instruction_options": ["kahaki", "7.5"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22508WL", "worker_id": "A19317A3X87NVM"}], "B09RQ79JRR": [{"asin": "B09RQ79JRR", "instruction": "i'm interested in jar candles made from soy with a lead-free wick.", "attributes": ["lead free", "soy wax"], "options": [""], "instruction_attributes": ["lead free", "soy wax"], "instruction_options": [], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJKMT3JL", "worker_id": "AFU00NU09CFXE"}], "B08N8LDND2": [{"asin": "B08N8LDND2", "instruction": "i'm looking for a pair of adidas unisex adult harden vol. 5 futurenatural basketball athletic shoes.", "attributes": ["lace closure", "regular fit", "rubber sole"], "options": ["color: black | white | team dark grey", "size: 19 women | 19 men"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z91KE2P", "worker_id": "ABYRAWL4BGD3C"}], "B0947BLY8N": [{"asin": "B0947BLY8N", "instruction": "i'am looking for sulfate free argan oil for the hair treatment of my wife", "attributes": ["sulfate free", "animal testing", "argan oil", "hair treatment", "dry hair"], "options": [""], "instruction_attributes": ["sulfate free", "argan oil", "hair treatment"], "instruction_options": [], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVK5ET1Y", "worker_id": "A2COCSUGZV28X"}], "B09C2RM9XT": [{"asin": "B09C2RM9XT", "instruction": "i need some wild caught spring water tuna fish.", "attributes": ["gluten free", "wild caught", "low sodium", "low calorie", "non gmo", "great gift"], "options": ["flavor name: spring water", "size: 6.7 ounce (pack of 2)"], "instruction_attributes": ["wild caught"], "instruction_options": ["spring water"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJX0VJUT", "worker_id": "A19317A3X87NVM"}, {"asin": "B09C2RM9XT", "instruction": "i want to find a two-pack of jarred wild-caught tuna filets that are low calorie. the jars need to be 6.7 ounces, and ideally the flavor should be very garlicky.", "attributes": ["gluten free", "wild caught", "low sodium", "low calorie", "non gmo", "great gift"], "options": ["flavor name: garlic", "size: 6.7 ounce (pack of 2)"], "instruction_attributes": ["wild caught", "low calorie"], "instruction_options": ["garlic", "6.7 ounce (pack of 2)"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1YHXCZ", "worker_id": "A345TDMHP3DQ3G"}], "B075FZMXGS": [{"asin": "B075FZMXGS", "instruction": "locate the ambesonne harbour stripe throw pillow cover, 18 x 18 inch, double sided. i want the salmon brown color.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: salmon brown", "size: 18 x 18-inch"], "instruction_attributes": ["double sided"], "instruction_options": ["salmon brown", "18 x 18-inch"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCA77I1", "worker_id": "A1CB72B51L7TKE"}], "B08LDY73WQ": [{"asin": "B08LDY73WQ", "instruction": "i want some low fat orange mousse cookies.", "attributes": ["low fat", "artificial colors", "quality ingredients", "natural ingredients", "artificial flavors"], "options": ["flavor: orange mousse", "size: 4 piece assortment"], "instruction_attributes": ["low fat"], "instruction_options": ["orange mousse"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40HRYF5", "worker_id": "A19317A3X87NVM"}], "B08K1PWRLD": [{"asin": "B08K1PWRLD", "instruction": "i want a hair remover for face and body including the bikini area. pick the lilac one.", "attributes": ["hair removal", "hair growth"], "options": ["color: lipstick red"], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6P7R2XI", "worker_id": "A1NF6PELRKACS9"}], "B08YWW48JC": [{"asin": "B08YWW48JC", "instruction": "i need ready use hand-knitted ottoman pouf for living room. and choose the purple one.", "attributes": ["ready use", "assembly required", "living room"], "options": ["color: purple"], "instruction_attributes": ["ready use", "living room"], "instruction_options": ["purple"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8NRYT7F", "worker_id": "A258PTOZ3D2TQR"}], "B08CJZ4B8M": [{"asin": "B08CJZ4B8M", "instruction": "i'm looking for a gray wash colored living room console table with a wood frame.", "attributes": ["wood frame", "solid wood", "living room"], "options": ["color: gray wash"], "instruction_attributes": ["wood frame", "living room"], "instruction_options": ["gray wash"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP8NX7ZM", "worker_id": "A19317A3X87NVM"}], "B082XGZ455": [{"asin": "B082XGZ455", "instruction": "i need some hands free gold earbuds.", "attributes": ["hands free", "stereo sound", "wireless bluetooth"], "options": ["color: gold"], "instruction_attributes": ["hands free"], "instruction_options": ["gold"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKC3PE0U", "worker_id": "A19317A3X87NVM"}], "B089FMW6ZV": [{"asin": "B089FMW6ZV", "instruction": "remote control for emerson led lcd tv lf501em4a lf320em4a lc391em4", "attributes": ["batteries included", "easy use", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXD85OC", "worker_id": "AL8NYDL4JOYL3"}], "B00R4R084K": [{"asin": "B00R4R084K", "instruction": "i need a slate blue, big and tall t-shirt that is good for machine wash.", "attributes": ["machine wash", "relaxed fit"], "options": ["color: heather slate blue", "size: 8x-large big"], "instruction_attributes": ["machine wash"], "instruction_options": ["heather slate blue", "8x-large big"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJY94RGN", "worker_id": "A19317A3X87NVM"}], "B08PJ86CJD": [{"asin": "B08PJ86CJD", "instruction": "i'm looking for a 10 pack of hydrating sheet masks with anti aging properties. i would like to select the spa hairband option.", "attributes": ["anti aging", "cruelty free"], "options": ["color: full collection w | spa hairband", "size: pack of 10"], "instruction_attributes": ["anti aging"], "instruction_options": ["full collection w | spa hairband", "pack of 10"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGSMSLV", "worker_id": "A2QAS9E29H1UCP"}], "B08DQSV61J": [{"asin": "B08DQSV61J", "instruction": "i need some easy to apply 18mm eyelashes.", "attributes": ["easy apply", "high quality"], "options": ["color: dd-0.05", "size: 18mm"], "instruction_attributes": ["easy apply"], "instruction_options": ["18mm"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRS96X0S", "worker_id": "A19317A3X87NVM"}, {"asin": "B08DQSV61J", "instruction": "i need high quality lashes in size 21mm that are easy to apply.", "attributes": ["easy apply", "high quality"], "options": ["color: c-0.05", "size: 21mm"], "instruction_attributes": ["easy apply", "high quality"], "instruction_options": ["21mm"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGX6WTD", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B08DQSV61J", "instruction": "look for supplies for eyelash extension dd curl 0.05 show me with easy apply.color: dd-0.03. please", "attributes": ["easy apply", "high quality"], "options": ["color: dd-0.03", "size: 13-20mm"], "instruction_attributes": ["easy apply"], "instruction_options": ["dd-0.03"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH4ZH6A", "worker_id": "A15IJ20C3R4HUO"}], "B09SZJHN5N": [{"asin": "B09SZJHN5N", "instruction": "i am looking for a high quality wig that is sky blue colored.", "attributes": ["high quality", "quality materials"], "options": ["color: sky blue"], "instruction_attributes": ["high quality"], "instruction_options": ["sky blue"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VKJYW5", "worker_id": "A2ECRNQ3X5LEXD"}], "B005Z6AK2C": [{"asin": "B005Z6AK2C", "instruction": "i want to buy an easy to use instant coffee that comes in a decaf french vanilla.", "attributes": ["rich creamy", "easy use"], "options": ["flavor name: decaf french vanilla", "size: 16 ounce (pack of 3)"], "instruction_attributes": ["easy use"], "instruction_options": ["decaf french vanilla"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXST8AWZ", "worker_id": "A114NK7T5673GK"}, {"asin": "B005Z6AK2C", "instruction": "i would like a 3 piece assortment of salted caramel instant coffee that's rich and creamy.", "attributes": ["rich creamy", "easy use"], "options": ["flavor name: salted caramel", "size: 3 piece assortment"], "instruction_attributes": ["rich creamy"], "instruction_options": ["salted caramel", "3 piece assortment"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOKDMLK", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B005Z6AK2C", "instruction": "i would like some easy to use salted caramel instant coffee", "attributes": ["rich creamy", "easy use"], "options": ["flavor name: salted caramel", "size: 14 ounce (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["salted caramel"], "assignment_id": "354P56DE9VDCOY11T1135MPMLQNS7S", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B005Z6AK2C", "instruction": "i would like a 12 ounce box of classic cappuccino instant coffee mix that is easy to make.", "attributes": ["rich creamy", "easy use"], "options": ["flavor name: classic cappuccino", "size: 12 ounce (pack of 2)"], "instruction_attributes": ["easy use"], "instruction_options": ["classic cappuccino", "12 ounce (pack of 2)"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFP5E9S", "worker_id": "A1WS884SI0SLO4"}], "B081TYSS5S": [{"asin": "B081TYSS5S", "instruction": "i want to buy some men's construction boots with steel toe. they need to be slip resistant and size 15.", "attributes": ["slip resistant", "steel toe", "rubber sole"], "options": ["size: 15"], "instruction_attributes": ["slip resistant", "steel toe"], "instruction_options": ["15"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80YRQ1T", "worker_id": "A2YNPKYEFDZ6C9"}], "B09STZH768": [{"asin": "B09STZH768", "instruction": "i want the fast charging hands free amzstar ipx0 waterproof headset. i want the grey ones.", "attributes": ["fast charging", "hands free"], "options": ["color: grey"], "instruction_attributes": ["fast charging", "hands free"], "instruction_options": ["grey"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXCU5OW", "worker_id": "A1CB72B51L7TKE"}, {"asin": "B09STZH768", "instruction": "fast charging wireless headphones with waterproof and bluetooth 5.0 facility and 16gb mp3 player and also color is red", "attributes": ["fast charging", "hands free"], "options": ["color: red"], "instruction_attributes": ["fast charging"], "instruction_options": ["red"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTSAL7U", "worker_id": "AX2EWYWZM19AZ"}], "B08Z8MHWVS": [{"asin": "B08Z8MHWVS", "instruction": "i am interested in 2 pints eggless raw edible cookie dough with natural ingredients with chocochip & cherrychoco flavor.", "attributes": ["ready eat", "natural ingredients"], "options": ["flavor: 2 pints-chocochip & cherrychoco"], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHWSX8SZ", "worker_id": "A3QZMGTVA4VO44"}], "B08L6M9SK5": [{"asin": "B08L6M9SK5", "instruction": "i am looking for a lantern pendant light with 4 lights. find me something in black and gold.", "attributes": ["easy install", "pendant light"], "options": [""], "instruction_attributes": ["pendant light"], "instruction_options": [], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A21UKHTV", "worker_id": "A1NF6PELRKACS9"}], "B01N6YD5PL": [{"asin": "B01N6YD5PL", "instruction": "seeking to buy a jar candle that is eco friendly. i want it to be 8 ounces and hazelnut latte color. soy candle wax.", "attributes": ["lead free", "eco friendly", "easy clean"], "options": ["color: hazelnut latte", "size: 8 ounce"], "instruction_attributes": ["eco friendly"], "instruction_options": ["hazelnut latte", "8 ounce"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EYJ1BL", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B01N6YD5PL", "instruction": "i want to find a gift set of soy candles that are eco friendly. the color should ideally be fresh linen.", "attributes": ["lead free", "eco friendly", "easy clean"], "options": ["color: fresh linen", "size: gift set"], "instruction_attributes": ["eco friendly"], "instruction_options": ["fresh linen", "gift set"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TJPUS1", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01N6YD5PL", "instruction": "i am looking for eco friendly candle wax. please choose vanilla lavender.", "attributes": ["lead free", "eco friendly", "easy clean"], "options": ["color: stress relief & vanilla lavender", "size: 20 ounce"], "instruction_attributes": ["eco friendly"], "instruction_options": ["stress relief & vanilla lavender"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDROO9F5", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B01N6YD5PL", "instruction": "i would like a jar candle that is eco friendly and cinnamon vanilla", "attributes": ["lead free", "eco friendly", "easy clean"], "options": ["color: cinnamon vanilla", "size: 20 ounce"], "instruction_attributes": ["eco friendly"], "instruction_options": ["cinnamon vanilla"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCK2MND8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09J2KSTLN": [{"asin": "B09J2KSTLN", "instruction": "throw of size 40\"x50\" and color blankets 13", "attributes": ["super soft", "fleece throw"], "options": ["color: blankets 13", "size: 40\"x50\""], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": [], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OH2M3O", "worker_id": "AL8NYDL4JOYL3"}], "B07L63JWVK": [{"asin": "B07L63JWVK", "instruction": "i need a ready to use and fully assembled sewing kit.", "attributes": ["ready use", "fully assembled"], "options": [""], "instruction_attributes": ["ready use", "fully assembled"], "instruction_options": [], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZZOPCJ", "worker_id": "A19317A3X87NVM"}], "B00IZ8L3LY": [{"asin": "B00IZ8L3LY", "instruction": "i need some pre-cooked honey barbque wings with the bone in, having at least 14 grams of protein per serving, contains 5 servings and is preferably frozen.", "attributes": ["fully cooked", "protein serving", "ready eat"], "options": [""], "instruction_attributes": ["fully cooked", "protein serving", "ready eat"], "instruction_options": [], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7ZPDGXU", "worker_id": "A1E235KE3CSO7H"}], "B0968SML8V": [{"asin": "B0968SML8V", "instruction": "i need a travel sized shampoo for damaged hair in a mini-discovery kit.", "attributes": ["travel size", "damaged hair"], "options": ["color: mini discovery kit", "size: 2.02 fl oz-1"], "instruction_attributes": ["travel size", "damaged hair"], "instruction_options": ["mini discovery kit"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXHE4O7", "worker_id": "A19317A3X87NVM"}], "B074CZW6CZ": [{"asin": "B074CZW6CZ", "instruction": "i'm looking for a quad core, high performance desktop which has core i5.", "attributes": ["high performance", "core i5", "quad core"], "options": [""], "instruction_attributes": ["high performance", "core i5", "quad core"], "instruction_options": [], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZG512W5", "worker_id": "A9QRQL9CFJBI7"}], "B08S6PGBLT": [{"asin": "B08S6PGBLT", "instruction": "i'd like to find some brown fur-lined women's boots; they should be warm in the winter and work well in snow.", "attributes": ["winter warm", "rubber sole", "memory foam"], "options": ["color: brown", "size: 13"], "instruction_attributes": ["winter warm"], "instruction_options": ["brown"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SH2TQP", "worker_id": "A3LIIE572Z4OG7"}], "B09BYQFM1Z": [{"asin": "B09BYQFM1Z", "instruction": "i need high quality makeup remover pads for my sensitive skin. i like it to be 12 pack and gray in color.", "attributes": ["long lasting", "easy use", "high quality", "dead skin", "sensitive skin"], "options": ["color: grayx12pack", "size: 8inchx8 inch"], "instruction_attributes": ["high quality", "sensitive skin"], "instruction_options": ["grayx12pack"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG51WWI8", "worker_id": "A1NF6PELRKACS9"}], "B081VL1NVS": [{"asin": "B081VL1NVS", "instruction": "locate for me a sweatyrocks women's high waist pu leather midi skirt. i want it in brown.", "attributes": ["high waist", "everyday wear"], "options": ["color: brown", "size: medium"], "instruction_attributes": ["high waist"], "instruction_options": ["brown", "medium"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q7NK9HQ", "worker_id": "A1CB72B51L7TKE"}], "B07DYT5VS3": [{"asin": "B07DYT5VS3", "instruction": "i need a hands free fm transmitter with a fast charge time.", "attributes": ["hands free", "fast charging", "high performance", "usb port"], "options": [""], "instruction_attributes": ["hands free", "fast charging"], "instruction_options": [], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXF6TMEG", "worker_id": "A19317A3X87NVM"}], "B09M9QX1M9": [{"asin": "B09M9QX1M9", "instruction": "i need some extra large butt lifting leggings in mint green.", "attributes": ["butt lifting", "tummy control"], "options": ["color: mint green", "size: x-large"], "instruction_attributes": ["butt lifting"], "instruction_options": ["mint green", "x-large"], "assignment_id": "358010RM5P3MV5OW59A6A8MHM5GVXF", "worker_id": "A19317A3X87NVM"}], "B09CZMMLC8": [{"asin": "B09CZMMLC8", "instruction": "i'm looking for a dark blue fleece throw that i can use to decorate my living room.", "attributes": ["fleece throw", "living room"], "options": ["color: dark blue- \"good vibes only\""], "instruction_attributes": ["fleece throw", "living room"], "instruction_options": ["dark blue- \"good vibes only\""], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HX7L2ZB", "worker_id": "A345TDMHP3DQ3G"}], "B09M72Z43M": [{"asin": "B09M72Z43M", "instruction": "i need a small rotating book shelf made of wood with 3 tier storage. pick a white one.", "attributes": ["white item", "storage unit", "storage space", "living room"], "options": [""], "instruction_attributes": ["white item", "storage unit", "storage space"], "instruction_options": [], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39YFZCY", "worker_id": "A1NF6PELRKACS9"}], "B09D2T5HVK": [{"asin": "B09D2T5HVK", "instruction": "i:need a mirrored wooden cabinet with one drawer two doors with round ring handle, style28 size and solid wood legs", "attributes": ["easy assemble", "solid wood", "storage space", "living room"], "options": ["size: style28"], "instruction_attributes": ["solid wood"], "instruction_options": ["style28"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGUVSRM7", "worker_id": "A258PTOZ3D2TQR"}], "B08PVCY57Z": [{"asin": "B08PVCY57Z", "instruction": "i want to find a 39.4 inch storage bench for shoes that i can put in my living room entryway.", "attributes": ["long lasting", "easy clean", "living room"], "options": ["size: 39.4\"w"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IVDBCO", "worker_id": "A345TDMHP3DQ3G"}], "B08CJLXVMZ": [{"asin": "B08CJLXVMZ", "instruction": "find me 9oz bags of sugar free catalina crunch honey graham keto cereal. i want the low carb gluten free kind.", "attributes": ["keto friendly", "sugar free", "grain free", "low carb", "plant based", "non gmo", "gluten free"], "options": ["flavor name: honey graham & dark chocolate", "size: pack of 4"], "instruction_attributes": ["sugar free"], "instruction_options": ["honey graham & dark chocolate"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3F7OFBK", "worker_id": "A1CB72B51L7TKE"}], "B07CZ37V8N": [{"asin": "B07CZ37V8N", "instruction": "i am looking for a organic cold brew coffee with straight black flavor. choose shelf stable product.", "attributes": ["shelf stable", "sugar free", "dairy free"], "options": ["flavor name: straight black", "size: 128 fl oz (pack of 1)"], "instruction_attributes": ["shelf stable"], "instruction_options": ["straight black"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO2250W89", "worker_id": "A2HMEGTAFO0CS8"}], "B09R8VK3Q3": [{"asin": "B09R8VK3Q3", "instruction": "i am looking for a non-diary and sugar free cookie baking mix. it should have soft chocolate chips.", "attributes": ["grain free", "non dairy", "low carb", "sugar free", "dairy free", "gluten free"], "options": ["flavor name: soft chocolate chip"], "instruction_attributes": ["non dairy", "sugar free"], "instruction_options": ["soft chocolate chip"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQVEN0G", "worker_id": "A1NF6PELRKACS9"}], "B07KC127M7": [{"asin": "B07KC127M7", "instruction": "i'd like to find a plastic body brush with a long handle that can slough off dead skin.", "attributes": ["long handle", "dead skin"], "options": [""], "instruction_attributes": ["long handle", "dead skin"], "instruction_options": [], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E0NTX79", "worker_id": "A345TDMHP3DQ3G"}], "B07FLJNFM8": [{"asin": "B07FLJNFM8", "instruction": "i need some paraben free conditioner to promote hair growht.", "attributes": ["paraben free", "natural ingredients", "hair growth"], "options": [""], "instruction_attributes": ["paraben free", "hair growth"], "instruction_options": [], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMBRW97", "worker_id": "A19317A3X87NVM"}], "B07M9YKV87": [{"asin": "B07M9YKV87", "instruction": "i am looking for slimpointoe red color anti slip flat sandal.", "attributes": ["anti slip", "rubber sole"], "options": ["color: slimpointoe red", "size: 8.5"], "instruction_attributes": ["anti slip"], "instruction_options": ["slimpointoe red"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZ3UO8I", "worker_id": "A3QZMGTVA4VO44"}, {"asin": "B07M9YKV87", "instruction": "shop for a pair of size six jelly sandals with rubber soles and snap closures. by the silver ones in size six.", "attributes": ["anti slip", "rubber sole"], "options": ["color: snapclosure silver", "size: 6"], "instruction_attributes": ["rubber sole"], "instruction_options": ["snapclosure silver", "6"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVLGXLS", "worker_id": "AR9AU5FY1S3RO"}], "B097TKMBPN": [{"asin": "B097TKMBPN", "instruction": "i want to find a blue electric shower brush with a long handle.", "attributes": ["high quality", "long handle", "sensitive skin"], "options": ["size: blue"], "instruction_attributes": ["long handle"], "instruction_options": ["blue"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8OM8A2C", "worker_id": "A345TDMHP3DQ3G"}], "B09D34D2FV": [{"asin": "B09D34D2FV", "instruction": "i need some hair growth formula.", "attributes": ["coconut oil", "hair growth", "hair loss"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IOQM2R2", "worker_id": "A19317A3X87NVM"}], "B09JWL2HP5": [{"asin": "B09JWL2HP5", "instruction": "i\u2019m looking for refreshing advanced purifying mouth wash mouth spray for instant fresh breath.", "attributes": ["easy carry", "fresh breath", "bad breath"], "options": ["color: mint"], "instruction_attributes": ["fresh breath"], "instruction_options": ["mint"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKO4MF0V", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09SF2BHYJ": [{"asin": "B09SF2BHYJ", "instruction": "i need a 6-wide jogging shoes that has arch support. and i would prefer the a4-black", "attributes": ["closed toe", "arch support"], "options": ["color: a4 - black", "size: 6 wide"], "instruction_attributes": ["arch support"], "instruction_options": ["a4 - black", "6 wide"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILV1FSZZ", "worker_id": "A2COCSUGZV28X"}], "B09L7QXNCR": [{"asin": "B09L7QXNCR", "instruction": "i am looking for a blue video gaming chair with lumbar support please.", "attributes": ["lumbar support", "pu leather"], "options": ["color: blue"], "instruction_attributes": ["lumbar support"], "instruction_options": ["blue"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNUZ01B", "worker_id": "A182YKPS46KE9F"}], "B01N58JX21": [{"asin": "B01N58JX21", "instruction": "get me a non alcoholic bread mix made with natural ingredients.", "attributes": ["non alcoholic", "natural ingredients"], "options": [""], "instruction_attributes": ["non alcoholic", "natural ingredients"], "instruction_options": [], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ5PYCKL", "worker_id": "A3AYHESLQSDY5T"}], "B018P3KPNA": [{"asin": "B018P3KPNA", "instruction": "i want a tempered glass screen protector that i can use for my iphone se.", "attributes": ["tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["tempered glass", "glass screen"], "instruction_options": [], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHK67BB", "worker_id": "A345TDMHP3DQ3G"}], "B092M7K146": [{"asin": "B092M7K146", "instruction": "i'd like some black cupcake topper picks that i can use for a birthday party.", "attributes": ["birthday party", "cupcake picks"], "options": ["color: black"], "instruction_attributes": ["birthday party", "cupcake picks"], "instruction_options": ["black"], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0GXCCG", "worker_id": "A345TDMHP3DQ3G"}], "B00ALTXFUC": [{"asin": "B00ALTXFUC", "instruction": "find me thai healthy gluten free mixed real fruit chips", "attributes": ["gluten free", "real fruit"], "options": [""], "instruction_attributes": ["real fruit"], "instruction_options": [], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZL7RNC", "worker_id": "A258PTOZ3D2TQR"}], "B08FHPD83P": [{"asin": "B08FHPD83P", "instruction": "i need highly pigmented eyeshadow that is suitable for sensitive skin. metallic grey color is my preference.", "attributes": ["highly pigmented", "sensitive skin"], "options": ["color: 23 galaxy grey metallic"], "instruction_attributes": ["highly pigmented", "sensitive skin"], "instruction_options": ["23 galaxy grey metallic"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YHLQ3Z", "worker_id": "AHTWQSOY6HTJI"}], "B01GS46GL8": [{"asin": "B01GS46GL8", "instruction": "looking for safavieh hudson shag collection area rug in dark grey | ivory rectangular shaped that is 2 ft 3 in x 6 ft for my living or dining room.", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: dark grey | ivory", "item shape: rectangular", "size: 2 ft 3 in x 6 ft"], "instruction_attributes": ["dining room", "living room"], "instruction_options": ["dark grey | ivory", "rectangular", "2 ft 3 in x 6 ft"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UBC1G3", "worker_id": "A3RGIKEI8JS2QG"}], "B08T1D4PPL": [{"asin": "B08T1D4PPL", "instruction": "i want to find an extra large, long-sleeve two-piece outfit for daily wear. please find me something in coffee color.", "attributes": ["high waist", "polyester spandex", "long sleeve", "daily wear"], "options": ["color: 28231-coffee", "size: x-large"], "instruction_attributes": ["long sleeve", "daily wear"], "instruction_options": ["28231-coffee", "x-large"], "assignment_id": "32SCWG5HISEW7674IASH43KF3DP6PK", "worker_id": "A345TDMHP3DQ3G"}], "B09R73K1JK": [{"asin": "B09R73K1JK", "instruction": "i want to find a 4-piece set of haircare products for damaged hair, including essential oils and herbal spray.", "attributes": ["easy use", "damaged hair", "hair growth", "hair loss", "natural hair"], "options": ["color: 4pcs"], "instruction_attributes": ["damaged hair"], "instruction_options": ["4pcs"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCW0XGGK", "worker_id": "A345TDMHP3DQ3G"}], "B0731B56FJ": [{"asin": "B0731B56FJ", "instruction": "i want to get a 3.5 ounce bag of snackable thai rice cake chips, in the original flavor. i'm a celiac so these must be gluten free.", "attributes": ["non gmo", "gluten free", "soy free", "dairy free"], "options": ["flavor name: original", "size: 3.5 ounce (pack of 1)", "style: thai rice chips"], "instruction_attributes": [], "instruction_options": ["original", "3.5 ounce (pack of 1)", "thai rice chips"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBXXSOI", "worker_id": "A345TDMHP3DQ3G"}], "B01N7DHJ8V": [{"asin": "B01N7DHJ8V", "instruction": "i'm looking for some non gmo honey roasted and chopped pecans.", "attributes": ["non gmo", "gluten free", "plant based", "resealable bag"], "options": ["flavor name: honey roasted and chopped", "size: 1.5 pound (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["honey roasted and chopped"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXIBMY8", "worker_id": "A19317A3X87NVM"}], "B094MYWRBX": [{"asin": "B094MYWRBX", "instruction": "i want to find a pink pair of women's casual wedge, anti-slip slippers in a size 9.", "attributes": ["anti slip", "high heel"], "options": ["color: 0 # pink", "size: 9"], "instruction_attributes": ["anti slip"], "instruction_options": ["0 # pink", "9"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IVSCB4", "worker_id": "A345TDMHP3DQ3G"}], "B08QW2HK8Z": [{"asin": "B08QW2HK8Z", "instruction": "i'd like to find a pair of extra-large cargo shorts in british khaki. ideally, it'll have an elastic waist.", "attributes": ["machine wash", "elastic waist", "relaxed fit"], "options": ["color: british khaki", "size: x-large big"], "instruction_attributes": ["elastic waist"], "instruction_options": ["british khaki", "x-large big"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUSJA95", "worker_id": "A345TDMHP3DQ3G"}], "B074KD7T93": [{"asin": "B074KD7T93", "instruction": "please find me a heavy duty pvc table cover protector that is about 36 x 60 inches. ideally, it should be waterproof and easy clean.", "attributes": ["easy clean", "double sided", "eco friendly", "heavy duty", "dining room"], "options": ["color: 2.0mm clear", "size: 36 x 60 inches"], "instruction_attributes": ["easy clean", "heavy duty"], "instruction_options": ["36 x 60 inches"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9UZZAZ", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B074KD7T93", "instruction": "i am looking for a 44 x 122.2 inches - customized size double sided table pads", "attributes": ["easy clean", "double sided", "eco friendly", "heavy duty", "dining room"], "options": ["color: 1.5mm frosted", "size: 44 x 122.2 inches - customized"], "instruction_attributes": ["double sided"], "instruction_options": ["44 x 122.2 inches - customized"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH4MH6X", "worker_id": "A9QRQL9CFJBI7"}], "B07P1BSPF2": [{"asin": "B07P1BSPF2", "instruction": "i'm looking for gluten-free beanfields bean chips, jalapeno lime 4-pack.", "attributes": ["gluten free", "high protein", "plant based", "non gmo"], "options": ["flavor name: jalapeno lime", "size: 5.5 ounce (pack of 4)"], "instruction_attributes": ["gluten free"], "instruction_options": ["5.5 ounce (pack of 4)"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYY228U", "worker_id": "A292TFDMNVS0TP"}], "B01CKI9A5A": [{"asin": "B01CKI9A5A", "instruction": "i am looking for a face oil serum that is cruelty free produced and has anti aging properties.", "attributes": ["anti aging", "cruelty free", "seed oil", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "cruelty free"], "instruction_options": [], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUFKJQJ", "worker_id": "A114NK7T5673GK"}], "B07X2VFG42": [{"asin": "B07X2VFG42", "instruction": "i need a easy to use high quality self piercing ear gun in light grey colour", "attributes": ["easy use", "high quality"], "options": ["color: lightgrey"], "instruction_attributes": ["easy use", "high quality"], "instruction_options": ["lightgrey"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYD8NCHA", "worker_id": "ASWFLI3N8X72G"}], "B09LXDB5W4": [{"asin": "B09LXDB5W4", "instruction": "i'm looking for a remote control for my ultra hd tv.", "attributes": ["ultra hd", "aaa batteries"], "options": [""], "instruction_attributes": ["ultra hd"], "instruction_options": [], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3K07QG", "worker_id": "A345TDMHP3DQ3G"}], "B08BC4LRJX": [{"asin": "B08BC4LRJX", "instruction": "i'm looking for a neck cushion for a hair salon shampoo bowl .", "attributes": ["high quality", "hair salon", "beauty salon"], "options": [""], "instruction_attributes": ["hair salon"], "instruction_options": [], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9E878Z", "worker_id": "A3MNXK3VDK37SN"}], "B07JFWG8L5": [{"asin": "B07JFWG8L5", "instruction": "i'm looking for a candie potato chips covered by chocolate and with 1 pound pack", "attributes": ["chocolate covered", "perfect gift"], "options": ["flavor name: kettle cooked | milk chocolate", "size: 1 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0DGRAY", "worker_id": "A2Y2TURT2VEYZN"}], "B08216Z7RW": [{"asin": "B08216Z7RW", "instruction": "i want to find grey 30 by 45 inch blackout curtains that i can use for my living room. they must be machine washable.", "attributes": ["super soft", "eco friendly", "high density", "machine washable", "living room"], "options": ["color: grey", "size: w30\"xl45\""], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["grey", "w30\"xl45\""], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8AD35VWH", "worker_id": "A345TDMHP3DQ3G"}], "B00LFCEXWI": [{"asin": "B00LFCEXWI", "instruction": "i need some vinyl sandals in ochre colors.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: ochre", "size: 10-10.5 women | 8-8.5 men"], "instruction_attributes": ["ethylene vinyl", "vinyl acetate"], "instruction_options": ["ochre"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCRO0DN", "worker_id": "A19317A3X87NVM"}], "B09BJC4JHD": [{"asin": "B09BJC4JHD", "instruction": "i'm looking for a w 47in x h 75in cooling bamboo mattress pad that is double sided.", "attributes": ["double sided", "exquisite workmanship"], "options": ["size: w 47in x h 75 in"], "instruction_attributes": ["double sided"], "instruction_options": ["w 47in x h 75 in"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THGYZ5T", "worker_id": "A9NGV92NLT3BM"}], "B09PFKWRTH": [{"asin": "B09PFKWRTH", "instruction": "search for women wedding wedges with slingback shoes and summer ankle strap must be leopard print.", "attributes": ["eco friendly", "high quality"], "options": ["color: brown", "size: 9"], "instruction_attributes": ["high quality"], "instruction_options": ["brown"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMHWG25", "worker_id": "AUJBZFT6JM16L"}], "B00HQUSPMW": [{"asin": "B00HQUSPMW", "instruction": "i need some fully cooked canned meats with a long shelf life.", "attributes": ["fully cooked", "shelf stable"], "options": [""], "instruction_attributes": ["fully cooked", "shelf stable"], "instruction_options": [], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYBNFX6", "worker_id": "A19317A3X87NVM"}], "B07LD885TY": [{"asin": "B07LD885TY", "instruction": "i'm looking for a highly pigmented eye shadow kit. also, choose the nude pallet kit with brush.", "attributes": ["highly pigmented", "long lasting", "eye shadow", "sensitive skin"], "options": [""], "instruction_attributes": ["highly pigmented", "eye shadow"], "instruction_options": [], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGD8UK53", "worker_id": "A1TWVJS27CL3KT"}], "B07ZLZPN1N": [{"asin": "B07ZLZPN1N", "instruction": "i need a new quad core 4gb 32gb support usb port 1080p hd android tv box.", "attributes": ["ultra hd", "1080p hd", "quad core", "usb port"], "options": [""], "instruction_attributes": ["1080p hd", "quad core", "usb port"], "instruction_options": [], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4JY0HD", "worker_id": "A258PTOZ3D2TQR"}], "B09KLPLGNX": [{"asin": "B09KLPLGNX", "instruction": "i want a fully assembled queen size mattress.", "attributes": ["ready use", "fully assembled", "high density"], "options": ["size: twin", "style name: matt + 5\" unassembled box spring"], "instruction_attributes": ["fully assembled"], "instruction_options": ["twin"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1WRYG4", "worker_id": "A19317A3X87NVM"}, {"asin": "B09KLPLGNX", "instruction": "i would like a twin size bed with a 8\" unassembled box string high density mattress.", "attributes": ["ready use", "fully assembled", "high density"], "options": ["size: twin", "style name: matt + 8\" unassembled box spring"], "instruction_attributes": ["high density"], "instruction_options": ["twin", "matt + 8\" unassembled box spring"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXSAGAW5", "worker_id": "A1WS884SI0SLO4"}], "B00BK54GWW": [{"asin": "B00BK54GWW", "instruction": "i am looking 2 bathbar marblezied having nickel finish vanity light", "attributes": ["nickel finish", "brushed nickel", "glass shade", "vanity light"], "options": [""], "instruction_attributes": ["nickel finish", "glass shade"], "instruction_options": [], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAMDA8S", "worker_id": "A3N9ZYQAESNFQH"}], "B09GFLJ4S8": [{"asin": "B09GFLJ4S8", "instruction": "i want to find a high-speed, fast-charging portable iphone charger that's black.", "attributes": ["high speed", "fast charging"], "options": ["color: black"], "instruction_attributes": ["high speed", "fast charging"], "instruction_options": ["black"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPYN5J44", "worker_id": "A345TDMHP3DQ3G"}], "B00S6J0188": [{"asin": "B00S6J0188", "instruction": "i am looking for faceworks hypoallergenic lipstick for sensitive skin in the color matte nude hollywood.", "attributes": ["anti aging", "paraben free", "sensitive skin"], "options": ["color: frosted dupont circle"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZI1ZJP", "worker_id": "ABYRAWL4BGD3C"}], "B07WCNFJVC": [{"asin": "B07WCNFJVC", "instruction": "i need a beauty salon chair.", "attributes": ["heavy duty", "beauty salon"], "options": [""], "instruction_attributes": ["beauty salon"], "instruction_options": [], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40H1FYW", "worker_id": "A19317A3X87NVM"}], "B09T32NH5L": [{"asin": "B09T32NH5L", "instruction": "i'm looking for a men's loose fit shirt in xx-large for daily wear.", "attributes": ["slim fit", "loose fit", "long sleeve", "regular fit", "contrast color", "daily wear"], "options": ["size: xx-large"], "instruction_attributes": ["loose fit", "daily wear"], "instruction_options": ["xx-large"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455RPDYTP", "worker_id": "AFU00NU09CFXE"}], "B07416G244": [{"asin": "B07416G244", "instruction": "i'm looking for a 6 count, 9oz. simple mills gluten free almond flour baking bread mix in pumpkin flavor. it needs to be muffin pan ready and nutrient dense.", "attributes": ["grain free", "gluten free", "shelf stable", "plant based", "non gmo", "simple ingredients"], "options": ["flavor name: muffins variety pack", "size: 9 ounce (pack of 1)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CYS0VM", "worker_id": "ABYRAWL4BGD3C"}], "B005LBD76C": [{"asin": "B005LBD76C", "instruction": "i'm looking for a two-ounce stick of anti-perspirant that will be long-lasting.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": [], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OFUEYJ", "worker_id": "A345TDMHP3DQ3G"}], "B06XG8WKGM": [{"asin": "B06XG8WKGM", "instruction": "i need a machine washable ottoman seat that is contemporary and white navy colored.", "attributes": ["machine washable", "contemporary style"], "options": ["color: white navy", "style: coffee table"], "instruction_attributes": ["machine washable", "contemporary style"], "instruction_options": ["white navy"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG698Y8PR", "worker_id": "A19317A3X87NVM"}, {"asin": "B06XG8WKGM", "instruction": "i would like a white beige armless chair in a contemporary modern style.", "attributes": ["machine washable", "contemporary style"], "options": ["color: white beige", "style: armless chair"], "instruction_attributes": ["contemporary style"], "instruction_options": ["white beige", "armless chair"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DXKOTA", "worker_id": "A1WS884SI0SLO4"}], "B0773FVPXQ": [{"asin": "B0773FVPXQ", "instruction": "i need a long sleeve shirt with a red contrast color.", "attributes": ["slim fit", "contrast color", "long sleeve", "cotton spandex"], "options": ["color: z-red", "size: xx-large"], "instruction_attributes": ["contrast color", "long sleeve"], "instruction_options": ["z-red"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DV8071D", "worker_id": "A19317A3X87NVM"}], "B09QCZNZN8": [{"asin": "B09QCZNZN8", "instruction": "i need a medium size lovers casual round neck valentine's day print short sleeve tummy control v-neck t-shirt top, also, choose the \u8d2248 - wine color one.", "attributes": ["winter warm", "fleece lined", "slim fit", "short sleeve", "tummy control"], "options": ["color: \u8d2248 - wine", "size: medium"], "instruction_attributes": ["short sleeve", "tummy control"], "instruction_options": ["medium"], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPW0XK0W", "worker_id": "A258PTOZ3D2TQR"}], "B08QYJW5T5": [{"asin": "B08QYJW5T5", "instruction": "i need an eco friendly soy candle with an english pear scent.", "attributes": ["eco friendly", "soy wax", "living room"], "options": ["color: freesias & english pear"], "instruction_attributes": ["eco friendly", "soy wax"], "instruction_options": ["freesias & english pear"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E0N6X7M", "worker_id": "A19317A3X87NVM"}], "B000WHZFHE": [{"asin": "B000WHZFHE", "instruction": "i'm looking for mccormick easy to prepare turkey gravy mix in a 0.87oz package.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: au jus gravy", "size: 1 ounce (pack of 12)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE2NCQGV", "worker_id": "ABYRAWL4BGD3C"}, {"asin": "B000WHZFHE", "instruction": "i'm looking for a size 0.75 ounce easy prepare turkey gravy mix.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: beef and herb", "size: 0.75 ounce (pack of 24)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["0.75 ounce (pack of 24)"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1BV2IO", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B000WHZFHE", "instruction": "i want an easy to prepare mccormick turkey brown gravy mix.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: premium brown", "size: 1.31 pound (pack of 1)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["premium brown"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AO3STV", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B000WHZFHE", "instruction": "can you find me a pack of turkey gravy mix that is easy to prepare?", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: turkey gravy mix", "size: 0.75 ounce (pack of 1)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["turkey gravy mix", "0.75 ounce (pack of 1)"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HGFOYHP", "worker_id": "A3LIIE572Z4OG7"}], "B09LCYXFWX": [{"asin": "B09LCYXFWX", "instruction": "i'm looking for a cell phone case for my new iphone 13 mini, i want the case to have the non slip and wireless charging feature, also, the color should be in clear green and blue.", "attributes": ["non slip", "glass screen", "tempered glass", "wireless charging"], "options": ["color: clear green & blue"], "instruction_attributes": ["non slip", "wireless charging"], "instruction_options": ["clear green & blue"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQ1DJRB", "worker_id": "ARW1TCHCLEK1W"}], "B09DFFVJMQ": [{"asin": "B09DFFVJMQ", "instruction": "i'm looking for soft, blue plaid throw pillows for the living room, also machine washable.", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: blue ,plaid", "size: 16 x 16 inch"], "instruction_attributes": ["super soft", "machine washable", "living room"], "instruction_options": ["blue ,plaid"], "assignment_id": "3IXEICO79DTUZY0BZR119DLCSGR6T6", "worker_id": "A19317A3X87NVM"}], "B07Q6PCRWP": [{"asin": "B07Q6PCRWP", "instruction": "i want to find a pair of women's ankle boots in an ice blue color. i wear a size 5 and need good arch support.", "attributes": ["leather sole", "arch support"], "options": ["color: ice blue nubuck", "size: 5"], "instruction_attributes": ["arch support"], "instruction_options": ["ice blue nubuck", "5"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EY5B1H", "worker_id": "A345TDMHP3DQ3G"}], "B07HBDV8Z5": [{"asin": "B07HBDV8Z5", "instruction": "find me a 2 ft 3 in x 14 ft sized living room square rug in either navy or cream color.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: cream | navy", "item shape: square", "size: 2 ft 3 in x 14 ft"], "instruction_attributes": ["living room"], "instruction_options": ["cream | navy", "square", "2 ft 3 in x 14 ft"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALVD4HW", "worker_id": "A3AYHESLQSDY5T"}], "B07MZ353XV": [{"asin": "B07MZ353XV", "instruction": "i need a large high resolution photography background in 10x7ft.", "attributes": ["light weight", "high resolution", "digital photography"], "options": ["size: 10x7ft"], "instruction_attributes": ["high resolution", "digital photography"], "instruction_options": ["10x7ft"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLAQUR8A", "worker_id": "A19317A3X87NVM"}], "B07D4BFKYB": [{"asin": "B07D4BFKYB", "instruction": "i'm looking for a solid wood, full size low platform storage bed.", "attributes": ["solid wood", "box spring"], "options": ["color: royal - dolphin linen", "size: full"], "instruction_attributes": ["solid wood"], "instruction_options": ["full"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7JJQYA", "worker_id": "A292TFDMNVS0TP"}, {"asin": "B07D4BFKYB", "instruction": "i am interested in a bos spring storage bed which is king sized.", "attributes": ["solid wood", "box spring"], "options": ["color: hadley - onyx", "size: king"], "instruction_attributes": ["box spring"], "instruction_options": ["king"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYPFHDT", "worker_id": "AHXHM1PQTRWIQ"}], "B01HJWEE4O": [{"asin": "B01HJWEE4O", "instruction": "i'd like to find a 3-pack of male to female high-speed hdmi cables. ideally these cables should be 12 feet long.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 3 pack", "size: 12 feet (4 pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["3 pack", "12 feet (4 pack)", "hdmi male to female"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHN4HQ0", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B01HJWEE4O", "instruction": "i want to buy hdmi cable which is gold plated and comes in 10 pack with a length of 1.5 feet and is an hdmi male to male.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 1.5 feet (3 pack)", "style: hdmi male to male"], "instruction_attributes": ["gold plated"], "instruction_options": ["10 pack", "1.5 feet (3 pack)", "hdmi male to male"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTR5LP0", "worker_id": "AJY5G987IRT25"}], "B07T1WNB1B": [{"asin": "B07T1WNB1B", "instruction": "please help me find a cozy and warm fleece throw blanket. it should be quite large, about 50 by 80 inches.", "attributes": ["long lasting", "fleece throw"], "options": ["color: follow your dreamssan8295", "size: 50 in x 80 in"], "instruction_attributes": ["fleece throw"], "instruction_options": ["50 in x 80 in"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9W3V2S", "worker_id": "A3LIIE572Z4OG7"}], "B06XFVZWQF": [{"asin": "B06XFVZWQF", "instruction": "i want to find an ac adapter that features a dual-band cradle signal booster kit.", "attributes": ["output protection", "dual band"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZL2JF2S", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B06XFVZWQF", "instruction": "i am looking for an ac adapter that has output protection.", "attributes": ["output protection", "dual band"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NPJ2PT", "worker_id": "A2ECRNQ3X5LEXD"}], "B07S975Y8V": [{"asin": "B07S975Y8V", "instruction": "i want to find a pair of women's classic side sandals in black and red. i wear a size 7, and the shoes need to feature ethylene vinyl.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: black | red", "size: 7 women | 5 men"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["black | red", "7 women | 5 men"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS35401U4UMM", "worker_id": "A345TDMHP3DQ3G"}], "B08ZJWG6JM": [{"asin": "B08ZJWG6JM", "instruction": "i'd like to find a pair of size-12 men's waterproof sneakers. it should have ethylene vinyl and ideally i want the color to be breen.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: breen", "size: 12"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["breen", "12"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVDHX9L", "worker_id": "A345TDMHP3DQ3G"}], "B08THJRWHK": [{"asin": "B08THJRWHK", "instruction": "i need a 70\" portable, easy to install, and easy to use projector screen.", "attributes": ["easy install", "easy use"], "options": ["color: 70\""], "instruction_attributes": ["easy install", "easy use"], "instruction_options": ["70\""], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIWGRBA", "worker_id": "A19317A3X87NVM"}], "B08SPX44X3": [{"asin": "B08SPX44X3", "instruction": "i need some medium white casual shorts in a regular size.", "attributes": ["daily casual", "moisture wicking", "wash cold", "machine wash", "elastic waistband", "regular fit", "tumble dry"], "options": ["color: white", "size: medium"], "instruction_attributes": ["daily casual", "regular fit"], "instruction_options": ["white", "medium"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTZWN9G", "worker_id": "A19317A3X87NVM"}], "B00JJ5BPYM": [{"asin": "B00JJ5BPYM", "instruction": "i'm looking for a 12-pack of individually wrapped, spicy beef jamaican style patties.", "attributes": ["fully cooked", "individually wrapped"], "options": ["flavor: spicy beef", "size: 12 count (pack of 1)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["spicy beef", "12 count (pack of 1)"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXDZYLW", "worker_id": "A345TDMHP3DQ3G"}], "B09MYRB37Q": [{"asin": "B09MYRB37Q", "instruction": "i need a heavy duty beauty salon chair in black.", "attributes": ["heavy duty", "easy clean", "high quality", "beauty salon", "hair salon"], "options": ["color: black", "size: 2"], "instruction_attributes": ["heavy duty", "beauty salon"], "instruction_options": ["black"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILV1GZS7", "worker_id": "A19317A3X87NVM"}], "B07HJW43PF": [{"asin": "B07HJW43PF", "instruction": "i'm looking for a pair of men's adidas shoes with lace closure and rubber sole, and i need size seven.", "attributes": ["lace closure", "rubber sole"], "options": ["color: collegiate navy | white | core black", "size: 7"], "instruction_attributes": ["lace closure"], "instruction_options": ["7"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC5P8RKB", "worker_id": "ARW1TCHCLEK1W"}], "B095BV6LP8": [{"asin": "B095BV6LP8", "instruction": "i want a bling smartwatch case, apple series 6/5/4/3/2/1, with tempered glass, to fit a 44mm watch.", "attributes": ["compatible apple", "tempered glass", "glass screen"], "options": ["color: rose gold with tempered glass screen protector", "size: 44mm"], "instruction_attributes": ["compatible apple", "tempered glass"], "instruction_options": ["rose gold with tempered glass screen protector"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQX1S6R", "worker_id": "A13XQ3ZQLWYR72"}], "B08SHVTZ5Z": [{"asin": "B08SHVTZ5Z", "instruction": "i'm looking for a pair of turbo regular men's slippers with soft rubber floaters.", "attributes": ["long lasting", "ethylene vinyl", "vinyl acetate", "arch support", "rubber sole"], "options": ["color: royal blue black", "size: 10 m uk"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJX00UJ9", "worker_id": "ABYRAWL4BGD3C"}], "B07KWTYZJN": [{"asin": "B07KWTYZJN", "instruction": "i need an officially plated iron armor t-shirt which is medium, and also navy blue.", "attributes": ["officially licensed", "wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: women", "size: medium"], "instruction_attributes": ["officially licensed"], "instruction_options": ["navy", "medium"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9HAX56", "worker_id": "A19317A3X87NVM"}], "B081QN8R8D": [{"asin": "B081QN8R8D", "instruction": "i'd like to find a six-piece haircare gift set that includes items specifically meant to promote hair growth.", "attributes": ["tea tree", "hair growth"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "384PI804X3BY6N1H82GUQ7FZDU20SL", "worker_id": "A345TDMHP3DQ3G"}], "B07Q4SBPP4": [{"asin": "B07Q4SBPP4", "instruction": "i'd like a brown wire-framed coffee table that i can put in my living room, fully assembled.", "attributes": ["fully assembled", "assembly required", "wood finish", "living room"], "options": [""], "instruction_attributes": ["fully assembled", "living room"], "instruction_options": [], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LV8EJKB", "worker_id": "A345TDMHP3DQ3G"}], "B08MMQH84M": [{"asin": "B08MMQH84M", "instruction": "i'm looking for some non-slip black vinyls.", "attributes": ["non slip", "ethylene vinyl", "vinyl acetate"], "options": ["color: new black", "size: 8.5 women | 8 men"], "instruction_attributes": ["non slip", "ethylene vinyl", "vinyl acetate"], "instruction_options": ["new black"], "assignment_id": "33CID5710F37J25O7G1CGJZBOCQL3Z", "worker_id": "A19317A3X87NVM"}], "B09R37C1G7": [{"asin": "B09R37C1G7", "instruction": "bragg premium nutritional yeast seasoning - vegan, gluten free cheese flakes \u2013 good source of protein & vitamins \u2013 nutritious savory parmesan cheese substitute \u2013 non gmo verified (variety, 3.0 ounce (pack of 2))", "attributes": ["low calorie", "low sodium", "dairy free", "non gmo", "gluten free"], "options": ["flavor: smoky bbq", "size: 4.5 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["smoky bbq"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAGCXZ7", "worker_id": "A3LIIE572Z4OG7"}], "B07JFD7D32": [{"asin": "B07JFD7D32", "instruction": "i'm looking for permanent hair coloring in a smoky pink color.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: smokey pink", "size: pack of 2", "style: silver & pinks"], "instruction_attributes": ["permanent hair"], "instruction_options": ["smokey pink"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRHUXJF", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07JFD7D32", "instruction": "i am looking for l'oreal paris feria hair dye in the color tropical teal.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 517 tropical teal", "size: pack of 1", "style: blues"], "instruction_attributes": ["hair dye"], "instruction_options": ["517 tropical teal"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LKRSPX", "worker_id": "AK3JMCIGU8MLU"}], "B074PB6F5J": [{"asin": "B074PB6F5J", "instruction": "i need some high performance speakers that are easy to install.", "attributes": ["high performance", "high speed", "easy install"], "options": [""], "instruction_attributes": ["high performance", "easy install"], "instruction_options": [], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TYONM0", "worker_id": "A19317A3X87NVM"}], "B07DQS31BW": [{"asin": "B07DQS31BW", "instruction": "i'm looking for the harklinikken balancing shampoo in 2.54 oz. it must be plant based and comprised of seed oil.", "attributes": ["plant based", "seed oil"], "options": [""], "instruction_attributes": ["plant based", "seed oil"], "instruction_options": [], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4W1I0C", "worker_id": "A1CB72B51L7TKE"}], "B00I83XF76": [{"asin": "B00I83XF76", "instruction": "i need high-speed usb cables with gold plates in a simple packaging.", "attributes": ["high speed", "gold plated"], "options": ["product packaging: frustration-free packaging", "size: 6 feet", "style: 1-pack + cable - 16 feet"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["frustration-free packaging"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPVXOR9", "worker_id": "A19317A3X87NVM"}], "B00KXDW4EE": [{"asin": "B00KXDW4EE", "instruction": "i need a 35-quart top mount pullout kitchen waste trash container easy install bin for 1.63 inch wood frame cabinet", "attributes": ["white item", "easy install", "wood frame"], "options": [""], "instruction_attributes": ["easy install", "wood frame"], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3DPP63", "worker_id": "A258PTOZ3D2TQR"}], "B09DBRRC2J": [{"asin": "B09DBRRC2J", "instruction": "i want to find nontoxic eye shadow in white gold, as part of a blending brush set.", "attributes": ["non toxic", "eye shadow"], "options": ["color: white gold"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZLSNRT", "worker_id": "A345TDMHP3DQ3G"}], "B081KQTYZQ": [{"asin": "B081KQTYZQ", "instruction": "i need a quick release camera mount made of aluminum alloy.", "attributes": ["quick release", "aluminum alloy"], "options": [""], "instruction_attributes": ["quick release", "aluminum alloy"], "instruction_options": [], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SGWDU7", "worker_id": "A19317A3X87NVM"}], "B08MTQ1156": [{"asin": "B08MTQ1156", "instruction": "i need a machine washable jogger outfit in a red color.", "attributes": ["easy care", "machine washable"], "options": ["color: bling glitter-wine red", "size: large"], "instruction_attributes": ["easy care", "machine washable"], "instruction_options": ["bling glitter-wine red"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1AL8FHH", "worker_id": "A19317A3X87NVM"}], "B08G1995C3": [{"asin": "B08G1995C3", "instruction": "i want to buy a double-sided shower brush.", "attributes": ["double sided", "non toxic"], "options": [""], "instruction_attributes": ["double sided"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVY3F6LD", "worker_id": "A114NK7T5673GK"}], "B08ZLK16RR": [{"asin": "B08ZLK16RR", "instruction": "i want to find a straight spotting scope that i can use for bird-watching.", "attributes": ["non slip", "bird watching"], "options": ["shape: straight"], "instruction_attributes": ["bird watching"], "instruction_options": ["straight"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UEBJ6P", "worker_id": "A345TDMHP3DQ3G"}], "B09P5BJBML": [{"asin": "B09P5BJBML", "instruction": "i want to find some whitening toothpaste for sensitive teeth. the color should be orange and ideally it'll come in a set of two.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: orange", "size: 2bottle"], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": ["orange", "2bottle"], "assignment_id": "3PIWWX1FJUGC9QJD7GHMGB38GKXJJX", "worker_id": "A345TDMHP3DQ3G"}], "B08NWSR8VL": [{"asin": "B08NWSR8VL", "instruction": "i am looking down jacket ,long sleeve pedded coat insulated thick puffer jacket", "attributes": ["winter warm", "long sleeve", "short sleeve", "faux fur"], "options": ["color: black-faux fur", "size: x-large"], "instruction_attributes": ["winter warm", "long sleeve"], "instruction_options": ["black-faux fur"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2YSHIV7", "worker_id": "A3N9ZYQAESNFQH"}], "B00NTR9B6A": [{"asin": "B00NTR9B6A", "instruction": "i'm looking for a skincare set including a snail gel cream. choose the ones that are fragrance and paraben free and comes in a size of 1.52 fl oz.", "attributes": ["fragrance free", "paraben free", "green tea", "hyaluronic acid"], "options": ["size: 1.52 fl oz (pack of 1)"], "instruction_attributes": ["fragrance free", "paraben free"], "instruction_options": ["1.52 fl oz (pack of 1)"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZY8LK6", "worker_id": "A3MNXK3VDK37SN"}], "B017BE451M": [{"asin": "B017BE451M", "instruction": "i'm looking for some easy to install center channel speakers.", "attributes": ["easy install", "carbon fiber"], "options": ["size: 10 in", "style: center channel"], "instruction_attributes": ["easy install"], "instruction_options": ["center channel"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZYCKL9", "worker_id": "A19317A3X87NVM"}], "B01MQENV0C": [{"asin": "B01MQENV0C", "instruction": "i need a paraben free blow out mist serum.", "attributes": ["sulfate free", "paraben free", "natural hair"], "options": ["style: blow out mist"], "instruction_attributes": ["paraben free"], "instruction_options": ["blow out mist"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IVKBCV", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QQ8TVC2": [{"asin": "B09QQ8TVC2", "instruction": "i want to find a men's wine-colored long sleeve dress shirt in size xx-large.", "attributes": ["slim fit", "wash cold", "hand wash", "machine wash", "long sleeve", "regular fit", "short sleeve", "stretch fabric", "unique design", "button closure", "tumble dry"], "options": ["color: wine", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["wine", "xx-large"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILV06SZO", "worker_id": "A345TDMHP3DQ3G"}], "B095HCT8CK": [{"asin": "B095HCT8CK", "instruction": "i'm trying to find a black and walnut standing desk. it should be electric and height adjustable with memory presets as well.", "attributes": ["height adjustable", "white item", "steel frame"], "options": ["color: walnut and black", "size: 63"], "instruction_attributes": ["height adjustable"], "instruction_options": ["walnut and black"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8NTXN2Z", "worker_id": "A3A9UHGEZBQBQP"}], "B09HRZ8V4P": [{"asin": "B09HRZ8V4P", "instruction": "i need a high quality elastic tie for my hair with a light blue band.", "attributes": ["high quality", "rose gold"], "options": ["color: light blue"], "instruction_attributes": ["high quality"], "instruction_options": ["light blue"], "assignment_id": "33CID5710F37J25O7G1CGJZBOCC3L3", "worker_id": "A19317A3X87NVM"}], "B07Y2FYGTN": [{"asin": "B07Y2FYGTN", "instruction": "i want to buy a keto deluxe trail mix that is made with natural flavors.", "attributes": ["artificial ingredients", "natural ingredients", "artificial flavors"], "options": ["flavor name: keto deluxe mix", "size: 18 ounce (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["keto deluxe mix"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJ7HW0F", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B07Y2FYGTN", "instruction": "i am interested in buying snacks which have natural ingredients, and have a flavor of keto choconut mix and the size of which is 16 ounce and come in pack of 1.", "attributes": ["artificial ingredients", "natural ingredients", "artificial flavors"], "options": ["flavor name: keto choconut mix", "size: 16 ounce (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["keto choconut mix", "16 ounce (pack of 1)"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH5W6HY", "worker_id": "AJY5G987IRT25"}, {"asin": "B07Y2FYGTN", "instruction": "i need a 1.5 pound box of trail mix that is keto and has natural ingredients.", "attributes": ["artificial ingredients", "natural ingredients", "artificial flavors"], "options": ["flavor name: keto variety snack packs", "size: 1.5 pound (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["keto variety snack packs", "1.5 pound (pack of 1)"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW2F4T3", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q98WCJQ": [{"asin": "B09Q98WCJQ", "instruction": "i need an easy carry headset in gray.", "attributes": ["easy carry", "carrying case"], "options": ["color: gray small"], "instruction_attributes": ["easy carry"], "instruction_options": ["gray small"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBPRAOA2", "worker_id": "A19317A3X87NVM"}], "B086WM1LQK": [{"asin": "B086WM1LQK", "instruction": "i'm looking for unicorn sprinkle surprise cereal bars which coms with 15 count (pack of 1), also gluten free and non gmo.", "attributes": ["individually wrapped", "gluten free", "non gmo", "nut free", "quality ingredients"], "options": ["flavor name: unicorn sprinkle surprise", "size: 15 count (pack of 1)"], "instruction_attributes": ["gluten free", "non gmo"], "instruction_options": ["unicorn sprinkle surprise", "15 count (pack of 1)"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCIFQ4K", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B086WM1LQK", "instruction": "i am looking gluten free non gmo nut free cereal bar size 40 count", "attributes": ["individually wrapped", "gluten free", "non gmo", "nut free", "quality ingredients"], "options": ["flavor name: dragon's dream cookies n' cream", "size: 40 count (pack of 1)"], "instruction_attributes": ["gluten free", "non gmo", "nut free"], "instruction_options": ["40 count (pack of 1)"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA932TZ3P", "worker_id": "A3N9ZYQAESNFQH"}], "B09MFL33Z2": [{"asin": "B09MFL33Z2", "instruction": "i need to buy a power charger for my car that is fast charging. it also needs to be black blue.", "attributes": ["fast charging", "high speed", "usb port"], "options": ["color: black blue(pd+qc)"], "instruction_attributes": ["fast charging"], "instruction_options": ["black blue(pd+qc)"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MK5I7DI", "worker_id": "A2YNPKYEFDZ6C9"}], "B09DK2QTMF": [{"asin": "B09DK2QTMF", "instruction": "i am looking for quad core video game console with high definition. pick a 256 gb one that is yellow in color.", "attributes": ["plug play", "high definition", "quad core"], "options": ["size: 256g-yellow"], "instruction_attributes": ["high definition", "quad core"], "instruction_options": ["256g-yellow"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUUU0MC7", "worker_id": "A1NF6PELRKACS9"}], "B09Q89DYTJ": [{"asin": "B09Q89DYTJ", "instruction": "i'm looking for some black high heeled sandals for my mom. she wears size 5.5.", "attributes": ["day comfort", "anti slip", "open toe", "non slip", "hand wash", "lace closure", "high heel", "faux fur"], "options": ["color: black", "size: 5.5"], "instruction_attributes": ["high heel"], "instruction_options": ["black", "5.5"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXR06WN4", "worker_id": "A36LOA6VLJU157"}], "B07VDMFW5D": [{"asin": "B07VDMFW5D", "instruction": "chocolatefilledcandy", "attributes": ["old fashioned", "non gmo"], "options": ["style: butterscotch"], "instruction_attributes": ["old fashioned"], "instruction_options": ["butterscotch"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCAI7IC", "worker_id": "A2EF88OYJ2OX19"}], "B00DYQ3Z5E": [{"asin": "B00DYQ3Z5E", "instruction": "i'm looking for gluten free which has a protein found in a wheat.", "attributes": ["nut free", "gluten free"], "options": ["flavor: peach preserve", "size: 12 ounce (pack of 2)", "style: preserve + morello cherry preserve"], "instruction_attributes": ["gluten free"], "instruction_options": ["peach preserve", "12 ounce (pack of 2)"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCC9VMBV", "worker_id": "A16IQOX0DK14OJ"}], "B09RWJWH4V": [{"asin": "B09RWJWH4V", "instruction": "find me the large loose fit towmus mens polo t shirt.", "attributes": ["slim fit", "loose fit", "moisture wicking", "short sleeve", "long sleeve", "regular fit", "classic fit"], "options": ["color: white", "size: large"], "instruction_attributes": ["loose fit"], "instruction_options": ["large"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU08L8JI", "worker_id": "A1CB72B51L7TKE"}], "B00J2APBZI": [{"asin": "B00J2APBZI", "instruction": "i want a oil-free concealer for dark circles for medium color.", "attributes": ["oil free", "dark circles"], "options": ["color: medium | deep", "size: 1 count (pack of 1)"], "instruction_attributes": ["oil free", "dark circles"], "instruction_options": ["medium | deep"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OHV3MY", "worker_id": "A19317A3X87NVM"}], "B08MDH6DPS": [{"asin": "B08MDH6DPS", "instruction": "i'd like to find a four-pack of low-carb chocolate chip cookies.", "attributes": ["low carb", "keto friendly", "high protein", "sugar free"], "options": ["flavor name: chocolate chip", "size: 4 pack"], "instruction_attributes": ["low carb"], "instruction_options": ["chocolate chip", "4 pack"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A65T7U8", "worker_id": "A345TDMHP3DQ3G"}], "B08QCY2B72": [{"asin": "B08QCY2B72", "instruction": "i want a power inverter with dual ac outlets and usb for my car. it should be 900 watts.", "attributes": ["high speed", "usb port", "aluminum alloy"], "options": ["size: 900watt"], "instruction_attributes": ["usb port"], "instruction_options": ["900watt"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TYAMNL", "worker_id": "A1NF6PELRKACS9"}], "B09QQL392H": [{"asin": "B09QQL392H", "instruction": "i need some purple polyester robes.", "attributes": ["hand wash", "machine wash", "drawstring waist", "elastic waist", "polyester spandex", "short sleeve"], "options": ["color: 2 purple", "size: xx-large"], "instruction_attributes": ["elastic waist", "polyester spandex"], "instruction_options": ["2 purple"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VLBGFZ", "worker_id": "A19317A3X87NVM"}], "B09534QLNF": [{"asin": "B09534QLNF", "instruction": "i need a steel framed dining set with a black and blue coating.", "attributes": ["high density", "coated steel", "tempered glass", "steel frame"], "options": ["color: black and blue", "size: 4 pieces"], "instruction_attributes": ["coated steel", "steel frame"], "instruction_options": ["black and blue"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB1P0LUX", "worker_id": "A19317A3X87NVM"}], "B07MS8XZPH": [{"asin": "B07MS8XZPH", "instruction": "i'm looking for a waterproof hiking sandals with arch support. also, choose the red color in a size 6.", "attributes": ["anti slip", "arch support"], "options": ["color: red-2", "size: 6"], "instruction_attributes": ["arch support"], "instruction_options": ["red-2", "6"], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM9O01IR", "worker_id": "A1TWVJS27CL3KT"}, {"asin": "B07MS8XZPH", "instruction": "i need an anti slip pair of sandals with arch support. pick something in purple, grey or green.", "attributes": ["anti slip", "arch support"], "options": ["color: purple grey green", "size: 11"], "instruction_attributes": ["anti slip", "arch support"], "instruction_options": ["purple grey green"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5S45F9", "worker_id": "A1NF6PELRKACS9"}], "B00CBM1EYG": [{"asin": "B00CBM1EYG", "instruction": "i want to find some bpa-free bottles of strawberry flavored emulsion extract. please find a package of six 4-ounce bottles.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: strawberry", "size: 4 ounce, 6 pack"], "instruction_attributes": ["bpa free"], "instruction_options": ["strawberry", "4 ounce, 6 pack"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OA799V", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B00CBM1EYG", "instruction": "i would like a 16 fluid ounce rum imitation extract that is bpa free.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: rum", "size: 16 fl oz."], "instruction_attributes": ["bpa free"], "instruction_options": ["rum", "16 fl oz."], "assignment_id": "352YTHGRO6NQF252G9RXYWYAL9TH4H", "worker_id": "A1WS884SI0SLO4"}], "B09NN95T7F": [{"asin": "B09NN95T7F", "instruction": "i need a bundle of red shower caps that are used for hair treatment.", "attributes": ["hair treatment", "hair salon"], "options": ["color: red"], "instruction_attributes": ["hair treatment"], "instruction_options": ["red"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTEZP9G", "worker_id": "AMG9Y1YLBTKIV"}], "B096LRK34W": [{"asin": "B096LRK34W", "instruction": "i want to find a black xx-large men's jean jacket that i can throw in the washing machine.", "attributes": ["slim fit", "machine wash", "day comfort", "button closure", "tumble dry"], "options": ["color: black 3106", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["black 3106", "xx-large"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017MV4P9", "worker_id": "A345TDMHP3DQ3G"}], "B08NHBJP12": [{"asin": "B08NHBJP12", "instruction": "i'm looking for non gmo kettle corn in the flavors of dark chocolate, marshmallow, and frosted sugar cookie. also, choose the set of three", "attributes": ["non gmo", "gluten free", "high fructose"], "options": ["flavor name: chocolate-covered raspberry & dark choco...", "size: 3 piece assortment"], "instruction_attributes": ["non gmo"], "instruction_options": ["chocolate-covered raspberry & dark choco...", "3 piece assortment"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGT9KOQX", "worker_id": "A1TWVJS27CL3KT"}], "B09LCQZZG4": [{"asin": "B09LCQZZG4", "instruction": "i need some compact space saving bookcases.", "attributes": ["space saving", "living room"], "options": [""], "instruction_attributes": ["space saving"], "instruction_options": [], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZCF3K8", "worker_id": "A19317A3X87NVM"}], "B07PNRXGZ8": [{"asin": "B07PNRXGZ8", "instruction": "i'm interested in a lightweight, easy to carry background for digital photography that is 9 x 6 feet.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 9x6ft"], "instruction_attributes": ["light weight", "easy carry", "digital photography"], "instruction_options": ["9x6ft"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKC2CE0F", "worker_id": "AFU00NU09CFXE"}], "B07V3HC86K": [{"asin": "B07V3HC86K", "instruction": "i want a super soft, yellow rug for the living room area.", "attributes": ["super soft", "living room"], "options": ["color: yellow", "size: 2 x 3 ft rectangle"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["yellow"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNYRDU0L", "worker_id": "A19317A3X87NVM"}], "B07SKCDWB1": [{"asin": "B07SKCDWB1", "instruction": "i'm looking for a tempered glass iphone 11 screen protector", "attributes": ["tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["tempered glass"], "instruction_options": [], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SIPNT3L", "worker_id": "A292TFDMNVS0TP"}], "B09CYTXQPQ": [{"asin": "B09CYTXQPQ", "instruction": "large size white colored 1/4 zip golf shirt long sleeve athletic pullover with brushed fleece lining", "attributes": ["moisture wicking", "polyester spandex", "long sleeve"], "options": ["color: white", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XO4N9LR", "worker_id": "AL8NYDL4JOYL3"}], "B081H93CSY": [{"asin": "B081H93CSY", "instruction": "i am looking for dukal toothpastes of size :2.75 ounce |144 pack with oral hygiene.", "attributes": ["oral hygiene", "sensitive teeth"], "options": ["size: 2.75 ounce | 144 pack."], "instruction_attributes": ["oral hygiene"], "instruction_options": ["2.75 ounce | 144 pack."], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YIH3QA", "worker_id": "AX2EWYWZM19AZ"}], "B08NR5SJSW": [{"asin": "B08NR5SJSW", "instruction": "i need a face mask for dead skin removal with a peppermint scent.", "attributes": ["dead skin", "sensitive skin"], "options": ["scent: peppermint"], "instruction_attributes": ["dead skin"], "instruction_options": ["peppermint"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLK5VA9", "worker_id": "A19317A3X87NVM"}], "B08TZZP8MN": [{"asin": "B08TZZP8MN", "instruction": "i'm looking for an extra large boxer briefs with customizable multi face prints. choose the machine washable ones.", "attributes": ["machine washable", "machine wash", "comfortable fit"], "options": ["color: multi face", "size: x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["multi face", "x-large"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z4VLQCM", "worker_id": "A3MNXK3VDK37SN"}], "B08L4C63YF": [{"asin": "B08L4C63YF", "instruction": "i want to find a women's gift set that contains long-lasting edt spray and body cream.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZAPSHY", "worker_id": "A345TDMHP3DQ3G"}], "B09MMWY57X": [{"asin": "B09MMWY57X", "instruction": "large size black 44410 color snowflake graphic flowy vintage loose tunic tops for women", "attributes": ["hand wash", "short sleeve", "long sleeve", "tumble dry", "teen girls", "daily wear"], "options": ["color: black 44410", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8M56LWR", "worker_id": "AL8NYDL4JOYL3"}], "B08R5L5H8F": [{"asin": "B08R5L5H8F", "instruction": "i'm looking for a professional photography turntable with electric motorized 360-degree rotating display stand and soft touch button to control speed in white.", "attributes": ["batteries included", "long lasting", "aaa batteries"], "options": ["color: white"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72A61OEQ", "worker_id": "ABYRAWL4BGD3C"}], "B00S560WPE": [{"asin": "B00S560WPE", "instruction": "i need a dermatologist tested moisturizer with a buttercream scent.", "attributes": ["dermatologist tested", "oil free", "hyaluronic acid"], "options": ["flavor name: buttercream 03", "size: 1.18 fl oz (pack of 1)"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["buttercream 03"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMBVW9B", "worker_id": "A19317A3X87NVM"}], "B08QV6FVNP": [{"asin": "B08QV6FVNP", "instruction": "i need some grey living room pillow covers.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: grey 2 | linen band", "size: 2 pieces, 12\" x20\""], "instruction_attributes": ["living room"], "instruction_options": ["grey 2 | linen band"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGY8YDHA", "worker_id": "A19317A3X87NVM"}], "B0014C2NKS": [{"asin": "B0014C2NKS", "instruction": "i want some vinyl acetate clogs in women's size 8.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: pool", "size: 8 women | 7 men"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["8 women | 7 men"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNFPSLDA", "worker_id": "A19317A3X87NVM"}], "B07PX8S57X": [{"asin": "B07PX8S57X", "instruction": "i am looking lightweight backgrounds for my digital photography that has 15x10ft size", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 15x10ft"], "instruction_attributes": ["light weight", "digital photography"], "instruction_options": ["15x10ft"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUFJQJP", "worker_id": "A2COCSUGZV28X"}], "B08TVSCDKC": [{"asin": "B08TVSCDKC", "instruction": "find me a heavy duty wall plate that is 1-gang blank style.", "attributes": ["heavy duty", "high gloss"], "options": ["style: 1-gang blank"], "instruction_attributes": ["heavy duty"], "instruction_options": ["1-gang blank"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q37ALZH", "worker_id": "A36LOA6VLJU157"}], "B007TDNS3M": [{"asin": "B007TDNS3M", "instruction": "i'm interested in a pair of rubber-soled, non-slip snakeskin shoes in a size medium.", "attributes": ["non slip", "high heel", "rubber sole"], "options": ["color: snakeskin (black | silver)", "size: medium (6.5 - 8)"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["snakeskin (black | silver)", "medium (6.5 - 8)"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISHWYO3", "worker_id": "AFU00NU09CFXE"}], "B00KYOMIDY": [{"asin": "B00KYOMIDY", "instruction": "i'm looking for a pair of navy pants for men in a size 36w x 34l for daily wear made from a polyester-cotton blend.", "attributes": ["polyester cotton", "stretch fabric", "daily wear"], "options": ["color: navy", "size: 36w x 34l"], "instruction_attributes": ["polyester cotton", "daily wear"], "instruction_options": ["navy", "36w x 34l"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LZE0LP", "worker_id": "AFU00NU09CFXE"}], "B09CSTXGQ5": [{"asin": "B09CSTXGQ5", "instruction": "i want 50g of green brew edible glitter in bronze. it must be nut and dairy free.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: bronze", "size: 50g"], "instruction_attributes": ["nut free", "dairy free"], "instruction_options": ["bronze", "50g"], "assignment_id": "38F71OA9G46M5W32RN3TH53XR7DFMW", "worker_id": "A1CB72B51L7TKE"}, {"asin": "B09CSTXGQ5", "instruction": "i want a nut free brew glitter in the maroon red color.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: maroon red", "size: 45g shaker"], "instruction_attributes": ["nut free"], "instruction_options": ["maroon red"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHC11EO", "worker_id": "AVIEE6LDH0BT5"}], "B09KTYCG98": [{"asin": "B09KTYCG98", "instruction": "i am looking for an easy to assemble sofa with metal legs and preferably grey in color.", "attributes": ["button tufted", "easy assemble", "metal legs", "solid wood", "living room"], "options": ["color: grey"], "instruction_attributes": ["easy assemble", "metal legs"], "instruction_options": ["grey"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDF679EN", "worker_id": "A114NK7T5673GK"}], "B08PCNXQJH": [{"asin": "B08PCNXQJH", "instruction": "i want the n!ck's swedish chocolate variety pack ice cream but i want the bakery flavor. it must be keto friendly.", "attributes": ["keto friendly", "zero sugar"], "options": ["flavor name: bakery"], "instruction_attributes": ["keto friendly"], "instruction_options": ["bakery"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXX67G0", "worker_id": "A1CB72B51L7TKE"}], "B07XS6W35B": [{"asin": "B07XS6W35B", "instruction": "i want to find 0.9 ounce packets of old-fashioned, harvest raspberry flavored oatmeal. they should come in a pack of 8.", "attributes": ["old fashioned", "artificial colors"], "options": ["flavor: harvest raspberry", "size: 0.9 ounce (pack of 8)"], "instruction_attributes": ["old fashioned"], "instruction_options": ["harvest raspberry", "0.9 ounce (pack of 8)"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96V84G5", "worker_id": "A345TDMHP3DQ3G"}], "B081KWP6N5": [{"asin": "B081KWP6N5", "instruction": "i want to find a hand-crafted care package box filled with the best meats, cheeses and savory snacks.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWAC6WZ", "worker_id": "A345TDMHP3DQ3G"}], "B09DGG7H6H": [{"asin": "B09DGG7H6H", "instruction": "i need a clear glass wall mounting lamp for my bath room. and i would prefer 2-light size", "attributes": ["vanity light", "clear glass", "glass shade", "light fixture"], "options": ["size: 2-light"], "instruction_attributes": ["clear glass"], "instruction_options": ["2-light"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X02QD437", "worker_id": "A2COCSUGZV28X"}], "B09P8HZ15L": [{"asin": "B09P8HZ15L", "instruction": "please help me find a monocular telescope with good high power and zoom. it needs to work at night for bird watching.", "attributes": ["non slip", "high power", "bird watching"], "options": [""], "instruction_attributes": ["high power", "bird watching"], "instruction_options": [], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8RSWKSZ", "worker_id": "A3LIIE572Z4OG7"}], "B08TVWK24W": [{"asin": "B08TVWK24W", "instruction": "i need heavy duty electrical outlets with high gloss.", "attributes": ["heavy duty", "high gloss"], "options": ["style: outlet"], "instruction_attributes": ["heavy duty", "high gloss"], "instruction_options": ["outlet"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0ETRAD", "worker_id": "A19317A3X87NVM"}], "B01N6MGRFE": [{"asin": "B01N6MGRFE", "instruction": "i want to find a pair of dark gray, slip resistant women's work shoes. i wear a size 9.5, usually.", "attributes": ["slip resistant", "synthetic sole"], "options": ["color: dark gray", "size: 9.5"], "instruction_attributes": ["slip resistant"], "instruction_options": ["dark gray"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KF39JA", "worker_id": "A345TDMHP3DQ3G"}], "B07C9JMLWL": [{"asin": "B07C9JMLWL", "instruction": "i want to get some lemon sesame and ginger tuna salad that is wild caught.", "attributes": ["ready eat", "high protein", "wild caught", "gluten free"], "options": ["flavor name: lemon sesame & ginger"], "instruction_attributes": ["wild caught"], "instruction_options": ["lemon sesame & ginger"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4M2XYA", "worker_id": "A2YNPKYEFDZ6C9"}], "B08V4WTKGK": [{"asin": "B08V4WTKGK", "instruction": "i'm looking for a blu-ray and dvd player in ultra hd.", "attributes": ["blu ray", "ultra hd", "dual band"], "options": [""], "instruction_attributes": ["blu ray", "ultra hd"], "instruction_options": [], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6YREV9", "worker_id": "A345TDMHP3DQ3G"}], "B09SV1V24L": [{"asin": "B09SV1V24L", "instruction": "i'm looking for a hair growth serum designed to combat hair loss and repair damaged hair.", "attributes": ["hair growth", "damaged hair", "hair loss"], "options": [""], "instruction_attributes": ["hair growth", "damaged hair", "hair loss"], "instruction_options": [], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2SNY7E", "worker_id": "AFU00NU09CFXE"}], "B09QS66QTZ": [{"asin": "B09QS66QTZ", "instruction": "i'm looking for some mid-century style grey chairs.", "attributes": ["mid century", "easy assemble", "button tufted", "high density", "easy install", "easy clean", "wood frame", "solid wood", "living room"], "options": ["color: grey"], "instruction_attributes": ["mid century"], "instruction_options": ["grey"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L84UEC6G", "worker_id": "A19317A3X87NVM"}], "B08KRW147K": [{"asin": "B08KRW147K", "instruction": "i want to find a camel-colored tissue box cover that is made of pu leather.", "attributes": ["pu leather", "living room"], "options": ["color: camel"], "instruction_attributes": ["pu leather"], "instruction_options": ["camel"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788YB5CZ", "worker_id": "A345TDMHP3DQ3G"}], "B09R9M7B76": [{"asin": "B09R9M7B76", "instruction": "i'm looking for dark gray button down short-sleeve shirts.", "attributes": ["machine washable", "loose fit", "hand wash", "short sleeve", "everyday wear"], "options": ["color: a-dark gray", "size: xx-large"], "instruction_attributes": ["short sleeve", "everyday wear"], "instruction_options": ["a-dark gray"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUFZQJ5", "worker_id": "A19317A3X87NVM"}], "B09NY9TVQJ": [{"asin": "B09NY9TVQJ", "instruction": "i'm looking for teeth cleansing toothpaste which is idol for fresh breath,stain removal and longlasting. i need 2pcs in purple color.", "attributes": ["long lasting", "natural ingredients", "fresh breath", "sensitive teeth", "bad breath"], "options": ["color: 2pcs purple"], "instruction_attributes": ["long lasting", "fresh breath"], "instruction_options": ["2pcs purple"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TJDUSP", "worker_id": "A3KAF6CU2BYVLG"}], "B09NSSG2GG": [{"asin": "B09NSSG2GG", "instruction": "looking for a very powerful range extender antenna with high performance.", "attributes": ["high performance", "dual band"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZ6T7R8", "worker_id": "A2NF3B9O8ZKLLZ"}], "B0987XMJMF": [{"asin": "B0987XMJMF", "instruction": "i need some non-slip black walking shoes in the color black and size 7.5 for women.", "attributes": ["non slip", "lace closure", "teen girls", "daily wear"], "options": ["color: black", "size: 7.5"], "instruction_attributes": ["non slip", "teen girls"], "instruction_options": ["black", "7.5"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7XK4ZT6", "worker_id": "A19317A3X87NVM"}], "B01A87UAF4": [{"asin": "B01A87UAF4", "instruction": "i need a gift basket for welcoming.", "attributes": ["great gift", "gift basket"], "options": ["color: welcome cottage gift box"], "instruction_attributes": ["gift basket"], "instruction_options": ["welcome cottage gift box"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB680EA4I", "worker_id": "A19317A3X87NVM"}, {"asin": "B01A87UAF4", "instruction": "i am looking for a gift basket of candy & chocolate gifts. also, choose the welcome cottage gift box.", "attributes": ["great gift", "gift basket"], "options": ["color: welcome cottage gift box"], "instruction_attributes": ["gift basket"], "instruction_options": ["welcome cottage gift box"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IRC23Y", "worker_id": "A9QRQL9CFJBI7"}], "B077NXMB8B": [{"asin": "B077NXMB8B", "instruction": "you need to come up with an instruction for a virtual shopping assistant (ai with human-level smartness) to buy a product on amazon. you will be given a product's title along with some of its background information, such as the product's tags, buying options, and its category on the amazon website. you need write an instruction that tells a virtual assistant what you want to buy. include at least one tag in your instruction. when suitable, more tags is better. include at least one buying option in your instruction. check the tag boxes that you included in the instruction. avoid including too much information from \"product title\". this is only to provide a better context (see example page). a good instruction should allow the ai assistant to find the intended product. the instruction should be natural sounding text. imagine you are talking to a smart ai. diversify language use when viable.", "attributes": ["polyester spandex", "elastic closure", "comfortable fit", "tummy control", "gym workout"], "options": ["color: spacedye mattblack", "size: large"], "instruction_attributes": ["tummy control", "gym workout"], "instruction_options": ["spacedye mattblack", "large"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAGRXZM", "worker_id": "ASL9LVC97FUCZ"}], "B01K5BFFQW": [{"asin": "B01K5BFFQW", "instruction": "i need some fresh baked rye.", "attributes": ["baked fresh", "perfect gift"], "options": [""], "instruction_attributes": ["baked fresh"], "instruction_options": [], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQS5L10", "worker_id": "A19317A3X87NVM"}], "B099S9VLGN": [{"asin": "B099S9VLGN", "instruction": "i want buy a string backpack with small woman kids travel bag", "attributes": ["high quality", "eye shadow"], "options": ["color: elephant sunflower"], "instruction_attributes": ["high quality"], "instruction_options": ["elephant sunflower"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EK5UPV6", "worker_id": "A3N9ZYQAESNFQH"}], "B00UJGXSDG": [{"asin": "B00UJGXSDG", "instruction": "i am looking for 9'x 12' size modern ombre that fits for my living room. and i would prefer the purple one", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: cream | purple", "size: 9' x 12'"], "instruction_attributes": ["living room"], "instruction_options": ["cream | purple", "9' x 12'"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMA4XE2", "worker_id": "A2COCSUGZV28X"}], "B007XAHUHQ": [{"asin": "B007XAHUHQ", "instruction": "i want to get some satin nickel wall sconces that are 40 inches in width. they also need to have a bronze finish.", "attributes": ["bronze finish", "glass shade"], "options": ["color: satin nickel", "size: 40\" width"], "instruction_attributes": ["bronze finish"], "instruction_options": ["satin nickel", "40\" width"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3RS2R07", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B007XAHUHQ", "instruction": "this brand eurofase 23271-036 zuma frosted tube glass with cast metal frame sconce wall mount lighting, 2-light 80 total watts, 13\"h x 5\"w, bronze finish for my living room, help me", "attributes": ["bronze finish", "glass shade"], "options": ["color: satin nickel", "size: 5\" width"], "instruction_attributes": ["bronze finish"], "instruction_options": ["5\" width"], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6N1EEK", "worker_id": "A15IJ20C3R4HUO"}], "B073GJN22W": [{"asin": "B073GJN22W", "instruction": "i need a 9 channel power amplifier.", "attributes": ["power amplifier", "high resolution"], "options": ["size: 9 ch."], "instruction_attributes": ["power amplifier"], "instruction_options": ["9 ch."], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZKUCNH", "worker_id": "A19317A3X87NVM"}], "B0868PWFRR": [{"asin": "B0868PWFRR", "instruction": "i need a lorex ultra hd indoor wired dvr security camera system with motion detection", "attributes": ["ultra hd", "high definition", "motion detection"], "options": [""], "instruction_attributes": ["ultra hd", "motion detection"], "instruction_options": [], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZ4RK98", "worker_id": "A258PTOZ3D2TQR"}], "B08BF8TLFN": [{"asin": "B08BF8TLFN", "instruction": "i need some straight legged levi jeans in big and tall, with a button and not a zipper.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: the ben big & tall", "size: 56w x 32l"], "instruction_attributes": ["straight leg", "button closure"], "instruction_options": ["the ben big & tall"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95CRTHPK", "worker_id": "A19317A3X87NVM"}, {"asin": "B08BF8TLFN", "instruction": "i would like a pair of 58 w and 32 long dark stonewash straight leg jeans.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: dark stonewash (waterless)", "size: 58w x 32l"], "instruction_attributes": ["straight leg"], "instruction_options": ["dark stonewash (waterless)", "58w x 32l"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4F1BSI", "worker_id": "A1WS884SI0SLO4"}], "B093YT9DVH": [{"asin": "B093YT9DVH", "instruction": "two wolf bags one large and one small bra and panty set jeans white blouse and a zipper jacket", "attributes": ["blouse hosiery", "imported zipper", "laundry bag"], "options": [""], "instruction_attributes": ["imported zipper"], "instruction_options": [], "assignment_id": "3BXQMRHWKA8BOE0SMCYS35401UBUMT", "worker_id": "A3TTGSUBIK1YCL"}], "B01MYX0CPW": [{"asin": "B01MYX0CPW", "instruction": "i'm looking for a large package of micro applicator brushes that has it's own storage case and comes in purple, blue, pink, and white.", "attributes": ["storage case", "nail art"], "options": ["color: purple+blue+pink+white (400pcs)"], "instruction_attributes": ["storage case"], "instruction_options": ["purple+blue+pink+white (400pcs)"], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UOQK33O", "worker_id": "A3DCXIXXYOO8QL"}], "B08QHX6692": [{"asin": "B08QHX6692", "instruction": "i'm looking for a pair of women's workout shorts with a drawstring waist. i need them to be extra large and in light gray.", "attributes": ["loose fit", "drawstring waist", "drawstring closure", "daily wear"], "options": ["color: light grey", "size: x-large"], "instruction_attributes": ["drawstring waist"], "instruction_options": ["light grey", "x-large"], "assignment_id": "354P56DE9VDCOY11T1135MPML8Y7SI", "worker_id": "A345TDMHP3DQ3G"}], "B07QPVJKYR": [{"asin": "B07QPVJKYR", "instruction": "i want to find strawberry mango fruit spread that's fat free.", "attributes": ["fat free", "high fructose"], "options": ["flavor name: strawberry mango"], "instruction_attributes": ["fat free"], "instruction_options": ["strawberry mango"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP8NLZ72", "worker_id": "A345TDMHP3DQ3G"}], "B08JBMFCXC": [{"asin": "B08JBMFCXC", "instruction": "find me a dual band signal booster.", "attributes": ["dual band", "4g lte"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPI8485C", "worker_id": "A36LOA6VLJU157"}], "B09P13MCCQ": [{"asin": "B09P13MCCQ", "instruction": "i need a light weight photo studio wall prop in 100 square feet for a high resolution image.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a26", "size: 10x10ft | 3x3m"], "instruction_attributes": ["light weight", "high resolution"], "instruction_options": ["10x10ft | 3x3m"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGY9ZN7V", "worker_id": "A19317A3X87NVM"}], "B08CBVV28M": [{"asin": "B08CBVV28M", "instruction": "i'd love help finding a square ottoman coffee table made of solid wood. it should come in gray.", "attributes": ["button tufted", "solid wood"], "options": ["color: grey-pu square ottoman", "size: square ottoman with casters"], "instruction_attributes": ["solid wood"], "instruction_options": ["grey-pu square ottoman", "square ottoman with casters"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHLA4Z2", "worker_id": "A345TDMHP3DQ3G"}], "B01FRGFOHK": [{"asin": "B01FRGFOHK", "instruction": "i'm looking for coconut oil body butters.", "attributes": ["coconut oil", "dry hair"], "options": [""], "instruction_attributes": ["coconut oil"], "instruction_options": [], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XXQ9FAX", "worker_id": "A19317A3X87NVM"}], "B085YFRM74": [{"asin": "B085YFRM74", "instruction": "i'm trying to find white bluetooth speakers that are not only water resistant but also come with stereo sound.", "attributes": ["water resistant", "long lasting", "stereo sound"], "options": ["color: white"], "instruction_attributes": ["water resistant", "stereo sound"], "instruction_options": ["white"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGSELSG", "worker_id": "A345TDMHP3DQ3G"}], "B094JH14C9": [{"asin": "B094JH14C9", "instruction": "i'm looking for a teal blue watch band that's easy to install.", "attributes": ["easy install", "stainless steel"], "options": ["color: teal blue"], "instruction_attributes": ["easy install"], "instruction_options": ["teal blue"], "assignment_id": "39K0FND3ASPR95MUG7H134S6UQGAMS", "worker_id": "A345TDMHP3DQ3G"}], "B095C9YLM2": [{"asin": "B095C9YLM2", "instruction": "i'm looking for some high heeled sandals in size 9. also, in the color red.", "attributes": ["open toe", "closed toe", "ankle strap", "memory foam", "high heel", "arch support"], "options": ["color: #07-red", "size: 9"], "instruction_attributes": ["open toe", "high heel"], "instruction_options": ["#07-red", "9"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY10708X", "worker_id": "A19317A3X87NVM"}], "B011M8UDA0": [{"asin": "B011M8UDA0", "instruction": "i am looking for an exfoliating and soothing skin cream for keratosis pilaris and would like a two pack of four oz containers", "attributes": ["dermatologist tested", "green tea"], "options": ["size: two pack"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["two pack"], "assignment_id": "3BGYGHDBB8UCXYNXTA52IDVACYI22Z", "worker_id": "A21SVM7079V6OP"}], "B08LGK3SXL": [{"asin": "B08LGK3SXL", "instruction": "i'm hoping to find a stainless steel set of wireless headphones that comes with a carrying case. ideally the metal on the headphones should be black and the leather should be olive colored.", "attributes": ["gold plated", "carrying case", "stainless steel"], "options": ["color: black metal | olive leather"], "instruction_attributes": ["carrying case", "stainless steel"], "instruction_options": ["black metal | olive leather"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163ESPQR", "worker_id": "A345TDMHP3DQ3G"}], "B003RWVFEI": [{"asin": "B003RWVFEI", "instruction": "i'm searching for canned skinless and boneless pink salmon which is ready to eat. also, i want sweet and spicy flavor.", "attributes": ["wild caught", "fat free", "ready eat"], "options": ["flavor name: sweet & spicy"], "instruction_attributes": ["ready eat"], "instruction_options": ["sweet & spicy"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFGMPGBL", "worker_id": "A1198W1SPF1R4"}], "B0924JK3Z6": [{"asin": "B0924JK3Z6", "instruction": "i need some open toe women's sandals in size 10.5.", "attributes": ["open toe", "closed toe", "ankle strap", "everyday wear"], "options": ["color: #2", "size: 10.5"], "instruction_attributes": ["open toe"], "instruction_options": ["10.5"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2M7SFOB", "worker_id": "A19317A3X87NVM"}], "B0749QT7GQ": [{"asin": "B0749QT7GQ", "instruction": "i am looking for a gluten free almond flour with 32 ounce (pack of 4)", "attributes": ["gluten free", "non gmo", "source vitamin"], "options": ["size: 32 ounce (pack of 4)", "style: regular"], "instruction_attributes": ["gluten free"], "instruction_options": ["32 ounce (pack of 4)"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OP95FW1", "worker_id": "A3QZMGTVA4VO44"}], "B08YCWF272": [{"asin": "B08YCWF272", "instruction": "i want to find a signal booster for my 4g lte phone, and it needs to have a dual-band cell signal repeater.", "attributes": ["dual band", "4g lte"], "options": [""], "instruction_attributes": ["dual band", "4g lte"], "instruction_options": [], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1AL0HFB", "worker_id": "A345TDMHP3DQ3G"}], "B09M6S8GNB": [{"asin": "B09M6S8GNB", "instruction": "i'm hoping to find a 4g lte tablet that i can use for my work.", "attributes": ["dual band", "4g lte"], "options": [""], "instruction_attributes": ["4g lte"], "instruction_options": [], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBDMGI9", "worker_id": "A345TDMHP3DQ3G"}], "B088T8FWSJ": [{"asin": "B088T8FWSJ", "instruction": "i need a super soft throw pillow in coral for my living room.", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: coral", "size: 16''x16''"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["coral"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VC1MXM", "worker_id": "A19317A3X87NVM"}], "B07QC3KYRN": [{"asin": "B07QC3KYRN", "instruction": "i need a modern wall mount for light led in bronze with a 36\" wide.", "attributes": ["bronze finish", "glass shade"], "options": ["color: nickel", "size: 36\" wide"], "instruction_attributes": ["bronze finish"], "instruction_options": ["36\" wide"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVM9YEXB", "worker_id": "A2Y2TURT2VEYZN"}], "B07C39RCNZ": [{"asin": "B07C39RCNZ", "instruction": "i\u2019m looking for a dht blocking anti hair loss set with hyaluronic acid as pure hair growth support shampoo", "attributes": ["hyaluronic acid", "hair growth", "hair loss"], "options": [""], "instruction_attributes": ["hyaluronic acid", "hair growth"], "instruction_options": [], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0GSCCB", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08BCGZC4M": [{"asin": "B08BCGZC4M", "instruction": "i need a long high speed and aluminum alloy usb 3.0 extension cable of male-male style and 3.3ft long size", "attributes": ["gold plated", "high performance", "plug play", "high speed", "aluminum alloy"], "options": ["size: 3.3ft", "style: male-male"], "instruction_attributes": ["high speed"], "instruction_options": [], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CBD2T9", "worker_id": "A258PTOZ3D2TQR"}], "B084LHV2M1": [{"asin": "B084LHV2M1", "instruction": "i need an oil and paraben free shampoo for my hair. it should be 29.2 fluid ounces in size.", "attributes": ["dermatologist tested", "oil free", "paraben free", "cruelty free"], "options": [""], "instruction_attributes": ["oil free", "paraben free"], "instruction_options": [], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OLRFH5L", "worker_id": "A1NF6PELRKACS9"}], "B07QC96VV9": [{"asin": "B07QC96VV9", "instruction": "blue color velvet upholstered suitable for large living room.", "attributes": ["metal legs", "living room"], "options": [""], "instruction_attributes": ["metal legs", "living room"], "instruction_options": [], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39YVCZR", "worker_id": "AL8NYDL4JOYL3"}], "B08LVXD5Z3": [{"asin": "B08LVXD5Z3", "instruction": "i want to find a gray twin-sized daybed with a trundle made out of solid wood.", "attributes": ["twin size", "space saving", "easy assemble", "box spring", "solid wood", "living room"], "options": ["color: grey", "size: with trundle"], "instruction_attributes": ["twin size", "solid wood"], "instruction_options": ["grey", "with trundle"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXD0O5N", "worker_id": "A345TDMHP3DQ3G"}], "B000XESVO0": [{"asin": "B000XESVO0", "instruction": "i need a black, rubber sole workboot in size 11.5.", "attributes": ["moisture wicking", "steel toe", "rubber sole"], "options": ["color: black", "size: 11.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black", "11.5"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGSILSK", "worker_id": "A19317A3X87NVM"}], "B005LURBFQ": [{"asin": "B005LURBFQ", "instruction": "get me sugar free water drink mix. i like half iced tea and half lemonade flavor.", "attributes": ["sugar free", "source vitamin"], "options": ["flavor name: half iced tea | half lemonade"], "instruction_attributes": ["sugar free"], "instruction_options": ["half iced tea | half lemonade"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSH3GLA", "worker_id": "A1NF6PELRKACS9"}], "B092M6NZNS": [{"asin": "B092M6NZNS", "instruction": "i'd like to find aa batteries that are fast-charging and compatible with my xbox controller.", "attributes": ["fast charging", "aaa batteries"], "options": ["size: aa battery"], "instruction_attributes": ["fast charging"], "instruction_options": ["aa battery"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJD1BXQ", "worker_id": "A345TDMHP3DQ3G"}], "B07NSWJ1G7": [{"asin": "B07NSWJ1G7", "instruction": "i want a size 6 donna morgan women's knotted crepe sheath dress that is machine washable. i want it in viridian green.", "attributes": ["machine wash", "imported zipper", "polyester spandex"], "options": ["color: viridian green", "size: 6"], "instruction_attributes": ["machine wash"], "instruction_options": ["viridian green", "6"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02ICE236", "worker_id": "A1CB72B51L7TKE"}], "B09J2WGRHW": [{"asin": "B09J2WGRHW", "instruction": "i want to find a long-lasting tempered glass phone screen protector that i can use. the color needs to be liquid purple and blue.", "attributes": ["long lasting", "glass screen", "tempered glass"], "options": ["color: ring liquid purple | blue"], "instruction_attributes": ["long lasting", "glass screen", "tempered glass"], "instruction_options": ["ring liquid purple | blue"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88QPYDKA", "worker_id": "A345TDMHP3DQ3G"}], "B096M1D621": [{"asin": "B096M1D621", "instruction": "i want to buy a gray a gray color daybed in twin size with a wooden frame.", "attributes": ["twin size", "white item", "easy assemble", "king size", "wood frame", "box spring", "solid wood", "living room"], "options": ["color: grey"], "instruction_attributes": ["twin size", "wood frame"], "instruction_options": ["grey"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNE34IXP", "worker_id": "A2YNPKYEFDZ6C9"}], "B0966CMX16": [{"asin": "B0966CMX16", "instruction": "i'm looking for some temporary hair chalk for my teenage niece; it should be easy to apply to dry hair.", "attributes": ["easy apply", "dry hair"], "options": [""], "instruction_attributes": ["easy apply", "dry hair"], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCRHD0T", "worker_id": "A3LIIE572Z4OG7"}], "B073JC1M93": [{"asin": "B073JC1M93", "instruction": "i'd like to find a large, navy-colored women's skater dress that's machine washable.", "attributes": ["machine washable", "hand wash", "polyester spandex", "daily wear"], "options": ["color: navy", "size: large"], "instruction_attributes": ["machine washable"], "instruction_options": ["navy", "large"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXHU4ON", "worker_id": "A345TDMHP3DQ3G"}], "B09CLHRQGW": [{"asin": "B09CLHRQGW", "instruction": "find an electric spa body brush with a long handle that comes in stainless steel for me please", "attributes": ["long handle", "stainless steel"], "options": [""], "instruction_attributes": ["long handle", "stainless steel"], "instruction_options": [], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KD9QRHV", "worker_id": "AH3PIENWVI58N"}], "B08DTQ7YZM": [{"asin": "B08DTQ7YZM", "instruction": "i need a digital photography background that is lightweight, easy to carry, and 8 by 6 feet in size.", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 8x6ft"], "instruction_attributes": ["light weight", "easy carry", "digital photography"], "instruction_options": ["8x6ft"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29B62X8X", "worker_id": "AHTWQSOY6HTJI"}], "B07MZ2W5T7": [{"asin": "B07MZ2W5T7", "instruction": "i want to find a 7x5 foot underwater world backdrop that's high resolution and also lightweight.", "attributes": ["light weight", "high resolution", "digital photography"], "options": ["size: 7x5ft"], "instruction_attributes": ["light weight", "high resolution"], "instruction_options": ["7x5ft"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9HYX5U", "worker_id": "A345TDMHP3DQ3G"}], "B07VMYLG81": [{"asin": "B07VMYLG81", "instruction": "i want to find snickerdoodle cookie bites that are dairy free and low carb.", "attributes": ["plant based", "low carb", "non gmo", "dairy free"], "options": ["flavor name: snickerdoodle"], "instruction_attributes": ["low carb", "dairy free"], "instruction_options": ["snickerdoodle"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNC47BLK", "worker_id": "A345TDMHP3DQ3G"}], "B08ZMKVT1N": [{"asin": "B08ZMKVT1N", "instruction": "i need a motion-activated black bullet camera in 1080p hd.", "attributes": ["1080p hd", "motion detection"], "options": ["color: black", "size: 1 count (pack of 1)"], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": ["black"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJO40DYY", "worker_id": "A19317A3X87NVM"}], "B0000WLVGU": [{"asin": "B0000WLVGU", "instruction": "i want some navy blue straight leg pants.", "attributes": ["long lasting", "easy care", "straight leg", "machine wash", "polyester cotton"], "options": ["color: navy", "size: 33w x 34l"], "instruction_attributes": ["straight leg"], "instruction_options": ["navy", "33w x 34l"], "assignment_id": "39K0FND3ASPR95MUG7H134S6URDAMR", "worker_id": "A19317A3X87NVM"}], "B07H28D7J5": [{"asin": "B07H28D7J5", "instruction": "i want to find a microdermabrasion machine that can treat sensitive dead skin.", "attributes": ["dead skin", "sensitive skin"], "options": [""], "instruction_attributes": ["dead skin", "sensitive skin"], "instruction_options": [], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY864J812", "worker_id": "A345TDMHP3DQ3G"}], "B09QHLZVXG": [{"asin": "B09QHLZVXG", "instruction": "i am looking for cupcake toppers for a birthday party that are dino shaped.", "attributes": ["baby shower", "party supplies", "birthday party"], "options": ["model: dino cake topper-3"], "instruction_attributes": ["birthday party"], "instruction_options": ["dino cake topper-3"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EB6E6U1", "worker_id": "A2ECRNQ3X5LEXD"}], "B092ZL4VTQ": [{"asin": "B092ZL4VTQ", "instruction": "i need to buy a toothbrush travel container. make sure it's easy to clean and buy color five.", "attributes": ["easy clean", "double sided", "storage case"], "options": ["color: 5"], "instruction_attributes": ["easy clean"], "instruction_options": ["5"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NKTP2G", "worker_id": "AR9AU5FY1S3RO"}], "B09PV3KH7J": [{"asin": "B09PV3KH7J", "instruction": "i am looking for a high resolution natural scenery.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a4", "size: 7x5ft | 2.1x1.5m"], "instruction_attributes": ["high resolution"], "instruction_options": ["7x5ft | 2.1x1.5m"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH8U1E9", "worker_id": "A2KW17G25L25R8"}], "B07D8X7VNM": [{"asin": "B07D8X7VNM", "instruction": "i'm looking for a size 14.9 ounce wabry organic syrup", "attributes": ["bpa free", "certified organic", "gluten free", "artificial colors"], "options": ["flavor name: variety 4 pack", "size: 14.9 ounce (pack of 4)"], "instruction_attributes": ["certified organic"], "instruction_options": ["14.9 ounce (pack of 4)"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AIBEOE", "worker_id": "ARQ05PDNXPFDI"}], "B00NCCSIRK": [{"asin": "B00NCCSIRK", "instruction": "i need to buy some decaffeinated lavender tea.", "attributes": ["certified organic", "bpa free", "caffeine free"], "options": ["flavor name: lavender", "size: regular"], "instruction_attributes": ["caffeine free"], "instruction_options": ["lavender"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTVSM7L", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B00NCCSIRK", "instruction": "i am looking for a certified organic herbal tea which has a rose flavor.", "attributes": ["certified organic", "bpa free", "caffeine free"], "options": ["flavor name: rose", "size: 2.82 ounce (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["rose"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJMXW0P", "worker_id": "A1NF6PELRKACS9"}], "B09DP9C125": [{"asin": "B09DP9C125", "instruction": "need one toothbrush holder easy to clean and non toxic in white", "attributes": ["non toxic", "easy clean"], "options": ["color: w"], "instruction_attributes": ["non toxic", "easy clean"], "instruction_options": ["w"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWXZT5K", "worker_id": "A2Y2TURT2VEYZN"}], "B01GV0PR0A": [{"asin": "B01GV0PR0A", "instruction": "i need a black yaheetech home office computer desk that is easy to assemble.", "attributes": ["white item", "easy assemble", "storage space"], "options": ["color: black"], "instruction_attributes": ["easy assemble"], "instruction_options": ["black"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMT8G25", "worker_id": "A2RBF3IIJP15IH"}], "B08DJ5VY8V": [{"asin": "B08DJ5VY8V", "instruction": "i am interested in the travel sized version of gucci bamboo impression.", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: gucci bamboo impression"], "instruction_attributes": ["travel size"], "instruction_options": ["gucci bamboo impression"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X3JY3H", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08DJ5VY8V", "instruction": "i'm looking travel size alcohol free fragrance body oil which should be long lasting. also choose chanel coco impression one.", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: chanel coco impression"], "instruction_attributes": ["travel size", "alcohol free", "long lasting"], "instruction_options": ["chanel coco impression"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAJ1OVT", "worker_id": "AR0VJ5XRG16UJ"}], "B08DJ7LBNR": [{"asin": "B08DJ7LBNR", "instruction": "i am interested in a travel sized bottle of kilian good girl gone bad.", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: by kilian good girl gone bad impression"], "instruction_attributes": ["travel size"], "instruction_options": ["by kilian good girl gone bad impression"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRK7F9M", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08DJ7LBNR", "instruction": "i am looking for alcohol free women versace dreamer impression scent.", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: versace dreamer impression"], "instruction_attributes": ["alcohol free"], "instruction_options": ["versace dreamer impression"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQM031M", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B08DJ7LBNR", "instruction": "i am looking for a travel sized bottle of jean paul gaultier scandal impression perfume.", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: jean paul gaultier scandal impression"], "instruction_attributes": ["travel size"], "instruction_options": ["jean paul gaultier scandal impression"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0250UKA0", "worker_id": "A1EREKSZAA9V7B"}], "B08YR79P5T": [{"asin": "B08YR79P5T", "instruction": "i am looking for a women's short sleeve honey bee t shirt size x-large.", "attributes": ["short sleeve", "long sleeve", "button closure", "daily wear"], "options": ["color: beige-o", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["x-large"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL45CES", "worker_id": "A1EREKSZAA9V7B"}], "B09P14213F": [{"asin": "B09P14213F", "instruction": "i am looking for a lightweight photography background in a size 10ft by 7ft.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a20", "size: 10x7ft | 3x2.2m"], "instruction_attributes": ["light weight"], "instruction_options": ["10x7ft | 3x2.2m"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2KAYNX", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09P14213F", "instruction": "i am looking for loght weight photography background.size should be 10x7 ft", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a6", "size: 10x7ft | 3x2.2m"], "instruction_attributes": ["light weight"], "instruction_options": ["10x7ft | 3x2.2m"], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLIBIKIT", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B09P14213F", "instruction": "i need a lightweight background for the photo studio that is 10 by 7 ft.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a39", "size: 10x7ft | 3x2.2m"], "instruction_attributes": ["light weight"], "instruction_options": ["10x7ft | 3x2.2m"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPXDG0E", "worker_id": "A2ECRNQ3X5LEXD"}], "B09BBM1CLR": [{"asin": "B09BBM1CLR", "instruction": "i want to get an 8 fluid ounce pack of 24 sweet and sour margarita and daquiri mix packets made with only natural ingredients.", "attributes": ["non alcoholic", "artificial ingredients", "natural ingredients", "high fructose"], "options": ["flavor: sweet & sour", "size: 8 fl oz (pack of 24)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["sweet & sour", "8 fl oz (pack of 24)"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA7Y6MH5", "worker_id": "A345TDMHP3DQ3G"}], "B098NRMH19": [{"asin": "B098NRMH19", "instruction": "i want rose gold cupcake picks that say we will miss you for a retirement party i'm throwing.", "attributes": ["cupcake picks", "baby shower"], "options": ["color: rose gold"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["rose gold"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPWFTX0", "worker_id": "A2DDPSXH2X96RF"}], "B00VGMLHY4": [{"asin": "B00VGMLHY4", "instruction": "i would like a chocolate gift basket.", "attributes": ["kosher certified", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDFNO2O", "worker_id": "A1WS884SI0SLO4"}], "B08M3SGYDQ": [{"asin": "B08M3SGYDQ", "instruction": "i need to buy an iphone case in midnight grey. make sure it supports wireless charging.", "attributes": ["aluminum alloy", "wireless charging"], "options": ["color: midnight grey"], "instruction_attributes": ["wireless charging"], "instruction_options": ["midnight grey"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UHC5IQ4", "worker_id": "AR9AU5FY1S3RO"}], "B09HQ6BYK8": [{"asin": "B09HQ6BYK8", "instruction": "i would like some soft drink mixes that have low sugar.", "attributes": ["low sugar", "gluten free", "artificial colors", "artificial flavors"], "options": [""], "instruction_attributes": ["low sugar"], "instruction_options": [], "assignment_id": "39K0FND3ASPR95MUG7H134S6U31AM3", "worker_id": "A1WS884SI0SLO4"}], "B0756ZYS4D": [{"asin": "B0756ZYS4D", "instruction": "i would like a size 7 narrow non slip sneaker with a storm blue snake color.", "attributes": ["non slip", "synthetic sole"], "options": ["color: storm blue snake", "size: 7 narrow"], "instruction_attributes": ["non slip"], "instruction_options": ["storm blue snake", "7 narrow"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YLF69L", "worker_id": "A1WS884SI0SLO4"}], "B097QRTLBJ": [{"asin": "B097QRTLBJ", "instruction": "i want a multicolor spandex top for summer.", "attributes": ["hand wash", "wash cold", "polyester spandex"], "options": ["color: d3-multicolor", "size: large"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["d3-multicolor"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788B65CK", "worker_id": "A19317A3X87NVM"}], "B07FZ6XX2T": [{"asin": "B07FZ6XX2T", "instruction": "i am looking for caffeine free coconut almond flavored carob bars.", "attributes": ["caffeine free", "gluten free", "non gmo", "rich creamy", "non dairy", "soy free", "dairy free"], "options": ["flavor name: coconut almond", "size: 2 pack"], "instruction_attributes": ["caffeine free"], "instruction_options": ["coconut almond"], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUER5SD", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07FZ6XX2T", "instruction": "i am looking for caffeine free and gluten free chocolate. please choose peanut butter flavor.", "attributes": ["caffeine free", "gluten free", "non gmo", "rich creamy", "non dairy", "soy free", "dairy free"], "options": ["flavor name: peanut butter", "size: 2pk"], "instruction_attributes": ["caffeine free", "gluten free"], "instruction_options": ["peanut butter"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G76K47P", "worker_id": "A3FG5PQHG5AH3Y"}], "B09R7QWXB5": [{"asin": "B09R7QWXB5", "instruction": "i want to find an extra-large black women's blouse that is loose-fitting.", "attributes": ["loose fit", "short sleeve", "long sleeve", "teen girls", "daily wear"], "options": ["color: a02 fashion 2022 loose fit tops black", "size: x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["a02 fashion 2022 loose fit tops black", "x-large"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30URG0Y5", "worker_id": "A345TDMHP3DQ3G"}], "B08D9MGFN3": [{"asin": "B08D9MGFN3", "instruction": "i want to find 8 ounces of instant coffee sticks that are easy to prepare. they must come with 12 sticks in a box.", "attributes": ["easy prepare", "non dairy", "low sugar"], "options": ["color: g7 3 in 1", "size: 8oz (12 sticks | box)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["g7 3 in 1", "8oz (12 sticks | box)"], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UFKKOH", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B08D9MGFN3", "instruction": "i am looking for 14 oz (200 sachets) strong and pure easy prepare coffee of cappucino hazelnut color", "attributes": ["easy prepare", "non dairy", "low sugar"], "options": ["color: cappucino hazelnut", "size: 14 oz (200 sachets | bag)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["cappucino hazelnut", "14 oz (200 sachets | bag)"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6OR9MMW", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08D9MGFN3", "instruction": "i am looking for some special edition instant coffee that is easy to prepare and has 12 sticks.", "attributes": ["easy prepare", "non dairy", "low sugar"], "options": ["color: special edition", "size: 8oz (12 sticks | box)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["special edition", "8oz (12 sticks | box)"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BKMVJ2", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08D9MGFN3", "instruction": "i am looking for cappucino coconut and low sugar instant coffee for energy boost", "attributes": ["easy prepare", "non dairy", "low sugar"], "options": ["color: cappucino coconut", "size: 0.88 ounce (pack of 18)"], "instruction_attributes": ["low sugar"], "instruction_options": ["cappucino coconut"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPG6VQN", "worker_id": "A258PTOZ3D2TQR"}], "B08B1M9D96": [{"asin": "B08B1M9D96", "instruction": "i am looking for khaki color summer pants for women that can be washed by hands.", "attributes": ["wide leg", "wash cold", "hand wash", "machine wash", "elastic closure", "drawstring waist", "elastic waist"], "options": ["color: khaki", "size: large"], "instruction_attributes": ["hand wash"], "instruction_options": ["khaki"], "assignment_id": "3V26SBZTBOOS9KTL7ONUSZFOISMZZ6", "worker_id": "A1Q8PPQQCWGY0D"}], "B09BZ3DTPS": [{"asin": "B09BZ3DTPS", "instruction": "i'm looking for size ten ladies shoes with a closed toe and leather soles.", "attributes": ["leather sole", "closed toe"], "options": ["color: white logo", "size: 10"], "instruction_attributes": ["leather sole", "closed toe"], "instruction_options": ["10"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSF71D9J", "worker_id": "A3EDFA8UQT5GG8"}], "B000IDV3UA": [{"asin": "B000IDV3UA", "instruction": "i am looking for a nickel finished one light wall sconce.", "attributes": ["nickel finish", "glass shade"], "options": ["color: brass", "size: 1 light"], "instruction_attributes": ["nickel finish"], "instruction_options": ["1 light"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOGSF0P", "worker_id": "A1EREKSZAA9V7B"}], "B01ERGEB34": [{"asin": "B01ERGEB34", "instruction": "i would like a 3.4 oz dry shampoo that is paraben free.", "attributes": ["paraben free", "sulfate free", "cruelty free", "dry hair"], "options": ["style: dry shampoo - fl oz 3.4"], "instruction_attributes": ["paraben free"], "instruction_options": ["dry shampoo - fl oz 3.4"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFI7EMA", "worker_id": "A2ECRNQ3X5LEXD"}], "B000QSPX4O": [{"asin": "B000QSPX4O", "instruction": "buy some baby food. make sure it's certified organic.", "attributes": ["bpa free", "certified organic", "non gmo", "artificial flavors"], "options": [""], "instruction_attributes": ["certified organic"], "instruction_options": [], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C3BHPQ", "worker_id": "AR9AU5FY1S3RO"}], "B098SKK3BX": [{"asin": "B098SKK3BX", "instruction": "buy me a black flip case for my phone with a glass screen.", "attributes": ["glass screen", "tempered glass"], "options": ["color: black"], "instruction_attributes": ["glass screen"], "instruction_options": ["black"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WOL42S", "worker_id": "AR9AU5FY1S3RO"}], "B00KL19J4Q": [{"asin": "B00KL19J4Q", "instruction": "i would like a 100 count friends bunny grahams party mix with simple ingredients.", "attributes": ["individually wrapped", "simple ingredients", "high fructose", "artificial flavors"], "options": ["flavor name: friends bunny grahams", "size: 100 count (pack of 1)"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["friends bunny grahams", "100 count (pack of 1)"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGU6TW4", "worker_id": "A1WS884SI0SLO4"}], "B082257WQ6": [{"asin": "B082257WQ6", "instruction": "i want a 12 ounce bag of gluten free pecan flavored ground coffee.", "attributes": ["gluten free", "artificial flavors"], "options": ["flavor name: decaffeinated house blend", "size: 12 ounce"], "instruction_attributes": ["gluten free"], "instruction_options": ["12 ounce"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LJO90K", "worker_id": "A2RBF3IIJP15IH"}], "B08L796942": [{"asin": "B08L796942", "instruction": "i want to get a grey wireless headset with stereo sound.", "attributes": ["high performance", "stereo sound"], "options": ["color: grey"], "instruction_attributes": ["stereo sound"], "instruction_options": ["grey"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPL5FWP", "worker_id": "A345TDMHP3DQ3G"}], "B07M8JT8PZ": [{"asin": "B07M8JT8PZ", "instruction": "i'm looking for a 12-count box of european cookies in holiday flavors that i can give as a valentine's day gift.", "attributes": ["natural ingredients", "valentine day", "great gift", "perfect gift"], "options": ["flavor name: holiday flavors", "size: box of 12"], "instruction_attributes": ["valentine day", "great gift", "perfect gift"], "instruction_options": ["holiday flavors", "box of 12"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUT8S1F8", "worker_id": "A345TDMHP3DQ3G"}], "B09QHZDXRT": [{"asin": "B09QHZDXRT", "instruction": "i am looking for pink cake toppers for a birthday party.", "attributes": ["birthday party", "party supplies", "baby shower"], "options": ["color: pink"], "instruction_attributes": ["birthday party"], "instruction_options": ["pink"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNI7TNI", "worker_id": "A1EREKSZAA9V7B"}], "B00DY2TG7E": [{"asin": "B00DY2TG7E", "instruction": "i'm looking for a pair of mens sneakers with a synthetic sole, i'm a size 7 and a half.", "attributes": ["synthetic sole", "rubber outsole", "rubber sole"], "options": ["color: blu nero", "size: 7.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["7.5"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X3YPGZ", "worker_id": "A3EDFA8UQT5GG8"}], "B07GDH89Y3": [{"asin": "B07GDH89Y3", "instruction": "i want to find a wireless bluetooth sound bar featuring blu ray.", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8FC4CF", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07GDH89Y3", "instruction": "i am looking for a power cord for a blu ray player with output protection.", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["output protection", "blu ray"], "instruction_options": [], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY869Z81S", "worker_id": "A2HMEGTAFO0CS8"}], "B07H2LG414": [{"asin": "B07H2LG414", "instruction": "i am looking for a certified refurbished intel core mini desktop computer with windows 10 pro.", "attributes": ["certified refurbished", "core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["certified refurbished", "intel core"], "instruction_options": [], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCLJMB7", "worker_id": "A1EREKSZAA9V7B"}], "B09N74SXQZ": [{"asin": "B09N74SXQZ", "instruction": "i am interested in a high quality cosmetic bag.", "attributes": ["double sided", "high quality"], "options": ["color: bonus daughter gifts makeup bag"], "instruction_attributes": ["high quality"], "instruction_options": ["bonus daughter gifts makeup bag"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMLK6BX", "worker_id": "A2ECRNQ3X5LEXD"}], "B0895X475B": [{"asin": "B0895X475B", "instruction": "looking for hiking shoes non slip and waterproof in orange size 7.5", "attributes": ["long lasting", "day comfort", "slip resistant", "non slip", "rubber outsole"], "options": ["color: orange", "size: 7.5"], "instruction_attributes": ["non slip"], "instruction_options": ["orange", "7.5"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUURRJQE", "worker_id": "A2Y2TURT2VEYZN"}], "B07JKX54RT": [{"asin": "B07JKX54RT", "instruction": "need a mini computer with a intel core 5 4200u, 8gb ram, 64g ssd", "attributes": ["core i5", "intel core"], "options": ["color: i5 4200u", "size: 8g ram 64g ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["i5 4200u", "8g ram 64g ssd"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UNI1GX", "worker_id": "A2Y2TURT2VEYZN"}], "B07R6W51S5": [{"asin": "B07R6W51S5", "instruction": "i am interested in a dual colored headset that is noise cancelling.", "attributes": ["noise cancelling", "light weight"], "options": ["color: duo 510dsp"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["duo 510dsp"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQ44L1N", "worker_id": "A2ECRNQ3X5LEXD"}], "B096FPCTYS": [{"asin": "B096FPCTYS", "instruction": "i am looking for black 18th birthday cake toppers.", "attributes": ["birthday cake", "birthday party", "cupcake picks", "party supplies"], "options": ["color: black"], "instruction_attributes": ["birthday cake"], "instruction_options": ["black"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCF9E02", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B096FPCTYS", "instruction": "i want pink 18th birthday cake toppers.", "attributes": ["birthday cake", "birthday party", "cupcake picks", "party supplies"], "options": ["color: pink"], "instruction_attributes": ["birthday cake"], "instruction_options": ["pink"], "assignment_id": "3HPZF4IVNX3FW186JO133U513HWYCH", "worker_id": "A2RBF3IIJP15IH"}], "B07NPM7BMS": [{"asin": "B07NPM7BMS", "instruction": "i need a grey square shaped rug that is 2'3\" x 18' for my living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: grey | silver", "item shape: square", "size: 2'3\" x 18'"], "instruction_attributes": ["living room"], "instruction_options": ["grey | silver", "square", "2'3\" x 18'"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUROQJI", "worker_id": "A2RBF3IIJP15IH"}], "B004989EGK": [{"asin": "B004989EGK", "instruction": "i want a 36 pack of applesauce that is non gmo.", "attributes": ["bpa free", "non gmo", "gluten free", "dairy free", "real fruit"], "options": ["flavor name: apple", "size: 3.2 ounce (pack of 36)"], "instruction_attributes": ["non gmo"], "instruction_options": ["apple", "3.2 ounce (pack of 36)"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5O8X6X", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GWDXWRH": [{"asin": "B07GWDXWRH", "instruction": "i night some light tan anti-aging cream for dark circles under my eyes.", "attributes": ["anti aging", "highly pigmented", "long lasting", "hyaluronic acid", "dark circles"], "options": ["color: 14.0 light tan (w)", "size: 0.4 fl oz"], "instruction_attributes": ["anti aging", "dark circles"], "instruction_options": ["14.0 light tan (w)"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35KGGUC", "worker_id": "A19317A3X87NVM"}], "B08R3KFFMW": [{"asin": "B08R3KFFMW", "instruction": "i want to find a heavy duty writing table that has a steel coating.", "attributes": ["heavy duty", "coated steel"], "options": [""], "instruction_attributes": ["heavy duty", "coated steel"], "instruction_options": [], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20LGZ0R", "worker_id": "A345TDMHP3DQ3G"}], "B09K49DTTZ": [{"asin": "B09K49DTTZ", "instruction": "i need a loose fit, long sleeved hoodie in green. buy the size medium.", "attributes": ["slim fit", "loose fit", "long sleeve", "contrast color", "relaxed fit", "button closure"], "options": ["color: green", "size: medium"], "instruction_attributes": ["loose fit", "long sleeve"], "instruction_options": ["green", "medium"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW4X8SN", "worker_id": "AR9AU5FY1S3RO"}], "B09KNFM2Q7": [{"asin": "B09KNFM2Q7", "instruction": "i want blue faux leather 26\" watson & whitely bar stools.", "attributes": ["fully assembled", "assembly required", "faux leather", "solid wood"], "options": ["color: pu-blue", "size: 26\"-memory swivel"], "instruction_attributes": ["faux leather"], "instruction_options": ["pu-blue"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI1JT35", "worker_id": "A2RBF3IIJP15IH"}], "B07W4JWKXW": [{"asin": "B07W4JWKXW", "instruction": "do you have any old fashioned taffy that is sugar free in apple flavour?", "attributes": ["old fashioned", "soy free", "kosher certified", "sugar free", "individually wrapped"], "options": ["flavor name: apple"], "instruction_attributes": ["old fashioned", "sugar free"], "instruction_options": ["apple"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCG4LBF", "worker_id": "A3EDFA8UQT5GG8"}], "B08C42HNN9": [{"asin": "B08C42HNN9", "instruction": "i'm looking for eye serum for anti aging and clinically proven", "attributes": ["anti aging", "clinically proven", "stainless steel", "fine lines", "dark circles"], "options": [""], "instruction_attributes": ["anti aging", "clinically proven"], "instruction_options": [], "assignment_id": "3EO896NRA756NTFIJAVQIHQHEYQTJ2", "worker_id": "A2Y2TURT2VEYZN"}], "B08YY632H4": [{"asin": "B08YY632H4", "instruction": "get me a green iphone 12 case that supports wireless charging.", "attributes": ["easy install", "glass screen", "tempered glass", "wireless charging"], "options": ["color: midle green"], "instruction_attributes": ["wireless charging"], "instruction_options": ["midle green"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM2KHZD", "worker_id": "AR9AU5FY1S3RO"}], "B093KMVLFG": [{"asin": "B093KMVLFG", "instruction": "i am looking for 2 mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HRMPB0", "worker_id": "A1EREKSZAA9V7B"}], "B008L532XI": [{"asin": "B008L532XI", "instruction": "i would like a shampoo to help my dry hair.", "attributes": ["sulfate free", "cruelty free", "dry hair"], "options": [""], "instruction_attributes": ["dry hair"], "instruction_options": [], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUEG5S2", "worker_id": "A1WS884SI0SLO4"}], "B09F52WW6W": [{"asin": "B09F52WW6W", "instruction": "i am looking for women's size 5.5 athletic sneakers with rubber soles.", "attributes": ["rubber sole", "lace closure"], "options": ["color: white | almond | marble", "size: 5.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["5.5"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTBA5DC", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09F52WW6W", "instruction": "i am looking for a pair of women's size 5 athletic sneakers with a rubber sole.", "attributes": ["rubber sole", "lace closure"], "options": ["color: caramel | almond | melange", "size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["5"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HW2PBQ", "worker_id": "A1EREKSZAA9V7B"}], "B08P8SM79P": [{"asin": "B08P8SM79P", "instruction": "i would like a 50 inch high speed tv.", "attributes": ["dual band", "high speed"], "options": ["size: 50 inches"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOEITCP", "worker_id": "A1WS884SI0SLO4"}], "B07SJB7T8M": [{"asin": "B07SJB7T8M", "instruction": "i would like some 16 inch hair extensions in color 60.", "attributes": ["long lasting", "hair extensions"], "options": ["color: #60", "size: 16 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#60", "16 inch"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIKP85L", "worker_id": "A1WS884SI0SLO4"}], "B086ST5T8J": [{"asin": "B086ST5T8J", "instruction": "i need a beige or green shower brush with a long handle.", "attributes": ["eco friendly", "non slip", "long handle"], "options": ["color: beige"], "instruction_attributes": ["long handle"], "instruction_options": ["beige"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1AJCX4", "worker_id": "A19317A3X87NVM"}], "B093CLC753": [{"asin": "B093CLC753", "instruction": "can you find me 1 pack of low calorie wheat flour sandwich crackers that are lemon, chocolate, and cream cheese flavored?", "attributes": ["low calorie", "baby shower", "birthday party"], "options": ["flavor name: lemon,chocolate,cream cheese", "size: 1 pack"], "instruction_attributes": ["low calorie"], "instruction_options": ["lemon,chocolate,cream cheese", "1 pack"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40T1YF3", "worker_id": "A2DDPSXH2X96RF"}], "B078RQ51M8": [{"asin": "B078RQ51M8", "instruction": "i need black dodoing curly messy hair bun extensions.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: natural black"], "instruction_attributes": ["hair extensions"], "instruction_options": ["natural black"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTKQO66", "worker_id": "A2RBF3IIJP15IH"}], "B07XHD17PB": [{"asin": "B07XHD17PB", "instruction": "i am looking for a white mesh height adjustable drafting chair.", "attributes": ["height adjustable", "contemporary style", "lumbar support"], "options": ["color: white mesh", "style: mid back"], "instruction_attributes": ["height adjustable"], "instruction_options": ["white mesh"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VHM064", "worker_id": "A1EREKSZAA9V7B"}], "B077JH57XG": [{"asin": "B077JH57XG", "instruction": "i'm looking for a mens slipper that has a water resistant rubber outer sole. size thirteen and extra wide.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: china tea leather", "size: 13 x-wide"], "instruction_attributes": ["water resistant", "rubber sole"], "instruction_options": ["13 x-wide"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3VZ8N1V", "worker_id": "A3EDFA8UQT5GG8"}], "B098LDD49Z": [{"asin": "B098LDD49Z", "instruction": "i am looking for a women's short sleeve playsuit size medium.", "attributes": ["wash cold", "hand wash", "machine wash", "button closure", "short sleeve", "everyday wear"], "options": ["color: a-green", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["medium"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WNCWQY", "worker_id": "A1EREKSZAA9V7B"}], "B07ZFBMM45": [{"asin": "B07ZFBMM45", "instruction": "i want to buy the rattan wicker sofa set with machine washable burgandy cusions.", "attributes": ["machine washable", "tempered glass", "coated steel"], "options": ["color: burgundy"], "instruction_attributes": ["machine washable"], "instruction_options": ["burgundy"], "assignment_id": "3X65QVEQIBXVW21709CD9M35U19CLI", "worker_id": "AR9AU5FY1S3RO"}], "B01GNFZ5H8": [{"asin": "B01GNFZ5H8", "instruction": "i'd like to find a highly pigmented eyeshadow palette that is long-lasting. it needs to have a daring color.", "attributes": ["highly pigmented", "long lasting"], "options": ["color: daring"], "instruction_attributes": ["highly pigmented", "long lasting"], "instruction_options": ["daring"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN25J7Y9", "worker_id": "A345TDMHP3DQ3G"}], "B09MT3NH6Z": [{"asin": "B09MT3NH6Z", "instruction": "i am looking for an apple watch compatible lavender grey silicone band with quick release.", "attributes": ["compatible apple", "quick release", "easy install"], "options": ["color: lavender grey", "size: 38 | 40 | 41mm"], "instruction_attributes": ["quick release"], "instruction_options": ["lavender grey"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P73BU5", "worker_id": "A1EREKSZAA9V7B"}], "B076CKJ4YX": [{"asin": "B076CKJ4YX", "instruction": "i want gluten free classic chili chicharrones.", "attributes": ["protein serving", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOLW9M0", "worker_id": "A2RBF3IIJP15IH"}], "B07RQKXNHR": [{"asin": "B07RQKXNHR", "instruction": "i am interested in a high quality brush set.", "attributes": ["high quality", "synthetic hair"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PJ3X2D", "worker_id": "A2ECRNQ3X5LEXD"}], "B077D1BVHW": [{"asin": "B077D1BVHW", "instruction": "i'm looking for throw pillow covers for the pillows for my living room, they should be super soft and about 22 by 22 inches.", "attributes": ["double sided", "super soft", "living room"], "options": ["size: 22 x 22 inchs"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["22 x 22 inchs"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVJSXL0", "worker_id": "A3EDFA8UQT5GG8"}], "B074847M44": [{"asin": "B074847M44", "instruction": "i'm looking for a standard pair of straight legged jeans in noir heather.", "attributes": ["straight leg", "imported zipper", "classic fit"], "options": ["color: noir heather (waterless)", "fit type: standard", "size: 30w x 29l"], "instruction_attributes": ["straight leg"], "instruction_options": ["noir heather (waterless)", "standard"], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YHQGA2", "worker_id": "A19317A3X87NVM"}], "B08JVJJD3T": [{"asin": "B08JVJJD3T", "instruction": "i would like some clinically proven power dental flossers.", "attributes": ["clinically proven", "storage case"], "options": [""], "instruction_attributes": ["clinically proven"], "instruction_options": [], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7TELH0", "worker_id": "A1WS884SI0SLO4"}], "B09HNKW6RN": [{"asin": "B09HNKW6RN", "instruction": "i am looking for a women's long sleeve sherpa fleece jacket.", "attributes": ["loose fit", "faux fur", "long sleeve", "quality materials", "daily wear"], "options": ["color: b- khaki", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["3x-large"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2BYOID", "worker_id": "A1EREKSZAA9V7B"}], "B08FC4RS18": [{"asin": "B08FC4RS18", "instruction": "i would like four flatbreads from trader joes.", "attributes": ["trader joe", "gluten free"], "options": ["number of items: 4"], "instruction_attributes": ["trader joe"], "instruction_options": ["4"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTRL4E4", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08FC4RS18", "instruction": "i need 3 trader joe's gluten free crackers.", "attributes": ["trader joe", "gluten free"], "options": ["number of items: 3"], "instruction_attributes": ["trader joe", "gluten free"], "instruction_options": ["3"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZIR7RU", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08FC4RS18", "instruction": "i want to buy crackers which are gluten free and i want 2 of them.", "attributes": ["trader joe", "gluten free"], "options": ["number of items: 2"], "instruction_attributes": ["gluten free"], "instruction_options": ["2"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAK6VO7", "worker_id": "AJY5G987IRT25"}], "B01MZ2CH6O": [{"asin": "B01MZ2CH6O", "instruction": "i am looking for fuchsia colored comfortable fit levi's bomber jacket for women.", "attributes": ["machine wash", "imported zipper", "comfortable fit"], "options": ["color: fuchsia", "size: xx-large", "special size type: standard"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["fuchsia"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UO11GI", "worker_id": "A1EREKSZAA9V7B"}], "B00J1ZNSN6": [{"asin": "B00J1ZNSN6", "instruction": "i would like plant based meatballs.", "attributes": ["plant based", "protein serving"], "options": [""], "instruction_attributes": ["plant based"], "instruction_options": [], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMNB9WS", "worker_id": "A2ECRNQ3X5LEXD"}], "B07D9LVGM8": [{"asin": "B07D9LVGM8", "instruction": "i want a regular fit dark green pair of adidas men's pro bounce shoes in size 14.", "attributes": ["lace closure", "rubber outsole", "regular fit", "rubber sole"], "options": ["color: dark green | white | active green", "size: 14"], "instruction_attributes": ["regular fit"], "instruction_options": ["dark green | white | active green", "14"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUATDZ2", "worker_id": "A2RBF3IIJP15IH"}], "B09PFKP5DP": [{"asin": "B09PFKP5DP", "instruction": "i need brown eco friendly cenglings women slingback sandals in size 7.", "attributes": ["eco friendly", "high quality"], "options": ["color: brown", "size: 7"], "instruction_attributes": ["eco friendly"], "instruction_options": ["brown", "7"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM9674G41", "worker_id": "A2RBF3IIJP15IH"}], "B07S49NQQ5": [{"asin": "B07S49NQQ5", "instruction": "i'd like to buy some board shorts in size twenty-nine. get the ones with the button closure.", "attributes": ["hand wash", "regular fit", "button closure"], "options": ["color: captains blue", "size: 29"], "instruction_attributes": ["button closure"], "instruction_options": ["29"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEFT68S", "worker_id": "AR9AU5FY1S3RO"}], "B097NGDB64": [{"asin": "B097NGDB64", "instruction": "i need a x-large machine washable men's evan scrub pant in ceil color.", "attributes": ["straight leg", "machine washable", "machine wash", "drawstring closure", "elastic waistband"], "options": ["color: ceil", "size: x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["ceil", "x-large"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UCL3AH", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B097NGDB64", "instruction": "i am interested in straight leg scrub buttoms in an x-large that are ceil colored", "attributes": ["straight leg", "machine washable", "machine wash", "drawstring closure", "elastic waistband"], "options": ["color: ceil", "size: x-large"], "instruction_attributes": ["straight leg"], "instruction_options": ["ceil", "x-large"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOMH9LL", "worker_id": "A2ECRNQ3X5LEXD"}], "B08SJ9JM97": [{"asin": "B08SJ9JM97", "instruction": "i want to get a grey counter stool that is made of solid wood.", "attributes": ["button tufted", "long lasting", "solid wood"], "options": ["color: grey"], "instruction_attributes": ["solid wood"], "instruction_options": ["grey"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TAEMND", "worker_id": "A345TDMHP3DQ3G"}], "B09MD3PZYS": [{"asin": "B09MD3PZYS", "instruction": "i want to find a glass screen protector for my high definition s20 samsung galaxy ultra.", "attributes": ["high definition", "tempered glass", "glass screen"], "options": ["color: hd s20 ultra screen protector"], "instruction_attributes": ["high definition", "glass screen"], "instruction_options": ["hd s20 ultra screen protector"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GI23SN", "worker_id": "A345TDMHP3DQ3G"}], "B09Q8THWGR": [{"asin": "B09Q8THWGR", "instruction": "i would like a backdrop for digital photography that is 10 by 8 ft.", "attributes": ["high resolution", "digital photography"], "options": ["size: 10x8ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["10x8ft"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GI03SL", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09Q8THWGR", "instruction": "i am looking for a 8x6ft backgrounds for digital photography.", "attributes": ["high resolution", "digital photography"], "options": ["size: 8x6ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["8x6ft"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A219OHTT", "worker_id": "A9QRQL9CFJBI7"}], "B07NB7SJ1Y": [{"asin": "B07NB7SJ1Y", "instruction": "i am looking for easy to use marula oil hydrating shampoo.", "attributes": ["sulfate free", "easy use", "seed oil", "natural ingredients"], "options": ["size: 16.9 fl oz (pack of 1)", "style: marula oil hydrating shampoo"], "instruction_attributes": ["easy use"], "instruction_options": ["marula oil hydrating shampoo"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZDZUIRU", "worker_id": "A1EREKSZAA9V7B"}], "B09SGJP3LP": [{"asin": "B09SGJP3LP", "instruction": "i'm looking for a slim-fit, short-sleeved, slim-fit men's compression t-shirt in i-silver.", "attributes": ["slim fit", "long sleeve", "short sleeve", "contrast color", "regular fit"], "options": ["color: i-silver", "size: medium"], "instruction_attributes": ["slim fit", "short sleeve"], "instruction_options": ["i-silver"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FFAU46", "worker_id": "ARJDD0Z3R65BD"}], "B085W5VF39": [{"asin": "B085W5VF39", "instruction": "i would like a brown wig made of natural hair.", "attributes": ["easy use", "natural hair"], "options": ["color: f-brown"], "instruction_attributes": ["natural hair"], "instruction_options": ["f-brown"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JXQEGZ", "worker_id": "A1WS884SI0SLO4"}], "B09SBFH2NC": [{"asin": "B09SBFH2NC", "instruction": "i need new york style strawberry swirl cheesecake that is ready to eat.", "attributes": ["ready eat", "kosher certified", "great gift"], "options": ["flavor name: new york style"], "instruction_attributes": ["ready eat"], "instruction_options": ["new york style"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPVOG0L", "worker_id": "A2RBF3IIJP15IH"}], "B01M34Z8YW": [{"asin": "B01M34Z8YW", "instruction": "buy me some paraben free coconut oil lip balm.", "attributes": ["paraben free", "cruelty free", "dermatologist tested", "sulfate free", "coconut oil", "natural ingredients", "sensitive skin"], "options": [""], "instruction_attributes": ["paraben free", "coconut oil"], "instruction_options": [], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L5AREF", "worker_id": "AR9AU5FY1S3RO"}], "B09FJLKPDL": [{"asin": "B09FJLKPDL", "instruction": "i would like some blue non toxic bath brushes.", "attributes": ["non slip", "non toxic", "high quality"], "options": ["color: blue"], "instruction_attributes": ["non toxic"], "instruction_options": ["blue"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKWIDNI", "worker_id": "A1WS884SI0SLO4"}], "B085VB9Y1V": [{"asin": "B085VB9Y1V", "instruction": "i need jane grey pink vanity fair women's nylon spandex hi cut panties in plus size 5.", "attributes": ["machine wash", "nylon spandex", "elastic closure"], "options": ["color: jane grey pink", "fit type: plus size", "size: 5"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["jane grey pink", "plus size", "5"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXS5QAW5", "worker_id": "A2RBF3IIJP15IH"}], "B07HJNBCX4": [{"asin": "B07HJNBCX4", "instruction": "i am interested in a memory foam queen sized mattress.", "attributes": ["ready use", "queen size", "memory foam"], "options": ["size: queen", "style: 12-inch mattress"], "instruction_attributes": ["memory foam"], "instruction_options": ["queen"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFD2VMP", "worker_id": "A2ECRNQ3X5LEXD"}], "B09N75GRYM": [{"asin": "B09N75GRYM", "instruction": "i need to shop for a high performance tablet. i'd really like a blue one.", "attributes": ["high performance", "quad core"], "options": ["color: blue"], "instruction_attributes": ["high performance", "quad core"], "instruction_options": ["blue"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWVO1CL", "worker_id": "AR9AU5FY1S3RO"}], "B07J2VD4XS": [{"asin": "B07J2VD4XS", "instruction": "i want to get a white wooden coat rack.", "attributes": ["white item", "white finish"], "options": [""], "instruction_attributes": ["white item", "white finish"], "instruction_options": [], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R410R3", "worker_id": "A345TDMHP3DQ3G"}], "B09B1ZLZMH": [{"asin": "B09B1ZLZMH", "instruction": "i want to find a dip powder kit for my nails that's easy to use. the color of the powder must be gentle nude.", "attributes": ["water resistant", "long lasting", "easy use", "nail art"], "options": ["color: gentle nudes"], "instruction_attributes": ["easy use"], "instruction_options": ["gentle nudes"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYT7363", "worker_id": "A345TDMHP3DQ3G"}], "B07WRV3NFX": [{"asin": "B07WRV3NFX", "instruction": "i am interested in a black shirt that is short sleeved.", "attributes": ["moisture wicking", "machine wash", "short sleeve", "stretch fabric", "button closure"], "options": ["color: black on black", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["black on black", "small"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZHYC73", "worker_id": "A2ECRNQ3X5LEXD"}], "B09BV632MQ": [{"asin": "B09BV632MQ", "instruction": "i am looking for a plug and play ps2 to hdmi converter adapter.", "attributes": ["easy carry", "plug play", "usb port"], "options": [""], "instruction_attributes": ["plug play"], "instruction_options": [], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HBW6IY", "worker_id": "A1EREKSZAA9V7B"}], "B07JQ4T9N6": [{"asin": "B07JQ4T9N6", "instruction": "i need a lightweight navy pullover in a large.", "attributes": ["light weight", "hand wash", "long sleeve", "daily wear"], "options": ["color: navy", "size: large"], "instruction_attributes": ["light weight"], "instruction_options": ["navy", "large"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPSZJ9GR", "worker_id": "A2ECRNQ3X5LEXD"}], "B072WFY47F": [{"asin": "B072WFY47F", "instruction": "i am interested in wedges that are teal with memory foam in a size 9.5-10.", "attributes": ["day comfort", "memory foam"], "options": ["color: teal", "size: 9.5-10"], "instruction_attributes": ["memory foam"], "instruction_options": ["teal", "9.5-10"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEJEZKP", "worker_id": "A2ECRNQ3X5LEXD"}], "B093RJNQDM": [{"asin": "B093RJNQDM", "instruction": "i want to find a high quality 5 pcs makeup brush set with the stitch 2 color theme", "attributes": ["high quality", "eye shadow"], "options": ["color: stitch 2"], "instruction_attributes": ["high quality"], "instruction_options": ["stitch 2"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YLG69M", "worker_id": "A2DDPSXH2X96RF"}], "B001OC75GK": [{"asin": "B001OC75GK", "instruction": "i need to buy a four pack of fully assembled dining room chairs.", "attributes": ["fully assembled", "heavy duty"], "options": ["color: distressed black", "size: 4 pack"], "instruction_attributes": ["fully assembled"], "instruction_options": ["4 pack"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWVOC1W", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B001OC75GK", "instruction": "i am looking for heavy duty chair. please choose kelly red color.", "attributes": ["fully assembled", "heavy duty"], "options": ["color: distressed kelly red", "size: 1 pack"], "instruction_attributes": ["heavy duty"], "instruction_options": ["distressed kelly red"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V3M2UU", "worker_id": "A3FG5PQHG5AH3Y"}], "B004Q8TFJ4": [{"asin": "B004Q8TFJ4", "instruction": "get me a heavy duty office chair with lumbar support. look for dillon black fabric.", "attributes": ["heavy duty", "lumbar support"], "options": ["color: dillon black fabric"], "instruction_attributes": ["heavy duty", "lumbar support"], "instruction_options": ["dillon black fabric"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1AXOHFN", "worker_id": "AR9AU5FY1S3RO"}], "B08XZ31PVL": [{"asin": "B08XZ31PVL", "instruction": "i'm looking for a portable beauty salon manicure table.", "attributes": ["easy clean", "nail polish", "beauty salon"], "options": [""], "instruction_attributes": ["beauty salon"], "instruction_options": [], "assignment_id": "39O5D9O8742EGYBIU38DD09OUF33CG", "worker_id": "ARQ05PDNXPFDI"}], "B09JWNS4S2": [{"asin": "B09JWNS4S2", "instruction": "i need a toothbrush container with holes.", "attributes": ["easy carry", "high quality", "quality materials"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3L4D84MILA2GIKONJGE14YNT346HJR", "worker_id": "A19317A3X87NVM"}], "B09C4PDL5S": [{"asin": "B09C4PDL5S", "instruction": "i want to buy some living room curtain panels that are pattern 6 and 55x46 inches.", "attributes": ["ready use", "living room"], "options": ["color: pattern-6", "size: 55 x 46 inch(27.5 x 46 inch*2pes)"], "instruction_attributes": ["living room"], "instruction_options": ["pattern-6", "55 x 46 inch(27.5 x 46 inch*2pes)"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTN7E5A", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B09C4PDL5S", "instruction": "i would like a pattern-4 colored window curtain panel for the living room.", "attributes": ["ready use", "living room"], "options": ["color: pattern-4", "size: 104 x 107.8 inch(52 x 107.8 inch*2pes)"], "instruction_attributes": ["living room"], "instruction_options": ["pattern-4"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHTPJ0O", "worker_id": "AHXHM1PQTRWIQ"}], "B07JFT17Q2": [{"asin": "B07JFT17Q2", "instruction": "buy a flat-packed nightstand in marble black with a white frame.", "attributes": ["assembly required", "steel frame", "white finish"], "options": ["color: marble black \u2013 white frame"], "instruction_attributes": ["assembly required"], "instruction_options": ["marble black \u2013 white frame"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LEJSPD", "worker_id": "AR9AU5FY1S3RO"}], "B07RRJTRTC": [{"asin": "B07RRJTRTC", "instruction": "get me some low-carb plant based lemon cookies.", "attributes": ["low carb", "grain free", "plant based", "great gift"], "options": ["flavor name: lemon"], "instruction_attributes": ["low carb", "plant based"], "instruction_options": ["lemon"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7X6MFRI", "worker_id": "AR9AU5FY1S3RO"}], "B07CWWTHN9": [{"asin": "B07CWWTHN9", "instruction": "i am looking for a three pack of hand crafted cheese squares,", "attributes": ["hand crafted", "non gmo", "0g trans", "quality ingredients", "artificial flavors"], "options": ["flavor name: asiago & cheddar squares", "size: 4.5 ounce (pack of 3)"], "instruction_attributes": ["hand crafted"], "instruction_options": ["asiago & cheddar squares", "4.5 ounce (pack of 3)"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9Q1TEO", "worker_id": "A2ECRNQ3X5LEXD"}], "B000XEX11I": [{"asin": "B000XEX11I", "instruction": "get me some steel-toed workboots in size eleven and a half.", "attributes": ["moisture wicking", "steel toe", "rubber sole"], "options": ["color: brown | brown", "size: 11.5"], "instruction_attributes": ["steel toe"], "instruction_options": ["11.5"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOLPM96", "worker_id": "AR9AU5FY1S3RO"}], "B08V4N63K9": [{"asin": "B08V4N63K9", "instruction": "i want to get a super soft blue fleece throw that's 50 inches by 63 inches.", "attributes": ["super soft", "machine washable", "fleece throw", "living room"], "options": ["color: blue", "size: 50\"x63\""], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["blue", "50\"x63\""], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733JABEP", "worker_id": "A345TDMHP3DQ3G"}], "B088YWBL47": [{"asin": "B088YWBL47", "instruction": "i would like a deep brown clog with a rubber sole for my size 8 foot.", "attributes": ["open toe", "high heel", "rubber sole"], "options": ["color: deep brown", "size: 8"], "instruction_attributes": ["rubber sole"], "instruction_options": ["deep brown", "8"], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIEN00Q", "worker_id": "A1WS884SI0SLO4"}], "B007AS4YSO": [{"asin": "B007AS4YSO", "instruction": "i'm looking for a wax hair removal kit for very sensitive skin.", "attributes": ["natural ingredients", "hair removal", "sensitive skin"], "options": [""], "instruction_attributes": ["hair removal", "sensitive skin"], "instruction_options": [], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOLGM9X", "worker_id": "A3EDFA8UQT5GG8"}], "B08JTMVZKS": [{"asin": "B08JTMVZKS", "instruction": "i want to find a gold v shaped facial roller for anti aging massage.", "attributes": ["anti aging", "fine lines", "sensitive skin"], "options": ["color: gold"], "instruction_attributes": ["anti aging"], "instruction_options": ["gold"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCQAQ5D", "worker_id": "A2DDPSXH2X96RF"}], "B004AW4370": [{"asin": "B004AW4370", "instruction": "i would like a black schwarz size 6-6.5 shoe made of vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: black schwarz skull black", "size: 6-6.5"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["black schwarz skull black", "6-6.5"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7FBN5B", "worker_id": "A1WS884SI0SLO4"}], "B08QDR81K6": [{"asin": "B08QDR81K6", "instruction": "i'm looking for a high power sound bar.", "attributes": ["dust proof", "high power"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVX23XT", "worker_id": "A19317A3X87NVM"}], "B00278G99O": [{"asin": "B00278G99O", "instruction": "i want to find a wooden bar stool that features faux leather.", "attributes": ["assembly required", "faux leather"], "options": [""], "instruction_attributes": ["faux leather"], "instruction_options": [], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SSEDUD", "worker_id": "A345TDMHP3DQ3G"}], "B09P4P4H25": [{"asin": "B09P4P4H25", "instruction": "i want to find engraved cheetah-white bands for my apple watch. the bands need to be 38 millimeters long.", "attributes": ["compatible apple", "quick release"], "options": ["color: cheetah-white | green | lavender gray | black", "size: 38mm | 40mm | 41mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["cheetah-white | green | lavender gray | black", "38mm | 40mm | 41mm"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KLILJ5", "worker_id": "A345TDMHP3DQ3G"}], "B09GR8JT1W": [{"asin": "B09GR8JT1W", "instruction": "i am looking for a king size platform bed.", "attributes": ["button tufted", "long lasting", "faux leather", "king size", "box spring"], "options": ["color: grey", "size: full", "style: bed with storage drawers"], "instruction_attributes": ["king size"], "instruction_options": ["grey"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA19C8V", "worker_id": "A2KW17G25L25R8"}, {"asin": "B09GR8JT1W", "instruction": "i'm looking for upholstered platform bed.", "attributes": ["button tufted", "long lasting", "faux leather", "king size", "box spring"], "options": ["color: black", "size: king", "style: bed"], "instruction_attributes": ["king size"], "instruction_options": ["king", "bed"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLZ9RDY", "worker_id": "A21IUUHBSEVB56"}], "B09SD2KGX9": [{"asin": "B09SD2KGX9", "instruction": "i want to get some sandals with high heels and open toe in the color black and size 9 wide.", "attributes": ["open toe", "high heel", "ankle strap", "closed toe"], "options": ["color: a10 - black", "size: 9 wide"], "instruction_attributes": ["open toe", "high heel"], "instruction_options": ["a10 - black", "9 wide"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79NV1HW", "worker_id": "A2YNPKYEFDZ6C9"}], "B08CHFJ7BQ": [{"asin": "B08CHFJ7BQ", "instruction": "i am looking for a pink leak proof bag.", "attributes": ["leak proof", "non toxic"], "options": ["color: pink-100g"], "instruction_attributes": ["leak proof"], "instruction_options": ["pink-100g"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVEMUTX", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08CHFJ7BQ", "instruction": "looking for leak proof refillable plastic cosmetic jars 50g", "attributes": ["leak proof", "non toxic"], "options": ["color: clear-50g"], "instruction_attributes": ["leak proof"], "instruction_options": ["clear-50g"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQZ2B4F", "worker_id": "A10OGH5CQBXL5N"}], "B08BYS9RT5": [{"asin": "B08BYS9RT5", "instruction": "get me some non-toxic nail glitter in twelve colors.", "attributes": ["non toxic", "nail art"], "options": ["color: 12 colors"], "instruction_attributes": ["non toxic", "nail art"], "instruction_options": ["12 colors"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPDY6V1", "worker_id": "AR9AU5FY1S3RO"}], "B09L6CL783": [{"asin": "B09L6CL783", "instruction": "show me all your non-slip size ten ladies ankle boots in grey.", "attributes": ["non slip", "soft material"], "options": ["color: gray a", "size: 10"], "instruction_attributes": ["non slip"], "instruction_options": ["gray a", "10"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM9672G4Z", "worker_id": "A3EDFA8UQT5GG8"}], "B09BJFBZKT": [{"asin": "B09BJFBZKT", "instruction": "i want to find a 30-count pack of non-dairy, salted caramel flavored hot chocolate mix.", "attributes": ["non dairy", "dairy free", "lactose free"], "options": ["flavor name: salted caramel", "size: 30 count (pack of 1)"], "instruction_attributes": ["non dairy"], "instruction_options": ["salted caramel", "30 count (pack of 1)"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNEF3IXC", "worker_id": "A345TDMHP3DQ3G"}], "B09SHHN9D9": [{"asin": "B09SHHN9D9", "instruction": "i need a yellow xx-large floral print tank sleeveless dress that is quick drying.", "attributes": ["quick drying", "quality polyester"], "options": ["color: yellow", "size: xx-large"], "instruction_attributes": ["quick drying"], "instruction_options": ["yellow", "xx-large"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4YOXYK", "worker_id": "A2RBF3IIJP15IH"}], "B00VO4KYV6": [{"asin": "B00VO4KYV6", "instruction": "i want gluten free tasty teriyaki perky jerky turkey jerky.", "attributes": ["low fat", "low sodium", "protein serving", "non gmo", "gluten free", "resealable bag"], "options": ["flavor name: plant based - tasty teriyaki"], "instruction_attributes": ["gluten free"], "instruction_options": ["plant based - tasty teriyaki"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQ8KVKX", "worker_id": "A2RBF3IIJP15IH"}], "B08DCGPRKK": [{"asin": "B08DCGPRKK", "instruction": "i'm looking for a ready to eat goya guisadas preferable white beans in sauce.", "attributes": ["low fat", "ready eat"], "options": ["flavor name: white beans in sauce"], "instruction_attributes": ["ready eat"], "instruction_options": ["white beans in sauce"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPIJ6EJ", "worker_id": "ARQ05PDNXPFDI"}], "B071NV1CRV": [{"asin": "B071NV1CRV", "instruction": "i am interested in permanent hair color that is dark blonde tobacco.", "attributes": ["easy use", "permanent hair"], "options": ["color: dark blonde tobacco"], "instruction_attributes": ["permanent hair"], "instruction_options": ["dark blonde tobacco"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVXU3XL", "worker_id": "A2ECRNQ3X5LEXD"}], "B00EECI9A8": [{"asin": "B00EECI9A8", "instruction": "i would like some long lasting eau de toilette.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8OYKA2C", "worker_id": "A1WS884SI0SLO4"}], "B01HJWDWP6": [{"asin": "B01HJWDWP6", "instruction": "i'm looking for high speed, gold plated hdmi cables that are male to male.", "attributes": ["high speed", "gold plated"], "options": ["color: 10 pack", "size: 15 feet (4 pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["hdmi male to male"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG4OLSE", "worker_id": "A3EDFA8UQT5GG8"}], "B097DM97CS": [{"asin": "B097DM97CS", "instruction": "what scented candles that are lead free are available in wild lavender scent?", "attributes": ["lead free", "soy wax"], "options": ["scent: wild lavender"], "instruction_attributes": ["lead free"], "instruction_options": ["wild lavender"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MJQFOX", "worker_id": "A3EDFA8UQT5GG8"}], "B09RQ6D2XX": [{"asin": "B09RQ6D2XX", "instruction": "i want to get a six-count package of white karahi flavored mix. the mix shouldn't have any artificial flavors.", "attributes": ["easy use", "artificial flavors"], "options": ["flavor name: white karahi 1.41 oz (40g)", "size: pack of 6"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["white karahi 1.41 oz (40g)", "pack of 6"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG4WSLT", "worker_id": "A345TDMHP3DQ3G"}], "B093YRY22W": [{"asin": "B093YRY22W", "instruction": "get me a mesh laundry bag in any color, please.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZHO7CO", "worker_id": "AR9AU5FY1S3RO"}], "B07GXDNMCP": [{"asin": "B07GXDNMCP", "instruction": "i am looking for a stainless steel tongue cleaner.", "attributes": ["stainless steel", "bad breath"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ7X0N0", "worker_id": "A1EREKSZAA9V7B"}], "B09PB9NFWJ": [{"asin": "B09PB9NFWJ", "instruction": "i am looking for a cat with ears cupcake toppers for a baby shower.", "attributes": ["cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4A3BSA", "worker_id": "A1EREKSZAA9V7B"}], "B07VPSW334": [{"asin": "B07VPSW334", "instruction": "i want a small black women's blouse with long sleeves.", "attributes": ["hand wash", "elastic closure", "long sleeve", "polyester spandex", "dry clean", "teen girls"], "options": ["color: #1 black", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["#1 black", "small"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP1076QLIQ", "worker_id": "A345TDMHP3DQ3G"}], "B083QFB8L5": [{"asin": "B083QFB8L5", "instruction": "i want to find an 80x50 centimeter desk that can be mounted to my wall.", "attributes": ["wall mounted", "easy clean"], "options": ["color: c", "size: 80\u00d750 cm | 31.5\u00d719.7 in"], "instruction_attributes": ["wall mounted"], "instruction_options": ["80\u00d750 cm | 31.5\u00d719.7 in"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VO9MXI", "worker_id": "A345TDMHP3DQ3G"}], "B09S31L7LB": [{"asin": "B09S31L7LB", "instruction": "i am looking for x-large mint green snow boots that have a rubber outsole.", "attributes": ["slip resistant", "soft material", "rubber outsole"], "options": ["color: b32 - mint green", "size: x-large"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["b32 - mint green", "x-large"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q10DK0", "worker_id": "A2ECRNQ3X5LEXD"}], "B01GQU0HMS": [{"asin": "B01GQU0HMS", "instruction": "i am looking for low fat beef jerky.", "attributes": ["low fat", "high protein", "gluten free"], "options": [""], "instruction_attributes": ["low fat"], "instruction_options": [], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ78N0Y", "worker_id": "A1EREKSZAA9V7B"}], "B08YNFX8P8": [{"asin": "B08YNFX8P8", "instruction": "i am looking for a body brush that has a long handle.", "attributes": ["easy clean", "long handle"], "options": [""], "instruction_attributes": ["long handle"], "instruction_options": [], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSGA2QF", "worker_id": "A2ECRNQ3X5LEXD"}], "B078VDBGJK": [{"asin": "B078VDBGJK", "instruction": "i want to find a pair of purple women's boots in a size 8. the boots need to have rubber soles.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: purple sage", "size: 8"], "instruction_attributes": ["rubber sole"], "instruction_options": ["purple sage", "8"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOBAATH", "worker_id": "A345TDMHP3DQ3G"}], "B09R1XFNKW": [{"asin": "B09R1XFNKW", "instruction": "i need a black leopard print polyester-cotton shirt with long sleeves.", "attributes": ["slim fit", "short sleeve", "long sleeve", "polyester cotton", "regular fit", "gym workout"], "options": ["color: black", "size: x-large"], "instruction_attributes": ["long sleeve", "polyester cotton"], "instruction_options": ["black"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ANWWB7", "worker_id": "A19317A3X87NVM"}], "B09228DH3M": [{"asin": "B09228DH3M", "instruction": "i am interested in a high quality hair cutting kit.", "attributes": ["easy carry", "easy clean", "easy use", "high quality", "hair cutting"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGLHIY2", "worker_id": "A2ECRNQ3X5LEXD"}], "B07VHGV3XW": [{"asin": "B07VHGV3XW", "instruction": "i want 8 pcs of water resistant tattoo grip tape.", "attributes": ["water resistant", "easy use"], "options": ["color: tattoo grip tape 8pcs"], "instruction_attributes": ["water resistant"], "instruction_options": ["tattoo grip tape 8pcs"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IN8LT9", "worker_id": "A2RBF3IIJP15IH"}], "B097P8M6MB": [{"asin": "B097P8M6MB", "instruction": "i need to buy a fake security camera. get the one that comes with batteries. buy it in silver.", "attributes": ["easy install", "batteries included"], "options": ["color: silver", "item package quantity: 1"], "instruction_attributes": ["batteries included"], "instruction_options": ["silver"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDPR8YZ", "worker_id": "AR9AU5FY1S3RO"}], "B009DU4QYE": [{"asin": "B009DU4QYE", "instruction": "i want a sulfate free shampoo that is 8 fl oz.", "attributes": ["sulfate free", "paraben free", "natural ingredients", "natural hair"], "options": ["size: 8 fl oz (pack of 1)"], "instruction_attributes": ["sulfate free"], "instruction_options": ["8 fl oz (pack of 1)"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNT3H8Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B071RGNKD2": [{"asin": "B071RGNKD2", "instruction": "i am looking for a usda organic cacao flavored instant cup of oatmeal .", "attributes": ["non gmo", "protein serving", "usda organic", "plant based", "simple ingredients", "artificial flavors"], "options": ["flavor name: cacao", "size: 1.94 ounce (pack of 12)"], "instruction_attributes": ["usda organic"], "instruction_options": ["cacao"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0MVESC9", "worker_id": "A1EREKSZAA9V7B"}], "B07PYDRYWP": [{"asin": "B07PYDRYWP", "instruction": "i am looking for a pack of 4 non gmo flatbread crackers that are sesame", "attributes": ["non gmo", "0g trans"], "options": ["flavor name: sesame and sea salt", "size: 6.7 ounce (pack of 4)"], "instruction_attributes": ["non gmo"], "instruction_options": ["sesame and sea salt", "6.7 ounce (pack of 4)"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ7C0NF", "worker_id": "A2ECRNQ3X5LEXD"}], "B07QJ7J993": [{"asin": "B07QJ7J993", "instruction": "i want a mother's love scented long lasting jewelry jar candle with a size 9 ring.", "attributes": ["lead free", "long lasting"], "options": ["scent: mother's love", "size: ring (size 9)"], "instruction_attributes": ["long lasting"], "instruction_options": ["mother's love", "ring (size 9)"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBCGDJH", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07QJ7J993", "instruction": "i need long lasting lead free candle with a smoky mountains cabin scent.", "attributes": ["lead free", "long lasting"], "options": ["scent: smoky mountains cabin", "size: earrings"], "instruction_attributes": ["lead free", "long lasting"], "instruction_options": ["smoky mountains cabin"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWO16WG", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07QJ7J993", "instruction": "i'm looking for a long lasting jewelry candle with a cotton candy scent; please pick the one with earrings inside.", "attributes": ["lead free", "long lasting"], "options": ["scent: cotton candy", "size: earrings"], "instruction_attributes": ["long lasting"], "instruction_options": ["cotton candy", "earrings"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOG3ONG", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B07QJ7J993", "instruction": "i would like a lead free bracelet birthday cake jar candle.", "attributes": ["lead free", "long lasting"], "options": ["scent: birthday cake", "size: bracelet"], "instruction_attributes": ["lead free"], "instruction_options": ["birthday cake", "bracelet"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCIAKBAE", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07QJ7J993", "instruction": "i want a size 8 black raspberry vanilla candle that is long lasting.", "attributes": ["lead free", "long lasting"], "options": ["scent: black raspberry vanilla", "size: ring (size 8)"], "instruction_attributes": ["long lasting"], "instruction_options": ["black raspberry vanilla", "ring (size 8)"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXJSJUS", "worker_id": "A1WS884SI0SLO4"}], "B07CZS5SM7": [{"asin": "B07CZS5SM7", "instruction": "i am looking for a mint green twin size adult weighted blanket.", "attributes": ["twin size", "super soft", "king size"], "options": ["color: mint green", "size: 41\" x 60\" 10 lbs"], "instruction_attributes": ["twin size"], "instruction_options": ["mint green"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR3SC03", "worker_id": "A1EREKSZAA9V7B"}], "B0000645C9": [{"asin": "B0000645C9", "instruction": "i need a canon powershot s200 with optical zoom.", "attributes": ["optical zoom", "usb port"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIAUL2G", "worker_id": "A2RBF3IIJP15IH"}], "B08FCXCD93": [{"asin": "B08FCXCD93", "instruction": "i want to buy a high speed, high resolution mirrorless camera. get the one with the standard lens kit.", "attributes": ["high resolution", "dust proof", "high speed"], "options": ["style: standard lens kit"], "instruction_attributes": ["high resolution", "high speed"], "instruction_options": ["standard lens kit"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CAB0VT", "worker_id": "AR9AU5FY1S3RO"}], "B07YZL99M8": [{"asin": "B07YZL99M8", "instruction": "i am looking for a slim fit t-shirt of black-5 color.", "attributes": ["slim fit", "short sleeve", "polyester spandex"], "options": ["color: black-5", "size: x-small"], "instruction_attributes": ["slim fit"], "instruction_options": ["black-5"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06JUXK4", "worker_id": "A1Q8PPQQCWGY0D"}], "B09SGBKXB9": [{"asin": "B09SGBKXB9", "instruction": "get me a hand-washable swimsuit in size small.", "attributes": ["hand wash", "nylon spandex", "tummy control", "high waist", "polyester spandex", "tumble dry"], "options": ["color: a2#black", "size: small"], "instruction_attributes": ["hand wash"], "instruction_options": ["small"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRPR2YI", "worker_id": "AR9AU5FY1S3RO"}], "B07Y497YYL": [{"asin": "B07Y497YYL", "instruction": "i need to shop for a heavy duty cell phone case. i'd like one that's black with blue accents.", "attributes": ["dust proof", "compatible apple", "heavy duty"], "options": ["color: black&blue"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black&blue"], "assignment_id": "37TRT2X24116R7L1JO45INKV8RRJB3", "worker_id": "AR9AU5FY1S3RO"}], "B09PMZD9TB": [{"asin": "B09PMZD9TB", "instruction": "i want a pink coat that is 3x large and machine washable.", "attributes": ["quick drying", "machine washable", "laundry bag"], "options": ["color: pink", "size: 3x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["pink", "3x-large"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSFU26E", "worker_id": "A2ECRNQ3X5LEXD"}], "B000EITYUU": [{"asin": "B000EITYUU", "instruction": "i need 2 pack 5 pound resealable bags of fine ground celtic sea salt.", "attributes": ["non gmo", "gluten free", "resealable bag"], "options": ["pattern name: 2-pack", "size: 5 pound (pack of 1)", "style: 2-pack"], "instruction_attributes": ["resealable bag"], "instruction_options": ["2-pack", "5 pound (pack of 1)", "2-pack"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2KAL56", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B000EITYUU", "instruction": "i'm looking for gluten free it was high protein and healthy need to buy.", "attributes": ["non gmo", "gluten free", "resealable bag"], "options": ["pattern name: sea salt + light grey celtic sea salt", "size: 1 pound (pack of 1)", "style: 2-pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["sea salt + light grey celtic sea salt"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKM2VPI", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B000EITYUU", "instruction": "i am looking for sea salt of 2-pack size which is gluten free.", "attributes": ["non gmo", "gluten free", "resealable bag"], "options": ["pattern name: sea salt", "size: 2-pack", "style: 2-pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["2-pack"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSK3621", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B000EITYUU", "instruction": "i'm looking for a 2 pack of sea salt in a resealable bag and gluten free", "attributes": ["non gmo", "gluten free", "resealable bag"], "options": ["pattern name: sea salt", "size: 2-pack", "style: 2-pack"], "instruction_attributes": ["gluten free", "resealable bag"], "instruction_options": ["sea salt", "2-pack", "2-pack"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4JL156", "worker_id": "A2Y2TURT2VEYZN"}], "B09QL71Q7B": [{"asin": "B09QL71Q7B", "instruction": "i am looking for a women's short sleeve tank top size 3x-large.", "attributes": ["quick drying", "machine washable", "loose fit", "long sleeve", "short sleeve", "laundry bag", "daily wear"], "options": ["color: facai-a234-hot pink", "size: 3x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["3x-large"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTV5M7Y", "worker_id": "A1EREKSZAA9V7B"}], "B08G6NGY1J": [{"asin": "B08G6NGY1J", "instruction": "i need a can of ready to eat vegan duck.", "attributes": ["easy use", "shelf stable", "ready eat"], "options": [""], "instruction_attributes": ["ready eat"], "instruction_options": [], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZTMNAR", "worker_id": "A2RBF3IIJP15IH"}], "B09T3BML8K": [{"asin": "B09T3BML8K", "instruction": "i am looking for a solid wood vertical file cabinet that is easy to assemble.", "attributes": ["easy assemble", "engineered wood", "solid wood", "living room"], "options": [""], "instruction_attributes": ["easy assemble", "solid wood"], "instruction_options": [], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX3VD1UD", "worker_id": "A1EREKSZAA9V7B"}], "B09CQ2QHHT": [{"asin": "B09CQ2QHHT", "instruction": "i am looking for 1 pack of 14 inch tape in hair extensions.", "attributes": ["double sided", "hair extensions"], "options": ["color: #2 kc", "size: 14 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["14 inch (pack of 1)"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQ4E1LD", "worker_id": "A1EREKSZAA9V7B"}], "B08LND5CJZ": [{"asin": "B08LND5CJZ", "instruction": "i need a rose gold cell phone case with a tempered glass screen.", "attributes": ["hands free", "glass screen", "tempered glass"], "options": ["color: rose gold"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["rose gold"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z29XGX", "worker_id": "AR9AU5FY1S3RO"}], "B096V6LFW9": [{"asin": "B096V6LFW9", "instruction": "i am looking for high quality 18 inch hair extensions", "attributes": ["high quality", "synthetic hair", "hair extensions"], "options": ["color: tt1b | 30", "size: 18 in"], "instruction_attributes": ["high quality"], "instruction_options": ["18 in"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRUNXJY", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LMLN5YH": [{"asin": "B08LMLN5YH", "instruction": "i'd like to buy a black bullet camera with motion detection.", "attributes": ["1080p hd", "motion detection"], "options": ["color: black"], "instruction_attributes": ["motion detection"], "instruction_options": ["black"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q0YWGY", "worker_id": "AR9AU5FY1S3RO"}], "B07S3Z2N18": [{"asin": "B07S3Z2N18", "instruction": "i would like a woman's large cotton heather t shirt preferably in slate gray.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "star wars"], "options": ["color: slate", "fit type: women", "size: large"], "instruction_attributes": ["heathers cotton", "cotton heather"], "instruction_options": ["slate", "women", "large"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JX9K7G2", "worker_id": "A1WS884SI0SLO4"}], "B099MQDKXM": [{"asin": "B099MQDKXM", "instruction": "i need to buy a new laptop. look for one with a core i5 intel processor, 64 gigabytes of ram, and a 2 terrabyte ssd.", "attributes": ["core i5", "intel core"], "options": ["size: 64gb ddr4 i 2tb ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["64gb ddr4 i 2tb ssd"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOV97ON", "worker_id": "AR9AU5FY1S3RO"}], "B098KYNNF1": [{"asin": "B098KYNNF1", "instruction": "buy me any long sleeve polo as long as it's a size medium.", "attributes": ["classic fit", "long sleeve"], "options": ["color: jade frost", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HG82YHP", "worker_id": "AR9AU5FY1S3RO"}], "B01BY04QQS": [{"asin": "B01BY04QQS", "instruction": "i am looking for a 40ft hdmi cable that is gold plated.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["configuration: hdmi male-male", "pattern name: 1 pack", "size: 40 ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["1 pack", "40 ft"], "assignment_id": "352YTHGRO6NQF252G9RXYWYAL7A4HH", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01BY04QQS", "instruction": "i would like a single 25 foot hdmi 2.1 cable for my blu ray player.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["configuration: hdmi 2.1", "pattern name: 1 pack", "size: 25 ft"], "instruction_attributes": ["blu ray"], "instruction_options": ["hdmi 2.1", "1 pack", "25 ft"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20L5Z0G", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01BY04QQS", "instruction": "i am looking for a 3ft high speed hdmi male-male cable with gold plated.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["configuration: hdmi male-male", "pattern name: 3 pack", "size: 3ft"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["hdmi male-male", "3ft"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X7E3YP", "worker_id": "A1V2JTEEBCXR20"}], "B072PZ683F": [{"asin": "B072PZ683F", "instruction": "add some non-gmo popcorn to my order.", "attributes": ["old fashioned", "non gmo", "0g trans", "high fructose"], "options": [""], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSGV8B6", "worker_id": "AR9AU5FY1S3RO"}], "B08PC7RDVF": [{"asin": "B08PC7RDVF", "instruction": "i want to get a 12-pack of 14 ounce boxes of hand-crafted fettucine.", "attributes": ["low sodium", "hand crafted", "fat free"], "options": ["flavor name: fettucine", "size: 14 ounce (pack of 12)"], "instruction_attributes": ["hand crafted"], "instruction_options": ["fettucine", "14 ounce (pack of 12)"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CNIT2T", "worker_id": "A345TDMHP3DQ3G"}], "B07YCJCLRH": [{"asin": "B07YCJCLRH", "instruction": "i want to find a case for my iphone 11 pro that is easy to install.", "attributes": ["easy install", "wireless charging"], "options": ["color: a05", "size: apple iphone 11 pro"], "instruction_attributes": ["easy install"], "instruction_options": ["apple iphone 11 pro"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G74I47J", "worker_id": "A345TDMHP3DQ3G"}], "B01KLLGE9I": [{"asin": "B01KLLGE9I", "instruction": "i need a rainfall colored and high quality reusable shower cap.", "attributes": ["high quality", "hair treatment"], "options": ["color: rainfall"], "instruction_attributes": ["high quality"], "instruction_options": ["rainfall"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLPKDAZ", "worker_id": "A2RBF3IIJP15IH"}], "B09LTRP7HW": [{"asin": "B09LTRP7HW", "instruction": "i want to find a tv stand made of solid wood for my living room.", "attributes": ["high density", "white item", "high gloss", "solid wood", "storage space", "living room"], "options": [""], "instruction_attributes": ["solid wood", "living room"], "instruction_options": [], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGH2W2O", "worker_id": "A345TDMHP3DQ3G"}], "B08YNG2BWW": [{"asin": "B08YNG2BWW", "instruction": "i need a new watchband for my apple watch se. buy one that's sky blue and waterproof.", "attributes": ["water resistant", "quick release", "compatible apple", "stainless steel"], "options": ["color: sky blue", "size: 38mm | 40mm"], "instruction_attributes": ["water resistant"], "instruction_options": ["sky blue"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YW3HEZ", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08YNG2BWW", "instruction": "i need a water proof watch band for a 42 millimeter apple watch. i want a green one.", "attributes": ["water resistant", "quick release", "compatible apple", "stainless steel"], "options": ["color: facebook green", "size: 42mm | 44mm"], "instruction_attributes": ["water resistant", "compatible apple"], "instruction_options": ["facebook green", "42mm | 44mm"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYYYVHP", "worker_id": "AR9AU5FY1S3RO"}], "B09KBRDLQ5": [{"asin": "B09KBRDLQ5", "instruction": "looking for a coat with hood and long sleeve in black size large for women", "attributes": ["light weight", "fleece lined", "faux fur", "long sleeve"], "options": ["color: black 2", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["black 2", "large"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4Q27K6", "worker_id": "A2Y2TURT2VEYZN"}], "B09P8H2C92": [{"asin": "B09P8H2C92", "instruction": "i would like a monocular for my bird watching.", "attributes": ["dust proof", "easy use", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7T0LHM", "worker_id": "A1WS884SI0SLO4"}], "B08PCJFYZX": [{"asin": "B08PCJFYZX", "instruction": "buy a steel framed end table for the living room.", "attributes": ["steel frame", "living room"], "options": [""], "instruction_attributes": ["steel frame", "living room"], "instruction_options": [], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95PFXQP", "worker_id": "AR9AU5FY1S3RO"}], "B09R1TRCMC": [{"asin": "B09R1TRCMC", "instruction": "i am looking for gold+purple color remote controller for playstation 3 having wireless bluetooth.", "attributes": ["high performance", "wireless bluetooth"], "options": ["color: gold+purple"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["gold+purple"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJR5VGW", "worker_id": "A1Q8PPQQCWGY0D"}], "B09H5NK549": [{"asin": "B09H5NK549", "instruction": "i am looking for swivel bar stools with adjustable height, 1pc.", "attributes": ["height adjustable", "dining room", "living room"], "options": ["color: 2pcs-pu grey-black base", "size: 1pc"], "instruction_attributes": ["height adjustable"], "instruction_options": ["1pc"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5OXF54", "worker_id": "A1EREKSZAA9V7B"}], "B08BZF2945": [{"asin": "B08BZF2945", "instruction": "buy some gray machine washable shorts.", "attributes": ["wash cold", "machine wash", "elastic closure", "elastic waistband", "elastic waist"], "options": ["color: gray", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["gray"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H09J16Z", "worker_id": "AR9AU5FY1S3RO"}], "B08G1C28J9": [{"asin": "B08G1C28J9", "instruction": "i'm looking for a lip gloss base that is non-toxic. it comes in a pink tube.", "attributes": ["non toxic", "long lasting", "easy use"], "options": ["color: pink tube"], "instruction_attributes": ["non toxic"], "instruction_options": ["pink tube"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQP8HI6", "worker_id": "A3EDFA8UQT5GG8"}], "B08P7Y189P": [{"asin": "B08P7Y189P", "instruction": "i'm looking for a set of 6 midcentury desert prints in 11x14\" beige frames. they are a terra cotta color.", "attributes": ["mid century", "living room"], "options": ["color: midcentury terracotta", "size: 11x14 beige framed"], "instruction_attributes": ["mid century"], "instruction_options": ["midcentury terracotta", "11x14 beige framed"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0Q9RAH", "worker_id": "A2DDPSXH2X96RF"}], "B06XCT3QY4": [{"asin": "B06XCT3QY4", "instruction": "i would like a 6 pack of 5 count boxes of gluten free peanut butter fudge crisp bars.", "attributes": ["keto friendly", "low carb", "gluten free"], "options": ["flavor name: peanut butter fudge crisp", "size: 5 count (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["peanut butter fudge crisp", "5 count (pack of 6)"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNT28HO", "worker_id": "A1WS884SI0SLO4"}], "B0876WGZRL": [{"asin": "B0876WGZRL", "instruction": "i am interested in a long sleeved large button down shirt.", "attributes": ["officially licensed", "long sleeve"], "options": ["size: large", "team name: kyle busch"], "instruction_attributes": ["long sleeve"], "instruction_options": ["large"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLVZYBB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09B6RF1VM": [{"asin": "B09B6RF1VM", "instruction": "i am interested in a heavy duty coat rack that is rice white colored.", "attributes": ["wall mounted", "heavy duty", "easy assemble"], "options": ["color: rice white"], "instruction_attributes": ["heavy duty"], "instruction_options": ["rice white"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUFEC30", "worker_id": "A2ECRNQ3X5LEXD"}], "B08C2N8BVB": [{"asin": "B08C2N8BVB", "instruction": "i would like some non gmo strawberries that are 2.5 ounces", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries", "size: 2.5 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["non gmo"], "instruction_options": ["strawberries", "2.5 ounce (pack of 1)"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNX5TPB", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08C2N8BVB", "instruction": "i am looking for a freeze dried bag of beets.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: roasted corn", "size: 2.5 ounce (pack of 1)", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["bag"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOJJTC0", "worker_id": "A2NSS746CFCT4M"}, {"asin": "B08C2N8BVB", "instruction": "i am looking for 1 ounce bag of non-gmo freeze-dried beets.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + tropical fruits", "size: 1 ounce (pack of 12)", "style: bag"], "instruction_attributes": ["non gmo", "freeze dried"], "instruction_options": ["1 ounce (pack of 12)"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ3WSIF", "worker_id": "AJDQGOTMB2D80"}, {"asin": "B08C2N8BVB", "instruction": "need me an organic freeze dried beets in strawberries and apples flavor", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + apples", "size: strawberries 1.2 ounce & raspberries 1.3...", "style: bag"], "instruction_attributes": ["freeze dried"], "instruction_options": ["strawberries + apples"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7XYUR1", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08C2N8BVB", "instruction": "i am looking a non gmo freeze dried low calorie fat free peas 1.8 ounce", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: peas", "size: 1.8 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["non gmo", "freeze dried", "low calorie", "fat free"], "instruction_options": ["peas", "1.8 ounce (pack of 1)"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8LZ4RF", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B08C2N8BVB", "instruction": "i am looking for low calorie dried vegetables of chocolate banana slices flavor.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: chocolate banana slices", "size: 1.2 ounce (pack of 8)", "style: bundle"], "instruction_attributes": ["low calorie"], "instruction_options": ["chocolate banana slices"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0YKPXR", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08C2N8BVB", "instruction": "i would like a 2.5 ounce bundle of blueberries that are usda organic.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: blueberries", "size: 2.5 ounce (pack of 12)", "style: bundle"], "instruction_attributes": ["usda organic"], "instruction_options": ["blueberries", "2.5 ounce (pack of 12)", "bundle"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFIF20W", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08C2N8BVB", "instruction": "i'm looking for a plant based, usda organic freeze dried fruits which is fat free. also choose a pack of 12 weighting 1.5 ounce bundle with strawberries + banana flavored one.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: strawberries + bananas", "size: 1.5 ounce (pack of 12)", "style: bundle"], "instruction_attributes": ["freeze dried", "usda organic", "fat free", "plant based"], "instruction_options": ["strawberries + bananas", "1.5 ounce (pack of 12)", "bundle"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJLAOLL", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B08C2N8BVB", "instruction": "i'm looking for organic freeze-dried beets.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: raspberries", "size: 3 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["non gmo", "freeze dried"], "instruction_options": [], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZPER7F", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B08C2N8BVB", "instruction": "i'm looking for a 1.2 ounce package of freeze dried, non gmo, beets.", "attributes": ["non gmo", "freeze dried", "usda organic", "low calorie", "fat free", "plant based"], "options": ["flavor: bananas and strawberries", "size: 1.2 ounce (pack of 1)", "style: bundle"], "instruction_attributes": ["non gmo", "freeze dried"], "instruction_options": ["1.2 ounce (pack of 1)"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M21X945", "worker_id": "A2JP9IKRHNLRPI"}], "B017M3IXZG": [{"asin": "B017M3IXZG", "instruction": "i am looking for a long lasting edp spray for women.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "37Z929RLGKIZMWY86444AIH4AHCSTQ", "worker_id": "A1EREKSZAA9V7B"}], "B09CV289F8": [{"asin": "B09CV289F8", "instruction": "i am looking for a yellow short sleeve men's hawaiian shirt.", "attributes": ["machine washable", "short sleeve", "button closure", "dry clean"], "options": ["color: yellow", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["yellow"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCFSJSJ", "worker_id": "A1EREKSZAA9V7B"}], "B086VNCP37": [{"asin": "B086VNCP37", "instruction": "i am looking for a solid wood light golden brown stained bookcase.", "attributes": ["wood finish", "solid wood"], "options": ["color: light golden brown | stained"], "instruction_attributes": ["solid wood"], "instruction_options": ["light golden brown | stained"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N3QT7V", "worker_id": "A1EREKSZAA9V7B"}], "B09Q9CSX6M": [{"asin": "B09Q9CSX6M", "instruction": "i am looking for a computer desk with a steel frame and a wood finish that is easy to clean.", "attributes": ["easy clean", "wood finish", "steel frame"], "options": [""], "instruction_attributes": ["easy clean", "wood finish", "steel frame"], "instruction_options": [], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGH4O05", "worker_id": "A1EREKSZAA9V7B"}], "B09MLNQM9R": [{"asin": "B09MLNQM9R", "instruction": "i am looking for a dust proof travel bag.", "attributes": ["dust proof", "easy carry"], "options": [""], "instruction_attributes": ["dust proof"], "instruction_options": [], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR0GA08", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PBXS1XZ": [{"asin": "B09PBXS1XZ", "instruction": "i am interested in orange flats with arch support that are a size 11.5", "attributes": ["open toe", "ankle strap", "high heel", "arch support", "closed toe"], "options": ["color: z92-orange", "size: 11.5"], "instruction_attributes": ["arch support"], "instruction_options": ["z92-orange", "11.5"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYLSQMV", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MW1MRCH": [{"asin": "B09MW1MRCH", "instruction": "i am looking for a gold colored bpa free beauty case.", "attributes": ["bpa free", "fine mist"], "options": ["size: transparent gold"], "instruction_attributes": ["bpa free"], "instruction_options": ["transparent gold"], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y0ENN4", "worker_id": "A2ECRNQ3X5LEXD"}], "B096V4P7PK": [{"asin": "B096V4P7PK", "instruction": "i would like a extra large fushia and leopard tunic that i can machine wash.", "attributes": ["hand wash", "wash cold", "machine wash", "unique design"], "options": ["color: fuchsia&leopard", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["fuchsia&leopard", "x-large"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOLV9MZ", "worker_id": "A1WS884SI0SLO4"}], "B07JZWV8WF": [{"asin": "B07JZWV8WF", "instruction": "i want to find a pair of blue men's work shoes in size 10. the shoes must be made of high quality materials.", "attributes": ["lace closure", "quality materials"], "options": ["color: blue", "size: 10 us"], "instruction_attributes": ["quality materials"], "instruction_options": ["blue", "10 us"], "assignment_id": "3X65QVEQIBXVW21709CD9M35U19LCR", "worker_id": "A345TDMHP3DQ3G"}], "B096RZF13X": [{"asin": "B096RZF13X", "instruction": "i need a peacock blue halter lace short homecoming dress in size 2 that can be hand washed.", "attributes": ["hand wash", "lace closure", "drawstring closure"], "options": ["color: peacock blue", "size: 2"], "instruction_attributes": ["hand wash"], "instruction_options": ["peacock blue", "2"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FFI3DJ", "worker_id": "A2RBF3IIJP15IH"}], "B01HSFND6W": [{"asin": "B01HSFND6W", "instruction": "i want to get a two-count package of gray barstools that i can put in my dining room.", "attributes": ["contemporary style", "dining room"], "options": ["color: grey", "style: 2 pack"], "instruction_attributes": ["dining room"], "instruction_options": ["grey", "2 pack"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LCEL00", "worker_id": "A345TDMHP3DQ3G"}], "B07B8BBFKL": [{"asin": "B07B8BBFKL", "instruction": "i need a shampoo set that is sulfate free and is 16 fl oz.", "attributes": ["sulfate free", "paraben free", "damaged hair", "dry hair"], "options": ["size: 16 fl oz (pack of 1)"], "instruction_attributes": ["sulfate free"], "instruction_options": ["16 fl oz (pack of 1)"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCWCFGGQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B01K6CHVKI": [{"asin": "B01K6CHVKI", "instruction": "i would like a charcoal oval rug thats 10 ft x 13 ft and easy to clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: charcoal", "item shape: oval", "size: 10 ft x 13 ft"], "instruction_attributes": ["easy clean"], "instruction_options": ["charcoal", "oval", "10 ft x 13 ft"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOV9O74", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01K6CHVKI", "instruction": "i want an octagonal area right that is light green in color and is easy to clean.", "attributes": ["easy clean", "spot clean"], "options": ["color: light green", "item shape: octagonal", "size: 3 ft 3 in x 5 ft 3 in"], "instruction_attributes": ["easy clean"], "instruction_options": ["light green", "octagonal"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIKDFES", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B01K6CHVKI", "instruction": "i am looking for a red easy to clean area rugs", "attributes": ["easy clean", "spot clean"], "options": ["color: red", "item shape: oval", "size: 7 ft x 10 ft"], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UQHEZR", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B01K6CHVKI", "instruction": "i am looking for a light green octagonal plush area rug.", "attributes": ["easy clean", "spot clean"], "options": ["color: light green", "item shape: octagonal", "size: 5 ft x 7 ft 7 in"], "instruction_attributes": ["easy clean"], "instruction_options": ["light green", "octagonal"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DU1OTL", "worker_id": "A1EREKSZAA9V7B"}], "B07GL3PWQ1": [{"asin": "B07GL3PWQ1", "instruction": "get some shelf stable baguettes.", "attributes": ["shelf stable", "simple ingredients"], "options": [""], "instruction_attributes": ["shelf stable"], "instruction_options": [], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOB6ATD", "worker_id": "AR9AU5FY1S3RO"}], "B084YV58DJ": [{"asin": "B084YV58DJ", "instruction": "i would like some long lasting perfume.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZIU7RX", "worker_id": "A1WS884SI0SLO4"}], "B07R1HDL4M": [{"asin": "B07R1HDL4M", "instruction": "buy some cotton rounds that are appropriate for sensitive skin, okay?", "attributes": ["non toxic", "high quality", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNPJFJH", "worker_id": "AR9AU5FY1S3RO"}], "B095KSSZ48": [{"asin": "B095KSSZ48", "instruction": "i am looking for an eco friendly cruelty free orange ylang shampoo and conditioner combo pack.", "attributes": ["plant based", "eco friendly", "cruelty free", "tea tree", "hair growth"], "options": ["style: orange ylang shampoo & conditioner combo pack"], "instruction_attributes": ["eco friendly", "cruelty free"], "instruction_options": ["orange ylang shampoo & conditioner combo pack"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49E9DTO", "worker_id": "A1EREKSZAA9V7B"}], "B089SXDC1N": [{"asin": "B089SXDC1N", "instruction": "i am looking for loose fitting men's cargo pants with an elastic waist size 32.", "attributes": ["loose fit", "machine wash", "elastic waist", "elastic closure", "elastic waistband"], "options": ["color: 2011 grey", "size: 32"], "instruction_attributes": ["loose fit", "elastic waist"], "instruction_options": ["32"], "assignment_id": "31EUONYN26DZ1WA44INARVVOADQVOD", "worker_id": "A1EREKSZAA9V7B"}], "B09R9MWSG7": [{"asin": "B09R9MWSG7", "instruction": "i'd like to see large bathing suits for women that are quick drying and loose fitting.", "attributes": ["quick drying", "loose fit", "tummy control", "high waist", "polyester spandex", "short sleeve"], "options": ["color: hot pink", "size: large"], "instruction_attributes": ["quick drying", "loose fit"], "instruction_options": ["large"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG4ILS8", "worker_id": "A3EDFA8UQT5GG8"}], "B08MKTY3J9": [{"asin": "B08MKTY3J9", "instruction": "can you find me a rose hydrations set to take care of my skin that has natural ingredients like green tea?", "attributes": ["seed oil", "green tea", "natural ingredients"], "options": [""], "instruction_attributes": ["green tea", "natural ingredients"], "instruction_options": [], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7TDHLV", "worker_id": "A2DDPSXH2X96RF"}], "B09HHDBKWG": [{"asin": "B09HHDBKWG", "instruction": "buy me a non-slip razor stand.", "attributes": ["non slip", "hair removal"], "options": [""], "instruction_attributes": ["non slip"], "instruction_options": [], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN6R8IR", "worker_id": "AR9AU5FY1S3RO"}], "B07F43F67Z": [{"asin": "B07F43F67Z", "instruction": "i need a dermatologist tested honest beauty elevated hydration mist.", "attributes": ["dermatologist tested", "cruelty free", "hyaluronic acid"], "options": [""], "instruction_attributes": ["dermatologist tested"], "instruction_options": [], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQPIIHH", "worker_id": "A2RBF3IIJP15IH"}], "B07TTXZS9Z": [{"asin": "B07TTXZS9Z", "instruction": "i am looking for an easy to use meat masala flavored seasoning mix for a traditional meat stew.", "attributes": ["easy use", "artificial flavors"], "options": ["flavor name: meat masala", "size: 1.76 ounce (pack of 2)"], "instruction_attributes": ["easy use"], "instruction_options": ["meat masala"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYMWQ97", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07TTXZS9Z", "instruction": "i am looking for spice powder with some artificial flavor such as meat masala", "attributes": ["easy use", "artificial flavors"], "options": ["flavor name: meat masala", "size: 3.5 ounce"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["meat masala"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFNKME5", "worker_id": "A16M39T60N60NO"}, {"asin": "B07TTXZS9Z", "instruction": "i would like a 3.52 ounce packet of kat a kat seasoning that's easy to use.", "attributes": ["easy use", "artificial flavors"], "options": ["flavor name: kat a kat", "size: 3.52 ounce (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["kat a kat", "3.52 ounce (pack of 6)"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9DM2VG", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07TTXZS9Z", "instruction": "i am looking for some easy to use chicken handi indian seasoning mix.", "attributes": ["easy use", "artificial flavors"], "options": ["flavor name: chicken handi", "size: pack of 4"], "instruction_attributes": ["easy use"], "instruction_options": ["chicken handi"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK49O6A3", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07TTXZS9Z", "instruction": "i want a 2.1 ounce package of chicken masala seasoning that's easy to use.", "attributes": ["easy use", "artificial flavors"], "options": ["flavor name: chicken masala", "size: 2.1 ounce (pack of 1)"], "instruction_attributes": ["easy use"], "instruction_options": ["chicken masala", "2.1 ounce (pack of 1)"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUUDICMH", "worker_id": "A1WS884SI0SLO4"}], "B09BDDB9HF": [{"asin": "B09BDDB9HF", "instruction": "i'd like to buy a nightsand that's made out of engineered wood.", "attributes": ["assembly required", "engineered wood"], "options": [""], "instruction_attributes": ["engineered wood"], "instruction_options": [], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1J16F4", "worker_id": "AR9AU5FY1S3RO"}], "B08BR9YDMK": [{"asin": "B08BR9YDMK", "instruction": "looking for temporary tattoos easy apply and waterproof with pattern name fluttery", "attributes": ["plant based", "easy apply", "cruelty free", "long lasting"], "options": ["pattern name: fluttery"], "instruction_attributes": ["easy apply"], "instruction_options": ["fluttery"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCF8E01", "worker_id": "A2Y2TURT2VEYZN"}], "B07Z1HD9C5": [{"asin": "B07Z1HD9C5", "instruction": "i am looking for a three piece assortment of individually wrapped bakery gifts that are chocolate caramels.", "attributes": ["individually wrapped", "artificial ingredients", "simple ingredients", "natural ingredients"], "options": ["flavor name: dark and milk chocolate caramel", "size: 3 piece assortment"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["dark and milk chocolate caramel", "3 piece assortment"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBC2JD9", "worker_id": "A2ECRNQ3X5LEXD"}], "B086HDW5T5": [{"asin": "B086HDW5T5", "instruction": "i am looking for hair extensions that are gray and 26 inches.", "attributes": ["double sided", "hair extensions", "hair loss"], "options": ["color: x-#gray", "size: 26 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["x-#gray", "26 inch"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQA119K", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B086HDW5T5", "instruction": "i want an 18 inch sunny human hair extensions tape.", "attributes": ["double sided", "hair extensions", "hair loss"], "options": ["color: #4 | 27 | 4 brown mix caramel blonde", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["18 inch"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTTR5EX", "worker_id": "A2RBF3IIJP15IH"}], "B086ZCTH3P": [{"asin": "B086ZCTH3P", "instruction": "get me some twenty four inch natural hair extensions. buy color number eight.", "attributes": ["hair extensions", "natural hair"], "options": ["color: #8 | 60 | 18", "size: 24 inch"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["#8 | 60 | 18", "24 inch"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NKY2PY", "worker_id": "AR9AU5FY1S3RO"}], "B083K37BSD": [{"asin": "B083K37BSD", "instruction": "i am interested in a large short sleeved shirt that is multicolored.", "attributes": ["long lasting", "button closure", "polyester spandex", "short sleeve", "tumble dry"], "options": ["color: multi010", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["multi010", "large"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54OL83I", "worker_id": "A2ECRNQ3X5LEXD"}], "B08NRMRDTM": [{"asin": "B08NRMRDTM", "instruction": "i am looking for 1 pound of nut free christmas candy.", "attributes": ["nut free", "non gmo", "great gift", "party supplies"], "options": ["size: 1 pound (pack of 1)"], "instruction_attributes": ["nut free"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLWNAVU", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08NRMRDTM", "instruction": "i am looking for 1 pound of nut free christmas candy.", "attributes": ["nut free", "non gmo", "great gift", "party supplies"], "options": ["size: 1 pound (pack of 1)"], "instruction_attributes": ["nut free"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9NCTV6", "worker_id": "A1EREKSZAA9V7B"}], "B09PHCMGRR": [{"asin": "B09PHCMGRR", "instruction": "i am interested in rose gold eyebrow trimmers.", "attributes": ["rose gold", "stainless steel", "hair removal"], "options": [""], "instruction_attributes": ["rose gold"], "instruction_options": [], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZOB3KS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PJ72WM1": [{"asin": "B09PJ72WM1", "instruction": "i need white womens high waist bell-bottomed pants in size x-large.", "attributes": ["wide leg", "tummy control", "high waist", "button closure", "gym workout"], "options": ["color: white", "size: x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["white", "x-large"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQ8IKVK", "worker_id": "A2RBF3IIJP15IH"}], "B09KH8VTW8": [{"asin": "B09KH8VTW8", "instruction": "i am interested in a lightweight hoodie that is red and x-large.", "attributes": ["light weight", "fleece lined", "hand wash", "long sleeve", "faux fur", "short sleeve", "teen girls"], "options": ["color: red", "size: x-large"], "instruction_attributes": ["light weight"], "instruction_options": ["red", "x-large"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4YVYXS", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NDLGGS1": [{"asin": "B07NDLGGS1", "instruction": "i am interested in a synthetic wig that is silver.", "attributes": ["synthetic hair", "natural hair"], "options": ["color: rl56 | 60 silver mist"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["rl56 | 60 silver mist"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YW8HE4", "worker_id": "A2ECRNQ3X5LEXD"}], "B07QNR3PN1": [{"asin": "B07QNR3PN1", "instruction": "i need a pair of shorts. make sure they're made out of quality materials and buy them in a size extra small.", "attributes": ["hand wash", "fashion design", "quality materials"], "options": ["color: w-navy", "size: x-small"], "instruction_attributes": ["quality materials"], "instruction_options": ["x-small"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHUYBLAC", "worker_id": "AR9AU5FY1S3RO"}], "B09SZ8YHQN": [{"asin": "B09SZ8YHQN", "instruction": "i need a pair of sandles with an ankle strap in size eight wide, please.", "attributes": ["open toe", "closed toe", "ankle strap"], "options": ["color: 01-black", "size: 8 wide"], "instruction_attributes": ["ankle strap"], "instruction_options": ["8 wide"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT34XHJI", "worker_id": "AR9AU5FY1S3RO"}], "B09PDTSB4K": [{"asin": "B09PDTSB4K", "instruction": "i would like some black tongue cleaners for my bad breath.", "attributes": ["easy clean", "easy use", "high quality", "stainless steel", "bad breath", "fresh breath"], "options": ["color: black"], "instruction_attributes": ["bad breath"], "instruction_options": ["black"], "assignment_id": "3TE22NPXPMMW3QH7127E47P6G2H44O", "worker_id": "A1WS884SI0SLO4"}], "B07CL8ZHXS": [{"asin": "B07CL8ZHXS", "instruction": "i want some hand cream for dry and sensitive hands in a grapefruit scent.", "attributes": ["fragrance free", "cruelty free", "sensitive skin"], "options": ["scent: honeyed grapefruit", "size: 3.4 fl oz (pack of 1)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["honeyed grapefruit"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9BJZRT", "worker_id": "A19317A3X87NVM"}], "B08228LTKC": [{"asin": "B08228LTKC", "instruction": "get me some twin-sized flat sheets in gray.", "attributes": ["twin size", "super soft"], "options": ["color: gray", "size: king (flat sheets only)"], "instruction_attributes": ["twin size"], "instruction_options": ["gray"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGHN2WF", "worker_id": "AR9AU5FY1S3RO"}], "B08PP8QK5M": [{"asin": "B08PP8QK5M", "instruction": "looking for flexible curling rods in blue for natural and dry hair easy to use in size 9.45 x 0.55", "attributes": ["easy use", "natural hair", "dry hair"], "options": ["color: blue", "size: 9.45 x 0.55"], "instruction_attributes": ["easy use", "natural hair", "dry hair"], "instruction_options": ["blue", "9.45 x 0.55"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZI5R7S", "worker_id": "A2Y2TURT2VEYZN"}], "B09N8T4QNV": [{"asin": "B09N8T4QNV", "instruction": "find me a clear ultra hd tempered glass screen protector for my samsung galaxy s22 ultra 5g. it has a 6.8\" screen, and i'll need a 3 pack.", "attributes": ["ultra hd", "easy install", "tempered glass"], "options": ["color: clear"], "instruction_attributes": ["ultra hd", "tempered glass"], "instruction_options": ["clear"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IFIM2H", "worker_id": "A2DDPSXH2X96RF"}], "B092VRBMN3": [{"asin": "B092VRBMN3", "instruction": "i would like a medium sized dress with a elastic waist.", "attributes": ["elastic waist", "tumble dry"], "options": ["size: medium"], "instruction_attributes": ["elastic waist"], "instruction_options": ["medium"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7KPI3Z", "worker_id": "A1WS884SI0SLO4"}], "B07H432DKS": [{"asin": "B07H432DKS", "instruction": "i am looking for a certified refurbished laser printer.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3P1P63", "worker_id": "A1Q8PPQQCWGY0D"}], "B016MDQ6B0": [{"asin": "B016MDQ6B0", "instruction": "i'm looking for hyaluronic acid serum for face -1 fl oz (pack of 1)", "attributes": ["anti aging", "hyaluronic acid"], "options": ["size: 1 fl oz (pack of 1)"], "instruction_attributes": ["hyaluronic acid"], "instruction_options": ["1 fl oz (pack of 1)"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWOXPFZ", "worker_id": "A258PTOZ3D2TQR"}], "B001JO4O80": [{"asin": "B001JO4O80", "instruction": "i want to get gluten free chicken and apple sausages that are organic.", "attributes": ["non gmo", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NKXP2K", "worker_id": "A345TDMHP3DQ3G"}], "B08YNRD68R": [{"asin": "B08YNRD68R", "instruction": "i am looking for an easy to carry bluetooth speaker that is black.", "attributes": ["easy carry", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["easy carry"], "instruction_options": ["black"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HMPOWD", "worker_id": "A1EREKSZAA9V7B"}], "B07QD4WHMZ": [{"asin": "B07QD4WHMZ", "instruction": "i'd like to find a 1-pack of hdmi and dp cables that are three feet long. they need to have gold plating.", "attributes": ["1080p hd", "gold plated", "usb port"], "options": ["pattern name: cable + dp cable - 6 feet, 10-pack", "size: 3 feet", "style: 1-pack"], "instruction_attributes": ["gold plated"], "instruction_options": ["cable + dp cable - 6 feet, 10-pack", "3 feet", "1-pack"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDXDIC8", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07QD4WHMZ", "instruction": "i am looking for a uni-directional displayport to hdmi cable for usb port which capable of 1080p hd quality. also choose 25 feet in length and 10-pack", "attributes": ["1080p hd", "gold plated", "usb port"], "options": ["pattern name: cable + cable - 10 feet", "size: 25 feet", "style: 10-pack"], "instruction_attributes": ["1080p hd", "usb port"], "instruction_options": ["25 feet", "10-pack"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCUK5QA", "worker_id": "A2HMEGTAFO0CS8"}, {"asin": "B07QD4WHMZ", "instruction": "i need a display usb port for 1080p hd to hdmi. pick one that is 10ft", "attributes": ["1080p hd", "gold plated", "usb port"], "options": ["pattern name: cable", "size: 10 feet", "style: 5-pack"], "instruction_attributes": ["1080p hd", "usb port"], "instruction_options": ["10 feet"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCRP5Q9", "worker_id": "A31PW970Z2PC5P"}, {"asin": "B07QD4WHMZ", "instruction": "i am looking for a ten foot gold plated displayport to hdmi cable.", "attributes": ["1080p hd", "gold plated", "usb port"], "options": ["pattern name: cable + desk chair", "size: 10 feet", "style: 5-pack"], "instruction_attributes": ["gold plated"], "instruction_options": ["10 feet"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAC1IFJ", "worker_id": "A1EREKSZAA9V7B"}], "B08N5NQ869": [{"asin": "B08N5NQ869", "instruction": "i would like a venetian bronze doorbell only motion detector for my door.", "attributes": ["1080p hd", "motion detection"], "options": ["color: venetian bronze", "configuration: doorbell only"], "instruction_attributes": ["motion detection"], "instruction_options": ["venetian bronze", "doorbell only"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TA6NM6", "worker_id": "A1WS884SI0SLO4"}], "B09RDXT5G8": [{"asin": "B09RDXT5G8", "instruction": "i am looking for chocolate gifts for valentine's day.", "attributes": ["hand crafted", "valentine day"], "options": [""], "instruction_attributes": ["valentine day"], "instruction_options": [], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWWZ1RZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B01K8T6V0A": [{"asin": "B01K8T6V0A", "instruction": "i would like some gnocchi that is easy to prepare.", "attributes": ["easy prepare", "gmo free", "shelf stable", "quality ingredients", "natural ingredients"], "options": [""], "instruction_attributes": ["easy prepare"], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1FHU3O", "worker_id": "A2ECRNQ3X5LEXD"}], "B08NZ512GL": [{"asin": "B08NZ512GL", "instruction": "i am looking for a gift basket that has pancakes, muffins, jam and syrup.", "attributes": ["hand crafted", "gift basket", "perfect gift"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYMD9Q7", "worker_id": "A1EREKSZAA9V7B"}], "B081R831MX": [{"asin": "B081R831MX", "instruction": "i am looking for silver cake toppers for a baby shower.", "attributes": ["cupcake picks", "party supplies", "baby shower", "birthday party"], "options": ["color: silver"], "instruction_attributes": ["baby shower"], "instruction_options": ["silver"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7VDSDW", "worker_id": "A2ECRNQ3X5LEXD"}], "B072NFDZ8K": [{"asin": "B072NFDZ8K", "instruction": "i need a red pair of skechers men's performance shoes with synthetic soles in size 9.5.", "attributes": ["machine washable", "synthetic sole"], "options": ["color: red", "size: 9.5 x-wide"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["red", "9.5 x-wide"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSG88BJ", "worker_id": "A2RBF3IIJP15IH"}], "B07K56587S": [{"asin": "B07K56587S", "instruction": "i want to find an xxl sized granite heather colored champion crew neck sweatshirt that is a poly cotton blend.", "attributes": ["polyester cotton", "tumble dry"], "options": ["color: granite heather", "size: xx-large"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["granite heather", "xx-large"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7FMN5M", "worker_id": "A2DDPSXH2X96RF"}], "B08L215MCC": [{"asin": "B08L215MCC", "instruction": "i am interested in highly pigmented eyeshadow in the color sienna.", "attributes": ["highly pigmented", "easy apply", "long lasting", "eye shadow"], "options": ["color: sienna"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["sienna"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACO1NHR", "worker_id": "A2ECRNQ3X5LEXD"}], "B00CF3OZ4M": [{"asin": "B00CF3OZ4M", "instruction": "i'd like to see double sided box spring mattresses.", "attributes": ["double sided", "box spring"], "options": [""], "instruction_attributes": ["double sided", "box spring"], "instruction_options": [], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXS5PWAQ", "worker_id": "A3EDFA8UQT5GG8"}], "B0979DKSDS": [{"asin": "B0979DKSDS", "instruction": "i am looking for a truffle oil and mushroom pizza with artificial flavors.", "attributes": ["high fructose", "artificial flavors"], "options": [""], "instruction_attributes": ["artificial flavors"], "instruction_options": [], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OPWOPS", "worker_id": "A1EREKSZAA9V7B"}], "B07FD4XRJB": [{"asin": "B07FD4XRJB", "instruction": "i need a 10 foot high speed tnp hdmi cable left angle.", "attributes": ["blu ray", "high speed"], "options": ["size: 10 feet", "style: left angle"], "instruction_attributes": ["high speed"], "instruction_options": ["10 feet", "left angle"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFBE5UV", "worker_id": "A2RBF3IIJP15IH"}], "B07VNPHTB2": [{"asin": "B07VNPHTB2", "instruction": "i would like a remote control that has batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHB9USO3", "worker_id": "A2ECRNQ3X5LEXD"}], "B083QB5YYV": [{"asin": "B083QB5YYV", "instruction": "i want to buy some hair extensions in color 613 bleach blonde in a two pack.", "attributes": ["hair extensions", "hair loss"], "options": ["color: 613# bleach blonde", "size: 2 count (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["613# bleach blonde", "2 count (pack of 1)"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49E2DTH", "worker_id": "A2YNPKYEFDZ6C9"}], "B082HD292M": [{"asin": "B082HD292M", "instruction": "i need small boxer briefs that have an elastic waistband", "attributes": ["wash cold", "machine wash", "elastic waistband", "polyester spandex"], "options": ["size: small"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["small"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VXFFGQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Q5XRMLD": [{"asin": "B07Q5XRMLD", "instruction": "i would like a faux leather light brown chair.", "attributes": ["easy assemble", "faux leather"], "options": ["color: light brown"], "instruction_attributes": ["faux leather"], "instruction_options": ["light brown"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTFL4DC", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LFZ6LGZ": [{"asin": "B08LFZ6LGZ", "instruction": "i need a set of non slip eyebrow epilator.", "attributes": ["non slip", "hair removal"], "options": ["color: style 1"], "instruction_attributes": ["non slip"], "instruction_options": ["style 1"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHW07BT", "worker_id": "A19317A3X87NVM"}], "B0915TJYRJ": [{"asin": "B0915TJYRJ", "instruction": "i need a stainless steel black and large easuny watch band.", "attributes": ["quick release", "easy install", "stainless steel"], "options": ["color: black | white | light gray", "size: large"], "instruction_attributes": ["stainless steel"], "instruction_options": ["black | white | light gray", "large"], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ0ULRRD", "worker_id": "A2RBF3IIJP15IH"}], "B087LNZ7P4": [{"asin": "B087LNZ7P4", "instruction": "get me some gluten free tortilla chips with sea salt.", "attributes": ["gluten free", "artificial flavors"], "options": ["flavor name: sea salt tortilla", "size: 0.77 ounce (pack of 24)"], "instruction_attributes": ["gluten free"], "instruction_options": ["sea salt tortilla"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS3540160UM6", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B087LNZ7P4", "instruction": "i would like 10 sweet and savory variety packs of gluten free potato sticks.", "attributes": ["gluten free", "artificial flavors"], "options": ["flavor name: sweet & savory variety pack", "size: pack of 10"], "instruction_attributes": ["gluten free"], "instruction_options": ["sweet & savory variety pack", "pack of 10"], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVHQIBO", "worker_id": "A1WS884SI0SLO4"}], "B073H4LFF4": [{"asin": "B073H4LFF4", "instruction": "i am interested in closed toe muels that are blue and size 10 narrow.", "attributes": ["ethylene vinyl", "vinyl acetate", "closed toe"], "options": ["color: blue", "size: 10 narrow women | 8 narrow men"], "instruction_attributes": ["closed toe"], "instruction_options": ["blue", "10 narrow women | 8 narrow men"], "assignment_id": "3N8OEVH1F204BC17361WW31GEKKOOV", "worker_id": "A2ECRNQ3X5LEXD"}], "B083PJWR17": [{"asin": "B083PJWR17", "instruction": "i need women's olive leather moccasins in size 9.5 wide.", "attributes": ["day comfort", "synthetic sole"], "options": ["color: olive", "size: 9.5 wide"], "instruction_attributes": ["day comfort"], "instruction_options": [], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQM10PZ", "worker_id": "A2RBF3IIJP15IH"}], "B09QBY9R4M": [{"asin": "B09QBY9R4M", "instruction": "i am looking for a high power monocular with phone holder.", "attributes": ["high power", "bird watching"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME91X2DM", "worker_id": "A1Q8PPQQCWGY0D"}], "B072M4L644": [{"asin": "B072M4L644", "instruction": "i am looking for organic snacks with real fruit.", "attributes": ["certified organic", "gluten free", "real fruit", "high fructose", "artificial flavors"], "options": [""], "instruction_attributes": ["real fruit"], "instruction_options": [], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4AL8L5", "worker_id": "A1EREKSZAA9V7B"}], "B07M77GMQD": [{"asin": "B07M77GMQD", "instruction": "i want to find a spinning facial brush that is water resistant and comes with a storage case. make sure it's the mint green one from touchbeauty.", "attributes": ["water resistant", "storage case"], "options": ["color: mint green"], "instruction_attributes": ["water resistant", "storage case"], "instruction_options": ["mint green"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V1LU2H", "worker_id": "A2DDPSXH2X96RF"}], "B07NX259SR": [{"asin": "B07NX259SR", "instruction": "get some barbecue vegetable chips. make sure they're nut-free.", "attributes": ["nut free", "plant based", "gluten free", "non gmo", "low calorie"], "options": ["flavor name: barbecue", "size: 4 ounce (pack of 12)"], "instruction_attributes": ["nut free"], "instruction_options": ["barbecue"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC520RKT", "worker_id": "AR9AU5FY1S3RO"}], "B08H8K6VCJ": [{"asin": "B08H8K6VCJ", "instruction": "i am interested in a tempered glass iphone case that is blue", "attributes": ["hands free", "glass screen", "tempered glass"], "options": ["color: blue"], "instruction_attributes": ["tempered glass"], "instruction_options": ["blue"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCLZVSNU", "worker_id": "A2ECRNQ3X5LEXD"}], "B08T66H3KS": [{"asin": "B08T66H3KS", "instruction": "i need a pair of shoes with rubber soles. remember to get size seven and a half women's.", "attributes": ["anti slip", "rubber outsole", "rubber sole"], "options": ["color: black", "size: 7.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["7.5"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFRJE3N", "worker_id": "AR9AU5FY1S3RO"}], "B081RP76FY": [{"asin": "B081RP76FY", "instruction": "i am looking for cake toppers for a birthday party.", "attributes": ["birthday party", "party supplies"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21KDQFL", "worker_id": "A2ECRNQ3X5LEXD"}], "B09J2FYN62": [{"asin": "B09J2FYN62", "instruction": "i am looking for a phone case for iphone 13 of sunflower america flag color that is easy to install.", "attributes": ["easy install", "easy use", "tempered glass"], "options": ["color: sunflower america flag", "size: iphone 13\uff086.1inch\uff09"], "instruction_attributes": ["easy install"], "instruction_options": ["sunflower america flag", "iphone 13\uff086.1inch\uff09"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5OAX6Z", "worker_id": "A1Q8PPQQCWGY0D"}], "B07VL2H8KN": [{"asin": "B07VL2H8KN", "instruction": "i'm looking for a gameboy should to be easy to instal and to use for an iphone11 pro", "attributes": ["dust proof", "easy install", "easy use"], "options": ["color: black", "size: for iphone 11 pro"], "instruction_attributes": ["easy install", "easy use"], "instruction_options": ["for iphone 11 pro"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6G5B28", "worker_id": "A19Q021KR28CS8"}, {"asin": "B07VL2H8KN", "instruction": "i want a dust proof case for my iphone 11. it should be black and easy to install.", "attributes": ["dust proof", "easy install", "easy use"], "options": ["color: black", "size: for iphone 11"], "instruction_attributes": ["dust proof", "easy install"], "instruction_options": ["black", "for iphone 11"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98UQYKN", "worker_id": "A1NF6PELRKACS9"}], "B097Q3XVY8": [{"asin": "B097Q3XVY8", "instruction": "i am interested in a loose fit t-shirt that is blue and 4x large.", "attributes": ["loose fit", "wash cold", "hand wash", "soft material", "short sleeve", "long sleeve"], "options": ["color: blue", "size: 4x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["blue", "4x-large"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDPEY8C", "worker_id": "A2ECRNQ3X5LEXD"}], "B07FRCH7QL": [{"asin": "B07FRCH7QL", "instruction": "i want a hair loss and thinning hair product for a hair treatment, water based", "attributes": ["hair loss", "hair growth", "hair treatment"], "options": [""], "instruction_attributes": ["hair treatment"], "instruction_options": [], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VWHWYP", "worker_id": "A2Y2TURT2VEYZN"}], "B08F18QL36": [{"asin": "B08F18QL36", "instruction": "i want a eco friendly xiao jian swivel computer chair.", "attributes": ["eco friendly", "pu leather"], "options": ["color: f"], "instruction_attributes": ["eco friendly"], "instruction_options": ["f"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCUG4QN", "worker_id": "A2RBF3IIJP15IH"}], "B09JWZXCD3": [{"asin": "B09JWZXCD3", "instruction": "i would like a red cupcake topper for a baby shower.", "attributes": ["hand crafted", "party supplies", "baby shower"], "options": ["color: red"], "instruction_attributes": ["baby shower"], "instruction_options": ["red"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEITQT9J", "worker_id": "A1WS884SI0SLO4"}], "B09MP3SDL2": [{"asin": "B09MP3SDL2", "instruction": "i want a queen size upholstered platform bed.", "attributes": ["button tufted", "queen size", "assembly required", "easy assemble", "box spring", "solid wood"], "options": [""], "instruction_attributes": ["queen size"], "instruction_options": [], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9M3VTX", "worker_id": "A2RBF3IIJP15IH"}], "B09HC9NXDF": [{"asin": "B09HC9NXDF", "instruction": "find counter height table set with socket space saving for dining room in brawn/beige colors", "attributes": ["space saving", "assembly required", "wood frame", "dining room"], "options": ["color: brown table+beige stool"], "instruction_attributes": ["space saving", "dining room"], "instruction_options": ["brown table+beige stool"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQP7IH6", "worker_id": "A2Y2TURT2VEYZN"}], "B08B485FBV": [{"asin": "B08B485FBV", "instruction": "i need a 1 fl oz bottle of organic neem oil for hair growth.", "attributes": ["long lasting", "natural ingredients", "hair growth", "hair loss", "fine lines", "dry skin"], "options": ["size: 1 fl oz (pack of 1)"], "instruction_attributes": ["hair growth"], "instruction_options": ["1 fl oz (pack of 1)"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7TYHLG", "worker_id": "A2RBF3IIJP15IH"}], "B08BLGXXJH": [{"asin": "B08BLGXXJH", "instruction": "i am interested in a plug and play hdmi to vga adapter.", "attributes": ["power amplifier", "plug play"], "options": [""], "instruction_attributes": ["plug play"], "instruction_options": [], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C484I03", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FJCXRKW": [{"asin": "B09FJCXRKW", "instruction": "i am interested in cake topper party supplies.", "attributes": ["easy use", "party supplies"], "options": [""], "instruction_attributes": ["party supplies"], "instruction_options": [], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPE2VQF", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZGVV9Z6": [{"asin": "B07ZGVV9Z6", "instruction": "looking for grand court adidas for everyday wear size 9 in white", "attributes": ["regular fit", "rubber sole", "everyday wear"], "options": ["color: white | white | white", "size: 9"], "instruction_attributes": ["everyday wear"], "instruction_options": ["white | white | white", "9"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20L80ZK", "worker_id": "A2Y2TURT2VEYZN"}], "B0859MT52F": [{"asin": "B0859MT52F", "instruction": "i'm looking for a red carbon fiber decal for my xbox.", "attributes": ["high resolution", "carbon fiber"], "options": ["color: red carbon fiber"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["red carbon fiber"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1JATIZ", "worker_id": "A19317A3X87NVM"}, {"asin": "B0859MT52F", "instruction": "i am looking for a red carbon fiber faceplates, protectors & skins with high resolution.", "attributes": ["high resolution", "carbon fiber"], "options": ["color: red carbon fiber"], "instruction_attributes": ["high resolution"], "instruction_options": ["red carbon fiber"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U6ZMAJ", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B0859MT52F", "instruction": "i am looking for an xbox compatible vinyl skin that has a black carbon fiber design.", "attributes": ["high resolution", "carbon fiber"], "options": ["color: mts black"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["mts black"], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6IQEEZ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B0859MT52F", "instruction": "that video game is really high resolution, so room background color is silver.", "attributes": ["high resolution", "carbon fiber"], "options": ["color: mts #2 (silver)"], "instruction_attributes": [], "instruction_options": ["mts #2 (silver)"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7N9OB3", "worker_id": "ASL9LVC97FUCZ"}], "B09MMBHZ98": [{"asin": "B09MMBHZ98", "instruction": "i want to find a pink orthodontic retainer storage case that's easy to carry.", "attributes": ["easy carry", "non toxic", "high quality", "storage case"], "options": ["color: pink"], "instruction_attributes": ["easy carry", "storage case"], "instruction_options": ["pink"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39ABZCI", "worker_id": "A345TDMHP3DQ3G"}], "B007TVSUUK": [{"asin": "B007TVSUUK", "instruction": "i want to find a 12-pack of 4.2 ounce low-carb lentil-flavored rice cakes.", "attributes": ["low carb", "low calorie", "fat free", "sugar free"], "options": ["flavor: lentil", "size: 4.2 ounce (pack of 12)"], "instruction_attributes": ["low carb"], "instruction_options": ["lentil", "4.2 ounce (pack of 12)"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXS5RAW6", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B007TVSUUK", "instruction": "i need to buy some rice cakes that are sugar free, fat free, low calorie, and low carb. they should contain whole wheat. get the pack of twelve.", "attributes": ["low carb", "low calorie", "fat free", "sugar free"], "options": ["flavor: whole wheat", "size: 4.2 ounce (pack of 12)"], "instruction_attributes": ["low carb", "low calorie", "fat free", "sugar free"], "instruction_options": ["whole wheat", "4.2 ounce (pack of 12)"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35M7UGL", "worker_id": "AR9AU5FY1S3RO"}], "B07NGNNNH4": [{"asin": "B07NGNNNH4", "instruction": "i am looking for a living room curtain that is machine washable and multi color", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: multi color", "size: 108\" x 108\""], "instruction_attributes": ["machine washable"], "instruction_options": ["multi color"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA4XS2W", "worker_id": "ARJDD0Z3R65BD"}], "B06ZZ68SBZ": [{"asin": "B06ZZ68SBZ", "instruction": "i am looking for a white color hdmi cable having high speed.", "attributes": ["blu ray", "high speed"], "options": ["color: white", "pattern name: cable", "size: 15 feet", "style: side angle"], "instruction_attributes": ["high speed"], "instruction_options": ["white"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKC9C7HG", "worker_id": "A1Q8PPQQCWGY0D"}], "B08DXQ2H8K": [{"asin": "B08DXQ2H8K", "instruction": "i'd like to buy a small hair cutting kit.", "attributes": ["water resistant", "bpa free", "hair cutting", "hair styling"], "options": ["size: small"], "instruction_attributes": ["hair cutting"], "instruction_options": ["small"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJKXDGB", "worker_id": "AR9AU5FY1S3RO"}], "B07W21XY7H": [{"asin": "B07W21XY7H", "instruction": "can you help me find the replacement power cord made by afkt for my yamaha bd-s681 blue ray player?", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR6477M3H3", "worker_id": "A2DDPSXH2X96RF"}], "B0821B3XLC": [{"asin": "B0821B3XLC", "instruction": "i need a five by three foot background for digitial photography. make sure it's light weight and easy to carry.", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 5x3ft"], "instruction_attributes": ["light weight", "easy carry", "digital photography"], "instruction_options": ["5x3ft"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323D8LDW8", "worker_id": "AR9AU5FY1S3RO"}], "B07B7BV15N": [{"asin": "B07B7BV15N", "instruction": "i am looking for a individual wrapped birthday cakes and chocolate chip blondies that come in a 12 pack.", "attributes": ["plant based", "gluten free", "non gmo", "individually wrapped", "natural ingredients", "birthday cake"], "options": ["flavor name: birthday cake & chocolate chip blondie", "size: 1.9 ounce (pack of 12)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["birthday cake & chocolate chip blondie"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1BJXRS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PRF5KX5": [{"asin": "B09PRF5KX5", "instruction": "get me some sandals with an ankle strap. buy them in size seven and a half, please.", "attributes": ["closed toe", "ankle strap"], "options": ["color: z1 blue", "size: 7.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["7.5"], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY0DP7U", "worker_id": "AR9AU5FY1S3RO"}], "B0845FL6FD": [{"asin": "B0845FL6FD", "instruction": "help me find the alcohol free listerine tartar control mouthwash.", "attributes": ["alcohol free", "bad breath", "fresh breath"], "options": [""], "instruction_attributes": ["alcohol free"], "instruction_options": [], "assignment_id": "3BXQMRHWKA8BOE0SMCYS3540165MU3", "worker_id": "A2DDPSXH2X96RF"}], "B01LYP9LQ2": [{"asin": "B01LYP9LQ2", "instruction": "i need a long lasting 7 oz rosemary candle.", "attributes": ["lead free", "long lasting", "soy wax"], "options": ["color: rosemary (double wick - white box)", "size: 7 oz"], "instruction_attributes": ["long lasting"], "instruction_options": ["rosemary (double wick - white box)", "7 oz"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAYN8AO", "worker_id": "A2RBF3IIJP15IH"}], "B09SLDMH3S": [{"asin": "B09SLDMH3S", "instruction": "i am interested in a high quality shower cap", "attributes": ["easy carry", "high quality", "hair salon"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINQQ27P", "worker_id": "A2ECRNQ3X5LEXD"}], "B082VL45Z5": [{"asin": "B082VL45Z5", "instruction": "i want a 89\" stone & beam dark grey leather sofa with a wood frame.", "attributes": ["heavy duty", "wood frame", "solid wood"], "options": ["color: dark grey leather", "size: 89\" sofa"], "instruction_attributes": ["wood frame"], "instruction_options": ["dark grey leather", "89\" sofa"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PJ8EQ1", "worker_id": "A2RBF3IIJP15IH"}], "B08636QNKY": [{"asin": "B08636QNKY", "instruction": "i am looking for 1 pack of 8 fl oz style balm for hair with natural ingredients.", "attributes": ["cruelty free", "natural ingredients"], "options": ["size: 8 fl oz (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["8 fl oz (pack of 1)"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIAVL2H", "worker_id": "A1EREKSZAA9V7B"}], "B08Y8DB8H4": [{"asin": "B08Y8DB8H4", "instruction": "i need a high speed, high performance fifteen foot hdmi cable. make sure it's gold plated, and buy it in blue.", "attributes": ["gold plated", "high performance", "high speed"], "options": ["color: bluehousing", "size: 4k_15ft_blackcable"], "instruction_attributes": ["gold plated", "high performance", "high speed"], "instruction_options": ["bluehousing", "4k_15ft_blackcable"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4Y1YXY", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08Y8DB8H4", "instruction": "i need a highspeed hdmi cable that is purple", "attributes": ["gold plated", "high performance", "high speed"], "options": ["color: purplehousing", "size: 4k_3ft_blackcable"], "instruction_attributes": ["high speed"], "instruction_options": ["purplehousing"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34JE14H", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HC1FWD3": [{"asin": "B09HC1FWD3", "instruction": "i am looking for high quality travel size glass spray bottles", "attributes": ["travel size", "high quality"], "options": [""], "instruction_attributes": ["travel size", "high quality"], "instruction_options": [], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3Q9WM1S", "worker_id": "A1EREKSZAA9V7B"}], "B09B5V7781": [{"asin": "B09B5V7781", "instruction": "i want to get a pack of 10 different food flavors that are dairy and sugar free.", "attributes": ["gmo free", "sugar free", "dairy free", "gluten free"], "options": ["flavor name: 10 flavors"], "instruction_attributes": ["sugar free", "dairy free"], "instruction_options": ["10 flavors"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AINOE0", "worker_id": "A345TDMHP3DQ3G"}], "B07FL4RQXM": [{"asin": "B07FL4RQXM", "instruction": "i'm looking for a men's velvet coat with a button closure in purple.", "attributes": ["button closure", "dry clean"], "options": ["color: purple", "size: 3x-large"], "instruction_attributes": ["button closure"], "instruction_options": ["purple"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R4OR0H", "worker_id": "ARJDD0Z3R65BD"}], "B09MRXN2DT": [{"asin": "B09MRXN2DT", "instruction": "i want to buy a casual performance fleece jacket in black.", "attributes": ["daily casual", "winter warm", "long sleeve", "soft material", "faux fur", "teen girls"], "options": ["color: black", "size: medium"], "instruction_attributes": ["daily casual"], "instruction_options": ["black"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU479R6H", "worker_id": "AR9AU5FY1S3RO"}], "B07JFQMJMK": [{"asin": "B07JFQMJMK", "instruction": "i want a pair of black men's work shoes that are slip resistant. they must come in a size 9.5 and be extra wide.", "attributes": ["slip resistant", "moisture wicking", "steel toe", "memory foam", "rubber outsole"], "options": ["color: black", "size: 9.5 x-wide"], "instruction_attributes": ["slip resistant"], "instruction_options": ["black", "9.5 x-wide"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49XQ4X7", "worker_id": "A345TDMHP3DQ3G"}], "B08PB7L82H": [{"asin": "B08PB7L82H", "instruction": "i am interested in curtains that are eco friendly with geometric patterns and is size 42w by 63 h.", "attributes": ["eco friendly", "printing technology", "living room"], "options": ["color: geometric\u00a0games", "size: 42(w) x 63(h)"], "instruction_attributes": ["eco friendly"], "instruction_options": ["geometric\u00a0games", "42(w) x 63(h)"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP1076HILE", "worker_id": "A2ECRNQ3X5LEXD"}], "B077QX86MN": [{"asin": "B077QX86MN", "instruction": "i am interested in grass fed protein bars that are vanilla shortbread flavor.", "attributes": ["grass fed", "grain free", "non gmo", "gluten free"], "options": ["flavor name: vanilla shortbread"], "instruction_attributes": ["grass fed"], "instruction_options": ["vanilla shortbread"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z29GXG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08H5T5T3V": [{"asin": "B08H5T5T3V", "instruction": "i am looking for a pack of 2 hemp seed oil deep conditioner treatments.", "attributes": ["sulfate free", "paraben free", "seed oil", "damaged hair"], "options": ["scent: curl care", "size: 2"], "instruction_attributes": ["seed oil"], "instruction_options": ["2"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJL69OA", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08H5T5T3V", "instruction": "i want hask hemp seed oil deep conditioner treatments for all hair types, it should be sulfate free and have a tea tree scent.", "attributes": ["sulfate free", "paraben free", "seed oil", "damaged hair"], "options": ["scent: tea tree", "size: 6 ounce (pack of 2)"], "instruction_attributes": ["sulfate free"], "instruction_options": ["tea tree"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRUKBZ6", "worker_id": "A1IL2K0ELYI090"}], "B089D8K91K": [{"asin": "B089D8K91K", "instruction": "i would like some stainless steel sheers to cut my hair.", "attributes": ["easy clean", "stainless steel", "hair cutting"], "options": [""], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": [], "assignment_id": "3Z4AIRP3CHN69T8YYVQH3KF1XDC1XN", "worker_id": "A1WS884SI0SLO4"}], "B08R42CJMD": [{"asin": "B08R42CJMD", "instruction": "i am interested in grass fed jerky that is chili lime.", "attributes": ["grass fed", "artificial ingredients", "gluten free", "simple ingredients"], "options": ["flavor name: chili lime (pack of 4)"], "instruction_attributes": ["grass fed"], "instruction_options": ["chili lime (pack of 4)"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788BU5C8", "worker_id": "A2ECRNQ3X5LEXD"}], "B08RDH5HBV": [{"asin": "B08RDH5HBV", "instruction": "i am looking for a light weight background of size 9x16 ft.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 14", "size: 9x16 ft"], "instruction_attributes": ["light weight"], "instruction_options": ["9x16 ft"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W6NUOT", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PHFZSCZ": [{"asin": "B09PHFZSCZ", "instruction": "i need laser ipl hair removal.", "attributes": ["easy use", "hair removal", "permanent hair", "hair growth"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY864381M", "worker_id": "A2RBF3IIJP15IH"}], "B09PH67195": [{"asin": "B09PH67195", "instruction": "i want to buy that window film for the dining room. make sure to get the one that's 59 inches in length.", "attributes": ["tempered glass", "dining room"], "options": ["color: 908854335891570000", "size: (width\uff0935.4in x (length)59in x 2pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["(width\uff0935.4in x (length)59in x 2pcs"], "assignment_id": "39JEC75375BYS7D1EDEJWV17LZVCVL", "worker_id": "AR9AU5FY1S3RO"}], "B08B6D39FM": [{"asin": "B08B6D39FM", "instruction": "can you find some carol wright men's lounge pants in a 5xl? i want the ones with a draw string closure that are charcoal colored.", "attributes": ["machine wash", "drawstring closure"], "options": ["color: charcoal", "size: 5x-large"], "instruction_attributes": ["machine wash", "drawstring closure"], "instruction_options": ["charcoal", "5x-large"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP6AOC7", "worker_id": "A2DDPSXH2X96RF"}], "B094JNNX1G": [{"asin": "B094JNNX1G", "instruction": "i would like a 26 inch black brown natural hairpiece.", "attributes": ["hair extensions", "natural hair"], "options": ["color: black brown", "size: 26 inch (pack of 1)"], "instruction_attributes": ["natural hair"], "instruction_options": ["black brown", "26 inch (pack of 1)"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9B8ZRI", "worker_id": "A1WS884SI0SLO4"}], "B09FPQTY4M": [{"asin": "B09FPQTY4M", "instruction": "i want to find eco-friendly candles made out of soy wax in the ms. coco color.", "attributes": ["lead free", "eco friendly", "long lasting", "soy wax"], "options": ["color: ms coco"], "instruction_attributes": ["eco friendly", "soy wax"], "instruction_options": ["ms coco"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40EVNXV", "worker_id": "A345TDMHP3DQ3G"}], "B019RKX31Q": [{"asin": "B019RKX31Q", "instruction": "i would like a 24\" x 24\" blackish green pillow throw cover for my living room.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: blackish green", "size: 24\" x 24\""], "instruction_attributes": ["living room"], "instruction_options": ["blackish green", "24\" x 24\""], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGUXWTY", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B019RKX31Q", "instruction": "i want to find gray throw pillow covers for my living room that are 18 inches by 18 inches.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: gray", "size: 18\u201c x 18\u201c"], "instruction_attributes": ["living room"], "instruction_options": ["gray", "18\u201c x 18\u201c"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O1AA28", "worker_id": "A345TDMHP3DQ3G"}], "B07B54NHW8": [{"asin": "B07B54NHW8", "instruction": "i'm looking for a pair of size sixteen nylon spandex pants.", "attributes": ["nylon spandex", "tummy control"], "options": ["color: khaki", "size: 16"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["16"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW4G8S6", "worker_id": "A3EDFA8UQT5GG8"}], "B001EWEP04": [{"asin": "B001EWEP04", "instruction": "buy me some antiperspirant. make sure it's clinically proven.", "attributes": ["anti perspirant", "clinically proven"], "options": [""], "instruction_attributes": ["anti perspirant", "clinically proven"], "instruction_options": [], "assignment_id": "3X65QVEQIBXVW21709CD9M35U18LCQ", "worker_id": "AR9AU5FY1S3RO"}], "B09MFSBCKK": [{"asin": "B09MFSBCKK", "instruction": "i am interested in a bullet camera that has motion detection.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2YAG6M", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NZ2NP9W": [{"asin": "B07NZ2NP9W", "instruction": "i am interested in a bookcase that has a steel frame.", "attributes": ["metal legs", "steel frame"], "options": [""], "instruction_attributes": ["steel frame"], "instruction_options": [], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOU1936", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P63GLR4": [{"asin": "B09P63GLR4", "instruction": "i'm looking for a pair of blue noise cancelling headphones with stereo sound.", "attributes": ["noise cancelling", "stereo sound"], "options": ["color: blue"], "instruction_attributes": ["noise cancelling", "stereo sound"], "instruction_options": ["blue"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZGQ9KK", "worker_id": "A3EDFA8UQT5GG8"}], "B086HNCWFR": [{"asin": "B086HNCWFR", "instruction": "i need white chocolate andy anand malt balls with natural ingredients.", "attributes": ["natural ingredients", "great gift"], "options": ["flavor name: white chocolate"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["white chocolate"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZDYGIRE", "worker_id": "A2RBF3IIJP15IH"}], "B0892GRB9N": [{"asin": "B0892GRB9N", "instruction": "i want to buy a navy blue ottomon for the living room. get the one with tufted buttons.", "attributes": ["button tufted", "storage unit", "storage space", "living room"], "options": ["color: navy blue", "size: 80x45x40cm"], "instruction_attributes": ["button tufted", "living room"], "instruction_options": ["navy blue"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5S3F40", "worker_id": "AR9AU5FY1S3RO"}], "B08T5SBG7K": [{"asin": "B08T5SBG7K", "instruction": "i want to find italian herb-flavored parmesan cheese crisps that are low in carbs.", "attributes": ["keto friendly", "low carb", "high protein", "gluten free", "zero sugar"], "options": ["flavor name: italian herb"], "instruction_attributes": ["low carb"], "instruction_options": ["italian herb"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJPIBXV", "worker_id": "A345TDMHP3DQ3G"}], "B07D7FBCZ2": [{"asin": "B07D7FBCZ2", "instruction": "i am looking for a high performance laptop with 1tb,16 gb ram, intel core i7. nvidia.", "attributes": ["certified refurbished", "high performance", "intel core"], "options": ["capacity: 1tb, 16 gb ram, intel core i7, nvidia"], "instruction_attributes": ["high performance", "intel core"], "instruction_options": ["1tb, 16 gb ram, intel core i7, nvidia"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y5UIVA", "worker_id": "A2HMEGTAFO0CS8"}], "B08DHD6J8T": [{"asin": "B08DHD6J8T", "instruction": "i am interested in a living room chandelier that is black with eight lights.", "attributes": ["mid century", "light fixture", "living room"], "options": ["color: black", "size: 8 lights-black"], "instruction_attributes": ["living room"], "instruction_options": ["black", "8 lights-black"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602Q1955", "worker_id": "A2ECRNQ3X5LEXD"}], "B08CZKMDNX": [{"asin": "B08CZKMDNX", "instruction": "i am looking for iced coffee that is shelf stable and mocha flavor that is 96 fl oz.", "attributes": ["shelf stable", "sugar free", "dairy free"], "options": ["flavor name: mocha", "size: 96 fl oz (pack of 1)"], "instruction_attributes": ["shelf stable"], "instruction_options": ["mocha", "96 fl oz (pack of 1)"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMMHBQK", "worker_id": "A2ECRNQ3X5LEXD"}], "B07YDZC838": [{"asin": "B07YDZC838", "instruction": "i would like a 4 ounce volume plus hair care bottle thats made from natural ingredients.", "attributes": ["paraben free", "clinically proven", "natural ingredients", "seed oil"], "options": ["color: volume plus", "size: 8 ounce | 4 ounce"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["volume plus", "8 ounce | 4 ounce"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVJOLXK", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07YDZC838", "instruction": "i would like a 8 ounce bottle of scalp therapy spray made with natural ingredients.", "attributes": ["paraben free", "clinically proven", "natural ingredients", "seed oil"], "options": ["color: scalp therapy spray", "size: 8 ounce"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["scalp therapy spray", "8 ounce"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFRF3E8", "worker_id": "A1WS884SI0SLO4"}], "B08HT4NLH5": [{"asin": "B08HT4NLH5", "instruction": "do you have any gluten free cheese spreads with 0g of trans fat?", "attributes": ["gluten free", "0g trans"], "options": [""], "instruction_attributes": ["gluten free", "0g trans"], "instruction_options": [], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2KLNYX", "worker_id": "A3EDFA8UQT5GG8"}], "B08F6HWPLJ": [{"asin": "B08F6HWPLJ", "instruction": "i need a foamma memory foam mattress in size 5\" x 36\" x 84\".", "attributes": ["high density", "memory foam"], "options": ["size: 5\" x 36\" x 84\""], "instruction_attributes": ["memory foam"], "instruction_options": ["5\" x 36\" x 84\""], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPV3PJR", "worker_id": "A2RBF3IIJP15IH"}], "B09LRLP7WM": [{"asin": "B09LRLP7WM", "instruction": "i'm looking for a tempered glass screen protector for my phone that comes with a black case.", "attributes": ["hands free", "glass screen", "tempered glass"], "options": ["color: black"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["black"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9IYB1SG", "worker_id": "A3EDFA8UQT5GG8"}], "B000B2JWMY": [{"asin": "B000B2JWMY", "instruction": "i am looking for men's reebok leather sneakers size 3.5.", "attributes": ["daily casual", "rubber outsole", "rubber sole"], "options": ["color: white | carbon | red | grey", "size: 5 women | 3.5 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["5 women | 3.5 men"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R17F2I0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B000B2JWMY", "instruction": "please add to my list a pair of reebok men\u2019s classic daily casual sneaker size 8 .", "attributes": ["daily casual", "rubber outsole", "rubber sole"], "options": ["color: chalk | cobalt | utility yellow", "size: 9.5 women | 8 men"], "instruction_attributes": ["daily casual"], "instruction_options": ["9.5 women | 8 men"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TE1K2W", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B000B2JWMY", "instruction": "i need a pair of sneakers that have a rubber sole and come in black. get the size five and a half.", "attributes": ["daily casual", "rubber outsole", "rubber sole"], "options": ["color: black | cold grey | fierce gold", "size: 5.5"], "instruction_attributes": ["rubber outsole", "rubber sole"], "instruction_options": ["black | cold grey | fierce gold", "5.5"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQROP0L", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B000B2JWMY", "instruction": "i need leather sneakers with rubber sole. i am a size 11.", "attributes": ["daily casual", "rubber outsole", "rubber sole"], "options": ["color: horizon blue | white | white", "size: 11"], "instruction_attributes": ["rubber sole"], "instruction_options": ["11"], "assignment_id": "326O153BMT8RVOXTJJKKGXV369OEDB", "worker_id": "A1NF6PELRKACS9"}], "B09SZ3KRHN": [{"asin": "B09SZ3KRHN", "instruction": "i am looking for quick drying x- large women's bathing suit.", "attributes": ["hand wash", "quick drying", "nylon spandex"], "options": ["color: 01*black", "size: x-large"], "instruction_attributes": ["quick drying"], "instruction_options": ["x-large"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISUSOYF", "worker_id": "A1EREKSZAA9V7B"}], "B0861D628Y": [{"asin": "B0861D628Y", "instruction": "i'd like to order another one of those soy wax candles that smells like a flower market.", "attributes": ["lead free", "soy wax"], "options": ["scent: flower market"], "instruction_attributes": ["soy wax"], "instruction_options": ["flower market"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2EGKFI", "worker_id": "AR9AU5FY1S3RO"}], "B0896JP8CG": [{"asin": "B0896JP8CG", "instruction": "i'm looking for a moisturizing shave oil for dry skin scent vanilla", "attributes": ["argan oil", "coconut oil", "dry skin"], "options": [""], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWMRW6S", "worker_id": "A2Y2TURT2VEYZN"}], "B08GFDG5QT": [{"asin": "B08GFDG5QT", "instruction": "buy me the bluetooth soundbar in size mb-3220.", "attributes": ["stereo sound", "wireless bluetooth"], "options": ["size: mb-3220"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["mb-3220"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E0ZNX7R", "worker_id": "AR9AU5FY1S3RO"}], "B099XBMPLZ": [{"asin": "B099XBMPLZ", "instruction": "get me some black lounge pants with an elastic waistband.", "attributes": ["wide leg", "elastic waist"], "options": ["color: black", "size: large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["black"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P72QSV4", "worker_id": "AR9AU5FY1S3RO"}], "B094ZQ349N": [{"asin": "B094ZQ349N", "instruction": "i am looking for high performance night vision binoculars with batteries included.", "attributes": ["batteries included", "high performance"], "options": [""], "instruction_attributes": ["batteries included", "high performance"], "instruction_options": [], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFE3V9Y", "worker_id": "A1EREKSZAA9V7B"}], "B09NXJJ2KQ": [{"asin": "B09NXJJ2KQ", "instruction": "get the heavy duty bed frame in espresso.", "attributes": ["heavy duty", "white item", "storage space"], "options": ["color: espresso", "size: twin over twin[metal] + slide"], "instruction_attributes": ["heavy duty"], "instruction_options": ["espresso"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YU2Q36", "worker_id": "AR9AU5FY1S3RO"}], "B07DD9Z6ZB": [{"asin": "B07DD9Z6ZB", "instruction": "i would like a mickey mouse toy chest made of solid wood.", "attributes": ["engineered wood", "solid wood"], "options": ["color: disney mickey mouse"], "instruction_attributes": ["solid wood"], "instruction_options": ["disney mickey mouse"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT4S373", "worker_id": "A1WS884SI0SLO4"}], "B09H35WZDV": [{"asin": "B09H35WZDV", "instruction": "i am looking for a low sugar garlic flavor sauce.", "attributes": ["low sugar", "low sodium", "gluten free", "low carb", "non gmo", "natural ingredients", "gift set", "perfect gift"], "options": ["flavor name: garlic", "size: 1.56 pound (pack of 6)"], "instruction_attributes": ["low sugar"], "instruction_options": ["garlic"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSGLQ2E", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PH34GXC": [{"asin": "B09PH34GXC", "instruction": "i would like a 2xl gray short sleeve button down shirt.", "attributes": ["loose fit", "long sleeve", "short sleeve"], "options": ["color: gray8", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["gray8", "xx-large"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRBZD5YH", "worker_id": "A1WS884SI0SLO4"}], "B09Q93XK5S": [{"asin": "B09Q93XK5S", "instruction": "i am looking for a loose fit tee that is army green and in an xx-large.", "attributes": ["loose fit", "hand wash", "short sleeve", "long sleeve", "drawstring closure"], "options": ["color: army green", "size: xx-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["army green", "xx-large"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZDY7RIE", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KX9Y4XZ": [{"asin": "B07KX9Y4XZ", "instruction": "i am interested in a closed toe mule that is light tan suede and in a size 6.5", "attributes": ["memory foam", "closed toe", "synthetic sole"], "options": ["color: light tan suede", "size: 6.5"], "instruction_attributes": ["closed toe"], "instruction_options": ["light tan suede", "6.5"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFJ0E9B", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PBC1QH4": [{"asin": "B09PBC1QH4", "instruction": "i am looking for a water resistant cosmetic bag", "attributes": ["water resistant", "hair extensions"], "options": [""], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602R3959", "worker_id": "A2ECRNQ3X5LEXD"}], "B0943RPSB2": [{"asin": "B0943RPSB2", "instruction": "i am looking for a dark blue daily wear women's jumpsuit.", "attributes": ["wide leg", "daily wear"], "options": ["color: dark blue", "size: x-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["dark blue"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNTB8HX", "worker_id": "A1EREKSZAA9V7B"}], "B09DPJB2QP": [{"asin": "B09DPJB2QP", "instruction": "i am looking in day comfort walking shoes that are pink and in a size 5 wide.", "attributes": ["day comfort", "moisture wicking"], "options": ["color: pink-01", "size: 5 wide"], "instruction_attributes": ["day comfort"], "instruction_options": ["pink-01", "5 wide"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBCCGH9", "worker_id": "A2ECRNQ3X5LEXD"}], "B073WCD5Z1": [{"asin": "B073WCD5Z1", "instruction": "i would like double sided throw pillow covers that are scarlet orange and are 20\" by 20\".", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: scarlet orange", "size: 20\" x 20\""], "instruction_attributes": ["double sided"], "instruction_options": ["scarlet orange", "20\" x 20\""], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTNA5E4", "worker_id": "A2ECRNQ3X5LEXD"}], "B0739KF1S1": [{"asin": "B0739KF1S1", "instruction": "i am interested in an intel core computer that has 4gb of ram and 64gb of ssd.", "attributes": ["high speed", "intel core", "aluminum alloy"], "options": ["color: i3+2 com+i3 4005u | 5005u", "size: 4g ram 64g ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["4g ram 64g ssd"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BJ6JV8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P6CRT57": [{"asin": "B09P6CRT57", "instruction": "i would like some color 5 hairpieces that are easy to put on.", "attributes": ["easy apply", "hair extensions"], "options": ["color: 5"], "instruction_attributes": ["easy apply"], "instruction_options": ["5"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6H1U7R", "worker_id": "A1WS884SI0SLO4"}], "B09QXN2FH3": [{"asin": "B09QXN2FH3", "instruction": "i'd like to look at high resolution backdrops with pictures of marine animals. the size should be around seven by five foot.", "attributes": ["high resolution", "digital photography"], "options": ["size: 7x5ft"], "instruction_attributes": ["high resolution"], "instruction_options": ["7x5ft"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINQM27L", "worker_id": "A3EDFA8UQT5GG8"}], "B000RNNI0O": [{"asin": "B000RNNI0O", "instruction": "i am interested in a long lasting perfume.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOAQNOQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09F63MDV2": [{"asin": "B09F63MDV2", "instruction": "i am looking for a loose fitting x-large women's cardigan.", "attributes": ["machine washable", "loose fit", "hand wash", "long sleeve", "everyday wear", "laundry bag"], "options": ["color: 01 brown", "size: x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["x-large"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMFX1JZ", "worker_id": "A1EREKSZAA9V7B"}], "B09GKD4XQ4": [{"asin": "B09GKD4XQ4", "instruction": "get me an easy to install phone case in blue.", "attributes": ["easy install", "tempered glass", "aluminum alloy", "wireless charging"], "options": ["color: blue", "size: 13pro"], "instruction_attributes": ["easy install"], "instruction_options": ["blue"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UQPJ6R", "worker_id": "AR9AU5FY1S3RO"}], "B089QBNCC5": [{"asin": "B089QBNCC5", "instruction": "i need some aaa batteries.", "attributes": ["high performance", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJJ9W0V", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QMCQMMY": [{"asin": "B09QMCQMMY", "instruction": "i need an open toe summer gladiator strap sandle. get me size 6.5", "attributes": ["knee high", "open toe"], "options": ["color: brown", "size: 6.5"], "instruction_attributes": ["open toe"], "instruction_options": ["6.5"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMBAXD6", "worker_id": "A31PW970Z2PC5P"}], "B07VVFF4DM": [{"asin": "B07VVFF4DM", "instruction": "i am looking for a heavy duty phone holster.", "attributes": ["heavy duty", "carrying case"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRPK2YB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09RGW1KKN": [{"asin": "B09RGW1KKN", "instruction": "i am looking for a gift of sriracha peanuts.", "attributes": ["hand crafted", "great gift"], "options": ["flavor name: sriracha"], "instruction_attributes": ["great gift"], "instruction_options": ["sriracha"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3Q921MD", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09RGW1KKN", "instruction": "i need some chocolate covered peanuts that would be a great gift", "attributes": ["hand crafted", "great gift"], "options": ["flavor name: chocolate"], "instruction_attributes": ["great gift"], "instruction_options": ["chocolate"], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8R0QQ3", "worker_id": "A2ECRNQ3X5LEXD"}], "B019IOI8OS": [{"asin": "B019IOI8OS", "instruction": "i am interested in a high speed hdmi cable that is 10 feet long.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 1 pack", "size: 10 feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["1 pack", "10 feet (single pack)"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39ADCZX", "worker_id": "A2ECRNQ3X5LEXD"}], "B088BYPPYW": [{"asin": "B088BYPPYW", "instruction": "i am looking for a large women's skirt with an elastic waistband and pockets.", "attributes": ["elastic waistband", "drawstring waist", "drawstring closure"], "options": ["color: camouflage", "size: large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["large"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR025YNAKF", "worker_id": "A1EREKSZAA9V7B"}], "B082WS53GT": [{"asin": "B082WS53GT", "instruction": "i would like a 3xl black broken cover long sleeve sweatshirt.", "attributes": ["soft material", "long sleeve"], "options": ["color: black broken clover", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["black broken clover", "3x-large"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOHYBH6A", "worker_id": "A1WS884SI0SLO4"}], "B07PH99HMB": [{"asin": "B07PH99HMB", "instruction": "i need to buy an officially licenced marvel t-shirt for women.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: baby blue", "fit type: women", "size: small"], "instruction_attributes": ["officially licensed"], "instruction_options": ["women"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM967QG4N", "worker_id": "AR9AU5FY1S3RO"}], "B07HCVL762": [{"asin": "B07HCVL762", "instruction": "i'm looking for lounge style pants that are machine washable and they should have a drawstring waist. the size should be small.", "attributes": ["machine wash", "drawstring waist", "elastic waistband"], "options": ["size: small"], "instruction_attributes": ["machine wash", "drawstring waist"], "instruction_options": ["small"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XOYGNV", "worker_id": "A3EDFA8UQT5GG8"}], "B09NN9HDQ3": [{"asin": "B09NN9HDQ3", "instruction": "i am looking for a 3 color alarm clock having wireless bluetooth.", "attributes": ["hands free", "wireless bluetooth"], "options": ["color: 3"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["3"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YULQ3P", "worker_id": "A1Q8PPQQCWGY0D"}], "B0924Y7RN1": [{"asin": "B0924Y7RN1", "instruction": "i would like a pink toothbrush for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: pink"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["pink"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UNNG1H", "worker_id": "A1WS884SI0SLO4"}], "B079KHGNFR": [{"asin": "B079KHGNFR", "instruction": "i am looking for a black history classic fit shirt size medium.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: heather blue", "fit type: youth", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["medium"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFHZ0HQK", "worker_id": "A1EREKSZAA9V7B"}], "B09MFGRR97": [{"asin": "B09MFGRR97", "instruction": "i want to get cartoon themed cupcake toppers that i can use for a birthday party.", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSGJ2QO", "worker_id": "A345TDMHP3DQ3G"}], "B07VBLHD8C": [{"asin": "B07VBLHD8C", "instruction": "i am interested in single serve coffee that is cinnamon roll flavored and is a 24 count.", "attributes": ["dairy free", "gluten free", "quality ingredients"], "options": ["flavor name: cinnamon roll", "size: 24 count (pack of 1)"], "instruction_attributes": ["dairy free"], "instruction_options": ["cinnamon roll", "24 count (pack of 1)"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA16C8S", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07VBLHD8C", "instruction": "i'm looking for gluten free high protein for coffee.", "attributes": ["dairy free", "gluten free", "quality ingredients"], "options": ["flavor name: french roast", "size: 18 count (pack of 1)"], "instruction_attributes": ["dairy free", "gluten free"], "instruction_options": ["french roast"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQY94778", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B07VBLHD8C", "instruction": "get me a pack of 16 count hot chocolate pack. it should be dairy and gluten free.", "attributes": ["dairy free", "gluten free", "quality ingredients"], "options": ["flavor name: holiday winter variety pack", "size: 16 count (pack of 1)"], "instruction_attributes": ["dairy free", "gluten free"], "instruction_options": ["16 count (pack of 1)"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KH6PDP", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07VBLHD8C", "instruction": "look for gluten free dairy free hot cocoa pods 16 count (pack of 1) with quality ingredients and also choose", "attributes": ["dairy free", "gluten free", "quality ingredients"], "options": ["flavor name: french roast", "size: 16 count (pack of 1)"], "instruction_attributes": ["dairy free", "gluten free", "quality ingredients"], "instruction_options": ["16 count (pack of 1)"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQJFCJ5", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B07VBLHD8C", "instruction": "i want 16 pieces of dairy free maud's dark hot chocolate.", "attributes": ["dairy free", "gluten free", "quality ingredients"], "options": ["flavor name: 12 blend bulk coffee variety pack", "size: 16 count (pack of 1)"], "instruction_attributes": ["dairy free"], "instruction_options": ["16 count (pack of 1)"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCGPSJR", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07VBLHD8C", "instruction": "sumatra sensation included the quality ingretidents", "attributes": ["dairy free", "gluten free", "quality ingredients"], "options": ["flavor name: sumatra sensation", "size: 16 count (pack of 1)"], "instruction_attributes": ["quality ingredients"], "instruction_options": [], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWXX1CY", "worker_id": "A226L9F2AZ38CL"}], "B08FRV8QLN": [{"asin": "B08FRV8QLN", "instruction": "i am interested in old fashioned caramels.", "attributes": ["old fashioned", "individually wrapped", "natural ingredients", "high fructose"], "options": [""], "instruction_attributes": ["old fashioned"], "instruction_options": [], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7VFSDY", "worker_id": "A2ECRNQ3X5LEXD"}], "B093YSKFKF": [{"asin": "B093YSKFKF", "instruction": "i need 2 pink flamingo rose mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3BXQNQ", "worker_id": "A2RBF3IIJP15IH"}], "B09686THJK": [{"asin": "B09686THJK", "instruction": "i need to find the 10 pack of easy to use lankiz magnetic eyelashes that come with the micellar water, tweezers, and the tubes of magnetism.", "attributes": ["oil free", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X022034H", "worker_id": "A2DDPSXH2X96RF"}], "B07SGG9YJQ": [{"asin": "B07SGG9YJQ", "instruction": "i need 5 ounce flawless eye cream for dark circles.", "attributes": ["plant based", "cruelty free", "dark circles"], "options": ["size: 5 ounce", "style name: flawless eye cream"], "instruction_attributes": ["dark circles"], "instruction_options": ["5 ounce", "flawless eye cream"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMNXW91", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07SGG9YJQ", "instruction": "i need a 1.7 ounce eye cream for dark circles.", "attributes": ["plant based", "cruelty free", "dark circles"], "options": ["size: 1.7 ounce", "style name: no filter face serum"], "instruction_attributes": ["dark circles"], "instruction_options": ["1.7 ounce"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3CFN6O", "worker_id": "A2ECRNQ3X5LEXD"}], "B076VYP83L": [{"asin": "B076VYP83L", "instruction": "buy me some cotton pajama pants in size extra extra large, please. make sure they have an elastic waistband.", "attributes": ["elastic waistband", "drawstring waist"], "options": ["color: rusty brown plaid", "size: xx-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["xx-large"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOGUL9Y", "worker_id": "AR9AU5FY1S3RO"}], "B007R58WI8": [{"asin": "B007R58WI8", "instruction": "i am interested in a waxing kit for sensitive skin.", "attributes": ["cruelty free", "hair removal", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCMHI7A", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NM5MTJ5": [{"asin": "B09NM5MTJ5", "instruction": "get me some long sleeve pajamas. look for blue ones.", "attributes": ["quality polyester", "long sleeve"], "options": ["color: blue", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907P1AUS", "worker_id": "AR9AU5FY1S3RO"}], "B09QSRNP3T": [{"asin": "B09QSRNP3T", "instruction": "i am looking for a blue long sleeve men's linen shirt.", "attributes": ["soft material", "long sleeve"], "options": ["color: blue", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GAPZUZ", "worker_id": "A1EREKSZAA9V7B"}], "B00N1GG62G": [{"asin": "B00N1GG62G", "instruction": "i would like 10 pounds of chocolate covered nuts.", "attributes": ["chocolate covered", "non dairy"], "options": ["size: 10 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["10 pound (pack of 1)"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTFJD4J", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00N1GG62G", "instruction": "i'm looking for chocolates covered for parties.", "attributes": ["chocolate covered", "non dairy"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66SJZFJ", "worker_id": "A16IQOX0DK14OJ"}], "B07QPS3GR8": [{"asin": "B07QPS3GR8", "instruction": "i need a decor therapy white fnished bailey bead board, sized 14x17x26.5, in color sahara.", "attributes": ["white item", "white finish"], "options": ["color: sahara", "size: 14x17x26.5"], "instruction_attributes": ["white finish"], "instruction_options": ["sahara", "14x17x26.5"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9IVB0Y", "worker_id": "A1CB72B51L7TKE"}], "B095BYSN17": [{"asin": "B095BYSN17", "instruction": "buy me a pink synthetic wig.", "attributes": ["easy use", "high quality", "synthetic hair", "hair extensions", "hair loss"], "options": ["color: pink", "size: 2pcs"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["pink"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H188UT", "worker_id": "AR9AU5FY1S3RO"}], "B00AQMLFNI": [{"asin": "B00AQMLFNI", "instruction": "looking for spicy sea salt with low sodium and smoked & infused", "attributes": ["low sodium", "gift set"], "options": ["flavor name: smoked & infused"], "instruction_attributes": ["low sodium"], "instruction_options": ["smoked & infused"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGA9S9Q", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B00AQMLFNI", "instruction": "i want a smoked and infused spicy sea salt gift set.", "attributes": ["low sodium", "gift set"], "options": ["flavor name: smoked & infused"], "instruction_attributes": ["gift set"], "instruction_options": ["smoked & infused"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907W1AU6", "worker_id": "A2RBF3IIJP15IH"}], "B08SWWVD2G": [{"asin": "B08SWWVD2G", "instruction": "i am interested in a height adjustable spa tool that is color a8 and is 40 by 45-63cm.", "attributes": ["height adjustable", "beauty salon"], "options": ["color: a8", "size: 40*45-63cm"], "instruction_attributes": ["height adjustable"], "instruction_options": ["a8", "40*45-63cm"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA1YC8K", "worker_id": "A2ECRNQ3X5LEXD"}], "B0015S1DZW": [{"asin": "B0015S1DZW", "instruction": "i need a small stick of antiperspirant that is fragrance free.", "attributes": ["anti perspirant", "fragrance free", "sensitive skin"], "options": ["size: 2.25 ounce (pack of 1)"], "instruction_attributes": ["anti perspirant", "fragrance free"], "instruction_options": ["2.25 ounce (pack of 1)"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1T9H2T", "worker_id": "A19317A3X87NVM"}], "B0799Y3QCN": [{"asin": "B0799Y3QCN", "instruction": "get me a quad core tablet with 64 gigabytes of storage.", "attributes": ["high performance", "quad core"], "options": ["color: blue", "size: 64gb", "style: tablet"], "instruction_attributes": ["quad core"], "instruction_options": ["64gb", "tablet"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5O36X1", "worker_id": "AR9AU5FY1S3RO"}], "B001KYNTLC": [{"asin": "B001KYNTLC", "instruction": "i want to get a single-count pack of oil-free liquid foundation that has a natural buff color.", "attributes": ["oil free", "fine lines"], "options": ["color: n3 natural buff", "size: 1 count (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["n3 natural buff", "1 count (pack of 1)"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3YVKJ5H", "worker_id": "A345TDMHP3DQ3G"}], "B09DFP2HMB": [{"asin": "B09DFP2HMB", "instruction": "i want to buy a fully assembled faux leather nightstand. i want the one that's white and has a contemporary design.", "attributes": ["fully assembled", "white item", "faux leather", "contemporary design"], "options": [""], "instruction_attributes": ["fully assembled", "white item", "faux leather", "contemporary design"], "instruction_options": [], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZGY9KS", "worker_id": "AR9AU5FY1S3RO"}], "B08S7K5DQK": [{"asin": "B08S7K5DQK", "instruction": "i am looking for a printed backdrop that is 6 by 9 feet for digital photography.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 07", "size: 6x9 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["printed backdrop 07", "6x9 ft"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB959N8A", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08S7K5DQK", "instruction": "i'm looking for a 3' x 5', light weight, aquatic wildlife back drop.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 02", "size: 3x5 ft"], "instruction_attributes": ["light weight"], "instruction_options": ["3x5 ft"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU4826DYP9", "worker_id": "AK3JMCIGU8MLU"}], "B07KC9T27Y": [{"asin": "B07KC9T27Y", "instruction": "i am looking for a high quality black bag that is 6.7 oz.", "attributes": ["bpa free", "high quality"], "options": ["color: black cap - 5 oz", "size: 6.7 oz"], "instruction_attributes": [], "instruction_options": ["black cap - 5 oz", "6.7 oz"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRP2BZE", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NBKNJG5": [{"asin": "B09NBKNJG5", "instruction": "i want a top hairpiece in dark blonde to conceal hair loss.", "attributes": ["damaged hair", "hair loss"], "options": ["color: #27 dark blonde", "size: 6 inch"], "instruction_attributes": ["hair loss"], "instruction_options": ["#27 dark blonde"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVE1UTC", "worker_id": "A19317A3X87NVM"}, {"asin": "B09NBKNJG5", "instruction": "find my-lady silk base top , updated 120% density remy human hair clip in fringe-free topper. it has to be this one and i will for sure cover up a friend's hair loss. register the color : #18p613 so that the order is correct.", "attributes": ["damaged hair", "hair loss"], "options": ["color: #18p613", "size: 6 inch"], "instruction_attributes": ["hair loss"], "instruction_options": ["#18p613"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVHHTUX", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B09NBKNJG5", "instruction": "i am looking for 12 inch size women hairpiece for my damaged hair.", "attributes": ["damaged hair", "hair loss"], "options": ["color: #1 jet black", "size: 12 inch"], "instruction_attributes": ["damaged hair"], "instruction_options": ["12 inch"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPL4NJ5", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09NBKNJG5", "instruction": "i need a jet black hair piece for hair loss", "attributes": ["damaged hair", "hair loss"], "options": ["color: #1 jet black", "size: 16 inch"], "instruction_attributes": ["hair loss"], "instruction_options": ["#1 jet black"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72APWEOD", "worker_id": "A2ECRNQ3X5LEXD"}], "B096RD2FBZ": [{"asin": "B096RD2FBZ", "instruction": "i am looking for a canvas poster for the living room that shows sunny zakynthos island.", "attributes": ["ready hang", "living room"], "options": ["color: sunny zakynthos island", "size: only canvas"], "instruction_attributes": ["living room"], "instruction_options": ["sunny zakynthos island", "only canvas"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2YL53E", "worker_id": "A2ECRNQ3X5LEXD"}], "B0985T17YV": [{"asin": "B0985T17YV", "instruction": "i am interested in a white dinnerware set that has a contemporary design.", "attributes": ["white item", "contemporary design"], "options": ["color: white", "style: soho mugs"], "instruction_attributes": ["contemporary design"], "instruction_options": ["white"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTRKE4D", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P51CZZN": [{"asin": "B09P51CZZN", "instruction": "i am looking for stainless steel hair removal tweezers.", "attributes": ["stainless steel", "hair removal"], "options": [""], "instruction_attributes": ["stainless steel", "hair removal"], "instruction_options": [], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UNH1GW", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09P51CZZN", "instruction": "i want a set of tweezers for hair removal.", "attributes": ["stainless steel", "hair removal"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTU1E5I", "worker_id": "A1WS884SI0SLO4"}], "B08RJZ16P1": [{"asin": "B08RJZ16P1", "instruction": "i am looking for men's adidas hiking shoes size 9 with rubber soles.", "attributes": ["lace closure", "rubber sole"], "options": ["color: beige tone | victory gold | flash orange", "size: 9"], "instruction_attributes": ["rubber sole"], "instruction_options": ["9"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VWSYW2", "worker_id": "A1EREKSZAA9V7B"}], "B094QPCJ9H": [{"asin": "B094QPCJ9H", "instruction": "i am interested in a high definition streaming media player.", "attributes": ["high definition", "quad core"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68CR4AD", "worker_id": "A2ECRNQ3X5LEXD"}], "B015ETINHS": [{"asin": "B015ETINHS", "instruction": "i'm looking for a charcoal and walnut colored summer chair that has a wood finish.", "attributes": ["mid century", "wood finish"], "options": ["color: charcoal | walnut", "pattern name: chair"], "instruction_attributes": ["wood finish"], "instruction_options": ["charcoal | walnut", "chair"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWWS1RS", "worker_id": "A345TDMHP3DQ3G"}], "B0972P4GJP": [{"asin": "B0972P4GJP", "instruction": "i want to find a black portable bluetooth speaker with stereo sound.", "attributes": ["hands free", "stereo sound", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["stereo sound"], "instruction_options": ["black"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QOXXOH", "worker_id": "A345TDMHP3DQ3G"}], "B07RMK36GG": [{"asin": "B07RMK36GG", "instruction": "i need a 2 pack of lemon cookie mini bars that have high protein.", "attributes": ["high protein", "artificial flavors"], "options": ["flavor name: lemon cookie", "size: 12 count (pack of 2)"], "instruction_attributes": ["high protein"], "instruction_options": ["lemon cookie", "12 count (pack of 2)"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODK9WE7", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07RMK36GG", "instruction": "i am looking for 36 high protein chocolate caramel snack bars.", "attributes": ["high protein", "artificial flavors"], "options": ["flavor name: chocolate caramel", "size: 36 count (pack of 3)"], "instruction_attributes": ["high protein"], "instruction_options": ["chocolate caramel", "36 count (pack of 3)"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XONIL90", "worker_id": "A1EREKSZAA9V7B"}], "B0079IYUYS": [{"asin": "B0079IYUYS", "instruction": "i'm looking for a vanity wall light with a brushed nickel finish. it should be around 15 inches big.", "attributes": ["mid century", "nickel finish", "brushed nickel"], "options": ["color: burnished brass - double light", "size: 15 inch"], "instruction_attributes": ["nickel finish", "brushed nickel"], "instruction_options": ["15 inch"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9DR2E8", "worker_id": "A3EDFA8UQT5GG8"}], "B09SL5S4Y4": [{"asin": "B09SL5S4Y4", "instruction": "i want to find a women's long-sleeve jumpsuit in a medium size with the 13 color.", "attributes": ["long sleeve", "quality polyester", "unique design", "polyester spandex", "daily wear"], "options": ["color: color13", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["color13", "medium"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEFZ860", "worker_id": "A345TDMHP3DQ3G"}], "B091TZTD5G": [{"asin": "B091TZTD5G", "instruction": "i would like a 16.9 fluid ounce amber bottle that could be used in a hair salon.", "attributes": ["long lasting", "fine mist", "hair salon", "natural hair"], "options": ["color: amber", "size: 16.9 fl oz (pack of 1)"], "instruction_attributes": ["hair salon"], "instruction_options": ["amber", "16.9 fl oz (pack of 1)"], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVC7BIO", "worker_id": "A1WS884SI0SLO4"}], "B092Q2QGQF": [{"asin": "B092Q2QGQF", "instruction": "i want a bezel-less vizio 43-inch d-series full hd 1080p smart tv.", "attributes": ["1080p hd", "high definition"], "options": ["configuration: bezel-less", "size: 32 in", "style: 720p"], "instruction_attributes": ["1080p hd"], "instruction_options": ["bezel-less"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFLF9EP", "worker_id": "A2RBF3IIJP15IH"}], "B07PYPGQ8B": [{"asin": "B07PYPGQ8B", "instruction": "i'm trying to find high quality eyelash extensions that are 0.15 millimeters in diameter and 13-20 millimeters long.", "attributes": ["high quality", "easy use"], "options": ["scent name: 0.15-d-mix-13-20mm"], "instruction_attributes": ["high quality"], "instruction_options": ["0.15-d-mix-13-20mm"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CAE0VW", "worker_id": "A345TDMHP3DQ3G"}], "B09KTVWQ5V": [{"asin": "B09KTVWQ5V", "instruction": "i need to buy some slim fit yoga pants. get the ones that are multicolered in xx large.", "attributes": ["quick drying", "moisture wicking", "slim fit", "drawstring closure", "daily wear"], "options": ["color: multicolor", "size: xx-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["multicolor", "xx-large"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDXCIC7", "worker_id": "AR9AU5FY1S3RO"}], "B08FQSSTQ5": [{"asin": "B08FQSSTQ5", "instruction": "i am looking for an easy to carry 4-tier black cosmetic box.", "attributes": ["travel size", "easy carry", "nail polish"], "options": ["color: 4-tier black"], "instruction_attributes": ["easy carry"], "instruction_options": ["4-tier black"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8L7Q6F", "worker_id": "A1EREKSZAA9V7B"}], "B0932W5W2N": [{"asin": "B0932W5W2N", "instruction": "i want a vintage beige twin size metal platform bed frame.", "attributes": ["twin size", "heavy duty", "easy install", "steel frame", "box spring", "storage space"], "options": ["color: beige", "size: vintage bed"], "instruction_attributes": ["twin size"], "instruction_options": ["beige", "vintage bed"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC3B0DY", "worker_id": "A2RBF3IIJP15IH"}], "B082L53NSB": [{"asin": "B082L53NSB", "instruction": "i am looking for a brushed polished nickel color vanity light having glass shade.", "attributes": ["vanity light", "glass shade"], "options": ["color: brushed polished nickel", "size: 3-light"], "instruction_attributes": ["glass shade"], "instruction_options": ["brushed polished nickel"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZIA7RD", "worker_id": "A1Q8PPQQCWGY0D"}], "B07F5M8YPD": [{"asin": "B07F5M8YPD", "instruction": "buy a two pack of whitening toothpaste.", "attributes": ["teeth whitening", "fresh breath"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HMIOW6", "worker_id": "AR9AU5FY1S3RO"}], "B091F3RWX8": [{"asin": "B091F3RWX8", "instruction": "i need brown eco friendly nikahoo small storage baskets.", "attributes": ["eco friendly", "space saving", "easy assemble", "pu leather", "storage space", "living room"], "options": ["color: 06 brown-2pcs"], "instruction_attributes": ["eco friendly"], "instruction_options": ["06 brown-2pcs"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCGSIPM", "worker_id": "A2RBF3IIJP15IH"}], "B01F8T9LMA": [{"asin": "B01F8T9LMA", "instruction": "i need a new dresser. look for one made from engineered wood with lots of storage space.", "attributes": ["engineered wood", "storage space"], "options": [""], "instruction_attributes": ["engineered wood", "storage space"], "instruction_options": [], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHT5LLN7", "worker_id": "AR9AU5FY1S3RO"}], "B09HZV14ND": [{"asin": "B09HZV14ND", "instruction": "buy me some coffee brown hair dye. make sure it only contains natural ingredients.", "attributes": ["easy carry", "green tea", "natural ingredients", "hair dye"], "options": ["color: coffee"], "instruction_attributes": ["natural ingredients", "hair dye"], "instruction_options": ["coffee"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IO232J", "worker_id": "AR9AU5FY1S3RO"}], "B07VPCPY1X": [{"asin": "B07VPCPY1X", "instruction": "i'm looking for protein snacks that are very high in protein and contain pumpkin seeds. i'm lactose intolerant.", "attributes": ["soy free", "dairy free", "gluten free", "protein serving", "keto friendly", "high protein", "plant based", "non gmo"], "options": ["flavor name: pumpkin", "size: 4.5 ounce (pack of 1)"], "instruction_attributes": ["dairy free", "high protein"], "instruction_options": ["pumpkin"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QS5072", "worker_id": "A3EDFA8UQT5GG8"}], "B07C2F29CP": [{"asin": "B07C2F29CP", "instruction": "i'm looking for a comfortable pair of mens jeans. they should be shadow black and slim fitting.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: shadow black", "fit type: slim", "size: 40w x 40l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["shadow black", "slim"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4820IJ", "worker_id": "A3EDFA8UQT5GG8"}, {"asin": "B07C2F29CP", "instruction": "i am looking for slim comfortable fit jeans that is long lasting.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: cottonwood", "fit type: slim", "size: 32w x 32l"], "instruction_attributes": ["long lasting", "comfortable fit"], "instruction_options": ["slim"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZPX1YW", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07C2F29CP", "instruction": "i'm looking for comfortable fit regular jean which must be machine wash with long lasting imported zipper", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: worn in", "fit type: regular", "size: 31w x 36l"], "instruction_attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "instruction_options": ["regular"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YKHPNE", "worker_id": "A1Q0EUNCS50S8M"}, {"asin": "B07C2F29CP", "instruction": "i would like a 28 wide by 34 long big and tall pair of dax jeans that can be machine washed.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: dax", "fit type: big & tall", "size: 28w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["dax", "big & tall", "28w x 34l"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZ0UZJI", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07C2F29CP", "instruction": "i would like a 30 wide by 40 long big and tall pair of acorn jeans with a comfortable fit.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: acorn", "fit type: big & tall", "size: 31w x 40l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["acorn", "big & tall", "31w x 40l"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GGQZUC", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07C2F29CP", "instruction": "i'm locking for a cowboy cut original fit jean for men's.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: hubbard", "fit type: slim", "size: 33w x 32l"], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R9SYT8", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B07C2F29CP", "instruction": "i'm looking for a pair of comfortably fitting men's jeans in the size of 33 wide by 34 length.", "attributes": ["long lasting", "machine wash", "imported zipper", "comfortable fit"], "options": ["color: true blue", "fit type: big & tall", "size: 33w x 34l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["33w x 34l"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3IFNQJ", "worker_id": "A2JP9IKRHNLRPI"}], "B08RHLN3DK": [{"asin": "B08RHLN3DK", "instruction": "i would like some low carb elbow noodles that come in a six pack.", "attributes": ["low carb", "soy free", "kosher certified"], "options": ["flavor name: elbows", "size: 8 ounce (pack of 6)"], "instruction_attributes": ["low carb"], "instruction_options": ["elbows", "8 ounce (pack of 6)"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINQM72Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QGQVXWX": [{"asin": "B09QGQVXWX", "instruction": "i'm looking for an extra-large women's swimsuit that is moisture-wicking. it needs to be green.", "attributes": ["daily casual", "moisture wicking", "cotton spandex", "gym workout"], "options": ["color: egreen", "size: x-large"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["egreen", "x-large"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKWLDNL", "worker_id": "A345TDMHP3DQ3G"}], "B081YB76BF": [{"asin": "B081YB76BF", "instruction": "i want machine washable christmas scene white decorative pillow covers in size square 22 x 22 inches.", "attributes": ["double sided", "machine washable"], "options": ["color: christmas scene white", "size: square 22 x 22 inches"], "instruction_attributes": ["machine washable"], "instruction_options": ["christmas scene white", "square 22 x 22 inches"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6315GX", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B081YB76BF", "instruction": "i want to buy pillow covers which are machine washable and have ombre blue grey color and have a size of square 20 x 20 inches.", "attributes": ["double sided", "machine washable"], "options": ["color: ombre blue grey", "size: square 20 x 20 inches"], "instruction_attributes": ["machine washable"], "instruction_options": ["ombre blue grey", "square 20 x 20 inches"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IVA325", "worker_id": "AJY5G987IRT25"}], "B09JP2LYMH": [{"asin": "B09JP2LYMH", "instruction": "i am looking for a folding mattress of size 90cm\u00d7190cm for my living room.", "attributes": ["memory foam", "living room"], "options": ["size: 90cm\u00d7190cm"], "instruction_attributes": ["living room"], "instruction_options": ["90cm\u00d7190cm"], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY0LP72", "worker_id": "A1Q8PPQQCWGY0D"}], "B098QBHNQ3": [{"asin": "B098QBHNQ3", "instruction": "i am interested in a black travel sized cosmetic bag.", "attributes": ["travel size", "easy clean", "high quality"], "options": ["color: a-black"], "instruction_attributes": ["travel size"], "instruction_options": ["a-black"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPJLSY6", "worker_id": "A2ECRNQ3X5LEXD"}], "B096ZGR1JX": [{"asin": "B096ZGR1JX", "instruction": "i need a xmarto wireless home security camera system with motion detection.", "attributes": ["easy use", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPLOWFP", "worker_id": "A2RBF3IIJP15IH"}], "B09FXVS6QB": [{"asin": "B09FXVS6QB", "instruction": "i am looking for a dual band streaming player that has 4gb of ram and 64gb of storage.", "attributes": ["dual band", "ultra hd", "quad core"], "options": ["color: 4gb+64gb"], "instruction_attributes": ["dual band"], "instruction_options": ["4gb+64gb"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMMW3SR1", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DK41PGJ": [{"asin": "B08DK41PGJ", "instruction": "i am looking for a 3 cheese wine country gift basket with italian salame.", "attributes": ["gift basket", "perfect gift"], "options": ["style: 3 cheese"], "instruction_attributes": ["gift basket"], "instruction_options": ["3 cheese"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FETLET", "worker_id": "A1EREKSZAA9V7B"}], "B08LVQTPJN": [{"asin": "B08LVQTPJN", "instruction": "i am interested in earth tone blinds that are easy to install and are 43\" by 56\"", "attributes": ["easy install", "home furnishings"], "options": ["color: earth tone - 100% blackout", "size: 43\"w x 56\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["earth tone - 100% blackout", "43\"w x 56\"h"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602Q5959", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08LVQTPJN", "instruction": "i am looking for a light brown - 100% blackout 50\"w x 72\"h roller shades which is easy to install.", "attributes": ["easy install", "home furnishings"], "options": ["color: light brown - 100% blackout", "size: 50\"w x 72\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["light brown - 100% blackout", "50\"w x 72\"h"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VKA06Y", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B08LVQTPJN", "instruction": "i am looking for easy install blackout roller shades no tools needed. 12'w x 48\"h", "attributes": ["easy install", "home furnishings"], "options": ["color: light brown - 100% blackout", "size: 38\"w x 60\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["38\"w x 60\"h"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E0057XL", "worker_id": "A2KW17G25L25R8"}], "B08RZF6YWF": [{"asin": "B08RZF6YWF", "instruction": "i want to find a two-pack of 2-ounce beef jerky bags that are high in protein and come in a variety of flavors.", "attributes": ["high protein", "low carb", "sugar free", "old fashioned", "gluten free", "protein serving", "low calorie", "artificial flavors", "natural ingredients", "zero sugar"], "options": ["flavor name: variety", "size: 2 ounce (pack of 2)"], "instruction_attributes": ["high protein"], "instruction_options": ["variety", "2 ounce (pack of 2)"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZUAJZ6", "worker_id": "A345TDMHP3DQ3G"}], "B00HB55PKM": [{"asin": "B00HB55PKM", "instruction": "i am looking for size 13 evergreen clogs with vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: evergreen", "size: 13 women | 13 men"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["evergreen", "13 women | 13 men"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2Z335W", "worker_id": "A1EREKSZAA9V7B"}], "B07HKB2VF1": [{"asin": "B07HKB2VF1", "instruction": "i want to find an emergency radio that's water resistant and includes aaa batteries.", "attributes": ["water resistant", "batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["water resistant", "batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JX9WG7N", "worker_id": "A345TDMHP3DQ3G"}], "B08P5481L1": [{"asin": "B08P5481L1", "instruction": "i'd like to get men's straight-legged jeans that are 38 centimeters in width and 30 centimeters in length. the color should be waterless rose.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: the rose (waterless) big & tall", "size: 48w x 30l"], "instruction_attributes": ["straight leg"], "instruction_options": ["the rose (waterless) big & tall", "48w x 30l"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOAJLL3", "worker_id": "A345TDMHP3DQ3G"}], "B003GU0TIO": [{"asin": "B003GU0TIO", "instruction": "i am looking for gluten free chili bean sauce.", "attributes": ["gluten free", "perfect gift"], "options": ["flavor name: chil bean sauce"], "instruction_attributes": ["gluten free"], "instruction_options": ["chil bean sauce"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVIUQ0N", "worker_id": "A1EREKSZAA9V7B"}], "B09BLHVV47": [{"asin": "B09BLHVV47", "instruction": "i need white non slip working shoes that in a size 10.5 for women", "attributes": ["non slip", "water resistant", "light weight", "faux fur", "rubber sole"], "options": ["color: white camo", "size: 10.5 women | 9.5 men"], "instruction_attributes": ["non slip"], "instruction_options": ["white camo", "10.5 women | 9.5 men"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E2PHXJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PTXWC42": [{"asin": "B09PTXWC42", "instruction": "i am looking for a high quality makeup mirror.", "attributes": ["easy carry", "high quality"], "options": ["color: i"], "instruction_attributes": ["high quality"], "instruction_options": ["i"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLS9PCWP", "worker_id": "A2KW17G25L25R8"}], "B096QDXYXG": [{"asin": "B096QDXYXG", "instruction": "i would like some pink wedges that provide all day comfort and are a size 8.5.", "attributes": ["knee high", "day comfort", "open toe", "high heel", "quality materials", "ankle strap"], "options": ["color: z5-pink", "size: 8.5"], "instruction_attributes": ["day comfort"], "instruction_options": ["z5-pink", "8.5"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI37ZBDM", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B096QDXYXG", "instruction": "i need a high heel 8.5 sized , z92-purple wedge platform sandals for women", "attributes": ["knee high", "day comfort", "open toe", "high heel", "quality materials", "ankle strap"], "options": ["color: z92-purple", "size: 8.5"], "instruction_attributes": ["high heel"], "instruction_options": ["z92-purple", "8.5"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOKA0F0", "worker_id": "A258PTOZ3D2TQR"}], "B083TJ99G3": [{"asin": "B083TJ99G3", "instruction": "i am interested in hdmi cables that have output protection.", "attributes": ["output protection", "1080p hd"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGH0W2M", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZK98Y9Y": [{"asin": "B07ZK98Y9Y", "instruction": "i would like a white size 6 sandal with a rubber sole.", "attributes": ["open toe", "ankle strap", "rubber sole", "fashion design", "arch support"], "options": ["color: white 1", "size: 6"], "instruction_attributes": ["rubber sole"], "instruction_options": ["white 1", "6"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVJKLXG", "worker_id": "A1WS884SI0SLO4"}], "B07YT6ZSRG": [{"asin": "B07YT6ZSRG", "instruction": "i would like a standard sofa table that has a wood finish.", "attributes": ["assembly required", "wood finish", "contemporary design", "engineered wood", "living room"], "options": ["size: sofa table", "style: standard"], "instruction_attributes": ["wood finish"], "instruction_options": ["sofa table", "standard"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7S9AWRV", "worker_id": "A2ECRNQ3X5LEXD"}], "B093PNF328": [{"asin": "B093PNF328", "instruction": "get me a hands free two way radio. get the two pack charging station option.", "attributes": ["hands free", "high power"], "options": ["color: b 1green & 1purple & 1red & 1yellow with noaa | usb charger | usb cable | battery | earpiece | lanyard", "size: charging station option(two pack only)"], "instruction_attributes": ["hands free"], "instruction_options": ["charging station option(two pack only)"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPJWYSN", "worker_id": "AR9AU5FY1S3RO"}], "B08YJYZSX7": [{"asin": "B08YJYZSX7", "instruction": "i would like a desk set with a steel frame.", "attributes": ["steel frame", "storage space"], "options": [""], "instruction_attributes": ["steel frame"], "instruction_options": [], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I5YDFD", "worker_id": "A1WS884SI0SLO4"}], "B09NVSN43G": [{"asin": "B09NVSN43G", "instruction": "i want to find a birthday cake topper that i can use for my birthday party.", "attributes": ["birthday cake", "birthday party", "baby shower"], "options": [""], "instruction_attributes": ["birthday cake", "birthday party"], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTQ9P9E", "worker_id": "A345TDMHP3DQ3G"}], "B089DLMN63": [{"asin": "B089DLMN63", "instruction": "i am looking for a 36 count pack of soy free fruit and nut bars.", "attributes": ["soy free", "plant based", "grain free", "dairy free", "gluten free"], "options": ["flavor name: skout bar sample pack", "size: 36 count"], "instruction_attributes": ["soy free"], "instruction_options": ["36 count"], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPWCZ0K2", "worker_id": "A2ECRNQ3X5LEXD"}], "B00JVB5QTE": [{"asin": "B00JVB5QTE", "instruction": "i want to find a pair of wireless bluetooth headphones.", "attributes": ["high performance", "hands free", "high definition", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJKZR3J9", "worker_id": "A345TDMHP3DQ3G"}], "B01MU7OTU6": [{"asin": "B01MU7OTU6", "instruction": "i would like a lotion that is mango scented and cruelty free that comes in 32 ounces.", "attributes": ["alcohol free", "sulfate free", "cruelty free", "seed oil"], "options": ["scent: mango", "size: 32 ounce"], "instruction_attributes": ["cruelty free"], "instruction_options": ["mango", "32 ounce"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3WTQ7G", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CLP2DL4": [{"asin": "B07CLP2DL4", "instruction": "looking for one snack of jalapeno n cheddar smoked gluten free with high protein", "attributes": ["ready eat", "high protein", "gluten free"], "options": [""], "instruction_attributes": ["high protein", "gluten free"], "instruction_options": [], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZQ540C", "worker_id": "A2Y2TURT2VEYZN"}], "B08DG6C2WW": [{"asin": "B08DG6C2WW", "instruction": "i want to buy some hair growth shampoo that is bamboo and charcoal scented in a 10 ounce bottle.", "attributes": ["natural ingredients", "hair growth"], "options": ["scent: bamboo & charcoal shampoo", "size: 10.14 fl oz"], "instruction_attributes": ["hair growth"], "instruction_options": ["bamboo & charcoal shampoo", "10.14 fl oz"], "assignment_id": "3TR2532VI040LV46NXNX77Y3USC6J5", "worker_id": "A2YNPKYEFDZ6C9"}], "B09MFFGQX3": [{"asin": "B09MFFGQX3", "instruction": "i'm looking for a lip balm that would help minimize dead skin caused by dry lips in the winter.", "attributes": ["seed oil", "dead skin"], "options": ["color: d"], "instruction_attributes": ["dead skin"], "instruction_options": ["d"], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ0UNRRF", "worker_id": "A3EDFA8UQT5GG8"}], "B0181DGCWM": [{"asin": "B0181DGCWM", "instruction": "i would like a black 3'11'' x 5'3'' rug for my dining room.", "attributes": ["easy clean", "dining room"], "options": ["color: black", "size: 3'11'' x 5'3''"], "instruction_attributes": ["dining room"], "instruction_options": ["3'11'' x 5'3''"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB119LUU", "worker_id": "A1WS884SI0SLO4"}], "B09PV4HGFN": [{"asin": "B09PV4HGFN", "instruction": "i am looking for a high resolution portrait of green forest natural scenery.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a38", "size: 5x3ft | 1.5x1m"], "instruction_attributes": ["high resolution"], "instruction_options": ["5x3ft | 1.5x1m"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXVTYMS", "worker_id": "A2KW17G25L25R8"}, {"asin": "B09PV4HGFN", "instruction": "i'm looking for a photo studio background that's light weight and has a high definition image. it should be five by three feet.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a12", "size: 5x3ft | 1.5x1m"], "instruction_attributes": ["light weight", "high definition"], "instruction_options": ["5x3ft | 1.5x1m"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKSMSG9", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09PV4HGFN", "instruction": "i want a high resolution portrait background that is 10x7ft in size.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a6", "size: 10x7ft | 3x2.2m"], "instruction_attributes": ["high resolution"], "instruction_options": ["10x7ft | 3x2.2m"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IZKHKG", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09PV4HGFN", "instruction": "i am looking for a high definition a19 color background.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a19", "size: 9x6ft | 2.7x1.8m"], "instruction_attributes": ["high definition"], "instruction_options": ["a19"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXVOO5B", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09PV4HGFN", "instruction": "searching in the photo studio, i am looking for green forest natural scenery landscape portrait background studio prop that is of high resolution and definition. the approximate size is 9x6ft|2.7x1.8m.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a39", "size: 9x6ft | 2.7x1.8m"], "instruction_attributes": ["high resolution", "high definition"], "instruction_options": ["9x6ft | 2.7x1.8m"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMUT2GE", "worker_id": "A3RGIKEI8JS2QG"}], "B09J1HDKV2": [{"asin": "B09J1HDKV2", "instruction": "i am looking for small long sleeve women's christmas cardigan with pockets.", "attributes": ["hand wash", "long sleeve", "tumble dry", "daily wear"], "options": ["color: 09 # black", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIGI295", "worker_id": "A1EREKSZAA9V7B"}], "B082MMS2YZ": [{"asin": "B082MMS2YZ", "instruction": "i am looking for wall mounted security camera for home security", "attributes": ["wall mounted", "aaa batteries"], "options": [""], "instruction_attributes": ["wall mounted"], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3PSP6U", "worker_id": "A258PTOZ3D2TQR"}], "B08LNTD4K3": [{"asin": "B08LNTD4K3", "instruction": "i am looking for a clear glass office desk that is white.", "attributes": ["assembly required", "clear glass"], "options": ["color: white"], "instruction_attributes": ["clear glass"], "instruction_options": ["white"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TJVN3W", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MJXTXY3": [{"asin": "B09MJXTXY3", "instruction": "i need a fast charging usb c wall charger.", "attributes": ["fast charging", "usb port"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL325HK", "worker_id": "A2RBF3IIJP15IH"}], "B09PGQ7TV8": [{"asin": "B09PGQ7TV8", "instruction": "i want to find an 8 ounce soy wax candle that is unscented.", "attributes": ["eco friendly", "soy wax"], "options": ["scent: unscented", "size: 8oz"], "instruction_attributes": ["soy wax"], "instruction_options": ["unscented", "8oz"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP1076TLIT", "worker_id": "A345TDMHP3DQ3G"}], "B01GUKR4GQ": [{"asin": "B01GUKR4GQ", "instruction": "i am looking for gluten free sea salt.", "attributes": ["fat free", "non gmo", "gluten free", "artificial colors", "great gift"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRPJZBJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B082FVNHWH": [{"asin": "B082FVNHWH", "instruction": "get me a high-quality cosmetic bag with palm trees on it.", "attributes": ["high quality", "nail art"], "options": ["color: palm trees"], "instruction_attributes": ["high quality"], "instruction_options": ["palm trees"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRPY2YP", "worker_id": "AR9AU5FY1S3RO"}], "B082WM6X9R": [{"asin": "B082WM6X9R", "instruction": "looking for a soap that is antifugal and antibacterial with natural ingredients to wash the body", "attributes": ["paraben free", "tea tree", "natural ingredients"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP1076PILM", "worker_id": "A2Y2TURT2VEYZN"}], "B075CF6VCR": [{"asin": "B075CF6VCR", "instruction": "i am looking for an xx-large short sleeve casual v-neck t-shirt.", "attributes": ["slim fit", "contrast color", "long sleeve", "short sleeve", "tumble dry"], "options": ["color: b2 long sleeve- black", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK64ZYY8", "worker_id": "A1EREKSZAA9V7B"}], "B00YEU96GQ": [{"asin": "B00YEU96GQ", "instruction": "i am looking for a carbon fiber tripod.", "attributes": ["carbon fiber", "stainless steel"], "options": ["size: 3 series | 4 section", "style: carbon fiber tripod"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["carbon fiber tripod"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8AQUXW", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00YEU96GQ", "instruction": "i am looking for stainless steel long carbon fiber 3 series| 3 section long tripod", "attributes": ["carbon fiber", "stainless steel"], "options": ["size: 3 series | 3 section long", "style: aluminum tripod"], "instruction_attributes": ["stainless steel"], "instruction_options": ["3 series | 3 section long"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G79R472", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B00YEU96GQ", "instruction": "i want a benro mach3 long carbon fiber aluminum tripod.", "attributes": ["carbon fiber", "stainless steel"], "options": ["size: 4 series | 4 section extra long", "style: aluminum tripod"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["aluminum tripod"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QB4M14", "worker_id": "A2RBF3IIJP15IH"}], "B0741SYMHT": [{"asin": "B0741SYMHT", "instruction": "i need a supershieldz glass screen protector for samsung galaxy tab s2 8.0.", "attributes": ["tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["glass screen"], "instruction_options": [], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1CX08B", "worker_id": "A2RBF3IIJP15IH"}], "B07B8TWFKS": [{"asin": "B07B8TWFKS", "instruction": "i am looking for a gluten free chicken sticks with high protein. also choose pepper flavor and 6 stick pack.", "attributes": ["artificial ingredients", "low sugar", "gluten free", "low calorie", "keto friendly", "high protein", "low carb"], "options": ["flavor name: pepper", "size: 6 stick"], "instruction_attributes": ["gluten free", "high protein"], "instruction_options": ["pepper", "6 stick"], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW68YVVU", "worker_id": "A2HMEGTAFO0CS8"}], "B09L775HFG": [{"asin": "B09L775HFG", "instruction": "get me a seventy centimeter wall mounted mirror that's easy to install.", "attributes": ["wall mounted", "easy install"], "options": ["size: 70cm"], "instruction_attributes": ["wall mounted", "easy install"], "instruction_options": ["70cm"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH7D1EQ", "worker_id": "AR9AU5FY1S3RO"}], "B09MLQGHSY": [{"asin": "B09MLQGHSY", "instruction": "i'd like to get coaxial cables that are plated with gold.", "attributes": ["gold plated", "coaxial cable"], "options": [""], "instruction_attributes": ["gold plated", "coaxial cable"], "instruction_options": [], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU70K57W", "worker_id": "A345TDMHP3DQ3G"}], "B09DGL37KN": [{"asin": "B09DGL37KN", "instruction": "i am interested in a mattress pad that is the color e and is 180 by 200 cm.", "attributes": ["non slip", "space saving"], "options": ["color: e", "size: 180x200cm"], "instruction_attributes": ["non slip"], "instruction_options": ["e", "180x200cm"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCMFB90", "worker_id": "A2ECRNQ3X5LEXD"}], "B07P5JRGXW": [{"asin": "B07P5JRGXW", "instruction": "i'm looking for a small mens t-shirt that is machine washable and made of polyester or cotton.", "attributes": ["machine wash", "polyester cotton"], "options": ["size: small"], "instruction_attributes": ["machine wash", "polyester cotton"], "instruction_options": ["small"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQADSQC", "worker_id": "A3EDFA8UQT5GG8"}], "B00GMM1CF2": [{"asin": "B00GMM1CF2", "instruction": "i am interested in hand crafted snack gifts.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG18PYGQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B078NGJPM9": [{"asin": "B078NGJPM9", "instruction": "i'm looking for a 50-pack of black usb plugs that last for a long time.", "attributes": ["long lasting", "easy use", "usb port", "wireless charging"], "options": ["color: black, 50 pack", "size: 50 pack"], "instruction_attributes": ["long lasting"], "instruction_options": ["black, 50 pack", "50 pack"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFP0T0B", "worker_id": "A345TDMHP3DQ3G"}], "B09FPNLS69": [{"asin": "B09FPNLS69", "instruction": "i would like a clear glass screen protector for my galaxy watch 4.", "attributes": ["tempered glass", "glass screen"], "options": ["color: clear + black", "size: for galaxy watch 4 - 40mm"], "instruction_attributes": ["glass screen"], "instruction_options": ["clear + black", "for galaxy watch 4 - 40mm"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80AW1QX", "worker_id": "A1WS884SI0SLO4"}], "B07TBGP54C": [{"asin": "B07TBGP54C", "instruction": "i am looking for an easy to use sonic toothbrush for kids, 1 pack.", "attributes": ["easy use", "fresh breath"], "options": ["color: sonic toothbrush 1 pack"], "instruction_attributes": ["easy use"], "instruction_options": ["sonic toothbrush 1 pack"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUSBQJ7", "worker_id": "A1EREKSZAA9V7B"}], "B09PL63TF9": [{"asin": "B09PL63TF9", "instruction": "buy me some hiking boots with rubber soles. get them in red, size eight.", "attributes": ["open toe", "knee high", "slip resistant", "non slip", "ankle strap", "memory foam", "rubber sole", "daily wear"], "options": ["color: red", "size: 8"], "instruction_attributes": ["rubber sole"], "instruction_options": ["red", "8"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3Q97M13", "worker_id": "AR9AU5FY1S3RO"}], "B0785YLFQX": [{"asin": "B0785YLFQX", "instruction": "i need 16 inch long dark brown goo goo remy hair extensions tape.", "attributes": ["high quality", "hair extensions", "natural hair"], "options": ["color: dark brown mixed chestnut brown #2 | 6 | 2", "size: 16 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["dark brown mixed chestnut brown #2 | 6 | 2", "16 inch (pack of 1)"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXW9ZNF4", "worker_id": "A2RBF3IIJP15IH"}], "B073KYYVTR": [{"asin": "B073KYYVTR", "instruction": "i am looking for coaxial cable brass connector of size 195ft having high speed.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 195ft", "style: w | messenger - black"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHRELU2J0", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B073KYYVTR", "instruction": "i am looking for a 400 foot long high speed coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 400ft", "style: direct burial 3ghz w | weather boot - ora..."], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": ["400ft"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRSVBZD", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B073KYYVTR", "instruction": "i'm looking for high speed accessories for video cables.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 70ft", "style: trishield - black"], "instruction_attributes": ["high speed", "aluminum alloy"], "instruction_options": ["70ft"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZFQPRI", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B073KYYVTR", "instruction": "i want a 280ft black tri-shield weather seal indoor outdoor rg-6 coaxial cable.", "attributes": ["high speed", "coaxial cable", "aluminum alloy"], "options": ["size: 280ft", "style: direct burial w | rg-11 weather boot - bl..."], "instruction_attributes": ["coaxial cable"], "instruction_options": ["280ft"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8YTPZZ", "worker_id": "A2RBF3IIJP15IH"}], "B01H6NZ45E": [{"asin": "B01H6NZ45E", "instruction": "i'm looking for men's swiftwater river relaxed fit sandal of size 9", "attributes": ["synthetic sole", "relaxed fit"], "options": ["color: blue navy slate grey", "size: 9"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["9"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N307TJ", "worker_id": "A258PTOZ3D2TQR"}], "B07C91Q25B": [{"asin": "B07C91Q25B", "instruction": "i'm looking for a volleyball shorts in low rise and in a 02navy colour and large size", "attributes": ["low rise", "loose fit"], "options": ["color: a02-navy", "size: large"], "instruction_attributes": ["low rise"], "instruction_options": ["a02-navy", "large"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8L9AO18", "worker_id": "A19Q021KR28CS8"}], "B09P9ZR7KF": [{"asin": "B09P9ZR7KF", "instruction": "i am looking for a high quality stainless steel set of hair cutting scissors.", "attributes": ["high quality", "easy use", "stainless steel", "hair cutting"], "options": ["size: 6.4\"", "style: dhc-63"], "instruction_attributes": ["high quality", "stainless steel"], "instruction_options": ["6.4\""], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKW8NDI", "worker_id": "A1EREKSZAA9V7B"}], "B08PNY8LT3": [{"asin": "B08PNY8LT3", "instruction": "i would like a dark brown fabric chair with a more contemporary design.", "attributes": ["button tufted", "contemporary design"], "options": ["color: dark brown + natural", "style: fabric"], "instruction_attributes": ["contemporary design"], "instruction_options": ["dark brown + natural", "fabric"], "assignment_id": "3X65QVEQIBXVW21709CD9M35U1SLCA", "worker_id": "A1WS884SI0SLO4"}], "B09NCB2NC4": [{"asin": "B09NCB2NC4", "instruction": "i want a heavy duty splice board design computer office desk.", "attributes": ["easy clean", "heavy duty", "easy assemble", "coated steel"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R2DTYA", "worker_id": "A2RBF3IIJP15IH"}], "B0017J22OK": [{"asin": "B0017J22OK", "instruction": "i'm looking for a dermatologist tested hair remover that comes in a spray and is size large.", "attributes": ["dermatologist tested", "long lasting"], "options": [""], "instruction_attributes": ["dermatologist tested"], "instruction_options": [], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70ILCCB4", "worker_id": "A28BSMU0QCS69S"}], "B07ZJWJH8Q": [{"asin": "B07ZJWJH8Q", "instruction": "i'm trying to find a chrome, stainless steel storage organizer to put over my kitchen cabinet doors.", "attributes": ["ready hang", "storage space", "stainless steel"], "options": ["color: chrome", "color: graphite", "color: bronze"], "instruction_attributes": ["stainless steel"], "instruction_options": ["chrome"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC5GQRKB", "worker_id": "A345TDMHP3DQ3G"}], "B08FRKT4FZ": [{"asin": "B08FRKT4FZ", "instruction": "i want an electric callus remover that's not only easy to clean, but also rechargeable.", "attributes": ["high quality", "easy clean", "dead skin"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9RJE24", "worker_id": "A345TDMHP3DQ3G"}], "B09NYC15NL": [{"asin": "B09NYC15NL", "instruction": "find me a white and black wooden etagere bookcase that needs assembly.", "attributes": ["assembly required", "wood frame"], "options": ["color: antique blue | black", "color: white | black"], "instruction_attributes": ["assembly required", "wood frame"], "instruction_options": ["white | black"], "assignment_id": "3EG49X3515M1GF9V412YYG6I52M6XC", "worker_id": "A3AJJHOAV7WIUQ"}], "B07TJ9VNHQ": [{"asin": "B07TJ9VNHQ", "instruction": "i'm looking for a men's classic fit shirt containing a jamaican woman.", "attributes": ["needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "color: asphalt", "color: purple", "color: black", "size: x-large", "size: large", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["men"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2JZY78", "worker_id": "A2JP9IKRHNLRPI"}], "B09M3K9LPH": [{"asin": "B09M3K9LPH", "instruction": "i want a large white storage shoe bench for the entryway to my living room. please find one that's 63 inches in height.", "attributes": ["white item", "living room"], "options": ["color: white w | doors", "color: white-63\"h", "color: black-70.8\"-h", "style: larger", "style: normal"], "instruction_attributes": ["white item", "living room"], "instruction_options": ["white-63\"h", "larger"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YWF04TE", "worker_id": "A345TDMHP3DQ3G"}], "B0961G4KFP": [{"asin": "B0961G4KFP", "instruction": "hey i am looking for an open toe, size 9 women's slipper made with fax fur.", "attributes": ["open toe", "day comfort", "non slip", "faux fur", "memory foam"], "options": ["size: 5-6", "size: 11-12", "size: 9-10", "color: blush", "color: leopard", "color: ivory"], "instruction_attributes": ["open toe", "faux fur"], "instruction_options": ["9-10"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXQPJU3", "worker_id": "AXY0D2AMLKE2A"}], "B09DTJXZ6K": [{"asin": "B09DTJXZ6K", "instruction": "i want to find edible black glitter that i can easily use on desserts.", "attributes": ["easy use", "dairy free", "gluten free"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCWQCGGF", "worker_id": "A345TDMHP3DQ3G"}], "B08P7KK2F3": [{"asin": "B08P7KK2F3", "instruction": "i'm looking for a tempered glass coffee table for my living room that has a wooden frame.", "attributes": ["tempered glass", "clear glass", "wood frame", "living room"], "options": [""], "instruction_attributes": ["tempered glass", "wood frame", "living room"], "instruction_options": [], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9Q2FXOR", "worker_id": "A2JP9IKRHNLRPI"}], "B099VDWX8H": [{"asin": "B099VDWX8H", "instruction": "i want to find a blonde-colored, full-sized standard futon mattress. it must be easy to clean!", "attributes": ["spot clean", "easy clean"], "options": ["color: textured light gray", "color: pink", "color: blonde", "size: full", "size: queen", "style: contemporary", "style: casual"], "instruction_attributes": ["easy clean"], "instruction_options": ["blonde"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNYHS0UM", "worker_id": "A345TDMHP3DQ3G"}], "B07KYLGXY9": [{"asin": "B07KYLGXY9", "instruction": "i'm looking for an extra small black women's t-shirt that's machine washable and features origami paper cranes.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["fit type: men", "fit type: women", "fit type: youth", "color: brown", "color: black", "color: asphalt", "size: 3t", "size: x-small", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["women", "black", "x-small"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLAGAR86", "worker_id": "A345TDMHP3DQ3G"}], "B074PWBRF9": [{"asin": "B074PWBRF9", "instruction": "i'm in need of a large, 32 ounce bottle of conditioner that is both sulfate and paraben free. i would also like it be completely non-toxic.", "attributes": ["cruelty free", "sulfate free", "paraben free", "non toxic"], "options": ["size: 2 fl oz (pack of 1)", "size: 32 fl oz (pack of 1)", "size: 32 ounce"], "instruction_attributes": ["sulfate free", "paraben free", "non toxic"], "instruction_options": ["32 ounce"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEUP8Q3", "worker_id": "A2JP9IKRHNLRPI"}], "B08XVP8DST": [{"asin": "B08XVP8DST", "instruction": "give me a long lasting 8 pieces false lashes set.", "attributes": ["long lasting", "high quality"], "options": ["size: 13 piece set", "size: 8 piece set", "size: 7pairs"], "instruction_attributes": ["long lasting"], "instruction_options": ["8 piece set"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BXYJVS", "worker_id": "A3AJJHOAV7WIUQ"}], "B0963QSX1Q": [{"asin": "B0963QSX1Q", "instruction": "i'm looking for fast charging, waterproof earbuds.", "attributes": ["dust proof", "fast charging"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9ZOTV6", "worker_id": "A2JP9IKRHNLRPI"}], "B07J6NSJPT": [{"asin": "B07J6NSJPT", "instruction": "i'm in need of a hands free pair of earbud headphones that work with bluetooth and offer noise reduction technology.", "attributes": ["hands free", "carrying case"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NYB2P3", "worker_id": "A2JP9IKRHNLRPI"}], "B09MHT7M54": [{"asin": "B09MHT7M54", "instruction": "i want some vanity lights with a cylindrical shape and a metal base. the shades must feature clear glass.", "attributes": ["mid century", "vanity light", "clear glass", "light fixture", "living room"], "options": ["size: cup shape", "size: cylindrical", "size: globe"], "instruction_attributes": ["vanity light", "clear glass"], "instruction_options": ["cylindrical"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOX3CLYC", "worker_id": "A345TDMHP3DQ3G"}], "B09QHPJ29G": [{"asin": "B09QHPJ29G", "instruction": "order a women's tank top made from blue polyester spandex in size medium.", "attributes": ["loose fit", "slim fit", "hand wash", "polyester spandex", "short sleeve", "teen girls"], "options": ["color: pink", "color: navy", "color: red", "size: medium", "size: x-large", "size: small"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["navy", "medium"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17XHOY3E", "worker_id": "AR9AU5FY1S3RO"}], "B08F6ZLW5T": [{"asin": "B08F6ZLW5T", "instruction": "i'm trying to find 52\" x 84\" sheer linen curtains for my living room, and ideally they'll be sky blue.", "attributes": ["machine washable", "living room"], "options": ["size: 52\" x 84\"", "size: 52\" x 63\"", "size: 52\" x 108\"", "color: natural", "color: sky blue", "color: navy blue"], "instruction_attributes": ["living room"], "instruction_options": ["52\" x 84\"", "sky blue"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTP3N93", "worker_id": "A345TDMHP3DQ3G"}], "B074G4578G": [{"asin": "B074G4578G", "instruction": "i'd love to find a pair of women's faux fur slippers in size 8.5.", "attributes": ["faux fur", "rubber sole"], "options": [""], "instruction_attributes": ["faux fur"], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6HO5GC", "worker_id": "A345TDMHP3DQ3G"}], "B07C3HDGF8": [{"asin": "B07C3HDGF8", "instruction": "i need a purple tee shirt in medium i can wear at the gym.", "attributes": ["wash cold", "gym workout", "daily wear"], "options": ["size: small", "size: medium", "size: large", "color: dusty rose", "color: purple", "color: navy blue"], "instruction_attributes": ["gym workout"], "instruction_options": ["medium", "purple"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKVUD7G", "worker_id": "A3AJJHOAV7WIUQ"}], "B07ZZT7HBT": [{"asin": "B07ZZT7HBT", "instruction": "find me some gluten free fruit snacks made from real fruit. they must be certified organic as well.", "attributes": ["gluten free", "certified organic", "artificial flavors", "real fruit", "high fructose"], "options": [""], "instruction_attributes": ["gluten free", "certified organic", "real fruit"], "instruction_options": [], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR793OH11", "worker_id": "A36F8PDK1DMAN1"}], "B09JP6GNTC": [{"asin": "B09JP6GNTC", "instruction": "i'm looking for a classic fitting, needle-sleeved t-shirt that is machine washable.", "attributes": ["wash cold", "machine wash", "cotton heather", "needle sleeve", "classic fit"], "options": [""], "instruction_attributes": ["machine wash", "needle sleeve", "classic fit"], "instruction_options": [], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YACHE0", "worker_id": "AFU00NU09CFXE"}], "B07KD7GNZB": [{"asin": "B07KD7GNZB", "instruction": "i'd like a set of two 12x20 decorative pillow covers that are machine-washable and ideally double sided.", "attributes": ["double sided", "machine washable"], "options": ["size: 12x20 set of 2", "size: 18x18 set of 2", "size: 20x20 set of 2"], "instruction_attributes": ["double sided", "machine washable"], "instruction_options": ["12x20 set of 2"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUWJS4A", "worker_id": "A345TDMHP3DQ3G"}], "B083J7385L": [{"asin": "B083J7385L", "instruction": "i'm interested in a stainless steel portable salon sink that is easy to clean.", "attributes": ["easy clean", "stainless steel"], "options": [""], "instruction_attributes": ["easy clean", "stainless steel"], "instruction_options": [], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPZ4WFX", "worker_id": "AFU00NU09CFXE"}], "B07WFMZH69": [{"asin": "B07WFMZH69", "instruction": "i'd love some help locating a pair of men's slim fit, ripped skinny jeans in a size 34. it would be awesome if you can find a pair in black.", "attributes": ["slim fit", "machine wash", "cotton spandex"], "options": ["size: 34", "size: 38", "size: 28", "color: white1", "color: black", "color: white"], "instruction_attributes": ["slim fit"], "instruction_options": ["34", "black"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQ0Z0PP", "worker_id": "A345TDMHP3DQ3G"}], "B07TYRGCH2": [{"asin": "B07TYRGCH2", "instruction": "i'm looking for a ursula neon t-shirt for girls from disney that is a classic fit, machine washable and in the size of medium.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "size: x-large", "size: 3x-large", "size: medium"], "instruction_attributes": ["machine wash", "classic fit"], "instruction_options": ["medium"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR78FY69", "worker_id": "A2JP9IKRHNLRPI"}], "B07CF4CF27": [{"asin": "B07CF4CF27", "instruction": "i want to find a short-sleeve, classic fit men's polo that comes in size small. see if any in white are available.", "attributes": ["machine wash", "button closure", "classic fit", "short sleeve"], "options": [""], "instruction_attributes": ["classic fit", "short sleeve"], "instruction_options": [], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJKHDNVA", "worker_id": "A345TDMHP3DQ3G"}], "B087Z21SD2": [{"asin": "B087Z21SD2", "instruction": "i'm looking for a pair of large men's ankle strap sandals.", "attributes": ["open toe", "ankle strap"], "options": ["size: large", "size: x-large"], "instruction_attributes": ["ankle strap"], "instruction_options": ["large"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VRA8E0", "worker_id": "A345TDMHP3DQ3G"}], "B07W5SK4VS": [{"asin": "B07W5SK4VS", "instruction": "i'm interested in a pair of moss nappa pumps in a size 7 with a rubber sole.", "attributes": ["leather sole", "rubber sole"], "options": ["size: 7", "size: 10.5", "size: 6.5", "color: moss nappa", "color: navy nappa", "color: rouge nappa"], "instruction_attributes": ["rubber sole"], "instruction_options": ["7", "moss nappa"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWP940GD", "worker_id": "AFU00NU09CFXE"}], "B099RC7F69": [{"asin": "B099RC7F69", "instruction": "i'm looking for a package of 16 stainless steel lip razors for women.", "attributes": ["non slip", "easy carry", "stainless steel", "hair removal"], "options": ["item package quantity: 16", "item package quantity: 32", "item package quantity: 64"], "instruction_attributes": ["stainless steel"], "instruction_options": ["16"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWY8CPPM", "worker_id": "A345TDMHP3DQ3G"}], "B07HFHDJNN": [{"asin": "B07HFHDJNN", "instruction": "i'm interested in a pair of hunter green scrub bottoms with a straight leg and drawstring waist in size medium tall.", "attributes": ["straight leg", "drawstring waist"], "options": ["size: xx-large plus", "size: xx-large plus petite", "size: medium tall", "color: eggplant", "color: hunter green", "color: royal"], "instruction_attributes": ["straight leg", "drawstring waist"], "instruction_options": ["medium tall", "hunter green"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4YIPKX", "worker_id": "AFU00NU09CFXE"}], "B09DY1SSGR": [{"asin": "B09DY1SSGR", "instruction": "i'm looking for a solid wood sofa table in order to get some extra storage space in my living room.", "attributes": ["storage space", "wood frame", "solid wood", "living room"], "options": [""], "instruction_attributes": ["storage space", "solid wood", "living room"], "instruction_options": [], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73D6RTO4", "worker_id": "A2JP9IKRHNLRPI"}], "B08GW8JSJJ": [{"asin": "B08GW8JSJJ", "instruction": "i'm in need of a night cream for the dry skin on my face that has been tested by dermatologists.", "attributes": ["dermatologist tested", "dry skin"], "options": [""], "instruction_attributes": ["dermatologist tested", "dry skin"], "instruction_options": [], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZT6O8A", "worker_id": "A2JP9IKRHNLRPI"}], "B01CPE15SO": [{"asin": "B01CPE15SO", "instruction": "i'm looking to find a pair of cropped women's pants with an elastic waist and wide legs. see if you can find a pair in navy that runs small to medium.", "attributes": ["wide leg", "machine washable", "elastic waistband", "elastic waist"], "options": ["size: small-medium", "size: medium-large", "size: large-x-large", "color: white", "color: tiedye blue", "color: navy"], "instruction_attributes": ["wide leg", "elastic waist"], "instruction_options": ["small-medium", "navy"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANRPXSV", "worker_id": "A345TDMHP3DQ3G"}], "B0821Z4MHL": [{"asin": "B0821Z4MHL", "instruction": "i want to find a black ink refill set for temporary tattoos that is not only easy to use but high quality.", "attributes": ["cruelty free", "easy use", "high quality"], "options": ["color: device with black + color ink", "color: black ink refill", "color: full color ink refill"], "instruction_attributes": ["easy use", "high quality"], "instruction_options": ["black ink refill"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXJMFC7", "worker_id": "A345TDMHP3DQ3G"}], "B09R25LLRY": [{"asin": "B09R25LLRY", "instruction": "i'm looking for a black short-sleeve men's v-neck shirt that i can wear to the gym for my workouts. it would be great if the size were a medium.", "attributes": ["slim fit", "wash cold", "hand wash", "machine wash", "long sleeve", "short sleeve", "polyester cotton", "elastic waistband", "gym workout", "daily wear"], "options": ["color: black", "color: gray", "color: khaki", "size: xx-large", "size: medium", "size: small"], "instruction_attributes": ["short sleeve", "gym workout"], "instruction_options": ["black", "medium"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KZFLJU", "worker_id": "A345TDMHP3DQ3G"}], "B08SCGJKVW": [{"asin": "B08SCGJKVW", "instruction": "i'm looking for a pack of gluten free cocoa vanilla bunny-shaped cookies.", "attributes": ["gluten free", "high fructose", "artificial flavors"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VWJ06V", "worker_id": "A39SK1E6IMQBD5"}], "B01FNB7CVA": [{"asin": "B01FNB7CVA", "instruction": "i need a long sleeve men's chef coat with button closure in size 3x-large. i want a white one.", "attributes": ["machine wash", "long sleeve", "button closure"], "options": ["size: small", "size: 4x-large", "size: 3x-large", "color: black", "color: white"], "instruction_attributes": ["long sleeve", "button closure"], "instruction_options": ["3x-large", "white"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJKD5J3V", "worker_id": "A1CB72B51L7TKE"}], "B09PQFMFB2": [{"asin": "B09PQFMFB2", "instruction": "i want some puffed snacks that are both gluten and fat free.", "attributes": ["gluten free", "fat free", "kosher certified"], "options": [""], "instruction_attributes": ["gluten free", "fat free"], "instruction_options": [], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZQRRP7", "worker_id": "A3AJJHOAV7WIUQ"}], "B09P7Z7VCD": [{"asin": "B09P7Z7VCD", "instruction": "please buy an office desk chair with lumbar support in green.", "attributes": ["non slip", "high density", "lumbar support"], "options": ["color: pink", "color: yellow", "color: green"], "instruction_attributes": ["lumbar support"], "instruction_options": ["green"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0SCA110", "worker_id": "AR9AU5FY1S3RO"}], "B09CN417QQ": [{"asin": "B09CN417QQ", "instruction": "i want to find cruelty free organic lip balm that's made with natural ingredients.", "attributes": ["oil free", "cruelty free", "natural ingredients"], "options": [""], "instruction_attributes": ["cruelty free", "natural ingredients"], "instruction_options": [], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPL5KTF2", "worker_id": "A345TDMHP3DQ3G"}], "B0073DOPOO": [{"asin": "B0073DOPOO", "instruction": "i need a pair of lightweight flip flops in a size 5 or 6 that have a rubber sole.", "attributes": ["light weight", "rubber sole"], "options": ["size: 5", "size: 6"], "instruction_attributes": ["light weight", "rubber sole"], "instruction_options": ["5", "6"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCHO0D3", "worker_id": "AFU00NU09CFXE"}], "B002UDITGM": [{"asin": "B002UDITGM", "instruction": "i'm looking for an 11 ounce bag of caffeine-free, acid-free, prebiotic chicory coffee alternative. also, include vanilla nut flavor. additionally, include medium roast.", "attributes": ["caffeine free", "non gmo", "artificial flavors"], "options": [""], "instruction_attributes": ["caffeine free", "artificial flavors"], "instruction_options": [], "assignment_id": "3BDCF01OG848Z52CW1U26DVOX35LY5", "worker_id": "AENE0ASEDKQB3"}], "B087BPKHSD": [{"asin": "B087BPKHSD", "instruction": "i am looking for a small padded bench, preferably easy to assemble and in beige, please.", "attributes": ["easy assemble", "memory foam", "living room"], "options": ["color: 1 seat beige", "color: 3 seat beige-18.5\u201ch", "color: 3 seat grey-18.5\u201ch"], "instruction_attributes": ["easy assemble"], "instruction_options": ["1 seat beige"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49SSTDF", "worker_id": "A1WAWEY2810TFN"}], "B07JJFVLBR": [{"asin": "B07JJFVLBR", "instruction": "help me find some clogs in size 9.5 made of ethylene vinyl.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["size: 8", "size: 9.5", "size: 10"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["9.5"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCH1L0JH", "worker_id": "A3AJJHOAV7WIUQ"}], "B09KBYJKXD": [{"asin": "B09KBYJKXD", "instruction": "go ahead and find me a dining room sideboard table that has a bottom shelf. it needs to be easy to assemble.", "attributes": ["easy assemble", "dining room"], "options": [""], "instruction_attributes": ["easy assemble", "dining room"], "instruction_options": [], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPU3NJM", "worker_id": "A345TDMHP3DQ3G"}], "B09NVYC1MX": [{"asin": "B09NVYC1MX", "instruction": "i'm looking for an easily assembled and cleaned storage chest for my shoes that would fit well in my living room.", "attributes": ["long lasting", "easy clean", "easy assemble", "faux leather", "storage space", "living room"], "options": [""], "instruction_attributes": ["easy clean", "easy assemble", "living room"], "instruction_options": [], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7T15NB", "worker_id": "A2JP9IKRHNLRPI"}], "B09PNJ73YZ": [{"asin": "B09PNJ73YZ", "instruction": "i want to buy a navy blue casual short-sleeve t-shirt. it should have an ombre gradient on it, and i'll need a medium.", "attributes": ["slim fit", "long sleeve", "short sleeve"], "options": ["size: xx-large", "size: 3x-large", "size: medium", "color: orange", "color: navy", "color: blue"], "instruction_attributes": ["short sleeve"], "instruction_options": ["medium", "navy"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVZYJKD", "worker_id": "A345TDMHP3DQ3G"}], "B08RF3JJ85": [{"asin": "B08RF3JJ85", "instruction": "i want to find a mirrorless digital camera that produces high resolution photos, and comes with a color filter kit.", "attributes": ["ultra hd", "high resolution", "high performance", "high speed"], "options": [""], "instruction_attributes": ["high resolution"], "instruction_options": [], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXM04WMS", "worker_id": "A345TDMHP3DQ3G"}], "B00PGOBWPW": [{"asin": "B00PGOBWPW", "instruction": "can you find a seed oil based face wash that is cruelty free with no fragrance and good for sensitive skin?", "attributes": ["fragrance free", "paraben free", "cruelty free", "seed oil", "sensitive skin"], "options": [""], "instruction_attributes": ["fragrance free", "cruelty free", "seed oil", "sensitive skin"], "instruction_options": [], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNR86JXV", "worker_id": "A3AJJHOAV7WIUQ"}], "B09CT2QY8L": [{"asin": "B09CT2QY8L", "instruction": "find a hanging pendant light fixture for my living room with a plug-in cord. it should have a diamond lampshade along with hemp rope.", "attributes": ["pendant light", "light fixture", "dining room", "living room"], "options": ["size: diamond lampshade with hemp rope", "size: metal cage lampshade with hemp rope"], "instruction_attributes": ["pendant light", "light fixture", "living room"], "instruction_options": [], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANRSSXT", "worker_id": "A345TDMHP3DQ3G"}], "B07TZW2XFL": [{"asin": "B07TZW2XFL", "instruction": "i'd like to find a large brown ottoman for my living room that's easy to spot clean.", "attributes": ["spot clean", "living room"], "options": [""], "instruction_attributes": ["spot clean", "living room"], "instruction_options": [], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30U520YJ", "worker_id": "A345TDMHP3DQ3G"}], "B09P137JZR": [{"asin": "B09P137JZR", "instruction": "help me find an electric razor for men that's easy to clean with a digital display.", "attributes": ["high quality", "easy clean", "long lasting"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANRSXSY", "worker_id": "A345TDMHP3DQ3G"}], "B09PDCNCPM": [{"asin": "B09PDCNCPM", "instruction": "i'm looking for a long sleeve green or yellow plaid shirt with button closure in a size medium.", "attributes": ["long sleeve", "button closure", "daily wear"], "options": ["color: green", "color: yellow", "size: large", "size: small", "size: medium"], "instruction_attributes": ["long sleeve", "button closure"], "instruction_options": ["green", "yellow", "medium"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADTSWVL", "worker_id": "AFU00NU09CFXE"}], "B086GF7VWJ": [{"asin": "B086GF7VWJ", "instruction": "i'm looking for a dust brush that i can use for my nail art which is easy to use and clean.", "attributes": ["easy clean", "easy use", "nail art"], "options": [""], "instruction_attributes": ["easy clean", "easy use", "nail art"], "instruction_options": [], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEY7T36H", "worker_id": "A345TDMHP3DQ3G"}], "B08PZ47C1R": [{"asin": "B08PZ47C1R", "instruction": "i'm looking for a record player and stereo speaker that is not only high power, but also high performance. i don't have a preference for the color.", "attributes": ["high power", "high performance"], "options": [""], "instruction_attributes": ["high power", "high performance"], "instruction_options": [], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUU2R3Y", "worker_id": "A345TDMHP3DQ3G"}], "B09PCY5H8N": [{"asin": "B09PCY5H8N", "instruction": "i'd love to find a compact magnified mirror that's easy to carry and travel sized.", "attributes": ["travel size", "easy carry"], "options": [""], "instruction_attributes": ["travel size", "easy carry"], "instruction_options": [], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI3L4BDJ", "worker_id": "A345TDMHP3DQ3G"}], "B092VWYQKC": [{"asin": "B092VWYQKC", "instruction": "help me find a small console table for my living room. a wall mounted one will be great.", "attributes": ["wall mounted", "space saving", "living room"], "options": [""], "instruction_attributes": ["wall mounted", "living room"], "instruction_options": [], "assignment_id": "37C0GNLMHQDNI94ED11M493QPKLD6S", "worker_id": "A16184N1RO5OJV"}], "B09HXRFYP7": [{"asin": "B09HXRFYP7", "instruction": "l am looking for a pair of non-slip, rubber-soled black shoes in a size 8.5.", "attributes": ["non slip", "rubber sole"], "options": ["size: 7", "size: 8.5", "size: 9", "color: beige", "color: black", "color: green"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["8.5", "black"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRYJF9Q", "worker_id": "AFU00NU09CFXE"}], "B07VNGN9HG": [{"asin": "B07VNGN9HG", "instruction": "i'm trying to find an extra large men's tank top with a classic fit. it needs to be sapphire colored and say \"i play bocce & i know things\" on it.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "color: heather grey", "color: sapphire", "color: neon pink", "size: medium", "size: x-large", "size: xx-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["men", "sapphire", "x-large"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPSDH9GH", "worker_id": "A345TDMHP3DQ3G"}], "B09GT8JY8H": [{"asin": "B09GT8JY8H", "instruction": "i'm looking for a freeze-dried fruit snacks that are sugar - and gluten-free.", "attributes": ["freeze dried", "sugar free", "gluten free"], "options": [""], "instruction_attributes": ["freeze dried", "sugar free", "gluten free"], "instruction_options": [], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VT42XWR", "worker_id": "AFU00NU09CFXE"}], "B06XQ6SHT6": [{"asin": "B06XQ6SHT6", "instruction": "i'm hoping to buy a pair of men's slip-on penny loafers with rubber soles. find a pair for me that's black in size 8.", "attributes": ["memory foam", "rubber sole"], "options": ["size: 12", "size: 8", "size: 13", "color: black", "color: cognac"], "instruction_attributes": ["rubber sole"], "instruction_options": ["8", "black"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUOEDZF", "worker_id": "A345TDMHP3DQ3G"}], "B08ZM5BJNX": [{"asin": "B08ZM5BJNX", "instruction": "i'd like a twin-pack of gold wall sconces that i can put in my living room hallways. they should have clear glass shades.", "attributes": ["easy install", "clear glass", "glass shade", "light fixture", "living room"], "options": ["size: 2 pack", "size: 1 pack", "size: 2-light"], "instruction_attributes": ["clear glass", "glass shade", "living room"], "instruction_options": ["2 pack"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39SCEGMD", "worker_id": "A345TDMHP3DQ3G"}], "B08N476LRT": [{"asin": "B08N476LRT", "instruction": "i'd like to find a desk for my home office that i can use for my computer. it should be easy to assemble and i'd like something in white.", "attributes": ["white item", "easy assemble", "living room"], "options": [""], "instruction_attributes": ["white item", "easy assemble"], "instruction_options": [], "assignment_id": "33TIN5LC0FKDY31374RC144TX9T9Y1", "worker_id": "A345TDMHP3DQ3G"}], "B09LH9DCQK": [{"asin": "B09LH9DCQK", "instruction": "i'm interested in a blue or gray high performance tablet that offers fast charging capabilities.", "attributes": ["high performance", "high definition", "fast charging"], "options": ["color: blue", "color: gray", "color: orange"], "instruction_attributes": ["high performance", "fast charging"], "instruction_options": ["blue", "gray"], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1MK1GT5", "worker_id": "AFU00NU09CFXE"}], "B09MTJ92V2": [{"asin": "B09MTJ92V2", "instruction": "give me a slim fit machine washable blazer that is gold.", "attributes": ["light weight", "loose fit", "wash cold", "slim fit", "machine wash", "short sleeve", "long sleeve", "daily wear"], "options": ["color: black", "color: gold", "color: silver", "size: x-large", "size: large", "size: xx-large"], "instruction_attributes": ["slim fit", "machine wash"], "instruction_options": ["gold"], "assignment_id": "37C0GNLMHQDNI94ED11M493QPKAD6H", "worker_id": "A3AJJHOAV7WIUQ"}], "B07KFYCK4F": [{"asin": "B07KFYCK4F", "instruction": "i'm looking for an officially licensed youth t-shirt featuring russell and carl from pixar's movie up. it should be extra-small and ideally come in baby blue.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "fit type: youth", "color: grass", "color: silver", "color: baby blue", "size: 3t", "size: x-small", "size: medium"], "instruction_attributes": ["officially licensed"], "instruction_options": ["youth", "baby blue", "x-small"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6VAU7S", "worker_id": "A345TDMHP3DQ3G"}], "B09S9X3MZG": [{"asin": "B09S9X3MZG", "instruction": "i'm looking for a slim-fitting women's button-up henley. it should be large and ideally the color will be army green.", "attributes": ["slim fit", "hand wash", "long sleeve", "stretch fabric", "memory foam", "polyester spandex", "short sleeve", "daily wear"], "options": ["color: caishen-a132-blue", "color: caishen-a129-army green", "color: caishen-a143-orange", "size: xx-large", "size: large", "size: x-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["caishen-a129-army green", "large"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTJKLNY", "worker_id": "A345TDMHP3DQ3G"}], "B09KGW43WR": [{"asin": "B09KGW43WR", "instruction": "i'm in need of a four-piece set of christmas coasters with non-slip technology.", "attributes": ["non slip", "long lasting", "printing technology"], "options": ["size: 8-piece set", "size: 6-piece set+holder", "size: 4-piece set"], "instruction_attributes": ["non slip"], "instruction_options": ["4-piece set"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4O28LE", "worker_id": "A2JP9IKRHNLRPI"}], "B0978KR99V": [{"asin": "B0978KR99V", "instruction": "i'm looking for a white, twin sized bed frame which will allow me to save space in my child's bedroom.", "attributes": ["twin size", "space saving", "white item"], "options": ["color: grey", "color: white"], "instruction_attributes": ["twin size", "space saving"], "instruction_options": ["white"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTYGO6O", "worker_id": "A2JP9IKRHNLRPI"}], "B075M6GJC7": [{"asin": "B075M6GJC7", "instruction": "i want to find 16x16 inch decorative pillows that i can put in my living room, ideally with the color that is 05 red.", "attributes": ["machine washable", "living room"], "options": ["size: 1 count (pack of 1)", "size: 16x16 inches", "color: #pattern 30", "color: #pattern 05", "color: #pattern 17"], "instruction_attributes": [], "instruction_options": ["16x16 inches", "#pattern 05"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FYKBFU", "worker_id": "A345TDMHP3DQ3G"}], "B09J8YN9N7": [{"asin": "B09J8YN9N7", "instruction": "i want to find a pink women's quilted puffy vest that i can machine wash. the size needs to be extra large.", "attributes": ["loose fit", "hand wash", "machine wash", "long sleeve", "faux fur", "elastic waist", "polyester spandex", "teen girls"], "options": ["color: green", "color: pink", "color: white", "size: 3x-large", "size: x-large", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["pink", "x-large"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6S6DUDL", "worker_id": "A345TDMHP3DQ3G"}], "B093R27X9G": [{"asin": "B093R27X9G", "instruction": "i'm looking for an officially licensed minecraft alex with bow taking aim tshirt in youth size and heather grey color", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "fit type: youth", "color: kelly green", "color: heather grey", "color: purple", "size: 4t", "size: 3x-large", "size: 3t"], "instruction_attributes": ["officially licensed"], "instruction_options": ["youth", "heather grey"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFWTMEW", "worker_id": "A28BSMU0QCS69S"}], "B09GTWJS8X": [{"asin": "B09GTWJS8X", "instruction": "help me find a standing four-tiered baker's rack that's heavy duty.", "attributes": ["heavy duty", "living room"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "39O5D9O8742EGYBIU38DD09OUT43C9", "worker_id": "A345TDMHP3DQ3G"}], "B093SY1VL3": [{"asin": "B093SY1VL3", "instruction": "find me a set of cute mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3BXQMRHWKA8BOE0SMCYS35401KKMUA", "worker_id": "A3AJJHOAV7WIUQ"}], "B09SHQXRK6": [{"asin": "B09SHQXRK6", "instruction": "i need a long sleeve button up shirt that has a casual style and slim fit.", "attributes": ["hand wash", "water resistant", "easy care", "daily casual", "fleece lined", "loose fit", "wash cold", "slim fit", "machine wash", "long sleeve", "short sleeve", "drawstring waist", "faux fur", "regular fit", "star wars"], "options": ["size: x-large", "size: large", "size: medium", "color: army green", "color: navy", "color: white"], "instruction_attributes": ["daily casual", "slim fit", "long sleeve"], "instruction_options": [], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZUYK9V", "worker_id": "A2RBF3IIJP15IH"}], "B001E6GFR6": [{"asin": "B001E6GFR6", "instruction": "i'm looking for healthy granola bars that lack artificial coloring, flavoring and don't include high fructose corn syrup as an ingredient.", "attributes": ["artificial colors", "high fructose", "artificial flavors"], "options": [""], "instruction_attributes": ["artificial colors", "high fructose", "artificial flavors"], "instruction_options": [], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPAWXTD", "worker_id": "A2JP9IKRHNLRPI"}], "B09NV9PTBZ": [{"asin": "B09NV9PTBZ", "instruction": "i want to find a pair of brown loose-fitting men's pants in a medium size.", "attributes": ["easy care", "fleece lined", "machine washable", "loose fit", "machine wash", "drawstring closure"], "options": ["size: medium", "size: x-large", "size: xx-large", "color: brown", "color: khaki", "color: green"], "instruction_attributes": ["loose fit"], "instruction_options": ["medium", "brown"], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQQ3HHF", "worker_id": "A345TDMHP3DQ3G"}], "B01GRQLS38": [{"asin": "B01GRQLS38", "instruction": "would you get me a work polo, has to have buttons, preferably orange and a medium.", "attributes": ["machine wash", "button closure"], "options": ["size: xx-large", "size: small", "size: medium", "color: black", "color: yelow", "color: orang"], "instruction_attributes": ["button closure"], "instruction_options": ["medium", "orang"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VT4HWX5", "worker_id": "A3O1I9MATO3ZZN"}], "B08PJ5LMXM": [{"asin": "B08PJ5LMXM", "instruction": "i need to buy women's leggings for yoga. i need slim fit with tummy control in a large size.", "attributes": ["slim fit", "tummy control", "polyester spandex"], "options": ["size: large", "size: 4x-large", "size: xx-large"], "instruction_attributes": ["slim fit", "tummy control"], "instruction_options": ["large"], "assignment_id": "3BEFOD78WH3C7G6D767AQ16627W4M5", "worker_id": "AXIH2UZ6NNMRE"}], "B08NP71DGW": [{"asin": "B08NP71DGW", "instruction": "what is a simulated camera that takes aaa batteries?", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTPZD51", "worker_id": "A3AJJHOAV7WIUQ"}], "B08C9S7K81": [{"asin": "B08C9S7K81", "instruction": "i need help finding a twin set of gold coffee tables that's easy to clean.", "attributes": ["assembly required", "easy clean"], "options": ["color: gold-set of 2", "color: black", "color: glass top"], "instruction_attributes": ["easy clean"], "instruction_options": ["gold-set of 2"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79UQQKB", "worker_id": "A345TDMHP3DQ3G"}], "B09PR9WQLZ": [{"asin": "B09PR9WQLZ", "instruction": "i want to find a long-sleeve sweatshirt that features the charlie vaggie anime character on it.", "attributes": ["wash cold", "long sleeve"], "options": [""], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGVLW2Z", "worker_id": "A345TDMHP3DQ3G"}], "B08LG89H3J": [{"asin": "B08LG89H3J", "instruction": "order a round black side table with storage space.", "attributes": ["easy clean", "storage space"], "options": ["size: round", "size: square", "style: beige", "style: black", "style: white"], "instruction_attributes": ["storage space"], "instruction_options": ["round", "black"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCH14J0J", "worker_id": "AR9AU5FY1S3RO"}], "B07KDX6TJN": [{"asin": "B07KDX6TJN", "instruction": "i'm hoping to find a twin pack of hydrating body lotion that's cruelty free and certified organic.", "attributes": ["certified organic", "plant based", "cruelty free"], "options": [""], "instruction_attributes": ["certified organic", "cruelty free"], "instruction_options": [], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHL2E1K", "worker_id": "A345TDMHP3DQ3G"}], "B07ZBS2W4V": [{"asin": "B07ZBS2W4V", "instruction": "find me a classic-fitting women's tank top in navy that says \"why yes they're real boobs\" on it.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "color: dark heather", "color: neon pink", "color: navy", "size: medium", "size: x-large", "size: xx-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["women", "navy"], "assignment_id": "31JLPPHS254FPN8LK8H48035J7MO3Q", "worker_id": "A345TDMHP3DQ3G"}], "B09RH6LR1F": [{"asin": "B09RH6LR1F", "instruction": "i'm looking for a men's classic fit button-down shirt for special occasions.", "attributes": ["machine wash", "wash cold", "unique design", "classic fit", "tumble dry"], "options": [""], "instruction_attributes": ["classic fit"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLA4AV3", "worker_id": "A2JP9IKRHNLRPI"}], "B09QMN8742": [{"asin": "B09QMN8742", "instruction": "i'm hoping to find a pair of g-string thong underwear for men. ideally, the underwear will have a high waist, and i need it in a medium size.", "attributes": ["hand wash", "high waist", "daily wear"], "options": ["size: medium", "size: large", "size: x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["medium"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3RAYA4", "worker_id": "A345TDMHP3DQ3G"}], "B09QYRV21T": [{"asin": "B09QYRV21T", "instruction": "i'd like to find a twin sized bed with drawers for extra storage.", "attributes": ["twin size", "space saving", "storage space"], "options": [""], "instruction_attributes": ["twin size", "storage space"], "instruction_options": [], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RUGXLRA", "worker_id": "A345TDMHP3DQ3G"}], "B07WYDVDZ3": [{"asin": "B07WYDVDZ3", "instruction": "i want an easy to carry lighting background for my studio.", "attributes": ["light weight", "easy carry"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1T3SMPE", "worker_id": "A3AJJHOAV7WIUQ"}], "B004K40ZYS": [{"asin": "B004K40ZYS", "instruction": "i'm looking for a provocative set of small women's polyester spandex.", "attributes": ["hand wash", "quality materials", "polyester spandex"], "options": ["size: small", "size: medium", "size: large"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["small"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPXKSYX", "worker_id": "A345TDMHP3DQ3G"}], "B08FDNRDYH": [{"asin": "B08FDNRDYH", "instruction": "i'm looking for an ornament sculpted from iron of a mother and child that i can put in my living room.", "attributes": ["living room", "dining room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDZOHRZ", "worker_id": "A345TDMHP3DQ3G"}], "B08W1Y9PJ7": [{"asin": "B08W1Y9PJ7", "instruction": "i need a plug and play high definition video converter.", "attributes": ["plug play", "high definition"], "options": [""], "instruction_attributes": ["plug play", "high definition"], "instruction_options": [], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSK11EPH", "worker_id": "A3AJJHOAV7WIUQ"}], "B09NGWXMDQ": [{"asin": "B09NGWXMDQ", "instruction": "i'm looking for a silicone band compatible with my apple watch that's 40 mm and white.", "attributes": ["compatible apple", "quick release", "easy install", "stainless steel"], "options": ["size: 38 | 40 | 41mm", "size: 42 | 44 | 45mm", "color: sand pink | light blue | stone", "color: light blue | stone | light green", "color: white | stone | sand pink"], "instruction_attributes": ["compatible apple"], "instruction_options": ["38 | 40 | 41mm", "white | stone | sand pink"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL614EZW4", "worker_id": "A39SK1E6IMQBD5"}, {"asin": "B09NGWXMDQ", "instruction": "i want to find 38 millimeter silicone bands that are compatible with my apple watch. the bands can be either dark green, black, or olive green.", "attributes": ["compatible apple", "quick release", "easy install", "stainless steel"], "options": ["color: dark green | black | olive green", "size: 38 | 40 | 41mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["dark green | black | olive green", "38 | 40 | 41mm"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7X7YQY", "worker_id": "A345TDMHP3DQ3G"}], "B09FZ7RDZ2": [{"asin": "B09FZ7RDZ2", "instruction": "i want to find a blue bedside table unit that comes with extra shelf storage space.", "attributes": ["steel frame", "storage space"], "options": ["color: white", "color: green", "color: blue"], "instruction_attributes": ["storage space"], "instruction_options": ["blue"], "assignment_id": "3EJPLAJKEXQQLA9A5JQJV1MTD236ZS", "worker_id": "A345TDMHP3DQ3G"}], "B07FYWZZRM": [{"asin": "B07FYWZZRM", "instruction": "help me locate a pair of women's angelfish stripe boat shoes with rubber soles in a size 6.", "attributes": ["arch support", "memory foam", "rubber sole"], "options": ["size: 5.5", "size: 6", "size: 5", "color: navy | red", "color: navy"], "instruction_attributes": ["rubber sole"], "instruction_options": ["6"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI8COSSJ", "worker_id": "A345TDMHP3DQ3G"}], "B082WSKPKR": [{"asin": "B082WSKPKR", "instruction": "i'm hoping to buy a medium pair of women's cropped jeans with an elastic waist for everyday wear.", "attributes": ["machine wash", "wash cold", "hand wash", "elastic waist", "relaxed fit", "short sleeve", "everyday wear"], "options": ["size: 3x-large", "size: medium", "size: xx-large"], "instruction_attributes": ["elastic waist", "everyday wear"], "instruction_options": ["medium"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTYBPLO", "worker_id": "A345TDMHP3DQ3G"}], "B07942XCKN": [{"asin": "B07942XCKN", "instruction": "i'm looking for a men's slip-on in a size 10 that has a rubber sole.", "attributes": ["rubber outsole", "rubber sole"], "options": ["size: 11.5", "size: 10", "size: 9.5", "color: fox | bone", "color: kona coffee | tapa"], "instruction_attributes": ["rubber sole"], "instruction_options": ["10"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPSPVQU", "worker_id": "A2JP9IKRHNLRPI"}], "B09CKY4TGN": [{"asin": "B09CKY4TGN", "instruction": "i'm looking to buy a large adjustable blue bathrobe towel wrap that's good for drying hair after a shower.", "attributes": ["easy clean", "dry hair"], "options": [""], "instruction_attributes": ["dry hair"], "instruction_options": [], "assignment_id": "3TR2532VI040LV46NXNX77Y3U4Q6J7", "worker_id": "ALDKDKRBR4LXD"}], "B098XJ3XLC": [{"asin": "B098XJ3XLC", "instruction": "find me a navy blue wooden sideboard storage cabinet that comes with a height-adjustable shelf.", "attributes": ["height adjustable", "wood frame", "storage space", "living room"], "options": ["color: brown", "color: grey", "color: navy blue"], "instruction_attributes": ["height adjustable", "wood frame", "storage space"], "instruction_options": ["navy blue"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB1F1ULN", "worker_id": "A345TDMHP3DQ3G"}], "B09NRLPG4Y": [{"asin": "B09NRLPG4Y", "instruction": "i am looking to buy a stainless steel mens hair trimmer", "attributes": ["high quality", "long lasting", "stainless steel", "hair cutting"], "options": [""], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRSWP7L2", "worker_id": "A38C7CA3AYLO1"}], "B08FSZLW8C": [{"asin": "B08FSZLW8C", "instruction": "i am in the need of an end table that has to be put together.", "attributes": ["assembly required", "home furnishings"], "options": [""], "instruction_attributes": ["assembly required"], "instruction_options": [], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLN1YO74", "worker_id": "A1MJVTR0PCKBWW"}], "B07MYYNDLN": [{"asin": "B07MYYNDLN", "instruction": "i'm looking for a women's swimsuit that is quick drying and size large and color black", "attributes": ["quick drying", "elastic waistband"], "options": ["size: small-medium", "size: large-x-large", "size: xx-large-3x-large", "color: 33-black-short", "color: 30-coral orange-middle", "color: 14-lilac-long"], "instruction_attributes": ["quick drying"], "instruction_options": ["large-x-large", "33-black-short"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMIXBGVY", "worker_id": "A1VMWZ4X201V7H"}], "B07YNFDGW4": [{"asin": "B07YNFDGW4", "instruction": "you are viewing one of the trendiest products vintage yellowstone national park wolf retro graphic art tank top for men black belong theme vintage yellowstone national park tank tops at printerval:", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "color: dark heather", "color: royal blue", "color: black", "size: large", "size: x-large", "size: xx-large"], "instruction_attributes": ["polyester heathers", "heathers cotton", "cotton heather", "needle sleeve"], "instruction_options": ["men", "women", "dark heather", "royal blue", "large", "x-large"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0U2FFGZ", "worker_id": "A1BUFDU8KZSXFU"}], "B07KWNMHZC": [{"asin": "B07KWNMHZC", "instruction": "i want a nesting table that will last a long time and is gray. it has to be small and space saving too.", "attributes": ["long lasting", "space saving"], "options": ["style: nesting coffee and end tables", "style: nesting tables", "color: graphite gray", "color: white marble"], "instruction_attributes": ["long lasting", "space saving"], "instruction_options": ["nesting tables", "graphite gray"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHODJDQU", "worker_id": "A1MJVTR0PCKBWW"}], "B08JJ2SD8N": [{"asin": "B08JJ2SD8N", "instruction": "i'm looking for blackout curtains for living room which should be thermal insulated. also, choose 52w*84l size mustard yellow one.", "attributes": ["spot clean", "living room"], "options": ["size: 52w x 84l", "size: 52w x 54l", "size: 52w x 63l", "color: greyish white", "color: mustard yellow", "color: navy blue"], "instruction_attributes": ["living room"], "instruction_options": ["52w x 84l", "mustard yellow"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C3ET0IL", "worker_id": "AR0VJ5XRG16UJ"}], "B094X12P3V": [{"asin": "B094X12P3V", "instruction": "i need a basketball of size 9. it needs to have a lace closure and and rubber sole and outsole.", "attributes": ["lace closure", "rubber outsole", "rubber sole"], "options": ["size: 9", "size: 14"], "instruction_attributes": ["lace closure", "rubber outsole", "rubber sole"], "instruction_options": ["9"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKOCQ8EWZ", "worker_id": "A1MJVTR0PCKBWW"}], "B09LYMKLDN": [{"asin": "B09LYMKLDN", "instruction": "i need a grey button down dhirt that is hand wash and has a longer sleeve.", "attributes": ["hand wash", "long sleeve"], "options": ["color: grey", "color: grey1", "size: x-large", "size: large", "size: medium"], "instruction_attributes": ["hand wash", "long sleeve"], "instruction_options": ["grey"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LURVJKT", "worker_id": "A1MJVTR0PCKBWW"}], "B075PFGT15": [{"asin": "B075PFGT15", "instruction": "show me an easy carry high definition body cam which can be used for spying or security.", "attributes": ["easy carry", "high speed", "high definition"], "options": [""], "instruction_attributes": ["easy carry", "high definition"], "instruction_options": [], "assignment_id": "3N1FSUEFLGA93M00UD877BJCSLX4DZ", "worker_id": "A3AYHESLQSDY5T"}], "B09FRJPSRV": [{"asin": "B09FRJPSRV", "instruction": "i need some cheese that is ready to eat and has good quality to it. an 8 pack that is individually wrapped is what i need.", "attributes": ["ready eat", "individually wrapped", "quality ingredients"], "options": ["size: 8 pack", "size: 4 pack", "size: 3 pack"], "instruction_attributes": ["ready eat", "individually wrapped", "quality ingredients"], "instruction_options": ["8 pack"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R0CCI2M", "worker_id": "A1MJVTR0PCKBWW"}, {"asin": "B09FRJPSRV", "instruction": "i want a 12-pack of bourbon gouda that's individually wrapped.", "attributes": ["ready eat", "individually wrapped", "quality ingredients"], "options": ["size: 12 pack"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["12 pack"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QVI70S", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B09FRJPSRV", "instruction": "i am interested in buying cheese which is made of quality ingredients and comes in a pack of 12.", "attributes": ["ready eat", "individually wrapped", "quality ingredients"], "options": ["size: 12 pack"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["12 pack"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTY24EZ", "worker_id": "AJY5G987IRT25"}], "B09BCFH9ZK": [{"asin": "B09BCFH9ZK", "instruction": "i'm looking for machine wasable savannan burlap placemat with compatible table runner with dahlia flower print table set of 6 pcs. also choose color golden circlesan4455 with size 13x70inch+13x19inch*4.", "attributes": ["non slip", "machine washable"], "options": ["size: 13x70inch+13x19inch*6", "size: 13x70inch+13x19inch*4", "size: 16x72inch+13x19inch*4", "color: golden circlesan4455", "color: halloweensan4471", "color: christmassan6643"], "instruction_attributes": ["machine washable"], "instruction_options": ["golden circlesan4455"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGCQO5KH", "worker_id": "A1DRKZ3SCLAS4V"}], "B082RTMQF3": [{"asin": "B082RTMQF3", "instruction": "i need some serum that is for anti aging and doesn't have smell. cruelty free is necessary. i only need a 1 oz portion.", "attributes": ["anti aging", "fragrance free", "cruelty free", "hyaluronic acid", "fine lines", "dry skin"], "options": ["size: 1 fl oz (pack of 1)", "size: 2 fl oz (pack of 1)"], "instruction_attributes": ["anti aging", "fragrance free", "cruelty free"], "instruction_options": ["1 fl oz (pack of 1)"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEM4KOGA", "worker_id": "A1MJVTR0PCKBWW"}], "B09KJJCWZF": [{"asin": "B09KJJCWZF", "instruction": "i'm looking for a sturdy and solid dummy camera that's portable and made of stainless steel. also, choose the one that's easy to install.", "attributes": ["easy install", "stainless steel"], "options": [""], "instruction_attributes": ["easy install", "stainless steel"], "instruction_options": [], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUTCIMCO", "worker_id": "A1A3UNA5ZCTTVJ"}], "B0963K7YRQ": [{"asin": "B0963K7YRQ", "instruction": "i want buy a large wall mounted storage organizer basket .", "attributes": ["wall mounted", "living room"], "options": [""], "instruction_attributes": ["wall mounted"], "instruction_options": [], "assignment_id": "3I02618YABGH9HX5ESQKK9YV5HQPUN", "worker_id": "A3N9ZYQAESNFQH"}], "B08J5LMZB7": [{"asin": "B08J5LMZB7", "instruction": "i'm looking for 4g lte prepaid flip phone with quad core processor which should include sim card. also, choose color black", "attributes": ["quad core", "4g lte"], "options": [""], "instruction_attributes": ["quad core", "4g lte"], "instruction_options": [], "assignment_id": "3P59JYT76WU6HXHACPPYJ040BTQ2TL", "worker_id": "AR0VJ5XRG16UJ"}], "B085PYKR67": [{"asin": "B085PYKR67", "instruction": "i am looking for a black color tv stick remote that should be non slip and easy to install.", "attributes": ["non slip", "easy install"], "options": [""], "instruction_attributes": ["non slip", "easy install"], "instruction_options": [], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z3CWQCU", "worker_id": "A9ZM1P6LBW79"}], "B099JRSMCV": [{"asin": "B099JRSMCV", "instruction": "i need a hoodie with a loose fit. sky blue and large is preferred.", "attributes": ["loose fit", "long sleeve", "daily wear"], "options": ["color: 2 sky blue(runs small, order one size up)", "color: 2 black(runs small, order one size up)", "color: a sky blue", "size: large", "size: xx-large", "size: small"], "instruction_attributes": ["loose fit"], "instruction_options": ["a sky blue", "large"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23RZETQ0", "worker_id": "A1MJVTR0PCKBWW"}], "B071NW1J6P": [{"asin": "B071NW1J6P", "instruction": "i am looking for a lip plumper with cruelty free, also long lasting", "attributes": ["cruelty free", "long lasting", "hyaluronic acid"], "options": [""], "instruction_attributes": ["cruelty free", "long lasting"], "instruction_options": [], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDAIBHGK", "worker_id": "A2HMEGTAFO0CS8"}], "B09J1FK9HN": [{"asin": "B09J1FK9HN", "instruction": "i need a camera that is fast and has high definition capabilities", "attributes": ["high speed", "high definition"], "options": [""], "instruction_attributes": ["high speed", "high definition"], "instruction_options": [], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7RFVRWM", "worker_id": "A1MJVTR0PCKBWW"}], "B08YTY6B8J": [{"asin": "B08YTY6B8J", "instruction": "i am looking for a dental flosser that is eco friendly for my oral hygiene", "attributes": ["eco friendly", "oral hygiene"], "options": [""], "instruction_attributes": ["eco friendly", "oral hygiene"], "instruction_options": [], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCFFYSMI", "worker_id": "A1MJVTR0PCKBWW"}], "B09HX5CD2D": [{"asin": "B09HX5CD2D", "instruction": "i need some draw string shorts that are official cleveland university. the need to be small and charcoal along with being machine washable.", "attributes": ["officially licensed", "machine wash", "drawstring closure", "elastic waistband"], "options": ["color: heather charcoal", "color: heather grey", "size: small", "size: medium", "size: large"], "instruction_attributes": ["officially licensed", "machine wash", "drawstring closure"], "instruction_options": ["heather charcoal", "small"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXEOUMEG", "worker_id": "A1MJVTR0PCKBWW"}], "B09SHXFH3X": [{"asin": "B09SHXFH3X", "instruction": "i'm looking for high-waisted lace women's lingerie in red. choose the x-large size.", "attributes": ["elastic waist", "high waist"], "options": ["color: red", "color: black", "color: blue", "size: x-large", "size: medium", "size: large"], "instruction_attributes": ["high waist"], "instruction_options": ["red", "x-large"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLRDDCWK", "worker_id": "A1B1J0BQ44ZV72"}], "B093TGY82Q": [{"asin": "B093TGY82Q", "instruction": "looking for a 2 pack of granola that is gluten free. it needs to be non gmo and shelf stable.", "attributes": ["shelf stable", "non gmo", "gluten free"], "options": ["size: 2 pack", "size: 3 pack", "size: 4 pack"], "instruction_attributes": ["shelf stable", "non gmo", "gluten free"], "instruction_options": ["2 pack"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OORNWFZ", "worker_id": "A1MJVTR0PCKBWW"}], "B09K41TKGS": [{"asin": "B09K41TKGS", "instruction": "i need something for hair growth.", "attributes": ["hair growth", "hair loss"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC4J8Z1R", "worker_id": "A1MJVTR0PCKBWW"}], "B081RDNB65": [{"asin": "B081RDNB65", "instruction": "i'm looking for high quality phone cord hair ties. also, choose size 18, matte color.", "attributes": ["easy carry", "high quality"], "options": ["size: 10", "size: 18", "color: matte dark", "color: noctilucent color", "color: matte color"], "instruction_attributes": ["high quality"], "instruction_options": ["18", "matte color"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MGZVBRAS", "worker_id": "A292TFDMNVS0TP"}], "B09327XGT6": [{"asin": "B09327XGT6", "instruction": "i am looking for a fast charging adapter with fast charging support in high speed", "attributes": ["fast charging", "high speed", "stainless steel"], "options": [""], "instruction_attributes": ["fast charging", "high speed"], "instruction_options": [], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A20C9THV", "worker_id": "A2HMEGTAFO0CS8"}], "B08FHMZHQ6": [{"asin": "B08FHMZHQ6", "instruction": "i'm looking for a scoop neck long sleeve medium size tunic top that's fit for everyday wear. also, choose the grey color one.", "attributes": ["hand wash", "machine wash", "polyester spandex", "long sleeve", "everyday wear"], "options": ["size: medium", "size: xx-large", "size: large", "color: b-black", "color: grey", "color: green printed"], "instruction_attributes": ["long sleeve", "everyday wear"], "instruction_options": ["medium", "grey"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK2G7N6N", "worker_id": "A258PTOZ3D2TQR"}], "B09RF4KJ1J": [{"asin": "B09RF4KJ1J", "instruction": "i need a bikini that is low rise and quick drying, in a size small", "attributes": ["low rise", "quick drying", "tummy control", "high waist", "polyester spandex", "short sleeve"], "options": ["size: small", "size: medium", "size: large", "color: a-blue", "color: black", "color: a-pink"], "instruction_attributes": ["low rise", "quick drying"], "instruction_options": ["small"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMKZSRDG", "worker_id": "A1MJVTR0PCKBWW"}], "B07MXP2ZBZ": [{"asin": "B07MXP2ZBZ", "instruction": "i am looking for a non toxic bag that has great quality to it, along with being for nail art.", "attributes": ["non toxic", "high quality", "nail art"], "options": [""], "instruction_attributes": ["non toxic", "high quality", "nail art"], "instruction_options": [], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVLS4XE1", "worker_id": "A1MJVTR0PCKBWW"}], "B09DBQ36P1": [{"asin": "B09DBQ36P1", "instruction": "i need a button down shirt that is slim fit and hand washable. the fabric needs to be stretch and be large and black.", "attributes": ["hand wash", "daily casual", "wash cold", "slim fit", "machine wash", "long sleeve", "stretch fabric", "regular fit"], "options": ["color: black", "color: navy", "color: wine", "size: large", "size: small", "size: x-large"], "instruction_attributes": ["hand wash", "slim fit", "stretch fabric"], "instruction_options": ["black", "large"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJXR8RGQ", "worker_id": "A1MJVTR0PCKBWW"}], "B085P21LC3": [{"asin": "B085P21LC3", "instruction": "i am looking for cruelty free long lasting lip lacquer with the color option moody.", "attributes": ["cruelty free", "long lasting"], "options": ["color: mauve glitz", "color: bubbles", "color: moody"], "instruction_attributes": ["cruelty free", "long lasting"], "instruction_options": ["moody"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A20C6HTG", "worker_id": "A3AYHESLQSDY5T"}], "B097RDQTGL": [{"asin": "B097RDQTGL", "instruction": "i need an easy to carry headset for audio.", "attributes": ["easy carry", "wireless bluetooth"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTYWX40F", "worker_id": "A1MJVTR0PCKBWW"}], "B096B813X6": [{"asin": "B096B813X6", "instruction": "i'm looking for sheer window covering rod pocket 2 panels for living room with size 52\" x 63\" inch. also choose the color plaid red black.", "attributes": ["super soft", "living room"], "options": ["size: 52 \" wide x 63\" long x 2 panels", "size: 52 \" wide x 72\" long x 2 panels", "size: 52 \" wide x 96\" long x 2 panels"], "instruction_attributes": ["living room"], "instruction_options": ["52 \" wide x 63\" long x 2 panels"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L83CTC6U", "worker_id": "A1DRKZ3SCLAS4V"}], "B096YHMGQ9": [{"asin": "B096YHMGQ9", "instruction": "looking for a beverage that is non alcoholic and low carb please.", "attributes": ["non alcoholic", "low carb"], "options": [""], "instruction_attributes": ["non alcoholic", "low carb"], "instruction_options": [], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT745ZATBL", "worker_id": "A1MJVTR0PCKBWW"}], "B008VCXOZM": [{"asin": "B008VCXOZM", "instruction": "i am in search of a cover-up that is easy to care for, machine washable and is quick drying. the waist needs to be elastic and of relaxed fit.", "attributes": ["easy care", "machine wash", "quick drying", "elastic waist", "relaxed fit"], "options": [""], "instruction_attributes": ["easy care", "machine wash", "quick drying", "elastic waist", "relaxed fit"], "instruction_options": [], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCGTOJ0M", "worker_id": "A1MJVTR0PCKBWW"}], "B09NVT21W2": [{"asin": "B09NVT21W2", "instruction": "i am looking for some pajamas that use good materials and has long sleeves. i will be wearing it daily and need a large size.", "attributes": ["quality materials", "long sleeve", "daily wear"], "options": ["color: d3-white", "color: a2-orange", "color: c2-hot pink", "size: 3x-large", "size: xx-large", "size: large"], "instruction_attributes": ["quality materials", "long sleeve", "daily wear"], "instruction_options": ["large"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILUJDSZW", "worker_id": "A1MJVTR0PCKBWW"}], "B09R3JPH1D": [{"asin": "B09R3JPH1D", "instruction": "looking for a white medium casual shirt. i am slim and it needs to be button down. long sleeves and machine washable needed as well.", "attributes": ["slim fit", "machine wash", "button closure", "long sleeve"], "options": ["size: medium", "size: x-large", "size: xx-large", "color: navy", "color: white"], "instruction_attributes": ["slim fit", "machine wash", "button closure", "long sleeve"], "instruction_options": ["medium", "white"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50P6NWGY", "worker_id": "A1MJVTR0PCKBWW"}], "B09HP4NVYG": [{"asin": "B09HP4NVYG", "instruction": "i'm looking for a pair of women's jeans in a size 33 regular which wash cold and dry clean.", "attributes": ["wash cold", "dry clean"], "options": ["size: 33 regular", "size: 27 regular", "size: 28 regular"], "instruction_attributes": ["wash cold", "dry clean"], "instruction_options": ["33 regular"], "assignment_id": "3J88R45B2R89QLR0JX174GXZZYYPX4", "worker_id": "A2JP9IKRHNLRPI"}], "B01EUZWTMW": [{"asin": "B01EUZWTMW", "instruction": "i am looking for a folding chair with steel frame. also with space saving.", "attributes": ["space saving", "coated steel", "contemporary design", "pu leather", "steel frame"], "options": [""], "instruction_attributes": ["space saving", "steel frame"], "instruction_options": [], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3PFHM1O", "worker_id": "A2HMEGTAFO0CS8"}], "B09JV9N6RS": [{"asin": "B09JV9N6RS", "instruction": "i'm looking for a pair of high quality, stainless steel nail clippers that also function as a pedicure tool.", "attributes": ["high quality", "stainless steel"], "options": [""], "instruction_attributes": ["high quality", "stainless steel"], "instruction_options": [], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YUNZQ01", "worker_id": "A2JP9IKRHNLRPI"}], "B096MPYVPT": [{"asin": "B096MPYVPT", "instruction": ": i'm looking for a funny dad beer tank top. also men's size large classic fit in royal blue,", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "color: purple", "color: sapphire", "color: royal blue", "size: x-large", "size: large", "size: xx-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["men", "royal blue", "large"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKIP2Z8Z", "worker_id": "A292TFDMNVS0TP"}], "B08PTQFM2V": [{"asin": "B08PTQFM2V", "instruction": "i am looking for a heavy duty spa bed made-up of stainless steel", "attributes": ["heavy duty", "stainless steel"], "options": [""], "instruction_attributes": ["heavy duty", "stainless steel"], "instruction_options": [], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLREWWCP", "worker_id": "A2HMEGTAFO0CS8"}], "B07D7J41W8": [{"asin": "B07D7J41W8", "instruction": "i need a woman's t-shirt that has a classic fit and a needle type sleeve.", "attributes": ["needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "color: heather grey", "color: dark heather", "color: black", "size: small", "size: x-large", "size: 3x-large"], "instruction_attributes": ["needle sleeve", "classic fit"], "instruction_options": ["women"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CKVXDAN", "worker_id": "A1MJVTR0PCKBWW"}], "B09MKGT2QN": [{"asin": "B09MKGT2QN", "instruction": "i am looking for a metal coat rack for my entryway. i need it to be heavy duty and i want it silver in color.", "attributes": ["heavy duty", "easy install", "easy clean"], "options": ["color: black", "color: silvery", "color: white"], "instruction_attributes": ["heavy duty"], "instruction_options": ["silvery"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0JRQJLM", "worker_id": "AZ8NBOTCBCLKG"}], "B075GWQL5Z": [{"asin": "B075GWQL5Z", "instruction": "i'm looking for a 4 pack of teeth whitening trays,bpa free, that comes with a free storage case.", "attributes": ["teeth whitening", "bpa free", "long lasting", "high quality", "storage case"], "options": [""], "instruction_attributes": ["teeth whitening", "storage case"], "instruction_options": [], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI610DSF", "worker_id": "A292TFDMNVS0TP"}], "B005B9LWV6": [{"asin": "B005B9LWV6", "instruction": "i am looking for a shoe with rubber sole and vinyl acetate also size 11.", "attributes": ["ethylene vinyl", "vinyl acetate", "rubber sole"], "options": ["size: 6", "size: 11"], "instruction_attributes": ["vinyl acetate", "rubber sole"], "instruction_options": ["11"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KCQ1RH3", "worker_id": "A2HMEGTAFO0CS8"}], "B09KYH4H84": [{"asin": "B09KYH4H84", "instruction": "i'm looking for a women soon to be dad pregnancy tank top with classic fit, needle sleeve, cotton heather and should be machine washable. also, choose medium size, royal blue", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["fit type: men", "fit type: women", "color: neon pink", "color: royal blue", "color: navy", "size: x-large", "size: medium", "size: small"], "instruction_attributes": ["machine wash", "cotton heather", "needle sleeve", "classic fit"], "instruction_options": ["women", "royal blue", "medium"], "assignment_id": "3VE8AYVF8X77K71YXMTACN226KB8FN", "worker_id": "AR0VJ5XRG16UJ"}], "B08Q9SCL49": [{"asin": "B08Q9SCL49", "instruction": "find me a high speed dual style package with 12\" power amplifier car subwoofer", "attributes": ["power amplifier", "high speed"], "options": ["style: dual 12\u201d with amplifier", "style: single 8\u201d with amplifier", "style: dual 10\u201d with amplifier"], "instruction_attributes": ["power amplifier", "high speed"], "instruction_options": ["dual 12\u201d with amplifier"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TK6LRV4", "worker_id": "A3AYHESLQSDY5T"}, {"asin": "B08Q9SCL49", "instruction": "i would like a single 15\" power amplifier car subwoofer/", "attributes": ["power amplifier", "high speed"], "options": ["style: single 15\u201d with amplifier"], "instruction_attributes": ["power amplifier"], "instruction_options": ["single 15\u201d with amplifier"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUTDAF1E", "worker_id": "A1WS884SI0SLO4"}], "B09QBSFFSL": [{"asin": "B09QBSFFSL", "instruction": "i am looking for a lace closure water booties & socks of red color.", "attributes": ["non slip", "hand wash", "lace closure"], "options": ["color: red", "size: 6"], "instruction_attributes": ["lace closure"], "instruction_options": ["red"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0TPARM", "worker_id": "A9QRQL9CFJBI7"}], "B07XF8M51P": [{"asin": "B07XF8M51P", "instruction": "i am looking for a letter y size monogram coaster set that fits for my living room . and i prefer the 22-lights color", "attributes": ["non slip", "living room"], "options": ["color: 22-lights", "size: letter y"], "instruction_attributes": ["living room"], "instruction_options": ["22-lights", "letter y"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6FLEV1", "worker_id": "A2COCSUGZV28X"}], "B08B3KGC31": [{"asin": "B08B3KGC31", "instruction": "i'm looking for the wall arts for hanging through the wall to the living room and dinning room.", "attributes": ["ready hang", "wood frame", "living room", "dining room"], "options": ["color: plum blossom 1", "size: 40x30in"], "instruction_attributes": ["living room", "dining room"], "instruction_options": ["plum blossom 1"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR49LUF4", "worker_id": "A16IQOX0DK14OJ"}], "B09HPX192V": [{"asin": "B09HPX192V", "instruction": "i am looking owl statue eco friendly soy wax jar candle color black", "attributes": ["eco friendly", "soy wax"], "options": ["color: black", "size: owl statue"], "instruction_attributes": ["eco friendly", "soy wax"], "instruction_options": ["black", "owl statue"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95SXQX6", "worker_id": "A3N9ZYQAESNFQH"}], "B00MQ9QVOM": [{"asin": "B00MQ9QVOM", "instruction": "i am looking for a super comfy x-large palazzo pants with elastic waist and wide legs.", "attributes": ["wide leg", "machine washable", "wash cold", "machine wash", "elastic waist", "tumble dry"], "options": ["color: heathergrey", "size: x-large"], "instruction_attributes": ["wide leg", "elastic waist"], "instruction_options": ["x-large"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBGDJDS", "worker_id": "A1V2JTEEBCXR20"}], "B07MTPV3GR": [{"asin": "B07MTPV3GR", "instruction": "i am looking for rose gold and phoenix colored makeup powder.", "attributes": ["cruelty free", "long lasting", "rose gold"], "options": ["color: phoenix (warm copper)"], "instruction_attributes": ["rose gold"], "instruction_options": ["phoenix (warm copper)"], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVY1UDIG", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07MTPV3GR", "instruction": "looking for highlighting makeup powder in the highlighting & luminizers section of beauty & personal care. long lasting, metallic shimmer, venus (pearlescent white.) made by aesthetica starlite", "attributes": ["cruelty free", "long lasting", "rose gold"], "options": ["color: venus (pearlescent white)"], "instruction_attributes": ["long lasting"], "instruction_options": ["venus (pearlescent white)"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVJ2Q0X", "worker_id": "A3RGIKEI8JS2QG"}], "B08QPRZ4HP": [{"asin": "B08QPRZ4HP", "instruction": "i am looking for a gluten free mixed nuts of all-in-one mix flavours", "attributes": ["kosher certified", "non gmo", "gluten free"], "options": ["flavor name: all-in-one mix", "size: 24 oz, 3 pouches (8 oz each)"], "instruction_attributes": ["gluten free"], "instruction_options": ["all-in-one mix"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7VPUCN", "worker_id": "A9QRQL9CFJBI7"}], "B08MBLRLZG": [{"asin": "B08MBLRLZG", "instruction": "i am looking for size: \u00f870cm | 28inch size tempered glass lazy susans", "attributes": ["easy clean", "tempered glass"], "options": ["size: \u00f870cm | 28inch"], "instruction_attributes": ["tempered glass"], "instruction_options": ["\u00f870cm | 28inch"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCTW652", "worker_id": "A9QRQL9CFJBI7"}], "B07Q2SQR8V": [{"asin": "B07Q2SQR8V", "instruction": "earphone earbuds comfortable ear noise cancelling with mic", "attributes": ["noise cancelling", "aluminum alloy"], "options": ["color: purple", "style: with mic"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["with mic"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQA7N03", "worker_id": "A10OGH5CQBXL5N"}], "B09PJY11X3": [{"asin": "B09PJY11X3", "instruction": "i need a gift basket with milk chocolate covered peanuts", "attributes": ["sugar free", "chocolate covered", "low carb", "keto friendly", "gift basket"], "options": ["flavor name: milk chocolate covered peanuts"], "instruction_attributes": ["gift basket"], "instruction_options": ["milk chocolate covered peanuts"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TYSSUW", "worker_id": "ASWFLI3N8X72G"}], "B09PVF9VXP": [{"asin": "B09PVF9VXP", "instruction": "i'm looking for a men's slim fit athletic long sleeve shirts with printed graphic tees top by jspoyou .", "attributes": ["slim fit", "moisture wicking", "long sleeve", "short sleeve", "polyester cotton", "regular fit", "gym workout"], "options": ["color: b-black", "size: large"], "instruction_attributes": ["slim fit", "long sleeve"], "instruction_options": ["b-black", "large"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MK4LWJ", "worker_id": "A1ZGOZQF2VZ0X9"}], "B07S4DVKZ3": [{"asin": "B07S4DVKZ3", "instruction": "i want long lasting king size headbord color : white queen wingback", "attributes": ["button tufted", "long lasting", "king size"], "options": ["color: white queen wingback", "size: queen | full wingback"], "instruction_attributes": ["long lasting", "king size"], "instruction_options": ["white queen wingback"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNSVJF3", "worker_id": "A3N9ZYQAESNFQH"}], "B09J8CDPWJ": [{"asin": "B09J8CDPWJ", "instruction": "i'm searching for cork base coaster for home living room - a set of 4 with cup holder", "attributes": ["easy clean", "living room"], "options": ["color: elephantcbu2422", "size: set of 4 with cup holder"], "instruction_attributes": ["living room"], "instruction_options": ["set of 4 with cup holder"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1AMI2T", "worker_id": "A258PTOZ3D2TQR"}], "B007GBXMBA": [{"asin": "B007GBXMBA", "instruction": "i want a small dress shirt made of polyester cotton. it should be navy in color.", "attributes": ["machine wash", "polyester cotton", "button closure"], "options": ["color: navy", "size: small"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["navy", "small"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662WCM4H", "worker_id": "A1NF6PELRKACS9"}], "B071ZZJ99N": [{"asin": "B071ZZJ99N", "instruction": "i am looking for a espresso color home office desks with steel frame.", "attributes": ["easy assemble", "coated steel", "steel frame"], "options": ["color: espresso"], "instruction_attributes": ["steel frame"], "instruction_options": ["espresso"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKLDVPR", "worker_id": "A9QRQL9CFJBI7"}], "B098QQGJ48": [{"asin": "B098QQGJ48", "instruction": "i am looking for a denim for daily wear , size 28.", "attributes": ["hand wash", "long lasting", "moisture wicking", "wash cold", "fashion design", "daily wear"], "options": ["color: light blue 2", "size: 28"], "instruction_attributes": ["daily wear"], "instruction_options": ["28"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBC8SON", "worker_id": "A9QRQL9CFJBI7"}], "B08QPHB6LC": [{"asin": "B08QPHB6LC", "instruction": "i am searching for an engorgement style breast mask suitable for dry skin.", "attributes": ["tea tree", "dry skin"], "options": ["style: engorgement"], "instruction_attributes": ["dry skin"], "instruction_options": ["engorgement"], "assignment_id": "3634BBTX0Z409DDB6851PCWGADVIFF", "worker_id": "A9ZM1P6LBW79"}], "B093GNXNX4": [{"asin": "B093GNXNX4", "instruction": "i am looking for cupcake toppers for baby shower birthday party. please choose pink color.", "attributes": ["baby shower", "cupcake picks", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["baby shower", "birthday party"], "instruction_options": ["pink"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4ZZ0HA", "worker_id": "A3FG5PQHG5AH3Y"}], "B09NYHLYN6": [{"asin": "B09NYHLYN6", "instruction": "i need pink tennis shoes for my daily wear. it should be a size 8.", "attributes": ["lace closure", "teen girls", "daily wear"], "options": ["color: z04-pink", "size: 8"], "instruction_attributes": ["daily wear"], "instruction_options": ["z04-pink", "8"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7XCLH6", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09NYHLYN6", "instruction": "i want size 8 aodong walking shoes for women with lace closure.", "attributes": ["lace closure", "teen girls", "daily wear"], "options": ["color: z04-pink", "size: 8"], "instruction_attributes": ["lace closure"], "instruction_options": ["8"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQKNJRN", "worker_id": "A2RBF3IIJP15IH"}], "B097442F4B": [{"asin": "B097442F4B", "instruction": "i am looking for blue color wireless charger", "attributes": ["heavy duty", "case cover", "wireless charging"], "options": ["color: purple marble"], "instruction_attributes": ["wireless charging"], "instruction_options": ["purple marble"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL6ACE1", "worker_id": "A16M39T60N60NO"}], "B081R2JC38": [{"asin": "B081R2JC38", "instruction": "i'm looking for wall mounted for furniture need to buy it.", "attributes": ["wall mounted", "storage space"], "options": [""], "instruction_attributes": ["wall mounted"], "instruction_options": [], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83KKIJQ", "worker_id": "A16IQOX0DK14OJ"}], "B07BCRWR2F": [{"asin": "B07BCRWR2F", "instruction": "i am looking a large pajama set machine wash cold wash relaxed fit color: with checker pant", "attributes": ["wash cold", "machine wash", "relaxed fit", "tumble dry"], "options": ["color: with checker pant", "size: large"], "instruction_attributes": ["wash cold", "machine wash", "relaxed fit"], "instruction_options": ["with checker pant", "large"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FD3K87", "worker_id": "A3N9ZYQAESNFQH"}], "B01M4IJHRC": [{"asin": "B01M4IJHRC", "instruction": "i am looking for a 9 ft. x 12 ft area rugs for living room.", "attributes": ["spot clean", "living room"], "options": ["color: cool grey", "item shape: round", "size: 9 ft. x 12 ft."], "instruction_attributes": ["living room"], "instruction_options": ["9 ft. x 12 ft."], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3G4YAC", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B01M4IJHRC", "instruction": "i would like a 8 ft. by 10 ft. chocolate brown runner rug for my living room.", "attributes": ["spot clean", "living room"], "options": ["color: a chocolate", "item shape: runner", "size: 8 ft. x 10 ft."], "instruction_attributes": ["living room"], "instruction_options": ["a chocolate", "runner", "8 ft. x 10 ft."], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKX4NDG", "worker_id": "A1WS884SI0SLO4"}], "B07XR88QNL": [{"asin": "B07XR88QNL", "instruction": "i am looking for a rose gold high quality oral care", "attributes": ["easy use", "high quality", "rose gold"], "options": ["color: rose gold"], "instruction_attributes": ["high quality"], "instruction_options": ["rose gold"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L9CREP", "worker_id": "A9QRQL9CFJBI7"}], "B07G81QFKG": [{"asin": "B07G81QFKG", "instruction": "i want a easy care hair styling irons straighteners", "attributes": ["easy carry", "hair styling"], "options": [""], "instruction_attributes": ["easy carry", "hair styling"], "instruction_options": [], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPAGCO9", "worker_id": "A3N9ZYQAESNFQH"}], "B09FG22K7Z": [{"asin": "B09FG22K7Z", "instruction": "i'm looking for oral hygiene to prevent the dental care problems.", "attributes": ["eco friendly", "easy carry", "oral hygiene"], "options": [""], "instruction_attributes": ["oral hygiene"], "instruction_options": [], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSI526V", "worker_id": "A16IQOX0DK14OJ"}], "B09HS8HG7H": [{"asin": "B09HS8HG7H", "instruction": "i'm looking for a foothill farms cream pie filling mix.", "attributes": ["ready use", "easy prepare"], "options": ["flavor name: whipped topping", "size: 13.05 ounce bag (pack of 12)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["whipped topping", "13.05 ounce bag (pack of 12)"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FNKFBC", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09R1KJYT5": [{"asin": "B09R1KJYT5", "instruction": "i am looking for a small size cotton heather tank top with classic fit which is machine washable. also choose the royal blue color.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: men", "size: small"], "instruction_attributes": ["machine wash", "cotton heather", "classic fit"], "instruction_options": ["royal blue", "small"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMMZMSRQ", "worker_id": "A1V2JTEEBCXR20"}], "B09MYZ4F19": [{"asin": "B09MYZ4F19", "instruction": "i would like a 64 gig ddr 4 ram laptop with a intel core.", "attributes": ["core i5", "intel core", "quad core"], "options": ["capacity: 64gb ddr4 ram, 2tb pcie ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["64gb ddr4 ram, 2tb pcie ssd"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVIB1PF", "worker_id": "A1WS884SI0SLO4"}], "B09B9YGLD7": [{"asin": "B09B9YGLD7", "instruction": "i would like some cake toppers for a baby shower.", "attributes": ["easy use", "birthday cake", "baby shower"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQB1N0Z", "worker_id": "A1WS884SI0SLO4"}], "B0891SD2JQ": [{"asin": "B0891SD2JQ", "instruction": "i am looking for a hair removal device for home use.", "attributes": ["hair removal", "permanent hair", "beauty salon"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2HRKFZ", "worker_id": "AJDQGOTMB2D80"}], "B0862MDKDW": [{"asin": "B0862MDKDW", "instruction": "i am looking for fragrance free eye cream effective for dark circle.", "attributes": ["fragrance free", "paraben free", "hyaluronic acid"], "options": ["color: dark c7-8"], "instruction_attributes": ["fragrance free"], "instruction_options": ["dark c7-8"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QVX707", "worker_id": "A3FG5PQHG5AH3Y"}], "B0948FKFNW": [{"asin": "B0948FKFNW", "instruction": "i am looking for a pink/blue switch gaming keyboard that is non-slip", "attributes": ["dust proof", "non slip", "plug play"], "options": ["color: pink | blue switch"], "instruction_attributes": ["non slip"], "instruction_options": ["pink | blue switch"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG1NGBD", "worker_id": "A22VGT2F28LTWC"}], "B082X1PDZK": [{"asin": "B082X1PDZK", "instruction": "i am looking for water resistant camera housing.", "attributes": ["water resistant", "stainless steel"], "options": [""], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBBYOS7", "worker_id": "A3FG5PQHG5AH3Y"}], "B08P5SDYST": [{"asin": "B08P5SDYST", "instruction": "i am looking for a white moisture wicking briefs for men", "attributes": ["low rise", "moisture wicking"], "options": ["color: white", "size: medium"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["white"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKMHVPX", "worker_id": "A9QRQL9CFJBI7"}], "B09SG3LJLK": [{"asin": "B09SG3LJLK", "instruction": "i'm looking for a twin size bed that soft beds for bedroom.", "attributes": ["twin size", "space saving"], "options": [""], "instruction_attributes": ["twin size"], "instruction_options": [], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL23NS3", "worker_id": "A16IQOX0DK14OJ"}], "B000KOUGJ6": [{"asin": "B000KOUGJ6", "instruction": "i am looking for a pack of 3 long lasting champagne blonde hair dye.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 8.5a champagne blonde", "size: pack of 3"], "instruction_attributes": ["long lasting"], "instruction_options": ["8.5a champagne blonde", "pack of 3"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHRENV2J5", "worker_id": "A1EREKSZAA9V7B"}], "B0759WR4Y9": [{"asin": "B0759WR4Y9", "instruction": "i am looking for long lasting eyeliner in charcoal color", "attributes": ["highly pigmented", "cruelty free", "long lasting"], "options": ["color: continuous charcoal"], "instruction_attributes": ["long lasting"], "instruction_options": ["continuous charcoal"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQM731T", "worker_id": "A16M39T60N60NO"}], "B009B1LZBM": [{"asin": "B009B1LZBM", "instruction": "i am looking for a solid wood display & curio cabinets", "attributes": ["assembly required", "wood finish", "solid wood"], "options": [""], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJTVBXG", "worker_id": "A9QRQL9CFJBI7"}], "B09GR3H5Q6": [{"asin": "B09GR3H5Q6", "instruction": "i would like a versa3 furry beige black fitbit band that has a quick release.", "attributes": ["quick release", "easy install", "stainless steel"], "options": ["color: furry beige black", "size: versa3 | sense black adapters"], "instruction_attributes": ["quick release"], "instruction_options": ["furry beige black", "versa3 | sense black adapters"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66SHFZX", "worker_id": "A1WS884SI0SLO4"}], "B08HHRCV7H": [{"asin": "B08HHRCV7H", "instruction": "i'm looking for a easy to assemble dresser storage organizer with steel frame. also, choose small size black grey colored one.", "attributes": ["easy assemble", "steel frame"], "options": ["color: black grey", "size: small"], "instruction_attributes": ["easy assemble", "steel frame"], "instruction_options": ["black grey", "small"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNLRNT2", "worker_id": "AR0VJ5XRG16UJ"}], "B09B9ZVYV4": [{"asin": "B09B9ZVYV4", "instruction": "baggy jeans for women high waisted daily casuals in colour blue-6", "attributes": ["daily casual", "straight leg", "button closure", "high waist", "teen girls", "everyday wear"], "options": ["color: blue-6", "size: medium"], "instruction_attributes": ["daily casual", "high waist", "teen girls"], "instruction_options": ["blue-6"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788E65CQ", "worker_id": "A10OGH5CQBXL5N"}], "B07T59DKT9": [{"asin": "B07T59DKT9", "instruction": "i am looking for a 5 no. rubber sole of road running shoes", "attributes": ["slip resistant", "moisture wicking", "rubber outsole", "rubber sole"], "options": ["color: triple black-2021", "size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["5"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UG03A4", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07T59DKT9", "instruction": "i am looking for 9 size , true red color and rubber sole running shoes for men", "attributes": ["slip resistant", "moisture wicking", "rubber outsole", "rubber sole"], "options": ["color: true red", "size: 9"], "instruction_attributes": ["rubber sole"], "instruction_options": ["true red", "9"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3LQBVM", "worker_id": "A258PTOZ3D2TQR"}], "B08656N5YT": [{"asin": "B08656N5YT", "instruction": "i'm looking for a winsome element 2pc bar stool.", "attributes": ["assembly required", "white finish", "solid wood"], "options": [""], "instruction_attributes": ["white finish"], "instruction_options": [], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57G3I9S", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09G2XJRGC": [{"asin": "B09G2XJRGC", "instruction": "i am looking for an easy to carry charger with wireless bluetooth features.", "attributes": ["output protection", "easy carry", "wireless bluetooth"], "options": [""], "instruction_attributes": ["easy carry", "wireless bluetooth"], "instruction_options": [], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHAYE1U", "worker_id": "A1NF6PELRKACS9"}], "B0843J7ZP6": [{"asin": "B0843J7ZP6", "instruction": "i want to buy a faux fur snow boots with rubber soles. it should be size 9 in width.", "attributes": ["faux fur", "rubber outsole", "rubber sole"], "options": ["color: black quilt", "size: 9 wide"], "instruction_attributes": ["faux fur", "rubber sole"], "instruction_options": ["9 wide"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP9R6D5", "worker_id": "A1NF6PELRKACS9"}], "B081TY83PX": [{"asin": "B081TY83PX", "instruction": "i'm looking for groceries shop for high protein ingredients.", "attributes": ["kosher certified", "high protein", "source vitamin", "dietary fiber", "perfect gift", "gift basket"], "options": [""], "instruction_attributes": ["high protein", "source vitamin", "dietary fiber"], "instruction_options": [], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7X15PK", "worker_id": "A16IQOX0DK14OJ"}], "B09KWZGR96": [{"asin": "B09KWZGR96", "instruction": "i'm looking for a contemporary style dresser made of solid wood.", "attributes": ["contemporary style", "solid wood"], "options": [""], "instruction_attributes": ["contemporary style", "solid wood"], "instruction_options": [], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN1IGOV", "worker_id": "AR0VJ5XRG16UJ"}], "B08T1QVF28": [{"asin": "B08T1QVF28", "instruction": "i need a blanket with lighthouse printing with 70x90\" in grey brown", "attributes": ["machine washable", "fleece throw", "printing technology"], "options": ["color: grey brown", "size: 70\" x 90\""], "instruction_attributes": ["printing technology"], "instruction_options": ["grey brown", "70\" x 90\""], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUVWJQR", "worker_id": "A2Y2TURT2VEYZN"}], "B07GGP87JS": [{"asin": "B07GGP87JS", "instruction": "i would like a 2xl black and white hoodie that i can machine wash.", "attributes": ["machine wash", "polyester cotton"], "options": ["color: sky-black+white", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["sky-black+white", "xx-large"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BN9VJV", "worker_id": "A1WS884SI0SLO4"}], "B08R617FRZ": [{"asin": "B08R617FRZ", "instruction": "i would like a bottle of coffee time romance nail polish.", "attributes": ["highly pigmented", "non toxic", "nail polish", "nail art"], "options": ["color: a-coffee time romance"], "instruction_attributes": ["nail polish"], "instruction_options": ["a-coffee time romance"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYK1LQV", "worker_id": "A1WS884SI0SLO4"}], "B08ZH4R64F": [{"asin": "B08ZH4R64F", "instruction": "i'm looking for a organic certified garbanzo beans that contains dietary fiber and low sodium level. also, choose a pack of 1 weights 15 pounds with conventional one.", "attributes": ["low sodium", "certified organic", "non gmo", "gluten free", "dietary fiber"], "options": ["flavor name: conventional", "size: 15 pound (pack of 1)"], "instruction_attributes": ["low sodium", "certified organic", "gluten free", "dietary fiber"], "instruction_options": ["conventional", "15 pound (pack of 1)"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREO9J22", "worker_id": "AR0VJ5XRG16UJ"}], "B0108L1GBC": [{"asin": "B0108L1GBC", "instruction": "i want a gluten free apple strawberry snack gift.", "attributes": ["trader joe", "gluten free", "source vitamin"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THW8Z5Z", "worker_id": "A1NF6PELRKACS9"}], "B0978YWGM2": [{"asin": "B0978YWGM2", "instruction": "i'm searching for 650 pcs nail art gel polish remover", "attributes": ["nail polish", "nail art"], "options": ["size: 650 pcs"], "instruction_attributes": ["nail art"], "instruction_options": ["650 pcs"], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK68UYYB", "worker_id": "A258PTOZ3D2TQR"}], "B00FBO8FF2": [{"asin": "B00FBO8FF2", "instruction": "i'm looking for a blue diamond almonds nut .", "attributes": ["gluten free", "protein serving"], "options": ["flavor name: sesame seeds", "size: 4.25 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["sesame seeds", "4.25 ounce (pack of 12)"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KEZDP0", "worker_id": "A1ZGOZQF2VZ0X9"}], "B07XPRVK7F": [{"asin": "B07XPRVK7F", "instruction": "i am looking for a turquoise color turquoise", "attributes": ["double sided", "fleece throw"], "options": ["color: turquoise", "size: queen"], "instruction_attributes": ["fleece throw"], "instruction_options": ["turquoise"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG80LSY", "worker_id": "A9QRQL9CFJBI7"}], "B08M6FCPH2": [{"asin": "B08M6FCPH2", "instruction": "find for gift: comfortable women's pink drawstring sweatpants high waist with pockets aragone my friend's favorite brand to train at the gym workout.", "attributes": ["elastic waist", "relaxed fit", "gym workout"], "options": ["color: pink", "size: xx-large"], "instruction_attributes": ["gym workout"], "instruction_options": ["pink"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YQUT8M", "worker_id": "A15IJ20C3R4HUO"}], "B093YT1D4W": [{"asin": "B093YT1D4W", "instruction": "i am looking for 2 sets of mesh laundry bags and should be medium sized.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD1XRIA", "worker_id": "AHU9OLV0YKIIW"}], "B08G1H75XN": [{"asin": "B08G1H75XN", "instruction": "i would like a blue 2.95 foot wire pendent light for my living room.", "attributes": ["white item", "pendant light", "living room"], "options": ["color: blue", "size: 2.95ft wire,3-pack"], "instruction_attributes": ["living room"], "instruction_options": ["blue", "2.95ft wire,3-pack"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMYPG2W", "worker_id": "A1WS884SI0SLO4"}], "B08YRJYQV2": [{"asin": "B08YRJYQV2", "instruction": "i am looking for a wooden storage rack that is easy to assemble and has exquisite workmanship.", "attributes": ["easy assemble", "exquisite workmanship"], "options": ["color: c"], "instruction_attributes": ["easy assemble", "exquisite workmanship"], "instruction_options": [], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB983N8A", "worker_id": "A1NF6PELRKACS9"}], "B09DFJ8YHC": [{"asin": "B09DFJ8YHC", "instruction": "for dry skin, i need three pack of foot scrub which also contains coconut oil.", "attributes": ["coconut oil", "dry skin"], "options": ["size: three pack"], "instruction_attributes": ["coconut oil", "dry skin"], "instruction_options": ["three pack"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZTS405", "worker_id": "ASWFLI3N8X72G"}], "B09K7J8C7Q": [{"asin": "B09K7J8C7Q", "instruction": "i am looking for modern vanity lighting for bathroom. please choose chrome color.", "attributes": ["mid century", "easy install", "easy assemble", "glass shade", "clear glass", "vanity light"], "options": ["color: chrome", "size: 23.6 inch"], "instruction_attributes": ["vanity light"], "instruction_options": ["chrome"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YJ7PN2", "worker_id": "A3FG5PQHG5AH3Y"}], "B08JZ275FK": [{"asin": "B08JZ275FK", "instruction": "looking for one merry christmas cake toppers for a birthday party", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOEKLLC", "worker_id": "A2Y2TURT2VEYZN"}], "B010NBE6HI": [{"asin": "B010NBE6HI", "instruction": "i'm looking for groceries for simple ingredients need to buy it for house usage.", "attributes": ["rich creamy", "simple ingredients"], "options": ["flavor name: light", "size: 30 ounce (pack of 6)"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["light", "30 ounce (pack of 6)"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TM6N3D", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B010NBE6HI", "instruction": "i am looking for 30 fl oz (pack of 1) - set of 2 new (two... size simple ingredients mayonnaise", "attributes": ["rich creamy", "simple ingredients"], "options": ["flavor name: regular", "size: 30 fl oz (pack of 1) - set of 2 new (two..."], "instruction_attributes": ["simple ingredients"], "instruction_options": ["30 fl oz (pack of 1) - set of 2 new (two..."], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHB01EL", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B010NBE6HI", "instruction": "i would like a bottle of 30 fluid ounce regular mayo with simple ingredients.", "attributes": ["rich creamy", "simple ingredients"], "options": ["flavor name: regular", "size: 30 fl oz (pack of 1)"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["regular", "30 fl oz (pack of 1)"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9CWZAW", "worker_id": "A1WS884SI0SLO4"}], "B07GDJQFMY": [{"asin": "B07GDJQFMY", "instruction": "i am looking for 0.34 fluid ounce of medium colored concealer. also, please make sure that it is suitable for sensitive skin.", "attributes": ["dark circles", "sensitive skin"], "options": ["color: medium", "size: 0.34 fl oz (pack of 1)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["medium", "0.34 fl oz (pack of 1)"], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60PLAAY", "worker_id": "AJDQGOTMB2D80"}, {"asin": "B07GDJQFMY", "instruction": "i would like a 0.34 fluid ounce bottle of bisque concealer for my dark circles.", "attributes": ["dark circles", "sensitive skin"], "options": ["color: bisque", "size: 0.34 fl oz (pack of 1)"], "instruction_attributes": ["dark circles"], "instruction_options": ["bisque", "0.34 fl oz (pack of 1)"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH52H6F", "worker_id": "A1WS884SI0SLO4"}], "B092W45FY9": [{"asin": "B092W45FY9", "instruction": "i am looking for foldable wireless bluetooth headphones", "attributes": ["noise cancelling", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9MC0BC", "worker_id": "A16M39T60N60NO"}], "B08TDPMSBY": [{"asin": "B08TDPMSBY", "instruction": "i am looking for a great gift of breakfast & cereal bars of newtella crispies flavor.", "attributes": ["great gift", "gift basket"], "options": ["flavor: newtella crispies", "size: 5.6 ounce (pack of 1)"], "instruction_attributes": ["great gift"], "instruction_options": ["newtella crispies"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMP7QBV", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B08TDPMSBY", "instruction": "i want lemon berry crispies in a gift basket.", "attributes": ["great gift", "gift basket"], "options": ["flavor: lemon berry crispies", "size: 3.46 ounce (pack of 1)"], "instruction_attributes": ["gift basket"], "instruction_options": ["lemon berry crispies"], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPWDR0KW", "worker_id": "A2RBF3IIJP15IH"}], "B07PM8LPWQ": [{"asin": "B07PM8LPWQ", "instruction": "i am looking for a pack of 1 antiseptic mouthwash that is effective at eliminating bad breath.", "attributes": ["oral hygiene", "bad breath"], "options": ["size: 50.7 fl oz (pack of 1)"], "instruction_attributes": ["bad breath"], "instruction_options": ["50.7 fl oz (pack of 1)"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPZ7PJ3", "worker_id": "A1HMZJ59OPLD1P"}], "B09MTYJ4YV": [{"asin": "B09MTYJ4YV", "instruction": "find me a large cardigan sweater for men in long sleeve and machine wash", "attributes": ["slim fit", "fleece lined", "wash cold", "hand wash", "machine wash", "long sleeve", "daily wear"], "options": ["color: gray", "size: large"], "instruction_attributes": ["machine wash", "long sleeve"], "instruction_options": [], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYEK288", "worker_id": "A2Y2TURT2VEYZN"}], "B084GRYF1C": [{"asin": "B084GRYF1C", "instruction": "i am looking for a table + 4 grey chairs of clear glass and faux leather.", "attributes": ["easy clean", "pu leather", "tempered glass", "clear glass", "faux leather", "metal legs", "dining room"], "options": ["size: table + 4 grey chairs"], "instruction_attributes": ["clear glass", "faux leather"], "instruction_options": ["table + 4 grey chairs"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZTY047", "worker_id": "A9QRQL9CFJBI7"}], "B09PYL51D3": [{"asin": "B09PYL51D3", "instruction": "i'm looking for a wide leg, daily wear women's baggy jeans with high waist, button closure type made of polyester spandex. also choose x-large, aa-dark blue colored one.", "attributes": ["wide leg", "straight leg", "high waist", "button closure", "polyester spandex", "teen girls", "daily wear"], "options": ["color: aa-dark blue", "size: x-large"], "instruction_attributes": ["wide leg", "high waist", "button closure", "polyester spandex", "daily wear"], "instruction_options": ["aa-dark blue", "x-large"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUB79R6", "worker_id": "AR0VJ5XRG16UJ"}], "B07L75Y8MD": [{"asin": "B07L75Y8MD", "instruction": "i'm looking for peanut butter chocolate chip protein bars. they need to be both dairy free and gluten free.", "attributes": ["dairy free", "gluten free"], "options": ["flavor name: peanut butter chocolate chip"], "instruction_attributes": ["dairy free", "gluten free"], "instruction_options": ["peanut butter chocolate chip"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREQZ2JF", "worker_id": "A3OLRWACCCCUTU"}], "B09JSWM642": [{"asin": "B09JSWM642", "instruction": "multi stick trio cream that is easy to apply also choose sweet pink rose", "attributes": ["cruelty free", "easy apply"], "options": ["color: sweet pink rose"], "instruction_attributes": ["easy apply"], "instruction_options": ["sweet pink rose"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OXM3ML", "worker_id": "A10OGH5CQBXL5N"}], "B098B8M9P7": [{"asin": "B098B8M9P7", "instruction": "i am looking for a medium size low rise underwear string for men.", "attributes": ["low rise", "fleece lined", "tummy control", "short sleeve", "daily wear"], "options": ["color: color", "size: medium"], "instruction_attributes": ["low rise"], "instruction_options": ["medium"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZZBRN8", "worker_id": "AJDQGOTMB2D80"}], "B09G65YNVN": [{"asin": "B09G65YNVN", "instruction": "i am looking for santa red color birthday cake", "attributes": ["easy use", "party supplies", "birthday cake"], "options": ["color: santa claus-red"], "instruction_attributes": ["birthday cake"], "instruction_options": ["santa claus-red"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRV6PWO", "worker_id": "A16M39T60N60NO"}], "B08FR3BGFW": [{"asin": "B08FR3BGFW", "instruction": "1 pacj of deep nourishing hair mask for hair treatment", "attributes": ["seed oil", "hair treatment"], "options": ["size: pack of 1"], "instruction_attributes": ["hair treatment"], "instruction_options": ["pack of 1"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95TQXQ8", "worker_id": "A10OGH5CQBXL5N"}], "B0984HCLKB": [{"asin": "B0984HCLKB", "instruction": "i am looking for green beans pickle in a jar. it should be made of natural infredients.", "attributes": ["old fashioned", "ready eat", "natural ingredients"], "options": ["flavor: green beans", "size: 1 pound (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["green beans"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA4DR8L", "worker_id": "A3FG5PQHG5AH3Y"}], "B08R9YKM5S": [{"asin": "B08R9YKM5S", "instruction": "get me height adjustable pendant light with easy installation feature for dining room and in large wood chandelier size", "attributes": ["height adjustable", "easy install", "pendant light", "light fixture", "dining room"], "options": ["size: large wood chandelier"], "instruction_attributes": ["height adjustable", "easy install", "pendant light", "dining room"], "instruction_options": ["large wood chandelier"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7Y5DSF", "worker_id": "A3AYHESLQSDY5T"}], "B09P9XNWDQ": [{"asin": "B09P9XNWDQ", "instruction": "i need a gluten free popped veggie chips of 10 packs", "attributes": ["gluten free", "low fat", "nut free", "plant based", "non gmo", "dietary fiber"], "options": ["size: 0.75 ounce (pack of 10)"], "instruction_attributes": ["gluten free"], "instruction_options": ["0.75 ounce (pack of 10)"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1X6H2Y", "worker_id": "A2COCSUGZV28X"}], "B09FK3D6KY": [{"asin": "B09FK3D6KY", "instruction": "i am looking for a light blue color anti slip boots with rubber sole for women. also choose size 9.5.", "attributes": ["anti slip", "rubber sole"], "options": ["color: 4light blue", "size: 9.5"], "instruction_attributes": ["anti slip", "rubber sole"], "instruction_options": ["4light blue", "9.5"], "assignment_id": "33CID5710F37J25O7G1CGJZBOS1L36", "worker_id": "A1V2JTEEBCXR20"}], "B09DJY3N7N": [{"asin": "B09DJY3N7N", "instruction": "i am trying to find carolina herrera good girl impression scent and it should be in travel size long lasting and high quality.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: carolina herrera good girl impression"], "instruction_attributes": ["travel size", "alcohol free", "long lasting"], "instruction_options": [], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83KVIJ1", "worker_id": "A9ZM1P6LBW79"}, {"asin": "B09DJY3N7N", "instruction": "i am looking for a travel size, alcohol free eau de parfum for women of estee lauder beautiful impression scent.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: estee lauder beautiful impression"], "instruction_attributes": ["travel size", "alcohol free"], "instruction_options": ["estee lauder beautiful impression"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJUHVGE", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09DJY3N7N", "instruction": "i am looking for a long lasting travel size bottle of michael kors sexy amber impression perfume.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: michael kors sexy amber impression"], "instruction_attributes": ["travel size", "long lasting"], "instruction_options": ["michael kors sexy amber impression"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFKDEMK", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B09DJY3N7N", "instruction": "i am looking for le labo bergamote 22 impression and alcohol-free travel size concentrated hypoallergenic vegan attar roll-on for women", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: le labo bergamote 22 impression"], "instruction_attributes": ["travel size", "alcohol free"], "instruction_options": ["le labo bergamote 22 impression"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0WKRA4", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B09DJY3N7N", "instruction": "i am looking for ca perfume impression of anais anais which is esay to carry with high quality , long lasting, alcohol free. nina ricci l'air du temps impression scent preferable.", "attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "options": ["scent: nina ricci l'air du temps impression"], "instruction_attributes": ["travel size", "alcohol free", "high quality", "long lasting"], "instruction_options": ["nina ricci l'air du temps impression"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTTM4E9", "worker_id": "A1DRKZ3SCLAS4V"}], "B09PTNHZ5P": [{"asin": "B09PTNHZ5P", "instruction": "i'm looking for teeth cleansing for teeth whitening and the fresh breathe.", "attributes": ["teeth whitening", "long lasting", "fresh breath", "bad breath", "sensitive teeth"], "options": [""], "instruction_attributes": ["teeth whitening", "fresh breath", "sensitive teeth"], "instruction_options": [], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL8CEC9", "worker_id": "A16IQOX0DK14OJ"}], "B09FL11QF8": [{"asin": "B09FL11QF8", "instruction": "i want to buy a red watch band for my 42 millimeter apple watch.", "attributes": ["compatible apple", "easy install"], "options": ["color: red", "size: 42mm | 44mm | 45mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["red", "42mm | 44mm | 45mm"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTJS4DR", "worker_id": "AR9AU5FY1S3RO"}], "B01KHSV0TE": [{"asin": "B01KHSV0TE", "instruction": "i'm looking for eye shadow to use for eye makeup the needed color was caramel.", "attributes": ["easy apply", "long lasting", "eye shadow"], "options": ["color: caramel", "size: 0.18 ounce (pack of 2)"], "instruction_attributes": ["eye shadow"], "instruction_options": ["caramel"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLY6YBO", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B01KHSV0TE", "instruction": "i want a .18 ounce pack of revlon colorstay creme eye shadow.", "attributes": ["easy apply", "long lasting", "eye shadow"], "options": ["color: tuxedo", "size: 0.18 ounce (pack of 1)"], "instruction_attributes": ["eye shadow"], "instruction_options": ["0.18 ounce (pack of 1)"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZPMK3M", "worker_id": "A2RBF3IIJP15IH"}], "B09NY1YLKM": [{"asin": "B09NY1YLKM", "instruction": "i'm looking for computer accessories and its easy to carry and it need to buy it.", "attributes": ["easy carry", "plug play"], "options": ["color: 2"], "instruction_attributes": ["easy carry"], "instruction_options": ["2"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MM7OFT", "worker_id": "A16IQOX0DK14OJ"}], "B09R1M9SRV": [{"asin": "B09R1M9SRV", "instruction": "i am searching for a high definition stereo sound hands free portable bluetooth speaker. also, choose the b color.", "attributes": ["hands free", "high definition", "stereo sound"], "options": ["color: b"], "instruction_attributes": ["hands free", "high definition", "stereo sound"], "instruction_options": ["b"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67MVN4R", "worker_id": "A9ZM1P6LBW79"}], "B09RJYR8WC": [{"asin": "B09RJYR8WC", "instruction": "i am looking for a long sleeve women's jumpsuits of small size.", "attributes": ["hand wash", "slim fit", "long sleeve", "dry clean"], "options": ["color: 001-pink", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N21SG6A", "worker_id": "A9QRQL9CFJBI7"}], "B09J4PY9C9": [{"asin": "B09J4PY9C9", "instruction": "i am looking for brown colored kitchen table and chair set with storage space.", "attributes": ["metal legs", "storage space"], "options": ["color: drift brown"], "instruction_attributes": ["storage space"], "instruction_options": ["drift brown"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCI8OBAE", "worker_id": "A3FG5PQHG5AH3Y"}], "B01DEDTZ28": [{"asin": "B01DEDTZ28", "instruction": "i'm searching for men's stan smith rubber sole sneaker of size 5.5", "attributes": ["regular fit", "rubber sole"], "options": ["color: core black | black | black", "size: 5.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["5.5"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKS47VV", "worker_id": "A258PTOZ3D2TQR"}], "B08KWJ2GT5": [{"asin": "B08KWJ2GT5", "instruction": "i'm looking for a bath brush that is easy to clean and has a long handle for easy use. oh and it should be blue.", "attributes": ["non slip", "bpa free", "easy clean", "long handle"], "options": ["color: blue"], "instruction_attributes": ["easy clean", "long handle"], "instruction_options": ["blue"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMWN2GC", "worker_id": "A3AK3UL0UCNVKE"}], "B099XC5XYK": [{"asin": "B099XC5XYK", "instruction": "i want a plant based, dairy free oat milk of about 4.4lb.", "attributes": ["non dairy", "plant based", "dairy free", "ready use", "lactose free", "low fat"], "options": ["size: 4.4 lb"], "instruction_attributes": ["plant based", "dairy free"], "instruction_options": ["4.4 lb"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UGAA3L", "worker_id": "A1HMZJ59OPLD1P"}], "B08ZDJZ5JD": [{"asin": "B08ZDJZ5JD", "instruction": "i'm looking for women's clothing it was long sleeve the color was hot pink.", "attributes": ["daily casual", "short sleeve", "elastic waist", "button closure", "long sleeve"], "options": ["color: z3-hot pink", "size: 3x-large"], "instruction_attributes": ["daily casual", "elastic waist", "button closure", "long sleeve"], "instruction_options": ["z3-hot pink"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU74C57W", "worker_id": "A16IQOX0DK14OJ"}], "B09BZFSTNM": [{"asin": "B09BZFSTNM", "instruction": "i need a 3 panel african art for my living room wall.", "attributes": ["printing technology", "living room"], "options": ["color: african wall art - 14", "size: 3panel-s-(12x18inches x3pcs)"], "instruction_attributes": ["living room"], "instruction_options": ["african wall art - 14", "3panel-s-(12x18inches x3pcs)"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NMWP2N", "worker_id": "A19317A3X87NVM"}], "B08RBZYY97": [{"asin": "B08RBZYY97", "instruction": "i'm looking for fine mist and the bottles was continues that stream of water.", "attributes": ["leak proof", "fine mist"], "options": ["size: 9ml-5pack"], "instruction_attributes": ["leak proof", "fine mist"], "instruction_options": ["9ml-5pack"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMQCW9M", "worker_id": "A16IQOX0DK14OJ"}], "B07YKG5J6L": [{"asin": "B07YKG5J6L", "instruction": "i am looking for 5mp ptz poe camera with 20x optical zoom lens.", "attributes": ["optical zoom", "motion detection"], "options": ["color: 5mp ptz poe 20x camera"], "instruction_attributes": ["optical zoom"], "instruction_options": ["5mp ptz poe 20x camera"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R027WZ", "worker_id": "A3FG5PQHG5AH3Y"}], "B09MHG8DD6": [{"asin": "B09MHG8DD6", "instruction": "i need a pink pair of winter warm boots for a 9 year old kid. it has to be non slip ones.", "attributes": ["winter warm", "non slip", "long sleeve", "short sleeve"], "options": ["color: b~pink", "size: 9-9.5 years"], "instruction_attributes": ["winter warm", "non slip"], "instruction_options": ["b~pink", "9-9.5 years"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67NVN4T", "worker_id": "A1NF6PELRKACS9"}], "B08R34DR16": [{"asin": "B08R34DR16", "instruction": "i am looking for an easy to assemble blue home office desk chair with lumbar support.", "attributes": ["easy assemble", "lumbar support", "living room"], "options": ["color: blue"], "instruction_attributes": ["easy assemble", "lumbar support"], "instruction_options": ["blue"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OI3RTH", "worker_id": "A1EREKSZAA9V7B"}], "B0091F0XR0": [{"asin": "B0091F0XR0", "instruction": "i am looking for 5p deep pink color concealer that is anti aging and cruelty free.", "attributes": ["oil free", "anti aging", "cruelty free", "dermatologist tested", "plant based", "leak proof", "paraben free", "hyaluronic acid", "dark circles"], "options": ["color: 5p deep pink"], "instruction_attributes": ["anti aging", "cruelty free"], "instruction_options": [], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V21FGM", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B0091F0XR0", "instruction": "i want light pink veil cosmetics complexion fix oil-free concealer.", "attributes": ["oil free", "anti aging", "cruelty free", "dermatologist tested", "plant based", "leak proof", "paraben free", "hyaluronic acid", "dark circles"], "options": ["color: 2p light pink"], "instruction_attributes": ["oil free"], "instruction_options": ["2p light pink"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOB4GJG", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B0091F0XR0", "instruction": "i want to find oil-free concealer that has a light, neutral color.", "attributes": ["oil free", "anti aging", "cruelty free", "dermatologist tested", "plant based", "leak proof", "paraben free", "hyaluronic acid", "dark circles"], "options": ["color: 2n light neutral"], "instruction_attributes": ["oil free"], "instruction_options": ["2n light neutral"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCI1LBG", "worker_id": "A345TDMHP3DQ3G"}], "B08WHXNRY4": [{"asin": "B08WHXNRY4", "instruction": "i'm looking for intel core was computer accessories it was install at any.", "attributes": ["core i5", "intel core", "quad core", "usb port"], "options": ["capacity: 32gb ram |512gb ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["32gb ram |512gb ssd"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSCAWC0", "worker_id": "A16IQOX0DK14OJ"}], "B07GBGZZLC": [{"asin": "B07GBGZZLC", "instruction": "i'd like a certfied organic 36 pack of 2 ounce vitality shot drink flavored lemon ginger", "attributes": ["certified organic", "non gmo", "simple ingredients"], "options": ["flavor: lemon ginger", "size: 2 ounce (pack of 36)"], "instruction_attributes": ["certified organic"], "instruction_options": ["lemon ginger", "2 ounce (pack of 36)"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOINYDY", "worker_id": "A22VGT2F28LTWC"}, {"asin": "B07GBGZZLC", "instruction": "i am looking for tulua apple cider vinegar lemon ginger flavored fruit juice that is certified organic.", "attributes": ["certified organic", "non gmo", "simple ingredients"], "options": ["flavor: tulua apple cider vinegar lemon ginger", "size: 2 ounce (pack of 12)"], "instruction_attributes": ["certified organic"], "instruction_options": ["tulua apple cider vinegar lemon ginger"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G7A874O", "worker_id": "A1EREKSZAA9V7B"}], "B07WHYSQ5W": [{"asin": "B07WHYSQ5W", "instruction": "i'm looking for a 80 miles signal amplifier booster for hd tv.", "attributes": ["high power", "plug play", "easy install"], "options": ["color: xh-black"], "instruction_attributes": ["high power"], "instruction_options": ["xh-black"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBSGGIX", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08ZN3Q4DN": [{"asin": "B08ZN3Q4DN", "instruction": "i am looking for 3mp motion detection security camera.", "attributes": ["easy install", "motion detection"], "options": ["color: 3mp"], "instruction_attributes": ["motion detection"], "instruction_options": ["3mp"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LK45I8", "worker_id": "A3FG5PQHG5AH3Y"}], "B07D9WKMDG": [{"asin": "B07D9WKMDG", "instruction": "i'm looking for clothing for machinable wash and it makes confortable.", "attributes": ["wash cold", "machine wash", "relaxed fit", "tumble dry"], "options": ["color: with gray camo pant", "size: large"], "instruction_attributes": ["machine wash", "relaxed fit", "tumble dry"], "instruction_options": ["with gray camo pant"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C6FPH8", "worker_id": "A16IQOX0DK14OJ"}], "B07S316QK8": [{"asin": "B07S316QK8", "instruction": "i want pure certified organic bpa free coconut oil for baking and cooking purpose size :128 fl oz", "attributes": ["gluten free", "bpa free", "non dairy", "easy use", "certified organic"], "options": ["size: 128 fl oz (pack of 1)"], "instruction_attributes": ["bpa free", "certified organic"], "instruction_options": ["128 fl oz (pack of 1)"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYP99Q9", "worker_id": "A3N9ZYQAESNFQH"}], "B09SQ7SG2L": [{"asin": "B09SQ7SG2L", "instruction": "i looking a heavy duty height adjustable professional salon spa stool color:beige", "attributes": ["height adjustable", "heavy duty"], "options": ["color: beige", "size: 2"], "instruction_attributes": ["height adjustable", "heavy duty"], "instruction_options": ["beige"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMQ0W9A", "worker_id": "A3N9ZYQAESNFQH"}], "B08N6LB8MH": [{"asin": "B08N6LB8MH", "instruction": "i am looking for arms lumbar support in grey", "attributes": ["high density", "heavy duty", "white item", "easy install", "lumbar support"], "options": ["color: grey"], "instruction_attributes": ["lumbar support"], "instruction_options": ["grey"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MC2DYZH", "worker_id": "A2MSIFDLOHI1UT"}], "B08Q642VRV": [{"asin": "B08Q642VRV", "instruction": "want to buy some peanut butter flavored cereal that is grain free and keto friendly. it needs to come in a 9 oz pack of four.", "attributes": ["keto friendly", "sugar free", "grain free", "low carb", "plant based", "artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: peanut butter", "size: 9 ounce (pack of 4)"], "instruction_attributes": ["keto friendly", "grain free"], "instruction_options": ["peanut butter", "9 ounce (pack of 4)"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LFK0LR", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B08Q642VRV", "instruction": "i would like some maple waffle 1.27 ounce sugar free cereal.", "attributes": ["keto friendly", "sugar free", "grain free", "low carb", "plant based", "artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: maple waffle", "size: 1.27 ounce (pack of 6)"], "instruction_attributes": ["sugar free"], "instruction_options": ["maple waffle", "1.27 ounce (pack of 6)"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP7G6DQ", "worker_id": "A1WS884SI0SLO4"}], "B08SH3J22Q": [{"asin": "B08SH3J22Q", "instruction": "i'm looking for groceries shop for buying zero sugar and the flavor was french vanilla.", "attributes": ["lactose free", "shelf stable", "keto friendly", "plant based", "dairy free", "non gmo", "zero sugar"], "options": ["flavor name: french vanilla", "size: 12 pack"], "instruction_attributes": ["lactose free", "dairy free", "zero sugar"], "instruction_options": ["french vanilla"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA7Y2SD", "worker_id": "A16IQOX0DK14OJ"}], "B08NX3695X": [{"asin": "B08NX3695X", "instruction": "i want a non slip case cover for my motorola one phone.", "attributes": ["non slip", "carbon fiber", "case cover"], "options": ["color: motorola one 5g ace black brushed tpu case"], "instruction_attributes": ["non slip", "case cover"], "instruction_options": [], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2IZKF9", "worker_id": "A1NF6PELRKACS9"}], "B09JWT9VVX": [{"asin": "B09JWT9VVX", "instruction": "i'm looking for need to clean my teeth adn it was prevention of oral care.", "attributes": ["teeth whitening", "non slip", "sensitive teeth"], "options": ["flavor name: coconut"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["coconut"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMPFMW7", "worker_id": "A16IQOX0DK14OJ"}], "B0895CV637": [{"asin": "B0895CV637", "instruction": "i'm in need of a stereo sound, pink color alarm clock radio", "attributes": ["high power", "stereo sound"], "options": ["color: pink"], "instruction_attributes": ["stereo sound"], "instruction_options": ["pink"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ARDBWB", "worker_id": "A258PTOZ3D2TQR"}], "B087CXMMQM": [{"asin": "B087CXMMQM", "instruction": "i need a big rug with a fuzzy non-stick surface.", "attributes": ["spot clean", "non slip", "memory foam", "living room"], "options": ["color: hot pink", "size: 4x5.9 feet"], "instruction_attributes": ["non slip"], "instruction_options": ["4x5.9 feet"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PAJBUR", "worker_id": "A19317A3X87NVM"}], "B08Y6NSWS4": [{"asin": "B08Y6NSWS4", "instruction": "i need a high performance bluetooth speakers that can be used for indoor parties. please choose the gray one.", "attributes": ["high performance", "stereo sound"], "options": ["color: gray"], "instruction_attributes": ["high performance", "stereo sound"], "instruction_options": ["gray"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH154QHW5", "worker_id": "A1HMZJ59OPLD1P"}], "B07QK2FTWT": [{"asin": "B07QK2FTWT", "instruction": "i want lead free long lasting scented candle scent : cinnamon apple", "attributes": ["lead free", "long lasting"], "options": ["scent: cinnamon apple", "size: ring (size 5)"], "instruction_attributes": ["lead free", "long lasting"], "instruction_options": ["cinnamon apple", "ring (size 5)"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZR9HS5", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B07QK2FTWT", "instruction": "i am looking for long lasting candle. please choose creme brulee scent.", "attributes": ["lead free", "long lasting"], "options": ["scent: creme brulee", "size: ring (size 5)"], "instruction_attributes": ["long lasting"], "instruction_options": ["creme brulee"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7VZURY", "worker_id": "A3FG5PQHG5AH3Y"}], "B000XEF5OO": [{"asin": "B000XEF5OO", "instruction": "i am looking for a travel size moschino miniature eau de toilette.", "attributes": ["design house", "travel size"], "options": [""], "instruction_attributes": ["travel size"], "instruction_options": [], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YOI69U", "worker_id": "AHU9OLV0YKIIW"}], "B083XPLGC3": [{"asin": "B083XPLGC3", "instruction": "i want to buy a box of savory fava bean snacks that are non-gmo. find the pack that has 21 bags.", "attributes": ["high protein", "plant based", "low sugar", "gluten free", "low fat", "non gmo"], "options": ["flavor: the savory box", "size: 1 ounce (pack of 21)"], "instruction_attributes": ["non gmo"], "instruction_options": ["the savory box", "1 ounce (pack of 21)"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCKVPI4", "worker_id": "AR9AU5FY1S3RO"}], "B0719R1WZ7": [{"asin": "B0719R1WZ7", "instruction": "i need an area rug for my living room in wineberry color.", "attributes": ["spot clean", "dining room", "living room"], "options": ["color: wineberry", "size: 1'8 x 5"], "instruction_attributes": ["living room"], "instruction_options": ["wineberry"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMRR9WG", "worker_id": "A1NF6PELRKACS9"}], "B00PYUS4PY": [{"asin": "B00PYUS4PY", "instruction": "i'm looking for an oil free fine mist makeup foundation. also, choose the buff beige color.", "attributes": ["oil free", "fragrance free", "fine mist"], "options": ["color: buff beige"], "instruction_attributes": ["oil free"], "instruction_options": [], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRS75EU3", "worker_id": "A9ZM1P6LBW79"}], "B09RFDWPX9": [{"asin": "B09RFDWPX9", "instruction": "i'm looking for a relax fit fashion designed long sleeve lapel coats for women. also, choose xx-large size z4 black colored one.", "attributes": ["long sleeve", "fashion design", "relaxed fit"], "options": ["color: z4-black", "size: xx-large"], "instruction_attributes": ["long sleeve", "fashion design", "relaxed fit"], "instruction_options": ["z4-black", "xx-large"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB14YLUP", "worker_id": "AR0VJ5XRG16UJ"}], "B09M7PMKJP": [{"asin": "B09M7PMKJP", "instruction": "i am looking for a classic fit t-shirt for a youth girl. also choose asphalt color and x-small size.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: asphalt", "fit type: youth", "size: x-small"], "instruction_attributes": ["classic fit"], "instruction_options": ["asphalt", "youth", "x-small"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4J98MD", "worker_id": "A2HMEGTAFO0CS8"}], "B07P1Z265L": [{"asin": "B07P1Z265L", "instruction": "i am looking for a black rose high speed automobile chargers", "attributes": ["fast charging", "high speed"], "options": ["color: black rose"], "instruction_attributes": ["high speed"], "instruction_options": ["black rose"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUV0JQV", "worker_id": "A9QRQL9CFJBI7"}], "B09LZ6DN9L": [{"asin": "B09LZ6DN9L", "instruction": "i am looking for a pair of men's size 48 blue winter shoes with memory foam.", "attributes": ["winter warm", "anti slip", "knee high", "memory foam"], "options": ["color: blue", "size: 48"], "instruction_attributes": ["memory foam"], "instruction_options": ["blue", "48"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70I9YBC1", "worker_id": "A1EREKSZAA9V7B"}], "B08GY8HNL9": [{"asin": "B08GY8HNL9", "instruction": "i want a bedside table with a wooden cabinet in my living room. it should be green in color.", "attributes": ["dining room", "living room"], "options": ["color: green", "size: 57x31.5x83cm"], "instruction_attributes": ["living room"], "instruction_options": ["green"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QVL07O", "worker_id": "A1NF6PELRKACS9"}], "B085W67P7L": [{"asin": "B085W67P7L", "instruction": "i am looking for travel foaming dispenser for hand soap. please choose rose gold and silver pump head.", "attributes": ["eco friendly", "rose gold"], "options": ["color: silver pump head"], "instruction_attributes": ["rose gold"], "instruction_options": ["silver pump head"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMM0XRS2", "worker_id": "A3FG5PQHG5AH3Y"}], "B09MMFQFZJ": [{"asin": "B09MMFQFZJ", "instruction": "i would like a op99 phone case cover.", "attributes": ["tempered glass", "case cover"], "options": ["color: op99"], "instruction_attributes": ["case cover"], "instruction_options": ["op99"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8NABN2B", "worker_id": "A1WS884SI0SLO4"}], "B01MZWL5Y3": [{"asin": "B01MZWL5Y3", "instruction": "i want a fully assembled desk converter that would fit 2 monitors.", "attributes": ["fully assembled", "assembly required"], "options": [""], "instruction_attributes": ["fully assembled"], "instruction_options": [], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIA0RBM", "worker_id": "A1NF6PELRKACS9"}], "B00J4OTK9A": [{"asin": "B00J4OTK9A", "instruction": "get me a body scrub to remove dead skin. pick a 3.4 fl oz pack that is meant for sensitive skin.", "attributes": ["dermatologist tested", "cruelty free", "dead skin", "sensitive skin"], "options": ["size: 3.4 fl oz (pack of 1)"], "instruction_attributes": ["dead skin", "sensitive skin"], "instruction_options": ["3.4 fl oz (pack of 1)"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841BRXAO", "worker_id": "A1NF6PELRKACS9"}], "B09NKV2PYS": [{"asin": "B09NKV2PYS", "instruction": "i need an easy use but high quality beauty ice contour mold skin care tool. pink color will work for me.", "attributes": ["easy use", "high quality", "green tea", "fine lines"], "options": ["color: pink"], "instruction_attributes": ["easy use", "high quality"], "instruction_options": ["pink"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4NIPKB", "worker_id": "A39VVWV1GHLMFD"}], "B079S8B9SF": [{"asin": "B079S8B9SF", "instruction": "get me a gluten and nut free ready to eat plant based vegan meal variety pack in size 2.29 ounce (pack of 4).", "attributes": ["freeze dried", "ready eat", "plant based", "gluten free", "shelf stable", "nut free", "dairy free", "non gmo", "simple ingredients", "artificial flavors"], "options": ["flavor: variety pack", "size: 2.29 ounce (pack of 4)"], "instruction_attributes": ["ready eat", "gluten free", "nut free"], "instruction_options": ["variety pack", "2.29 ounce (pack of 4)"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R600R6", "worker_id": "A3AYHESLQSDY5T"}, {"asin": "B079S8B9SF", "instruction": "i am looking for a 2.3 ounce (pack of 4) size of plant based, gluten free and non gmo side dishes", "attributes": ["freeze dried", "ready eat", "plant based", "gluten free", "shelf stable", "nut free", "dairy free", "non gmo", "simple ingredients", "artificial flavors"], "options": ["flavor: madras quinoa & lentil", "size: 2.3 ounce (pack of 4)"], "instruction_attributes": ["plant based", "gluten free", "non gmo"], "instruction_options": ["2.3 ounce (pack of 4)"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVPTJKO", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B079S8B9SF", "instruction": "i am interested in a ready to eat millet and lentil packet that comes in a pack of 8", "attributes": ["freeze dried", "ready eat", "plant based", "gluten free", "shelf stable", "nut free", "dairy free", "non gmo", "simple ingredients", "artificial flavors"], "options": ["flavor: jaipur millet & lentil", "size: 2.3 ounce (pack of 8)"], "instruction_attributes": ["ready eat"], "instruction_options": ["jaipur millet & lentil", "2.3 ounce (pack of 8)"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQEXKEY", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GNR9BS1": [{"asin": "B09GNR9BS1", "instruction": "i need a long lasting perfume that is unisex and alcohol free.", "attributes": ["long lasting", "alcohol free", "bpa free", "paraben free", "non toxic", "cruelty free"], "options": [""], "instruction_attributes": ["long lasting", "alcohol free"], "instruction_options": [], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFSC0T0", "worker_id": "A1NF6PELRKACS9"}], "B07X2T33Q4": [{"asin": "B07X2T33Q4", "instruction": "i an looking for electric hair cream mixer, automatic hair dye mixing bowl, usb rechargeable hair dyeing, color diy mixer for salon home use which is durable and lightweight. will not mold, peel, crack, warp, absorb odors, or fade. portable size, convenient to carry..suitable for professional salon hairstylist or home personal use.2 in 1 includes a bowl and a dyestuff whisk, meeting basic demands on hair dying.", "attributes": ["easy clean", "high quality", "hair dye"], "options": ["color: 1#"], "instruction_attributes": ["easy clean", "high quality", "hair dye"], "instruction_options": ["1#"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662XYM45", "worker_id": "A1DRKZ3SCLAS4V"}], "B01H6PX8AK": [{"asin": "B01H6PX8AK", "instruction": "i want lumabase 30748 votive candles in clear glass holders - set of 12", "attributes": ["lead free", "clear glass"], "options": [""], "instruction_attributes": ["clear glass"], "instruction_options": [], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFUKOJU", "worker_id": "A1IL2K0ELYI090"}], "B0913HN2QV": [{"asin": "B0913HN2QV", "instruction": "i am looking for a makeup chair with metal legs for my living room. pick something in blue.", "attributes": ["exquisite workmanship", "metal legs", "living room"], "options": ["color: blue"], "instruction_attributes": ["metal legs", "living room"], "instruction_options": ["blue"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDXPAI1", "worker_id": "A1NF6PELRKACS9"}], "B07LFT8MFW": [{"asin": "B07LFT8MFW", "instruction": "i am looking for gluten free strawberry juicy gels.", "attributes": ["gluten free", "high fructose"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPHEVQX", "worker_id": "A3FG5PQHG5AH3Y"}], "B08LN5YSLR": [{"asin": "B08LN5YSLR", "instruction": "please find an easy use shower scalp scrubber tool in the color pink for hair care", "attributes": ["easy use", "dry hair", "hair growth", "hair loss", "dead skin"], "options": ["color: pink"], "instruction_attributes": ["easy use"], "instruction_options": ["pink"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2O6YN1", "worker_id": "A292TFDMNVS0TP"}], "B004K025J0": [{"asin": "B004K025J0", "instruction": "i am looking high speed hdmi cable. size should be 3 feet.", "attributes": ["ultra hd", "gold plated", "high speed"], "options": ["size: 3 ft. slim"], "instruction_attributes": ["high speed"], "instruction_options": ["3 ft. slim"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMP8QBW", "worker_id": "A3FG5PQHG5AH3Y"}], "B082G4HM4S": [{"asin": "B082G4HM4S", "instruction": "i want a swappable top for my phone with wireless charging. it should have jacksonville jaguars logo.", "attributes": ["hands free", "wireless charging"], "options": ["color: jacksonville jaguars logo"], "instruction_attributes": ["wireless charging"], "instruction_options": ["jacksonville jaguars logo"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVHFUTW", "worker_id": "A1NF6PELRKACS9"}], "B09MTYKWTR": [{"asin": "B09MTYKWTR", "instruction": "i am looking for whitening massage manual easy use toothbrush with handle for boy with color d", "attributes": ["easy use", "bad breath"], "options": ["color: d"], "instruction_attributes": ["easy use"], "instruction_options": ["d"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK2489KN2", "worker_id": "A258PTOZ3D2TQR"}], "B06XH86JBZ": [{"asin": "B06XH86JBZ", "instruction": "i want to find 6 ounces of goji colored blueberry powder that is high in dietary fiber.", "attributes": ["shelf stable", "non gmo", "gluten free", "dietary fiber", "artificial colors"], "options": ["color: goji", "size: 6 ounce"], "instruction_attributes": ["dietary fiber"], "instruction_options": ["goji", "6 ounce"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFJ39VM", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B06XH86JBZ", "instruction": "i'm looking for a nubeleaf blackberry powder.", "attributes": ["shelf stable", "non gmo", "gluten free", "dietary fiber", "artificial colors"], "options": ["color: banana", "size: 6 ounce (pack of 1)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["banana", "6 ounce (pack of 1)"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7NC3ID", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08WCM5XT3": [{"asin": "B08WCM5XT3", "instruction": "i'm looking for easy apply for hair removal in natural ingredients. it can easily apply.", "attributes": ["easy apply", "natural ingredients", "hair removal"], "options": [""], "instruction_attributes": ["natural ingredients", "hair removal"], "instruction_options": [], "assignment_id": "3V26SBZTBOOS9KTL7ONUSZFOIWJZZB", "worker_id": "A16IQOX0DK14OJ"}], "B00487L2Y4": [{"asin": "B00487L2Y4", "instruction": "i need some spacedye spandex leggings.", "attributes": ["nylon spandex", "high waist"], "options": ["color: skystorm spacedye", "size: large"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["skystorm spacedye"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIFIVFG", "worker_id": "A19317A3X87NVM"}, {"asin": "B00487L2Y4", "instruction": "i'm looking for a high waist shapewear leggings in heather charcoal color and in size large.", "attributes": ["nylon spandex", "high waist"], "options": ["color: heather charcoal", "size: large"], "instruction_attributes": ["high waist"], "instruction_options": ["heather charcoal", "large"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFXJE3Z", "worker_id": "A3MNXK3VDK37SN"}], "B09KV1BXST": [{"asin": "B09KV1BXST", "instruction": "i'm looking for a lace silk pajama lingerie for women with long sleeves and made of good quality polyester material. also, choose large size wine colored one.", "attributes": ["quality polyester", "long sleeve", "laundry bag"], "options": ["color: wine", "size: large"], "instruction_attributes": ["quality polyester", "long sleeve"], "instruction_options": ["wine", "large"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X025K347", "worker_id": "AR0VJ5XRG16UJ"}], "B084ZHHY5H": [{"asin": "B084ZHHY5H", "instruction": "i would like a size 11 women's slate colored clog with a rubber sole.", "attributes": ["water resistant", "slip resistant", "arch support", "rubber outsole"], "options": ["color: slate", "size: 11 women | 9 men"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["slate", "11 women | 9 men"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9PEVTE", "worker_id": "A1WS884SI0SLO4"}], "B01IDDRDRI": [{"asin": "B01IDDRDRI", "instruction": "i am looking for a pack of 6 12 ounce gluten free coffee creamer.", "attributes": ["non dairy", "gluten free", "low carb", "dairy free"], "options": ["size: 12 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["12 ounce (pack of 6)"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGU93MR5", "worker_id": "A1EREKSZAA9V7B"}], "B09CDCH6GW": [{"asin": "B09CDCH6GW", "instruction": "let me have kasrou 3-tier stackable wire baskets, wall mounted, easy install, hanging basket kitchen pantry storage", "attributes": ["wall mounted", "easy install"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80ERQ1P", "worker_id": "A1IL2K0ELYI090"}], "B06W5BQ95C": [{"asin": "B06W5BQ95C", "instruction": "i would like a 1.25 ounce container of probiotics from natural ingredients. i would like 24 of them.", "attributes": ["plant based", "non gmo", "gluten free", "kosher certified", "dairy free", "natural ingredients"], "options": ["size: 1.25 ounce (pack of 24)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["1.25 ounce (pack of 24)"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0DL61E", "worker_id": "A1WS884SI0SLO4"}], "B07N3NN79M": [{"asin": "B07N3NN79M", "instruction": "looking for a black 28\" inseam 3 x-large machine wash, drawstring closure men's straight fit modern stretch pant made by goodthreads.", "attributes": ["machine wash", "drawstring closure"], "options": ["color: black", "size: 3x-large | 28\" inseam"], "instruction_attributes": ["machine wash", "drawstring closure"], "instruction_options": ["black", "3x-large | 28\" inseam"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB14TLUK", "worker_id": "A3RGIKEI8JS2QG"}], "B00ICSCDW0": [{"asin": "B00ICSCDW0", "instruction": "i am looking for cruelty free beard oil with sandalwood", "attributes": ["cruelty free", "seed oil", "argan oil", "natural ingredients", "hair growth"], "options": ["scent: sandalwood"], "instruction_attributes": ["cruelty free"], "instruction_options": ["sandalwood"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0VWXP5", "worker_id": "A22VGT2F28LTWC"}], "B08X3R2V9S": [{"asin": "B08X3R2V9S", "instruction": "i'm looking for a gourmet food gift basket that is perfect for valentine's day", "attributes": ["gift basket", "valentine day"], "options": [""], "instruction_attributes": ["gift basket", "valentine day"], "instruction_options": [], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAWZZXS", "worker_id": "A1HMZJ59OPLD1P"}], "B09K5SWKWK": [{"asin": "B09K5SWKWK", "instruction": "i'm looking for strawberry & yogurt pretzels artificial flavors snacks", "attributes": ["rich creamy", "high fructose", "artificial flavors"], "options": [""], "instruction_attributes": ["artificial flavors"], "instruction_options": [], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCDA7HM", "worker_id": "A2Y2TURT2VEYZN"}], "B095VX97GN": [{"asin": "B095VX97GN", "instruction": "i want an easy to carry storage case for my cosmetics that is multi-colored.", "attributes": ["easy carry", "storage case", "eye shadow"], "options": ["color: multi 7"], "instruction_attributes": ["easy carry", "storage case"], "instruction_options": ["multi 7"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPXS0GD", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B095VX97GN", "instruction": "i'm looking for native american indian dream catcher feathers talisman.", "attributes": ["easy carry", "storage case", "eye shadow"], "options": ["color: multi 20"], "instruction_attributes": ["storage case"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGBDLSH", "worker_id": "A21IUUHBSEVB56"}], "B07ZJC7G3N": [{"asin": "B07ZJC7G3N", "instruction": "i'm looking for an ottoman cover made of beige faux leather.", "attributes": ["easy clean", "faux leather", "living room"], "options": ["color: beige", "size: small 1 (20\"diax12\"h)"], "instruction_attributes": ["faux leather"], "instruction_options": ["beige"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X63PGA", "worker_id": "A19317A3X87NVM"}], "B08Y8YNMRP": [{"asin": "B08Y8YNMRP", "instruction": "i need a short sleeved top for a teen girl. it should be xx-large in size.", "attributes": ["short sleeve", "long sleeve", "teen girls"], "options": ["color: z05- long-sleeved", "size: xx-large"], "instruction_attributes": ["short sleeve", "teen girls"], "instruction_options": ["xx-large"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTZZM70", "worker_id": "A1NF6PELRKACS9"}], "B073B57CQZ": [{"asin": "B073B57CQZ", "instruction": "find me a backdrop vertical striped easy carry for digital photography in 5x7 ft", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 5x7ft"], "instruction_attributes": ["easy carry", "digital photography"], "instruction_options": ["5x7ft"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYEN28B", "worker_id": "A2Y2TURT2VEYZN"}], "B01N4LEQE5": [{"asin": "B01N4LEQE5", "instruction": "i need a twin size fully assembled plush mattress, which should have 8' split foundation with frame.", "attributes": ["ready use", "queen size", "fully assembled", "assembly required", "king size"], "options": ["size: twin", "style: 8' split foundation with frame"], "instruction_attributes": ["fully assembled"], "instruction_options": ["twin", "8' split foundation with frame"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIDTL2L", "worker_id": "ASWFLI3N8X72G"}], "B0992D6BFT": [{"asin": "B0992D6BFT", "instruction": "i am looking for a light brown color faux leather storage benches for living room", "attributes": ["faux leather", "pu leather", "storage space", "living room"], "options": ["color: light brown", "size: 60x40x45cm(24x16x18inch)"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["light brown"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z59GXM", "worker_id": "A9QRQL9CFJBI7"}], "B07CR9MGLG": [{"asin": "B07CR9MGLG", "instruction": "i'm looking for curtains for living room and it color was white.", "attributes": ["easy install", "living room"], "options": ["color: white", "size: w52 x l95"], "instruction_attributes": ["living room"], "instruction_options": ["white"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYQAQ9T", "worker_id": "A16IQOX0DK14OJ"}], "B075YM97NK": [{"asin": "B075YM97NK", "instruction": "i am looking for wood split box spring of california king sized.", "attributes": ["ready use", "assembly required", "fully assembled", "box spring"], "options": ["size: california king", "style name: 8\" split foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["california king"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LC01OH", "worker_id": "A3FG5PQHG5AH3Y"}], "B00V5KRF66": [{"asin": "B00V5KRF66", "instruction": "i'm looking for god plated converter for combo kit and need to buy it.", "attributes": ["gold plated", "high speed"], "options": ["size: 6 piece", "style: combo kit"], "instruction_attributes": ["gold plated"], "instruction_options": ["combo kit"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWTZZ79R", "worker_id": "A16IQOX0DK14OJ"}], "B09Q6B974T": [{"asin": "B09Q6B974T", "instruction": "find me a small long sleeve sweatshirt in green", "attributes": ["quick drying", "machine washable", "loose fit", "long sleeve", "memory foam", "short sleeve", "teen girls", "laundry bag", "daily wear"], "options": ["color: new dressy - b133 -green", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["new dressy - b133 -green", "small"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRS8CEUC", "worker_id": "A2Y2TURT2VEYZN"}], "B09LGXTKSH": [{"asin": "B09LGXTKSH", "instruction": "i'm looking for a smart remote control included with batteries. also, that battery type should be aaa size.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1WDH23", "worker_id": "A9ZM1P6LBW79"}], "B08QMDM179": [{"asin": "B08QMDM179", "instruction": "i am looking for lace closure men sneaker. please select 16 size.", "attributes": ["lace closure", "ethylene vinyl", "vinyl acetate", "memory foam"], "options": ["color: magnet canvas | nbk", "size: 16"], "instruction_attributes": ["lace closure"], "instruction_options": ["16"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP73OAR", "worker_id": "A3FG5PQHG5AH3Y"}], "B07ZR8KF4C": [{"asin": "B07ZR8KF4C", "instruction": "i need an easy to use tofu drainer for tofu bricks.", "attributes": ["bpa free", "easy use"], "options": ["size: 8-12 oz bricks of tofu"], "instruction_attributes": ["easy use"], "instruction_options": ["8-12 oz bricks of tofu"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCP4B9V", "worker_id": "A19317A3X87NVM"}], "B097R6HS3G": [{"asin": "B097R6HS3G", "instruction": "i would like a medium snickers tracksuit for my gym workout.", "attributes": ["machine wash", "elastic closure", "high waist", "polyester spandex", "gym workout"], "options": ["color: snickers", "size: medium"], "instruction_attributes": ["gym workout"], "instruction_options": ["snickers", "medium"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WABUOP", "worker_id": "A1WS884SI0SLO4"}], "B097H8C87M": [{"asin": "B097H8C87M", "instruction": "i am looking for high density tri-fold full memory foam mattress with size :twin xl and 3\" blue", "attributes": ["high density", "memory foam", "storage space"], "options": ["size: twin xl", "style: 3\" blue"], "instruction_attributes": ["high density"], "instruction_options": ["twin xl", "3\" blue"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMNNB69", "worker_id": "AX2EWYWZM19AZ"}], "B09K813WBQ": [{"asin": "B09K813WBQ", "instruction": "i am looking for a cupcake topper for a family birthday party.", "attributes": ["party supplies", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFFUU58", "worker_id": "A2HMEGTAFO0CS8"}], "B09QKZ1GSS": [{"asin": "B09QKZ1GSS", "instruction": "i'm looking for daily wear open toe shoes that was blue in color.", "attributes": ["open toe", "ankle strap", "teen girls", "daily wear"], "options": ["color: blue", "size: 6.5-7"], "instruction_attributes": ["open toe", "teen girls", "daily wear"], "instruction_options": ["blue"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YJ8NP1", "worker_id": "A16IQOX0DK14OJ"}], "B07GVBWL3Q": [{"asin": "B07GVBWL3Q", "instruction": "i'm looking for a 84 inch green lazzzy blackout velvet curtains.", "attributes": ["machine washable", "living room"], "options": ["color: gold brown", "size: 63 inch"], "instruction_attributes": ["living room"], "instruction_options": ["gold brown", "63 inch"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OIGRTU", "worker_id": "A1ZGOZQF2VZ0X9"}], "B00J1NGCF4": [{"asin": "B00J1NGCF4", "instruction": "i am looking for a skin brush with natural bristles and a long handle.", "attributes": ["long handle", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["long handle"], "instruction_options": [], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IPATLN", "worker_id": "A1EREKSZAA9V7B"}], "B07L1R7YQ9": [{"asin": "B07L1R7YQ9", "instruction": "i am looking bpa free fine mist high quality case color silver color size 3.4 ounce", "attributes": ["bpa free", "high quality", "fine mist", "quality materials"], "options": ["color: silver frosted", "size: 3.4 ounce (pack of 2)"], "instruction_attributes": ["bpa free", "high quality", "fine mist"], "instruction_options": ["silver frosted", "3.4 ounce (pack of 2)"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQEL91K", "worker_id": "A3N9ZYQAESNFQH"}], "B07PTT1PW4": [{"asin": "B07PTT1PW4", "instruction": "i am looking for a 180w x 5 power amplifier.", "attributes": ["wall mounted", "power amplifier", "high resolution"], "options": ["size: 180w x 5", "style: class d"], "instruction_attributes": ["power amplifier"], "instruction_options": ["180w x 5"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40WCRC7", "worker_id": "A9QRQL9CFJBI7"}], "B09L1MPCY9": [{"asin": "B09L1MPCY9", "instruction": "i would like to buy a machine washable quick drying butt lifting tummy controlling women legging in ywhite color and small size made from quality polyester .", "attributes": ["moisture wicking", "butt lifting", "quick drying", "machine wash", "quality polyester", "polyester cotton", "tummy control", "elastic waist"], "options": ["color: ywhite", "size: small"], "instruction_attributes": ["butt lifting", "quick drying", "machine wash", "quality polyester", "tummy control"], "instruction_options": ["ywhite", "small"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOIQF0R", "worker_id": "A3AYHESLQSDY5T"}], "B01LWUENY1": [{"asin": "B01LWUENY1", "instruction": "i need a 10' round area rug for my living room. it should be ivory colored.", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: red | ivory", "size: 10' round"], "instruction_attributes": ["living room"], "instruction_options": ["red | ivory", "10' round"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IBMCBU", "worker_id": "A1NF6PELRKACS9"}], "B00DQJYL2K": [{"asin": "B00DQJYL2K", "instruction": "liquid water identifier strawberry watermelon flavor and natural flavor", "attributes": ["sugar free", "natural flavors", "zero sugar"], "options": ["flavor name: sugar-free cherry blackberry"], "instruction_attributes": ["natural flavors"], "instruction_options": [], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUTD61FW", "worker_id": "A3TTGSUBIK1YCL"}, {"asin": "B00DQJYL2K", "instruction": "i am looking a natural flavor sugar free straberry kiwi water enhancer", "attributes": ["sugar free", "natural flavors", "zero sugar"], "options": ["flavor name: sugar-free strawberry kiwi"], "instruction_attributes": ["sugar free", "natural flavors"], "instruction_options": ["sugar-free strawberry kiwi"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9L2B0B", "worker_id": "A3N9ZYQAESNFQH"}], "B081J2PSXK": [{"asin": "B081J2PSXK", "instruction": "i am looking for a dome cameras of 1080p hd", "attributes": ["1080p hd", "easy install", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd"], "instruction_options": [], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1B89U9", "worker_id": "A9QRQL9CFJBI7"}], "B00FDM5NAM": [{"asin": "B00FDM5NAM", "instruction": "i am looking for a real fruit juice of cranberry cocktail juice drink flavor", "attributes": ["real fruit", "artificial flavors"], "options": ["flavor name: cranberry cocktail juice drink"], "instruction_attributes": ["real fruit"], "instruction_options": ["cranberry cocktail juice drink"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFCBVLU", "worker_id": "A9QRQL9CFJBI7"}], "B06XV4LYZC": [{"asin": "B06XV4LYZC", "instruction": "i need a janet color low rise women's jeans with quality material in size 7-36", "attributes": ["low rise", "quality materials"], "options": ["color: janet", "size: 7-36"], "instruction_attributes": ["low rise", "quality materials"], "instruction_options": ["janet", "7-36"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO4Q2CX", "worker_id": "ASWFLI3N8X72G"}], "B07JJDXFJL": [{"asin": "B07JJDXFJL", "instruction": "i am looking for home decor products for living room in a ivory /aqua color", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: ivory | aqua", "item shape: runner", "size: 9 ft x 9 ft"], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPXIPJA", "worker_id": "A16M39T60N60NO"}], "B09Q25X4NJ": [{"asin": "B09Q25X4NJ", "instruction": "i would like a pair of size 7 black oxfords with a anti slip rubber sole.", "attributes": ["anti slip", "ankle strap", "rubber sole"], "options": ["color: black-2", "size: 7"], "instruction_attributes": ["anti slip", "rubber sole"], "instruction_options": ["black-2", "7"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IXCHK4", "worker_id": "A1WS884SI0SLO4"}], "B008BZSXEG": [{"asin": "B008BZSXEG", "instruction": "i am looking for low fat pasta options", "attributes": ["fat free", "low fat"], "options": [""], "instruction_attributes": ["low fat"], "instruction_options": [], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDI12OM", "worker_id": "ASWFLI3N8X72G"}], "B07ZK5QW3P": [{"asin": "B07ZK5QW3P", "instruction": "i'm looking for a machine washable window curtains for living room. also choose 52\"w by 90\"l and lace4lbg0839 designed one.", "attributes": ["machine washable", "living room"], "options": ["color: lace4lbg0839", "size: 52\" w by 90\" l"], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["lace4lbg0839", "52\" w by 90\" l"], "assignment_id": "37TRT2X24116R7L1JO45INKV8UGJBY", "worker_id": "AR0VJ5XRG16UJ"}], "B0794T7QHW": [{"asin": "B0794T7QHW", "instruction": "i need a king sized, white coloured contemporary style wooden frame bed with memory foam.", "attributes": ["contemporary style", "memory foam", "wood frame", "box spring"], "options": ["color: white", "size: king"], "instruction_attributes": ["contemporary style", "memory foam", "wood frame"], "instruction_options": ["white", "king"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LH3PS0", "worker_id": "ASWFLI3N8X72G"}], "B097MRL84T": [{"asin": "B097MRL84T", "instruction": "i'm looking for living room furniture and kitchen furniture and need to buy it.", "attributes": ["assembly required", "wood frame", "solid wood", "living room"], "options": ["color: grey", "size: 2 seats"], "instruction_attributes": ["wood frame", "living room"], "instruction_options": ["grey"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMXK2GB", "worker_id": "A16IQOX0DK14OJ"}], "B00T3IQUDG": [{"asin": "B00T3IQUDG", "instruction": "i am looking for a pair of long lasting men's size 10 steel toe work boots.", "attributes": ["long lasting", "slip resistant", "steel toe", "rubber sole"], "options": ["color: black | black", "size: 10 wide"], "instruction_attributes": ["long lasting", "steel toe"], "instruction_options": ["10 wide"], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY2M7PP", "worker_id": "A1EREKSZAA9V7B"}], "B07PYQN77F": [{"asin": "B07PYQN77F", "instruction": "i'm looking for a 24 pcs arrow cupcake topper .", "attributes": ["hand crafted", "birthday cake", "baby shower", "birthday party"], "options": ["color: gold"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IRU23G", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09QLL279P": [{"asin": "B09QLL279P", "instruction": "i am looking for chocolate covered wafers for valentine day.", "attributes": ["chocolate covered", "valentine day"], "options": [""], "instruction_attributes": ["chocolate covered", "valentine day"], "instruction_options": [], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0Z44W6", "worker_id": "A3FG5PQHG5AH3Y"}], "B08KW5D1HG": [{"asin": "B08KW5D1HG", "instruction": "i am looking for a large sized makeup case that is easy to clean.", "attributes": ["high quality", "easy clean"], "options": ["color: rolling backpack", "size: large"], "instruction_attributes": ["easy clean"], "instruction_options": ["large"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIN7586", "worker_id": "A1NF6PELRKACS9"}], "B019EGM90O": [{"asin": "B019EGM90O", "instruction": "get me 6 bars of gluten free low sodium 0g trans in flavor of dark chocolate nuts & sea salt.", "attributes": ["low sodium", "gluten free", "0g trans"], "options": ["flavor name: dark chocolate nuts & sea salt", "size: 6 bars"], "instruction_attributes": ["low sodium", "gluten free", "0g trans"], "instruction_options": ["dark chocolate nuts & sea salt", "6 bars"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMKAVX3", "worker_id": "A3AYHESLQSDY5T"}, {"asin": "B019EGM90O", "instruction": "i would like 60 milk chocolate peanut butter bars that are low sodium.", "attributes": ["low sodium", "gluten free", "0g trans"], "options": ["flavor name: milk chocolate peanut butter", "size: 60 count (pack of 1)"], "instruction_attributes": ["low sodium"], "instruction_options": ["milk chocolate peanut butter", "60 count (pack of 1)"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GM5S3N", "worker_id": "A1WS884SI0SLO4"}], "B089HY61CM": [{"asin": "B089HY61CM", "instruction": "i am looking for a low soda cream soda flavor chocolate drink mixes", "attributes": ["lactose free", "low sugar", "shelf stable", "bpa free", "non gmo", "natural flavors", "artificial colors"], "options": ["flavor name: cream soda"], "instruction_attributes": ["low sugar"], "instruction_options": ["cream soda"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOFV1WR", "worker_id": "A9QRQL9CFJBI7"}], "B09SB86W2G": [{"asin": "B09SB86W2G", "instruction": "i am looking for a professional make up brush with easy use. also choose color b.", "attributes": ["easy use", "hair removal"], "options": ["color: b"], "instruction_attributes": ["easy use"], "instruction_options": ["b"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMZE3WQ", "worker_id": "A2HMEGTAFO0CS8"}], "B003YFLT0S": [{"asin": "B003YFLT0S", "instruction": "i am searching for heavy duty complete tripods.", "attributes": ["heavy duty", "quick release"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4IT51G", "worker_id": "A9ZM1P6LBW79"}], "B09NR6SYTV": [{"asin": "B09NR6SYTV", "instruction": "i'm looking for a wireless bluetooth speaker, preferable blue color.", "attributes": ["plug play", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU27AL5", "worker_id": "ARQ05PDNXPFDI"}], "B09CKVPQZF": [{"asin": "B09CKVPQZF", "instruction": "i need some easy to install 76 inch blinds for my living room. look for them in light grey.", "attributes": ["easy install", "living room"], "options": ["color: light grey", "size: 15 3 | 4\"w x 76\"h"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["light grey", "15 3 | 4\"w x 76\"h"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFVZ3E0", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09CKVPQZF", "instruction": "shop for some easy install living room shades. get the fifty two inch ones with top brackets.", "attributes": ["easy install", "living room"], "options": ["color: top brackets", "size: 64 1 | 4\"w x 52\"h"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["top brackets", "64 1 | 4\"w x 52\"h"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9V6X5U", "worker_id": "AR9AU5FY1S3RO"}], "B09MK2BWKX": [{"asin": "B09MK2BWKX", "instruction": "i need noise cancelling headphones for my daily running routine.", "attributes": ["noise cancelling", "fast charging"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRYQJXV", "worker_id": "A1NF6PELRKACS9"}], "B08FSSZXV9": [{"asin": "B08FSSZXV9", "instruction": "i want a gray colored lightweight throw for the living room. i would prefer it to be double sided.", "attributes": ["machine washable", "double sided", "living room"], "options": ["color: grey", "size: 59'' x 79''"], "instruction_attributes": ["double sided", "living room"], "instruction_options": ["grey"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227HB8FI", "worker_id": "AHXHM1PQTRWIQ"}], "B09PKTZ1JR": [{"asin": "B09PKTZ1JR", "instruction": "i want to buy a shoe cabinet for my living room which is in pink color.", "attributes": ["space saving", "storage space", "living room"], "options": ["color: pink 3", "size: 23x14x70inch"], "instruction_attributes": ["living room"], "instruction_options": ["pink 3"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z4A4QCZ", "worker_id": "AHXHM1PQTRWIQ"}], "B097K5Q32R": [{"asin": "B097K5Q32R", "instruction": "i'm looking for plug play electronics for computer components and need to buy it.", "attributes": ["high performance", "plug play"], "options": ["pattern name: 3600 mhz", "size: 16 gb", "style: single module"], "instruction_attributes": ["high performance", "plug play"], "instruction_options": ["3600 mhz"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCK7IP9", "worker_id": "A16IQOX0DK14OJ"}], "B09J29BV3V": [{"asin": "B09J29BV3V", "instruction": "i am looking for a foldable tatami mattress to reduce on my storage space. the best size would be 90x200 cm (35.4*78.7 in).", "attributes": ["exquisite workmanship", "storage space"], "options": ["color: c", "size: 90x200 cm (35.4*78.7 in)"], "instruction_attributes": ["storage space"], "instruction_options": ["90x200 cm (35.4*78.7 in)"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKRKV7X", "worker_id": "A39VVWV1GHLMFD"}], "B097R6WTWX": [{"asin": "B097R6WTWX", "instruction": "i looking wooden frame mid century sofa couch for leaving room colour :blue", "attributes": ["mid century", "high density", "metal legs", "wood frame", "living room"], "options": ["color: navy", "size: type-2"], "instruction_attributes": ["mid century", "wood frame", "living room"], "instruction_options": ["navy"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH1Z6HT", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B097R6WTWX", "instruction": "i would like a beige type 4 sofa for my living room.", "attributes": ["mid century", "high density", "metal legs", "wood frame", "living room"], "options": ["color: beige", "size: type-4"], "instruction_attributes": ["living room"], "instruction_options": ["beige", "type-4"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS3OG9B", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B097R6WTWX", "instruction": "i need grey color wood frame", "attributes": ["mid century", "high density", "metal legs", "wood frame", "living room"], "options": ["color: grey", "size: type-1"], "instruction_attributes": ["wood frame"], "instruction_options": ["grey"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCVO46E", "worker_id": "A226L9F2AZ38CL"}], "B08V96ZSKJ": [{"asin": "B08V96ZSKJ", "instruction": "i'm looking for cell phone accessories the color was red brushed tpu. it was need to buy.", "attributes": ["non slip", "carbon fiber"], "options": ["color: red brushed tpu"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["red brushed tpu"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFMEMEX", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08V96ZSKJ", "instruction": "i would like a blue brush tpu case that is non slip.", "attributes": ["non slip", "carbon fiber"], "options": ["color: blue brushed tpu"], "instruction_attributes": ["non slip"], "instruction_options": ["blue brushed tpu"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRWEY2F", "worker_id": "A1WS884SI0SLO4"}], "B09NQ4LHV7": [{"asin": "B09NQ4LHV7", "instruction": "find me a pair of non slip sneakers with rubber soles. i am a woman of size 13.", "attributes": ["non slip", "rubber outsole", "rubber sole"], "options": ["color: white black sunflower b", "size: 13 women | 11 men"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["13 women | 11 men"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH3RQHS", "worker_id": "A1NF6PELRKACS9"}], "B01MT7DMLK": [{"asin": "B01MT7DMLK", "instruction": "i'm looking for pendant lights for hanging through the wall that color was chrome finish.", "attributes": ["bronze finish", "pendant light"], "options": ["color: chrome finish", "size: one light", "style: pendant"], "instruction_attributes": ["bronze finish", "pendant light"], "instruction_options": ["chrome finish"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E67XHP", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B01MT7DMLK", "instruction": "i need a pendant light wall fixture for my bathroom. it should have a bronze finish.", "attributes": ["bronze finish", "pendant light"], "options": ["color: chrome finish", "size: one - light", "style: wall bath fixture"], "instruction_attributes": ["bronze finish", "pendant light"], "instruction_options": ["wall bath fixture"], "assignment_id": "3X08E93BH6SOX0PZ3ET8Y3TY8NR660", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B01MT7DMLK", "instruction": "where can i find this product? seagull lighting 65625-782 wheaton transitional a pendant light hanging light fixture modern, bronze finish", "attributes": ["bronze finish", "pendant light"], "options": ["color: brushed nickel finish", "size: one - light", "style: wall bath fixture"], "instruction_attributes": ["bronze finish"], "instruction_options": ["one - light"], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUJFVZ5", "worker_id": "A15IJ20C3R4HUO"}], "B09J35VQXQ": [{"asin": "B09J35VQXQ", "instruction": "i'm looking for natural jar candles with grapefruit and mangosteen scents and which are made with 100% soy wax.", "attributes": ["lead free", "soy wax"], "options": ["scent: grapefruit & mangosteen", "size: natural"], "instruction_attributes": ["soy wax"], "instruction_options": ["grapefruit & mangosteen", "natural"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO5D2CM", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B09J35VQXQ", "instruction": "i'm looking for a lead free jar candles made of soy wax. also choose natural, coconut milk and mango scented one", "attributes": ["lead free", "soy wax"], "options": ["scent: coconut milk and mango", "size: natural"], "instruction_attributes": ["lead free", "soy wax"], "instruction_options": ["coconut milk and mango", "natural"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFIM021", "worker_id": "AR0VJ5XRG16UJ"}], "B0982XLQVB": [{"asin": "B0982XLQVB", "instruction": "i am looking for a blue coated steel backyard furniture set.", "attributes": ["high density", "coated steel", "storage space"], "options": ["color: blue"], "instruction_attributes": ["coated steel"], "instruction_options": ["blue"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOXOO7N", "worker_id": "A1EREKSZAA9V7B"}], "B09NYD8KN9": [{"asin": "B09NYD8KN9", "instruction": "i need fluoride free 2 pcs purple toothpaste which is good for sensitive teeth and teeth whitening.", "attributes": ["fluoride free", "teeth whitening", "long lasting", "natural ingredients", "sensitive teeth"], "options": ["color: purple 2pcs"], "instruction_attributes": ["fluoride free", "teeth whitening", "sensitive teeth"], "instruction_options": ["purple 2pcs"], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UHPOKU", "worker_id": "ASWFLI3N8X72G"}, {"asin": "B09NYD8KN9", "instruction": "i want a purple and orange toothpaste that is fluoride free and whitens teeth.", "attributes": ["fluoride free", "teeth whitening", "long lasting", "natural ingredients", "sensitive teeth"], "options": ["color: purple+orange"], "instruction_attributes": ["fluoride free", "teeth whitening"], "instruction_options": ["purple+orange"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBPAAAOQ", "worker_id": "A1WS884SI0SLO4"}], "B08F9VJ7FV": [{"asin": "B08F9VJ7FV", "instruction": "i'm looking for a black guitar cable with usb port and it should be 10ft long.", "attributes": ["gold plated", "plug play", "usb port"], "options": ["color: black"], "instruction_attributes": ["usb port"], "instruction_options": ["black"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MICCRB2", "worker_id": "A1Q0EUNCS50S8M"}], "B00IWVEJUG": [{"asin": "B00IWVEJUG", "instruction": "i am looking for eco friendly scented candles", "attributes": ["eco friendly", "soy wax"], "options": [""], "instruction_attributes": ["eco friendly"], "instruction_options": [], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3SYZMR", "worker_id": "A16M39T60N60NO"}], "B08P7YXY4C": [{"asin": "B08P7YXY4C", "instruction": "i need a quad core hd streaming player with enhanced voice remote", "attributes": ["dual band", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEJT8QL", "worker_id": "A258PTOZ3D2TQR"}], "B07N98D4C6": [{"asin": "B07N98D4C6", "instruction": "i would like a fluoride free toothpaste.", "attributes": ["certified organic", "fluoride free"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFTS0TI", "worker_id": "A1WS884SI0SLO4"}], "B07MMTQYGL": [{"asin": "B07MMTQYGL", "instruction": "i am looking for a color: blue zebra water resistant , wireless bluetooth for portable bluetooth speakers", "attributes": ["water resistant", "wireless bluetooth"], "options": ["color: blue zebra"], "instruction_attributes": ["water resistant", "wireless bluetooth"], "instruction_options": ["blue zebra"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XSIGNN", "worker_id": "A9QRQL9CFJBI7"}], "B08PJHS91C": [{"asin": "B08PJHS91C", "instruction": "i am looking for some grass fed and grain free bread and muffin mix.", "attributes": ["grain free", "grass fed"], "options": ["style: grain free bread"], "instruction_attributes": ["grain free", "grass fed"], "instruction_options": ["grain free bread"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P75AVSX", "worker_id": "A1NF6PELRKACS9"}], "B08DG8ZHDT": [{"asin": "B08DG8ZHDT", "instruction": "i'm looking for electronics accessories that aluminum alloy tripod. need to buy it.", "attributes": ["quick release", "aluminum alloy"], "options": [""], "instruction_attributes": ["aluminum alloy"], "instruction_options": [], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBA9U6S", "worker_id": "A16IQOX0DK14OJ"}], "B09M3LBGVG": [{"asin": "B09M3LBGVG", "instruction": "i am looking for a grey wireless charging earbud headphones with stereo sound", "attributes": ["fast charging", "hands free", "wireless charging", "stereo sound"], "options": ["color: grey"], "instruction_attributes": ["wireless charging", "stereo sound"], "instruction_options": [], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A21ATHT0", "worker_id": "A9QRQL9CFJBI7"}], "B09MJXZ9PQ": [{"asin": "B09MJXZ9PQ", "instruction": "i'm looking for a classic styling salon chair, hydraulic barber chair with wider seat & heavy duty hydraulic pump, also it should have beauty salon spa shampoo equipment, choose the gold color.", "attributes": ["heavy duty", "easy clean", "high quality", "hair salon", "beauty salon"], "options": ["color: black+silver 1"], "instruction_attributes": ["heavy duty", "easy clean", "high quality", "hair salon", "beauty salon"], "instruction_options": [], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A219GTHX", "worker_id": "A3D6VE1HYFEP9Z"}], "B09H6S736V": [{"asin": "B09H6S736V", "instruction": "i'm looking for a storage unit which is easy to clean for a living room.", "attributes": ["easy clean", "storage unit", "living room"], "options": [""], "instruction_attributes": ["easy clean", "storage unit", "living room"], "instruction_options": [], "assignment_id": "31EUONYN26DZ1WA44INARVVOAGCVO5", "worker_id": "AR0VJ5XRG16UJ"}], "B01MQS07BG": [{"asin": "B01MQS07BG", "instruction": "i'm looking for the pant have straight leg and the drawstring waist.", "attributes": ["straight leg", "moisture wicking", "drawstring waist"], "options": ["color: wisteria", "size: 3x-large plus"], "instruction_attributes": ["straight leg", "moisture wicking", "drawstring waist"], "instruction_options": ["wisteria"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQDCAJD", "worker_id": "A16IQOX0DK14OJ"}], "B09Q56WQGH": [{"asin": "B09Q56WQGH", "instruction": "i'm looking for highly pigmented makeup products it can use long lasting.", "attributes": ["long lasting", "highly pigmented"], "options": ["color: k", "size: i"], "instruction_attributes": ["long lasting", "highly pigmented"], "instruction_options": ["k"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZKHC7S", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09Q56WQGH", "instruction": "i am interested in purchasing a lip gloss set which is long lasting and comes in the size g.", "attributes": ["long lasting", "highly pigmented"], "options": ["color: a", "size: g"], "instruction_attributes": ["long lasting"], "instruction_options": ["g"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3G2AYM", "worker_id": "AHXHM1PQTRWIQ"}], "B08P59RBQ4": [{"asin": "B08P59RBQ4", "instruction": "looking for tooth powder for teeth whitening", "attributes": ["teeth whitening", "easy use", "bad breath"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS41VUN", "worker_id": "A10OGH5CQBXL5N"}], "B078YYVN2F": [{"asin": "B078YYVN2F", "instruction": "i am looking for large size regular fit polo.", "attributes": ["moisture wicking", "hand wash", "regular fit"], "options": ["color: blackout", "size: large"], "instruction_attributes": ["regular fit"], "instruction_options": ["large"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1VQH2E", "worker_id": "AJDQGOTMB2D80"}], "B09NFJWJYP": [{"asin": "B09NFJWJYP", "instruction": "i am looking a easy install smartwatch band compatible with apple color:midnight blue /cantaloupe size: 38mm/40mm/41mm", "attributes": ["compatible apple", "easy install"], "options": ["color: midnight blue | cantaloupe", "size: 38mm | 40mm | 41mm"], "instruction_attributes": ["compatible apple", "easy install"], "instruction_options": ["midnight blue | cantaloupe", "38mm | 40mm | 41mm"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8W6PZ8", "worker_id": "A3N9ZYQAESNFQH"}], "B09SV2GLZW": [{"asin": "B09SV2GLZW", "instruction": "i am looking for small sized and tummy control women workout legging.", "attributes": ["light weight", "elastic waistband", "drawstring closure", "tummy control"], "options": ["color: x03c-black", "size: small"], "instruction_attributes": ["tummy control"], "instruction_options": ["small"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q5SKD7", "worker_id": "A3FG5PQHG5AH3Y"}], "B0861DHT1J": [{"asin": "B0861DHT1J", "instruction": "i am looking for mlide men's summer quick dry fit performance short surf swim trunk drawstring with pockets. swim trunk featuring elasticized waistband with drawstring and contrast in green in xxl size.", "attributes": ["drawstring closure", "polyester spandex"], "options": ["color: green", "size: xx-large"], "instruction_attributes": ["drawstring closure", "polyester spandex"], "instruction_options": ["green", "xx-large"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQYA0776", "worker_id": "A1DRKZ3SCLAS4V"}], "B01FA1BMSW": [{"asin": "B01FA1BMSW", "instruction": "i am looking for texas style flank steak beef jerky that has a resealable bag.", "attributes": ["high protein", "resealable bag"], "options": ["flavor name: texas style flank steak", "size: 10 ounce (pack of 1)"], "instruction_attributes": ["resealable bag"], "instruction_options": ["texas style flank steak"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSV2GL1", "worker_id": "A1EREKSZAA9V7B"}], "B09PLB5JYK": [{"asin": "B09PLB5JYK", "instruction": "i am looking for a blue loose fit sleep bottoms for men", "attributes": ["loose fit", "straight leg", "moisture wicking", "slim fit", "short sleeve", "elastic waist", "stretch fabric", "classic fit", "long sleeve", "daily wear"], "options": ["color: blue", "size: 3x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["blue"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39ENZC2", "worker_id": "A9QRQL9CFJBI7"}], "B07CZC9Z3S": [{"asin": "B07CZC9Z3S", "instruction": "i'm looking for a pack of 3 cheese crisps with 10 ounce need to be gluten and lactose free, savory seed flavor", "attributes": ["keto friendly", "gluten free", "high protein", "low carb", "lactose free", "natural ingredients"], "options": ["flavor name: savory seed", "size: 10 ounce (pack of 3)"], "instruction_attributes": ["gluten free", "lactose free"], "instruction_options": ["savory seed", "10 ounce (pack of 3)"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU2MALK", "worker_id": "A2Y2TURT2VEYZN"}], "B076C8KB1Z": [{"asin": "B076C8KB1Z", "instruction": "i am looking for a blue stripe classic fit dress shirts", "attributes": ["machine wash", "classic fit", "relaxed fit", "long sleeve"], "options": ["color: blue stripe", "size: 15.5\" neck 34\" sleeve"], "instruction_attributes": ["classic fit"], "instruction_options": ["blue stripe"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAUB19CZ", "worker_id": "A9QRQL9CFJBI7"}], "B081R4NL12": [{"asin": "B081R4NL12", "instruction": "i am looking for women\u2019s long pajama sleep pants with elastic waistband and small in size.", "attributes": ["elastic waistband", "relaxed fit"], "options": ["color: dusty jade green - my resolutions", "size: small"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["small"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI3B1DBY", "worker_id": "AHU9OLV0YKIIW"}], "B08WJFNJ29": [{"asin": "B08WJFNJ29", "instruction": "i'm looking for a plant based healthy snacks which is gmo free and gluten free. also, choose a pack of 2 with coconut cashew pineapple mix and banana flavored one.", "attributes": ["gmo free", "plant based", "gluten free"], "options": ["flavor name: coconut cashew pineapple mix and banana", "size: 2 pack"], "instruction_attributes": ["gmo free", "plant based", "gluten free"], "instruction_options": ["coconut cashew pineapple mix and banana", "2 pack"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH0T6HL", "worker_id": "AR0VJ5XRG16UJ"}], "B07D6RZQD3": [{"asin": "B07D6RZQD3", "instruction": "i am looking for a women's xx-large oatmeal | navy iowa state cyclones relaxed fit , fleece lined asym redux hoodie made by ouray sportswear.", "attributes": ["fleece lined", "button closure", "relaxed fit"], "options": ["color: oatmeal | navy", "size: xx-large", "team name: iowa state cyclones"], "instruction_attributes": ["fleece lined", "relaxed fit"], "instruction_options": ["oatmeal | navy", "xx-large", "iowa state cyclones"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPY0G03", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B07D6RZQD3", "instruction": "i would like a fleece lined extra large navy mississippi state bulldog sweatshirt.", "attributes": ["fleece lined", "button closure", "relaxed fit"], "options": ["color: navy heather", "size: x-large", "team name: mississippi state bulldogs"], "instruction_attributes": ["fleece lined"], "instruction_options": ["navy heather", "x-large", "mississippi state bulldogs"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83NQJI3", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07D6RZQD3", "instruction": "i am looking for relaxed fit small size hood.", "attributes": ["fleece lined", "button closure", "relaxed fit"], "options": ["color: charcoal heather", "size: small", "team name: navy midshipmen"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["small"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLW3DAW", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07D6RZQD3", "instruction": "i am looking for medium sized and relaxed fitted men hoddie.", "attributes": ["fleece lined", "button closure", "relaxed fit"], "options": ["color: premium heather | royal heather", "size: medium", "team name: purdue boilermakers"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["medium"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80DCQ18", "worker_id": "A3FG5PQHG5AH3Y"}], "B0963DN2YZ": [{"asin": "B0963DN2YZ", "instruction": "i am looking for queen size , super soft terracotta comforter set with 2 pillowcases and its color is 2-white chevron", "attributes": ["machine washable", "queen size", "super soft"], "options": ["color: 2-white chevron", "size: twin"], "instruction_attributes": ["queen size", "super soft"], "instruction_options": ["2-white chevron"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYCOEI1", "worker_id": "AX2EWYWZM19AZ"}], "B09JLG556W": [{"asin": "B09JLG556W", "instruction": "i am looking for a rechargeable and portable hair removal device which is easy to carry. also choose white color.", "attributes": ["easy carry", "hair removal"], "options": [""], "instruction_attributes": ["easy carry", "hair removal"], "instruction_options": [], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4C7RQ8", "worker_id": "A1V2JTEEBCXR20"}], "B076HN7HY7": [{"asin": "B076HN7HY7", "instruction": "i am looking a king size box spring bed with metal leg colour black", "attributes": ["metal legs", "box spring"], "options": ["color: black", "size: king"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXS1YLS", "worker_id": "A3N9ZYQAESNFQH"}], "B09LXMCTN9": [{"asin": "B09LXMCTN9", "instruction": "i am looking for deluxe faux leather, box spring, easy assemble , wood bed frame with led headboard and color is black and queen size", "attributes": ["assembly required", "easy assemble", "box spring", "faux leather", "king size", "memory foam", "wood frame"], "options": ["color: black", "size: queen"], "instruction_attributes": ["easy assemble", "box spring", "faux leather", "wood frame"], "instruction_options": ["black", "queen"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BODCONJ", "worker_id": "AX2EWYWZM19AZ"}], "B07ZHGYP5C": [{"asin": "B07ZHGYP5C", "instruction": "i want an easy to use cd player that has batteries included.", "attributes": ["batteries included", "easy use"], "options": [""], "instruction_attributes": ["batteries included", "easy use"], "instruction_options": [], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4Z60HH", "worker_id": "A1NF6PELRKACS9"}], "B093YS5HNS": [{"asin": "B093YS5HNS", "instruction": "i'm looking for clothing need to buy it .", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGXZTW3", "worker_id": "A16IQOX0DK14OJ"}], "B01CPVOVNS": [{"asin": "B01CPVOVNS", "instruction": "i'm looking for white finish for kitchen and it was assembly required.", "attributes": ["assembly required", "white finish"], "options": [""], "instruction_attributes": ["assembly required", "white finish"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLZTVAR", "worker_id": "A16IQOX0DK14OJ"}], "B09BCFFSGL": [{"asin": "B09BCFFSGL", "instruction": "i am looking for a queen size foam mattress that has 9 inch desnsity. please choose the black & white color", "attributes": ["queen size", "high density", "memory foam"], "options": ["color: black & white", "size: twin xl", "style: 9 inch"], "instruction_attributes": ["queen size", "memory foam"], "instruction_options": ["black & white", "9 inch"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WW4A11", "worker_id": "A2COCSUGZV28X"}], "B0915NK2BY": [{"asin": "B0915NK2BY", "instruction": "i am looking for women hair removal rechargeable razor. please select white color.", "attributes": ["long lasting", "easy use", "stainless steel", "hair removal"], "options": ["color: white"], "instruction_attributes": ["hair removal"], "instruction_options": ["white"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU4822SYPG", "worker_id": "A3FG5PQHG5AH3Y"}], "B08LR49S3W": [{"asin": "B08LR49S3W", "instruction": "i am lookin g for a nut free, gluten free cake toppers", "attributes": ["nut free", "gluten free"], "options": [""], "instruction_attributes": ["nut free", "gluten free"], "instruction_options": [], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G78674I", "worker_id": "A9QRQL9CFJBI7"}], "B07MJRWZD3": [{"asin": "B07MJRWZD3", "instruction": "i want to get a black twin size bed frame.", "attributes": ["twin size", "white item", "engineered wood", "box spring"], "options": ["color: black"], "instruction_attributes": ["twin size"], "instruction_options": ["black"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX5LFA3", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B07MJRWZD3", "instruction": "i am looking for a twin size bed that has storage. pick a cherry color.", "attributes": ["twin size", "white item", "engineered wood", "box spring"], "options": ["color: cherry"], "instruction_attributes": ["twin size"], "instruction_options": ["cherry"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMZU3W6", "worker_id": "A1NF6PELRKACS9"}], "B092S9J53G": [{"asin": "B092S9J53G", "instruction": "i'm looking for teeth whitening for oral care whitening kits.", "attributes": ["teeth whitening", "easy use"], "options": ["color: 1 tooth whitening trays"], "instruction_attributes": ["teeth whitening", "easy use"], "instruction_options": ["1 tooth whitening trays"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR02518AK6", "worker_id": "A16IQOX0DK14OJ"}], "B08J846WMR": [{"asin": "B08J846WMR", "instruction": "i am looking for a faux leather storage ottoman.", "attributes": ["high density", "faux leather"], "options": [""], "instruction_attributes": ["faux leather"], "instruction_options": [], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CYP3B3", "worker_id": "A9ZM1P6LBW79"}], "B081PKZTY6": [{"asin": "B081PKZTY6", "instruction": "i'm looking for rubber sole hiking shoe and it was grey steel in clor.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: ti grey steel | koi", "size: 13"], "instruction_attributes": ["rubber outsole", "rubber sole"], "instruction_options": ["ti grey steel | koi"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSJY62U", "worker_id": "A16IQOX0DK14OJ"}], "B09JJ9SF5C": [{"asin": "B09JJ9SF5C", "instruction": "i'm looking for short sleeve clothing it makes feel comfortable.", "attributes": ["long sleeve", "short sleeve"], "options": ["color: christmas pjs - 26 - red", "size: 6-12 months", "special size type: kid"], "instruction_attributes": ["short sleeve"], "instruction_options": ["christmas pjs - 26 - red", "6-12 months"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NJFBKO", "worker_id": "A16IQOX0DK14OJ"}], "B09QPZS86G": [{"asin": "B09QPZS86G", "instruction": "i'm looking for clothing for water resistant and fleece lined.", "attributes": ["straight leg", "loose fit", "water resistant", "fleece lined", "quality polyester", "gym workout"], "options": ["color: clear", "size: medium"], "instruction_attributes": ["straight leg", "water resistant", "fleece lined"], "instruction_options": ["clear"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4CCRQD", "worker_id": "A16IQOX0DK14OJ"}], "B08YFKCG9Q": [{"asin": "B08YFKCG9Q", "instruction": "i'm looking for a tea tree oil shampoo.", "attributes": ["sulfate free", "tea tree", "natural hair", "hair treatment", "damaged hair", "hair growth"], "options": [""], "instruction_attributes": ["tea tree"], "instruction_options": [], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AM9OEU", "worker_id": "ARQ05PDNXPFDI"}], "B083JZFDD3": [{"asin": "B083JZFDD3", "instruction": "i want easy to install blackout curtains for my living room. i need it in tribeca indigo color.", "attributes": ["machine washable", "easy install", "living room"], "options": ["color: tribeca indigo", "size: 2x42x45in"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["tribeca indigo"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUJLC3F", "worker_id": "A1NF6PELRKACS9"}], "B09BHZXV44": [{"asin": "B09BHZXV44", "instruction": "i am looking for wooden bed frame of gray color.", "attributes": ["twin size", "space saving", "wood frame", "box spring", "solid wood", "storage space"], "options": ["color: gray-3"], "instruction_attributes": ["wood frame"], "instruction_options": ["gray-3"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH379WSEB", "worker_id": "A3FG5PQHG5AH3Y"}], "B09S131KBS": [{"asin": "B09S131KBS", "instruction": "i am looking for a g_pink short sleeves shirts for man", "attributes": ["machine wash", "short sleeve", "button closure", "long sleeve"], "options": ["color: g_pink", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["g_pink"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N22H6GR", "worker_id": "A9QRQL9CFJBI7"}], "B0743WP62Q": [{"asin": "B0743WP62Q", "instruction": "i am looking for a nv4108e-hs size of motion detection surveillance video recorders", "attributes": ["plug play", "motion detection"], "options": ["size: nv4108e-hs"], "instruction_attributes": ["motion detection"], "instruction_options": ["nv4108e-hs"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TNJ3N8", "worker_id": "A9QRQL9CFJBI7"}], "B0922DVVD9": [{"asin": "B0922DVVD9", "instruction": "i'm looking for natural ingredients for tattoo cleansing product.", "attributes": ["easy use", "natural ingredients"], "options": [""], "instruction_attributes": ["easy use", "natural ingredients"], "instruction_options": [], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UP4ZEX", "worker_id": "A16IQOX0DK14OJ"}], "B09QXJ2TP5": [{"asin": "B09QXJ2TP5", "instruction": "i'm looking for hair growth and solutions for damaged hair for hair extenisons.", "attributes": ["natural ingredients", "hair growth", "hair loss", "damaged hair"], "options": ["size: 5 pcs"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB149UL9", "worker_id": "A16IQOX0DK14OJ"}], "B07Z37GJCD": [{"asin": "B07Z37GJCD", "instruction": "i am looking for a halloween jacko lantern gift basket with handles to put candy chocolates.", "attributes": ["valentine day", "great gift", "gift basket"], "options": ["style: halloween jackolantern"], "instruction_attributes": ["gift basket"], "instruction_options": ["halloween jackolantern"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH2OH6V", "worker_id": "AHU9OLV0YKIIW"}], "B08KGFBJDF": [{"asin": "B08KGFBJDF", "instruction": "i am looking high quality long lasting travel size parfum prada luna rossa impression", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: prada luna rossa impression"], "instruction_attributes": ["travel size", "long lasting", "high quality"], "instruction_options": ["prada luna rossa impression"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y7WIVG", "worker_id": "A3N9ZYQAESNFQH"}], "B09RQQ3BBS": [{"asin": "B09RQQ3BBS", "instruction": "i want a thin and light weight men's boxers that is black in color.", "attributes": ["light weight", "hand wash", "fashion design"], "options": ["color: a black", "size: large"], "instruction_attributes": ["light weight"], "instruction_options": ["a black"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYOVN7L", "worker_id": "A1NF6PELRKACS9"}], "B07J4RH99Y": [{"asin": "B07J4RH99Y", "instruction": "i'm looking for a toothpaste vegan with coconut oil", "attributes": ["fluoride free", "paraben free", "cruelty free", "tea tree", "coconut oil", "bad breath"], "options": [""], "instruction_attributes": ["coconut oil"], "instruction_options": [], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW8QS88", "worker_id": "A2Y2TURT2VEYZN"}], "B07JCS7ZJ4": [{"asin": "B07JCS7ZJ4", "instruction": "i am looking for a white usb cables with high performance", "attributes": ["gold plated", "high performance", "plug play", "high speed", "usb port"], "options": ["color: white", "size: 2ft"], "instruction_attributes": ["high performance"], "instruction_options": ["white"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5SM5FR", "worker_id": "A9QRQL9CFJBI7"}], "B08GKQ1JZ4": [{"asin": "B08GKQ1JZ4", "instruction": "i am looking for a hands free z-floral color flip cases", "attributes": ["hands free", "wireless charging"], "options": ["color: z-floral"], "instruction_attributes": ["hands free"], "instruction_options": ["z-floral"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBFGGHJ", "worker_id": "A9QRQL9CFJBI7"}], "B08WWRCK83": [{"asin": "B08WWRCK83", "instruction": "i am looking for a double locker outlet wall plate cover and should be of a high gloss.", "attributes": ["heavy duty", "high gloss"], "options": ["style: double rocker | gfci"], "instruction_attributes": ["high gloss"], "instruction_options": ["double rocker | gfci"], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIID00O", "worker_id": "AHU9OLV0YKIIW"}], "B078YFJXM3": [{"asin": "B078YFJXM3", "instruction": "i'm looking for long sleeve sweater dry cleaned caramel cafe colored because its easy to dry.", "attributes": ["hand wash", "long sleeve", "dry clean"], "options": ["color: caramel cafe", "size: small"], "instruction_attributes": ["long sleeve", "dry clean"], "instruction_options": ["caramel cafe"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPINA589", "worker_id": "A16IQOX0DK14OJ"}], "B00H7OVW2C": [{"asin": "B00H7OVW2C", "instruction": "i need a small intel desktop.", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["core i5", "intel core"], "instruction_options": [], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWCSFNV", "worker_id": "A19317A3X87NVM"}], "B08PDTPKZS": [{"asin": "B08PDTPKZS", "instruction": "i would like a 6 ounce package of non gmo basil pesto seasoned rice.", "attributes": ["high protein", "plant based", "dairy free", "non gmo", "low sugar", "gluten free", "nut free", "soy free"], "options": ["flavor name: basil pesto", "size: 6 ounce (pack of 3)"], "instruction_attributes": ["non gmo"], "instruction_options": ["basil pesto", "6 ounce (pack of 3)"], "assignment_id": "33TIN5LC0FKDY31374RC144TX0FY9U", "worker_id": "A1WS884SI0SLO4"}], "B09L7W3DSQ": [{"asin": "B09L7W3DSQ", "instruction": "i am looking for a super soft fleece throw & blankets of multicolor.", "attributes": ["super soft", "fleece throw"], "options": ["color: multicolor", "size: 60x80inch"], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["multicolor"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZIKKMN", "worker_id": "A9QRQL9CFJBI7"}], "B084MN7WRR": [{"asin": "B084MN7WRR", "instruction": "i am searching for a wall mounted floating shelf for my living room. it should be 24 inch size and natural color.", "attributes": ["wall mounted", "easy assemble", "storage space", "living room"], "options": ["color: natural", "size: 24 inch"], "instruction_attributes": ["wall mounted", "living room"], "instruction_options": ["24 inch"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1Y0QHEU", "worker_id": "A9ZM1P6LBW79"}], "B08JZGZXGC": [{"asin": "B08JZGZXGC", "instruction": "i am looking a coconut flavor gmo free chocolate", "attributes": ["gmo free", "artificial colors"], "options": ["flavor name: coconut", "size: 5.53 ounce (pack of 1)"], "instruction_attributes": [], "instruction_options": ["coconut"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPNLYSK", "worker_id": "A3N9ZYQAESNFQH"}], "B07T1N2R4W": [{"asin": "B07T1N2R4W", "instruction": "i am looking for bpa free tongue scrubber with cap.", "attributes": ["bpa free", "easy use", "bad breath"], "options": ["size: 1 count (pack of 1)", "style: with cap"], "instruction_attributes": ["bpa free"], "instruction_options": ["with cap"], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW6A6VV6", "worker_id": "A3FG5PQHG5AH3Y"}], "B00IYTQKOO": [{"asin": "B00IYTQKOO", "instruction": "i'm looking for gluten free it contains high protein need to buy a nut free.", "attributes": ["gluten free", "nut free", "non gmo"], "options": ["flavor: whole eggs", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["gluten free", "nut free"], "instruction_options": ["whole eggs"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4I08M2", "worker_id": "A16IQOX0DK14OJ"}], "B077VWRYX2": [{"asin": "B077VWRYX2", "instruction": "i am looking a small size regular fit machine wash active hoodies color :crew blue", "attributes": ["machine wash", "regular fit"], "options": ["color: crew blue", "size: small"], "instruction_attributes": ["machine wash", "regular fit"], "instruction_options": ["crew blue", "small"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVMCXLQ", "worker_id": "A3N9ZYQAESNFQH"}], "B07G8PHGTX": [{"asin": "B07G8PHGTX", "instruction": "i need a power cord cable for blu ray player sound bar", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLZ8VA6", "worker_id": "A258PTOZ3D2TQR"}], "B00004RDMR": [{"asin": "B00004RDMR", "instruction": "i'm looking for a nikon coolpix 990 3.34mp digital camera .", "attributes": ["optical zoom", "usb port"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB3H5YT", "worker_id": "A1ZGOZQF2VZ0X9"}], "B07669T46Z": [{"asin": "B07669T46Z", "instruction": "i'm looking for lumbar support for home office desk chairs.", "attributes": ["heavy duty", "lumbar support"], "options": ["color: bonded leather gray", "style: microfiber"], "instruction_attributes": ["heavy duty"], "instruction_options": ["bonded leather gray", "microfiber"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCJKIPK", "worker_id": "A16IQOX0DK14OJ"}], "B07RHRYHDM": [{"asin": "B07RHRYHDM", "instruction": "i am looking 5 no. rubber sole of trail running", "attributes": ["lace closure", "rubber sole"], "options": ["color: light aluminum | black | team carolina", "size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["5"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY78U0C", "worker_id": "A9QRQL9CFJBI7"}], "B09SHJKB1R": [{"asin": "B09SHJKB1R", "instruction": "i'm looking to buy a quick drying bathing suit in brown and medium size.", "attributes": ["quick drying", "quality polyester"], "options": ["color: brown", "size: medium"], "instruction_attributes": ["quick drying"], "instruction_options": ["brown", "medium"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8FKR5T", "worker_id": "A2YNPKYEFDZ6C9"}], "B09PN85JYS": [{"asin": "B09PN85JYS", "instruction": "i'm looking for home decor products it was in living room.", "attributes": ["ready use", "living room"], "options": ["color: pattern-2", "size: 83.8 x 63 inch(41.9 x 63 inch*2pes)"], "instruction_attributes": ["living room"], "instruction_options": ["pattern-2"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OWSEYF", "worker_id": "A16IQOX0DK14OJ"}], "B0744MQDVZ": [{"asin": "B0744MQDVZ", "instruction": "i am looking for high quality bathing accessories in white color", "attributes": ["high quality", "long handle", "dead skin"], "options": ["color: white"], "instruction_attributes": ["high quality"], "instruction_options": ["white"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IQ632R", "worker_id": "A2MSIFDLOHI1UT"}], "B092Z86J79": [{"asin": "B092Z86J79", "instruction": "i'm looking for wood framed wall art through the wall.", "attributes": ["ready hang", "wood frame", "solid wood"], "options": ["color: slh-4031", "size: 36\"wx48\"hx3pcs"], "instruction_attributes": ["ready hang", "wood frame"], "instruction_options": ["slh-4031"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2XV94V", "worker_id": "A16IQOX0DK14OJ"}], "B01EUZV5Z4": [{"asin": "B01EUZV5Z4", "instruction": "i am looking for a gluten free, plant based and non gmo classic chocolate & hazelnut spreads", "attributes": ["gluten free", "usda organic", "plant based", "non gmo", "dietary fiber"], "options": ["style: classic chocolate"], "instruction_attributes": ["gluten free", "plant based", "non gmo"], "instruction_options": ["classic chocolate"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIS584Z", "worker_id": "A9QRQL9CFJBI7"}], "B06WVC3FXV": [{"asin": "B06WVC3FXV", "instruction": "i'm looking for a nail treatment kit that is easy to use and certified cruelty free. also choose a pack of 2 which weighs 0.5 fl oz with bamboo & biotin 5 in 1 nail treatment kit.", "attributes": ["travel size", "cruelty free", "easy use"], "options": ["color: bamboo & biotin 5 in 1 nail treatment", "size: 0.5 fl oz (pack of 2)"], "instruction_attributes": ["cruelty free", "easy use"], "instruction_options": [], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZVSANO", "worker_id": "AR0VJ5XRG16UJ"}], "B08PP69X95": [{"asin": "B08PP69X95", "instruction": "i'm looking for clothing for unique design need to buy a lace pink color.", "attributes": ["slim fit", "quality polyester", "unique design"], "options": ["color: lace pink", "size: medium"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU9ECM5", "worker_id": "A16IQOX0DK14OJ"}], "B09QHFV7Q7": [{"asin": "B09QHFV7Q7", "instruction": "i would like a b002c30 rod pocket window panel that is machine washable.", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: b002c30", "size: rod pocket-w 42 l 84"], "instruction_attributes": ["machine washable"], "instruction_options": ["b002c30", "rod pocket-w 42 l 84"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7SD6WRZ", "worker_id": "A1WS884SI0SLO4"}], "B09NC669P3": [{"asin": "B09NC669P3", "instruction": "i want a white colored pair of sandals that has high heels with an ankle strap.", "attributes": ["open toe", "knee high", "high heel", "ankle strap", "closed toe"], "options": ["color: white", "size: 9"], "instruction_attributes": ["high heel", "ankle strap"], "instruction_options": ["white"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX9QFCR", "worker_id": "A1NF6PELRKACS9"}], "B09S5QZHVL": [{"asin": "B09S5QZHVL", "instruction": "i am looking for a starlight band compatible with apple watch size 38/40/421mm.", "attributes": ["compatible apple", "high definition"], "options": ["color: starlight", "size: 38 | 40 | 41mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["starlight", "38 | 40 | 41mm"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V42U24", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B09S5QZHVL", "instruction": "i'm looking for green color 44mm sized smart watch band compatible with apple watch", "attributes": ["compatible apple", "high definition"], "options": ["color: green", "size: 42 | 44 | 45mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["green"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9BVN88", "worker_id": "A258PTOZ3D2TQR"}], "B08443XV9W": [{"asin": "B08443XV9W", "instruction": "i am looking for sulfate free, paraben free , tea tree triple treat invigorating shampoo & conditioner set", "attributes": ["sulfate free", "cruelty free", "paraben free", "tea tree", "hair treatment"], "options": ["color: tea tree triple treat (tea tree botanicals)", "size: 24 fl oz (pack of 2)"], "instruction_attributes": ["sulfate free", "paraben free"], "instruction_options": ["tea tree triple treat (tea tree botanicals)"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KEIDPJ", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B08443XV9W", "instruction": "i'm looking for a giovanni tea tree shampoo and conditioner set that helps with dry scalp and hair treatment. i would like it in the 8.5 fl oz two pack, with the 505:50 ph balance with aloe and sunflower oil.", "attributes": ["sulfate free", "cruelty free", "paraben free", "tea tree", "hair treatment"], "options": ["color: 50:50 ph balance (aloe + sunflower oil)", "size: 8.5 fl oz (pack of 2)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVQKLXU", "worker_id": "AMI0SOF51O3FW"}], "B07W311PVT": [{"asin": "B07W311PVT", "instruction": "i'm looking for nickel finish for ceiling fan for home improvement.", "attributes": ["clear glass", "nickel finish", "light fixture"], "options": [""], "instruction_attributes": ["nickel finish"], "instruction_options": [], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYX663D", "worker_id": "A16IQOX0DK14OJ"}], "B08BDZQRWG": [{"asin": "B08BDZQRWG", "instruction": "i need a straight leg jeans that is original fit. it should be medium stonewash in color.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: medium stonewash", "size: 34w x 32l"], "instruction_attributes": ["straight leg"], "instruction_options": ["medium stonewash"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AKYTSJ", "worker_id": "A1NF6PELRKACS9"}], "B09PL6DG3V": [{"asin": "B09PL6DG3V", "instruction": "buy me a 4x-large sized long sleeved shirt made from soft material in g05#black color.", "attributes": ["long sleeve", "contrast color", "soft material"], "options": ["color: g05#black", "size: 4x-large"], "instruction_attributes": ["long sleeve", "soft material"], "instruction_options": ["g05#black", "4x-large"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E031X7D", "worker_id": "A3AYHESLQSDY5T"}], "B07KJXY6R1": [{"asin": "B07KJXY6R1", "instruction": "i am looking for a 16inch x 16inch x 3 panels of posters & prints for dining room", "attributes": ["ready hang", "dining room", "living room"], "options": ["color: calla lily", "size: 16inch x 16inch x 3 panels"], "instruction_attributes": ["dining room"], "instruction_options": ["16inch x 16inch x 3 panels"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QSGXO8", "worker_id": "A9QRQL9CFJBI7"}], "B01HJWDNKA": [{"asin": "B01HJWDNKA", "instruction": "i am looking high speed blu ray hdmi cable vedio cable 8 feet color:5 pack", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 5 pack", "size: 8 feet (3-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "blu ray"], "instruction_options": ["5 pack", "8 feet (3-pack)"], "assignment_id": "3EJPLAJKEXQQLA9A5JQJV1MTDRR6ZU", "worker_id": "A3N9ZYQAESNFQH"}], "B08TR8N884": [{"asin": "B08TR8N884", "instruction": "leak prrof free refillable plastic containers of 2 count pack of 1", "attributes": ["bpa free", "leak proof"], "options": ["size: 2 count (pack of 1)"], "instruction_attributes": ["leak proof"], "instruction_options": ["2 count (pack of 1)"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBENWZKF", "worker_id": "A10OGH5CQBXL5N"}], "B083S43TLD": [{"asin": "B083S43TLD", "instruction": "i'm looking for storage case for toothbrush travel containers and need to buy it.", "attributes": ["high quality", "storage case"], "options": [""], "instruction_attributes": ["high quality", "storage case"], "instruction_options": [], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUHU5SM", "worker_id": "A16IQOX0DK14OJ"}], "B003LZN6O8": [{"asin": "B003LZN6O8", "instruction": "i'm looking for black clothing out because it can easily machine wahsable.", "attributes": ["water resistant", "machine washable", "arch support", "rubber sole"], "options": ["color: black", "size: 9-10 narrow"], "instruction_attributes": ["machine washable"], "instruction_options": ["black"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TSNMPN", "worker_id": "A16IQOX0DK14OJ"}], "B08SVZFFPP": [{"asin": "B08SVZFFPP", "instruction": "i'm looking for usb port for computer accessories.", "attributes": ["high speed", "usb port"], "options": [""], "instruction_attributes": ["usb port"], "instruction_options": [], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYNMHDW", "worker_id": "A16IQOX0DK14OJ"}], "B09R1T4VWW": [{"asin": "B09R1T4VWW", "instruction": "i am looking for a c color toothpaste for teeth whitening and sensitive teeth", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: c"], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": ["c"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9FPRZZ", "worker_id": "A9QRQL9CFJBI7"}], "B0888NJ8QL": [{"asin": "B0888NJ8QL", "instruction": "i am looking for a gray color hdmi cables with high speed and blu ray", "attributes": ["high speed", "blu ray", "ultra hd", "gold plated"], "options": ["color: gray", "size: 3 feet"], "instruction_attributes": ["high speed", "blu ray"], "instruction_options": ["gray"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4IN156", "worker_id": "A9QRQL9CFJBI7"}], "B004D6044O": [{"asin": "B004D6044O", "instruction": "i'm looking for a vegetable snacks that is free from nuts and gluten. also, choose pack of 24 weighing 1 ounce with mixed (variety) flavored one.", "attributes": ["nut free", "non gmo", "gluten free", "0g trans"], "options": ["flavor name: variety pack", "size: 1 ounce (pack of 24)"], "instruction_attributes": ["nut free", "gluten free"], "instruction_options": ["variety pack", "1 ounce (pack of 24)"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53W8GKB", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B004D6044O", "instruction": "this simply 7 lentil chips product is delicious and also non-gmo, gluten-free and nut-free. i'm looking for a creamy dill flavor, 4 oz bag (pack of 12).", "attributes": ["nut free", "non gmo", "gluten free", "0g trans"], "options": ["flavor name: creamy dill", "size: 4 piece assortment"], "instruction_attributes": ["nut free", "non gmo", "gluten free"], "instruction_options": ["creamy dill"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZBWPA4", "worker_id": "A15IJ20C3R4HUO"}], "B09MZ7L3S3": [{"asin": "B09MZ7L3S3", "instruction": "i am looking for red color bath & body brushes for dry skin", "attributes": ["high quality", "dead skin", "dry skin"], "options": ["color: red"], "instruction_attributes": ["dry skin"], "instruction_options": ["red"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ARUWBD", "worker_id": "A9QRQL9CFJBI7"}], "B0746FSYRB": [{"asin": "B0746FSYRB", "instruction": "i would like a boom box with stereo sound.", "attributes": ["output protection", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP83NZ70", "worker_id": "A1WS884SI0SLO4"}], "B09Q93ZRQ6": [{"asin": "B09Q93ZRQ6", "instruction": "i need a pair of gray workout pants with a butt lift.", "attributes": ["butt lifting", "high waist", "tummy control", "gym workout"], "options": ["color: gray", "size: medium"], "instruction_attributes": ["butt lifting", "gym workout"], "instruction_options": ["gray"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163S9PQ0", "worker_id": "A19317A3X87NVM"}], "B09RFHRZJB": [{"asin": "B09RFHRZJB", "instruction": "i am looking green color wireless bluetooth speaker", "attributes": ["long lasting", "hands free", "high definition", "wireless bluetooth", "stereo sound"], "options": ["color: green"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["green"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LI9PS8", "worker_id": "A16M39T60N60NO"}], "B08F2QT47F": [{"asin": "B08F2QT47F", "instruction": "i am looking for a low sugar granola bar that is soy and diary free. pick the pack of 3 weighing 10 ounces.", "attributes": ["low sugar", "soy free", "dairy free", "non gmo"], "options": ["flavor name: cacao crisp", "size: 10 ounce (pack of 3)"], "instruction_attributes": ["low sugar", "soy free", "dairy free"], "instruction_options": ["10 ounce (pack of 3)"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN67T5GX", "worker_id": "A1NF6PELRKACS9"}], "B0982SCLBG": [{"asin": "B0982SCLBG", "instruction": "i'm looking for a couple of laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFGSMVC", "worker_id": "A19317A3X87NVM"}], "B09FL2CYP9": [{"asin": "B09FL2CYP9", "instruction": "i need a stainless steel nail dust collector machine for creating nail art.", "attributes": ["easy clean", "stainless steel", "nail art"], "options": [""], "instruction_attributes": ["stainless steel", "nail art"], "instruction_options": [], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD1CIRG", "worker_id": "A1NF6PELRKACS9"}], "B07QGFDMTM": [{"asin": "B07QGFDMTM", "instruction": "i am looking for a large size men's t-shirt for gym workout with classic fit. also choose purple in color.", "attributes": ["needle sleeve", "classic fit", "gym workout"], "options": ["color: purple", "fit type: men", "size: large"], "instruction_attributes": ["classic fit", "gym workout"], "instruction_options": ["purple", "men", "large"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYRTXFQ", "worker_id": "A2HMEGTAFO0CS8"}], "B01BF6UWTQ": [{"asin": "B01BF6UWTQ", "instruction": "i'm looking for anti aging beauty personal products that facial moisturizer skin.", "attributes": ["anti aging", "clinically proven", "fine lines"], "options": ["color: 10 ivory fair"], "instruction_attributes": ["anti aging"], "instruction_options": ["10 ivory fair"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM490E4X1", "worker_id": "A16IQOX0DK14OJ"}], "B09MBKD392": [{"asin": "B09MBKD392", "instruction": "please can i have one skinny pina colada which is sugar free and non gmo?", "attributes": ["sugar free", "non gmo"], "options": ["flavor: pina colada", "size: pack of 1"], "instruction_attributes": ["sugar free", "non gmo"], "instruction_options": ["pina colada", "pack of 1"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S10MGJ", "worker_id": "AHU9OLV0YKIIW"}], "B0009NZQRU": [{"asin": "B0009NZQRU", "instruction": "i'm looking for a bench style farmhouse in white color", "attributes": ["assembly required", "white finish"], "options": [""], "instruction_attributes": ["white finish"], "instruction_options": [], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB15PULR", "worker_id": "A2Y2TURT2VEYZN"}], "B07R8WZR55": [{"asin": "B07R8WZR55", "instruction": "certified organic 100% pure & natural sweet almond oil", "attributes": ["certified organic", "dark circles"], "options": ["scent: almond"], "instruction_attributes": ["certified organic"], "instruction_options": ["almond"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KU19J2", "worker_id": "A10OGH5CQBXL5N"}], "B09RJMTVP6": [{"asin": "B09RJMTVP6", "instruction": "i am looking for tempered glass for samsung galaxy s22 ultra.", "attributes": ["high definition", "glass screen", "tempered glass"], "options": ["color: s22 ultra"], "instruction_attributes": ["tempered glass"], "instruction_options": ["s22 ultra"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A219PHTU", "worker_id": "A3FG5PQHG5AH3Y"}], "B09FG2F7S7": [{"asin": "B09FG2F7S7", "instruction": "i would like a epilator for hair removal.", "attributes": ["hair removal", "permanent hair"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKL7D79", "worker_id": "A1WS884SI0SLO4"}], "B07X344YLM": [{"asin": "B07X344YLM", "instruction": "i'm looking for a foundation brush that i can use on very sensitive skin. i would also like it to be a coloured brush.", "attributes": ["easy carry", "easy clean", "sensitive skin"], "options": ["color: a"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["a"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0D316R", "worker_id": "A3EDFA8UQT5GG8"}], "B0068VW22E": [{"asin": "B0068VW22E", "instruction": "i'm looking for gluten free, fat free and sugar free natural strawberry jel dessert", "attributes": ["sugar free", "fat free", "keto friendly", "non gmo", "lactose free", "gluten free", "low fat", "artificial colors"], "options": [""], "instruction_attributes": ["sugar free", "fat free", "gluten free"], "instruction_options": [], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIGMVFM", "worker_id": "A258PTOZ3D2TQR"}], "B08MWSHXLX": [{"asin": "B08MWSHXLX", "instruction": "i want paraben free hair treatment hair mask for healthy hair size: 120ml+cs", "attributes": ["paraben free", "hair treatment"], "options": ["size: 120ml+cs+mask"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733N2EBS", "worker_id": "A3N9ZYQAESNFQH"}], "B09QVDMJN2": [{"asin": "B09QVDMJN2", "instruction": "i am looking for a non-slip sandals for my wife that is blue in color. and please choose the 5.5 size", "attributes": ["non slip", "leather sole"], "options": ["color: light blue", "size: 5.5"], "instruction_attributes": ["non slip"], "instruction_options": ["light blue", "5.5"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA931YZ3S", "worker_id": "A2COCSUGZV28X"}], "B076HZF1K2": [{"asin": "B076HZF1K2", "instruction": "i would like to buy a full sized box spring bed that has storage drawers.", "attributes": ["twin size", "contemporary design", "box spring"], "options": ["color: ivory velvet", "size: full", "style: bed"], "instruction_attributes": ["box spring"], "instruction_options": ["full", "bed"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOEV1WP", "worker_id": "AHXHM1PQTRWIQ"}, {"asin": "B076HZF1K2", "instruction": "i am searching for contemporary design, black linen king size tufted upholstered platform bed with storage drawers", "attributes": ["twin size", "contemporary design", "box spring"], "options": ["color: black linen", "size: king", "style: bed with storage drawers"], "instruction_attributes": ["contemporary design"], "instruction_options": ["black linen", "king"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC7HUKP", "worker_id": "A258PTOZ3D2TQR"}], "B09QM21BVR": [{"asin": "B09QM21BVR", "instruction": "i would like a medium sized with sleep set that i can hand wash.", "attributes": ["hand wash", "slim fit", "long sleeve", "dry clean"], "options": ["color: 001-white", "size: medium"], "instruction_attributes": ["hand wash"], "instruction_options": ["001-white", "medium"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67NT4N8", "worker_id": "A1WS884SI0SLO4"}], "B097DCP8Q1": [{"asin": "B097DCP8Q1", "instruction": "i am looking for double rod silver color professional hair cutting kit for men", "attributes": ["easy use", "hair cutting"], "options": ["color: double rod silver"], "instruction_attributes": ["hair cutting"], "instruction_options": ["double rod silver"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTORLPG", "worker_id": "A258PTOZ3D2TQR"}], "B09MT7PLFZ": [{"asin": "B09MT7PLFZ", "instruction": "i'm looking for clothing for elastic waisted it will use for machine wash need to buy it.", "attributes": ["wash cold", "hand wash", "machine wash", "elastic waistband", "dry clean"], "options": ["color: multi 7", "size: large"], "instruction_attributes": ["wash cold", "hand wash", "machine wash", "elastic waistband", "dry clean"], "instruction_options": ["multi 7"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDPFHR6", "worker_id": "A16IQOX0DK14OJ"}], "B08QGM82GC": [{"asin": "B08QGM82GC", "instruction": "i'm looking for bags for travel usage. it easy to carry .", "attributes": ["travel size", "high quality", "easy use", "fine mist"], "options": ["color: su.s-brown"], "instruction_attributes": ["travel size", "easy use"], "instruction_options": ["su.s-brown"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJN70W5", "worker_id": "A16IQOX0DK14OJ"}], "B08KDM37FK": [{"asin": "B08KDM37FK", "instruction": "i am looking for a pair of women's high heel stilettos in a size 7.", "attributes": ["high heel", "ankle strap", "rubber sole"], "options": ["color: light blue suede", "size: 7"], "instruction_attributes": ["high heel"], "instruction_options": ["7"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXL5Z2K", "worker_id": "A1EREKSZAA9V7B"}], "B08XW7K2BQ": [{"asin": "B08XW7K2BQ", "instruction": "i'm looking for apple watch brands it can easily install any.", "attributes": ["compatible apple", "easy install"], "options": ["color: b tie dye", "size: 42mm | 44mm | 45mm s | m"], "instruction_attributes": ["compatible apple", "easy install"], "instruction_options": ["b tie dye"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54R6384", "worker_id": "A16IQOX0DK14OJ"}], "B08FZT1XSC": [{"asin": "B08FZT1XSC", "instruction": "i'm looking for a keto friendly kassumay strawberry hibiscus sabddariffa spread.", "attributes": ["keto friendly", "non gmo"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3137ONMDKRFU787KL9LSMIY0J0HEGW", "worker_id": "A1Q0EUNCS50S8M"}], "B09QXH784K": [{"asin": "B09QXH784K", "instruction": "i am looking for a 11\" sized walking boots for outdoor activities. and i would go for the black one", "attributes": ["anti slip", "open toe", "non slip", "quality materials", "closed toe", "memory foam", "rubber sole"], "options": ["color: black", "size: 11"], "instruction_attributes": ["anti slip"], "instruction_options": ["black", "11"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPB9ROK", "worker_id": "A2COCSUGZV28X"}], "B09Q348M72": [{"asin": "B09Q348M72", "instruction": "i want a light beige full platform bed with a headboard. it should be easy to assemble.", "attributes": ["non slip", "easy assemble", "box spring", "metal legs", "memory foam"], "options": ["color: light beige", "size: queen"], "instruction_attributes": ["easy assemble"], "instruction_options": ["light beige"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRF4WNW", "worker_id": "A1NF6PELRKACS9"}], "B009P452VO": [{"asin": "B009P452VO", "instruction": "i am looking or a 12 ounce (pack of 1) non gmo gluten free granola", "attributes": ["non gmo", "gluten free", "fat free"], "options": ["flavor name: cranberry pecan", "size: 12 ounce (pack of 1)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["12 ounce (pack of 1)"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49IUTDX", "worker_id": "A9QRQL9CFJBI7"}], "B08R89VRFB": [{"asin": "B08R89VRFB", "instruction": "i'm looking for sliver smart watch made from 20mm stainless steel.", "attributes": ["quick release", "easy install", "stainless steel"], "options": ["color: silver"], "instruction_attributes": ["stainless steel"], "instruction_options": ["silver"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OQ799R", "worker_id": "A1Q0EUNCS50S8M"}], "B01HXV90BS": [{"asin": "B01HXV90BS", "instruction": "i am looking for an anti-aging serum based on hyaluronic acid in a 1 fl oz bottle", "attributes": ["anti aging", "high quality", "hyaluronic acid", "fine lines"], "options": ["size: 1 fl oz (pack of 1)"], "instruction_attributes": ["anti aging", "hyaluronic acid"], "instruction_options": ["1 fl oz (pack of 1)"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW758S1", "worker_id": "A13PVNQT2WWWVL"}], "B07P8KDPJF": [{"asin": "B07P8KDPJF", "instruction": "i want avocado extract flover paraben free hair mask for treatment of dry hair", "attributes": ["paraben free", "dry hair"], "options": ["scent: avocado extract"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRVHPWZ", "worker_id": "A3N9ZYQAESNFQH"}], "B08TX29T65": [{"asin": "B08TX29T65", "instruction": "i am looking for a 5x7 ft backgrounds for digital photography", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 01", "size: 5x7 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["5x7 ft"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3HKAY6", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B08TX29T65", "instruction": "i want to buy a lightweight photography backdrop that has a print color 03 and is 9x16 ft.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 03", "size: 9x16 ft"], "instruction_attributes": ["light weight"], "instruction_options": ["printed backdrop 03", "9x16 ft"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1DQXC2", "worker_id": "A2YNPKYEFDZ6C9"}], "B08G87W2B9": [{"asin": "B08G87W2B9", "instruction": "i am looking for a size 13 sandal for women which has an open toe and a high heel.", "attributes": ["open toe", "high heel", "ankle strap"], "options": ["color: silver", "size: 13"], "instruction_attributes": ["open toe", "high heel"], "instruction_options": ["13"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHP60JE", "worker_id": "AJDQGOTMB2D80"}], "B08M6JS7SM": [{"asin": "B08M6JS7SM", "instruction": "i am looking for a high quality bag that has a cartoon image.", "attributes": ["leak proof", "easy carry", "high quality"], "options": ["color: cartoon"], "instruction_attributes": ["high quality"], "instruction_options": ["cartoon"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DT54KM", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NDQYJ3G": [{"asin": "B09NDQYJ3G", "instruction": "i need an open toe, high heel, ankle strap wedge sandals in color white and size 9.5-10.", "attributes": ["open toe", "closed toe", "high heel", "ankle strap"], "options": ["color: white", "size: 9.5-10"], "instruction_attributes": ["open toe", "high heel", "ankle strap"], "instruction_options": ["white", "9.5-10"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXC7G74", "worker_id": "ASWFLI3N8X72G"}], "B09LYSJB8Z": [{"asin": "B09LYSJB8Z", "instruction": "i intend to buy a queen sized easy to assemble black metal platform bed.", "attributes": ["twin size", "easy assemble", "box spring"], "options": ["color: black", "size: queen"], "instruction_attributes": ["easy assemble"], "instruction_options": ["black", "queen"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPBJDQR", "worker_id": "A3AYHESLQSDY5T"}], "B079QJD2FG": [{"asin": "B079QJD2FG", "instruction": "i need to buy an 104 square foot piece of eco-friendly synthetic turf.", "attributes": ["eco friendly", "high density"], "options": ["size: 8 ft x 13 ft (104 square ft)"], "instruction_attributes": ["eco friendly"], "instruction_options": ["8 ft x 13 ft (104 square ft)"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H6NU84", "worker_id": "AR9AU5FY1S3RO"}], "B09JFQR4DC": [{"asin": "B09JFQR4DC", "instruction": "i am looking for a blue stretch fabric dress shirts for regular fit", "attributes": ["easy care", "daily casual", "regular fit", "stretch fabric", "long sleeve", "button closure"], "options": ["color: blue", "size: x-large"], "instruction_attributes": ["regular fit", "stretch fabric"], "instruction_options": [], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8FX5RK", "worker_id": "A9QRQL9CFJBI7"}], "B08Q7V8P6Q": [{"asin": "B08Q7V8P6Q", "instruction": "i'm looking for a large sweatpants fleece lined for sports in dark gray", "attributes": ["fleece lined", "hand wash", "daily casual", "winter warm", "straight leg", "wash cold", "machine wash", "comfortable fit", "drawstring closure", "elastic waist", "polyester spandex"], "options": ["color: 02 dark gray", "size: large"], "instruction_attributes": ["fleece lined"], "instruction_options": ["02 dark gray", "large"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFTDT0W", "worker_id": "A2Y2TURT2VEYZN"}], "B07W7VW47Y": [{"asin": "B07W7VW47Y", "instruction": "i would like a pair of size 9.5 wheat work boots that have a steel toe.", "attributes": ["slip resistant", "moisture wicking", "steel toe"], "options": ["color: wheat", "size: 9.5 wide"], "instruction_attributes": ["steel toe"], "instruction_options": ["wheat", "9.5 wide"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB99LN8U", "worker_id": "A1WS884SI0SLO4"}], "B085HY41GN": [{"asin": "B085HY41GN", "instruction": "i am looking for a 8.5 size ankle strap flat sandals", "attributes": ["open toe", "ankle strap", "steel toe", "high heel"], "options": ["color: z5-brown", "size: 8.5"], "instruction_attributes": ["ankle strap"], "instruction_options": [], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5GUZ18", "worker_id": "A9QRQL9CFJBI7"}], "B09CYFD5BX": [{"asin": "B09CYFD5BX", "instruction": "i'm looking for beauty salon need buy a blue colored chairs.", "attributes": ["heavy duty", "high quality", "beauty salon"], "options": ["color: blue", "size: 1"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OSBPOE", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09CYFD5BX", "instruction": "i am looking for a heavy duty barber chair thats high quality bar stool. go ahead and get a brown color.", "attributes": ["heavy duty", "high quality", "beauty salon"], "options": ["color: brown", "size: 2"], "instruction_attributes": ["heavy duty", "high quality"], "instruction_options": ["brown"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYMFQMK", "worker_id": "A31PW970Z2PC5P"}], "B016N62TXA": [{"asin": "B016N62TXA", "instruction": "i'm looking for coaxial cable for cell phone accessories.", "attributes": ["coaxial cable", "4g lte"], "options": [""], "instruction_attributes": ["coaxial cable"], "instruction_options": [], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQE0SQ7", "worker_id": "A16IQOX0DK14OJ"}], "B089W8BMRT": [{"asin": "B089W8BMRT", "instruction": "i'm looking for a leather sole high heel sandal in dark rose gold.", "attributes": ["leather sole", "high heel"], "options": ["color: dark rose gold", "size: 11.5"], "instruction_attributes": ["leather sole", "high heel"], "instruction_options": ["dark rose gold"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJSMBX5", "worker_id": "A2CJFO19NY4T5R"}], "B08LTCVMQG": [{"asin": "B08LTCVMQG", "instruction": "i'm looking for brown industrial size 10 boots made with vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: brown", "size: 10"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["brown", "10"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UQ4EZE", "worker_id": "A1HMZJ59OPLD1P"}], "B09JC29RSY": [{"asin": "B09JC29RSY", "instruction": "i am looking for large nightstand end table for living room.", "attributes": ["mid century", "easy install", "easy assemble", "living room"], "options": ["size: large"], "instruction_attributes": ["living room"], "instruction_options": ["large"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOIALMC", "worker_id": "A3FG5PQHG5AH3Y"}], "B06XSGZKC7": [{"asin": "B06XSGZKC7", "instruction": "i'm looking for certifies organic groceries the flavor was cacao bits", "attributes": ["certified organic", "non gmo"], "options": ["flavor: cacao nibs", "size: 4 pound (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["cacao nibs"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FHFELE", "worker_id": "A16IQOX0DK14OJ"}], "B08R8HKCHN": [{"asin": "B08R8HKCHN", "instruction": "i need green colored headphones with superior stereo sound and comes with a convenient carrying case.", "attributes": ["carrying case", "stereo sound"], "options": ["color: green"], "instruction_attributes": ["carrying case", "stereo sound"], "instruction_options": ["green"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDN9CHQ", "worker_id": "ASWFLI3N8X72G"}], "B08XJ2MV9V": [{"asin": "B08XJ2MV9V", "instruction": "i'm looking for a 10 lights stepeak w23.6\" crystal golden chandelier pendant lighting .", "attributes": ["light fixture", "dining room", "living room"], "options": ["color: 24lights 4-tier grey dia39\""], "instruction_attributes": ["dining room", "living room"], "instruction_options": ["24lights 4-tier grey dia39\""], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZTR404", "worker_id": "A1ZGOZQF2VZ0X9"}], "B07VGP44B2": [{"asin": "B07VGP44B2", "instruction": "i need to buy a solid wood console table for my living room. look for one in grey.", "attributes": ["solid wood", "living room"], "options": ["color: distressed grey"], "instruction_attributes": ["solid wood", "living room"], "instruction_options": ["distressed grey"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGDOMSZ", "worker_id": "AR9AU5FY1S3RO"}], "B09FT4RLLS": [{"asin": "B09FT4RLLS", "instruction": "i'm looking for one aluminum alloy magnetic case phor iphone 13 mini in black", "attributes": ["aluminum alloy", "wireless charging"], "options": ["color: black", "size: iphone 13 mini"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["black", "iphone 13 mini"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSKLQ2M", "worker_id": "A2Y2TURT2VEYZN"}], "B01N9C9AT6": [{"asin": "B01N9C9AT6", "instruction": "i'm looking for stainless steel accessories and need to buy it.", "attributes": ["carrying case", "stainless steel"], "options": ["color: purple"], "instruction_attributes": ["carrying case", "stainless steel"], "instruction_options": ["purple"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF4MDLQ", "worker_id": "A16IQOX0DK14OJ"}], "B09M87JDMM": [{"asin": "B09M87JDMM", "instruction": "i am looking for 1080p security camera with motion detection feature.", "attributes": ["1080p hd", "easy install", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": [], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGUA1MR5", "worker_id": "A3FG5PQHG5AH3Y"}], "B09PYVM1NK": [{"asin": "B09PYVM1NK", "instruction": "i am looking for a size 9.5 brown open toed heeled sandal with an ankle strip", "attributes": ["open toe", "high heel", "ankle strap", "teen girls", "daily wear"], "options": ["color: a11-brown", "size: 9.5-10"], "instruction_attributes": ["open toe", "ankle strap"], "instruction_options": ["a11-brown", "9.5-10"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z4FXG7", "worker_id": "A22VGT2F28LTWC"}], "B08FC8DZRJ": [{"asin": "B08FC8DZRJ", "instruction": "i would like a grey 100x40x40cm ottoman for my living room.", "attributes": ["high density", "storage space", "living room"], "options": ["color: grey", "size: 100x40x40cm"], "instruction_attributes": ["living room"], "instruction_options": ["grey", "100x40x40cm"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFF2U5G", "worker_id": "A1WS884SI0SLO4"}], "B07ZKLZC26": [{"asin": "B07ZKLZC26", "instruction": "i am looking for 60 pieces of farm themed cupcake toppers for a birthday party.", "attributes": ["baby shower", "birthday party", "party supplies"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFP33V5", "worker_id": "A1EREKSZAA9V7B"}], "B09LVBN1QT": [{"asin": "B09LVBN1QT", "instruction": "get me a high performance coaxial cable connector.", "attributes": ["high performance", "coaxial cable"], "options": [""], "instruction_attributes": ["high performance", "coaxial cable"], "instruction_options": [], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQDFS61", "worker_id": "A3AYHESLQSDY5T"}], "B09MLFHLVS": [{"asin": "B09MLFHLVS", "instruction": "i'm looking for high heel boost the color was wine.", "attributes": ["knee high", "open toe", "non slip", "high heel", "high waist", "rubber sole"], "options": ["color: wine", "size: 6"], "instruction_attributes": ["knee high", "high heel", "rubber sole"], "instruction_options": ["wine"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKLU1TI", "worker_id": "A16IQOX0DK14OJ"}], "B00M2XDHY4": [{"asin": "B00M2XDHY4", "instruction": "i need some dark gray cotton trousers.", "attributes": ["water resistant", "polyester cotton", "regular fit"], "options": ["color: dark grey", "size: 44"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["dark grey"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL4UEA8", "worker_id": "A19317A3X87NVM"}], "B01DZV37VY": [{"asin": "B01DZV37VY", "instruction": "i am looking for a heavy duty rca cables.", "attributes": ["heavy duty", "high performance"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EDKB1Q", "worker_id": "A9QRQL9CFJBI7"}], "B01N9PYL3A": [{"asin": "B01N9PYL3A", "instruction": "i am looking 25 pound high protein dietary fiber wheat flours & meals", "attributes": ["non gmo", "high protein", "dietary fiber"], "options": ["size: 25 pound (pack of 1)"], "instruction_attributes": ["high protein", "dietary fiber"], "instruction_options": ["25 pound (pack of 1)"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP487JJ", "worker_id": "A3N9ZYQAESNFQH"}], "B09G9LGHC8": [{"asin": "B09G9LGHC8", "instruction": "i want a light weight high resolution background for photography purpose of baby sower party size :5*3ft", "attributes": ["light weight", "high resolution"], "options": ["size: 5x3ft"], "instruction_attributes": ["light weight", "high resolution"], "instruction_options": ["5x3ft"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRSSBZA", "worker_id": "A3N9ZYQAESNFQH"}], "B093YS37ST": [{"asin": "B093YS37ST", "instruction": "i'm looking for clothing accessories for carry a laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UFL3AN", "worker_id": "A16IQOX0DK14OJ"}], "B08J1D47RV": [{"asin": "B08J1D47RV", "instruction": "looking for vegan sweet potato puffs non gmo product", "attributes": ["plant based", "gluten free", "non gmo"], "options": ["flavor name: 4. vegan cheesy cheddar"], "instruction_attributes": ["non gmo"], "instruction_options": ["4. vegan cheesy cheddar"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79K0KQV", "worker_id": "A2Y2TURT2VEYZN"}], "B00A8MYSTY": [{"asin": "B00A8MYSTY", "instruction": "i looking a relaxed fit nylon spandex camping everyday wear hiking woman pant color :thistle", "attributes": ["nylon spandex", "imported zipper", "relaxed fit", "everyday wear"], "options": ["color: thistle", "size: 16 short"], "instruction_attributes": ["nylon spandex", "relaxed fit", "everyday wear"], "instruction_options": ["thistle"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22K98WO", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B00A8MYSTY", "instruction": "i need everyday wear pants for hiking that are flax colored in a size 20.", "attributes": ["nylon spandex", "imported zipper", "relaxed fit", "everyday wear"], "options": ["color: flax", "size: 20"], "instruction_attributes": ["everyday wear"], "instruction_options": ["flax", "20"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8ABA5H", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DWVK8LC": [{"asin": "B08DWVK8LC", "instruction": "i want a high quality acrylic nail kit that is long lasting and clear pink nude in color.", "attributes": ["high quality", "long lasting", "nail art"], "options": ["color: acrylic clear | pink | nude"], "instruction_attributes": ["high quality", "long lasting"], "instruction_options": ["acrylic clear | pink | nude"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4BUQRS", "worker_id": "A1NF6PELRKACS9"}], "B07Y98Y4L6": [{"asin": "B07Y98Y4L6", "instruction": "i would like a black race style video game chair with good lumbar support.", "attributes": ["white item", "lumbar support", "memory foam", "steel frame"], "options": ["color: black | white", "style: race"], "instruction_attributes": ["lumbar support"], "instruction_options": ["black | white", "race"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647BEH3H", "worker_id": "A1WS884SI0SLO4"}], "B093YSDS5S": [{"asin": "B093YSDS5S", "instruction": "i am looking for a medium sized laundry bag for my travel on christmas holidays", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEKSQ84", "worker_id": "A2COCSUGZV28X"}], "B091FBFNBF": [{"asin": "B091FBFNBF", "instruction": "i'm looking for open toe pillow slippers that can drying shower.", "attributes": ["non slip", "quick drying", "open toe", "ethylene vinyl", "vinyl acetate"], "options": ["color: pink", "size: 9.5-10 women | 8-9 men"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LJBI5Q", "worker_id": "A16IQOX0DK14OJ"}], "B08Y98ZBKX": [{"asin": "B08Y98ZBKX", "instruction": "i am looking for an intel core i5 workstation pc with windows 10 pro.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["core i5", "intel core"], "instruction_options": [], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNZ8PTE", "worker_id": "A1EREKSZAA9V7B"}], "B09NJL8M8C": [{"asin": "B09NJL8M8C", "instruction": "i want a pair of orange non slip shoes with memory foam for jogging.", "attributes": ["non slip", "day comfort", "slip resistant", "memory foam", "steel toe", "arch support", "rubber sole"], "options": ["color: orange", "size: 6.5-7"], "instruction_attributes": ["non slip", "memory foam"], "instruction_options": ["orange"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFHLV9M", "worker_id": "A1NF6PELRKACS9"}], "B09SCVRT52": [{"asin": "B09SCVRT52", "instruction": "i'm looking for women's clothing for it was soft material it can wear everyday wear.", "attributes": ["soft material", "arch support", "everyday wear"], "options": ["color: a10 - black", "size: 9.5 wide"], "instruction_attributes": ["soft material", "everyday wear"], "instruction_options": ["a10 - black"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FE28KW", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09SCVRT52", "instruction": "i want to find a pair of black women's platform wedges for everyday wear. they need to be a size 9 and be on the wider side.", "attributes": ["soft material", "arch support", "everyday wear"], "options": ["color: a10 - black", "size: 9 wide"], "instruction_attributes": ["everyday wear"], "instruction_options": ["a10 - black", "9 wide"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH152BHWM", "worker_id": "A345TDMHP3DQ3G"}], "B0852ZWWS9": [{"asin": "B0852ZWWS9", "instruction": "i need a alcohol free perfume oil of 12ml meal size . and i would prefer the green musk scent", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: green musk", "size: 12 ml - metal"], "instruction_attributes": ["alcohol free"], "instruction_options": ["green musk", "12 ml - metal"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IR6LTF", "worker_id": "A2COCSUGZV28X"}, {"asin": "B0852ZWWS9", "instruction": "seeking as premium perfume oil containing attar oil, that is vegan, cruelty, and alcohol free, long lasting, 3ml bottle, violet scent, named amber romance by amuze fragrance", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: violet", "size: 0.41 fl oz (pack of 1)"], "instruction_attributes": ["alcohol free", "cruelty free", "long lasting"], "instruction_options": ["violet"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VMO60M", "worker_id": "A3RGIKEI8JS2QG"}, {"asin": "B0852ZWWS9", "instruction": "i want to buy a perfume which is alcohol free and lasts long, the scent should be of egyptian musk and it should be 3 ml.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: egyptian musk", "size: 3 ml"], "instruction_attributes": ["alcohol free", "long lasting"], "instruction_options": ["egyptian musk", "3 ml"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBI3GHC", "worker_id": "AJY5G987IRT25"}, {"asin": "B0852ZWWS9", "instruction": "i want a 12 ml bottle of turkish rose long lasting fragrance.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: turkish rose", "size: 12 ml"], "instruction_attributes": ["long lasting"], "instruction_options": ["turkish rose", "12 ml"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZU4HS6", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0852ZWWS9", "instruction": "i am looking for alcohol and cruelty free vanilla musk perfume oil.", "attributes": ["alcohol free", "cruelty free", "paraben free", "long lasting"], "options": ["scent: vanilla musk", "size: 0.1 fl oz (pack of 1)"], "instruction_attributes": ["alcohol free", "cruelty free"], "instruction_options": ["vanilla musk"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4XQ0HX", "worker_id": "A1EREKSZAA9V7B"}], "B07Y5HLQSP": [{"asin": "B07Y5HLQSP", "instruction": "i am looking for gluten free chocolate bars.", "attributes": ["trader joe", "gluten free", "natural flavors"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCY6Q47", "worker_id": "A3FG5PQHG5AH3Y"}], "B087LSWCM8": [{"asin": "B087LSWCM8", "instruction": "i am looking for a 46 inches table pads of stainless steel", "attributes": ["easy clean", "stainless steel"], "options": ["color: frosted 1.5mm", "size: 46 inch"], "instruction_attributes": ["stainless steel"], "instruction_options": ["46 inch"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YJ2NPV", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B087LSWCM8", "instruction": "i'm looking for stainless steel for for kitchen and dinning room.", "attributes": ["easy clean", "stainless steel"], "options": ["color: clear 1.5mm", "size: 30 x 48 inch"], "instruction_attributes": ["stainless steel"], "instruction_options": ["clear 1.5mm"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7YLSDA", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B087LSWCM8", "instruction": "i need a desk cover protector that's 30 by 60 inches. it should be easy to clean.", "attributes": ["easy clean", "stainless steel"], "options": ["color: clear 1.5mm", "size: 30 x 60 inch"], "instruction_attributes": ["easy clean"], "instruction_options": ["30 x 60 inch"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LEY1OJ", "worker_id": "AR9AU5FY1S3RO"}], "B08W7X86D4": [{"asin": "B08W7X86D4", "instruction": "i am looking for plant based,gluten free and sugar free seedbars.please choose mulberry cacao flavour.", "attributes": ["plant based", "dairy free", "non gmo", "artificial ingredients", "gluten free", "soy free", "certified organic", "sugar free", "quality ingredients"], "options": ["flavor name: mulberry cacao + spirulina"], "instruction_attributes": ["plant based", "gluten free", "sugar free"], "instruction_options": ["mulberry cacao + spirulina"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06LQKXR", "worker_id": "A3FG5PQHG5AH3Y"}], "B097YHD3PS": [{"asin": "B097YHD3PS", "instruction": "i'm looking for resealable bag red color.", "attributes": ["non gmo", "resealable bag"], "options": ["color: red pitaya 250g"], "instruction_attributes": ["resealable bag"], "instruction_options": ["red pitaya 250g"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG2UGBM", "worker_id": "A16IQOX0DK14OJ"}], "B08CNMQV8Z": [{"asin": "B08CNMQV8Z", "instruction": "i need chocolate filled snack cookies with low calories,low sugar and dairy free.", "attributes": ["low sugar", "low calorie", "fat free", "low carb", "dairy free", "gluten free"], "options": ["flavor name: chocolate filled", "size: 2.4 ounce (pack of 2)"], "instruction_attributes": ["low sugar", "low calorie", "gluten free"], "instruction_options": ["chocolate filled"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1NCTI9", "worker_id": "AHU9OLV0YKIIW"}], "B09HPFRPD3": [{"asin": "B09HPFRPD3", "instruction": "i'm looking for a size 9 woman denim high heel.", "attributes": ["slip resistant", "leather sole", "high heel", "ankle strap"], "options": ["color: qb1- e5-blue", "size: 9"], "instruction_attributes": ["high heel"], "instruction_options": ["9"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP5W7J9", "worker_id": "ARQ05PDNXPFDI"}], "B0845Y6ZDV": [{"asin": "B0845Y6ZDV", "instruction": "i need a pair of high speed usb-c cables.", "attributes": ["fast charging", "high speed"], "options": ["style: 2 pack - type g"], "instruction_attributes": ["high speed"], "instruction_options": ["2 pack - type g"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTNEOQJ", "worker_id": "A19317A3X87NVM"}], "B09SXYCCC1": [{"asin": "B09SXYCCC1", "instruction": "i want a office chair for heavy duty easy assemble with lumber support", "attributes": ["heavy duty", "easy assemble", "lumbar support"], "options": [""], "instruction_attributes": ["heavy duty", "easy assemble", "lumbar support"], "instruction_options": [], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCP1I70", "worker_id": "A3N9ZYQAESNFQH"}], "B000PW7N2Q": [{"asin": "B000PW7N2Q", "instruction": "i need 3-light vanity light in brushed nickel", "attributes": ["vanity light", "brushed nickel"], "options": ["color: brushed nickel", "size: 3-light"], "instruction_attributes": ["vanity light", "brushed nickel"], "instruction_options": ["3-light"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2967Y4", "worker_id": "A258PTOZ3D2TQR"}], "B0796M28ST": [{"asin": "B0796M28ST", "instruction": "i'm looking for hair loss to prevention of hair extensions.", "attributes": ["cruelty free", "tea tree", "hair loss"], "options": [""], "instruction_attributes": ["hair loss"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WW61AU", "worker_id": "A16IQOX0DK14OJ"}], "B0113JAN8K": [{"asin": "B0113JAN8K", "instruction": "i'm looking for a splitter for high speed coaxial cable.", "attributes": ["high speed", "coaxial cable"], "options": [""], "instruction_attributes": ["high speed", "coaxial cable"], "instruction_options": [], "assignment_id": "39O5D9O8742EGYBIU38DD09OUIUC3M", "worker_id": "AR0VJ5XRG16UJ"}], "B071YPLTYP": [{"asin": "B071YPLTYP", "instruction": "i need small size men's boxer brief, with elastic waistband in black air cool color for everyday wear. it should also feature quick drying and machine wash.", "attributes": ["quick drying", "wash cold", "machine wash", "elastic waistband", "everyday wear", "tumble dry"], "options": ["color: black air cool", "size: small"], "instruction_attributes": ["quick drying", "machine wash", "elastic waistband", "everyday wear"], "instruction_options": ["black air cool", "small"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXW74OU", "worker_id": "ASWFLI3N8X72G"}], "B097YWSYBJ": [{"asin": "B097YWSYBJ", "instruction": "i am looking for high performance gamer computer with 64gb ram", "attributes": ["high performance", "intel core"], "options": ["size: 64gb ram | 1tb ssd | 2tb hdd", "style: 10th gen i9-10900kf"], "instruction_attributes": ["high performance"], "instruction_options": ["64gb ram | 1tb ssd | 2tb hdd"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5H31ZL", "worker_id": "A16M39T60N60NO"}, {"asin": "B097YWSYBJ", "instruction": "i am looking for a high performance gaming computer with intel core, 64gb ram and 1tb ssd. also look for 2tb hdd.", "attributes": ["high performance", "intel core"], "options": ["size: 64gb ram | 1tb ssd | 2tb hdd", "style: 11th gen i7-11700kf"], "instruction_attributes": ["high performance", "intel core"], "instruction_options": ["64gb ram | 1tb ssd | 2tb hdd"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1GUCXR", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B097YWSYBJ", "instruction": "i am looking for a high performance computer that has 32 gb of ram and 3tb of storage.", "attributes": ["high performance", "intel core"], "options": ["size: 32gb ram | 1tb ssd | 2tb hdd", "style: 10th gen i9-10900kf"], "instruction_attributes": ["high performance"], "instruction_options": ["32gb ram | 1tb ssd | 2tb hdd"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KVXE7O", "worker_id": "A2ECRNQ3X5LEXD"}], "B092ZJ8V8R": [{"asin": "B092ZJ8V8R", "instruction": "i am looking for black nail polish.", "attributes": ["easy carry", "high quality", "storage case", "nail polish", "nail art"], "options": ["color: black", "size: large"], "instruction_attributes": ["nail polish"], "instruction_options": ["black"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X69GP7", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B092ZJ8V8R", "instruction": "i want a black ethereal nail polish organizer case.", "attributes": ["easy carry", "high quality", "storage case", "nail polish", "nail art"], "options": ["color: black", "size: extra large"], "instruction_attributes": ["nail polish"], "instruction_options": ["black"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUSOJQD", "worker_id": "A2RBF3IIJP15IH"}], "B09J7XX5W3": [{"asin": "B09J7XX5W3", "instruction": "i'm looking for future mattress for living room it can make decor a living area.", "attributes": ["non slip", "living room"], "options": ["color: a", "size: 100*200cm(39*79in)"], "instruction_attributes": ["living room"], "instruction_options": ["a"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YY23QR", "worker_id": "A16IQOX0DK14OJ"}], "B08JV582PQ": [{"asin": "B08JV582PQ", "instruction": "i am looking for a black nubuck | mesh shoes of memory foam for men.", "attributes": ["ethylene vinyl", "vinyl acetate", "memory foam"], "options": ["color: black nubuck | mesh", "size: 12"], "instruction_attributes": ["memory foam"], "instruction_options": ["black nubuck | mesh"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZD9W0S9", "worker_id": "A9QRQL9CFJBI7"}], "B08D696W62": [{"asin": "B08D696W62", "instruction": "order for me a high speed data sync charge cable for my playstation 4 and should be silver in color.", "attributes": ["high speed", "usb port"], "options": ["color: silver"], "instruction_attributes": ["high speed"], "instruction_options": ["silver"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1B2GYR", "worker_id": "AHU9OLV0YKIIW"}], "B09PBML1BN": [{"asin": "B09PBML1BN", "instruction": "i am looking for a straight leg fitted shorts for my work out. and i choose the xx-large with black-2 color", "attributes": ["straight leg", "wide leg", "hand wash", "machine wash", "drawstring closure", "elastic waist", "relaxed fit", "daily wear"], "options": ["color: black-2", "size: xx-large"], "instruction_attributes": ["straight leg"], "instruction_options": ["black-2", "xx-large"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9PXTVV", "worker_id": "A2COCSUGZV28X"}], "B002PHI69I": [{"asin": "B002PHI69I", "instruction": "i'm looking for black embossed rose shoes for women's and it will long lasting.", "attributes": ["slip resistant", "arch support"], "options": ["color: black embossed rose", "size: 6 wide"], "instruction_attributes": ["slip resistant", "arch support"], "instruction_options": ["black embossed rose"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WSG24T", "worker_id": "A16IQOX0DK14OJ"}], "B07GDS9461": [{"asin": "B07GDS9461", "instruction": "pick a nutmeg shade concealer that hides dark circle. also remember that i have sensitive skin.", "attributes": ["dark circles", "sensitive skin"], "options": ["color: nutmeg", "size: 0.34 fl oz (pack of 1 )"], "instruction_attributes": ["dark circles", "sensitive skin"], "instruction_options": ["nutmeg"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841BSXAP", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07GDS9461", "instruction": "i am looking for a medium color concealers & neutralizers for sensitive skin", "attributes": ["dark circles", "sensitive skin"], "options": ["color: medium", "size: 0.34 fl oz (pack of 1 )"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["medium"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9U487S", "worker_id": "A9QRQL9CFJBI7"}], "B096NPDJQJ": [{"asin": "B096NPDJQJ", "instruction": "i am looking for a eco friendly window films of 23.6\" x 63\" x 2 pcs( total: 120x160cm ) size.", "attributes": ["eco friendly", "easy install"], "options": ["color: multi-08946", "size: 23.6\" x 63\" x 2 pcs( total: 120x160cm )"], "instruction_attributes": ["eco friendly"], "instruction_options": ["23.6\" x 63\" x 2 pcs( total"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602TJ95T", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B096NPDJQJ", "instruction": "i am looking for a eco friendly window films of 35.4\" x 94.4\" x 2 pcs( total: 180x240cm )", "attributes": ["eco friendly", "easy install"], "options": ["color: multi-08952", "size: 35.4\" x 94.4\" x 2 pcs( total: 180x240cm )"], "instruction_attributes": [], "instruction_options": ["35.4\" x 94.4\" x 2 pcs( total"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG2X45M", "worker_id": "A9QRQL9CFJBI7"}], "B084T7NY3Q": [{"asin": "B084T7NY3Q", "instruction": "i need individually wrapped gluten free oatmeal chocolate chip cookies that is plant based.", "attributes": ["plant based", "individually wrapped", "gluten free", "simple ingredients", "artificial colors"], "options": ["flavor name: oatmeal chocolate chip"], "instruction_attributes": ["plant based", "individually wrapped", "gluten free"], "instruction_options": ["oatmeal chocolate chip"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y7DIVX", "worker_id": "A1NF6PELRKACS9"}], "B09S6HC66Y": [{"asin": "B09S6HC66Y", "instruction": "i am looking for a loofahs for dead skin", "attributes": ["fine lines", "dead skin"], "options": [""], "instruction_attributes": ["dead skin"], "instruction_options": [], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CEC0V2", "worker_id": "A9QRQL9CFJBI7"}], "B08MBFBXJ1": [{"asin": "B08MBFBXJ1", "instruction": "i'm looking for a plant based vegetable crisps made of simple ingredients and should be gluten free.", "attributes": ["gluten free", "plant based", "non gmo", "simple ingredients"], "options": [""], "instruction_attributes": ["gluten free", "plant based", "simple ingredients"], "instruction_options": [], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO4UC2B", "worker_id": "AR0VJ5XRG16UJ"}], "B07S3XVZVB": [{"asin": "B07S3XVZVB", "instruction": "i would like a box of 24 granola bars that are high in protein.", "attributes": ["high protein", "dietary fiber", "gift set"], "options": ["size: 24 servings"], "instruction_attributes": ["high protein"], "instruction_options": ["24 servings"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CR7T2Q", "worker_id": "A1WS884SI0SLO4"}], "B09S9N1VNJ": [{"asin": "B09S9N1VNJ", "instruction": "i looking foco nfl team logo women's moisture wicking arch support size :9 black daily use slipper", "attributes": ["moisture wicking", "arch support", "memory foam"], "options": ["color: 01-black", "size: 9"], "instruction_attributes": ["moisture wicking", "arch support"], "instruction_options": ["01-black", "9"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOIDMLG", "worker_id": "A3N9ZYQAESNFQH"}], "B09DFL8NVF": [{"asin": "B09DFL8NVF", "instruction": "i am looking for a white bed frames", "attributes": ["white item", "easy assemble", "box spring"], "options": ["color: white"], "instruction_attributes": ["white item"], "instruction_options": ["white"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT47JYO", "worker_id": "A9QRQL9CFJBI7"}], "B06XBX38LP": [{"asin": "B06XBX38LP", "instruction": "i'm looking for computer accessories for high speed and gold plated.", "attributes": ["high speed", "gold plated", "long lasting", "high definition"], "options": ["color: purple", "size: 2 feet (5 pack)"], "instruction_attributes": ["high speed", "gold plated", "long lasting"], "instruction_options": ["purple"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TMMN3T", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B06XBX38LP", "instruction": "i need 5 pack of 100 feet high speed internet cable. the color should be yellow and the wire must be gold plated", "attributes": ["high speed", "gold plated", "long lasting", "high definition"], "options": ["color: yellow", "size: 100 feet (5 pack)"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["yellow", "100 feet (5 pack)"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUJQC3K", "worker_id": "ASWFLI3N8X72G"}], "B089F7T791": [{"asin": "B089F7T791", "instruction": "i'm looking for skin care products it can easy to use and it can use for sensitive skin.", "attributes": ["dermatologist tested", "paraben free", "easy use", "sensitive skin"], "options": ["style: gentle cleanser"], "instruction_attributes": ["easy use", "sensitive skin"], "instruction_options": ["gentle cleanser"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9GE2E1", "worker_id": "A16IQOX0DK14OJ"}], "B07ZPSFLPW": [{"asin": "B07ZPSFLPW", "instruction": "i need a casual short sleeve small size flowy dress. also d-sage green one.", "attributes": ["short sleeve", "long sleeve", "daily wear"], "options": ["color: d-sage green", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["d-sage green", "small"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT8B37U", "worker_id": "A258PTOZ3D2TQR"}], "B077YSK7SK": [{"asin": "B077YSK7SK", "instruction": "i am looking for a white item barstools", "attributes": ["white item", "assembly required"], "options": [""], "instruction_attributes": ["white item"], "instruction_options": [], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFBK9D6", "worker_id": "A9QRQL9CFJBI7"}], "B09713XF7Y": [{"asin": "B09713XF7Y", "instruction": "i'm looking for a women's summer adjustable buckle ankle strap cloth sandals.", "attributes": ["high heel", "soft material", "ankle strap", "daily wear"], "options": ["color: red", "size: 9"], "instruction_attributes": ["ankle strap"], "instruction_options": ["red", "9"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCP9B90", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08SGBKV87": [{"asin": "B08SGBKV87", "instruction": "i am looking for a travel size and alcohol free eau de parfum for women of versace dreamer impression scent.", "attributes": ["travel size", "alcohol free", "long lasting", "high quality"], "options": ["scent: versace dreamer impression"], "instruction_attributes": ["travel size", "alcohol free"], "instruction_options": ["versace dreamer impression"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRSTZBZ", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B08SGBKV87", "instruction": "i am looking for a travel sized bottle of christian dior homme intense impression perfume.", "attributes": ["travel size", "alcohol free", "long lasting", "high quality"], "options": ["scent: christian dior homme intense impression"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX3XN1UR", "worker_id": "A1EREKSZAA9V7B"}], "B08WQ6NBSL": [{"asin": "B08WQ6NBSL", "instruction": "i am in need of 18 inch high quality human hair wig for women", "attributes": ["high quality", "hair loss"], "options": ["size: 18 inch"], "instruction_attributes": ["high quality"], "instruction_options": ["18 inch"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZC7UWY", "worker_id": "A258PTOZ3D2TQR"}], "B097YLN95R": [{"asin": "B097YLN95R", "instruction": "i am looking for non toxic makeup remover.", "attributes": ["non toxic", "dry skin", "sensitive skin"], "options": [""], "instruction_attributes": ["non toxic"], "instruction_options": [], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC40NIA", "worker_id": "A3FG5PQHG5AH3Y"}], "B08TVGRCRB": [{"asin": "B08TVGRCRB", "instruction": "a heavy duty single gang rocker high gloss electric wall plate cover", "attributes": ["heavy duty", "high gloss"], "options": ["style: single rocker | gfci"], "instruction_attributes": ["heavy duty", "high gloss"], "instruction_options": ["single rocker | gfci"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7XF5PY", "worker_id": "A3N9ZYQAESNFQH"}], "B07H65YQLJ": [{"asin": "B07H65YQLJ", "instruction": "i would like a 12 by 16 inch poster in three pieces of watercolor potted leaves for my living room.", "attributes": ["ready hang", "living room"], "options": ["color: watercolor potted leaves", "size: 12x16inches*3pcs"], "instruction_attributes": ["living room"], "instruction_options": ["watercolor potted leaves", "12x16inches*3pcs"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N7XT7A", "worker_id": "A1WS884SI0SLO4"}], "B08CNG5MTQ": [{"asin": "B08CNG5MTQ", "instruction": "i am looking for a 5 no. rubber sole heeled sandals", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: metallic leather combi", "size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": [], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIKR29M", "worker_id": "A9QRQL9CFJBI7"}], "B01MYDEH3E": [{"asin": "B01MYDEH3E", "instruction": "i'm looking for walnut oil for dead skin for sensitive skin and skin caring.", "attributes": ["oil free", "sensitive skin", "dead skin"], "options": ["size: 16 ounce"], "instruction_attributes": ["oil free", "sensitive skin", "dead skin"], "instruction_options": ["16 ounce"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC67D0D", "worker_id": "A16IQOX0DK14OJ"}], "B0725Q6LQ7": [{"asin": "B0725Q6LQ7", "instruction": "coney island classics butter me up popcorn, brings back memories of my childhood. in addition to having dietary fiber and gluten free. please select for me.", "attributes": ["non gmo", "gluten free", "dietary fiber", "artificial colors"], "options": [""], "instruction_attributes": ["gluten free", "dietary fiber"], "instruction_options": [], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU1ZALV", "worker_id": "A15IJ20C3R4HUO"}], "B08C2LCQ8M": [{"asin": "B08C2LCQ8M", "instruction": "i want comfortable green colored winter boots that is meant for daily wear.", "attributes": ["day comfort", "daily wear"], "options": ["color: green", "size: 10.5"], "instruction_attributes": ["day comfort", "daily wear"], "instruction_options": ["green"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO5JC22", "worker_id": "A1NF6PELRKACS9"}], "B07K2QTS1T": [{"asin": "B07K2QTS1T", "instruction": "i'm looking for gluten free it contains high protein and needed to protein.", "attributes": ["non gmo", "artificial ingredients", "gluten free"], "options": ["flavor name: metabolism oolong tea", "size: 72 count"], "instruction_attributes": ["artificial ingredients", "gluten free"], "instruction_options": ["metabolism oolong tea"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7ZADSM", "worker_id": "A16IQOX0DK14OJ"}], "B096RJ5DRR": [{"asin": "B096RJ5DRR", "instruction": "i'm looking for a 3 pack poyiccot screen protector for suunto 9 peak.", "attributes": ["tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["tempered glass"], "instruction_options": [], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQBTVKC", "worker_id": "A1ZGOZQF2VZ0X9"}], "B075CPG5XT": [{"asin": "B075CPG5XT", "instruction": "i am looking for a keto friendly vanilla syrup with quality ingredients. also choose 25.4 fl oz pack 4", "attributes": ["keto friendly", "quality ingredients"], "options": ["flavor name: vanilla", "size: 25.4 fl oz (pack of 4)"], "instruction_attributes": ["keto friendly", "quality ingredients"], "instruction_options": ["vanilla", "25.4 fl oz (pack of 4)"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TNP3NE", "worker_id": "A2HMEGTAFO0CS8"}], "B08HLD224X": [{"asin": "B08HLD224X", "instruction": "i want a pair of comfortable fit wide leg pants. i need it in 3x-large size.", "attributes": ["wide leg", "drawstring waist", "comfortable fit", "polyester spandex", "laundry bag"], "options": ["color: 27 pot flower", "size: 3x-large"], "instruction_attributes": ["wide leg", "comfortable fit"], "instruction_options": ["3x-large"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMUYASY", "worker_id": "A1NF6PELRKACS9"}], "B08ZN4HFTX": [{"asin": "B08ZN4HFTX", "instruction": "i am looking for a xx-large wide leg and high waist pants for men.", "attributes": ["wide leg", "slim fit", "straight leg", "loose fit", "high waist", "relaxed fit", "button closure", "everyday wear"], "options": ["color: f-light blue", "size: xx-large"], "instruction_attributes": ["wide leg", "high waist"], "instruction_options": ["f-light blue"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TMKN3R", "worker_id": "A9QRQL9CFJBI7"}], "B00P8PKA4S": [{"asin": "B00P8PKA4S", "instruction": "i am searching for gift basket village sweet for giving as a great gift.", "attributes": ["gift basket", "great gift"], "options": [""], "instruction_attributes": ["gift basket", "great gift"], "instruction_options": [], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1GX80R", "worker_id": "A258PTOZ3D2TQR"}], "B093L4LLBD": [{"asin": "B093L4LLBD", "instruction": "i am looking for a laundry, blouse and hosiery wallet", "attributes": ["blouse hosiery", "imported zipper", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEKU8QO", "worker_id": "A9QRQL9CFJBI7"}], "B0922WVZ9X": [{"asin": "B0922WVZ9X", "instruction": "i'm looking for binoculars for bird watching and need to buy it.", "attributes": ["high power", "high performance", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1WP2H0", "worker_id": "A16IQOX0DK14OJ"}], "B0015DA1V4": [{"asin": "B0015DA1V4", "instruction": "i'm looking for gluten free it has contain high protein.", "attributes": ["fat free", "dairy free", "gluten free", "resealable bag"], "options": [""], "instruction_attributes": ["fat free", "dairy free", "gluten free"], "instruction_options": [], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMH03B78", "worker_id": "A16IQOX0DK14OJ"}], "B09BJQNNWD": [{"asin": "B09BJQNNWD", "instruction": "i need easy to use plug and play computer speakers with bluetooth. pick one in white color.", "attributes": ["plug play", "easy use", "usb port", "stereo sound"], "options": ["color: white bluetooth | wired"], "instruction_attributes": ["easy use"], "instruction_options": ["white bluetooth | wired"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEKCQ8O", "worker_id": "A1NF6PELRKACS9"}], "B09QBMZJXN": [{"asin": "B09QBMZJXN", "instruction": "a cold wash machine wash classic fit heather cotten baby blue color women t shirt size:3x-large", "attributes": ["wash cold", "machine wash", "drawstring closure", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: baby blue", "fit type: youth", "size: 3x-large"], "instruction_attributes": ["wash cold", "machine wash", "heathers cotton", "classic fit"], "instruction_options": ["baby blue", "3x-large"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1F4XRL", "worker_id": "A3N9ZYQAESNFQH"}], "B09LVWFHWK": [{"asin": "B09LVWFHWK", "instruction": "i want to buy some caffeine-free rooibos tea in a 50 pack.", "attributes": ["caffeine free", "kosher certified"], "options": ["flavor name: rooibos", "size: 50 count"], "instruction_attributes": ["caffeine free"], "instruction_options": ["rooibos", "50 count"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FNEBF2", "worker_id": "A2YNPKYEFDZ6C9"}], "B09492M5DY": [{"asin": "B09492M5DY", "instruction": "i want an easy to install tv antenna with usb port.", "attributes": ["easy install", "usb port"], "options": [""], "instruction_attributes": ["easy install", "usb port"], "instruction_options": [], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RHGLFN", "worker_id": "A1NF6PELRKACS9"}], "B08DTMVK61": [{"asin": "B08DTMVK61", "instruction": "i'm looking for ceiling lights pendent lights for living room.", "attributes": ["pendant light", "dining room", "living room"], "options": ["color: brush nickel", "size: 3 rings"], "instruction_attributes": ["pendant light", "living room"], "instruction_options": ["brush nickel"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQDU19J", "worker_id": "A16IQOX0DK14OJ"}], "B09HBXTJXJ": [{"asin": "B09HBXTJXJ", "instruction": "i would like a eye shadow brush set.", "attributes": ["synthetic hair", "eye shadow"], "options": [""], "instruction_attributes": ["eye shadow"], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTUAP9N", "worker_id": "A1WS884SI0SLO4"}], "B072MHDHDY": [{"asin": "B072MHDHDY", "instruction": "i am looking for gluten free cookies in chocolate flavor", "attributes": ["grain free", "gluten free", "shelf stable", "plant based", "non gmo", "simple ingredients"], "options": ["flavor name: chocolate chip", "size: 5.5 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["chocolate chip"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61SYWZX", "worker_id": "A16M39T60N60NO"}], "B005FKMUHQ": [{"asin": "B005FKMUHQ", "instruction": "i need a futon and chaise set that is made with faux leather. and i would prefer the navy linen color", "attributes": ["faux leather", "metal legs"], "options": ["color: navy linen", "style: futon and chaise set"], "instruction_attributes": ["faux leather"], "instruction_options": ["navy linen", "futon and chaise set"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q73FH9P", "worker_id": "A2COCSUGZV28X"}], "B09PZ2RL5C": [{"asin": "B09PZ2RL5C", "instruction": "i am looking for teeth whitening toothpaste.", "attributes": ["teeth whitening", "fluoride free", "bad breath"], "options": ["color: teeth whitening"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["teeth whitening"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQTZHI5", "worker_id": "A3FG5PQHG5AH3Y"}], "B08D6GLFZJ": [{"asin": "B08D6GLFZJ", "instruction": "i am looking for a small low rise briefs for men.", "attributes": ["low rise", "wash cold", "machine wash", "comfortable fit", "tumble dry"], "options": ["size: small"], "instruction_attributes": ["low rise"], "instruction_options": [], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40WMRCH", "worker_id": "A9QRQL9CFJBI7"}], "B08R68CDZX": [{"asin": "B08R68CDZX", "instruction": "in hunt for an anti-perspirant deodorant that fights underarm problems in a 40ml size, alcohol free made by the belo essentials in the beauty & personal care aisle.", "attributes": ["anti perspirant", "alcohol free"], "options": [""], "instruction_attributes": ["anti perspirant", "alcohol free"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG8YLSW", "worker_id": "A3RGIKEI8JS2QG"}], "B09PZ7XHK9": [{"asin": "B09PZ7XHK9", "instruction": "i am looking for some blue daily casual jumpsuits that are a medium size.", "attributes": ["daily casual", "hand wash", "elastic waist", "polyester spandex"], "options": ["color: blue", "size: medium"], "instruction_attributes": ["daily casual"], "instruction_options": ["blue", "medium"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTSSE55", "worker_id": "A2ECRNQ3X5LEXD"}], "B07R1PZ2T9": [{"asin": "B07R1PZ2T9", "instruction": "i am looking for a digital coax cable + connector n-female to n-female.", "attributes": ["coaxial cable", "4g lte"], "options": ["color: 50 ft. black low-loss coax cable", "style: coax cable + connector n-female to n-female"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["coax cable + connector n-female to n-female"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCXQ4Q3", "worker_id": "A9QRQL9CFJBI7"}], "B017L20UY0": [{"asin": "B017L20UY0", "instruction": "i am looking for coffee gift trunk with gift basket", "attributes": ["lactose free", "sugar free", "gluten free", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTUKE4J", "worker_id": "A10OGH5CQBXL5N"}], "B09T6STCWR": [{"asin": "B09T6STCWR", "instruction": "can i get an easy use gneric children\u2019s u-shape toothbrush c-green color", "attributes": ["easy use", "sensitive teeth"], "options": ["color: c- green", "size: 2-12t"], "instruction_attributes": ["easy use"], "instruction_options": ["c- green"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1XK2HX", "worker_id": "A1IL2K0ELYI090"}, {"asin": "B09T6STCWR", "instruction": "i'm going to travel and i want this u-shaped toothbrush for kids, 2-6t, easy to use, i need it urgently.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: c- green", "size: 2-6t"], "instruction_attributes": [], "instruction_options": ["2-6t"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYFAEIT", "worker_id": "A15IJ20C3R4HUO"}], "B07PDFKC9V": [{"asin": "B07PDFKC9V", "instruction": "get me a large sized machine washable women's v neck printed top made with polyester spandex and in 2 red-103 color.", "attributes": ["machine wash", "polyester spandex", "laundry bag"], "options": ["color: 2 red-103", "size: large"], "instruction_attributes": ["machine wash", "polyester spandex"], "instruction_options": ["2 red-103", "large"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPYLPJF", "worker_id": "A3AYHESLQSDY5T"}], "B087QB3RZD": [{"asin": "B087QB3RZD", "instruction": "i am searching for space saving brown ottoman for living room, that should have the size 17x13x13 inches", "attributes": ["space saving", "storage space"], "options": ["color: brown", "size: 17x13x13 inches"], "instruction_attributes": ["space saving"], "instruction_options": ["brown", "17x13x13 inches"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40XSCRA", "worker_id": "A258PTOZ3D2TQR"}], "B08JTRJSMM": [{"asin": "B08JTRJSMM", "instruction": "i am looking for a tempered glass screen protector smartwatch cases", "attributes": ["easy install", "compatible apple", "glass screen", "tempered glass"], "options": ["color: clear | rosep | roseg", "size: 44mm"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["44mm"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8I0ZNJ", "worker_id": "A9QRQL9CFJBI7"}], "B00T6R2DDA": [{"asin": "B00T6R2DDA", "instruction": "i'm looking for a jar candle that's eco friendly, lasts a long time, and comes in a citrus scent. look for soy wax candles in a pack of two.", "attributes": ["eco friendly", "long lasting", "soy wax"], "options": ["color: fresh citrus", "size: pack of 2"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDP5RH6", "worker_id": "AR9AU5FY1S3RO"}], "B00C6HF6DQ": [{"asin": "B00C6HF6DQ", "instruction": "i'm looking for ultra hd plug play maxwhite color.", "attributes": ["ultra hd", "plug play"], "options": ["color: maxwhite fg | white housing", "size: 135\" diagonal, 16:9", "style: starling 2"], "instruction_attributes": ["ultra hd", "plug play"], "instruction_options": ["maxwhite fg | white housing"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYWH36J", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B00C6HF6DQ", "instruction": "i need a plug and play spectrum projector screen that is white or black.", "attributes": ["ultra hd", "plug play"], "options": ["color: white | black", "size: 128\" diagonal, 16:10", "style: spectrum"], "instruction_attributes": ["plug play"], "instruction_options": ["white | black", "spectrum"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWREFPC", "worker_id": "A1NF6PELRKACS9"}], "B099WC5FQ3": [{"asin": "B099WC5FQ3", "instruction": "i am looking for a non slip and easy to carry tripod for my camera.", "attributes": ["easy carry", "quick release", "non slip"], "options": [""], "instruction_attributes": ["easy carry", "non slip"], "instruction_options": [], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X025N34A", "worker_id": "A1NF6PELRKACS9"}], "B089QGDWR7": [{"asin": "B089QGDWR7", "instruction": "i am looking for style-10 color wall art for my living room.", "attributes": ["ready hang", "dining room", "living room"], "options": ["color: style-10", "size: 70''w x 40''h"], "instruction_attributes": ["living room"], "instruction_options": ["style-10"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QEC1MX", "worker_id": "A1Q8PPQQCWGY0D"}], "B09GY2VV5W": [{"asin": "B09GY2VV5W", "instruction": "i would like a pair of size 10.5 steel toe hiking boots.", "attributes": ["knee high", "slip resistant", "non slip", "steel toe", "high heel", "rubber sole"], "options": ["size: 10.5"], "instruction_attributes": ["steel toe"], "instruction_options": ["10.5"], "assignment_id": "354P56DE9VDCOY11T1135MPMLOD7ST", "worker_id": "A1WS884SI0SLO4"}], "B0969LKS57": [{"asin": "B0969LKS57", "instruction": "i am looking for a x large men's sweatpants for daily wear and color should be gray", "attributes": ["quick drying", "elastic waist", "daily wear"], "options": ["color: grey blue", "size: x-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["grey blue", "x-large"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HTFPBX", "worker_id": "A9QRQL9CFJBI7"}], "B08PF9GG23": [{"asin": "B08PF9GG23", "instruction": "i want to buy a facial scrub that is apricot scented, oil-free dermatology tested and comes in 6 oz bottle.", "attributes": ["dermatologist tested", "oil free", "paraben free"], "options": ["scent: apricot", "size: 6 ounce (pack of 1)"], "instruction_attributes": ["dermatologist tested", "oil free"], "instruction_options": ["apricot", "6 ounce (pack of 1)"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHEHBNQ", "worker_id": "A2YNPKYEFDZ6C9"}], "B01LXYHF7T": [{"asin": "B01LXYHF7T", "instruction": "i would like a quad core desktop tower.", "attributes": ["certified refurbished", "high performance", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7Z1YQW", "worker_id": "A1WS884SI0SLO4"}], "B00LN9IWF2": [{"asin": "B00LN9IWF2", "instruction": "i would like a olive 18.5\" neck 35\" sleeve dress shirt that i can machine wash .", "attributes": ["slim fit", "easy care", "machine washable", "regular fit", "long sleeve", "button closure", "tumble dry"], "options": ["color: olive", "size: 18.5\" neck 35\" - 36\" sleeve"], "instruction_attributes": ["machine washable"], "instruction_options": ["olive", "18.5\" neck 35\" - 36\" sleeve"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOILQEF6", "worker_id": "A1WS884SI0SLO4"}], "B07VKZ52ZL": [{"asin": "B07VKZ52ZL", "instruction": "i am looking for a light ash brown mix bleach blonde hair extensions for wigs", "attributes": ["hair extensions", "synthetic hair"], "options": ["color: light ash brown mix bleach blonde", "size: 17 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["light ash brown mix bleach blonde"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841BBAXL", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07VKZ52ZL", "instruction": "i want dark black clip-in hair extensions. it should be 17\" in size when curly.", "attributes": ["hair extensions", "synthetic hair"], "options": ["color: dark black", "size: 17\"-curly"], "instruction_attributes": ["hair extensions"], "instruction_options": ["dark black", "17\"-curly"], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UHJOKO", "worker_id": "A1NF6PELRKACS9"}], "B09SYY4L7L": [{"asin": "B09SYY4L7L", "instruction": "i'm looking for a transparent pendant light that comes with 15light", "attributes": ["pendant light", "living room"], "options": ["color: 15light", "size: transparent"], "instruction_attributes": ["pendant light"], "instruction_options": ["15light", "transparent"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW5R4TL", "worker_id": "A1Q0EUNCS50S8M"}], "B09CNWNV7M": [{"asin": "B09CNWNV7M", "instruction": "get me some vintage cupcake picks for a birthday party. it should be in black with a 1992 theme.", "attributes": ["cupcake picks", "birthday party"], "options": ["pattern name: black 1992"], "instruction_attributes": ["cupcake picks", "birthday party"], "instruction_options": ["black 1992"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7X0XZTV", "worker_id": "A1NF6PELRKACS9"}], "B086H69F1T": [{"asin": "B086H69F1T", "instruction": "i am looking for certified organic herbal tea which is caffeine free.", "attributes": ["caffeine free", "certified organic"], "options": [""], "instruction_attributes": ["caffeine free", "certified organic"], "instruction_options": [], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE18JTG", "worker_id": "ASWFLI3N8X72G"}], "B07NXMQ987": [{"asin": "B07NXMQ987", "instruction": "find me a grain free, non gmo, and gluten free cake mix bundle with chocolate chip cookie flavor.", "attributes": ["grain free", "non gmo", "gluten free"], "options": ["flavor name: chocolate chip cookie"], "instruction_attributes": ["grain free", "non gmo", "gluten free"], "instruction_options": ["chocolate chip cookie"], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYNQGCP", "worker_id": "A2CJFO19NY4T5R"}], "B07N26QLH3": [{"asin": "B07N26QLH3", "instruction": "i want a medium sized classic fit men's shirt that is white in color.", "attributes": ["slim fit", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: men", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["white", "men", "medium"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227HHF8V", "worker_id": "A1NF6PELRKACS9"}], "B013FAAEUW": [{"asin": "B013FAAEUW", "instruction": "i want some low fat pretzel sticks.", "attributes": ["trader joe", "low fat"], "options": [""], "instruction_attributes": ["low fat"], "instruction_options": [], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ3XIS6", "worker_id": "A1NF6PELRKACS9"}], "B096NJ89C2": [{"asin": "B096NJ89C2", "instruction": "i'm looking for home decor products for home accessories.", "attributes": ["eco friendly", "easy install"], "options": ["color: multi-07027", "size: 29.5\" x 78.7\" x 2 pcs( total: 150x200cm )"], "instruction_attributes": ["eco friendly", "easy install"], "instruction_options": [], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDP2HRT", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B096NJ89C2", "instruction": "i am looking for multi colored glass window film that is eco friendly. the installation process should be easy as well.", "attributes": ["eco friendly", "easy install"], "options": ["color: multi-07022", "size: 23.6\" x 47.2\" x 2 pcs( total: 120x120cm )"], "instruction_attributes": ["eco friendly", "easy install"], "instruction_options": ["multi-07022"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3P5LZC", "worker_id": "A1NF6PELRKACS9"}], "B07Y28ZGVJ": [{"asin": "B07Y28ZGVJ", "instruction": "i'm looking for oral care for seed oiul.", "attributes": ["seed oil", "coconut oil"], "options": [""], "instruction_attributes": ["seed oil", "coconut oil"], "instruction_options": [], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0MY0CSL", "worker_id": "A16IQOX0DK14OJ"}], "B09KQWHSJ8": [{"asin": "B09KQWHSJ8", "instruction": "i\u2019m looking for a wireless headset with microphone , water proof, foldable bluetooth earphones", "attributes": ["noise cancelling", "easy use", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TSMMPM", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09Q13K3Z2": [{"asin": "B09Q13K3Z2", "instruction": "i'm looking for a victorian bed frame, twin queen size with storage space.", "attributes": ["queen size", "easy assemble", "box spring", "storage space"], "options": ["size: twin", "style: victorian"], "instruction_attributes": ["queen size", "storage space"], "instruction_options": ["twin", "victorian"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R8GKSF", "worker_id": "A1Q0EUNCS50S8M"}], "B095Y2KCMJ": [{"asin": "B095Y2KCMJ", "instruction": "i'm looking for rubber sole shoes for men women. it is easy to use.", "attributes": ["non slip", "rubber sole"], "options": ["color: american flag paw black-2", "size: 10.5 women | 9 men"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPWG2K0X", "worker_id": "A16IQOX0DK14OJ"}], "B0823FF5ZV": [{"asin": "B0823FF5ZV", "instruction": "i am looking for a star wars the mandalorian t-shirt which is machine washable and is in the baby blue color.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: baby blue", "fit type: youth", "size: 2t"], "instruction_attributes": ["machine wash"], "instruction_options": ["baby blue"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSODVLLL", "worker_id": "AHXHM1PQTRWIQ"}], "B086JMT1YY": [{"asin": "B086JMT1YY", "instruction": "i would like a black 5xl tunic with short sleeves.", "attributes": ["long sleeve", "short sleeve", "elastic closure", "teen girls"], "options": ["color: z1-black", "size: 5x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["z1-black", "5x-large"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMQIBQT", "worker_id": "A1WS884SI0SLO4"}], "B08CKJJYVP": [{"asin": "B08CKJJYVP", "instruction": "i ma looking for a wireless charging flip cases of midnight green color.", "attributes": ["hands free", "wireless charging"], "options": ["color: midnight green"], "instruction_attributes": ["wireless charging"], "instruction_options": ["midnight green"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTOTQO2", "worker_id": "A9QRQL9CFJBI7"}], "B09JYQS7B4": [{"asin": "B09JYQS7B4", "instruction": "i want dailywear long sleeves big shirt with 20\" neck and 34\" sleeve. the color should be lavender 012(pink)", "attributes": ["long sleeve", "daily wear"], "options": ["color: lt lavender 012 (pink)", "size: 20\" neck 34\" sleeve", "special size: big"], "instruction_attributes": ["long sleeve", "daily wear"], "instruction_options": ["lt lavender 012 (pink)", "20\" neck 34\" sleeve", "big"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU4822UYPI", "worker_id": "ASWFLI3N8X72G"}], "B084YYXLWG": [{"asin": "B084YYXLWG", "instruction": "i would like a 66 inch matte black lamp floor lamp for my living room. i would also like a remote for the lamp.", "attributes": ["long lasting", "easy assemble", "glass shade", "living room"], "options": ["color: matte black", "size: 66inch with remote control"], "instruction_attributes": ["living room"], "instruction_options": ["matte black", "66inch with remote control"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DSC4KR", "worker_id": "A1WS884SI0SLO4"}], "B0872R4BPK": [{"asin": "B0872R4BPK", "instruction": "i am looking for a 1.6 ounce (pack of 6) of cookies which is low carb, high protein, low sugar and gluten free.", "attributes": ["low carb", "high protein", "low sugar", "gluten free", "grain free", "low calorie", "quality ingredients"], "options": ["color: chocolate chip pecan", "size: 1.6 ounce (pack of 6)"], "instruction_attributes": ["low carb", "high protein", "low sugar", "gluten free"], "instruction_options": ["1.6 ounce (pack of 6)"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83KZJI6", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B0872R4BPK", "instruction": "i want low carb chipmonk keto lemon poppyseed cookies.", "attributes": ["low carb", "high protein", "low sugar", "gluten free", "grain free", "low calorie", "quality ingredients"], "options": ["color: lemon poppyseed", "size: 1.7 ounce (pack of 4)"], "instruction_attributes": ["low carb"], "instruction_options": ["lemon poppyseed"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IP3TLG", "worker_id": "A2RBF3IIJP15IH"}], "B07SJRN65L": [{"asin": "B07SJRN65L", "instruction": "order for me a walnut computer desk 39.4 inches made of a solid wood and easy to clean.", "attributes": ["easy install", "easy clean", "steel frame", "solid wood"], "options": ["color: walnut", "size: 39.4 inches"], "instruction_attributes": ["easy clean", "solid wood"], "instruction_options": ["walnut", "39.4 inches"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH186H2", "worker_id": "AHU9OLV0YKIIW"}], "B09H2S4WJ5": [{"asin": "B09H2S4WJ5", "instruction": "i am looking for a large size nylon spandex breathable underwear with elastic waistband .", "attributes": ["nylon spandex", "elastic waistband"], "options": ["color: a3-grey-2157", "size: large"], "instruction_attributes": ["nylon spandex", "elastic waistband"], "instruction_options": ["large"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O112AR", "worker_id": "A1V2JTEEBCXR20"}], "B09D8ZTYND": [{"asin": "B09D8ZTYND", "instruction": "i'm looking for a heavy duty table pads made of ecofriendly materials and also easy to clean for dining room. also, choose 48*60 inch in size new version clear 1.5 mm one.", "attributes": ["heavy duty", "eco friendly", "easy clean", "dining room"], "options": ["color: new version clear 1.5mm", "size: 48x60 inch"], "instruction_attributes": ["heavy duty", "eco friendly", "easy clean", "dining room"], "instruction_options": ["new version clear 1.5mm", "48x60 inch"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSWDGLE", "worker_id": "AR0VJ5XRG16UJ"}], "B01HJWDOPE": [{"asin": "B01HJWDOPE", "instruction": "i am looking for a 1 pack of high speed hdmi cables.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["pattern name: 1 pack", "size: 60 feet", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["1 pack"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP6VOAH", "worker_id": "A9QRQL9CFJBI7"}], "B082D827W8": [{"asin": "B082D827W8", "instruction": "i need to buy two dozen individually wrapped gourmet cookies.", "attributes": ["baked fresh", "individually wrapped"], "options": ["size: 1 | 2 dozen"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["1 | 2 dozen"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4LF89T", "worker_id": "AR9AU5FY1S3RO"}], "B07H3ZCTR2": [{"asin": "B07H3ZCTR2", "instruction": "i am looking for a non gmo gluten free spicy salad dressing ketchup", "attributes": ["non gmo", "gluten free"], "options": [""], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": [], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R13W7R", "worker_id": "A3N9ZYQAESNFQH"}], "B094CWXTJM": [{"asin": "B094CWXTJM", "instruction": "i'm looking for hair extensions for hair loss for dark blonde.", "attributes": ["non slip", "easy use", "hair loss", "hair extensions"], "options": ["color: dark blonde", "size: 6 inch(no bangs)"], "instruction_attributes": ["easy use", "hair loss", "hair extensions"], "instruction_options": ["dark blonde"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZBFPAN", "worker_id": "A16IQOX0DK14OJ"}], "B01F6AQXCM": [{"asin": "B01F6AQXCM", "instruction": "i am looking for fluoride free and sulfate free toothpaste. please choose spearmint flavor..", "attributes": ["fluoride free", "sulfate free", "high quality", "tea tree"], "options": ["flavor name: spearmint"], "instruction_attributes": ["fluoride free", "sulfate free", "tea tree"], "instruction_options": ["spearmint"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4HW15D", "worker_id": "A3FG5PQHG5AH3Y"}], "B000P257CO": [{"asin": "B000P257CO", "instruction": "i am looking for a long lasting parfume gift set", "attributes": ["design house", "long lasting"], "options": ["size: 2 pc gift set", "style: gift set"], "instruction_attributes": ["long lasting"], "instruction_options": ["gift set"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0TJACF", "worker_id": "A9QRQL9CFJBI7"}], "B015SAX8ZA": [{"asin": "B015SAX8ZA", "instruction": "i would like a sugar free bottle of syrup.", "attributes": ["low carb", "non gmo", "gluten free", "keto friendly", "sugar free", "dietary fiber"], "options": [""], "instruction_attributes": ["sugar free"], "instruction_options": [], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOIUTC9", "worker_id": "A1WS884SI0SLO4"}], "B097LVNXLB": [{"asin": "B097LVNXLB", "instruction": "i looking yoga day classic fit ,machine wash ,heathers cotten women t-shirt color:royal blue size 3t", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "button closure", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: women", "size: 3t"], "instruction_attributes": ["machine wash", "heathers cotton", "classic fit"], "instruction_options": ["royal blue", "women", "3t"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLN7I4C", "worker_id": "A3N9ZYQAESNFQH"}], "B07Q33QSYT": [{"asin": "B07Q33QSYT", "instruction": "i'm looking for computer accessories it was silver in color.", "attributes": ["quick release", "heavy duty"], "options": ["color: silver"], "instruction_attributes": ["heavy duty"], "instruction_options": ["silver"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN1VPT5", "worker_id": "A16IQOX0DK14OJ"}], "B08MBRJPDQ": [{"asin": "B08MBRJPDQ", "instruction": "i need a five by four foot light weight, easy to carry background for digital photography.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 5x4ft"], "instruction_attributes": ["light weight", "easy carry", "digital photography"], "instruction_options": ["5x4ft"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TF72KM", "worker_id": "AR9AU5FY1S3RO"}], "B07KKH48DG": [{"asin": "B07KKH48DG", "instruction": "i am looking for 3 piece decorative quilted bedspread set with 2 pillow shams of violet color, that is fit for queen size bed.", "attributes": ["queen size", "high density", "machine washable"], "options": ["color: violet", "size: queen size"], "instruction_attributes": ["queen size"], "instruction_options": ["violet"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTRXKT7", "worker_id": "A258PTOZ3D2TQR"}], "B017ILW1OG": [{"asin": "B017ILW1OG", "instruction": "i am looking for a fully assembled twin box spring and mattress set in king size", "attributes": ["ready use", "fully assembled", "assembly required", "box spring", "king size"], "options": ["size: twin", "style name: 4\" split foundation"], "instruction_attributes": ["fully assembled", "king size"], "instruction_options": ["twin"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7WNHLB", "worker_id": "A13PVNQT2WWWVL"}], "B093YSF315": [{"asin": "B093YSF315", "instruction": "i'm looking for travel laundry bag it will use for travel usage.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIO2583", "worker_id": "A16IQOX0DK14OJ"}], "B08TWXQ5HN": [{"asin": "B08TWXQ5HN", "instruction": "langwolf kids camera, 1080p hd digital camera with 32gb sd card, kids selfie video camera for 3 4 5 6 7 8 9 year olds boys tell me the best option of digital camera hd1080p with an sd card with at least 32gb for boys and girls in the range of 3 to 9 years. i saw a \"langwolf\" brand on tv. send me her features.", "attributes": ["1080p hd", "high definition"], "options": [""], "instruction_attributes": ["1080p hd"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPAEDQK", "worker_id": "A15IJ20C3R4HUO"}], "B09293PTPM": [{"asin": "B09293PTPM", "instruction": "i'm looking for a ottoman 6 seater sofa.", "attributes": ["button tufted", "non slip", "heavy duty", "living room"], "options": ["color: deep grey", "size: love seat couch"], "instruction_attributes": ["living room"], "instruction_options": ["deep grey", "love seat couch"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH2HQHG", "worker_id": "A1ZGOZQF2VZ0X9"}], "B0892RWN9Y": [{"asin": "B0892RWN9Y", "instruction": "i am looking for a sunstone color eyeshadow with paraben free non toxic", "attributes": ["paraben free", "non toxic", "cruelty free", "long lasting", "nail polish"], "options": ["color: sunstone"], "instruction_attributes": ["paraben free", "non toxic"], "instruction_options": ["sunstone"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT0601NUY", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B0892RWN9Y", "instruction": "i'm looking for gypsy amber eyeshadow.", "attributes": ["paraben free", "non toxic", "cruelty free", "long lasting", "nail polish"], "options": ["color: gypsy amber"], "instruction_attributes": ["non toxic", "long lasting"], "instruction_options": ["gypsy amber"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQGQCJA", "worker_id": "A16IQOX0DK14OJ"}], "B07YD5PL4Y": [{"asin": "B07YD5PL4Y", "instruction": "i need king size, machine washable, super soft duvet cover set in multi 41 color.", "attributes": ["super soft", "machine washable", "king size"], "options": ["color: multi 41", "size: king"], "instruction_attributes": ["super soft", "machine washable"], "instruction_options": ["multi 41", "king"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRTOBZ8", "worker_id": "ASWFLI3N8X72G"}, {"asin": "B07YD5PL4Y", "instruction": "i want a twin size and machine washable feelyou blue rose floral duvet cover.", "attributes": ["super soft", "machine washable", "king size"], "options": ["color: multi 4", "size: twin"], "instruction_attributes": ["machine washable"], "instruction_options": ["twin"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVE2SZC", "worker_id": "A2RBF3IIJP15IH"}], "B07V8L4R61": [{"asin": "B07V8L4R61", "instruction": "need me an electric blue, gluten free cake color gel, 1.06 ounces", "attributes": ["nut free", "easy use", "gluten free"], "options": ["color: electric blue"], "instruction_attributes": ["gluten free"], "instruction_options": ["electric blue"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907TGUAZ", "worker_id": "A258PTOZ3D2TQR"}], "B07HRNGS3Q": [{"asin": "B07HRNGS3Q", "instruction": "i am looking for a black power dental flossers for bad breath", "attributes": ["leak proof", "sensitive teeth", "bad breath"], "options": ["color: black"], "instruction_attributes": ["bad breath"], "instruction_options": ["black"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRVKPW2", "worker_id": "A9QRQL9CFJBI7"}], "B09L6B6HGN": [{"asin": "B09L6B6HGN", "instruction": "find me a case with tempered glass for apple watch 45mm color variety", "attributes": ["high performance", "glass screen", "tempered glass"], "options": ["color: black+silver+pink+rose gold+white+classic leopard", "size: only for 45mm"], "instruction_attributes": ["tempered glass"], "instruction_options": ["black+silver+pink+rose gold+white+classic leopard", "only for 45mm"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT2GP3M", "worker_id": "A2Y2TURT2VEYZN"}], "B001UMV18M": [{"asin": "B001UMV18M", "instruction": "i need a deep chestnut brown hair dye that is permanent.", "attributes": ["easy use", "permanent hair", "hair dye", "natural hair"], "options": ["color: 434 deep chestnut brown (chocolate chesnut)"], "instruction_attributes": ["permanent hair", "hair dye"], "instruction_options": ["434 deep chestnut brown (chocolate chesnut)"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHCME1M", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B001UMV18M", "instruction": "i need a dark brown permanent hair dye. it should be easy to use.", "attributes": ["easy use", "permanent hair", "hair dye", "natural hair"], "options": ["color: 40 dark brown (dark chocolate)"], "instruction_attributes": ["easy use", "permanent hair", "hair dye"], "instruction_options": ["40 dark brown (dark chocolate)"], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE10TJI", "worker_id": "A1NF6PELRKACS9"}], "B083GGC2N9": [{"asin": "B083GGC2N9", "instruction": "i am looking for modern high performance 3-way tower speaker, it should have left & right pair d17 speaker (black)", "attributes": ["high performance", "carbon fiber"], "options": ["style: left & right pair d17 speaker (black)"], "instruction_attributes": ["high performance"], "instruction_options": ["left & right pair d17 speaker (black)"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7W3UC3", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B083GGC2N9", "instruction": "i'm looking for d17(dedicated right, back) high performance 3-way tower speaker made with carbon fiber", "attributes": ["high performance", "carbon fiber"], "options": ["style: d17\u00a0(dedicated right, black)"], "instruction_attributes": ["high performance", "carbon fiber"], "instruction_options": ["d17\u00a0(dedicated right, black)"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NO8P23", "worker_id": "A1Q0EUNCS50S8M"}], "B09P56Q9FQ": [{"asin": "B09P56Q9FQ", "instruction": "i would like a large pair of multicolored boxer briefs that are machine washable.", "attributes": ["machine washable", "hand wash", "comfortable fit", "elastic waistband"], "options": ["color: multi *18", "size: large"], "instruction_attributes": ["machine washable"], "instruction_options": ["multi *18", "large"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVCGV8C", "worker_id": "A1WS884SI0SLO4"}], "B00H9V37Q2": [{"asin": "B00H9V37Q2", "instruction": "i am looking for a long lasting eau de parfum", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCKPLB8", "worker_id": "A9QRQL9CFJBI7"}], "B08R7W8QRK": [{"asin": "B08R7W8QRK", "instruction": "i need a valentines day chocolate gift box.", "attributes": ["valentine day", "gift basket"], "options": ["style: chocolate gift box"], "instruction_attributes": ["valentine day"], "instruction_options": ["chocolate gift box"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI3L3TL", "worker_id": "A19317A3X87NVM"}], "B07X7HPYNS": [{"asin": "B07X7HPYNS", "instruction": "i need some special hair conditioner for damaged hair.", "attributes": ["paraben free", "damaged hair"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1A4YG9", "worker_id": "A19317A3X87NVM"}], "B01LMMZY6O": [{"asin": "B01LMMZY6O", "instruction": "i am looking for a 2.53 fl oz hyaluronic acid cc creams", "attributes": ["hyaluronic acid", "dark circles"], "options": ["color: rich honey (w)", "size: 2.53 fl oz"], "instruction_attributes": ["hyaluronic acid"], "instruction_options": ["2.53 fl oz"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UU3J6D", "worker_id": "A9QRQL9CFJBI7"}], "B09M91MRZS": [{"asin": "B09M91MRZS", "instruction": "i'm looking for clothing its was short sleeve and regular fit. its easily to wear.", "attributes": ["regular fit", "short sleeve"], "options": ["color: hi bite size | black", "size: x-large"], "instruction_attributes": ["regular fit", "short sleeve"], "instruction_options": ["hi bite size | black"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY868N81E", "worker_id": "A16IQOX0DK14OJ"}], "B007K649KO": [{"asin": "B007K649KO", "instruction": "i need to satisfy my desire to eat g.h. cretors popcorn, the mix, 1.5 oz. (pack of 12). i prefer this brand because it is a healthy, gluten-free and non-gmo option. find the 8 ounce pack", "attributes": ["non gmo", "gluten free", "quality ingredients"], "options": ["flavor name: buffalo & ranch", "size: 8 ounce (pack of 12)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["buffalo & ranch", "8 ounce (pack of 12)"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQL613O", "worker_id": "A15IJ20C3R4HUO"}], "B07RML64XD": [{"asin": "B07RML64XD", "instruction": "i am looking for trader joe's apple sauce crushers.", "attributes": ["trader joe", "usda organic", "gluten free"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO4K2CR", "worker_id": "A39VVWV1GHLMFD"}], "B004JLGC12": [{"asin": "B004JLGC12", "instruction": "i am looking for a paraben free and dermatologist tested exfoliating body wash with pink lemon and mandarin orange extracts.", "attributes": ["dermatologist tested", "paraben free"], "options": ["size: 13.5 fl oz (pack of 1)", "style: pink lemon and mandarin orange"], "instruction_attributes": ["dermatologist tested", "paraben free"], "instruction_options": ["pink lemon and mandarin orange"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FJUU4Y", "worker_id": "A1V2JTEEBCXR20"}, {"asin": "B004JLGC12", "instruction": "i am looking fir paraben free body wash.please choose vanilla style.", "attributes": ["dermatologist tested", "paraben free"], "options": ["size: 13.5 fl oz (pack of 6)", "style: vanilla"], "instruction_attributes": ["paraben free"], "instruction_options": ["vanilla"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU80MCZ", "worker_id": "A3FG5PQHG5AH3Y"}], "B0744ZJP2M": [{"asin": "B0744ZJP2M", "instruction": "find me a gold plated stereo audio cable that works well with a power amplifier and is 5ft long.", "attributes": ["power amplifier", "gold plated"], "options": ["color: 5ft"], "instruction_attributes": ["power amplifier", "gold plated"], "instruction_options": ["5ft"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL0CVAC", "worker_id": "A1HMZJ59OPLD1P"}], "B08YDRBP2J": [{"asin": "B08YDRBP2J", "instruction": "i'm looking for a high density gaming chair with lumbar support which is made of pu leather. also, choose cool blue colored one.", "attributes": ["high density", "white item", "lumbar support", "pu leather"], "options": ["color: cool blue"], "instruction_attributes": ["high density", "lumbar support", "pu leather"], "instruction_options": ["cool blue"], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q43IIK", "worker_id": "AR0VJ5XRG16UJ"}], "B00AY351OI": [{"asin": "B00AY351OI", "instruction": "i'm looking for a oil free, fragrance free pressed powder that should be long lasting when applied. also choose 290 natural ochre one.", "attributes": ["oil free", "fragrance free", "long lasting"], "options": ["color: 290 natural ochre"], "instruction_attributes": ["oil free", "fragrance free", "long lasting"], "instruction_options": ["290 natural ochre"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R6UKSP", "worker_id": "AR0VJ5XRG16UJ"}], "B08P3P4KP9": [{"asin": "B08P3P4KP9", "instruction": "i need ready to shake high protein mocktail which is lactose, soy & gluten free.", "attributes": ["lactose free", "soy free", "high protein", "gluten free"], "options": [""], "instruction_attributes": ["lactose free", "soy free", "high protein", "gluten free"], "instruction_options": [], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53X7KGG", "worker_id": "ASWFLI3N8X72G"}], "B00TB3QJ7U": [{"asin": "B00TB3QJ7U", "instruction": "i need a ten pack of male to female hdmi cables that are three feet long, high speed, and gold plated.", "attributes": ["high speed", "gold plated"], "options": ["pattern name: 10 pack", "size: hdmi male to female", "style: 3 ft"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack", "hdmi male to female", "3 ft"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYWYHV7", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B00TB3QJ7U", "instruction": "i am looking for high speed 8ft style hdmi cable.", "attributes": ["high speed", "gold plated"], "options": ["pattern name: 1 pack", "size: hdmi male to female", "style: 8 ft"], "instruction_attributes": ["high speed"], "instruction_options": ["8 ft"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW8UT4J", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00TB3QJ7U", "instruction": "i am looking for a 30 foot gold plated high speed hdmi cable.", "attributes": ["high speed", "gold plated"], "options": ["pattern name: 1 pack", "size: hdmi male to male", "style: 30 ft"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["30 ft"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W81UOB", "worker_id": "A1EREKSZAA9V7B"}], "B09MW7P4PH": [{"asin": "B09MW7P4PH", "instruction": "i'm looking for binoculars for bird watching even at so far.", "attributes": ["high power", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK2VJ3Z", "worker_id": "A16IQOX0DK14OJ"}], "B07GR317N3": [{"asin": "B07GR317N3", "instruction": "i\u2019m looking for rockport lace up shoes for men", "attributes": ["day comfort", "comfortable fit", "synthetic sole", "rubber outsole"], "options": ["color: dark brown tumbled leather", "size: 12 narrow"], "instruction_attributes": ["comfortable fit", "synthetic sole"], "instruction_options": ["dark brown tumbled leather", "12 narrow"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KOQLJJ", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08Y5YY53J": [{"asin": "B08Y5YY53J", "instruction": "i am in need of a sunflower piggy printed protection case cover for iphone 6 plus", "attributes": ["high definition", "case cover", "wireless charging"], "options": ["color: sunflower piggy", "size: iphone 6 plus | 6s plus"], "instruction_attributes": ["case cover"], "instruction_options": ["sunflower piggy", "iphone 6 plus | 6s plus"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRS89EU9", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08Y5YY53J", "instruction": "i need iphone 11 wireless charging", "attributes": ["high definition", "case cover", "wireless charging"], "options": ["color: cute owl", "size: iphone 11"], "instruction_attributes": ["wireless charging"], "instruction_options": ["iphone 11"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBE1JDC", "worker_id": "A226L9F2AZ38CL"}], "B07QFZ4FVH": [{"asin": "B07QFZ4FVH", "instruction": "i want easy use high quality nail art equipment for nail art", "attributes": ["easy use", "nail art"], "options": [""], "instruction_attributes": ["easy use", "nail art"], "instruction_options": [], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EEU1BS", "worker_id": "A3N9ZYQAESNFQH"}], "B094F7PR1C": [{"asin": "B094F7PR1C", "instruction": "please re order a 9188 -red brown leather duo motor recliner chair and should be of high density and easy to clean.", "attributes": ["high density", "easy clean", "faux leather", "wood frame", "solid wood"], "options": ["color: 9188-red-brown leather"], "instruction_attributes": ["high density", "easy clean"], "instruction_options": ["9188-red-brown leather"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7X99RFN", "worker_id": "AHU9OLV0YKIIW"}], "B093YSSQ4W": [{"asin": "B093YSSQ4W", "instruction": "i am looking for a wallets for blouse hosiery & laundry bag", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXXFO4O", "worker_id": "A9QRQL9CFJBI7"}], "B08JCJ2KFB": [{"asin": "B08JCJ2KFB", "instruction": "i would like a plant based shampoo.", "attributes": ["design house", "plant based"], "options": [""], "instruction_attributes": ["plant based"], "instruction_options": [], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBDRSO8", "worker_id": "A1WS884SI0SLO4"}], "B08FJ4H5LS": [{"asin": "B08FJ4H5LS", "instruction": "i am looking for a travel size perfume with long lasting fragrance. also choose coco mademoiselle + j'adore impression scent.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: coco mademoiselle + j'adore impression"], "instruction_attributes": ["travel size", "long lasting"], "instruction_options": ["coco mademoiselle + j'adore impression"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOZ37OP", "worker_id": "A2HMEGTAFO0CS8"}], "B09HW6VVVR": [{"asin": "B09HW6VVVR", "instruction": "i am looking for a tan memory foam slipper", "attributes": ["non slip", "anti slip", "moisture wicking", "machine washable", "machine wash", "rubber sole", "memory foam", "laundry bag", "daily wear"], "options": ["color: tan", "size: 12"], "instruction_attributes": ["memory foam"], "instruction_options": ["tan"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK47CA6R", "worker_id": "A9QRQL9CFJBI7"}], "B085NK43LF": [{"asin": "B085NK43LF", "instruction": "power cord cable outlet plug lead for fm stereo sound rider with output protection", "attributes": ["output protection", "stereo sound"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "352YTHGRO6NQF252G9RXYWYALB7H4Z", "worker_id": "A10OGH5CQBXL5N"}], "B08PN4HT3W": [{"asin": "B08PN4HT3W", "instruction": "in the last order i bought the sauce from the brand org\u00e2nicville organic, caesar sauce, the taste is very good .no dairy, 8 fz i want to repeat this order .", "attributes": ["non dairy", "high fructose"], "options": [""], "instruction_attributes": ["non dairy"], "instruction_options": [], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD10RID", "worker_id": "A15IJ20C3R4HUO"}], "B08PNNV9K8": [{"asin": "B08PNNV9K8", "instruction": "i looking hair styling fine mist sprayers refillable bottles color :pink", "attributes": ["fine mist", "hair styling"], "options": ["color: pink | 10 ounce"], "instruction_attributes": ["fine mist", "hair styling"], "instruction_options": ["pink | 10 ounce"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK467A6K", "worker_id": "A3N9ZYQAESNFQH"}], "B07MP1QM5Y": [{"asin": "B07MP1QM5Y", "instruction": "i'm looking for a rca 3-device universal remote control for repacement.", "attributes": ["batteries included", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61U0ZW6", "worker_id": "A1ZGOZQF2VZ0X9"}], "B088FLL9JY": [{"asin": "B088FLL9JY", "instruction": "i am looking for a 50 ml leak proof bags & cases", "attributes": ["leak proof", "non toxic", "easy carry", "fine mist"], "options": ["color: silver1", "size: 50ml"], "instruction_attributes": ["leak proof"], "instruction_options": ["50ml"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUVUJQP", "worker_id": "A9QRQL9CFJBI7"}], "B09FDW71SF": [{"asin": "B09FDW71SF", "instruction": "i am looking for a black knee high mid-calf", "attributes": ["knee high", "non slip", "rubber sole"], "options": ["color: black", "size: 8"], "instruction_attributes": ["knee high"], "instruction_options": [], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTRX5EZ", "worker_id": "A9QRQL9CFJBI7"}], "B09SQ79S1R": [{"asin": "B09SQ79S1R", "instruction": "i'm looking for skin buttock lifting clothing it can use for machine washing.", "attributes": ["butt lifting", "low rise", "wide leg", "machine wash", "elastic closure", "tumble dry"], "options": ["size: medium"], "instruction_attributes": ["wide leg", "machine wash", "elastic closure"], "instruction_options": ["medium"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZW9AN7", "worker_id": "A16IQOX0DK14OJ"}], "B01M278GOF": [{"asin": "B01M278GOF", "instruction": "find me natural hair gels that use seed oil as a main ingredient.", "attributes": ["seed oil", "natural ingredients"], "options": [""], "instruction_attributes": ["seed oil", "natural ingredients"], "instruction_options": [], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRF3NWM", "worker_id": "A3AK3UL0UCNVKE"}], "B07ZFGY6H9": [{"asin": "B07ZFGY6H9", "instruction": "i'm looking for palazzo pants its easy to wear and it was straight leg.", "attributes": ["wide leg", "straight leg", "wash cold", "hand wash", "machine wash", "elastic closure", "elastic waist", "high waist", "polyester spandex"], "options": ["color: blacklittledot", "size: x-large"], "instruction_attributes": ["wide leg", "straight leg", "hand wash", "machine wash", "elastic waist", "high waist", "polyester spandex"], "instruction_options": ["blacklittledot"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU6DLR6", "worker_id": "A16IQOX0DK14OJ"}], "B0773T5G7Y": [{"asin": "B0773T5G7Y", "instruction": "i am looking for gluten free almond cranberry crunch.", "attributes": ["artificial ingredients", "non gmo", "gluten free", "simple ingredients", "quality ingredients"], "options": ["flavor name: almond cranberry crunch", "size: 78 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["almond cranberry crunch"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCSA56D", "worker_id": "A3FG5PQHG5AH3Y"}], "B097PNKNSM": [{"asin": "B097PNKNSM", "instruction": "i am looking for a nail art for practice hands & fingers.", "attributes": ["high quality", "nail art"], "options": ["pattern name: practice hand"], "instruction_attributes": ["nail art"], "instruction_options": ["practice hand"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IWZKHS", "worker_id": "A9QRQL9CFJBI7"}], "B07V5G1RRB": [{"asin": "B07V5G1RRB", "instruction": "i'm looking for blankets it was super soft and it is easy to clean.", "attributes": ["super soft", "machine washable", "easy clean"], "options": ["color: a657", "size: 50\" x 60\""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9MTB04", "worker_id": "A16IQOX0DK14OJ"}], "B08YDNMW8S": [{"asin": "B08YDNMW8S", "instruction": "i'm looking for a 2.75 inch partywoo birthday blue candles .", "attributes": ["birthday cake", "party supplies", "birthday party"], "options": ["color: rose gold", "size: number 1"], "instruction_attributes": ["party supplies", "birthday party"], "instruction_options": ["rose gold", "number 1"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCJ3PIA", "worker_id": "A1ZGOZQF2VZ0X9"}], "B093YSDRGB": [{"asin": "B093YSDRGB", "instruction": "i am looking for a wallets of blouse hosiery and laundry bag", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3X65QVEQIBXVW21709CD9M35U4CCLR", "worker_id": "A9QRQL9CFJBI7"}], "B08VRCCK9V": [{"asin": "B08VRCCK9V", "instruction": "i need a 1 pack of high quality hair piece shaped like donuts . an i would prefer 30# color", "attributes": ["high quality", "natural hair", "synthetic hair", "hair extensions"], "options": ["color: 30#", "size: 1 count (pack of 1)"], "instruction_attributes": ["high quality"], "instruction_options": ["30#", "1 count (pack of 1)"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FEZK85", "worker_id": "A2COCSUGZV28X"}], "B08TLVTW38": [{"asin": "B08TLVTW38", "instruction": "i will like to have the low fat silver hills steady eddie bread, made with organic sprouted grains, non-gmo, the big 16", "attributes": ["plant based", "non gmo", "low fat", "nut free"], "options": ["flavor name: the big 16", "size: 5 piece assortment"], "instruction_attributes": ["non gmo", "low fat"], "instruction_options": [], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6F8EVO", "worker_id": "A1IL2K0ELYI090"}], "B0035Q2Q12": [{"asin": "B0035Q2Q12", "instruction": "i am looking for flower glass shade floor lamp", "attributes": ["bronze finish", "glass shade"], "options": [""], "instruction_attributes": ["glass shade"], "instruction_options": [], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VHP8EV", "worker_id": "A258PTOZ3D2TQR"}], "B09FSSFPR7": [{"asin": "B09FSSFPR7", "instruction": "i am looking for a 4g lte coaxial cable.", "attributes": ["heavy duty", "coaxial cable", "4g lte"], "options": [""], "instruction_attributes": ["coaxial cable", "4g lte"], "instruction_options": [], "assignment_id": "3TR2532VI040LV46NXNX77Y3UUYJ68", "worker_id": "A39VVWV1GHLMFD"}], "B08KJGG1TY": [{"asin": "B08KJGG1TY", "instruction": "i would like a 3 pound bag of unsalted deluxe nut mix that are in a resealable bag.", "attributes": ["kosher certified", "non gmo", "resealable bag"], "options": ["flavor name: unsalted deluxe mix", "size: 3 pound"], "instruction_attributes": ["resealable bag"], "instruction_options": ["unsalted deluxe mix", "3 pound"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSK7B8T", "worker_id": "A1WS884SI0SLO4"}], "B095CGDBX3": [{"asin": "B095CGDBX3", "instruction": "i am looking for small sized with eastic waist men short.", "attributes": ["daily casual", "drawstring waist", "drawstring closure", "elastic waist", "classic fit"], "options": ["color: green bottom", "size: small"], "instruction_attributes": ["elastic waist"], "instruction_options": ["small"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFDFVL0", "worker_id": "A3FG5PQHG5AH3Y"}], "B097H8P7MN": [{"asin": "B097H8P7MN", "instruction": "i am looking for tempered glass screen protector for iphone xr.", "attributes": ["heavy duty", "non slip", "high definition", "tempered glass", "glass screen"], "options": ["color: black"], "instruction_attributes": ["tempered glass", "glass screen"], "instruction_options": ["black"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK71NVE", "worker_id": "A3FG5PQHG5AH3Y"}], "B09MLNM1T3": [{"asin": "B09MLNM1T3", "instruction": "i am looking for a breathable and slip resistant shoe with rubber sole for men. also choose size 8.", "attributes": ["non slip", "slip resistant", "rubber sole"], "options": ["color: black-lace up", "size: 8"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["8"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOFMTAK", "worker_id": "A1V2JTEEBCXR20"}], "B09MN9BTFC": [{"asin": "B09MN9BTFC", "instruction": "am looking for a long lasting reddhoon metallic nail polish blue and purple colors", "attributes": ["long lasting", "easy apply", "easy use", "nail art", "nail polish"], "options": ["color: blue purple"], "instruction_attributes": ["long lasting"], "instruction_options": ["blue purple"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMJZIZF", "worker_id": "A1IL2K0ELYI090"}], "B088LVQZ8M": [{"asin": "B088LVQZ8M", "instruction": "i am looking for a high-quality facial table bed that will be effective for giving clients massages and tattoos in my beauty salon", "attributes": ["high quality", "beauty salon"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0W9CCO", "worker_id": "A1HMZJ59OPLD1P"}], "B08QHX9ZGK": [{"asin": "B08QHX9ZGK", "instruction": "i am looking for a metal legs chair for living room which is east to assemble. also choose velvet black color.", "attributes": ["easy clean", "easy assemble", "metal legs", "living room", "dining room"], "options": ["color: velvet black"], "instruction_attributes": ["easy assemble", "metal legs", "living room"], "instruction_options": ["velvet black"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU6NRLM", "worker_id": "A2HMEGTAFO0CS8"}], "B08VW7Y2B8": [{"asin": "B08VW7Y2B8", "instruction": "find me a watch band in hyper grape color that is made of stainless steel and goes with my apple iwatch.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: hyper grape", "size: 38 | 40 | 41mm"], "instruction_attributes": ["compatible apple", "stainless steel"], "instruction_options": ["hyper grape"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUTCZF11", "worker_id": "A1NF6PELRKACS9"}], "B01N9VRK5O": [{"asin": "B01N9VRK5O", "instruction": "i am looking for a single pack of 8 ounce dried cherries that are gluten free.", "attributes": ["non gmo", "gluten free", "dietary fiber"], "options": ["flavor name: dried organic wild bilberries", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2T6L42", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B01N9VRK5O", "instruction": "i need wild blueberries that are dried and non gmo that is 8 oz.", "attributes": ["non gmo", "gluten free", "dietary fiber"], "options": ["flavor name: dried organic wild blueberries", "size: 8 ounce"], "instruction_attributes": ["non gmo"], "instruction_options": ["dried organic wild blueberries", "8 ounce"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49F2TDZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PZC19WJ": [{"asin": "B09PZC19WJ", "instruction": "i'm looking for furniture to make my living room and dinning room so nice.", "attributes": ["long lasting", "metal legs", "dining room", "living room"], "options": [""], "instruction_attributes": ["dining room", "living room"], "instruction_options": [], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69NUP8Y", "worker_id": "A16IQOX0DK14OJ"}], "B07DRPSWX6": [{"asin": "B07DRPSWX6", "instruction": "i am looking for king size pillows in plum", "attributes": ["super soft", "king size"], "options": ["color: plum", "size: queen"], "instruction_attributes": ["king size"], "instruction_options": ["plum"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A14HFB", "worker_id": "A2MSIFDLOHI1UT"}], "B019EGM8FU": [{"asin": "B019EGM8FU", "instruction": "i am looking for a 12 count (pack of 1) of gluten free raspberry cashew & chia", "attributes": ["low sodium", "gluten free", "0g trans"], "options": ["flavor name: milk chocolate almond", "size: 12 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["12 count (pack of 1)"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYOM6MS", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B019EGM8FU", "instruction": "i am looking for a 12 pack of gluten free bars that are dark chocolate almond", "attributes": ["low sodium", "gluten free", "0g trans"], "options": ["flavor name: dark chocolate chili almond", "size: 12 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["dark chocolate chili almond", "12 count (pack of 1)"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57H4I9V", "worker_id": "A2ECRNQ3X5LEXD"}], "B074YN5HNL": [{"asin": "B074YN5HNL", "instruction": "i'm looking for a memias premium window sheer voile curtains", "attributes": ["machine washable", "long lasting", "white item", "brushed nickel"], "options": ["color: butter cream", "size: 54\"w x 63\"l"], "instruction_attributes": ["white item"], "instruction_options": ["butter cream", "54\"w x 63\"l"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVND71K", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09MHJSG85": [{"asin": "B09MHJSG85", "instruction": "i'm looking for a portable nail clippers.", "attributes": ["stainless steel", "nail art", "dead skin"], "options": ["color: 02"], "instruction_attributes": ["stainless steel", "dead skin"], "instruction_options": ["02"], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YKXAG9", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09D59L59Y": [{"asin": "B09D59L59Y", "instruction": "i am looking for a grey mules & clogs for day comfert", "attributes": ["day comfort", "ethylene vinyl", "vinyl acetate", "arch support"], "options": ["color: grey", "size: 8.5"], "instruction_attributes": ["day comfort"], "instruction_options": ["grey"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R890RJ", "worker_id": "A9QRQL9CFJBI7"}], "B09K4575MQ": [{"asin": "B09K4575MQ", "instruction": "i am looking for birthday cake toppers of black 65 pattern.", "attributes": ["birthday cake", "cupcake picks", "birthday party"], "options": ["pattern name: black 65"], "instruction_attributes": ["birthday cake"], "instruction_options": ["black 65"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70I9VBCY", "worker_id": "A3FG5PQHG5AH3Y"}], "B09DGR2TJC": [{"asin": "B09DGR2TJC", "instruction": "i would like some cake toppers for a baby shower or birthday party.", "attributes": ["baby shower", "birthday party", "party supplies"], "options": [""], "instruction_attributes": ["baby shower", "birthday party"], "instruction_options": [], "assignment_id": "34PGFRQONZLYFAJCEF0151XGIW8WJ3", "worker_id": "A1WS884SI0SLO4"}], "B07WS7VZQJ": [{"asin": "B07WS7VZQJ", "instruction": "i am in need of some cupcake toppers that have a birthday party theme and is meant for a baby shower.", "attributes": ["birthday party", "party supplies", "baby shower"], "options": [""], "instruction_attributes": ["birthday party", "baby shower"], "instruction_options": [], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHZLB7O", "worker_id": "A1NF6PELRKACS9"}], "B09NDWTV9B": [{"asin": "B09NDWTV9B", "instruction": "i want a hoodie for couple with quality polyester in size medium black", "attributes": ["long lasting", "quality polyester"], "options": ["color: black", "size: medium", "special size type: men"], "instruction_attributes": ["quality polyester"], "instruction_options": ["black", "medium"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPPLFWD", "worker_id": "A2Y2TURT2VEYZN"}], "B08CDP994X": [{"asin": "B08CDP994X", "instruction": "i'm looking for keto friendly it has low sugar its good for health.", "attributes": ["low carb", "grain free", "non gmo", "low sugar", "gluten free", "soy free", "keto friendly", "dairy free"], "options": ["color: coconut, almond & pecan", "size: 4 count (pack of 4)"], "instruction_attributes": ["grain free", "low sugar", "gluten free", "soy free", "keto friendly", "dairy free"], "instruction_options": ["coconut, almond & pecan"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49I0TD3", "worker_id": "A16IQOX0DK14OJ"}], "B078SRYXM8": [{"asin": "B078SRYXM8", "instruction": "i am looking for a general colored floor lamp for my living room. it should be easy to clean and assemble.", "attributes": ["long lasting", "easy clean", "easy assemble", "living room"], "options": ["color: style-2 general"], "instruction_attributes": ["easy clean", "easy assemble", "living room"], "instruction_options": ["style-2 general"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8B45A7", "worker_id": "A1NF6PELRKACS9"}], "B00BNOQQEG": [{"asin": "B00BNOQQEG", "instruction": "help me find 2 fl oz (pack of 24) gluten free non gmo butter extract made without artificial colors.", "attributes": ["non gmo", "gluten free", "artificial colors"], "options": ["flavor name: butter extract", "size: 2 fl oz (pack of 24)"], "instruction_attributes": ["non gmo", "gluten free", "artificial colors"], "instruction_options": ["butter extract", "2 fl oz (pack of 24)"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB98QN8X", "worker_id": "A3AYHESLQSDY5T"}], "B08LH9PXPZ": [{"asin": "B08LH9PXPZ", "instruction": "i would like a pair of women's size 14.5 black work shoes with a steel toe.", "attributes": ["slip resistant", "steel toe", "rubber outsole", "rubber sole"], "options": ["color: black", "size: 14.5 women | 13 men"], "instruction_attributes": ["steel toe"], "instruction_options": ["black", "14.5 women | 13 men"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKEQ88V", "worker_id": "A1WS884SI0SLO4"}], "B09KZTD2NB": [{"asin": "B09KZTD2NB", "instruction": "i'm looking for decorative pillows and covers for dinning room.", "attributes": ["dining room", "living room"], "options": ["color: wood hockey rose"], "instruction_attributes": ["dining room"], "instruction_options": ["wood hockey rose"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU9OMCP", "worker_id": "A16IQOX0DK14OJ"}], "B095S8341G": [{"asin": "B095S8341G", "instruction": "i need a small spray fine mist with 100 ml amber for travel, makeup etc", "attributes": ["leak proof", "fine mist"], "options": ["color: amber", "size: 100ml"], "instruction_attributes": ["fine mist"], "instruction_options": ["amber", "100ml"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZLY7C6", "worker_id": "A258PTOZ3D2TQR"}], "B06WLPJPDZ": [{"asin": "B06WLPJPDZ", "instruction": "i am looking for a fluoride free, paraben free toothpaste.", "attributes": ["fluoride free", "paraben free"], "options": [""], "instruction_attributes": ["fluoride free", "paraben free"], "instruction_options": [], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQXS4BU", "worker_id": "A9QRQL9CFJBI7"}], "B09S3QKSWW": [{"asin": "B09S3QKSWW", "instruction": "i am looking for 9pcs of hair growth essence spray.", "attributes": ["easy use", "hair growth", "hair loss", "damaged hair", "natural hair"], "options": ["color: 9pcs"], "instruction_attributes": ["hair growth"], "instruction_options": ["9pcs"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2SK5MI", "worker_id": "A3FG5PQHG5AH3Y"}], "B00A2AX4Y2": [{"asin": "B00A2AX4Y2", "instruction": "i am looking for a natural ingredients soap", "attributes": ["animal testing", "natural ingredients"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7Y7P5C", "worker_id": "A9QRQL9CFJBI7"}], "B08P4LL9G2": [{"asin": "B08P4LL9G2", "instruction": "in hunt for a paraben free, weave tea tree and borage seed oil scalp treatment soother oil serum for scalps in a 2 ounce bottle for wigs made by the sheamoisture company.", "attributes": ["paraben free", "tea tree", "seed oil", "hair treatment", "damaged hair", "dry hair"], "options": [""], "instruction_attributes": ["paraben free", "tea tree", "seed oil", "damaged hair"], "instruction_options": [], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YL4AGI", "worker_id": "A3RGIKEI8JS2QG"}], "B07YKBG1FD": [{"asin": "B07YKBG1FD", "instruction": "i would like a pair of size 12 black oxford shoes with a leather sole.", "attributes": ["anti slip", "leather sole"], "options": ["color: 3#black", "size: 12"], "instruction_attributes": ["leather sole"], "instruction_options": ["3#black", "12"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1GE080", "worker_id": "A1WS884SI0SLO4"}], "B007D7DM08": [{"asin": "B007D7DM08", "instruction": "i'm looking for teeth whitening for prevention of oral care.", "attributes": ["teeth whitening", "storage case", "bad breath"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRFTWNL", "worker_id": "A16IQOX0DK14OJ"}], "B09QX7T1PW": [{"asin": "B09QX7T1PW", "instruction": "i am looking for an easy apply concealer foundation makeup cosmetics that can cover dark circles. a light skin tone will work well for me.", "attributes": ["easy apply", "long lasting", "dark circles"], "options": ["color: light skin tone"], "instruction_attributes": ["easy apply", "dark circles"], "instruction_options": ["light skin tone"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJNTW0N", "worker_id": "A39VVWV1GHLMFD"}], "B09QK4LW5H": [{"asin": "B09QK4LW5H", "instruction": "i'm looking for a portable computer speakers that has plug play and power amplifier.", "attributes": ["plug play", "power amplifier"], "options": [""], "instruction_attributes": ["plug play", "power amplifier"], "instruction_options": [], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8V6G8I", "worker_id": "AR0VJ5XRG16UJ"}], "B094F7LXBS": [{"asin": "B094F7LXBS", "instruction": "i'm looking for apple smartwatch acesseries it is easy to use.", "attributes": ["compatible apple", "easy install"], "options": ["color: blue & white porcelain", "size: 44mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["blue & white porcelain"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS4VVUH", "worker_id": "A16IQOX0DK14OJ"}], "B09KG2B4XX": [{"asin": "B09KG2B4XX", "instruction": "i am looking for a high performance 4g lte android tablet.", "attributes": ["high performance", "4g lte"], "options": [""], "instruction_attributes": ["high performance", "4g lte"], "instruction_options": [], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZBHUW6", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09KG2B4XX", "instruction": "i'm looking for 10 inch android tablet with dual 4g lte.", "attributes": ["high performance", "4g lte"], "options": [""], "instruction_attributes": ["4g lte"], "instruction_options": [], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4M498L", "worker_id": "A21IUUHBSEVB56"}], "B08WHQ8SHJ": [{"asin": "B08WHQ8SHJ", "instruction": "i am looking for a low calorie, gluten free tortilla with chia and sesame seeds.", "attributes": ["low calorie", "keto friendly", "gluten free"], "options": [""], "instruction_attributes": ["low calorie", "gluten free"], "instruction_options": [], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6DGUPB", "worker_id": "AJDQGOTMB2D80"}], "B07KG3NLVH": [{"asin": "B07KG3NLVH", "instruction": "find me a long lasting and anti perspirant deodorant", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": [], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYEZ82T", "worker_id": "A2Y2TURT2VEYZN"}], "B00J8E93G6": [{"asin": "B00J8E93G6", "instruction": "i'm looking for white colored plug play and it will use for video accesseories.", "attributes": ["plug play", "easy install"], "options": ["color: white", "size: 8gb", "style: ddr3 1600mhz"], "instruction_attributes": ["plug play"], "instruction_options": ["white"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FDGK8K", "worker_id": "A16IQOX0DK14OJ"}], "B08792CRQ6": [{"asin": "B08792CRQ6", "instruction": "universal smart controller with big buttons tool for tv stb dvd with aaa batteries", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN13PTD", "worker_id": "A10OGH5CQBXL5N"}], "B09GFWF132": [{"asin": "B09GFWF132", "instruction": "show me a apple compatible white sport band made from stainless steel and in 40 mm size.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: lavender grey | cactus | black | white | hibiscus", "size: 38 | 40 | 41mm s | m"], "instruction_attributes": ["compatible apple", "stainless steel"], "instruction_options": ["lavender grey | cactus | black | white | hibiscus", "38 | 40 | 41mm s | m"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7V4UC2", "worker_id": "A3AYHESLQSDY5T"}], "B08N4T81LQ": [{"asin": "B08N4T81LQ", "instruction": "i am looking for a pink cupcake toppers, cupcake picks for baby shower birthday party party supplies", "attributes": ["cupcake picks", "baby shower", "birthday party", "party supplies"], "options": ["color: pink"], "instruction_attributes": ["cupcake picks", "baby shower", "birthday party", "party supplies"], "instruction_options": ["pink"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYP57NH", "worker_id": "A9QRQL9CFJBI7"}], "B08HH9R9GM": [{"asin": "B08HH9R9GM", "instruction": "show me a light weight non slipping men's walking shoes with rubber outsole in cuenca split leather burgundy color and 9.5 size.", "attributes": ["light weight", "non slip", "ethylene vinyl", "vinyl acetate", "rubber outsole"], "options": ["color: cuenca split leather burgundy", "size: 9.5"], "instruction_attributes": [], "instruction_options": ["cuenca split leather burgundy"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWTZD795", "worker_id": "A3AYHESLQSDY5T"}], "B08SM9QQJJ": [{"asin": "B08SM9QQJJ", "instruction": "i want to find hair extensions that are strawberry blonde to medium brown, and they need to be 18 inches long.", "attributes": ["hair extensions", "natural hair"], "options": ["color: #4 | 27 strawberry blonde to medium brown", "size: 120g-18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#4 | 27 strawberry blonde to medium brown", "120g-18 inch"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTP2KT8", "worker_id": "A345TDMHP3DQ3G"}], "B09HCRF6RQ": [{"asin": "B09HCRF6RQ", "instruction": "i'm looking for clothing long sleeve its for women's. it was easy to use.", "attributes": ["long sleeve", "polyester spandex", "teen girls"], "options": ["color: a6-yellow", "size: 3x-large"], "instruction_attributes": ["long sleeve", "teen girls"], "instruction_options": ["a6-yellow"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL3JNSL", "worker_id": "A16IQOX0DK14OJ"}], "B09PGFDCZB": [{"asin": "B09PGFDCZB", "instruction": "i am looking for a black valentines day women\u2019s medium jumpsuit and should be a high quality material.", "attributes": ["long sleeve", "quality materials", "polyester spandex"], "options": ["color: black", "size: medium"], "instruction_attributes": ["quality materials"], "instruction_options": [], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPH76VI", "worker_id": "AHU9OLV0YKIIW"}], "B09SYTR26S": [{"asin": "B09SYTR26S", "instruction": "i'm looking for a high quality, non toxic massage table sheets made of quality materials that is easy to clean for a beauty salon. also, choose 70 * 185 cm sized purple colored one.", "attributes": ["high quality", "non toxic", "easy clean", "quality materials", "beauty salon"], "options": ["color: purple", "size: 70*185cm"], "instruction_attributes": ["high quality", "non toxic", "easy clean", "quality materials", "beauty salon"], "instruction_options": ["purple", "70*185cm"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTTJXWM", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B09SYTR26S", "instruction": "i would like a purple 70 by 190 cm linen for my beauty salon that is easy to clean.", "attributes": ["high quality", "non toxic", "easy clean", "quality materials", "beauty salon"], "options": ["color: purple", "size: 70*190cm"], "instruction_attributes": ["easy clean", "beauty salon"], "instruction_options": ["purple", "70*190cm"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVRQX9M", "worker_id": "A1WS884SI0SLO4"}], "B09KM5R2RX": [{"asin": "B09KM5R2RX", "instruction": "i need a warm winter coat for women with faux fur.", "attributes": ["winter warm", "hand wash", "stretch fabric", "long sleeve", "faux fur", "polyester spandex", "short sleeve", "daily wear"], "options": ["color: fall winter women tops new arrivals - c309-blue", "size: large"], "instruction_attributes": ["winter warm", "faux fur"], "instruction_options": ["fall winter women tops new arrivals - c309-blue"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A09HFE", "worker_id": "A19317A3X87NVM"}], "B09JP4M2WW": [{"asin": "B09JP4M2WW", "instruction": "i'm looking for a 3 boho wall decor mid century modern wall art by gubiyu", "attributes": ["mid century", "ready hang", "living room", "dining room"], "options": ["color: teal and pink", "size: 24x36 inch (60x90cm)*3pcs"], "instruction_attributes": ["mid century", "living room"], "instruction_options": ["teal and pink", "24x36 inch (60x90cm)*3pcs"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40ILXN3", "worker_id": "A1ZGOZQF2VZ0X9"}], "B094Q1893G": [{"asin": "B094Q1893G", "instruction": "i am looking for eco friendly scented candles", "attributes": ["lead free", "eco friendly", "long lasting", "soy wax"], "options": ["color: scented candles gift set - c"], "instruction_attributes": ["eco friendly"], "instruction_options": ["scented candles gift set - c"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UTI0YB", "worker_id": "A2MSIFDLOHI1UT"}], "B086JQS639": [{"asin": "B086JQS639", "instruction": "i am looking for a 1082 white sports bras for daily casual.", "attributes": ["moisture wicking", "daily casual"], "options": ["color: 1082 white", "size: large"], "instruction_attributes": ["daily casual"], "instruction_options": ["1082 white"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ0SNRN", "worker_id": "A9QRQL9CFJBI7"}], "B09RWRKNGM": [{"asin": "B09RWRKNGM", "instruction": "i am looking for a medium short sleeve control slips", "attributes": ["fleece lined", "long sleeve", "short sleeve"], "options": ["color: a11 - purple", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["medium"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIWAMTW", "worker_id": "A9QRQL9CFJBI7"}], "B08BW4HZ7R": [{"asin": "B08BW4HZ7R", "instruction": "i'm looking for protein crunch bars that are grain free, high in protein, and keto friendly. also they should be peanut cinnamon hemp flavor.", "attributes": ["grain free", "keto friendly", "gluten free", "soy free", "high protein", "quality ingredients"], "options": ["flavor name: peanut cinnamon hemp", "size: 1.89 ounce (pack of 12)"], "instruction_attributes": ["grain free", "keto friendly", "high protein"], "instruction_options": ["peanut cinnamon hemp"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA932CZ38", "worker_id": "A34EHWOYRBL6OZ"}], "B00940MS5C": [{"asin": "B00940MS5C", "instruction": "i am looking for a craft table with steel frame that comes with a padded stool.", "attributes": ["coated steel", "steel frame"], "options": [""], "instruction_attributes": ["steel frame"], "instruction_options": [], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPLSE66", "worker_id": "AJDQGOTMB2D80"}], "B003G84QWQ": [{"asin": "B003G84QWQ", "instruction": "parmcrisps - all parm crisps cheese, made simply with 100% real cheese | healthy keto snacks, low carb, high protein, gluten free, oven baked, keto-friendly find for me, parm crisps brand, as it is oven baked, gluten free, low carb. excellent product that helps me maintain my low carb diet. my favorite flavor is italian herb. find this flavor.", "attributes": ["keto friendly", "low carb", "sugar free", "gluten free", "low sugar", "high protein", "non gmo"], "options": ["flavor name: italian herb"], "instruction_attributes": ["low carb", "gluten free"], "instruction_options": ["italian herb"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X6E3YN", "worker_id": "A15IJ20C3R4HUO"}], "B099N65WM4": [{"asin": "B099N65WM4", "instruction": "i need a dense cotton mattress cover.", "attributes": ["high density", "long lasting", "heavy duty"], "options": ["material type: cotton", "size: 4\" x 24\" x78\""], "instruction_attributes": ["high density"], "instruction_options": ["cotton"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTM2O6M", "worker_id": "A19317A3X87NVM"}], "B0861RT8HC": [{"asin": "B0861RT8HC", "instruction": "i would like 18 bags of 1.25 croele party mix that is gluten free.", "attributes": ["protein serving", "non gmo", "gluten free"], "options": ["flavor name: creole", "size: 1.25 ounce (pack of 18)"], "instruction_attributes": ["gluten free"], "instruction_options": ["creole", "1.25 ounce (pack of 18)"], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQU15BG", "worker_id": "A1WS884SI0SLO4"}], "B07BJ1DGCP": [{"asin": "B07BJ1DGCP", "instruction": "i looking a dark chocolate gift basket pack for valentine day size -2 pound", "attributes": ["chocolate covered", "quality ingredients", "valentine day", "gift basket"], "options": ["flavor name: dark chocolate", "size: 2 pound"], "instruction_attributes": ["valentine day", "gift basket"], "instruction_options": ["dark chocolate", "2 pound"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDIB2OW", "worker_id": "A3N9ZYQAESNFQH"}], "B01LZI0UK9": [{"asin": "B01LZI0UK9", "instruction": "i need plant based and sulfate free shampoo which prevents hair loss and regenerates hair growth.", "attributes": ["plant based", "sulfate free", "hair loss", "hair growth"], "options": [""], "instruction_attributes": ["plant based", "sulfate free", "hair loss", "hair growth"], "instruction_options": [], "assignment_id": "369J354OFOKQUTE5FR2UAU6N21LG63", "worker_id": "ASWFLI3N8X72G"}], "B07P5QJGYB": [{"asin": "B07P5QJGYB", "instruction": "i am searching for beige color memory foam upholstered fabric platform bed", "attributes": ["box spring", "memory foam"], "options": ["color: beige"], "instruction_attributes": ["memory foam"], "instruction_options": ["beige"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMWYAS2", "worker_id": "A258PTOZ3D2TQR"}], "B082BHTXKJ": [{"asin": "B082BHTXKJ", "instruction": "i'm looking for clothing jeans it will use for easy to machinable wash.", "attributes": ["machine wash", "imported zipper"], "options": [": traditional jeans", "color: on that mountain", "fit type: regular", "size: 36w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["traditional jeans", "on that mountain"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK46NA60", "worker_id": "A16IQOX0DK14OJ"}], "B08YJTZQ3R": [{"asin": "B08YJTZQ3R", "instruction": "i'm looking for butt lifting and the clothing for quick drying and high waist.", "attributes": ["butt lifting", "quick drying", "moisture wicking", "tummy control", "high waist", "polyester spandex"], "options": ["color: z-zxzblue", "size: small"], "instruction_attributes": ["butt lifting", "quick drying", "high waist"], "instruction_options": ["z-zxzblue"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I1Q1S1", "worker_id": "A16IQOX0DK14OJ"}], "B00PYUS4IQ": [{"asin": "B00PYUS4IQ", "instruction": "i am looking a dark olive color oil free fine mist foundation", "attributes": ["oil free", "fragrance free", "fine mist"], "options": ["color: dark olive"], "instruction_attributes": ["oil free", "fine mist"], "instruction_options": ["dark olive"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8PU6QQ", "worker_id": "A3N9ZYQAESNFQH"}], "B01M5AU5DH": [{"asin": "B01M5AU5DH", "instruction": "i'm looking for buy a rugs for kitchen rugs.", "attributes": ["mid century", "long lasting", "contemporary design", "living room"], "options": ["color: blue-taupe", "item shape: rectangular", "size: 7 ft. x 9 ft."], "instruction_attributes": ["long lasting", "contemporary design"], "instruction_options": ["blue-taupe"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTIDD4J", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B01M5AU5DH", "instruction": "i would like a 5 by 8 ft light blue runner rug for the living room.", "attributes": ["mid century", "long lasting", "contemporary design", "living room"], "options": ["color: light blue | ivory", "item shape: runner", "size: 5 ft x 8 ft"], "instruction_attributes": ["living room"], "instruction_options": ["light blue | ivory", "runner", "5 ft x 8 ft"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQ9MKVQ", "worker_id": "A1WS884SI0SLO4"}], "B000R4JHZS": [{"asin": "B000R4JHZS", "instruction": "i am looking for a 0g trans bagels.", "attributes": ["0g trans", "high fructose"], "options": [""], "instruction_attributes": ["0g trans"], "instruction_options": [], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R70KSX", "worker_id": "A9QRQL9CFJBI7"}], "B07ZNTM2L5": [{"asin": "B07ZNTM2L5", "instruction": "please re order deep conditioning hair treatment for my natural hair and should be 4.06 fl oz.", "attributes": ["hair treatment", "natural hair", "hair growth"], "options": ["size: 4.06 fl oz (pack of 1)"], "instruction_attributes": ["hair treatment", "natural hair"], "instruction_options": ["4.06 fl oz (pack of 1)"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ3VSIE", "worker_id": "AHU9OLV0YKIIW"}], "B07SXDCJ8Y": [{"asin": "B07SXDCJ8Y", "instruction": "i'm looking for optical zoom camera it contains stereo sound.", "attributes": ["ultra hd", "optical zoom", "stereo sound"], "options": [""], "instruction_attributes": ["ultra hd", "optical zoom", "stereo sound"], "instruction_options": [], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q6PIIA", "worker_id": "A16IQOX0DK14OJ"}], "B09H4YFG3T": [{"asin": "B09H4YFG3T", "instruction": "i want to find a matte black hair removal trimmer.", "attributes": ["high quality", "hair removal"], "options": ["color: matte black"], "instruction_attributes": ["hair removal"], "instruction_options": ["matte black"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK0YIU2", "worker_id": "A345TDMHP3DQ3G"}], "B095PXPXY7": [{"asin": "B095PXPXY7", "instruction": "i'm looking for a long lasting hydrating lip gloss that contains hyaluronic acid. also, choose name drop one.", "attributes": ["long lasting", "hyaluronic acid"], "options": ["color: name drop"], "instruction_attributes": ["long lasting", "hyaluronic acid"], "instruction_options": ["name drop"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2N9NYR", "worker_id": "AR0VJ5XRG16UJ"}], "B07KGNDN6Q": [{"asin": "B07KGNDN6Q", "instruction": "i would like a black nightstand for my kid that is made of engineered wood.", "attributes": ["assembly required", "engineered wood"], "options": ["color: black", "size: childrens"], "instruction_attributes": ["engineered wood"], "instruction_options": ["black", "childrens"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT0607UNB", "worker_id": "A1WS884SI0SLO4"}], "B086CXB31T": [{"asin": "B086CXB31T", "instruction": "hey !order for me women\u2019s sun sandals size 10 and should come with a synthetic sole and a open toe.", "attributes": ["open toe", "synthetic sole"], "options": ["color: blush reflective", "size: 10"], "instruction_attributes": ["open toe", "synthetic sole"], "instruction_options": ["10"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F21DOHK", "worker_id": "AHU9OLV0YKIIW"}], "B08HHLN3V4": [{"asin": "B08HHLN3V4", "instruction": "i am looking for a 1.5mm anti aging cotton swabs", "attributes": ["anti aging", "fine lines"], "options": ["size: 1.5mm"], "instruction_attributes": ["anti aging"], "instruction_options": ["1.5mm"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA6N8RG", "worker_id": "A9QRQL9CFJBI7"}], "B09HJ9L74K": [{"asin": "B09HJ9L74K", "instruction": "i want bowl to have in a bowl, soy wax scented candle which is lead free.", "attributes": ["lead free", "soy wax"], "options": ["scent: bowl to have in a bowl"], "instruction_attributes": ["lead free", "soy wax"], "instruction_options": ["bowl to have in a bowl"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79KFQKG", "worker_id": "ASWFLI3N8X72G"}, {"asin": "B09HJ9L74K", "instruction": "i need some candles that are made with soy wax and that have a pretty scent.", "attributes": ["lead free", "soy wax"], "options": ["scent: pretty is as pretty does"], "instruction_attributes": ["soy wax"], "instruction_options": ["pretty is as pretty does"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRT8PWM", "worker_id": "A2ECRNQ3X5LEXD"}], "B003K15U2Y": [{"asin": "B003K15U2Y", "instruction": "i'm looking for clothing accessories for women's.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": [""], "instruction_attributes": ["vinyl acetate"], "instruction_options": [], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q48GW0", "worker_id": "A16IQOX0DK14OJ"}], "B09J8FXQKG": [{"asin": "B09J8FXQKG", "instruction": "i'm looking for a high quality salon and spa chair for hair and beauty salon. also, choose grey colored one.", "attributes": ["high quality", "hair salon", "beauty salon"], "options": ["color: grey"], "instruction_attributes": ["high quality", "hair salon", "beauty salon"], "instruction_options": ["grey"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKKS7DM", "worker_id": "AR0VJ5XRG16UJ"}], "B07T94Q186": [{"asin": "B07T94Q186", "instruction": "looking for a cream | gray which is easy to clean.", "attributes": ["spot clean", "easy clean", "living room", "dining room"], "options": ["color: cream | gray", "size: 3 x 5"], "instruction_attributes": ["easy clean"], "instruction_options": ["cream | gray"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYRKZOB", "worker_id": "A9QRQL9CFJBI7"}], "B09LM1ZTM8": [{"asin": "B09LM1ZTM8", "instruction": "i want a pink color easy assemble height adjustable 26\"h -2 chair bar stool", "attributes": ["height adjustable", "high density", "easy assemble"], "options": ["color: pink", "size: 26\"h-2 chairs"], "instruction_attributes": ["height adjustable", "easy assemble"], "instruction_options": [], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IB5CBD", "worker_id": "A3N9ZYQAESNFQH"}], "B09KBWR214": [{"asin": "B09KBWR214", "instruction": "i'm looking for a blue, 10.1 inch android tablet that has dual cameras and a long-lasting battery.", "attributes": ["high performance", "long lasting", "high definition"], "options": ["color: blue"], "instruction_attributes": ["long lasting"], "instruction_options": ["blue"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQEAQSF", "worker_id": "A3HFKFJ5UDWAMC"}], "B075SWK9DV": [{"asin": "B075SWK9DV", "instruction": "i am looking for a blue classic fit shirts for men.", "attributes": ["machine wash", "classic fit", "relaxed fit", "long sleeve"], "options": ["color: blue", "pocket description: no pocket", "size: 18\" neck 34\" sleeve"], "instruction_attributes": ["classic fit"], "instruction_options": ["blue"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG1445R", "worker_id": "A9QRQL9CFJBI7"}], "B09JC2MQMF": [{"asin": "B09JC2MQMF", "instruction": "i would like a some black camera batteries that are easy to install.", "attributes": ["quick release", "plug play", "easy install", "easy use"], "options": ["color: b-black"], "instruction_attributes": ["easy install"], "instruction_options": ["b-black"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q55KDK", "worker_id": "A1WS884SI0SLO4"}], "B09PBKBPCT": [{"asin": "B09PBKBPCT", "instruction": "i would like a women's 3xl black blouse that is long sleeved.", "attributes": ["easy care", "loose fit", "hand wash", "long sleeve", "drawstring waist", "short sleeve", "daily wear"], "options": ["color: black", "size: 3x-large", "special size: women"], "instruction_attributes": ["long sleeve"], "instruction_options": ["black", "3x-large", "women"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5WZF44", "worker_id": "A1WS884SI0SLO4"}], "B07NHZSPY8": [{"asin": "B07NHZSPY8", "instruction": "hi there, can you search the web for the price of a 30 pack of sugar-free limon to drink while on my low-carb diet.", "attributes": ["low carb", "gluten free", "zero sugar"], "options": ["flavor name: limon", "size: 0.38 ounce (pack of 30)"], "instruction_attributes": ["low carb", "zero sugar"], "instruction_options": ["limon", "0.38 ounce (pack of 30)"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EB906UT", "worker_id": "A1ZAK79QAHNW2J"}], "B08C2NJYPJ": [{"asin": "B08C2NJYPJ", "instruction": "i am looking for flat open toe slipper in z1-02 black", "attributes": ["open toe", "arch support"], "options": ["color: z1-02 black", "size: 42=us:10"], "instruction_attributes": ["open toe"], "instruction_options": ["z1-02 black"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH24H6B", "worker_id": "A2MSIFDLOHI1UT"}], "B096PGWDYN": [{"asin": "B096PGWDYN", "instruction": "i am looking for eco friendly roller shades for windows in charcoal gray color", "attributes": ["eco friendly", "easy clean"], "options": ["color: charcoal gray", "size: 40\" w x 68\""], "instruction_attributes": ["eco friendly"], "instruction_options": ["charcoal gray"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTPMOQV", "worker_id": "A16M39T60N60NO"}], "B092J8JNQ1": [{"asin": "B092J8JNQ1", "instruction": "i'm looking for a 40 pieces hair satin foam rollers perm rods.", "attributes": ["easy use", "hair styling"], "options": ["size: 0.6 inch (pack of 40)"], "instruction_attributes": ["hair styling"], "instruction_options": ["0.6 inch (pack of 40)"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8N8L2NW", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09QJJPNMB": [{"asin": "B09QJJPNMB", "instruction": "i'm looking for a closed toe sandals with arch support and lace closure. also, choose 5.5 size black colored one.", "attributes": ["non slip", "hand wash", "lace closure", "high heel", "closed toe", "arch support"], "options": ["color: black", "size: 5.5"], "instruction_attributes": ["lace closure", "closed toe", "arch support"], "instruction_options": ["black", "5.5"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANGNSX2", "worker_id": "AR0VJ5XRG16UJ"}], "B08DW5G5JX": [{"asin": "B08DW5G5JX", "instruction": "please order for me 6 packs of black eye peas that are gluten free and non gmo.", "attributes": ["gluten free", "non gmo"], "options": ["flavor name: black eye peas", "size: 1 pound (pack of 6)"], "instruction_attributes": ["gluten free", "non gmo"], "instruction_options": ["black eye peas", "1 pound (pack of 6)"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSCFWC5", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B08DW5G5JX", "instruction": "i'm looking for camellia brand dried field peas.", "attributes": ["gluten free", "non gmo"], "options": ["flavor name: green split peas", "size: 1 pound (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["1 pound (pack of 12)"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907W0UAP", "worker_id": "A21IUUHBSEVB56"}], "B09KCJQ88D": [{"asin": "B09KCJQ88D", "instruction": "i would like a 30 x 40 inches multicolored super soft fleece throw.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 2", "size: 30 x 40 inches"], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["multi 2", "30 x 40 inches"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP50J7P", "worker_id": "A1WS884SI0SLO4"}], "B095HDHRWV": [{"asin": "B095HDHRWV", "instruction": "i want a solid wood sofa bed that goes in my living room. pick a 2 seater.", "attributes": ["wood frame", "solid wood", "living room"], "options": ["size: 2 seat"], "instruction_attributes": ["solid wood", "living room"], "instruction_options": ["2 seat"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWZMR1I", "worker_id": "A1NF6PELRKACS9"}], "B0081E6YX4": [{"asin": "B0081E6YX4", "instruction": "i'm looking for a clincally proven hyaluronic acid 20% vitamin c serum that helps with fine lines.", "attributes": ["clinically proven", "hyaluronic acid", "fine lines"], "options": ["style: 20% vitamin c serum"], "instruction_attributes": ["clinically proven", "hyaluronic acid", "fine lines"], "instruction_options": ["20% vitamin c serum"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSOPX05", "worker_id": "A2CJFO19NY4T5R"}], "B09M6TRN3W": [{"asin": "B09M6TRN3W", "instruction": "i'm looking for engineered wood it was white finish grey in color.", "attributes": ["space saving", "white item", "easy clean", "white finish", "wood frame", "box spring"], "options": ["color: grey", "style: loft bed w | long desk & bookcase"], "instruction_attributes": ["white item", "easy clean", "white finish"], "instruction_options": ["grey"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1EVCXO", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09M6TRN3W", "instruction": "i want gray startogoo twin low bunk bed with wood frame.", "attributes": ["space saving", "white item", "easy clean", "white finish", "wood frame", "box spring"], "options": ["color: gray 2", "style: twin size loft bed w | desk"], "instruction_attributes": ["wood frame"], "instruction_options": ["gray 2"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU6J9AW", "worker_id": "A2RBF3IIJP15IH"}], "B07B5VSTNR": [{"asin": "B07B5VSTNR", "instruction": "i am looking for chocolate gift set.", "attributes": ["old fashioned", "quality ingredients", "gift set", "valentine day", "gift basket"], "options": ["flavor name: chocolate", "size: 2 lb"], "instruction_attributes": ["gift set"], "instruction_options": ["chocolate"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QVE07H", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07B5VSTNR", "instruction": "i am looking for chocolate flavor milk chocolate for valentine day.", "attributes": ["old fashioned", "quality ingredients", "gift set", "valentine day", "gift basket"], "options": ["flavor name: chocolate", "size: 5 lb"], "instruction_attributes": ["valentine day"], "instruction_options": ["chocolate"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR7L0AH", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07B5VSTNR", "instruction": "i want a 2lb box of old fashioned milk and dark chocolate nuts.", "attributes": ["old fashioned", "quality ingredients", "gift set", "valentine day", "gift basket"], "options": ["flavor name: mixed - milk (65%) & dark (35%)", "size: 2 lb"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["mixed - milk (65%) & dark (35%)", "2 lb"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YUP8T4", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07B5VSTNR", "instruction": "i am looking for an old fashioned 1 pound peanut cluster milk chocolate", "attributes": ["old fashioned", "quality ingredients", "gift set", "valentine day", "gift basket"], "options": ["flavor name: dark chocolate", "size: 3 lb"], "instruction_attributes": ["old fashioned"], "instruction_options": ["3 lb"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HRNPB1", "worker_id": "A2KW17G25L25R8"}], "B01IYB6NOS": [{"asin": "B01IYB6NOS", "instruction": "i am looking for a hygiene tongue cleaner for fresh breath. also choose 6 count pack.", "attributes": ["oral hygiene", "fresh breath", "bad breath"], "options": ["size: 6 count (pack of 1)"], "instruction_attributes": ["oral hygiene", "fresh breath"], "instruction_options": ["6 count (pack of 1)"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7YO6Y6", "worker_id": "A2HMEGTAFO0CS8"}], "B07ND51YPC": [{"asin": "B07ND51YPC", "instruction": "i am looking loose leaf green flavor non gmo usda organic herbal tea size:1 pouch (pack of 1)", "attributes": ["usda organic", "non gmo"], "options": ["flavor name: green", "size: 1 pound (pack of 1)", "style: loose leaf"], "instruction_attributes": ["usda organic", "non gmo"], "instruction_options": ["green", "1 pound (pack of 1)", "loose leaf"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSXPLGX", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B07ND51YPC", "instruction": "i want milk thistle tea bags. make sure that it has an usda organic label.", "attributes": ["usda organic", "non gmo"], "options": ["flavor name: milk thistle", "size: 1 pound (pack of 1)", "style: tea bags"], "instruction_attributes": ["usda organic"], "instruction_options": ["milk thistle", "tea bags"], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YNLGA9", "worker_id": "A1NF6PELRKACS9"}], "B09RSXM68P": [{"asin": "B09RSXM68P", "instruction": "i'm looking for a light weight fashion designed pure cotton men's briefs. also, choose medium sized b gray colored one.", "attributes": ["light weight", "hand wash", "fashion design"], "options": ["color: b gray", "size: medium"], "instruction_attributes": ["light weight", "fashion design"], "instruction_options": ["b gray", "medium"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQLA31U", "worker_id": "AR0VJ5XRG16UJ"}], "B07DZW6GQV": [{"asin": "B07DZW6GQV", "instruction": "i need a pack of long lasting argan oil lotion. pick one that is 16.8 fl oz in size.", "attributes": ["long lasting", "dermatologist tested", "argan oil"], "options": ["size: 16.8 fl oz (pack of 1)", "style: hydrating coconut lotion"], "instruction_attributes": ["long lasting", "argan oil"], "instruction_options": ["16.8 fl oz (pack of 1)"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOKT0FJ", "worker_id": "A1NF6PELRKACS9"}], "B09L2C7P75": [{"asin": "B09L2C7P75", "instruction": "i would like a pendant light fixture.", "attributes": ["pendant light", "light fixture"], "options": [""], "instruction_attributes": ["pendant light", "light fixture"], "instruction_options": [], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTOHLP6", "worker_id": "A1WS884SI0SLO4"}], "B08T5PZHM9": [{"asin": "B08T5PZHM9", "instruction": "show me a bright green art wall sculptures for living room made through exquisite workmanship.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: bright green"], "instruction_attributes": ["exquisite workmanship", "living room"], "instruction_options": ["bright green"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGBKSMX", "worker_id": "A3AYHESLQSDY5T"}], "B095Z82R7X": [{"asin": "B095Z82R7X", "instruction": "i would like a cube of individually wrapped sugarolly candy for a birthday party.", "attributes": ["individually wrapped", "birthday party"], "options": ["flavor name: sugarolly - big", "size: cube (7)"], "instruction_attributes": ["individually wrapped", "birthday party"], "instruction_options": ["sugarolly - big", "cube (7)"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WR0QWO", "worker_id": "A1WS884SI0SLO4"}], "B08PCF2428": [{"asin": "B08PCF2428", "instruction": "i'm looking for clothing to wear comfortable and everyday wear.", "attributes": ["comfortable fit", "rubber outsole", "rubber sole", "everyday wear"], "options": ["color: black | white", "size: 15"], "instruction_attributes": ["comfortable fit", "everyday wear"], "instruction_options": ["black | white"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YZ6HE8", "worker_id": "A16IQOX0DK14OJ"}], "B07968GK3T": [{"asin": "B07968GK3T", "instruction": "order for me sour gummies that are dairy free,gluten free and with good quality ingredients.", "attributes": ["dairy free", "gluten free", "nut free", "fat free", "quality ingredients"], "options": ["flavor name: sour", "size: 7.5 ounce (pack of 12)"], "instruction_attributes": ["gluten free", "quality ingredients"], "instruction_options": ["sour"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22LMW8R", "worker_id": "AHU9OLV0YKIIW"}], "B08QYPJMQ3": [{"asin": "B08QYPJMQ3", "instruction": "i'm looking for buy a chocolates and candys gits for valentines day a perfect gift.", "attributes": ["kosher certified", "individually wrapped", "valentine day", "perfect gift"], "options": ["size: 1000 count (25 pound) bulk"], "instruction_attributes": ["valentine day", "perfect gift"], "instruction_options": ["1000 count (25 pound) bulk"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788EWC5N", "worker_id": "A16IQOX0DK14OJ"}], "B07J9Q794H": [{"asin": "B07J9Q794H", "instruction": "crystal rhinestone phone ring and stand hands free in gold colour", "attributes": ["gold plated", "hands free"], "options": ["color: gold | rainbow"], "instruction_attributes": ["hands free"], "instruction_options": ["gold | rainbow"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HGCRHY5", "worker_id": "A10OGH5CQBXL5N"}], "B094D7Y7MS": [{"asin": "B094D7Y7MS", "instruction": "i'm looking for camera for digital photography. the camera was easy to carry at.", "attributes": ["high resolution", "easy carry", "high definition", "digital photography"], "options": ["size: 24x12in | 60x30cm"], "instruction_attributes": ["easy carry", "high definition", "digital photography"], "instruction_options": ["24x12in | 60x30cm"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNLDNTO", "worker_id": "A16IQOX0DK14OJ"}], "B08XMHLGKS": [{"asin": "B08XMHLGKS", "instruction": "i am looking for an easy to use seasoning mix in the green raita flavor.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: green raita", "size: 5.29 ounce (pack of 1)"], "instruction_attributes": ["easy use"], "instruction_options": ["green raita"], "assignment_id": "351SEKWQSBRP7CP60H83T50CF9QMDF", "worker_id": "A1NF6PELRKACS9"}], "B07PPH541B": [{"asin": "B07PPH541B", "instruction": "i am searching for easy to use mascara brushes. also, choose the pink one.", "attributes": ["easy use", "nail art"], "options": ["color: pink"], "instruction_attributes": ["easy use"], "instruction_options": ["pink"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOILHFEY", "worker_id": "A9ZM1P6LBW79"}], "B08QZM336G": [{"asin": "B08QZM336G", "instruction": "show me some long lasting honeysuckle jasmine colored candles made from soy wax.", "attributes": ["long lasting", "soy wax"], "options": ["color: honeysuckle jasmine"], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": ["honeysuckle jasmine"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKE0885", "worker_id": "A3AYHESLQSDY5T"}], "B004U6TMCM": [{"asin": "B004U6TMCM", "instruction": "i am looking a eye cream for dark circles.", "attributes": ["long lasting", "dark circles", "fine lines", "sensitive skin"], "options": [""], "instruction_attributes": ["dark circles"], "instruction_options": [], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWNC25X", "worker_id": "A9QRQL9CFJBI7"}], "B01IPZCPXQ": [{"asin": "B01IPZCPXQ", "instruction": "i'm looking for a permanent hair dye which is paraben free and should be cruelty free certified. also choose a pack of 1 with 3.99 fl oz and pillarbox red colored one.", "attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "options": ["color: pillarbox red", "size: 3.99 fl oz (pack of 1)"], "instruction_attributes": ["paraben free", "cruelty free", "hair dye", "permanent hair"], "instruction_options": ["pillarbox red", "3.99 fl oz (pack of 1)"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPATORZ", "worker_id": "AR0VJ5XRG16UJ"}], "B09SGFC3ST": [{"asin": "B09SGFC3ST", "instruction": "i am looking for a hot pink machine washable bikinis sets", "attributes": ["machine washable", "tummy control"], "options": ["color: hot pink", "size: xx-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["hot pink"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA6I8RB", "worker_id": "A9QRQL9CFJBI7"}], "B09PFNQFJY": [{"asin": "B09PFNQFJY", "instruction": "i'm looking for long sleeve tops it can makes feel comfortable.", "attributes": ["loose fit", "long sleeve", "button closure", "short sleeve"], "options": ["color: a02-green", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a02-green"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79QJ1HQ", "worker_id": "A16IQOX0DK14OJ"}], "B07DP8SCK4": [{"asin": "B07DP8SCK4", "instruction": "i am looking for a water resistant minimalist shoe with rubber sole for a man. also choose storm navy color and size no 9.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: storm navy", "size: 10 women | 9 men"], "instruction_attributes": ["water resistant", "rubber sole"], "instruction_options": ["storm navy", "10 women | 9 men"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLZDBYA", "worker_id": "A2HMEGTAFO0CS8"}], "B000YDE46Y": [{"asin": "B000YDE46Y", "instruction": "i'm looking for a day comfort men's boots with synthetic sole. also, choose 12 size burnished gold colored one.", "attributes": ["day comfort", "synthetic sole"], "options": ["color: burnished gold", "size: 12"], "instruction_attributes": ["day comfort", "synthetic sole"], "instruction_options": ["burnished gold", "12"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB41JXYL", "worker_id": "AR0VJ5XRG16UJ"}], "B084TJHF2F": [{"asin": "B084TJHF2F", "instruction": "find me a super soft round table cloth that is 70\"x70\" in size.", "attributes": ["machine washable", "super soft", "eco friendly", "easy clean"], "options": ["color: pattern02", "size: 70\"x70\"(diameter 178cm)"], "instruction_attributes": ["super soft"], "instruction_options": ["70\"x70\"(diameter 178cm)"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMKBXV6", "worker_id": "A1NF6PELRKACS9"}], "B07R9LPVK9": [{"asin": "B07R9LPVK9", "instruction": "i am looking for non gmo chopped pecan nuts of 4 pound size.", "attributes": ["non gmo", "dietary fiber"], "options": ["size: 4 pound"], "instruction_attributes": ["non gmo"], "instruction_options": ["4 pound"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7Y56YN", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07R9LPVK9", "instruction": "i would like a 8 ounce pack of non gmo pecans.", "attributes": ["non gmo", "dietary fiber"], "options": ["size: 8 ounce (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHD3E15", "worker_id": "A1WS884SI0SLO4"}], "B082Q61BS5": [{"asin": "B082Q61BS5", "instruction": "i need a pre shampoo treatment for damaged hair.", "attributes": ["damaged hair", "natural hair"], "options": ["scent: pre-shampoo"], "instruction_attributes": ["damaged hair"], "instruction_options": ["pre-shampoo"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIII299", "worker_id": "A19317A3X87NVM"}], "B07JVBSCWJ": [{"asin": "B07JVBSCWJ", "instruction": "i am searching for a certified refurbished all-in-one printer with high performance.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished", "high performance"], "instruction_options": [], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5GE1ZU", "worker_id": "A9ZM1P6LBW79"}], "B09LQ9SZPH": [{"asin": "B09LQ9SZPH", "instruction": "i'm looking for furniture for living room that wood framed furniture is easy to use.", "attributes": ["assembly required", "faux leather", "wood frame", "storage space", "living room"], "options": ["color: red"], "instruction_attributes": ["assembly required", "wood frame", "storage space", "living room"], "instruction_options": ["red"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS35401A8UMM", "worker_id": "A16IQOX0DK14OJ"}], "B07SG76JPK": [{"asin": "B07SG76JPK", "instruction": "i'm looking for a keratin hair treatment kit which has anti aging property and made of natural ingredients. also, choose 3.4 fl oz one", "attributes": ["anti aging", "natural ingredients", "hair treatment"], "options": ["style name: 3.4 fl oz kit"], "instruction_attributes": ["anti aging", "natural ingredients", "hair treatment"], "instruction_options": ["3.4 fl oz kit"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8B0A58", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B07SG76JPK", "instruction": "i use mostly natural ingredients for my skin in 10.1 fl oz", "attributes": ["anti aging", "natural ingredients", "hair treatment"], "options": ["style name: 10.1 fl oz kit"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["10.1 fl oz kit"], "assignment_id": "326O153BMT8RVOXTJJKKGXV3697EDU", "worker_id": "A226L9F2AZ38CL"}], "B098QFDZDH": [{"asin": "B098QFDZDH", "instruction": "i am looking for oil free foundation for dry skin. please choose mocha color.", "attributes": ["oil free", "easy carry", "long lasting", "easy use"], "options": ["color: mocha"], "instruction_attributes": ["oil free"], "instruction_options": ["mocha"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOZI7O4", "worker_id": "A3FG5PQHG5AH3Y"}], "B07V4LPY51": [{"asin": "B07V4LPY51", "instruction": "i am interested in purchasing a cruelty free lip enhancer with natural ingredients in the color teal.", "attributes": ["clinically proven", "cruelty free", "natural ingredients", "fine lines"], "options": ["color: teal"], "instruction_attributes": ["cruelty free", "natural ingredients"], "instruction_options": ["teal"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRSQBZ8", "worker_id": "AHXHM1PQTRWIQ"}], "B07WF7ZYP6": [{"asin": "B07WF7ZYP6", "instruction": "i want some headphone amplifiers with a power adapter.", "attributes": ["high power", "power amplifier"], "options": [""], "instruction_attributes": ["high power", "power amplifier"], "instruction_options": [], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FNYFBQ", "worker_id": "A345TDMHP3DQ3G"}], "B09C5RCSN5": [{"asin": "B09C5RCSN5", "instruction": "i am looking non slip glass screen heavy duty protective case cover -purple", "attributes": ["heavy duty", "non slip", "case cover", "glass screen", "tempered glass"], "options": ["color: purple"], "instruction_attributes": ["non slip", "case cover"], "instruction_options": ["purple"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7V5CUL", "worker_id": "A3N9ZYQAESNFQH"}], "B00P4GFA3C": [{"asin": "B00P4GFA3C", "instruction": "i want cacao powder 3 pound pack sugar free and certified organic", "attributes": ["sugar free", "certified organic", "non gmo", "plant based", "keto friendly"], "options": ["flavor name: cacao powder", "size: 3 pound (pack of 1)"], "instruction_attributes": ["sugar free", "certified organic"], "instruction_options": ["cacao powder", "3 pound (pack of 1)"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDW0I1RQ", "worker_id": "A2Y2TURT2VEYZN"}], "B09GN891PR": [{"asin": "B09GN891PR", "instruction": "i'm looking for a glass case with fashion cute pattern design for iphone 13.", "attributes": ["non slip", "dust proof", "easy install", "tempered glass"], "options": ["color: colorful starry pineapple", "size: iphone 13 pro(6.1-inch)"], "instruction_attributes": ["non slip", "tempered glass"], "instruction_options": ["colorful starry pineapple", "iphone 13 pro(6.1-inch)"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35N6GU8", "worker_id": "A1ZGOZQF2VZ0X9"}, {"asin": "B09GN891PR", "instruction": "i'm looking for an easy to install iphone 13 case with a colorful cactus pattern.", "attributes": ["non slip", "dust proof", "easy install", "tempered glass"], "options": ["color: colorful cactus", "size: iphone 13 pro max(6.7-inch)"], "instruction_attributes": ["easy install"], "instruction_options": ["colorful cactus", "iphone 13 pro max(6.7-inch)"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL4FSNO", "worker_id": "AR9AU5FY1S3RO"}], "B097SLKSD3": [{"asin": "B097SLKSD3", "instruction": "i am looking for a 3 vanity lights with with clear glass shade.", "attributes": ["clear glass", "glass shade", "dining room"], "options": ["size: 3 lights"], "instruction_attributes": ["clear glass"], "instruction_options": ["3 lights"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQSVIH0", "worker_id": "A9QRQL9CFJBI7"}], "B07MWTMFX1": [{"asin": "B07MWTMFX1", "instruction": "i'm looking for clothing jeans for women's and the it was comfortable fit.", "attributes": ["long lasting", "comfortable fit"], "options": ["color: dark stone", "fit type: big & tall", "size: 33w x 36l"], "instruction_attributes": ["long lasting", "comfortable fit"], "instruction_options": ["dark stone"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBGEJDT", "worker_id": "A16IQOX0DK14OJ"}], "B09CM422VM": [{"asin": "B09CM422VM", "instruction": "i'm looking for a hair shaving, household neck hair removal brush with rope for men", "attributes": ["high quality", "hair removal"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BME8XG", "worker_id": "A3D6VE1HYFEP9Z"}], "B09B45XJB9": [{"asin": "B09B45XJB9", "instruction": "i'm looking for made for cupcakes to birthday party it is easy to make.", "attributes": ["easy use", "cupcake picks", "baby shower", "birthday party"], "options": ["color: rose gold"], "instruction_attributes": ["easy use", "cupcake picks", "birthday party"], "instruction_options": ["rose gold"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJOVGDK", "worker_id": "A16IQOX0DK14OJ"}], "B09R4318ZY": [{"asin": "B09R4318ZY", "instruction": "i'm looking for pants for sports with a fleece lining and a relaxed fit in sky blue", "attributes": ["butt lifting", "fleece lined", "wide leg", "high waist", "tummy control", "relaxed fit"], "options": ["color: sky blue", "size: 5x-large"], "instruction_attributes": ["fleece lined", "relaxed fit"], "instruction_options": ["sky blue"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQFCCJU", "worker_id": "A13PVNQT2WWWVL"}], "B095VMXFTV": [{"asin": "B095VMXFTV", "instruction": "i would like a pair of size 46 black shoes made from quality materials.", "attributes": ["steel toe", "quality materials"], "options": ["color: black", "size: 46"], "instruction_attributes": ["quality materials"], "instruction_options": ["black", "46"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNXG8HA", "worker_id": "A1WS884SI0SLO4"}], "B00XMZCOAY": [{"asin": "B00XMZCOAY", "instruction": "i'm looking for rice shaped pasta it contains low fiber fat it good for health.", "attributes": ["non gmo", "low fat", "dietary fiber"], "options": ["size: 26.5 ounce (pack of 4)", "style: traditional"], "instruction_attributes": ["low fat", "dietary fiber"], "instruction_options": ["26.5 ounce (pack of 4)"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UQLEZV", "worker_id": "A16IQOX0DK14OJ"}], "B08LQ6SY18": [{"asin": "B08LQ6SY18", "instruction": "i am looking for a storage benches for living room of espresso color.", "attributes": ["fully assembled", "wood frame", "living room"], "options": ["color: espresso"], "instruction_attributes": ["living room"], "instruction_options": ["espresso"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3G5YAD", "worker_id": "A9QRQL9CFJBI7"}], "B084NFNNBH": [{"asin": "B084NFNNBH", "instruction": "i'm looking for trader joe for buying groceries products.", "attributes": ["trader joe", "non gmo", "great gift", "perfect gift"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UIZKO2", "worker_id": "A16IQOX0DK14OJ"}], "B07G51W951": [{"asin": "B07G51W951", "instruction": "i'm looking for oral care the prevention of dental care.", "attributes": ["easy use", "fresh breath"], "options": [""], "instruction_attributes": ["easy use", "fresh breath"], "instruction_options": [], "assignment_id": "358010RM5P3MV5OW59A6A8MHMLTXVQ", "worker_id": "A16IQOX0DK14OJ"}], "B093VQSY12": [{"asin": "B093VQSY12", "instruction": "i am looking for a high definition 24 inch tv", "attributes": ["high definition", "high resolution"], "options": ["size: 24in"], "instruction_attributes": ["high definition"], "instruction_options": ["24in"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXEC7G4", "worker_id": "A2ECRNQ3X5LEXD"}], "B094DKJ6ZS": [{"asin": "B094DKJ6ZS", "instruction": "i am looking for a blue rubber outsole sneaker for men.", "attributes": ["lace closure", "rubber outsole", "rubber sole"], "options": ["color: blue", "size: 16"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["blue"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKRTV76", "worker_id": "A9QRQL9CFJBI7"}], "B079K9XTSV": [{"asin": "B079K9XTSV", "instruction": "i am looking for a jet black #1 hair extensions.", "attributes": ["hair extensions", "natural hair"], "options": ["color: jet black #1", "size: 14 inch (120 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["jet black #1"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3EYQNX", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B079K9XTSV", "instruction": "i would like a 18 inch natural black hair extension.", "attributes": ["hair extensions", "natural hair"], "options": ["color: natural black #1b", "size: 18 inch (120 gram)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["natural black #1b", "18 inch (120 gram)"], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUN3ZV5", "worker_id": "A1WS884SI0SLO4"}], "B09GPJVQNT": [{"asin": "B09GPJVQNT", "instruction": "i need a relaxed fit daily wear gym pants for daily wear. pick an xx-large one.", "attributes": ["polyester cotton", "elastic waist", "relaxed fit", "daily wear"], "options": ["color: 25-green", "size: xx-large"], "instruction_attributes": ["relaxed fit", "daily wear"], "instruction_options": ["xx-large"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8BL5AO", "worker_id": "A1NF6PELRKACS9"}], "B08SQ88C1G": [{"asin": "B08SQ88C1G", "instruction": "i'm looking for a wooden upholstered daybed twin with trundle and backrest.", "attributes": ["twin size", "easy assemble", "box spring", "solid wood", "living room"], "options": ["color: beige", "size: twin with drawers"], "instruction_attributes": ["twin size"], "instruction_options": ["twin with drawers"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJOK9OU", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09PDP2SKW": [{"asin": "B09PDP2SKW", "instruction": "i would like some 22 inch hair extensions made of natural hair.", "attributes": ["easy use", "high quality", "hair extensions", "natural hair"], "options": ["size: 22 inch"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["22 inch"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO8NGJT", "worker_id": "A1WS884SI0SLO4"}], "B07CS4CBGM": [{"asin": "B07CS4CBGM", "instruction": "i'm looking for a italian ice fat free", "attributes": ["fat free", "real fruit"], "options": [""], "instruction_attributes": ["fat free"], "instruction_options": [], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR49FFUJ", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07CS4CBGM", "instruction": "i want to buy some fat free freezer bars with real fruit.", "attributes": ["fat free", "real fruit"], "options": [""], "instruction_attributes": ["fat free", "real fruit"], "instruction_options": [], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1L46FB", "worker_id": "AR9AU5FY1S3RO"}], "B09RN5LG2B": [{"asin": "B09RN5LG2B", "instruction": "i'm looking for a open toe slip resistant sneakers with arch support and ankle strap. also, choose 7.5 size black one.", "attributes": ["open toe", "slip resistant", "non slip", "arch support", "high heel", "ankle strap", "memory foam"], "options": ["color: black", "size: 7.5"], "instruction_attributes": ["open toe", "slip resistant", "arch support", "ankle strap"], "instruction_options": ["black", "7.5"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQN9Q10X", "worker_id": "AR0VJ5XRG16UJ"}], "B09921NBD4": [{"asin": "B09921NBD4", "instruction": "i am looking for a black faux leather bed frames.", "attributes": ["button tufted", "queen size", "height adjustable", "faux leather", "box spring"], "options": ["color: black", "size: king"], "instruction_attributes": ["faux leather"], "instruction_options": ["black"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLURFT9", "worker_id": "A9QRQL9CFJBI7"}], "B0924LVZ21": [{"asin": "B0924LVZ21", "instruction": "i am looking for a 1 pack of cooling pads with high performance", "attributes": ["high performance", "usb port"], "options": ["size: stand cooling fan", "style: 1 pack"], "instruction_attributes": ["high performance"], "instruction_options": ["1 pack"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDROB9FS", "worker_id": "A9QRQL9CFJBI7"}], "B06Y254L9J": [{"asin": "B06Y254L9J", "instruction": "i would like a aqua blue applewatch charger.", "attributes": ["compatible apple", "easy use"], "options": ["color: aqua blue"], "instruction_attributes": ["compatible apple"], "instruction_options": ["aqua blue"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUCS9RT", "worker_id": "A1WS884SI0SLO4"}], "B09P1BN2CD": [{"asin": "B09P1BN2CD", "instruction": "i'm looking for a high-quality toothbrush in straw color(for 2-6 years) for sensitive teeth.", "attributes": ["high quality", "sensitive teeth"], "options": ["color: straw color(for 2-6 years)"], "instruction_attributes": ["high quality", "sensitive teeth"], "instruction_options": ["straw color(for 2-6 years)"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1812IO", "worker_id": "A20DUVEOH6A7KW"}], "B09F6HYVT6": [{"asin": "B09F6HYVT6", "instruction": "i am looking for a water proof outdoor ultra hd projector, also the color should be sport color.", "attributes": ["water resistant", "ultra hd", "usb port"], "options": ["color: sport", "size: ar115-clr3+oms120h2"], "instruction_attributes": ["water resistant", "ultra hd"], "instruction_options": ["sport"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQG5CJP", "worker_id": "A14BSOU2Y5JNT0"}, {"asin": "B09F6HYVT6", "instruction": "i need a sporty water resistant portable projector with usb port.", "attributes": ["water resistant", "ultra hd", "usb port"], "options": ["color: sport", "size: ar115-clr3+oms120h2"], "instruction_attributes": ["water resistant", "usb port"], "instruction_options": ["sport"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWY0C1E", "worker_id": "A1NF6PELRKACS9"}], "B08RZBK8XD": [{"asin": "B08RZBK8XD", "instruction": "i am looking for a white storage benches of grey wash color", "attributes": ["white item", "easy assemble", "living room"], "options": ["color: grey wash"], "instruction_attributes": ["white item"], "instruction_options": ["grey wash"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE223QGG", "worker_id": "A9QRQL9CFJBI7"}], "B092TNX1HL": [{"asin": "B092TNX1HL", "instruction": "i am looking for a stainless steel shears.", "attributes": ["non slip", "stainless steel", "hair cutting"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7NQ3IR", "worker_id": "A9QRQL9CFJBI7"}], "B09H67CSK6": [{"asin": "B09H67CSK6", "instruction": "i would like a eye shadow makeup palette.", "attributes": ["easy clean", "nail polish", "beauty salon", "eye shadow"], "options": [""], "instruction_attributes": ["eye shadow"], "instruction_options": [], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IBXCB5", "worker_id": "A1WS884SI0SLO4"}], "B09ND9FLJ2": [{"asin": "B09ND9FLJ2", "instruction": "i am looking for a sleep sets of medium size for daily wear.", "attributes": ["elastic waistband", "long sleeve", "daily wear"], "options": ["color: multi 9", "size: medium"], "instruction_attributes": ["daily wear"], "instruction_options": ["medium"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SVQUDC", "worker_id": "A9QRQL9CFJBI7"}], "B009R8D5QC": [{"asin": "B009R8D5QC", "instruction": "i need a bag of alaska caught salmon jerkey.", "attributes": ["wild caught", "artificial ingredients", "gluten free"], "options": ["flavor name: garlic-pepper", "size: 6 ounce"], "instruction_attributes": ["wild caught"], "instruction_options": ["garlic-pepper"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L8DERB", "worker_id": "A19317A3X87NVM"}], "B08DKWFB9K": [{"asin": "B08DKWFB9K", "instruction": "i am looking for computer desk drawing table that is easy to install", "attributes": ["heavy duty", "easy install"], "options": [""], "instruction_attributes": ["heavy duty", "easy install"], "instruction_options": [], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCJ5E06", "worker_id": "A10OGH5CQBXL5N"}], "B08314WBRN": [{"asin": "B08314WBRN", "instruction": "i am looking for a double sided stainless steel foot files for cleaning of dry skin.", "attributes": ["high quality", "double sided", "long lasting", "stainless steel", "dead skin", "dry skin"], "options": [""], "instruction_attributes": ["double sided", "stainless steel", "dead skin"], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1IH3U3", "worker_id": "A9QRQL9CFJBI7"}], "B07BVVPMVX": [{"asin": "B07BVVPMVX", "instruction": "i am looking for a 9.3 color for permanent hair color", "attributes": ["easy use", "rose gold", "hair dye", "permanent hair", "natural hair"], "options": ["color: 9.3"], "instruction_attributes": ["permanent hair"], "instruction_options": [], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLV2FTM", "worker_id": "A9QRQL9CFJBI7"}], "B093YRJDBF": [{"asin": "B093YRJDBF", "instruction": "i'm looking for laundry bags for it can use for move to another place.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NOQP2L", "worker_id": "A16IQOX0DK14OJ"}], "B00E86YKCG": [{"asin": "B00E86YKCG", "instruction": "add to my list 6 packs of raspberry snackbar and should be nut free and has low sodium.", "attributes": ["low sodium", "nut free", "plant based", "dairy free", "non gmo", "0g trans", "real fruit", "high fructose", "artificial flavors"], "options": ["flavor name: raspberry", "size: 6 count (pack of 6)"], "instruction_attributes": ["low sodium", "nut free"], "instruction_options": ["raspberry", "6 count (pack of 6)"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96BX4GQ", "worker_id": "AHU9OLV0YKIIW"}], "B082SZDTBD": [{"asin": "B082SZDTBD", "instruction": "i'm looking for a wide leg jeans with regular fit and tummy control. also, choose 3x large zz-zm black colored one.", "attributes": ["wide leg", "tummy control", "long sleeve", "regular fit", "relaxed fit", "short sleeve"], "options": ["color: zz-zmblack", "size: 3x-large"], "instruction_attributes": ["wide leg", "tummy control", "regular fit"], "instruction_options": ["zz-zmblack", "3x-large"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJM3GDO", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B082SZDTBD", "instruction": "i am looking for wide leg black color bell bottom flare jegging sweatpants, but size in small", "attributes": ["wide leg", "tummy control", "long sleeve", "regular fit", "relaxed fit", "short sleeve"], "options": ["color: black", "size: small"], "instruction_attributes": ["wide leg"], "instruction_options": ["black"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUWSQJW", "worker_id": "A258PTOZ3D2TQR"}], "B08G5CQZ4B": [{"asin": "B08G5CQZ4B", "instruction": "i'm looking for a rickaroons coconut energy bars with chocolate.", "attributes": ["grain free", "gluten free", "soy free", "certified organic", "non gmo"], "options": ["flavor name: mocha"], "instruction_attributes": ["gluten free", "certified organic"], "instruction_options": ["mocha"], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLI9LIKQ", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09D7RDLZM": [{"asin": "B09D7RDLZM", "instruction": "i need a ninety inch table runner. look for one that's eco-friendly and available in color \"poppie slop.\"", "attributes": ["eco friendly", "long lasting", "printing technology"], "options": ["color: poppieslop5025", "size: (90''x13''+13''x19''*6)229x33cm+33x48cm*6"], "instruction_attributes": ["eco friendly"], "instruction_options": ["poppieslop5025", "(90''x13''+13''x19''*6)229x33cm+33x48cm*6"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOYH93U", "worker_id": "AR9AU5FY1S3RO"}], "B07XDP1RFL": [{"asin": "B07XDP1RFL", "instruction": "i want a wooden dining table that is multi color with a white finish. it will go in my dining room.", "attributes": ["coated steel", "white finish", "dining room"], "options": ["color: multi color", "size: 78.7\""], "instruction_attributes": ["white finish", "dining room"], "instruction_options": ["multi color"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMKCVX5", "worker_id": "A1NF6PELRKACS9"}], "B09BXYG4Z6": [{"asin": "B09BXYG4Z6", "instruction": "i would like a mint scent dental chewy that is bpa free.", "attributes": ["bpa free", "storage case"], "options": ["color: mint scent"], "instruction_attributes": ["bpa free"], "instruction_options": ["mint scent"], "assignment_id": "326O153BMT8RVOXTJJKKGXV368CDEW", "worker_id": "A1WS884SI0SLO4"}], "B09G3FT4CY": [{"asin": "B09G3FT4CY", "instruction": "winter warm long sleeves jackets for women which is hand washable and in yellow colour", "attributes": ["fleece lined", "winter warm", "machine washable", "hand wash", "long sleeve", "faux fur", "quality polyester", "elastic closure"], "options": ["color: yellow", "size: x-large"], "instruction_attributes": ["winter warm", "machine washable", "hand wash", "long sleeve"], "instruction_options": ["yellow"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVNNXL3", "worker_id": "A10OGH5CQBXL5N"}], "B09CD32CBP": [{"asin": "B09CD32CBP", "instruction": "i am looking for a iphone 11 pro 5.8 inches basic cases which is easy to install", "attributes": ["easy install", "wireless charging"], "options": ["color: petrol blue and aqua_8", "size: iphone 11 pro 5.8 inches"], "instruction_attributes": ["easy install"], "instruction_options": ["iphone 11 pro 5.8 inches"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AK3TSO", "worker_id": "A9QRQL9CFJBI7"}], "B07KDXLQ3B": [{"asin": "B07KDXLQ3B", "instruction": "i need a high power charger that charges fast and is white.", "attributes": ["high power", "fast charging"], "options": ["color: white"], "instruction_attributes": ["high power", "fast charging"], "instruction_options": ["white"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OVSYEX", "worker_id": "A2CJFO19NY4T5R"}], "B08L7DRLXN": [{"asin": "B08L7DRLXN", "instruction": "i am looking for manual toothbrush for sensitive teeth. please choose blue color.", "attributes": ["sensitive teeth", "bad breath"], "options": ["color: pink, blue, green, beige"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["pink, blue, green, beige"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMIC1JK", "worker_id": "A3FG5PQHG5AH3Y"}], "B091Q1Y26G": [{"asin": "B091Q1Y26G", "instruction": "i want to buy some vanity lights with brushed nickel trim and black color. it needs to be a two light style.", "attributes": ["brushed nickel", "vanity light", "clear glass", "glass shade", "light fixture", "dining room", "living room"], "options": ["color: black", "size: 2 lights"], "instruction_attributes": ["brushed nickel", "vanity light"], "instruction_options": ["black", "2 lights"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CULJS4O", "worker_id": "A2YNPKYEFDZ6C9"}], "B07JHL2T8X": [{"asin": "B07JHL2T8X", "instruction": "i'm looking for a gray blue, apple compatible, case for apple airpods that also charges.", "attributes": ["compatible apple", "case cover", "wireless charging"], "options": ["color: gray blue"], "instruction_attributes": ["compatible apple"], "instruction_options": ["gray blue"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNX8H8B", "worker_id": "A3HFKFJ5UDWAMC"}], "B093F94SZK": [{"asin": "B093F94SZK", "instruction": "i want a heavy duty fine wood bookcase for living room color white", "attributes": ["heavy duty", "storage unit", "living room"], "options": ["color: white"], "instruction_attributes": ["heavy duty", "storage unit", "living room"], "instruction_options": ["white"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X40RH0L", "worker_id": "A3N9ZYQAESNFQH"}], "B08R3HR7PN": [{"asin": "B08R3HR7PN", "instruction": "i'm looking for rubber sole for shoe for men's the color was blue.", "attributes": ["non slip", "steel toe", "rubber sole"], "options": ["color: blue", "size: 15.5 women | 14 men"], "instruction_attributes": ["steel toe", "rubber sole"], "instruction_options": ["blue"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602UX959", "worker_id": "A16IQOX0DK14OJ"}], "B0833XSMM4": [{"asin": "B0833XSMM4", "instruction": "i am looking for a multi purpose tripod for camera made up of aluminum alloy with quick release. also choose but2664 color and but2287 size.", "attributes": ["quick release", "aluminum alloy"], "options": ["color: but2664", "size: but2287"], "instruction_attributes": ["quick release", "aluminum alloy"], "instruction_options": ["but2664", "but2287"], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6K5EEI", "worker_id": "A2HMEGTAFO0CS8"}], "B09Q65XZ7J": [{"asin": "B09Q65XZ7J", "instruction": "i'm looking for black colored high quality hair removal cream it easy to use", "attributes": ["high quality", "stainless steel", "hair removal"], "options": ["color: black", "size: double cutter head"], "instruction_attributes": ["high quality", "hair removal"], "instruction_options": ["black"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYWJ36L", "worker_id": "A16IQOX0DK14OJ"}], "B092VVMMBK": [{"asin": "B092VVMMBK", "instruction": "i am looking for a golden g cake toppers for birthday party", "attributes": ["party supplies", "birthday party"], "options": ["color: golden 9"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9B1AZA", "worker_id": "A9QRQL9CFJBI7"}], "B09JLQVW41": [{"asin": "B09JLQVW41", "instruction": "i'm looking for a clear glass wall lamps with glass shade for living room. also, choose the lamp that has 3 lights and bronze colored one.", "attributes": ["clear glass", "glass shade", "light fixture", "living room"], "options": ["color: bronze", "size: 3-lights"], "instruction_attributes": ["clear glass", "glass shade", "living room"], "instruction_options": ["bronze", "3-lights"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXS3LYH", "worker_id": "AR0VJ5XRG16UJ"}], "B09CZ67T77": [{"asin": "B09CZ67T77", "instruction": "i need apple compatible smartwatch band made of carbon fiber in elephant grey color and black buckle.", "attributes": ["compatible apple", "carbon fiber"], "options": ["color: elephant grey-black buckle"], "instruction_attributes": ["compatible apple", "carbon fiber"], "instruction_options": ["elephant grey-black buckle"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SWQDUX", "worker_id": "ASWFLI3N8X72G"}], "B09JG66DXC": [{"asin": "B09JG66DXC", "instruction": "i'm searching for super soft happy fall gnome orange plaid blanket", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: happy fall gnome orange plaid", "size: 60\"x50\" m for teen"], "instruction_attributes": ["super soft"], "instruction_options": ["happy fall gnome orange plaid"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB48DAQD", "worker_id": "A258PTOZ3D2TQR"}], "B075JN83TX": [{"asin": "B075JN83TX", "instruction": "i need black flats that are slip resistant. they should also have leather soles.", "attributes": ["slip resistant", "leather sole"], "options": ["color: black", "size: 7-7.5"], "instruction_attributes": ["slip resistant", "leather sole"], "instruction_options": ["black"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0ZV4WX", "worker_id": "A1NF6PELRKACS9"}], "B08S47NGNJ": [{"asin": "B08S47NGNJ", "instruction": "i am looking for rubber sole men sneaker.please choose grey and navy color.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: grey | navy", "size: 8"], "instruction_attributes": ["rubber sole"], "instruction_options": ["grey | navy"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OWT3MQ", "worker_id": "A3FG5PQHG5AH3Y"}], "B08TQQ982S": [{"asin": "B08TQQ982S", "instruction": "i am looking for king size pillowcases in leopard print color", "attributes": ["queen size", "machine washable", "king size"], "options": ["color: leopard print", "size: 20x30in"], "instruction_attributes": ["king size"], "instruction_options": ["leopard print"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67N24NH", "worker_id": "A16M39T60N60NO"}], "B09JNS2BNK": [{"asin": "B09JNS2BNK", "instruction": "i would like a beige bookcase with a lot of storage space.", "attributes": ["easy clean", "high gloss", "storage space"], "options": ["color: beige"], "instruction_attributes": ["storage space"], "instruction_options": ["beige"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOFYATD", "worker_id": "A1WS884SI0SLO4"}], "B09P1FB6LF": [{"asin": "B09P1FB6LF", "instruction": "i'm looking for a compact wireless bluetooth speaker.", "attributes": ["water resistant", "long lasting", "high performance", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["water resistant", "wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8F05RN", "worker_id": "A1ZGOZQF2VZ0X9"}], "B095XSTRVZ": [{"asin": "B095XSTRVZ", "instruction": "i'm looking for a set of 3 nesting end tables.", "attributes": ["space saving", "metal legs", "living room", "dining room"], "options": ["color: gray marble | gold"], "instruction_attributes": ["living room"], "instruction_options": ["gray marble | gold"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OWH3ME", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09GB2LF8R": [{"asin": "B09GB2LF8R", "instruction": "i am looking for a surveillance camera cables for output protection.", "attributes": ["output protection", "easy carry"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2R34LE", "worker_id": "A9QRQL9CFJBI7"}], "B07KLZVCS3": [{"asin": "B07KLZVCS3", "instruction": "i am looking for a 7 wide synthetic sole of platforms & wedges", "attributes": ["synthetic sole", "arch support"], "options": ["color: vintage slate lthr", "size: 7 wide"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["vintage slate lthr"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYEZ28N", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07KLZVCS3", "instruction": "i'd like to buy a pair of sandals with a synthetic sole and arch support. look for a pair that's size four, in slate.", "attributes": ["synthetic sole", "arch support"], "options": ["color: vintage slate lthr", "size: 4"], "instruction_attributes": ["synthetic sole", "arch support"], "instruction_options": ["vintage slate lthr", "4"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP8657ZW", "worker_id": "AR9AU5FY1S3RO"}], "B09J7VZL38": [{"asin": "B09J7VZL38", "instruction": "i would like a 64 gig dd4 ram mini desktop computer that has a dual band i7 core processor.", "attributes": ["dual band", "wireless bluetooth"], "options": ["color: core i7 1165g7", "size: 64g ddr4 ram 1tb ssd"], "instruction_attributes": ["dual band"], "instruction_options": ["core i7 1165g7", "64g ddr4 ram 1tb ssd"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM4911X4J", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09J7VZL38", "instruction": "im looking for a mini dual band desktop pc that uses wireless bluetooth connectivity and has windows 11.", "attributes": ["dual band", "wireless bluetooth"], "options": ["color: core i7 10750h", "size: 32g ddr4 ram 1tb ssd"], "instruction_attributes": ["dual band", "wireless bluetooth"], "instruction_options": [], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YSU8T5", "worker_id": "AK3JMCIGU8MLU"}], "B09N349WJ1": [{"asin": "B09N349WJ1", "instruction": "i'm looking for grow a hair that was gives a hair extensions.", "attributes": ["natural hair", "hair loss"], "options": ["color: #1b off black"], "instruction_attributes": ["natural hair", "hair loss"], "instruction_options": ["#1b off black"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR49FUFY", "worker_id": "A16IQOX0DK14OJ"}], "B07D1CBVXY": [{"asin": "B07D1CBVXY", "instruction": "i am looking for a heavy duty foot soaking tub for dead skin removal. also choose blue one.", "attributes": ["heavy duty", "tea tree", "dead skin"], "options": ["color: blue"], "instruction_attributes": ["heavy duty", "dead skin"], "instruction_options": ["blue"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZKRK94", "worker_id": "A2HMEGTAFO0CS8"}], "B09HXLGWBY": [{"asin": "B09HXLGWBY", "instruction": "i am looking for lead free candles for home, made up of soy wax. also choose lavender & geranium scented", "attributes": ["lead free", "soy wax"], "options": ["scent: lavender & geranium"], "instruction_attributes": ["lead free", "soy wax"], "instruction_options": ["lavender & geranium"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSKSQ2T", "worker_id": "A2HMEGTAFO0CS8"}], "B084QXKRS5": [{"asin": "B084QXKRS5", "instruction": "i'm looking for a hair conditioner for dry hair that stimulates hair growth. also, choose a pack of 1 contains 32 fl oz.", "attributes": ["dry hair", "hair growth"], "options": ["size: 32 fl oz (pack of 1)"], "instruction_attributes": ["dry hair", "hair growth"], "instruction_options": ["32 fl oz (pack of 1)"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK29J3D", "worker_id": "AR0VJ5XRG16UJ"}], "B09HGCRV4F": [{"asin": "B09HGCRV4F", "instruction": "i am looking for a high performace tv antenna having usb port.", "attributes": ["high performance", "usb port", "4g lte"], "options": [""], "instruction_attributes": ["high performance", "usb port"], "instruction_options": [], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98UVKYE", "worker_id": "A1Q8PPQQCWGY0D"}], "B09BB4MBC2": [{"asin": "B09BB4MBC2", "instruction": "i want a 16 colour eyeshadow palette higly pigmented high quality long lasting eyeshadow pallet matte", "attributes": ["long lasting", "highly pigmented", "high quality"], "options": [""], "instruction_attributes": ["long lasting", "highly pigmented", "high quality"], "instruction_options": [], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXTFYL8", "worker_id": "A3N9ZYQAESNFQH"}], "B08RS11SB6": [{"asin": "B08RS11SB6", "instruction": "i am looking for a 41mm | 42mm smartwatch bands which is easy install.", "attributes": ["quick release", "easy install"], "options": ["color: colorful", "size: 41mm | 42mm"], "instruction_attributes": ["easy install"], "instruction_options": ["41mm | 42mm"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUIT3CC", "worker_id": "A9QRQL9CFJBI7"}], "B01MS5NP2G": [{"asin": "B01MS5NP2G", "instruction": "show me a digital camera, by panasonic is good for me. i need a high performance. i want memory card about 64gb , try this model: lumix 4k dmc-zs100", "attributes": ["high performance", "high speed"], "options": [""], "instruction_attributes": ["high speed"], "instruction_options": [], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BL18X1", "worker_id": "A15IJ20C3R4HUO"}], "B081RXQ8XG": [{"asin": "B081RXQ8XG", "instruction": "i'm looking for star wars for clothing for navy white colored.", "attributes": ["officially licensed", "machine wash", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: navy | white", "fit type: women", "size: large"], "instruction_attributes": ["officially licensed", "machine wash", "needle sleeve", "classic fit", "star wars"], "instruction_options": ["navy | white"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YO569H", "worker_id": "A16IQOX0DK14OJ"}], "B08TR5SG7B": [{"asin": "B08TR5SG7B", "instruction": "i would like a 5xl a color blouse with long sleeves.", "attributes": ["unique design", "long sleeve"], "options": ["color: a", "size: 5x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a", "5x-large"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20PI0Z2", "worker_id": "A1WS884SI0SLO4"}], "B07WSFDSQF": [{"asin": "B07WSFDSQF", "instruction": "i am looking for a solid black duvet cover set that is queen size.", "attributes": ["queen size", "machine washable"], "options": ["color: solid-black", "size: queen(90\"\u00d790\")"], "instruction_attributes": ["queen size"], "instruction_options": ["solid-black", "queen(90\"\u00d790\")"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS2CUVT", "worker_id": "A1NF6PELRKACS9"}], "B08SQR474L": [{"asin": "B08SQR474L", "instruction": "i am looking for grain and gluten free chips.", "attributes": ["grain free", "non gmo", "gluten free"], "options": [""], "instruction_attributes": ["grain free", "gluten free"], "instruction_options": [], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3YZL5JC", "worker_id": "A1NF6PELRKACS9"}], "B078SZCPK8": [{"asin": "B078SZCPK8", "instruction": "let me have grocery & gourmet food dietary fibre", "attributes": ["non gmo", "dietary fiber"], "options": [""], "instruction_attributes": ["dietary fiber"], "instruction_options": [], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SXTTQC", "worker_id": "A1IL2K0ELYI090"}], "B09LRSJVCF": [{"asin": "B09LRSJVCF", "instruction": "i am looking for a high quality dark gray reclining barber chair for a hair salon.", "attributes": ["high quality", "hair salon", "beauty salon"], "options": ["color: dark gray"], "instruction_attributes": ["high quality", "hair salon"], "instruction_options": ["dark gray"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLSRAD9", "worker_id": "A1EREKSZAA9V7B"}], "B093Q5DCH6": [{"asin": "B093Q5DCH6", "instruction": "i am looking for a xx-large casual print shirt for women for gifting purpose. also choose wine color.", "attributes": ["valentine day", "great gift"], "options": ["color: wine", "size: xx-large"], "instruction_attributes": ["great gift"], "instruction_options": ["wine", "xx-large"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1GT08F", "worker_id": "A1V2JTEEBCXR20"}], "B0925PXXNL": [{"asin": "B0925PXXNL", "instruction": "i am looking for sulfate free in redwood", "attributes": ["sulfate free", "sensitive skin"], "options": ["material type: extra-strength antiperspirant", "scent: redwood"], "instruction_attributes": ["sulfate free"], "instruction_options": ["redwood"], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVY16IDX", "worker_id": "A2MSIFDLOHI1UT"}], "B08D36NGX6": [{"asin": "B08D36NGX6", "instruction": "i need a gold plated, high definition digital optical cable that's five feet long.", "attributes": ["gold plated", "high resolution", "high definition"], "options": ["size: 5ft | 1.5m"], "instruction_attributes": ["gold plated", "high definition"], "instruction_options": ["5ft | 1.5m"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MID5RBX", "worker_id": "AR9AU5FY1S3RO"}], "B003EWPKGA": [{"asin": "B003EWPKGA", "instruction": "i'm looking for a 60in (150cm) pro studio softbox with heavy duty construction. also ensure its style is broncolor impact.", "attributes": ["high power", "heavy duty"], "options": ["size: 60in (150cm)", "style: broncolor impact"], "instruction_attributes": ["heavy duty"], "instruction_options": ["60in (150cm)", "broncolor impact"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCU15QR", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B003EWPKGA", "instruction": "i'm looking for a heavy duty soft box, specifically with a quantum qflash lighting setting.", "attributes": ["high power", "heavy duty"], "options": ["size: 12x56in (30x140cm)", "style: quantum qflash"], "instruction_attributes": ["heavy duty"], "instruction_options": ["quantum qflash"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3KZYAF", "worker_id": "A3LIIE572Z4OG7"}], "B08K2ML6WX": [{"asin": "B08K2ML6WX", "instruction": "i am looking for unicorn collection nail polish with glossy and matte top", "attributes": ["long lasting", "nail polish"], "options": ["color: unicorn"], "instruction_attributes": ["nail polish"], "instruction_options": ["unicorn"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PMREQQ", "worker_id": "A258PTOZ3D2TQR"}], "B07JGZWVKX": [{"asin": "B07JGZWVKX", "instruction": "show me a king sized machine washable super soft pillow in yellow coral pattern and 30\" x 20\" size.", "attributes": ["super soft", "machine washable", "king size"], "options": ["color: yellow coral", "size: 30\" x 20\""], "instruction_attributes": ["super soft", "machine washable", "king size"], "instruction_options": ["yellow coral", "30\" x 20\""], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDX6AII", "worker_id": "A3AYHESLQSDY5T"}], "B09BGGLY51": [{"asin": "B09BGGLY51", "instruction": "i want hydration undereye & smile line jelly patches fragrance free cruelty free cream for eyes", "attributes": ["fragrance free", "cruelty free", "dermatologist tested", "plant based", "sensitive skin", "dry skin"], "options": ["style: hydration undereye & smile line jelly patches"], "instruction_attributes": ["fragrance free", "cruelty free"], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3TR6PI", "worker_id": "A3N9ZYQAESNFQH"}], "B003VTGBC8": [{"asin": "B003VTGBC8", "instruction": "i am looking for a box of 50 singles non-dairy coffee creamers that will add sugar-free hazelnut flavor to coffee drinks.", "attributes": ["non dairy", "rich creamy", "lactose free", "shelf stable", "gluten free"], "options": ["flavor name: sugar free hazelnut", "size: box of 50 singles"], "instruction_attributes": ["non dairy"], "instruction_options": ["sugar free hazelnut", "box of 50 singles"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9NTB06", "worker_id": "A1HMZJ59OPLD1P"}], "B088WN9NMS": [{"asin": "B088WN9NMS", "instruction": "i am looking for a high performance home surveillance security camera that is certified refurbished.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished", "high performance"], "instruction_options": [], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC4OKUG", "worker_id": "A1NF6PELRKACS9"}], "B086ZFMFCF": [{"asin": "B086ZFMFCF", "instruction": "i am looking for a purple double-sided, eco friendly, and long handle bath body brush scrubber.", "attributes": ["double sided", "eco friendly", "non toxic", "long handle"], "options": ["color: purple"], "instruction_attributes": ["double sided", "eco friendly", "long handle"], "instruction_options": ["purple"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3SBTG39", "worker_id": "A39VVWV1GHLMFD"}], "B07GDL839C": [{"asin": "B07GDL839C", "instruction": "i want an oil free foundation that is high in quality. find me the 410 caoouccino color.", "attributes": ["oil free", "long lasting", "high quality"], "options": ["color: 410 cappuccino", "size: 1.0 fluid ounce"], "instruction_attributes": ["oil free", "high quality"], "instruction_options": ["410 cappuccino"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VLQ06G", "worker_id": "A1NF6PELRKACS9"}], "B09KRBSG36": [{"asin": "B09KRBSG36", "instruction": "i would like to buy a cupcake topper which has a laser gold pattern and is suitable for birthday parties.", "attributes": ["birthday party", "valentine day", "party supplies", "baby shower"], "options": ["size: laser gold pattern"], "instruction_attributes": ["birthday party"], "instruction_options": ["laser gold pattern"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFADD91", "worker_id": "AHXHM1PQTRWIQ"}, {"asin": "B09KRBSG36", "instruction": "i'm looking for a 10 pcs jinxiao snowflake glitter cupcake topper.", "attributes": ["birthday party", "valentine day", "party supplies", "baby shower"], "options": ["size: glitter gold"], "instruction_attributes": ["birthday party", "party supplies"], "instruction_options": ["glitter gold"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39DTZC6", "worker_id": "A1ZGOZQF2VZ0X9"}, {"asin": "B09KRBSG36", "instruction": "i want pearl white cake toppers for a birthday party.", "attributes": ["birthday party", "valentine day", "party supplies", "baby shower"], "options": ["size: pearl white"], "instruction_attributes": ["birthday party"], "instruction_options": ["pearl white"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6NF7UU", "worker_id": "A2RBF3IIJP15IH"}], "B09SF2PKSF": [{"asin": "B09SF2PKSF", "instruction": "i'm looking for open and close toe sandals for women's. need to buy it.", "attributes": ["open toe", "high heel", "closed toe", "ankle strap"], "options": ["color: a4 - black", "size: 11.5 wide"], "instruction_attributes": ["open toe", "high heel", "closed toe"], "instruction_options": ["a4 - black"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40IBNXJ", "worker_id": "A16IQOX0DK14OJ"}], "B09M36VJZ3": [{"asin": "B09M36VJZ3", "instruction": "i want an easy to assemble shoe rack that goes in my living room. pick a white one.", "attributes": ["high density", "space saving", "easy clean", "easy assemble", "living room"], "options": ["color: white", "size: 60cm"], "instruction_attributes": ["easy assemble", "living room"], "instruction_options": ["white"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK249LKNG", "worker_id": "A1NF6PELRKACS9"}], "B093TPRQS3": [{"asin": "B093TPRQS3", "instruction": "i am looking for a 5 gram non alcoholic for cocktail mixers", "attributes": ["non alcoholic", "gmo free"], "options": ["size: 5 gram"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["5 gram"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCJAJS9", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B093TPRQS3", "instruction": "i would like a non alcoholic cocktail mixer that is one ounce.", "attributes": ["non alcoholic", "gmo free"], "options": ["size: 1 ounce (28 gram)"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["1 ounce (28 gram)"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVLFLXF", "worker_id": "A2ECRNQ3X5LEXD"}], "B09KT8L94B": [{"asin": "B09KT8L94B", "instruction": "i'm looking for beauty care accessories it is easy to clean and it was helpful for deadly skin.", "attributes": ["double sided", "easy clean", "dead skin"], "options": ["color: yellow"], "instruction_attributes": ["double sided", "easy clean", "dead skin"], "instruction_options": ["yellow"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVIWTUE", "worker_id": "A16IQOX0DK14OJ"}], "B007HRLNJG": [{"asin": "B007HRLNJG", "instruction": "i am looking for dried fruits in artificial colors with size 8 ounce", "attributes": ["trader joe", "artificial colors"], "options": ["size: 8 ounce (pack of 3)"], "instruction_attributes": ["artificial colors"], "instruction_options": ["8 ounce (pack of 3)"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU49M6RD", "worker_id": "A16M39T60N60NO"}, {"asin": "B007HRLNJG", "instruction": "i am looking for single pack of 8 ounce size containing artificial colors cherries.", "attributes": ["trader joe", "artificial colors"], "options": ["size: 8 ounce (pack of 1)"], "instruction_attributes": ["artificial colors"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CF9V0W", "worker_id": "A1Q8PPQQCWGY0D"}], "B074SQBWLY": [{"asin": "B074SQBWLY", "instruction": "i am looking far a 3 pack bloody mary non gmo margarita", "attributes": ["non gmo", "gluten free", "high fructose", "natural ingredients", "artificial flavors"], "options": ["flavor: 3 pack bloody mary"], "instruction_attributes": ["non gmo"], "instruction_options": ["3 pack bloody mary"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746XWTB4", "worker_id": "A9QRQL9CFJBI7"}], "B002HEXNU6": [{"asin": "B002HEXNU6", "instruction": "i'm looking for a nuvo vanity", "attributes": ["vanity light", "brushed nickel"], "options": ["color: mahogany bronze | frosted glass", "style: 3-light d73"], "instruction_attributes": ["vanity light", "brushed nickel"], "instruction_options": ["mahogany bronze | frosted glass", "3-light d73"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWYX4PPS", "worker_id": "A1ZGOZQF2VZ0X9"}, {"asin": "B002HEXNU6", "instruction": "to improve my home lighting i'm searching for wall lights and 4lt brushed nickel vanity strip lights .", "attributes": ["vanity light", "brushed nickel"], "options": ["color: mahogany bronze", "style: 4lt vanity strip"], "instruction_attributes": ["vanity light", "brushed nickel"], "instruction_options": ["4lt vanity strip"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLVG034", "worker_id": "A3R8PQCD99H61E"}, {"asin": "B002HEXNU6", "instruction": "i would like a mahogany bronze pendant with frosted glass for my vanity light.", "attributes": ["vanity light", "brushed nickel"], "options": ["color: mahogany bronze | champagne glass", "style: pendant with frosted glass,"], "instruction_attributes": ["vanity light"], "instruction_options": ["mahogany bronze | champagne glass", "pendant with frosted glass,"], "assignment_id": "33TIN5LC0FKDY31374RC144TX1B9Y3", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B002HEXNU6", "instruction": "i need a vanity light that is mahogany bronze", "attributes": ["vanity light", "brushed nickel"], "options": ["color: mahogany bronze | frosted glass", "style: 3lt chandelier | ballerina"], "instruction_attributes": ["vanity light"], "instruction_options": ["mahogany bronze | frosted glass"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IU8KHX", "worker_id": "A2ECRNQ3X5LEXD"}], "B09R1PMDCC": [{"asin": "B09R1PMDCC", "instruction": "i'm looking for long sleeve and slim fit for dry clean for women's clothing.", "attributes": ["hand wash", "slim fit", "long sleeve", "dry clean"], "options": ["color: 001-white", "size: 3x-large"], "instruction_attributes": ["slim fit", "long sleeve", "dry clean"], "instruction_options": ["001-white"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSOO0X7", "worker_id": "A16IQOX0DK14OJ"}], "B09MLCQCWP": [{"asin": "B09MLCQCWP", "instruction": "i want a non slip pair of sport shoes that has rubber soles. i am a woman and my size is 15.", "attributes": ["non slip", "rubber sole"], "options": ["color: note melody", "size: 15 women | 12 men"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["15 women | 12 men"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WRHQW5", "worker_id": "A1NF6PELRKACS9"}], "B09MH8LFGC": [{"asin": "B09MH8LFGC", "instruction": "i want a belt-clip heavy duty holster case for my galaxy s22 plus in the color dark blue | pink+belt", "attributes": ["heavy duty", "hands free"], "options": ["color: dark blue | pink+belt"], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3QIYRE09YER1XZUUWP385IO3V3X1N6", "worker_id": "A292TFDMNVS0TP"}], "B07CT5Q656": [{"asin": "B07CT5Q656", "instruction": "i want a clear glass mystic sand colored wall sconce. it will go in my living room.", "attributes": ["clear glass", "dining room", "living room"], "options": ["color: mystic sand", "size: 1-light orb"], "instruction_attributes": ["clear glass", "living room"], "instruction_options": ["mystic sand"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV2VBH4", "worker_id": "A1NF6PELRKACS9"}], "B09K7YCMYK": [{"asin": "B09K7YCMYK", "instruction": "i'm looking for a clip in hair extensions for hair styling. also choose f one.", "attributes": ["hair extensions", "hair styling"], "options": ["color: f"], "instruction_attributes": ["hair extensions", "hair styling"], "instruction_options": ["f"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UUYY0R", "worker_id": "AR0VJ5XRG16UJ"}], "B098DL4XG9": [{"asin": "B098DL4XG9", "instruction": "i am looking for a black wall lamps & sconces for living room", "attributes": ["long lasting", "brushed nickel", "contemporary style", "living room"], "options": ["color: black"], "instruction_attributes": ["living room"], "instruction_options": ["black"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQG1CJL", "worker_id": "A9QRQL9CFJBI7"}], "B0823JRTJM": [{"asin": "B0823JRTJM", "instruction": "i am looking for a candy & chocolate gifts box", "attributes": ["old fashioned", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY7E0UO", "worker_id": "A9QRQL9CFJBI7"}], "B08ZS6M1T7": [{"asin": "B08ZS6M1T7", "instruction": "i'm looking for a hollywood style vanity lights which is easy to install.", "attributes": ["assembly required", "easy install"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYP59Q5", "worker_id": "AR0VJ5XRG16UJ"}], "B07TVRDP96": [{"asin": "B07TVRDP96", "instruction": "i am looking for am/fm radio with digital frequency display of hannlomax hx-506r portable am/fm radio which could play my favourite music from the smartphone or bluetooth enabled device on boombox by bluetooth streaming.suitable for indoor and outdoor.", "attributes": ["batteries included", "usb port", "stereo sound"], "options": [""], "instruction_attributes": ["batteries included", "usb port", "stereo sound"], "instruction_options": [], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWT0N79H", "worker_id": "A1DRKZ3SCLAS4V"}], "B00BECJIYW": [{"asin": "B00BECJIYW", "instruction": "i am looking for rubber soled men loafer. please choose size of 13.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: black waterproof", "size: 13-14"], "instruction_attributes": ["rubber sole"], "instruction_options": ["13-14"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SVZTQE", "worker_id": "A3FG5PQHG5AH3Y"}], "B09BQWG3DW": [{"asin": "B09BQWG3DW", "instruction": "i am looking for cupcake picks for baby shower birthday.", "attributes": ["cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["cupcake picks", "baby shower"], "instruction_options": [], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXVZ4OK", "worker_id": "A3FG5PQHG5AH3Y"}], "B09KNHG351": [{"asin": "B09KNHG351", "instruction": "i need a large button closure shirt that is charcoal grey in color. pick the regular fit one.", "attributes": ["hand wash", "easy care", "machine washable", "long sleeve", "cotton spandex", "regular fit", "button closure", "tumble dry", "daily wear"], "options": ["color: charcoalgrey", "size: large"], "instruction_attributes": ["regular fit", "button closure"], "instruction_options": ["charcoalgrey", "large"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOILCTJ", "worker_id": "A1NF6PELRKACS9"}], "B09QQ9WPMM": [{"asin": "B09QQ9WPMM", "instruction": "i need a mens hairline hairpiece that can be used as replacement for hair lose. and please choose the medium brown with 130 desnsity", "attributes": ["natural hair", "hair loss"], "options": ["color: 130 density #4 medium brown", "size: mens hairline"], "instruction_attributes": ["hair loss"], "instruction_options": ["130 density #4 medium brown", "mens hairline"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDJLO2U", "worker_id": "A2COCSUGZV28X"}], "B09PKY9Q6R": [{"asin": "B09PKY9Q6R", "instruction": "i'm looking for a natural hair cap to hide my hair loss", "attributes": ["natural hair", "hair loss"], "options": ["color: 6#"], "instruction_attributes": ["natural hair", "hair loss"], "instruction_options": [], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733MGBE1", "worker_id": "A13PVNQT2WWWVL"}], "B09PHBN21C": [{"asin": "B09PHBN21C", "instruction": "find me a round table non slip with storage basket", "attributes": ["easy clean", "non slip", "coated steel", "living room"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DWSTOL", "worker_id": "A2Y2TURT2VEYZN"}], "B08LP4T5GN": [{"asin": "B08LP4T5GN", "instruction": "i am shopping for a non alcoholic slush mix that is non alcoholic. i like the cherry flavor.", "attributes": ["non alcoholic", "high fructose"], "options": ["flavor: cherry"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["cherry"], "assignment_id": "3EJPLAJKEXQQLA9A5JQJV1MTDS8Z66", "worker_id": "A1NF6PELRKACS9"}], "B09G2GNCPF": [{"asin": "B09G2GNCPF", "instruction": "i am looking for a 3x-large long sleeved sweatshirt that is hooded for everyday wear.", "attributes": ["slim fit", "machine wash", "long sleeve", "relaxed fit", "everyday wear", "daily wear"], "options": ["color: z10-gray", "size: 3x-large"], "instruction_attributes": ["long sleeve", "everyday wear"], "instruction_options": ["3x-large"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXS0O5H", "worker_id": "A1NF6PELRKACS9"}], "B07F8PVCBQ": [{"asin": "B07F8PVCBQ", "instruction": "i would like a extra large pair of peach butt purple shorts with a high waist.", "attributes": ["butt lifting", "quality materials", "elastic waistband", "high waist", "polyester spandex"], "options": ["color: b-peach butt purple", "size: x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["b-peach butt purple", "x-large"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4UDK72", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07F8PVCBQ", "instruction": "i would like some peach high waisted shorts", "attributes": ["butt lifting", "quality materials", "elastic waistband", "high waist", "polyester spandex"], "options": ["color: b-peach butt blue", "size: small"], "instruction_attributes": ["high waist"], "instruction_options": ["b-peach butt blue"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OZMM38", "worker_id": "A2ECRNQ3X5LEXD"}], "B083ZG5KTG": [{"asin": "B083ZG5KTG", "instruction": "i would like a pair of women's 6.5 black powder water shoes with a rubber sole.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: 47 black powder", "size: 6.5 women | 5 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["47 black powder", "6.5 women | 5 men"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEK98Q3", "worker_id": "A1WS884SI0SLO4"}], "B07C9BT98C": [{"asin": "B07C9BT98C", "instruction": "i'm looking for a ready to use, fully assembled mattresses with box spring. also, choose beige colored california kig sized bed with 4\" split foundation one.", "attributes": ["ready use", "fully assembled", "assembly required", "box spring"], "options": ["color: beige", "size: california king", "style: 4\" split foundation"], "instruction_attributes": ["ready use", "fully assembled", "box spring"], "instruction_options": ["beige", "california king", "4\" split foundation"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2R44LF", "worker_id": "AR0VJ5XRG16UJ"}], "B07HH5XPZ9": [{"asin": "B07HH5XPZ9", "instruction": "i would like some 18 inch 1b hair extensions made from synthetic hair.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: 1b", "size: 18 inch (pack of 6)"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["1b", "18 inch (pack of 6)"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJW8VG9", "worker_id": "A1WS884SI0SLO4"}], "B09QL66D1G": [{"asin": "B09QL66D1G", "instruction": "i am looking for long sleeve henley shirt. please choose orange color.", "attributes": ["winter warm", "long sleeve", "short sleeve", "contrast color"], "options": ["color: orange", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["orange"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHD9NBS", "worker_id": "A3FG5PQHG5AH3Y"}], "B082VQPQFT": [{"asin": "B082VQPQFT", "instruction": "i am looking a heavy duty hdmi vedio cable size: 6-feet", "attributes": ["gold plated", "heavy duty"], "options": ["size: 6-foot"], "instruction_attributes": ["heavy duty"], "instruction_options": ["6-foot"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHEVNBG", "worker_id": "A3N9ZYQAESNFQH"}], "B08DYGBLBF": [{"asin": "B08DYGBLBF", "instruction": "i am looking for dermatologist tested and paraben free body cream with green tea extracts which is suitable for dry and sensitive skin.", "attributes": ["paraben free", "dermatologist tested", "fragrance free", "green tea", "dry skin", "sensitive skin"], "options": [""], "instruction_attributes": ["paraben free", "dermatologist tested", "green tea", "dry skin", "sensitive skin"], "instruction_options": [], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHT9WLNQ", "worker_id": "A1V2JTEEBCXR20"}], "B09NVWFD91": [{"asin": "B09NVWFD91", "instruction": "please re order a happy easter flannel fleece throw blanket for my coach.it should be super soft and easy to clean.", "attributes": ["super soft", "easy clean", "fleece throw", "living room"], "options": ["color: happy eastersgd0761", "size: 39\" x 49\""], "instruction_attributes": ["super soft", "easy clean", "fleece throw"], "instruction_options": ["happy eastersgd0761"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH154AWH4", "worker_id": "AHU9OLV0YKIIW"}], "B08Z312Q1L": [{"asin": "B08Z312Q1L", "instruction": "i am looking for non slip shoes in 10 size", "attributes": ["non slip", "rubber sole", "comfortable fit", "unique design"], "options": ["size: 10"], "instruction_attributes": ["non slip"], "instruction_options": ["10"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0S2N11T", "worker_id": "A16M39T60N60NO"}], "B08N5NCY6X": [{"asin": "B08N5NCY6X", "instruction": "i'm looking for regular outfit it can make feel comfortab;e.", "attributes": ["rubber outsole", "regular fit", "rubber sole"], "options": ["color: halo silver | carbon | grey three", "size: 6.5"], "instruction_attributes": ["regular fit"], "instruction_options": ["halo silver | carbon | grey three", "6.5"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXSYYLP", "worker_id": "A16IQOX0DK14OJ"}], "B0143NQVP2": [{"asin": "B0143NQVP2", "instruction": "are there any gluten free protein bars with very high protein content available in chocolate raspberry flavour?", "attributes": ["gluten free", "high protein"], "options": ["flavor name: chocolate raspberry", "size: 1.83 ounce (pack of 12)"], "instruction_attributes": ["gluten free", "high protein"], "instruction_options": ["chocolate raspberry"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZGNRPJ", "worker_id": "A3EDFA8UQT5GG8"}], "B0851CHGVF": [{"asin": "B0851CHGVF", "instruction": "i would like a stained glass wall lamp with a bronze finish.", "attributes": ["bronze finish", "dining room", "living room"], "options": ["color: stained glass"], "instruction_attributes": ["bronze finish"], "instruction_options": ["stained glass"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPHS6V3", "worker_id": "A1WS884SI0SLO4"}], "B09LRS6MPF": [{"asin": "B09LRS6MPF", "instruction": "i am looking for a loose fit vest that is red and a 4-xlarge", "attributes": ["loose fit", "short sleeve", "long sleeve", "faux fur"], "options": ["color: 03#red", "size: 4x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["03#red", "4x-large"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPAIOCN", "worker_id": "A2ECRNQ3X5LEXD"}], "B0954WPWWY": [{"asin": "B0954WPWWY", "instruction": "i want to buy an air purifier candle that's soy wax. it should be falling leaves colored and in a 3 pack.", "attributes": ["eco friendly", "soy wax"], "options": ["color: falling leaves", "size: 3 pack"], "instruction_attributes": ["soy wax"], "instruction_options": ["falling leaves", "3 pack"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L21VCG", "worker_id": "A2YNPKYEFDZ6C9"}], "B08F5L5XLH": [{"asin": "B08F5L5XLH", "instruction": "i am looking for lock screen ad supported tablet in 1080p hd", "attributes": ["1080p hd", "long lasting", "hands free"], "options": ["color: denim", "digital storage capacity: 64 gb", "offer type: lockscreen ad-supported", "style: with luna cloud gaming controller"], "instruction_attributes": ["1080p hd"], "instruction_options": ["lockscreen ad-supported"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WAZUOD", "worker_id": "A16M39T60N60NO"}], "B082G4QXDW": [{"asin": "B082G4QXDW", "instruction": "i want something that will let me use my cell phone hands free and has the kansas city chiefs' logo on it. it should allow for wireless charging.", "attributes": ["hands free", "wireless charging"], "options": ["color: kansas city chiefs logo"], "instruction_attributes": ["hands free", "wireless charging"], "instruction_options": ["kansas city chiefs logo"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJOLOM4", "worker_id": "AR9AU5FY1S3RO"}], "B07Z1KJ1NS": [{"asin": "B07Z1KJ1NS", "instruction": "i am looking for small sized women t-shirt. it should be machine washable.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: heather grey", "fit type: women", "size: x-small"], "instruction_attributes": ["machine wash"], "instruction_options": ["women", "x-small"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q3JDKN", "worker_id": "A3FG5PQHG5AH3Y"}], "B08BR58B2V": [{"asin": "B08BR58B2V", "instruction": "i would like a purple storage case for my nail polish.", "attributes": ["storage case", "nail polish"], "options": ["color: purple"], "instruction_attributes": ["storage case", "nail polish"], "instruction_options": ["purple"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0VS5W5", "worker_id": "A1WS884SI0SLO4"}], "B01M71YUW3": [{"asin": "B01M71YUW3", "instruction": "i'm looking for a bronze finish pendant light for high ceiling in dining room.", "attributes": ["bronze finish", "pendant light", "dining room"], "options": [""], "instruction_attributes": ["bronze finish", "pendant light", "dining room"], "instruction_options": [], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSO50XO", "worker_id": "AR0VJ5XRG16UJ"}], "B09PYWJJH4": [{"asin": "B09PYWJJH4", "instruction": "i'm looking for stereo sound it was outside of noise pollution.", "attributes": ["wireless charging", "stereo sound"], "options": [""], "instruction_attributes": ["wireless charging", "stereo sound"], "instruction_options": [], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HGCGHYU", "worker_id": "A16IQOX0DK14OJ"}], "B09F3QFR2M": [{"asin": "B09F3QFR2M", "instruction": "i am looking for a white02 high quality hair cutting kits", "attributes": ["easy clean", "easy use", "high quality", "hair cutting"], "options": ["color: white01"], "instruction_attributes": ["high quality"], "instruction_options": ["white01"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNXEH8H", "worker_id": "A9QRQL9CFJBI7"}], "B09PYKMRCQ": [{"asin": "B09PYKMRCQ", "instruction": "i am looking for long lasting 11oz ceramic tea cup", "attributes": ["lead free", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3X0H8UUITCYRED22199FX2O3EEIWSE", "worker_id": "AX2EWYWZM19AZ"}], "B08FJ45JPS": [{"asin": "B08FJ45JPS", "instruction": "i would like a cat sparkly cosmetic bag that is high quality and water resistant.", "attributes": ["water resistant", "travel size", "high quality", "storage case"], "options": ["color: cat sparkly"], "instruction_attributes": ["water resistant", "high quality"], "instruction_options": ["cat sparkly"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BNAVJW", "worker_id": "A1WS884SI0SLO4"}], "B08R6FZK5V": [{"asin": "B08R6FZK5V", "instruction": "seeking a men's tech pique botanical polo that is short-sleeved, moisture wickering in a size medium showing navy blazer-ocean depths color made by puma.", "attributes": ["moisture wicking", "short sleeve"], "options": ["color: navy blazer-ocean depths", "size: medium"], "instruction_attributes": ["moisture wicking", "short sleeve"], "instruction_options": ["navy blazer-ocean depths", "medium"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOJ0YDD", "worker_id": "A3RGIKEI8JS2QG"}], "B0882RZ4JC": [{"asin": "B0882RZ4JC", "instruction": "i'm looking for a ready-to-eat mild flavor seasoned pork meat with quality ingredients, choose 8.8 ounce (pack of 3)", "attributes": ["ready eat", "shelf stable", "quality ingredients"], "options": ["flavor name: mild", "size: 8.8 ounce (pack of 3)"], "instruction_attributes": ["ready eat", "quality ingredients"], "instruction_options": ["8.8 ounce (pack of 3)"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCT865E", "worker_id": "A1Q0EUNCS50S8M"}], "B0849Q9GPL": [{"asin": "B0849Q9GPL", "instruction": "i'm looking for a oat milk creamer by califia farms .", "attributes": ["plant based", "non gmo", "artificial ingredients", "non dairy", "low sugar", "dairy free", "gluten free"], "options": [""], "instruction_attributes": ["plant based", "non gmo", "non dairy", "low sugar", "gluten free"], "instruction_options": [], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOEUON3", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09FYCSJ87": [{"asin": "B09FYCSJ87", "instruction": "i am looking for a hair mask and a hair conditioner that promotes hair growth and helps repair damaged hair.", "attributes": ["damaged hair", "dry hair", "hair treatment", "hair salon", "hair growth"], "options": [""], "instruction_attributes": ["damaged hair", "hair growth"], "instruction_options": [], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDWTIAB", "worker_id": "AJDQGOTMB2D80"}], "B0727Z2B2P": [{"asin": "B0727Z2B2P", "instruction": "i want an xx-large gonxaga bulldogs sweatshirt. it should be officially licensed.", "attributes": ["officially licensed", "hand wash", "machine wash"], "options": ["color: florida state seminoles garnet", "size: xx-large", "team name: gonzaga bulldogs"], "instruction_attributes": ["officially licensed"], "instruction_options": ["xx-large", "gonzaga bulldogs"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746XUBTK", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B0727Z2B2P", "instruction": "find the officially licensed top of the world fit light heather arch men's crew neck sweater. my son wants it with the team name: wisconsin badgers.", "attributes": ["officially licensed", "hand wash", "machine wash"], "options": ["color: west virginia mountaineers dark heather", "size: large", "team name: wisconsin badgers"], "instruction_attributes": ["officially licensed"], "instruction_options": ["wisconsin badgers"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QVQ07T", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B0727Z2B2P", "instruction": "i want a medium machine washable top of the world men's fit sweatshirt.", "attributes": ["officially licensed", "hand wash", "machine wash"], "options": ["color: wyoming cowboys dark heather", "size: medium", "team name: indiana hoosiers"], "instruction_attributes": ["machine wash"], "instruction_options": ["medium"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSA5WCR", "worker_id": "A2RBF3IIJP15IH"}], "B09J2RZ26Q": [{"asin": "B09J2RZ26Q", "instruction": "i looking a super soft fleece throw for small pets size;40*30 inch", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: monkey", "size: 40\"x30\" extra small for pet"], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["40\"x30\" extra small for pet"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U7VAM5", "worker_id": "A3N9ZYQAESNFQH"}], "B08RYT36YW": [{"asin": "B08RYT36YW", "instruction": "i want to find a 42 millimeter long baby pink loop strap compatible with my apple watch band.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: baby pink", "size: 42mm | 44mm | 45mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["baby pink", "42mm | 44mm | 45mm"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVMALXC", "worker_id": "A345TDMHP3DQ3G"}], "B0184JRW1I": [{"asin": "B0184JRW1I", "instruction": "i am shopping for a height adjustable blue desk with drawers.", "attributes": ["height adjustable", "lead free"], "options": ["color: blue desk only", "size: desk"], "instruction_attributes": ["height adjustable"], "instruction_options": ["blue desk only", "desk"], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UI2KO5", "worker_id": "A1NF6PELRKACS9"}], "B00LLGSY82": [{"asin": "B00LLGSY82", "instruction": "i would like a single spring 4mm jaw nail clippers made of stainless steel.", "attributes": ["stainless steel", "dead skin"], "options": ["pattern name: single spring 4mm jaw"], "instruction_attributes": ["stainless steel"], "instruction_options": ["single spring 4mm jaw"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCKWIPY", "worker_id": "A1WS884SI0SLO4"}], "B08X1V7V92": [{"asin": "B08X1V7V92", "instruction": "i am looking for a hands free earbud headphones and color should be light grey or blue.", "attributes": ["water resistant", "hands free"], "options": ["color: light grey | blue"], "instruction_attributes": ["hands free"], "instruction_options": ["light grey | blue"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4Y9H0Z", "worker_id": "A9QRQL9CFJBI7"}], "B08P572SR5": [{"asin": "B08P572SR5", "instruction": "i want a pair of non slip ballet flats with rubber sole. i need it in size 11.", "attributes": ["non slip", "rubber outsole", "rubber sole"], "options": ["color: white lace", "size: 11"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["11"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR49TFUX", "worker_id": "A1NF6PELRKACS9"}], "B09B9CX9N1": [{"asin": "B09B9CX9N1", "instruction": "i am looking for a cruelty free makeup blender sponge which is easy to clean. also choose green color.", "attributes": ["easy clean", "cruelty free"], "options": ["color: green"], "instruction_attributes": ["easy clean", "cruelty free"], "instruction_options": ["green"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB3I5YU", "worker_id": "A2HMEGTAFO0CS8"}], "B09MHVS36T": [{"asin": "B09MHVS36T", "instruction": "i am looking for high quality rainbow9 color hair cap.", "attributes": ["high quality", "natural hair"], "options": ["color: rainbow9"], "instruction_attributes": ["high quality"], "instruction_options": ["rainbow9"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9UH875", "worker_id": "A3FG5PQHG5AH3Y"}], "B08ZRYFXZC": [{"asin": "B08ZRYFXZC", "instruction": "i'm looking for clothing easy to machinable washes and it has unique design.", "attributes": ["machine wash", "wash cold", "unique design", "tumble dry"], "options": ["color: multi4", "size: x-large"], "instruction_attributes": ["machine wash", "unique design", "tumble dry"], "instruction_options": ["multi4"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCWY46Q", "worker_id": "A16IQOX0DK14OJ"}], "B07N13MK4G": [{"asin": "B07N13MK4G", "instruction": "im looking for women\u2019s beige skechers go walk 5-lucky sneaker in a size 10.", "attributes": ["machine washable", "synthetic sole"], "options": ["color: beige taupe textile trim tpe", "size: 10"], "instruction_attributes": ["machine washable"], "instruction_options": ["beige taupe textile trim tpe", "10"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ASQBWQ", "worker_id": "AK3JMCIGU8MLU"}], "B0891NDH4B": [{"asin": "B0891NDH4B", "instruction": "i am looking for easy to use bath shower scrubber for men. please choose blue one.", "attributes": ["bpa free", "easy use"], "options": ["color: blue"], "instruction_attributes": ["easy use"], "instruction_options": ["blue"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV1IX3B", "worker_id": "A3FG5PQHG5AH3Y"}], "B09R3TJ4ZZ": [{"asin": "B09R3TJ4ZZ", "instruction": "find me a pair of anti slip high heel sandals in black. i am a size 6.", "attributes": ["knee high", "day comfort", "anti slip", "non slip", "hand wash", "lace closure", "high heel"], "options": ["color: black", "size: 6"], "instruction_attributes": ["anti slip", "high heel"], "instruction_options": ["black", "6"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2OGYNB", "worker_id": "A1NF6PELRKACS9"}], "B09FQZ8VW1": [{"asin": "B09FQZ8VW1", "instruction": "i am looking for a alcohol free face wash for makeup removal which is easy to use. also choose eco friendly one.", "attributes": ["alcohol free", "eco friendly", "easy use"], "options": [""], "instruction_attributes": ["alcohol free", "eco friendly", "easy use"], "instruction_options": [], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4J3M8L", "worker_id": "A2HMEGTAFO0CS8"}], "B07KJQDVM4": [{"asin": "B07KJQDVM4", "instruction": "i'm looking for rose gold hair coloring products for permanent hair.", "attributes": ["easy use", "rose gold", "hair dye", "permanent hair", "natural hair"], "options": ["color: 4.15", "size: 1 count (pack of 1)"], "instruction_attributes": ["easy use", "rose gold", "hair dye", "permanent hair"], "instruction_options": ["4.15"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VZHWYV", "worker_id": "A16IQOX0DK14OJ"}], "B09S8KNGZ3": [{"asin": "B09S8KNGZ3", "instruction": "i'm looking for open and closed toe sandals for buy it.", "attributes": ["open toe", "closed toe"], "options": ["color: w1 - green", "size: 8 wide"], "instruction_attributes": ["open toe", "closed toe"], "instruction_options": ["w1 - green"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCWY64S", "worker_id": "A16IQOX0DK14OJ"}], "B009G74AXG": [{"asin": "B009G74AXG", "instruction": "this brand lorann blueberry ss (with natural flavors) is the one i always use, find the 16 oz bottle, for me the gluten free version.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: blueberry", "size: 16 ounce"], "instruction_attributes": ["gluten free"], "instruction_options": ["blueberry"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT33YJX", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B009G74AXG", "instruction": "i am looking for gluten free foods with hazelnut flavor", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: hazelnut", "size: 4 fl oz, 3 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["hazelnut"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL1WNSU", "worker_id": "A16M39T60N60NO"}, {"asin": "B009G74AXG", "instruction": "i would like a 4 fluid ounce bottle of bpa free cookie butter extract.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: cookie butter", "size: 4 fl oz"], "instruction_attributes": ["bpa free"], "instruction_options": ["cookie butter", "4 fl oz"], "assignment_id": "354P56DE9VDCOY11T1135MPMLPAS7D", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B009G74AXG", "instruction": "i'm looking for a bakery emulsion which should be free from bpa and gluten. also, choose 1 gallon maple flavored one.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: maple", "size: 1 gallon"], "instruction_attributes": ["bpa free", "gluten free"], "instruction_options": ["maple", "1 gallon"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRQRF9I", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B009G74AXG", "instruction": "i need some gluten free orange extract", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: orange", "size: 4 fl oz (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["orange"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2BG7YI", "worker_id": "A2ECRNQ3X5LEXD"}], "B09162G91K": [{"asin": "B09162G91K", "instruction": "i am looking for a cupcake toppers for the birth day party of my daughter", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL08AVN", "worker_id": "A2COCSUGZV28X"}], "B07N33D4TH": [{"asin": "B07N33D4TH", "instruction": "i am looking for a pack of 5 dark blonde hair dye touch up spray.", "attributes": ["cruelty free", "permanent hair", "hair dye", "beauty salon"], "options": ["color: dark blonde", "size: pack of 5"], "instruction_attributes": ["hair dye"], "instruction_options": ["dark blonde", "pack of 5"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U5IMA0", "worker_id": "A1EREKSZAA9V7B"}], "B09GYMZ7Y2": [{"asin": "B09GYMZ7Y2", "instruction": "i would like a pair of yellow size 8.5 boots that are comfortable during the day.", "attributes": ["day comfort", "non slip", "quality materials"], "options": ["color: yellow", "size: 8.5"], "instruction_attributes": ["day comfort"], "instruction_options": ["yellow", "8.5"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXTGYL9", "worker_id": "A1WS884SI0SLO4"}], "B07DP7WNS9": [{"asin": "B07DP7WNS9", "instruction": "i am looking for gluten free snacks with strawberry flavor", "attributes": ["non gmo", "gluten free"], "options": ["flavor name: strawberry", "size: 12 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["strawberry"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBELPKZP", "worker_id": "A16M39T60N60NO"}], "B09NKWML4K": [{"asin": "B09NKWML4K", "instruction": "i am looking for a short sleeve top for a teenage girl. it should in xx-large size.", "attributes": ["loose fit", "day comfort", "hand wash", "short sleeve", "polyester spandex", "teen girls"], "options": ["size: xx-large"], "instruction_attributes": ["short sleeve", "teen girls"], "instruction_options": ["xx-large"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZI88OA", "worker_id": "A1NF6PELRKACS9"}], "B09DY4KL7F": [{"asin": "B09DY4KL7F", "instruction": "cosmetic craft glitter set for nail art in green colour", "attributes": ["non toxic", "easy clean", "nail art"], "options": ["color: green"], "instruction_attributes": ["nail art"], "instruction_options": ["green"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLLPM0W", "worker_id": "A10OGH5CQBXL5N"}], "B09JF3D6D3": [{"asin": "B09JF3D6D3", "instruction": "i need grey memory foam slippers with open toes.", "attributes": ["open toe", "water resistant", "memory foam", "arch support"], "options": ["color: c-gray", "size: 11.5"], "instruction_attributes": ["open toe", "memory foam"], "instruction_options": ["c-gray"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL2GRVS", "worker_id": "A1NF6PELRKACS9"}], "B000KPO99I": [{"asin": "B000KPO99I", "instruction": "i am searching for an anti aging and dermatologist tested night cream. also, choose the 3.4 ounce size.", "attributes": ["dermatologist tested", "anti aging"], "options": ["size: 3.4 ounce"], "instruction_attributes": ["dermatologist tested", "anti aging"], "instruction_options": ["3.4 ounce"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79J3QK2", "worker_id": "A9ZM1P6LBW79"}], "B00RHH51P8": [{"asin": "B00RHH51P8", "instruction": "show me twin sized bronze colored day bed made in canopy bed style.", "attributes": ["twin size", "white item"], "options": ["color: bronze", "size: twin", "style: canopy bed"], "instruction_attributes": ["twin size"], "instruction_options": ["bronze", "twin", "canopy bed"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8E3XUK", "worker_id": "A3AYHESLQSDY5T"}, {"asin": "B00RHH51P8", "instruction": "i want to find a white and gold king-sized daybed.", "attributes": ["twin size", "white item"], "options": ["color: gold", "size: king", "style: bed"], "instruction_attributes": ["white item"], "instruction_options": ["gold", "king", "bed"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCOD7IZ", "worker_id": "A345TDMHP3DQ3G"}], "B093XKPQSJ": [{"asin": "B093XKPQSJ", "instruction": "i am looking for a suckers & lollipops of spiderman pop ups flavor for birthday party.", "attributes": ["individually wrapped", "party supplies", "birthday party"], "options": ["flavor name: spiderman pop ups"], "instruction_attributes": ["birthday party"], "instruction_options": ["spiderman pop ups"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEVKUUL", "worker_id": "A9QRQL9CFJBI7"}], "B009PQB0KE": [{"asin": "B009PQB0KE", "instruction": "i'm looking for hair removal of men's it was personal care in beauty.", "attributes": ["high quality", "stainless steel", "hair cutting"], "options": [""], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": [], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFTV0TL", "worker_id": "A16IQOX0DK14OJ"}], "B085NDWSZW": [{"asin": "B085NDWSZW", "instruction": "i'm looking for makeup accessories for deadly skin and easy to clean to skin.", "attributes": ["double sided", "easy clean", "dead skin"], "options": [""], "instruction_attributes": ["easy clean", "dead skin"], "instruction_options": [], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RHALFH", "worker_id": "A16IQOX0DK14OJ"}], "B07YGLDGZV": [{"asin": "B07YGLDGZV", "instruction": "i am looking for men's machine washable alloy colored dress pants.", "attributes": ["machine washable", "slim fit", "machine wash", "imported zipper"], "options": ["color: alloy", "size: 36w x 30l"], "instruction_attributes": ["machine washable"], "instruction_options": ["alloy"], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE05TJL", "worker_id": "A1EREKSZAA9V7B"}], "B005ME1PHQ": [{"asin": "B005ME1PHQ", "instruction": "i'm looking for need to buy a cookie butter and it was gluten free and it contains high protein.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: cookie butter", "size: 4 fl oz (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["cookie butter"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQG5JRX", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B005ME1PHQ", "instruction": "i would like a 128 fluid ounce bottle of princess cake and cookie that is bpa free.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: princess cake and cookie", "size: 128 fl oz (pack of 1)"], "instruction_attributes": ["bpa free"], "instruction_options": ["princess cake and cookie", "128 fl oz (pack of 1)"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZG5LK3", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B005ME1PHQ", "instruction": "show me lorann coffee bakery emulsion, red velvet flavor and gluten free. i need to add an order for this week.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: red velvet", "size: 4 fl oz\u2026."], "instruction_attributes": ["gluten free"], "instruction_options": ["red velvet"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATBX37M", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B005ME1PHQ", "instruction": "i'm looking for 4 ounce bottle of coffee bakery emulsion.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: strawberry", "size: 16 fl oz."], "instruction_attributes": ["bpa free"], "instruction_options": ["16 fl oz."], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9DQAZ3", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B005ME1PHQ", "instruction": "i would like a 1 gallon bottle of blueberry imitation extract that is bpa free.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: blueberry", "size: 1 gallon"], "instruction_attributes": ["bpa free"], "instruction_options": ["blueberry", "1 gallon"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU32RLV", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B005ME1PHQ", "instruction": "i want to get some cherry flavored imitation flavoring that is in a 4 oz six pack size.", "attributes": ["bpa free", "gluten free"], "options": ["flavor name: cherry", "size: 4 ounce, 6 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["cherry", "4 ounce, 6 pack"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THVEZ53", "worker_id": "A2YNPKYEFDZ6C9"}], "B08PKGFW3L": [{"asin": "B08PKGFW3L", "instruction": "i am looking for birthday party gift supplies. she is a 15 year old girl.", "attributes": ["individually wrapped", "birthday party", "party supplies", "perfect gift"], "options": [""], "instruction_attributes": ["birthday party", "party supplies", "perfect gift"], "instruction_options": [], "assignment_id": "3PIWWX1FJUGC9QJD7GHMGB38GZWJJQ", "worker_id": "A1NF6PELRKACS9"}], "B09RZN1YYP": [{"asin": "B09RZN1YYP", "instruction": "i'm looking for cellphone accessories for tempered glass. it was long lasting time.", "attributes": ["high definition", "easy install", "tempered glass"], "options": ["color: iphone 12 pro"], "instruction_attributes": ["tempered glass"], "instruction_options": ["iphone 12 pro"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LICPSB", "worker_id": "A16IQOX0DK14OJ"}], "B09SCYZ17V": [{"asin": "B09SCYZ17V", "instruction": "i'm looking for a open toe slippers with ankle strap. also, choose 6 size wide, a8 white colored one", "attributes": ["open toe", "ankle strap", "closed toe"], "options": ["color: a8 - white", "size: 6 wide"], "instruction_attributes": ["open toe", "ankle strap"], "instruction_options": ["a8 - white", "6 wide"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTM7O6R", "worker_id": "AR0VJ5XRG16UJ"}], "B08QVLQ7VQ": [{"asin": "B08QVLQ7VQ", "instruction": "i am looking to buy pillow covers for my living room. i would like them to be 2 pieces of dimension 18\" x 18\"", "attributes": ["exquisite workmanship", "faux leather", "living room"], "options": ["color: navy3 | 8# leather", "size: 2 pieces, 18\" x 18\""], "instruction_attributes": ["living room"], "instruction_options": ["2 pieces, 18\" x 18\""], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPAQORW", "worker_id": "AHXHM1PQTRWIQ"}], "B09MCWQHB6": [{"asin": "B09MCWQHB6", "instruction": "i am looking for eco friendly window films that are multicolored.", "attributes": ["eco friendly", "living room"], "options": ["color: multi-05711", "size: 17.7\" x 23.6\" x 2 pcs"], "instruction_attributes": ["eco friendly"], "instruction_options": ["multi-05711"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQF7918", "worker_id": "A2ECRNQ3X5LEXD"}], "B08L86MM2W": [{"asin": "B08L86MM2W", "instruction": "i am looking for a heavy duty bedroom sets of full xl size", "attributes": ["heavy duty", "assembly required", "king size"], "options": ["size: full xl", "style: heavy duty"], "instruction_attributes": ["heavy duty"], "instruction_options": ["full xl", "heavy duty"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRY7XJQ", "worker_id": "A9QRQL9CFJBI7"}], "B09KV8YFY9": [{"asin": "B09KV8YFY9", "instruction": "szitop women's yoga pants crossover yoga pants flare crossover high waist workout leggings yoga pants with stretch belly control bootcut do you know a szitop brand? i need flare yoga pants. for everyday wear, machine washable, high waist. look for size .xx-large.", "attributes": ["hand wash", "machine wash", "tummy control", "high waist", "stretch fabric", "elastic closure", "cotton spandex", "elastic waist", "daily wear"], "options": ["color: f-navy", "size: xx-large"], "instruction_attributes": ["machine wash", "high waist", "daily wear"], "instruction_options": ["xx-large"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54R4837", "worker_id": "A15IJ20C3R4HUO"}], "B003YCN7B0": [{"asin": "B003YCN7B0", "instruction": "find me an oil free dermatologist tested exfoliating facial scrub for dry skin with shien control feature and in 4.2 ounce (pack of 3) size.", "attributes": ["oil free", "dermatologist tested", "dry skin"], "options": ["size: 4.2 ounce (pack of 3)", "style: shine control"], "instruction_attributes": ["oil free", "dermatologist tested", "dry skin"], "instruction_options": ["4.2 ounce (pack of 3)", "shine control"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BM0X8R", "worker_id": "A3AYHESLQSDY5T"}], "B085QMTTSC": [{"asin": "B085QMTTSC", "instruction": "i need a chocolate coated wafers with a 4.41 ounce size. and i choose the caramel flavor", "attributes": ["kosher certified", "artificial colors", "artificial flavors"], "options": ["flavor name: caramel", "size: 4.41 ounce"], "instruction_attributes": ["kosher certified"], "instruction_options": ["caramel", "4.41 ounce"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT2RP3X", "worker_id": "A2COCSUGZV28X"}], "B097SL3X81": [{"asin": "B097SL3X81", "instruction": "i am looking for a white tempered glass screen smartwatch bands which is compatible to apple", "attributes": ["compatible apple", "tempered glass", "glass screen"], "options": ["color: white", "size: 40mm"], "instruction_attributes": ["compatible apple", "tempered glass", "glass screen"], "instruction_options": ["white"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ10NRX", "worker_id": "A9QRQL9CFJBI7"}], "B09H6K6SZT": [{"asin": "B09H6K6SZT", "instruction": "i am looking for a blue color tablets with high performance.", "attributes": ["ultra hd", "high performance"], "options": ["color: blue"], "instruction_attributes": ["high performance"], "instruction_options": ["blue"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5GAWIG", "worker_id": "A9QRQL9CFJBI7"}], "B0989N4SWC": [{"asin": "B0989N4SWC", "instruction": "i'm looking for high definition 5 in 1 carrying case kit that has separate compartments for case cover, tempered glass and glass screen. also choose large blue colored one.", "attributes": ["high definition", "glass screen", "tempered glass", "case cover", "carrying case"], "options": ["color: blue", "size: large"], "instruction_attributes": ["high definition", "glass screen", "tempered glass", "case cover", "carrying case"], "instruction_options": ["blue", "large"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF3PDLR", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B0989N4SWC", "instruction": "i would like a large blue switch case with a glass screen.", "attributes": ["high definition", "glass screen", "tempered glass", "case cover", "carrying case"], "options": ["color: blue", "size: large"], "instruction_attributes": ["glass screen"], "instruction_options": ["blue", "large"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJQLGDE", "worker_id": "A1WS884SI0SLO4"}], "B07ZK5YRBM": [{"asin": "B07ZK5YRBM", "instruction": "i am looking for a curtain for living room which is washable in machine. also choose 52\" wide by 90\" length in size.", "attributes": ["machine washable", "living room"], "options": ["color: mandala27lbg2100", "size: 52\" w by 90\" l"], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["52\" w by 90\" l"], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE2FJTP", "worker_id": "A2HMEGTAFO0CS8"}], "B08FTKG5HS": [{"asin": "B08FTKG5HS", "instruction": "a am looking vinyl acetate rose gold women sandal size 10", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: rose gold suede interest", "size: 10"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["rose gold suede interest", "10"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R6BYTL", "worker_id": "A3N9ZYQAESNFQH"}], "B09SHRB1KG": [{"asin": "B09SHRB1KG", "instruction": "i am looking for a high definition android car stereo of quad core color.", "attributes": ["plug play", "high definition", "4g lte"], "options": ["color: quad core", "size: 2g+32g"], "instruction_attributes": ["high definition"], "instruction_options": ["quad core"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LC31OK", "worker_id": "A9QRQL9CFJBI7"}], "B074VFLXWN": [{"asin": "B074VFLXWN", "instruction": "i'm looking for high pigmented for long lasting beauty skin care.", "attributes": ["highly pigmented", "long lasting"], "options": ["color: 140 light tan", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["highly pigmented", "long lasting"], "instruction_options": ["140 light tan"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSOB0XU", "worker_id": "A16IQOX0DK14OJ"}], "B08ZNCX4WB": [{"asin": "B08ZNCX4WB", "instruction": "i'm looking for wall art pictures for hanging through the wall.", "attributes": ["ready hang", "easy clean", "living room"], "options": ["color: red rose", "size: 12x12inx4"], "instruction_attributes": ["ready hang", "easy clean"], "instruction_options": [], "assignment_id": "3NGMS9VZTWSGZMBL50ZGMFJOULZFFH", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08ZNCX4WB", "instruction": "im looking for ready to hang, beach themed art work in size 14\u201d x 14\u201d.", "attributes": ["ready hang", "easy clean", "living room"], "options": ["color: yellow rose", "size: 14x14inx4"], "instruction_attributes": ["ready hang"], "instruction_options": ["14x14inx4"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNNCTNX", "worker_id": "AK3JMCIGU8MLU"}], "B0787R6C51": [{"asin": "B0787R6C51", "instruction": "i'm looking for fragrance for men's its for long lasting.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBCCSOR", "worker_id": "A16IQOX0DK14OJ"}], "B07KX9Y57X": [{"asin": "B07KX9Y57X", "instruction": "i am looking for a ready to hang print that is of sea and glass", "attributes": ["ready hang", "living room"], "options": ["color: sea & glass (1)", "size: 16x16"], "instruction_attributes": ["ready hang"], "instruction_options": ["sea & glass (1)"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7K0N5A", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NNT5XCJ": [{"asin": "B07NNT5XCJ", "instruction": "earthy fragrance for women", "attributes": ["animal testing", "high quality"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "33F859I56HNA01QBVO1K6A4GV2RHB6", "worker_id": "A10OGH5CQBXL5N"}], "B0876G6Z9P": [{"asin": "B0876G6Z9P", "instruction": "i am looking for low carb, gluten free keto red velvet brownie cookies", "attributes": ["low carb", "high protein", "gluten free", "low sugar", "low calorie", "quality ingredients"], "options": ["flavor name: red velvet brownie", "size: 6.4 ounce (pack of 1)"], "instruction_attributes": ["low carb", "gluten free"], "instruction_options": ["red velvet brownie"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O3QA2S", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B0876G6Z9P", "instruction": "i want a 6 ounce peanut butter low carb snacks.", "attributes": ["low carb", "high protein", "gluten free", "low sugar", "low calorie", "quality ingredients"], "options": ["flavor name: peanut butter", "size: 6 ounce (pack of 5)"], "instruction_attributes": ["low carb"], "instruction_options": ["peanut butter", "6 ounce (pack of 5)"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK4VUIJ", "worker_id": "A1WS884SI0SLO4"}], "B09FLH9RFF": [{"asin": "B09FLH9RFF", "instruction": "i'm looking for super soft blankets and throws.", "attributes": ["super soft", "living room"], "options": ["color: wolf grey sky", "size: xl - 51.2\"x59.1\""], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["wolf grey sky"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788EZ5CJ", "worker_id": "A16IQOX0DK14OJ"}], "B009ZKZEDO": [{"asin": "B009ZKZEDO", "instruction": "i am looking for a glass shade candle sconces.", "attributes": ["assembly required", "easy install", "easy clean", "glass shade"], "options": [""], "instruction_attributes": ["glass shade"], "instruction_options": [], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746WSTBY", "worker_id": "A9QRQL9CFJBI7"}], "B09MZFY93T": [{"asin": "B09MZFY93T", "instruction": "i'm looking for cupcake decorations for parties and need to buy it.", "attributes": ["hand crafted", "party supplies"], "options": [""], "instruction_attributes": ["hand crafted", "party supplies"], "instruction_options": [], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRS8RUE7", "worker_id": "A16IQOX0DK14OJ"}], "B07QLT232B": [{"asin": "B07QLT232B", "instruction": "i'm looking for stretch fabric rubber outsole", "attributes": ["stretch fabric", "memory foam", "rubber outsole", "rubber sole"], "options": ["color: marble", "size: 9-9.5"], "instruction_attributes": ["stretch fabric", "rubber outsole"], "instruction_options": ["marble"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZXLZJ3", "worker_id": "A16IQOX0DK14OJ"}], "B086MQ57DV": [{"asin": "B086MQ57DV", "instruction": "i'm looking for gym workout wear for daily wear uses.", "attributes": ["wash cold", "machine wash", "fashion design", "quality materials", "polyester cotton", "gym workout", "everyday wear", "daily wear"], "options": ["color: salmon", "size: x-large"], "instruction_attributes": ["wash cold", "machine wash", "fashion design", "polyester cotton", "gym workout", "everyday wear"], "instruction_options": ["salmon"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFPLV3F", "worker_id": "A16IQOX0DK14OJ"}], "B09DD313B3": [{"asin": "B09DD313B3", "instruction": "i am looking a long handle bath body brush easy usable quality should be high", "attributes": ["easy use", "high quality", "long handle", "quality materials"], "options": [""], "instruction_attributes": ["easy use", "high quality", "long handle"], "instruction_options": [], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7Y45PP", "worker_id": "A3N9ZYQAESNFQH"}], "B015QHXVI4": [{"asin": "B015QHXVI4", "instruction": "i'm looking for keto friendly have zero sugar.", "attributes": ["certified organic", "non gmo", "keto friendly", "sugar free", "plant based"], "options": ["size: 1 pound"], "instruction_attributes": ["keto friendly", "sugar free"], "instruction_options": ["1 pound"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRS8IEUI", "worker_id": "A16IQOX0DK14OJ"}], "B09S5S2MZZ": [{"asin": "B09S5S2MZZ", "instruction": "i want a high power binoculars with a large eyepiece for bird watching.", "attributes": ["high power", "bird watching"], "options": [""], "instruction_attributes": ["high power", "bird watching"], "instruction_options": [], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVGFSZT", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09S5S2MZZ", "instruction": "i want a pair of binoculars for bird watching.", "attributes": ["high power", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXW85OE", "worker_id": "A1WS884SI0SLO4"}], "B09QCWBPK5": [{"asin": "B09QCWBPK5", "instruction": "i would like a 38 mm smartwatch band for my applewatch that is a transparent black flower.", "attributes": ["compatible apple", "high performance", "easy install", "stainless steel"], "options": ["color: transparent black flower", "size: 38mm | 40mm | 41mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["transparent black flower", "38mm | 40mm | 41mm"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWT0R97N", "worker_id": "A1WS884SI0SLO4"}], "B07XYM11XS": [{"asin": "B07XYM11XS", "instruction": "i'm looking for a adapter for wireless bluetooth speakers with output protection.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["output protection", "wireless bluetooth"], "instruction_options": [], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOJ1DYT", "worker_id": "AR0VJ5XRG16UJ"}], "B00GTQZNDS": [{"asin": "B00GTQZNDS", "instruction": "i am looking for a fully assembled storage unit made from plywood.", "attributes": ["fully assembled", "storage unit"], "options": ["color: assorted colors", "configuration: fully assembled", "style: with bins"], "instruction_attributes": ["storage unit"], "instruction_options": ["fully assembled"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCSU65Y", "worker_id": "AJDQGOTMB2D80"}], "B0751NG9VN": [{"asin": "B0751NG9VN", "instruction": "i need a tuna creations bold, rice and beans in soy free hot sauce flavored tapatio, 2.6 ounce (pack of 1)", "attributes": ["wild caught", "soy free"], "options": ["flavor name: tapatio", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["soy free"], "instruction_options": ["tapatio", "2.6 ounce (pack of 1)"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPZATX1", "worker_id": "A258PTOZ3D2TQR"}], "B093DJDL6T": [{"asin": "B093DJDL6T", "instruction": "i am looking for washable easy clean non toxic hair chalk for girls", "attributes": ["easy apply", "non toxic", "easy clean", "easy use", "dry hair"], "options": [""], "instruction_attributes": ["non toxic", "easy clean"], "instruction_options": [], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYKDLQ7", "worker_id": "A258PTOZ3D2TQR"}], "B07M6LWR7C": [{"asin": "B07M6LWR7C", "instruction": "i nee all natural but no artificial ingredients savory and spicy sauce, 3 pack with sweet kick mustard flavor.", "attributes": ["artificial ingredients", "non gmo"], "options": ["flavor name: sweet kick mustard", "size: 3 pack"], "instruction_attributes": ["artificial ingredients"], "instruction_options": ["sweet kick mustard", "3 pack"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2NFL5H", "worker_id": "A258PTOZ3D2TQR"}], "B081JHXKWG": [{"asin": "B081JHXKWG", "instruction": "i am looking for a cake toppers for birthday party.", "attributes": ["cupcake picks", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCWK64E", "worker_id": "A9QRQL9CFJBI7"}], "B0959MKXBR": [{"asin": "B0959MKXBR", "instruction": "i'm looking for a twin bed frame with light brown color and white finish.", "attributes": ["white item", "assembly required", "white finish", "engineered wood", "box spring"], "options": ["color: light brown", "size: twin"], "instruction_attributes": ["white finish"], "instruction_options": ["light brown", "twin"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GE7ZUP", "worker_id": "A1Q0EUNCS50S8M"}], "B09SSKKG32": [{"asin": "B09SSKKG32", "instruction": "i am looking for a wide leg overall for women with long sleeve and high waist. also choose beige color and 3x large size.", "attributes": ["wide leg", "straight leg", "elastic waist", "high waist", "short sleeve", "long sleeve", "everyday wear"], "options": ["color: beige", "size: 3x-large"], "instruction_attributes": ["wide leg", "high waist", "long sleeve"], "instruction_options": ["beige", "3x-large"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7JEN5M", "worker_id": "A2HMEGTAFO0CS8"}], "B08BR1QRC3": [{"asin": "B08BR1QRC3", "instruction": "i want pecocke print curtain panel machine washable size:120\"w*90\"l", "attributes": ["machine washable", "white item"], "options": ["color: color08", "size: 120\" w x 90\" l"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "369J354OFOKQUTE5FR2UAU6N22U6G4", "worker_id": "A3N9ZYQAESNFQH"}], "B091F5JC1Y": [{"asin": "B091F5JC1Y", "instruction": "large size hand washable silk satin pajamas with elasticwaistband", "attributes": ["hand wash", "quality polyester", "elastic waistband", "polyester spandex", "daily wear"], "options": ["color: teal", "size: large"], "instruction_attributes": ["hand wash", "elastic waistband"], "instruction_options": ["large"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA8F2SW", "worker_id": "A10OGH5CQBXL5N"}], "B08ZQLXCTV": [{"asin": "B08ZQLXCTV", "instruction": "i need black color and 15 ft long heavy duty surge protector power strip", "attributes": ["heavy duty", "usb port"], "options": ["color: black", "size: 15 ft"], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907TIUA1", "worker_id": "A258PTOZ3D2TQR"}], "B083LVF5PM": [{"asin": "B083LVF5PM", "instruction": "i am looking for a wireless bluetooth 4.0 power amplifier board.", "attributes": ["power amplifier", "wireless bluetooth"], "options": [""], "instruction_attributes": ["power amplifier", "wireless bluetooth"], "instruction_options": [], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K6T12Y", "worker_id": "A1EREKSZAA9V7B"}], "B07BGDBMXC": [{"asin": "B07BGDBMXC", "instruction": "i need a mid century faux leather ottoman in walnut brown color.", "attributes": ["mid century", "assembly required", "faux leather"], "options": [""], "instruction_attributes": ["mid century", "faux leather"], "instruction_options": [], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIKIEFW", "worker_id": "A1NF6PELRKACS9"}], "B07DLQ2H98": [{"asin": "B07DLQ2H98", "instruction": "i would like a full sized day bed with a brushed bronze frame that's easy to assemble.", "attributes": ["easy assemble", "box spring"], "options": ["color: brushed bronze", "size: full over twin size", "style: daybed and trundle"], "instruction_attributes": ["easy assemble"], "instruction_options": ["brushed bronze", "full over twin size", "daybed and trundle"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O2L2AD", "worker_id": "A1WS884SI0SLO4"}], "B08ZGZZDCJ": [{"asin": "B08ZGZZDCJ", "instruction": "i'm looking for cakes it contains high protein and the low fat.", "attributes": ["high protein", "low fat"], "options": ["flavor name: gluten free", "size: 5 pound"], "instruction_attributes": ["high protein", "low fat"], "instruction_options": ["gluten free"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662XF4M4", "worker_id": "A16IQOX0DK14OJ"}], "B093BNSSHW": [{"asin": "B093BNSSHW", "instruction": "i am lookin for black stereo sound computer speakers.", "attributes": ["aluminum alloy", "stereo sound"], "options": ["color: black", "size: wired + bluetooth"], "instruction_attributes": ["stereo sound"], "instruction_options": ["black"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2RML4E", "worker_id": "A9QRQL9CFJBI7"}], "B09D7RBGLX": [{"asin": "B09D7RBGLX", "instruction": "i'm looking for hand painted decorative pillows for grey plant colored.", "attributes": ["hand painted", "exquisite workmanship"], "options": ["color: grey plant"], "instruction_attributes": ["hand painted"], "instruction_options": ["grey plant"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ2750171MP4F", "worker_id": "A16IQOX0DK14OJ"}], "B008ZEEDBA": [{"asin": "B008ZEEDBA", "instruction": "i am looking for a x-large jacket fleece that is water resistant. and please get me the red color", "attributes": ["water resistant", "fleece lined"], "options": ["color: red | white | blue", "size: x-large"], "instruction_attributes": ["water resistant"], "instruction_options": ["red | white | blue", "x-large"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40XLYFV", "worker_id": "A2COCSUGZV28X"}], "B09SPWBXNR": [{"asin": "B09SPWBXNR", "instruction": "i'm looking for open toe pillow slippers its make comfortable.", "attributes": ["non slip", "open toe", "hand wash", "lace closure"], "options": ["color: camouflage", "size: 5.5"], "instruction_attributes": ["non slip", "open toe"], "instruction_options": ["camouflage", "5.5"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DB4WDG", "worker_id": "A16IQOX0DK14OJ"}], "B08HWR6C22": [{"asin": "B08HWR6C22", "instruction": "i'm looking for tripoid for electronics needed.", "attributes": ["easy carry", "carbon fiber", "carrying case"], "options": [""], "instruction_attributes": ["easy carry", "carrying case"], "instruction_options": [], "assignment_id": "3X0H8UUITCYRED22199FX2O3EEPSWH", "worker_id": "A16IQOX0DK14OJ"}], "B076BC2CC2": [{"asin": "B076BC2CC2", "instruction": "i would like 72 one ounce bags of bbq and pineapple jerky that is non-gmo.", "attributes": ["sugar free", "grass fed", "non gmo", "low calorie", "keto friendly", "high protein", "individually wrapped"], "options": ["flavor name: bbq & pineapple - natural pork", "size: 1 ounce (pack of 72)"], "instruction_attributes": ["low calorie"], "instruction_options": ["bbq & pineapple - natural pork", "1 ounce (pack of 72)"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EFQWSO", "worker_id": "A1WS884SI0SLO4"}], "B09H8BY27C": [{"asin": "B09H8BY27C", "instruction": "i am looking for a body scrubs for dead skin.", "attributes": ["dead skin", "dark circles"], "options": [""], "instruction_attributes": ["dead skin"], "instruction_options": [], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FDYK82", "worker_id": "A9QRQL9CFJBI7"}], "B00IPQ54KM": [{"asin": "B00IPQ54KM", "instruction": "i'm looking for a gift covered with chocolate and should be in a gift basket.", "attributes": ["chocolate covered", "gift basket"], "options": [""], "instruction_attributes": ["chocolate covered", "gift basket"], "instruction_options": [], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCXR4Q4", "worker_id": "AR0VJ5XRG16UJ"}], "B07SGHL6K2": [{"asin": "B07SGHL6K2", "instruction": "looking for travel accessories bottles for travel size", "attributes": ["bpa free", "travel size", "easy clean", "long lasting", "travel bottles"], "options": [""], "instruction_attributes": ["travel size", "travel bottles"], "instruction_options": [], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACSHHN9", "worker_id": "A10OGH5CQBXL5N"}], "B00GTC1HIW": [{"asin": "B00GTC1HIW", "instruction": "i am looking for a paraben free body wash that has a pink lemon and mandarin orange style.", "attributes": ["dermatologist tested", "paraben free"], "options": ["size: 24 fl oz (pack of 2)", "style: pink lemon and mandarin orange"], "instruction_attributes": ["paraben free"], "instruction_options": ["pink lemon and mandarin orange"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7YWYQP", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B00GTC1HIW", "instruction": "i would like a 13.5 fluid ounce bottle of vanilla body wash that is paraben free.", "attributes": ["dermatologist tested", "paraben free"], "options": ["size: 13.5 fl oz (pack of 1)", "style: vanilla"], "instruction_attributes": ["paraben free"], "instruction_options": ["13.5 fl oz (pack of 1)", "vanilla"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4BR6RM", "worker_id": "A1WS884SI0SLO4"}], "B09MLHK36S": [{"asin": "B09MLHK36S", "instruction": "storage cabinet white led buffet cabinet with 3 doors", "attributes": ["high gloss", "exquisite workmanship", "storage space", "contemporary style", "dining room", "living room"], "options": ["color: black 1 door"], "instruction_attributes": ["high gloss", "dining room", "living room"], "instruction_options": ["black 1 door"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FDE8K6", "worker_id": "A10OGH5CQBXL5N"}], "B07L5ZM4YN": [{"asin": "B07L5ZM4YN", "instruction": "i need a high heeled close toe shoes that is in size 9.", "attributes": ["high heel", "closed toe", "rubber sole"], "options": ["color: ivory(5.5cm)", "size: 9"], "instruction_attributes": ["high heel", "closed toe"], "instruction_options": ["9"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXYKMYD", "worker_id": "A1NF6PELRKACS9"}], "B09SPYJJX3": [{"asin": "B09SPYJJX3", "instruction": "i am looking for clinical strength anti perspirant for sensitive skin.", "attributes": ["anti perspirant", "sensitive skin"], "options": [""], "instruction_attributes": ["anti perspirant", "sensitive skin"], "instruction_options": [], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7X8TRF5", "worker_id": "A1EREKSZAA9V7B"}], "B00WLJENOW": [{"asin": "B00WLJENOW", "instruction": "i am looking for a 24 pack of high protein herbal tea", "attributes": ["rich creamy", "high protein"], "options": ["flavor name: mango juice", "size: 24 packs"], "instruction_attributes": ["high protein"], "instruction_options": ["24 packs"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67NX4NC", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B00WLJENOW", "instruction": "i want high protein vitasoy soy milk drink.", "attributes": ["rich creamy", "high protein"], "options": ["flavor name: soy milk", "size: 8.45 ounce (pack of 24)"], "instruction_attributes": ["high protein"], "instruction_options": ["soy milk"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06L6KX7", "worker_id": "A2RBF3IIJP15IH"}], "B07XF1LN9H": [{"asin": "B07XF1LN9H", "instruction": "can i get a large size navy blue lightweight and breathable stretch fabric polo shirt for men?", "attributes": ["moisture wicking", "stretch fabric"], "options": ["color: navy blue", "size: large"], "instruction_attributes": ["stretch fabric"], "instruction_options": ["navy blue", "large"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHQ7J00", "worker_id": "A39VVWV1GHLMFD"}], "B09DT2MSJR": [{"asin": "B09DT2MSJR", "instruction": "i need a hand painted storage case for my living room . it should be book shaped", "attributes": ["hand painted", "living room"], "options": [""], "instruction_attributes": ["hand painted", "living room"], "instruction_options": [], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSCTCWZ", "worker_id": "A2COCSUGZV28X"}], "B08XMZDY39": [{"asin": "B08XMZDY39", "instruction": "i am looking for a long lasting full size metal platform bed.", "attributes": ["high density", "long lasting", "box spring"], "options": ["size: full", "style: 10\" high density foam mattress + frame"], "instruction_attributes": ["long lasting"], "instruction_options": ["full"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMX1W32", "worker_id": "A1EREKSZAA9V7B"}], "B076Z63QBR": [{"asin": "B076Z63QBR", "instruction": "i am looking for a atomic red orange mid century sofas & couches.", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: atomic red orange", "size: teal"], "instruction_attributes": ["mid century"], "instruction_options": ["atomic red orange"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWC1NFC", "worker_id": "A9QRQL9CFJBI7"}], "B01J445IUY": [{"asin": "B01J445IUY", "instruction": "i need a six pack of manual toothbrushes that are good for sensitive teeth.", "attributes": ["sensitive teeth", "bad breath"], "options": ["size: 6 count (pack of 1)"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["6 count (pack of 1)"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9XZ5XZ", "worker_id": "AR9AU5FY1S3RO"}], "B09SB3RPJM": [{"asin": "B09SB3RPJM", "instruction": "open toe sexy high heels, non slip fashion for street wearing size 7", "attributes": ["open toe", "knee high", "non slip", "closed toe", "high heel"], "options": ["color: c beige", "size: 7"], "instruction_attributes": ["open toe", "non slip", "high heel"], "instruction_options": ["7"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPMVYSS", "worker_id": "A10OGH5CQBXL5N"}], "B07M9Z1C8M": [{"asin": "B07M9Z1C8M", "instruction": "i am looking for dairy free and apple variety pack of chips", "attributes": ["nut free", "dairy free", "non gmo", "gluten free", "dietary fiber"], "options": ["flavor name: apple variety pack", "size: 3.4 ounce (pack of 6)"], "instruction_attributes": ["dairy free"], "instruction_options": ["apple variety pack"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSJ9261", "worker_id": "A258PTOZ3D2TQR"}], "B09Q2SYZW6": [{"asin": "B09Q2SYZW6", "instruction": "i'm looking for binocular for bird watching.", "attributes": ["high power", "high resolution", "bird watching"], "options": [""], "instruction_attributes": ["high resolution", "bird watching"], "instruction_options": [], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OIMRT0", "worker_id": "A16IQOX0DK14OJ"}], "B09F5MKD6F": [{"asin": "B09F5MKD6F", "instruction": "i need a wash cold, blue hoodies for men's pullover", "attributes": ["wash cold", "machine wash", "cotton spandex", "drawstring closure", "daily wear"], "options": ["color: blue", "size: medium"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95T8XQQ", "worker_id": "A1IL2K0ELYI090"}], "B087TP51X9": [{"asin": "B087TP51X9", "instruction": "encontrar uma linda \u00e9 a sand\u00e1lia de cristal haoricu para mulher. preciso comprar para presente. ache o tamanho 8,5 na cor preta.", "attributes": ["slim fit", "straight leg", "open toe", "high waist", "faux fur", "regular fit", "relaxed fit", "button closure"], "options": ["color: 01-black", "size: 8.5"], "instruction_attributes": ["open toe"], "instruction_options": ["01-black", "8.5"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOD6LLW", "worker_id": "A15IJ20C3R4HUO"}], "B08L3VTNQZ": [{"asin": "B08L3VTNQZ", "instruction": "i'm looking for electronics for wearable technology and it was silver water resistant.", "attributes": ["water resistant", "4g lte"], "options": ["color: silver aluminum case", "size: 40mm", "style: gps"], "instruction_attributes": ["water resistant"], "instruction_options": ["silver aluminum case"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VZZYWF", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08L3VTNQZ", "instruction": "i would like a 44 mm blue sport band smartwatch with gps and cellular. i would also like it to be water resistant.", "attributes": ["water resistant", "4g lte"], "options": ["color: silver aluminium case with abyss blue sport band", "size: 44mm", "style: gps+cellular"], "instruction_attributes": ["water resistant"], "instruction_options": ["silver aluminium case with abyss blue sport band", "44mm", "gps+cellular"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7VK5PZ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08L3VTNQZ", "instruction": "i want to find an apple watch that has a silver aluminum case and a white 40 millimeter band. it needs to be water resistant and come with a gps.", "attributes": ["water resistant", "4g lte"], "options": ["color: silver aluminum case with white sport band", "size: 40mm", "style: gps"], "instruction_attributes": ["water resistant"], "instruction_options": ["silver aluminum case with white sport band", "40mm", "gps"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMCQXDO", "worker_id": "A345TDMHP3DQ3G"}], "B0918YYZBV": [{"asin": "B0918YYZBV", "instruction": "i would like a 40mm black and clear apple watch screen protector made of tempered glass.", "attributes": ["compatible apple", "glass screen", "tempered glass"], "options": ["color: black and clear", "size: 40mm"], "instruction_attributes": ["compatible apple", "tempered glass"], "instruction_options": ["black and clear", "40mm"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83LEIJM", "worker_id": "A1WS884SI0SLO4"}], "B07L1LQBHS": [{"asin": "B07L1LQBHS", "instruction": "i need red pump shoes for party or formal wear with rubber sole and size 7.5", "attributes": ["non slip", "rubber sole"], "options": ["color: red", "size: 7.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["red", "7.5"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W9TOUZ", "worker_id": "ASWFLI3N8X72G"}], "B015RNIF8I": [{"asin": "B015RNIF8I", "instruction": "i'm looking for a target reflections buffet", "attributes": ["white item", "white finish"], "options": ["color: blue"], "instruction_attributes": ["white item"], "instruction_options": ["blue"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLZEVAC", "worker_id": "A1ZGOZQF2VZ0X9"}], "B093G1BD4P": [{"asin": "B093G1BD4P", "instruction": "bacon jerky 15 pack", "attributes": ["ready eat", "great gift"], "options": ["flavor name: original style beef jerky", "size: 15 pack"], "instruction_attributes": ["ready eat"], "instruction_options": ["15 pack"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR49ZUFI", "worker_id": "A10OGH5CQBXL5N"}], "B08YMYLMZJ": [{"asin": "B08YMYLMZJ", "instruction": "i would like a bath brush with a long handle.", "attributes": ["high quality", "non slip", "long handle", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["long handle"], "instruction_options": [], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LDI1O1", "worker_id": "A1WS884SI0SLO4"}], "B09PZKBWJ4": [{"asin": "B09PZKBWJ4", "instruction": "i'm looking for camera it was easy to carry and need to buy it.", "attributes": ["easy carry", "carrying case"], "options": ["color: 50cm"], "instruction_attributes": ["easy carry", "carrying case"], "instruction_options": ["50cm"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0X4XPH", "worker_id": "A16IQOX0DK14OJ"}], "B00OGQY8Y8": [{"asin": "B00OGQY8Y8", "instruction": "i need a heavy duty king sized bed frame.", "attributes": ["heavy duty", "king size", "box spring"], "options": ["color: headboard only", "size: king"], "instruction_attributes": ["heavy duty", "king size"], "instruction_options": ["king"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EDDB1J", "worker_id": "A19317A3X87NVM"}], "B003EAC7ZY": [{"asin": "B003EAC7ZY", "instruction": "i need a small easy care shirt with long sleeves . and i prefer the clover color", "attributes": ["easy care", "long sleeve"], "options": ["color: clover", "size: small"], "instruction_attributes": ["easy care", "long sleeve"], "instruction_options": ["clover", "small"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3T6Z97", "worker_id": "A2COCSUGZV28X"}], "B07NW8Q5FY": [{"asin": "B07NW8Q5FY", "instruction": "i am looking for men classic fit t-shirt. please choose black color.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: men", "size: small"], "instruction_attributes": ["classic fit"], "instruction_options": ["black", "men"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GMPS37", "worker_id": "A3FG5PQHG5AH3Y"}], "B088BBSTR1": [{"asin": "B088BBSTR1", "instruction": "i am looking for a loose fit womens shirt with a short sleeve. also, i want the size of the shirt to be xx-large.", "attributes": ["loose fit", "short sleeve", "soft material"], "options": ["color: 04-greenleaf", "size: xx-large"], "instruction_attributes": ["loose fit", "short sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L86ER4", "worker_id": "AJDQGOTMB2D80"}], "B07ZFCWHCF": [{"asin": "B07ZFCWHCF", "instruction": "i am looking for a high quality heeta 2-pack hair shampoo brush specifically for dry hair. i would be more inclined to take a pink & purple.", "attributes": ["high quality", "dry hair"], "options": ["color: pink & purple"], "instruction_attributes": ["high quality", "dry hair"], "instruction_options": ["pink & purple"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662WLM4Q", "worker_id": "A39VVWV1GHLMFD"}], "B083M7B6CJ": [{"asin": "B083M7B6CJ", "instruction": "i am looking for a s-dark black wireless bluetooth earbud headphones.", "attributes": ["noise cancelling", "stereo sound", "wireless bluetooth"], "options": ["color: s-dark black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["s-dark black"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTQTE52", "worker_id": "A9QRQL9CFJBI7"}], "B093YSBNHN": [{"asin": "B093YSBNHN", "instruction": "i would like a laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1AZI26", "worker_id": "A1WS884SI0SLO4"}], "B01647YILE": [{"asin": "B01647YILE", "instruction": "i'm looking for fully cooked the flavor saquatch", "attributes": ["fully cooked", "ready eat", "non gmo"], "options": ["flavor name: sasquatch"], "instruction_attributes": ["fully cooked", "ready eat"], "instruction_options": ["sasquatch"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68G6A46", "worker_id": "A16IQOX0DK14OJ"}], "B08F9BY4P2": [{"asin": "B08F9BY4P2", "instruction": "i'm looking for the hyaluronic acid it was non-toxic acid. it contains petals.", "attributes": ["cruelty free", "paraben free", "non toxic", "hyaluronic acid"], "options": ["color: petals | tropical pink"], "instruction_attributes": ["non toxic", "hyaluronic acid"], "instruction_options": ["petals | tropical pink"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZX3AN3", "worker_id": "A16IQOX0DK14OJ"}], "B094YJFCY7": [{"asin": "B094YJFCY7", "instruction": "i need a large square solid wood coffee table laced with upholstered tufted button linen, an ivory-ottoman color will be most preferred.", "attributes": ["button tufted", "solid wood"], "options": ["color: ivory-ottoman", "size: square ottoman with casters"], "instruction_attributes": ["button tufted", "solid wood"], "instruction_options": ["ivory-ottoman"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DBMDWF", "worker_id": "A39VVWV1GHLMFD"}], "B09D7BZ1L6": [{"asin": "B09D7BZ1L6", "instruction": "please order for me a black pure leather ottoman stool size 100x40x43 cm for my living room.", "attributes": ["non slip", "high density", "pu leather", "living room"], "options": ["color: black", "size: 100x40x43cm"], "instruction_attributes": ["pu leather", "living room"], "instruction_options": ["black", "100x40x43cm"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A219WTHD", "worker_id": "AHU9OLV0YKIIW"}], "B005HV6RJA": [{"asin": "B005HV6RJA", "instruction": "i'm looking for regular fit and the clothing was makes day comfort.", "attributes": ["day comfort", "button closure", "regular fit"], "options": ["color: white | charcoal stripe", "size: 2x-large - 5_pack"], "instruction_attributes": ["day comfort", "regular fit"], "instruction_options": ["white | charcoal stripe"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN29YY7N", "worker_id": "A16IQOX0DK14OJ"}], "B094NQB78B": [{"asin": "B094NQB78B", "instruction": "i'm looking for sandals for a women need to buy a yellow color rubber sole.", "attributes": ["memory foam", "rubber sole"], "options": ["color: yellow 10cm", "size: 11.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["yellow 10cm"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LFT0L0", "worker_id": "A16IQOX0DK14OJ"}], "B09FF7ZSFJ": [{"asin": "B09FF7ZSFJ", "instruction": "i am looking for a multicolor shower caps for hair loss.", "attributes": ["easy carry", "hair loss"], "options": ["color: multicolor"], "instruction_attributes": ["hair loss"], "instruction_options": ["multicolor"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1DYCXP", "worker_id": "A9QRQL9CFJBI7"}], "B08N5DD2CG": [{"asin": "B08N5DD2CG", "instruction": "i'm looking for wild caught seafood with no added genetically modified organisms in the ingredients.", "attributes": ["wild caught", "grass fed", "non gmo"], "options": [""], "instruction_attributes": ["wild caught", "non gmo"], "instruction_options": [], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68G4A44", "worker_id": "A3EDFA8UQT5GG8"}], "B07NZ7YPXB": [{"asin": "B07NZ7YPXB", "instruction": "i am looking for a 2 ounce (pack of 4) of 2 ounce (pack of 4) jerky", "attributes": ["grass fed", "high protein", "sugar free", "simple ingredients"], "options": ["flavor name: wood fired pizza", "size: 2 ounce (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["2 ounce (pack of 4)"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBSGJEN", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07NZ7YPXB", "instruction": "find high protein beef jerky's.", "attributes": ["grass fed", "high protein", "sugar free", "simple ingredients"], "options": ["flavor name: wood fired pizza", "size: 2 ounce (pack of 1)"], "instruction_attributes": ["high protein"], "instruction_options": [], "assignment_id": "3G2UL9A02OO71034MOY04HTU32F67B", "worker_id": "AVIEE6LDH0BT5"}], "B0945PXFDT": [{"asin": "B0945PXFDT", "instruction": "i'm looking for moisturizes the skin the green tea gives skin care goodness.", "attributes": ["clinically proven", "green tea", "seed oil"], "options": ["size: .7 fl oz (pack of 1)", "style: strength antioxidant + superfood elixir"], "instruction_attributes": ["green tea", "seed oil"], "instruction_options": [".7 fl oz (pack of 1)"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBG2DJB", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B0945PXFDT", "instruction": "i want .5 fl oz of clinically proven vegan mia organic antioxidant face oil.", "attributes": ["clinically proven", "green tea", "seed oil"], "options": ["size: .5 fl oz (pack of 1)", "style: strength antioxidant + superfood glow serum"], "instruction_attributes": ["clinically proven"], "instruction_options": [".5 fl oz (pack of 1)"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TLI3N3", "worker_id": "A2RBF3IIJP15IH"}], "B07NNXYHNM": [{"asin": "B07NNXYHNM", "instruction": "i'm looking for cruelty free, vitabath brand, bath and shower gel in the 32 ounce size.", "attributes": ["paraben free", "cruelty free", "dry skin"], "options": ["scent: spa skin therapy", "size: 32 ounce"], "instruction_attributes": ["cruelty free"], "instruction_options": ["32 ounce"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFS5V35", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B07NNXYHNM", "instruction": "i am looking for a paraben free and cruelty free moisturizing body cleanser for dry skin. also choose size 32 fl oz.", "attributes": ["paraben free", "cruelty free", "dry skin"], "options": ["scent: plus for dry skin", "size: 32 fl oz (pack of 1)"], "instruction_attributes": ["paraben free", "cruelty free", "dry skin"], "instruction_options": ["32 fl oz (pack of 1)"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DEXDWW", "worker_id": "A1V2JTEEBCXR20"}], "B07KYL4W5P": [{"asin": "B07KYL4W5P", "instruction": "i am looking for a red stereo sound earbud headphones", "attributes": ["easy use", "stereo sound"], "options": ["color: red", "size: blue"], "instruction_attributes": ["stereo sound"], "instruction_options": ["red"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQY92776", "worker_id": "A9QRQL9CFJBI7"}], "B0931675TF": [{"asin": "B0931675TF", "instruction": "i am looking for solid wood gaosoul wall art with wooden frame and size is 36x24in", "attributes": ["wood frame", "solid wood", "living room"], "options": ["color: city", "size: 36x24in"], "instruction_attributes": ["wood frame", "solid wood"], "instruction_options": ["36x24in"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVGM1PM", "worker_id": "AX2EWYWZM19AZ"}], "B07L2K1H47": [{"asin": "B07L2K1H47", "instruction": "i'm looking for a regular fit men's sneakers with rubber sole. also choose 6.5 size black colored one.", "attributes": ["regular fit", "rubber sole"], "options": ["color: black (cblack | ftwwht | cblack cblack | ftwwh...", "size: 6.5"], "instruction_attributes": ["regular fit", "rubber sole"], "instruction_options": ["black (cblack | ftwwht | cblack cblack | ftwwh...", "6.5"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8JTR4S", "worker_id": "AR0VJ5XRG16UJ"}], "B01C2CZWU6": [{"asin": "B01C2CZWU6", "instruction": "i want apple fruit sauce crushers that are certified organic.", "attributes": ["trader joe", "certified organic"], "options": [""], "instruction_attributes": ["certified organic"], "instruction_options": [], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QWA07F", "worker_id": "A1NF6PELRKACS9"}], "B092CTGJTY": [{"asin": "B092CTGJTY", "instruction": "i am looking for a dual band dome cameras.", "attributes": ["dual band", "motion detection"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G77X747", "worker_id": "A9QRQL9CFJBI7"}], "B07SKN25VL": [{"asin": "B07SKN25VL", "instruction": "i'm looking for hair extensions for natural hair and straight hair so need to buy it.", "attributes": ["easy apply", "hair extensions", "synthetic hair", "natural hair"], "options": ["color: ash blonde-straight(new)", "size: 26\" straight - 140g"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["ash blonde-straight(new)"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYN5HDF", "worker_id": "A16IQOX0DK14OJ"}], "B07N97QCX8": [{"asin": "B07N97QCX8", "instruction": "i'm looking for gluten free it was contain high protein and need to buy it.", "attributes": ["low carb", "non gmo", "low sodium", "gluten free", "natural ingredients"], "options": ["flavor name: vodka", "size: 1.56 pound (pack of 6)"], "instruction_attributes": ["low carb", "non gmo", "gluten free"], "instruction_options": ["vodka"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK248LKNE", "worker_id": "A16IQOX0DK14OJ"}], "B07D2W2VZ4": [{"asin": "B07D2W2VZ4", "instruction": "i'm looking for a 60\" floating tv console that will be best as media storage unit and has stone gray color.", "attributes": ["storage unit", "wood finish"], "options": ["color: stone gray", "size: 60\""], "instruction_attributes": ["storage unit"], "instruction_options": ["stone gray", "60\""], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDPIRHJ", "worker_id": "A1HMZJ59OPLD1P"}], "B09SGD4LLC": [{"asin": "B09SGD4LLC", "instruction": "i'm looking for binocular it will use for bird watching.", "attributes": ["high power", "bird watching"], "options": ["color: a"], "instruction_attributes": ["high power", "bird watching"], "instruction_options": ["a"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9LK0BI", "worker_id": "A16IQOX0DK14OJ"}], "B07KRWK5ZJ": [{"asin": "B07KRWK5ZJ", "instruction": "i am searching for a star war graphic tee in white.", "attributes": ["officially licensed", "needle sleeve", "classic fit", "star wars"], "options": ["color: white", "fit type: youth", "size: x-small"], "instruction_attributes": ["star wars"], "instruction_options": ["white"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCPAB91", "worker_id": "A1NF6PELRKACS9"}], "B09DMGQT3Q": [{"asin": "B09DMGQT3Q", "instruction": "i am looking for chocolate covered mint chip", "attributes": ["chocolate covered", "high fructose", "valentine day"], "options": ["flavor name: mint chip", "size: 3 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["mint chip"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XQ3NGB", "worker_id": "A2MSIFDLOHI1UT"}], "B00U9WMZ0W": [{"asin": "B00U9WMZ0W", "instruction": "i am looking for vintage white bed in a king size", "attributes": ["white item", "contemporary style"], "options": ["color: vintage white", "size: california king"], "instruction_attributes": ["white item"], "instruction_options": ["vintage white", "california king"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIO1855", "worker_id": "A16M39T60N60NO"}], "B078YFPSNW": [{"asin": "B078YFPSNW", "instruction": "i'm looking for a tippleman's barrel aged cola syrup .", "attributes": ["non alcoholic", "old fashioned", "quality ingredients", "natural ingredients", "artificial flavors"], "options": ["flavor name: burnt sugar"], "instruction_attributes": ["non alcoholic", "natural ingredients"], "instruction_options": ["burnt sugar"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVO9JK2", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09FQ2NGQD": [{"asin": "B09FQ2NGQD", "instruction": "i really appreciate the cheese bros honey sriracha gouda b individually wrapped, royal aged cheese i will gift to my friend with the 6 oz. i want the 8 pack ready to eat she will serve at the party.", "attributes": ["ready eat", "individually wrapped", "quality ingredients", "artificial flavors"], "options": ["size: 8 pack"], "instruction_attributes": ["ready eat", "individually wrapped"], "instruction_options": ["8 pack"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJNQMO5", "worker_id": "A15IJ20C3R4HUO"}], "B09F6Y56TX": [{"asin": "B09F6Y56TX", "instruction": "i looking a men's short sleeve relaxed fit xx- large maroon /white color polo shirt", "attributes": ["officially licensed", "relaxed fit", "short sleeve"], "options": ["color: maroon | white", "size: xx-large", "team name: syracuse orange"], "instruction_attributes": ["relaxed fit", "short sleeve"], "instruction_options": ["maroon | white", "xx-large"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBCWOS7", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B09F6Y56TX", "instruction": "i would like a maroon and white medium nc state wolfpack short sleeved polo shirt.", "attributes": ["officially licensed", "relaxed fit", "short sleeve"], "options": ["color: maroon | white", "size: medium", "team name: north carolina state wolfpack"], "instruction_attributes": ["short sleeve"], "instruction_options": ["maroon | white", "medium", "north carolina state wolfpack"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL5CRVU", "worker_id": "A1WS884SI0SLO4"}], "B07R9RK4X2": [{"asin": "B07R9RK4X2", "instruction": "bluetooth headset for cell phones with noise cancelling in black colour", "attributes": ["noise cancelling", "long lasting"], "options": ["color: black"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BM2X8T", "worker_id": "A10OGH5CQBXL5N"}], "B09KHDQGMV": [{"asin": "B09KHDQGMV", "instruction": "i am looking for a brushed nickel finish floor lamp.", "attributes": ["brushed nickel", "nickel finish"], "options": [""], "instruction_attributes": ["brushed nickel", "nickel finish"], "instruction_options": [], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96AZG42", "worker_id": "A1NF6PELRKACS9"}], "B09QFMRDWC": [{"asin": "B09QFMRDWC", "instruction": "find me a x-large short sleeve dress in white with pockets", "attributes": ["soft material", "polyester cotton", "short sleeve", "daily wear"], "options": ["color: white", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["white", "x-large"], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUIF5S9", "worker_id": "A2Y2TURT2VEYZN"}], "B0892JYS9N": [{"asin": "B0892JYS9N", "instruction": "storage ottoman bench with hinged lid which size 40*40*43cm", "attributes": ["storage unit", "storage space", "living room"], "options": ["color: m", "size: 40*40*43cm"], "instruction_attributes": ["storage space"], "instruction_options": ["40*40*43cm"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY868O188", "worker_id": "A10OGH5CQBXL5N"}], "B07GBBCKL7": [{"asin": "B07GBBCKL7", "instruction": "i need surgar free chocolate flavored cheesecake syrup, 3 pound (pack of 1)", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: chocolate", "size: 3 pound (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["chocolate", "3 pound (pack of 1)"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJLZJVAH", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B07GBBCKL7", "instruction": "i want davinci gourmet sugar-free hazelnut syrup.", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: sugar-free hazelnut", "size: 25.4 fl oz (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["sugar-free hazelnut"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEL4KZ4", "worker_id": "A2RBF3IIJP15IH"}], "B07S14G6N1": [{"asin": "B07S14G6N1", "instruction": "i'm looking for black video play for video acccesseories.", "attributes": ["high speed", "plug play"], "options": ["color: black", "size: 6-foot"], "instruction_attributes": ["plug play"], "instruction_options": ["black"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9W4X5U", "worker_id": "A16IQOX0DK14OJ"}], "B08MVT2WVK": [{"asin": "B08MVT2WVK", "instruction": "i'm looking for a silicone case cover for remote", "attributes": ["easy install", "case cover"], "options": [""], "instruction_attributes": ["case cover"], "instruction_options": [], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBTYGIH", "worker_id": "A2Y2TURT2VEYZN"}], "B09GX4CCW2": [{"asin": "B09GX4CCW2", "instruction": "i'm looking for some permanent blue hair dye that's cruelty free.", "attributes": ["cruelty free", "animal testing", "permanent hair", "hair dye", "natural hair"], "options": ["color: blue smoke"], "instruction_attributes": ["cruelty free", "permanent hair", "hair dye"], "instruction_options": ["blue smoke"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3Y0Y5JR", "worker_id": "AR9AU5FY1S3RO"}], "B09P8DYFNT": [{"asin": "B09P8DYFNT", "instruction": "i want a high quality dual band streaming media player with warranty,4gb+64gb", "attributes": ["dual band", "quad core"], "options": ["color: 4gb+64gb"], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWOE524", "worker_id": "A3N9ZYQAESNFQH"}], "B08R63QV8P": [{"asin": "B08R63QV8P", "instruction": "i'm looking for hair extensions for wigs and hair care.", "attributes": ["easy apply", "hair extensions"], "options": ["color: 22inch"], "instruction_attributes": ["easy apply", "hair extensions"], "instruction_options": ["22inch"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU17AL3", "worker_id": "A16IQOX0DK14OJ"}], "B07YBM36S1": [{"asin": "B07YBM36S1", "instruction": "i'm looking for a medium color with natural ingredients concealers & neutralizers for dark circle.", "attributes": ["natural ingredients", "dark circles"], "options": ["color: medium"], "instruction_attributes": ["natural ingredients", "dark circles"], "instruction_options": ["medium"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THWI5ZF", "worker_id": "A9QRQL9CFJBI7"}], "B09L1FGCNY": [{"asin": "B09L1FGCNY", "instruction": "i am looking for a high density mattress in full size which is made up of memory foam.", "attributes": ["queen size", "high density", "memory foam"], "options": ["size: full"], "instruction_attributes": ["high density", "memory foam"], "instruction_options": ["full"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1FAXRR", "worker_id": "A2HMEGTAFO0CS8"}], "B095H9BN24": [{"asin": "B095H9BN24", "instruction": "i need a plug and play compatible displayport to hdmi adapter.", "attributes": ["plug play", "usb port"], "options": ["size: mini displayport 1.2 to", "style: 2x displayport 1x hdmi"], "instruction_attributes": ["plug play"], "instruction_options": ["2x displayport 1x hdmi"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU67A9L", "worker_id": "A19317A3X87NVM"}], "B09QQMCJ4W": [{"asin": "B09QQMCJ4W", "instruction": "i need size 8 closed toe sandals with arch support. it should be in beige.", "attributes": ["open toe", "arch support", "ankle strap", "closed toe"], "options": ["color: z3-beige", "size: 8"], "instruction_attributes": ["arch support", "closed toe"], "instruction_options": ["z3-beige", "8"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9O4VT2", "worker_id": "A1NF6PELRKACS9"}], "B08RYTPXT3": [{"asin": "B08RYTPXT3", "instruction": "i'm looking for stereo sound it was outside of noise pollution.", "attributes": ["hands free", "high definition", "stereo sound", "wireless bluetooth"], "options": ["color: red"], "instruction_attributes": ["stereo sound", "wireless bluetooth"], "instruction_options": ["red"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SWDDUK", "worker_id": "A16IQOX0DK14OJ"}], "B09FQGXBFB": [{"asin": "B09FQGXBFB", "instruction": "i want to find hair serum that contains argan oil and treats damaged hair.", "attributes": ["argan oil", "damaged hair", "hair treatment"], "options": [""], "instruction_attributes": ["argan oil", "damaged hair", "hair treatment"], "instruction_options": [], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602TH95R", "worker_id": "A345TDMHP3DQ3G"}], "B073JK81KY": [{"asin": "B073JK81KY", "instruction": "i am looking for a 7.7 ounce box of pecan gluten-free crackers", "attributes": ["gluten free", "protein serving"], "options": ["flavor name: pecan", "size: 7.7 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["pecan", "7.7 ounce (pack of 1)"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIE1FVH", "worker_id": "A22VGT2F28LTWC"}], "B0991MJXM2": [{"asin": "B0991MJXM2", "instruction": "i would like a pair of women's 9.5 sized hot pink running shoes with a rubber outsole.", "attributes": ["knee high", "slip resistant", "steel toe", "rubber outsole"], "options": ["color: hot pink", "size: 9.5-10 women | 9.5-10 men"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["hot pink", "9.5-10 women | 9.5-10 men"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUNB5I8P", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0991MJXM2", "instruction": "i'm looking for shoes of women men kenee high and the color in hot pink.", "attributes": ["knee high", "slip resistant", "steel toe", "rubber outsole"], "options": ["color: hot pink", "size: 9 women | 9 men"], "instruction_attributes": ["knee high", "steel toe", "rubber outsole"], "instruction_options": ["hot pink"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH37BOEST", "worker_id": "A16IQOX0DK14OJ"}], "B0843QGW1Z": [{"asin": "B0843QGW1Z", "instruction": "i'm looking for curved and rounded stainless steel scissors for trimming mustache, nose hair and beard. also silver color one.", "attributes": ["non slip", "stainless steel", "hair cutting"], "options": ["color: silver"], "instruction_attributes": ["stainless steel"], "instruction_options": ["silver"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK47MA61", "worker_id": "A258PTOZ3D2TQR"}], "B09J39R644": [{"asin": "B09J39R644", "instruction": "i am looking a soy wax lead free scented candle for home", "attributes": ["lead free", "long lasting", "soy wax"], "options": [""], "instruction_attributes": ["lead free", "soy wax"], "instruction_options": [], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWS9PFJ", "worker_id": "A3N9ZYQAESNFQH"}], "B09BTZGVVB": [{"asin": "B09BTZGVVB", "instruction": "i am looking for luxurious blanket for bedroom sofa that is machine washable and also choose in colorful bohemian pattern", "attributes": ["super soft", "machine washable", "fleece throw"], "options": ["color: colorful bohemian pattern", "size: 60\"x80\""], "instruction_attributes": ["super soft", "machine washable"], "instruction_options": ["colorful bohemian pattern"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUKD3R1", "worker_id": "A10OGH5CQBXL5N"}], "B08N462C25": [{"asin": "B08N462C25", "instruction": "i need caxxa amber glass fine mist spray bottles, size 12 refillable containers.", "attributes": ["bpa free", "eco friendly", "fine mist"], "options": ["size: 12"], "instruction_attributes": ["bpa free", "eco friendly"], "instruction_options": ["12"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMONXM9I", "worker_id": "A15IJ20C3R4HUO"}], "B00EKLPLU4": [{"asin": "B00EKLPLU4", "instruction": "i want non gmo sugar free keto friendly cocoa chocolate size: 1 pound", "attributes": ["sugar free", "certified organic", "non gmo", "plant based", "keto friendly"], "options": ["flavor name: cacao nibs", "size: 1 pound"], "instruction_attributes": ["sugar free", "non gmo", "keto friendly"], "instruction_options": ["1 pound"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINT527A", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B00EKLPLU4", "instruction": "i want non gmo healthworks cacao butter powder.", "attributes": ["sugar free", "certified organic", "non gmo", "plant based", "keto friendly"], "options": ["flavor name: cacao butter", "size: 32 ounce (pack of 5)"], "instruction_attributes": ["non gmo"], "instruction_options": ["cacao butter"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQOY13M", "worker_id": "A2RBF3IIJP15IH"}], "B004BYSR6K": [{"asin": "B004BYSR6K", "instruction": "i would like two boxes of mocha ash brown hair dye.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 5ab mocha ash brown, 3-pack", "size: 1 count (pack of 2)"], "instruction_attributes": ["hair dye"], "instruction_options": ["5ab mocha ash brown, 3-pack", "1 count (pack of 2)"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95TMQXX", "worker_id": "A1WS884SI0SLO4"}], "B07RLSLZ3P": [{"asin": "B07RLSLZ3P", "instruction": "i am looking for a white finish barstools and color should be antique white finish | black leather seat", "attributes": ["high density", "assembly required", "contemporary design", "white finish"], "options": ["color: antique white finish | black leather seat", "size: 30\" bar height"], "instruction_attributes": ["white finish"], "instruction_options": ["antique white finish | black leather seat"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY868218M", "worker_id": "A9QRQL9CFJBI7"}], "B08DTJCR5M": [{"asin": "B08DTJCR5M", "instruction": "i need a bag of non-toxic refillable lip gloss tubes.", "attributes": ["easy apply", "non toxic", "high quality"], "options": [""], "instruction_attributes": ["non toxic"], "instruction_options": [], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH01Z4I", "worker_id": "A19317A3X87NVM"}], "B07G28S4VV": [{"asin": "B07G28S4VV", "instruction": "looking for long sleeve casual t-shirts that hand washable also choose yellow colour", "attributes": ["wash cold", "hand wash", "high waist", "long sleeve"], "options": ["color: a:yellow", "size: medium"], "instruction_attributes": ["hand wash", "long sleeve"], "instruction_options": ["a:yellow"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU88A9Q", "worker_id": "A10OGH5CQBXL5N"}], "B09578LY5V": [{"asin": "B09578LY5V", "instruction": "i am looking for noise cancelling headphones in a black color", "attributes": ["noise cancelling", "high speed"], "options": ["color: black"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVNDKJ5", "worker_id": "A16M39T60N60NO"}], "B09PQN4F9T": [{"asin": "B09PQN4F9T", "instruction": "i am looking for sandals for high waist women with rubber sole and it color is black 4 and size is 7.5", "attributes": ["non slip", "high waist", "rubber sole"], "options": ["color: black 4", "size: 7.5"], "instruction_attributes": ["high waist", "rubber sole"], "instruction_options": ["black 4", "7.5"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZWCNAN", "worker_id": "AX2EWYWZM19AZ"}], "B08SJ8XVCM": [{"asin": "B08SJ8XVCM", "instruction": "gel nail kit nail polish with 33 piece set", "attributes": ["long lasting", "nail polish"], "options": ["color: mint to be", "size: 33 piece set"], "instruction_attributes": ["nail polish"], "instruction_options": ["33 piece set"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAUAO9CK", "worker_id": "A10OGH5CQBXL5N"}], "B0911J7P7G": [{"asin": "B0911J7P7G", "instruction": "i am looking for high protein yogurt.", "attributes": ["high protein", "artificial flavors"], "options": [""], "instruction_attributes": ["high protein"], "instruction_options": [], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NJHKBZ", "worker_id": "A3FG5PQHG5AH3Y"}], "B00IV0ZI1M": [{"asin": "B00IV0ZI1M", "instruction": "i want to buy a shampoo and conditioner set for natural hair. my hair is on the dry side.", "attributes": ["sulfate free", "argan oil", "coconut oil", "natural hair", "dry hair"], "options": ["scent: conditioner", "size: 13 fl oz (pack of 1)"], "instruction_attributes": ["natural hair", "dry hair"], "instruction_options": ["conditioner"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDTJZQ2", "worker_id": "A1NF6PELRKACS9"}], "B08CHGCXLR": [{"asin": "B08CHGCXLR", "instruction": "i'm looking for twin sized bed room for bedroom", "attributes": ["twin size", "space saving", "easy assemble", "box spring"], "options": ["color: espresso-1"], "instruction_attributes": ["twin size", "easy assemble"], "instruction_options": ["espresso-1"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJNJ8ZM", "worker_id": "A16IQOX0DK14OJ"}], "B08NDPSJ4J": [{"asin": "B08NDPSJ4J", "instruction": "i am looking for a green solid wood chairs for living rooms.", "attributes": ["super soft", "mid century", "easy assemble", "solid wood", "wood frame", "living room", "dining room"], "options": ["color: green"], "instruction_attributes": ["solid wood", "living room"], "instruction_options": ["green"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746WJBT7", "worker_id": "A9QRQL9CFJBI7"}], "B01LXTJUAG": [{"asin": "B01LXTJUAG", "instruction": "find me a polo shirt with short sleeves and stretch fabric. pick something in sundress color.", "attributes": ["moisture wicking", "water resistant", "machine wash", "stretch fabric", "button closure", "short sleeve"], "options": ["color: sundress", "size: 6x-large big"], "instruction_attributes": ["stretch fabric", "short sleeve"], "instruction_options": ["sundress"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZRPHSL", "worker_id": "A1NF6PELRKACS9"}], "B01MR0TR0P": [{"asin": "B01MR0TR0P", "instruction": "i would like a long lasting perfume.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOFNW1E", "worker_id": "A1WS884SI0SLO4"}], "B00PQFK67G": [{"asin": "B00PQFK67G", "instruction": "find me a regular fit machine washable cargo pants with buttoned closure in 6057 apricot color and 29 size.", "attributes": ["straight leg", "machine wash", "regular fit", "button closure"], "options": ["color: 6057 apricot", "size: 29"], "instruction_attributes": ["machine wash", "regular fit", "button closure"], "instruction_options": ["6057 apricot", "29"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFRX0TJ", "worker_id": "A3AYHESLQSDY5T"}], "B07BZ2ZRFY": [{"asin": "B07BZ2ZRFY", "instruction": "i would like six bags of 3.25 ounce traditional snack mix that is low in sodium.", "attributes": ["low sodium", "protein serving", "low fat", "resealable bag"], "options": ["flavor name: traditional snack mix", "size: 3.25 ounce (6 pack)"], "instruction_attributes": ["low sodium"], "instruction_options": ["traditional snack mix", "3.25 ounce (6 pack)"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UUQJ60", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07BZ2ZRFY", "instruction": "i am looking for 6 pack of size 6 ounce snack mix resealable bag.", "attributes": ["low sodium", "protein serving", "low fat", "resealable bag"], "options": ["flavor name: wasabi spicy snack mix", "size: 6 ounce (6 pack)"], "instruction_attributes": ["resealable bag"], "instruction_options": ["6 ounce (6 pack)"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YQL691", "worker_id": "A1Q8PPQQCWGY0D"}], "B002WK1FC8": [{"asin": "B002WK1FC8", "instruction": "i would like a #8 foundation for sensitive skin.", "attributes": ["oil free", "long lasting", "sensitive skin"], "options": ["color: 8"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["8"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40IONXW", "worker_id": "A1WS884SI0SLO4"}], "B082CP4B4M": [{"asin": "B082CP4B4M", "instruction": "i am looking for heavy duty bed frame of black color.", "attributes": ["lead free", "long lasting", "heavy duty", "box spring", "storage space"], "options": ["color: black", "size: full"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LIU5IU", "worker_id": "A3FG5PQHG5AH3Y"}], "B09BC5LJG5": [{"asin": "B09BC5LJG5", "instruction": "i am looking for a dark gray color steel coated bar stool with adjustable height option.", "attributes": ["height adjustable", "coated steel", "steel frame"], "options": ["color: dark gray"], "instruction_attributes": ["height adjustable", "coated steel"], "instruction_options": ["dark gray"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALBQH4I", "worker_id": "A1V2JTEEBCXR20"}], "B08C6YC9F9": [{"asin": "B08C6YC9F9", "instruction": "i am looking for heavy duty clear glass spray bottles that are easy to clean.", "attributes": ["heavy duty", "easy clean"], "options": ["color: clear"], "instruction_attributes": ["heavy duty", "easy clean"], "instruction_options": ["clear"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OUSYEV", "worker_id": "A1EREKSZAA9V7B"}], "B000KPVX0G": [{"asin": "B000KPVX0G", "instruction": "i'm looking for hair coloring products for permanent hair.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 4sm dark soft mahogany brown", "size: pack of 3"], "instruction_attributes": ["permanent hair", "hair dye"], "instruction_options": ["pack of 3"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K71128", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B000KPVX0G", "instruction": "i would like a three pack of hair color that is long lasting and comes in a pack of three that are brown.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 5 medium brown", "size: pack of 3"], "instruction_attributes": ["long lasting"], "instruction_options": ["5 medium brown", "pack of 3"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FKGD31", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SV52TDY": [{"asin": "B09SV52TDY", "instruction": "i need a high quality refillable spray bottle of 50 ml size. and i choose the black one", "attributes": ["leak proof", "high quality"], "options": ["color: b", "size: 50ml"], "instruction_attributes": ["high quality"], "instruction_options": ["b", "50ml"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R8BSKI", "worker_id": "A2COCSUGZV28X"}], "B08XJ2PT2C": [{"asin": "B08XJ2PT2C", "instruction": "i'm looking for a skull king barber cape with hook sucker.", "attributes": ["water resistant", "hair cutting"], "options": ["color: starry sky 5"], "instruction_attributes": ["hair cutting"], "instruction_options": ["starry sky 5"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HQNWOR", "worker_id": "A1ZGOZQF2VZ0X9"}], "B07SG6973V": [{"asin": "B07SG6973V", "instruction": "i am looking for a double sided pocket mirror with a watercolor flower pattern.", "attributes": ["double sided", "rose gold"], "options": ["pattern name: watercolor flower"], "instruction_attributes": ["double sided"], "instruction_options": ["watercolor flower"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0OE8J7", "worker_id": "AJDQGOTMB2D80"}], "B00XREG27G": [{"asin": "B00XREG27G", "instruction": "i want high heel lace closure black color women's pump size: 7.5", "attributes": ["lace closure", "high heel"], "options": ["color: black | black", "size: 7.5"], "instruction_attributes": ["lace closure", "high heel"], "instruction_options": [], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNBI10T", "worker_id": "A3N9ZYQAESNFQH"}], "B0757Y3MF9": [{"asin": "B0757Y3MF9", "instruction": "i am looking for high quality tea tree essential face oil, 4 fl oz (pack of 1)", "attributes": ["high quality", "tea tree"], "options": ["scent: tea tree", "size: 4 fl oz (pack of 1)"], "instruction_attributes": ["high quality"], "instruction_options": ["tea tree", "4 fl oz (pack of 1)"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA2R8A0", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B0757Y3MF9", "instruction": "i would like a small bottle of grapefruit high quality face oil.", "attributes": ["high quality", "tea tree"], "options": ["scent: grapefruit", "size: small"], "instruction_attributes": ["high quality"], "instruction_options": ["grapefruit", "small"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFGA5U1", "worker_id": "A1WS884SI0SLO4"}], "B0747Y61RC": [{"asin": "B0747Y61RC", "instruction": "i need a plant based tea tree face cream for sensitive skin.", "attributes": ["plant based", "tea tree", "seed oil", "dry skin", "sensitive skin"], "options": [""], "instruction_attributes": ["plant based", "tea tree", "sensitive skin"], "instruction_options": [], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC3DKU3", "worker_id": "A1NF6PELRKACS9"}], "B098XG9Y6C": [{"asin": "B098XG9Y6C", "instruction": "looking for pet foam bottle that is easy to carry also choose in 60ml", "attributes": ["easy carry", "fine mist"], "options": ["color: b", "size: 60 ml"], "instruction_attributes": ["easy carry"], "instruction_options": ["60 ml"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTU99P6", "worker_id": "A10OGH5CQBXL5N"}], "B076WNJLLV": [{"asin": "B076WNJLLV", "instruction": "need a 10ft cable usb with rs422/rs485 port", "attributes": ["high speed", "usb port"], "options": ["size: 10ft"], "instruction_attributes": ["usb port"], "instruction_options": ["10ft"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YR58TE", "worker_id": "A2Y2TURT2VEYZN"}], "B095Y62XPR": [{"asin": "B095Y62XPR", "instruction": "i need a double sided sharpening strap", "attributes": ["double sided", "easy use", "high quality"], "options": [""], "instruction_attributes": ["double sided"], "instruction_options": [], "assignment_id": "3HSYG7LRBU82VUVD7MHAI53YAE4KKZ", "worker_id": "A2Y2TURT2VEYZN"}], "B0792T5STF": [{"asin": "B0792T5STF", "instruction": "i'm looking for a plant based protein drink that should be free from soy, gluten and dairy.", "attributes": ["non gmo", "low sugar", "soy free", "plant based", "dairy free", "gluten free"], "options": [""], "instruction_attributes": ["soy free", "plant based", "dairy free", "gluten free"], "instruction_options": [], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3S9EG3Q", "worker_id": "AR0VJ5XRG16UJ"}], "B09HGNFL8G": [{"asin": "B09HGNFL8G", "instruction": "i am looking for a gluten free jerky", "attributes": ["grass fed", "artificial ingredients", "gluten free", "high protein", "zero sugar"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UUKY0D", "worker_id": "A9QRQL9CFJBI7"}], "B07VC8W1NG": [{"asin": "B07VC8W1NG", "instruction": "i am looking for a set of 7.4 inch size white lead free dessert salad plate which is easy to clean.", "attributes": ["easy clean", "lead free", "white item"], "options": ["color: navy", "size: 7.4 inch"], "instruction_attributes": ["easy clean", "lead free", "white item"], "instruction_options": ["7.4 inch"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OW2EYP", "worker_id": "A1V2JTEEBCXR20"}], "B096FH3W7S": [{"asin": "B096FH3W7S", "instruction": "i want an easy to use tongue cleaner for eliminating bad breath.", "attributes": ["easy use", "bad breath", "oral hygiene"], "options": [""], "instruction_attributes": ["easy use", "bad breath"], "instruction_options": [], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL45AEF", "worker_id": "A1NF6PELRKACS9"}], "B08Z8JGF5M": [{"asin": "B08Z8JGF5M", "instruction": "i need open toe sandles in red color for a teenage girl.", "attributes": ["open toe", "ankle strap", "teen girls"], "options": ["color: z5-red", "size: 8.5"], "instruction_attributes": ["open toe", "teen girls"], "instruction_options": ["z5-red"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU11LA8", "worker_id": "A1NF6PELRKACS9"}], "B09CMKSM4V": [{"asin": "B09CMKSM4V", "instruction": "i am looking for a white item coffee tables for living room", "attributes": ["white item", "easy install", "easy assemble", "storage space", "living room"], "options": [""], "instruction_attributes": ["white item", "living room"], "instruction_options": [], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQYQB41", "worker_id": "A9QRQL9CFJBI7"}], "B0828WMRFX": [{"asin": "B0828WMRFX", "instruction": "i am looking for a blue usb port cables", "attributes": ["fast charging", "usb port"], "options": ["color: blue"], "instruction_attributes": ["usb port"], "instruction_options": ["blue"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGDUSMB", "worker_id": "A9QRQL9CFJBI7"}], "B0982X1NJN": [{"asin": "B0982X1NJN", "instruction": "i want a medium sized mini dress that is loose fit. it must be in navy blue color.", "attributes": ["loose fit", "machine wash", "polyester spandex"], "options": ["color: navy blue", "size: medium"], "instruction_attributes": ["loose fit"], "instruction_options": ["navy blue", "medium"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZJBKMG", "worker_id": "A1NF6PELRKACS9"}], "B07HQWQSHF": [{"asin": "B07HQWQSHF", "instruction": "i am looking for high resolution television", "attributes": ["blu ray", "certified refurbished", "ultra hd", "high resolution", "high performance"], "options": [""], "instruction_attributes": ["high resolution"], "instruction_options": [], "assignment_id": "33TIN5LC0FKDY31374RC144TXXAY9J", "worker_id": "A16M39T60N60NO"}], "B08W1GXSRS": [{"asin": "B08W1GXSRS", "instruction": "i'm looking for skin care for sensitive for men's scent citron and driftwood and coconut water.", "attributes": ["non toxic", "cruelty free", "natural ingredients", "sensitive skin"], "options": ["scent: citron + driftwood and coconut water + sandalwood", "size: 3.4 ounce (pack of 2)"], "instruction_attributes": ["non toxic", "natural ingredients", "sensitive skin"], "instruction_options": ["citron + driftwood and coconut water + sandalwood"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB3K5YW", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08W1GXSRS", "instruction": "i need men's non toxic deororizing body spray for sensitive skin. get the 2pack 3.4 ounce size.", "attributes": ["non toxic", "cruelty free", "natural ingredients", "sensitive skin"], "options": ["scent: variety trio pack", "size: 3.4 ounce (pack of 2)"], "instruction_attributes": ["non toxic", "sensitive skin"], "instruction_options": ["3.4 ounce (pack of 2)"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL2EAEK", "worker_id": "A31PW970Z2PC5P"}], "B010T6TQRW": [{"asin": "B010T6TQRW", "instruction": "find me a yellow quick drying sarong wrap.", "attributes": ["machine wash", "quick drying"], "options": ["color: yellow_ad412"], "instruction_attributes": ["quick drying"], "instruction_options": ["yellow_ad412"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPI3VQO", "worker_id": "A1NF6PELRKACS9"}], "B09K44ZHBG": [{"asin": "B09K44ZHBG", "instruction": "i am ordering best dad ever coach fleece throw with super soft features.", "attributes": ["super soft", "fleece throw"], "options": ["color: best dad ever 3", "size: medium 60x50in\uff08travel\uff09 teens"], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["best dad ever 3"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFC0VLJ", "worker_id": "AHU9OLV0YKIIW"}], "B07N3YYYQB": [{"asin": "B07N3YYYQB", "instruction": "i am looking for mini computer. it must have 16gb ram,512gd ssd hard disk and core i5 processor.", "attributes": ["core i5", "intel core"], "options": ["color: i3 7167u", "size: 16g ram 512g ssd 1tb hdd"], "instruction_attributes": ["core i5"], "instruction_options": ["16g ram 512g ssd 1tb hdd"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINT0275", "worker_id": "A3FG5PQHG5AH3Y"}], "B07FMR71D7": [{"asin": "B07FMR71D7", "instruction": "i'm looking for engineered wood for living room furniture. it was white finish color furniture.", "attributes": ["assembly required", "white finish", "engineered wood", "living room"], "options": [""], "instruction_attributes": ["white finish", "engineered wood"], "instruction_options": [], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R1V7WU", "worker_id": "A16IQOX0DK14OJ"}], "B09S2RRH1W": [{"asin": "B09S2RRH1W", "instruction": "i buy a 3pcs natural hair", "attributes": ["hair growth", "hair loss", "damaged hair", "natural hair"], "options": ["color: 3pcs"], "instruction_attributes": ["natural hair"], "instruction_options": ["3pcs"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6GBEVT", "worker_id": "A226L9F2AZ38CL"}], "B07GTJ1B7J": [{"asin": "B07GTJ1B7J", "instruction": "i am looking for a high definition filter set with carrying case. it should be easy to install.", "attributes": ["easy install", "high definition", "carrying case"], "options": [""], "instruction_attributes": ["easy install", "high definition", "carrying case"], "instruction_options": [], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQUJB54", "worker_id": "A9ZM1P6LBW79"}], "B09NQ63BJV": [{"asin": "B09NQ63BJV", "instruction": "i'm looking for quality materials it was daily wear and need to buy it.", "attributes": ["quality materials", "high waist", "long sleeve", "daily wear"], "options": ["color: a4-colorful", "size: x-large"], "instruction_attributes": ["quality materials", "long sleeve", "daily wear"], "instruction_options": ["a4-colorful"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZC6UWX", "worker_id": "A16IQOX0DK14OJ"}], "B004YG7LA8": [{"asin": "B004YG7LA8", "instruction": "looking for yellow aaa battery in pack of 2", "attributes": ["batteries included", "easy use", "aaa batteries"], "options": ["color: yellow", "size: 2 pack"], "instruction_attributes": ["aaa batteries"], "instruction_options": ["yellow", "2 pack"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8IDZNW", "worker_id": "A2Y2TURT2VEYZN"}], "B09J8N49YH": [{"asin": "B09J8N49YH", "instruction": "i need some colorful wall dividers to arrange my living room for a holiday.", "attributes": ["assembly required", "easy clean", "living room"], "options": ["color: color15"], "instruction_attributes": ["assembly required", "living room"], "instruction_options": ["color15"], "assignment_id": "33TIN5LC0FKDY31374RC144TXYUY95", "worker_id": "A19317A3X87NVM"}], "B086PW7TWX": [{"asin": "B086PW7TWX", "instruction": "i need some gourmet dining room curtains at around 52 inch width.", "attributes": ["eco friendly", "machine washable", "dining room"], "options": ["size: 52x90in"], "instruction_attributes": ["dining room"], "instruction_options": ["52x90in"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEWZUU2", "worker_id": "A19317A3X87NVM"}], "B00IJGQS30": [{"asin": "B00IJGQS30", "instruction": "i'm looking for a blu ray dvd player with wifi support", "attributes": ["ultra hd", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5SL5FQ", "worker_id": "A258PTOZ3D2TQR"}], "B06XGBZQPY": [{"asin": "B06XGBZQPY", "instruction": "buy me a contemporary style tempered glass arm chair in white grey color.", "attributes": ["white item", "contemporary style", "tempered glass"], "options": ["color: white gray", "style: armchair"], "instruction_attributes": ["contemporary style", "tempered glass"], "instruction_options": ["white gray", "armchair"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK46B6AK", "worker_id": "A3AYHESLQSDY5T"}], "B09B9RHZ1K": [{"asin": "B09B9RHZ1K", "instruction": "i'm looking for steel toe blue in color it was easy to use.", "attributes": ["non slip", "steel toe"], "options": ["color: blue", "size: 40eu"], "instruction_attributes": ["steel toe"], "instruction_options": ["blue"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0TCCAA", "worker_id": "A16IQOX0DK14OJ"}], "B09KBTRC6L": [{"asin": "B09KBTRC6L", "instruction": "i am looking for an easy install home office chair with lumbar support. i would prefer a grey colored one.", "attributes": ["easy install", "lumbar support", "pu leather"], "options": ["color: grey", "style: mia"], "instruction_attributes": ["easy install", "lumbar support"], "instruction_options": ["grey"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2SFM5U", "worker_id": "A39VVWV1GHLMFD"}, {"asin": "B09KBTRC6L", "instruction": "i want to find a yellow cle gaming chair that is easy to install.", "attributes": ["easy install", "lumbar support", "pu leather"], "options": ["color: yellow", "style: cle"], "instruction_attributes": ["easy install"], "instruction_options": ["yellow", "cle"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWY41R8", "worker_id": "A345TDMHP3DQ3G"}], "B081TWKZMC": [{"asin": "B081TWKZMC", "instruction": "i'm looking for a machine washable men's shorts made of nylon spandex stretchable fabric with imported zipper. also choose 32 sized dark ash colored one.", "attributes": ["moisture wicking", "machine wash", "stretch fabric", "nylon spandex", "imported zipper"], "options": ["color: dark ash", "size: 32"], "instruction_attributes": ["machine wash", "stretch fabric", "nylon spandex", "imported zipper"], "instruction_options": ["dark ash", "32"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKTKJMN", "worker_id": "AR0VJ5XRG16UJ"}], "B08P4F727V": [{"asin": "B08P4F727V", "instruction": "i am looking for tv stand made of tempered glass that has fww color. and i would go for a size of 63\u201dwx17.7\u201d h x13.78\u201d d", "attributes": ["high gloss", "tempered glass", "storage space"], "options": ["color: fww", "size: 63\u201dwx17.7\u201d h x13.78\u201d d"], "instruction_attributes": ["tempered glass"], "instruction_options": ["fww", "63\u201dwx17.7\u201d h x13.78\u201d d"], "assignment_id": "3N8OEVH1F204BC17361WW31GEOIOO1", "worker_id": "A2COCSUGZV28X"}, {"asin": "B08P4F727V", "instruction": "i am searching for a high gloss tv stand with additional storage space. also, choose an ob color.", "attributes": ["high gloss", "tempered glass", "storage space"], "options": ["color: ob", "size: 41.34\u201dwx11.81\u201d d x16.93\u201d h"], "instruction_attributes": ["high gloss", "storage space"], "instruction_options": ["ob"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQM513P", "worker_id": "A9ZM1P6LBW79"}, {"asin": "B08P4F727V", "instruction": "looking for high gloss storage space tv stand with led lights also choose colour black brown", "attributes": ["high gloss", "tempered glass", "storage space"], "options": ["color: brown black", "size: 63\u201dwx17.7\u201d h x13.78\u201d d"], "instruction_attributes": ["high gloss", "storage space"], "instruction_options": ["brown black"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALDKH4G", "worker_id": "A10OGH5CQBXL5N"}], "B085RCLWW3": [{"asin": "B085RCLWW3", "instruction": "i am looking for large jar candles of soy wax.", "attributes": ["soy wax", "clear glass"], "options": ["scent: sheer jasmine", "size: large jar"], "instruction_attributes": ["soy wax"], "instruction_options": ["large jar"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP4PJ7C", "worker_id": "A9QRQL9CFJBI7"}], "B09922XCP2": [{"asin": "B09922XCP2", "instruction": "i am looking a white 1 posters & prints for living room", "attributes": ["easy install", "dining room", "living room"], "options": ["color: white 1", "size: 16x24 inch,(40x60cm)framed"], "instruction_attributes": ["living room"], "instruction_options": ["white 1"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z6KXGG", "worker_id": "A9QRQL9CFJBI7"}], "B09JZ84S8D": [{"asin": "B09JZ84S8D", "instruction": "i am looking for a creamy cellular shades for living room", "attributes": ["easy install", "living room"], "options": ["color: creamy", "size: 37\"w x 48\"h"], "instruction_attributes": ["living room"], "instruction_options": ["creamy"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJNV0WT", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09JZ84S8D", "instruction": "i need creamy shades for the living room.", "attributes": ["easy install", "living room"], "options": ["color: creamy", "size: 26\"w x 66\"h"], "instruction_attributes": ["living room"], "instruction_options": ["creamy"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSLTQ2W", "worker_id": "A2ECRNQ3X5LEXD"}], "B09G396CFQ": [{"asin": "B09G396CFQ", "instruction": "i'm looking for spa stainless steel tool for hair salon.", "attributes": ["stainless steel", "hair salon"], "options": ["color: grey", "size: b"], "instruction_attributes": ["stainless steel", "hair salon"], "instruction_options": ["grey"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX93FC4", "worker_id": "A16IQOX0DK14OJ"}], "B09H6M5Q21": [{"asin": "B09H6M5Q21", "instruction": "i am looking for a super soft blankets & throws of 40\u201cx30 \" xsmall for pets.", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: retro deep sea animal ocean whale", "size: 40\u201cx30 \" xsmall for pets"], "instruction_attributes": ["super soft"], "instruction_options": ["40\u201cx30 \" xsmall for pets"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU50LRR", "worker_id": "A9QRQL9CFJBI7"}], "B087LNDPNV": [{"asin": "B087LNDPNV", "instruction": "i am looking for stainless steel grooming set", "attributes": ["easy clean", "stainless steel", "rose gold"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTJ64D5", "worker_id": "A16M39T60N60NO"}], "B08DCX4XGP": [{"asin": "B08DCX4XGP", "instruction": "i need daily wear white c large hoodie, which has a loose fit and made of polyester cotton.", "attributes": ["loose fit", "polyester cotton", "daily wear"], "options": ["color: white c", "size: large"], "instruction_attributes": ["loose fit", "polyester cotton", "daily wear"], "instruction_options": ["white c", "large"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMH0FB7K", "worker_id": "ASWFLI3N8X72G"}], "B09BC6FBG9": [{"asin": "B09BC6FBG9", "instruction": "i am looking for a wireless portable bluetooth speakers", "attributes": ["high definition", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR7F0CM", "worker_id": "A9QRQL9CFJBI7"}], "B06XRW3SYB": [{"asin": "B06XRW3SYB", "instruction": "i am looking for a 3x scrub bottoms for day comfort", "attributes": ["day comfort", "drawstring closure"], "options": ["color: fuchsia utility", "size: 3x"], "instruction_attributes": ["day comfort"], "instruction_options": ["3x"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P76SVSH", "worker_id": "A9QRQL9CFJBI7"}], "B085LS1KZ7": [{"asin": "B085LS1KZ7", "instruction": "i am looking for a hairpiece made up of synthetic hair. also choose swedish blonde hair color one.", "attributes": ["synthetic hair", "natural hair"], "options": ["color: r22 swedish blonde"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["r22 swedish blonde"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKSH7V8", "worker_id": "A2HMEGTAFO0CS8"}], "B09PHGZSC7": [{"asin": "B09PHGZSC7", "instruction": "i am in need of loose hip-hop blue color, x-large sized women's sweatpants that is fit for machine wash.", "attributes": ["machine wash", "unique design"], "options": ["color: blue", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["blue", "x-large"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRTK2YJ", "worker_id": "A258PTOZ3D2TQR"}], "B099KD34N9": [{"asin": "B099KD34N9", "instruction": "i'm looking for natural ingredients for hair removal.", "attributes": ["high quality", "natural ingredients", "stainless steel", "hair removal"], "options": [""], "instruction_attributes": ["natural ingredients", "hair removal"], "instruction_options": [], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LCF1OW", "worker_id": "A16IQOX0DK14OJ"}], "B08P2RDV24": [{"asin": "B08P2RDV24", "instruction": "i'm looking for a long lasting scented candles made of soy wax.", "attributes": ["long lasting", "soy wax"], "options": [""], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": [], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQD0SQ5", "worker_id": "AR0VJ5XRG16UJ"}], "B0912VD9CH": [{"asin": "B0912VD9CH", "instruction": "i need a gift set of gourmet collection spices & seasoning blends \u2013 hot & spicey collection.", "attributes": ["gift set", "perfect gift"], "options": ["flavor name: hot & spicey"], "instruction_attributes": ["gift set"], "instruction_options": ["hot & spicey"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRYFJXK", "worker_id": "A1IL2K0ELYI090"}], "B07XPFSCL3": [{"asin": "B07XPFSCL3", "instruction": "i'm looking for seed oil it was certified organic good for skin and flavor was organic peppermint.", "attributes": ["certified organic", "seed oil"], "options": ["flavor name: organic peppermint", "size: single flavor - 3 pack"], "instruction_attributes": ["certified organic", "seed oil"], "instruction_options": ["organic peppermint"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPZSPJO", "worker_id": "A16IQOX0DK14OJ"}], "B082W4WNM7": [{"asin": "B082W4WNM7", "instruction": "i'm looking for wheat color kitchen rugs it easy clean.", "attributes": ["non slip", "easy clean", "living room"], "options": ["color: wheat", "size: 17\"x29\"+17\"x59\""], "instruction_attributes": ["easy clean"], "instruction_options": ["wheat"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXXSMYJ", "worker_id": "A16IQOX0DK14OJ"}], "B094P1NHW8": [{"asin": "B094P1NHW8", "instruction": "i am looking for a high definition mirrorless digital camera with optical zoom.", "attributes": ["high definition", "optical zoom"], "options": [""], "instruction_attributes": ["high definition", "optical zoom"], "instruction_options": [], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIVW9T9", "worker_id": "A1EREKSZAA9V7B"}], "B09SPXZF48": [{"asin": "B09SPXZF48", "instruction": "show me a butt lifting tummy controlling high waisted green legging in medium size.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: z05 green", "size: medium"], "instruction_attributes": ["butt lifting", "tummy control", "high waist"], "instruction_options": ["z05 green", "medium"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTUFP9S", "worker_id": "A3AYHESLQSDY5T"}], "B08FMTLWH5": [{"asin": "B08FMTLWH5", "instruction": "in the tools & home improvement department, i am looking for matte black 24 inch vanity light using 14w led 3000k metal wall sconce (modern) that is easy to install, in the color of cool white 6000k.", "attributes": ["easy install", "vanity light", "light fixture"], "options": ["color: cool white 6000k", "size: 15.75 inch"], "instruction_attributes": ["easy install", "vanity light"], "instruction_options": ["cool white 6000k"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7X91FR3", "worker_id": "A3RGIKEI8JS2QG"}], "B07BMLMXPP": [{"asin": "B07BMLMXPP", "instruction": "i'm looking for a real fruit bitters with zero sugar. also, choose a pack of 2 weights 32 ounce each with cranberry punch flavored one.", "attributes": ["low sugar", "zero sugar", "real fruit"], "options": ["flavor: cranberry punch", "size: 2pack - 32 ounce ea."], "instruction_attributes": ["zero sugar", "real fruit"], "instruction_options": ["cranberry punch", "2pack - 32 ounce ea."], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT19P3D", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B07BMLMXPP", "instruction": "i'm looking for margarita low sugared real fruit needed.", "attributes": ["low sugar", "zero sugar", "real fruit"], "options": ["flavor: margarita", "size: 6pack - 32 ounce ea."], "instruction_attributes": ["low sugar", "zero sugar", "real fruit"], "instruction_options": ["margarita"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35NFUGV", "worker_id": "A16IQOX0DK14OJ"}], "B0861RQNRM": [{"asin": "B0861RQNRM", "instruction": "i am looking for gluten free sesame edamame bean and nut snack mix in creole flavor, 1.25 ounce (pack of 18)", "attributes": ["protein serving", "non gmo", "gluten free"], "options": ["flavor name: creole", "size: 1.25 ounce (pack of 18)"], "instruction_attributes": ["gluten free"], "instruction_options": ["creole", "1.25 ounce (pack of 18)"], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6FAUP9", "worker_id": "A258PTOZ3D2TQR"}], "B09BHZYWDG": [{"asin": "B09BHZYWDG", "instruction": "i am looking for tempered glass screen protector, color should be navy-n10", "attributes": ["glass screen", "tempered glass"], "options": ["color: navy-n10"], "instruction_attributes": ["tempered glass"], "instruction_options": ["navy-n10"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA5C8C2", "worker_id": "A258PTOZ3D2TQR"}], "B07XY4XNQW": [{"asin": "B07XY4XNQW", "instruction": "i am looking for a 1blue & 1green & 1orange with noaa | usb charger | usb cable | battery | lanyard color of two-way radios which is easy to use", "attributes": ["hands free", "easy use"], "options": ["color: 1blue & 1green & 1orange with noaa | usb charger | usb cable | battery | lanyard", "size: 3 or 4 pack"], "instruction_attributes": ["easy use"], "instruction_options": ["3 or 4 pack"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XS3NGF", "worker_id": "A9QRQL9CFJBI7"}], "B08223P86V": [{"asin": "B08223P86V", "instruction": "i would like a medium sized blue windbreaker to keep me warm in the winter.", "attributes": ["winter warm", "quick drying"], "options": ["color: blue", "size: medium"], "instruction_attributes": ["winter warm"], "instruction_options": ["blue", "medium"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFTLT04", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08223P86V", "instruction": "i need a red jacket that is quick drying and in an x-small.", "attributes": ["winter warm", "quick drying"], "options": ["color: red", "size: x-small"], "instruction_attributes": ["quick drying"], "instruction_options": ["red", "x-small"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YXYHEW", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PTBY841": [{"asin": "B09PTBY841", "instruction": "i am looking for a women's small long sleeve jumpsuit.", "attributes": ["wide leg", "slim fit", "long sleeve", "high waist"], "options": ["color: wine", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0TSW5S", "worker_id": "A1EREKSZAA9V7B"}], "B07TTC374M": [{"asin": "B07TTC374M", "instruction": "i'm looking for double sided hair extensions for hair care accessories.", "attributes": ["double sided", "high quality", "hair extensions"], "options": ["color: #ba2 | 60", "size: 22 inch"], "instruction_attributes": ["double sided", "hair extensions"], "instruction_options": ["#ba2 | 60"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPA1OR7", "worker_id": "A16IQOX0DK14OJ"}], "B097PMDGCJ": [{"asin": "B097PMDGCJ", "instruction": "i am looking for a silver non slip hair clip for hair styling.", "attributes": ["non slip", "hair styling"], "options": ["color: silver", "size: 2.75 inch"], "instruction_attributes": ["non slip", "hair styling"], "instruction_options": ["silver"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WR7WQ1", "worker_id": "AHU9OLV0YKIIW"}], "B075WXTQW8": [{"asin": "B075WXTQW8", "instruction": "i'm looking for gluten free snack crackers in 4.25 ounce pack.", "attributes": ["grain free", "gluten free", "shelf stable", "plant based", "non gmo", "simple ingredients"], "options": ["size: 4.25 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["4.25 ounce (pack of 1)"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K6R21X", "worker_id": "A20DUVEOH6A7KW"}], "B097BBYP9G": [{"asin": "B097BBYP9G", "instruction": "i am looking for 4 colors eye shadow.", "attributes": ["easy apply", "eye shadow"], "options": [""], "instruction_attributes": ["eye shadow"], "instruction_options": [], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU48232PYJ", "worker_id": "A3FG5PQHG5AH3Y"}], "B082WX621J": [{"asin": "B082WX621J", "instruction": "i am looking for a high performance smart watch for unisex with water resistant. also choose 42mm face size and pearl white color.", "attributes": ["water resistant", "light weight", "high performance", "stainless steel"], "options": ["color: pearl white", "size: 42mm | 44mm | 45mm"], "instruction_attributes": ["water resistant", "high performance"], "instruction_options": ["pearl white", "42mm | 44mm | 45mm"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT8137K", "worker_id": "A2HMEGTAFO0CS8"}], "B09B3NWZTV": [{"asin": "B09B3NWZTV", "instruction": "i'm looking for a hair roller for hair styling, it should be easy to use. also, choose 2.8 *2 inch pink colored one.", "attributes": ["easy use", "hair styling", "dry hair"], "options": ["color: 2.8x2inch-pink"], "instruction_attributes": ["easy use", "hair styling"], "instruction_options": ["2.8x2inch-pink"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYOXQ9C", "worker_id": "AR0VJ5XRG16UJ"}], "B09M64JZCL": [{"asin": "B09M64JZCL", "instruction": "i am looking for a overall cover with tempered glass screen protector for my apple watch, preferably in rose gold color", "attributes": ["compatible apple", "easy install", "glass screen", "tempered glass", "wireless charging"], "options": ["color: rose gold | silver | midnight blue | clear", "size: 45mm"], "instruction_attributes": ["compatible apple", "tempered glass"], "instruction_options": ["rose gold | silver | midnight blue | clear"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4DOSBI", "worker_id": "A14BSOU2Y5JNT0"}], "B07QGVJ9HV": [{"asin": "B07QGVJ9HV", "instruction": "i need a high heeled sandals of 6.5 size for daily use . and please get me the gold-2 one", "attributes": ["open toe", "ankle strap", "high heel"], "options": ["color: gold-2", "size: 6.5"], "instruction_attributes": ["high heel"], "instruction_options": ["gold-2", "6.5"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YRT8T2", "worker_id": "A2COCSUGZV28X"}], "B09MTQBBZV": [{"asin": "B09MTQBBZV", "instruction": "i need to buy some gold cupcake toppers for a birthday party.", "attributes": ["party supplies", "birthday party"], "options": ["pattern name: gold 60"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold 60"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY3PJ4K", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09MTQBBZV", "instruction": "i would like a gold 35 cupcake topper for a birthday party.", "attributes": ["party supplies", "birthday party"], "options": ["pattern name: gold 35"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold 35"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98VJYKI", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09MTQBBZV", "instruction": "i'm looking for pack of 24 happy 75th birthday party supplies.", "attributes": ["party supplies", "birthday party"], "options": ["pattern name: gold 15"], "instruction_attributes": ["party supplies"], "instruction_options": ["gold 15"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQJ1KEC", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B09MTQBBZV", "instruction": "i want to find gold cupcake toppers that i can use for a birthday party.", "attributes": ["party supplies", "birthday party"], "options": ["pattern name: gold 70"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold 70"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQHG91L", "worker_id": "A345TDMHP3DQ3G"}], "B0792KXFRV": [{"asin": "B0792KXFRV", "instruction": "i looking a gluten free food and beverage gift pack for dinner party", "attributes": ["gluten free", "perfect gift"], "options": ["flavor name: dinner party"], "instruction_attributes": ["gluten free"], "instruction_options": ["dinner party"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCWV46N", "worker_id": "A3N9ZYQAESNFQH"}], "B07L738NLT": [{"asin": "B07L738NLT", "instruction": "i would like a pair of midnight green earbud headphones made of aluminum alloy.", "attributes": ["carbon fiber", "aluminum alloy"], "options": ["color: midnight green"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["midnight green"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6K5B2G", "worker_id": "A1WS884SI0SLO4"}], "B092BYZSWK": [{"asin": "B092BYZSWK", "instruction": "i am looking for a organic and gluten free almond nut butter with kosher certified. also choose chocolate favor and 4-pack size.", "attributes": ["certified organic", "gluten free", "soy free", "kosher certified", "dairy free", "non gmo"], "options": ["flavor name: chocolate hazelnut", "size: 4 pack"], "instruction_attributes": ["certified organic", "gluten free", "kosher certified"], "instruction_options": ["chocolate hazelnut", "4 pack"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q73GH9Q", "worker_id": "A2HMEGTAFO0CS8"}], "B01AR9V9HG": [{"asin": "B01AR9V9HG", "instruction": "i'm looking for furniture it was in living room the color was pastel blue.", "attributes": ["easy install", "living room"], "options": ["color: 07.pastel_blue", "size: w70 1 | 2 x h47 (inch)"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["07.pastel_blue"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163U1PQW", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B01AR9V9HG", "instruction": "i would like a 44 inch wide and 47 inch tall caramel roller shade for the living room.", "attributes": ["easy install", "living room"], "options": ["color: 13.caramel", "size: w44 1 | 2 x h47 (inch)"], "instruction_attributes": ["living room"], "instruction_options": ["13.caramel", "w44 1 | 2 x h47 (inch)"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMFRXDV", "worker_id": "A1WS884SI0SLO4"}], "B06XP49SRM": [{"asin": "B06XP49SRM", "instruction": "i would like a 3.5 ounce variety pack of pretzels that are nut free.", "attributes": ["non gmo", "nut free", "artificial flavors"], "options": ["flavor name: variety pack (100 calorie)", "size: 3.5 ounce (pack of 6)"], "instruction_attributes": ["nut free"], "instruction_options": ["variety pack (100 calorie)", "3.5 ounce (pack of 6)"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH37BOSE7", "worker_id": "A1WS884SI0SLO4"}], "B0963LPXT6": [{"asin": "B0963LPXT6", "instruction": "i'm looking for black elastic waistband for need to use it.", "attributes": ["water resistant", "moisture wicking", "elastic waistband"], "options": ["color: black - 3 inch", "size: medium"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUH65SY", "worker_id": "A16IQOX0DK14OJ"}], "B09G5WH3PR": [{"asin": "B09G5WH3PR", "instruction": "i am looking for a natural wood color floor lamps for living room", "attributes": ["easy install", "wood finish", "solid wood", "living room"], "options": ["color: natural wood color"], "instruction_attributes": ["living room"], "instruction_options": ["natural wood color"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HZPD1U", "worker_id": "A9QRQL9CFJBI7"}], "B09LHMWNW1": [{"asin": "B09LHMWNW1", "instruction": "i am looking for carplay ips touchscreen mirror link with 4 crore wifi 1g+16g", "attributes": ["hands free", "plug play"], "options": ["color: 4 core wifi 1g+16g"], "instruction_attributes": ["plug play"], "instruction_options": ["4 core wifi 1g+16g"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUEADZR", "worker_id": "A16M39T60N60NO"}], "B08HH984SX": [{"asin": "B08HH984SX", "instruction": "i'm looking for green backdrop stand for digital photography", "attributes": ["heavy duty", "carrying case", "aluminum alloy", "digital photography"], "options": ["color: green"], "instruction_attributes": ["digital photography"], "instruction_options": ["green"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR02524KAE", "worker_id": "A2Y2TURT2VEYZN"}], "B09DYH3Y15": [{"asin": "B09DYH3Y15", "instruction": "i want highly pigmented easy apply easy carry face foundation color: white+red+black", "attributes": ["highly pigmented", "easy apply", "easy carry"], "options": ["color: white+red+black stick"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "351SEKWQSBRP7CP60H83T50CFA6DMO", "worker_id": "A3N9ZYQAESNFQH"}], "B00FZGYP1O": [{"asin": "B00FZGYP1O", "instruction": "i want a pineapple flavor caffeine free soft drink size :67.6 fl oz", "attributes": ["caffeine free", "natural flavors"], "options": ["flavor name: pineapple", "size: 67.6 fl oz (pack of 1)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["pineapple", "67.6 fl oz (pack of 1)"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAD3IFN", "worker_id": "A3N9ZYQAESNFQH"}], "B09KCMM4TP": [{"asin": "B09KCMM4TP", "instruction": "i am looking for a 2 bottle set of long lasting holographic glitter that is rose gold in color.", "attributes": ["long lasting", "easy use", "high quality", "rose gold"], "options": ["color: #7 rose gold - (2 bottle)"], "instruction_attributes": ["long lasting", "rose gold"], "instruction_options": ["#7 rose gold - (2 bottle)"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q4YDK4", "worker_id": "A1NF6PELRKACS9"}], "B000QDZ6KU": [{"asin": "B000QDZ6KU", "instruction": "i'm looking for soft sandal for habana oiled leather was fully used.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: habana oiled leather", "size: 7 women | 5 men"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["habana oiled leather"], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6ECPU4", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B000QDZ6KU", "instruction": "i would like a pair of size 9.5 mocha sandals made of vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: mocha", "size: 9-9.5"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["mocha", "9-9.5"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZGERPA", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B000QDZ6KU", "instruction": "i'm looking for a pair of navy sandals for women that are made with vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: navy", "size: 13-13.5 narrow little kid"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["navy"], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLID8KIN", "worker_id": "A2JP9IKRHNLRPI"}], "B0983XCSRL": [{"asin": "B0983XCSRL", "instruction": "i would like a pair of women's 7.5 black sandals with a open toe.", "attributes": ["open toe", "long sleeve", "tummy control"], "options": ["color: p-black", "size: 7.5"], "instruction_attributes": ["open toe"], "instruction_options": ["p-black", "7.5"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGMF0O2", "worker_id": "A1WS884SI0SLO4"}], "B06WWLNF9V": [{"asin": "B06WWLNF9V", "instruction": "i'm looking for lactose it made for sugar cup packets.", "attributes": ["lactose free", "non dairy"], "options": [""], "instruction_attributes": ["lactose free"], "instruction_options": [], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5HQIWK", "worker_id": "A16IQOX0DK14OJ"}], "B09STB36TK": [{"asin": "B09STB36TK", "instruction": "i am looking for a red slim fit robes for men.", "attributes": ["loose fit", "slim fit", "long sleeve", "elastic waist", "regular fit", "short sleeve", "gym workout"], "options": ["color: red", "size: large"], "instruction_attributes": ["slim fit"], "instruction_options": [], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CULFS4K", "worker_id": "A9QRQL9CFJBI7"}], "B07TNYSSM5": [{"asin": "B07TNYSSM5", "instruction": "i am looking for high speed video cable easy use multicolored size:10ft", "attributes": ["high speed", "plug play", "easy use", "high definition"], "options": ["color: multicolored", "size: 10ft"], "instruction_attributes": ["high speed", "easy use"], "instruction_options": ["multicolored", "10ft"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4DYSBS", "worker_id": "A3N9ZYQAESNFQH"}], "B01NAW0D7B": [{"asin": "B01NAW0D7B", "instruction": "i am looking for a medium - large polyester cotton t shirts for men", "attributes": ["polyester cotton", "tumble dry"], "options": ["color: small,oxford gray", "size: medium-large"], "instruction_attributes": ["polyester cotton"], "instruction_options": [], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V1CGFW", "worker_id": "A9QRQL9CFJBI7"}], "B07CXJNH2S": [{"asin": "B07CXJNH2S", "instruction": "i am looking for a water resistant & carrying case bags, cases & sleeves of purple color.", "attributes": ["water resistant", "carrying case"], "options": ["color: purple", "size: 15-15.6 in"], "instruction_attributes": ["water resistant", "carrying case"], "instruction_options": ["purple"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMP2WM4", "worker_id": "A9QRQL9CFJBI7"}], "B09PV119JX": [{"asin": "B09PV119JX", "instruction": "i need a light weight and high resolution background photo for my studio. it should be in a12 color.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a12", "size: 9x6ft | 2.7x1.8m"], "instruction_attributes": ["light weight", "high resolution"], "instruction_options": ["a12"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W9FOUL", "worker_id": "A1NF6PELRKACS9"}], "B07NDKPK27": [{"asin": "B07NDKPK27", "instruction": "i would like a bag of a bpa free bacon snack.", "attributes": ["fully cooked", "bpa free", "shelf stable"], "options": [""], "instruction_attributes": ["bpa free"], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTUU9PR", "worker_id": "A1WS884SI0SLO4"}], "B08JCK2419": [{"asin": "B08JCK2419", "instruction": "i want to buy some long lasting black nail polish.", "attributes": ["heavy duty", "long lasting", "nail polish"], "options": ["color: black"], "instruction_attributes": ["long lasting", "nail polish"], "instruction_options": ["black"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINTI27N", "worker_id": "A2YNPKYEFDZ6C9"}], "B09RWKDMQJ": [{"asin": "B09RWKDMQJ", "instruction": "i am hair cutting tool hair clipper accessories color :silver head", "attributes": ["non slip", "hair cutting"], "options": ["color: silver head"], "instruction_attributes": ["hair cutting"], "instruction_options": ["silver head"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GEYZUG", "worker_id": "A3N9ZYQAESNFQH"}], "B09PYD8R4Z": [{"asin": "B09PYD8R4Z", "instruction": "i would like a football temporary tattoo that is easy to apply.", "attributes": ["easy apply", "non toxic", "easy use", "stainless steel"], "options": ["color: football"], "instruction_attributes": ["easy apply"], "instruction_options": ["football"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1FNXR4", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09PYD8R4Z", "instruction": "i am looking for a non toxic green color temporary tattoos.", "attributes": ["easy apply", "non toxic", "easy use", "stainless steel"], "options": ["color: green"], "instruction_attributes": ["non toxic"], "instruction_options": [], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP90COR", "worker_id": "A9QRQL9CFJBI7"}], "B07SKT8TVB": [{"asin": "B07SKT8TVB", "instruction": "i am looking for 18 inch women synthetic hair extension of 8 packs.", "attributes": ["high quality", "synthetic hair"], "options": ["color: #51", "size: 18 inch,8packs"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["18 inch,8packs"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4AR6RK", "worker_id": "A3FG5PQHG5AH3Y"}], "B07XD7KP9K": [{"asin": "B07XD7KP9K", "instruction": "i'm looking for home decor products and its for dining room.", "attributes": ["machine washable", "contemporary design", "living room", "dining room"], "options": ["color: rvw6200", "size: 52\" w by 84\" l"], "instruction_attributes": ["dining room"], "instruction_options": ["rvw6200"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB14BLU2", "worker_id": "A16IQOX0DK14OJ"}], "B017701FUE": [{"asin": "B017701FUE", "instruction": "i'm looking for queen horizontal sized beds that wood framed structure .", "attributes": ["queen size", "wood frame"], "options": ["size: queen - horizontal"], "instruction_attributes": ["queen size", "wood frame"], "instruction_options": ["queen - horizontal"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQANN0J", "worker_id": "A16IQOX0DK14OJ"}], "B097F9KY3B": [{"asin": "B097F9KY3B", "instruction": "i'm looking for made cup cakes for birthaday parteis.", "attributes": ["birthday party", "cupcake picks", "party supplies", "baby shower"], "options": ["color: black&pink"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["black&pink"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQQQ0PW", "worker_id": "A16IQOX0DK14OJ"}], "B095HFMY55": [{"asin": "B095HFMY55", "instruction": "i'm looking for made a cookies for birthday parties.", "attributes": ["baby shower", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y84VI3", "worker_id": "A16IQOX0DK14OJ"}], "B07JM8PKWW": [{"asin": "B07JM8PKWW", "instruction": "i'm looking for vanty lights for bathroom fixtures.", "attributes": ["easy install", "easy clean", "vanity light", "stainless steel"], "options": ["color: chrome", "size: 39.37in"], "instruction_attributes": ["vanity light"], "instruction_options": ["39.37in"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227HG8FN", "worker_id": "A16IQOX0DK14OJ"}], "B07VD9SQRC": [{"asin": "B07VD9SQRC", "instruction": "i would like some gluten free rice flour.", "attributes": ["gluten free", "non gmo", "certified organic"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY7W0U6", "worker_id": "A1WS884SI0SLO4"}], "B0199TEKPS": [{"asin": "B0199TEKPS", "instruction": "can i get arm & hammer ultramax anti-perspirant deodorant with fresh scent", "attributes": ["anti perspirant", "fragrance free"], "options": ["scent: fresh"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["fresh"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQH5KEC", "worker_id": "A1IL2K0ELYI090"}], "B0166LGNWU": [{"asin": "B0166LGNWU", "instruction": "i'm looking for a 6-pack of certified organic herbal mint cool-refresh tea and it should be caffeine-free.", "attributes": ["caffeine free", "certified organic", "individually wrapped"], "options": ["flavor name: organic herbal mint cool-refresh tea (decaf)", "size: 6-pack (150 tea bags)"], "instruction_attributes": ["caffeine free", "certified organic"], "instruction_options": ["organic herbal mint cool-refresh tea (decaf)", "6-pack (150 tea bags)"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JZSEG5", "worker_id": "A1Q0EUNCS50S8M"}, {"asin": "B0166LGNWU", "instruction": "i am looking for 100 count (pack of 4) tea bags that are caffeine free.", "attributes": ["caffeine free", "certified organic", "individually wrapped"], "options": ["flavor name: organic royal white antioxidant-rich tea", "size: 100 count (pack of 4)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["100 count (pack of 4)"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4V23WYN", "worker_id": "A1Q8PPQQCWGY0D"}], "B07MHLL27V": [{"asin": "B07MHLL27V", "instruction": "i need a pair of stainless hair cutting shears that is 6 inches and black in color.", "attributes": ["stainless steel", "hair cutting"], "options": ["pattern name: c-6.0 inch-black"], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": ["c-6.0 inch-black"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM491TX4B", "worker_id": "A1NF6PELRKACS9"}], "B07R71K9F2": [{"asin": "B07R71K9F2", "instruction": "i'm looking for clothing for women's for classic fit and needle sleeve need to buy it.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: neon pink", "fit type: women", "size: xx-large"], "instruction_attributes": ["needle sleeve", "classic fit"], "instruction_options": ["neon pink"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCPS9BH", "worker_id": "A16IQOX0DK14OJ"}], "B09RMSZDN2": [{"asin": "B09RMSZDN2", "instruction": "i need a closed toe khakhi sandal with ankle straps in size 10", "attributes": ["closed toe", "ankle strap"], "options": ["color: khaki", "size: 10"], "instruction_attributes": ["closed toe", "ankle strap"], "instruction_options": ["khaki", "10"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0MZQSCT", "worker_id": "ASWFLI3N8X72G"}], "B09NNB7Z41": [{"asin": "B09NNB7Z41", "instruction": "please add to my list baby boy silver cupcake picks for my son\u2019s birthday party.", "attributes": ["baby shower", "birthday party", "cupcake picks"], "options": ["pattern name: boy silver"], "instruction_attributes": ["birthday party", "cupcake picks"], "instruction_options": ["boy silver"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFIJ9V0", "worker_id": "AHU9OLV0YKIIW"}], "B07TGBYGL3": [{"asin": "B07TGBYGL3", "instruction": "i'm looking for a actloe women hoodie sweatshirt .", "attributes": ["loose fit", "long sleeve", "daily wear"], "options": ["color: coffee", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["coffee", "large"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U69MAT", "worker_id": "A1ZGOZQF2VZ0X9"}], "B084KTYG3M": [{"asin": "B084KTYG3M", "instruction": "i am looking for a console table made up of wooden frame for living room. also choose espresso one.", "attributes": ["storage space", "wood frame", "solid wood", "living room"], "options": ["color: espresso"], "instruction_attributes": ["wood frame", "living room"], "instruction_options": ["espresso"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OJWTRE", "worker_id": "A2HMEGTAFO0CS8"}], "B07Y4V5XGS": [{"asin": "B07Y4V5XGS", "instruction": "i want 18\" high quality hair extensions made with natural hair in color 882.", "attributes": ["high quality", "hair extensions", "natural hair"], "options": ["color: 882", "size: 18\""], "instruction_attributes": ["high quality", "hair extensions", "natural hair"], "instruction_options": ["882", "18\""], "assignment_id": "3PIWWX1FJUGC9QJD7GHMGB38GZNJJH", "worker_id": "ASWFLI3N8X72G"}], "B09MW3C834": [{"asin": "B09MW3C834", "instruction": "i'm searching for purple color toppers to decorate the birthday cake.", "attributes": ["birthday cake", "birthday party"], "options": ["color: purple"], "instruction_attributes": ["birthday cake"], "instruction_options": ["purple"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLW2DR7", "worker_id": "A9ZM1P6LBW79"}], "B094DRJ1FP": [{"asin": "B094DRJ1FP", "instruction": "i need gluten free pizza with a soft centre and crispy edges.", "attributes": ["gluten free", "trader joe", "keto friendly", "low carb", "natural ingredients"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3TZP69", "worker_id": "A1NF6PELRKACS9"}], "B01IQGHBVK": [{"asin": "B01IQGHBVK", "instruction": "i'm looking for engineered wood that need to white finish furniture.", "attributes": ["white finish", "engineered wood"], "options": [""], "instruction_attributes": ["white finish", "engineered wood"], "instruction_options": [], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788EPC5G", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B01IQGHBVK", "instruction": "i want a queen panel bed in white finish.", "attributes": ["white finish", "engineered wood"], "options": [""], "instruction_attributes": ["white finish"], "instruction_options": [], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBX0H4OC", "worker_id": "A2RBF3IIJP15IH"}], "B09FGSQYLQ": [{"asin": "B09FGSQYLQ", "instruction": "i'm looking for a hands free navigation system for my car, about 2+32 big and it should have 8 cores.", "attributes": ["hands free", "plug play"], "options": ["color: 8 core", "size: 2+32"], "instruction_attributes": ["hands free"], "instruction_options": ["8 core", "2+32"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE22GQGT", "worker_id": "A3AK3UL0UCNVKE"}], "B08YGLDT3K": [{"asin": "B08YGLDT3K", "instruction": "i am looking for permanent hair color with natural ingredients and color: funky yellow (2 pack)", "attributes": ["argan oil", "natural ingredients", "permanent hair"], "options": ["color: funky yellow (2 pack)"], "instruction_attributes": ["natural ingredients", "permanent hair"], "instruction_options": ["funky yellow (2 pack)"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOXQO7P", "worker_id": "AX2EWYWZM19AZ"}], "B08SHLSN55": [{"asin": "B08SHLSN55", "instruction": "i needed a 5-case gluten free multigrain table crackers.", "attributes": ["gluten free", "lactose free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ0X1RRZ", "worker_id": "A39VVWV1GHLMFD"}], "B09GLQFSXG": [{"asin": "B09GLQFSXG", "instruction": "i would like a twin sized espresso bed that is made of solid wood.", "attributes": ["twin size", "white item", "assembly required", "easy assemble", "box spring", "solid wood", "storage space"], "options": ["color: espresso", "size: twin over twin"], "instruction_attributes": ["solid wood"], "instruction_options": ["espresso", "twin over twin"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX65AFK", "worker_id": "A1WS884SI0SLO4"}], "B079CH6STL": [{"asin": "B079CH6STL", "instruction": "i'm looking for clothing for classic fit and needle and color was navy.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: youth", "size: 4t"], "instruction_attributes": ["machine wash", "needle sleeve", "classic fit"], "instruction_options": ["navy"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YOH96W", "worker_id": "A16IQOX0DK14OJ"}], "B0834QQR5F": [{"asin": "B0834QQR5F", "instruction": "i am looking for a electric pink zebra mules & clogs of ethylene vinyl.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: electric pink zebra", "size: 8 women | 6 men"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["electric pink zebra"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66QKZFG", "worker_id": "A9QRQL9CFJBI7"}], "B083JN9J8M": [{"asin": "B083JN9J8M", "instruction": "am looking for a non-alcoholic spirit that comes in a bottle size of 750ml made by the monday company called zero alcohol gin that should be found in the grocery & gourmet food department.", "attributes": ["non alcoholic", "gluten free", "sugar free"], "options": [""], "instruction_attributes": ["non alcoholic"], "instruction_options": [], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCJC0EZ", "worker_id": "A3RGIKEI8JS2QG"}], "B094VSVPZV": [{"asin": "B094VSVPZV", "instruction": "i am looking for a 48 piece nautical themed cupcake toppers for a birthday party.", "attributes": ["birthday party", "baby shower", "party supplies"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7XWSDJ", "worker_id": "A1EREKSZAA9V7B"}], "B073HGKQDC": [{"asin": "B073HGKQDC", "instruction": "i am looking for a 2'6\" x 14' area rugs for living rooms.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: green | ivory", "size: 2'6\" x 14'"], "instruction_attributes": ["living room"], "instruction_options": ["2'6\" x 14'"], "assignment_id": "33CID5710F37J25O7G1CGJZBORJ3L4", "worker_id": "A9QRQL9CFJBI7"}], "B09NM62G51": [{"asin": "B09NM62G51", "instruction": "i'm looking for furnitures for kitchen dinning room the color need to buy pu-red brown.", "attributes": ["button tufted", "non slip", "easy assemble", "dining room"], "options": ["color: pu- red brown", "size: 1 barstool"], "instruction_attributes": ["dining room"], "instruction_options": ["pu- red brown"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH37A9SEQ", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B09NM62G51", "instruction": "i want easy assemble non slip button tufted bar stool color velvet -white", "attributes": ["button tufted", "non slip", "easy assemble", "dining room"], "options": ["color: velvet- white", "size: 1 barstool"], "instruction_attributes": ["button tufted", "non slip", "easy assemble"], "instruction_options": ["velvet- white"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTVPP94", "worker_id": "A3N9ZYQAESNFQH"}], "B093GSXWLK": [{"asin": "B093GSXWLK", "instruction": "i would like a black bottle of nail polish with elastic bands.", "attributes": ["heavy duty", "long lasting", "storage case", "nail polish"], "options": ["color: black | purple", "style: with elastic bands"], "instruction_attributes": ["nail polish"], "instruction_options": ["black | purple", "with elastic bands"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCWGAGGT", "worker_id": "A1WS884SI0SLO4"}], "B09FQ8CC79": [{"asin": "B09FQ8CC79", "instruction": "i am looking or grey throw for couch sofa with machine washable feature.", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: grey | white", "size: 50\"x60\""], "instruction_attributes": ["machine washable"], "instruction_options": ["grey | white"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGD9S9W", "worker_id": "A3FG5PQHG5AH3Y"}], "B09LMNKRKX": [{"asin": "B09LMNKRKX", "instruction": "i would like a 8 pack of almond butter dates that are ready to eat.", "attributes": ["low calorie", "ready eat", "great gift"], "options": ["flavor: almond butter dates", "size: 8 pack"], "instruction_attributes": ["ready eat"], "instruction_options": ["almond butter dates", "8 pack"], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ0Y4RR4", "worker_id": "A1WS884SI0SLO4"}], "B07N8RRPT1": [{"asin": "B07N8RRPT1", "instruction": "i am looking for a white coffee tables with nickel finish.", "attributes": ["nickel finish", "tempered glass", "steel frame"], "options": ["color: white", "size: 32''"], "instruction_attributes": ["nickel finish"], "instruction_options": ["white"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPLD6EJ", "worker_id": "A9QRQL9CFJBI7"}], "B07FKB9LPH": [{"asin": "B07FKB9LPH", "instruction": "i need multicolored hair bands that are non toxic.", "attributes": ["anti aging", "non toxic"], "options": ["color: b-color"], "instruction_attributes": ["non toxic"], "instruction_options": ["b-color"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3SA3G3H", "worker_id": "A1NF6PELRKACS9"}], "B004QGG45E": [{"asin": "B004QGG45E", "instruction": "i'm looking for shoes for women's sandals and want to buy a black color.", "attributes": ["slip resistant", "rubber sole"], "options": ["color: black", "size: 7 x-wide"], "instruction_attributes": ["slip resistant"], "instruction_options": ["black"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E5LXH1", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B004QGG45E", "instruction": "i'm looking for a slip resistant women clog with 9.5 in dark brown suede", "attributes": ["slip resistant", "rubber sole"], "options": ["color: dark brown suede flower", "size: 9.5 wide"], "instruction_attributes": ["slip resistant"], "instruction_options": ["dark brown suede flower", "9.5 wide"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZL9K9O", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B004QGG45E", "instruction": "i'm looking for modern design shoes with additional features.", "attributes": ["slip resistant", "rubber sole"], "options": ["color: luggage leop", "size: 12"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["luggage leop"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBVIGI5", "worker_id": "A21IUUHBSEVB56"}], "B09CQ8VNM6": [{"asin": "B09CQ8VNM6", "instruction": "i need some grey and white, easy to clean collapsible storage bins in a four pack.", "attributes": ["space saving", "easy clean"], "options": ["color: grey & white", "size: 4-pack"], "instruction_attributes": ["easy clean"], "instruction_options": ["grey & white", "4-pack"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HR8OW6", "worker_id": "AR9AU5FY1S3RO"}], "B09H6YC788": [{"asin": "B09H6YC788", "instruction": "i am looking for a long lasting hair extensions for natural hair. also choose 30# color and 14inch (pack 7) one.", "attributes": ["long lasting", "hair extensions", "natural hair"], "options": ["color: 30#", "size: 14 inch (pack of 7)"], "instruction_attributes": ["long lasting", "hair extensions", "natural hair"], "instruction_options": ["30#", "14 inch (pack of 7)"], "assignment_id": "33CID5710F37J25O7G1CGJZBOSR3LE", "worker_id": "A2HMEGTAFO0CS8"}], "B07PQDFMWR": [{"asin": "B07PQDFMWR", "instruction": "i'm looking for a hyaluronic acid eye cream for dark circles.", "attributes": ["hyaluronic acid", "dark circles"], "options": [""], "instruction_attributes": ["hyaluronic acid", "dark circles"], "instruction_options": [], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9BBV2U", "worker_id": "A9QRQL9CFJBI7"}], "B095JV88NJ": [{"asin": "B095JV88NJ", "instruction": "i am looking for a c type super fast charger for my samsung galaxy s21 mobile", "attributes": ["fast charging", "usb port"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5HKIWE", "worker_id": "A2COCSUGZV28X"}], "B09SFD5HSG": [{"asin": "B09SFD5HSG", "instruction": "i am looking for a rose gold cartridges & refills for hair salon", "attributes": ["high quality", "hair salon", "hair removal"], "options": ["color: rose gold"], "instruction_attributes": ["hair salon"], "instruction_options": ["rose gold"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QS3OXM", "worker_id": "A9QRQL9CFJBI7"}], "B002GD3FU6": [{"asin": "B002GD3FU6", "instruction": "i am interested in nut free bridal shower candy sticks, it should be low in calories and preferably be wrapped in individually.", "attributes": ["old fashioned", "nut free", "low calorie", "individually wrapped", "gluten free"], "options": ["flavor name: red | strawberry", "size: 24 count (pack of 1)"], "instruction_attributes": ["nut free", "individually wrapped"], "instruction_options": [], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLHHF2K", "worker_id": "A14BSOU2Y5JNT0"}], "B07GCHXPDW": [{"asin": "B07GCHXPDW", "instruction": "i need a 5ft black color high speed usb 3.0 extension cable, a-male to a-female for usb flash drive", "attributes": ["gold plated", "high performance", "plug play", "high speed", "usb port"], "options": ["color: black", "size: 5ft"], "instruction_attributes": ["high speed"], "instruction_options": ["black", "5ft"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQLL133", "worker_id": "A258PTOZ3D2TQR"}], "B089SQZ4S3": [{"asin": "B089SQZ4S3", "instruction": "i need eco friendly curtains that are 52\" by 45\"", "attributes": ["super soft", "eco friendly", "machine washable"], "options": ["size: 1 piece, 52\"x45\""], "instruction_attributes": ["eco friendly"], "instruction_options": ["1 piece, 52\"x45\""], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO7F33H", "worker_id": "A2ECRNQ3X5LEXD"}], "B088K6SFZ1": [{"asin": "B088K6SFZ1", "instruction": "iam looking for a grey-grey tempered glass conversation sets", "attributes": ["easy clean", "coated steel", "tempered glass", "steel frame"], "options": ["color: grey-grey"], "instruction_attributes": ["tempered glass"], "instruction_options": ["grey-grey"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2OS5LG", "worker_id": "A9QRQL9CFJBI7"}], "B009F646EQ": [{"asin": "B009F646EQ", "instruction": "i am looking for a teeth whitening toothpaste.", "attributes": ["teeth whitening", "fresh breath", "sensitive teeth"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3TR2532VI040LV46NXNX77Y3UT8J6G", "worker_id": "A9QRQL9CFJBI7"}], "B08R1VZQ9D": [{"asin": "B08R1VZQ9D", "instruction": "i am looking for 16 inch long synthetic hair extensions for women.", "attributes": ["easy apply", "hair extensions", "synthetic hair"], "options": ["color: dark brown with copper highlights", "size: 16 inch (pack of 1)"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": ["16 inch (pack of 1)"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIXJT9K", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B08R1VZQ9D", "instruction": "i'm interested in one pack of 20-inch hair extensions that are easy to apply.", "attributes": ["easy apply", "hair extensions", "synthetic hair"], "options": ["color: black brown", "size: 20 inch (pack of 1)"], "instruction_attributes": ["easy apply", "hair extensions"], "instruction_options": ["black brown", "20 inch (pack of 1)"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBJAHGM", "worker_id": "AFU00NU09CFXE"}], "B09H3C1PHX": [{"asin": "B09H3C1PHX", "instruction": "i looking for a pepper flavor rich creamy protein serving 36 oz peanut", "attributes": ["rich creamy", "protein serving", "plant based", "non gmo"], "options": ["flavor name: pepper", "size: 36oz"], "instruction_attributes": ["rich creamy", "protein serving"], "instruction_options": ["pepper", "36oz"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQGCCJW", "worker_id": "A3N9ZYQAESNFQH"}], "B09SKCYZ18": [{"asin": "B09SKCYZ18", "instruction": "i am searching for a leather sole sandals. also, choose the size 6 inches.", "attributes": ["ankle strap", "leather sole"], "options": ["size: 6"], "instruction_attributes": [], "instruction_options": ["6"], "assignment_id": "32SCWG5HISEW7674IASH43KF3SUP62", "worker_id": "A9ZM1P6LBW79"}], "B08RJG4QGB": [{"asin": "B08RJG4QGB", "instruction": "help me buy a fog colored shoe with arch support and rubber sole in 12 size.", "attributes": ["arch support", "rubber sole"], "options": ["color: fog", "size: 12"], "instruction_attributes": ["arch support", "rubber sole"], "instruction_options": ["fog", "12"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY868T18D", "worker_id": "A3AYHESLQSDY5T"}], "B07NSCNHSS": [{"asin": "B07NSCNHSS", "instruction": "i need natural hair wig in lighter red color", "attributes": ["natural hair", "hair growth"], "options": ["color: lighter red"], "instruction_attributes": ["natural hair"], "instruction_options": ["lighter red"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4HH512", "worker_id": "ASWFLI3N8X72G"}], "B07L3YMPPK": [{"asin": "B07L3YMPPK", "instruction": "i am looking for a black slip lasting walking shoes.", "attributes": ["long lasting", "slip resistant"], "options": ["color: black", "size: 12 wide"], "instruction_attributes": ["slip resistant"], "instruction_options": ["black"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNLENTP", "worker_id": "A9QRQL9CFJBI7"}], "B08BX7FV5L": [{"asin": "B08BX7FV5L", "instruction": "i'm looking for hd tablets for style with keyboard-case and microsoft the color was black it was comes from long lasting.", "attributes": ["1080p hd", "long lasting", "hands free"], "options": ["color: black", "digital storage capacity: 32 gb", "offer type: lockscreen ad-supported", "style: with keyboard-case & microsoft 365"], "instruction_attributes": ["1080p hd"], "instruction_options": ["black", "with keyboard-case & microsoft 365"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IR0TLH", "worker_id": "A16IQOX0DK14OJ"}], "B09P1K6P4S": [{"asin": "B09P1K6P4S", "instruction": "i would like a men's medium classic fit t-shirt in slate gray.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: slate", "fit type: men", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["slate", "men", "medium"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80EU1Q3", "worker_id": "A1WS884SI0SLO4"}], "B084NVDFXZ": [{"asin": "B084NVDFXZ", "instruction": "i'm looking for a phocus caffeinated sparkling water .", "attributes": ["non dairy", "non gmo", "gluten free"], "options": ["flavor name: yuzu & lime", "size: 11.5 fl oz (pack of 12)"], "instruction_attributes": ["non gmo"], "instruction_options": ["yuzu & lime", "11.5 fl oz (pack of 12)"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTYN7M7", "worker_id": "A1ZGOZQF2VZ0X9"}], "B086MYGX4C": [{"asin": "B086MYGX4C", "instruction": "i'm looking for a cactus cupcake toppers for birthday party", "attributes": ["birthday party", "baby shower"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LMI09B", "worker_id": "A2Y2TURT2VEYZN"}], "B06Y2ML7LG": [{"asin": "B06Y2ML7LG", "instruction": "i'm looking for a rosehip seed oil for face and skin by kate blanc.", "attributes": ["certified organic", "anti aging", "paraben free", "cruelty free", "seed oil", "fine lines", "hair growth"], "options": ["size: 4 fl oz (pack of 1)"], "instruction_attributes": ["certified organic", "seed oil", "hair growth"], "instruction_options": ["4 fl oz (pack of 1)"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O16A24", "worker_id": "A1ZGOZQF2VZ0X9"}], "B082SVDL5K": [{"asin": "B082SVDL5K", "instruction": "i need a easy to use plug and play, power amplifier with bluetooth connectivity.", "attributes": ["power amplifier", "plug play", "easy use"], "options": [""], "instruction_attributes": ["power amplifier", "plug play", "easy use"], "instruction_options": [], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYW563A", "worker_id": "ASWFLI3N8X72G"}], "B094FZ6R3J": [{"asin": "B094FZ6R3J", "instruction": "i'm shopping for memory foam slippers with a rubber sole in a moonlight blue colour.", "attributes": ["moisture wicking", "memory foam", "rubber sole"], "options": ["color: moonlight", "size: 5-6 women | 3-4 men"], "instruction_attributes": ["memory foam", "rubber sole"], "instruction_options": ["moonlight"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IRILTR", "worker_id": "A3EDFA8UQT5GG8"}], "B07R715F4Z": [{"asin": "B07R715F4Z", "instruction": "i want a non slip futon mattress that is in 1.8x2m queen size.", "attributes": ["non slip", "queen size"], "options": ["color: d", "size: 1.8x2m bed"], "instruction_attributes": ["non slip"], "instruction_options": ["1.8x2m bed"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGXUWT1", "worker_id": "A1NF6PELRKACS9"}], "B09HBS38K4": [{"asin": "B09HBS38K4", "instruction": "i am looking for black color light weight long sleeve sweatshirts", "attributes": ["daily casual", "long sleeve", "teen girls"], "options": ["color: black-1", "size: x-large"], "instruction_attributes": [], "instruction_options": ["black-1"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSKSB8E", "worker_id": "A16M39T60N60NO"}, {"asin": "B09HBS38K4", "instruction": "i need to buy a long sleeve sweatshirt in red. look for a size small.", "attributes": ["daily casual", "long sleeve", "teen girls"], "options": ["color: red", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["red", "small"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZZURNR", "worker_id": "AR9AU5FY1S3RO"}], "B09Q5YQXL2": [{"asin": "B09Q5YQXL2", "instruction": "i would like a blue nasal spray that is long lasting.", "attributes": ["long lasting", "fine mist"], "options": ["color: blue"], "instruction_attributes": ["long lasting"], "instruction_options": ["blue"], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1MAJTGG", "worker_id": "A1WS884SI0SLO4"}], "B07Z8G98LT": [{"asin": "B07Z8G98LT", "instruction": "i want x- large tall machine wash short sleeve t- shirt for men color:ash plum 554/black", "attributes": ["quick drying", "machine wash", "short sleeve"], "options": ["color: ash plum (554) | black", "size: x-large tall"], "instruction_attributes": ["machine wash", "short sleeve"], "instruction_options": ["ash plum (554) | black", "x-large tall"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCWP64J", "worker_id": "A3N9ZYQAESNFQH"}], "B09ND52DTH": [{"asin": "B09ND52DTH", "instruction": "i am looking for a black winter warm fleece lined hiking boots", "attributes": ["winter warm", "fleece lined", "non slip", "rubber sole"], "options": ["color: black", "size: 6.5"], "instruction_attributes": ["winter warm", "fleece lined"], "instruction_options": ["black"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTZO7MA", "worker_id": "A9QRQL9CFJBI7"}], "B078N4Q4FB": [{"asin": "B078N4Q4FB", "instruction": "i am looking for a twin xl twin size mattresses.", "attributes": ["ready use", "fully assembled", "twin size", "assembly required", "box spring"], "options": ["color: comfort rest collection", "size: twin xl size"], "instruction_attributes": ["twin size"], "instruction_options": ["twin xl size"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X6F3YO", "worker_id": "A9QRQL9CFJBI7"}], "B08R3G2KH7": [{"asin": "B08R3G2KH7", "instruction": "i am searching for a 4g lte signal booster. it should be easy to install.", "attributes": ["easy install", "4g lte"], "options": [""], "instruction_attributes": ["easy install", "4g lte"], "instruction_options": [], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYW5367", "worker_id": "A9ZM1P6LBW79"}], "B07HMDVMFP": [{"asin": "B07HMDVMFP", "instruction": "i am looking for a easy to use and long lasting audio recorded it should be voice activated and have a date and time stamp option.", "attributes": ["long lasting", "easy use"], "options": [""], "instruction_attributes": ["long lasting", "easy use"], "instruction_options": [], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCTH5Q5", "worker_id": "A14BSOU2Y5JNT0"}], "B09NFG5266": [{"asin": "B09NFG5266", "instruction": "i have an order for an android tablet 8 inches, 2gb ram, 32gb rom, quad core and in green color. i await your return.", "attributes": ["high performance", "quad core"], "options": ["color: green"], "instruction_attributes": ["quad core"], "instruction_options": ["green"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNSBFJF", "worker_id": "A15IJ20C3R4HUO"}], "B09SZJJT9X": [{"asin": "B09SZJJT9X", "instruction": "i am looking for home theater projector with high resolution and 1080p hd", "attributes": ["1080p hd", "high resolution"], "options": [""], "instruction_attributes": ["1080p hd", "high resolution"], "instruction_options": [], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I9QFDF", "worker_id": "A10OGH5CQBXL5N"}], "B09DSQ2LYX": [{"asin": "B09DSQ2LYX", "instruction": "i need a pink desk with lamp. it should be height adjustable and have storage space.", "attributes": ["height adjustable", "storage space"], "options": ["color: pink with lamp"], "instruction_attributes": ["height adjustable", "storage space"], "instruction_options": ["pink with lamp"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQBFN0D", "worker_id": "A1NF6PELRKACS9"}], "B08S48K2RB": [{"asin": "B08S48K2RB", "instruction": "i am looking for hdmi cables high speed in 50 feet", "attributes": ["high speed", "ultra hd", "blu ray"], "options": ["size: 50 feet"], "instruction_attributes": ["high speed"], "instruction_options": ["50 feet"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRTUBZE", "worker_id": "A2MSIFDLOHI1UT"}], "B09GVJ6N38": [{"asin": "B09GVJ6N38", "instruction": "i'm looking for plug play for camera electronics to the video and it will buy it.", "attributes": ["hands free", "plug play"], "options": ["color: m100s 4core 1+16g"], "instruction_attributes": ["plug play"], "instruction_options": ["m100s 4core 1+16g"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFM5E9M", "worker_id": "A16IQOX0DK14OJ"}], "B09LV71VNN": [{"asin": "B09LV71VNN", "instruction": "i'm looking for dinning room for kitchen need to buy it.", "attributes": ["tempered glass", "dining room"], "options": ["color: scenery-landscape-forest-tree--(28)", "size: (width\uff0923.6in x (length)23.6in x 2pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["scenery-landscape-forest-tree--(28)"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEV0UU1", "worker_id": "A16IQOX0DK14OJ"}], "B00T2JY6MS": [{"asin": "B00T2JY6MS", "instruction": "i'm looking for electric kick scooter a water resistant.", "attributes": ["output protection", "water resistant"], "options": [""], "instruction_attributes": ["output protection", "water resistant"], "instruction_options": [], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V47U29", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B00T2JY6MS", "instruction": "i want a water proof upbright ac/dc adapter compatible with segway ninebot.", "attributes": ["output protection", "water resistant"], "options": [""], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3V66P1", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B00T2JY6MS", "instruction": "i want a water resistant upbright ac/dc adapter compatible with segway ninebot.", "attributes": ["output protection", "water resistant"], "options": [""], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JYUGE7", "worker_id": "A2RBF3IIJP15IH"}], "B0861MPK17": [{"asin": "B0861MPK17", "instruction": "i'm looking for a remote control replacement for a blu-ray player that's compatible with bdp-s3700.", "attributes": ["blu ray", "aaa batteries"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTP8QOJ", "worker_id": "A3HFKFJ5UDWAMC"}, {"asin": "B0861MPK17", "instruction": "i am looking for a remote control for my blu ray player.", "attributes": ["blu ray", "aaa batteries"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLUBRDQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07B6FFJMG": [{"asin": "B07B6FFJMG", "instruction": "i want to buy some cashew almond flavored chocolate covered gluten-free bars.", "attributes": ["chocolate covered", "gluten free", "non gmo"], "options": ["flavor name: cashew almond"], "instruction_attributes": ["chocolate covered", "gluten free"], "instruction_options": ["cashew almond"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU97MC8", "worker_id": "A2YNPKYEFDZ6C9"}], "B07XSHZMMK": [{"asin": "B07XSHZMMK", "instruction": "find me a 2pcs of human hair with high quality in brown black color", "attributes": ["high quality", "hair loss"], "options": ["color: brown black", "size: 2pcs human hair"], "instruction_attributes": ["high quality"], "instruction_options": ["brown black", "2pcs human hair"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KP6LJ1", "worker_id": "A2Y2TURT2VEYZN"}], "B08HM9Y6V7": [{"asin": "B08HM9Y6V7", "instruction": "i'm looking for gluten free it has contains high protein.", "attributes": ["bpa free", "kosher certified", "plant based", "non gmo", "ready eat", "gluten free"], "options": ["number of items: 9"], "instruction_attributes": ["gluten free"], "instruction_options": ["9"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPIXVQI", "worker_id": "A16IQOX0DK14OJ"}], "B002U58PRI": [{"asin": "B002U58PRI", "instruction": "i am looking for a kiwi strawberry flavored sports drink with zero sugar.", "attributes": ["source vitamin", "zero sugar"], "options": ["flavor name: kiwi strawberry"], "instruction_attributes": ["zero sugar"], "instruction_options": ["kiwi strawberry"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R0S7WP", "worker_id": "A1EREKSZAA9V7B"}], "B08539BRBX": [{"asin": "B08539BRBX", "instruction": "find me a plant based body scrub to remove dead skin and which contains argon oil in toasted coconut coffee scent.", "attributes": ["plant based", "argan oil", "dead skin"], "options": ["scent: toasted coconut coffee"], "instruction_attributes": ["plant based", "argan oil", "dead skin"], "instruction_options": ["toasted coconut coffee"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FJ63DF", "worker_id": "A3AYHESLQSDY5T"}], "B01HIRQ93Y": [{"asin": "B01HIRQ93Y", "instruction": "i am searching for travel size quality fragrance oil for women, 0.34 ounce", "attributes": ["travel size", "long lasting"], "options": ["scent name: creed love in black impression", "size: 0.34 ounce"], "instruction_attributes": ["travel size"], "instruction_options": ["0.34 ounce"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R8PR0Q", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01HIRQ93Y", "instruction": "i am looking for a travel size of quality fragrance oils in the scent named creed vanisia impression.", "attributes": ["travel size", "long lasting"], "options": ["scent name: creed vanisia impression", "size: 0.34 ounce"], "instruction_attributes": ["travel size"], "instruction_options": ["creed vanisia impression"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY86AS18G", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B01HIRQ93Y", "instruction": "i am looking for long lasting women's fragrance oil of 0.34 ounce size.", "attributes": ["travel size", "long lasting"], "options": ["scent name: mk for women impression", "size: 0.34 ounce"], "instruction_attributes": ["long lasting"], "instruction_options": ["0.34 ounce"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPP7YSA", "worker_id": "A1Q8PPQQCWGY0D"}], "B075LRR7YG": [{"asin": "B075LRR7YG", "instruction": "i'm looking for a waterloo naturally flavored sparkling water.", "attributes": ["bpa free", "non gmo", "zero sugar"], "options": ["flavor name: original | black cherry | lemon-lime"], "instruction_attributes": ["zero sugar"], "instruction_options": ["original | black cherry | lemon-lime"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22K6W89", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08ZHTWZF3": [{"asin": "B08ZHTWZF3", "instruction": "i'm looking for king sized bed pillows that contains pink color.", "attributes": ["queen size", "king size"], "options": ["color: pink", "size: 18 x 18-inch"], "instruction_attributes": ["king size"], "instruction_options": ["pink"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCJ5PIC", "worker_id": "A16IQOX0DK14OJ"}], "B09PG91G27": [{"asin": "B09PG91G27", "instruction": "i'm looking for home decor products for living room and it can gives nice look.", "attributes": ["exquisite workmanship", "living room"], "options": ["size: 52x90inx2"], "instruction_attributes": ["living room"], "instruction_options": ["52x90inx2"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q50KDF", "worker_id": "A16IQOX0DK14OJ"}], "B08RRZ2F57": [{"asin": "B08RRZ2F57", "instruction": "i'm looking for light weight headset it was outside of noise cancelling.", "attributes": ["noise cancelling", "light weight"], "options": ["color: dual-usb c", "style: uc optimized"], "instruction_attributes": ["noise cancelling", "light weight"], "instruction_options": ["dual-usb c"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQHVRJX", "worker_id": "A16IQOX0DK14OJ"}], "B096DMJDDW": [{"asin": "B096DMJDDW", "instruction": "i'm looking for birthday cakes with superhero theme that is perfect for kids' birthday party.", "attributes": ["birthday cake", "party supplies", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["birthday cake", "birthday party"], "instruction_options": [], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGLBW25", "worker_id": "A1HMZJ59OPLD1P"}], "B08YMT7L52": [{"asin": "B08YMT7L52", "instruction": "i'm looking for cosmetic high quality accessories and it will use for cosmetic bags.", "attributes": ["easy use", "high quality", "nail art"], "options": ["color: cool sunglass cat"], "instruction_attributes": ["easy use", "high quality"], "instruction_options": ["cool sunglass cat"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q32GWS", "worker_id": "A16IQOX0DK14OJ"}], "B099N4P4D2": [{"asin": "B099N4P4D2", "instruction": "i would like to buy a wallet case for my samsung s21 phone. i would like it to support wireless charging and in the color brown", "attributes": ["hands free", "easy install", "wireless charging"], "options": ["color: brown"], "instruction_attributes": ["wireless charging"], "instruction_options": ["brown"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R5NTYQ", "worker_id": "AHXHM1PQTRWIQ"}], "B003MQR9F8": [{"asin": "B003MQR9F8", "instruction": "i'm looking for grocery for fat free.", "attributes": ["fat free", "low fat"], "options": [""], "instruction_attributes": ["fat free", "low fat"], "instruction_options": [], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC4RKUJ", "worker_id": "A16IQOX0DK14OJ"}], "B093T5WWL8": [{"asin": "B093T5WWL8", "instruction": "i want a laundry bag for my blouse and hosiery.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQEKSQR", "worker_id": "A1NF6PELRKACS9"}], "B07535FBKX": [{"asin": "B07535FBKX", "instruction": "a men's closed toe rubber sole sandle size:11", "attributes": ["closed toe", "rubber sole"], "options": ["size: 11"], "instruction_attributes": ["closed toe", "rubber sole"], "instruction_options": ["11"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTEN5DV", "worker_id": "A3N9ZYQAESNFQH"}], "B093GGRKHS": [{"asin": "B093GGRKHS", "instruction": "i am looking for skin care in hyaluronic acid", "attributes": ["anti aging", "hyaluronic acid", "fine lines", "dead skin"], "options": [""], "instruction_attributes": ["hyaluronic acid"], "instruction_options": [], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4BXQRV", "worker_id": "A2MSIFDLOHI1UT"}], "B0742KPKZD": [{"asin": "B0742KPKZD", "instruction": "i looking flavor syrups french vanilla flavour bpa free non gmo gluten free size 33.8 fl oz", "attributes": ["bpa free", "non gmo", "artificial ingredients", "gluten free", "dairy free", "natural flavors", "artificial colors", "artificial flavors"], "options": ["flavor name: french vanilla", "size: 33.8 fl oz (pack of 1)"], "instruction_attributes": ["bpa free", "non gmo", "gluten free"], "instruction_options": ["french vanilla", "33.8 fl oz (pack of 1)"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95S7QXG", "worker_id": "A3N9ZYQAESNFQH"}], "B01N4MCED7": [{"asin": "B01N4MCED7", "instruction": "i'm looking for a hot sauce gift set with the flavor lazy ass.", "attributes": ["gift set", "perfect gift"], "options": ["flavor name: lazy ass"], "instruction_attributes": ["gift set"], "instruction_options": ["lazy ass"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQGAJR2", "worker_id": "A2CJFO19NY4T5R"}], "B07MJVB31T": [{"asin": "B07MJVB31T", "instruction": "i am looking for a perfect valentine gifting cake containing natural holiday flavor ingredients in 48 count size.", "attributes": ["natural ingredients", "valentine day", "great gift", "perfect gift"], "options": ["flavor name: holiday flavors", "size: 48 count"], "instruction_attributes": ["natural ingredients", "valentine day", "perfect gift"], "instruction_options": ["holiday flavors"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OVKM3Y", "worker_id": "A3AYHESLQSDY5T"}], "B07FSGV3V2": [{"asin": "B07FSGV3V2", "instruction": "i'm looking for buy a binocular for bird watching.", "attributes": ["high power", "easy carry", "bird watching"], "options": ["size: 12x50mm"], "instruction_attributes": ["easy carry", "bird watching"], "instruction_options": ["12x50mm"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMQWW96", "worker_id": "A16IQOX0DK14OJ"}], "B09BD7DJ55": [{"asin": "B09BD7DJ55", "instruction": "i need super king plus 120x120 (3pc duvet set) silver color silk decorative super soft pillow covers", "attributes": ["super soft", "exquisite workmanship"], "options": ["color: silver", "size: super king plus 120x120 (3pc duvet set)"], "instruction_attributes": ["super soft"], "instruction_options": ["silver", "super king plus 120x120 (3pc duvet set)"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LMF098", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B09BD7DJ55", "instruction": "i want silver and super soft european pillow shams.", "attributes": ["super soft", "exquisite workmanship"], "options": ["color: silver", "size: queen | full 20x26 (2pcs pillow shams)"], "instruction_attributes": ["super soft"], "instruction_options": ["silver"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1VU2H3", "worker_id": "A2RBF3IIJP15IH"}], "B09DVFZYKL": [{"asin": "B09DVFZYKL", "instruction": "i want anti slip tennis shoes with rubber soles in size 13. it is for a man.", "attributes": ["anti slip", "rubber sole"], "options": ["color: rasta space galaxy w", "size: 15.5 women | 13 men"], "instruction_attributes": ["anti slip", "rubber sole"], "instruction_options": ["15.5 women | 13 men"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HYZ1DQ", "worker_id": "A1NF6PELRKACS9"}], "B002F3QYZA": [{"asin": "B002F3QYZA", "instruction": "i am looking for oil free toner", "attributes": ["oil free", "green tea"], "options": [""], "instruction_attributes": ["oil free"], "instruction_options": [], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9X9X51", "worker_id": "A2MSIFDLOHI1UT"}], "B01HHRRDTO": [{"asin": "B01HHRRDTO", "instruction": "i am looking for multi purpose for face in charcoal", "attributes": ["cruelty free", "plant based", "animal testing", "dry skin"], "options": ["scent: charcoal", "size: 1.15 pound"], "instruction_attributes": ["dry skin"], "instruction_options": ["charcoal"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OJBRTR", "worker_id": "A2MSIFDLOHI1UT"}], "B098SMFB4Y": [{"asin": "B098SMFB4Y", "instruction": "i need a pair of black eyebrow trimmers.", "attributes": ["easy carry", "easy clean", "hair removal"], "options": ["color: black"], "instruction_attributes": ["hair removal"], "instruction_options": ["black"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8HEC4T", "worker_id": "A19317A3X87NVM"}], "B07HB8F4XF": [{"asin": "B07HB8F4XF", "instruction": "i'm looking for a fruit snacks that is free from gluten and fat, also made of real fruits.", "attributes": ["fat free", "gluten free", "real fruit"], "options": [""], "instruction_attributes": ["fat free", "gluten free", "real fruit"], "instruction_options": [], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3DENQ8", "worker_id": "AR0VJ5XRG16UJ"}], "B07DFSHP3J": [{"asin": "B07DFSHP3J", "instruction": "i am looking for relaxed fit women clogs of size 13.", "attributes": ["ethylene vinyl", "vinyl acetate", "relaxed fit"], "options": ["color: barely pink | white 1", "size: 13 women | 13 men"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["13 women | 13 men"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9C6V2R", "worker_id": "A3FG5PQHG5AH3Y"}], "B09984KFL2": [{"asin": "B09984KFL2", "instruction": "i want to buy a bundle of peanut butter cups for valentine day.", "attributes": ["valentine day", "baby shower"], "options": [""], "instruction_attributes": ["valentine day"], "instruction_options": [], "assignment_id": "352YTHGRO6NQF252G9RXYWYALA24HF", "worker_id": "A1NF6PELRKACS9"}], "B09Q8XK81W": [{"asin": "B09Q8XK81W", "instruction": "i need butt lifting yoga pants that also has a high waist. pick a blue one.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: blue", "size: x-large"], "instruction_attributes": ["butt lifting", "high waist"], "instruction_options": ["blue"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI3A4DBZ", "worker_id": "A1NF6PELRKACS9"}], "B07J9K68QK": [{"asin": "B07J9K68QK", "instruction": "i need some baby food that is non gmo and has no artificial flavors.", "attributes": ["non gmo", "artificial flavors", "quality ingredients"], "options": [""], "instruction_attributes": ["non gmo", "artificial flavors"], "instruction_options": [], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO5IC21", "worker_id": "A1NF6PELRKACS9"}], "B09LC171P8": [{"asin": "B09LC171P8", "instruction": "i'm looking for wireless bluetooth and it will easy to use.", "attributes": ["hands free", "easy use", "high definition", "wireless bluetooth"], "options": [""], "instruction_attributes": ["easy use", "wireless bluetooth"], "instruction_options": [], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9BX2VN", "worker_id": "A16IQOX0DK14OJ"}], "B07QYGZ5WC": [{"asin": "B07QYGZ5WC", "instruction": "i looking heathers cotton machine wash men's classic fit x-large heater grey color t-shirt", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: heather grey", "fit type: men", "size: x-large"], "instruction_attributes": ["machine wash", "heathers cotton", "classic fit"], "instruction_options": ["heather grey", "men", "x-large"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746XUTB2", "worker_id": "A3N9ZYQAESNFQH"}], "B07FKHP9HQ": [{"asin": "B07FKHP9HQ", "instruction": "i am looking for 4g lte android phone. please choose silver color.", "attributes": ["easy use", "4g lte"], "options": ["color: silver"], "instruction_attributes": ["4g lte"], "instruction_options": ["silver"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTOSV49", "worker_id": "A3FG5PQHG5AH3Y"}], "B081FBJ25N": [{"asin": "B081FBJ25N", "instruction": "i am looking for a tempered glass of basic cases for iphone 11 pro", "attributes": ["heavy duty", "easy use", "tempered glass"], "options": ["color: american flag eagle", "size: iphone 11 pro"], "instruction_attributes": ["tempered glass"], "instruction_options": ["iphone 11 pro"], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q69IIU", "worker_id": "A9QRQL9CFJBI7"}], "B07D3PD31P": [{"asin": "B07D3PD31P", "instruction": "help me purchase black wireless headphones with high definition audio and quality stereo sound.", "attributes": ["hands free", "high definition", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["high definition", "stereo sound"], "instruction_options": ["black"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEWKUUN", "worker_id": "A1HMZJ59OPLD1P"}], "B07BXWR3NJ": [{"asin": "B07BXWR3NJ", "instruction": "i'm looking for a light weight backdrop with high resolution image for digital photography. also, choose 7*5 ft one.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 7x5ft"], "instruction_attributes": ["light weight", "high resolution", "digital photography"], "instruction_options": ["7x5ft"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907RLAUG", "worker_id": "AR0VJ5XRG16UJ"}], "B08VJJBX1L": [{"asin": "B08VJJBX1L", "instruction": "i need a valentine's day candy box", "attributes": ["individually wrapped", "valentine day"], "options": [""], "instruction_attributes": ["valentine day"], "instruction_options": [], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGKIW2A", "worker_id": "A258PTOZ3D2TQR"}], "B07K7HZ5BD": [{"asin": "B07K7HZ5BD", "instruction": "find me a makeup case for travel, need to be easy to carry and choose the marble black color", "attributes": ["easy carry", "nail polish", "nail art"], "options": ["color: marble black"], "instruction_attributes": ["easy carry"], "instruction_options": ["marble black"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34MQ14Z", "worker_id": "A2Y2TURT2VEYZN"}], "B07L581MNW": [{"asin": "B07L581MNW", "instruction": "i want high quality hair extensions that is 26 inches long.", "attributes": ["high quality", "hair extensions"], "options": ["color: 86613 | short ponytail", "size: 26 inch"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["26 inch"], "assignment_id": "3HSYG7LRBU82VUVD7MHAI53YAEGKKB", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07L581MNW", "instruction": "i am looking for sandy blonde extensions for my hair that are 24 inches long.", "attributes": ["high quality", "hair extensions"], "options": ["color: sandy blonde & bleach blonde | curly", "size: 24 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["sandy blonde & bleach blonde | curly", "24 inch (pack of 1)"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCVF4QO", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BS13S6M": [{"asin": "B08BS13S6M", "instruction": "women's slip on sneakers that size 5.5", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: las meninas", "size: 5.5"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["5.5"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7Y5Y6F", "worker_id": "A10OGH5CQBXL5N"}], "B09MSL36VK": [{"asin": "B09MSL36VK", "instruction": "i am looking for high definition and clear tempered glass for iphone.", "attributes": ["high definition", "glass screen", "tempered glass"], "options": ["color: clear", "size: case + protector"], "instruction_attributes": ["high definition", "tempered glass"], "instruction_options": ["clear"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X024234N", "worker_id": "A3FG5PQHG5AH3Y"}], "B07ZTTZP5N": [{"asin": "B07ZTTZP5N", "instruction": "i am looking for a low sugar, non gmo seaweed snacks of 1.13 ounce (pack of 6) size.", "attributes": ["low sugar", "non gmo", "0g trans"], "options": ["flavor: variety", "size: 1.13 ounce (pack of 6)"], "instruction_attributes": ["low sugar", "non gmo"], "instruction_options": ["1.13 ounce (pack of 6)"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK00UIG", "worker_id": "A9QRQL9CFJBI7"}], "B018GXGSBW": [{"asin": "B018GXGSBW", "instruction": "i am looking for long lasting high definition dark cocoa concealer for dark circles coverage.", "attributes": ["long lasting", "dark circles"], "options": ["color: dark cocoa"], "instruction_attributes": ["long lasting", "dark circles"], "instruction_options": ["dark cocoa"], "assignment_id": "31JLPPHS254FPN8LK8H48035JXT3OS", "worker_id": "A1V2JTEEBCXR20"}], "B08SHLLTVH": [{"asin": "B08SHLLTVH", "instruction": "i'm looking for steel toes shoes for construction working the color was black.", "attributes": ["non slip", "steel toe", "rubber sole"], "options": ["color: 616black", "size: 6.5 women | 5 men"], "instruction_attributes": ["non slip", "steel toe"], "instruction_options": ["616black"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L85ER3", "worker_id": "A16IQOX0DK14OJ"}], "B07ZG4WNPM": [{"asin": "B07ZG4WNPM", "instruction": "i'm looking for a perfect gifts that contains high protein preferably nuts . also choose a pack of 4 weights 7 ounce with savory flavored one.", "attributes": ["high protein", "perfect gift"], "options": ["flavor name: savory", "size: 7 ounce (pack of 4)"], "instruction_attributes": ["high protein", "perfect gift"], "instruction_options": ["savory", "7 ounce (pack of 4)"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AKZSTJ", "worker_id": "AR0VJ5XRG16UJ"}], "B004HO58L6": [{"asin": "B004HO58L6", "instruction": "i'm looking for finepix 14 mp digital camera with optical zoom len, also purple one.", "attributes": ["high speed", "optical zoom"], "options": ["color: purple"], "instruction_attributes": ["optical zoom"], "instruction_options": ["purple"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB2JY5M", "worker_id": "A258PTOZ3D2TQR"}], "B08MJ86NTG": [{"asin": "B08MJ86NTG", "instruction": "i'm looking for a medium floral long sleeve shirt in purple", "attributes": ["drawstring closure", "relaxed fit", "polyester spandex", "long sleeve"], "options": ["color: b purple", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["b purple", "medium"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AREBWC", "worker_id": "A2Y2TURT2VEYZN"}], "B0861CRGQV": [{"asin": "B0861CRGQV", "instruction": "i am looking for individually wrapped cakes for a birthday party.", "attributes": ["individually wrapped", "birthday party"], "options": [""], "instruction_attributes": ["individually wrapped", "birthday party"], "instruction_options": [], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZDDKL4", "worker_id": "A1NF6PELRKACS9"}], "B07YJ9Z8Z5": [{"asin": "B07YJ9Z8Z5", "instruction": "i am looking for a gluten free musk melon drink.", "attributes": ["low sodium", "fat free", "gluten free"], "options": ["flavor name: musk melon", "size: 16.9 fl oz (pack of 20)"], "instruction_attributes": ["gluten free"], "instruction_options": ["musk melon"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU4821WYPI", "worker_id": "A1EREKSZAA9V7B"}], "B09PNL7JRN": [{"asin": "B09PNL7JRN", "instruction": "i am looking for ladies large size black06 colored jeans with straight leg fit.", "attributes": ["wide leg", "low rise", "butt lifting", "straight leg", "fleece lined", "slim fit", "high waist", "long sleeve", "short sleeve", "daily wear"], "options": ["color: black06", "size: large"], "instruction_attributes": ["straight leg"], "instruction_options": ["black06", "large"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUN9PI85", "worker_id": "AJDQGOTMB2D80"}], "B08N9QCM2F": [{"asin": "B08N9QCM2F", "instruction": "i am looking for a leakproof travel bottle . and i choose the one with keychain", "attributes": ["easy carry", "travel bottles"], "options": [""], "instruction_attributes": ["travel bottles"], "instruction_options": [], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8XKZPY", "worker_id": "A2COCSUGZV28X"}], "B08NSYTYNX": [{"asin": "B08NSYTYNX", "instruction": "order for me cupcake toppers decorations for celebrating a baby shower.", "attributes": ["party supplies", "baby shower"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVNVXLB", "worker_id": "AHU9OLV0YKIIW"}], "B07PLPRNMS": [{"asin": "B07PLPRNMS", "instruction": "i am looking for a 10.5 size non slip flip-flops", "attributes": ["non slip", "rubber sole"], "options": ["color: silver4", "size: 10.5"], "instruction_attributes": ["non slip"], "instruction_options": ["10.5"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9HH2E6", "worker_id": "A9QRQL9CFJBI7"}], "B09DCN6S39": [{"asin": "B09DCN6S39", "instruction": "metal pendant light that is height adjustable also choose in metal", "attributes": ["height adjustable", "light fixture", "pendant light", "dining room", "living room"], "options": ["size: metal"], "instruction_attributes": ["height adjustable", "pendant light"], "instruction_options": ["metal"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCU4Q5F", "worker_id": "A10OGH5CQBXL5N"}], "B082XVWW57": [{"asin": "B082XVWW57", "instruction": "i'm looking for women's clothing for classic fit and needle fit.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: men", "size: 3t"], "instruction_attributes": ["needle sleeve", "classic fit"], "instruction_options": ["white"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BODBONI", "worker_id": "A16IQOX0DK14OJ"}], "B09T1MR8ZZ": [{"asin": "B09T1MR8ZZ", "instruction": "i want sweet and salty mini popcorn balls that are nut and gluten free.", "attributes": ["nut free", "gluten free", "resealable bag"], "options": [""], "instruction_attributes": ["nut free", "gluten free"], "instruction_options": [], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRNV9FA", "worker_id": "A345TDMHP3DQ3G"}], "B08HQXX3C4": [{"asin": "B08HQXX3C4", "instruction": "i am looking for silver cupcake toppers for baby shower birthday party.", "attributes": ["birthday party", "party supplies", "baby shower"], "options": ["color: silver", "size: 7x7x3cm"], "instruction_attributes": ["birthday party", "baby shower"], "instruction_options": ["silver"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNWE8H6", "worker_id": "A3FG5PQHG5AH3Y"}], "B091DLJ4B5": [{"asin": "B091DLJ4B5", "instruction": "i'm looking for a meals with zero added sugar and also free from gluten and bpa. also, choose applesauce flavored one.", "attributes": ["bpa free", "non gmo", "gluten free", "zero sugar"], "options": ["flavor: applesauce"], "instruction_attributes": ["bpa free", "gluten free", "zero sugar"], "instruction_options": ["applesauce"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E21F35C", "worker_id": "AR0VJ5XRG16UJ"}], "B00BOEEX04": [{"asin": "B00BOEEX04", "instruction": "i am looking for permanent hair color with color 5.12", "attributes": ["easy use", "rose gold", "hair dye", "permanent hair", "natural hair"], "options": ["color: 5.12"], "instruction_attributes": ["permanent hair"], "instruction_options": ["5.12"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3YYG5J5", "worker_id": "A16M39T60N60NO"}], "B08JKFMQD9": [{"asin": "B08JKFMQD9", "instruction": "i would like to order a pink harajuku 3x-large unisex printed hoodie that is made of polyester cotton.", "attributes": ["hand wash", "quality polyester", "polyester cotton"], "options": ["color: pink", "size: 3x-large"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["pink", "3x-large"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66QNFZZ", "worker_id": "AHU9OLV0YKIIW"}], "B019IOEQQ2": [{"asin": "B019IOEQQ2", "instruction": "i am looking for high speed hdmi cable male to male .", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 1 pack", "size: 3 feet (5-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["hdmi male to male"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJN2GDP", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B019IOEQQ2", "instruction": "i am looking for a 5 pack of 12 foot gold plated hdmi cables.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 5 pack", "size: 12 feet (3 pack)", "style: hdmi male to male"], "instruction_attributes": ["gold plated"], "instruction_options": ["5 pack", "12 feet (3 pack)"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIQB841", "worker_id": "A1EREKSZAA9V7B"}], "B001B2N3QE": [{"asin": "B001B2N3QE", "instruction": "i would like a old version of a 3 count ultra light sun blonde hair dye.", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 03 ultra light sun blonde", "size: 3 count (pack of 1)", "style: old version"], "instruction_attributes": ["hair dye"], "instruction_options": ["03 ultra light sun blonde", "3 count (pack of 1)", "old version"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7W4CUM", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B001B2N3QE", "instruction": "i am looking for a long lasting permanent hair dye in light auburn color.", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 053 light auburn", "size: 3 count (pack of 1)", "style: new version"], "instruction_attributes": ["long lasting", "hair dye", "permanent hair"], "instruction_options": ["053 light auburn"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN05TPH", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B001B2N3QE", "instruction": "i'm looking for a permanent hair dye with keratin in the brand of revlon.", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 073 champagne blonde", "size: pack of 1", "style: old version"], "instruction_attributes": ["hair dye", "permanent hair"], "instruction_options": ["pack of 1"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIPJ85P", "worker_id": "A21IUUHBSEVB56"}], "B0816WX3B7": [{"asin": "B0816WX3B7", "instruction": "i am looking for an intel quad core i5 tower pc with windows 10 pro.", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["core i5", "intel core", "quad core"], "instruction_options": [], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FFNELI", "worker_id": "A1EREKSZAA9V7B"}], "B0824CD7K7": [{"asin": "B0824CD7K7", "instruction": "i want to find pink floral pillow covers for the pillows in my living room that are 22 inches by 22 inches.", "attributes": ["double sided", "machine washable", "living room"], "options": ["color: flower pink", "size: 22 x 22 inches"], "instruction_attributes": ["living room"], "instruction_options": ["flower pink", "22 x 22 inches"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8IPC46", "worker_id": "A345TDMHP3DQ3G"}], "B07TGDQLVJ": [{"asin": "B07TGDQLVJ", "instruction": "i am looking for memory foam canvas slip in a black color size 14", "attributes": ["memory foam", "classic fit"], "options": ["color: black", "size: 14"], "instruction_attributes": ["memory foam"], "instruction_options": ["black", "14"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXY5O4G", "worker_id": "A16M39T60N60NO"}], "B07YY2ZCFF": [{"asin": "B07YY2ZCFF", "instruction": "i am looking for cupcake toppers for baby shower birthday party.", "attributes": ["cupcake picks", "party supplies", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["baby shower", "birthday party"], "instruction_options": [], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66PCZF6", "worker_id": "A3FG5PQHG5AH3Y"}], "B00J1NO5CG": [{"asin": "B00J1NO5CG", "instruction": "i'm looking for a keto friendly sugar free chocolate syrup which should be fat and gluten free. also, choose a pack of 1 contains 25.4 fl oz with sugar free s'mores one.", "attributes": ["sugar free", "keto friendly", "fat free", "gluten free", "zero sugar"], "options": ["flavor name: sugar free s'mores", "size: 25.4 fl oz (pack of 1)"], "instruction_attributes": ["sugar free", "keto friendly", "fat free", "gluten free"], "instruction_options": ["sugar free s'mores", "25.4 fl oz (pack of 1)"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK46BA6O", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B00J1NO5CG", "instruction": "i'm looking for a pack of 4 in 25.4 ounce sugar and gluten free chocolate syrup", "attributes": ["sugar free", "keto friendly", "fat free", "gluten free", "zero sugar"], "options": ["flavor name: sugar free irish cream", "size: 25.4 ounce (pack of 4)"], "instruction_attributes": ["sugar free", "gluten free"], "instruction_options": ["sugar free irish cream", "25.4 ounce (pack of 4)"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCL4LBP", "worker_id": "A2Y2TURT2VEYZN"}], "B0823M3GTC": [{"asin": "B0823M3GTC", "instruction": "i would like to buy a pink makeup brush that is high quality and easy to clean and carry.", "attributes": ["easy carry", "easy clean", "high quality", "storage case", "sensitive skin"], "options": ["color: 1-pink"], "instruction_attributes": ["easy carry", "easy clean", "high quality"], "instruction_options": ["1-pink"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A21B7THS", "worker_id": "A114NK7T5673GK"}, {"asin": "B0823M3GTC", "instruction": "i would like a crimson brush set that is high quality.", "attributes": ["easy carry", "easy clean", "high quality", "storage case", "sensitive skin"], "options": ["color: 2-crimson"], "instruction_attributes": ["high quality"], "instruction_options": ["2-crimson"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49K9DT0", "worker_id": "A1WS884SI0SLO4"}], "B076X189T6": [{"asin": "B076X189T6", "instruction": "i'm looking for kitchen curtains it easy to use for machinable washes.", "attributes": ["machine washable", "printing technology"], "options": ["color: blue and dark orange", "size: 108\" x 96\""], "instruction_attributes": ["machine washable", "printing technology"], "instruction_options": ["blue and dark orange"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTIF4DC", "worker_id": "A16IQOX0DK14OJ"}], "B00JL248RY": [{"asin": "B00JL248RY", "instruction": "i'm looking for home audio that contain batteries included. it was blue in color.", "attributes": ["batteries included", "usb port"], "options": ["color: blue"], "instruction_attributes": ["batteries included"], "instruction_options": ["blue"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCXS46M", "worker_id": "A16IQOX0DK14OJ"}], "B000LWCR26": [{"asin": "B000LWCR26", "instruction": "i am looking for caffeine free organic tea flavored chocolate rooibos", "attributes": ["caffeine free", "individually wrapped"], "options": ["flavor name: chocolate rooibos", "size: 16 count (pack of 3)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["chocolate rooibos"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKER88W", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B000LWCR26", "instruction": "i would like a a box of 18 bags of caffeine free green rooibos herbal tea", "attributes": ["caffeine free", "individually wrapped"], "options": ["flavor name: green rooibos", "size: 18 count (pack of 3)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYW0HV9", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B000LWCR26", "instruction": "i would like a box of 18 de tress herbal tea bags that are individually wrapped.", "attributes": ["caffeine free", "individually wrapped"], "options": ["flavor name: de-stress", "size: 18 count (pack of 3)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["de-stress", "18 count (pack of 3)"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q58GW2", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B000LWCR26", "instruction": "i am looking for a 18 count (pack of 1) caffeine free herbal tea", "attributes": ["caffeine free", "individually wrapped"], "options": ["flavor name: mint", "size: 18 count (pack of 1)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["18 count (pack of 1)"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F24KOHX", "worker_id": "A9QRQL9CFJBI7"}], "B07W98K1Y2": [{"asin": "B07W98K1Y2", "instruction": "i'm looking for rubber stole shoes for light wearing it was brown in color", "attributes": ["steel toe", "rubber sole"], "options": ["color: brown", "size: 13.5 women | 12 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOKG0F6", "worker_id": "A16IQOX0DK14OJ"}], "B085WB9KBK": [{"asin": "B085WB9KBK", "instruction": "i am looking a varity pack seafood tuna fish high protein gluten free non gmo bpa free size 4.25 ounce", "attributes": ["high protein", "wild caught", "bpa free", "ready eat", "non gmo", "gluten free", "simple ingredients"], "options": ["flavor name: variety pack", "size: 4.25 ounce (pack of 4)"], "instruction_attributes": ["high protein", "bpa free", "non gmo", "gluten free"], "instruction_options": ["variety pack", "4.25 ounce (pack of 4)"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRS1BZJ", "worker_id": "A3N9ZYQAESNFQH"}], "B09CTHQLZ1": [{"asin": "B09CTHQLZ1", "instruction": "i am looking for a 46\" x 16\" x 25\" vanities & vanity benches for living rooms.", "attributes": ["spot clean", "super soft", "living room"], "options": ["color: burnished lilac", "size: 46\" x 16\" x 25\""], "instruction_attributes": ["living room"], "instruction_options": ["46\" x 16\" x 25\""], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE1QJTY", "worker_id": "A9QRQL9CFJBI7"}], "B07CYKYVW7": [{"asin": "B07CYKYVW7", "instruction": "i'm looking for furniture in engineered wood for living room and it was in white in color.", "attributes": ["long lasting", "engineered wood"], "options": ["color: white & anthracite"], "instruction_attributes": ["engineered wood"], "instruction_options": ["white & anthracite"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F228OHH", "worker_id": "A16IQOX0DK14OJ"}], "B09GYCPCJ4": [{"asin": "B09GYCPCJ4", "instruction": "i am looking for high gloss buffet sideboard for kitchen with white led light.", "attributes": ["white item", "high gloss", "living room"], "options": ["color: white"], "instruction_attributes": ["high gloss"], "instruction_options": ["white"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGCZMS8", "worker_id": "A3FG5PQHG5AH3Y"}], "B0759B7KLH": [{"asin": "B0759B7KLH", "instruction": "i'm looking for certified organic seeds pack of six.", "attributes": ["certified organic", "artificial colors"], "options": ["size: 8.5 ounce (pack of 6)", "style: spanish style rice"], "instruction_attributes": ["certified organic"], "instruction_options": ["8.5 ounce (pack of 6)"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMP5QBT", "worker_id": "A16IQOX0DK14OJ"}], "B0078DV1XW": [{"asin": "B0078DV1XW", "instruction": "i am looking for sulfate free hair oil serum pack", "attributes": ["cruelty free", "sulfate free", "argan oil", "dry hair"], "options": ["color: frizz be gone serum", "size: 2.75 fl oz (pack of 3)", "style: hair oil serum - 1 pack"], "instruction_attributes": ["sulfate free"], "instruction_options": ["hair oil serum - 1 pack"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG33GBX", "worker_id": "A16M39T60N60NO"}], "B07H519QRK": [{"asin": "B07H519QRK", "instruction": "i'm looking for certified refurbished for office electronics it easy to ues.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDOIK5N", "worker_id": "A16IQOX0DK14OJ"}], "B077GWCCC8": [{"asin": "B077GWCCC8", "instruction": "i want sugar free, 10 pound classic flavour chocolate discs", "attributes": ["non dairy", "sugar free", "easy use", "dairy free"], "options": ["flavor name: classic", "size: 10 pound"], "instruction_attributes": ["sugar free"], "instruction_options": ["classic", "10 pound"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZTJ04S", "worker_id": "ASWFLI3N8X72G"}], "B09FY2C67G": [{"asin": "B09FY2C67G", "instruction": "looking for ceramic drink coasters that is set of 6 with cup holder", "attributes": ["easy clean", "living room"], "options": ["color: flowercbu3335", "size: set of 6 with cup holder"], "instruction_attributes": ["living room"], "instruction_options": ["set of 6 with cup holder"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKCMNEW", "worker_id": "A10OGH5CQBXL5N"}], "B07XM8TFP4": [{"asin": "B07XM8TFP4", "instruction": "i am looking for gluten free potato chips.", "attributes": ["fat free", "gluten free"], "options": ["flavor name: kettle-style original chips"], "instruction_attributes": ["gluten free"], "instruction_options": ["kettle-style original chips"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W9MOUS", "worker_id": "A19317A3X87NVM"}], "B09QRVRZKK": [{"asin": "B09QRVRZKK", "instruction": "i would like a pair of black earbud headphones that are fast charging.", "attributes": ["long lasting", "fast charging", "hands free"], "options": ["color: black"], "instruction_attributes": ["fast charging"], "instruction_options": ["black"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB158ULA", "worker_id": "A1WS884SI0SLO4"}], "B08MFCQK96": [{"asin": "B08MFCQK96", "instruction": "i am looking for non slip, steel toe women shoe. also, choose the black b color and 42 size.", "attributes": ["non slip", "steel toe", "arch support"], "options": ["color: blackb", "size: 42"], "instruction_attributes": ["non slip", "steel toe"], "instruction_options": ["blackb", "42"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8FK5R7", "worker_id": "A9ZM1P6LBW79"}], "B07K726RVQ": [{"asin": "B07K726RVQ", "instruction": "i want to buy a fifty-two pack of fava bean snacks that are low in sugar and fat. they should also be non-gmo.", "attributes": ["high protein", "plant based", "low sugar", "gluten free", "low fat", "non gmo"], "options": ["flavor: the game day box", "size: 1 ounce (pack of 52)"], "instruction_attributes": ["low sugar", "low fat", "non gmo"], "instruction_options": ["1 ounce (pack of 52)"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBAU6UP", "worker_id": "AR9AU5FY1S3RO"}], "B09LJXXCYJ": [{"asin": "B09LJXXCYJ", "instruction": "i'm looking for clothing for classic fit for women classic fit.", "attributes": ["needle sleeve", "classic fit", "star wars"], "options": ["color: asphalt", "fit type: youth", "size: small"], "instruction_attributes": ["needle sleeve", "classic fit"], "instruction_options": ["asphalt"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYQ49Q6", "worker_id": "A16IQOX0DK14OJ"}], "B08TVFLHNK": [{"asin": "B08TVFLHNK", "instruction": "i need a heavy duty wall plate cover that is high gloss. i want something in a rocker combo style.", "attributes": ["heavy duty", "high gloss"], "options": ["style: outlet | rocker combo"], "instruction_attributes": ["heavy duty", "high gloss"], "instruction_options": ["outlet | rocker combo"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMMZGRSJ", "worker_id": "A1NF6PELRKACS9"}], "B07K4WQXB8": [{"asin": "B07K4WQXB8", "instruction": "i am looking for a 3 pink long sleeve fashion hoodies & sweatshirts.", "attributes": ["loose fit", "machine wash", "long sleeve", "polyester cotton"], "options": ["color: 3 pink", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["3 pink"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQC56S3", "worker_id": "A9QRQL9CFJBI7"}], "B001Q1FRZ0": [{"asin": "B001Q1FRZ0", "instruction": "i want to buy a bronze finish pendant light, in brushed nickle color.", "attributes": ["bronze finish", "pendant light"], "options": ["color: brushed nickel"], "instruction_attributes": ["bronze finish", "pendant light"], "instruction_options": ["brushed nickel"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZWKANI", "worker_id": "ASWFLI3N8X72G"}], "B08X6Y1SVV": [{"asin": "B08X6Y1SVV", "instruction": "search and add 20\"x20\" throw pillow covers used as decorative cushion covers in my living room to my shopping cart. make sure they are dark green.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: dark green", "size: 20\"x20\""], "instruction_attributes": ["living room"], "instruction_options": ["dark green", "20\"x20\""], "assignment_id": "37M28K1J01N18XG9DA49NC0PQDSJA2", "worker_id": "A1HMZJ59OPLD1P"}, {"asin": "B08X6Y1SVV", "instruction": "i want a set of solid wine red throw pillow covers for my living room.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: wine red", "size: 20\"x20\""], "instruction_attributes": ["living room"], "instruction_options": ["wine red"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY65J46", "worker_id": "A2RBF3IIJP15IH"}], "B074N44TTT": [{"asin": "B074N44TTT", "instruction": "i want skateboarding shoes that have rubber outsoles. pick something in blue color.", "attributes": ["lace closure", "rubber outsole"], "options": ["color: blue", "size: 9.5"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["blue"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPP5FWX", "worker_id": "A1NF6PELRKACS9"}], "B09B25LW1P": [{"asin": "B09B25LW1P", "instruction": "i'm looking for women's clothing need to buy medium sized dresses.", "attributes": ["wide leg", "quality materials", "high waist", "daily wear"], "options": ["color: heart a1", "size: medium"], "instruction_attributes": ["wide leg", "quality materials", "high waist", "daily wear"], "instruction_options": ["heart a1"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBSNGI4", "worker_id": "A16IQOX0DK14OJ"}], "B075FSHGVB": [{"asin": "B075FSHGVB", "instruction": "throw pillows cover spot clean lumbar support color beach house cotton coastal blue", "attributes": ["spot clean", "lumbar support"], "options": ["color: beach house, cotton coastal blue", "size: oblong pillow"], "instruction_attributes": ["spot clean", "lumbar support"], "instruction_options": ["beach house, cotton coastal blue"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA71NHMN", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B075FSHGVB", "instruction": "i need a bolster pillow hypoallergenic for lombar support in cotton blue", "attributes": ["spot clean", "lumbar support"], "options": ["color: coastline, cotton blue", "size: bolster pillow"], "instruction_attributes": ["lumbar support"], "instruction_options": ["coastline, cotton blue", "bolster pillow"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMR8XE4", "worker_id": "A2Y2TURT2VEYZN"}], "B07BNZ8PR3": [{"asin": "B07BNZ8PR3", "instruction": "i am looking for a blue ottomans for living room", "attributes": ["wood finish", "living room"], "options": ["color: blue"], "instruction_attributes": ["living room"], "instruction_options": ["blue"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FJLD34", "worker_id": "A9QRQL9CFJBI7"}], "B09P754R7V": [{"asin": "B09P754R7V", "instruction": "i need a replacement remote control for the blue ray disk player.", "attributes": ["blu ray", "batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCJPPIW", "worker_id": "ASWFLI3N8X72G"}], "B07FPC4F39": [{"asin": "B07FPC4F39", "instruction": "i want a certified organic clear lip balm made with coconut oil.", "attributes": ["certified organic", "cruelty free", "hyaluronic acid", "coconut oil"], "options": ["color: clear"], "instruction_attributes": ["certified organic", "coconut oil"], "instruction_options": ["clear"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4IS51F", "worker_id": "ASWFLI3N8X72G"}], "B092PDJLH1": [{"asin": "B092PDJLH1", "instruction": "i would like a pair of size 10.5 dark brown cheetah clogs with a non slip rubber sole.", "attributes": ["day comfort", "non slip", "rubber sole"], "options": ["color: dark brown cheetah", "size: 10.5"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["dark brown cheetah", "10.5"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU4823UPYB", "worker_id": "A1WS884SI0SLO4"}], "B086LGB4QV": [{"asin": "B086LGB4QV", "instruction": "i need a clear fine mist spray bottle for essential oils which is easy to carry during travel.", "attributes": ["easy carry", "fine mist"], "options": ["color: clear"], "instruction_attributes": ["easy carry", "fine mist"], "instruction_options": ["clear"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNWN8HF", "worker_id": "ASWFLI3N8X72G"}], "B0933MGT9J": [{"asin": "B0933MGT9J", "instruction": "i need an ultra hd security camera which comes with plug and play option.", "attributes": ["ultra hd", "plug play"], "options": [""], "instruction_attributes": ["ultra hd", "plug play"], "instruction_options": [], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK67VYYA", "worker_id": "ASWFLI3N8X72G"}], "B07T1GX1JY": [{"asin": "B07T1GX1JY", "instruction": "pick a pack of long lasting scented candles made of soy wax. it should be of teakwood color.", "attributes": ["lead free", "long lasting", "soy wax"], "options": ["color: teakwood", "size: 1 pack"], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": ["teakwood", "1 pack"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVPGKJC", "worker_id": "A1NF6PELRKACS9"}], "B08QGPCZDS": [{"asin": "B08QGPCZDS", "instruction": "i am looking for a 9.5 sized men's running shoes with synthetic sole . and i choose the 7-black red color", "attributes": ["synthetic sole", "daily wear"], "options": ["color: 7-black red", "size: 9.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["7-black red", "9.5"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OWHEY4", "worker_id": "A2COCSUGZV28X"}], "B071LLSKLF": [{"asin": "B071LLSKLF", "instruction": "hey, can you find me that high quality anti-aging cream that is a special blend made by dr. lancer? and please get the largest tube they make! if the tube comes in different colors, i want purple!", "attributes": ["anti aging", "long lasting", "plant based", "high quality"], "options": [""], "instruction_attributes": ["anti aging", "high quality"], "instruction_options": [], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1A79U6", "worker_id": "A1ZAK79QAHNW2J"}], "B08LNSS2L5": [{"asin": "B08LNSS2L5", "instruction": "i want a black fast charging and high speed usb cable.", "attributes": ["fast charging", "high speed"], "options": ["color: black", "size: 6ft+6ft+6ft"], "instruction_attributes": ["fast charging", "high speed"], "instruction_options": ["black"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSO4X0K", "worker_id": "A1NF6PELRKACS9"}], "B07WDTD26G": [{"asin": "B07WDTD26G", "instruction": "i am looking for steel frame coffee table in pewter color", "attributes": ["clear glass", "coated steel", "steel frame"], "options": ["color: pewter", "style name: nesting tables 20 in. + end table"], "instruction_attributes": ["steel frame"], "instruction_options": ["pewter"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163UPQPL", "worker_id": "A16M39T60N60NO"}], "B07N7TXD25": [{"asin": "B07N7TXD25", "instruction": "i'm looking for queen size and twin sized furniture need to buy it.", "attributes": ["queen size", "twin size"], "options": ["color: brown", "size: chair size (6 x 27 x 75)"], "instruction_attributes": ["queen size", "twin size"], "instruction_options": ["brown"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLYYYBG", "worker_id": "A16IQOX0DK14OJ"}], "B09SD6P473": [{"asin": "B09SD6P473", "instruction": "i'm looking for grocery snacks for make great and perfect gifts.", "attributes": ["great gift", "perfect gift"], "options": [""], "instruction_attributes": ["great gift", "perfect gift"], "instruction_options": [], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKKP1TB", "worker_id": "A16IQOX0DK14OJ"}], "B09K3WY267": [{"asin": "B09K3WY267", "instruction": "i'm looking for blankets the color was boho colorful geometric pattern decor.", "attributes": ["super soft", "machine washable"], "options": ["color: boho colorful geometric pattern decor", "size: 80x60 large for adult"], "instruction_attributes": ["machine washable"], "instruction_options": ["boho colorful geometric pattern decor"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68GQA4Q", "worker_id": "A16IQOX0DK14OJ"}], "B08YDYMV23": [{"asin": "B08YDYMV23", "instruction": "i want a quad core 7\" android kids tablet with iwawa ls, dc, bt, wifi etc", "attributes": ["high performance", "easy carry", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT061PUNV", "worker_id": "A1V2C99HEV3F14"}], "B08NTH3ZSF": [{"asin": "B08NTH3ZSF", "instruction": "i'm looking for a 2 in 1 hair masks that helps to heal damaged hair and also promotes hair growth, should contain argan oil.", "attributes": ["argan oil", "damaged hair", "hair growth"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE220GQ3", "worker_id": "AR0VJ5XRG16UJ"}], "B09H3ND94G": [{"asin": "B09H3ND94G", "instruction": "i am looking for a 32gb 1tb ssd pcle nvme m.2 size intel core minis.", "attributes": ["high resolution", "intel core"], "options": ["size: 32gb 1tb ssd pcle nvme m.2"], "instruction_attributes": ["intel core"], "instruction_options": ["32gb 1tb ssd pcle nvme m.2"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUUA7MCA", "worker_id": "A9QRQL9CFJBI7"}], "B08HLHJCV7": [{"asin": "B08HLHJCV7", "instruction": "find me a regular fitting short sleeved casual shirt with breathable-4 pockets-white in 4x-large sizing.", "attributes": ["machine washable", "hand wash", "short sleeve", "regular fit", "button closure"], "options": ["color: breathable-4 pockets-white", "size: 4x-large"], "instruction_attributes": [], "instruction_options": ["breathable-4 pockets-white"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q24GWS", "worker_id": "A3AYHESLQSDY5T"}], "B08FG98N4P": [{"asin": "B08FG98N4P", "instruction": "i'm looking for a 6ft usb to hdmi adapter cable.", "attributes": ["high performance", "usb port"], "options": [""], "instruction_attributes": ["usb port"], "instruction_options": [], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMIIZID", "worker_id": "A1ZGOZQF2VZ0X9"}], "B07TQZPJK8": [{"asin": "B07TQZPJK8", "instruction": "i am looking for disney frozen machine wash, heathers cotton kristoff olaf premium t-shirt for women", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: black", "fit type: women", "size: medium"], "instruction_attributes": ["machine wash", "heathers cotton"], "instruction_options": ["women"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXXCYMF", "worker_id": "AX2EWYWZM19AZ"}], "B09JS19BSF": [{"asin": "B09JS19BSF", "instruction": "i'm looking for a tablet with a high performance 8 inch screen", "attributes": ["high performance", "non slip", "quad core"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB99L8NF", "worker_id": "A2Y2TURT2VEYZN"}], "B01FV5KX2S": [{"asin": "B01FV5KX2S", "instruction": "i'm looking for organic, gluten free dutch cocoa chocolate sauce with a syrup pump", "attributes": ["certified organic", "hand crafted", "non gmo", "gluten free"], "options": ["flavor name: organic simply sugar", "size: 25.4 fl oz (pack of 1)", "style: syrup pump"], "instruction_attributes": ["gluten free"], "instruction_options": ["syrup pump"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZUX40C", "worker_id": "A292TFDMNVS0TP"}, {"asin": "B01FV5KX2S", "instruction": "i would like one organic raspberry syrup pump that is certified organic.", "attributes": ["certified organic", "hand crafted", "non gmo", "gluten free"], "options": ["flavor name: organic raspberry", "size: pack of 1", "style: syrup pump"], "instruction_attributes": ["certified organic"], "instruction_options": ["organic raspberry", "pack of 1", "syrup pump"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVPZXLJ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01FV5KX2S", "instruction": "i need dark chocolate organic syrup", "attributes": ["certified organic", "hand crafted", "non gmo", "gluten free"], "options": ["flavor name: organic dutch cocoa dark chocolate", "size: pack of 1", "style: syrup"], "instruction_attributes": ["certified organic"], "instruction_options": ["organic dutch cocoa dark chocolate"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVF9V8B", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01FV5KX2S", "instruction": "i would like a peach syrup that is organic", "attributes": ["certified organic", "hand crafted", "non gmo", "gluten free"], "options": ["flavor name: organic peach", "size: 25.4 fl oz (pack of 1)", "style: syrup"], "instruction_attributes": ["certified organic"], "instruction_options": ["organic peach"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLO207OS", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01FV5KX2S", "instruction": "i would like a 25.4 fluid ounce bottle of chocolate syrup made with non gmo organic candy cane mint.", "attributes": ["certified organic", "hand crafted", "non gmo", "gluten free"], "options": ["flavor name: organic candy cane mint", "size: 25.4 fl oz (pack of 1)", "style: syrup"], "instruction_attributes": ["non gmo"], "instruction_options": ["organic candy cane mint", "25.4 fl oz (pack of 1)", "syrup"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH152UWHK", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01FV5KX2S", "instruction": "i'm looking for a pack of three non-gmo organic flavor syrups with a pump. look for the pumpkin pie spice flavor.", "attributes": ["certified organic", "hand crafted", "non gmo", "gluten free"], "options": ["flavor name: organic pumpkin pie spice", "size: pack of 3", "style: syrup pump"], "instruction_attributes": ["certified organic", "non gmo"], "instruction_options": ["organic pumpkin pie spice", "pack of 3", "syrup pump"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q2XWG1", "worker_id": "AR9AU5FY1S3RO"}], "B098JPBMPP": [{"asin": "B098JPBMPP", "instruction": "i'm looking for clothing has long sleeve it was dry cleaned it was ed in color.", "attributes": ["loose fit", "wash cold", "hand wash", "machine wash", "long sleeve", "dry clean"], "options": ["color: 7-red", "size: medium"], "instruction_attributes": ["wash cold", "hand wash", "machine wash", "long sleeve", "dry clean"], "instruction_options": ["7-red"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20PA0ZU", "worker_id": "A16IQOX0DK14OJ"}], "B075FGY7G2": [{"asin": "B075FGY7G2", "instruction": "i'm looking for a 37 inch metal and wood platform bed frame with chestnut brown, queen by zinus suzanne", "attributes": ["twin size", "box spring", "solid wood", "steel frame"], "options": ["pattern name: bed frame + mattress, queen", "size: full", "style: 37 inch (chestnut brown)"], "instruction_attributes": ["box spring", "solid wood"], "instruction_options": ["bed frame + mattress, queen", "37 inch (chestnut brown)"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34LW416", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09QV7VDBX": [{"asin": "B09QV7VDBX", "instruction": "i am looking for a black color dust proof and heavy duty protection phone case cover for samsung galaxy s22.", "attributes": ["heavy duty", "dust proof", "case cover", "wireless charging"], "options": ["color: black"], "instruction_attributes": ["heavy duty", "dust proof", "case cover"], "instruction_options": ["black"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS3SVUC", "worker_id": "A1V2JTEEBCXR20"}], "B08NX177PT": [{"asin": "B08NX177PT", "instruction": "i'm looking for cellphone accessories for wireless charging.", "attributes": ["easy install", "tempered glass", "aluminum alloy", "wireless charging"], "options": ["color: green", "size: 12pro"], "instruction_attributes": ["easy install", "wireless charging"], "instruction_options": ["green"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K8H21R", "worker_id": "A16IQOX0DK14OJ"}], "B0989RT3L7": [{"asin": "B0989RT3L7", "instruction": "get me a slim fit hand washable black long sleeved men's suit's jacket in 4x size.", "attributes": ["slim fit", "hand wash", "long sleeve"], "options": ["color: black1", "size: 4x"], "instruction_attributes": ["slim fit", "hand wash", "long sleeve"], "instruction_options": ["black1", "4x"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3FRAY9", "worker_id": "A3AYHESLQSDY5T"}], "B08BXTQX6R": [{"asin": "B08BXTQX6R", "instruction": "i'm looking for a soft gray women's shirt.", "attributes": ["elastic waist", "relaxed fit", "short sleeve"], "options": ["color: soft grey", "size: 2x"], "instruction_attributes": ["short sleeve"], "instruction_options": ["soft grey"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQGXEKW", "worker_id": "A19317A3X87NVM"}], "B07WTW4X4R": [{"asin": "B07WTW4X4R", "instruction": "i am looking for dual band computers", "attributes": ["output protection", "dual band"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MJRLW4", "worker_id": "A16M39T60N60NO"}, {"asin": "B07WTW4X4R", "instruction": "i need dual band computer accessories.", "attributes": ["output protection", "dual band"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA73RMH0", "worker_id": "A2ECRNQ3X5LEXD"}], "B0777CTZF6": [{"asin": "B0777CTZF6", "instruction": "i would like a purple barstool that is easy to clean and assemble.", "attributes": ["easy clean", "easy assemble", "pu leather", "faux leather"], "options": ["color: purple"], "instruction_attributes": ["easy clean", "easy assemble"], "instruction_options": ["purple"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTMG5VL", "worker_id": "A1WS884SI0SLO4"}], "B09LM8RF2G": [{"asin": "B09LM8RF2G", "instruction": "i need a long lasting walnut curio cabinet with adjustable tempered glass to grace my room.", "attributes": ["long lasting", "tempered glass"], "options": ["color: walnut"], "instruction_attributes": ["long lasting", "tempered glass"], "instruction_options": ["walnut"], "assignment_id": "33TIN5LC0FKDY31374RC144TXYDY9O", "worker_id": "A39VVWV1GHLMFD"}], "B08XX95LLV": [{"asin": "B08XX95LLV", "instruction": "i would like a 6 pack of dental floss good for my oral hygiene.", "attributes": ["stainless steel", "oral hygiene"], "options": ["style: pack of 6, essential"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["pack of 6, essential"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5HXWI5", "worker_id": "A1WS884SI0SLO4"}], "B09FJCV7ZV": [{"asin": "B09FJCV7ZV", "instruction": "a throw pillow covers set for living room color natural-w", "attributes": ["exquisite workmanship", "living room"], "options": ["color: natural-w"], "instruction_attributes": ["living room"], "instruction_options": ["natural-w"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIST84N", "worker_id": "A3N9ZYQAESNFQH"}], "B082D3D9DW": [{"asin": "B082D3D9DW", "instruction": "i'm looking for a wall mobile bookshelf .", "attributes": ["exquisite workmanship", "solid wood", "living room"], "options": [""], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPGSV6Q", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09LQ8V928": [{"asin": "B09LQ8V928", "instruction": "i need wine colored winter warm boxers. pick something in wine color.", "attributes": ["winter warm", "fleece lined", "high waist", "tummy control", "polyester spandex"], "options": ["color: wine", "size: x-large"], "instruction_attributes": ["winter warm"], "instruction_options": ["wine", "x-large"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV153X4", "worker_id": "A1NF6PELRKACS9"}], "B097FGJ473": [{"asin": "B097FGJ473", "instruction": "i want a keto friendly, white chocolate spread which is sugar and gluten free.", "attributes": ["keto friendly", "low carb", "low sugar", "soy free", "sugar free", "non gmo", "gluten free"], "options": ["flavor name: white chocolate"], "instruction_attributes": ["keto friendly", "sugar free", "gluten free"], "instruction_options": ["white chocolate"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907SEAUB", "worker_id": "ASWFLI3N8X72G"}], "B07PW4KZBW": [{"asin": "B07PW4KZBW", "instruction": "i am looking for a posters & prints for living rooms", "attributes": ["ready hang", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34LC41M", "worker_id": "A9QRQL9CFJBI7"}], "B09KLCZPXR": [{"asin": "B09KLCZPXR", "instruction": "i am looking for easy to clean double sided velvet pads.", "attributes": ["double sided", "easy carry", "easy clean", "easy use"], "options": ["color: velvet"], "instruction_attributes": ["double sided", "easy clean"], "instruction_options": ["velvet"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OVWEYH", "worker_id": "A1EREKSZAA9V7B"}], "B09BK6K6XB": [{"asin": "B09BK6K6XB", "instruction": "find me a twin size bunk bed that's white and made from engineered wood.", "attributes": ["twin size", "white item", "engineered wood"], "options": ["color: spider-man tent", "size: white bunk bed", "style: bunk bed"], "instruction_attributes": ["twin size", "white item", "engineered wood"], "instruction_options": ["bunk bed"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIRW48K", "worker_id": "A2CJFO19NY4T5R"}], "B07C7KQQN9": [{"asin": "B07C7KQQN9", "instruction": "i need a slip resistant tactical boot with rubber soles. it should be in size 6.", "attributes": ["slip resistant", "moisture wicking", "rubber outsole", "rubber sole"], "options": ["size: 6"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["6"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH1QZ49", "worker_id": "A1NF6PELRKACS9"}], "B09R4JVD58": [{"asin": "B09R4JVD58", "instruction": "i would like a w35.4\" x l78.7\" hunter green window film that is easy to install.", "attributes": ["white item", "easy install"], "options": ["color: hunter and green 13", "size: w35.4\" x l78.7\""], "instruction_attributes": ["easy install"], "instruction_options": ["hunter and green 13", "w35.4\" x l78.7\""], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBAS6UN", "worker_id": "A1WS884SI0SLO4"}], "B0992DN2BK": [{"asin": "B0992DN2BK", "instruction": "i am looking for golden edge storage bench of faux leather for living room.", "attributes": ["faux leather", "living room"], "options": ["color: golden edge bench", "size: 35x35x35cm(14x14x14inch)"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["golden edge bench"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0Y6W4Y", "worker_id": "A9QRQL9CFJBI7"}], "B07BP14H9C": [{"asin": "B07BP14H9C", "instruction": "i'm looking for want to buy a camera for digital photography. it also easy to carry.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 10x8ft"], "instruction_attributes": ["easy carry", "digital photography"], "instruction_options": ["10x8ft"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06MXXKD", "worker_id": "A16IQOX0DK14OJ"}], "B09QD1G4JC": [{"asin": "B09QD1G4JC", "instruction": "i am looking for a long sleeve t-shirts of large size.", "attributes": ["loose fit", "long sleeve"], "options": ["color: \u720637 - black", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["large"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREO52JH", "worker_id": "A9QRQL9CFJBI7"}], "B09P1NQDFZ": [{"asin": "B09P1NQDFZ", "instruction": "i would like a extra large yellow button down shirt that is machine washable.", "attributes": ["loose fit", "hand wash", "daily casual", "light weight", "fleece lined", "wash cold", "machine wash", "long sleeve", "drawstring waist", "regular fit", "high waist"], "options": ["color: #06-yellow", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["#06-yellow", "x-large"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZSR3KG", "worker_id": "A1WS884SI0SLO4"}], "B09PG9R7TX": [{"asin": "B09PG9R7TX", "instruction": "i am looking for a 52x84inx2 panels for living room.", "attributes": ["exquisite workmanship", "living room"], "options": ["size: 52x84inx2"], "instruction_attributes": ["living room"], "instruction_options": ["52x84inx2"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGKH0O0", "worker_id": "A9QRQL9CFJBI7"}], "B07YMW9BYH": [{"asin": "B07YMW9BYH", "instruction": "i'm looking for a double size, super soft blanket. also, choose 90*90\" black colored one.", "attributes": ["double sided", "super soft"], "options": ["color: black", "size: 90x90\""], "instruction_attributes": ["double sided", "super soft"], "instruction_options": ["black", "90x90\""], "assignment_id": "3TR2532VI040LV46NXNX77Y3USX6JQ", "worker_id": "AR0VJ5XRG16UJ"}], "B09DVQY1RT": [{"asin": "B09DVQY1RT", "instruction": "i am looking for light fixture hanging pendant light with color is black-a", "attributes": ["easy install", "pendant light", "light fixture"], "options": ["color: black-a"], "instruction_attributes": ["pendant light", "light fixture"], "instruction_options": ["black-a"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP8ZD6I", "worker_id": "AX2EWYWZM19AZ"}], "B09285ZVMV": [{"asin": "B09285ZVMV", "instruction": "i want double horn bluetooth wireless speakers which is portable and easy to carry", "attributes": ["easy carry", "wireless bluetooth"], "options": ["color: double horn"], "instruction_attributes": ["easy carry", "wireless bluetooth"], "instruction_options": ["double horn"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TDEMNJ", "worker_id": "ASWFLI3N8X72G"}], "B094663P3J": [{"asin": "B094663P3J", "instruction": "i am looking for a 6 pack of cookie assortments which is keto friendly grain free and sugar free", "attributes": ["keto friendly", "grain free", "low carb", "sugar free", "natural ingredients"], "options": ["flavor name: peanut butter", "size: 6 pack"], "instruction_attributes": ["keto friendly", "grain free", "sugar free"], "instruction_options": ["6 pack"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVCV8V4", "worker_id": "A9QRQL9CFJBI7"}], "B09PC1WJBJ": [{"asin": "B09PC1WJBJ", "instruction": "i am looking for a long sleeved medium sized sweatshirt.", "attributes": ["slim fit", "long sleeve", "soft material", "daily wear"], "options": ["color: h05-white", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXK3WKV", "worker_id": "A1NF6PELRKACS9"}], "B06ZZ5ZNDQ": [{"asin": "B06ZZ5ZNDQ", "instruction": "my sister have natural hair in 15 inch", "attributes": ["stainless steel", "hair extensions", "natural hair"], "options": ["color: #4 | 8a", "size: 15 inch"], "instruction_attributes": ["natural hair"], "instruction_options": ["15 inch"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LW8DCC", "worker_id": "A226L9F2AZ38CL"}], "B005S4J2OS": [{"asin": "B005S4J2OS", "instruction": "i want a 10 ounce bottle of low calorie fries seasonings.", "attributes": ["low sugar", "low calorie", "ready eat", "kosher certified", "gluten free"], "options": ["size: 10 ounce (pack of 1)", "style: wild buffalo"], "instruction_attributes": ["low calorie"], "instruction_options": ["10 ounce (pack of 1)"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKLLVPZ", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B005S4J2OS", "instruction": "i want a ready to eat 9 ounce pack of fries seasoning bottle. it should be low in calories.", "attributes": ["low sugar", "low calorie", "ready eat", "kosher certified", "gluten free"], "options": ["size: 9 ounce (pack of 1)", "style: wild buffalo"], "instruction_attributes": ["low calorie", "ready eat"], "instruction_options": ["9 ounce (pack of 1)"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFHS5UL", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B005S4J2OS", "instruction": "i am really looking for a low sugar flame grilled bbq meat seasoning that comes in 8 ounces", "attributes": ["low sugar", "low calorie", "ready eat", "kosher certified", "gluten free"], "options": ["size: 8 ounce (pack of 1)", "style: flame grilled bbq"], "instruction_attributes": ["low sugar"], "instruction_options": ["8 ounce (pack of 1)", "flame grilled bbq"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCG6SJ8", "worker_id": "A2ECRNQ3X5LEXD"}], "B08PG3FKPY": [{"asin": "B08PG3FKPY", "instruction": "i'm looking for open toe shoes for women's it was blue in color.", "attributes": ["open toe", "faux fur", "synthetic sole"], "options": ["color: blue", "size: 8"], "instruction_attributes": ["open toe"], "instruction_options": ["blue"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZLQ7CY", "worker_id": "A16IQOX0DK14OJ"}], "B00IHO11FE": [{"asin": "B00IHO11FE", "instruction": "i am looking for trader joe and chocolate covered blueberries", "attributes": ["trader joe", "chocolate covered"], "options": [""], "instruction_attributes": ["trader joe", "chocolate covered"], "instruction_options": [], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUT8QJ6", "worker_id": "AX2EWYWZM19AZ"}, {"asin": "B00IHO11FE", "instruction": "i would like a chocolate covered fruit from trader joes.", "attributes": ["trader joe", "chocolate covered"], "options": [""], "instruction_attributes": ["trader joe", "chocolate covered"], "instruction_options": [], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGT0CM7F", "worker_id": "A1WS884SI0SLO4"}], "B09QPKTKP6": [{"asin": "B09QPKTKP6", "instruction": "a men's winter warm loose fit made from quality polyester xx- large casual pant color: gray", "attributes": ["loose fit", "winter warm", "straight leg", "water resistant", "fleece lined", "slim fit", "quality polyester", "gym workout"], "options": ["color: gray", "size: xx-large"], "instruction_attributes": ["loose fit", "winter warm", "quality polyester"], "instruction_options": ["gray", "xx-large"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQFJJC8", "worker_id": "A3N9ZYQAESNFQH"}], "B09N9LKT3L": [{"asin": "B09N9LKT3L", "instruction": "i am looking for high definition high power pink colour portable bluetooth speakers", "attributes": ["high definition", "power amplifier", "high power"], "options": ["color: pink"], "instruction_attributes": ["high definition", "high power"], "instruction_options": ["pink"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI83OSS1", "worker_id": "A3N9ZYQAESNFQH"}], "B082W1GZVL": [{"asin": "B082W1GZVL", "instruction": "i am looking for leak proof soap dispenser. please select white one.", "attributes": ["leak proof", "travel bottles"], "options": ["color: white", "size: 250ml"], "instruction_attributes": ["leak proof"], "instruction_options": ["white"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A1DHFK", "worker_id": "A3FG5PQHG5AH3Y"}], "B091N91BZ8": [{"asin": "B091N91BZ8", "instruction": "i am looking for a white power dental flossers for bad breath.", "attributes": ["leak proof", "bad breath"], "options": ["color: white"], "instruction_attributes": ["bad breath"], "instruction_options": ["white"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CDR0VF", "worker_id": "A9QRQL9CFJBI7"}], "B09LMC456K": [{"asin": "B09LMC456K", "instruction": "i'm looking for bench it can easily assemble a living room.", "attributes": ["heavy duty", "easy assemble", "storage space", "pu leather", "living room"], "options": ["color: pink"], "instruction_attributes": ["easy assemble", "living room"], "instruction_options": ["pink"], "assignment_id": "326O153BMT8RVOXTJJKKGXV3683EDO", "worker_id": "A16IQOX0DK14OJ"}], "B09LYMF164": [{"asin": "B09LYMF164", "instruction": "i am looking for an easy to use yellow children's toothbrush.", "attributes": ["teeth whitening", "easy use"], "options": ["color: yellow", "size: 2-6 year"], "instruction_attributes": ["easy use"], "instruction_options": ["yellow"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5G3IWV", "worker_id": "A1EREKSZAA9V7B"}], "B07ZXMXZF6": [{"asin": "B07ZXMXZF6", "instruction": "i'm looking for a tea bags which is sugar free and gluten free and also of good quality ingredients. also choose a pack of 1 weights 1.32 ounce, coconut with green tea flavored one.", "attributes": ["sugar free", "non gmo", "gluten free", "quality ingredients"], "options": ["flavor name: coconut with green tea", "size: 1.32 ounce (pack of 1)"], "instruction_attributes": ["sugar free", "gluten free", "quality ingredients"], "instruction_options": ["coconut with green tea", "1.32 ounce (pack of 1)"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MK9LWO", "worker_id": "AR0VJ5XRG16UJ"}], "B00VC3681O": [{"asin": "B00VC3681O", "instruction": "i am searching for individually wrapped gummy candies.", "attributes": ["individually wrapped", "party supplies"], "options": [""], "instruction_attributes": ["individually wrapped"], "instruction_options": [], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFFWU5A", "worker_id": "A9ZM1P6LBW79"}], "B08PL59YNK": [{"asin": "B08PL59YNK", "instruction": "i want a long lasting comforter that is super soft and paw patrol colored.", "attributes": ["twin size", "super soft", "long lasting"], "options": ["color: paw patrol", "size: 5 piece twin size"], "instruction_attributes": ["super soft", "long lasting"], "instruction_options": ["paw patrol"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOKSF0X", "worker_id": "A1NF6PELRKACS9"}], "B09KY9P8CD": [{"asin": "B09KY9P8CD", "instruction": "i'm looking for nail polish for nail art to make our nail look beautiful.", "attributes": ["long lasting", "nail polish", "nail art"], "options": ["color: pink"], "instruction_attributes": ["nail polish", "nail art"], "instruction_options": ["pink"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1AXU9H", "worker_id": "A16IQOX0DK14OJ"}], "B09NXV65LV": [{"asin": "B09NXV65LV", "instruction": "i am looking for a long sleeve jumpsuits of 001-red.", "attributes": ["hand wash", "slim fit", "long sleeve", "dry clean"], "options": ["color: 001-red", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["001-red"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8WR8GX", "worker_id": "A9QRQL9CFJBI7"}], "B094W12V1M": [{"asin": "B094W12V1M", "instruction": "i'm looking for a nightstand with tempered glass for living room, size 19.7x11.8x23\" in retro brown color", "attributes": ["easy assemble", "tempered glass", "storage space", "living room"], "options": ["color: retro brown", "size: 19.7\"x11.8\"x23.6\""], "instruction_attributes": ["tempered glass", "living room"], "instruction_options": ["retro brown", "19.7\"x11.8\"x23.6\""], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOFULLO", "worker_id": "A2Y2TURT2VEYZN"}], "B099RSZNWJ": [{"asin": "B099RSZNWJ", "instruction": "i am looking for a fully cooked bow-tie of spaghetti pasta flavor", "attributes": ["fully cooked", "ready eat"], "options": ["flavor name: spaghetti pasta"], "instruction_attributes": ["fully cooked"], "instruction_options": ["spaghetti pasta"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GEIUZV", "worker_id": "A9QRQL9CFJBI7"}], "B07VJLBD4J": [{"asin": "B07VJLBD4J", "instruction": "i am looking for gluten free turquoise edible glitter for cakes.", "attributes": ["kosher certified", "dairy free", "gluten free"], "options": ["color: turquoise", "size: 454g (1lb)"], "instruction_attributes": ["gluten free"], "instruction_options": ["turquoise"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1LGITY", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07VJLBD4J", "instruction": "i need a one pound bag of pink glitter that is kosher.", "attributes": ["kosher certified", "dairy free", "gluten free"], "options": ["color: deep pink", "size: 454g (1lb)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["deep pink", "454g (1lb)"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G76A47F", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GQ711QJ": [{"asin": "B07GQ711QJ", "instruction": "i'm looking for a waterproof carrying case that can help secure my binoculars while bird watching.", "attributes": ["carrying case", "bird watching"], "options": [""], "instruction_attributes": ["carrying case", "bird watching"], "instruction_options": [], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH2E6HA", "worker_id": "A1HMZJ59OPLD1P"}], "B09LM1WPPS": [{"asin": "B09LM1WPPS", "instruction": "i'm looking for made a cup cakes for birthday parties.", "attributes": ["cupcake picks", "party supplies", "baby shower", "birthday party"], "options": ["style: rose gold hello 2022"], "instruction_attributes": ["cupcake picks", "birthday party"], "instruction_options": ["rose gold hello 2022"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGTZYM7Z", "worker_id": "A16IQOX0DK14OJ"}], "B08L5716H4": [{"asin": "B08L5716H4", "instruction": "i am looking for lake blue ridge parkway artwork-14 paintings for living room and its size is 48''wx24''h", "attributes": ["ready hang", "living room"], "options": ["color: artwork-14", "size: 48''wx24''h"], "instruction_attributes": ["living room"], "instruction_options": ["artwork-14", "48''wx24''h"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69NFP8J", "worker_id": "A258PTOZ3D2TQR"}], "B075WR97Q1": [{"asin": "B075WR97Q1", "instruction": "i'm looking for a standard plug and play computer mouse that is wired, preferably black.", "attributes": ["compatible apple", "plug play"], "options": ["color: gmaergbt15 black", "size: wired"], "instruction_attributes": ["plug play"], "instruction_options": ["gmaergbt15 black", "wired"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGUBDMRJ", "worker_id": "A3EDFA8UQT5GG8"}], "B001EAYN44": [{"asin": "B001EAYN44", "instruction": "i want to buy a bronze wall scone with a bronze finish also. i would like it in the large size.", "attributes": ["bronze finish", "glass shade"], "options": ["color: bronze", "size: large", "style: flush mount"], "instruction_attributes": ["bronze finish"], "instruction_options": ["bronze", "large"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W9UUO6", "worker_id": "AHXHM1PQTRWIQ"}], "B098VVZ7F7": [{"asin": "B098VVZ7F7", "instruction": "show me a day comfort knee high open toe z8-khaki open toe boots in 5.5 size made with quality materials.", "attributes": ["knee high", "day comfort", "open toe", "quality materials"], "options": ["color: z8-khaki", "size: 5.5"], "instruction_attributes": ["knee high", "day comfort", "open toe"], "instruction_options": ["z8-khaki", "5.5"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WPCQWW", "worker_id": "A3AYHESLQSDY5T"}], "B073RG7HYZ": [{"asin": "B073RG7HYZ", "instruction": "i need high quality hair extensions that are 18 inches in size.", "attributes": ["high quality", "hair extensions"], "options": ["color: #bala8 | 60", "size: 18 inch (pack of 1)"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["18 inch (pack of 1)"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQDVS6H", "worker_id": "A1NF6PELRKACS9"}], "B07CMBP6W2": [{"asin": "B07CMBP6W2", "instruction": "i'm interested in this product, show me eye makeup remover, earth science, 4 fl oz (pack of 1), with green tea, hyaluronic acid.", "attributes": ["alcohol free", "fragrance free", "eco friendly", "cruelty free", "green tea", "hyaluronic acid", "natural ingredients"], "options": ["size: 4 fl oz (pack of 1)"], "instruction_attributes": ["green tea", "hyaluronic acid"], "instruction_options": ["4 fl oz (pack of 1)"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C5HPH8", "worker_id": "A15IJ20C3R4HUO"}], "B07KYK1KCK": [{"asin": "B07KYK1KCK", "instruction": "i'm looking for a usb rechargeable lithium d batteries.", "attributes": ["fast charging", "usb port"], "options": ["size: d cell 2 pack"], "instruction_attributes": ["usb port"], "instruction_options": ["d cell 2 pack"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VGK8EO", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09MF9SMHM": [{"asin": "B09MF9SMHM", "instruction": "i am looking for black-1029 coaxial cable for smart tv.", "attributes": ["easy install", "high definition", "coaxial cable", "4g lte"], "options": ["color: us flag", "size: black-1029"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["black-1029"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR48AUFR", "worker_id": "A3FG5PQHG5AH3Y"}], "B01HJW66RW": [{"asin": "B01HJW66RW", "instruction": "i am looking for gold plated cables with size of 8 feet", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["product packaging: 1 pack", "size: 8 feet (5-pack)", "style: hdmi male to male"], "instruction_attributes": ["gold plated"], "instruction_options": ["8 feet (5-pack)"], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUJYZVS", "worker_id": "A16M39T60N60NO"}], "B07DDDHX7J": [{"asin": "B07DDDHX7J", "instruction": "i would like a small midweight beige thermal underwear top that has long sleeves.", "attributes": ["fleece lined", "nylon spandex", "tummy control", "high waist", "long sleeve"], "options": ["color: 3. heavyweight beige 1 top", "size: small", "special size: 200 - midweight"], "instruction_attributes": ["long sleeve"], "instruction_options": ["3. heavyweight beige 1 top", "small", "200 - midweight"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V5F2UR", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07DDDHX7J", "instruction": "i want a small fleece lined long sleeve crew neck shirt.", "attributes": ["fleece lined", "nylon spandex", "tummy control", "high waist", "long sleeve"], "options": ["color: 1. lightweight dark heather gray 1 top", "size: small", "special size: 300 - heavyweight"], "instruction_attributes": ["fleece lined"], "instruction_options": ["small"], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVY3KDIA", "worker_id": "A2RBF3IIJP15IH"}], "B09FQ8GYM5": [{"asin": "B09FQ8GYM5", "instruction": "find me a long sleeve top for my teenage girl. she is x-large.", "attributes": ["long sleeve", "teen girls"], "options": ["color: 4-gray", "size: x-large"], "instruction_attributes": ["long sleeve", "teen girls"], "instruction_options": ["x-large"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT8L738", "worker_id": "A1NF6PELRKACS9"}], "B01N96L9BB": [{"asin": "B01N96L9BB", "instruction": "i am looking for cal 100w eupen metal adjustable floor lamp with assembly required", "attributes": ["assembly required", "bronze finish"], "options": [""], "instruction_attributes": ["assembly required"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZMD1Y6", "worker_id": "AX2EWYWZM19AZ"}], "B075Q4N3T7": [{"asin": "B075Q4N3T7", "instruction": "i am looking for men\u2019s running shoes size 10 which are light weight and slip resisistance.", "attributes": ["light weight", "slip resistant"], "options": ["color: light green", "size: 10"], "instruction_attributes": ["light weight", "slip resistant"], "instruction_options": ["10"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K8V124", "worker_id": "AHU9OLV0YKIIW"}], "B01HYA8V86": [{"asin": "B01HYA8V86", "instruction": "i'm looking for hair products to white strong spray for hair loss products. it can very easy method.", "attributes": ["easy apply", "hair loss"], "options": ["color: white + strong spray"], "instruction_attributes": ["easy apply", "hair loss"], "instruction_options": ["white + strong spray"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX3YIU1H", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B01HYA8V86", "instruction": "i am looking for hair building fibers that are light brown for hair loss.", "attributes": ["easy apply", "hair loss"], "options": ["color: light brown + strong spray"], "instruction_attributes": ["hair loss"], "instruction_options": ["light brown + strong spray"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LFWSPS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CM2NX9N": [{"asin": "B09CM2NX9N", "instruction": "i am looking for non toxic storage case for for travel usage", "attributes": ["non toxic", "storage case"], "options": [""], "instruction_attributes": ["non toxic", "storage case"], "instruction_options": [], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YRP8TY", "worker_id": "A16M39T60N60NO"}], "B07GXYHZ2D": [{"asin": "B07GXYHZ2D", "instruction": "i am looking for apple ipad mini 4, 1080p hd and color is silver", "attributes": ["1080p hd", "quad core"], "options": ["color: silver", "size: 128gb wifi + cellular"], "instruction_attributes": ["1080p hd"], "instruction_options": ["silver"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZWFAND", "worker_id": "AX2EWYWZM19AZ"}], "B095J6KZYR": [{"asin": "B095J6KZYR", "instruction": "i'm looking for a ten pack of dairy free, non-gmo plant based sausage breakfast sandwiches.", "attributes": ["plant based", "dairy free", "non gmo"], "options": ["flavor name: veggie", "size: 5.5 ounce (pack of 10)"], "instruction_attributes": ["plant based", "dairy free", "non gmo"], "instruction_options": ["veggie", "5.5 ounce (pack of 10)"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LMX09Q", "worker_id": "AR9AU5FY1S3RO"}], "B01LK0PRUQ": [{"asin": "B01LK0PRUQ", "instruction": "i am looking for fine mist women fragrance.", "attributes": ["design house", "long lasting", "fine mist"], "options": [""], "instruction_attributes": ["fine mist"], "instruction_options": [], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7JHN5P", "worker_id": "A3FG5PQHG5AH3Y"}], "B00EF4G6FK": [{"asin": "B00EF4G6FK", "instruction": "i am looking for a black home office desk chairs for lumbar support.", "attributes": ["heavy duty", "easy assemble", "lumbar support"], "options": ["color: black"], "instruction_attributes": ["lumbar support"], "instruction_options": ["black"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPA3ROC", "worker_id": "A9QRQL9CFJBI7"}], "B08R6XR5DF": [{"asin": "B08R6XR5DF", "instruction": "i am looking for a z-5 green long sleeve women clothing", "attributes": ["machine wash", "slim fit", "long sleeve", "gym workout"], "options": ["color: z-5 green", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["z-5 green"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP62RVDU", "worker_id": "A9QRQL9CFJBI7"}], "B09LDC4N41": [{"asin": "B09LDC4N41", "instruction": "i would like a pair of size 9 grey snow boots that are water resistant.", "attributes": ["water resistant", "winter warm", "light weight", "anti slip", "rubber sole"], "options": ["color: grey", "size: 9"], "instruction_attributes": ["water resistant"], "instruction_options": ["grey", "9"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7YE5PZ", "worker_id": "A1WS884SI0SLO4"}], "B08L1WD434": [{"asin": "B08L1WD434", "instruction": "i'm looking for furniture for kitchen a buy a desk for home office and coated steel and need buy it.", "attributes": ["heavy duty", "easy clean", "coated steel"], "options": ["color: vintage and black", "size: 31 inch"], "instruction_attributes": ["easy clean", "coated steel"], "instruction_options": ["vintage and black"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNSWJF4", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08L1WD434", "instruction": "i need 55 inch , teak color and easy clean modern simple style desk for home office", "attributes": ["heavy duty", "easy clean", "coated steel"], "options": ["color: teak", "size: 55 inch"], "instruction_attributes": ["easy clean"], "instruction_options": ["teak", "55 inch"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4XALPG0", "worker_id": "A258PTOZ3D2TQR"}], "B09MCNYCH1": [{"asin": "B09MCNYCH1", "instruction": "i'm looking for multi colored home decor products.", "attributes": ["eco friendly", "living room"], "options": ["color: multi-01563", "size: 17.7\" x 35.4\" x 2 pcs"], "instruction_attributes": ["living room"], "instruction_options": ["multi-01563"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LCW1OD", "worker_id": "A16IQOX0DK14OJ"}], "B07MBZTLVJ": [{"asin": "B07MBZTLVJ", "instruction": "i would like a bundle set of earbud headphones that are water resistant.", "attributes": ["water resistant", "high performance", "easy use"], "options": ["size: bundle"], "instruction_attributes": ["water resistant"], "instruction_options": ["bundle"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBAL6UG", "worker_id": "A1WS884SI0SLO4"}], "B095NN1RHK": [{"asin": "B095NN1RHK", "instruction": "i am looking for hair trimmer for beauty salon.", "attributes": ["easy use", "non slip", "easy clean", "beauty salon", "hair cutting"], "options": [""], "instruction_attributes": ["beauty salon"], "instruction_options": [], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXN6Z2P", "worker_id": "A3FG5PQHG5AH3Y"}], "B08T1RWS5Q": [{"asin": "B08T1RWS5Q", "instruction": "i need a pair of nice indigo pants for hand wash only.", "attributes": ["hand wash", "elastic closure", "elastic waist", "tumble dry"], "options": ["color: blue fish", "size: one size"], "instruction_attributes": ["hand wash"], "instruction_options": ["blue fish"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTP4TKJ", "worker_id": "A19317A3X87NVM"}], "B07TXLYSRV": [{"asin": "B07TXLYSRV", "instruction": "i'm looking for temporary tattoos for women's and it was sensitive skin and it also with dry skin.", "attributes": ["easy apply", "non toxic", "long lasting", "high quality", "coconut oil", "dry skin", "sensitive skin"], "options": ["pattern name: white henna"], "instruction_attributes": ["easy apply", "long lasting", "coconut oil", "dry skin", "sensitive skin"], "instruction_options": ["white henna"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SWMUDA", "worker_id": "A16IQOX0DK14OJ"}], "B07CRQD2HF": [{"asin": "B07CRQD2HF", "instruction": "looking for women's plus size fineline denim jegging which is machine washable and have regular fit and colour must be radiant purple", "attributes": ["machine wash", "elastic waistband", "regular fit"], "options": ["color: radiant purple", "size: 30 plus petite"], "instruction_attributes": ["machine wash", "regular fit"], "instruction_options": ["radiant purple"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP6SAO0", "worker_id": "A10OGH5CQBXL5N"}], "B09PLGRKBR": [{"asin": "B09PLGRKBR", "instruction": "i want long lasting eye shadow in color c.", "attributes": ["long lasting", "highly pigmented", "eye shadow"], "options": ["color: c"], "instruction_attributes": ["long lasting", "eye shadow"], "instruction_options": ["c"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTF9N9P", "worker_id": "A1NF6PELRKACS9"}], "B07J5S57B9": [{"asin": "B07J5S57B9", "instruction": "i want a desktop computer with intel quad core i5 processor.", "attributes": ["core i5", "quad core"], "options": [""], "instruction_attributes": ["core i5", "quad core"], "instruction_options": [], "assignment_id": "37M28K1J01N18XG9DA49NC0PQCFJAN", "worker_id": "ASWFLI3N8X72G"}], "B07R5C65BW": [{"asin": "B07R5C65BW", "instruction": "i am looking for a low fat low calorie jerky", "attributes": ["low fat", "low calorie"], "options": [""], "instruction_attributes": ["low fat", "low calorie"], "instruction_options": [], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AR5WBO", "worker_id": "A9QRQL9CFJBI7"}], "B09FQ693YW": [{"asin": "B09FQ693YW", "instruction": "i am looking for a round w | glass top coffee tables for living room.", "attributes": ["mid century", "space saving", "living room"], "options": ["color: espresso", "size: round w | glass top"], "instruction_attributes": ["living room"], "instruction_options": ["round w | glass top"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZBZWUQ", "worker_id": "A9QRQL9CFJBI7"}], "B00LYHHE7A": [{"asin": "B00LYHHE7A", "instruction": "i am looking for chocolate covered cream bon in a 8 ounce, holly box", "attributes": ["chocolate covered", "great gift"], "options": ["flavor: holly box", "size: 8 ounce"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["holly box", "8 ounce"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0T3ACZ", "worker_id": "A258PTOZ3D2TQR"}], "B093YVQFH4": [{"asin": "B093YVQFH4", "instruction": "i'm looking for a laundry bag", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMXXG22", "worker_id": "A2Y2TURT2VEYZN"}], "B09H6ZRY27": [{"asin": "B09H6ZRY27", "instruction": "i'm looking for skin care for lip care products want to buy.", "attributes": ["easy carry", "long lasting", "fine lines"], "options": [""], "instruction_attributes": ["easy carry", "long lasting"], "instruction_options": [], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OPF99X", "worker_id": "A16IQOX0DK14OJ"}], "B07GW6PTJN": [{"asin": "B07GW6PTJN", "instruction": "looking for bamboo toothbrush with charcoal bristles", "attributes": ["eco friendly", "bpa free", "cruelty free"], "options": ["color: kids! soft - flat - charcoal bristles", "size: 1 count (pack of 1)"], "instruction_attributes": ["eco friendly"], "instruction_options": ["kids! soft - flat - charcoal bristles"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3K7YRZ", "worker_id": "A10OGH5CQBXL5N"}], "B009GUNDTU": [{"asin": "B009GUNDTU", "instruction": "i want high performance 6 ft usb 2.0 male to male cable color black", "attributes": ["gold plated", "high performance"], "options": ["color: black", "pattern name: cable + 6ft usb 2.0 a male to b male cable", "size: 10 feet"], "instruction_attributes": ["high performance"], "instruction_options": ["black", "cable + 6ft usb 2.0 a male to b male cable"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTQR4VL", "worker_id": "A3N9ZYQAESNFQH"}], "B077JT9MWC": [{"asin": "B077JT9MWC", "instruction": "i am looking for leak proof travel bottle. please choose pack of 50.", "attributes": ["bpa free", "leak proof", "non toxic", "long lasting", "travel bottles"], "options": ["color: clear", "size: pack of 50"], "instruction_attributes": ["leak proof", "travel bottles"], "instruction_options": ["pack of 50"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRSPZBV", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B077JT9MWC", "instruction": "i'm looking for a pack of 96 eight-ounce amber-colored travel bottles that are bpa free.", "attributes": ["bpa free", "leak proof", "non toxic", "long lasting", "travel bottles"], "options": ["color: amber", "size: pack of 96"], "instruction_attributes": ["bpa free", "travel bottles"], "instruction_options": ["amber", "pack of 96"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZJN7CR", "worker_id": "A345TDMHP3DQ3G"}], "B0928MYN4B": [{"asin": "B0928MYN4B", "instruction": "i'm looking for black colored round table accent table for bedroom uses.", "attributes": ["non slip", "space saving", "easy clean", "easy assemble", "solid wood", "living room"], "options": ["color: black walnut"], "instruction_attributes": ["easy clean", "living room"], "instruction_options": ["black walnut"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HY41DV", "worker_id": "A16IQOX0DK14OJ"}], "B00XS4M5NU": [{"asin": "B00XS4M5NU", "instruction": "i am looking for a wild orchid round lip gross which is cruelty free.", "attributes": ["cruelty free", "highly pigmented"], "options": ["color: wild orchid"], "instruction_attributes": ["cruelty free"], "instruction_options": ["wild orchid"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR4BA0B", "worker_id": "AHU9OLV0YKIIW"}], "B09Q91CSQW": [{"asin": "B09Q91CSQW", "instruction": "i'm looking for open toe pillow slippers for need to buy it.", "attributes": ["open toe", "knee high", "high heel", "ankle strap", "closed toe"], "options": ["color: p-aa-khaki", "size: 6.5"], "instruction_attributes": ["open toe", "knee high", "high heel"], "instruction_options": ["p-aa-khaki"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC6V0DO", "worker_id": "A16IQOX0DK14OJ"}], "B083FWFFZ9": [{"asin": "B083FWFFZ9", "instruction": "i'm looking for hair removal for women's for rose gold it easy to use.", "attributes": ["rose gold", "hair growth"], "options": [""], "instruction_attributes": ["rose gold"], "instruction_options": [], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR3CA0A", "worker_id": "A16IQOX0DK14OJ"}], "B00BPBCHEU": [{"asin": "B00BPBCHEU", "instruction": "i'm looking for a pack of towelette deodorant long lasting with 10 in sensitive scent", "attributes": ["anti perspirant", "long lasting", "tea tree"], "options": ["scent: sensitive", "size: 10 count (pack of 1)"], "instruction_attributes": ["long lasting"], "instruction_options": ["sensitive", "10 count (pack of 1)"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB15WULY", "worker_id": "A2Y2TURT2VEYZN"}], "B08LNWS2QJ": [{"asin": "B08LNWS2QJ", "instruction": "i am looking for an assorted chocolate gift set that i can present to a friend.", "attributes": ["individually wrapped", "gift set", "great gift"], "options": [""], "instruction_attributes": ["gift set"], "instruction_options": [], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK673YYI", "worker_id": "AHXHM1PQTRWIQ"}], "B09QHR4TMP": [{"asin": "B09QHR4TMP", "instruction": "i am looking for long lasting disney cinderella kids 3.4oz edt spray", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS22VUK", "worker_id": "AX2EWYWZM19AZ"}], "B000YOU23C": [{"asin": "B000YOU23C", "instruction": "i'm looking for a cruelty free certified body wash which is made of natural ingredients for dry skin. also, choose pack of 1 with 16 fl oz one.", "attributes": ["cruelty free", "natural ingredients", "dry skin"], "options": ["size: 16 fl oz (pack of 1)"], "instruction_attributes": ["cruelty free", "natural ingredients", "dry skin"], "instruction_options": ["16 fl oz (pack of 1)"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJNFO92", "worker_id": "AR0VJ5XRG16UJ"}], "B092VTRBLX": [{"asin": "B092VTRBLX", "instruction": "i need a black colored shower sponge with a long handle.", "attributes": ["easy clean", "long handle"], "options": ["style: black 60g"], "instruction_attributes": ["long handle"], "instruction_options": ["black 60g"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3NLZL2", "worker_id": "A19317A3X87NVM"}], "B081YY68XK": [{"asin": "B081YY68XK", "instruction": "i would like some 54w x 29l rose straight leg jeans.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: the rose (waterless)", "size: 54w x 29l"], "instruction_attributes": ["straight leg"], "instruction_options": ["the rose (waterless)", "54w x 29l"], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1MAEGTY", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B081YY68XK", "instruction": "i am looking for men's jeans of unleaded medium indigo color that is machine washable.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: unleaded - medium indigo", "size: 66w x 30l"], "instruction_attributes": ["machine wash"], "instruction_options": ["unleaded - medium indigo"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK22UIM", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B081YY68XK", "instruction": "i would like some straight leg jeans that are a size 52w by 28l", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: the ben", "size: 52w x 28l"], "instruction_attributes": ["straight leg"], "instruction_options": ["52w x 28l"], "assignment_id": "31JLPPHS254FPN8LK8H48035JVMO32", "worker_id": "A2ECRNQ3X5LEXD"}], "B09BJFKS2R": [{"asin": "B09BJFKS2R", "instruction": "i'm looking for skin care products that color black i need to buy.", "attributes": ["easy carry", "easy use"], "options": ["color: black"], "instruction_attributes": ["easy carry", "easy use"], "instruction_options": ["black"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTEZ5D7", "worker_id": "A16IQOX0DK14OJ"}], "B08SJ52X11": [{"asin": "B08SJ52X11", "instruction": "i'm looking for assembly required for home office chairs with wheels and it want to buy it.", "attributes": ["assembly required", "lumbar support"], "options": ["color: blue"], "instruction_attributes": ["assembly required", "lumbar support"], "instruction_options": ["blue"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWY3C1H", "worker_id": "A16IQOX0DK14OJ"}], "B00PG32AZO": [{"asin": "B00PG32AZO", "instruction": "i'm looking for 3.17 ounce coconut chips with tropical mango flavor and it should be soy free", "attributes": ["non gmo", "gluten free", "soy free", "plant based"], "options": ["flavor name: tropical mango", "size: 3.17 ounce (pack of 12)"], "instruction_attributes": ["soy free"], "instruction_options": ["tropical mango", "3.17 ounce (pack of 12)"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7WPUCP", "worker_id": "A1Q0EUNCS50S8M"}], "B08R3MDTTQ": [{"asin": "B08R3MDTTQ", "instruction": "i am looking for an easy to install iphone 12 case with a butterfly orchid design on it.", "attributes": ["easy install", "wireless charging"], "options": ["color: butterfly orchid"], "instruction_attributes": ["easy install"], "instruction_options": ["butterfly orchid"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MC0YYZY", "worker_id": "AJDQGOTMB2D80"}], "B0993BSYGB": [{"asin": "B0993BSYGB", "instruction": "i need a dust proof carrying case for my vr head set.", "attributes": ["dust proof", "carrying case"], "options": [""], "instruction_attributes": ["dust proof", "carrying case"], "instruction_options": [], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVY09IDY", "worker_id": "A1NF6PELRKACS9"}], "B07TK36W5Z": [{"asin": "B07TK36W5Z", "instruction": "i am looking for a sulfate & paraben free shampoo", "attributes": ["paraben free", "sulfate free", "cruelty free", "argan oil", "sensitive skin"], "options": ["size: shampoo"], "instruction_attributes": ["paraben free", "sulfate free"], "instruction_options": ["shampoo"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P751SVL", "worker_id": "A9QRQL9CFJBI7"}], "B00MG4X33Y": [{"asin": "B00MG4X33Y", "instruction": "i need a king size bed with faux leather upholstery. pick one in dark brown.", "attributes": ["faux leather", "king size", "contemporary design", "box spring"], "options": ["color: dark brown", "size: full"], "instruction_attributes": ["faux leather", "king size"], "instruction_options": ["dark brown"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYPJN7B", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B00MG4X33Y", "instruction": "i am looking for a contemporary designed california king faux leather bed.", "attributes": ["faux leather", "king size", "contemporary design", "box spring"], "options": ["color: grey", "size: california king"], "instruction_attributes": ["faux leather", "contemporary design"], "instruction_options": ["california king"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7V1P50", "worker_id": "A2KW17G25L25R8"}], "B0851J4RR2": [{"asin": "B0851J4RR2", "instruction": "i'm looking for pink colored rectangular kitchen rugs for dinning table.", "attributes": ["dining room", "living room"], "options": ["color: pink", "item shape: rectangular", "size: 5 ft"], "instruction_attributes": ["dining room"], "instruction_options": ["pink", "rectangular"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN0MPTU", "worker_id": "A16IQOX0DK14OJ"}], "B09DV92FT3": [{"asin": "B09DV92FT3", "instruction": "i am looking for a medium long sleeve shirts for men", "attributes": ["winter warm", "slim fit", "daily casual", "light weight", "fleece lined", "short sleeve", "long sleeve", "faux fur", "gym workout"], "options": ["color: 3 red", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZY7ZJR", "worker_id": "A9QRQL9CFJBI7"}], "B09C8D6JL9": [{"asin": "B09C8D6JL9", "instruction": "i am looking for nickel color pendant lights that are easy to install.", "attributes": ["easy install", "pendant light", "brushed nickel"], "options": ["color: nickel", "size: b style"], "instruction_attributes": ["easy install"], "instruction_options": ["nickel"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21P0FQ7", "worker_id": "A1Q8PPQQCWGY0D"}], "B0831R944X": [{"asin": "B0831R944X", "instruction": "tropical fruit punch drink", "attributes": ["non alcoholic", "source vitamin"], "options": ["flavor name: tropical fruit punch"], "instruction_attributes": ["source vitamin"], "instruction_options": ["tropical fruit punch"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XRSGNV", "worker_id": "A10OGH5CQBXL5N"}], "B08F4S851D": [{"asin": "B08F4S851D", "instruction": "can i get a wireless charging station dock for my iphone xr which is fast charging ?", "attributes": ["fast charging", "aluminum alloy", "wireless charging"], "options": [""], "instruction_attributes": ["fast charging", "wireless charging"], "instruction_options": [], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODN1EWN", "worker_id": "AHU9OLV0YKIIW"}], "B09HBLKBX7": [{"asin": "B09HBLKBX7", "instruction": "i'm looking for a 6pcs amosfun heart cake toppers.", "attributes": ["birthday cake", "cupcake picks", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["birthday party"], "instruction_options": ["pink"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA1J8AQ", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08PDP4LVH": [{"asin": "B08PDP4LVH", "instruction": "looking for phone ring light with aaa batteries", "attributes": ["batteries included", "easy use", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGLJO0S", "worker_id": "A10OGH5CQBXL5N"}], "B07YG49L5F": [{"asin": "B07YG49L5F", "instruction": "i am looking for a women's arch support ankle boots which contain soft memory foam. also choose brown in color and us 9 size.", "attributes": ["non slip", "arch support", "memory foam"], "options": ["color: brown", "size: us:9"], "instruction_attributes": ["arch support", "memory foam"], "instruction_options": ["brown", "us:9"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3SXZMQ", "worker_id": "A2HMEGTAFO0CS8"}], "B08DM4LXJD": [{"asin": "B08DM4LXJD", "instruction": "i am looking for nickel finish floor lamp", "attributes": ["brushed nickel", "nickel finish"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5WO4FI", "worker_id": "A16M39T60N60NO"}], "B09784RRXP": [{"asin": "B09784RRXP", "instruction": "i am looking for a 3x large breeches for wide legs", "attributes": ["wide leg", "elastic waist"], "options": ["color: c", "size: 3x-large"], "instruction_attributes": ["wide leg"], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1I5U3I", "worker_id": "A9QRQL9CFJBI7"}], "B096TFX9G3": [{"asin": "B096TFX9G3", "instruction": "i am looking for a long sleeve sweater for a teen girl which is able to do cold wash. also choose red in color and large size.", "attributes": ["wash cold", "hand wash", "long sleeve", "short sleeve", "teen girls", "dry clean"], "options": ["color: 2-red", "size: large"], "instruction_attributes": ["wash cold", "long sleeve", "teen girls"], "instruction_options": ["2-red", "large"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWDGNFT", "worker_id": "A2HMEGTAFO0CS8"}], "B07FYT2X18": [{"asin": "B07FYT2X18", "instruction": "i am searching for 3 dozen baked fresh cookie gifts which should be wrapped individually.", "attributes": ["baked fresh", "individually wrapped"], "options": ["style: 3 dozen"], "instruction_attributes": ["baked fresh", "individually wrapped"], "instruction_options": ["3 dozen"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79QY1H5", "worker_id": "A9ZM1P6LBW79"}], "B09QKL7MNP": [{"asin": "B09QKL7MNP", "instruction": "i'm looking for high heel and sandal for drying shower.", "attributes": ["quick drying", "non slip", "high heel", "rubber sole"], "options": ["color: black", "size: 7"], "instruction_attributes": ["high heel"], "instruction_options": ["black"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTLHV5A", "worker_id": "A16IQOX0DK14OJ"}], "B09SLZ21XY": [{"asin": "B09SLZ21XY", "instruction": "i would like a h color natural hairpiece.", "attributes": ["natural hair", "synthetic hair"], "options": ["color: h"], "instruction_attributes": ["natural hair"], "instruction_options": ["h"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZK18O7", "worker_id": "A1WS884SI0SLO4"}], "B09BVH7353": [{"asin": "B09BVH7353", "instruction": "i'm looking for high definition it was easy to use.", "attributes": ["high definition", "4g lte"], "options": [""], "instruction_attributes": ["high definition", "4g lte"], "instruction_options": [], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ4ZISA", "worker_id": "A16IQOX0DK14OJ"}], "B00AVO4SFI": [{"asin": "B00AVO4SFI", "instruction": "i want to buy a product and i need your help. find this henna brand: henna hair & beard dye also chooses an auburn color.", "attributes": ["plant based", "cruelty free", "hair dye"], "options": ["color: auburn", "size: pack of 1"], "instruction_attributes": ["hair dye"], "instruction_options": ["auburn", "pack of 1"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOHHLMH", "worker_id": "A15IJ20C3R4HUO"}], "B09T31DD3R": [{"asin": "B09T31DD3R", "instruction": "i am looking for ultra hd android box with 4gb ram and 32gb rom.", "attributes": ["ultra hd", "easy use", "high definition", "quad core"], "options": ["color: 4gb+32gb"], "instruction_attributes": ["ultra hd"], "instruction_options": ["4gb+32gb"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG2KBG7", "worker_id": "A3FG5PQHG5AH3Y"}], "B08S7FJ1PR": [{"asin": "B08S7FJ1PR", "instruction": "i would like a 6 by 9 foot printed photo backdrop for digital photography.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 01", "size: 6x9 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["printed backdrop 01", "6x9 ft"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVU39XH", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08S7FJ1PR", "instruction": "i need a printed backdrop that is for digital photography.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 02", "size: 6x9 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["printed backdrop 02"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD3SRI9", "worker_id": "A2ECRNQ3X5LEXD"}], "B0032GMRBO": [{"asin": "B0032GMRBO", "instruction": "i am looking for high fructose chocolate bar. please choose peanut butter flavor.", "attributes": ["artificial colors", "high fructose", "artificial flavors"], "options": ["flavor name: peanut butter", "size: pack of 30"], "instruction_attributes": ["high fructose"], "instruction_options": ["peanut butter"], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0UWCC7", "worker_id": "A3FG5PQHG5AH3Y"}], "B09FY3T27X": [{"asin": "B09FY3T27X", "instruction": "i am looking for a pair of women's size 5.5 knee high snow boots.", "attributes": ["knee high", "steel toe", "high heel", "rubber sole"], "options": ["color: f-gray", "size: 5.5"], "instruction_attributes": ["knee high"], "instruction_options": ["5.5"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I72FDN", "worker_id": "A1EREKSZAA9V7B"}], "B07JJF83L3": [{"asin": "B07JJF83L3", "instruction": "i am looking for professional water resistant airbrush makeup foundation having light golden luminous color, .5 fl oz", "attributes": ["water resistant", "fine mist", "dry skin"], "options": ["color: light golden luminous", "size: .5 fl oz"], "instruction_attributes": ["water resistant"], "instruction_options": ["light golden luminous", ".5 fl oz"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYXR36V", "worker_id": "A258PTOZ3D2TQR"}], "B07HHMJJ7G": [{"asin": "B07HHMJJ7G", "instruction": "i want a non toxic sulfate free cruelty free shampoo for healthy hair", "attributes": ["sulfate free", "paraben free", "non toxic", "cruelty free"], "options": [""], "instruction_attributes": ["non toxic", "cruelty free"], "instruction_options": [], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDIN2O8", "worker_id": "A3N9ZYQAESNFQH"}], "B08CD9H351": [{"asin": "B08CD9H351", "instruction": "i am looking for elastics & ties of black color for hair styling", "attributes": ["high quality", "hair styling"], "options": ["color: black", "size: small (pack of 4)"], "instruction_attributes": ["hair styling"], "instruction_options": ["black"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1BFYGM", "worker_id": "A9QRQL9CFJBI7"}], "B00U4KXNR8": [{"asin": "B00U4KXNR8", "instruction": "i want 4 ounce anti ageing kit with bag which is good for face firming and fine lines.", "attributes": ["anti aging", "fine lines"], "options": ["size: 4 ounce kit with bag"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN15GOI", "worker_id": "ASWFLI3N8X72G"}], "B004BCX8JS": [{"asin": "B004BCX8JS", "instruction": "i am looking for highly pigmented lipstick in seine sunset color", "attributes": ["highly pigmented", "argan oil"], "options": ["color: seine sunset", "style: nudes"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["seine sunset"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L3UCVS", "worker_id": "A16M39T60N60NO"}, {"asin": "B004BCX8JS", "instruction": "i am looking for highly pigmented lipstick in golden grape color", "attributes": ["highly pigmented", "argan oil"], "options": ["color: golden grape", "style: nudes"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["golden grape"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNEK8XI6", "worker_id": "A16M39T60N60NO"}, {"asin": "B004BCX8JS", "instruction": "i'm looking for a volcanic reds lipstick with argan oil", "attributes": ["highly pigmented", "argan oil"], "options": ["color: volcanic", "style: reds"], "instruction_attributes": ["argan oil"], "instruction_options": ["volcanic", "reds"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8Z1ZPJ", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B004BCX8JS", "instruction": "am looking for highly pigmented l'oreal paris makeup colour riche original creamy, british red color", "attributes": ["highly pigmented", "argan oil"], "options": ["color: british red", "style: nudes"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["british red"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFED9D5", "worker_id": "A1IL2K0ELYI090"}], "B099JH5LW4": [{"asin": "B099JH5LW4", "instruction": "i am looking for bathroom laundry room wood framed decor.", "attributes": ["wood frame", "solid wood"], "options": ["color: bathroom - 1", "size: 6 x 17 inch"], "instruction_attributes": ["wood frame"], "instruction_options": ["bathroom - 1"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINT772H", "worker_id": "A3FG5PQHG5AH3Y"}], "B01MU8Z4FX": [{"asin": "B01MU8Z4FX", "instruction": "i am looking for gluten free chocolate with blueberry flavor", "attributes": ["individually wrapped", "nut free", "low calorie", "gluten free", "baby shower"], "options": ["flavor name: navy blue | blueberry", "size: 24 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1YZ2HE", "worker_id": "A16M39T60N60NO"}], "B09BK48GJZ": [{"asin": "B09BK48GJZ", "instruction": "vegan beard and stache balm paraben free", "attributes": ["paraben free", "cruelty free"], "options": ["color: vegan beard wax"], "instruction_attributes": ["paraben free"], "instruction_options": ["vegan beard wax"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UQS1GD", "worker_id": "A10OGH5CQBXL5N"}], "B0785W9DZJ": [{"asin": "B0785W9DZJ", "instruction": "i am looking for a short sleeve t shirts for men of venom red (690) | black color.", "attributes": ["quick drying", "machine wash", "short sleeve"], "options": ["color: venom red (690) | black", "size: 3x-large tall"], "instruction_attributes": ["short sleeve"], "instruction_options": ["venom red (690) | black"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X6IGPG", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B0785W9DZJ", "instruction": "i am looking for one size t-shirts having short sleeves.", "attributes": ["quick drying", "machine wash", "short sleeve"], "options": ["color: baroque green (311) | black", "size: one size"], "instruction_attributes": ["short sleeve"], "instruction_options": ["one size"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4FCSBA", "worker_id": "A1Q8PPQQCWGY0D"}], "B097HSHC8C": [{"asin": "B097HSHC8C", "instruction": "i am looking for a 2 pack of ready to eat turkey", "attributes": ["ready eat", "fully cooked"], "options": ["flavor name: meatloaf with tomato sauce", "size: 2 pack"], "instruction_attributes": ["ready eat"], "instruction_options": ["2 pack"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJNX0WV", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B097HSHC8C", "instruction": "i'm looking for a fully cooked meat loaf that comes in a four pack and has tomato sauce.", "attributes": ["ready eat", "fully cooked"], "options": ["flavor name: meatloaf with tomato sauce", "size: 4 pack"], "instruction_attributes": ["fully cooked"], "instruction_options": ["meatloaf with tomato sauce", "4 pack"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEXPUUU", "worker_id": "AR9AU5FY1S3RO"}], "B09MS76DBX": [{"asin": "B09MS76DBX", "instruction": "i am looking for makeup remover for sensitive skin.", "attributes": ["double sided", "easy use", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDYWIAI", "worker_id": "A3FG5PQHG5AH3Y"}], "B01HJWDKPI": [{"asin": "B01HJWDKPI", "instruction": "i would like a 12 foot gold plated hdmi male to male cable. and can i have 10 of them.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 12 feet (single pack)", "style: hdmi male to female"], "instruction_attributes": ["gold plated"], "instruction_options": ["10 pack", "12 feet (single pack)", "hdmi male to female"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAE2IFO", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01HJWDKPI", "instruction": "i need a gold plated hdmi cable.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 30 feet (4-pack)", "style: hdmi male to female"], "instruction_attributes": ["gold plated"], "instruction_options": [], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4V3EWY0", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B01HJWDKPI", "instruction": "i need a high speed hdmi male to male cable which is gold plated.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 1.5 feet (10-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["hdmi male to male"], "assignment_id": "3JW0YLFXR4QKLUJBLEJGURROKQBWWO", "worker_id": "A1NF6PELRKACS9"}], "B09Q88VLSZ": [{"asin": "B09Q88VLSZ", "instruction": "men's tuxedo t-shirt for daily wear also choose white colour", "attributes": ["long sleeve", "polyester spandex", "daily wear"], "options": ["color: white", "size: x-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["white"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMETXDV", "worker_id": "A10OGH5CQBXL5N"}], "B0168IVTN4": [{"asin": "B0168IVTN4", "instruction": "i want a pair of moisture wicking outdoor pants which is also machine washable. get me something in adaptive green versastretch color.", "attributes": ["moisture wicking", "machine wash", "nylon spandex"], "options": ["color: adaptive green versastretch", "size: 42w x 36l"], "instruction_attributes": ["moisture wicking", "machine wash"], "instruction_options": ["adaptive green versastretch"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT36AJH1", "worker_id": "A1NF6PELRKACS9"}], "B09S1591W1": [{"asin": "B09S1591W1", "instruction": "i am looking for a large short sleeve t shirt for women", "attributes": ["wash cold", "slim fit", "hand wash", "machine wash", "short sleeve", "long sleeve"], "options": ["color: 1-green", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["large"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3TUZ9V", "worker_id": "A9QRQL9CFJBI7"}], "B09PTH1DRG": [{"asin": "B09PTH1DRG", "instruction": "hp slim tower desktop pc intel core j4025 processor (32gb/1tb hdd/1 tb ssd wired keyboard)", "attributes": ["core i5", "intel core"], "options": ["size: 32gb ram | 1tb hdd + 1tb ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["32gb ram | 1tb hdd + 1tb ssd"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54SO83T", "worker_id": "A3N9ZYQAESNFQH"}], "B097RGR7PF": [{"asin": "B097RGR7PF", "instruction": "i'm looking for smartwatch accessories for compatible apple and glass screen and need to buy it.", "attributes": ["compatible apple", "glass screen", "tempered glass"], "options": ["color: golden&grey&black", "size: 44mm"], "instruction_attributes": ["compatible apple", "glass screen"], "instruction_options": ["golden&grey&black"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKCSENT", "worker_id": "A16IQOX0DK14OJ"}], "B09F574B6R": [{"asin": "B09F574B6R", "instruction": "i am looking for fragrance free lotion for dry skin", "attributes": ["fragrance free", "long lasting", "cruelty free", "sensitive skin", "dry skin"], "options": [""], "instruction_attributes": ["fragrance free", "dry skin"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG7OLSK", "worker_id": "A258PTOZ3D2TQR"}], "B09QPM1MWH": [{"asin": "B09QPM1MWH", "instruction": "i would like a white full size stairway bunk bed with a steel frame.", "attributes": ["heavy duty", "twin size", "space saving", "box spring", "steel frame"], "options": ["color: white", "size: full", "style: twin over full stairway bunk beds with t..."], "instruction_attributes": ["steel frame"], "instruction_options": ["white", "full", "twin over full stairway bunk beds with t..."], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTU7P9K", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09QPM1MWH", "instruction": "i am looking for grey color steel metal bedframe that is heavy duty.", "attributes": ["heavy duty", "twin size", "space saving", "box spring", "steel frame"], "options": ["color: grey", "size: twin-over-full", "style: metal triple bunk bed with desk and shel..."], "instruction_attributes": ["heavy duty"], "instruction_options": ["grey"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MMMWLG", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09QPM1MWH", "instruction": "i'm looking for heavy duty twin solid wood triple bunk bed with 2 drawer.", "attributes": ["heavy duty", "twin size", "space saving", "box spring", "steel frame"], "options": ["color: espresso", "size: twin", "style: solid wood triple bunk bed with 2 drawer..."], "instruction_attributes": ["heavy duty"], "instruction_options": ["twin", "solid wood triple bunk bed with 2 drawer..."], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGN6O0J", "worker_id": "A1Q0EUNCS50S8M"}, {"asin": "B09QPM1MWH", "instruction": "i want an espresso colored cotoala twin size daybed.", "attributes": ["heavy duty", "twin size", "space saving", "box spring", "steel frame"], "options": ["color: espresso", "size: full with shelf", "style: wood house bunk bed with two drawers and..."], "instruction_attributes": ["twin size"], "instruction_options": ["espresso"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G76C74K", "worker_id": "A2RBF3IIJP15IH"}], "B09BQQ3KMY": [{"asin": "B09BQQ3KMY", "instruction": "i looking foot files for removing dead foot skin stainless steel can clean easly set of 20 pcs", "attributes": ["non slip", "easy clean", "stainless steel", "dead skin"], "options": ["color: 20pcs"], "instruction_attributes": ["easy clean", "stainless steel", "dead skin"], "instruction_options": ["20pcs"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5G6IWY", "worker_id": "A3N9ZYQAESNFQH"}], "B0877PX27D": [{"asin": "B0877PX27D", "instruction": "i am looking for an alcohol free night cream for my face. make sure it is for sensitive skin.", "attributes": ["alcohol free", "fine lines", "sensitive skin"], "options": ["size: 1.7 ounce (pack of 1)", "style: night"], "instruction_attributes": ["alcohol free", "sensitive skin"], "instruction_options": ["night"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAV1ZXS", "worker_id": "A1NF6PELRKACS9"}], "B08HCVLVJ8": [{"asin": "B08HCVLVJ8", "instruction": "i need two lounge chairs for outdoors. it should be in grey, easy to assemble with a steel frame.", "attributes": ["machine washable", "easy assemble", "steel frame"], "options": ["color: grey", "item package quantity: 2"], "instruction_attributes": ["easy assemble", "steel frame"], "instruction_options": ["grey", "2"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TZFUSN", "worker_id": "A1NF6PELRKACS9"}], "B09FW83GBK": [{"asin": "B09FW83GBK", "instruction": "gummy and candy corn 5 pound with resealable bag", "attributes": ["gmo free", "resealable bag"], "options": ["size: 5 pound (bulk)"], "instruction_attributes": ["resealable bag"], "instruction_options": ["5 pound (bulk)"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHB61ER", "worker_id": "A10OGH5CQBXL5N"}], "B01D7SO5AW": [{"asin": "B01D7SO5AW", "instruction": "i'm looking for a anti perspirant deodorant that is long lasting.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": [], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UF9A3I", "worker_id": "AR0VJ5XRG16UJ"}], "B09SYT5CX8": [{"asin": "B09SYT5CX8", "instruction": "help me find a high quality, easy clean set of massage table covers in blue.", "attributes": ["high quality", "non toxic", "easy clean", "quality materials", "beauty salon"], "options": ["color: blue", "size: 60*180cm"], "instruction_attributes": ["high quality", "easy clean"], "instruction_options": ["blue"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQCMJAU", "worker_id": "A2CJFO19NY4T5R"}], "B004Y9GY44": [{"asin": "B004Y9GY44", "instruction": "i am looking for a 120 light concealers & neutralizers for dark circles", "attributes": ["anti aging", "dark circles", "fine lines"], "options": ["color: 120 light"], "instruction_attributes": ["dark circles"], "instruction_options": ["120 light"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0MZYSC1", "worker_id": "A9QRQL9CFJBI7"}], "B07B3RJZMJ": [{"asin": "B07B3RJZMJ", "instruction": "i'm looking for eye shadow for eye makeup.", "attributes": ["high quality", "eye shadow", "nail art"], "options": ["color: k"], "instruction_attributes": ["eye shadow"], "instruction_options": ["k"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7XKP5N", "worker_id": "A16IQOX0DK14OJ"}], "B09T2Z324R": [{"asin": "B09T2Z324R", "instruction": "i need a high quality bed cover that is easy to clean. find something in purple.", "attributes": ["high quality", "non toxic", "easy clean", "quality materials", "beauty salon"], "options": ["color: purple", "size: 80*190cm"], "instruction_attributes": ["high quality", "easy clean"], "instruction_options": ["purple"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1N26FD", "worker_id": "A1NF6PELRKACS9"}], "B09NRDMBFB": [{"asin": "B09NRDMBFB", "instruction": "i'm looking for temper glass and glass screen for cell phones acesseries and the color fray need to buy it.", "attributes": ["glass screen", "tempered glass"], "options": ["color: gray"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["gray"], "assignment_id": "3N8OEVH1F204BC17361WW31GENJOO0", "worker_id": "A16IQOX0DK14OJ"}], "B08NTY56S6": [{"asin": "B08NTY56S6", "instruction": "i am looking for hair growth oil with natural ingredients", "attributes": ["cruelty free", "natural ingredients", "hair growth", "hair loss", "hair treatment", "dry hair"], "options": [""], "instruction_attributes": ["natural ingredients", "hair growth", "hair treatment"], "instruction_options": [], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDIZ2OK", "worker_id": "A10OGH5CQBXL5N"}], "B0973JHGNF": [{"asin": "B0973JHGNF", "instruction": "i am looking for a cake toppers for party supplies and flavor must be new cake toy- cheese flavor (girls).", "attributes": ["birthday cake", "party supplies", "birthday party"], "options": ["flavor name: new cake toy- cheese flavor (girls)"], "instruction_attributes": ["party supplies"], "instruction_options": ["new cake toy- cheese flavor (girls)"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIV9MTT", "worker_id": "A9QRQL9CFJBI7"}], "B097F2ZZ2T": [{"asin": "B097F2ZZ2T", "instruction": "i'm looking for soy wax for candles and its for long lasting.", "attributes": ["lead free", "eco friendly", "long lasting", "soy wax"], "options": [""], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": [], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB98R8NJ", "worker_id": "A16IQOX0DK14OJ"}], "B09HJGNLSW": [{"asin": "B09HJGNLSW", "instruction": "i would like a standing shelf unit for my living room.", "attributes": ["space saving", "storage unit", "storage space", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI5G3TK", "worker_id": "A1WS884SI0SLO4"}], "B07HLW5F1L": [{"asin": "B07HLW5F1L", "instruction": "i need a vegan smoothie in chocolate strawberry flavor. it should be soy and lactose free.", "attributes": ["soy free", "dairy free", "lactose free", "gluten free", "low calorie", "plant based", "real fruit", "simple ingredients"], "options": ["flavor name: vegan chocolate strawberry", "size: 4.5 ounce (pack of 18)"], "instruction_attributes": ["soy free", "lactose free"], "instruction_options": ["vegan chocolate strawberry"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YZ6EH5", "worker_id": "A1NF6PELRKACS9"}], "B07DVDQZ8C": [{"asin": "B07DVDQZ8C", "instruction": "i would like a 3.52 ounce bottle of baby blue and pink body glitter that is long lasting.", "attributes": ["easy apply", "long lasting"], "options": ["color: baby blue with pink", "size: 3.52 ounce (pack of 1)"], "instruction_attributes": ["long lasting"], "instruction_options": ["baby blue with pink", "3.52 ounce (pack of 1)"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV30BHB", "worker_id": "A1WS884SI0SLO4"}], "B07GWH4SDR": [{"asin": "B07GWH4SDR", "instruction": "i am looking for 4 packs of fat free chicken meat.", "attributes": ["fully cooked", "fat free"], "options": ["size: 4"], "instruction_attributes": ["fat free"], "instruction_options": ["4"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A2198THP", "worker_id": "A3FG5PQHG5AH3Y"}], "B08HPTTWTT": [{"asin": "B08HPTTWTT", "instruction": "i need a sugar free and gluten free salami pack with a barolo flavor.", "attributes": ["sugar free", "gluten free", "natural flavors"], "options": ["flavor name: barolo", "size: 5.5 ounce (pack of 3)"], "instruction_attributes": ["sugar free", "gluten free"], "instruction_options": ["barolo"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V422UC", "worker_id": "A1NF6PELRKACS9"}], "B00TPLLJMI": [{"asin": "B00TPLLJMI", "instruction": "i'm looking for high speed accessories and three product of packaging.", "attributes": ["high speed", "gold plated"], "options": ["product packaging: 3 pack", "size: 15 feet", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["3 pack"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FOLBFB", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B00TPLLJMI", "instruction": "show me a single pack high speed gold plated hdmi male to female cable with 100 feet length.", "attributes": ["high speed", "gold plated"], "options": ["product packaging: single pack", "size: 100 feet", "style: hdmi male to female"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHA8OODD", "worker_id": "A3AYHESLQSDY5T"}, {"asin": "B00TPLLJMI", "instruction": "i want a 2 pack of 80 foot long gold plated hdmi male to male cables.", "attributes": ["high speed", "gold plated"], "options": ["product packaging: 2 pack", "size: 80 feet", "style: hdmi male to female"], "instruction_attributes": ["gold plated"], "instruction_options": ["2 pack", "80 feet", "hdmi male to female"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPEXORB", "worker_id": "A1WS884SI0SLO4"}], "B08M92FCMD": [{"asin": "B08M92FCMD", "instruction": "i am looking for refurbished bluetooth speaker.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISX3OYW", "worker_id": "A3FG5PQHG5AH3Y"}], "B093B59MGM": [{"asin": "B093B59MGM", "instruction": "i am looking for a slide scanner with usb and aaa batteries included. it should be easy to carry as well.", "attributes": ["easy carry", "aaa batteries"], "options": [""], "instruction_attributes": ["easy carry", "aaa batteries"], "instruction_options": [], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z1841KD", "worker_id": "A1NF6PELRKACS9"}], "B07D6HRK4X": [{"asin": "B07D6HRK4X", "instruction": "i would like to buy a large poster for the living room of size 70\"wx40\"h that is easy to install.", "attributes": ["ready hang", "easy install", "living room", "dining room"], "options": ["color: 15", "size: 70\"wx40\"h"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["70\"wx40\"h"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQFEJC3", "worker_id": "AHXHM1PQTRWIQ"}], "B08F4YS4H6": [{"asin": "B08F4YS4H6", "instruction": "i want a primer face plant based and oil free", "attributes": ["oil free", "plant based"], "options": [""], "instruction_attributes": ["oil free", "plant based"], "instruction_options": [], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV18X31", "worker_id": "A2Y2TURT2VEYZN"}], "B09GPDV5TY": [{"asin": "B09GPDV5TY", "instruction": "i am searching for high gloss storage cabinet organizer for living room", "attributes": ["high gloss", "living room"], "options": [""], "instruction_attributes": ["high gloss", "living room"], "instruction_options": [], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O1QA2O", "worker_id": "A258PTOZ3D2TQR"}], "B0042JVEVY": [{"asin": "B0042JVEVY", "instruction": "i am looking for a dresser. it should be made of engineered wood and please choose jamocha wood finish.", "attributes": ["wood finish", "engineered wood"], "options": ["color: jamocha wood finish"], "instruction_attributes": ["engineered wood"], "instruction_options": ["jamocha wood finish"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O0WA2S", "worker_id": "A3FG5PQHG5AH3Y"}], "B000HDJXGW": [{"asin": "B000HDJXGW", "instruction": "i am looking for a dairy free soft baked cookies with soy free. also choose gingerbread spice flavor and 1 ounce (pack of 36) one.", "attributes": ["nut free", "gluten free", "soy free", "dairy free", "non gmo"], "options": ["flavor name: gingerbread spice", "size: 1 ounce (pack of 36)"], "instruction_attributes": ["soy free", "dairy free"], "instruction_options": ["gingerbread spice", "1 ounce (pack of 36)"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPBEROP", "worker_id": "A2HMEGTAFO0CS8"}], "B07M68GDP8": [{"asin": "B07M68GDP8", "instruction": "i am looking for a blue linen contemporary design beds.", "attributes": ["twin size", "contemporary design", "box spring"], "options": ["color: blue linen", "size: full", "style: bed with storage drawers"], "instruction_attributes": ["contemporary design"], "instruction_options": ["blue linen"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHZS7BR", "worker_id": "A9QRQL9CFJBI7"}], "B09MH9XB39": [{"asin": "B09MH9XB39", "instruction": "i'm looking for a 4 pounds bag of individually wrapped chocolate candies.", "attributes": ["individually wrapped", "perfect gift", "baby shower"], "options": ["size: 4 pounds"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["4 pounds"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP4L7JW", "worker_id": "A13PVNQT2WWWVL"}], "B07LBY4S4G": [{"asin": "B07LBY4S4G", "instruction": "i need a facial scrub that is anti aging and is made of natural ingredients.", "attributes": ["anti aging", "cruelty free", "animal testing", "non toxic", "natural ingredients", "dead skin"], "options": [""], "instruction_attributes": ["anti aging", "natural ingredients"], "instruction_options": [], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TZHUSP", "worker_id": "A1NF6PELRKACS9"}], "B09R264MPH": [{"asin": "B09R264MPH", "instruction": "i am looking for a non-slip slide sandals shoes that has 8 wide size. ad please get me the black one", "attributes": ["non slip", "rubber sole", "soft material", "ankle strap", "rubber outsole"], "options": ["color: black", "size: 8 wide"], "instruction_attributes": ["non slip"], "instruction_options": ["black", "8 wide"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79RS1H1", "worker_id": "A2COCSUGZV28X"}], "B004QC6VAG": [{"asin": "B004QC6VAG", "instruction": "find me a light weight monopod made of carbon fiber.", "attributes": ["light weight", "carbon fiber"], "options": [""], "instruction_attributes": ["light weight", "carbon fiber"], "instruction_options": [], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIJX29Q", "worker_id": "A1NF6PELRKACS9"}], "B07WQ1VH72": [{"asin": "B07WQ1VH72", "instruction": "i want to find a plum fire hd 8 tablet with a quad core and 32 gigabytes of storage space. it needs to have a lock screen and come with a case and screen protector.", "attributes": ["dual band", "hands free", "quad core"], "options": ["color: plum", "digital storage capacity: 32 gb", "offer type: lockscreen ad-supported", "style: with case & screen protector (2-pack)"], "instruction_attributes": ["quad core"], "instruction_options": ["plum", "32 gb", "lockscreen ad-supported", "with case & screen protector (2-pack)"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIMQ85Q", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07WQ1VH72", "instruction": "i need 8\" hd display, 64 gb quad core tablet with lockscreen ad-supported", "attributes": ["dual band", "hands free", "quad core"], "options": ["color: black", "digital storage capacity: 64 gb", "offer type: lockscreen ad-supported", "style: with luna cloud gaming controller"], "instruction_attributes": ["quad core"], "instruction_options": ["64 gb", "lockscreen ad-supported"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA55A8M", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B07WQ1VH72", "instruction": "i would like a black 64 gigabyte tablet with a case and screen protector. it also needs to be able to be hands free and have a ad supported lockscreen.", "attributes": ["dual band", "hands free", "quad core"], "options": ["color: black", "digital storage capacity: 64 gb", "offer type: lockscreen ad-supported", "style: with case & screen protector (2-pack)"], "instruction_attributes": ["hands free"], "instruction_options": ["black", "64 gb", "lockscreen ad-supported", "with case & screen protector (2-pack)"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB96JN8M", "worker_id": "A1WS884SI0SLO4"}], "B07B51WS9B": [{"asin": "B07B51WS9B", "instruction": "i'm looking for nickel finish for living room.", "attributes": ["brushed nickel", "nickel finish", "living room"], "options": ["color: earth palette"], "instruction_attributes": ["brushed nickel", "nickel finish", "living room"], "instruction_options": ["earth palette"], "assignment_id": "33TIN5LC0FKDY31374RC144TXY09YM", "worker_id": "A16IQOX0DK14OJ"}], "B074Q3H6X7": [{"asin": "B074Q3H6X7", "instruction": "i am looking for an organic shampoo which is effective my hair lose . and i choose the 4 ounce hair treatment", "attributes": ["certified organic", "bpa free", "non toxic", "argan oil", "hair growth", "hair loss"], "options": ["color: hair treatment 4 ounce", "scent name: hormonal balance"], "instruction_attributes": ["certified organic", "hair loss"], "instruction_options": ["hair treatment 4 ounce"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E22J53K", "worker_id": "A2COCSUGZV28X"}, {"asin": "B074Q3H6X7", "instruction": "i am looking for a shampoo 17.5 ounce for hair growth hair loss", "attributes": ["certified organic", "bpa free", "non toxic", "argan oil", "hair growth", "hair loss"], "options": ["color: shampoo 17.5 ounce", "scent name: fertile roots"], "instruction_attributes": ["hair loss"], "instruction_options": ["shampoo 17.5 ounce"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRW3PWN", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B074Q3H6X7", "instruction": "i want a 2 ounce shampoo bottle of hormonal balance made from argan oil.", "attributes": ["certified organic", "bpa free", "non toxic", "argan oil", "hair growth", "hair loss"], "options": ["color: shampoo 2 ounce", "scent name: hormonal balance+hair treatment"], "instruction_attributes": ["argan oil"], "instruction_options": ["shampoo 2 ounce", "hormonal balance+hair treatment"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTRIO6C", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B074Q3H6X7", "instruction": "i want a bottle of flower power laritelle organic shampoo.", "attributes": ["certified organic", "bpa free", "non toxic", "argan oil", "hair growth", "hair loss"], "options": ["color: 17.5 ounce", "scent name: flower power"], "instruction_attributes": ["certified organic"], "instruction_options": ["flower power"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49YXX49", "worker_id": "A2RBF3IIJP15IH"}], "B0086UI2GU": [{"asin": "B0086UI2GU", "instruction": "i am looking healthy crispy chips snacks gluten free low fat high protein size: 4 ounce (pack of 6)", "attributes": ["gluten free", "protein serving", "low fat", "high protein", "natural flavors"], "options": ["flavor: protein breakfast cereal - honey almond", "size: 4 ounce (pack of 6)"], "instruction_attributes": ["gluten free", "low fat", "high protein"], "instruction_options": ["4 ounce (pack of 6)"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6ONRMM6", "worker_id": "A3N9ZYQAESNFQH"}], "B01N2W63JO": [{"asin": "B01N2W63JO", "instruction": "i am looking for a ac adapters for wireless bluetooth", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3WMINLGALMDE0JA33INN08NU0TFACB", "worker_id": "A9QRQL9CFJBI7"}], "B00DQQQOGY": [{"asin": "B00DQQQOGY", "instruction": "i am looking for a white engineered wood for bookcases", "attributes": ["engineered wood", "storage space"], "options": ["color: white", "pattern name: bookcase + 3-shelf bookcase"], "instruction_attributes": ["engineered wood"], "instruction_options": ["white"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DCUDWP", "worker_id": "A9QRQL9CFJBI7"}], "B07D5GQJZG": [{"asin": "B07D5GQJZG", "instruction": "i need chandelier light fixture for dining room which should have bronze finish and glass shades.", "attributes": ["clear glass", "bronze finish", "glass shade", "light fixture", "dining room"], "options": [""], "instruction_attributes": ["bronze finish", "glass shade", "light fixture", "dining room"], "instruction_options": [], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163TMQPG", "worker_id": "ASWFLI3N8X72G"}], "B07YW75RT3": [{"asin": "B07YW75RT3", "instruction": "i am looking for a set of 2 velvet fabric dining chairs for my dining room . and i choose the teal one", "attributes": ["wood frame", "solid wood", "dining room", "living room"], "options": ["color: teal"], "instruction_attributes": ["dining room"], "instruction_options": ["teal"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJP2O9T", "worker_id": "A2COCSUGZV28X"}], "B018F6PGY0": [{"asin": "B018F6PGY0", "instruction": "i need to buy some old fashioned cocktail bitters for a gift. look for the \"mole negro\" flavor.", "attributes": ["old fashioned", "perfect gift"], "options": ["flavor: mole negro"], "instruction_attributes": ["old fashioned", "perfect gift"], "instruction_options": ["mole negro"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW5H4TB", "worker_id": "AR9AU5FY1S3RO"}], "B09H7LSHMY": [{"asin": "B09H7LSHMY", "instruction": "i'm looking for short sleeve outfit large sized.", "attributes": ["long sleeve", "short sleeve", "teen girls"], "options": ["color: a8-blue", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["a8-blue", "large"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYI66LY", "worker_id": "A16IQOX0DK14OJ"}], "B07ZTS8NQP": [{"asin": "B07ZTS8NQP", "instruction": "i am looking for a fragrance free lip glosses of sweet escape color.", "attributes": ["dermatologist tested", "fragrance free", "cruelty free", "sensitive skin"], "options": ["color: sweet escape"], "instruction_attributes": ["fragrance free"], "instruction_options": ["sweet escape"], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UI8OKF", "worker_id": "A9QRQL9CFJBI7"}], "B09F5LHLH2": [{"asin": "B09F5LHLH2", "instruction": "i am looking for an oral hygiene toothbrush. it should be easy to carry.", "attributes": ["easy carry", "oral hygiene"], "options": [""], "instruction_attributes": ["easy carry", "oral hygiene"], "instruction_options": [], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CYWB3I", "worker_id": "A9ZM1P6LBW79"}], "B08QVBQ9DP": [{"asin": "B08QVBQ9DP", "instruction": "i am searching for a long lasting high quality hair drying towel to dry my hair.", "attributes": ["easy clean", "long lasting", "high quality", "dry hair"], "options": [""], "instruction_attributes": ["long lasting", "high quality", "dry hair"], "instruction_options": [], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TS8MP8", "worker_id": "A9ZM1P6LBW79"}], "B09QHKSR5W": [{"asin": "B09QHKSR5W", "instruction": "i want a quick release watch band in grey, black, white or blue.", "attributes": ["quick release", "easy install", "easy use"], "options": ["color: grey black white blue"], "instruction_attributes": ["quick release"], "instruction_options": ["grey black white blue"], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE1HTJZ", "worker_id": "A1NF6PELRKACS9"}], "B096VD3PRG": [{"asin": "B096VD3PRG", "instruction": "i'm looking for queen sized wood frames for bed frames.", "attributes": ["queen size", "box spring", "pu leather", "metal legs", "memory foam", "wood frame"], "options": ["size: queen"], "instruction_attributes": ["box spring", "metal legs", "memory foam", "wood frame"], "instruction_options": ["queen"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXN5Z2O", "worker_id": "A16IQOX0DK14OJ"}], "B08XWZ8CFC": [{"asin": "B08XWZ8CFC", "instruction": "i am looking for gluten-free, lactose-free, dairy free, non-gmo salami.", "attributes": ["grass fed", "lactose free", "gluten free", "dairy free", "non gmo", "natural ingredients"], "options": [""], "instruction_attributes": ["lactose free", "gluten free", "dairy free", "non gmo"], "instruction_options": [], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R5RYTZ", "worker_id": "A9QRQL9CFJBI7"}], "B07P8YHFHJ": [{"asin": "B07P8YHFHJ", "instruction": "men's small size soft material elastic clouser comfertable briefs", "attributes": ["machine wash", "soft material", "elastic closure", "polyester spandex"], "options": ["color: tiger", "size: small"], "instruction_attributes": ["soft material", "elastic closure"], "instruction_options": ["tiger", "small"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA9308Z30", "worker_id": "A3N9ZYQAESNFQH"}], "B07GW2GQSS": [{"asin": "B07GW2GQSS", "instruction": "i'm looking for a 7 ounce chunk chicken creast in pack of 2 and fat free", "attributes": ["fully cooked", "fat free"], "options": ["size: 7 ounce (pack of 2)"], "instruction_attributes": ["fat free"], "instruction_options": ["7 ounce (pack of 2)"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLI32FV", "worker_id": "A2Y2TURT2VEYZN"}], "B09CLLNY85": [{"asin": "B09CLLNY85", "instruction": "i am looking for sugar cookies in a gift basket", "attributes": ["baked fresh", "perfect gift", "gift basket"], "options": ["flavor name: sugar"], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQWF4BF", "worker_id": "A16M39T60N60NO"}], "B08RBSM3W2": [{"asin": "B08RBSM3W2", "instruction": "i need heavy duty blackout curtains for my living room. pick something in beige.", "attributes": ["machine washable", "heavy duty", "living room"], "options": ["color: beige", "size: 42w x 54l"], "instruction_attributes": ["heavy duty", "living room"], "instruction_options": ["beige"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6745G8", "worker_id": "A1NF6PELRKACS9"}], "B09SL2P135": [{"asin": "B09SL2P135", "instruction": "i want high quality hair in water wave bundles with closure. it should remedy my hair loss.", "attributes": ["high quality", "hair loss"], "options": ["color: water wave bundles with closure", "size: 26 28 30"], "instruction_attributes": ["high quality", "hair loss"], "instruction_options": ["water wave bundles with closure"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A1UFHZ", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B09SL2P135", "instruction": "i am looking for a curly lace frontal that is effective for hair loss. an i choose the 22 24 26+20\"closure with water wave bundles", "attributes": ["high quality", "hair loss"], "options": ["color: water wave bundles with closure", "size: 22 24 26+20\"closure"], "instruction_attributes": ["hair loss"], "instruction_options": ["water wave bundles with closure", "22 24 26+20\"closure"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW1DC1X", "worker_id": "A2COCSUGZV28X"}, {"asin": "B09SL2P135", "instruction": "can you find a high quality brazilian 13x4 curly lace frontal in size 24 24 24?", "attributes": ["high quality", "hair loss"], "options": ["color: curly 13x4 lace frontal", "size: 24 24 24"], "instruction_attributes": ["hair loss"], "instruction_options": [], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCK37DNL", "worker_id": "AMI0SOF51O3FW"}, {"asin": "B09SL2P135", "instruction": "order me four bundles of high quality curly hair extensions.", "attributes": ["high quality", "hair loss"], "options": ["color: curly hair 4 bundles", "size: 12 14 16+10\"closure"], "instruction_attributes": ["high quality"], "instruction_options": ["curly hair 4 bundles"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IVHHK5", "worker_id": "AR9AU5FY1S3RO"}], "B07TKMGM6R": [{"asin": "B07TKMGM6R", "instruction": "i am looking for a long sleeve hoodies of medium size for men.", "attributes": ["machine washable", "officially licensed", "machine wash", "polyester cotton", "long sleeve", "tumble dry"], "options": ["size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLUZFTH", "worker_id": "A9QRQL9CFJBI7"}], "B07D2HSH4D": [{"asin": "B07D2HSH4D", "instruction": "i'm looking for a high performance hdmi to displayport adapter cable that's easy to use.", "attributes": ["plug play", "high performance", "easy use", "usb port"], "options": [""], "instruction_attributes": ["high performance", "easy use"], "instruction_options": [], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6MG7UT", "worker_id": "AR9AU5FY1S3RO"}], "B08QCCRLTH": [{"asin": "B08QCCRLTH", "instruction": "i am looking for a noise cancelling computer headsets.", "attributes": ["noise cancelling", "plug play", "easy use"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWPZYXTT", "worker_id": "A9QRQL9CFJBI7"}], "B08C9ZCWVW": [{"asin": "B08C9ZCWVW", "instruction": "i looking a maroon color ceiling lights haning pandent fixture for living room", "attributes": ["light fixture", "living room", "dining room"], "options": [""], "instruction_attributes": ["light fixture", "living room"], "instruction_options": [], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KVM9JP", "worker_id": "A3N9ZYQAESNFQH"}], "B09JBVY7JD": [{"asin": "B09JBVY7JD", "instruction": "i want to shop for a two pack of glass lamp shades for pendant lamps.", "attributes": ["glass shade", "clear glass", "pendant light", "light fixture", "living room"], "options": ["color: clear water ripple glass", "size: 2 pack"], "instruction_attributes": ["glass shade", "pendant light"], "instruction_options": ["2 pack"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOHFMLG", "worker_id": "AR9AU5FY1S3RO"}], "B07955HD69": [{"asin": "B07955HD69", "instruction": "i would like a rose gold single wireless bluetooth speaker that is hands free.", "attributes": ["hands free", "wireless bluetooth"], "options": ["color: rose gold single"], "instruction_attributes": ["hands free", "wireless bluetooth"], "instruction_options": ["rose gold single"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7JQN5Y", "worker_id": "A1WS884SI0SLO4"}], "B079X4CPKD": [{"asin": "B079X4CPKD", "instruction": "i'm looking for a pack of 24 count of breakfast bars gluten free", "attributes": ["low sodium", "gluten free", "0g trans"], "options": ["flavor name: blueberry almond", "size: 24 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["blueberry almond", "24 count (pack of 1)"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO8XGJ3", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B079X4CPKD", "instruction": "i'm looking for healthy breakfast bars enriched with peanut butter.", "attributes": ["low sodium", "gluten free", "0g trans"], "options": ["flavor name: blueberry almond", "size: 24 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["24 count (pack of 1)"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1B32IW", "worker_id": "A21IUUHBSEVB56"}], "B003Q4TVK2": [{"asin": "B003Q4TVK2", "instruction": "i'm looking for caffeine free for coffee and tea.", "attributes": ["caffeine free", "sugar free"], "options": ["flavor name: turmeric latte", "size: 64 ounce (pack of 4)"], "instruction_attributes": ["caffeine free", "sugar free"], "instruction_options": ["turmeric latte"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AJ4UYS", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B003Q4TVK2", "instruction": "i want to buy chai tea which is caffeine free and has vanilla flavor, and it's in pack of 1 of 64 ounce.", "attributes": ["caffeine free", "sugar free"], "options": ["flavor name: vanilla", "size: 64 ounce (pack of 1)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["vanilla", "64 ounce (pack of 1)"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PPKQE1", "worker_id": "AJY5G987IRT25"}], "B087RDLZSG": [{"asin": "B087RDLZSG", "instruction": "i would like a size 24 brown shelves for my living room wall.", "attributes": ["wall mounted", "easy install", "storage space", "living room"], "options": ["color: brown", "size: 24"], "instruction_attributes": ["living room"], "instruction_options": ["brown", "24"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXXLO4U", "worker_id": "A1WS884SI0SLO4"}], "B001E5D0GQ": [{"asin": "B001E5D0GQ", "instruction": "i am looking for a fluoride free toothpaste", "attributes": ["fluoride free", "cruelty free", "oral hygiene"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9ED81B4", "worker_id": "A9QRQL9CFJBI7"}], "B07VTCL2JV": [{"asin": "B07VTCL2JV", "instruction": "i am looking for a synthetic sole flip flop. also, choose munsell white color and 5 narrow size.", "attributes": ["day comfort", "synthetic sole"], "options": ["color: neo flame | munsell white", "size: 5 narrow"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["neo flame | munsell white", "5 narrow"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX9ZFC0", "worker_id": "A9ZM1P6LBW79"}], "B07DN85MVR": [{"asin": "B07DN85MVR", "instruction": "i would like a pair of small black sleep bottoms that are machine washable.", "attributes": ["machine washable", "elastic waistband"], "options": ["color: black#1-a31", "size: small"], "instruction_attributes": ["machine washable"], "instruction_options": ["black#1-a31", "small"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8ENUX1", "worker_id": "A1WS884SI0SLO4"}], "B07Q5K4V3S": [{"asin": "B07Q5K4V3S", "instruction": "i'm looking for skin care for nail polish that color was aphrdesie neede.", "attributes": ["cruelty free", "nail polish"], "options": ["color: aphrodesie"], "instruction_attributes": ["nail polish"], "instruction_options": ["aphrodesie"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40WUYF2", "worker_id": "A16IQOX0DK14OJ"}], "B07Z4PX5T5": [{"asin": "B07Z4PX5T5", "instruction": "i am looking for a nylon spandex swimsuits & cover ups of 20 plus size.", "attributes": ["quick drying", "hand wash", "nylon spandex", "tummy control"], "options": ["color: hot pink", "size: 20 plus"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["20 plus"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCJ9PIG", "worker_id": "A9QRQL9CFJBI7"}], "B07H3BR9D2": [{"asin": "B07H3BR9D2", "instruction": "men's daily use slip resistance rubber sole shoe color reddish brown size: 8", "attributes": ["slip resistant", "steel toe", "synthetic sole", "rubber sole"], "options": ["color: reddish brown", "size: 8"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["reddish brown", "8"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO6V2R7", "worker_id": "A3N9ZYQAESNFQH"}], "B095CSL3SY": [{"asin": "B095CSL3SY", "instruction": "i am looking for a polyester cotton board short which is washable in machine. also choose grey one and 38 size.", "attributes": ["quick drying", "machine washable", "machine wash", "cotton spandex", "polyester cotton"], "options": ["color: grey - recycled fabric", "size: 38"], "instruction_attributes": ["machine washable", "polyester cotton"], "instruction_options": ["grey - recycled fabric", "38"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GMR3SK", "worker_id": "A2HMEGTAFO0CS8"}], "B099WVV8PM": [{"asin": "B099WVV8PM", "instruction": "i would like a full size grey bunk bed with a wooden frame.", "attributes": ["space saving", "white item", "assembly required", "wood frame", "box spring"], "options": ["color: grey with slide", "size: full"], "instruction_attributes": ["wood frame"], "instruction_options": ["grey with slide", "full"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKDZNEB", "worker_id": "A1WS884SI0SLO4"}], "B00RM5NPPS": [{"asin": "B00RM5NPPS", "instruction": "i am looking for gluten free red dog rub gourmet spice blends.", "attributes": ["gluten free", "great gift"], "options": ["flavor name: red dog rub", "size: 7.75 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["red dog rub"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UULY0E", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00RM5NPPS", "instruction": "i am looking for gluten free wow-a chihuahua gourmet spice blend.", "attributes": ["gluten free", "great gift"], "options": ["flavor name: wow-a chihuahua", "size: 4.5 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["wow-a chihuahua"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC35UK5", "worker_id": "A1EREKSZAA9V7B"}], "B09GF81JCB": [{"asin": "B09GF81JCB", "instruction": "looking for new version of modern glass dining table set for dining room", "attributes": ["long lasting", "heavy duty", "contemporary design", "metal legs", "dining room"], "options": ["color: grey", "style: new version"], "instruction_attributes": ["long lasting", "dining room"], "instruction_options": ["new version"], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOQTYV1", "worker_id": "A10OGH5CQBXL5N"}], "B096L8CY62": [{"asin": "B096L8CY62", "instruction": "i am looking for a black fast wireless universal charging stand.", "attributes": ["fast charging", "wireless charging"], "options": ["color: black", "style: 15w stand 2-pack - no psu"], "instruction_attributes": ["fast charging", "wireless charging"], "instruction_options": ["black"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWO3W68", "worker_id": "A1EREKSZAA9V7B"}], "B00H0HBBBI": [{"asin": "B00H0HBBBI", "instruction": "i'm looking for hair extension for hair growth it was high quality and need to buy it.", "attributes": ["easy use", "high quality"], "options": ["color: strawberry blonde mix #26h613 g36a"], "instruction_attributes": ["easy use", "high quality"], "instruction_options": ["strawberry blonde mix #26h613 g36a"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VHY8E4", "worker_id": "A16IQOX0DK14OJ"}], "B07ZK4J929": [{"asin": "B07ZK4J929", "instruction": "looking for machine washable 52 w by 52 cute pet window curtains", "attributes": ["machine washable", "living room"], "options": ["color: stripe51lbg2426", "size: 52\" w by 52\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["52\" w by 52\" l"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4YX0H6", "worker_id": "A10OGH5CQBXL5N"}], "B09HCRY1F6": [{"asin": "B09HCRY1F6", "instruction": "i'm looking for long sleeve clothing and it was easy to wash the color red is attractive.", "attributes": ["wash cold", "hand wash", "long sleeve", "polyester spandex", "short sleeve", "teen girls"], "options": ["color: red#d01", "size: medium"], "instruction_attributes": ["wash cold", "long sleeve", "short sleeve", "teen girls"], "instruction_options": ["red#d01"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7ZRQYE", "worker_id": "A16IQOX0DK14OJ"}], "B07XP6H6DN": [{"asin": "B07XP6H6DN", "instruction": "i would like a 2xl women's navy tank top with a officially licensed star wars logo.", "attributes": ["officially licensed", "needle sleeve", "classic fit", "star wars"], "options": ["color: navy", "fit type: women", "size: xx-large"], "instruction_attributes": ["officially licensed", "star wars"], "instruction_options": ["navy", "women", "xx-large"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKFU881", "worker_id": "A1WS884SI0SLO4"}], "B077T3SP3V": [{"asin": "B077T3SP3V", "instruction": "i am in a search for sugar free soft drink mixes of fruit punch flavor.", "attributes": ["sugar free", "source vitamin"], "options": ["flavor name: fruit punch"], "instruction_attributes": ["sugar free"], "instruction_options": ["fruit punch"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2OPNY9", "worker_id": "A14BSOU2Y5JNT0"}], "B088D1XNG5": [{"asin": "B088D1XNG5", "instruction": "i'm looking for tablets for my uses and i want red color. it was long lasting.", "attributes": ["long lasting", "quad core"], "options": ["color: red", "style: only wifi"], "instruction_attributes": ["long lasting"], "instruction_options": ["red"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06MZKX2", "worker_id": "A16IQOX0DK14OJ"}], "B07W71VWF7": [{"asin": "B07W71VWF7", "instruction": "i am looking for an intel quad core computer with 16 gb ram, 256 gb ssd and also a 1tb hdd.", "attributes": ["dual band", "high definition", "core i5", "intel core", "quad core"], "options": ["color: ddr4 cpu core i7 8550u", "size: 16gb ram 256gb ssd 1tb hdd"], "instruction_attributes": ["intel core", "quad core"], "instruction_options": ["16gb ram 256gb ssd 1tb hdd"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBCFOSQ", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07W71VWF7", "instruction": "mini pc with intel core i7 processor", "attributes": ["dual band", "high definition", "core i5", "intel core", "quad core"], "options": ["color: ddr3l cpu core i5 4200u", "size: 4gb ram 128gb ssd"], "instruction_attributes": ["intel core"], "instruction_options": [], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96D74G4", "worker_id": "A3TTGSUBIK1YCL"}], "B07L788143": [{"asin": "B07L788143", "instruction": "i need a grey or light blue colored area rug that is suitable for my living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: grey | light blue", "size: 12' x 15'"], "instruction_attributes": ["living room"], "instruction_options": ["grey | light blue"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD2HRIW", "worker_id": "A1NF6PELRKACS9"}], "B08RJ7CJG7": [{"asin": "B08RJ7CJG7", "instruction": "i'm looking for soy wax it can use make for candles.", "attributes": ["long lasting", "lead free", "eco friendly", "soy wax"], "options": ["color: jar brown"], "instruction_attributes": ["long lasting", "eco friendly", "soy wax"], "instruction_options": ["jar brown"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKQVSGE", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08RJ7CJG7", "instruction": "i want special glass soy wax scented candles.", "attributes": ["long lasting", "lead free", "eco friendly", "soy wax"], "options": ["color: glass 2"], "instruction_attributes": ["soy wax"], "instruction_options": ["glass 2"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP8P6D1", "worker_id": "A2RBF3IIJP15IH"}], "B0828M96S7": [{"asin": "B0828M96S7", "instruction": "i am looking for a silver water and birch style of anti perspirant deodorant", "attributes": ["anti perspirant", "long lasting"], "options": ["style: silver water and birch"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["silver water and birch"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0J0KGE1", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B0828M96S7", "instruction": "i am looking for long lasting sage and citrus anti perspirant.", "attributes": ["anti perspirant", "long lasting"], "options": ["style: sage and citrus"], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": ["sage and citrus"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK45Q6AX", "worker_id": "A1EREKSZAA9V7B"}], "B079M1L3GN": [{"asin": "B079M1L3GN", "instruction": "i am looking for a 3 inch queen size memory foam mattress toppers.", "attributes": ["queen size", "memory foam"], "options": ["color: 3 inch", "size: california king", "style: topper and cover"], "instruction_attributes": ["queen size", "memory foam"], "instruction_options": ["3 inch"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE23JGQO", "worker_id": "A1V2JTEEBCXR20"}], "B06XVDHJQG": [{"asin": "B06XVDHJQG", "instruction": "i am searching for dark brown synthetic hair extensions with the size of 22 inch and pack of 1.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: dark brown", "size: 22 inch (pack of 1)"], "instruction_attributes": ["synthetic hair", "hair extensions"], "instruction_options": ["dark brown", "22 inch (pack of 1)"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJRIXBL", "worker_id": "A9ZM1P6LBW79"}], "B09MQFZT7G": [{"asin": "B09MQFZT7G", "instruction": "i need a white storage cabinet tv stand that is easy to assemble and goes in my living room. it should be highly glossy.", "attributes": ["easy assemble", "high gloss", "tempered glass", "living room"], "options": ["color: 63\" white-2 cabinet"], "instruction_attributes": ["easy assemble", "high gloss", "living room"], "instruction_options": ["63\" white-2 cabinet"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCJCIPC", "worker_id": "A1NF6PELRKACS9"}], "B07QFL1S9C": [{"asin": "B07QFL1S9C", "instruction": "i need a high quality perfume atomizer bottle that is easy to carry and has 1 color.", "attributes": ["easy carry", "high quality", "fine mist"], "options": ["color: 1"], "instruction_attributes": ["easy carry", "high quality"], "instruction_options": ["1"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIOF85J", "worker_id": "A1NF6PELRKACS9"}], "B09FGLB9L8": [{"asin": "B09FGLB9L8", "instruction": "i would like a 20m digital 4g lte coaxial cable that's male to female.", "attributes": ["coaxial cable", "4g lte"], "options": ["color: n male to n female", "size: 20m"], "instruction_attributes": ["coaxial cable", "4g lte"], "instruction_options": ["n male to n female", "20m"], "assignment_id": "3IXEICO79DTUZY0BZR119DLCSX66TJ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09FGLB9L8", "instruction": "i am looking for a cable extension that is male to male and supports 4g lte.", "attributes": ["coaxial cable", "4g lte"], "options": ["color: n male to n male", "size: 15m"], "instruction_attributes": ["4g lte"], "instruction_options": ["n male to n male"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R0V7WS", "worker_id": "AHXHM1PQTRWIQ"}], "B01MCV2G56": [{"asin": "B01MCV2G56", "instruction": "i'm looking for furniture was in living room the color was crystal gray furniture was so good.", "attributes": ["lead free", "living room"], "options": ["color: frosted crystal gray", "size: 35.4 x 78.7 inches"], "instruction_attributes": ["living room"], "instruction_options": ["frosted crystal gray"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3SNZMG", "worker_id": "A16IQOX0DK14OJ"}], "B0049YMA9W": [{"asin": "B0049YMA9W", "instruction": "i'm looking for a great river organic milling flour.", "attributes": ["certified organic", "non gmo", "ready eat"], "options": ["pattern name: flour + dark rye flour", "size: 50 pound (pack of 1)", "style: graham"], "instruction_attributes": ["certified organic"], "instruction_options": ["flour + dark rye flour", "50 pound (pack of 1)", "graham"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OPB99T", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08T6YGGGX": [{"asin": "B08T6YGGGX", "instruction": "i'm looking for a vanity mirror easy to install 40x32 with light led", "attributes": ["wall mounted", "easy install"], "options": ["size: inlaid-40x32"], "instruction_attributes": ["easy install"], "instruction_options": ["inlaid-40x32"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME957D2F", "worker_id": "A2Y2TURT2VEYZN"}], "B08PYG5KJ2": [{"asin": "B08PYG5KJ2", "instruction": "i am looking for an empty lip gloss tube 5ml which is of high quality and leak proof.", "attributes": ["high quality", "leak proof", "easy carry"], "options": [""], "instruction_attributes": ["high quality", "leak proof"], "instruction_options": [], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUH95S1", "worker_id": "AHU9OLV0YKIIW"}], "B07NSFKJFC": [{"asin": "B07NSFKJFC", "instruction": "i am looking for a zero sugar flavor syrups of banana split", "attributes": ["keto friendly", "sugar free", "gluten free", "zero sugar"], "options": ["flavor name: banana split"], "instruction_attributes": ["zero sugar"], "instruction_options": ["banana split"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYPXQ9E", "worker_id": "A9QRQL9CFJBI7"}], "B0843SFXGL": [{"asin": "B0843SFXGL", "instruction": "i am looking for steel frame chairs in grey color", "attributes": ["mid century", "easy install", "easy assemble", "lumbar support", "steel frame"], "options": ["color: 3011-grey"], "instruction_attributes": ["steel frame"], "instruction_options": ["3011-grey"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTUGP9T", "worker_id": "A16M39T60N60NO"}], "B09P3PYJJJ": [{"asin": "B09P3PYJJJ", "instruction": "can i get a green women short sleeve dandelion printed blouse thats is loose fit and desirable for day comfort?", "attributes": ["loose fit", "day comfort", "hand wash", "short sleeve", "polyester spandex", "teen girls"], "options": ["color: z14-green", "size: medium"], "instruction_attributes": ["loose fit", "day comfort", "short sleeve"], "instruction_options": ["z14-green"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLYPBYK", "worker_id": "AHU9OLV0YKIIW"}], "B07RRWQQB9": [{"asin": "B07RRWQQB9", "instruction": "i'm looking for walnut color home accessories its very easy to clean.", "attributes": ["easy install", "easy clean", "easy assemble", "metal legs"], "options": ["color: walnut", "size: 39.4 inches"], "instruction_attributes": ["easy clean", "easy assemble"], "instruction_options": ["walnut"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3ZK7QU", "worker_id": "A16IQOX0DK14OJ"}], "B09MLZ254V": [{"asin": "B09MLZ254V", "instruction": "i am looking for anti slip athletic sneakers in black yellow", "attributes": ["non slip", "slip resistant", "anti slip", "arch support", "rubber sole"], "options": ["color: black yellow black-5", "size: 15 women | 12 men"], "instruction_attributes": ["anti slip"], "instruction_options": ["black yellow black-5"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV3CHBT", "worker_id": "A2MSIFDLOHI1UT"}], "B084LPGQ46": [{"asin": "B084LPGQ46", "instruction": "i'm looking for a fresh baked snack cakes made with good quality ingredients. also choose pack of 1 with weight 4 ounce one.", "attributes": ["baked fresh", "quality ingredients"], "options": ["size: 4 ounce (pack of 1)"], "instruction_attributes": ["baked fresh", "quality ingredients"], "instruction_options": ["4 ounce (pack of 1)"], "assignment_id": "326O153BMT8RVOXTJJKKGXV366ODE4", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B084LPGQ46", "instruction": "i would like two pounds of baked fresh snack cakes.", "attributes": ["baked fresh", "quality ingredients"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["baked fresh"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VF88EA", "worker_id": "A2ECRNQ3X5LEXD"}], "B07JB8FRGT": [{"asin": "B07JB8FRGT", "instruction": "i'm looking for midnight bakck smartwatch accessories. its can long lasting product.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: midnight black & white, black", "size: 38 | 40 - m"], "instruction_attributes": ["compatible apple"], "instruction_options": ["midnight black & white, black"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLKEM0J", "worker_id": "A16IQOX0DK14OJ"}], "B08XN9RKQV": [{"asin": "B08XN9RKQV", "instruction": "i'm looking for short and long sleeve for women men its for slim fit.", "attributes": ["loose fit", "daily casual", "slim fit", "short sleeve", "long sleeve"], "options": ["color: black", "size: small"], "instruction_attributes": ["loose fit", "slim fit", "short sleeve", "long sleeve"], "instruction_options": ["black"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227I3F8J", "worker_id": "A16IQOX0DK14OJ"}], "B08TC36KJL": [{"asin": "B08TC36KJL", "instruction": "i seek a tripod stand that is compatible with my iphone and is easy to carry.", "attributes": ["easy carry", "aluminum alloy"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQCE6SC", "worker_id": "AHXHM1PQTRWIQ"}], "B07QZFKFT9": [{"asin": "B07QZFKFT9", "instruction": "i am searching for a z2 black colored swimsuit cover up wide leg pants. also, choose the loose fit.", "attributes": ["wide leg", "loose fit", "drawstring closure"], "options": ["color: z2-black", "size: medium"], "instruction_attributes": ["wide leg", "loose fit"], "instruction_options": ["z2-black"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPLU6E0", "worker_id": "A9ZM1P6LBW79"}], "B09Q1NWKL8": [{"asin": "B09Q1NWKL8", "instruction": "i am looking for 6 boxes of cookies. these should be individually wrapped.", "attributes": ["individually wrapped", "great gift"], "options": ["flavor name: macadamia nut", "size: 6 boxes"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["6 boxes"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANH2SXJ", "worker_id": "A3FG5PQHG5AH3Y"}], "B07VZVYG4C": [{"asin": "B07VZVYG4C", "instruction": "i am looking for a gluten free nut bars of almond blueberry flavor", "attributes": ["gluten free", "grain free", "low sugar", "soy free", "certified organic", "dairy free", "non gmo", "natural flavors"], "options": ["flavor name: almond blueberry"], "instruction_attributes": ["gluten free"], "instruction_options": ["almond blueberry"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA6OR80", "worker_id": "A9QRQL9CFJBI7"}], "B0953BBDT4": [{"asin": "B0953BBDT4", "instruction": "i saw the butterfly flower nail art.", "attributes": ["high quality", "non toxic", "nail art"], "options": ["style: butterflyflower"], "instruction_attributes": ["nail art"], "instruction_options": ["butterflyflower"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN0CTPO", "worker_id": "A226L9F2AZ38CL"}], "B093B54PCJ": [{"asin": "B093B54PCJ", "instruction": "alex evenings a-line women's long dress is what i want to buy today, with hood draped in the back, help find this model in dark plum, hand wash.", "attributes": ["hand wash", "imported zipper"], "options": ["color: dark plum", "size: 10"], "instruction_attributes": ["hand wash"], "instruction_options": ["dark plum", "10"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VG2E8C", "worker_id": "A15IJ20C3R4HUO"}], "B09Q951VRW": [{"asin": "B09Q951VRW", "instruction": "i'm looking for a butt lifting yoga pants with high waist tummy control band. also, choose large size black colored one.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: black", "size: large"], "instruction_attributes": ["butt lifting", "tummy control", "high waist"], "instruction_options": ["black", "large"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRF9NWS", "worker_id": "AR0VJ5XRG16UJ"}], "B09PXDCS4G": [{"asin": "B09PXDCS4G", "instruction": "i am looking for a black portable bluetooth speakers which is easy carry", "attributes": ["power amplifier", "easy carry"], "options": ["color: black"], "instruction_attributes": ["easy carry"], "instruction_options": ["black"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJT4BXP", "worker_id": "A9QRQL9CFJBI7"}], "B08TX29XY9": [{"asin": "B08TX29XY9", "instruction": "i am looking for an underwater themed 6 foot by 9 foot light weight vinyl photography backdrop.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 11", "size: 6x9 ft"], "instruction_attributes": ["light weight"], "instruction_options": ["6x9 ft"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSF96D9S", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08TX29XY9", "instruction": "i am looking for a 6x9 ft backgrounds for digital photography.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 01", "size: 6x9 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["6x9 ft"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIFPFV7", "worker_id": "A9QRQL9CFJBI7"}], "B012H0BI7O": [{"asin": "B012H0BI7O", "instruction": "i am looking for high quality long lasting mudslide colored liquid lipstick.", "attributes": ["cruelty free", "long lasting", "highly pigmented", "high quality"], "options": ["color: mudslide"], "instruction_attributes": ["long lasting", "high quality"], "instruction_options": ["mudslide"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO6XGJZ", "worker_id": "A1EREKSZAA9V7B"}], "B09SV5Z81W": [{"asin": "B09SV5Z81W", "instruction": "i am looking for a antiperspirant deodorant.", "attributes": ["long lasting", "anti perspirant"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM931I13", "worker_id": "A9QRQL9CFJBI7"}], "B086JQP3JN": [{"asin": "B086JQP3JN", "instruction": "i am looking long totally cruelty-free,reusable &handmade high quality color xmz212 size :3 pair", "attributes": ["cruelty free", "high quality"], "options": ["color: xmz212", "size: 3 pair (pack of 1)"], "instruction_attributes": ["cruelty free", "high quality"], "instruction_options": ["xmz212", "3 pair (pack of 1)"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI76OGZ2", "worker_id": "A3N9ZYQAESNFQH"}], "B0091K993O": [{"asin": "B0091K993O", "instruction": "i am looking for paraben free makeup powder. please choose copper color.", "attributes": ["highly pigmented", "paraben free", "cruelty free", "nail art"], "options": ["color: copper", "size: 1 ounce"], "instruction_attributes": ["paraben free"], "instruction_options": ["copper"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZNJ1YE", "worker_id": "A3FG5PQHG5AH3Y"}], "B01451UXUG": [{"asin": "B01451UXUG", "instruction": "i am looking for anti aging serum for dry skin.", "attributes": ["anti aging", "plant based", "fine lines", "dry skin"], "options": [""], "instruction_attributes": ["anti aging", "dry skin"], "instruction_options": [], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8F1R5A", "worker_id": "A3FG5PQHG5AH3Y"}], "B001BCXI14": [{"asin": "B001BCXI14", "instruction": "i'm looking for a 24 pack ro-tel mild diced tomatoes and green chilies.", "attributes": ["low carb", "dietary fiber"], "options": ["flavor: mild"], "instruction_attributes": ["low carb"], "instruction_options": ["mild"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFF902I", "worker_id": "A1ZGOZQF2VZ0X9"}], "B084QHSD15": [{"asin": "B084QHSD15", "instruction": "i am looking for a easy assemble bookcases", "attributes": ["assembly required", "easy assemble"], "options": [""], "instruction_attributes": ["easy assemble"], "instruction_options": [], "assignment_id": "3JW0YLFXR4QKLUJBLEJGURROKS5WWM", "worker_id": "A9QRQL9CFJBI7"}], "B0912QMLM6": [{"asin": "B0912QMLM6", "instruction": "i'm looking for a omysalon all purpose hydraulic barber chair .", "attributes": ["heavy duty", "height adjustable", "beauty salon"], "options": ["color: red"], "instruction_attributes": ["heavy duty", "height adjustable", "beauty salon"], "instruction_options": ["red"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL5QAE2", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09GK1QJFW": [{"asin": "B09GK1QJFW", "instruction": "ultra long carbon fiber pole monopod 106\" upgraded selfie stick", "attributes": ["aluminum alloy", "carbon fiber"], "options": ["color: 106\" upgraded selfie stick"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["106\" upgraded selfie stick"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHT86LNY", "worker_id": "A3N9ZYQAESNFQH"}], "B088VRGYLS": [{"asin": "B088VRGYLS", "instruction": "i need 6 fresh baked shortbread cookies that are individually wrapped.", "attributes": ["baked fresh", "individually wrapped", "gift basket"], "options": ["number of items: 6"], "instruction_attributes": ["baked fresh", "individually wrapped"], "instruction_options": ["6"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GLX3SO", "worker_id": "A1NF6PELRKACS9"}], "B08GWS7NY4": [{"asin": "B08GWS7NY4", "instruction": "i am looking for a c- -coffee collection color acrylic nail tools for mnail art", "attributes": ["highly pigmented", "nail art"], "options": ["color: c-coffee collection"], "instruction_attributes": ["nail art"], "instruction_options": ["c-coffee collection"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY868518P", "worker_id": "A9QRQL9CFJBI7"}], "B07PGSRPHY": [{"asin": "B07PGSRPHY", "instruction": "i'm looking for a button-tufted stitched sofa that offers a mid-century look. i would prefer one with a clay gold finish.", "attributes": ["mid century", "button tufted"], "options": ["color: clay, gold finish"], "instruction_attributes": ["mid century", "button tufted"], "instruction_options": [], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2IDFKI", "worker_id": "A1HMZJ59OPLD1P"}], "B08RS1WGV9": [{"asin": "B08RS1WGV9", "instruction": "i'm looking for a breakfast cereal bars in a gift box. also, choose pack of 1 which weighs 5.4 ounce with fluffernutter crispies flavored one.", "attributes": ["great gift", "gift basket"], "options": ["flavor: fluffernutter crispies", "size: 5.4 ounce (pack of 1)"], "instruction_attributes": ["gift basket"], "instruction_options": ["fluffernutter crispies", "5.4 ounce (pack of 1)"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66PDFZN", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B08RS1WGV9", "instruction": "i'm looking for rice crispy treats by bunch of munchies.", "attributes": ["great gift", "gift basket"], "options": ["flavor: chocolit chip crispies", "size: 5.9 ounce (pack of 1)"], "instruction_attributes": ["great gift"], "instruction_options": [], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WCNUO5", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B08RS1WGV9", "instruction": "i want by a gift easter basket with the og crispie - gourmet rice crispy, 5.9 ounce (pack of 1).", "attributes": ["great gift", "gift basket"], "options": ["flavor: the og crispies", "size: 5.9 ounce (pack of 1)"], "instruction_attributes": ["gift basket"], "instruction_options": ["the og crispies", "5.9 ounce (pack of 1)"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL2ZVRF", "worker_id": "A15IJ20C3R4HUO"}], "B07DPVGL5G": [{"asin": "B07DPVGL5G", "instruction": "i need a high protein snack which is gluten and grain free. i really like the smoky serrano flavor.", "attributes": ["high protein", "grain free", "artificial ingredients", "keto friendly", "low carb", "non gmo", "gluten free", "quality ingredients"], "options": ["flavor name: smoky serrano", "size: 4 ounce (pack of 1)"], "instruction_attributes": ["high protein", "grain free", "gluten free"], "instruction_options": ["smoky serrano"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJOGMOX", "worker_id": "A1NF6PELRKACS9"}], "B0192BWQV8": [{"asin": "B0192BWQV8", "instruction": "i'm looking for hair care for hair extenions its for permanent hair.", "attributes": ["long lasting", "permanent hair"], "options": ["color: b05 steel blue"], "instruction_attributes": ["permanent hair"], "instruction_options": ["b05 steel blue"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFQ0V3W", "worker_id": "A16IQOX0DK14OJ"}], "B09L5XKVZC": [{"asin": "B09L5XKVZC", "instruction": "i am looking for a green ottomans for living room.", "attributes": ["easy clean", "faux leather", "dining room", "living room"], "options": ["color: green"], "instruction_attributes": ["living room"], "instruction_options": ["green"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0U7W59", "worker_id": "A9QRQL9CFJBI7"}], "B08GLV1RYQ": [{"asin": "B08GLV1RYQ", "instruction": "i am looking for a nautical color of fruit juice for party supplies", "attributes": ["bpa free", "party supplies"], "options": ["color: nautical"], "instruction_attributes": ["party supplies"], "instruction_options": ["nautical"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU74R57B", "worker_id": "A9QRQL9CFJBI7"}], "B08FBK3N18": [{"asin": "B08FBK3N18", "instruction": "i'm looking for furniture it was for living room furniture.", "attributes": ["solid wood", "contemporary design", "living room"], "options": ["size: sofa, loveseat and 2 ottoman living room..."], "instruction_attributes": ["solid wood", "living room"], "instruction_options": ["sofa, loveseat and 2 ottoman living room..."], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N71T7E", "worker_id": "A16IQOX0DK14OJ"}], "B09HLCBY4S": [{"asin": "B09HLCBY4S", "instruction": "i need a rose gold tattoo machine for permanent makeup.", "attributes": ["long lasting", "easy use", "rose gold"], "options": ["color: meraki ii - pink", "style: machine"], "instruction_attributes": ["rose gold"], "instruction_options": ["machine"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O1R2AH", "worker_id": "A1NF6PELRKACS9"}], "B09MVK3JG4": [{"asin": "B09MVK3JG4", "instruction": "i am looking for small sized sweatshirt. it should be machine washable.", "attributes": ["quick drying", "machine washable", "long sleeve", "laundry bag", "daily wear"], "options": ["color: snk-xmas tops a168-green", "size: small"], "instruction_attributes": ["machine washable"], "instruction_options": ["small"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7XHP5K", "worker_id": "A3FG5PQHG5AH3Y"}], "B001M0MN0C": [{"asin": "B001M0MN0C", "instruction": "i need small boxer briefs that are quick dry and white.", "attributes": ["quick drying", "elastic closure"], "options": ["color: white", "size: small"], "instruction_attributes": ["quick drying"], "instruction_options": ["white", "small"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSK28BL", "worker_id": "A1NF6PELRKACS9"}], "B07T43L34M": [{"asin": "B07T43L34M", "instruction": "i am looking for a clinically proven face moisturizer cream which supports anti aging", "attributes": ["clinically proven", "anti aging", "hyaluronic acid", "fine lines"], "options": [""], "instruction_attributes": ["clinically proven", "anti aging"], "instruction_options": [], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWDSNF5", "worker_id": "A2COCSUGZV28X"}], "B0828P658S": [{"asin": "B0828P658S", "instruction": "i am looking for a 4.0 rustic brown 1 color home office desk that is easy to assemble.", "attributes": ["easy assemble", "steel frame"], "options": ["color: 4.0 rustic brown 1"], "instruction_attributes": ["easy assemble"], "instruction_options": ["4.0 rustic brown 1"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4T37KD", "worker_id": "A1Q8PPQQCWGY0D"}], "B09NSPLRC1": [{"asin": "B09NSPLRC1", "instruction": "i'm looking for skin care products for hair styling products.", "attributes": ["hair salon", "hair styling"], "options": ["size: d type | red with leg"], "instruction_attributes": ["hair salon", "hair styling"], "instruction_options": ["d type | red with leg"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVNW713", "worker_id": "A16IQOX0DK14OJ"}], "B09F8WTGQN": [{"asin": "B09F8WTGQN", "instruction": "i am looking for forest green teal blue 6 colors nail polish.", "attributes": ["easy use", "nail polish", "nail art"], "options": ["color: glitter\uff1aforest green teal blue 6 colors"], "instruction_attributes": ["nail polish"], "instruction_options": ["glitter\uff1aforest green teal blue 6 colors"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98SSYKL", "worker_id": "A9QRQL9CFJBI7"}], "B097GYX5VD": [{"asin": "B097GYX5VD", "instruction": "womens like high quality and dark color make up accessories", "attributes": ["high quality", "rose gold"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0DV16J", "worker_id": "A226L9F2AZ38CL"}], "B017DVGX1I": [{"asin": "B017DVGX1I", "instruction": "i want to find a brown wall mounted wall sconce with a bronze finish.", "attributes": ["wall mounted", "bronze finish"], "options": ["color: brown"], "instruction_attributes": ["wall mounted", "bronze finish"], "instruction_options": ["brown"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83K1JI8", "worker_id": "A345TDMHP3DQ3G"}], "B09D2YLDZ9": [{"asin": "B09D2YLDZ9", "instruction": "i am looking for new clear and easy clean tablecloth top protection cover", "attributes": ["eco friendly", "easy clean", "dining room"], "options": ["color: new clear", "size: 36x66 inch"], "instruction_attributes": ["easy clean"], "instruction_options": ["new clear"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LKV5IZ", "worker_id": "A258PTOZ3D2TQR"}], "B01MTRVZ1V": [{"asin": "B01MTRVZ1V", "instruction": "i am looking for a multicolor runner area rug to go in my living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: multi", "item shape: runner", "size: 9 ft x 12 ft"], "instruction_attributes": ["living room"], "instruction_options": ["multi", "runner"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98RLYKC", "worker_id": "A1NF6PELRKACS9"}], "B09JHW1HML": [{"asin": "B09JHW1HML", "instruction": "a super soft and warm flash light weight machine washable blanket for leaving room size:80\"60\"", "attributes": ["super soft", "machine washable", "living room"], "options": ["size: 80\"x60\""], "instruction_attributes": ["super soft", "machine washable"], "instruction_options": ["80\"x60\""], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTNDO6Z", "worker_id": "A3N9ZYQAESNFQH"}], "B01MSX5462": [{"asin": "B01MSX5462", "instruction": "i am looking for golden blonde human hair extensions.", "attributes": ["high quality", "hair extensions", "natural hair"], "options": ["color: p-light blonde highlighted golden blonde #16 | 22", "size: 20 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["p-light blonde highlighted golden blonde #16 | 22"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVHVZSI", "worker_id": "A3FG5PQHG5AH3Y"}], "B07XDTGNQL": [{"asin": "B07XDTGNQL", "instruction": "i'm looking for aluminum tripod light weighted products because it can easy to carry.", "attributes": ["carbon fiber", "aluminum alloy"], "options": [""], "instruction_attributes": ["aluminum alloy"], "instruction_options": [], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZEKPC9", "worker_id": "A16IQOX0DK14OJ"}], "B07BVWFCNH": [{"asin": "B07BVWFCNH", "instruction": "i'm looking for hair rose gold colored products.", "attributes": ["easy use", "rose gold", "hair dye", "permanent hair", "natural hair"], "options": ["color: 7.2"], "instruction_attributes": ["rose gold", "hair dye"], "instruction_options": ["7.2"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWRAPFI", "worker_id": "A16IQOX0DK14OJ"}], "B089QBLHBL": [{"asin": "B089QBLHBL", "instruction": "i need a gift basket of gluten free food items for my family. and i would prefer 16 bars & card size", "attributes": ["gluten free", "individually wrapped", "high fructose", "natural ingredients", "gift basket"], "options": ["size: 16 bars & card"], "instruction_attributes": ["gluten free", "gift basket"], "instruction_options": ["16 bars & card"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTUHWXL", "worker_id": "A2COCSUGZV28X"}], "B07SS5LM81": [{"asin": "B07SS5LM81", "instruction": "i am looking for individually wrapped lollipops jar. it should be in pearl kiwi green and green apple flavor.", "attributes": ["individually wrapped", "baby shower"], "options": ["flavor name: pearl kiwi green - green apple"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["pearl kiwi green - green apple"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIFGFVY", "worker_id": "A1NF6PELRKACS9"}], "B095C9MFHH": [{"asin": "B095C9MFHH", "instruction": "i'm looking for high power monocular telescope with smartphone holder and tripod", "attributes": ["non slip", "high power", "bird watching"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCX346X", "worker_id": "A258PTOZ3D2TQR"}], "B07MKB1HLV": [{"asin": "B07MKB1HLV", "instruction": "i am looking for vanity wall lamp of 2 pack.", "attributes": ["easy install", "glass shade", "vanity light", "light fixture", "dining room", "living room"], "options": ["color: orb,3-lights", "size: 2-pack"], "instruction_attributes": ["vanity light"], "instruction_options": ["2-pack"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQY8D77F", "worker_id": "A3FG5PQHG5AH3Y"}], "B09GB4CSW7": [{"asin": "B09GB4CSW7", "instruction": "i am looking ac adapters with good output production", "attributes": ["output protection", "easy carry"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZQV50L", "worker_id": "A16M39T60N60NO"}, {"asin": "B09GB4CSW7", "instruction": "i would like a ac adapter that is easy to carry.", "attributes": ["output protection", "easy carry"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOMPML0", "worker_id": "A1WS884SI0SLO4"}], "B0992XPRW7": [{"asin": "B0992XPRW7", "instruction": "i'm looking for one cocktail mix gluten free and natural ingredients spicy bloody mary flavor in pack of 2 with 32 fl oz", "attributes": ["old fashioned", "low calorie", "low carb", "gluten free", "high fructose", "natural ingredients"], "options": ["flavor name: spicy bloody mary variety pack", "size: 32 fl oz (pack of 2)"], "instruction_attributes": ["gluten free", "natural ingredients"], "instruction_options": ["spicy bloody mary variety pack", "32 fl oz (pack of 2)"], "assignment_id": "3IXEICO79DTUZY0BZR119DLCSW3T61", "worker_id": "A2Y2TURT2VEYZN"}], "B09368SY2Q": [{"asin": "B09368SY2Q", "instruction": "i need 3v long lasting and high performance batteries in a pack of 6", "attributes": ["long lasting", "high performance"], "options": ["size: 6 pack"], "instruction_attributes": ["long lasting", "high performance"], "instruction_options": ["6 pack"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K70218", "worker_id": "ASWFLI3N8X72G"}], "B0868LDR64": [{"asin": "B0868LDR64", "instruction": "i'm looking for high heeled shoes and open toe it will easy to wear", "attributes": ["open toe", "ankle strap", "arch support", "high heel", "button closure"], "options": ["color: y-03 black", "size: 5.5"], "instruction_attributes": ["open toe", "ankle strap", "high heel"], "instruction_options": ["y-03 black"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOJJDYB", "worker_id": "A16IQOX0DK14OJ"}], "B09LT57M8J": [{"asin": "B09LT57M8J", "instruction": "i am looking for birthday cake in black 40", "attributes": ["birthday cake", "cupcake picks", "birthday party"], "options": ["pattern name: black 40"], "instruction_attributes": ["birthday cake"], "instruction_options": ["black 40"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHBUE1S", "worker_id": "A2MSIFDLOHI1UT"}], "B081J14LT6": [{"asin": "B081J14LT6", "instruction": "i'm looking for wall art for hanging through the wall.", "attributes": ["ready hang", "living room"], "options": ["color: custom metal print h03", "size: 30\" x 40\""], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["custom metal print h03"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7OD3IG", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B081J14LT6", "instruction": "i need a custom metal print poster for my living room", "attributes": ["ready hang", "living room"], "options": ["color: custom metal print h17", "size: 20\" round"], "instruction_attributes": ["living room"], "instruction_options": ["custom metal print h17"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC59QRKX", "worker_id": "AVIEE6LDH0BT5"}], "B08TWPVRNK": [{"asin": "B08TWPVRNK", "instruction": "i'm looking for grey colored men's closed toe sports sandals in size 8 please.", "attributes": ["quick drying", "anti slip", "closed toe", "rubber sole"], "options": ["color: grey", "size: 8"], "instruction_attributes": ["closed toe"], "instruction_options": ["grey", "8"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWY5R1Z", "worker_id": "A20DUVEOH6A7KW"}], "B07CJW395Z": [{"asin": "B07CJW395Z", "instruction": "i looking a solid wood home furnishing 2 drawer nightstand", "attributes": ["engineered wood", "solid wood", "home furnishings"], "options": ["style: 2 drawer nightstand"], "instruction_attributes": ["solid wood", "home furnishings"], "instruction_options": ["2 drawer nightstand"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKB0NE8", "worker_id": "A3N9ZYQAESNFQH"}], "B091G7H187": [{"asin": "B091G7H187", "instruction": "i'm looking for some vinyl women's clogs in taupe color, size 9.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: taupe", "size: 9 women | 7 men"], "instruction_attributes": ["ethylene vinyl", "vinyl acetate"], "instruction_options": ["taupe", "9 women | 7 men"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61TEZWI", "worker_id": "A19317A3X87NVM"}], "B098LHMX6X": [{"asin": "B098LHMX6X", "instruction": "i need a matcha green team exfoliating scrub that is effective for removing dead skin from the surface of the skin.", "attributes": ["fine lines", "dead skin"], "options": ["size: matcha green team"], "instruction_attributes": ["dead skin"], "instruction_options": ["matcha green team"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV5A8DO", "worker_id": "A1HMZJ59OPLD1P"}], "B09GYG7R75": [{"asin": "B09GYG7R75", "instruction": "show me trail running shoes with a rubber sole. it should be 4.5 for men.", "attributes": ["anti slip", "rubber sole"], "options": ["color: black red pumpkin w", "size: 6.5 women | 4.5 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["6.5 women | 4.5 men"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYOEHDQ", "worker_id": "A15ERD4HOFEPHM"}], "B097GVZ2RN": [{"asin": "B097GVZ2RN", "instruction": "i am looking for a 05 red color women sneakers for day comfort", "attributes": ["open toe", "knee high", "day comfort", "ankle strap", "steel toe", "quality materials", "teen girls"], "options": ["color: 05 red", "size: 8"], "instruction_attributes": ["day comfort"], "instruction_options": [], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8F15RO", "worker_id": "A9QRQL9CFJBI7"}], "B08CK6XD3G": [{"asin": "B08CK6XD3G", "instruction": "i'm looking for a yaliaprint dragonfly blackout curtains.", "attributes": ["machine washable", "long lasting", "white item"], "options": ["color: color18", "size: 72\" w x 63\" l"], "instruction_attributes": ["white item"], "instruction_options": ["color18", "72\" w x 63\" l"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841BWXAT", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08JY6ZPSS": [{"asin": "B08JY6ZPSS", "instruction": "i'm looking for navy colored large sized jackets it can use for winter warm.", "attributes": ["fleece lined", "winter warm", "machine wash"], "options": ["color: navy", "size: large"], "instruction_attributes": ["winter warm", "machine wash"], "instruction_options": ["navy", "large"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q4UDK0", "worker_id": "A16IQOX0DK14OJ"}], "B09NLMYPR4": [{"asin": "B09NLMYPR4", "instruction": "i need a golden colored coffee table that is easy to assemble. choose one for my living room.", "attributes": ["easy clean", "easy assemble", "clear glass", "tempered glass", "living room"], "options": ["color: golden", "material type: walnut"], "instruction_attributes": ["easy assemble", "living room"], "instruction_options": ["golden"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HZH1DA", "worker_id": "A1NF6PELRKACS9"}], "B09ST1YZGV": [{"asin": "B09ST1YZGV", "instruction": "i want to buy a hairbrush that increases hair growth.", "attributes": ["hair treatment", "hair growth"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZXXJZZ", "worker_id": "A2YNPKYEFDZ6C9"}], "B084YQXS27": [{"asin": "B084YQXS27", "instruction": "i want to get a high performance security camera with ultra hd resolution.", "attributes": ["certified refurbished", "ultra hd", "heavy duty", "high performance"], "options": [""], "instruction_attributes": ["ultra hd", "high performance"], "instruction_options": [], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5GMZ10", "worker_id": "ASWFLI3N8X72G"}], "B00U7BZDFO": [{"asin": "B00U7BZDFO", "instruction": "i am interested in a six pack of non gmo crackers.", "attributes": ["non gmo", "hand crafted", "0g trans", "quality ingredients", "artificial flavors"], "options": ["flavor name: melting parmesan, dijon swiss, cheddar &...", "size: 4 ounce (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["4 ounce (pack of 6)"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW9JS83", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LVGMZW4": [{"asin": "B09LVGMZW4", "instruction": "i'm looking for accent furniture for living room.", "attributes": ["mid century", "easy install", "metal legs", "living room"], "options": ["color: beige"], "instruction_attributes": ["mid century", "easy install", "living room"], "instruction_options": ["beige"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7XPY6X", "worker_id": "A16IQOX0DK14OJ"}], "B000WCZN9Y": [{"asin": "B000WCZN9Y", "instruction": "i'm looking for a amy's soup.", "attributes": ["low fat", "easy prepare", "bpa free", "gluten free", "nut free", "soy free", "certified organic", "dairy free"], "options": [""], "instruction_attributes": ["low fat", "gluten free", "certified organic"], "instruction_options": [], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X6I3YR", "worker_id": "A1ZGOZQF2VZ0X9"}], "B083GKZWVX": [{"asin": "B083GKZWVX", "instruction": "i want a doorbell camera that's 1080p and has motion detection.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": [], "assignment_id": "3TR2532VI040LV46NXNX77Y3UUX6JU", "worker_id": "AR9AU5FY1S3RO"}], "B07B5NKTTG": [{"asin": "B07B5NKTTG", "instruction": "i'm looking for decor room for living room its full of wood finish and want to buy it.", "attributes": ["mid century", "faux leather", "wood finish"], "options": ["color: cream | walnut", "size: 30\" bar height"], "instruction_attributes": ["faux leather", "wood finish"], "instruction_options": ["cream | walnut"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWC3NFE", "worker_id": "A16IQOX0DK14OJ"}], "B08N525ZVS": [{"asin": "B08N525ZVS", "instruction": "find me a kitchen table with metal legs in black oak with 39.37\" for dining room", "attributes": ["heavy duty", "easy clean", "easy assemble", "metal legs", "dining room", "living room"], "options": ["color: black oak", "size: 39.37\u201c"], "instruction_attributes": ["metal legs", "dining room"], "instruction_options": ["black oak", "39.37\u201c"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS3JVU3", "worker_id": "A2Y2TURT2VEYZN"}], "B08PVMTPKG": [{"asin": "B08PVMTPKG", "instruction": "i am looking for a 2 manual toothbrushes for sensitive teeth.", "attributes": ["easy carry", "sensitive teeth"], "options": ["size: 2"], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9TY78J", "worker_id": "A9QRQL9CFJBI7"}], "B09NHVNSM1": [{"asin": "B09NHVNSM1", "instruction": "i'm looking for snacks fully cooked no preservatives and need to buy it.", "attributes": ["fully cooked", "soy free"], "options": ["flavor name: chipotle habanero", "size: 1.5 ounce (pack of 8)"], "instruction_attributes": ["fully cooked"], "instruction_options": ["chipotle habanero"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FGKLEO", "worker_id": "A16IQOX0DK14OJ"}], "B094H3G7V2": [{"asin": "B094H3G7V2", "instruction": "i'm looking for accessories for women's for dead skin adn need to buy it.", "attributes": ["double sided", "rose gold", "dead skin", "beauty salon"], "options": [""], "instruction_attributes": ["double sided", "rose gold", "dead skin", "beauty salon"], "instruction_options": [], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MNLOF9", "worker_id": "A16IQOX0DK14OJ"}], "B09PG876ZQ": [{"asin": "B09PG876ZQ", "instruction": "i'm looking for machine washable, daily wear boxer briefs with elastic waistband and has unique design. also choose x-large, love with hearts black colored one.", "attributes": ["machine wash", "unique design", "elastic waistband", "daily wear"], "options": ["color: love with hearts black", "size: x-large"], "instruction_attributes": ["machine wash", "unique design", "elastic waistband", "daily wear"], "instruction_options": ["love with hearts black", "x-large"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XRDGNG", "worker_id": "AR0VJ5XRG16UJ"}], "B07JBP95WQ": [{"asin": "B07JBP95WQ", "instruction": "i'm looking for intel core has install at any at easy and it will high perfomanced.", "attributes": ["certified refurbished", "high performance", "intel core"], "options": [""], "instruction_attributes": ["high performance", "intel core"], "instruction_options": [], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTEG5DO", "worker_id": "A16IQOX0DK14OJ"}], "B09JRXHZWX": [{"asin": "B09JRXHZWX", "instruction": "i am looking for a medium slim fit tops.", "attributes": ["slim fit", "daily casual", "hand wash", "machine wash", "long sleeve"], "options": ["color: b-lace black", "size: medium"], "instruction_attributes": ["slim fit"], "instruction_options": ["medium"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTTZXW2", "worker_id": "A9QRQL9CFJBI7"}], "B08QDV64XV": [{"asin": "B08QDV64XV", "instruction": "i am looking for a high power soundbar and it should be dust proof.", "attributes": ["dust proof", "high power"], "options": [""], "instruction_attributes": ["dust proof", "high power"], "instruction_options": [], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRW23F6", "worker_id": "AHU9OLV0YKIIW"}], "B077KLT1CT": [{"asin": "B077KLT1CT", "instruction": "i need bacon cheddar crisps that are not only keto friendly but also gluten free and low carb.", "attributes": ["keto friendly", "gluten free", "high protein", "low carb", "lactose free", "natural ingredients"], "options": ["flavor name: bacon cheddar", "size: 10 ounce (pack of 3)"], "instruction_attributes": ["keto friendly", "gluten free", "low carb"], "instruction_options": ["bacon cheddar"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83LIIJQ", "worker_id": "A1NF6PELRKACS9"}], "B07V1CR4HS": [{"asin": "B07V1CR4HS", "instruction": "i am looking orange almond muffin flavour baking mix with low carb,sugar free,gluten free made with natural ingredient", "attributes": ["low carb", "grain free", "gluten free", "keto friendly", "ready eat", "sugar free", "zero sugar", "quality ingredients", "natural ingredients"], "options": ["flavor name: orange almond muffin"], "instruction_attributes": ["low carb", "gluten free", "sugar free", "natural ingredients"], "instruction_options": ["orange almond muffin"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFLOEMX", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B07V1CR4HS", "instruction": "i want to get some keto friendly blueberry baking mix that's made from all-natural ingredients.", "attributes": ["low carb", "grain free", "gluten free", "keto friendly", "ready eat", "sugar free", "zero sugar", "quality ingredients", "natural ingredients"], "options": ["flavor name: blueberry"], "instruction_attributes": ["keto friendly", "natural ingredients"], "instruction_options": ["blueberry"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK4WJ34", "worker_id": "AR9AU5FY1S3RO"}], "B08D7559V3": [{"asin": "B08D7559V3", "instruction": "i'm looking for need to buy a machine washable and it easy to use it.", "attributes": ["machine washable", "easy install"], "options": ["color: deepteal", "size: large"], "instruction_attributes": ["machine washable"], "instruction_options": ["deepteal"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH153JHWW", "worker_id": "A16IQOX0DK14OJ"}], "B07ZNQBNCZ": [{"asin": "B07ZNQBNCZ", "instruction": "i am looking for dual band cellular booster", "attributes": ["dual band", "4g lte"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9B8AZH", "worker_id": "A16M39T60N60NO"}], "B081CDTRPD": [{"asin": "B081CDTRPD", "instruction": "i am looking for a 15 foot gold plated interconnect cable.", "attributes": ["power amplifier", "gold plated"], "options": ["size: 15 feet", "style: xlr female to 1 | 4 ts male"], "instruction_attributes": ["gold plated"], "instruction_options": ["15 feet"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22JTW8U", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B081CDTRPD", "instruction": "i want to find a female to dual cable that is 3.3 feet long. it needs to also come with a power amplifier.", "attributes": ["power amplifier", "gold plated"], "options": ["size: 3.3 feet", "style: xlr female to dual 1 | 4 ts male"], "instruction_attributes": ["power amplifier"], "instruction_options": ["3.3 feet", "xlr female to dual 1 | 4 ts male"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HOPWOP", "worker_id": "A345TDMHP3DQ3G"}], "B08VNG4HJ6": [{"asin": "B08VNG4HJ6", "instruction": "i'm looking for capacity in white plug play it was need to buy it.", "attributes": ["easy use", "plug play"], "options": ["capacity: white", "color: 320gb"], "instruction_attributes": ["plug play"], "instruction_options": ["white"], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SULKVZE", "worker_id": "A16IQOX0DK14OJ"}], "B09S9WL9B4": [{"asin": "B09S9WL9B4", "instruction": "i am looking for a pair of women's size 7.5 open toe outdoor sandals.", "attributes": ["open toe", "arch support", "steel toe", "high heel", "ankle strap", "teen girls"], "options": ["color: xiezi-a010-black", "size: 7.5"], "instruction_attributes": ["open toe"], "instruction_options": ["7.5"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AKSOE9", "worker_id": "A1EREKSZAA9V7B"}], "B00VHAW406": [{"asin": "B00VHAW406", "instruction": "i'm looking for bedspreads it was easy to wash it was machine washable", "attributes": ["machine washable", "king size"], "options": ["color: white", "size: full(96\"x110\")"], "instruction_attributes": ["machine washable", "king size"], "instruction_options": ["white"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68GV4AP", "worker_id": "A16IQOX0DK14OJ"}], "B09LS2LS8T": [{"asin": "B09LS2LS8T", "instruction": "i'm looking for a slim fit dress shirt with a button closure. it should come in a 4 x large with a blue plaid pattern.", "attributes": ["slim fit", "quality polyester", "long sleeve", "button closure"], "options": ["color: plaid pattern blue", "size: 4x-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["plaid pattern blue", "4x-large"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFU4T0P", "worker_id": "AR9AU5FY1S3RO"}], "B08PPNPJ9Q": [{"asin": "B08PPNPJ9Q", "instruction": "i need a white mid century table for my living room. it should be 15.6x23 inches in size.", "attributes": ["easy assemble", "mid century", "living room"], "options": ["color: white", "size: 15.6x23.5inch"], "instruction_attributes": ["mid century", "living room"], "instruction_options": ["white", "15.6x23.5inch"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY3P4J5", "worker_id": "A1NF6PELRKACS9"}], "B073214G9J": [{"asin": "B073214G9J", "instruction": "i am looking for a dark taupe home office desks with metal legs.", "attributes": ["contemporary design", "metal legs"], "options": ["color: dark taupe"], "instruction_attributes": ["metal legs"], "instruction_options": ["dark taupe"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQCSS6C", "worker_id": "A9QRQL9CFJBI7"}], "B08M3WKJ3W": [{"asin": "B08M3WKJ3W", "instruction": "i need a high speed plug and play external optical drive with usb. pick a black one.", "attributes": ["plug play", "high speed"], "options": ["color: black"], "instruction_attributes": ["plug play", "high speed"], "instruction_options": ["black"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQY9877C", "worker_id": "A1NF6PELRKACS9"}], "B071K4WP3P": [{"asin": "B071K4WP3P", "instruction": "i am looking for machine washable throw pillow cushion cover. please select peach mint color.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: peach mint", "size: 18 x 18-inch"], "instruction_attributes": ["machine washable"], "instruction_options": ["peach mint"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRN1MFN", "worker_id": "A3FG5PQHG5AH3Y"}], "B07NVWVV9R": [{"asin": "B07NVWVV9R", "instruction": "i'm looking for skin care moisturizing seed oil need to buy it.", "attributes": ["cruelty free", "seed oil", "dry skin", "fine lines"], "options": ["color: be bright be you"], "instruction_attributes": ["seed oil", "dry skin"], "instruction_options": [], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZQ7HS1", "worker_id": "A16IQOX0DK14OJ"}], "B08TVCFNPN": [{"asin": "B08TVCFNPN", "instruction": "wall plate cover in toggle combo", "attributes": ["heavy duty", "high gloss"], "options": ["style: outlet | toggle combo"], "instruction_attributes": ["heavy duty"], "instruction_options": ["outlet | toggle combo"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQ881LF", "worker_id": "A10OGH5CQBXL5N"}], "B08FZTH28C": [{"asin": "B08FZTH28C", "instruction": "i am looking for white floral scent dab 002 in travel size", "attributes": ["long lasting", "travel size", "easy carry"], "options": ["scent: dab 002"], "instruction_attributes": ["travel size"], "instruction_options": ["dab 002"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SWTDU0", "worker_id": "A16M39T60N60NO"}], "B081GBD1G8": [{"asin": "B081GBD1G8", "instruction": "i want to buy canvas prints for the living room preferably having airplanes on them.", "attributes": ["ready hang", "living room", "dining room"], "options": ["color: 2810 - airplanes"], "instruction_attributes": ["living room"], "instruction_options": ["2810 - airplanes"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMOT6BC", "worker_id": "AHXHM1PQTRWIQ"}], "B09MSLSLNP": [{"asin": "B09MSLSLNP", "instruction": "i want to buy a six pack of snickerdoodle flavored hot chocolate. make sure it's gluten free.", "attributes": ["rich creamy", "gluten free"], "options": ["flavor name: snickerdoodle", "size: 14.8 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["snickerdoodle", "14.8 ounce (pack of 6)"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZILA7F", "worker_id": "AR9AU5FY1S3RO"}], "B07NDKS1X4": [{"asin": "B07NDKS1X4", "instruction": "i'm looking for the furniture for bed room the color was beige.", "attributes": ["button tufted", "mid century"], "options": ["color: beige"], "instruction_attributes": ["button tufted"], "instruction_options": ["beige"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGEBS90", "worker_id": "A16IQOX0DK14OJ"}], "B07QD5NS5V": [{"asin": "B07QD5NS5V", "instruction": "i'm looking for grey colored queen sized pillowcases and want to buy it.", "attributes": ["eco friendly", "queen size", "super soft"], "options": ["color: light grey", "size: queen"], "instruction_attributes": ["queen size", "super soft"], "instruction_options": ["light grey"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YQ28T9", "worker_id": "A16IQOX0DK14OJ"}], "B091HDH5YS": [{"asin": "B091HDH5YS", "instruction": "i'm looking for wall art for living room the color was inspirational.", "attributes": ["ready hang", "long lasting", "living room", "dining room"], "options": ["color: inspirational-14", "size: 24 x 36 inch"], "instruction_attributes": ["living room", "dining room"], "instruction_options": ["inspirational-14"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYJ6LQY", "worker_id": "A16IQOX0DK14OJ"}], "B0987J6TV8": [{"asin": "B0987J6TV8", "instruction": "i need an easy to carry tripod made of carbon fiber for my camera.", "attributes": ["easy carry", "non slip", "easy use", "carbon fiber"], "options": [""], "instruction_attributes": ["easy carry", "carbon fiber"], "instruction_options": [], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1PN6F2", "worker_id": "A1NF6PELRKACS9"}], "B086PFNJ5K": [{"asin": "B086PFNJ5K", "instruction": "find me an easy to carry and easy to use 60cm double sided high quality body brush in green color.", "attributes": ["double sided", "easy carry", "easy use", "high quality", "dead skin"], "options": ["color: 72purple and green", "size: 60cm"], "instruction_attributes": ["double sided", "easy carry", "easy use", "high quality"], "instruction_options": ["72purple and green", "60cm"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4VS7K6", "worker_id": "A3AYHESLQSDY5T"}], "B07J5S5Z9D": [{"asin": "B07J5S5Z9D", "instruction": "i am looking a eco friendly long lasting jar candle 6 oz butteercream vanilla cupcake", "attributes": ["long lasting", "eco friendly", "soy wax"], "options": ["scent: buttercream vanilla cupcake", "size: 6 oz."], "instruction_attributes": ["long lasting", "eco friendly"], "instruction_options": ["buttercream vanilla cupcake", "6 oz."], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DBODWH", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B07J5S5Z9D", "instruction": "i would like a two pack of soy candles", "attributes": ["long lasting", "eco friendly", "soy wax"], "options": ["scent: in the mood", "size: 9 oz. 2 pack"], "instruction_attributes": ["soy wax"], "instruction_options": ["9 oz. 2 pack"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7SFPWRM", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FDY7L9Q": [{"asin": "B09FDY7L9Q", "instruction": "i'm looking to buy a rose gold 1-in flat iron.", "attributes": ["rose gold", "hair styling", "hair salon"], "options": ["size: 1 inch"], "instruction_attributes": ["rose gold"], "instruction_options": ["1 inch"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1FW80O", "worker_id": "A2YNPKYEFDZ6C9"}], "B08547BBF5": [{"asin": "B08547BBF5", "instruction": "i am looking for a cleanser and rmakeup remover for my sensitive skin. i want it in travel size.", "attributes": ["travel size", "tea tree", "sensitive skin", "dead skin"], "options": [""], "instruction_attributes": ["travel size", "sensitive skin"], "instruction_options": [], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQDV91S", "worker_id": "A1NF6PELRKACS9"}], "B08JPBQ73S": [{"asin": "B08JPBQ73S", "instruction": "i am searching for a motion detection security camera.", "attributes": ["batteries included", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVGSBIH", "worker_id": "A9ZM1P6LBW79"}], "B07BHLXJM8": [{"asin": "B07BHLXJM8", "instruction": "i am looking for a nail art carrying travel case. it should be easy to clean.", "attributes": ["easy clean", "nail art", "eye shadow"], "options": ["color: style 1"], "instruction_attributes": ["easy clean", "nail art"], "instruction_options": [], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THWDZ54", "worker_id": "A1NF6PELRKACS9"}], "B09M3LNF8P": [{"asin": "B09M3LNF8P", "instruction": "i am looking for easy clean and lumbar support home office chair", "attributes": ["heavy duty", "easy clean", "lumbar support", "dining room"], "options": [""], "instruction_attributes": ["easy clean", "lumbar support"], "instruction_options": [], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7YCDSM", "worker_id": "AX2EWYWZM19AZ"}], "B08V1S29CZ": [{"asin": "B08V1S29CZ", "instruction": "i am looking for gluten free tea.please choose berry flavour.", "attributes": ["freeze dried", "non alcoholic", "non gmo", "gluten free"], "options": ["flavor name: berry"], "instruction_attributes": ["gluten free"], "instruction_options": ["berry"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L9LERL", "worker_id": "A3FG5PQHG5AH3Y"}], "B09SF1YB4V": [{"asin": "B09SF1YB4V", "instruction": "i would like a pair of size 7.5 wide khaki flat sandals with a closed toe.", "attributes": ["closed toe", "arch support"], "options": ["color: a3 - khaki", "size: 7.5 wide"], "instruction_attributes": ["closed toe"], "instruction_options": ["a3 - khaki", "7.5 wide"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OWQYEX", "worker_id": "A1WS884SI0SLO4"}], "B07PB18T74": [{"asin": "B07PB18T74", "instruction": "i looking a beauty product leak proof travel size case for 288 bottles color yellow", "attributes": ["oil free", "leak proof", "travel size", "high quality"], "options": ["color: yellow", "size: 288 bottles"], "instruction_attributes": ["leak proof", "travel size"], "instruction_options": ["yellow", "288 bottles"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8IK4CT", "worker_id": "A3N9ZYQAESNFQH"}], "B09S169XYP": [{"asin": "B09S169XYP", "instruction": "i need an x-large t-shirt blouse that has short sleeves.", "attributes": ["loose fit", "wash cold", "hand wash", "machine wash", "long sleeve", "short sleeve"], "options": ["color: 3-white", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["x-large"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THXQ5ZP", "worker_id": "A1NF6PELRKACS9"}], "B01FQBPOMG": [{"asin": "B01FQBPOMG", "instruction": "need a bag of creamy shake candy with 120 units cappuccino flavor and gluten free", "attributes": ["low sugar", "individually wrapped", "gluten free"], "options": ["flavor name: cappuccino", "size: 120 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["cappuccino", "120 count (pack of 1)"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9BIAZR", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B01FQBPOMG", "instruction": "i would like a bag of 180 honeydew candies that are gluten free and low sugar.", "attributes": ["low sugar", "individually wrapped", "gluten free"], "options": ["flavor name: honeydew", "size: 180 count (pack of 1)"], "instruction_attributes": ["low sugar", "gluten free"], "instruction_options": ["honeydew", "180 count (pack of 1)"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH156IHW1", "worker_id": "A1WS884SI0SLO4"}], "B07FYB92QR": [{"asin": "B07FYB92QR", "instruction": "i'm looking for optical zoom for camera it was in ultra hd camera.", "attributes": ["ultra hd", "optical zoom"], "options": [""], "instruction_attributes": ["ultra hd", "optical zoom"], "instruction_options": [], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRTOY2J", "worker_id": "A16IQOX0DK14OJ"}], "B06XGR98MK": [{"asin": "B06XGR98MK", "instruction": "i am looking for a low calorie non alcoholic drink in the moscow mule flavor.", "attributes": ["non alcoholic", "old fashioned", "low calorie", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor: moscow mule", "size: 32 count"], "instruction_attributes": ["non alcoholic", "low calorie"], "instruction_options": ["moscow mule"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK04UIK", "worker_id": "A1NF6PELRKACS9"}], "B081D973ZF": [{"asin": "B081D973ZF", "instruction": "i am looking for cranberry health mix which contains natural ingredients only, 26 ounce (pack of 4)", "attributes": ["artificial ingredients", "non gmo", "gluten free", "natural ingredients", "artificial flavors"], "options": ["flavor name: cranberry health mix", "size: 26 ounce (pack of 4)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["cranberry health mix", "26 ounce (pack of 4)"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQSCHIG", "worker_id": "A258PTOZ3D2TQR"}], "B096LJXJRD": [{"asin": "B096LJXJRD", "instruction": "i want to find a red standing computer desk that i can adjust the height for.", "attributes": ["height adjustable", "white item"], "options": ["color: red"], "instruction_attributes": ["height adjustable"], "instruction_options": ["red"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQN9J10Q", "worker_id": "A345TDMHP3DQ3G"}], "B099KM511M": [{"asin": "B099KM511M", "instruction": "i would like a 60\"x80\" ref and black fringe fleece throw.", "attributes": ["twin size", "fleece throw"], "options": ["color: c:with pompom fringe:red and black", "size: 60\"x80\""], "instruction_attributes": ["fleece throw"], "instruction_options": ["c:with pompom fringe:red and black", "60\"x80\""], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJONGDC", "worker_id": "A1WS884SI0SLO4"}], "B0924JS3YG": [{"asin": "B0924JS3YG", "instruction": "i am looking for makeup brush set that is suitable for synthetic hair. and i would prefer the pink one", "attributes": ["eco friendly", "cruelty free", "synthetic hair", "sensitive skin"], "options": ["color: pink"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["pink"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQY84BC", "worker_id": "A2COCSUGZV28X"}], "B071166T4K": [{"asin": "B071166T4K", "instruction": "i'm looking for flip flops it will comfort to wear.", "attributes": ["day comfort", "slip resistant"], "options": ["color: grey charcoal grey 189", "size: womens 8"], "instruction_attributes": ["day comfort"], "instruction_options": ["grey charcoal grey 189"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL7TECO", "worker_id": "A16IQOX0DK14OJ"}], "B08HV6Y1N9": [{"asin": "B08HV6Y1N9", "instruction": "women's multi pockets utility cargo pant relaxed fit for daily wear colour must bordeaux", "attributes": ["straight leg", "imported zipper", "relaxed fit", "button closure", "daily wear"], "options": ["color: bordeaux", "size: 4"], "instruction_attributes": ["straight leg", "relaxed fit", "daily wear"], "instruction_options": ["bordeaux"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIK0FEF", "worker_id": "A10OGH5CQBXL5N"}], "B09PVBX674": [{"asin": "B09PVBX674", "instruction": "add to my list cupcake toppers decorations for my birthday party.", "attributes": ["baby shower", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANHXSXE", "worker_id": "AHU9OLV0YKIIW"}], "B07FYP14DR": [{"asin": "B07FYP14DR", "instruction": "i am looking for xx-large youth fit black color halloween t-shirt of needle sleeve", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: youth", "size: xx-large"], "instruction_attributes": ["needle sleeve"], "instruction_options": ["black", "youth", "xx-large"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61UYWZ1", "worker_id": "A258PTOZ3D2TQR"}], "B0792N9J4S": [{"asin": "B0792N9J4S", "instruction": "i am looking for a paraben and bpa free cinnamon colored natural tooth gel.", "attributes": ["cruelty free", "plant based", "bpa free", "paraben free"], "options": ["color: cinnamon", "size: 0.5 fl oz glass bottle"], "instruction_attributes": ["bpa free"], "instruction_options": [], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1M36FC", "worker_id": "A9ZM1P6LBW79"}], "B09D93PVFX": [{"asin": "B09D93PVFX", "instruction": "i'm looking for white item make my room look so nice.", "attributes": ["white item", "assembly required", "easy clean", "box spring", "white finish"], "options": ["color: white", "size: twin xl | full xl | queen"], "instruction_attributes": ["white item", "easy clean"], "instruction_options": ["white"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCO5BMO", "worker_id": "A16IQOX0DK14OJ"}], "B07Q7NKCS7": [{"asin": "B07Q7NKCS7", "instruction": "i am looking for anti slip women sandals. please choose black one.", "attributes": ["anti slip", "quick drying", "non slip", "ethylene vinyl", "vinyl acetate"], "options": ["color: black1-women", "size: 9"], "instruction_attributes": ["anti slip"], "instruction_options": ["black1-women"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBAUU6D", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07Q7NKCS7", "instruction": "i want pink and non slip luffymomo womens shower slippers.", "attributes": ["anti slip", "quick drying", "non slip", "ethylene vinyl", "vinyl acetate"], "options": ["color: pink-women", "size: 6"], "instruction_attributes": ["non slip"], "instruction_options": ["pink-women"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841D5AXJ", "worker_id": "A2RBF3IIJP15IH"}], "B09PGZ2VK4": [{"asin": "B09PGZ2VK4", "instruction": "i want a dust proof tempered glass for nintendo switch color five star wings", "attributes": ["dust proof", "tempered glass"], "options": ["color: fivestar wings"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A1TFHY", "worker_id": "A3N9ZYQAESNFQH"}], "B0721QQDC8": [{"asin": "B0721QQDC8", "instruction": "i'm looking for long lasting beauty accessories for making skin glow.", "attributes": ["long lasting", "storage case"], "options": ["color: tie dye", "size: 3 large, 4 small drawers"], "instruction_attributes": ["long lasting"], "instruction_options": ["tie dye"], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVFSBIF", "worker_id": "A16IQOX0DK14OJ"}], "B09D33BXHL": [{"asin": "B09D33BXHL", "instruction": "i need a heavy duty office chair which is easy to install and has lumbar support.", "attributes": ["high density", "heavy duty", "easy install", "lumbar support"], "options": [""], "instruction_attributes": ["heavy duty", "easy install", "lumbar support"], "instruction_options": [], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVFOBIB", "worker_id": "ASWFLI3N8X72G"}], "B09Q9D1K69": [{"asin": "B09Q9D1K69", "instruction": "i am searching for a high quality long handle tongue cleaner.", "attributes": ["eco friendly", "high quality", "long handle"], "options": [""], "instruction_attributes": ["high quality", "long handle"], "instruction_options": [], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4C4QR4", "worker_id": "A9ZM1P6LBW79"}], "B097ZLKZCS": [{"asin": "B097ZLKZCS", "instruction": "i need blue high heels with open toes. the size should be a 10.", "attributes": ["open toe", "non slip", "high heel", "ankle strap", "arch support"], "options": ["color: c1-blue", "size: 10"], "instruction_attributes": ["open toe", "high heel"], "instruction_options": ["c1-blue", "10"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB7Q4YR", "worker_id": "A1NF6PELRKACS9"}], "B083JNJX1Z": [{"asin": "B083JNJX1Z", "instruction": "i'm looking for a jet-4 bluetooth portable speaker", "attributes": ["compatible apple", "long lasting", "stereo sound"], "options": ["color: grey"], "instruction_attributes": ["stereo sound"], "instruction_options": ["grey"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW7ES8U", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09GV2RJRZ": [{"asin": "B09GV2RJRZ", "instruction": "level 9 unlocked birthday boy game black t shirt machine wash classic fit cotton heater small size", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: women", "size: small"], "instruction_attributes": ["machine wash", "cotton heather", "classic fit"], "instruction_options": ["black", "small"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA71BHMB", "worker_id": "A3N9ZYQAESNFQH"}], "B08176NP1R": [{"asin": "B08176NP1R", "instruction": "i am looking for a intel quad core i5 desktops", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["core i5", "intel core", "quad core"], "instruction_options": [], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMQ1XEV", "worker_id": "A9QRQL9CFJBI7"}], "B000A33KQ8": [{"asin": "B000A33KQ8", "instruction": "i am looking for medium sized women knee high over calf.", "attributes": ["knee high", "nylon spandex"], "options": ["color: black rib knit", "size: medium (1 pair)"], "instruction_attributes": ["knee high"], "instruction_options": ["medium (1 pair)"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HYGD1J", "worker_id": "A3FG5PQHG5AH3Y"}], "B09J2M6GVK": [{"asin": "B09J2M6GVK", "instruction": "i am looking for furniture for living room in black color", "attributes": ["button tufted", "high density", "easy assemble", "wood frame", "solid wood", "living room"], "options": ["color: dark black"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40V7FYU", "worker_id": "A16M39T60N60NO"}, {"asin": "B09J2M6GVK", "instruction": "i need to buy a three piece living room set with a sofa, armchair, and loveseat. make sure it's easy to assemble and has solid wood frames.", "attributes": ["button tufted", "high density", "easy assemble", "wood frame", "solid wood", "living room"], "options": ["color: black"], "instruction_attributes": ["easy assemble", "wood frame", "solid wood"], "instruction_options": [], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMO6QBS", "worker_id": "AR9AU5FY1S3RO"}], "B08XYJQP6N": [{"asin": "B08XYJQP6N", "instruction": "i'm looking for electronics accessories it was long lasting.", "attributes": ["long lasting", "quad core"], "options": ["color: green"], "instruction_attributes": ["long lasting"], "instruction_options": ["green"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV103XZ", "worker_id": "A16IQOX0DK14OJ"}], "B091BK6L57": [{"asin": "B091BK6L57", "instruction": "i would like a mango sparkling water bottle has has low calories.", "attributes": ["bpa free", "gluten free", "low calorie", "real fruit"], "options": ["flavor name: mango"], "instruction_attributes": ["low calorie"], "instruction_options": ["mango"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3YZLJ5Q", "worker_id": "A1WS884SI0SLO4"}], "B09QKYQLKV": [{"asin": "B09QKYQLKV", "instruction": "i am looking for men t-shirt. please choose royal blue color.", "attributes": ["wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: men", "size: 3x-large"], "instruction_attributes": ["heathers cotton"], "instruction_options": ["royal blue"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV3L8DV", "worker_id": "A3FG5PQHG5AH3Y"}], "B07J5LMT7L": [{"asin": "B07J5LMT7L", "instruction": "i am looking for wireless bluetooth noise cancelling over-ear headphones.", "attributes": ["noise cancelling", "wireless bluetooth"], "options": [""], "instruction_attributes": ["noise cancelling", "wireless bluetooth"], "instruction_options": [], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L92REF", "worker_id": "A3N9ZYQAESNFQH"}], "B089YK478M": [{"asin": "B089YK478M", "instruction": "i need a small black short sleeve shirt.", "attributes": ["cotton spandex", "short sleeve"], "options": ["color: 5-black", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["5-black"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIMR58O", "worker_id": "A19317A3X87NVM"}], "B09J4SV6WX": [{"asin": "B09J4SV6WX", "instruction": "i am looking for a x-large high waist tummy control breeches", "attributes": ["high waist", "tummy control", "fashion design", "elastic waist", "long sleeve", "daily wear"], "options": ["color: d green", "size: x-large"], "instruction_attributes": ["high waist", "tummy control"], "instruction_options": ["x-large"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMJHZIE", "worker_id": "A9QRQL9CFJBI7"}], "B076B2QYZZ": [{"asin": "B076B2QYZZ", "instruction": "i want low fat high protein hellfire 8 ounce jerky", "attributes": ["low fat", "high protein"], "options": ["flavor name: hellfire", "size: 8 ounce"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XASRF8", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B076B2QYZZ", "instruction": "i want low fat cajan pit-smoked beef jerky.", "attributes": ["low fat", "high protein"], "options": ["flavor name: cajan", "size: 4 ounce (pack of 1)"], "instruction_attributes": ["low fat"], "instruction_options": ["cajan"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4WMH08", "worker_id": "A2RBF3IIJP15IH"}], "B09NR629D2": [{"asin": "B09NR629D2", "instruction": "i am looking for a wallet case with tempered glass protection. please select the rose gold color", "attributes": ["glass screen", "tempered glass"], "options": ["color: rose gold"], "instruction_attributes": ["tempered glass"], "instruction_options": ["rose gold"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9CS2VK", "worker_id": "A2COCSUGZV28X"}], "B09KCR46RV": [{"asin": "B09KCR46RV", "instruction": "i'm looking for stereo headphones it will use for outside noise cancelling.", "attributes": ["noise cancelling", "stereo sound"], "options": [""], "instruction_attributes": ["noise cancelling", "stereo sound"], "instruction_options": [], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL26NS6", "worker_id": "A16IQOX0DK14OJ"}], "B09KV7CYMX": [{"asin": "B09KV7CYMX", "instruction": "i want window curtain panel for leaving room easy clean size :52*72in color peacock 4lop0447", "attributes": ["easy clean", "living room", "dining room"], "options": ["color: peacock4lop0447", "size: 52x72in"], "instruction_attributes": ["easy clean", "living room"], "instruction_options": ["peacock4lop0447", "52x72in"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCJ5SJD", "worker_id": "A3N9ZYQAESNFQH"}], "B07Z65TZ2Y": [{"asin": "B07Z65TZ2Y", "instruction": "i would like a small mens cranberry t shirt with a classic fit.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: cranberry", "fit type: men", "size: small"], "instruction_attributes": ["classic fit"], "instruction_options": ["cranberry", "men", "small"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT8I735", "worker_id": "A1WS884SI0SLO4"}], "B09QXLSVPX": [{"asin": "B09QXLSVPX", "instruction": "i'm looking for clothing long and short sleeve for women's dresses the color was purple.", "attributes": ["long sleeve", "short sleeve"], "options": ["color: c6-purple", "size: medium"], "instruction_attributes": ["long sleeve", "short sleeve"], "instruction_options": ["c6-purple"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKLVT1B", "worker_id": "A16IQOX0DK14OJ"}], "B09LQVQPNG": [{"asin": "B09LQVQPNG", "instruction": "i am looking for non slip closed toe high heel woman boot color black", "attributes": ["non slip", "memory foam", "steel toe", "closed toe"], "options": ["color: winter shoes for womens - gf04--black", "size: 10.5"], "instruction_attributes": ["non slip", "closed toe"], "instruction_options": ["winter shoes for womens - gf04--black"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8IJ4CS", "worker_id": "A3N9ZYQAESNFQH"}], "B07PXS5L8S": [{"asin": "B07PXS5L8S", "instruction": "i am looking for a pack of birthday cake candles. also, i am looking for a golden colored number 9 shaped candle.", "attributes": ["birthday cake", "birthday party"], "options": ["color: golden number candle9"], "instruction_attributes": ["birthday cake"], "instruction_options": ["golden number candle9"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4CN8LB", "worker_id": "AJDQGOTMB2D80"}], "B093BJK2CS": [{"asin": "B093BJK2CS", "instruction": "i am looking for a rechargable facial cleansing spin brush set for sensitive skin. also choose fuchsia pink color.", "attributes": ["sensitive skin", "dead skin"], "options": ["color: fuchsia pink"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["fuchsia pink"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTUY7L8", "worker_id": "A9ZM1P6LBW79"}], "B09P8G9378": [{"asin": "B09P8G9378", "instruction": "i'm looking for a jean jacket with thicker collar size medium in color pink for daily wear use", "attributes": ["winter warm", "hand wash", "daily wear"], "options": ["color: pink", "size: medium"], "instruction_attributes": ["daily wear"], "instruction_options": ["pink", "medium"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZQKSHP", "worker_id": "A2Y2TURT2VEYZN"}], "B07N1G15Y4": [{"asin": "B07N1G15Y4", "instruction": "i'm looking for a 2 pack push down pump dispenser bottles for nail polish and facial makeup remover", "attributes": ["non toxic", "nail polish"], "options": [""], "instruction_attributes": ["nail polish"], "instruction_options": [], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCWX46P", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09CT55WJW": [{"asin": "B09CT55WJW", "instruction": "find me a motion detection high definition outdoor camera with 1080p hd definition.", "attributes": ["1080p hd", "high definition", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd", "high definition", "motion detection"], "instruction_options": [], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7WHHL5", "worker_id": "A2CJFO19NY4T5R"}], "B002VLESHC": [{"asin": "B002VLESHC", "instruction": "i'm looking for a long lasting perfumes.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFB7LVE", "worker_id": "AR0VJ5XRG16UJ"}], "B08LR1PBKD": [{"asin": "B08LR1PBKD", "instruction": "i'm looking for n all-in-one computer. i want one that's high performance and has a 1080p screen. it should also have an intel processor.", "attributes": ["1080p hd", "high performance", "intel core"], "options": [""], "instruction_attributes": ["high performance", "intel core"], "instruction_options": [], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6FJPUD", "worker_id": "AR9AU5FY1S3RO"}], "B09FXPW9LV": [{"asin": "B09FXPW9LV", "instruction": "i am looking for red rose hair dye for women.", "attributes": ["easy clean", "hair dye"], "options": ["color: rose red"], "instruction_attributes": ["hair dye"], "instruction_options": ["rose red"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTP14VT", "worker_id": "A3FG5PQHG5AH3Y"}], "B09HZT5CNG": [{"asin": "B09HZT5CNG", "instruction": "i need anti slip mary jane oxfords with retro round toe size 5 and wine red color wedge heel women shoe", "attributes": ["anti slip", "closed toe", "rubber sole"], "options": ["color: wine red", "size: 5"], "instruction_attributes": ["anti slip"], "instruction_options": ["wine red", "5"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QTJOX4", "worker_id": "A1V2C99HEV3F14"}], "B006YB5S6U": [{"asin": "B006YB5S6U", "instruction": "i am looking for a 30 in solid wood directors chairs", "attributes": ["assembly required", "solid wood"], "options": ["color: natural frame | navy canvas", "size: 30 in", "style: black frame - solid wood"], "instruction_attributes": ["solid wood"], "instruction_options": ["30 in"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EEVB13", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B006YB5S6U", "instruction": "i'm looking for a 18\" directors chair with solid wood and a natural frame.", "attributes": ["assembly required", "solid wood"], "options": ["color: honey oak frame | yellow canvas", "size: 24 in", "style: natural frame - solid wood"], "instruction_attributes": ["solid wood"], "instruction_options": ["natural frame - solid wood"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LFQO10", "worker_id": "A62B826XMLK7K"}], "B09P1J4YJT": [{"asin": "B09P1J4YJT", "instruction": "i'm looking for furniture engineered wood at the living room the color was grey.", "attributes": ["engineered wood", "living room"], "options": ["color: grey"], "instruction_attributes": ["engineered wood", "living room"], "instruction_options": ["grey"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVOGJK9", "worker_id": "A16IQOX0DK14OJ"}], "B09S4SK8V1": [{"asin": "B09S4SK8V1", "instruction": "i'm looking for non alcoholic drink for bottled beverages.", "attributes": ["non alcoholic", "ready use"], "options": ["flavor: margarita"], "instruction_attributes": ["non alcoholic", "ready use"], "instruction_options": ["margarita"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z5VXGP", "worker_id": "A16IQOX0DK14OJ"}], "B09N95HQZM": [{"asin": "B09N95HQZM", "instruction": "i'm looking for a space saving storage cabinets for dining room. also, choose black colored one.", "attributes": ["space saving", "white item", "storage space", "living room"], "options": ["color: black"], "instruction_attributes": ["space saving", "living room"], "instruction_options": ["black"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X6IY3M", "worker_id": "AR0VJ5XRG16UJ"}], "B09SPZ8HC2": [{"asin": "B09SPZ8HC2", "instruction": "i am looking for a size: 7 - pack natural ingredients of jerky", "attributes": ["fully cooked", "easy prepare", "natural ingredients"], "options": ["size: 7 - pack"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["7 - pack"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY3Q4J6", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09SPZ8HC2", "instruction": "i am looking for a 5 pack of fully cooked and easy to prepare chicken breast strips.", "attributes": ["fully cooked", "easy prepare", "natural ingredients"], "options": ["size: 5 - pack"], "instruction_attributes": ["fully cooked"], "instruction_options": ["5 - pack"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQOXP0O", "worker_id": "A1EREKSZAA9V7B"}], "B09B54J7PZ": [{"asin": "B09B54J7PZ", "instruction": "am actually looking for a twin size loft bed with slide, gray color with headboard", "attributes": ["twin size", "space saving", "white item", "easy assemble", "box spring", "solid wood"], "options": ["color: gray with headboard", "size: twin"], "instruction_attributes": ["twin size"], "instruction_options": ["gray with headboard", "twin"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OJWRTC", "worker_id": "A1IL2K0ELYI090"}], "B09QX9S3DB": [{"asin": "B09QX9S3DB", "instruction": "we want a twin over twin kids beds easy assemble box spring color : silver", "attributes": ["heavy duty", "easy assemble", "box spring"], "options": ["color: silver (style d)", "size: twin over twin"], "instruction_attributes": ["easy assemble", "box spring"], "instruction_options": ["silver (style d)", "twin over twin"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0ZCW46", "worker_id": "A3N9ZYQAESNFQH"}], "B09MH7PXZS": [{"asin": "B09MH7PXZS", "instruction": "i am lookig for king size box spring easy assemble heavy duty bed frame", "attributes": ["queen size", "box spring", "king size"], "options": [""], "instruction_attributes": ["box spring", "king size"], "instruction_options": [], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINUD72P", "worker_id": "A3N9ZYQAESNFQH"}], "B09M17NH24": [{"asin": "B09M17NH24", "instruction": "i'm looking for teeth whitening for oral health care.", "attributes": ["teeth whitening", "water resistant"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IQ1LT8", "worker_id": "A16IQOX0DK14OJ"}], "B08NPY23XH": [{"asin": "B08NPY23XH", "instruction": "i am looking for eyelash extension tool set for beauty salon.", "attributes": ["long lasting", "stainless steel", "beauty salon"], "options": [""], "instruction_attributes": ["beauty salon"], "instruction_options": [], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT060IUNM", "worker_id": "A3FG5PQHG5AH3Y"}], "B00V1ILTNM": [{"asin": "B00V1ILTNM", "instruction": "i am looking for non diary rich creamy creamers.", "attributes": ["rich creamy", "non dairy"], "options": [""], "instruction_attributes": ["rich creamy", "non dairy"], "instruction_options": [], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXDB7G1", "worker_id": "A9ZM1P6LBW79"}], "B09PYS81X6": [{"asin": "B09PYS81X6", "instruction": "i am looking for a green long handle bath & body brushes", "attributes": ["non slip", "long handle"], "options": ["size: green"], "instruction_attributes": ["long handle"], "instruction_options": ["green"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R19W7X", "worker_id": "A9QRQL9CFJBI7"}], "B084D5NYQT": [{"asin": "B084D5NYQT", "instruction": "i am looking for crunchy indian snack sticks that have no artificial flavors or colors.", "attributes": ["artificial colors", "artificial flavors"], "options": [""], "instruction_attributes": ["artificial colors", "artificial flavors"], "instruction_options": [], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163U9QP5", "worker_id": "A1NF6PELRKACS9"}], "B08DH5TFCJ": [{"asin": "B08DH5TFCJ", "instruction": "i would like a car in dash gps device that is easy to install.", "attributes": ["compatible apple", "hands free", "easy install", "quad core"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602UZ95B", "worker_id": "A1WS884SI0SLO4"}], "B07B8HKVXR": [{"asin": "B07B8HKVXR", "instruction": "i wanted to get a compatible apple watch with a black carbon fiber buckle to match with my phone's cover.", "attributes": ["compatible apple", "carbon fiber"], "options": ["color: black carbon fiber w | matte black hardware", "size: 45mm | 44mm s | m (5.3-7\")"], "instruction_attributes": ["compatible apple", "carbon fiber"], "instruction_options": ["black carbon fiber w | matte black hardware"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9ED11BX", "worker_id": "A39VVWV1GHLMFD"}], "B09PFPW5VD": [{"asin": "B09PFPW5VD", "instruction": "i'm looking for hair removal its inly used for natural ingredients.", "attributes": ["natural ingredients", "hair removal"], "options": [""], "instruction_attributes": ["natural ingredients", "hair removal"], "instruction_options": [], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2ILFKQ", "worker_id": "A16IQOX0DK14OJ"}], "B08DHDS93Q": [{"asin": "B08DHDS93Q", "instruction": "i'm looking for individually wrapped green raspberry 30 count bulk lollipop pack", "attributes": ["shelf stable", "individually wrapped"], "options": ["color: green"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["green"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I2Q1S3", "worker_id": "A258PTOZ3D2TQR"}], "B07MPTK3GY": [{"asin": "B07MPTK3GY", "instruction": "i'm looking for the pendant lights for ceiling lights for living room.", "attributes": ["glass shade", "clear glass", "pendant light", "light fixture", "living room"], "options": ["color: antique"], "instruction_attributes": ["living room"], "instruction_options": ["antique"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2J8KFK", "worker_id": "A16IQOX0DK14OJ"}], "B0777W3C8B": [{"asin": "B0777W3C8B", "instruction": "i'm looking for a mrs. fields cookies .", "attributes": ["kosher certified", "perfect gift"], "options": ["size: 60 count (pack of 3)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["60 count (pack of 3)"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVHC1PE", "worker_id": "A1ZGOZQF2VZ0X9"}], "B07JVLYV5Z": [{"asin": "B07JVLYV5Z", "instruction": "i need a red allgala 60x45 super soft, machine wash flannel plush light weight throw blanket", "attributes": ["super soft", "machine washable"], "options": ["color: red", "size: 45x60"], "instruction_attributes": ["super soft", "machine washable"], "instruction_options": ["red", "45x60"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGFQS9H", "worker_id": "A1IL2K0ELYI090"}], "B0851GZM55": [{"asin": "B0851GZM55", "instruction": "i am looking for a counter height size barstools of faux leather", "attributes": ["mid century", "assembly required", "faux leather"], "options": ["color: white", "pattern name: barstool", "size: counter height"], "instruction_attributes": ["faux leather"], "instruction_options": ["counter height"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT8W73J", "worker_id": "A9QRQL9CFJBI7"}], "B093362GNX": [{"asin": "B093362GNX", "instruction": "i want a keyboard skin that is dust proof and long lasting. choose a rainbow color.", "attributes": ["dust proof", "long lasting"], "options": ["color: rainbow", "size: k120 | mk120"], "instruction_attributes": ["dust proof", "long lasting"], "instruction_options": ["rainbow"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FOQFBK", "worker_id": "A1NF6PELRKACS9"}], "B0991ZW4R4": [{"asin": "B0991ZW4R4", "instruction": "i want quick release water resistant smart watch band color purple mist", "attributes": ["quick release", "water resistant"], "options": ["color: purple mist"], "instruction_attributes": ["quick release", "water resistant"], "instruction_options": ["purple mist"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7N83I9", "worker_id": "A3N9ZYQAESNFQH"}], "B09SGHZWWV": [{"asin": "B09SGHZWWV", "instruction": "i'm looking for a noldares women's high heel shoes.", "attributes": ["closed toe", "high heel", "ankle strap"], "options": ["color: beige", "size: 6"], "instruction_attributes": ["high heel", "ankle strap"], "instruction_options": ["beige", "6"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTQLTK2", "worker_id": "A1ZGOZQF2VZ0X9"}], "B079W3VRKZ": [{"asin": "B079W3VRKZ", "instruction": "i am looking for a women's beverly pump with leather sole. also choose ruby kid suede color and 5 size.", "attributes": ["leather sole", "rubber sole"], "options": ["color: ruby kid suede", "size: 5"], "instruction_attributes": ["leather sole"], "instruction_options": ["ruby kid suede", "5"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSKR8BA", "worker_id": "A2HMEGTAFO0CS8"}], "B07JFZBP8R": [{"asin": "B07JFZBP8R", "instruction": "i would like a long lasting men's fragrance set.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXTOO57", "worker_id": "A1WS884SI0SLO4"}], "B07FKFJP1Q": [{"asin": "B07FKFJP1Q", "instruction": "i found this bracelet from toyouths which is fitbit versa/versa compatible in stainless steel i need it to match the saddle color brown.", "attributes": ["quick release", "stainless steel"], "options": ["color: saddle brown"], "instruction_attributes": ["stainless steel"], "instruction_options": ["saddle brown"], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UI3OKA", "worker_id": "A15IJ20C3R4HUO"}], "B082N5YV7R": [{"asin": "B082N5YV7R", "instruction": "i'm looking for keto friendly double cholate cup cake it was sued in parties.", "attributes": ["keto friendly", "dietary fiber"], "options": ["flavor name: keto friendly double chocolate cake cup"], "instruction_attributes": ["keto friendly"], "instruction_options": ["keto friendly double chocolate cake cup"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7ZESD5", "worker_id": "A16IQOX0DK14OJ"}], "B07DCXCVFM": [{"asin": "B07DCXCVFM", "instruction": "i looking a rose gold orgnizer display for lipstic, eye shadow,lip gloss ,blush color clear /soft brass size 8*4*2", "attributes": ["rose gold", "eye shadow"], "options": ["color: clear | soft brass", "size: 8 x 4 x 2"], "instruction_attributes": ["rose gold", "eye shadow"], "instruction_options": ["clear | soft brass", "8 x 4 x 2"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80C9Q13", "worker_id": "A3N9ZYQAESNFQH"}], "B07R124WRK": [{"asin": "B07R124WRK", "instruction": "show me machine washable officially licensed disney jungle book t-shirt for men in color baby blues and size 3t.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: baby blue", "fit type: men", "size: 3t"], "instruction_attributes": ["officially licensed", "machine wash"], "instruction_options": ["baby blue", "men", "3t"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4NLKP9", "worker_id": "A3AYHESLQSDY5T"}], "B09P582MFG": [{"asin": "B09P582MFG", "instruction": "i am looking for a grey toy chests & organizers for storage space", "attributes": ["easy clean", "high gloss", "engineered wood", "storage space"], "options": ["color: grey"], "instruction_attributes": ["storage space"], "instruction_options": ["grey"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TZGSUM", "worker_id": "A9QRQL9CFJBI7"}], "B01E9HPVUS": [{"asin": "B01E9HPVUS", "instruction": "i am looking for a 1 count (pack of 12) hand masks for anti aging and dry skin.", "attributes": ["anti aging", "easy use", "dry skin"], "options": ["size: 1 count (pack of 12)"], "instruction_attributes": ["anti aging", "dry skin"], "instruction_options": ["1 count (pack of 12)"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N6R7TG", "worker_id": "A9QRQL9CFJBI7"}], "B09QWXVB3T": [{"asin": "B09QWXVB3T", "instruction": "i would like a medium sized black bikini with short sleeves.", "attributes": ["tummy control", "long sleeve", "short sleeve"], "options": ["color: a1-black", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["a1-black", "medium"], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIIP000", "worker_id": "A1WS884SI0SLO4"}], "B0734ZVZHP": [{"asin": "B0734ZVZHP", "instruction": "i would like a quad core desktop processor tower.", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "352YTHGRO6NQF252G9RXYWYALBG4HV", "worker_id": "A1WS884SI0SLO4"}], "B095LJRYRY": [{"asin": "B095LJRYRY", "instruction": "i'm looking for tempered glass for phone accessories the color was black and need to buy it.", "attributes": ["glass screen", "tempered glass"], "options": ["color: black"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["black"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQD191Y", "worker_id": "A16IQOX0DK14OJ"}], "B088QTGX5F": [{"asin": "B088QTGX5F", "instruction": "i\u2019m looking for a white window covering that is 72\u201d wide and 63\u201d long. also would prefer the covering had bears on it.", "attributes": ["white item", "living room", "dining room"], "options": ["color: color04", "size: 72\"w x 63\"l"], "instruction_attributes": ["white item"], "instruction_options": ["72\"w x 63\"l"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGUB0MR6", "worker_id": "AK3JMCIGU8MLU"}], "B07R6NMPXW": [{"asin": "B07R6NMPXW", "instruction": "i am looking for a gluten free and non gmo bakery & dessert gifts of peanut butter flavour", "attributes": ["gluten free", "individually wrapped", "baked fresh", "grass fed", "non gmo"], "options": ["flavor name: peanut butter"], "instruction_attributes": ["gluten free", "non gmo"], "instruction_options": ["peanut butter"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH154ZT", "worker_id": "A9QRQL9CFJBI7"}], "B07KY3MQ1Y": [{"asin": "B07KY3MQ1Y", "instruction": "i am looking for a gluten-free and usda organic labled fruit juice.", "attributes": ["usda organic", "gluten free"], "options": [""], "instruction_attributes": ["usda organic", "gluten free"], "instruction_options": [], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6EHPU9", "worker_id": "A9ZM1P6LBW79"}], "B07SB464N4": [{"asin": "B07SB464N4", "instruction": "i'm looking for a pexfix full length floor mirror with standing holder .", "attributes": ["wall mounted", "space saving", "living room"], "options": ["color: sliver (arched-top)", "size: 65''x22''"], "instruction_attributes": ["wall mounted"], "instruction_options": ["sliver (arched-top)", "65''x22''"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPJAJN3", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09CZCRLJR": [{"asin": "B09CZCRLJR", "instruction": "i'm looking for cell phone accessories for tempered class and it was high definition.", "attributes": ["high definition", "tempered glass"], "options": ["color: black", "size: 44mm"], "instruction_attributes": ["high definition", "tempered glass"], "instruction_options": ["black"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66ROZFM", "worker_id": "A16IQOX0DK14OJ"}], "B08W4HYRF1": [{"asin": "B08W4HYRF1", "instruction": "i'm looking for make up for eye shadow to skin care products.", "attributes": ["paraben free", "high quality", "eye shadow"], "options": [""], "instruction_attributes": ["eye shadow"], "instruction_options": [], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OVLEY6", "worker_id": "A16IQOX0DK14OJ"}], "B01M0JY15V": [{"asin": "B01M0JY15V", "instruction": "i am looking for a usb 4g lte wifi modem for internet connection.", "attributes": ["plug play", "4g lte"], "options": [""], "instruction_attributes": ["4g lte"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYJYL67", "worker_id": "AHU9OLV0YKIIW"}], "B00BIFNTMC": [{"asin": "B00BIFNTMC", "instruction": "wireless vertical ergonomic optical mouse with aaa batteries", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC7YD06", "worker_id": "A10OGH5CQBXL5N"}], "B08TWKLT7N": [{"asin": "B08TWKLT7N", "instruction": "i'm looking for long sleeve lightweight buy a c-blue weather.", "attributes": ["stretch fabric", "long sleeve"], "options": ["color: c-blue heather", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["c-blue heather"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OW4M3K", "worker_id": "A16IQOX0DK14OJ"}], "B09NVTSXPN": [{"asin": "B09NVTSXPN", "instruction": "i am looking for sego mono base hair topper with bangs 100% real human hair which creating the most lustrous and realistic natural effects, the hair extensions clip-in design makes it easier to wear. color platinum blonde-b in size 10 inch-130% density preferable", "attributes": ["easy use", "hair loss"], "options": ["color: platinum blonde-b", "size: 10 inch-130% density"], "instruction_attributes": ["easy use"], "instruction_options": ["platinum blonde-b", "10 inch-130% density"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FE3K89", "worker_id": "A1DRKZ3SCLAS4V"}], "B07TYS4TCR": [{"asin": "B07TYS4TCR", "instruction": "i am looking for high quality nail cleaning brush. please choose color b .", "attributes": ["non toxic", "easy carry", "easy use", "high quality", "long handle", "nail art"], "options": ["color: color b"], "instruction_attributes": ["high quality"], "instruction_options": ["color b"], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWN925U", "worker_id": "A3FG5PQHG5AH3Y"}], "B0967GX3P9": [{"asin": "B0967GX3P9", "instruction": "i'm looking for clothing for closet storage and it was easy to clean.", "attributes": ["easy assemble", "non slip", "space saving", "easy clean", "living room"], "options": ["color: grey", "size: 2pcs"], "instruction_attributes": ["space saving", "easy clean"], "instruction_options": ["grey"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTQEV4Z", "worker_id": "A16IQOX0DK14OJ"}], "B09K6CWZNX": [{"asin": "B09K6CWZNX", "instruction": "i'm looking for grey flannel home and kitchen products for decore it.", "attributes": ["high density", "lumbar support", "dining room", "living room"], "options": ["color: grey flannel"], "instruction_attributes": ["dining room", "living room"], "instruction_options": ["grey flannel"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1BFGY4", "worker_id": "A16IQOX0DK14OJ"}], "B0939SPCFF": [{"asin": "B0939SPCFF", "instruction": "i need a 60 inch projector screen with an aspect ratio of 4:3 that mounts on the wall. it should be easy to install it.", "attributes": ["wall mounted", "ultra hd", "easy install"], "options": ["size: 60in\uff084\uff1a3\uff09"], "instruction_attributes": ["wall mounted", "easy install"], "instruction_options": ["60in\uff084\uff1a3\uff09"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZJJ9KJ", "worker_id": "A1NF6PELRKACS9"}], "B082JGZSMS": [{"asin": "B082JGZSMS", "instruction": "i am looking for a paraben free conditioner for natural hair. also choose leave-in conditioner style", "attributes": ["paraben free", "damaged hair", "dry hair", "natural hair"], "options": ["style: leave in conditioner"], "instruction_attributes": ["paraben free", "natural hair"], "instruction_options": ["leave in conditioner"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD10CIX", "worker_id": "A2HMEGTAFO0CS8"}], "B083ZG9Y7K": [{"asin": "B083ZG9Y7K", "instruction": "i'm looking for a handyulong womens high waist bootcut yoga pants", "attributes": ["wide leg", "butt lifting", "straight leg", "high waist", "long sleeve", "drawstring closure", "tummy control"], "options": ["color: x-zmint green", "size: 3x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["x-zmint green", "3x-large"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP10798ILB", "worker_id": "A1ZGOZQF2VZ0X9"}], "B09JNY3W9D": [{"asin": "B09JNY3W9D", "instruction": "find me a lift top coffee table in cherry for my living room", "attributes": ["space saving", "easy assemble", "living room"], "options": ["color: cherry"], "instruction_attributes": ["living room"], "instruction_options": ["cherry"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OWAYEH", "worker_id": "A2Y2TURT2VEYZN"}], "B07JH4F11B": [{"asin": "B07JH4F11B", "instruction": "i looking a body scrubs eco friendly for removing dead skin", "attributes": ["eco friendly", "dead skin"], "options": [""], "instruction_attributes": ["eco friendly", "dead skin"], "instruction_options": [], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVY1ADIW", "worker_id": "A3N9ZYQAESNFQH"}], "B0897ZFHX2": [{"asin": "B0897ZFHX2", "instruction": "i'm looking for hyaluronic acid for skin care moisturizers.", "attributes": ["animal testing", "cruelty free", "tea tree", "hyaluronic acid"], "options": [""], "instruction_attributes": ["cruelty free", "hyaluronic acid"], "instruction_options": [], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IW0KHT", "worker_id": "A16IQOX0DK14OJ"}], "B08YDHFQ2X": [{"asin": "B08YDHFQ2X", "instruction": "i'm looking for vegetables and dried vegetables for low carb. it is easy to use.", "attributes": ["low carb", "plant based"], "options": ["flavor: hwago - grade s (140g)"], "instruction_attributes": ["low carb"], "instruction_options": ["hwago - grade s (140g)"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OJ2RTI", "worker_id": "A16IQOX0DK14OJ"}], "B09R917TMV": [{"asin": "B09R917TMV", "instruction": "i'm looking for optical zoom electronic for digital cameras need to to buy it.", "attributes": ["optical zoom", "carrying case"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "369J354OFOKQUTE5FR2UAU6N21Y6G6", "worker_id": "A16IQOX0DK14OJ"}], "B07MVKQHBJ": [{"asin": "B07MVKQHBJ", "instruction": "i'm looking for a french macarons cookies birthday gift variety pack .", "attributes": ["natural ingredients", "valentine day", "great gift", "perfect gift"], "options": ["flavor name: holiday flavors", "size: 12 count"], "instruction_attributes": ["perfect gift"], "instruction_options": ["holiday flavors", "12 count"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT3ZJYE", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08CRD99SZ": [{"asin": "B08CRD99SZ", "instruction": "i need a silver fast wireless charger with aluminum alloy frame.", "attributes": ["aluminum alloy", "wireless charging"], "options": ["color: b.sliver*"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N7VT78", "worker_id": "A1Q0EUNCS50S8M"}], "B01DJ6TM8M": [{"asin": "B01DJ6TM8M", "instruction": "i am looking for a dummy surveillance camera for ceiling with batteries included. also choose which is supporting aaa size batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI76KZGH", "worker_id": "A2HMEGTAFO0CS8"}], "B003ZXEBOK": [{"asin": "B003ZXEBOK", "instruction": "i'm looking for a ready to eat baked snacks which should be individually wrapped.", "attributes": ["ready eat", "individually wrapped"], "options": [""], "instruction_attributes": ["ready eat", "individually wrapped"], "instruction_options": [], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO5O33M", "worker_id": "AR0VJ5XRG16UJ"}], "B08FVG2M1J": [{"asin": "B08FVG2M1J", "instruction": "i need a high quality gomu 500 pack - 2 oz / 60 ml clear refillable flip top pet plastic travel bottle container", "attributes": ["leak proof", "bpa free", "non toxic", "high quality"], "options": ["size: 500 pack"], "instruction_attributes": ["high quality"], "instruction_options": ["500 pack"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8PI6QE", "worker_id": "A1IL2K0ELYI090"}], "B07V13MY6X": [{"asin": "B07V13MY6X", "instruction": "i want a pair of ethylene vinyl trainers that is black in color. get me a size 8.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: black", "size: 8"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["black", "8"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFO13V1", "worker_id": "A1NF6PELRKACS9"}], "B09DP9NSP8": [{"asin": "B09DP9NSP8", "instruction": "i'm looking for gray wireless headphones it can reduce outside noise pollution.", "attributes": ["high definition", "wireless bluetooth"], "options": ["color: gray"], "instruction_attributes": ["high definition", "wireless bluetooth"], "instruction_options": ["gray"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHA31EM", "worker_id": "A16IQOX0DK14OJ"}], "B09K7YV36Y": [{"asin": "B09K7YV36Y", "instruction": "i am looking for a medium size winter warm jackets", "attributes": ["winter warm", "light weight", "machine wash", "fleece lined", "wash cold", "long sleeve", "faux fur", "quality polyester", "elastic closure", "teen girls", "dry clean", "daily wear"], "options": ["color: c-blue", "size: medium"], "instruction_attributes": ["winter warm"], "instruction_options": ["medium"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAUB3C94", "worker_id": "A9QRQL9CFJBI7"}], "B08YNPT4CD": [{"asin": "B08YNPT4CD", "instruction": "i am looking for a cupcake toppers for birthday party birthday cake", "attributes": ["birthday party", "birthday cake", "cupcake picks"], "options": [""], "instruction_attributes": ["birthday party", "birthday cake"], "instruction_options": [], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4U1K7Q", "worker_id": "A9QRQL9CFJBI7"}], "B09L7JNKXW": [{"asin": "B09L7JNKXW", "instruction": "i would like some old fashioned bake mix made from natural ingredients.", "attributes": ["old fashioned", "natural ingredients", "gift set"], "options": [""], "instruction_attributes": ["old fashioned", "natural ingredients"], "instruction_options": [], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA9BS2K", "worker_id": "A1WS884SI0SLO4"}], "B09J43KD51": [{"asin": "B09J43KD51", "instruction": "i need a yellow facial sponge for sensitive skin", "attributes": ["eco friendly", "dead skin", "sensitive skin"], "options": ["color: yellow"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["yellow"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7WMCU4", "worker_id": "A2Y2TURT2VEYZN"}], "B09B9B4JNX": [{"asin": "B09B9B4JNX", "instruction": "teeth whitening toothpaste with natural ingredients only 1 pcs", "attributes": ["teeth whitening", "long lasting", "natural ingredients"], "options": ["color: 1pcs"], "instruction_attributes": ["teeth whitening", "natural ingredients"], "instruction_options": ["1pcs"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788FFC58", "worker_id": "A10OGH5CQBXL5N"}], "B07R9KFCKY": [{"asin": "B07R9KFCKY", "instruction": "i am looking set of 4 black velvet mid century chair for dining room", "attributes": ["non slip", "mid century", "high density", "dining room", "living room"], "options": ["color: black velvet", "size: set of 4"], "instruction_attributes": ["mid century", "dining room"], "instruction_options": ["black velvet", "set of 4"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VRVXML", "worker_id": "A3N9ZYQAESNFQH"}], "B08PFJP5S2": [{"asin": "B08PFJP5S2", "instruction": "for my eyes i need a color 10 eyeshadow which should be easy to use.\u2075", "attributes": ["highly pigmented", "easy apply", "cruelty free", "eye shadow"], "options": ["color: 10"], "instruction_attributes": ["easy apply", "eye shadow"], "instruction_options": ["10"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSI7621", "worker_id": "ASWFLI3N8X72G"}], "B08SLRG76Y": [{"asin": "B08SLRG76Y", "instruction": "find me a tempered glass camera lens protector for iphone 12 pro max in blue", "attributes": ["ultra hd", "high resolution", "easy install", "tempered glass", "aluminum alloy"], "options": ["color: blue", "size: iphone 12 pro max"], "instruction_attributes": ["tempered glass"], "instruction_options": ["blue", "iphone 12 pro max"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4Z3H0V", "worker_id": "A2Y2TURT2VEYZN"}], "B07XZ5VPK9": [{"asin": "B07XZ5VPK9", "instruction": "i am looking for hair growth serum for men.", "attributes": ["easy use", "seed oil", "hair growth", "hair loss", "hair dye"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "37Z929RLGKIZMWY86444AIH4AKOTS9", "worker_id": "A3FG5PQHG5AH3Y"}], "B08Y6VZFT6": [{"asin": "B08Y6VZFT6", "instruction": "i'm looking for a light pink long handle back loofah shower brush.", "attributes": ["long handle", "dead skin"], "options": ["scent: light pink"], "instruction_attributes": ["long handle"], "instruction_options": ["light pink"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZNZY1R", "worker_id": "A1Q0EUNCS50S8M"}], "B09DSCTNG1": [{"asin": "B09DSCTNG1", "instruction": "cowboy boots for women non slip choose in brown colour", "attributes": ["knee high", "non slip", "high heel", "ethylene vinyl", "vinyl acetate"], "options": ["color: brown", "size: 6.5 wide"], "instruction_attributes": ["knee high", "non slip"], "instruction_options": ["brown"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0DQ61J", "worker_id": "A10OGH5CQBXL5N"}], "B09MCKF3S7": [{"asin": "B09MCKF3S7", "instruction": "i would like a light weight computer speaker that is easy to carry.", "attributes": ["power amplifier", "light weight", "easy carry"], "options": [""], "instruction_attributes": ["light weight", "easy carry"], "instruction_options": [], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY3NJ4I", "worker_id": "A1WS884SI0SLO4"}], "B07M6T48M7": [{"asin": "B07M6T48M7", "instruction": "i need some high quality blue body paint.", "attributes": ["non toxic", "high quality"], "options": ["color: poseidon deep blue"], "instruction_attributes": ["high quality"], "instruction_options": ["poseidon deep blue"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJSQXBV", "worker_id": "A19317A3X87NVM"}], "B07WZMBRJ4": [{"asin": "B07WZMBRJ4", "instruction": "i am looking for an apple compatible case cover that is clear green or has silver glitter in it.", "attributes": ["compatible apple", "case cover"], "options": ["color: green clear | silver glitter"], "instruction_attributes": ["compatible apple", "case cover"], "instruction_options": ["green clear | silver glitter"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX5HAFU", "worker_id": "A1NF6PELRKACS9"}], "B09434QK1N": [{"asin": "B09434QK1N", "instruction": "i am looking for a 8 size walking shoes for daily wear", "attributes": ["teen girls", "daily wear"], "options": ["color: z01-khaki", "size: 8"], "instruction_attributes": ["daily wear"], "instruction_options": ["8"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1NHF61", "worker_id": "A9QRQL9CFJBI7"}], "B091DCM8YQ": [{"asin": "B091DCM8YQ", "instruction": "i am looking for a women's socks made up of polyester cotton which is washable in machine. also choose black or semi mint rush green color.", "attributes": ["moisture wicking", "machine wash", "cotton spandex", "polyester cotton"], "options": ["color: black | semi turbo pink | semi mint rush green"], "instruction_attributes": ["machine wash", "polyester cotton"], "instruction_options": ["black | semi turbo pink | semi mint rush green"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTRIKTS", "worker_id": "A2HMEGTAFO0CS8"}], "B08D7VZ5GB": [{"asin": "B08D7VZ5GB", "instruction": "i am looking for a media player that is easy to use.", "attributes": ["dual band", "batteries included", "easy use", "quad core"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4FT8LN", "worker_id": "A2ECRNQ3X5LEXD"}], "B00J074W7Q": [{"asin": "B00J074W7Q", "instruction": "i would like a ice coffee flavor protein powder that is usda organic and non gmo.", "attributes": ["plant based", "lactose free", "soy free", "non gmo", "artificial ingredients", "gluten free", "usda organic", "dairy free", "dietary fiber"], "options": ["flavor: iced coffee, 2 lb"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["iced coffee, 2 lb"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX7AAFR", "worker_id": "A1WS884SI0SLO4"}], "B08P54GQZM": [{"asin": "B08P54GQZM", "instruction": "i would like a 2xl white v neck shirt that can be machine washed.", "attributes": ["moisture wicking", "machine wash", "cotton spandex", "classic fit"], "options": ["color: white | black soot | grey flannel (crew 3-pack)", "fit type: v-neck t-shirts", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["white | black soot | grey flannel (crew 3-pack)", "v-neck t-shirts", "xx-large"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO75R28", "worker_id": "A1WS884SI0SLO4"}], "B09PDTL31Y": [{"asin": "B09PDTL31Y", "instruction": "i need a green x-large sweater that comes in a soft material.", "attributes": ["soft material", "tummy control"], "options": ["color: x-05#1green", "size: x-large"], "instruction_attributes": ["soft material"], "instruction_options": ["x-05#1green", "x-large"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPBJCOE", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FLNSZ8G": [{"asin": "B09FLNSZ8G", "instruction": "find me a black red headphone bluetooth and wireless", "attributes": ["noise cancelling", "hands free", "wireless bluetooth"], "options": ["color: black+red"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black+red"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYLLQLM", "worker_id": "A2Y2TURT2VEYZN"}], "B09H15M5MT": [{"asin": "B09H15M5MT", "instruction": "i am looking for dates that are low calorie", "attributes": ["low calorie", "ready eat", "great gift"], "options": ["flavor: variety pack dates", "size: 8 pack"], "instruction_attributes": ["low calorie"], "instruction_options": ["variety pack dates"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UH5A3I", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GPDQWD2": [{"asin": "B09GPDQWD2", "instruction": "i need to find a black gaming headset with stereo sound.", "attributes": ["noise cancelling", "stereo sound"], "options": ["color: black blue"], "instruction_attributes": ["stereo sound"], "instruction_options": ["black blue"], "assignment_id": "3P4MQ7TPP8M09ONPVWROKZ1I0R6BB8", "worker_id": "A15ERD4HOFEPHM"}], "B08S33J873": [{"asin": "B08S33J873", "instruction": "i am looking for round shape table top cover for my living room.", "attributes": ["eco friendly", "easy clean", "stainless steel", "dining room", "living room"], "options": ["color: upgraded clear 1.0mm", "shape: round", "size: 12 x 48 inches"], "instruction_attributes": ["living room"], "instruction_options": ["round"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMLM1J0", "worker_id": "A1Q8PPQQCWGY0D"}], "B07THJ72YQ": [{"asin": "B07THJ72YQ", "instruction": "i am looking for long sleeve women tunic of gray color.", "attributes": ["loose fit", "long sleeve", "polyester cotton"], "options": ["color: gray", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["gray"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTBSNLS", "worker_id": "A3FG5PQHG5AH3Y"}], "B09472PX4V": [{"asin": "B09472PX4V", "instruction": "i would like a non toxic nail polish set.", "attributes": ["non toxic", "nail polish"], "options": [""], "instruction_attributes": ["non toxic", "nail polish"], "instruction_options": [], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZSV3KK", "worker_id": "A1WS884SI0SLO4"}], "B08YYLRD89": [{"asin": "B08YYLRD89", "instruction": "i am looking a classic style table lamp for my living room.", "attributes": ["non slip", "glass shade", "living room"], "options": ["style: classic"], "instruction_attributes": ["living room"], "instruction_options": ["classic"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HGD4HYK", "worker_id": "A1Q8PPQQCWGY0D"}], "B08XWF3BHQ": [{"asin": "B08XWF3BHQ", "instruction": "i am looking for barber shop height adjustable beauty salon chair. also green one", "attributes": ["height adjustable", "beauty salon"], "options": ["color: g"], "instruction_attributes": ["height adjustable", "beauty salon"], "instruction_options": ["g"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY9DU0L", "worker_id": "A258PTOZ3D2TQR"}], "B09M31ZFWN": [{"asin": "B09M31ZFWN", "instruction": "i would like a 198 bt power amplifier with wireless bluetooth.", "attributes": ["power amplifier", "easy use", "wireless bluetooth"], "options": ["color: 198bt"], "instruction_attributes": ["power amplifier", "wireless bluetooth"], "instruction_options": ["198bt"], "assignment_id": "354P56DE9VDCOY11T1135MPMLP4S77", "worker_id": "A1WS884SI0SLO4"}], "B01HIX1EHO": [{"asin": "B01HIX1EHO", "instruction": "i'm looking for a large upholstered bench that is contemporary style and has solid wood. also, it should be gray.", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: light gray", "size: bench-large"], "instruction_attributes": ["contemporary style", "solid wood"], "instruction_options": ["light gray", "bench-large"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPNF6EP", "worker_id": "A34EHWOYRBL6OZ"}], "B08T24PXZY": [{"asin": "B08T24PXZY", "instruction": "i would like a 2 pound bag of chocolate covered gluten free bars.", "attributes": ["chocolate covered", "gluten free"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["chocolate covered", "gluten free"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBTTJE2", "worker_id": "A1WS884SI0SLO4"}], "B01B7AGX2U": [{"asin": "B01B7AGX2U", "instruction": "i would like to have anti-aging moisturizer which has 10 ivory fair.", "attributes": ["anti aging", "clinically proven", "fine lines"], "options": ["color: 10 ivory fair"], "instruction_attributes": ["anti aging"], "instruction_options": ["10 ivory fair"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06OEKXL", "worker_id": "A15ERD4HOFEPHM"}], "B01N47U1VI": [{"asin": "B01N47U1VI", "instruction": "i need a pair of white bluetooth speakers that have stereo sound.", "attributes": ["water resistant", "stereo sound"], "options": ["color: white"], "instruction_attributes": ["stereo sound"], "instruction_options": ["white"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN686G5N", "worker_id": "A2ECRNQ3X5LEXD"}], "B004W55Y9Q": [{"asin": "B004W55Y9Q", "instruction": "i would like a single pack of rooblos vanilla certified organic tea.", "attributes": ["kosher certified", "certified organic"], "options": ["flavor name: roobios vanilla", "size: pack of 1"], "instruction_attributes": ["kosher certified"], "instruction_options": ["roobios vanilla", "pack of 1"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XBZFR5", "worker_id": "A1WS884SI0SLO4"}], "B00YOSJ4B0": [{"asin": "B00YOSJ4B0", "instruction": "i am looking for a high quality 3g/3ml round clear jar with bpa free. also choose green color and size with 50 jars.", "attributes": ["bpa free", "high quality"], "options": ["color: green", "size: 50 jars"], "instruction_attributes": ["bpa free", "high quality"], "instruction_options": ["green", "50 jars"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOKOLMU", "worker_id": "A2HMEGTAFO0CS8"}], "B07992CMQT": [{"asin": "B07992CMQT", "instruction": "i am looking for body sprays alcohol free in persian rose-pack of 1", "attributes": ["alcohol free", "cruelty free"], "options": ["style: persian rose - pack of 1"], "instruction_attributes": ["alcohol free"], "instruction_options": ["persian rose - pack of 1"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80FT1Q4", "worker_id": "A2MSIFDLOHI1UT"}], "B08QPXD1QK": [{"asin": "B08QPXD1QK", "instruction": "i want something to treat my hair loss that also promotes hair growth.", "attributes": ["hair growth", "hair loss"], "options": [""], "instruction_attributes": ["hair growth", "hair loss"], "instruction_options": [], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40YGCR0", "worker_id": "AR9AU5FY1S3RO"}], "B08HQTD5ND": [{"asin": "B08HQTD5ND", "instruction": "i would like a #6 nail whitener for nail art.", "attributes": ["rose gold", "nail art"], "options": ["color: 6"], "instruction_attributes": ["nail art"], "instruction_options": ["6"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9BZZAX", "worker_id": "A1WS884SI0SLO4"}], "B09P711941": [{"asin": "B09P711941", "instruction": "i need a tripod that is made of carbon fiber.", "attributes": ["quick release", "carbon fiber"], "options": [""], "instruction_attributes": ["carbon fiber"], "instruction_options": [], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X006W42", "worker_id": "A2ECRNQ3X5LEXD"}], "B07M9ZM2XB": [{"asin": "B07M9ZM2XB", "instruction": "i want a long lasting remote control with batteries included.", "attributes": ["batteries included", "long lasting"], "options": [""], "instruction_attributes": ["batteries included", "long lasting"], "instruction_options": [], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95UQXQA", "worker_id": "A15ERD4HOFEPHM"}], "B087NCCDN3": [{"asin": "B087NCCDN3", "instruction": "i am looking for women's cover up dress of black color with long sleeve.", "attributes": ["machine wash", "long sleeve"], "options": ["color: black", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["black"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYWRVHE", "worker_id": "A1Q8PPQQCWGY0D"}], "B09F6Q2228": [{"asin": "B09F6Q2228", "instruction": "looking for cup cake picks for party supplies of rose gold colour", "attributes": ["valentine day", "cupcake picks", "party supplies", "birthday party"], "options": ["color: rose gold"], "instruction_attributes": ["cupcake picks", "party supplies"], "instruction_options": ["rose gold"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB8M4YP", "worker_id": "A10OGH5CQBXL5N"}], "B092ZHNZ53": [{"asin": "B092ZHNZ53", "instruction": "i am looking for a power amplifier.", "attributes": ["power amplifier", "aluminum alloy"], "options": [""], "instruction_attributes": ["power amplifier"], "instruction_options": [], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOL1L9F", "worker_id": "A2ECRNQ3X5LEXD"}], "B004AI97MA": [{"asin": "B004AI97MA", "instruction": "i'm looking for all skin type body moisturizer oil to prevent body from scars and stretchmarks,etc.,", "attributes": ["clinically proven", "anti aging"], "options": ["style: trial size bundle - oil & gel"], "instruction_attributes": ["clinically proven"], "instruction_options": ["trial size bundle - oil & gel"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733OVBEK", "worker_id": "A21IUUHBSEVB56"}], "B09GX9R9MX": [{"asin": "B09GX9R9MX", "instruction": "i want big size living room", "attributes": ["bronze finish", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHG7NBW", "worker_id": "A226L9F2AZ38CL"}], "B09JWXX6PT": [{"asin": "B09JWXX6PT", "instruction": "i am looking for a black end table for my living room.", "attributes": ["white item", "white finish", "contemporary style", "living room", "home furnishings"], "options": ["color: black"], "instruction_attributes": ["living room"], "instruction_options": ["black"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOFXNO7", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CLGZ7F8": [{"asin": "B09CLGZ7F8", "instruction": "i would like some soy free candles", "attributes": ["lead free", "soy wax"], "options": [""], "instruction_attributes": ["soy wax"], "instruction_options": [], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5Y0BQ3R", "worker_id": "A2ECRNQ3X5LEXD"}], "B0773R4JWX": [{"asin": "B0773R4JWX", "instruction": "i need some slim fitting pants that are desert rose colored and are a size 8 short.", "attributes": ["day comfort", "slim fit", "nylon spandex"], "options": ["color: desert rose", "size: 8 short"], "instruction_attributes": ["slim fit"], "instruction_options": ["desert rose", "8 short"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68HG4AC", "worker_id": "A2ECRNQ3X5LEXD"}], "B00CO8YH5U": [{"asin": "B00CO8YH5U", "instruction": "i am looking for womens size socks that are machine washable.", "attributes": ["knee high", "machine washable", "nylon spandex"], "options": ["color: lime | dark green | white", "size: womens"], "instruction_attributes": ["machine washable"], "instruction_options": ["womens"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21PAFQH", "worker_id": "A1Q8PPQQCWGY0D"}], "B09Q63T5ZF": [{"asin": "B09Q63T5ZF", "instruction": "i am looking for a large, grey, men's pullover sweater with an elastic waist.", "attributes": ["low rise", "elastic waist"], "options": ["color: grey", "size: large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["grey", "large"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTKZ4D0", "worker_id": "A114NK7T5673GK"}], "B08DL6BRT9": [{"asin": "B08DL6BRT9", "instruction": "i would like a 4.22 ounce variety pack of non gmo gluten free smoothie pouches.", "attributes": ["non gmo", "artificial ingredients", "gluten free"], "options": ["flavor name: variety pack", "size: 4.22 ounce (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["variety pack", "4.22 ounce (pack of 6)"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34NB41P", "worker_id": "A1WS884SI0SLO4"}], "B07R1VYDRW": [{"asin": "B07R1VYDRW", "instruction": "i'm looking for a long lasting 3 wick candle that has soy wax and is sweet delight scented.", "attributes": ["long lasting", "soy wax"], "options": ["scent: sweet delight", "size: 8oz bundle"], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": ["sweet delight"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFV4JOB", "worker_id": "A34EHWOYRBL6OZ"}], "B09M7BPPCQ": [{"asin": "B09M7BPPCQ", "instruction": "i am looking for xx-large size stylish water resistant padded coat thicken winter warm outerwear. also blue one", "attributes": ["winter warm", "water resistant"], "options": ["color: c-blue", "size: xx-large"], "instruction_attributes": ["winter warm", "water resistant"], "instruction_options": ["c-blue", "xx-large"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQE4JAG", "worker_id": "A258PTOZ3D2TQR"}], "B094FQCRKV": [{"asin": "B094FQCRKV", "instruction": "i'm looking for a black hair loss concealer", "attributes": ["easy apply", "hair loss"], "options": ["color: black"], "instruction_attributes": ["hair loss"], "instruction_options": ["black"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD2YIC3", "worker_id": "A2Y2TURT2VEYZN"}], "B0991FC8BG": [{"asin": "B0991FC8BG", "instruction": "i would like a green tea mask.", "attributes": ["dermatologist tested", "cruelty free", "green tea"], "options": [""], "instruction_attributes": ["green tea"], "instruction_options": [], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZM97CJ", "worker_id": "A1WS884SI0SLO4"}], "B001B2KXIA": [{"asin": "B001B2KXIA", "instruction": "i'm looking for permanent hair dye in black. i want a three pack.", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 020 brown black", "size: 3 count (pack of 1)", "style: new version"], "instruction_attributes": ["hair dye", "permanent hair"], "instruction_options": ["020 brown black", "3 count (pack of 1)"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTG2D5M", "worker_id": "AR9AU5FY1S3RO"}], "B07H1VDWLX": [{"asin": "B07H1VDWLX", "instruction": "i need a red ball gown with a lace closure in a size twelve.", "attributes": ["lace closure", "drawstring closure"], "options": ["color: red", "size: 12"], "instruction_attributes": ["lace closure"], "instruction_options": ["red", "12"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQCPN0P", "worker_id": "AR9AU5FY1S3RO"}], "B07RPQRK3V": [{"asin": "B07RPQRK3V", "instruction": "i am looking for strawberry & apple flavor fruit snack pack that are gluten free.", "attributes": ["gluten free", "non gmo", "fat free", "real fruit", "simple ingredients"], "options": ["flavor name: strawberry & apple", "size: 1.6 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["strawberry & apple"], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIJI00V", "worker_id": "A1Q8PPQQCWGY0D"}], "B09NCJ5XWF": [{"asin": "B09NCJ5XWF", "instruction": "i would like a hair trimmer that is stainless steel.", "attributes": ["non slip", "stainless steel", "hair removal", "dead skin", "sensitive skin"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTSQTKB", "worker_id": "A2ECRNQ3X5LEXD"}], "B0018OL2YA": [{"asin": "B0018OL2YA", "instruction": "i need straight leg jeans in a medium that are big and tall.", "attributes": ["straight leg", "relaxed fit", "button closure"], "options": ["color: comfort stretch medium", "fit type: big & tall", "size: 30w x 29l"], "instruction_attributes": ["straight leg"], "instruction_options": ["comfort stretch medium", "big & tall"], "assignment_id": "3G2UL9A02OO71034MOY04HTU30F677", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0018OL2YA", "instruction": "i am looking for levi's men's 550 regular relaxed fit jeans.", "attributes": ["straight leg", "relaxed fit", "button closure"], "options": ["color: rinse - stretch (waterless)", "fit type: regular", "size: 34w x 30l"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["regular"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC550DW", "worker_id": "A1EREKSZAA9V7B"}], "B08LBMYGTL": [{"asin": "B08LBMYGTL", "instruction": "i'm looking for hair care for hair growth for women's to prevention of hair falling.", "attributes": ["coconut oil", "natural hair", "dry hair", "hair growth"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZDTUWM", "worker_id": "A16IQOX0DK14OJ"}], "B00ISAORHQ": [{"asin": "B00ISAORHQ", "instruction": "i would like a 13.25 by 8 inch vanity light with a glass shade and a satin nickel finish.", "attributes": ["bronze finish", "glass shade"], "options": ["color: satin nickel finish", "size: 13.25 by 8-inch"], "instruction_attributes": ["glass shade"], "instruction_options": ["satin nickel finish", "13.25 by 8-inch"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRWMPW6", "worker_id": "A1WS884SI0SLO4"}], "B098N7SGRD": [{"asin": "B098N7SGRD", "instruction": "i'm looking for an easy to install bathroom vanity light in color black.", "attributes": ["easy install", "vanity light", "clear glass", "glass shade", "light fixture", "living room"], "options": ["color: black"], "instruction_attributes": ["easy install", "vanity light"], "instruction_options": ["black"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSL68BR", "worker_id": "A3MNXK3VDK37SN"}], "B09JG2NPSG": [{"asin": "B09JG2NPSG", "instruction": "my mom need wood frame twin size", "attributes": ["assembly required", "wood frame", "box spring"], "options": ["color: espresso(with trundle)", "size: twin"], "instruction_attributes": ["wood frame"], "instruction_options": ["twin"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X40QH0K", "worker_id": "A226L9F2AZ38CL"}], "B08FBL7P7S": [{"asin": "B08FBL7P7S", "instruction": "i am lookig for a light weight clover color womens pullover.", "attributes": ["light weight", "loose fit", "long sleeve"], "options": ["color: clover", "size: 3x"], "instruction_attributes": ["light weight"], "instruction_options": ["clover"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQ9RL1K", "worker_id": "A1Q8PPQQCWGY0D"}], "B097FJ9KHT": [{"asin": "B097FJ9KHT", "instruction": "intel core i5-11700, 64gb ram, 1tb ssd + 1tb hdd, destop tower", "attributes": ["core i5", "intel core"], "options": ["size: 64gb ram | 1tb ssd + 2tb hdd"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3R2PKQ87N7I6FN5SSV9EK2GP7G5MIS", "worker_id": "A3N9ZYQAESNFQH"}], "B09NJ39F9R": [{"asin": "B09NJ39F9R", "instruction": "i want a non slip steel toe black men's shoe size :6.5", "attributes": ["slip resistant", "non slip", "steel toe"], "options": ["color: black", "size: 6.5"], "instruction_attributes": ["non slip", "steel toe"], "instruction_options": [], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K9612H", "worker_id": "A3N9ZYQAESNFQH"}], "B01N2N0ZWV": [{"asin": "B01N2N0ZWV", "instruction": "i need to get some gluten free coffee and it should be one pack of 8 ounces.", "attributes": ["freeze dried", "non dairy", "non gmo", "gluten free", "dairy free"], "options": ["flavor name: unsweetened", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLWMTFM", "worker_id": "A15ERD4HOFEPHM"}], "B096DWZGD2": [{"asin": "B096DWZGD2", "instruction": "i would like a sulfate free conditioner", "attributes": ["sulfate free", "argan oil", "hyaluronic acid"], "options": [""], "instruction_attributes": ["sulfate free"], "instruction_options": [], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYTMZOH", "worker_id": "A2ECRNQ3X5LEXD"}], "B082V1QQCM": [{"asin": "B082V1QQCM", "instruction": "i am looking for a 10x6.5ft backgrounds for digital photography", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 10x6.5ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["10x6.5ft"], "assignment_id": "326O153BMT8RVOXTJJKKGXV369DED0", "worker_id": "A9QRQL9CFJBI7"}], "B07W1P8CK2": [{"asin": "B07W1P8CK2", "instruction": "waterproof hair styling cape hairdressing cape for hairdressing salon hairdressing cut adjustable neckline makeup", "attributes": ["beauty salon", "hair styling"], "options": ["color: 3 pack pink (silk-like satin)", "size: 5 count"], "instruction_attributes": ["hair styling"], "instruction_options": [], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PCAUB5", "worker_id": "A3TTGSUBIK1YCL"}], "B09H455HTL": [{"asin": "B09H455HTL", "instruction": "i want a screen protector that is easy to install. pick something with leopard patterns.", "attributes": ["easy install", "wireless charging"], "options": ["color: fashion leopard"], "instruction_attributes": ["easy install"], "instruction_options": ["fashion leopard"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OQT99D", "worker_id": "A1NF6PELRKACS9"}], "B008ODE4YI": [{"asin": "B008ODE4YI", "instruction": "i'm looking for vanilla flavored chai tea mix that's sugar free, non-gmo, and gluten free. look for a pack that's around six ounces.", "attributes": ["sugar free", "non gmo", "gluten free"], "options": ["flavor name: vanilla", "size: 5.64 ounce (pack of 1)"], "instruction_attributes": ["sugar free", "non gmo", "gluten free"], "instruction_options": ["vanilla", "5.64 ounce (pack of 1)"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N23O6G0", "worker_id": "AR9AU5FY1S3RO"}], "B07XH6Z9NV": [{"asin": "B07XH6Z9NV", "instruction": "i would like a pair of small leggings with a high waist and tummy control for women.", "attributes": ["slim fit", "high waist", "tummy control", "polyester spandex"], "options": ["size: small"], "instruction_attributes": ["high waist", "tummy control"], "instruction_options": ["small"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXMFKWZ", "worker_id": "A1WS884SI0SLO4"}], "B09SBHLF4H": [{"asin": "B09SBHLF4H", "instruction": "i would like a pair of size 7.5 white sandals with a ankle strap.", "attributes": ["open toe", "ankle strap", "teen girls", "daily wear"], "options": ["color: white", "size: 7.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["white", "7.5"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4KJ8MP", "worker_id": "A1WS884SI0SLO4"}], "B093239RZC": [{"asin": "B093239RZC", "instruction": "i would like two grey chairs and a end table with a steel frame.", "attributes": ["coated steel", "steel frame"], "options": ["color: grey", "size: 2pc 1 seat", "style: 2 chairs end table"], "instruction_attributes": ["steel frame"], "instruction_options": ["grey", "2pc 1 seat", "2 chairs end table"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCQ9BMW", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B093239RZC", "instruction": "i would like a grey ottoman that has a steel frame", "attributes": ["coated steel", "steel frame"], "options": ["color: grey", "size: 5pc 2 seat", "style: 2 chairs end table"], "instruction_attributes": ["steel frame"], "instruction_options": ["grey"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZM19K7", "worker_id": "A2ECRNQ3X5LEXD"}], "B0897J9528": [{"asin": "B0897J9528", "instruction": "i'm looking for a full size platform bed storage with two drawers.", "attributes": ["box spring", "solid wood", "storage space"], "options": ["color: white", "size: full"], "instruction_attributes": ["solid wood", "storage space"], "instruction_options": ["white", "full"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKDTNE5", "worker_id": "A1ZGOZQF2VZ0X9"}], "B08DD91VNS": [{"asin": "B08DD91VNS", "instruction": "i would like a grey twin size bunk bed made of solid wood.", "attributes": ["twin size", "assembly required", "solid wood"], "options": ["color: grey"], "instruction_attributes": ["twin size", "solid wood"], "instruction_options": ["grey"], "assignment_id": "33CID5710F37J25O7G1CGJZBOT4L3B", "worker_id": "A1WS884SI0SLO4"}], "B07Q4DK92V": [{"asin": "B07Q4DK92V", "instruction": "i would like a white face belt that is anti aging.", "attributes": ["clinically proven", "anti aging", "long lasting"], "options": ["color: white"], "instruction_attributes": ["anti aging"], "instruction_options": ["white"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADKNVWX", "worker_id": "A1WS884SI0SLO4"}], "B09PG4Y9CR": [{"asin": "B09PG4Y9CR", "instruction": "i need a pair of low rise yellow briefs in a large.", "attributes": ["low rise", "high waist"], "options": ["color: 122-yellow", "size: large"], "instruction_attributes": ["low rise"], "instruction_options": ["122-yellow", "large"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG9ELSE", "worker_id": "A2ECRNQ3X5LEXD"}], "B00FZGZ6GC": [{"asin": "B00FZGZ6GC", "instruction": "please find me a gluten free coffee creamer.", "attributes": ["lactose free", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD3URIB", "worker_id": "A15ERD4HOFEPHM"}], "B07DWBHBWR": [{"asin": "B07DWBHBWR", "instruction": "i am looking for king size bed with pocket spring mattress", "attributes": ["button tufted", "king size", "contemporary style"], "options": ["color: beige", "size: king", "style: brighton + pocket spring mattress"], "instruction_attributes": ["king size"], "instruction_options": ["brighton + pocket spring mattress"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647CTH3Y", "worker_id": "A16M39T60N60NO"}], "B09RN93XLV": [{"asin": "B09RN93XLV", "instruction": "i am looking for a s size manual toothbrushes for sensitive teeth", "attributes": ["easy use", "sensitive teeth"], "options": ["color: blue-1", "size: s"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["s"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKP0APJ8", "worker_id": "A9QRQL9CFJBI7"}], "B08R1CWC8V": [{"asin": "B08R1CWC8V", "instruction": "i need a living room wall lamp that is in black.", "attributes": ["wall mounted", "vanity light", "glass shade", "dining room", "living room"], "options": ["color: black"], "instruction_attributes": ["living room"], "instruction_options": ["black"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34N541J", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KDWDHKJ": [{"asin": "B07KDWDHKJ", "instruction": "i need a red iphone 7/8 / se 2020 case with card holder and[ screen protector tempered glass", "attributes": ["case cover", "tempered glass"], "options": ["color: red", "size: apple iphone 6s | 6 (4.7\")"], "instruction_attributes": ["tempered glass"], "instruction_options": ["red"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SXNDUW", "worker_id": "A1IL2K0ELYI090"}], "B07G3PXTKT": [{"asin": "B07G3PXTKT", "instruction": "i am looking for a low sugar ans dairy free vanilla flavored creamer, with added collagen.", "attributes": ["dairy free", "grass fed", "non dairy", "low sugar", "keto friendly", "gluten free"], "options": ["flavor name: vanilla"], "instruction_attributes": ["dairy free", "low sugar"], "instruction_options": ["vanilla"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY8697810", "worker_id": "A2NSS746CFCT4M"}], "B07H23LPBB": [{"asin": "B07H23LPBB", "instruction": "i need a 14 inch natural hair hair extension in #2 color.", "attributes": ["hair extensions", "natural hair"], "options": ["color: #2", "size: 14 inch"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["#2", "14 inch"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NL2KBO", "worker_id": "A3AYHESLQSDY5T"}], "B08G1B3LFJ": [{"asin": "B08G1B3LFJ", "instruction": "i'm looking for a flats made of ethylene vinyl. choose the ones in tan color and size 9.5 narrow.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: tan leather metallic synthetic", "size: 9.5 narrow"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["tan leather metallic synthetic", "9.5 narrow"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO602CB", "worker_id": "A3MNXK3VDK37SN"}], "B07ZSFG9CK": [{"asin": "B07ZSFG9CK", "instruction": "i want to find gluten-free sunrise crunchy maple cereal. it needs to be a 10.6 ounce box in a pack of six.", "attributes": ["gluten free", "non gmo", "usda organic", "simple ingredients", "artificial flavors"], "options": ["flavor name: sunrise crunchy maple - gf", "size: 10.6 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["sunrise crunchy maple - gf", "10.6 ounce (pack of 6)"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68HOA4Q", "worker_id": "A345TDMHP3DQ3G"}], "B09NNFT9S2": [{"asin": "B09NNFT9S2", "instruction": "i want a twin size box spring bed for kids made from solid wood brown color", "attributes": ["twin size", "box spring", "solid wood"], "options": ["color: brown", "style: l-shaped twin loft bed w | slide"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KYC7E2", "worker_id": "A3N9ZYQAESNFQH"}], "B077Z4T5VD": [{"asin": "B077Z4T5VD", "instruction": "i am looking for a short sleeve deep v neck solid color crop top.", "attributes": ["short sleeve", "daily wear"], "options": ["color: multicoloured plants", "size: large plus"], "instruction_attributes": ["short sleeve"], "instruction_options": ["multicoloured plants"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KGMPD3", "worker_id": "A2KW17G25L25R8"}], "B07QYWKFLL": [{"asin": "B07QYWKFLL", "instruction": "i need some gym shorts that are black and are in a 3x-large.", "attributes": ["elastic waist", "relaxed fit", "short sleeve", "gym workout"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["gym workout"], "instruction_options": ["black", "3x-large"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E04F7X3", "worker_id": "A2ECRNQ3X5LEXD"}], "B08TH9XBMC": [{"asin": "B08TH9XBMC", "instruction": "i would like a pair of 8.5 wide brown leather shoes with a rubber sole.", "attributes": ["arch support", "rubber outsole", "rubber sole"], "options": ["color: brown leather & tan duck", "size: 8.5 wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown leather & tan duck", "8.5 wide"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X00H4WL", "worker_id": "A1WS884SI0SLO4"}], "B07TPBW1MW": [{"asin": "B07TPBW1MW", "instruction": "i am looking for white color bookcase having exquisite workmanship.", "attributes": ["space saving", "exquisite workmanship"], "options": ["color: white"], "instruction_attributes": ["exquisite workmanship"], "instruction_options": ["white"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI709YQ6", "worker_id": "A1Q8PPQQCWGY0D"}], "B08C5LJ2W9": [{"asin": "B08C5LJ2W9", "instruction": "looking for birthday party baby shower cupcake in colour blue", "attributes": ["baby shower", "birthday party"], "options": ["color: blue"], "instruction_attributes": ["baby shower", "birthday party"], "instruction_options": ["blue"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALC24HJ", "worker_id": "A10OGH5CQBXL5N"}], "B088NPZJ98": [{"asin": "B088NPZJ98", "instruction": "i am looking for a 2-tier chandelier for the dining room", "attributes": ["light fixture", "dining room", "living room"], "options": ["color: 2-tier", "size: 23.6\"+31.5\"+ 39.3\""], "instruction_attributes": ["dining room"], "instruction_options": ["2-tier"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLP8I4H", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LYSV2DT": [{"asin": "B08LYSV2DT", "instruction": "look for high density warm beige curtains for my living room.", "attributes": ["machine washable", "high density", "living room"], "options": ["color: warm beige", "size: w 70 x l 95"], "instruction_attributes": ["high density", "living room"], "instruction_options": ["warm beige"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DEXWDF", "worker_id": "A1NF6PELRKACS9"}], "B09NDT2Q37": [{"asin": "B09NDT2Q37", "instruction": "i would like a water resistant bluetooth headset.", "attributes": ["water resistant", "noise cancelling", "hands free", "stereo sound"], "options": [""], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8FBXUU", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PR9C6B7": [{"asin": "B09PR9C6B7", "instruction": "i'm looking for a dining room table that's made out of solid wood and easy to assemble.", "attributes": ["space saving", "easy assemble", "solid wood", "dining room"], "options": [""], "instruction_attributes": ["easy assemble", "solid wood", "dining room"], "instruction_options": [], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRS9PUE7", "worker_id": "AR9AU5FY1S3RO"}], "B07BNH7XMM": [{"asin": "B07BNH7XMM", "instruction": "i am looking for a 3x-large sized 3d digital printed pattern short sleeve t-shirt", "attributes": ["polyester cotton", "short sleeve", "teen girls"], "options": ["color: skull", "size: 3x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["3x-large"], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK69HYY0", "worker_id": "A258PTOZ3D2TQR"}], "B01G2B8D7W": [{"asin": "B01G2B8D7W", "instruction": "i'm looking for a snack of protein balls gluten free pack size of 14.5 ounce", "attributes": ["grain free", "gluten free", "protein serving"], "options": ["size: 14.5 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["14.5 ounce (pack of 1)"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOLBYDS", "worker_id": "A2Y2TURT2VEYZN"}], "B095JHKLGD": [{"asin": "B095JHKLGD", "instruction": "look for a pair of open toed sandals with an ankle strap. i want them in beige, size 8.", "attributes": ["open toe", "ankle strap"], "options": ["color: 0 # beige", "size: 8"], "instruction_attributes": ["open toe", "ankle strap"], "instruction_options": ["0 # beige", "8"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UH4A3H", "worker_id": "AR9AU5FY1S3RO"}], "B09PNMMLCS": [{"asin": "B09PNMMLCS", "instruction": "i need to buy a children's toothbrush that's easy to use and appropriate for sensitive teeth. buy the color option \"a.\"", "attributes": ["easy use", "sensitive teeth"], "options": ["color: a"], "instruction_attributes": ["easy use", "sensitive teeth"], "instruction_options": ["a"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ASMBWM", "worker_id": "AR9AU5FY1S3RO"}], "B089W86S39": [{"asin": "B089W86S39", "instruction": "i'm looking for high density of furniture home office chairs.", "attributes": ["high density", "lumbar support"], "options": ["color: black"], "instruction_attributes": ["high density", "lumbar support"], "instruction_options": ["black"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOL40FW", "worker_id": "A16IQOX0DK14OJ"}], "B00ARKH10U": [{"asin": "B00ARKH10U", "instruction": "i'm looking for one red/orange henna hair dye", "attributes": ["plant based", "cruelty free", "hair dye"], "options": ["color: red | orange", "size: pack of 1"], "instruction_attributes": ["hair dye"], "instruction_options": ["red | orange", "pack of 1"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP65J7W", "worker_id": "A2Y2TURT2VEYZN"}], "B0861BLTXS": [{"asin": "B0861BLTXS", "instruction": "i am looking for soy free , gluten free ocean's halo tangy in flavor wasabi-style ranch", "attributes": ["soy free", "certified organic", "gluten free"], "options": ["flavor name: wasabi-style ranch"], "instruction_attributes": ["soy free", "gluten free"], "instruction_options": ["wasabi-style ranch"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODPTEWJ", "worker_id": "AX2EWYWZM19AZ"}], "B07R8218SY": [{"asin": "B07R8218SY", "instruction": "i am looking for men's shirts of small size having short sleeve.", "attributes": ["machine wash", "button closure", "short sleeve"], "options": ["color: fossil multi plaid", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["small"], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWPB250", "worker_id": "A1Q8PPQQCWGY0D"}], "B0963D384N": [{"asin": "B0963D384N", "instruction": "i'm looking for rubber sole its for easy to use high heel shoe for woman's", "attributes": ["anti slip", "water resistant", "winter warm", "faux fur", "rubber sole"], "options": ["color: thick black", "size: 11"], "instruction_attributes": ["water resistant", "rubber sole"], "instruction_options": ["thick black"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R9ER0H", "worker_id": "A16IQOX0DK14OJ"}], "B08BC2WY1Y": [{"asin": "B08BC2WY1Y", "instruction": "i would like a medium gy tank top with a unique design.", "attributes": ["unique design", "daily wear"], "options": ["color: gy", "size: medium"], "instruction_attributes": ["unique design"], "instruction_options": ["gy", "medium"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20QB0ZX", "worker_id": "A1WS884SI0SLO4"}], "B08NDBKVYR": [{"asin": "B08NDBKVYR", "instruction": "i am looking for 30g of organic matcha.", "attributes": ["bpa free", "certified organic"], "options": ["size: 30g"], "instruction_attributes": ["certified organic"], "instruction_options": ["30g"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVPJ71U", "worker_id": "A2ECRNQ3X5LEXD"}], "B092697R22": [{"asin": "B092697R22", "instruction": "i'm looking for size 9 womens beach sandals that are non slip, quick drying and have a rubber sole. also, they should be silver.", "attributes": ["non slip", "quick drying", "rubber sole"], "options": ["color: silver", "size: 9"], "instruction_attributes": ["non slip", "quick drying", "rubber sole"], "instruction_options": ["silver", "9"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRZ8XJT", "worker_id": "A34EHWOYRBL6OZ"}], "B0054YWM1M": [{"asin": "B0054YWM1M", "instruction": "i need some eye cream for anti aging.", "attributes": ["anti aging", "fine lines"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKNDPVP", "worker_id": "A2ECRNQ3X5LEXD"}], "B099RDX3Z3": [{"asin": "B099RDX3Z3", "instruction": "looking for motion detection with 1080p hd wireless mini hidden camera", "attributes": ["1080p hd", "plug play", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": [], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDPCHC2", "worker_id": "A10OGH5CQBXL5N"}], "B07KG93KMK": [{"asin": "B07KG93KMK", "instruction": "i'm looking for a lip pencil high pigmented for long lasting and melrose place color", "attributes": ["cruelty free", "long lasting", "highly pigmented", "high quality"], "options": ["color: melrose place"], "instruction_attributes": ["long lasting", "highly pigmented"], "instruction_options": ["melrose place"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJOM0WM", "worker_id": "A2Y2TURT2VEYZN"}], "B09BYWRDJP": [{"asin": "B09BYWRDJP", "instruction": "i want to buy a pair of honey colored size nine hiking boots with a non-slip rubber sole.", "attributes": ["winter warm", "non slip", "rubber outsole", "rubber sole"], "options": ["color: 3-honey", "size: 9"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["3-honey", "9"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WSPWQL", "worker_id": "AR9AU5FY1S3RO"}], "B09HRSZGCH": [{"asin": "B09HRSZGCH", "instruction": "i would like a queen size blue bed and box spring mattress.", "attributes": ["non slip", "easy clean", "memory foam", "box spring"], "options": ["color: blue", "size: queen"], "instruction_attributes": ["box spring"], "instruction_options": ["blue", "queen"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RJRFLW", "worker_id": "A1WS884SI0SLO4"}], "B09D3HYBB1": [{"asin": "B09D3HYBB1", "instruction": "i would like a black travel size cosmetic bag.", "attributes": ["travel size", "eye shadow"], "options": ["color: black"], "instruction_attributes": ["travel size"], "instruction_options": ["black"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39FXCZR", "worker_id": "A1WS884SI0SLO4"}], "B01L1UR5ZA": [{"asin": "B01L1UR5ZA", "instruction": "i am looking for a rustic gray color home office desks for longlasting", "attributes": ["long lasting", "assembly required"], "options": ["color: rustic gray", "style name: 50-in. tv stand"], "instruction_attributes": ["long lasting"], "instruction_options": ["rustic gray"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZK0KM7", "worker_id": "A9QRQL9CFJBI7"}], "B09K58B3ST": [{"asin": "B09K58B3ST", "instruction": "a light weight high speed usb wall charger for iphone11 color 3pack -back", "attributes": ["high power", "light weight", "high speed"], "options": ["color: 3pack-black"], "instruction_attributes": ["light weight", "high speed"], "instruction_options": ["3pack-black"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDZPAI5", "worker_id": "A3N9ZYQAESNFQH"}], "B091SWM9ZX": [{"asin": "B091SWM9ZX", "instruction": "i am looking for a coconut water birthday party", "attributes": ["great gift", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHFDNB0", "worker_id": "A9QRQL9CFJBI7"}], "B09HZZZCZN": [{"asin": "B09HZZZCZN", "instruction": "i am looking for a 10ml (0.33 ounce) anti oxidant booster size of alcohol free oils", "attributes": ["alcohol free", "cruelty free"], "options": ["size: 10ml (0.33 ounce) anti oxidant booster"], "instruction_attributes": ["alcohol free"], "instruction_options": ["10ml (0.33 ounce) anti oxidant booster"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UHINQI6", "worker_id": "A9QRQL9CFJBI7"}], "B09P8KCQB4": [{"asin": "B09P8KCQB4", "instruction": "i need a teeth whitening kit for sensitive teeth that comes in seven pairs.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: 7 pairs"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["7 pairs"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVO2LX8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CTN88LK": [{"asin": "B09CTN88LK", "instruction": "i would like a white nightstand made of solid wood.", "attributes": ["easy clean", "mid century", "white item", "easy assemble", "solid wood", "storage space", "living room"], "options": ["color: white"], "instruction_attributes": ["white item", "easy assemble"], "instruction_options": ["white"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8NAK2NZ", "worker_id": "A1WS884SI0SLO4"}], "B00XK9CN3U": [{"asin": "B00XK9CN3U", "instruction": "i am looking for a flat sheet for a twin size bed. also choose navy color.", "attributes": ["twin size", "white item"], "options": ["color: navy", "size: queen"], "instruction_attributes": ["twin size"], "instruction_options": ["navy"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK8WVNJ", "worker_id": "A2HMEGTAFO0CS8"}], "B098KVHFQD": [{"asin": "B098KVHFQD", "instruction": "let me have the high performance band4u compatible with samsung galaxy watch 3 bands, 20mm size.", "attributes": ["quick release", "high performance"], "options": ["color: 4p-4", "size: 20mm"], "instruction_attributes": ["high performance"], "instruction_options": ["20mm"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X40M0HZ", "worker_id": "A1IL2K0ELYI090"}], "B08W3FLWVL": [{"asin": "B08W3FLWVL", "instruction": "i want to buy a wooden chandelier for my dining room. it should be easy to install. get the 22 inch size.", "attributes": ["easy install", "light fixture", "dining room"], "options": ["size: 22\""], "instruction_attributes": ["easy install", "dining room"], "instruction_options": ["22\""], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107B4LIE", "worker_id": "AR9AU5FY1S3RO"}], "B086HX7L1B": [{"asin": "B086HX7L1B", "instruction": "i am interested in a 12 pack of dill pickle chips that are low carb", "attributes": ["low carb", "grain free", "low sugar", "gluten free", "high protein", "quality ingredients"], "options": ["flavor name: dill pickle", "size: pack of 12"], "instruction_attributes": ["low carb"], "instruction_options": ["dill pickle", "pack of 12"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCR2B9X", "worker_id": "A2ECRNQ3X5LEXD"}], "B0958ZH8X2": [{"asin": "B0958ZH8X2", "instruction": "i need some active shorts that are in the color of equator and are a medium", "attributes": ["moisture wicking", "quick drying", "drawstring waist", "elastic waistband"], "options": ["color: equator", "size: medium"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["equator", "medium"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOFDNON", "worker_id": "A2ECRNQ3X5LEXD"}], "B07TBG89NL": [{"asin": "B07TBG89NL", "instruction": "i am looking for a two pack of deodorant that is clinically proven.", "attributes": ["clinically proven", "easy use"], "options": ["size: 1.69 fl oz (pack of 2)"], "instruction_attributes": ["clinically proven"], "instruction_options": ["1.69 fl oz (pack of 2)"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ56ECKZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B073R3XKJT": [{"asin": "B073R3XKJT", "instruction": "get me a brushed nickel finish 3-light chandelier.", "attributes": ["nickel finish", "brushed nickel"], "options": ["color: brushed nickel", "style: 3-light chandelier"], "instruction_attributes": ["nickel finish", "brushed nickel"], "instruction_options": ["3-light chandelier"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA3NA80", "worker_id": "A3AYHESLQSDY5T"}], "B07G8MMR53": [{"asin": "B07G8MMR53", "instruction": "i would like a clinically proven hair growth treatment.", "attributes": ["clinically proven", "hair growth", "hair loss", "hair treatment"], "options": [""], "instruction_attributes": ["clinically proven", "hair growth", "hair treatment"], "instruction_options": [], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NLRKBD", "worker_id": "A1WS884SI0SLO4"}], "B091FLGF1T": [{"asin": "B091FLGF1T", "instruction": "i need some shorts that are pink, have a high waist, and a drawstring closure. get the size 14.", "attributes": ["drawstring closure", "high waist"], "options": ["color: bpink", "size: 14"], "instruction_attributes": ["drawstring closure", "high waist"], "instruction_options": ["bpink", "14"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCX7643", "worker_id": "AR9AU5FY1S3RO"}], "B09D13H4KQ": [{"asin": "B09D13H4KQ", "instruction": "i would like a quad intel core i5 desktop tower.", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["core i5", "intel core", "quad core"], "instruction_options": [], "assignment_id": "3IXEICO79DTUZY0BZR119DLCSX56TI", "worker_id": "A1WS884SI0SLO4"}], "B0779HP36L": [{"asin": "B0779HP36L", "instruction": "i'm looking for a round accent table for the living room that is fully assembled and ready to use. also, it should be gray and rose gold colored.", "attributes": ["ready use", "fully assembled", "high gloss", "living room"], "options": ["color: gray | rose gold"], "instruction_attributes": ["ready use", "fully assembled", "living room"], "instruction_options": [], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X003W4Z", "worker_id": "A34EHWOYRBL6OZ"}], "B0987JP84S": [{"asin": "B0987JP84S", "instruction": "i want to buy wall art decor which is high gloss and suitable for dining room, and the color of which is sword, b.", "attributes": ["high gloss", "dining room", "living room"], "options": ["color: sword,b"], "instruction_attributes": ["high gloss", "dining room"], "instruction_options": ["sword,b"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWUDFPH", "worker_id": "AJY5G987IRT25"}], "B000VCBXN0": [{"asin": "B000VCBXN0", "instruction": "i'm looking for a 8 ounce of quality ingredient ranch dressing.", "attributes": ["artificial colors", "quality ingredients", "high fructose"], "options": ["flavor name: buttermilk", "size: 8 ounce"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["buttermilk"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40YYFYR", "worker_id": "ARQ05PDNXPFDI"}], "B00VMXZXTM": [{"asin": "B00VMXZXTM", "instruction": "i am looking for ultime permanent hair color cream, 5.22 ruby red", "attributes": ["permanent hair", "hair dye"], "options": ["color: 5.22 ruby red"], "instruction_attributes": ["permanent hair"], "instruction_options": ["5.22 ruby red"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGZ6TWE", "worker_id": "A258PTOZ3D2TQR"}], "B09Q177KDP": [{"asin": "B09Q177KDP", "instruction": "get me 2 metal legs barstools with back & arm with easy to assemble function in grey color.", "attributes": ["easy assemble", "metal legs"], "options": ["color: grey", "size: 2 barstools with back & arm"], "instruction_attributes": ["easy assemble", "metal legs"], "instruction_options": ["grey", "2 barstools with back & arm"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP1WXTV", "worker_id": "A3AYHESLQSDY5T"}], "B09F2CMB4T": [{"asin": "B09F2CMB4T", "instruction": "i would like a silver signal converter with a usb port.", "attributes": ["power amplifier", "usb port"], "options": ["color: silver"], "instruction_attributes": ["usb port"], "instruction_options": ["silver"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA9CS2L", "worker_id": "A1WS884SI0SLO4"}], "B07DK4987C": [{"asin": "B07DK4987C", "instruction": "i'm looking for a two pack of tea tree deodorant that's been tested by a dermatologist. it should last a long time and come in the scent \"rise.\"", "attributes": ["dermatologist tested", "long lasting", "tea tree"], "options": ["scent: rise", "size: 2.7 ounce (pack of 2)"], "instruction_attributes": ["dermatologist tested", "long lasting", "tea tree"], "instruction_options": ["rise", "2.7 ounce (pack of 2)"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU75O75C", "worker_id": "AR9AU5FY1S3RO"}], "B09RQ514CM": [{"asin": "B09RQ514CM", "instruction": "i'm looking for clothing for needle sleeve and classic fit for women's it is easy to wear it.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: men", "size: x-large"], "instruction_attributes": ["machine wash", "needle sleeve", "classic fit"], "instruction_options": ["royal blue"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEKC86N", "worker_id": "A16IQOX0DK14OJ"}], "B07Q4QY2B3": [{"asin": "B07Q4QY2B3", "instruction": "i am looking for gluten free, non gmo butter chocolates made with vanilla and cashew. and i choose the 12 count packet with salty chocolate flavor", "attributes": ["artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: 12-pack salty chocolate", "size: 12 count (pack of 1)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["12-pack salty chocolate", "12 count (pack of 1)"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMS7EXM", "worker_id": "A2COCSUGZV28X"}], "B081YWZWQW": [{"asin": "B081YWZWQW", "instruction": "i want to buy a pair of machine washable jeans. look for them in size 33 short with a standard fit. get the \"cast shadows\" color.", "attributes": ["machine wash", "imported zipper"], "options": ["color: cast shadows", "fit type: standard", "size: 33 short"], "instruction_attributes": ["machine wash"], "instruction_options": ["cast shadows", "standard", "33 short"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN3GGOX", "worker_id": "AR9AU5FY1S3RO"}], "B07FDZ7BCD": [{"asin": "B07FDZ7BCD", "instruction": "looking for because it is you perfurme long lasting effect", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2ZM94Q", "worker_id": "A2Y2TURT2VEYZN"}], "B00K8V2QNU": [{"asin": "B00K8V2QNU", "instruction": "i am looking for a 4 pack of long lasting, high performance 12v batteries.", "attributes": ["long lasting", "high performance"], "options": ["size: 4 pack"], "instruction_attributes": ["long lasting", "high performance"], "instruction_options": ["4 pack"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LHIL0E", "worker_id": "A114NK7T5673GK"}], "B00ZS8O4QA": [{"asin": "B00ZS8O4QA", "instruction": "i need a cruelty free face mist", "attributes": ["cruelty free", "hyaluronic acid"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL8O5HG", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MK1L322": [{"asin": "B09MK1L322", "instruction": "i would like a 32 gigabyte desktop computer with a intel core.", "attributes": ["core i5", "intel core"], "options": ["size: 32gb ddr4 i 1tb ssd i 1tb hdd"], "instruction_attributes": ["intel core"], "instruction_options": ["32gb ddr4 i 1tb ssd i 1tb hdd"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB89Y46", "worker_id": "A1WS884SI0SLO4"}], "B09FFW4QWR": [{"asin": "B09FFW4QWR", "instruction": "i need a 4 oz sprinkle for my birthday party.", "attributes": ["resealable bag", "baby shower", "birthday party"], "options": ["size: 4 oz"], "instruction_attributes": ["birthday party"], "instruction_options": ["4 oz"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL7VRVH", "worker_id": "AVIEE6LDH0BT5"}], "B091JCM72C": [{"asin": "B091JCM72C", "instruction": "hunting for a natural deodorant that is aluminum and baking soda free, hypoallergenic, safe for sensitive skin, underarms, and private parts in a 2 pk 3 ounce tube. prefer either clean tangerine or lavender sage scent.", "attributes": ["clinically proven", "paraben free", "sensitive skin"], "options": ["scent: lavender sage"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["lavender sage"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UVJY0E", "worker_id": "A3RGIKEI8JS2QG"}], "B000GCQ04C": [{"asin": "B000GCQ04C", "instruction": "i need a toner for sensitive skin that is 16 fl oz", "attributes": ["fragrance free", "sensitive skin"], "options": ["size: 16 fl oz (pack of 1)", "style: pore perfecting toner"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["16 fl oz (pack of 1)", "pore perfecting toner"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNB210D", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MVWWZWC": [{"asin": "B09MVWWZWC", "instruction": "i am looking for a 2pcs set cosmetic bags which is easy to carry", "attributes": ["easy carry", "eye shadow"], "options": ["color: sparkle silver", "style: 2pcs set"], "instruction_attributes": ["easy carry"], "instruction_options": ["2pcs set"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYQRMQ0", "worker_id": "A9QRQL9CFJBI7"}], "B079HHHQ3S": [{"asin": "B079HHHQ3S", "instruction": "i am looking for nut free and gluten free chocolate.", "attributes": ["nut free", "rich creamy", "ready use", "gluten free"], "options": ["flavor: fair trade, nut free, gluten free", "size: 8 ounce (pack of 4)"], "instruction_attributes": ["nut free", "gluten free"], "instruction_options": ["fair trade, nut free, gluten free"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXMBWK7", "worker_id": "A3FG5PQHG5AH3Y"}], "B087C2R5KL": [{"asin": "B087C2R5KL", "instruction": "i'm looking for an easy-to-clean desk cover protector for my round dining room table; it should be frosted and about 34 x 48 inches in size.", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: round new frosted 2mm", "size: 34 x 48 inches"], "instruction_attributes": ["easy clean", "dining room"], "instruction_options": ["round new frosted 2mm", "34 x 48 inches"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPDRRO6", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B087C2R5KL", "instruction": "i need round table pads that are heavy duty and are a size 33.5 by 55.1 inches", "attributes": ["heavy duty", "easy clean", "stainless steel", "dining room"], "options": ["color: round new clear 2mm", "size: 33.5 x 55.1 inches"], "instruction_attributes": ["heavy duty"], "instruction_options": ["round new clear 2mm", "33.5 x 55.1 inches"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7UTHLD", "worker_id": "A2ECRNQ3X5LEXD"}], "B07N12XY6N": [{"asin": "B07N12XY6N", "instruction": "i need a pair of machine washable black sneakers in a 13 wide.", "attributes": ["machine washable", "rubber sole"], "options": ["color: black | black", "size: 13 wide"], "instruction_attributes": ["machine washable"], "instruction_options": ["black | black", "13 wide"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6LZ2B3", "worker_id": "AR9AU5FY1S3RO"}], "B001SYZXFY": [{"asin": "B001SYZXFY", "instruction": "i am looking for a pack of powder blush that can be applied easily . and i choose the pack of 3 with soft sable color", "attributes": ["easy apply", "easy carry"], "options": ["color: soft sable", "size: 0.12 ounce (pack of 3)"], "instruction_attributes": ["easy apply"], "instruction_options": ["soft sable", "0.12 ounce (pack of 3)"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTGED5Y", "worker_id": "A2COCSUGZV28X"}], "B09F2PGGKW": [{"asin": "B09F2PGGKW", "instruction": "i want to buy an x-large satin sleepwear set made of soft material. also choose the one made in teal color.", "attributes": ["soft material", "drawstring closure"], "options": ["color: teal", "size: x-large"], "instruction_attributes": [], "instruction_options": ["x-large"], "assignment_id": "351SEKWQSBRP7CP60H83T50CFB7MD0", "worker_id": "A1HMZJ59OPLD1P"}], "B08C5LVXPM": [{"asin": "B08C5LVXPM", "instruction": "i'm looking for a fudule sandals for women.", "attributes": ["open toe", "ankle strap", "closed toe"], "options": ["color: y-5 begie", "size: 11.5"], "instruction_attributes": ["open toe"], "instruction_options": ["y-5 begie", "11.5"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2G3IOM", "worker_id": "A1ZGOZQF2VZ0X9"}], "B0964BFQXK": [{"asin": "B0964BFQXK", "instruction": "i am looking for a high density mattress.", "attributes": ["high density", "memory foam"], "options": [""], "instruction_attributes": ["high density"], "instruction_options": [], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BOUJV6", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RKJKJGC": [{"asin": "B07RKJKJGC", "instruction": "i'm looking for a grey 4k gold plated hdmi cable that is high speed and 6.6 feet long.", "attributes": ["high speed", "ultra hd", "blu ray", "gold plated", "aluminum alloy"], "options": ["color: grey", "number of items: 10", "size: 6.6 feet"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["grey", "6.6 feet"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXOMZ27", "worker_id": "A34EHWOYRBL6OZ"}], "B01ANA4T7G": [{"asin": "B01ANA4T7G", "instruction": "i need pink color hair removal", "attributes": ["stainless steel", "hair removal"], "options": ["color: bubblegum pink"], "instruction_attributes": ["hair removal"], "instruction_options": ["bubblegum pink"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDW1U1R4", "worker_id": "A226L9F2AZ38CL"}], "B00ZCL4F6W": [{"asin": "B00ZCL4F6W", "instruction": "i am looking for a food bar of organic blueberry lemon flavor having low sugar.", "attributes": ["grain free", "low sugar", "low carb", "dairy free", "gluten free", "soy free", "plant based", "non gmo", "natural flavors"], "options": ["flavor name: organic blueberry lemon"], "instruction_attributes": ["low sugar"], "instruction_options": ["organic blueberry lemon"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68H7A49", "worker_id": "A1Q8PPQQCWGY0D"}], "B076HVZ1HK": [{"asin": "B076HVZ1HK", "instruction": "i am looking for non gmo certified organic ghee.", "attributes": ["grass fed", "certified organic", "non gmo"], "options": [""], "instruction_attributes": ["certified organic", "non gmo"], "instruction_options": [], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9NUB07", "worker_id": "A1Q8PPQQCWGY0D"}], "B096YKT25N": [{"asin": "B096YKT25N", "instruction": "i would like a wine red stool cover that is machine washable.", "attributes": ["non slip", "super soft", "eco friendly", "machine washable", "living room"], "options": ["color: wine red"], "instruction_attributes": ["machine washable"], "instruction_options": ["wine red"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALCO4H5", "worker_id": "A1WS884SI0SLO4"}], "B086BM7JPL": [{"asin": "B086BM7JPL", "instruction": "i would like a long lasting foundation for my line lines.", "attributes": ["long lasting", "dark circles", "fine lines"], "options": [""], "instruction_attributes": ["long lasting", "fine lines"], "instruction_options": [], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EFE1BE", "worker_id": "A1WS884SI0SLO4"}], "B000G7YO2M": [{"asin": "B000G7YO2M", "instruction": "i want fat free and toffee almond nonni's biscottis.", "attributes": ["fat free", "individually wrapped"], "options": ["flavor name: toffee almond", "size: 6.88 ounce (pack of 6)"], "instruction_attributes": ["fat free"], "instruction_options": ["toffee almond"], "assignment_id": "37TRT2X24116R7L1JO45INKV8W7BJL", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B000G7YO2M", "instruction": "i am interested in buying biscotti which are fat free, and individually wrapped while their flavor should be cioccolati and packed as 12 in 8-count boxes.", "attributes": ["fat free", "individually wrapped"], "options": ["flavor name: cioccolati", "size: 8-count boxes (pack of 12)"], "instruction_attributes": ["fat free", "individually wrapped"], "instruction_options": ["cioccolati", "8-count boxes (pack of 12)"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRI2NWR", "worker_id": "AJY5G987IRT25"}], "B076JPZPHH": [{"asin": "B076JPZPHH", "instruction": "i am looking for some gluten free snack foods that are pumpkin pie flavored.", "attributes": ["gluten free", "kosher certified", "high fructose", "artificial flavors"], "options": ["flavor name: pumpkin pie"], "instruction_attributes": ["gluten free"], "instruction_options": ["pumpkin pie"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OK8RTQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SCT1NLY": [{"asin": "B09SCT1NLY", "instruction": "i'd like to buy some open toed, high heeled sandals with an ankle strap. look for 6 wides in khaki.", "attributes": ["open toe", "high heel", "ankle strap", "closed toe"], "options": ["color: a6 - khaki", "size: 6 wide"], "instruction_attributes": ["open toe", "high heel", "ankle strap"], "instruction_options": ["a6 - khaki", "6 wide"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK7TVNE", "worker_id": "AR9AU5FY1S3RO"}], "B07Y5GG5Q2": [{"asin": "B07Y5GG5Q2", "instruction": "i will like to have trader joe's fiberful granola bars rolled oats & chocolate chips", "attributes": ["trader joe", "artificial flavors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9C8AZJ", "worker_id": "A1IL2K0ELYI090"}, {"asin": "B07Y5GG5Q2", "instruction": "i am looking for trader joe's granola bars.", "attributes": ["trader joe", "artificial flavors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VUAXM6", "worker_id": "AJDQGOTMB2D80"}], "B0836HNRKP": [{"asin": "B0836HNRKP", "instruction": "i need some makeup remover pads for sensitive skin. get style two.", "attributes": ["easy carry", "sensitive skin"], "options": ["color: makeup remover pads | style 2"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["makeup remover pads | style 2"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH4DQHG", "worker_id": "AR9AU5FY1S3RO"}], "B09HC76MQF": [{"asin": "B09HC76MQF", "instruction": "i'm looking for twin sized furniture for bedroom furniture.", "attributes": ["twin size", "easy assemble", "metal legs", "box spring"], "options": [""], "instruction_attributes": ["easy assemble"], "instruction_options": [], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFNQMEB", "worker_id": "A16IQOX0DK14OJ"}], "B07VJC71BN": [{"asin": "B07VJC71BN", "instruction": "i'm looking for a queen pillow shams set of 2 pinch and to be super soft and white", "attributes": ["queen size", "super soft", "exquisite workmanship"], "options": ["color: white", "size: queen 20x30"], "instruction_attributes": ["queen size", "super soft"], "instruction_options": ["white"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98URYKO", "worker_id": "A19Q021KR28CS8"}], "B083VZN11N": [{"asin": "B083VZN11N", "instruction": "i would like a 6 ounce variety of grain free cacao granola.", "attributes": ["grain free", "low sugar", "plant based", "gluten free"], "options": ["flavor name: variety of cacao, matcha, original", "size: 6 ounce (pack of 1)"], "instruction_attributes": ["grain free"], "instruction_options": ["variety of cacao, matcha, original", "6 ounce (pack of 1)"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIP485A", "worker_id": "A1WS884SI0SLO4"}], "B079WHF7B9": [{"asin": "B079WHF7B9", "instruction": "i am looking for some non gmo popcorn.", "attributes": ["non gmo", "nut free", "gluten free"], "options": [""], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOLVF02", "worker_id": "A2ECRNQ3X5LEXD"}], "B08MWJ1FY1": [{"asin": "B08MWJ1FY1", "instruction": "i'm looking for a party supplies cupcake toppers, preferably red graduation toppers.", "attributes": ["party supplies", "cupcake picks"], "options": ["color: red graduation toppers"], "instruction_attributes": ["party supplies"], "instruction_options": ["red graduation toppers"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL58RVQ", "worker_id": "ARQ05PDNXPFDI"}], "B091YB6MRZ": [{"asin": "B091YB6MRZ", "instruction": "i need to buy some easy to apply nail glitter. get color h8.", "attributes": ["easy apply", "rose gold", "nail art"], "options": ["color: h8"], "instruction_attributes": ["easy apply"], "instruction_options": ["h8"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJQLO9E", "worker_id": "AR9AU5FY1S3RO"}], "B07PRD8LFJ": [{"asin": "B07PRD8LFJ", "instruction": "i am looking for medium sized underwear bottom with machine washable feature.", "attributes": ["fleece lined", "machine wash", "polyester spandex"], "options": ["color: 2. midweight black 2 pack", "fit type: 300 - heavyweight 1 bottom", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["medium"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DDDDWA", "worker_id": "A3FG5PQHG5AH3Y"}], "B09RDVZFT6": [{"asin": "B09RDVZFT6", "instruction": "i am looking for a slim fitting red polo that is in a xx-large.", "attributes": ["slim fit", "hand wash", "machine wash", "short sleeve", "soft material", "long sleeve"], "options": ["color: 1-red", "size: xx-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["1-red", "xx-large"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK8ZVNM", "worker_id": "A2ECRNQ3X5LEXD"}], "B009ZJHEEM": [{"asin": "B009ZJHEEM", "instruction": "i am looking for 7.2 ounce (pack of 1) spicy white chocolate truffle for great gift", "attributes": ["great gift", "perfect gift"], "options": ["flavor name: spice", "size: 7.2 ounce (pack of 1)"], "instruction_attributes": ["great gift"], "instruction_options": ["spice", "7.2 ounce (pack of 1)"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG9VSL2", "worker_id": "A258PTOZ3D2TQR"}], "B09JG87XL1": [{"asin": "B09JG87XL1", "instruction": "i'm looking for cupcakes for birthday parties.", "attributes": ["baby shower", "birthday party", "birthday cake", "party supplies"], "options": [""], "instruction_attributes": ["birthday party", "birthday cake", "party supplies"], "instruction_options": [], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM952I18", "worker_id": "A16IQOX0DK14OJ"}], "B087RWWZ5J": [{"asin": "B087RWWZ5J", "instruction": "i would like a pack of salted butternut squash stalks that is gluten free and contains other plant based ingredients.", "attributes": ["plant based", "non gmo", "gluten free"], "options": ["flavor name: salted"], "instruction_attributes": ["plant based", "gluten free"], "instruction_options": ["salted"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841CRXAQ", "worker_id": "A1HMZJ59OPLD1P"}], "B073X2WRSV": [{"asin": "B073X2WRSV", "instruction": "i am looking for a dermatologist tested foundation that is in the color of soft honey.", "attributes": ["dermatologist tested", "seed oil"], "options": ["color: soft honey", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["soft honey", "1 fl oz (pack of 1)"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017344PG", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B073X2WRSV", "instruction": "i want to buy liquid makeup which has been tested by dermatologists and it has honey color, i prefer it to be at 1 fl oz at pack of 1 size.", "attributes": ["dermatologist tested", "seed oil"], "options": ["color: honey", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["honey", "1 fl oz (pack of 1)"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQJSKE3", "worker_id": "AJY5G987IRT25"}, {"asin": "B073X2WRSV", "instruction": "i am looking for a dermatologist tested liquid makeup of chestnut color.", "attributes": ["dermatologist tested", "seed oil"], "options": ["color: chestnut", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["chestnut"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30USUY0J", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B073X2WRSV", "instruction": "i need some foundation in a buff color. look for a two pack of one ounce bottles. it should be dermatologist tested.", "attributes": ["dermatologist tested", "seed oil"], "options": ["color: buff", "size: 1 fl. oz (pack of 2)"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["buff", "1 fl. oz (pack of 2)"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFLSE97", "worker_id": "AR9AU5FY1S3RO"}], "B00JSLKCB4": [{"asin": "B00JSLKCB4", "instruction": "i'm looking for a pair of pants that's easy to care for and come in a classic fit. i need them in black, size 40w x 32l.", "attributes": ["easy care", "moisture wicking", "classic fit"], "options": ["color: black", "size: 40w x 32l"], "instruction_attributes": ["easy care", "classic fit"], "instruction_options": ["black", "40w x 32l"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIMAFET", "worker_id": "AR9AU5FY1S3RO"}], "B09SF217NB": [{"asin": "B09SF217NB", "instruction": "i need a brown 6 wide sandal with ankle strap", "attributes": ["closed toe", "ankle strap"], "options": ["color: a5 - brown", "size: 6 wide"], "instruction_attributes": ["ankle strap"], "instruction_options": ["a5 - brown", "6 wide"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RJOFLT", "worker_id": "A2Y2TURT2VEYZN"}], "B096X1F7VK": [{"asin": "B096X1F7VK", "instruction": "i want a dual band serveillance bullet camera waterproof motion detection", "attributes": ["dual band", "motion detection"], "options": [""], "instruction_attributes": ["dual band", "motion detection"], "instruction_options": [], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TP53NY", "worker_id": "A3N9ZYQAESNFQH"}], "B07DYGT4N5": [{"asin": "B07DYGT4N5", "instruction": "i am looking for a double sided white apron for shaving and trimming.", "attributes": ["double sided", "easy use"], "options": ["color: white"], "instruction_attributes": ["double sided"], "instruction_options": ["white"], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM95CI1I", "worker_id": "A1NF6PELRKACS9"}], "B08PZGFNGC": [{"asin": "B08PZGFNGC", "instruction": "i am looking for an old bronze vanity light", "attributes": ["brushed nickel", "vanity light"], "options": ["color: old bronze"], "instruction_attributes": ["vanity light"], "instruction_options": ["old bronze"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADK3VWD", "worker_id": "A2ECRNQ3X5LEXD"}], "B081B7GHV5": [{"asin": "B081B7GHV5", "instruction": "nikon digital camera with red optical zoom", "attributes": ["1080p hd", "optical zoom", "stereo sound"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKNVVPD", "worker_id": "A3TTGSUBIK1YCL"}], "B07BG65PL3": [{"asin": "B07BG65PL3", "instruction": "i'm looking for a heavy duty mattress with box spring. also choose split king sized mattress + platform bed styled with cool gel designed one.", "attributes": ["heavy duty", "memory foam", "king size", "box spring"], "options": ["design: cool gel", "size: split king", "style name: mattress + platform bed"], "instruction_attributes": ["heavy duty", "box spring"], "instruction_options": ["cool gel", "split king", "mattress + platform bed"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDRAHR5", "worker_id": "AR0VJ5XRG16UJ"}], "B09MFGM4S2": [{"asin": "B09MFGM4S2", "instruction": "i am looking for a network antenna that is easy to install.", "attributes": ["easy install", "4g lte"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SY6TQR", "worker_id": "A2ECRNQ3X5LEXD"}], "B01MQSLK2Z": [{"asin": "B01MQSLK2Z", "instruction": "i want a high performance lenovo yoga book - fhd 10.1\" android tablet - 2 in 1 tablet windows os", "attributes": ["high performance", "high definition"], "options": ["color: champagne gold", "size: windows os"], "instruction_attributes": ["high performance"], "instruction_options": ["windows os"], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVH1BIS", "worker_id": "A1IL2K0ELYI090"}], "B09RMTJTBJ": [{"asin": "B09RMTJTBJ", "instruction": "i would like a full xl 4\" foundation for a box spring and mattress set.", "attributes": ["high density", "ready use", "long lasting", "assembly required", "box spring", "memory foam"], "options": ["size: full xl", "style: 4\" foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["full xl", "4\" foundation"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI77QZGP", "worker_id": "A1WS884SI0SLO4"}], "B0967WDH66": [{"asin": "B0967WDH66", "instruction": "i need to buy a silver eight light chandelier for my living room. i want one that's easy to install.", "attributes": ["height adjustable", "easy install", "pendant light", "living room", "dining room"], "options": ["color: silver-8 light"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["silver-8 light"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JDLSF9", "worker_id": "AR9AU5FY1S3RO"}], "B0744GPMNS": [{"asin": "B0744GPMNS", "instruction": "i want steel frame in grey color", "attributes": ["memory foam", "coated steel", "steel frame"], "options": [""], "instruction_attributes": ["steel frame"], "instruction_options": [], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIPB58E", "worker_id": "A226L9F2AZ38CL"}], "B08TQWXY9B": [{"asin": "B08TQWXY9B", "instruction": "i am looking for a wireless charging cradles of silence phone holder mount color", "attributes": ["easy use", "wireless charging"], "options": ["color: silence phone holder mount"], "instruction_attributes": ["wireless charging"], "instruction_options": [], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69PLP8T", "worker_id": "A9QRQL9CFJBI7"}], "B09P4QBZN8": [{"asin": "B09P4QBZN8", "instruction": "need a large sleepwear pajamas in gray with elastic closure", "attributes": ["elastic closure", "long sleeve"], "options": ["color: gray", "size: large"], "instruction_attributes": ["elastic closure"], "instruction_options": ["gray", "large"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5I7WIH", "worker_id": "A2Y2TURT2VEYZN"}], "B08NW4TVGY": [{"asin": "B08NW4TVGY", "instruction": "i would like a meat substitute flavored with sea salt that is ready to eat.", "attributes": ["plant based", "soy free", "ready eat", "high protein", "non gmo", "gluten free"], "options": ["flavor: sea salt | black pepper"], "instruction_attributes": ["ready eat"], "instruction_options": ["sea salt | black pepper"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWD5FNA", "worker_id": "A1WS884SI0SLO4"}], "B00EO23OKI": [{"asin": "B00EO23OKI", "instruction": "i would like a 2.25 bottle of men's single shower fresh alcohol free antiperspirant.", "attributes": ["dermatologist tested", "alcohol free"], "options": ["color: shower fresh", "configuration: single", "size: 2.25 ounce (pack of 1)", "style: men"], "instruction_attributes": ["alcohol free"], "instruction_options": ["shower fresh", "single", "2.25 ounce (pack of 1)", "men"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVQ1JKY", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00EO23OKI", "instruction": "i'm looking for a stick of men's mountain air scented deodorant that is alcohol free.", "attributes": ["dermatologist tested", "alcohol free"], "options": ["color: mountain air", "configuration: single", "size: 3.4 ounce (pack of 2)", "style: women"], "instruction_attributes": ["alcohol free"], "instruction_options": ["mountain air"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN5QGOB", "worker_id": "A2JP9IKRHNLRPI"}], "B00BQ76XK2": [{"asin": "B00BQ76XK2", "instruction": "i am looking for a green tea makeup brushes & tools", "attributes": ["green tea", "dark circles"], "options": [""], "instruction_attributes": ["green tea"], "instruction_options": [], "assignment_id": "31EUONYN26DZ1WA44INARVVOAILOVB", "worker_id": "A9QRQL9CFJBI7"}], "B09QHXLZQY": [{"asin": "B09QHXLZQY", "instruction": "i would like a extra large green short sleeve t shirt", "attributes": ["long sleeve", "short sleeve", "teen girls", "daily wear"], "options": ["color: b3-green", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["b3-green", "x-large"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EFW1BW", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09QHXLZQY", "instruction": "i want a gray floral graphic long sleeve shirt for women.", "attributes": ["long sleeve", "short sleeve", "teen girls", "daily wear"], "options": ["color: b2-gray", "size: 5x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["b2-gray"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5KBB21R", "worker_id": "A2RBF3IIJP15IH"}], "B01I1C9F0E": [{"asin": "B01I1C9F0E", "instruction": "i am looking for aluminum alloy video camera tripod", "attributes": ["quick release", "non slip", "carrying case", "aluminum alloy"], "options": [""], "instruction_attributes": ["aluminum alloy"], "instruction_options": [], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0YDPXK", "worker_id": "A16M39T60N60NO"}], "B00QQKPIC8": [{"asin": "B00QQKPIC8", "instruction": "i am looking for some 18 inch pearl platinum synthetic hair extensions.", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: pearl platinum", "size: 18 inch (pack of 1)"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": ["pearl platinum", "18 inch (pack of 1)"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE25ZGQ8", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00QQKPIC8", "instruction": "i am looking for 16 inch light golden blonde color synthetic hair extensions hairpieces for women", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: light golden blonde", "size: 16 inch (pack of 1)"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["light golden blonde", "16 inch (pack of 1)"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L5CVCX", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B00QQKPIC8", "instruction": "i am interested in pale blonde hair extensions that are 18 inches long", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: light pale blonde", "size: 18 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["light pale blonde", "18 inch (pack of 1)"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68J6A4C", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H5J9FGZ": [{"asin": "B09H5J9FGZ", "instruction": "i am looking for a camcorder that is easy to carry and have optical zoom.", "attributes": ["easy carry", "optical zoom", "motion detection"], "options": [""], "instruction_attributes": ["easy carry", "optical zoom"], "instruction_options": [], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK40J38", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09H5J9FGZ", "instruction": "i would like a camcorder with optical zoom.", "attributes": ["easy carry", "optical zoom", "motion detection"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9R287K", "worker_id": "A1WS884SI0SLO4"}], "B00JP62FBM": [{"asin": "B00JP62FBM", "instruction": "i need long lasting kenzo l'eau par kenzo toilet spray for women", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTVHXWO", "worker_id": "A1V2C99HEV3F14"}], "B09Q8MQ5FF": [{"asin": "B09Q8MQ5FF", "instruction": "i am looking for a 0.07d-15mm size cruelty free false eyelashes & adhesives", "attributes": ["easy apply", "cruelty free"], "options": ["color: white", "size: 0.07d-15mm"], "instruction_attributes": ["cruelty free"], "instruction_options": ["0.07d-15mm"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNYG8HC", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09Q8MQ5FF", "instruction": "i want to find 0.7-14 millimeter long lash extensions in pink. they must be easy to apply.", "attributes": ["easy apply", "cruelty free"], "options": ["color: pink+red+blue+purple +white+green+brown", "size: 0.07d-14mm"], "instruction_attributes": ["easy apply"], "instruction_options": ["pink+red+blue+purple +white+green+brown", "0.07d-14mm"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBJSDJ7", "worker_id": "A345TDMHP3DQ3G"}], "B0959B21HW": [{"asin": "B0959B21HW", "instruction": "i\u2019m looking for modern and natural platform bed frames for twin beds. i don\u2019t mind if there\u2019s some assembly required.", "attributes": ["queen size", "assembly required", "engineered wood", "box spring"], "options": ["color: natural", "size: twin"], "instruction_attributes": ["assembly required"], "instruction_options": ["natural", "twin"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCQ9MB7", "worker_id": "A3LIIE572Z4OG7"}], "B093SZ7QMH": [{"asin": "B093SZ7QMH", "instruction": "i would like a laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6965GE", "worker_id": "A1WS884SI0SLO4"}], "B09NLRKKHJ": [{"asin": "B09NLRKKHJ", "instruction": "i am looking for a lightweight background that is 10 by 10 ft", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a17", "size: 10x10ft | 3x3m"], "instruction_attributes": ["light weight"], "instruction_options": ["10x10ft | 3x3m"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP1ZTXU", "worker_id": "A2ECRNQ3X5LEXD"}], "B07VB1CGXW": [{"asin": "B07VB1CGXW", "instruction": "i would like a men's extra small navy officially licensed mario shirt.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: men", "size: x-small"], "instruction_attributes": ["cotton heather"], "instruction_options": [], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIMGFEZ", "worker_id": "A1WS884SI0SLO4"}], "B097PJV6CJ": [{"asin": "B097PJV6CJ", "instruction": "i need lightweight navy shoes that are in a size 11", "attributes": ["light weight", "machine washable", "non slip", "relaxed fit"], "options": ["color: navy blue | mix", "size: 11"], "instruction_attributes": ["light weight"], "instruction_options": ["navy blue | mix", "11"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q7479HB", "worker_id": "A2ECRNQ3X5LEXD"}], "B081ZW6KT2": [{"asin": "B081ZW6KT2", "instruction": "i am looking for a men's baby blue classic fit shirt", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: baby blue", "fit type: men", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["baby blue", "men"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8Y9PZF", "worker_id": "A2ECRNQ3X5LEXD"}], "B01MRBW7EO": [{"asin": "B01MRBW7EO", "instruction": "i'm looking for a pair of flat front stretch corduroy pants with a classic fit in dark grey. size needs to be 31 long with a 40 waist.", "attributes": ["easy care", "day comfort", "machine washable", "machine wash", "cotton spandex", "classic fit", "button closure"], "options": ["color: dark grey", "size: 40w x 31l"], "instruction_attributes": ["classic fit"], "instruction_options": ["dark grey", "40w x 31l"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841C8AXK", "worker_id": "A3OLRWACCCCUTU"}], "B07T9QC7RT": [{"asin": "B07T9QC7RT", "instruction": "i am looking for a foundation that is metallic gold and has natural ingredients.", "attributes": ["green tea", "rose gold", "natural ingredients"], "options": ["color: #02 metallic gold"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["#02 metallic gold"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXM2WKY", "worker_id": "A2ECRNQ3X5LEXD"}], "B0992C1J45": [{"asin": "B0992C1J45", "instruction": "i would like a box of individually wrapped chocolate cereal bars.", "attributes": ["dairy free", "individually wrapped", "gluten free", "perfect gift"], "options": ["flavor name: chocolate"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["chocolate"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YSL8TW", "worker_id": "A1WS884SI0SLO4"}], "B0721MGWLC": [{"asin": "B0721MGWLC", "instruction": "i need a black case cover for my iphone", "attributes": ["hands free", "case cover"], "options": ["color: black"], "instruction_attributes": ["case cover"], "instruction_options": ["black"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X8SY30", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DFXSL8Y": [{"asin": "B08DFXSL8Y", "instruction": "i am looking for a automatic rotating styling tool with metallic ionic barrel and smart anti-stuck sensor for long and medium length hair.", "attributes": ["long lasting", "hair styling"], "options": ["color: black"], "instruction_attributes": ["hair styling"], "instruction_options": ["black"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT3FP3N", "worker_id": "A21IUUHBSEVB56"}], "B07BSWXFWY": [{"asin": "B07BSWXFWY", "instruction": "i need a digital camera that has a high optical zoom", "attributes": ["optical zoom", "carrying case"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4DSI01", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Y2QZ191": [{"asin": "B07Y2QZ191", "instruction": "i need to buy a two pack of beige memory foam chair pads for my dining room.", "attributes": ["long lasting", "memory foam", "faux leather", "dining room", "living room"], "options": ["color: bradford beige | brown", "size: 2 count (pack of 1)"], "instruction_attributes": ["memory foam", "dining room"], "instruction_options": ["bradford beige | brown", "2 count (pack of 1)"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YZQ3QH", "worker_id": "AR9AU5FY1S3RO"}], "B000Q5K1O4": [{"asin": "B000Q5K1O4", "instruction": "i am looking for a 24 pack of shelf stable fruit juices.", "attributes": ["shelf stable", "gluten free", "non gmo", "source vitamin"], "options": ["size: 8.4 fl oz (pack of 24)"], "instruction_attributes": ["shelf stable"], "instruction_options": ["8.4 fl oz (pack of 24)"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMXESA2", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NPXWNMY": [{"asin": "B09NPXWNMY", "instruction": "i am looking for light weight safety shoes for men of black color.", "attributes": ["light weight", "non slip", "steel toe"], "options": ["color: black", "size: 47"], "instruction_attributes": ["light weight"], "instruction_options": ["black"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8JBNZK", "worker_id": "A1Q8PPQQCWGY0D"}], "B07X4TQXB3": [{"asin": "B07X4TQXB3", "instruction": "i need a 4-light brushed nickel fixture. it should have a wood finish.", "attributes": ["wood finish", "brushed nickel", "light fixture"], "options": ["size: 4-light"], "instruction_attributes": ["wood finish", "brushed nickel", "light fixture"], "instruction_options": ["4-light"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH8V1VN", "worker_id": "A1NF6PELRKACS9"}], "B00DOVR7ZI": [{"asin": "B00DOVR7ZI", "instruction": "i need an 8 ounce package of freeze dried tomatoes", "attributes": ["freeze dried", "non gmo", "gluten free"], "options": ["flavor name: organic tomato bits", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["freeze dried"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI77QGZ6", "worker_id": "A2ECRNQ3X5LEXD"}], "B08CXFN5QM": [{"asin": "B08CXFN5QM", "instruction": "i need brown flats that are a size 7 and are anti-slip", "attributes": ["anti slip", "open toe", "high heel", "ankle strap"], "options": ["color: z91-brown", "size: 7"], "instruction_attributes": ["anti slip"], "instruction_options": ["z91-brown", "7"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPOGYSH", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QRTXNJC": [{"asin": "B08QRTXNJC", "instruction": "i would like a 3 lights conical lampshade that is easy to put on.", "attributes": ["easy install", "vanity light"], "options": ["color: conical lampshade", "size: 3-lights"], "instruction_attributes": ["easy install"], "instruction_options": ["conical lampshade", "3-lights"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH14Z4N", "worker_id": "A1WS884SI0SLO4"}], "B07BJKYB79": [{"asin": "B07BJKYB79", "instruction": "im looking for light khaki brown men\u2019s jeans that are machine washable.", "attributes": ["machine wash", "button closure"], "options": ["color: light khaki brown", "size: 34w x 29l"], "instruction_attributes": ["machine wash"], "instruction_options": ["light khaki brown"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF61LDH", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B07BJKYB79", "instruction": "i am looking for machine washable athletic fit jeans that are olive in color.", "attributes": ["machine wash", "button closure"], "options": ["color: olive", "size: 42w x 29l"], "instruction_attributes": ["machine wash"], "instruction_options": ["olive"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2G9FKA", "worker_id": "A1EREKSZAA9V7B"}], "B09DYV3YD4": [{"asin": "B09DYV3YD4", "instruction": "i want 1080p hd hidden camera 32 gb memory recorder", "attributes": ["1080p hd", "high speed"], "options": ["size: 32gb"], "instruction_attributes": ["1080p hd"], "instruction_options": ["32gb"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F23BHOF", "worker_id": "A3N9ZYQAESNFQH"}], "B07WH58X7T": [{"asin": "B07WH58X7T", "instruction": "i'm looking a 6.5\" navy blue case for iphone 11 pro max with carbon fiber", "attributes": ["heavy duty", "carbon fiber"], "options": ["color: iphone 11 pro max 6.5\",navy blue"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["iphone 11 pro max 6.5\",navy blue"], "assignment_id": "3Z4AIRP3CHN69T8YYVQH3KF1XISX19", "worker_id": "A2Y2TURT2VEYZN"}], "B09MCWCKYB": [{"asin": "B09MCWCKYB", "instruction": "i would like a high quality cosmetic bag decorated with cow and flowers.", "attributes": ["easy carry", "high quality"], "options": ["color: cow with flowers-blue", "size: bag"], "instruction_attributes": ["easy carry"], "instruction_options": ["cow with flowers-blue", "bag"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1O2F6O", "worker_id": "A1WS884SI0SLO4"}], "B0852XLRMD": [{"asin": "B0852XLRMD", "instruction": "i would like a triple chocolate gluten free keto friendly cake mix.", "attributes": ["low carb", "sugar free", "grain free", "gluten free", "keto friendly", "ready eat", "zero sugar", "quality ingredients"], "options": ["flavor name: triple chocolate"], "instruction_attributes": ["gluten free", "keto friendly"], "instruction_options": ["triple chocolate"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQEXS6L", "worker_id": "A1WS884SI0SLO4"}], "B004R8WJHS": [{"asin": "B004R8WJHS", "instruction": "i would like a long lasting perfume.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22POEEQH", "worker_id": "A1WS884SI0SLO4"}], "B06Y96N1KG": [{"asin": "B06Y96N1KG", "instruction": "i am looking for non gmo sea salt smoked", "attributes": ["non gmo", "gluten free", "soy free", "sugar free", "dairy free"], "options": ["flavor: smoked classics", "size: 4 ounce (pack of 2)"], "instruction_attributes": ["non gmo"], "instruction_options": ["smoked classics"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LX3DC9", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B06Y96N1KG", "instruction": "i want to find a 3-count pack of 4-ounce containers of natural sea salt. the salt needs to be non-gmo.", "attributes": ["non gmo", "gluten free", "soy free", "sugar free", "dairy free"], "options": ["flavor: natural salts", "size: 4 ounce (3 count)"], "instruction_attributes": ["non gmo"], "instruction_options": ["natural salts", "4 ounce (3 count)"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XONOL96", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B06Y96N1KG", "instruction": "i want to find a six-pack of 4-ounce bottles of vegetarian, gluten-free smoked sea salt.", "attributes": ["non gmo", "gluten free", "soy free", "sugar free", "dairy free"], "options": ["flavor: vegetarian smoked", "size: 4 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["vegetarian smoked", "4 ounce (pack of 6)"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIQO84E", "worker_id": "A345TDMHP3DQ3G"}], "B08X4J2X2V": [{"asin": "B08X4J2X2V", "instruction": "i'm looking for tousled hair extensions that come two to a pack. they should be light brown and ash blonde.", "attributes": ["high quality", "hair extensions"], "options": ["color: t-light brown & ash blonde", "size: 2 piece tousled (45g)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["t-light brown & ash blonde", "2 piece tousled (45g)"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH25Z4Q", "worker_id": "AR9AU5FY1S3RO"}], "B09JP3ZLQQ": [{"asin": "B09JP3ZLQQ", "instruction": "looking for eco friendly toothbrushes for sensitive teeth also choose paper package super soft", "attributes": ["eco friendly", "sensitive teeth"], "options": ["color: paper package-super soft"], "instruction_attributes": ["eco friendly", "sensitive teeth"], "instruction_options": ["paper package-super soft"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZGKPCD", "worker_id": "A10OGH5CQBXL5N"}], "B09GBBGX3J": [{"asin": "B09GBBGX3J", "instruction": "i would like a pair of women's 8.5 toffee shoe with arch support.", "attributes": ["arch support", "rubber sole"], "options": ["color: toffee", "size: 8.5"], "instruction_attributes": ["arch support"], "instruction_options": ["toffee", "8.5"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU7SLRN", "worker_id": "A1WS884SI0SLO4"}], "B000EY5COG": [{"asin": "B000EY5COG", "instruction": "i am looking for powdered milk that is gluten free and nonfat", "attributes": ["low sodium", "gluten free"], "options": ["flavor name: nonfat powdered", "size: 12 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["nonfat powdered"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO6CC2X", "worker_id": "A2ECRNQ3X5LEXD"}], "B08GY9D56X": [{"asin": "B08GY9D56X", "instruction": "i am looking for rectangular shape shaggy with tassels rug for a living room", "attributes": ["white item", "living room"], "options": ["color: off white", "item shape: rectangular", "size: 10' x 14'"], "instruction_attributes": ["living room"], "instruction_options": ["rectangular"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X0279340", "worker_id": "A16M39T60N60NO"}, {"asin": "B08GY9D56X", "instruction": "i need a blue area rug for the living room", "attributes": ["white item", "living room"], "options": ["color: blue", "item shape: oval", "size: 4 ft"], "instruction_attributes": ["living room"], "instruction_options": ["blue"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIEWRBQ", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08GY9D56X", "instruction": "i want an off-white rectangular area rug for my living room.", "attributes": ["white item", "living room"], "options": ["color: off-white", "item shape: rectangular", "size: 6 ft"], "instruction_attributes": ["living room"], "instruction_options": ["off-white", "rectangular"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCOAI77", "worker_id": "A1NF6PELRKACS9"}], "B08VBN9C3H": [{"asin": "B08VBN9C3H", "instruction": "i need 16 cups of gluten free organic hummus in black olive color.", "attributes": ["shelf stable", "gluten free"], "options": ["style: 16 cups large ripe pitted black olives"], "instruction_attributes": ["gluten free"], "instruction_options": ["16 cups large ripe pitted black olives"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602VF95T", "worker_id": "A1V2C99HEV3F14"}], "B09RHCSPXH": [{"asin": "B09RHCSPXH", "instruction": "i am in need of a royal blue men's classic fit tank that is in a large.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: men", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["royal blue", "men", "large"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZN0R7X", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H3BQRZY": [{"asin": "B09H3BQRZY", "instruction": "i need a 50\" by 40\" living room throw", "attributes": ["super soft", "living room"], "options": ["color: sometimes ya just need a nug funny chicken nuggets", "size: 50\"x40\"\uff08throw\uff09kids"], "instruction_attributes": ["living room"], "instruction_options": ["50\"x40\"\uff08throw\uff09kids"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZEUWUR", "worker_id": "A2ECRNQ3X5LEXD"}], "B082WJ54KG": [{"asin": "B082WJ54KG", "instruction": "i'm looking for a haori jacket that's machine wash and comes in black. i need a size extra small.", "attributes": ["easy care", "wash cold", "machine wash"], "options": ["color: s-black", "size: x-small"], "instruction_attributes": ["machine wash"], "instruction_options": ["s-black", "x-small"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJPYOMJ", "worker_id": "AR9AU5FY1S3RO"}], "B07K46V79T": [{"asin": "B07K46V79T", "instruction": "i'm looking for gluten free and soy free it was contain high protein.", "attributes": ["soy free", "plant based", "dairy free", "non gmo", "gluten free"], "options": ["flavor name: hot chili pepper", "size: 5.3 ounce (pack of 4)"], "instruction_attributes": ["soy free", "dairy free", "gluten free"], "instruction_options": ["hot chili pepper"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQDVVKI", "worker_id": "A16IQOX0DK14OJ"}], "B09BJNFTC1": [{"asin": "B09BJNFTC1", "instruction": "i'm looking for a pair of women's pumps that have an ankle strap and a leather sole. look for them in black, size twelve and a half.", "attributes": ["ankle strap", "rubber sole"], "options": ["color: black", "size: 12.5"], "instruction_attributes": ["ankle strap", "rubber sole"], "instruction_options": ["black", "12.5"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGFXS9O", "worker_id": "AR9AU5FY1S3RO"}], "B083S5CNQ7": [{"asin": "B083S5CNQ7", "instruction": "i need a red phone case that comes with a tempered glass screen protector.", "attributes": ["hands free", "glass screen", "tempered glass"], "options": ["color: red"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["red"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4FWBSD", "worker_id": "AR9AU5FY1S3RO"}], "B0143WCTO0": [{"asin": "B0143WCTO0", "instruction": "i would like a pack of raisin challah bread that is gluten and soy free.", "attributes": ["gluten free", "nut free", "soy free", "dairy free", "non gmo"], "options": ["flavor name: raisin challah", "size: 1 pack"], "instruction_attributes": ["gluten free", "soy free"], "instruction_options": ["raisin challah", "1 pack"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LA0REF", "worker_id": "A1WS884SI0SLO4"}], "B07QD7ZRDV": [{"asin": "B07QD7ZRDV", "instruction": "i need a nine by twelve foot ivory colored rug for my dining room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: ivory | multi", "item shape: square", "size: 9 ft x 12 ft"], "instruction_attributes": ["dining room"], "instruction_options": ["ivory | multi", "9 ft x 12 ft"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8KPC4A", "worker_id": "AR9AU5FY1S3RO"}], "B07MYBVRY2": [{"asin": "B07MYBVRY2", "instruction": "i need a pack of lip balm that is made of coconut oil", "attributes": ["seed oil", "coconut oil"], "options": ["size: 1-pack lip balm"], "instruction_attributes": ["coconut oil"], "instruction_options": ["1-pack lip balm"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OUYPO5", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LYC1254": [{"asin": "B08LYC1254", "instruction": "i want a soft silicone mask for sensitive skin.", "attributes": ["easy apply", "easy clean", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTPRLPI", "worker_id": "A2RBF3IIJP15IH"}], "B088H5CYXF": [{"asin": "B088H5CYXF", "instruction": "i need an executive chair that is black and made of pu leather", "attributes": ["high density", "heavy duty", "easy install", "lumbar support", "pu leather"], "options": ["color: black"], "instruction_attributes": ["pu leather"], "instruction_options": ["black"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQHWJCP", "worker_id": "A2ECRNQ3X5LEXD"}], "B078GR42XX": [{"asin": "B078GR42XX", "instruction": "i am looking for sc665 handset for mobile phone with noise cancelling feature.", "attributes": ["noise cancelling", "hands free", "carrying case", "stainless steel"], "options": ["style: sc665"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["sc665"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZGZPCS", "worker_id": "A3FG5PQHG5AH3Y"}], "B00SKVJK1G": [{"asin": "B00SKVJK1G", "instruction": "i would like a high speed pack of 5 hdmi cables", "attributes": ["high speed", "gold plated"], "options": ["color: 5 pack", "size: 12 feet (10 pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["5 pack"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBHKGHR", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B00SKVJK1G", "instruction": "i am looking for a 10 pack of 10 feet long high speed gold plated hdmi cables.", "attributes": ["high speed", "gold plated"], "options": ["color: 10 pack", "size: 10 feet (10-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack", "10 feet (10-pack)"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDWD8YZ", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00SKVJK1G", "instruction": "i want a c&e high speed hdmi male to male cable.", "attributes": ["high speed", "gold plated"], "options": ["color: 5 pack", "size: 30 feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["hdmi male to male"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6IU2BS", "worker_id": "A2RBF3IIJP15IH"}], "B0013OSK8Q": [{"asin": "B0013OSK8Q", "instruction": "i would like 38 servings of unflavored whey protein that is low in fat.", "attributes": ["low fat", "high protein", "artificial flavors"], "options": ["flavor name: unflavored", "size: 38 servings (pack of 1)"], "instruction_attributes": ["low fat"], "instruction_options": ["unflavored", "38 servings (pack of 1)"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ2LNRK", "worker_id": "A1WS884SI0SLO4"}], "B087K1S6M3": [{"asin": "B087K1S6M3", "instruction": "i'm looking for a size 32x32 living room abstract canvas.", "attributes": ["ready hang", "wood frame", "solid wood", "living room"], "options": ["color: art 14594", "size: 32x32"], "instruction_attributes": ["living room"], "instruction_options": ["32x32"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALC94HQ", "worker_id": "ARQ05PDNXPFDI"}], "B07BH76HZ4": [{"asin": "B07BH76HZ4", "instruction": "i'm looking for a small gift basket of milk chocolate mint truffles for valentine's day; about 4oz.", "attributes": ["quality ingredients", "valentine day", "gift basket"], "options": ["flavor name: chocolate", "size: .25 lb (4 oz)"], "instruction_attributes": ["valentine day", "gift basket"], "instruction_options": ["chocolate", ".25 lb (4 oz)"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFVBOJN", "worker_id": "A3LIIE572Z4OG7"}], "B09QKWFB31": [{"asin": "B09QKWFB31", "instruction": "buy me anti aging long lasting easy to use ice roller for face in aqua blue color.", "attributes": ["anti aging", "long lasting", "easy use", "green tea", "fine lines", "sensitive skin"], "options": ["color: aqua blue"], "instruction_attributes": ["anti aging", "long lasting", "easy use"], "instruction_options": ["aqua blue"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2G9IOS", "worker_id": "A3AYHESLQSDY5T"}], "B01J8A8CBG": [{"asin": "B01J8A8CBG", "instruction": "i would like some wild caught crab.", "attributes": ["wild caught", "easy prepare"], "options": [""], "instruction_attributes": ["wild caught"], "instruction_options": [], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOKQMLX", "worker_id": "A1WS884SI0SLO4"}], "B01M0LOBNV": [{"asin": "B01M0LOBNV", "instruction": "i would like a box of rubine hair dye.", "attributes": ["hair dye", "permanent hair"], "options": ["color: rubine"], "instruction_attributes": ["hair dye"], "instruction_options": ["rubine"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FIULE2", "worker_id": "A1WS884SI0SLO4"}], "B083NN8VRR": [{"asin": "B083NN8VRR", "instruction": "i need blue color 11.5 size long sleeve", "attributes": ["winter warm", "anti slip", "open toe", "short sleeve", "long sleeve", "button closure"], "options": ["color: blue", "size: 11.5"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue", "11.5"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYQH7NV", "worker_id": "A226L9F2AZ38CL"}], "B092CD4Q8K": [{"asin": "B092CD4Q8K", "instruction": "i'm looking for headphones are color it was wireless charging it was outside of noise cancellation.", "attributes": ["noise cancelling", "hands free", "wireless charging"], "options": ["color: pink"], "instruction_attributes": ["noise cancelling", "wireless charging"], "instruction_options": ["pink"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YQQ969", "worker_id": "A16IQOX0DK14OJ"}], "B09MCXBFW1": [{"asin": "B09MCXBFW1", "instruction": "i am looking for a multi-colored blackout window film for my living room.", "attributes": ["eco friendly", "living room"], "options": ["color: multi-13124", "size: 23.6\" x 78.7\" x 2 pcs"], "instruction_attributes": ["living room"], "instruction_options": ["multi-13124"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ATOBWQ", "worker_id": "A1EREKSZAA9V7B"}], "B071S1RR6H": [{"asin": "B071S1RR6H", "instruction": "i am looking for nail polish that is long lasting.", "attributes": ["long lasting", "nail polish"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOKHLMN", "worker_id": "A1Q8PPQQCWGY0D"}], "B07QS369Z7": [{"asin": "B07QS369Z7", "instruction": "i'm looking for a pair of sweatpants with a drawstring waist in space grey. i need them in size large.", "attributes": ["drawstring waist", "gym workout"], "options": ["color: space dye grey", "size: large"], "instruction_attributes": ["drawstring waist"], "instruction_options": ["space dye grey", "large"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2GCOI1", "worker_id": "AR9AU5FY1S3RO"}], "B07YNW1JZJ": [{"asin": "B07YNW1JZJ", "instruction": "looking for gift set of handmade italian biscottis with natural ingredients", "attributes": ["natural flavors", "natural ingredients", "gift set", "perfect gift"], "options": [""], "instruction_attributes": ["natural ingredients", "gift set"], "instruction_options": [], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTGHN9Z", "worker_id": "A10OGH5CQBXL5N"}], "B09F5YS8D2": [{"asin": "B09F5YS8D2", "instruction": "i would like 10 brown coat hooks for my living room.", "attributes": ["wall mounted", "storage space", "living room"], "options": ["color: brown", "size: 10 hook"], "instruction_attributes": ["living room"], "instruction_options": ["brown", "10 hook"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N23UG6G", "worker_id": "A1WS884SI0SLO4"}], "B06WW1MXDZ": [{"asin": "B06WW1MXDZ", "instruction": "i am looking for a high performance dslr camera lenses that are certified refurbished.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished", "high performance"], "instruction_options": [], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96CJ4GE", "worker_id": "A1Q8PPQQCWGY0D"}], "B07XPJSP2N": [{"asin": "B07XPJSP2N", "instruction": "i need to buy a six pack of sugar free, keto friendly, non-gmo cheese crisps in the original flavor.", "attributes": ["keto friendly", "gluten free", "sugar free", "non gmo", "artificial flavors"], "options": ["flavor name: original", "size: pack of 6"], "instruction_attributes": ["keto friendly", "sugar free", "non gmo"], "instruction_options": ["original", "pack of 6"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163VIQPG", "worker_id": "AR9AU5FY1S3RO"}], "B00QNLS26O": [{"asin": "B00QNLS26O", "instruction": "i would like some old fashioned summer sausage.", "attributes": ["old fashioned", "ready eat"], "options": [""], "instruction_attributes": ["old fashioned"], "instruction_options": [], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8LSR4V", "worker_id": "A1WS884SI0SLO4"}], "B092MZLG4B": [{"asin": "B092MZLG4B", "instruction": "i am looking for an electrolyte drink that is low carb and in the berry flavor.", "attributes": ["low carb", "non gmo", "artificial flavors"], "options": ["flavor name: berry"], "instruction_attributes": ["low carb"], "instruction_options": ["berry"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY869P18B", "worker_id": "A2ECRNQ3X5LEXD"}], "B07FL52HPF": [{"asin": "B07FL52HPF", "instruction": "i would like a 12 ounce bottle of mango conditioner that is paraben free.", "attributes": ["oil free", "paraben free", "argan oil"], "options": ["size: 12 ounce", "style: mango"], "instruction_attributes": ["paraben free"], "instruction_options": ["12 ounce", "mango"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK8KVN7", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07FL52HPF", "instruction": "i need a conditioner that is 12 ounces and is paraben free with a coconut scent.", "attributes": ["oil free", "paraben free", "argan oil"], "options": ["size: 12 ounce", "style: coconut"], "instruction_attributes": ["paraben free"], "instruction_options": ["12 ounce", "coconut"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61SGZWI", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RWDMGSX": [{"asin": "B07RWDMGSX", "instruction": "i am looking for a red blonde natural hair for wigs", "attributes": ["synthetic hair", "natural hair"], "options": ["color: red blonde"], "instruction_attributes": ["natural hair"], "instruction_options": ["red blonde"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZS2HS0", "worker_id": "A9QRQL9CFJBI7"}], "B09BPVM1P5": [{"asin": "B09BPVM1P5", "instruction": "looking for dual band output protection ac adapter", "attributes": ["dual band", "output protection"], "options": [""], "instruction_attributes": ["dual band", "output protection"], "instruction_options": [], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUW4QJ8", "worker_id": "A10OGH5CQBXL5N"}], "B08TKJVY47": [{"asin": "B08TKJVY47", "instruction": "i would like a valentines day snack gift basket.", "attributes": ["valentine day", "gift basket"], "options": [""], "instruction_attributes": ["valentine day", "gift basket"], "instruction_options": [], "assignment_id": "3HPZF4IVNX3FW186JO133U513LPCYW", "worker_id": "A1WS884SI0SLO4"}], "B09GVWK6FX": [{"asin": "B09GVWK6FX", "instruction": "i am looking for some storage cabinets for storage space.", "attributes": ["assembly required", "engineered wood", "storage space"], "options": [""], "instruction_attributes": ["storage space"], "instruction_options": [], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q5OGWI", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BLCBNQ1": [{"asin": "B08BLCBNQ1", "instruction": "i am looking for ultra hd surveillance dvr kits", "attributes": ["ultra hd", "high definition", "motion detection"], "options": [""], "instruction_attributes": ["ultra hd"], "instruction_options": [], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANINSX6", "worker_id": "A2ECRNQ3X5LEXD"}], "B082WZ282J": [{"asin": "B082WZ282J", "instruction": "i am looking a chocolate gift box for valentine day.", "attributes": ["valentine day", "perfect gift"], "options": [""], "instruction_attributes": ["valentine day"], "instruction_options": [], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907U3AU4", "worker_id": "A1Q8PPQQCWGY0D"}], "B082YMS9LN": [{"asin": "B082YMS9LN", "instruction": "i'm looking for a high quality cosmetic bag. also the c mermaid scales color is what i prefer.", "attributes": ["easy use", "high quality", "nail polish", "nail art"], "options": ["color: c mermaid scales"], "instruction_attributes": ["high quality"], "instruction_options": ["c mermaid scales"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YS2T8Y", "worker_id": "ARQ05PDNXPFDI"}, {"asin": "B082YMS9LN", "instruction": "i would like a corgi dog cosmetic bag for my nail art.", "attributes": ["easy use", "high quality", "nail polish", "nail art"], "options": ["color: corgi dog"], "instruction_attributes": ["nail art"], "instruction_options": ["corgi dog"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMZZ2GU", "worker_id": "A1WS884SI0SLO4"}], "B087JD3R9C": [{"asin": "B087JD3R9C", "instruction": "i would like a pair of size 10 grey pumps with a high heel.", "attributes": ["high heel", "rubber outsole"], "options": ["color: grey", "size: 10"], "instruction_attributes": ["high heel"], "instruction_options": ["grey", "10"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFJD9VW", "worker_id": "A1WS884SI0SLO4"}], "B085Y1D9PX": [{"asin": "B085Y1D9PX", "instruction": "find me a anti slip size 6 black color womens platform sandals", "attributes": ["open toe", "knee high", "anti slip", "ankle strap", "high heel", "closed toe", "memory foam"], "options": ["color: z6-black", "size: 6"], "instruction_attributes": ["anti slip"], "instruction_options": [], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7SELRWB", "worker_id": "A2Y2TURT2VEYZN"}], "B09JCMW4F6": [{"asin": "B09JCMW4F6", "instruction": "i am looking for a red faux fur jacket that is in a small.", "attributes": ["quality polyester", "long sleeve", "faux fur"], "options": ["color: red", "size: small"], "instruction_attributes": ["faux fur"], "instruction_options": ["red", "small"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X8HY3P", "worker_id": "A2ECRNQ3X5LEXD"}], "B08XPYZ2TH": [{"asin": "B08XPYZ2TH", "instruction": "im looking for a black alarm clock radio that displays the temperature and uses a usb port.", "attributes": ["batteries included", "aaa batteries", "usb port"], "options": ["color: black"], "instruction_attributes": ["usb port"], "instruction_options": ["black"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCI9RABI", "worker_id": "AK3JMCIGU8MLU"}], "B09RSSX4C7": [{"asin": "B09RSSX4C7", "instruction": "i would like a peach flavored high fructose margarita mix.", "attributes": ["non alcoholic", "high fructose"], "options": ["flavor: peach"], "instruction_attributes": ["high fructose"], "instruction_options": ["peach"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH1557HWO", "worker_id": "A1WS884SI0SLO4"}], "B09PBPR95R": [{"asin": "B09PBPR95R", "instruction": "i need a green sweatshirt that is loose fit and is a medium", "attributes": ["loose fit", "fleece lined", "hand wash", "daily casual", "light weight", "wide leg", "wash cold", "machine wash", "long sleeve", "drawstring waist", "high waist"], "options": ["color: #03-green", "size: medium"], "instruction_attributes": ["loose fit"], "instruction_options": ["#03-green", "medium"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9VTETB", "worker_id": "A2ECRNQ3X5LEXD"}], "B088SJ4C4X": [{"asin": "B088SJ4C4X", "instruction": "i am looking for root beer flavor syrup that is easy to use.", "attributes": ["shelf stable", "easy use"], "options": ["flavor: root beer"], "instruction_attributes": ["easy use"], "instruction_options": ["root beer"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVROJKN", "worker_id": "A1Q8PPQQCWGY0D"}], "B075QGP9Z1": [{"asin": "B075QGP9Z1", "instruction": "i would like a twin size indigo pink duvet cover set that is machine washable.", "attributes": ["queen size", "super soft", "machine washable", "white item"], "options": ["color: indigo pink", "size: twin size"], "instruction_attributes": ["machine washable"], "instruction_options": ["indigo pink", "twin size"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFCUD9M", "worker_id": "A1WS884SI0SLO4"}], "B08SK39NHH": [{"asin": "B08SK39NHH", "instruction": "i am looking for shell mosaic color pendant light chandeliers", "attributes": ["pendant light", "glass shade", "light fixture", "dining room"], "options": ["color: shell mosaic"], "instruction_attributes": ["pendant light"], "instruction_options": ["shell mosaic"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOMYF07", "worker_id": "A9QRQL9CFJBI7"}], "B07GCV2K39": [{"asin": "B07GCV2K39", "instruction": "i am looking for wild caught smoked fish.", "attributes": ["wild caught", "natural flavors"], "options": [""], "instruction_attributes": ["wild caught"], "instruction_options": [], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTPDO63", "worker_id": "A2ECRNQ3X5LEXD"}], "B08R1MJL3H": [{"asin": "B08R1MJL3H", "instruction": "i am looking for a soy wax candle that is white sage and 14 oz.", "attributes": ["long lasting", "soy wax"], "options": ["color: white sage", "size: 14.1 oz-1 pack"], "instruction_attributes": ["soy wax"], "instruction_options": ["white sage", "14.1 oz-1 pack"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDZCIA0", "worker_id": "A2ECRNQ3X5LEXD"}], "B082166NKL": [{"asin": "B082166NKL", "instruction": "i want a 3 pack of trader joe's cookie thins.", "attributes": ["trader joe", "artificial colors"], "options": ["size: 3 pack"], "instruction_attributes": ["trader joe"], "instruction_options": ["3 pack"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2ZE94I", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B082166NKL", "instruction": "i am looking for a 4 pack of trader joe's ginger cookies.", "attributes": ["trader joe", "artificial colors"], "options": ["size: 4 pack"], "instruction_attributes": ["trader joe"], "instruction_options": ["4 pack"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THV4Z5T", "worker_id": "A1EREKSZAA9V7B"}], "B07RVDW2Z2": [{"asin": "B07RVDW2Z2", "instruction": "i am looking for candles for a birthday cake in the style t.", "attributes": ["birthday cake", "birthday party"], "options": ["style: t"], "instruction_attributes": ["birthday cake"], "instruction_options": ["t"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I3V1SA", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07RVDW2Z2", "instruction": "i need birthday candles for my birthday cake.", "attributes": ["birthday cake", "birthday party"], "options": ["style: q"], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIVB84B", "worker_id": "AVIEE6LDH0BT5"}], "B07JC99BGV": [{"asin": "B07JC99BGV", "instruction": "i am looking for non slip chair pads that are chocolate and come in an 8 pack.", "attributes": ["button tufted", "non slip"], "options": ["color: chocolate", "size: 8 pack"], "instruction_attributes": ["non slip"], "instruction_options": ["chocolate", "8 pack"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BO5X80", "worker_id": "A2ECRNQ3X5LEXD"}], "B08F8K9ZMK": [{"asin": "B08F8K9ZMK", "instruction": "i need some espresso box spring twin beds", "attributes": ["heavy duty", "box spring", "solid wood", "memory foam"], "options": ["color: espresso", "size: twin"], "instruction_attributes": ["box spring"], "instruction_options": ["espresso", "twin"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMRBMW7", "worker_id": "A2ECRNQ3X5LEXD"}], "B07YM1WS37": [{"asin": "B07YM1WS37", "instruction": "i am looking for a conditioner bar for my dry hair that is having kookabara scent.", "attributes": ["sulfate free", "eco friendly", "oil free", "cruelty free", "coconut oil", "dry hair", "damaged hair"], "options": ["scent: kookabara", "size: 2.12 ounce (pack of 2)"], "instruction_attributes": ["dry hair"], "instruction_options": ["kookabara"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADK9WVK", "worker_id": "A1Q8PPQQCWGY0D"}], "B09T2LGNV3": [{"asin": "B09T2LGNV3", "instruction": "i'm looking for a grey 3 seater living room sofa.", "attributes": ["high density", "living room"], "options": ["color: grey", "size: 2-seater sofa"], "instruction_attributes": ["living room"], "instruction_options": ["grey"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG5UGBS", "worker_id": "A62B826XMLK7K"}], "B07W8YKZRL": [{"asin": "B07W8YKZRL", "instruction": "i would like a mens 3xl baby blue t shirt made of heather cotton.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: baby blue", "fit type: men", "size: 3x-large"], "instruction_attributes": ["heathers cotton"], "instruction_options": ["baby blue", "men", "3x-large"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4VKK7B", "worker_id": "A1WS884SI0SLO4"}], "B09L47HSZD": [{"asin": "B09L47HSZD", "instruction": "i am looking for red color hard pc anti-slip phone tempered glass for iphone 11", "attributes": ["non slip", "tempered glass", "carbon fiber", "glass screen"], "options": ["color: red"], "instruction_attributes": ["tempered glass"], "instruction_options": ["red"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOK2TCL", "worker_id": "A258PTOZ3D2TQR"}], "B07P53YMMD": [{"asin": "B07P53YMMD", "instruction": "i want to buy a 12 count package of individually wrapped sour candies for a birthday party.", "attributes": ["individually wrapped", "quality ingredients", "party supplies", "birthday party"], "options": ["size: 12 count (pack of 1)"], "instruction_attributes": ["individually wrapped", "birthday party"], "instruction_options": ["12 count (pack of 1)"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5BB7UQB", "worker_id": "AR9AU5FY1S3RO"}], "B087C8CCRT": [{"asin": "B087C8CCRT", "instruction": "i am interested in buying a hairdressing apron which is long lasting and easy to clean in the color ba or pe.", "attributes": ["easy clean", "long lasting", "high quality", "beauty salon", "hair cutting"], "options": ["color: ba | pe"], "instruction_attributes": ["easy clean", "long lasting"], "instruction_options": ["ba | pe"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1C2U9Q", "worker_id": "AHXHM1PQTRWIQ"}], "B0756CYWWD": [{"asin": "B0756CYWWD", "instruction": "i would like a pair of silver noise cancelling headphones with wireless bluetooth.", "attributes": ["noise cancelling", "wireless bluetooth"], "options": ["color: silver"], "instruction_attributes": ["noise cancelling", "wireless bluetooth"], "instruction_options": ["silver"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKSISG5", "worker_id": "A1WS884SI0SLO4"}], "B094L52FKW": [{"asin": "B094L52FKW", "instruction": "i am looking for cranberry almond color cookie that is fat free.", "attributes": ["low calorie", "fat free", "natural ingredients"], "options": ["color: cranberry almond"], "instruction_attributes": ["fat free"], "instruction_options": ["cranberry almond"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8JBZNW", "worker_id": "A1Q8PPQQCWGY0D"}], "B08LNZY1SD": [{"asin": "B08LNZY1SD", "instruction": "i need a machine washable light gray t-shirt", "attributes": ["quick drying", "machine wash"], "options": ["color: jet gray light heather (010) | black", "size: 3x-large big"], "instruction_attributes": ["machine wash"], "instruction_options": ["jet gray light heather (010) | black"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5J01ZM", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HH2ZDPX": [{"asin": "B09HH2ZDPX", "instruction": "order for me clear 2l -brass & glass globe shade for light fixture in my living room.", "attributes": ["clear glass", "brushed nickel", "light fixture", "living room"], "options": ["color: 2l-brass & clear globe", "size: 3-light"], "instruction_attributes": ["clear glass", "light fixture", "living room"], "instruction_options": ["2l-brass & clear globe"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UW7Y04", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B09HH2ZDPX", "instruction": "i'm looking for wall sconces for living room, with clear glass and brushed nickel in 2l-bronze color and clear cone.", "attributes": ["clear glass", "brushed nickel", "light fixture", "living room"], "options": ["color: 2l-brass & clear cone", "size: 1-light"], "instruction_attributes": ["clear glass", "brushed nickel", "living room"], "instruction_options": ["2l-brass & clear cone"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPSBWFQ", "worker_id": "ARJDD0Z3R65BD"}], "B094GG73C7": [{"asin": "B094GG73C7", "instruction": "i'm losing my hair, so i need to buy a bright red wig.", "attributes": ["sulfate free", "hair loss"], "options": ["color: bright red rooted medium brown"], "instruction_attributes": ["hair loss"], "instruction_options": ["bright red rooted medium brown"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6US7G1B", "worker_id": "AR9AU5FY1S3RO"}], "B01J5UC1Q6": [{"asin": "B01J5UC1Q6", "instruction": "i would like a 0.25 fluid ounces of oil free 090 foundation.", "attributes": ["oil free", "fine lines"], "options": ["color: 090", "size: 0.25 fl oz (pack of 1)"], "instruction_attributes": ["oil free"], "instruction_options": ["090", "0.25 fl oz (pack of 1)"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY869U81N", "worker_id": "A1WS884SI0SLO4"}], "B08D6GLL32": [{"asin": "B08D6GLL32", "instruction": "looking for contemporary wingback fabric barstools faux leather", "attributes": ["button tufted", "contemporary design", "contemporary style"], "options": ["color: beige and espresso", "size: faux leather"], "instruction_attributes": ["contemporary style"], "instruction_options": ["faux leather"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG4FGBB", "worker_id": "A10OGH5CQBXL5N"}], "B0196BENJW": [{"asin": "B0196BENJW", "instruction": "can i have pierre's apothecary macadamia hydrating restoring conditioner with omega 7 and coconut oil", "attributes": ["coconut oil", "hair styling", "dry hair"], "options": [""], "instruction_attributes": ["coconut oil"], "instruction_options": [], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXA3FC6", "worker_id": "A1IL2K0ELYI090"}], "B07HKK3PQN": [{"asin": "B07HKK3PQN", "instruction": "i need to buy some running shoes. they should fit comfortably and have a synthetic sole. look for them in white, size 13.", "attributes": ["comfortable fit", "synthetic sole"], "options": ["color: white (100) | white", "size: 13"], "instruction_attributes": ["comfortable fit", "synthetic sole"], "instruction_options": ["white (100) | white", "13"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOZN932", "worker_id": "AR9AU5FY1S3RO"}], "B01M8L3I4E": [{"asin": "B01M8L3I4E", "instruction": "i'm looking for a royal 14 plus denim shorts butt lifting", "attributes": ["butt lifting", "machine wash", "stretch fabric"], "options": ["color: royal", "size: 14 plus"], "instruction_attributes": ["butt lifting"], "instruction_options": ["royal", "14 plus"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1DGGY9", "worker_id": "A2Y2TURT2VEYZN"}], "B01JOKWJF0": [{"asin": "B01JOKWJF0", "instruction": "looking for pack of 1 nail polish", "attributes": ["long lasting", "nail polish"], "options": ["color: 474 can't beet royalty", "size: pack of 1"], "instruction_attributes": ["nail polish"], "instruction_options": ["pack of 1"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYKB6L7", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B01JOKWJF0", "instruction": "i search 550 hunger flames nail polish", "attributes": ["long lasting", "nail polish"], "options": ["color: 529 | 550 hunger flames", "size: pack of 2"], "instruction_attributes": ["nail polish"], "instruction_options": ["529 | 550 hunger flames"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCRR65T", "worker_id": "A226L9F2AZ38CL"}], "B07WTY16LH": [{"asin": "B07WTY16LH", "instruction": "i want a variety pack of grass fed collagen creamers.", "attributes": ["grass fed", "non dairy", "keto friendly", "zero sugar"], "options": ["flavor name: variety"], "instruction_attributes": ["grass fed"], "instruction_options": ["variety"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3P6LZD", "worker_id": "A2RBF3IIJP15IH"}], "B00FL9DFB6": [{"asin": "B00FL9DFB6", "instruction": "i want a queen sized and faux leather platform bed.", "attributes": ["button tufted", "contemporary style", "faux leather", "solid wood"], "options": ["size: queen"], "instruction_attributes": ["faux leather"], "instruction_options": ["queen"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WZX7FQ", "worker_id": "A2RBF3IIJP15IH"}], "B07T55DL33": [{"asin": "B07T55DL33", "instruction": "i would like a high performance memory card reader.", "attributes": ["light weight", "high performance", "plug play"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K9B12M", "worker_id": "A1WS884SI0SLO4"}], "B07CTSFKJL": [{"asin": "B07CTSFKJL", "instruction": "i'm looking for a delicious danish kringle pair a pecan and cream cheesecake.", "attributes": ["baked fresh", "old fashioned", "gift basket"], "options": [""], "instruction_attributes": ["baked fresh", "gift basket"], "instruction_options": [], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP13XT2", "worker_id": "A21IUUHBSEVB56"}], "B09D8MYY7P": [{"asin": "B09D8MYY7P", "instruction": "i'm looking for packaged fruits that flavor name was peaches-vanilla.", "attributes": ["ready eat", "simple ingredients"], "options": ["flavor name: peaches - vanilla", "size: 20 ounce (pack of 1)"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["peaches - vanilla"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68H4A46", "worker_id": "A16IQOX0DK14OJ"}], "B09M956CQG": [{"asin": "B09M956CQG", "instruction": "i want to easy to use and bush blonde l'oreal paris hair gloss.", "attributes": ["paraben free", "easy use", "coconut oil"], "options": ["color: blush blonde"], "instruction_attributes": ["easy use"], "instruction_options": ["blush blonde"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KZP7EH", "worker_id": "A2RBF3IIJP15IH"}], "B00TYPVRTA": [{"asin": "B00TYPVRTA", "instruction": "i would like 250 bags of strawberry sugar free tea.", "attributes": ["caffeine free", "sugar free", "gluten free"], "options": ["flavor name: strawberry", "size: 250 count"], "instruction_attributes": ["sugar free"], "instruction_options": ["strawberry", "250 count"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7ZDRUH", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B00TYPVRTA", "instruction": "am searching for the republic of tea peppermint cuppa chocolate tea, 36 tea bags and sugar free", "attributes": ["caffeine free", "sugar free", "gluten free"], "options": ["flavor name: carrot cake", "size: 36 count (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["36 count (pack of 1)"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0254IAKM", "worker_id": "A1IL2K0ELYI090"}], "B099DPQBH9": [{"asin": "B099DPQBH9", "instruction": "i'm looking for double sided nail hand for nail art its easy to use.", "attributes": ["double sided", "easy carry", "easy use", "nail art"], "options": [""], "instruction_attributes": ["double sided", "nail art"], "instruction_options": [], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R2X7WY", "worker_id": "A16IQOX0DK14OJ"}], "B07JMPC8J1": [{"asin": "B07JMPC8J1", "instruction": "i am looking for throw pillow covers of size 18 x 18 inches for my living room.", "attributes": ["double sided", "super soft", "living room"], "options": ["size: 18 x 18 inches"], "instruction_attributes": ["living room"], "instruction_options": ["18 x 18 inches"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB497AQ9", "worker_id": "A1Q8PPQQCWGY0D"}], "B09CTRMZVR": [{"asin": "B09CTRMZVR", "instruction": "i am looking for casual rubber sole hot pink 7 color running shoes for women, 5 sized.", "attributes": ["anti slip", "rubber sole", "rubber outsole"], "options": ["color: h-pink 7", "size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["h-pink 7", "5"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR5SA0U", "worker_id": "A258PTOZ3D2TQR"}], "B09BZN6CBP": [{"asin": "B09BZN6CBP", "instruction": "help me purchase a high definition digital tv antenna with coaxial cable and easy to install.", "attributes": ["easy use", "high definition", "easy install", "coaxial cable"], "options": [""], "instruction_attributes": ["easy install", "coaxial cable"], "instruction_options": [], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISZQYOX", "worker_id": "A1HMZJ59OPLD1P"}], "B09HJJZ4HV": [{"asin": "B09HJJZ4HV", "instruction": "i would like a 50 x 80 inch fleece throw with a valentines day inn design.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: valentine's dayinn4893", "size: 50x80inch"], "instruction_attributes": ["fleece throw"], "instruction_options": ["valentine's dayinn4893", "50x80inch"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREQ3J20", "worker_id": "A1WS884SI0SLO4"}], "B00EMKRPAC": [{"asin": "B00EMKRPAC", "instruction": "i would like a long lasting face toner for dry skin.", "attributes": ["long lasting", "hyaluronic acid", "dry skin", "fine lines"], "options": [""], "instruction_attributes": ["long lasting", "dry skin"], "instruction_options": [], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O392A3", "worker_id": "A1WS884SI0SLO4"}], "B09N7BNH7R": [{"asin": "B09N7BNH7R", "instruction": "i'm looking for 4 color eyeshadow palette colorful matte and shimmer.", "attributes": ["long lasting", "highly pigmented", "eye shadow", "fine lines"], "options": ["color: #01"], "instruction_attributes": ["eye shadow"], "instruction_options": ["#01"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVJM1PS", "worker_id": "A21IUUHBSEVB56"}], "B08NJF2PFP": [{"asin": "B08NJF2PFP", "instruction": "i want a light gray and machine washable 100% blackout window curtain panel.", "attributes": ["super soft", "machine washable", "stainless steel"], "options": ["color: light gray", "size: w52 x l63"], "instruction_attributes": ["machine washable"], "instruction_options": ["light gray"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUUC7MCE", "worker_id": "A2RBF3IIJP15IH"}], "B09DTPGMLC": [{"asin": "B09DTPGMLC", "instruction": "i need a package of one hundred gray zip ties. they should be eco friendly.", "attributes": ["eco friendly", "high density"], "options": ["color: smokey gray 12\"x12\"", "size: 8'' inch ziptie 100 pieces"], "instruction_attributes": ["eco friendly"], "instruction_options": ["smokey gray 12\"x12\"", "8'' inch ziptie 100 pieces"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XB2RFK", "worker_id": "AR9AU5FY1S3RO"}], "B09CLS963D": [{"asin": "B09CLS963D", "instruction": "i want pineapple flavor gluten free nut free 8 ounce cooking and baking powder", "attributes": ["gluten free", "nut free"], "options": ["flavor: pineapple", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["pineapple", "8 ounce (pack of 1)"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3FON63", "worker_id": "A3N9ZYQAESNFQH"}], "B099R8BCTX": [{"asin": "B099R8BCTX", "instruction": "i'm looking for a body hair remover cream.", "attributes": ["easy apply", "easy use", "hair removal", "sensitive skin"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "33TIN5LC0FKDY31374RC144TX0K9YA", "worker_id": "A1ZGOZQF2VZ0X9"}], "B092XBQVSV": [{"asin": "B092XBQVSV", "instruction": "looking for natural flavors whole grain cheddar", "attributes": ["0g trans", "natural flavors"], "options": [""], "instruction_attributes": ["natural flavors"], "instruction_options": [], "assignment_id": "37UQDCYH685SGQI5NW68G99TKTN7VG", "worker_id": "A10OGH5CQBXL5N"}], "B09G983D7Q": [{"asin": "B09G983D7Q", "instruction": "i would like a silver phone case with a glass tempered screen.", "attributes": ["glass screen", "tempered glass"], "options": ["color: silver"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["silver"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOLE0F6", "worker_id": "A1WS884SI0SLO4"}], "B093STM1BR": [{"asin": "B093STM1BR", "instruction": "i need a non slip carpet with 47 inches x 31 inches dimension.", "attributes": ["non slip", "printing technology"], "options": ["color: game30", "size: 47 in x 31 in"], "instruction_attributes": ["non slip"], "instruction_options": ["47 in x 31 in"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP2UTXR", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B093STM1BR", "instruction": "i am interested in a non slip area rug that is 70 by 55 inch", "attributes": ["non slip", "printing technology"], "options": ["color: game9", "size: 70 in x 55 in"], "instruction_attributes": ["non slip"], "instruction_options": ["70 in x 55 in"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KSO9JL", "worker_id": "A2ECRNQ3X5LEXD"}], "B00CWTZ6GU": [{"asin": "B00CWTZ6GU", "instruction": "i need some sugar free gingerbread flavor syrup.", "attributes": ["sugar free", "keto friendly", "fat free", "gluten free", "zero sugar"], "options": ["flavor name: sugar free gingerbread", "size: 25.4 ounce (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["sugar free gingerbread"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1GWXRF", "worker_id": "A2ECRNQ3X5LEXD"}], "B09F8XTR6C": [{"asin": "B09F8XTR6C", "instruction": "i am interested in a paraben free eyeshadow", "attributes": ["paraben free", "green tea"], "options": [""], "instruction_attributes": ["paraben free"], "instruction_options": [], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUMQZVQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B088KHF9S2": [{"asin": "B088KHF9S2", "instruction": "i need a beauty salon makeup palette", "attributes": ["nail art", "beauty salon"], "options": ["size: size 1"], "instruction_attributes": ["beauty salon"], "instruction_options": ["size 1"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4DY0IP", "worker_id": "A2ECRNQ3X5LEXD"}], "B076HH25ZF": [{"asin": "B076HH25ZF", "instruction": "i would like a queen size blue linen bed with drawers with a contemporary design.", "attributes": ["twin size", "contemporary design", "box spring"], "options": ["color: blue linen", "size: queen", "style: bed with storage drawers"], "instruction_attributes": ["contemporary design"], "instruction_options": ["blue linen", "queen", "bed with storage drawers"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7SEPWRK", "worker_id": "A1WS884SI0SLO4"}], "B07VXDK4B4": [{"asin": "B07VXDK4B4", "instruction": "i'm looking for a individually wrapped cake topper for birthday party.", "attributes": ["individually wrapped", "baby shower", "birthday cake", "party supplies", "birthday party"], "options": [""], "instruction_attributes": ["individually wrapped", "birthday party"], "instruction_options": [], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDQ7CHU", "worker_id": "AR0VJ5XRG16UJ"}], "B09L7QJ54B": [{"asin": "B09L7QJ54B", "instruction": "looking for high quality silicone body scrubber for sensitive skin also choose colour grey", "attributes": ["easy clean", "double sided", "high quality", "sensitive skin", "dead skin"], "options": ["color: gray"], "instruction_attributes": ["high quality", "sensitive skin"], "instruction_options": ["gray"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGEUSMD", "worker_id": "A10OGH5CQBXL5N"}], "B08GPCY4BJ": [{"asin": "B08GPCY4BJ", "instruction": "i am looking for a black-1 water resistant snow boots", "attributes": ["water resistant", "anti slip", "non slip", "rubber sole"], "options": ["color: black-1", "size: 8 women | 6.5 men"], "instruction_attributes": ["water resistant"], "instruction_options": ["black-1"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H69U8Q", "worker_id": "A9QRQL9CFJBI7"}], "B081DJRTJ1": [{"asin": "B081DJRTJ1", "instruction": "ethylene vinyl women's running shoes also choose size 8", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: design 2", "size: 8"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["8"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZKOO8A", "worker_id": "A10OGH5CQBXL5N"}], "B09NQHBFPF": [{"asin": "B09NQHBFPF", "instruction": "i would like a yellow hair clip for hair styling.", "attributes": ["hair extensions", "hair styling", "natural hair"], "options": ["color: yellow"], "instruction_attributes": ["hair styling"], "instruction_options": ["yellow"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME96ND2X", "worker_id": "A1WS884SI0SLO4"}], "B07DLRD3TG": [{"asin": "B07DLRD3TG", "instruction": "i would like a king sized bed with a 8 inch mattress and storage space.", "attributes": ["queen size", "storage space"], "options": ["size: king", "style name: 8 inch mattress"], "instruction_attributes": ["storage space"], "instruction_options": ["king", "8 inch mattress"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKVKJMR", "worker_id": "A1WS884SI0SLO4"}], "B08FDR688Y": [{"asin": "B08FDR688Y", "instruction": "i am looking for uin smiley slip with size 7", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: women-knitted", "size: 7"], "instruction_attributes": [], "instruction_options": ["7"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPQKFWE", "worker_id": "A16M39T60N60NO"}], "B086Z2QK25": [{"asin": "B086Z2QK25", "instruction": "i am looking for gingerbread and white chocolate granola in resealable bags. it should not contain any artificial flavors.", "attributes": ["low sodium", "resealable bag", "natural ingredients", "artificial flavors"], "options": ["flavor name: gingerbread white chocolate", "size: 7.5 ounce (pack of 3)"], "instruction_attributes": ["resealable bag", "artificial flavors"], "instruction_options": ["gingerbread white chocolate"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWY0XPPR", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B086Z2QK25", "instruction": "find a granola pack with low sodium.", "attributes": ["low sodium", "resealable bag", "natural ingredients", "artificial flavors"], "options": ["flavor name: cranberry almond", "size: 7.5 ounce (pack of 2)"], "instruction_attributes": ["low sodium"], "instruction_options": [], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP8W7JF", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B086Z2QK25", "instruction": "i would like a four pack of mocha granola that has all natural ingredients.", "attributes": ["low sodium", "resealable bag", "natural ingredients", "artificial flavors"], "options": ["flavor name: mocha", "size: 7.5 ounce (pack of 4)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["mocha", "7.5 ounce (pack of 4)"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5PB6XB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09238H1R4": [{"asin": "B09238H1R4", "instruction": "i am looking for low carb hight proteintrue meat snack sticks of southwest verde venison. size is 12 packs of 1 oz", "attributes": ["sugar free", "grass fed", "gluten free", "high protein", "low carb", "natural ingredients", "0g trans"], "options": ["flavor name: southwest verde venison", "size: 1oz-12 pack"], "instruction_attributes": ["high protein", "low carb"], "instruction_options": ["southwest verde venison", "1oz-12 pack"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KQMJLH", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B09238H1R4", "instruction": "i am looking for a high protein and low carb beef snack stick. i also need it to be gluten free and be made of natural ingredients.", "attributes": ["sugar free", "grass fed", "gluten free", "high protein", "low carb", "natural ingredients", "0g trans"], "options": ["flavor name: original beef", "size: 8oz-single"], "instruction_attributes": ["gluten free", "high protein", "low carb", "natural ingredients"], "instruction_options": ["original beef"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VQYXMM", "worker_id": "AK3JMCIGU8MLU"}], "B07HPP27S7": [{"asin": "B07HPP27S7", "instruction": "i'm looking for a mary's gone crackers real thin crackers.", "attributes": ["gluten free", "certified organic", "plant based"], "options": ["flavor name: garlic rosemary", "size: 5 ounce (pack of 1)"], "instruction_attributes": ["gluten free", "certified organic"], "instruction_options": ["garlic rosemary", "5 ounce (pack of 1)"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMM1URS1", "worker_id": "A1ZGOZQF2VZ0X9"}], "B0872VP8QR": [{"asin": "B0872VP8QR", "instruction": "i'm looking for some hot cocoa mix that comes in a pack of three and is non-gmo and sugar free.", "attributes": ["dairy free", "sugar free", "low carb", "non gmo", "zero sugar"], "options": ["flavor: hot cocoa mix", "size: 9 ounce (pack of 3)"], "instruction_attributes": ["sugar free", "non gmo"], "instruction_options": ["hot cocoa mix", "9 ounce (pack of 3)"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8Q3Q6L", "worker_id": "AR9AU5FY1S3RO"}], "B08LZ65XF6": [{"asin": "B08LZ65XF6", "instruction": "i am looking for a 12x10 ft high resolution backdrop of spring garden leaves.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 5x3ft"], "instruction_attributes": ["high resolution"], "instruction_options": ["5x3ft"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTV7P9M", "worker_id": "A2KW17G25L25R8"}], "B0943N574G": [{"asin": "B0943N574G", "instruction": "i would like some champagne rhinestones for my nail art.", "attributes": ["easy apply", "high quality", "quality materials", "nail art"], "options": ["color: champagne"], "instruction_attributes": ["nail art"], "instruction_options": ["champagne"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ASOBWO", "worker_id": "A1WS884SI0SLO4"}], "B07NGHB486": [{"asin": "B07NGHB486", "instruction": "i'm looking for a cruelty free eyeshadow palette with division color.", "attributes": ["highly pigmented", "cruelty free", "long lasting", "animal testing", "rose gold"], "options": ["color: division"], "instruction_attributes": ["cruelty free"], "instruction_options": ["division"], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8ROQQR", "worker_id": "ARQ05PDNXPFDI"}], "B008CUVP1I": [{"asin": "B008CUVP1I", "instruction": "i'm looking for a perfect natural hair treatment with rice protein.", "attributes": ["hair treatment", "natural hair"], "options": ["scent: rice protein", "size: 140g"], "instruction_attributes": ["hair treatment", "natural hair"], "instruction_options": ["rice protein"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP6Y7JD", "worker_id": "A21IUUHBSEVB56"}], "B07ZFGMYF1": [{"asin": "B07ZFGMYF1", "instruction": "i would like a color d wall lamp for my living room.", "attributes": ["easy install", "light fixture", "living room"], "options": ["color: d"], "instruction_attributes": ["living room"], "instruction_options": ["d"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZDUPA6", "worker_id": "A1WS884SI0SLO4"}], "B09PF1W3FB": [{"asin": "B09PF1W3FB", "instruction": "i am looking for woman gym workout non slip arch support pink color shoe size :8", "attributes": ["non slip", "arch support", "everyday wear", "gym workout"], "options": ["color: pink", "size: 8"], "instruction_attributes": ["non slip", "arch support", "gym workout"], "instruction_options": ["pink", "8"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YS3T8Z", "worker_id": "A3N9ZYQAESNFQH"}], "B09H3CF2MW": [{"asin": "B09H3CF2MW", "instruction": "looking for hand crafted cranberry pumpkin seed choose pack of 12", "attributes": ["hand crafted", "non gmo"], "options": ["flavor name: rosemary pistachio", "size: pack of 12"], "instruction_attributes": ["hand crafted"], "instruction_options": ["pack of 12"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALCE4HV", "worker_id": "A10OGH5CQBXL5N"}], "B0951CJKB1": [{"asin": "B0951CJKB1", "instruction": "i need some boots in a seven wide that have leather soles. the color should be \"i mocka.\"", "attributes": ["leather sole", "rubber sole"], "options": ["color: l mocka", "size: 7 wide"], "instruction_attributes": ["leather sole"], "instruction_options": ["l mocka", "7 wide"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TF3K20", "worker_id": "AR9AU5FY1S3RO"}], "B075BLC569": [{"asin": "B075BLC569", "instruction": "am looking for a long lasting chanel gabrielle women edp spray 1.7 oz", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJQUO9N", "worker_id": "A1IL2K0ELYI090"}], "B08PKTDP5C": [{"asin": "B08PKTDP5C", "instruction": "looking for a gift for valentines day: custom funny face, comfortable fit kiss me boxer shorts novelty photo printed underwear. its size is 4x bigger.", "attributes": ["machine washable", "machine wash", "comfortable fit"], "options": ["color: name and face", "size: 4x-large"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["4x-large"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4V16YWQ", "worker_id": "A15IJ20C3R4HUO"}], "B094D7Y66B": [{"asin": "B094D7Y66B", "instruction": "i am looking for chocolate filled flavor cookies having low sugar and low fat.", "attributes": ["low sugar", "gluten free", "low fat", "low calorie", "low carb"], "options": ["flavor name: chocolate filled", "size: 2.6 ounce (pack of 4)"], "instruction_attributes": ["low sugar", "low fat"], "instruction_options": ["chocolate filled"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDZAIAY", "worker_id": "A1Q8PPQQCWGY0D"}], "B00NTT974E": [{"asin": "B00NTT974E", "instruction": "i am looking for a large size grey color light weight women's sleeveless pullover sweater with unique design.", "attributes": ["light weight", "unique design", "regular fit"], "options": ["color: grey", "size: large"], "instruction_attributes": ["light weight", "unique design"], "instruction_options": ["grey", "large"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJRI9OY", "worker_id": "A1V2JTEEBCXR20"}], "B084Q246B2": [{"asin": "B084Q246B2", "instruction": "i need an engineered wood end table", "attributes": ["engineered wood", "living room"], "options": [""], "instruction_attributes": ["engineered wood"], "instruction_options": [], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFI0VMX", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PR67BMX": [{"asin": "B09PR67BMX", "instruction": "i\u2019m looking for a mini dual band desktop computer that supports ultra hd and has at least 16 gigabytes of ram.", "attributes": ["dual band", "ultra hd"], "options": ["color: 16 ram-256 ssd-1thdd"], "instruction_attributes": ["dual band", "ultra hd"], "instruction_options": [], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMYJG2Q", "worker_id": "AK3JMCIGU8MLU"}], "B095NN5K4W": [{"asin": "B095NN5K4W", "instruction": "i would like a oversize 60 x 30 in color a wall posted to hang in the living room.", "attributes": ["hand painted", "ready hang", "dining room", "living room"], "options": ["color: a", "size: oversize 60 x 30 in"], "instruction_attributes": ["living room"], "instruction_options": ["a", "oversize 60 x 30 in"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R9H0RT", "worker_id": "A1WS884SI0SLO4"}], "B085VP8ZDB": [{"asin": "B085VP8ZDB", "instruction": "i am looking for men's slippers of size 8 that are long lasting.", "attributes": ["long lasting", "non slip", "leather sole"], "options": ["size: 8"], "instruction_attributes": ["long lasting"], "instruction_options": ["8"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V63U29", "worker_id": "A1Q8PPQQCWGY0D"}], "B09S5QYF4P": [{"asin": "B09S5QYF4P", "instruction": "tv rack up to 55 inches living room white", "attributes": ["easy assemble", "engineered wood", "storage space", "living room"], "options": ["color: white"], "instruction_attributes": ["living room"], "instruction_options": ["white"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6LRB24", "worker_id": "A3TTGSUBIK1YCL"}], "B09165NLQL": [{"asin": "B09165NLQL", "instruction": "im looking for hair clips and a hair pad for my hair extensions in the color dark brown.", "attributes": ["hair extensions", "hair styling"], "options": ["color: dark brown", "size: 12cm"], "instruction_attributes": ["hair extensions"], "instruction_options": ["dark brown"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXAUCFU", "worker_id": "AK3JMCIGU8MLU"}], "B011B6PHTA": [{"asin": "B011B6PHTA", "instruction": "i need a pack of 12 easy to prepare noodle dishes", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: bacon", "size: pack of 12"], "instruction_attributes": ["easy prepare"], "instruction_options": ["pack of 12"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40Y1RC0", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B011B6PHTA", "instruction": "i want an easy to prepare knorr pasta butter and herb side dish.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: butter & herb", "size: 4.3 ounce (pack of 1)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["butter & herb"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4QNKPH", "worker_id": "A2RBF3IIJP15IH"}], "B00A6S31DO": [{"asin": "B00A6S31DO", "instruction": "i would like a white twin size bed.", "attributes": ["twin size", "eco friendly", "white item"], "options": ["color: white"], "instruction_attributes": ["twin size", "white item"], "instruction_options": ["white"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QXH07O", "worker_id": "A1WS884SI0SLO4"}], "B07TTQNQRQ": [{"asin": "B07TTQNQRQ", "instruction": "i would like a storage case for my dentures.", "attributes": ["easy carry", "storage case"], "options": [""], "instruction_attributes": ["storage case"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPCDDQN", "worker_id": "A1WS884SI0SLO4"}], "B09MFB67P6": [{"asin": "B09MFB67P6", "instruction": "i'm looking for hair extensions to prevention of hair falling its for hair care.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: 183-t1b-30"], "instruction_attributes": ["hair extensions"], "instruction_options": ["183-t1b-30"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1ORTIQ", "worker_id": "A16IQOX0DK14OJ"}], "B09DFN74Y7": [{"asin": "B09DFN74Y7", "instruction": "i'm looking for a super soft throw blanket with skulls on it that's fifty by forty inches.", "attributes": ["super soft", "queen size"], "options": ["color: skull1", "size: 50\"x40\""], "instruction_attributes": ["super soft"], "instruction_options": ["skull1", "50\"x40\""], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVD5V83", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B09DFN74Y7", "instruction": "i am looking for a black queen size blanket for kids.", "attributes": ["super soft", "queen size"], "options": ["color: black", "size: 50\"x40\""], "instruction_attributes": ["queen size"], "instruction_options": ["black"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OVIOPQ", "worker_id": "A1EREKSZAA9V7B"}], "B07PRZF5GM": [{"asin": "B07PRZF5GM", "instruction": "i need green tea pack 1", "attributes": ["fragrance free", "oil free", "water resistant", "paraben free", "hyaluronic acid", "green tea", "sensitive skin"], "options": ["size: 5 fl oz (pack of 1)"], "instruction_attributes": ["green tea"], "instruction_options": ["5 fl oz (pack of 1)"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z7YGXF", "worker_id": "A226L9F2AZ38CL"}], "B073RF8CKX": [{"asin": "B073RF8CKX", "instruction": "i want a black soulaca smart tv with usb port.", "attributes": ["dust proof", "tempered glass", "usb port"], "options": ["color: black", "size: 22 inches"], "instruction_attributes": ["usb port"], "instruction_options": ["black"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA7GR8U", "worker_id": "A2RBF3IIJP15IH"}], "B06XRT9TSM": [{"asin": "B06XRT9TSM", "instruction": "i want solid wood espresso color queen size bed from modus furniture", "attributes": ["mid century", "metal legs", "solid wood"], "options": ["color: nevis veneto - espresso", "size: queen"], "instruction_attributes": ["solid wood"], "instruction_options": ["nevis veneto - espresso", "queen"], "assignment_id": "38F71OA9G46M5W32RN3TH53XROUFMB", "worker_id": "A1V2C99HEV3F14"}], "B08P34YR81": [{"asin": "B08P34YR81", "instruction": "i would like to buy an amplifier that is easy to install.", "attributes": ["power amplifier", "easy install"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDU8Y8G", "worker_id": "A15ERD4HOFEPHM"}], "B09PVC53FP": [{"asin": "B09PVC53FP", "instruction": "i'm looking for clothing quality and high waist for woman's.", "attributes": ["butt lifting", "fleece lined", "wide leg", "machine wash", "straight leg", "slim fit", "hand wash", "high waist", "tummy control", "quality polyester", "relaxed fit", "polyester spandex"], "options": ["color: multicolor", "size: xx-large"], "instruction_attributes": ["fleece lined", "wide leg", "straight leg", "slim fit", "high waist", "tummy control"], "instruction_options": ["multicolor"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKF0887", "worker_id": "A16IQOX0DK14OJ"}], "B07H9HV2JQ": [{"asin": "B07H9HV2JQ", "instruction": "i am looking for a cover that has a glass screen and is blue", "attributes": ["hands free", "glass screen"], "options": ["color: blue | black"], "instruction_attributes": ["glass screen"], "instruction_options": ["blue | black"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U8VAM7", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QQ9GSZY": [{"asin": "B09QQ9GSZY", "instruction": "i am looking for an open toe sandals that has high heel. please choose the 8.5 size with white color", "attributes": ["open toe", "ankle strap", "leather sole", "high heel"], "options": ["color: sandals 17 white", "size: 8.5"], "instruction_attributes": ["open toe", "high heel"], "instruction_options": ["sandals 17 white", "8.5"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCV1Q5E", "worker_id": "A2COCSUGZV28X"}], "B09SQ74NTW": [{"asin": "B09SQ74NTW", "instruction": "i am looking for a o color shampoos for hair losses", "attributes": ["hair growth", "natural hair", "hair loss", "damaged hair"], "options": ["color: o"], "instruction_attributes": ["hair loss"], "instruction_options": ["o"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20RV0ZJ", "worker_id": "A9QRQL9CFJBI7"}], "B07MW2D7W3": [{"asin": "B07MW2D7W3", "instruction": "i'm looking for hair loss control drops that will help with hair growth.", "attributes": ["green tea", "hair loss", "hair growth"], "options": [""], "instruction_attributes": ["hair loss", "hair growth"], "instruction_options": [], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEXNUUS", "worker_id": "A34EHWOYRBL6OZ"}], "B08CR81GHW": [{"asin": "B08CR81GHW", "instruction": "i am looking for a high definition sound bar that is camouflage.", "attributes": ["high performance", "hands free", "high definition", "stereo sound", "wireless bluetooth"], "options": ["color: camouflage"], "instruction_attributes": ["high definition"], "instruction_options": ["camouflage"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE244QGL", "worker_id": "A2ECRNQ3X5LEXD"}], "B07WL7C1ZM": [{"asin": "B07WL7C1ZM", "instruction": "i would love to buy a 12 count , low carb keto bars made with quality ingredients and keto friendly.", "attributes": ["grass fed", "keto friendly", "low carb", "quality ingredients"], "options": ["color: banana bread", "size: 12 count (pack of 1)"], "instruction_attributes": ["keto friendly", "low carb", "quality ingredients"], "instruction_options": ["12 count (pack of 1)"], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQH8HH2", "worker_id": "AHXHM1PQTRWIQ"}], "B07BMNFXRZ": [{"asin": "B07BMNFXRZ", "instruction": "i am looking for 12 pcs bpa free plastic spray bottle of amber color", "attributes": ["travel size", "bpa free", "fine mist"], "options": ["color: amber (12pcs)"], "instruction_attributes": ["bpa free"], "instruction_options": ["amber (12pcs)"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7P63IB", "worker_id": "A1Q8PPQQCWGY0D"}], "B08T1RX4WS": [{"asin": "B08T1RX4WS", "instruction": "i am looking to buy a quick release, non slip, travel tripod stand and it has to be silver.", "attributes": ["quick release", "non slip"], "options": ["color: silver"], "instruction_attributes": ["quick release", "non slip"], "instruction_options": ["silver"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCRY9BR", "worker_id": "A114NK7T5673GK"}], "B079FVQ9J9": [{"asin": "B079FVQ9J9", "instruction": "i need to buy a satin nickel finished vanity light that's thirty inches long.", "attributes": ["nickel finish", "vanity light"], "options": ["color: satin nickel", "size: 9 x 30\""], "instruction_attributes": ["nickel finish", "vanity light"], "instruction_options": ["satin nickel", "9 x 30\""], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TF6K23", "worker_id": "AR9AU5FY1S3RO"}], "B017610BG8": [{"asin": "B017610BG8", "instruction": "i would like a paraben and sulfate free body wash.", "attributes": ["fragrance free", "sulfate free", "paraben free", "hyaluronic acid", "dry skin"], "options": [""], "instruction_attributes": ["sulfate free", "paraben free"], "instruction_options": [], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG40GBW", "worker_id": "A1WS884SI0SLO4"}], "B009P2IUZQ": [{"asin": "B009P2IUZQ", "instruction": "i need a 1.43 ounce (pack of 12) soy free non gmo plant based gluten free original flavored chips.", "attributes": ["non gmo", "soy free", "plant based", "gluten free", "resealable bag", "simple ingredients"], "options": ["flavor name: original", "size: 1.43 ounce (pack of 12)"], "instruction_attributes": ["non gmo", "soy free", "plant based", "gluten free"], "instruction_options": ["original", "1.43 ounce (pack of 12)"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRXQF38", "worker_id": "A3AYHESLQSDY5T"}, {"asin": "B009P2IUZQ", "instruction": "i am looking for dang toasted coconut chips with soy free, gluten free , non gmo and plant based with size 3.17 ounce", "attributes": ["non gmo", "soy free", "plant based", "gluten free", "resealable bag", "simple ingredients"], "options": ["flavor name: variety pack", "size: 3.17 ounce (pack of 1)"], "instruction_attributes": ["soy free", "plant based", "gluten free"], "instruction_options": ["3.17 ounce (pack of 1)"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAFOVOF", "worker_id": "AX2EWYWZM19AZ"}], "B07KLSQGS2": [{"asin": "B07KLSQGS2", "instruction": "i'm interested in contemporary style barstools for the living room that are easy to clean and non-slip.", "attributes": ["non slip", "white item", "easy clean", "contemporary style", "living room"], "options": ["color: black"], "instruction_attributes": ["non slip", "easy clean", "contemporary style", "living room"], "instruction_options": ["black"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4VB7KP", "worker_id": "AFU00NU09CFXE"}], "B08DDFM5GC": [{"asin": "B08DDFM5GC", "instruction": "i am looking for a low fat black bean soup", "attributes": ["low fat", "ready eat"], "options": ["flavor name: black bean soup"], "instruction_attributes": ["low fat"], "instruction_options": ["black bean soup"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHABHDO1", "worker_id": "A2ECRNQ3X5LEXD"}], "B07N8R9WKN": [{"asin": "B07N8R9WKN", "instruction": "i am looking for brass color coffee table for my living room.", "attributes": ["mid century", "tempered glass", "steel frame", "living room"], "options": ["color: brass", "size: 45\""], "instruction_attributes": ["living room"], "instruction_options": ["brass"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6OPDMMW", "worker_id": "A1Q8PPQQCWGY0D"}], "B07ZLV1F37": [{"asin": "B07ZLV1F37", "instruction": "i want kerastim pro hair loss treatment for men & women.", "attributes": ["hair growth", "hair loss"], "options": [""], "instruction_attributes": ["hair loss"], "instruction_options": [], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPQWFWQ", "worker_id": "A2RBF3IIJP15IH"}], "B07NH3Q1VJ": [{"asin": "B07NH3Q1VJ", "instruction": "i'm looking for a size 2.55 ounce anti aging hydra-nutrition day cream.", "attributes": ["dermatologist tested", "anti aging", "paraben free", "dry skin", "sensitive skin"], "options": ["size: 2.55 ounce (pack of 1)", "style: moisturizing balm"], "instruction_attributes": ["anti aging"], "instruction_options": ["2.55 ounce (pack of 1)"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZYJANL", "worker_id": "ARQ05PDNXPFDI"}], "B09P8B2L8V": [{"asin": "B09P8B2L8V", "instruction": "i am looking women hairpiece of 80cm size that are of high quality and easy to use.", "attributes": ["easy use", "high quality", "hair extensions", "natural hair"], "options": ["color: 41", "size: 80cm"], "instruction_attributes": ["easy use", "high quality"], "instruction_options": ["80cm"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UHHPIQY", "worker_id": "A1Q8PPQQCWGY0D"}], "B07BL31V9T": [{"asin": "B07BL31V9T", "instruction": "i need to buy some work shoes with a slip resistant rubber sole. i want them in gray, size nine wide.", "attributes": ["slip resistant", "rubber sole"], "options": ["color: gray | royal", "size: 9 wide"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["gray | royal", "9 wide"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6US71GW", "worker_id": "AR9AU5FY1S3RO"}], "B097XWJ1KM": [{"asin": "B097XWJ1KM", "instruction": "i need a super soft twin throw that is multicolored", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 15", "size: twin"], "instruction_attributes": ["super soft"], "instruction_options": ["multi 15", "twin"], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIPY581", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SGQZHP4": [{"asin": "B09SGQZHP4", "instruction": "i would like an intel core desktop that has 32gb of ram and 2tb of storage.", "attributes": ["core i5", "intel core"], "options": ["size: 32gb | 1tb ssd + 1tb hdd", "style: windows 10 home"], "instruction_attributes": ["intel core"], "instruction_options": ["32gb | 1tb ssd + 1tb hdd"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4LR986", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RGXDVCV": [{"asin": "B07RGXDVCV", "instruction": "i am interested in buying a demi-permanent hair color which is neon red, and that i can apply easily, also i want it to be cruelty free product.", "attributes": ["long lasting", "easy apply", "cruelty free", "high quality", "hair dye", "permanent hair", "hair treatment", "natural hair", "dry hair"], "options": ["color: neon red"], "instruction_attributes": ["easy apply", "cruelty free"], "instruction_options": ["neon red"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUAIA94", "worker_id": "AJY5G987IRT25"}], "B09SQ5RK1H": [{"asin": "B09SQ5RK1H", "instruction": "i would like a 6 pack of easy to prepare breakfast foods.", "attributes": ["protein serving", "easy prepare"], "options": ["size: 6 - pack"], "instruction_attributes": ["easy prepare"], "instruction_options": ["6 - pack"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8DJA5V", "worker_id": "A1WS884SI0SLO4"}], "B07WNVTV22": [{"asin": "B07WNVTV22", "instruction": "i would like a a monocular for bird watching.", "attributes": ["easy carry", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C89PH6", "worker_id": "A1WS884SI0SLO4"}], "B09FJT52MT": [{"asin": "B09FJT52MT", "instruction": "i am looking for a fits round tables up to 42 diameter size of machine washable tablecloths", "attributes": ["machine washable", "easy clean"], "options": ["color: orange light brown white 3087", "size: fits round tables up to 42 diameter"], "instruction_attributes": ["machine washable"], "instruction_options": ["fits round tables up to 42 diameter"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPG1JWTY", "worker_id": "A9QRQL9CFJBI7"}], "B01L0VIN8S": [{"asin": "B01L0VIN8S", "instruction": "i would like a aluminum alloy high speed coaxial tip.", "attributes": ["high speed", "aluminum alloy"], "options": [""], "instruction_attributes": ["high speed", "aluminum alloy"], "instruction_options": [], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN2HTPX", "worker_id": "A1WS884SI0SLO4"}], "B09D9RXRPG": [{"asin": "B09D9RXRPG", "instruction": "i want the pinole project high protein oatmeal.", "attributes": ["high protein", "freeze dried", "gluten free", "non gmo"], "options": [""], "instruction_attributes": ["high protein"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPDFDQR", "worker_id": "A2RBF3IIJP15IH"}], "B083ZRCCXD": [{"asin": "B083ZRCCXD", "instruction": "i need a wall sconce with two lights in brushed nickel.", "attributes": ["brushed nickel", "nickel finish"], "options": ["color: brushed nickel", "size: 2-light"], "instruction_attributes": ["brushed nickel", "nickel finish"], "instruction_options": ["brushed nickel", "2-light"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDQJHRC", "worker_id": "AR9AU5FY1S3RO"}], "B000UD3XJC": [{"asin": "B000UD3XJC", "instruction": "i would like to buy a slip resistant women's clog having rubber sole in size 11.", "attributes": ["slip resistant", "rubber sole"], "options": ["size: 11"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["11"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z19O1KZ", "worker_id": "A3AYHESLQSDY5T"}], "B078JHLSWT": [{"asin": "B078JHLSWT", "instruction": "i need a blue body brush for dry skin.", "attributes": ["non slip", "long handle", "dry skin"], "options": ["color: blue"], "instruction_attributes": ["dry skin"], "instruction_options": ["blue"], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOSCVYL", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Z7DBGLZ": [{"asin": "B07Z7DBGLZ", "instruction": "i need a classic fit t-shirt . and i would prefer medium size with purple color", "attributes": ["needle sleeve", "classic fit"], "options": ["color: purple", "fit type: youth", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["purple", "medium"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMS5BQK", "worker_id": "A2COCSUGZV28X"}], "B07SBXXH9Y": [{"asin": "B07SBXXH9Y", "instruction": "i want to buy an easy to use plug and play usb flash drive in black. get the 512 megabyte size.", "attributes": ["plug play", "easy use"], "options": ["color: black", "size: 512mb"], "instruction_attributes": ["plug play"], "instruction_options": ["black", "512mb"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IKY2MN", "worker_id": "AR9AU5FY1S3RO"}], "B01GS1BOK4": [{"asin": "B01GS1BOK4", "instruction": "for home furnishing, i need a rectangular rug in ivory grey color, measuring 11ft x 15ft.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: ivory | grey", "item shape: rectangular", "size: 11 ft x 15 ft"], "instruction_attributes": ["home furnishings"], "instruction_options": ["ivory | grey", "rectangular", "11 ft x 15 ft"], "assignment_id": "3X08E93BH6SOX0PZ3ET8Y3TY8PV668", "worker_id": "ASWFLI3N8X72G"}], "B09Q35XGYF": [{"asin": "B09Q35XGYF", "instruction": "i would like a white twin sized bunk bed with a wood frame.", "attributes": ["twin size", "white item", "easy assemble", "wood frame", "box spring"], "options": ["color: white", "size: twin bunk beds"], "instruction_attributes": ["twin size", "white item", "wood frame"], "instruction_options": ["white", "twin bunk beds"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E8THXZ", "worker_id": "A1WS884SI0SLO4"}], "B09J52HRL8": [{"asin": "B09J52HRL8", "instruction": "i am looking for a high quality trolley cart for a beauty salon, which is in 4tier size.", "attributes": ["high quality", "beauty salon"], "options": ["size: 4tier"], "instruction_attributes": ["high quality", "beauty salon"], "instruction_options": ["4tier"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HVMBPU", "worker_id": "A2HMEGTAFO0CS8"}], "B07X1YS8D7": [{"asin": "B07X1YS8D7", "instruction": "looking for long lasting string curtain window choose colour yellow", "attributes": ["long lasting", "exquisite workmanship"], "options": ["color: yellow"], "instruction_attributes": ["long lasting"], "instruction_options": ["yellow"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V6ZU25", "worker_id": "A10OGH5CQBXL5N"}], "B09LTSRLBX": [{"asin": "B09LTSRLBX", "instruction": "i need 2 pieces anti aging ice face roller gua sha", "attributes": ["anti aging", "long lasting", "green tea", "fine lines"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZK48OA", "worker_id": "A1IL2K0ELYI090"}], "B08XZ7N4NL": [{"asin": "B08XZ7N4NL", "instruction": "i would like some eco friendly nail cleaning brushes.", "attributes": ["eco friendly", "non slip", "dead skin"], "options": [""], "instruction_attributes": ["eco friendly"], "instruction_options": [], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP841Z7G", "worker_id": "A1WS884SI0SLO4"}], "B09HZYGRM9": [{"asin": "B09HZYGRM9", "instruction": "i'm looking for a digital power amplifier board that's high performance and has stereo sound.", "attributes": ["power amplifier", "high performance", "stereo sound"], "options": [""], "instruction_attributes": ["power amplifier", "high performance", "stereo sound"], "instruction_options": [], "assignment_id": "37UQDCYH685SGQI5NW68G99TKT07VT", "worker_id": "AR9AU5FY1S3RO"}], "B0918MVYBC": [{"asin": "B0918MVYBC", "instruction": "i'm looking for a mini pc intel core desktop computer which supports with windows 11.", "attributes": ["intel core", "core i5", "quad core"], "options": ["size: i5-10210u 16gb ddr4 +512g nvme ssd+wifi6"], "instruction_attributes": ["intel core"], "instruction_options": ["i5-10210u 16gb ddr4 +512g nvme ssd+wifi6"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI3C2DB1", "worker_id": "A21IUUHBSEVB56"}], "B09MLY7B9D": [{"asin": "B09MLY7B9D", "instruction": "i would like a pair of small purple jogging pants that are for the gym.", "attributes": ["fleece lined", "drawstring closure", "elastic waist", "polyester spandex", "gym workout"], "options": ["color: purple", "size: small"], "instruction_attributes": ["gym workout"], "instruction_options": ["purple", "small"], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZ2KNCI", "worker_id": "A1WS884SI0SLO4"}], "B09JSWXSBZ": [{"asin": "B09JSWXSBZ", "instruction": "i would like a living room poster that is 16 by 20 inches", "attributes": ["dining room", "living room"], "options": ["color: 052 cow", "size: 16x20 inch"], "instruction_attributes": ["living room"], "instruction_options": ["16x20 inch"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WBFOUP", "worker_id": "A2ECRNQ3X5LEXD"}], "B075G3RJDZ": [{"asin": "B075G3RJDZ", "instruction": "i want lubriderm fragrance free body lotion for dry skin", "attributes": ["fragrance free", "clinically proven", "dry skin"], "options": [""], "instruction_attributes": ["fragrance free", "dry skin"], "instruction_options": [], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU9I9A1", "worker_id": "A1V2C99HEV3F14"}], "B09MNHMGJK": [{"asin": "B09MNHMGJK", "instruction": "i need a pink dust-proof cover for my fire stick tv remote.", "attributes": ["non slip", "dust proof"], "options": ["color: pink"], "instruction_attributes": ["dust proof"], "instruction_options": ["pink"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E23753A", "worker_id": "AR9AU5FY1S3RO"}], "B09PPF15NX": [{"asin": "B09PPF15NX", "instruction": "i would like a high speed wireless charging station for my iphone.", "attributes": ["compatible apple", "fast charging", "high speed", "wireless charging"], "options": [""], "instruction_attributes": ["compatible apple", "high speed", "wireless charging"], "instruction_options": [], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH3WH65", "worker_id": "A1WS884SI0SLO4"}], "B0873WY5YG": [{"asin": "B0873WY5YG", "instruction": "i would like a sky blue 12 inch throw pillow for my living room.", "attributes": ["machine washable", "exquisite workmanship", "living room"], "options": ["color: sky blue", "size: 12 inch (pack of 1)"], "instruction_attributes": ["living room"], "instruction_options": ["sky blue", "12 inch (pack of 1)"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8HQR53", "worker_id": "A1WS884SI0SLO4"}], "B09NNV93GR": [{"asin": "B09NNV93GR", "instruction": "i am looking for a body brush for dead skin.", "attributes": ["double sided", "long handle", "dead skin"], "options": ["color: blue"], "instruction_attributes": ["dead skin"], "instruction_options": ["blue"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7ZZ5PM", "worker_id": "A2ECRNQ3X5LEXD"}], "B07D7N4QB8": [{"asin": "B07D7N4QB8", "instruction": "i would like to buy a white colored easy to assemble book case for my living room.", "attributes": ["assembly required", "easy clean", "easy assemble", "exquisite workmanship", "storage space"], "options": ["color: white", "size: 5-shelf(33\"w*11.6\"d*59.8\"h)"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC6WNIA", "worker_id": "AHXHM1PQTRWIQ"}], "B09NX3SMLB": [{"asin": "B09NX3SMLB", "instruction": "i'm looking for computer accessories its easy to use it can install at any", "attributes": ["dual band", "high definition"], "options": [""], "instruction_attributes": ["dual band", "high definition"], "instruction_options": [], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HGHI65", "worker_id": "A16IQOX0DK14OJ"}], "B09RHVVMJM": [{"asin": "B09RHVVMJM", "instruction": "i'm looking for groceries for great gift and gift basket.", "attributes": ["great gift", "gift basket"], "options": [""], "instruction_attributes": ["great gift", "gift basket"], "instruction_options": [], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOF2NOC", "worker_id": "A16IQOX0DK14OJ"}], "B0888H96Q8": [{"asin": "B0888H96Q8", "instruction": "i would like a slim fit black tank that is in a medium", "attributes": ["machine washable", "slim fit", "cotton spandex", "polyester cotton"], "options": ["color: e-black", "size: medium"], "instruction_attributes": ["slim fit"], "instruction_options": ["e-black", "medium"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4PDPKA", "worker_id": "A2ECRNQ3X5LEXD"}], "B081FWD6Q3": [{"asin": "B081FWD6Q3", "instruction": "i need some vanity lights that are brushed nickel", "attributes": ["brushed nickel", "nickel finish", "vanity light"], "options": ["color: brushed nickel", "size: 3 light chandelier"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["brushed nickel"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KRQLJP", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PFGVTGM": [{"asin": "B09PFGVTGM", "instruction": "order for me a black marvel men\u2019s t shirt that is made of cotton heather.", "attributes": ["officially licensed", "wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: black", "fit type: men", "size: x-small"], "instruction_attributes": ["cotton heather"], "instruction_options": ["black", "men"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYFS82O", "worker_id": "AHU9OLV0YKIIW"}], "B09QC7GZZC": [{"asin": "B09QC7GZZC", "instruction": "i am looking for pink color electric tooth brush which is easy to use", "attributes": ["easy use", "fresh breath"], "options": ["color: pink"], "instruction_attributes": ["easy use"], "instruction_options": ["pink"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRS9QUE8", "worker_id": "A16M39T60N60NO"}], "B09LHKTXH2": [{"asin": "B09LHKTXH2", "instruction": "i am looking for a 47 piece farm animal cake topper set for a birthday cake, we are having a birthday party.", "attributes": ["birthday cake", "party supplies", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["birthday cake", "party supplies", "birthday party"], "instruction_options": [], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3UEZ9H", "worker_id": "A2KW17G25L25R8"}], "B06VSXQXPX": [{"asin": "B06VSXQXPX", "instruction": "i would like a blue mk desk and chair that is height adjustable.", "attributes": ["height adjustable", "lead free"], "options": ["color: blue desk only", "size: mk desk + chair"], "instruction_attributes": ["height adjustable"], "instruction_options": ["blue desk only", "mk desk + chair"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V6U2U8", "worker_id": "A1WS884SI0SLO4"}], "B08HJ9X29W": [{"asin": "B08HJ9X29W", "instruction": "i want a twin size box spring bed for kids color black", "attributes": ["twin size", "box spring"], "options": ["color: black"], "instruction_attributes": ["twin size", "box spring"], "instruction_options": ["black"], "assignment_id": "37TRT2X24116R7L1JO45INKV8WSJBE", "worker_id": "A3N9ZYQAESNFQH"}], "B09KQ6TQY5": [{"asin": "B09KQ6TQY5", "instruction": "i want plant based gluten free protein serving burgers & patties size ;5- pack", "attributes": ["plant based", "protein serving", "gluten free"], "options": ["size: 5 - pack"], "instruction_attributes": ["plant based", "protein serving", "gluten free"], "instruction_options": ["5 - pack"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJOQW0M", "worker_id": "A3N9ZYQAESNFQH"}], "B08VND52S2": [{"asin": "B08VND52S2", "instruction": "i would like a floor lamp for my living room.", "attributes": ["glass shade", "contemporary style", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907UYAUZ", "worker_id": "A1WS884SI0SLO4"}], "B08BJVJG1S": [{"asin": "B08BJVJG1S", "instruction": "i'm looking for men hair removal cream.", "attributes": ["easy use", "hair removal", "sensitive skin"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH3FH6O", "worker_id": "ARQ05PDNXPFDI"}], "B0945BPCZL": [{"asin": "B0945BPCZL", "instruction": "i am looking for variety pack sparkling water that is soy and gluten free.", "attributes": ["soy free", "gluten free", "natural ingredients", "natural flavors"], "options": ["flavor name: variety pack", "size: 12 fl oz (pack of 12)"], "instruction_attributes": ["soy free", "gluten free"], "instruction_options": ["variety pack"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z198K12", "worker_id": "A1Q8PPQQCWGY0D"}], "B08F5MXVYL": [{"asin": "B08F5MXVYL", "instruction": "i need to buy a sky blue fire tablet for a child. it should have a 1080p screen and a blue tooth keyboard.", "attributes": ["1080p hd", "usb port"], "options": ["color: sky blue", "style: with kids bluetooth keyboard"], "instruction_attributes": ["1080p hd"], "instruction_options": ["sky blue", "with kids bluetooth keyboard"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66SOZFO", "worker_id": "AR9AU5FY1S3RO"}], "B09NNXGRHX": [{"asin": "B09NNXGRHX", "instruction": "i would like a medium sized black women's top with long sleeves.", "attributes": ["long sleeve", "short sleeve", "cotton spandex", "teen girls"], "options": ["color: z91-black", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["z91-black", "medium"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WX61AW", "worker_id": "A1WS884SI0SLO4"}], "B08P7MN5VS": [{"asin": "B08P7MN5VS", "instruction": "i am looking for an easy to assemble bunk bed full over twin trundle would like gray in color.", "attributes": ["twin size", "heavy duty", "space saving", "easy assemble", "box spring", "solid wood"], "options": ["color: white", "size: twin with headboard trundle"], "instruction_attributes": ["easy assemble", "solid wood"], "instruction_options": ["twin with headboard trundle"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7Y5URA", "worker_id": "A2KW17G25L25R8"}], "B07VL8Z6V9": [{"asin": "B07VL8Z6V9", "instruction": "i'm looking for a pendant light with brushed nickel finish. choose the ones in antique gold color.", "attributes": ["pendant light", "nickel finish", "brushed nickel", "dining room", "living room"], "options": ["color: antique gold"], "instruction_attributes": ["pendant light", "nickel finish", "brushed nickel"], "instruction_options": ["antique gold"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7X1YTZS", "worker_id": "A3MNXK3VDK37SN"}], "B09GJZZDQP": [{"asin": "B09GJZZDQP", "instruction": "i want silver and noise cancelling earbuds.", "attributes": ["noise cancelling", "stereo sound"], "options": ["color: white-silver"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["white-silver"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79L9QKC", "worker_id": "A2RBF3IIJP15IH"}], "B0932PMPM2": [{"asin": "B0932PMPM2", "instruction": "i need four mid century green chairs", "attributes": ["height adjustable", "mid century", "metal legs"], "options": ["color: 26\" green", "size: 4 chairs"], "instruction_attributes": ["mid century"], "instruction_options": ["26\" green", "4 chairs"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVINP1F", "worker_id": "A2ECRNQ3X5LEXD"}], "B00WR97BC2": [{"asin": "B00WR97BC2", "instruction": "i would like a yellow 6\" around area rug that is easy to clean.", "attributes": ["spot clean", "easy clean"], "options": ["color: yellow", "size: 6' round"], "instruction_attributes": ["easy clean"], "instruction_options": ["yellow", "6' round"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDUVQZ7", "worker_id": "A1WS884SI0SLO4"}], "B08HGQ484X": [{"asin": "B08HGQ484X", "instruction": "i am looking for steel frame night stand with white finish", "attributes": ["assembly required", "steel frame", "white finish"], "options": ["color: white | gray"], "instruction_attributes": ["steel frame", "white finish"], "instruction_options": ["white | gray"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS4PVUB", "worker_id": "A16M39T60N60NO"}], "B08JCFL127": [{"asin": "B08JCFL127", "instruction": "i would like a cookies gift basket.", "attributes": ["ready eat", "individually wrapped", "gift basket", "perfect gift", "gift set"], "options": ["style: cookies, vanilla halva,cream crackers, orino sesame pasteli"], "instruction_attributes": ["gift basket"], "instruction_options": ["cookies, vanilla halva,cream crackers, orino sesame pasteli"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N23ZG6L", "worker_id": "A1WS884SI0SLO4"}], "B0837SDRNN": [{"asin": "B0837SDRNN", "instruction": "i need an easy to assemble coat rack.", "attributes": ["easy assemble", "storage space"], "options": [""], "instruction_attributes": ["easy assemble"], "instruction_options": [], "assignment_id": "326O153BMT8RVOXTJJKKGXV369YDEK", "worker_id": "AR9AU5FY1S3RO"}], "B09J53L7VT": [{"asin": "B09J53L7VT", "instruction": "i would like a 9 card slots zipper dark green phone flip case cover.", "attributes": ["hands free", "case cover"], "options": ["color: 9 card slots zipper dark green"], "instruction_attributes": ["case cover"], "instruction_options": ["9 card slots zipper dark green"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841CHAXT", "worker_id": "A1WS884SI0SLO4"}], "B0999KX9M6": [{"asin": "B0999KX9M6", "instruction": "can i get an open toe eduavar flat casual sandals for women, size 6.5-7", "attributes": ["open toe", "knee high", "non slip", "memory foam", "high heel", "closed toe", "arch support"], "options": ["color: z2-brown", "size: 6.5-7"], "instruction_attributes": ["open toe"], "instruction_options": ["6.5-7"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7X1GTZA", "worker_id": "A1IL2K0ELYI090"}], "B01FUI7H4I": [{"asin": "B01FUI7H4I", "instruction": "i would like a 400 lb bulk bag of certified organic gluten free oatmeal.", "attributes": ["gluten free", "protein serving", "certified organic"], "options": ["size: 400 ounce (pack of 1)", "style: bulk bag"], "instruction_attributes": ["gluten free", "certified organic"], "instruction_options": ["400 ounce (pack of 1)", "bulk bag"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMKNJ1H", "worker_id": "A1WS884SI0SLO4"}], "B00LX0HPV8": [{"asin": "B00LX0HPV8", "instruction": "i am looking for long sleeve shirt in smoke grey", "attributes": ["polyester cotton", "long sleeve"], "options": ["color: smoke grey", "size: x-large short"], "instruction_attributes": ["long sleeve"], "instruction_options": ["smoke grey"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMR6WMC", "worker_id": "A2MSIFDLOHI1UT"}], "B09H7D62DM": [{"asin": "B09H7D62DM", "instruction": "i am looking for a fully cooked chicken & turkey", "attributes": ["fully cooked", "0g trans"], "options": [""], "instruction_attributes": ["fully cooked"], "instruction_options": [], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2U5M5O", "worker_id": "A9QRQL9CFJBI7"}], "B07TL67TQ7": [{"asin": "B07TL67TQ7", "instruction": "i am looking for an olive machine washable t shirt for youth that is in a xx-large", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: olive", "fit type: youth", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["olive", "youth", "xx-large"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSL12QG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08CV5HKHD": [{"asin": "B08CV5HKHD", "instruction": "i need a black tank top that is classic fit.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: men", "size: xx-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["black"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOFEATT", "worker_id": "A15ERD4HOFEPHM"}], "B08V1J8S36": [{"asin": "B08V1J8S36", "instruction": "i'm looking for a small straight leg women athletic yoga shorts.", "attributes": ["hand wash", "straight leg", "machine wash", "elastic waistband", "cotton spandex"], "options": ["color: 5\"light grey", "size: small"], "instruction_attributes": ["straight leg"], "instruction_options": ["small"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI773ZG2", "worker_id": "ARQ05PDNXPFDI"}], "B07C9HG46D": [{"asin": "B07C9HG46D", "instruction": "i'm looking for high heels shoes for women men it is easy to wear.", "attributes": ["leather sole", "rubber sole"], "options": ["color: navy suede", "size: 14"], "instruction_attributes": ["leather sole"], "instruction_options": ["navy suede"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1HP08D", "worker_id": "A16IQOX0DK14OJ"}], "B00I47QQ9U": [{"asin": "B00I47QQ9U", "instruction": "i am looking for a citron scent deodorant that is non toxic and cruelty free.", "attributes": ["non toxic", "cruelty free"], "options": ["scent: citron", "size: 2 x 2 fl oz"], "instruction_attributes": ["non toxic", "cruelty free"], "instruction_options": ["citron"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACTPNHP", "worker_id": "A1Q8PPQQCWGY0D"}], "B081TX8J78": [{"asin": "B081TX8J78", "instruction": "i need my large dress by machine wash", "attributes": ["machine wash", "dry clean"], "options": ["color: 1109 grey", "size: large"], "instruction_attributes": ["machine wash"], "instruction_options": ["large"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXOQZ2B", "worker_id": "A226L9F2AZ38CL"}], "B0842NKZ44": [{"asin": "B0842NKZ44", "instruction": "i need a heavy duty, height adjustable office chair in pink color", "attributes": ["height adjustable", "high density", "heavy duty", "lumbar support"], "options": ["color: pink"], "instruction_attributes": ["height adjustable", "heavy duty"], "instruction_options": ["pink"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21P7FQE", "worker_id": "ASWFLI3N8X72G"}], "B09LH2827W": [{"asin": "B09LH2827W", "instruction": "i want a easy install roller sades window tretment size w45*h56 in color pastel blue", "attributes": ["easy install", "living room"], "options": ["color: 07.pastel_blue", "size: w45 x h56 (inch)"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["07.pastel_blue", "w45 x h56 (inch)"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7ZZP56", "worker_id": "A3N9ZYQAESNFQH"}], "B07L6Y8C6Q": [{"asin": "B07L6Y8C6Q", "instruction": "i would like a forest green wireless bluetooth speaker.", "attributes": ["carrying case", "wireless bluetooth"], "options": ["color: forest green"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["forest green"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCQRBME", "worker_id": "A1WS884SI0SLO4"}], "B07RTJ5ZLR": [{"asin": "B07RTJ5ZLR", "instruction": "i would like a 24 inch black barstool that is fully assembled.", "attributes": ["fully assembled", "heavy duty", "space saving"], "options": ["color: black", "size: 24 inch"], "instruction_attributes": ["fully assembled"], "instruction_options": ["black", "24 inch"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1CA9UD", "worker_id": "A1WS884SI0SLO4"}], "B01CQD0DC8": [{"asin": "B01CQD0DC8", "instruction": "i would like a high performance label printer.", "attributes": ["light weight", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDP15KT", "worker_id": "A1WS884SI0SLO4"}], "B07NXW1VQP": [{"asin": "B07NXW1VQP", "instruction": "get me a machine washable men's classic fit star wars t-shirt in medium size and royal blue color.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: royal blue", "fit type: men", "size: medium"], "instruction_attributes": ["machine wash", "classic fit", "star wars"], "instruction_options": ["royal blue", "men", "medium"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4FZL86", "worker_id": "A3AYHESLQSDY5T"}], "B003Q4TPAI": [{"asin": "B003Q4TPAI", "instruction": "i'm looking for usda organic and gluten free chai tea that is caffeine and sugar free and also has natural ingredients. it also should be matcha latte flavor.", "attributes": ["caffeine free", "usda organic", "sugar free", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: matcha latte", "size: 20 count (pack of 6)"], "instruction_attributes": ["caffeine free", "usda organic", "sugar free", "gluten free", "natural ingredients"], "instruction_options": ["matcha latte", "20 count (pack of 6)"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0WZ5WE", "worker_id": "A34EHWOYRBL6OZ"}], "B00RWV58J8": [{"asin": "B00RWV58J8", "instruction": "look for butter pasta noodles with no artificial flavors.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: butter pasta", "size: 4.2 ounce (pack of 1)"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["butter pasta"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VT1MXK", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B00RWV58J8", "instruction": "i am looking for an easy to prepare thai sweet chili lo mein flavored pasta.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: thai sweet chili lo mein", "size: 4.3 ounce (pack of 1)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["thai sweet chili lo mein"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLZTDR4", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00RWV58J8", "instruction": "i am looking for knorr pasta sides cheddar broccoli that is easy to prepare and in a 12 pack of the butter and herb flavor.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: butter & herb", "size: pack of 12"], "instruction_attributes": ["easy prepare"], "instruction_options": ["butter & herb"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5Y1W3QR", "worker_id": "AK3JMCIGU8MLU"}], "B084DF85Q2": [{"asin": "B084DF85Q2", "instruction": "i need some perfume that is long lasting and smells like a rainy day", "attributes": ["design house", "long lasting", "fine mist"], "options": ["scent: rain day"], "instruction_attributes": ["long lasting"], "instruction_options": ["rain day"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WZIF7J", "worker_id": "A2ECRNQ3X5LEXD"}], "B07FZYHJGT": [{"asin": "B07FZYHJGT", "instruction": "i am looking for snow boots rubber sole in 6-blue", "attributes": ["water resistant", "long lasting", "light weight", "non slip", "rubber sole", "faux fur"], "options": ["color: 6-blue", "size: 6"], "instruction_attributes": ["rubber sole"], "instruction_options": ["6-blue"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3OHLZM", "worker_id": "A2MSIFDLOHI1UT"}], "B07Z8QGSHR": [{"asin": "B07Z8QGSHR", "instruction": "i'm looking for a womens large lightweight jacket that has soft material and faux fur it should also be red plaid colored.", "attributes": ["winter warm", "soft material", "faux fur"], "options": ["color: p-red plaid", "size: large"], "instruction_attributes": ["soft material", "faux fur"], "instruction_options": ["p-red plaid", "large"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NPFP2C", "worker_id": "A34EHWOYRBL6OZ"}], "B081MCMXSN": [{"asin": "B081MCMXSN", "instruction": "i am looking for a new balance men's sneaker for daily comfort.", "attributes": ["day comfort", "synthetic sole", "rubber outsole"], "options": ["color: lead | workwear | angora", "size: 18 wide"], "instruction_attributes": ["day comfort"], "instruction_options": ["18 wide"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWE1NFG", "worker_id": "A2KW17G25L25R8"}], "B07RZP1S1R": [{"asin": "B07RZP1S1R", "instruction": "i'm looking for a royal blue star wars t-shirt in a youth size double x large. it needs to be machine washable.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: royal blue", "fit type: youth", "size: xx-large"], "instruction_attributes": ["machine wash", "star wars"], "instruction_options": ["royal blue", "youth", "xx-large"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1ORITF", "worker_id": "AR9AU5FY1S3RO"}], "B07P2YQDS3": [{"asin": "B07P2YQDS3", "instruction": "i am looking for 450 mocha color face makeup that is oil free.", "attributes": ["oil free", "fragrance free", "long lasting"], "options": ["color: 450 mocha"], "instruction_attributes": ["oil free"], "instruction_options": ["450 mocha"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMXIASO", "worker_id": "A1Q8PPQQCWGY0D"}], "B09M6NL5F7": [{"asin": "B09M6NL5F7", "instruction": "i would like a pair of wireless bluetooth earbud headphones.", "attributes": ["hands free", "easy use", "stereo sound", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWT1H97F", "worker_id": "A1WS884SI0SLO4"}], "B07MV5B2XB": [{"asin": "B07MV5B2XB", "instruction": "i need a single light brown hair inch extension that's twenty inches long and made from synthetic fibers.", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: light golden brown", "size: 20 inch (pack of 1)"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": ["light golden brown", "20 inch (pack of 1)"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGQ8YIJ", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B07MV5B2XB", "instruction": "i would like a 18 inch wig that is made of natural blonde synthetic hair.", "attributes": ["hair extensions", "synthetic hair", "dry hair"], "options": ["color: natural blonde", "size: 18 inch (pack of 1)"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["natural blonde", "18 inch (pack of 1)"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3YHQ78", "worker_id": "A1WS884SI0SLO4"}], "B096NGXFM5": [{"asin": "B096NGXFM5", "instruction": "i am looking for vintage style pendant light for a living room", "attributes": ["pendant light", "dining room", "living room"], "options": ["size: a style"], "instruction_attributes": ["pendant light", "living room"], "instruction_options": ["a style"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V6Y2UC", "worker_id": "A16M39T60N60NO"}], "B0792QVCH8": [{"asin": "B0792QVCH8", "instruction": "i'm looking for some antiperspirant for sensitive skin.", "attributes": ["anti perspirant", "sensitive skin"], "options": [""], "instruction_attributes": ["anti perspirant", "sensitive skin"], "instruction_options": [], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZZ1ZJN", "worker_id": "AR9AU5FY1S3RO"}], "B095YJJ79K": [{"asin": "B095YJJ79K", "instruction": "i am looking for some grey anti slip flats that are 8.5 in size.", "attributes": ["anti slip", "rubber sole"], "options": ["color: 7006-211 grey flats", "size: 8.5"], "instruction_attributes": ["anti slip"], "instruction_options": ["7006-211 grey flats", "8.5"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA932OZ3K", "worker_id": "A2ECRNQ3X5LEXD"}], "B085NW4CKC": [{"asin": "B085NW4CKC", "instruction": "looking for heavy duty wooden frame barstools also choose colour brown", "attributes": ["heavy duty", "faux leather", "wood frame"], "options": ["color: brown", "pattern name: bar stools + bench 19 inch"], "instruction_attributes": ["heavy duty", "wood frame"], "instruction_options": ["brown"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35PSUGC", "worker_id": "A10OGH5CQBXL5N"}], "B000GW67G8": [{"asin": "B000GW67G8", "instruction": "i need to buy some fat free jerky. make it sweet & hot.", "attributes": ["fat free", "high protein"], "options": ["flavor name: sweet & hot", "size: 3.25 ounce (pack of 4)"], "instruction_attributes": ["fat free"], "instruction_options": ["sweet & hot"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3MSRYH", "worker_id": "A15ERD4HOFEPHM"}], "B09BJL1232": [{"asin": "B09BJL1232", "instruction": "i would like a black heavy duty hair cutting kit.", "attributes": ["heavy duty", "easy carry", "hair cutting"], "options": ["size: black"], "instruction_attributes": ["heavy duty", "hair cutting"], "instruction_options": ["black"], "assignment_id": "3DY46V3X30SWVSP7TC9YER1YGZZ551", "worker_id": "A1WS884SI0SLO4"}], "B078Z6T13T": [{"asin": "B078Z6T13T", "instruction": "i am looking for a cargo pant made up of polyester cotton which is washable in machine. also choose coyote brown color and 36w x 32l size.", "attributes": ["machine wash", "cotton spandex", "polyester cotton", "elastic waistband"], "options": ["color: coyote brown", "size: 36w x 32l"], "instruction_attributes": ["machine wash", "polyester cotton"], "instruction_options": ["coyote brown", "36w x 32l"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTR74V3", "worker_id": "A2HMEGTAFO0CS8"}], "B094ZQ4WXZ": [{"asin": "B094ZQ4WXZ", "instruction": "i need some easy to install cellular shades that have beige-light filtering and are a size 61\"w by 72\"h", "attributes": ["easy install", "living room"], "options": ["color: beige-light filtering", "size: 61\"w x 72\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["beige-light filtering", "61\"w x 72\"h"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1OKTIJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07T8PZWQT": [{"asin": "B07T8PZWQT", "instruction": "i need some size ten and a half clogs with arch support and a rubber sole. find them in black.", "attributes": ["day comfort", "arch support", "rubber outsole", "rubber sole"], "options": ["color: black", "size: 10.5"], "instruction_attributes": ["arch support", "rubber sole"], "instruction_options": ["black", "10.5"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDQFHR8", "worker_id": "AR9AU5FY1S3RO"}], "B073SYSBTG": [{"asin": "B073SYSBTG", "instruction": "i am looking for petrol blue. coastal themed drapes that are machine washable.", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: petrol blue", "size: 55\" x 39\""], "instruction_attributes": ["machine washable"], "instruction_options": ["petrol blue"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK9EVN3", "worker_id": "AK3JMCIGU8MLU"}], "B07PXNPMVL": [{"asin": "B07PXNPMVL", "instruction": "i'm looking for nickel finish is for ceiling fan its living room.", "attributes": ["brushed nickel", "nickel finish", "vanity light", "clear glass"], "options": ["color: gold", "size: 6\"w x 6\"d x 13\"h"], "instruction_attributes": ["nickel finish"], "instruction_options": ["gold"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7QROBR", "worker_id": "A16IQOX0DK14OJ"}], "B07MF241KR": [{"asin": "B07MF241KR", "instruction": "i'm looking for low rise in skinny leg in women's", "attributes": ["low rise", "hand wash", "imported zipper", "relaxed fit"], "options": ["color: exgm set sail", "size: 34w x 34l"], "instruction_attributes": ["low rise"], "instruction_options": ["exgm set sail"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OU3POA", "worker_id": "A16IQOX0DK14OJ"}], "B0828QN4TX": [{"asin": "B0828QN4TX", "instruction": "im looking for a synthetic hair ponytail extension in the color ginger brown.", "attributes": ["easy use", "high quality", "synthetic hair"], "options": ["color: ginger brown", "size: 3 pcs"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["ginger brown"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2P2NYO", "worker_id": "AK3JMCIGU8MLU"}], "B09984L72W": [{"asin": "B09984L72W", "instruction": "i would like two lights gold wall mounted vanity light.", "attributes": ["wall mounted", "vanity light", "light fixture", "clear glass", "glass shade", "living room"], "options": ["color: 2 lights gold"], "instruction_attributes": ["wall mounted", "vanity light"], "instruction_options": ["2 lights gold"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H6L8UG", "worker_id": "A1WS884SI0SLO4"}], "B078PL897H": [{"asin": "B078PL897H", "instruction": "i need a box spring california king mattress", "attributes": ["ready use", "fully assembled", "assembly required", "box spring", "king size"], "options": ["size: california king", "style name: 4\" foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["california king"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R7GYTS", "worker_id": "A2ECRNQ3X5LEXD"}], "B01JAXJ5DA": [{"asin": "B01JAXJ5DA", "instruction": "i need to buy some moisturizer that's good for fine lines and has anti-aging properties. find some that's paraben free and cruelty free. it should contain natural ingredients.", "attributes": ["anti aging", "paraben free", "cruelty free", "natural ingredients", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "paraben free", "cruelty free", "natural ingredients", "fine lines"], "instruction_options": [], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTQXV4I", "worker_id": "AR9AU5FY1S3RO"}], "B08Y79GX45": [{"asin": "B08Y79GX45", "instruction": "i'm looking for a night fishing wall art picasso for living room in size 31\"x24\"", "attributes": ["ready hang", "living room"], "options": ["color: night fishing", "size: 31\"w x 24\"h"], "instruction_attributes": ["living room"], "instruction_options": ["night fishing", "31\"w x 24\"h"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1DFGY8", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B08Y79GX45", "instruction": "i would like a 47\"w x 31\"h joie de vivre poster for my living room.", "attributes": ["ready hang", "living room"], "options": ["color: joie-de-vivre", "size: 47\"w x 31\"h"], "instruction_attributes": ["living room"], "instruction_options": ["joie-de-vivre", "47\"w x 31\"h"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI70TQYI", "worker_id": "A1WS884SI0SLO4"}], "B07V5J4494": [{"asin": "B07V5J4494", "instruction": "i am looking for hd quad core 10.1\" android tablet with 16gb storage capacity and alexa enabled charging dock", "attributes": ["hands free", "quad core"], "options": ["pattern name: tablet + laptop sleeve", "size: 2gb | 16gb", "style: m10"], "instruction_attributes": ["quad core"], "instruction_options": ["2gb | 16gb"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKTESG3", "worker_id": "A258PTOZ3D2TQR"}], "B093KPKTBG": [{"asin": "B093KPKTBG", "instruction": "im looking for 1 small and 1 medium mesh laundry bags made specifically for underwear and lingerie.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "39O5D9O8742EGYBIU38DD09OUKWC3S", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B093KPKTBG", "instruction": "i want a set of 2 mesh laundry bags with day of the dead skull designs.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YUIT8I", "worker_id": "A2RBF3IIJP15IH"}], "B09HXCP5GT": [{"asin": "B09HXCP5GT", "instruction": "i'm looking for vanity light for laundry room.", "attributes": ["easy assemble", "glass shade", "vanity light", "light fixture"], "options": ["size: 5 lights"], "instruction_attributes": ["glass shade", "vanity light", "light fixture"], "instruction_options": ["5 lights"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KG0PDH", "worker_id": "A16IQOX0DK14OJ"}], "B08DGRFVPH": [{"asin": "B08DGRFVPH", "instruction": "i need a space saving white full sized bed", "attributes": ["space saving", "white item", "storage space", "box spring"], "options": ["color: white", "size: full", "style: headboard - bookcase"], "instruction_attributes": ["space saving"], "instruction_options": ["white", "full"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRM0AW3H", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RQW3PTY": [{"asin": "B07RQW3PTY", "instruction": "i'm looking for an officially licensed captain marvel tank top in heather grey. i need a size medium.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: heather grey", "fit type: women", "size: medium"], "instruction_attributes": ["officially licensed"], "instruction_options": ["heather grey", "women", "medium"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXSA8WAJ", "worker_id": "AR9AU5FY1S3RO"}], "B093CVDS6G": [{"asin": "B093CVDS6G", "instruction": "i'm looking for a chair for hair salons in color b.", "attributes": ["hair salon", "beauty salon", "hair cutting"], "options": ["color: b"], "instruction_attributes": ["hair salon"], "instruction_options": ["b"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALCEH48", "worker_id": "A3MNXK3VDK37SN"}], "B08863WYVL": [{"asin": "B08863WYVL", "instruction": "i'm looking for a pair of knee high rubber soled boots in coffee colored microfiber. i need them in a size six.", "attributes": ["knee high", "slip resistant", "anti slip", "rubber sole", "high heel"], "options": ["color: coffee pu_microfiber", "size: 6"], "instruction_attributes": ["knee high", "rubber sole"], "instruction_options": ["coffee pu_microfiber", "6"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XB1RFJ", "worker_id": "AR9AU5FY1S3RO"}], "B002SVNCJK": [{"asin": "B002SVNCJK", "instruction": "i am looking for two pack size shampoo that are good for my hair growth.", "attributes": ["hair growth", "hair loss"], "options": ["size: two pack"], "instruction_attributes": ["hair growth"], "instruction_options": ["two pack"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQGC197", "worker_id": "A1Q8PPQQCWGY0D"}], "B0828D3MMZ": [{"asin": "B0828D3MMZ", "instruction": "i'm looking for a organizer for aaa batteries", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB16BLU6", "worker_id": "A2Y2TURT2VEYZN"}], "B09JV9NH3M": [{"asin": "B09JV9NH3M", "instruction": "i am looking for white cheddar flavor cheese powder that is gluten free.", "attributes": ["gluten free", "nut free"], "options": ["flavor name: white cheddar", "size: 1.5 pound (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["white cheddar"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YZ5Q3J", "worker_id": "A1Q8PPQQCWGY0D"}], "B09SLFSY95": [{"asin": "B09SLFSY95", "instruction": "i would like a high quality shower cap.", "attributes": ["easy carry", "high quality", "hair salon"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR7Y6Y6G", "worker_id": "A1WS884SI0SLO4"}], "B09JL35FSR": [{"asin": "B09JL35FSR", "instruction": "i need a high quality storage case compatible for my infinitipro. please select the extra small oval brush", "attributes": ["high quality", "storage case", "hair styling"], "options": ["style: attachment: extra small oval brush"], "instruction_attributes": ["high quality", "storage case"], "instruction_options": [], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN2YTPE", "worker_id": "A2COCSUGZV28X"}], "B01FGG0BRO": [{"asin": "B01FGG0BRO", "instruction": "i'm looking for kitchen rugs for kitchen its very clean and contemporary design.", "attributes": ["easy clean", "contemporary design"], "options": ["color: purple | beige", "size: runner 2' 7 x 10' 0"], "instruction_attributes": ["easy clean", "contemporary design"], "instruction_options": ["purple | beige"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GF0UZF", "worker_id": "A16IQOX0DK14OJ"}], "B08134QHQS": [{"asin": "B08134QHQS", "instruction": "i would like a hair cutting kit with stainless steel sheers.", "attributes": ["stainless steel", "hair cutting", "dry hair"], "options": [""], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": [], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3Y0VJ52", "worker_id": "A1WS884SI0SLO4"}], "B09JCM6HP8": [{"asin": "B09JCM6HP8", "instruction": "find me a knee high anti slip open toe ankle booties in black color and size 6.5.", "attributes": ["knee high", "anti slip", "open toe", "steel toe", "rubber sole"], "options": ["color: black", "size: 6.5"], "instruction_attributes": ["knee high", "anti slip", "open toe"], "instruction_options": ["black", "6.5"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JDMFSX", "worker_id": "A3AYHESLQSDY5T"}], "B09FFV4CQJ": [{"asin": "B09FFV4CQJ", "instruction": "i looking for 8 oz resealable bag in 4 oz", "attributes": ["resealable bag", "great gift", "baby shower", "birthday party"], "options": ["size: 4 oz"], "instruction_attributes": ["resealable bag"], "instruction_options": ["4 oz"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN2QPT2", "worker_id": "A16M39T60N60NO"}], "B0798LFCHQ": [{"asin": "B0798LFCHQ", "instruction": "i am looking for gmo free peanut butter.size should be 2.65 ounce and pack of 48.", "attributes": ["gmo free", "ready eat", "non gmo"], "options": ["flavor name: vanilla", "size: 2.65 ounce (pack of 48)"], "instruction_attributes": ["gmo free"], "instruction_options": ["2.65 ounce (pack of 48)"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOFGLLA", "worker_id": "A3FG5PQHG5AH3Y"}], "B09RMVQC2S": [{"asin": "B09RMVQC2S", "instruction": "i would like a s blue toothbrush for sensitive teeth.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: blue", "size: s"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["blue", "s"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1GPXR8", "worker_id": "A1WS884SI0SLO4"}], "B07ZW2WP2S": [{"asin": "B07ZW2WP2S", "instruction": "i am looking for fluoride free toothpaste that is made with coconut oil", "attributes": ["fluoride free", "coconut oil"], "options": [""], "instruction_attributes": ["fluoride free", "coconut oil"], "instruction_options": [], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9AC8N8", "worker_id": "A2COCSUGZV28X"}], "B08S7KZVFX": [{"asin": "B08S7KZVFX", "instruction": "i would like a 16 ounce ultra gold sugar free energy drink,", "attributes": ["sugar free", "zero sugar"], "options": ["flavor name: ultra gold", "size: 16 ounce (pack of 24)"], "instruction_attributes": ["sugar free"], "instruction_options": ["ultra gold", "16 ounce (pack of 24)"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TUMMPQ", "worker_id": "A1WS884SI0SLO4"}], "B00LYD49OU": [{"asin": "B00LYD49OU", "instruction": "i am looking for chocolate covered cakes of size 1 pound.", "attributes": ["chocolate covered", "great gift"], "options": ["flavor: homestead box", "size: 1 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["1 pound"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WTG24V", "worker_id": "A1Q8PPQQCWGY0D"}], "B07ZWJP934": [{"asin": "B07ZWJP934", "instruction": "i'm looking for some sulfate free, paraben free conditioner with argan oil for dry hair.", "attributes": ["sulfate free", "paraben free", "argan oil", "hair extensions", "dry hair", "hair loss"], "options": [""], "instruction_attributes": ["sulfate free", "paraben free", "argan oil", "dry hair"], "instruction_options": [], "assignment_id": "3VW04L3ZL4GEZUTR5OBOYTJ22XMXXG", "worker_id": "AR9AU5FY1S3RO"}], "B09CM83LD6": [{"asin": "B09CM83LD6", "instruction": "i'm looking for a two in one multifunctional led wall lamp.", "attributes": ["wall mounted", "living room"], "options": ["color: black-1pcs", "number of items: 1"], "instruction_attributes": ["wall mounted"], "instruction_options": ["black-1pcs"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WTW24B", "worker_id": "A21IUUHBSEVB56"}], "B07YBGFM6S": [{"asin": "B07YBGFM6S", "instruction": "fully cooked shredded chicken taco kit", "attributes": ["fully cooked", "gluten free"], "options": [""], "instruction_attributes": ["fully cooked"], "instruction_options": [], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KGXPDE", "worker_id": "A10OGH5CQBXL5N"}], "B08ZCMJ9J1": [{"asin": "B08ZCMJ9J1", "instruction": "i am looking for a plant based lip balm that is effective for dry lips", "attributes": ["plant based", "animal testing", "paraben free", "cruelty free", "green tea", "seed oil", "argan oil"], "options": ["color: 04 sunset garden (tinted)"], "instruction_attributes": ["plant based"], "instruction_options": ["04 sunset garden (tinted)"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XUCGNL", "worker_id": "A2COCSUGZV28X"}], "B08FT5KP1M": [{"asin": "B08FT5KP1M", "instruction": "i am looking for signal antenna booster stickers that are easy to carry and install.", "attributes": ["easy carry", "easy install"], "options": [""], "instruction_attributes": ["easy carry", "easy install"], "instruction_options": [], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNUIFJQ", "worker_id": "A1Q8PPQQCWGY0D"}], "B00L1ISK48": [{"asin": "B00L1ISK48", "instruction": "i am looking for brushed nickel in amber", "attributes": ["brushed nickel", "glass shade"], "options": ["color: amber | brushed nickel", "style: ws72led"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["amber | brushed nickel"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TOKN3V", "worker_id": "A2MSIFDLOHI1UT"}], "B09CKX151Z": [{"asin": "B09CKX151Z", "instruction": "i'm looking for something that is easily cleaned.", "attributes": ["easy clean", "dry hair"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFQAE9Z", "worker_id": "A2JP9IKRHNLRPI"}], "B08H5SPHMQ": [{"asin": "B08H5SPHMQ", "instruction": "i want a tea tree conditioner that is sulfate and paraben free. pick a pack of 2 containing 6 ounce.", "attributes": ["sulfate free", "paraben free", "tea tree"], "options": ["scent: orchid & white truffle", "size: 6 ounce (pack of 2)"], "instruction_attributes": ["sulfate free", "paraben free", "tea tree"], "instruction_options": ["6 ounce (pack of 2)"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPMNNJQ", "worker_id": "A1NF6PELRKACS9"}], "B081W1D8H7": [{"asin": "B081W1D8H7", "instruction": "i'm looking for a pack of high quality hair extensions that are 20 inches long. can you pick the silver one.", "attributes": ["high quality", "hair extensions"], "options": ["color: #1b | silver | 1b", "size: 20 inch (pack of 1)"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["#1b | silver | 1b", "20 inch (pack of 1)"], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q7KII7", "worker_id": "A3LIIE572Z4OG7"}], "B00CQ7ZAK0": [{"asin": "B00CQ7ZAK0", "instruction": "i would like a conditioner that is made with all natural ingredients.", "attributes": ["natural ingredients", "dry hair"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOSMYVY", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FJFHRYF": [{"asin": "B09FJFHRYF", "instruction": "i would like a gray toiletry bag that is water resistant.", "attributes": ["water resistant", "easy clean", "storage case"], "options": ["color: gray"], "instruction_attributes": ["water resistant"], "instruction_options": ["gray"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WBAOUK", "worker_id": "A1WS884SI0SLO4"}], "B0754DL6N6": [{"asin": "B0754DL6N6", "instruction": "i'm looking for a size 30\" x 20\" king size pillow case.", "attributes": ["super soft", "machine washable", "king size"], "options": ["color: brown black", "size: 30\" x 20\""], "instruction_attributes": ["king size"], "instruction_options": ["30\" x 20\""], "assignment_id": "369J354OFOKQUTE5FR2UAU6N232G6O", "worker_id": "ARQ05PDNXPFDI"}], "B08Q256HCX": [{"asin": "B08Q256HCX", "instruction": "look for a 120 count box of denture cleaning tablets that are easy to use.", "attributes": ["easy use", "bad breath"], "options": ["size: 120 count (pack of 1)"], "instruction_attributes": ["easy use"], "instruction_options": ["120 count (pack of 1)"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZSWSH5", "worker_id": "AR9AU5FY1S3RO"}], "B07PH1WPZ7": [{"asin": "B07PH1WPZ7", "instruction": "i am looking for brown color medium size star wars men's t-shirt. the cloth must be classic fit and needle sleeve.", "attributes": ["officially licensed", "needle sleeve", "classic fit", "star wars"], "options": ["color: brown", "fit type: men", "size: medium"], "instruction_attributes": ["needle sleeve", "classic fit", "star wars"], "instruction_options": ["brown", "men", "medium"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP1BXTA", "worker_id": "A3R8PQCD99H61E"}], "B08PB2MNHY": [{"asin": "B08PB2MNHY", "instruction": "i am searching for a gold color smart watch bands compatible for apple and any one of the sizes 38mm | 40mm | 41mm", "attributes": ["compatible apple", "easy install"], "options": ["color: black red gold", "size: 38mm | 40mm | 41mm-l"], "instruction_attributes": ["compatible apple"], "instruction_options": ["black red gold", "38mm | 40mm | 41mm-l"], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUMLZVL", "worker_id": "A258PTOZ3D2TQR"}], "B09NMR2494": [{"asin": "B09NMR2494", "instruction": "i'm looking for a gift basket of cookies which i believe will be a perfect gift for my wife.", "attributes": ["individually wrapped", "perfect gift", "gift basket"], "options": [""], "instruction_attributes": ["perfect gift", "gift basket"], "instruction_options": [], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT9H736", "worker_id": "A1Q0EUNCS50S8M"}], "B0841QLKFN": [{"asin": "B0841QLKFN", "instruction": "i would like a women's vesper perfume in a travel size bottle.", "attributes": ["alcohol free", "travel size"], "options": ["color: vesper \u2640\u2642", "style: women"], "instruction_attributes": ["travel size"], "instruction_options": ["vesper \u2640\u2642", "women"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZVQ043", "worker_id": "A1WS884SI0SLO4"}], "B092MKGSW3": [{"asin": "B092MKGSW3", "instruction": "i'm looking for a size 7 non slip hedgehog running shoes", "attributes": ["non slip", "rubber sole", "unique design"], "options": ["color: anime 05b", "size: 7"], "instruction_attributes": ["non slip"], "instruction_options": ["anime 05b", "7"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJUVBXI", "worker_id": "A2Y2TURT2VEYZN"}], "B09T3BRHBY": [{"asin": "B09T3BRHBY", "instruction": "i want a stainless steel ronyme camera tripod screw.", "attributes": ["quick release", "stainless steel"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMXWSAK", "worker_id": "A2RBF3IIJP15IH"}], "B07ZYSXHX4": [{"asin": "B07ZYSXHX4", "instruction": "i'm looking for a pair of size six high heels with a rubber sole. look for them in black.", "attributes": ["high heel", "rubber sole"], "options": ["color: black-standard pump", "size: 6"], "instruction_attributes": ["high heel", "rubber sole"], "instruction_options": ["black-standard pump", "6"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP6S7J7", "worker_id": "AR9AU5FY1S3RO"}], "B083FK5F3G": [{"asin": "B083FK5F3G", "instruction": "i would like a deepgold automobile charger that is fast wireless charging.", "attributes": ["fast charging", "wireless charging"], "options": ["color: deepgold"], "instruction_attributes": ["fast charging", "wireless charging"], "instruction_options": ["deepgold"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG3H549", "worker_id": "A1WS884SI0SLO4"}], "B00AXJA2V0": [{"asin": "B00AXJA2V0", "instruction": "i will love to have the fragrance free almay smart shade mousse makeup with deep color.", "attributes": ["dermatologist tested", "fragrance free"], "options": ["color: deep"], "instruction_attributes": ["fragrance free"], "instruction_options": ["deep"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVUZX91", "worker_id": "A1IL2K0ELYI090"}], "B08PTRVDB5": [{"asin": "B08PTRVDB5", "instruction": "i want a easy to use soundbar with stereo sound.", "attributes": ["plug play", "hands free", "easy use", "high definition", "stereo sound"], "options": [""], "instruction_attributes": ["easy use", "stereo sound"], "instruction_options": [], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRU1BZN", "worker_id": "AVIEE6LDH0BT5"}], "B09BYSRP2V": [{"asin": "B09BYSRP2V", "instruction": "i need to buy a chair for my living room with a solid wood frame and lumbar support. it should have brown fabric.", "attributes": ["lumbar support", "faux leather", "wood frame", "solid wood", "living room"], "options": ["color: cognac brown", "style: fabric"], "instruction_attributes": ["lumbar support", "wood frame", "solid wood", "living room"], "instruction_options": ["cognac brown", "fabric"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1FQXC6", "worker_id": "AR9AU5FY1S3RO"}], "B08BND9C5J": [{"asin": "B08BND9C5J", "instruction": "i am looking for pink running shoes that have a rubber sole and are in a size 14", "attributes": ["lace closure", "rubber sole"], "options": ["color: oxygen blue | pink", "size: 14"], "instruction_attributes": ["rubber sole"], "instruction_options": ["oxygen blue | pink", "14"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYQZN7T", "worker_id": "A2ECRNQ3X5LEXD"}], "B08JJWK856": [{"asin": "B08JJWK856", "instruction": "i am looking for an antioxidant mix of mixed nuts that are non gmo and come in a pack of 15.", "attributes": ["artificial ingredients", "plant based", "non gmo", "protein serving", "gluten free"], "options": ["flavor name: antioxidant mix", "size: 1 ounce (pack of 15)"], "instruction_attributes": ["non gmo"], "instruction_options": ["antioxidant mix", "1 ounce (pack of 15)"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJWLVGM", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08JJWK856", "instruction": "i am looking for some gluten free honey roasted mixed nuts.", "attributes": ["artificial ingredients", "plant based", "non gmo", "protein serving", "gluten free"], "options": ["flavor name: honey roasted mixed nuts", "size: 1 ounce (pack of 8)"], "instruction_attributes": ["gluten free"], "instruction_options": ["honey roasted mixed nuts"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOH7NOL", "worker_id": "A1EREKSZAA9V7B"}], "B08CGXY2XQ": [{"asin": "B08CGXY2XQ", "instruction": "i am looking for a high definition tempered glass screen protector.", "attributes": ["high definition", "tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["high definition", "tempered glass"], "instruction_options": [], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4MI98Z", "worker_id": "A1EREKSZAA9V7B"}], "B07KW3HQLX": [{"asin": "B07KW3HQLX", "instruction": "i am looking for brown color classic fit t-shirt.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: brown", "fit type: men", "size: small"], "instruction_attributes": ["classic fit"], "instruction_options": ["brown"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH155DWH9", "worker_id": "A1Q8PPQQCWGY0D"}], "B0854DBKRB": [{"asin": "B0854DBKRB", "instruction": "i am looking for women's golf skorts of medium size with elastic waistband.", "attributes": ["moisture wicking", "elastic waistband"], "options": ["color: light purple", "size: medium"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["medium"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I36S1C", "worker_id": "A1Q8PPQQCWGY0D"}], "B09NNM44JW": [{"asin": "B09NNM44JW", "instruction": "get me leak proof and easy to carry pump dispenser bottle for nail polish and make up removing.", "attributes": ["leak proof", "easy carry", "nail polish"], "options": [""], "instruction_attributes": ["leak proof", "easy carry", "nail polish"], "instruction_options": [], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM70HZ3", "worker_id": "A3AYHESLQSDY5T"}], "B00RM5NPAS": [{"asin": "B00RM5NPAS", "instruction": "i am looking for some gluten free yellow dog sweet shake flavored gourmet spice blends.", "attributes": ["gluten free", "great gift"], "options": ["flavor name: yellow dog sweet shake", "size: 4.25 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["yellow dog sweet shake"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVQO17V", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00RM5NPAS", "instruction": "gluten-free spice seasonings", "attributes": ["gluten free", "great gift"], "options": ["flavor name: jammin\u2019 salmon rub", "size: 7.75 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3V26SBZTBOOS9KTL7ONUSZFOIZ8ZZ6", "worker_id": "A3TTGSUBIK1YCL"}, {"asin": "B00RM5NPAS", "instruction": "i'm looking for gourmet spice blends and shake.", "attributes": ["gluten free", "great gift"], "options": ["flavor name: jammin\u2019 salmon rub", "size: 3.5 ounce (pack of 1)"], "instruction_attributes": ["great gift"], "instruction_options": ["3.5 ounce (pack of 1)"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAGAIF0", "worker_id": "A21IUUHBSEVB56"}], "B084RRBLJ2": [{"asin": "B084RRBLJ2", "instruction": "i am looking for a argan oil hair color. also choose chrome - 3oz one.", "attributes": ["argan oil", "permanent hair"], "options": ["color: chrome - 3oz"], "instruction_attributes": ["argan oil"], "instruction_options": ["chrome - 3oz"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WTV42C", "worker_id": "A2HMEGTAFO0CS8"}], "B09P2R22LF": [{"asin": "B09P2R22LF", "instruction": "i am looking for high quality hair care center to exten my hair without hair loss. hair extensions must be body wave and 5x5 lace closure .", "attributes": ["high quality", "hair loss"], "options": ["color: body wave 5x5 lace closure", "size: 18\" 18\" 18\""], "instruction_attributes": ["high quality", "hair loss"], "instruction_options": ["body wave 5x5 lace closure"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRUAZBK", "worker_id": "A3R8PQCD99H61E"}, {"asin": "B09P2R22LF", "instruction": "i need some high quality 12 inch extensions", "attributes": ["high quality", "hair loss"], "options": ["color: body wave 13x4 frontal", "size: 12 inch"], "instruction_attributes": ["high quality"], "instruction_options": ["12 inch"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7LY5NS", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09P2R22LF", "instruction": "i need to buy high quality hair extensions. look for them in the pineapple color.", "attributes": ["high quality", "hair loss"], "options": ["color: pineapple deep wave", "size: 26 26 26"], "instruction_attributes": ["high quality"], "instruction_options": ["pineapple deep wave"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMOOWMO", "worker_id": "AR9AU5FY1S3RO"}], "B00KSMJZD8": [{"asin": "B00KSMJZD8", "instruction": "i am looking for outdoor speakers of 300w and with powerful bass.", "attributes": ["power amplifier", "high performance"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZO3Y1X", "worker_id": "A21IUUHBSEVB56"}], "B081SGNY71": [{"asin": "B081SGNY71", "instruction": "i need fluoide free toothpaste for fresh breath.", "attributes": ["animal testing", "fluoride free", "fresh breath"], "options": [""], "instruction_attributes": ["fluoride free", "fresh breath"], "instruction_options": [], "assignment_id": "33PPO7FEC6P3BTZFF2AB1CTVY27ID0", "worker_id": "ASWFLI3N8X72G"}], "B07H6V8Q75": [{"asin": "B07H6V8Q75", "instruction": "i would like a 2xl navy grey shirt i can wash in a machine.", "attributes": ["machine wash", "wash cold", "button closure", "gym workout", "tumble dry", "daily wear"], "options": ["color: navy grey", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy grey", "xx-large"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP5H7JU", "worker_id": "A1WS884SI0SLO4"}], "B01MG9KT77": [{"asin": "B01MG9KT77", "instruction": "i need 18 inch hair extensions", "attributes": ["hair extensions", "natural hair"], "options": ["color: #12-613", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["18 inch"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLJL2FF", "worker_id": "A2ECRNQ3X5LEXD"}], "B096GZ2VPR": [{"asin": "B096GZ2VPR", "instruction": "i would like a vanilla 3.5 oz cupcake soy wax candle.", "attributes": ["lead free", "soy wax"], "options": ["scent: vanilla cupcake", "size: 3.5 oz (silver colored lid)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC57OKRK", "worker_id": "A1WS884SI0SLO4"}], "B09MTYXSBM": [{"asin": "B09MTYXSBM", "instruction": "i am in need of some high quality toothbrushes that are blue for ages 2-6", "attributes": ["travel size", "high quality"], "options": ["color: blue", "size: aged 2-6"], "instruction_attributes": ["high quality"], "instruction_options": ["blue", "aged 2-6"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT3RP3Z", "worker_id": "A2ECRNQ3X5LEXD"}], "B097JLBD2M": [{"asin": "B097JLBD2M", "instruction": "i am looking for 8 cupcake toppers that are black for teen girls", "attributes": ["open toe", "ankle strap", "lace closure", "memory foam", "teen girls"], "options": ["color: z-bo-black", "size: 8"], "instruction_attributes": ["teen girls"], "instruction_options": ["z-bo-black", "8"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX7WFAI", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GV5Y88D": [{"asin": "B09GV5Y88D", "instruction": "i need some high quality stainless steel hair cutting shears that are six inches long.", "attributes": ["high quality", "non slip", "stainless steel", "hair cutting"], "options": ["color: 6inch cutting"], "instruction_attributes": ["high quality", "stainless steel", "hair cutting"], "instruction_options": ["6inch cutting"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKF2889", "worker_id": "AR9AU5FY1S3RO"}], "B08DQX3HXF": [{"asin": "B08DQX3HXF", "instruction": "i am looking to buy a black throw blanket that is 80 in x 60 in for my living room.", "attributes": ["super soft", "living room"], "options": ["color: black11", "size: 80 in x 60 in"], "instruction_attributes": ["living room"], "instruction_options": ["black11", "80 in x 60 in"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH155OHW5", "worker_id": "A114NK7T5673GK"}], "B099LLV3WN": [{"asin": "B099LLV3WN", "instruction": "where can i find this special sauce? please help me .keto barbecue bbq sauce by yo mama's foods. carefully read all the features i need on the label. low carb, low sugar, gluten free, non gmo, classic pizza sauce flavor. if you can't find it let me know soon.", "attributes": ["low carb", "low sugar", "gluten free", "dairy free", "non gmo", "natural ingredients"], "options": ["flavor name: classic pizza sauce", "size: 12.5 ounce (pack of 1)"], "instruction_attributes": ["low carb", "low sugar", "gluten free", "non gmo"], "instruction_options": ["classic pizza sauce"], "assignment_id": "37TRT2X24116R7L1JO45INKV8WFJB1", "worker_id": "A15IJ20C3R4HUO"}], "B00WJY5QA4": [{"asin": "B00WJY5QA4", "instruction": "i need a remote control with aaa betteries", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFIDMV1", "worker_id": "A2Y2TURT2VEYZN"}], "B07MTMZC83": [{"asin": "B07MTMZC83", "instruction": "i would like a tan faux leather armchair.", "attributes": ["contemporary style", "faux leather"], "options": ["color: tan", "size: armchair"], "instruction_attributes": ["faux leather"], "instruction_options": ["tan", "armchair"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTLZ4D2", "worker_id": "A1WS884SI0SLO4"}], "B093FVJ8Z6": [{"asin": "B093FVJ8Z6", "instruction": "i am looking for a dome cameras batteries included", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQH4HHY", "worker_id": "A9QRQL9CFJBI7"}], "B08T1VSSL5": [{"asin": "B08T1VSSL5", "instruction": "i need a purple tie-dyed dresser with a steel frame.", "attributes": ["assembly required", "steel frame", "living room"], "options": ["color: tie-dye purple"], "instruction_attributes": ["steel frame"], "instruction_options": ["tie-dye purple"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QS6XOY", "worker_id": "AR9AU5FY1S3RO"}], "B07CZ7BGGT": [{"asin": "B07CZ7BGGT", "instruction": "i'm looking for perfect men's trail running.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: red", "size: 7.5 m uk"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["7.5 m uk"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XTONG2", "worker_id": "A21IUUHBSEVB56"}], "B095YYL9GJ": [{"asin": "B095YYL9GJ", "instruction": "i would like a blue cupcake topper for a birthday party.", "attributes": ["birthday party", "cupcake picks"], "options": ["color: blue"], "instruction_attributes": ["birthday party"], "instruction_options": ["blue"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPJRVQE", "worker_id": "A1WS884SI0SLO4"}], "B08HH7VTSL": [{"asin": "B08HH7VTSL", "instruction": "add to my cart polo red men by ralph lauren edt spray and should have a long lasting scent.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["design house", "long lasting"], "instruction_options": [], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH3U6HS", "worker_id": "AHU9OLV0YKIIW"}], "B09LR9LHPG": [{"asin": "B09LR9LHPG", "instruction": "i am looking for a sulfate free shampoo set that is 13.5 fl oz", "attributes": ["sulfate free", "cruelty free", "plant based", "paraben free", "coconut oil"], "options": ["size: 13.5 fl oz", "style: shampoo only"], "instruction_attributes": ["sulfate free"], "instruction_options": ["13.5 fl oz"], "assignment_id": "31JLPPHS254FPN8LK8H48035JYN3OO", "worker_id": "A2ECRNQ3X5LEXD"}], "B00FHXH5LC": [{"asin": "B00FHXH5LC", "instruction": "i'm looking for an easy to clean coffee table for my living room. i want one that's in a modern style with natural wood.", "attributes": ["easy clean", "white finish", "living room"], "options": ["color: natural", "style: modern"], "instruction_attributes": ["easy clean", "living room"], "instruction_options": ["natural", "modern"], "assignment_id": "31JLPPHS254FPN8LK8H48035JYEO30", "worker_id": "AR9AU5FY1S3RO"}], "B09SXQJ94X": [{"asin": "B09SXQJ94X", "instruction": "i looking a high power telescope for bird watching with smartphone adapter and tripod", "attributes": ["non slip", "high power", "bird watching"], "options": [""], "instruction_attributes": ["high power", "bird watching"], "instruction_options": [], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA9G2SZ", "worker_id": "A3N9ZYQAESNFQH"}], "B09QHL1LDY": [{"asin": "B09QHL1LDY", "instruction": "i'm looking for a 5 pieces metal decorative loops for apple watch series 7/6/5/4/3/2/1 band silicon strap.", "attributes": ["compatible apple", "long lasting", "stainless steel"], "options": ["color: # x"], "instruction_attributes": ["stainless steel"], "instruction_options": ["# x"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4DDRQG", "worker_id": "A21IUUHBSEVB56"}], "B09S8MFC3R": [{"asin": "B09S8MFC3R", "instruction": "i'm looking for 8.5 wide open toe women sandals.", "attributes": ["open toe", "ankle strap", "closed toe"], "options": ["color: v75 - black", "size: 8.5 wide"], "instruction_attributes": ["open toe"], "instruction_options": ["8.5 wide"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAUCN9CN", "worker_id": "ARQ05PDNXPFDI"}], "B005FO8MFG": [{"asin": "B005FO8MFG", "instruction": "i'm looking for a camellia seed oil conditioner, fragance free", "attributes": ["fragrance free", "oil free", "seed oil", "hair treatment", "dry hair"], "options": [""], "instruction_attributes": ["fragrance free", "seed oil"], "instruction_options": [], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA9N2S6", "worker_id": "A2Y2TURT2VEYZN"}], "B08X2QWP6M": [{"asin": "B08X2QWP6M", "instruction": "i would like some peanut butter cookies that are ready to eat.", "attributes": ["ready eat", "simple ingredients", "high fructose"], "options": ["flavor name: peanut butter"], "instruction_attributes": ["ready eat"], "instruction_options": ["peanut butter"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FIZEL0", "worker_id": "A1WS884SI0SLO4"}], "B08C73M2QH": [{"asin": "B08C73M2QH", "instruction": "i would like a bath brush for dead and dry skin.", "attributes": ["high quality", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["dry skin", "dead skin"], "instruction_options": [], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYG8280", "worker_id": "A1WS884SI0SLO4"}], "B0836KS1QC": [{"asin": "B0836KS1QC", "instruction": "i am looking for a mid century metal floor lamp with a brushed nickel finish.", "attributes": ["mid century", "bronze finish"], "options": ["color: brushed nickel", "size: 28.75 inch"], "instruction_attributes": ["mid century"], "instruction_options": ["brushed nickel"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SYOUDG", "worker_id": "A1EREKSZAA9V7B"}], "B0758K4MPX": [{"asin": "B0758K4MPX", "instruction": "i need a 1.7 ounce perfume set that is long lasting.", "attributes": ["design house", "long lasting"], "options": ["size: 1.7 ounce"], "instruction_attributes": ["long lasting"], "instruction_options": ["1.7 ounce"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L5JVC4", "worker_id": "A1NF6PELRKACS9"}], "B098THDLMD": [{"asin": "B098THDLMD", "instruction": "i need a stainless steel pedicure tool to remove dead skin and i would like an 8 piece black set if possible.", "attributes": ["high quality", "long lasting", "stainless steel", "dead skin"], "options": ["color: 8pcs-black"], "instruction_attributes": ["stainless steel", "dead skin"], "instruction_options": ["8pcs-black"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFIQVMN", "worker_id": "AJQGWGESKQT4Y"}], "B09QT1YBXB": [{"asin": "B09QT1YBXB", "instruction": "i would like an xx-large black long sleeve shirt for daily casual wear, thanks", "attributes": ["daily casual", "slim fit", "lace closure", "relaxed fit", "button closure", "long sleeve", "dry clean"], "options": ["color: black", "size: xx-large"], "instruction_attributes": ["daily casual", "long sleeve"], "instruction_options": ["black", "xx-large"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MPRFOA", "worker_id": "A2TRV8SEM003GG"}], "B06Y3Z56DR": [{"asin": "B06Y3Z56DR", "instruction": "i would like a 2.4 ounce bottle of deodorant that is made from natural ingredients.", "attributes": ["long lasting", "plant based", "natural ingredients", "sensitive skin"], "options": ["size: 2.4 ounce (pack of 3)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["2.4 ounce (pack of 3)"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPBCDQK", "worker_id": "A1WS884SI0SLO4"}], "B09N72QX3Z": [{"asin": "B09N72QX3Z", "instruction": "i would like a 4g lte tablet with a high resolution.", "attributes": ["long lasting", "high resolution", "high performance", "easy use", "glass screen", "4g lte"], "options": [""], "instruction_attributes": ["high resolution", "4g lte"], "instruction_options": [], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LL55IB", "worker_id": "A1WS884SI0SLO4"}], "B08SR3JNGT": [{"asin": "B08SR3JNGT", "instruction": "i'm looking for a pair of running shorts made out of polyester spandex with an elastic waistband. i want them in red, size small.", "attributes": ["hand wash", "polyester spandex", "elastic closure", "elastic waistband"], "options": ["color: red", "size: small"], "instruction_attributes": ["polyester spandex", "elastic waistband"], "instruction_options": ["red", "small"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRUXZB7", "worker_id": "AR9AU5FY1S3RO"}], "B09NBZ4LFC": [{"asin": "B09NBZ4LFC", "instruction": "i am looking for wireless bluetooth speakers in the color a.", "attributes": ["hands free", "wireless bluetooth"], "options": ["color: a"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["a"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HGDOHY4", "worker_id": "A2ECRNQ3X5LEXD"}], "B077JJ6Q3G": [{"asin": "B077JJ6Q3G", "instruction": "i would like a twin size blue bunk bed.", "attributes": ["twin size", "space saving"], "options": ["color: blue", "size: twin"], "instruction_attributes": ["twin size"], "instruction_options": ["blue", "twin"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G79374H", "worker_id": "A1WS884SI0SLO4"}], "B09J81RMLD": [{"asin": "B09J81RMLD", "instruction": "i am looking for teeth whitening toothbrush in green bear size", "attributes": ["teeth whitening", "easy use"], "options": ["color: b01#green bear", "size: aged 6-12"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["b01#green bear"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG9BLSB", "worker_id": "A16M39T60N60NO"}], "B07Q98YNYF": [{"asin": "B07Q98YNYF", "instruction": "i am looking for some noise cancelling earbud headphones", "attributes": ["noise cancelling", "long lasting", "hands free", "easy carry", "wireless bluetooth"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LATERV", "worker_id": "A2ECRNQ3X5LEXD"}], "B074524C3Y": [{"asin": "B074524C3Y", "instruction": "i'm looking for sheer window curtains that are machine washable and 55 in x 108 in. also, they should be mint color.", "attributes": ["machine washable", "white item"], "options": ["color: mint", "size: 55 in x 108 in"], "instruction_attributes": ["machine washable"], "instruction_options": ["mint", "55 in x 108 in"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJOL0WL", "worker_id": "A34EHWOYRBL6OZ"}], "B094SLNNGD": [{"asin": "B094SLNNGD", "instruction": "i am looking for cruelty free lip balm having 3pk warm flavors scent .", "attributes": ["cruelty free", "coconut oil", "natural ingredients"], "options": ["scent: 3pk warm flavors"], "instruction_attributes": ["cruelty free"], "instruction_options": ["3pk warm flavors"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRWEPWY", "worker_id": "A1Q8PPQQCWGY0D"}], "B099PBZ3WK": [{"asin": "B099PBZ3WK", "instruction": "i'm looking for portable android tablet with dual speaker.", "attributes": ["high definition", "quad core"], "options": ["color: golden"], "instruction_attributes": ["high definition"], "instruction_options": ["golden"], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YNAAGS", "worker_id": "A21IUUHBSEVB56"}], "B09J7NJ2LN": [{"asin": "B09J7NJ2LN", "instruction": "i am looking for a loose fit blue top that is a small.", "attributes": ["loose fit", "hand wash", "long sleeve", "short sleeve", "tumble dry", "daily wear"], "options": ["color: gtp1 - zi7-blue", "size: small"], "instruction_attributes": ["loose fit"], "instruction_options": ["gtp1 - zi7-blue", "small"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEXJUUO", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NV7S8M3": [{"asin": "B07NV7S8M3", "instruction": "i would like a 10 by 8 foot photo backdrop that is light weight and easy to carry.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 10x8ft"], "instruction_attributes": ["light weight", "easy carry"], "instruction_options": ["10x8ft"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LL8I5R", "worker_id": "A1WS884SI0SLO4"}], "B0849Q9FGM": [{"asin": "B0849Q9FGM", "instruction": "i am looking for an intel core all in one pc.", "attributes": ["intel core", "quad core"], "options": [""], "instruction_attributes": ["intel core"], "instruction_options": [], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OUEPOL", "worker_id": "A2ECRNQ3X5LEXD"}], "B000QSOC4Q": [{"asin": "B000QSOC4Q", "instruction": "i need some coconut milk that is rich and creamy", "attributes": ["rich creamy", "non gmo"], "options": [""], "instruction_attributes": ["rich creamy"], "instruction_options": [], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJK9OLI", "worker_id": "A2ECRNQ3X5LEXD"}], "B0986W42KJ": [{"asin": "B0986W42KJ", "instruction": "i am looking for dust proof monoculars having high definition.", "attributes": ["dust proof", "high definition", "bird watching"], "options": [""], "instruction_attributes": ["dust proof"], "instruction_options": [], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTVCWXI", "worker_id": "A1Q8PPQQCWGY0D"}], "B07T75MQTL": [{"asin": "B07T75MQTL", "instruction": "i want glitter crown cupcake picks.", "attributes": ["cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["cupcake picks"], "instruction_options": [], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQFD6SH", "worker_id": "A2RBF3IIJP15IH"}], "B081QXQNVQ": [{"asin": "B081QXQNVQ", "instruction": "i am looking for a tv stand and console that has storage shelves. i choose the sargent oak color for for my 55\" tv", "attributes": ["tempered glass", "storage space"], "options": ["color: sargent oak", "style name: 50\" kenton w | fireplace"], "instruction_attributes": ["tempered glass"], "instruction_options": ["sargent oak", "50\" kenton w | fireplace"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK24AMKNJ", "worker_id": "A2COCSUGZV28X"}], "B09B7B6ZZB": [{"asin": "B09B7B6ZZB", "instruction": "i am looking for a heel booties pump with leather sole . also choose black color and size no 9.", "attributes": ["leather sole", "rubber sole"], "options": ["color: black", "size: 9"], "instruction_attributes": ["leather sole"], "instruction_options": ["black", "9"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMR6XE2", "worker_id": "A2HMEGTAFO0CS8"}], "B07M754CQY": [{"asin": "B07M754CQY", "instruction": "i am looking a light brown natural hair extention 20 inch long", "attributes": ["natural hair", "hair loss"], "options": ["color: #60", "size: 20 inch"], "instruction_attributes": ["natural hair"], "instruction_options": ["20 inch"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647C73HY", "worker_id": "A3N9ZYQAESNFQH"}], "B013ILQ0IS": [{"asin": "B013ILQ0IS", "instruction": "i would like a navy medium short scrub bottoms with a relaxed fit.", "attributes": ["easy care", "machine wash", "relaxed fit", "stretch fabric", "imported zipper", "polyester spandex", "tumble dry"], "options": ["color: navy", "size: medium short"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["navy", "medium short"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68HJ4AF", "worker_id": "A1WS884SI0SLO4"}], "B08S3BPLWX": [{"asin": "B08S3BPLWX", "instruction": "i want grey color lumbar support, pu leather swivel adjustable executive chair with flip-up arms", "attributes": ["heavy duty", "easy install", "pu leather", "lumbar support"], "options": ["color: grey"], "instruction_attributes": ["pu leather", "lumbar support"], "instruction_options": ["grey"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUF6ZDB", "worker_id": "A1V2C99HEV3F14"}], "B09P8GG6JY": [{"asin": "B09P8GG6JY", "instruction": "i'm looking for a toothpaste for teeth whitening", "attributes": ["teeth whitening", "natural ingredients"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2AUY7L", "worker_id": "A2Y2TURT2VEYZN"}], "B083FLHGP5": [{"asin": "B083FLHGP5", "instruction": "i am looking for yellow color hoodies for daily wear.", "attributes": ["daily casual", "daily wear"], "options": ["color: yellow", "size: x-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["yellow"], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE3ZJTB", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PH7CTCH": [{"asin": "B09PH7CTCH", "instruction": "i'm looking for a bath brush in beige with a long handle.", "attributes": ["high quality", "long handle"], "options": ["color: beige"], "instruction_attributes": ["long handle"], "instruction_options": ["beige"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HGJ6IV", "worker_id": "AR9AU5FY1S3RO"}], "B07CK3LTB2": [{"asin": "B07CK3LTB2", "instruction": "i would like a pair of size 10 bronze sneakers with a rubber sole.", "attributes": ["arch support", "rubber sole"], "options": ["color: bronze", "size: 10"], "instruction_attributes": ["rubber sole"], "instruction_options": ["bronze", "10"], "assignment_id": "37TRT2X24116R7L1JO45INKV8WBBJP", "worker_id": "A1WS884SI0SLO4"}], "B09N8PRHNG": [{"asin": "B09N8PRHNG", "instruction": "looking for long sleeve and loose fit sweatshirt for women also choose colour gray", "attributes": ["loose fit", "winter warm", "long sleeve", "elastic closure", "everyday wear"], "options": ["color: gray", "size: xx-large"], "instruction_attributes": ["loose fit", "long sleeve"], "instruction_options": ["gray"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1OQITE", "worker_id": "A10OGH5CQBXL5N"}], "B07GB9MX2J": [{"asin": "B07GB9MX2J", "instruction": "i am looking for french vanilla flavor syrup that is sugar free.", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: french vanilla", "size: 25.4 fl oz (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["french vanilla"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1CUU9I", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B07GB9MX2J", "instruction": "hello, may you direct me to a pack of black cherry syrup? natural is preferable please", "attributes": ["sugar free", "natural flavors"], "options": ["flavor name: toasted marshmallow", "size: 3 pound (pack of 1)"], "instruction_attributes": ["natural flavors"], "instruction_options": ["3 pound (pack of 1)"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQOC312", "worker_id": "A2TRV8SEM003GG"}], "B079K45PSB": [{"asin": "B079K45PSB", "instruction": "i need heeled sandals that have a rubber sole and are a size 6.5 with silver glitter on them", "attributes": ["long lasting", "non slip", "ankle strap", "high heel", "rubber sole"], "options": ["color: silver glitter", "size: 6.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["silver glitter", "6.5"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBUCGIX", "worker_id": "A2ECRNQ3X5LEXD"}], "B08GSTVLNZ": [{"asin": "B08GSTVLNZ", "instruction": "i want a gift box of assorted fresh gourmet nuts and dried fruits.", "attributes": ["perfect gift", "gift basket"], "options": ["style: assorted nuts & fruit bags"], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39F1ZCI", "worker_id": "A1V2C99HEV3F14"}], "B0777LZTTG": [{"asin": "B0777LZTTG", "instruction": "i need some machine washable curtains for my kitchen in white or black.", "attributes": ["machine washable", "printing technology"], "options": ["color: white black"], "instruction_attributes": ["machine washable"], "instruction_options": ["white black"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HRDOWB", "worker_id": "AR9AU5FY1S3RO"}], "B01LVZZQY8": [{"asin": "B01LVZZQY8", "instruction": "i'm looking for a perfect waterproof eyeshadow stick with bronze shimmer", "attributes": ["highly pigmented", "sensitive skin"], "options": ["color: 04 blush pink metallic"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["04 blush pink metallic"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4PYPKV", "worker_id": "A21IUUHBSEVB56"}], "B085CF2ZHB": [{"asin": "B085CF2ZHB", "instruction": "looking for samsung galaxy a11 red brushed tpu case cover also choose non slip quality", "attributes": ["non slip", "carbon fiber", "case cover"], "options": ["color: samsung galaxy a11 red brushed tpu case"], "instruction_attributes": ["non slip", "case cover"], "instruction_options": ["samsung galaxy a11 red brushed tpu case"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINV072E", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B085CF2ZHB", "instruction": "i am looking for a case cover for my samsung galaxy a11", "attributes": ["non slip", "carbon fiber", "case cover"], "options": ["color: samsung galaxy a11 gray brushed tpu case"], "instruction_attributes": ["case cover"], "instruction_options": ["samsung galaxy a11 gray brushed tpu case"], "assignment_id": "3S4AW7T80MSS1YOS7U6VQORH2U0L4Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B09J2CMY2R": [{"asin": "B09J2CMY2R", "instruction": "i need some binoculars for bird watching", "attributes": ["non slip", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4DTRQW", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GFPY5Q5": [{"asin": "B07GFPY5Q5", "instruction": "i'm looking for a spa gift set that's good for dry skin and hasn't been tested on animals.", "attributes": ["animal testing", "dry skin"], "options": [""], "instruction_attributes": ["animal testing", "dry skin"], "instruction_options": [], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOF2LLW", "worker_id": "AR9AU5FY1S3RO"}], "B0916HVCC8": [{"asin": "B0916HVCC8", "instruction": "i am looking for earbud headphones in noise cancelling", "attributes": ["noise cancelling", "easy use"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH3EH6N", "worker_id": "A2MSIFDLOHI1UT"}], "B08Y6R25N5": [{"asin": "B08Y6R25N5", "instruction": "i would like a 6.6 foot long gold plated fiber optic cable.", "attributes": ["gold plated", "high resolution"], "options": ["size: 6.6ft | 2m"], "instruction_attributes": ["gold plated"], "instruction_options": ["6.6ft | 2m"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKDPNE1", "worker_id": "A1WS884SI0SLO4"}], "B09NGWMH8Y": [{"asin": "B09NGWMH8Y", "instruction": "i would like a 28x16x18inch yellow storage bench made from engineered wood and a faux leather top.", "attributes": ["button tufted", "pu leather", "faux leather", "engineered wood"], "options": ["color: yellow", "size: 70x40x45cm(28x16x18inch)"], "instruction_attributes": ["faux leather", "engineered wood"], "instruction_options": ["yellow", "70x40x45cm(28x16x18inch)"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL6BEAT", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09NGWMH8Y", "instruction": "i'm interested in a button-tufted, faux leather, dark green bench in size 39x16x18inch.", "attributes": ["button tufted", "pu leather", "faux leather", "engineered wood"], "options": ["color: dark green", "size: 100x40x45cm(39x16x18inch)"], "instruction_attributes": ["button tufted", "faux leather"], "instruction_options": ["dark green", "100x40x45cm(39x16x18inch)"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHAD3OD2", "worker_id": "AFU00NU09CFXE"}, {"asin": "B09NGWMH8Y", "instruction": "i want a grey modern button tufted bed end bench.", "attributes": ["button tufted", "pu leather", "faux leather", "engineered wood"], "options": ["color: grey", "size: 60x40x45cm(24x16x18inch)"], "instruction_attributes": ["button tufted"], "instruction_options": ["grey"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZQ81Y9", "worker_id": "A2RBF3IIJP15IH"}], "B09FQ7W2G3": [{"asin": "B09FQ7W2G3", "instruction": "i would like a pattern 21 cake topper for a birthday party.", "attributes": ["cupcake picks", "birthday party"], "options": ["pattern name: 21"], "instruction_attributes": ["birthday party"], "instruction_options": ["21"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG41GBX", "worker_id": "A1WS884SI0SLO4"}], "B07MP1KSVR": [{"asin": "B07MP1KSVR", "instruction": "i'm looking for a perfect valentine gift for my loved one with this strawberry love cookie cake.", "attributes": ["baked fresh", "valentine day", "perfect gift"], "options": ["flavor name: snickerdoodle"], "instruction_attributes": ["baked fresh"], "instruction_options": ["snickerdoodle"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP8GOA6", "worker_id": "A21IUUHBSEVB56"}], "B08WPBGH6T": [{"asin": "B08WPBGH6T", "instruction": "i would like a pair of 18 plus chocolate regular fit jeans.", "attributes": ["elastic waist", "regular fit", "relaxed fit"], "options": ["color: chocolate", "size: 18 plus"], "instruction_attributes": ["regular fit"], "instruction_options": ["chocolate", "18 plus"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA9P2S8", "worker_id": "A1WS884SI0SLO4"}], "B07WJWBDZ3": [{"asin": "B07WJWBDZ3", "instruction": "i need a refurbished pc that is an i5 and has 8gb of ram", "attributes": ["certified refurbished", "core i5", "intel core"], "options": ["size: 1) i5, 8gb, 256gb ssd"], "instruction_attributes": ["certified refurbished"], "instruction_options": ["1) i5, 8gb, 256gb ssd"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBU2IGP", "worker_id": "A2ECRNQ3X5LEXD"}], "B078GTKVXY": [{"asin": "B078GTKVXY", "instruction": "i would like a 3 ounce bottle of bright citrus deodorant for sensitive skin.", "attributes": ["dermatologist tested", "coconut oil", "sensitive skin"], "options": ["scent: bright citrus", "size: 3 ounce (pack of 1)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["bright citrus", "3 ounce (pack of 1)"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZDPWUK", "worker_id": "A1WS884SI0SLO4"}], "B084Q371NY": [{"asin": "B084Q371NY", "instruction": "i'm looking for a xx-large i hate running black t-shirt for women, machine wash", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: women", "size: xx-large"], "instruction_attributes": [], "instruction_options": ["black", "women", "xx-large"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6URQZEN", "worker_id": "A2Y2TURT2VEYZN"}], "B091K7DN8S": [{"asin": "B091K7DN8S", "instruction": "i need a black wall mouinted mirror for the living room.", "attributes": ["pu leather", "living room"], "options": ["color: black", "size: 70cm"], "instruction_attributes": ["living room"], "instruction_options": ["black"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU48242PYL", "worker_id": "A2ECRNQ3X5LEXD"}], "B01FE73OSS": [{"asin": "B01FE73OSS", "instruction": "i need a high power car stereo receiver.", "attributes": ["high power", "usb port"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZYYNAD", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NMXYMRC": [{"asin": "B09NMXYMRC", "instruction": "i'm looking for pajama pants with an elastic waistband. they should be machine washable and come in a size large.", "attributes": ["wash cold", "hand wash", "machine wash", "elastic waistband", "dry clean"], "options": ["color: multi 3", "size: large"], "instruction_attributes": ["machine wash", "elastic waistband"], "instruction_options": ["large"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6G4VE3", "worker_id": "AR9AU5FY1S3RO"}], "B072K5197P": [{"asin": "B072K5197P", "instruction": "i need machine washable pillow covers. it should be in turquoise blue.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: turquoise blue", "size: 20\" x 20\""], "instruction_attributes": ["machine washable"], "instruction_options": ["turquoise blue"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLY2RDP", "worker_id": "A15ERD4HOFEPHM"}], "B078N9319K": [{"asin": "B078N9319K", "instruction": "i need to buy a full sized mattress and box spring set. it should come fully assembled. look for style 225zf-4.", "attributes": ["ready use", "assembly required", "queen size", "fully assembled", "twin size", "box spring", "king size"], "options": ["size: full xl", "style: 225zf-4 | 6xl-2s"], "instruction_attributes": ["fully assembled"], "instruction_options": ["full xl", "225zf-4 | 6xl-2s"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI704SDX", "worker_id": "AR9AU5FY1S3RO"}], "B08FRLXKH9": [{"asin": "B08FRLXKH9", "instruction": "i would like fruit and nut bars that are soy free.", "attributes": ["dairy free", "gluten free", "soy free", "non gmo", "simple ingredients", "natural ingredients"], "options": [""], "instruction_attributes": ["soy free"], "instruction_options": [], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PCNUBI", "worker_id": "A2ECRNQ3X5LEXD"}], "B08X71XX1N": [{"asin": "B08X71XX1N", "instruction": "smart tv flat screen stereo sound", "attributes": ["plug play", "stereo sound"], "options": ["color: online version", "size: 48in"], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CFOV0B", "worker_id": "A3TTGSUBIK1YCL"}], "B09HH9G6N9": [{"asin": "B09HH9G6N9", "instruction": "looking for roasted carob powder with caffeine free and gluten free choose 1 pack", "attributes": ["caffeine free", "non gmo", "non dairy", "gluten free"], "options": ["size: 1 pack"], "instruction_attributes": ["caffeine free", "gluten free"], "instruction_options": ["1 pack"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSQCX0W", "worker_id": "A10OGH5CQBXL5N"}], "B08LCQHS8V": [{"asin": "B08LCQHS8V", "instruction": "i am looking fore a 24 pack of individually wrapped chocolates.", "attributes": ["individually wrapped", "chocolate covered"], "options": ["flavor name: dark chocolate covered marshmallow", "size: 24 count"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["24 count"], "assignment_id": "351SEKWQSBRP7CP60H83T50CFBSMDL", "worker_id": "A2ECRNQ3X5LEXD"}], "B081GGTX12": [{"asin": "B081GGTX12", "instruction": "i am looking for a wireless charger", "attributes": ["usb port", "wireless charging"], "options": [""], "instruction_attributes": ["wireless charging"], "instruction_options": [], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3NRRYI", "worker_id": "A2ECRNQ3X5LEXD"}], "B06WW7XRFP": [{"asin": "B06WW7XRFP", "instruction": "i'm looking for a king platform bed with solid wood in taylan style", "attributes": ["non slip", "steel frame", "solid wood"], "options": ["size: king", "style: taylan"], "instruction_attributes": ["solid wood"], "instruction_options": ["king", "taylan"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZHCPR8", "worker_id": "A2Y2TURT2VEYZN"}], "B08QD45PHZ": [{"asin": "B08QD45PHZ", "instruction": "i would like a 2.8 mm dome camera that is in ultra hd.", "attributes": ["plug play", "ultra hd", "high performance", "high speed", "optical zoom"], "options": ["pattern name: 2.8mm poe-4k"], "instruction_attributes": ["ultra hd"], "instruction_options": ["2.8mm poe-4k"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCSZ9BU", "worker_id": "A1WS884SI0SLO4"}], "B098Q9MZ83": [{"asin": "B098Q9MZ83", "instruction": "i would like a 52\" w x 84\" white window panel that is machine washable.", "attributes": ["machine washable", "white item", "living room"], "options": ["color: white", "size: 52\" w x 84\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["white", "52\" w x 84\" l"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FK3U49", "worker_id": "A1WS884SI0SLO4"}], "B01H4EX6FA": [{"asin": "B01H4EX6FA", "instruction": "i would like a long lasting eye cruelty free shadow base.", "attributes": ["travel size", "paraben free", "cruelty free", "long lasting"], "options": [""], "instruction_attributes": ["cruelty free", "long lasting"], "instruction_options": [], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQIYKE7", "worker_id": "A1WS884SI0SLO4"}], "B08MLLY79Y": [{"asin": "B08MLLY79Y", "instruction": "i am looking for slifm fit adidas women's essentials fleece tapered cuff pants in black color", "attributes": ["slim fit", "elastic waist"], "options": ["color: black", "size: small"], "instruction_attributes": ["slim fit"], "instruction_options": ["black"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPC8QDV", "worker_id": "AX2EWYWZM19AZ"}], "B07NQJD1NN": [{"asin": "B07NQJD1NN", "instruction": "i am looking for banana pecan fruit snacks that are gluten free.", "attributes": ["non gmo", "gluten free", "quality ingredients", "perfect gift"], "options": ["flavor name: banana pecan", "size: 0.8 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["banana pecan"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QTUOXF", "worker_id": "A2ECRNQ3X5LEXD"}], "B019JNH6NM": [{"asin": "B019JNH6NM", "instruction": "i am looking for thai chilli style tuna that has jalapeno flavor. it should be gluten free.", "attributes": ["wild caught", "soy free", "gluten free"], "options": ["flavor name: jalapeno", "size: 2.6 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["jalapeno"], "assignment_id": "354P56DE9VDCOY11T1135MPMLPU7SC", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B019JNH6NM", "instruction": "i need wild caught salmon that comes in a pack of 12", "attributes": ["wild caught", "soy free", "gluten free"], "options": ["flavor name: sriracha", "size: 2.6 ounce (pack of 12)"], "instruction_attributes": ["wild caught"], "instruction_options": ["2.6 ounce (pack of 12)"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTK9V50", "worker_id": "A2ECRNQ3X5LEXD"}], "B082Z6XVLX": [{"asin": "B082Z6XVLX", "instruction": "i am looking for a scalp massager brush for hair growth which is easy to use. also choose black color", "attributes": ["easy use", "hair removal", "hair growth", "hair loss"], "options": ["color: black"], "instruction_attributes": ["easy use", "hair growth"], "instruction_options": ["black"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GFXZUH", "worker_id": "A2HMEGTAFO0CS8"}], "B0838D7YNZ": [{"asin": "B0838D7YNZ", "instruction": "i am looking for a black 24inch size vanity light fixture", "attributes": ["vanity light", "light fixture"], "options": ["size: black 24inch"], "instruction_attributes": ["vanity light", "light fixture"], "instruction_options": ["black 24inch"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACT6HN0", "worker_id": "A9QRQL9CFJBI7"}], "B07ZDVNYXD": [{"asin": "B07ZDVNYXD", "instruction": "i would like a queen sized black bed with a box spring mattress.", "attributes": ["easy assemble", "box spring"], "options": ["color: black", "size: queen"], "instruction_attributes": ["box spring"], "instruction_options": ["black", "queen"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1D0GYT", "worker_id": "A1WS884SI0SLO4"}], "B0179DYV0U": [{"asin": "B0179DYV0U", "instruction": "i am looking for tan colored queen folding mattresses with high density foam.", "attributes": ["twin size", "high density"], "options": ["color: tan", "size: twin size 4x39x75"], "instruction_attributes": ["high density"], "instruction_options": ["tan"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYFV82R", "worker_id": "A3FG5PQHG5AH3Y"}], "B00BDJODWI": [{"asin": "B00BDJODWI", "instruction": "i want aveda scalp benefits balancing shampoo, plant based and size of 33.81 fl oz", "attributes": ["design house", "plant based"], "options": ["scent: clove", "size: 33.81 fl oz (pack of 1)"], "instruction_attributes": ["plant based"], "instruction_options": ["33.81 fl oz (pack of 1)"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3UOZ9R", "worker_id": "A1IL2K0ELYI090"}, {"asin": "B00BDJODWI", "instruction": "i want a bottle of shampoo that's at least thirty ounces, smells like rosemary, and is plant based.", "attributes": ["design house", "plant based"], "options": ["scent: rosemary", "size: 33.8 fl oz (pack of 1)"], "instruction_attributes": ["plant based"], "instruction_options": ["rosemary", "33.8 fl oz (pack of 1)"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPK9E6L", "worker_id": "AR9AU5FY1S3RO"}], "B07WLYKJB6": [{"asin": "B07WLYKJB6", "instruction": "i'm looking for xx-large long sleeve polo shirts for men that are hand washable and regular fit. also, i want it to be grey.", "attributes": ["hand wash", "long sleeve", "regular fit", "button closure"], "options": ["color: grey", "size: xx-large"], "instruction_attributes": ["hand wash", "long sleeve", "regular fit"], "instruction_options": ["grey", "xx-large"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LHQ0L1", "worker_id": "A34EHWOYRBL6OZ"}], "B09B1GDM5G": [{"asin": "B09B1GDM5G", "instruction": "i am interested in a plant based energy drink that is cucumber lime flavor.", "attributes": ["plant based", "non gmo", "gluten free", "zero sugar", "artificial flavors"], "options": ["flavor name: cucumber lime"], "instruction_attributes": ["plant based"], "instruction_options": ["cucumber lime"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIM5FEO", "worker_id": "A2ECRNQ3X5LEXD"}], "B09RZYGLT4": [{"asin": "B09RZYGLT4", "instruction": "i need some slim fitting white jeans that are an x-large.", "attributes": ["daily casual", "slim fit", "machine wash", "imported zipper", "elastic waist", "short sleeve"], "options": ["color: 01-white", "size: x-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["01-white", "x-large"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWTOPF0", "worker_id": "A2ECRNQ3X5LEXD"}], "B0792MF532": [{"asin": "B0792MF532", "instruction": "i'm looking for a pack of 12 cans of zesty lemon tuna in olive oil; it must be kosher certified.", "attributes": ["wild caught", "ready eat", "kosher certified"], "options": ["flavor name: zesty lemon", "size: 12-pack"], "instruction_attributes": ["kosher certified"], "instruction_options": ["zesty lemon", "12-pack"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YZ73QY", "worker_id": "A3LIIE572Z4OG7"}], "B08YL39SKQ": [{"asin": "B08YL39SKQ", "instruction": "i'm looking for non toxic personal care for women's it easy to use.", "attributes": ["non toxic", "paraben free", "cruelty free", "high quality"], "options": ["color: glow down"], "instruction_attributes": ["non toxic"], "instruction_options": ["glow down"], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q7BIIY", "worker_id": "A16IQOX0DK14OJ"}], "B09KQF5YL1": [{"asin": "B09KQF5YL1", "instruction": "i need a tempered glass screen protector for my iphone 13 pro. it should be easy to install.", "attributes": ["ultra hd", "easy install", "tempered glass"], "options": ["color: silver", "size: iphone 13 pro"], "instruction_attributes": ["easy install", "tempered glass"], "instruction_options": ["iphone 13 pro"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OUYOP4", "worker_id": "AR9AU5FY1S3RO"}], "B09P4PR2WM": [{"asin": "B09P4PR2WM", "instruction": "i am looking for a high quality gold color eye shadow brush set which is easy to carry.", "attributes": ["easy carry", "high quality", "quality materials", "eye shadow"], "options": ["color: gold"], "instruction_attributes": ["easy carry", "high quality", "eye shadow"], "instruction_options": ["gold"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXPC2Z2", "worker_id": "A1V2JTEEBCXR20"}], "B0982B9JVG": [{"asin": "B0982B9JVG", "instruction": "i'm looking for a small womens solid color long sleeve v neck sweater that has a relaxed fit.", "attributes": ["relaxed fit", "long sleeve", "everyday wear"], "options": ["color: b#39 white", "size: small"], "instruction_attributes": ["relaxed fit", "long sleeve"], "instruction_options": ["small"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMRCQB4", "worker_id": "A34EHWOYRBL6OZ"}], "B08ZJBSLN7": [{"asin": "B08ZJBSLN7", "instruction": "i am interested in buying a laptop carrying case with colorful faces.", "attributes": ["compatible apple", "carrying case"], "options": ["color: colorful faces"], "instruction_attributes": ["carrying case"], "instruction_options": ["colorful faces"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1Y1GHEM", "worker_id": "AHXHM1PQTRWIQ"}], "B0892JGJWB": [{"asin": "B0892JGJWB", "instruction": "im looking for a large, rectangular storage ottoman made out of faux leather.", "attributes": ["faux leather", "solid wood", "storage space", "living room"], "options": ["color: b", "size: 60*40*40cm"], "instruction_attributes": ["faux leather", "storage space"], "instruction_options": [], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCZS4Q9", "worker_id": "AK3JMCIGU8MLU"}], "B000R9X6LO": [{"asin": "B000R9X6LO", "instruction": "i am looking for english muffins in high fructose", "attributes": ["low fat", "high fructose"], "options": [""], "instruction_attributes": ["high fructose"], "instruction_options": [], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMRIEXV", "worker_id": "A2MSIFDLOHI1UT"}], "B08J8DJF6S": [{"asin": "B08J8DJF6S", "instruction": "i am looking for a poster of size 12\"x12\" with wood frame.", "attributes": ["wood frame", "solid wood"], "options": ["color: mother and child elephant", "size: 12\"x12\""], "instruction_attributes": ["wood frame"], "instruction_options": ["12\"x12\""], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y59NN9", "worker_id": "A1Q8PPQQCWGY0D"}], "B08V1VTKL6": [{"asin": "B08V1VTKL6", "instruction": "i'm looking for a quad core android tablet in black.", "attributes": ["high speed", "quad core"], "options": ["color: black", "size: 6+64"], "instruction_attributes": ["quad core"], "instruction_options": ["black"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS4UVUG", "worker_id": "AR9AU5FY1S3RO"}], "B09FTZMG9Y": [{"asin": "B09FTZMG9Y", "instruction": "i would like a large black faux fur vest.", "attributes": ["winter warm", "loose fit", "faux fur", "long sleeve", "teen girls"], "options": ["color: $07 black", "size: large"], "instruction_attributes": ["faux fur"], "instruction_options": ["$07 black", "large"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA9YS27", "worker_id": "A1WS884SI0SLO4"}], "B083G5KQ31": [{"asin": "B083G5KQ31", "instruction": "i am looking for hands free car stereo receivers", "attributes": ["fast charging", "hands free"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZ11NCX", "worker_id": "A9QRQL9CFJBI7"}], "B079D51JGR": [{"asin": "B079D51JGR", "instruction": "i'm looking for a pair of black men's oxfords with a rubber outsole. i need a size eleven and a half.", "attributes": ["rubber outsole", "daily wear"], "options": ["color: lk black", "size: 11.5"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["lk black", "11.5"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX30SU1V", "worker_id": "AR9AU5FY1S3RO"}], "B09QXQ6C97": [{"asin": "B09QXQ6C97", "instruction": "i am looking for caramel flavor chocolate candy for valentine day.", "attributes": ["individually wrapped", "kosher certified", "valentine day"], "options": ["flavor name: caramel", "size: 2 pound"], "instruction_attributes": ["valentine day"], "instruction_options": ["caramel"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC69NIN", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09QXQ6C97", "instruction": "i am looking for 2 pounds of individually wrapped milk chocolate candy.", "attributes": ["individually wrapped", "kosher certified", "valentine day"], "options": ["flavor name: dark", "size: 2 pound"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["2 pound"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G761749", "worker_id": "A1EREKSZAA9V7B"}], "B09SF1QP1J": [{"asin": "B09SF1QP1J", "instruction": "i need a black open toe pair of flat sandals. it should be 7.5 in width.", "attributes": ["open toe", "closed toe", "ankle strap", "arch support"], "options": ["color: a9 - black", "size: 7.5 wide"], "instruction_attributes": ["open toe"], "instruction_options": ["a9 - black", "7.5 wide"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDVYY88", "worker_id": "A1NF6PELRKACS9"}], "B08KVX5DPB": [{"asin": "B08KVX5DPB", "instruction": "i'm looking for a space-saving ottoman bench to match my blue living room. pick that one that's 100x45x45cm.", "attributes": ["space saving", "living room"], "options": ["color: blue", "size: 100x45x45cm"], "instruction_attributes": ["space saving", "living room"], "instruction_options": ["blue", "100x45x45cm"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLV803W", "worker_id": "A3LIIE572Z4OG7"}], "B093SNC4Y4": [{"asin": "B093SNC4Y4", "instruction": "i want x-small heynuts hawthorn athletic women's high waist yoga shorts.", "attributes": ["high waist", "nylon spandex"], "options": ["color: denim blue_8\"", "size: x-small"], "instruction_attributes": ["high waist"], "instruction_options": ["x-small"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZDGAPD", "worker_id": "A2RBF3IIJP15IH"}], "B07SCXCP4S": [{"asin": "B07SCXCP4S", "instruction": "i would like a hair growth treatment.", "attributes": ["hair growth", "hair loss"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPBHOCO", "worker_id": "A1WS884SI0SLO4"}], "B09QPQPWZD": [{"asin": "B09QPQPWZD", "instruction": "i need a medium low rise thong that is yellow", "attributes": ["low rise", "daily wear"], "options": ["color: yellow", "size: medium"], "instruction_attributes": ["low rise"], "instruction_options": ["yellow", "medium"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4FRBS8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09C7TRDLB": [{"asin": "B09C7TRDLB", "instruction": "i would like a red light high power light string.", "attributes": ["easy use", "high power", "aluminum alloy"], "options": ["color: red, pisa leaning tower type"], "instruction_attributes": ["high power"], "instruction_options": ["red, pisa leaning tower type"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7Y9LH5", "worker_id": "A1WS884SI0SLO4"}], "B09JWHF531": [{"asin": "B09JWHF531", "instruction": "i would like a cupcake pick toppers for a birthday party.", "attributes": ["cupcake picks", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["cupcake picks", "birthday party"], "instruction_options": [], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUL8R3M", "worker_id": "A1WS884SI0SLO4"}], "B09PZG5T25": [{"asin": "B09PZG5T25", "instruction": "i'm looking for a wireless bluetooth speaker that is easy to use and is also black.", "attributes": ["easy use", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["easy use", "wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTW6E49", "worker_id": "A34EHWOYRBL6OZ"}], "B09KTY1MHD": [{"asin": "B09KTY1MHD", "instruction": "i am looking for women nail art decorations that are non toxic.", "attributes": ["non toxic", "nail art"], "options": [""], "instruction_attributes": ["non toxic"], "instruction_options": [], "assignment_id": "388U7OUMFIBM5814TDGP0XA3R9HR0K", "worker_id": "A1Q8PPQQCWGY0D"}], "B092CGQ7MF": [{"asin": "B092CGQ7MF", "instruction": "i would like some black brushes that are made of synthetic hair.", "attributes": ["easy use", "high quality", "synthetic hair", "eye shadow"], "options": ["color: black"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["black"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7ZBP5I", "worker_id": "A2ECRNQ3X5LEXD"}], "B01NBRKJ0N": [{"asin": "B01NBRKJ0N", "instruction": "i am looking for v8 splash with natural pineapple coconut flavor. 64 oz bottles (pack of 6).", "attributes": ["natural flavors", "artificial colors"], "options": ["flavor: mango peach"], "instruction_attributes": ["natural flavors"], "instruction_options": ["mango peach"], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIJ200F", "worker_id": "A2KW17G25L25R8"}], "B085ZF4KM2": [{"asin": "B085ZF4KM2", "instruction": "i'm looking for gluten free that flavor was vanilla cream its so good.", "attributes": ["plant based", "soy free", "non gmo", "gluten free", "artificial flavors"], "options": ["flavor name: vanilla cream", "size: 10 servings"], "instruction_attributes": ["gluten free"], "instruction_options": ["vanilla cream"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95UUXQE", "worker_id": "A16IQOX0DK14OJ"}], "B09QMM4HDH": [{"asin": "B09QMM4HDH", "instruction": "i want to buy a long sleeved lace bodysuit in red. look for size medium.", "attributes": ["hand wash", "long sleeve", "daily wear"], "options": ["color: red", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["red", "medium"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZSVK31", "worker_id": "AR9AU5FY1S3RO"}], "B088H41ZHJ": [{"asin": "B088H41ZHJ", "instruction": "i would like a temporary tattoo that is easy to apply and is in the 06 pattern", "attributes": ["easy apply", "non toxic"], "options": ["pattern name: pattern 06"], "instruction_attributes": ["easy apply"], "instruction_options": ["pattern 06"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8Z7PZF", "worker_id": "A2ECRNQ3X5LEXD"}], "B094FMFL9D": [{"asin": "B094FMFL9D", "instruction": "i am looking for a hollow side console table that is easy to assemble.", "attributes": ["easy assemble", "clear glass", "living room"], "options": ["style: hollow side"], "instruction_attributes": ["easy assemble"], "instruction_options": ["hollow side"], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM9591IY", "worker_id": "A2ECRNQ3X5LEXD"}], "B088LGSRTG": [{"asin": "B088LGSRTG", "instruction": "i am looking for a conditioner that comes in a pack of three for natural hair.", "attributes": ["coconut oil", "natural ingredients", "natural hair", "hair loss"], "options": ["size: 7 fl oz (pack of 3)", "style: conditioner"], "instruction_attributes": ["natural hair"], "instruction_options": ["7 fl oz (pack of 3)", "conditioner"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TUOPMV", "worker_id": "A2ECRNQ3X5LEXD"}], "B07QNBKBVC": [{"asin": "B07QNBKBVC", "instruction": "i'm looking for a size 35 straight leg men denim jeans.", "attributes": ["straight leg", "machine wash", "loose fit", "wash cold", "slim fit", "button closure"], "options": ["color: dark blue 9208", "size: 35"], "instruction_attributes": ["straight leg"], "instruction_options": ["35"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKSEPEN", "worker_id": "ARQ05PDNXPFDI"}], "B06XR72LGR": [{"asin": "B06XR72LGR", "instruction": "i'm looking for some trader joe's gluten free cornbread mix.", "attributes": ["trader joe", "gluten free"], "options": [""], "instruction_attributes": ["trader joe", "gluten free"], "instruction_options": [], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTS4E5H", "worker_id": "AR9AU5FY1S3RO"}], "B09GB463Y2": [{"asin": "B09GB463Y2", "instruction": "i'm looking for long sleeve clothing its for blue in clor.", "attributes": ["contrast color", "polyester cotton", "long sleeve", "teen girls"], "options": ["color: blue", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0253XAKZ", "worker_id": "A16IQOX0DK14OJ"}], "B07MGX59S6": [{"asin": "B07MGX59S6", "instruction": "i would like a late night drone right lipstick that is paraben free.", "attributes": ["fragrance free", "paraben free", "cruelty free"], "options": ["color: 13- late night done right"], "instruction_attributes": ["paraben free"], "instruction_options": ["13- late night done right"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3J2YAG", "worker_id": "A1WS884SI0SLO4"}], "B071XXVMX2": [{"asin": "B071XXVMX2", "instruction": "i'm looking for a copper wall mounted sconce with clear glass shades.", "attributes": ["wall mounted", "glass shade", "clear glass", "light fixture"], "options": ["color: copper"], "instruction_attributes": ["wall mounted", "glass shade", "clear glass"], "instruction_options": ["copper"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTVZL7P", "worker_id": "AR9AU5FY1S3RO"}], "B07Z6NG5PG": [{"asin": "B07Z6NG5PG", "instruction": "i would like a 4 ounce bag of regular old fashioned jerky.", "attributes": ["old fashioned", "gluten free"], "options": ["flavor name: regular", "size: 4 oz"], "instruction_attributes": ["old fashioned"], "instruction_options": ["regular", "4 oz"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGM2O0D", "worker_id": "A1WS884SI0SLO4"}], "B00BEV82RC": [{"asin": "B00BEV82RC", "instruction": "find me a high power waterproof binoculars for bird watching.", "attributes": ["high power", "bird watching"], "options": [""], "instruction_attributes": ["high power", "bird watching"], "instruction_options": [], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LEYO16", "worker_id": "A3AYHESLQSDY5T"}], "B08GQYQ9D1": [{"asin": "B08GQYQ9D1", "instruction": "i need a core i5 computer with gtx1650 graphics and 16g+256gb+1t", "attributes": ["core i5", "aluminum alloy"], "options": ["color: gtx1650", "size: 16g+256g+1t"], "instruction_attributes": ["core i5"], "instruction_options": ["gtx1650", "16g+256g+1t"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVJGP1A", "worker_id": "A2Y2TURT2VEYZN"}], "B0872P6WRB": [{"asin": "B0872P6WRB", "instruction": "i am looking for monoculars that are for bird watching", "attributes": ["non slip", "easy use", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUWCQJG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08Z6TCQTD": [{"asin": "B08Z6TCQTD", "instruction": "i want brushed nickel linea di liara teramo island lighting for my dining room.", "attributes": ["clear glass", "dining room"], "options": ["color: brushed nickel | clear", "size: 42\" linear"], "instruction_attributes": ["dining room"], "instruction_options": ["brushed nickel | clear"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JD0FSB", "worker_id": "A2RBF3IIJP15IH"}], "B07Y59L1Z2": [{"asin": "B07Y59L1Z2", "instruction": "i would like a quad core streaming media player.", "attributes": ["batteries included", "ultra hd", "high definition", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW0IC10", "worker_id": "A1WS884SI0SLO4"}], "B097MM9XDP": [{"asin": "B097MM9XDP", "instruction": "i would like a pair of women's 11.5 colorful sugar skull sneakers with a anti slip sole.", "attributes": ["non slip", "slip resistant", "anti slip", "arch support"], "options": ["color: colourful sugar skull white-2", "size: 11.5 women | 10 men"], "instruction_attributes": ["anti slip"], "instruction_options": ["colourful sugar skull white-2", "11.5 women | 10 men"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV2KX3F", "worker_id": "A1WS884SI0SLO4"}], "B07PP8X2DS": [{"asin": "B07PP8X2DS", "instruction": "i am looking for tripod stand that is non slippable.", "attributes": ["quick release", "non slip", "carrying case"], "options": [""], "instruction_attributes": ["non slip"], "instruction_options": [], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3MBYR7", "worker_id": "A1Q8PPQQCWGY0D"}], "B088X52CZR": [{"asin": "B088X52CZR", "instruction": "i would like a 3 pack set of non gmo tree nuts.", "attributes": ["nut free", "easy use", "non gmo"], "options": ["flavor: tree nut", "size: 3 pack set"], "instruction_attributes": ["non gmo"], "instruction_options": ["tree nut", "3 pack set"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA6LC8H", "worker_id": "A1WS884SI0SLO4"}], "B09PD9N2R2": [{"asin": "B09PD9N2R2", "instruction": "i'm looking for a body brush to remove dead skin", "attributes": ["long handle", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["dead skin"], "instruction_options": [], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIMCFEV", "worker_id": "A2Y2TURT2VEYZN"}], "B08CCT3JN2": [{"asin": "B08CCT3JN2", "instruction": "i need red sneakers that have a leather sole and are a size 7 x-wide", "attributes": ["leather sole", "arch support"], "options": ["color: dark red", "size: 7 x-wide"], "instruction_attributes": ["leather sole"], "instruction_options": ["dark red", "7 x-wide"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKTBV7S", "worker_id": "A2ECRNQ3X5LEXD"}], "B07SLNLB9D": [{"asin": "B07SLNLB9D", "instruction": "i want ready hang living room poster size 61*41cm the bridges of amsterdam", "attributes": ["ready hang", "living room"], "options": ["color: the bridges of amsterdam", "size: 61 x 41 cm (24 x 16 in)"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["the bridges of amsterdam", "61 x 41 cm (24 x 16 in)"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2VLM56", "worker_id": "A3N9ZYQAESNFQH"}], "B08968B883": [{"asin": "B08968B883", "instruction": "i need easy to use, water resistant eye shadow in dark brown color.", "attributes": ["water resistant", "easy use", "eye shadow"], "options": ["color: dark brown"], "instruction_attributes": ["water resistant", "easy use", "eye shadow"], "instruction_options": ["dark brown"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRM0I3WW", "worker_id": "ASWFLI3N8X72G"}], "B07CYK25W8": [{"asin": "B07CYK25W8", "instruction": "i am interested in acquiring a bookcase which will last me a long time and i prefer to have it in anthracite color.", "attributes": ["long lasting", "engineered wood"], "options": ["color: anthracite"], "instruction_attributes": ["long lasting"], "instruction_options": ["anthracite"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0F416W", "worker_id": "AJY5G987IRT25"}], "B07VWR4HT1": [{"asin": "B07VWR4HT1", "instruction": "i am looking for a black video projector that is 1080p", "attributes": ["1080p hd", "high definition", "usb port"], "options": ["color: black"], "instruction_attributes": ["1080p hd"], "instruction_options": ["black"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO7CR2F", "worker_id": "A2ECRNQ3X5LEXD"}], "B09KRP73M2": [{"asin": "B09KRP73M2", "instruction": "i need style 5 hair salon", "attributes": ["easy clean", "high quality", "hair salon", "beauty salon"], "options": ["color: style 5"], "instruction_attributes": ["hair salon"], "instruction_options": ["style 5"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UHKA3X", "worker_id": "A226L9F2AZ38CL"}], "B08QDRKQPL": [{"asin": "B08QDRKQPL", "instruction": "i am looking for high power and dust proof sound bar.", "attributes": ["dust proof", "high power"], "options": [""], "instruction_attributes": ["dust proof", "high power"], "instruction_options": [], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79SN1HY", "worker_id": "A1Q8PPQQCWGY0D"}], "B06WD5R33H": [{"asin": "B06WD5R33H", "instruction": "i'm looking for one hundred and eight inch brown curtains that are machine washable.", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: brown", "size: 108\" x 84\""], "instruction_attributes": ["machine washable"], "instruction_options": ["brown", "108\" x 84\""], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9VPTEM", "worker_id": "AR9AU5FY1S3RO"}], "B097PTCQ44": [{"asin": "B097PTCQ44", "instruction": "i'm looking for a thirty inch mirror for my living room that's easy to install. it should also turn into a lighted lunar picture.", "attributes": ["ready hang", "easy install", "living room", "dining room"], "options": ["color: lunar", "size: 30\""], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["lunar", "30\""], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGM10OO", "worker_id": "AR9AU5FY1S3RO"}], "B01FU0230Y": [{"asin": "B01FU0230Y", "instruction": "i am looking for a 32 inch by 48 inch ready to hang hand painted painting.", "attributes": ["hand painted", "ready hang"], "options": ["size: 32x48inchesx1"], "instruction_attributes": ["hand painted", "ready hang"], "instruction_options": ["32x48inchesx1"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYUAZO7", "worker_id": "A1EREKSZAA9V7B"}], "B09JFNXRDR": [{"asin": "B09JFNXRDR", "instruction": "i need a super soft easy to clean blanket in bible verse trust in the lord color and 50x40 small size for kid.", "attributes": ["super soft", "easy clean", "living room"], "options": ["color: bible verse trust in the lord", "size: 50x40 small for kid"], "instruction_attributes": ["super soft", "easy clean"], "instruction_options": ["bible verse trust in the lord", "50x40 small for kid"], "assignment_id": "37TRT2X24116R7L1JO45INKV8W3JBP", "worker_id": "A3AYHESLQSDY5T"}], "B07HYKGNHN": [{"asin": "B07HYKGNHN", "instruction": "i need lace closure in bliss blue color", "attributes": ["lace closure", "rubber outsole"], "options": ["color: bliss blue hrtg cvs", "size: 9.5 b - medium us"], "instruction_attributes": ["lace closure"], "instruction_options": ["bliss blue hrtg cvs"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALC6H40", "worker_id": "A226L9F2AZ38CL"}], "B09Q6DWRZH": [{"asin": "B09Q6DWRZH", "instruction": "i am looking for a loose fit small size women's t shirt.", "attributes": ["quick drying", "machine washable", "loose fit", "long sleeve", "short sleeve", "laundry bag", "daily wear"], "options": ["color: new dressy - b450 -black", "size: small"], "instruction_attributes": ["loose fit"], "instruction_options": ["small"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCZC46A", "worker_id": "A1Q8PPQQCWGY0D"}], "B06XKBJR74": [{"asin": "B06XKBJR74", "instruction": "buy me a cruelty free solid perfume with a flirt scent.", "attributes": ["cruelty free", "animal testing"], "options": ["scent: flirt"], "instruction_attributes": ["cruelty free"], "instruction_options": ["flirt"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVD98VK", "worker_id": "AVIEE6LDH0BT5"}], "B078KGBP2N": [{"asin": "B078KGBP2N", "instruction": "i am looking for men scrubs pant of pewter color that is machine washable.", "attributes": ["easy care", "moisture wicking", "machine washable", "machine wash", "polyester spandex", "stretch fabric", "imported zipper", "button closure"], "options": ["color: pewter", "size: x-small short"], "instruction_attributes": ["machine washable"], "instruction_options": ["pewter"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVQZKJX", "worker_id": "A1Q8PPQQCWGY0D"}], "B07CKNJ3P7": [{"asin": "B07CKNJ3P7", "instruction": "i'm looking for high waist biker shorts for women with pockets tummy.", "attributes": ["moisture wicking", "high waist", "stretch fabric", "tummy control"], "options": ["color: deep navy-9\" inseam", "size: 3x-large"], "instruction_attributes": ["high waist", "tummy control"], "instruction_options": ["deep navy-9\" inseam"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R76TYD", "worker_id": "A21IUUHBSEVB56"}], "B09HTZZ45V": [{"asin": "B09HTZZ45V", "instruction": "i need to find a strawberry-flavoured toothpaste for my child to keep her breath fresh; make sure it only has natural ingredients.", "attributes": ["fluoride free", "natural ingredients", "fresh breath"], "options": ["color: strawberry"], "instruction_attributes": ["natural ingredients", "fresh breath"], "instruction_options": ["strawberry"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HRIWOO", "worker_id": "A3LIIE572Z4OG7"}], "B07X5K7QB3": [{"asin": "B07X5K7QB3", "instruction": "i want to buy underwear boxer for men which are low rise and are hand washable, as for the color i want them yellow and at 3x-large size.", "attributes": ["low rise", "day comfort", "wash cold", "hand wash", "machine wash", "dry clean"], "options": ["color: yellow 3 pack", "size: 3x-large"], "instruction_attributes": ["low rise", "hand wash"], "instruction_options": ["yellow 3 pack", "3x-large"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODQ1EWT", "worker_id": "AJY5G987IRT25"}], "B00XENXJTO": [{"asin": "B00XENXJTO", "instruction": "i would like a 100 count bamboo charcoal oil free blotting paper.", "attributes": ["easy use", "oil free"], "options": ["color: mirror-pack | bamboo-charcoal", "size: 100 count (pack of 2)"], "instruction_attributes": ["oil free"], "instruction_options": ["mirror-pack | bamboo-charcoal", "100 count (pack of 2)"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH781VY", "worker_id": "A1WS884SI0SLO4"}], "B074J4XDTQ": [{"asin": "B074J4XDTQ", "instruction": "i need some yellow curtains for my living room.", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: dimgray yellow", "size: 108\" x 108\""], "instruction_attributes": ["living room"], "instruction_options": ["dimgray yellow"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7PK3IP", "worker_id": "A2ECRNQ3X5LEXD"}], "B07R4VNCRC": [{"asin": "B07R4VNCRC", "instruction": "i am looking for ethylene vinyl cat color women road running shoes , and size is 6", "attributes": ["non slip", "ethylene vinyl", "vinyl acetate"], "options": ["color: cat-1", "size: 6"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["cat-1", "6"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95VSXQE", "worker_id": "A258PTOZ3D2TQR"}], "B07QCD9W67": [{"asin": "B07QCD9W67", "instruction": "i'm looking for toddler smoothie pouches that are non-gmo, certified organic, and bpa free.", "attributes": ["certified organic", "non gmo", "bpa free"], "options": [""], "instruction_attributes": ["certified organic", "non gmo", "bpa free"], "instruction_options": [], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6LVB28", "worker_id": "AR9AU5FY1S3RO"}], "B07Y2RKJ9G": [{"asin": "B07Y2RKJ9G", "instruction": "i want a large and classic fit phineas and ferb perry the platypus shirt.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: asphalt", "fit type: men", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["large"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL4ZNS3", "worker_id": "A2RBF3IIJP15IH"}], "B09MY498ZT": [{"asin": "B09MY498ZT", "instruction": "i am looking for a manual toothbrush for easy use to oral hygiene. also choose violet color.", "attributes": ["easy use", "oral hygiene"], "options": ["color: violet"], "instruction_attributes": ["easy use", "oral hygiene"], "instruction_options": ["violet"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3V4L1NW", "worker_id": "A2HMEGTAFO0CS8"}], "B09MRYN7WH": [{"asin": "B09MRYN7WH", "instruction": "i am looking for twin sized bunk beds that are white.", "attributes": ["twin size", "space saving", "white item", "assembly required", "easy assemble", "white finish"], "options": ["color: white", "size: triple bunk beds"], "instruction_attributes": ["twin size"], "instruction_options": ["white", "triple bunk beds"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80FNQ1N", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09MRYN7WH", "instruction": "i am looking for an easy to assemble brown triple bunk beds.", "attributes": ["twin size", "space saving", "white item", "assembly required", "easy assemble", "white finish"], "options": ["color: brown", "size: triple bunk beds"], "instruction_attributes": ["easy assemble"], "instruction_options": ["brown", "triple bunk beds"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBQMEJK", "worker_id": "A1EREKSZAA9V7B"}], "B09K432WXZ": [{"asin": "B09K432WXZ", "instruction": "i'm looking for women's bootcut pants in the brand of tapata.", "attributes": ["day comfort", "fashion design", "tummy control", "regular fit", "daily wear"], "options": ["color: black", "fit type: 30 inseam (regular) [fits 5'5\"-5'8\"]", "size: large"], "instruction_attributes": ["fashion design", "regular fit", "daily wear"], "instruction_options": ["30 inseam (regular) [fits 5'5\"-5'8\"]", "large"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYSYXFX", "worker_id": "A21IUUHBSEVB56"}], "B07VBWTZLV": [{"asin": "B07VBWTZLV", "instruction": "i want one pack of paraben free hair styling spray in size 5.5 ounce.", "attributes": ["certified organic", "paraben free", "hair styling"], "options": ["size: 5.5 ounce (pack of 1)"], "instruction_attributes": ["paraben free", "hair styling"], "instruction_options": ["5.5 ounce (pack of 1)"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP646VDD", "worker_id": "ASWFLI3N8X72G"}, {"asin": "B07VBWTZLV", "instruction": "i want to find 5.5 ounces of hair styling spray that is certified organic.", "attributes": ["certified organic", "paraben free", "hair styling"], "options": ["size: 5.5 ounce (pack of 1)"], "instruction_attributes": ["certified organic", "hair styling"], "instruction_options": ["5.5 ounce (pack of 1)"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SU9UDT", "worker_id": "A345TDMHP3DQ3G"}], "B07MQD33ZZ": [{"asin": "B07MQD33ZZ", "instruction": "i would like a 104''w x 84'' l trianglwxf4152 window panel that is machine washable.", "attributes": ["machine washable", "living room"], "options": ["color: trianglewxf4152", "size: 104''w x 84'' l"], "instruction_attributes": ["machine washable"], "instruction_options": ["trianglewxf4152", "104''w x 84'' l"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQNL319", "worker_id": "A1WS884SI0SLO4"}], "B09KH6SS25": [{"asin": "B09KH6SS25", "instruction": "i'm looking for a high performance tablet with quad core processor. also, choose 4g+64gb emmc one.", "attributes": ["high performance", "quad core"], "options": ["capacity: 4g+64gb emmc"], "instruction_attributes": ["high performance", "quad core"], "instruction_options": ["4g+64gb emmc"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPDOOR0", "worker_id": "AR0VJ5XRG16UJ"}], "B07MCMHT7R": [{"asin": "B07MCMHT7R", "instruction": "i am looking for gluten free and crispy potato snacks with barbecue flavour .", "attributes": ["gluten free", "artificial flavors"], "options": ["flavor name: barbecue", "size: 0.67 ounce (pack of 5)"], "instruction_attributes": ["gluten free"], "instruction_options": ["barbecue"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMXISA6", "worker_id": "A3R8PQCD99H61E"}], "B08YR1VP2C": [{"asin": "B08YR1VP2C", "instruction": "i am searching for fluffy faux fur duvet cover set of queen size and aqua color", "attributes": ["queen size", "twin size", "king size"], "options": ["color: tie dye aqua", "size: twin"], "instruction_attributes": ["queen size"], "instruction_options": ["tie dye aqua"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCL2LBN", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08YR1VP2C", "instruction": "i need queen size turquoise color fluffy faux fur duvet cover set", "attributes": ["queen size", "twin size", "king size"], "options": ["color: tie dye turquoise", "size: twin"], "instruction_attributes": ["queen size"], "instruction_options": ["tie dye turquoise"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZZZAN3", "worker_id": "A258PTOZ3D2TQR"}], "B001IZM92I": [{"asin": "B001IZM92I", "instruction": "hi i'm going to barbecue sausage, i want you to find the special summer gluten free sausage old wisconsin beef sausages low carb flavored beef 8oz (pack of 3).", "attributes": ["ready eat", "high protein", "shelf stable", "low carb", "gluten free"], "options": ["flavor name: beef", "size: 8 ounce"], "instruction_attributes": ["high protein", "gluten free"], "instruction_options": ["beef", "8 ounce"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IYFHK9", "worker_id": "A15IJ20C3R4HUO"}], "B09L33P12S": [{"asin": "B09L33P12S", "instruction": "i'm interested in a pair of off-white, rubber-soled sneakers in a size 6 with memory foam.", "attributes": ["memory foam", "rubber sole"], "options": ["color: off white", "size: 6"], "instruction_attributes": ["memory foam", "rubber sole"], "instruction_options": ["off white", "6"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5BC0UQ6", "worker_id": "AFU00NU09CFXE"}], "B09SWJLF5M": [{"asin": "B09SWJLF5M", "instruction": "i am looking for a personalized, metal hair and beauty signage or artwork.", "attributes": ["hair salon", "beauty salon"], "options": ["size: 20 inches"], "instruction_attributes": ["hair salon", "beauty salon"], "instruction_options": [], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6HPPUN", "worker_id": "AK3JMCIGU8MLU"}], "B0897T87S2": [{"asin": "B0897T87S2", "instruction": "i am looking for pink non slip shoes that are a 10.5", "attributes": ["light weight", "non slip", "leather sole"], "options": ["color: pink-dm", "size: 10.5"], "instruction_attributes": ["non slip"], "instruction_options": ["pink-dm", "10.5"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3U09ZD", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PGK27KK": [{"asin": "B07PGK27KK", "instruction": "i am looking for canalis 3 mini pendant lighting led hanging light fixture.", "attributes": ["light fixture", "dining room"], "options": ["color: brass", "size: 4 pendant (s4)"], "instruction_attributes": ["light fixture"], "instruction_options": [], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC6BUKH", "worker_id": "A2KW17G25L25R8"}], "B00825IBGU": [{"asin": "B00825IBGU", "instruction": "i'm looking for a ready to hang wall mounted mirror for my living room. it should be round and come in silver brushed nickel.", "attributes": ["ready hang", "brushed nickel", "living room"], "options": ["color: bright silver", "style: round"], "instruction_attributes": ["ready hang", "brushed nickel", "living room"], "instruction_options": ["round"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2J9FKG", "worker_id": "AR9AU5FY1S3RO"}], "B08MBD8573": [{"asin": "B08MBD8573", "instruction": "i'm looking for a height adjustable laptop stand with tempered glass and walnut colored wood.", "attributes": ["height adjustable", "assembly required"], "options": ["color: walnut", "size: tempered glass (24\")"], "instruction_attributes": ["height adjustable"], "instruction_options": ["walnut", "tempered glass (24\")"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2A2Y7T", "worker_id": "AR9AU5FY1S3RO"}], "B09R1X5Y7Q": [{"asin": "B09R1X5Y7Q", "instruction": "i would like a 11.1 by 4.5 by 4.5 cm transparent makeup case for my nail art.", "attributes": ["leak proof", "easy use", "nail polish", "nail art"], "options": ["color: transparent 2", "size: 11.1x4.5x4.5cm"], "instruction_attributes": ["nail art"], "instruction_options": ["transparent 2", "11.1x4.5x4.5cm"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0M1MCSD", "worker_id": "A1WS884SI0SLO4"}], "B07QPC3454": [{"asin": "B07QPC3454", "instruction": "i am looking for gluten free snacks that made up by sea salt", "attributes": ["non gmo", "hand crafted", "gluten free", "simple ingredients"], "options": ["flavor name: sea salt"], "instruction_attributes": ["gluten free"], "instruction_options": ["sea salt"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8DXA59", "worker_id": "A16M39T60N60NO"}], "B08N4YVGBG": [{"asin": "B08N4YVGBG", "instruction": "i am looking for brown black throw pillow case that is double sided and super soft.", "attributes": ["double sided", "super soft", "machine washable", "printing technology", "living room"], "options": ["color: brown black", "size: 16\""], "instruction_attributes": ["double sided", "super soft"], "instruction_options": ["brown black"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCIAIBAC", "worker_id": "A1NF6PELRKACS9"}], "B08V134QWR": [{"asin": "B08V134QWR", "instruction": "i want to buy a waterproof security camera with an optical zoom and motion detection.", "attributes": ["optical zoom", "motion detection"], "options": [""], "instruction_attributes": ["optical zoom", "motion detection"], "instruction_options": [], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X027834Z", "worker_id": "A114NK7T5673GK"}], "B08DYZTSC5": [{"asin": "B08DYZTSC5", "instruction": "i want some margherita pizza that's gluten free.", "attributes": ["rich creamy", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTVY7LA", "worker_id": "AR9AU5FY1S3RO"}], "B072J36KT1": [{"asin": "B072J36KT1", "instruction": "i am looking for a elastic waistband small size active shorts for man", "attributes": ["quick drying", "machine wash", "elastic waistband"], "options": ["color: black (006) | matcha green", "size: small"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["small"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTOX5V6", "worker_id": "A9QRQL9CFJBI7"}], "B00BB683XS": [{"asin": "B00BB683XS", "instruction": "i'm looking for a ultimate hand care cream for dry skin", "attributes": ["dermatologist tested", "fragrance free", "green tea", "seed oil", "dry skin"], "options": ["style: ultimate care hand cream"], "instruction_attributes": ["dry skin"], "instruction_options": ["ultimate care hand cream"], "assignment_id": "33CID5710F37J25O7G1CGJZBOU3L3C", "worker_id": "A2Y2TURT2VEYZN"}], "B09CT74QK2": [{"asin": "B09CT74QK2", "instruction": "i am looking for short sleeve animal graphic t shirts.", "attributes": ["machine washable", "wash cold", "hand wash", "short sleeve", "daily wear", "teen girls"], "options": ["color: z04 beige", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["z04 beige"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X82PGD", "worker_id": "A2KW17G25L25R8"}], "B08521SGW3": [{"asin": "B08521SGW3", "instruction": "i'm looking for short and long sleeve and the elastic waist for women's the color was black.", "attributes": ["short sleeve", "elastic closure", "elastic waist", "teen girls"], "options": ["color: a-black", "size: medium"], "instruction_attributes": ["short sleeve", "elastic closure", "elastic waist"], "instruction_options": ["a-black"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLVRFTB", "worker_id": "A16IQOX0DK14OJ"}, {"asin": "B08521SGW3", "instruction": "i am looking for a xx-large short sleeves sleep & lounge for teen girls", "attributes": ["short sleeve", "elastic closure", "elastic waist", "teen girls"], "options": ["color: a-black", "size: xx-large"], "instruction_attributes": ["short sleeve", "teen girls"], "instruction_options": ["xx-large"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYELEI2", "worker_id": "A9QRQL9CFJBI7"}], "B07FN25TCW": [{"asin": "B07FN25TCW", "instruction": "im looking for men\u2019s small boxer briefs, long leg style that are moisture wicking.", "attributes": ["machine wash", "day comfort", "moisture wicking", "classic fit", "tumble dry"], "options": ["color: andover | red | black", "size: small"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["small"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L4CCVC", "worker_id": "AK3JMCIGU8MLU"}], "B01MSKUTNP": [{"asin": "B01MSKUTNP", "instruction": "i am looking for a six pack of gluten free jerky", "attributes": ["gluten free", "fat free"], "options": ["flavor name: super fun", "size: 6"], "instruction_attributes": ["gluten free"], "instruction_options": ["6"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKNIVP0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JNTH5XL": [{"asin": "B09JNTH5XL", "instruction": "i am looking for a loose fit shirt that is black and in a xx-large.", "attributes": ["loose fit", "long sleeve", "teen girls"], "options": ["color: a1_black", "size: xx-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["a1_black", "xx-large"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TUWPM3", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NTCSB7G": [{"asin": "B09NTCSB7G", "instruction": "i need some knee high boots that are black and in a size 5", "attributes": ["knee high", "anti slip", "steel toe", "high heel", "button closure"], "options": ["color: b-black", "size: 5"], "instruction_attributes": ["knee high"], "instruction_options": ["b-black", "5"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3MAYR6", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09NTCSB7G", "instruction": "am looking for a knee high runmte platform boots for women high boots size 9", "attributes": ["knee high", "anti slip", "steel toe", "high heel", "button closure"], "options": ["color: e-black", "size: 9"], "instruction_attributes": ["knee high"], "instruction_options": ["9"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WYEA1F", "worker_id": "A1IL2K0ELYI090"}], "B08L769ZS8": [{"asin": "B08L769ZS8", "instruction": "i am looking for hemp regular and gluten free vegan granola.", "attributes": ["gluten free", "certified organic", "natural ingredients"], "options": ["flavor name: hemp regular"], "instruction_attributes": ["gluten free"], "instruction_options": ["hemp regular"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0J1VGEE", "worker_id": "A3FG5PQHG5AH3Y"}], "B00VHYE5AO": [{"asin": "B00VHYE5AO", "instruction": "i am looking for distressed gaelic label short sleeve t-shits.", "attributes": ["wash cold", "machine wash", "comfortable fit", "short sleeve", "quality materials", "dry clean", "everyday wear", "tumble dry"], "options": ["color: black-gaelic", "size: large-trademark"], "instruction_attributes": ["short sleeve"], "instruction_options": ["black-gaelic"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAX5ZX0", "worker_id": "A2KW17G25L25R8"}], "B09HBV98LV": [{"asin": "B09HBV98LV", "instruction": "i would like a 3 piece set of natural ingredient hair growth treatments.", "attributes": ["natural ingredients", "hair growth", "hair loss", "dry hair"], "options": ["size: 3pcs"], "instruction_attributes": ["natural ingredients", "hair growth"], "instruction_options": ["3pcs"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP64DDV2", "worker_id": "A1WS884SI0SLO4"}], "B07ZZS34HH": [{"asin": "B07ZZS34HH", "instruction": "i need an elastic waist active short that is an x-large", "attributes": ["long lasting", "quality materials", "drawstring closure", "elastic waist"], "options": ["color: alternate team color", "size: x-large | 8\" inseam", "team name: alabama crimson tide"], "instruction_attributes": ["elastic waist"], "instruction_options": ["x-large | 8\" inseam"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXAECFE", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07ZZS34HH", "instruction": "i want a small and long lasting columbia men's pair of shorts.", "attributes": ["long lasting", "quality materials", "drawstring closure", "elastic waist"], "options": ["color: team color", "size: small x 6\" inseam", "team name: texas a&m aggies 2"], "instruction_attributes": ["long lasting"], "instruction_options": ["small x 6\" inseam"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCMYPIB", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B07ZZS34HH", "instruction": "many engineers choose long lasting, quality materials in alternate team color", "attributes": ["long lasting", "quality materials", "drawstring closure", "elastic waist"], "options": ["color: alternate team color", "size: small x 6\" inseam", "team name: auburn tigers 1"], "instruction_attributes": ["long lasting", "quality materials"], "instruction_options": ["alternate team color"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGW5TW7", "worker_id": "A226L9F2AZ38CL"}], "B004KXH8XK": [{"asin": "B004KXH8XK", "instruction": "i buy a design house in white color", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["design house"], "instruction_options": [], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3U0Z93", "worker_id": "A226L9F2AZ38CL"}], "B09F1S8HL4": [{"asin": "B09F1S8HL4", "instruction": "most people like sensitive skin in red color", "attributes": ["cruelty free", "anti aging", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQHSHHM", "worker_id": "A226L9F2AZ38CL"}], "B008YQEOMM": [{"asin": "B008YQEOMM", "instruction": "i want to buy an argan oil hair treatment for damaged hair.", "attributes": ["alcohol free", "argan oil", "damaged hair"], "options": [""], "instruction_attributes": ["argan oil", "damaged hair"], "instruction_options": [], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0QR8JO", "worker_id": "AR9AU5FY1S3RO"}], "B07L394Q5L": [{"asin": "B07L394Q5L", "instruction": "i am looking for rose gold fine mist, soothing and refreshing face spray, 3 pack - 3.4 fl oz", "attributes": ["paraben free", "cruelty free", "fine mist", "rose gold", "sensitive skin"], "options": ["size: .3 pack - 3.4 fl oz"], "instruction_attributes": ["fine mist", "rose gold"], "instruction_options": [".3 pack - 3.4 fl oz"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EGDB1P", "worker_id": "A258PTOZ3D2TQR"}], "B09Q313XLN": [{"asin": "B09Q313XLN", "instruction": "i want the orange color, 2 pcs of v34 color correction tooth whitening sensitive toothpaste for sensitive teeth and bad breath.", "attributes": ["sensitive teeth", "bad breath"], "options": ["color: orange"], "instruction_attributes": ["sensitive teeth", "bad breath"], "instruction_options": ["orange"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP84QZ75", "worker_id": "A1IL2K0ELYI090"}], "B08HGQMJ7S": [{"asin": "B08HGQMJ7S", "instruction": "i'm looking for furniture for space saving in living room.", "attributes": ["non slip", "space saving"], "options": ["color: rustic brown + black"], "instruction_attributes": ["space saving"], "instruction_options": [], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW94S8O", "worker_id": "A16IQOX0DK14OJ"}], "B09PBN5BVW": [{"asin": "B09PBN5BVW", "instruction": "i want a temporary tooth repair kit for teeth whitening.", "attributes": ["teeth whitening", "high quality"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SXHDUQ", "worker_id": "A2RBF3IIJP15IH"}], "B09BLB3BFM": [{"asin": "B09BLB3BFM", "instruction": "looking for a honiway decorative wall mirror 12.3 inch rustic wood frame for living room. keep in touch", "attributes": ["wall mounted", "wood frame", "solid wood", "living room"], "options": [""], "instruction_attributes": ["wood frame", "living room"], "instruction_options": [], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBUTEJZ", "worker_id": "A15IJ20C3R4HUO"}], "B097XG3P7X": [{"asin": "B097XG3P7X", "instruction": "i am looking to buy a multi color birthday candles for a birthday cake.", "attributes": ["birthday cake", "baby shower", "birthday party"], "options": ["color: multicolor"], "instruction_attributes": ["birthday cake"], "instruction_options": ["multicolor"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4PMKPE", "worker_id": "AHXHM1PQTRWIQ"}], "B09MW563KN": [{"asin": "B09MW563KN", "instruction": "i am looking for blue color toothbrushes that helps to maintain my oral hygiene.", "attributes": ["oral hygiene", "fresh breath"], "options": ["color: blue"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["blue"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1F5CX0", "worker_id": "A1Q8PPQQCWGY0D"}], "B07NB2K1PJ": [{"asin": "B07NB2K1PJ", "instruction": "i need a white classic fit shirt that is in an xx-large for youth", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: youth", "size: xx-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["white", "youth", "xx-large"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SYPTQA", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LYW87WH": [{"asin": "B09LYW87WH", "instruction": "i would like a 40 by 50 inch fleece throw with valentine's day trucks.", "attributes": ["super soft", "machine washable", "fleece throw"], "options": ["color: valentine's day trucks", "size: 40x50 inch"], "instruction_attributes": ["fleece throw"], "instruction_options": ["valentine's day trucks", "40x50 inch"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGQ3IYY", "worker_id": "A1WS884SI0SLO4"}], "B07JKQX4J3": [{"asin": "B07JKQX4J3", "instruction": "i am looking for 40 oz. ready eat triple berry nut trail mix", "attributes": ["ready eat", "resealable bag"], "options": [""], "instruction_attributes": ["ready eat"], "instruction_options": [], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOSEVYN", "worker_id": "A258PTOZ3D2TQR"}], "B09QRVDTG1": [{"asin": "B09QRVDTG1", "instruction": "i'm looking for a orange toothpaste for teeth whitening and color correction", "attributes": ["teeth whitening", "long lasting", "natural ingredients", "sensitive teeth", "fresh breath", "bad breath"], "options": ["color: orange"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["orange"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4LX98C", "worker_id": "A2Y2TURT2VEYZN"}], "B09P47D7X3": [{"asin": "B09P47D7X3", "instruction": "i need a fully cooked two whole slabs with dry rubbed (seasoned) baby backs.", "attributes": ["fully cooked", "quality ingredients"], "options": ["flavor name: dry rubbed (seasoned) baby backs", "size: two whole slabs"], "instruction_attributes": ["fully cooked"], "instruction_options": ["two whole slabs"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRHXWNT", "worker_id": "A1Q0EUNCS50S8M"}, {"asin": "B09P47D7X3", "instruction": "i need four half slabs of seasoned ribs that are fully cooked.", "attributes": ["fully cooked", "quality ingredients"], "options": ["flavor name: dry rubbed (seasoned) st louis style", "size: four half slabs"], "instruction_attributes": ["fully cooked"], "instruction_options": ["dry rubbed (seasoned) st louis style", "four half slabs"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3TIZ9J", "worker_id": "A2ECRNQ3X5LEXD"}], "B092NV1R6G": [{"asin": "B092NV1R6G", "instruction": "i'm looking for a high quality anti-static hair brush", "attributes": ["high quality", "hair growth", "hair styling"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6MX7UA", "worker_id": "A2Y2TURT2VEYZN"}], "B00DU76CHK": [{"asin": "B00DU76CHK", "instruction": "like to buy a memory foam flat with rubber sole in taupe color and 8 wide size.", "attributes": ["memory foam", "rubber sole"], "options": ["color: taupe", "size: 8 wide"], "instruction_attributes": ["memory foam", "rubber sole"], "instruction_options": ["taupe", "8 wide"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9VX87N", "worker_id": "A3AYHESLQSDY5T"}], "B09NM4XQ7W": [{"asin": "B09NM4XQ7W", "instruction": "i am interested in buying a remote control repeater which supports blu ray streaming.", "attributes": ["dual band", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCK1OND8", "worker_id": "AHXHM1PQTRWIQ"}], "B099WCPFJP": [{"asin": "B099WCPFJP", "instruction": "hello, i'm looking for a sweater that's slim fit and comes in black? size medium too, please", "attributes": ["slim fit", "long sleeve", "everyday wear"], "options": ["color: black", "size: medium"], "instruction_attributes": ["slim fit"], "instruction_options": ["black", "medium"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGGKS9D", "worker_id": "A2TRV8SEM003GG"}], "B000QSPX58": [{"asin": "B000QSPX58", "instruction": "find me a jar of baby food that is certified organic. it should also be non gmo.", "attributes": ["bpa free", "certified organic", "non gmo", "artificial flavors"], "options": [""], "instruction_attributes": ["certified organic", "non gmo"], "instruction_options": [], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DUU4KD", "worker_id": "A1NF6PELRKACS9"}], "B07SFX4BPR": [{"asin": "B07SFX4BPR", "instruction": "i need some relaxed fit pants that are gray and are a size 3x.", "attributes": ["relaxed fit", "high waist", "teen girls"], "options": ["color: gray yoga trousers", "size: 3x"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["gray yoga trousers", "3x"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VTBXM5", "worker_id": "A2ECRNQ3X5LEXD"}], "B0954V82WH": [{"asin": "B0954V82WH", "instruction": "i would like some original flavor plant based meat.", "attributes": ["soy free", "plant based", "protein serving"], "options": ["flavor: original"], "instruction_attributes": ["plant based"], "instruction_options": ["original"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHABLDO5", "worker_id": "A1WS884SI0SLO4"}], "B09QGK3M3S": [{"asin": "B09QGK3M3S", "instruction": "i need gold plated red rca cables that are 1.6 feet.", "attributes": ["gold plated", "stereo sound"], "options": ["color: red", "number of items: 2", "size: 1.6 feet"], "instruction_attributes": ["gold plated"], "instruction_options": ["red", "1.6 feet"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0EC162", "worker_id": "A2ECRNQ3X5LEXD"}], "B000E1HVCA": [{"asin": "B000E1HVCA", "instruction": "i am looking for chocolate sugar free fat free pistachio flavored pudding and pie filling mix", "attributes": ["sugar free", "fat free"], "options": ["flavor name: pistachio"], "instruction_attributes": ["sugar free", "fat free"], "instruction_options": ["pistachio"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK24AFKNC", "worker_id": "A258PTOZ3D2TQR"}], "B09CV83TC3": [{"asin": "B09CV83TC3", "instruction": "i am looking for men comfortable fit sweatpants of black color.", "attributes": ["officially licensed", "long lasting", "quality polyester", "comfortable fit", "quality materials", "polyester cotton", "drawstring closure"], "options": ["color: black", "size: large"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["black"], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUJW5SS", "worker_id": "A3FG5PQHG5AH3Y"}], "B09GNBMZ8R": [{"asin": "B09GNBMZ8R", "instruction": "i need glass screen grey color", "attributes": ["glass screen", "tempered glass"], "options": ["color: grey"], "instruction_attributes": ["glass screen"], "instruction_options": ["grey"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY4A4JS", "worker_id": "A226L9F2AZ38CL"}], "B09KGT3XVC": [{"asin": "B09KGT3XVC", "instruction": "i want case cover in american flag deer color", "attributes": ["easy install", "easy use", "case cover"], "options": ["color: american flag deer", "size: iphone 13 pro max\uff086.7 inch\uff09"], "instruction_attributes": ["case cover"], "instruction_options": ["american flag deer"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCUL56S", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B09KGT3XVC", "instruction": "i need a cell phone case that is easy to install and is astronaut colored", "attributes": ["easy install", "easy use", "case cover"], "options": ["color: astronaut", "size: iphone 13 pro max\uff086.7 inch\uff09"], "instruction_attributes": ["easy install"], "instruction_options": ["astronaut"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XVKNG2", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HLR225R": [{"asin": "B08HLR225R", "instruction": "i need a bpa free jar that is black", "attributes": ["bpa free", "travel size", "easy clean", "long lasting", "travel bottles"], "options": ["color: black"], "instruction_attributes": ["bpa free"], "instruction_options": ["black"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYLRLQN", "worker_id": "A2ECRNQ3X5LEXD"}], "B01M21KDSN": [{"asin": "B01M21KDSN", "instruction": "find me a 5-pack of natural water enhancer that is keto-friendly and does not contain any sugar. i'll take the skinny orange citrus flavor.", "attributes": ["keto friendly", "sugar free"], "options": ["flavor name: skinny orange citrus", "size: 1.62 fl oz (pack of 5)"], "instruction_attributes": ["keto friendly", "sugar free"], "instruction_options": ["skinny orange citrus", "1.62 fl oz (pack of 5)"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YKCPN9", "worker_id": "A3LIIE572Z4OG7"}], "B07R926VLW": [{"asin": "B07R926VLW", "instruction": "i would like 2 packs and rinse of alcohol free mouthwash and toothpaste.", "attributes": ["alcohol free", "paraben free", "tea tree", "coconut oil", "bad breath"], "options": ["style: 2 pack + rinse"], "instruction_attributes": ["alcohol free"], "instruction_options": ["2 pack + rinse"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VT9XM3", "worker_id": "A1WS884SI0SLO4"}], "B09LLVKS26": [{"asin": "B09LLVKS26", "instruction": "i need an ac adapter that has output protection", "attributes": ["output protection", "easy carry"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LBCRET", "worker_id": "A2ECRNQ3X5LEXD"}], "B071HH7B9T": [{"asin": "B071HH7B9T", "instruction": "i'm looking for a wall mounted mirror with a silver painted wooden frame. the size should be eighteen by twenty-four inches.", "attributes": ["wall mounted", "wood frame"], "options": ["color: vegas silver", "size: glass size 18x24"], "instruction_attributes": ["wall mounted", "wood frame"], "instruction_options": ["vegas silver", "glass size 18x24"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22POEQET", "worker_id": "AR9AU5FY1S3RO"}], "B09J2N4KMC": [{"asin": "B09J2N4KMC", "instruction": "i need a black wireless earbuds bluetooth", "attributes": ["fast charging", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8NAP2N4", "worker_id": "A2Y2TURT2VEYZN"}], "B07K9JK92F": [{"asin": "B07K9JK92F", "instruction": "i am looking for a set of 2 easy to install sea teal colored curtains that are machine washable.", "attributes": ["machine washable", "easy install"], "options": ["color: sea teal", "size: 66 in x 90 in (w x l)"], "instruction_attributes": ["machine washable", "easy install"], "instruction_options": ["sea teal"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHDSE1U", "worker_id": "A1EREKSZAA9V7B"}], "B09JB2M7BZ": [{"asin": "B09JB2M7BZ", "instruction": "i am interested in buying a mai tai mix which is ready to use and is not alcoholic.", "attributes": ["ready use", "non alcoholic"], "options": [""], "instruction_attributes": ["ready use", "non alcoholic"], "instruction_options": [], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRXDF3V", "worker_id": "AHXHM1PQTRWIQ"}], "B07NP7JW66": [{"asin": "B07NP7JW66", "instruction": "i need an ac adapter with output protection", "attributes": ["output protection", "4g lte"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7ZA5PX", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DSYQMXM": [{"asin": "B09DSYQMXM", "instruction": "i am looking for antislip shoes that are a 6.5 for women", "attributes": ["anti slip", "rubber sole"], "options": ["color: reggae marijuana w", "size: 6.5 women | 4.5 men"], "instruction_attributes": ["anti slip"], "instruction_options": ["6.5 women | 4.5 men"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LE41OP", "worker_id": "A2ECRNQ3X5LEXD"}], "B092FCM7L1": [{"asin": "B092FCM7L1", "instruction": "i would like a gluten free sweet and sour chicken dinner.", "attributes": ["gluten free", "ready eat"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCZT4QA", "worker_id": "A1WS884SI0SLO4"}], "B07XGH1DFM": [{"asin": "B07XGH1DFM", "instruction": "i am looking for brown color ottoman bench for living room.", "attributes": ["button tufted", "non slip", "easy assemble", "solid wood", "living room"], "options": ["color: brown"], "instruction_attributes": ["living room"], "instruction_options": ["brown"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTQ9O61", "worker_id": "A3FG5PQHG5AH3Y"}], "B09G6ZZFXH": [{"asin": "B09G6ZZFXH", "instruction": "i need a solid wood white bed frame.", "attributes": ["white item", "solid wood"], "options": ["color: white"], "instruction_attributes": ["solid wood"], "instruction_options": ["white"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LAVERX", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DCS16FJ": [{"asin": "B09DCS16FJ", "instruction": "i want twin size black pants", "attributes": ["twin size", "space saving", "box spring", "storage space", "solid wood"], "options": ["color: black", "style: bunk bed with trundle & staircase"], "instruction_attributes": ["twin size"], "instruction_options": ["black"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1YAH24", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B09DCS16FJ", "instruction": "i am looking for black twin size bunk beds.", "attributes": ["twin size", "space saving", "box spring", "storage space", "solid wood"], "options": ["color: black", "style: bunk bed with drawers&ladder&slat"], "instruction_attributes": ["twin size"], "instruction_options": ["black"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTHLD57", "worker_id": "A1EREKSZAA9V7B"}], "B0946PM7VK": [{"asin": "B0946PM7VK", "instruction": "i'm looking for a pair of women's size seven steel toed boots that are water resistant and come in black.", "attributes": ["water resistant", "steel toe"], "options": ["color: black-80", "size: 7 women | 5.5 men"], "instruction_attributes": ["water resistant", "steel toe"], "instruction_options": ["black-80", "7 women | 5.5 men"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TUVPM2", "worker_id": "AR9AU5FY1S3RO"}], "B000774DQI": [{"asin": "B000774DQI", "instruction": "i want fluoride free ayurvedic herbal toothpaste.", "attributes": ["fluoride free", "cruelty free", "oral hygiene"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40JXXNH", "worker_id": "A2RBF3IIJP15IH"}], "B09P4NKXYH": [{"asin": "B09P4NKXYH", "instruction": "i would like a black pair of earbud headphones that are able to be wirelessly charged.", "attributes": ["noise cancelling", "fast charging", "wireless charging", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["wireless charging"], "instruction_options": ["black"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZH6RP4", "worker_id": "A1WS884SI0SLO4"}], "B07W7S31HC": [{"asin": "B07W7S31HC", "instruction": "i would like a strawberry sunrise lip balm that is paraben and cruelty free.", "attributes": ["certified organic", "paraben free", "cruelty free", "argan oil", "coconut oil"], "options": ["color: strawberry sunrise"], "instruction_attributes": ["paraben free", "cruelty free"], "instruction_options": ["strawberry sunrise"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMLJJ1F", "worker_id": "A1WS884SI0SLO4"}], "B01BZ4D2AO": [{"asin": "B01BZ4D2AO", "instruction": "i am looking for brown hiking boots that are size 10.5 wide with a synthetic sole.", "attributes": ["synthetic sole", "memory foam", "relaxed fit"], "options": ["color: brown", "size: 10.5 wide"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["brown", "10.5 wide"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZCOUWF", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DPG79J2": [{"asin": "B09DPG79J2", "instruction": "i am looking for a replacement tv remote control with the aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907VTAUW", "worker_id": "A1EREKSZAA9V7B"}], "B0008EOGE4": [{"asin": "B0008EOGE4", "instruction": "i'm looking for a pair of straight leg jeans with a button closure that comes in the \"silo\" color. i need them with a forty inch waist and a twenty nine inch length.", "attributes": ["straight leg", "long lasting", "regular fit", "button closure", "classic fit"], "options": ["color: silo", "size: 40w x 29l"], "instruction_attributes": ["straight leg", "button closure"], "instruction_options": ["silo", "40w x 29l"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02ITO32F", "worker_id": "AR9AU5FY1S3RO"}], "B09R9826YV": [{"asin": "B09R9826YV", "instruction": "i am looking for a great gift chocolate box packed in silver foil box color.", "attributes": ["great gift", "gift basket"], "options": ["color: silver foil box"], "instruction_attributes": ["great gift"], "instruction_options": ["silver foil box"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1G2RXF", "worker_id": "A1Q8PPQQCWGY0D"}], "B08KDPSJYK": [{"asin": "B08KDPSJYK", "instruction": "i am looking for a non alcoholic cocktail syrup with coconut flavour.", "attributes": ["non alcoholic", "artificial ingredients", "non gmo", "gluten free"], "options": ["flavor name: coconut", "size: 25 fl oz (pack of 1)"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["coconut"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3V4D1NO", "worker_id": "AHU9OLV0YKIIW"}], "B07DWQ3RWY": [{"asin": "B07DWQ3RWY", "instruction": "i would like a 40 w by 28 l grill pant with a elastic waist.", "attributes": ["classic fit", "elastic waist"], "options": ["color: grill", "size: 40w x 28l"], "instruction_attributes": ["elastic waist"], "instruction_options": ["grill", "40w x 28l"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUMQ3RI", "worker_id": "A1WS884SI0SLO4"}], "B09MWH6FBW": [{"asin": "B09MWH6FBW", "instruction": "i need a space saving ottoman that is purple", "attributes": ["high density", "space saving", "easy clean", "easy assemble", "faux leather", "storage space", "living room"], "options": ["color: purple", "size: 31x31x31cm(12x12x12inch)"], "instruction_attributes": ["space saving"], "instruction_options": ["purple"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV6U8DA", "worker_id": "A2ECRNQ3X5LEXD"}], "B08JY4DGB1": [{"asin": "B08JY4DGB1", "instruction": "i'm looking for a long lasting samsung cell phone.", "attributes": ["long lasting", "4g lte"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPQUFWO", "worker_id": "ARQ05PDNXPFDI"}], "B0068RE8XO": [{"asin": "B0068RE8XO", "instruction": "i would like some non gno amaretto almond biscotti.", "attributes": ["non gmo", "perfect gift"], "options": ["flavor name: amaretto almond biscotti"], "instruction_attributes": ["non gmo"], "instruction_options": ["amaretto almond biscotti"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFG2U5I", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0068RE8XO", "instruction": "i want a creme brulee truffle coffee that is gmo free.", "attributes": ["non gmo", "perfect gift"], "options": ["flavor name: creme brulee truffle"], "instruction_attributes": ["non gmo"], "instruction_options": ["creme brulee truffle"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QZQ708", "worker_id": "A1WS884SI0SLO4"}], "B01LXHXJF9": [{"asin": "B01LXHXJF9", "instruction": "i need an 8 ft navy area rug for the living room that is round.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: navy | teal", "item shape: round", "size: 8 ft"], "instruction_attributes": ["living room"], "instruction_options": ["navy | teal", "round", "8 ft"], "assignment_id": "3P4MQ7TPP8M09ONPVWROKZ1I0REBBG", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01LXHXJF9", "instruction": "i want an area rug to go in my living room. pick something in either white or royal blue.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: white | royal blue", "item shape: runner", "size: 8 ft x 8 ft"], "instruction_attributes": ["living room"], "instruction_options": ["white | royal blue"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1C0XCA", "worker_id": "A1NF6PELRKACS9"}], "B0928MPG7R": [{"asin": "B0928MPG7R", "instruction": "i'm looking for a high definition screen protector for my smart watch.", "attributes": ["high definition", "ultra hd"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL8JH5N", "worker_id": "AR9AU5FY1S3RO"}], "B09NLXNYKZ": [{"asin": "B09NLXNYKZ", "instruction": "i am searching for 3 colors makeup naked long lasting eye shadow", "attributes": ["highly pigmented", "long lasting", "easy use", "eye shadow"], "options": ["color: 03"], "instruction_attributes": ["long lasting", "eye shadow"], "instruction_options": ["03"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FGS8KQ", "worker_id": "A258PTOZ3D2TQR"}], "B08DFTK4WT": [{"asin": "B08DFTK4WT", "instruction": "i would like a pair of extra large darkgrey sweatpants with a elastic waist.", "attributes": ["winter warm", "elastic waist", "gym workout"], "options": ["color: darkgrey (closed bottom)", "size: x-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["darkgrey (closed bottom)", "x-large"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40YMRCL", "worker_id": "A1WS884SI0SLO4"}], "B08SJ4HVSY": [{"asin": "B08SJ4HVSY", "instruction": "i am looking for an arabic javy cold brew coffee concentrate.", "attributes": ["sugar free", "non gmo", "gluten free"], "options": ["flavor name: caramel", "size: 12 ounce (pack of 2)"], "instruction_attributes": ["non gmo"], "instruction_options": ["caramel"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB16GULK", "worker_id": "A2KW17G25L25R8"}], "B07CH44FCJ": [{"asin": "B07CH44FCJ", "instruction": "i would like a foot cream made from seed oil.", "attributes": ["easy use", "tea tree", "seed oil", "dead skin"], "options": [""], "instruction_attributes": ["seed oil"], "instruction_options": [], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AL5UYX", "worker_id": "A1WS884SI0SLO4"}], "B08GLM774B": [{"asin": "B08GLM774B", "instruction": "i'm looking for some 3 x large high waisted tummy control leggings in wine red polyester spandex.", "attributes": ["butt lifting", "tummy control", "high waist", "polyester spandex"], "options": ["color: #1 s-melange wine red", "size: 3x-large"], "instruction_attributes": ["tummy control", "high waist", "polyester spandex"], "instruction_options": ["#1 s-melange wine red", "3x-large"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KWL9JQ", "worker_id": "AR9AU5FY1S3RO"}], "B07BMH2TFF": [{"asin": "B07BMH2TFF", "instruction": "i'm looking for a large novelty pajama set for my husband who likes blue stripes; i must be able to machine wash it cold.", "attributes": ["wash cold", "machine wash", "relaxed fit", "tumble dry"], "options": ["color: with blue strpe pant", "size: large"], "instruction_attributes": ["wash cold", "machine wash"], "instruction_options": ["with blue strpe pant", "large"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q5RGWL", "worker_id": "A3LIIE572Z4OG7"}], "B09M8H138L": [{"asin": "B09M8H138L", "instruction": "i'm looking for oral care tooth brushes with accessories.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: c- green", "size: 6-12t"], "instruction_attributes": ["easy use"], "instruction_options": ["c- green"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1CZ9U2", "worker_id": "A21IUUHBSEVB56"}], "B004UT3E82": [{"asin": "B004UT3E82", "instruction": "i'm looking for after wax lotion that is cruelty free and is also an epilating trial pack pattern.", "attributes": ["cruelty free", "hair removal"], "options": ["pattern name: epilating trial pack"], "instruction_attributes": ["cruelty free"], "instruction_options": ["epilating trial pack"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q5LWGV", "worker_id": "A34EHWOYRBL6OZ"}], "B07YQHHK9F": [{"asin": "B07YQHHK9F", "instruction": "i am looking for star wars large size navy color bounty hunter wrap around logo raglan baseball t-shirt", "attributes": ["officially licensed", "machine wash", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: navy | white", "fit type: women", "size: large"], "instruction_attributes": ["star wars"], "instruction_options": ["navy | white", "large"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIHQFVC", "worker_id": "A258PTOZ3D2TQR"}], "B09KBW7Y9L": [{"asin": "B09KBW7Y9L", "instruction": "so i would like to find a men's blazer. it needs to be a size 40 and it has to have buttons for those cold windy days. ideally, make sure it is grey with a slim fit as well.", "attributes": ["slim fit", "hand wash", "button closure", "polyester cotton"], "options": ["color: grey", "size: 40"], "instruction_attributes": ["slim fit", "button closure"], "instruction_options": ["grey", "40"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPJ0VQN", "worker_id": "A3GMRPF5MCQVGV"}], "B09FB1NBWD": [{"asin": "B09FB1NBWD", "instruction": "i am looking for modern mid century droplet accent table lamp for living room", "attributes": ["mid century", "living room"], "options": [""], "instruction_attributes": ["mid century", "living room"], "instruction_options": [], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYPDCGC", "worker_id": "A258PTOZ3D2TQR"}], "B082WLFJPV": [{"asin": "B082WLFJPV", "instruction": "i need medipharma cosmetics eyebrow booster serum paraben & silicon free", "attributes": ["paraben free", "hair growth", "hair loss"], "options": [""], "instruction_attributes": ["paraben free"], "instruction_options": [], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFWO3ER", "worker_id": "A1V2C99HEV3F14"}], "B01F7MCTBS": [{"asin": "B01F7MCTBS", "instruction": "i am looking for superfood low carb snack tropical mix cubed of 4 pound (pack of 1)", "attributes": ["non gmo", "keto friendly", "low carb"], "options": ["flavor name: tropical mix cubed", "size: 4 pound (pack of 1)"], "instruction_attributes": ["low carb"], "instruction_options": ["tropical mix cubed", "4 pound (pack of 1)"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOGWTAW", "worker_id": "A258PTOZ3D2TQR"}], "B09NMYSG5G": [{"asin": "B09NMYSG5G", "instruction": "i'm looking for a set of machine washable long sleeved pajamas that come in a men's small.", "attributes": ["wash cold", "hand wash", "machine wash", "elastic waistband", "long sleeve", "dry clean"], "options": ["color: multi 2", "size: small"], "instruction_attributes": ["machine wash", "long sleeve"], "instruction_options": ["small"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WX21AS", "worker_id": "AR9AU5FY1S3RO"}], "B09ND5W2FR": [{"asin": "B09ND5W2FR", "instruction": "i would like a auto charger with a usb port.", "attributes": ["fast charging", "high speed", "usb port"], "options": [""], "instruction_attributes": ["usb port"], "instruction_options": [], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KYCE79", "worker_id": "A1WS884SI0SLO4"}], "B01CU5ZJIU": [{"asin": "B01CU5ZJIU", "instruction": "i would like 72 pieces of a variety of sugar free bubblegum.", "attributes": ["keto friendly", "sugar free", "gluten free", "soy free", "low carb", "non gmo", "resealable bag"], "options": ["flavor name: variety", "size: 72 count (pack of 3)"], "instruction_attributes": ["sugar free"], "instruction_options": ["variety", "72 count (pack of 3)"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMY2G29", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B01CU5ZJIU", "instruction": "i am looking for sugar free wintergreen chewing gum.", "attributes": ["keto friendly", "sugar free", "gluten free", "soy free", "low carb", "non gmo", "resealable bag"], "options": ["flavor name: wintergreen", "size: 55 count (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["wintergreen"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4AWRQT", "worker_id": "A1EREKSZAA9V7B"}], "B07PQJ1PF2": [{"asin": "B07PQJ1PF2", "instruction": "i am looking for string curtain of rose color that are eco friendly and easy to install.", "attributes": ["eco friendly", "easy install", "living room"], "options": ["color: rose"], "instruction_attributes": ["eco friendly", "easy install"], "instruction_options": ["rose"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XTNNG1", "worker_id": "A1Q8PPQQCWGY0D"}], "B08BX7C5BY": [{"asin": "B08BX7C5BY", "instruction": "i want a blue color synthetic sole vinyl acetate women clogs size 6.5", "attributes": ["ethylene vinyl", "vinyl acetate", "synthetic sole"], "options": ["color: blue", "size: 6.5 women | 5 men"], "instruction_attributes": ["vinyl acetate", "synthetic sole"], "instruction_options": ["blue"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKGU883", "worker_id": "A3N9ZYQAESNFQH"}], "B08D6B3CFK": [{"asin": "B08D6B3CFK", "instruction": "i would like a glass screen scanner.", "attributes": ["batteries included", "easy use", "glass screen"], "options": [""], "instruction_attributes": ["glass screen"], "instruction_options": [], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXSA6WAH", "worker_id": "A1WS884SI0SLO4"}], "B07XYXC1Z7": [{"asin": "B07XYXC1Z7", "instruction": "i'm looking for a red folding ottoman bench for the living room that has storage space and is easy to assemble and easy to clean.", "attributes": ["easy assemble", "easy clean", "faux leather", "storage space", "living room"], "options": ["color: red"], "instruction_attributes": ["easy assemble", "easy clean", "storage space", "living room"], "instruction_options": ["red"], "assignment_id": "3X08E93BH6SOX0PZ3ET8Y3TY8PU667", "worker_id": "A34EHWOYRBL6OZ"}], "B09QG84JT4": [{"asin": "B09QG84JT4", "instruction": "i am looking for medium size, white color and short sleeve aloha beach shirt", "attributes": ["slim fit", "short sleeve", "long sleeve", "tummy control", "regular fit", "relaxed fit", "button closure"], "options": ["color: l-white", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["l-white", "medium"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI83RSS4", "worker_id": "A258PTOZ3D2TQR"}], "B0987MDSG3": [{"asin": "B0987MDSG3", "instruction": "i am looking for desktop having 8gb ram and 64gb ssd and core i5 processor.", "attributes": ["core i5", "intel core"], "options": ["color: taiwan high temperature 5 wire resistive", "size: 8g ram 64g ssd"], "instruction_attributes": ["core i5"], "instruction_options": ["8g ram 64g ssd"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNCC01O", "worker_id": "A3FG5PQHG5AH3Y"}], "B083VY7NS5": [{"asin": "B083VY7NS5", "instruction": "i am looking for herbal ginger tea in small packs.", "attributes": ["caffeine free", "kosher certified", "gluten free", "artificial colors", "perfect gift"], "options": ["flavor name: black tea", "size: 15 count (pack of 2)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["15 count (pack of 2)"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNUCFJK", "worker_id": "A21IUUHBSEVB56"}], "B08YNK3KD9": [{"asin": "B08YNK3KD9", "instruction": "i need a 3 ft fast charging lightning cable that is purple.", "attributes": ["fast charging", "high speed"], "options": ["color: purple", "size: 3 ft"], "instruction_attributes": ["fast charging"], "instruction_options": ["purple", "3 ft"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYRB9QF", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KD4CKLP": [{"asin": "B07KD4CKLP", "instruction": "i am looking for carbon fiber monopod", "attributes": ["quick release", "carbon fiber"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBTWJE5", "worker_id": "A16M39T60N60NO"}], "B01J8S6X2I": [{"asin": "B01J8S6X2I", "instruction": "i need six feet of hdmi high performance cables in a ten pack", "attributes": ["gold plated", "high performance"], "options": ["pattern name: cable", "size: 6 feet", "style: 10-pack"], "instruction_attributes": ["high performance"], "instruction_options": ["6 feet", "10-pack"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNR0XJX6", "worker_id": "A2ECRNQ3X5LEXD"}], "B092NH4PT6": [{"asin": "B092NH4PT6", "instruction": "i am looking for women classic fit t-shirt.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: purple", "fit type: women", "size: x-small"], "instruction_attributes": ["classic fit"], "instruction_options": ["women"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OZV3MY", "worker_id": "A3FG5PQHG5AH3Y"}], "B06XCKNR17": [{"asin": "B06XCKNR17", "instruction": "i would like a quad core tablet.", "attributes": ["high performance", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V6P2U3", "worker_id": "A1WS884SI0SLO4"}], "B09P1J4K9Z": [{"asin": "B09P1J4K9Z", "instruction": "i would like a b04 toothbrush for kid's 6-12 sensitive teeth.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: b04", "size: age 6-12"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["b04", "age 6-12"], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ0ZMRRO", "worker_id": "A1WS884SI0SLO4"}], "B09F9RM3LM": [{"asin": "B09F9RM3LM", "instruction": "i want wireless charging in white color", "attributes": ["dust proof", "wireless charging"], "options": [""], "instruction_attributes": ["wireless charging"], "instruction_options": [], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADM2HAB", "worker_id": "A226L9F2AZ38CL"}], "B081SWDLF6": [{"asin": "B081SWDLF6", "instruction": "looking for lumbar support massage gaming chair choose colour yellow", "attributes": ["height adjustable", "lumbar support", "pu leather"], "options": ["color: yellow", "style: d06"], "instruction_attributes": ["lumbar support"], "instruction_options": ["yellow"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCVY5QQ", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B081SWDLF6", "instruction": "i am looking for a grey home office desk chair that is height adjustable and has lumbar support.", "attributes": ["height adjustable", "lumbar support", "pu leather"], "options": ["color: grey", "style: d03"], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": ["grey"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA0DA8K", "worker_id": "A1EREKSZAA9V7B"}], "B095XYGKVX": [{"asin": "B095XYGKVX", "instruction": "i am interested in buying a screen protector which is tempered glass, and has rose gold color.", "attributes": ["heavy duty", "hands free", "glass screen", "tempered glass"], "options": ["color: rose gold"], "instruction_attributes": ["tempered glass"], "instruction_options": ["rose gold"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT062RUNZ", "worker_id": "AJY5G987IRT25"}], "B09K3WGHPQ": [{"asin": "B09K3WGHPQ", "instruction": "i'm looking for small high performance silicone watch bands that are quick release.", "attributes": ["quick release", "high performance"], "options": ["color: black blue | black charcoal | black red | black green", "size: small"], "instruction_attributes": ["quick release", "high performance"], "instruction_options": ["small"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LHWL0S", "worker_id": "A34EHWOYRBL6OZ"}], "B09MK8S41Y": [{"asin": "B09MK8S41Y", "instruction": "i am looking for a small long sleeve fashion hoodies & sweatshirts", "attributes": ["long sleeve", "drawstring closure", "short sleeve"], "options": ["color: red#01", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LLL5IR", "worker_id": "A9QRQL9CFJBI7"}], "B08KT687HP": [{"asin": "B08KT687HP", "instruction": "i am interested in buying an artwork for the living room. i would love it in the artwork-02 color.", "attributes": ["ready hang", "wood frame", "solid wood", "living room", "dining room"], "options": ["color: artwork-02", "size: 12x16 inches x 3 pcs"], "instruction_attributes": ["living room"], "instruction_options": ["artwork-02"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV5ABHP", "worker_id": "AHXHM1PQTRWIQ"}], "B000V1LXU4": [{"asin": "B000V1LXU4", "instruction": "i want gluten free valley fresh 100% natural white chicken breast.", "attributes": ["fully cooked", "artificial ingredients", "ready eat", "gluten free"], "options": ["flavor name: chicken breast", "size: 7 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["chicken breast"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2VH5ML", "worker_id": "A2RBF3IIJP15IH"}], "B09C8HN13D": [{"asin": "B09C8HN13D", "instruction": "i would like a pair of size 8 shoes with a leather sole.", "attributes": ["long lasting", "leather sole"], "options": ["size: 8"], "instruction_attributes": ["leather sole"], "instruction_options": ["8"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKSXSGK", "worker_id": "A1WS884SI0SLO4"}], "B09L7WP5TR": [{"asin": "B09L7WP5TR", "instruction": "i want to buy a giant popsicle which is low calorie and fat free with orange flavor and is 51 ounce.", "attributes": ["low calorie", "fat free", "real fruit"], "options": ["flavor name: orange", "pattern name: powder + powder, 51 ounce"], "instruction_attributes": ["low calorie", "fat free"], "instruction_options": ["orange", "powder + powder, 51 ounce"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BPVVJL", "worker_id": "AJY5G987IRT25"}], "B096H8SXS2": [{"asin": "B096H8SXS2", "instruction": "i am looking for gluten free original caramel perfect premium gourmet popcorn", "attributes": ["gluten free", "ready eat", "natural ingredients"], "options": ["flavor name: original caramel"], "instruction_attributes": ["gluten free"], "instruction_options": ["original caramel"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANJDXS3", "worker_id": "A258PTOZ3D2TQR"}], "B09GJXM4DX": [{"asin": "B09GJXM4DX", "instruction": "i need some white bluetooth speakers that are easy to carry", "attributes": ["easy carry", "stereo sound"], "options": ["color: white"], "instruction_attributes": ["easy carry"], "instruction_options": ["white"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODPJWER", "worker_id": "A2ECRNQ3X5LEXD"}], "B0748FN9QT": [{"asin": "B0748FN9QT", "instruction": "i'm looking for trail cameras its is easy to use it can batteries inlcuded.", "attributes": ["batteries included", "easy use"], "options": ["color: grey x1"], "instruction_attributes": ["batteries included"], "instruction_options": ["grey x1"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZHQRPO", "worker_id": "A16IQOX0DK14OJ"}], "B0090OWWYO": [{"asin": "B0090OWWYO", "instruction": "i am looking for sindhi biryani spice powder that is easy to prepare.", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: sindhi biryani", "size: pack of 2"], "instruction_attributes": ["easy prepare"], "instruction_options": ["sindhi biryani"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQR8P05", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B0090OWWYO", "instruction": "i need 6 packs of bombay biryani easy prepare seasoning mix flavored punjabi yakhni pilau", "attributes": ["easy prepare", "easy use"], "options": ["flavor name: punjabi yakhni pilau", "size: pack of 6"], "instruction_attributes": ["easy prepare"], "instruction_options": ["punjabi yakhni pilau", "pack of 6"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5KFWIT", "worker_id": "A258PTOZ3D2TQR"}], "B07DKH94JR": [{"asin": "B07DKH94JR", "instruction": "i am looking for a brown wood finish end table.", "attributes": ["assembly required", "wood finish", "living room"], "options": ["color: brown"], "instruction_attributes": ["wood finish"], "instruction_options": ["brown"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUFIZDN", "worker_id": "A2ECRNQ3X5LEXD"}], "B07WRD84GY": [{"asin": "B07WRD84GY", "instruction": "i am looking for feather color jogging pants having elastic waist.", "attributes": ["drawstring closure", "elastic waist"], "options": ["color: feather", "size: x-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["feather"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUFXDZG", "worker_id": "A1Q8PPQQCWGY0D"}], "B09LS3RCZ2": [{"asin": "B09LS3RCZ2", "instruction": "i am looking for a high quality and long lasting makeup kit for women.", "attributes": ["highly pigmented", "long lasting", "high quality", "nail polish"], "options": [""], "instruction_attributes": ["long lasting", "high quality"], "instruction_options": [], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TFTNM3", "worker_id": "A1Q8PPQQCWGY0D"}], "B087PVSGS4": [{"asin": "B087PVSGS4", "instruction": "i need a size 6 closed toe high heel pump shoe. the color should be cheetah leopard red.", "attributes": ["high heel", "closed toe", "unique design", "rubber sole"], "options": ["color: cheetah leopard red", "size: 6"], "instruction_attributes": ["high heel", "closed toe"], "instruction_options": ["cheetah leopard red", "6"], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOS9YVL", "worker_id": "ASWFLI3N8X72G"}], "B07CBKJ7TS": [{"asin": "B07CBKJ7TS", "instruction": "i am looking for resealable snak club antioxidant trail mix. 5.5oz packs of six.", "attributes": ["non gmo", "resealable bag", "artificial colors"], "options": ["size: 1.37 pound (pack of 1)"], "instruction_attributes": ["resealable bag"], "instruction_options": ["1.37 pound (pack of 1)"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1B2I2B", "worker_id": "A2KW17G25L25R8"}], "B093KVXNYS": [{"asin": "B093KVXNYS", "instruction": "i want a travel organiser for blouse hosiery underwear lingeries laundry bag", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FP7FB3", "worker_id": "A3N9ZYQAESNFQH"}], "B00CQB2VR6": [{"asin": "B00CQB2VR6", "instruction": "i am looking for warm film video lighting kit for my digital photography. i prefer the 3200k lighting with 2400 watt", "attributes": ["carrying case", "digital photography"], "options": [""], "instruction_attributes": ["digital photography"], "instruction_options": [], "assignment_id": "3X0H8UUITCYRED22199FX2O3EGOWSO", "worker_id": "A2COCSUGZV28X"}], "B095S1MVRG": [{"asin": "B095S1MVRG", "instruction": "look for a long lasting shaving cream that is fragrance free. i also have a sensitive skin.", "attributes": ["dermatologist tested", "fragrance free", "long lasting", "sensitive skin"], "options": [""], "instruction_attributes": ["fragrance free", "long lasting", "sensitive skin"], "instruction_options": [], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKL81TW", "worker_id": "A1NF6PELRKACS9"}], "B098JFR3FK": [{"asin": "B098JFR3FK", "instruction": "i'm looking for an easy to use electric foot grinder in blue.", "attributes": ["high quality", "easy use", "quality materials", "dead skin", "dry skin"], "options": ["color: blue"], "instruction_attributes": ["easy use"], "instruction_options": ["blue"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XTLNGZ", "worker_id": "AR9AU5FY1S3RO"}], "B09MSH8K6T": [{"asin": "B09MSH8K6T", "instruction": "i am ordering a grey plus size women long sleeved t -shirt .", "attributes": ["long sleeve", "soft material"], "options": ["color: x02-gray", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x02-gray"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9Q4TV4", "worker_id": "AHU9OLV0YKIIW"}], "B08PKFH373": [{"asin": "B08PKFH373", "instruction": "i would like a aircraft cake topper for a kids birthday party.", "attributes": ["birthday party", "baby shower", "birthday cake"], "options": ["style: aircraft"], "instruction_attributes": ["birthday party"], "instruction_options": ["aircraft"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DX4TOZ", "worker_id": "A1WS884SI0SLO4"}], "B09CDRDPRX": [{"asin": "B09CDRDPRX", "instruction": "i am looking for a grey full daybed with 2 drawers and should be made of a solid wood.", "attributes": ["space saving", "box spring", "solid wood"], "options": ["color: grey", "size: full daybed with 2 drawers"], "instruction_attributes": ["solid wood"], "instruction_options": ["full daybed with 2 drawers"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX308U1B", "worker_id": "AHU9OLV0YKIIW"}], "B099DQDTN9": [{"asin": "B099DQDTN9", "instruction": "i am looking for a easy to use hair extension that has elastic rubber band. and i choose the curly bun with strawberry blonde color", "attributes": ["easy use", "hair salon"], "options": ["color: 27#(strawberry blonde)", "size: curly bun"], "instruction_attributes": ["easy use"], "instruction_options": ["27#(strawberry blonde)", "curly bun"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9WGTEF", "worker_id": "A2COCSUGZV28X"}, {"asin": "B099DQDTN9", "instruction": "i am looking for a tousled bun hairpieces for hair salon", "attributes": ["easy use", "hair salon"], "options": ["color: 2 | 30#(dark brown & light auburn mixed)", "size: tousled bun"], "instruction_attributes": ["hair salon"], "instruction_options": ["tousled bun"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS6NUVC", "worker_id": "A9QRQL9CFJBI7"}], "B0977NLTWY": [{"asin": "B0977NLTWY", "instruction": "i am looking for a ladder bookshelf having steel frame.", "attributes": ["coated steel", "steel frame"], "options": [""], "instruction_attributes": ["steel frame"], "instruction_options": [], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40YCCRW", "worker_id": "A1Q8PPQQCWGY0D"}], "B09C1D546R": [{"asin": "B09C1D546R", "instruction": "i am looking for a wall mounted mirror for the living room", "attributes": ["white item", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXADCFD", "worker_id": "A2ECRNQ3X5LEXD"}], "B086D53WFX": [{"asin": "B086D53WFX", "instruction": "i need a eco friendly green tea mask for sensitive sikn", "attributes": ["eco friendly", "cruelty free", "green tea", "tea tree", "sensitive skin"], "options": [""], "instruction_attributes": ["eco friendly", "green tea", "sensitive skin"], "instruction_options": [], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5IFWIP", "worker_id": "ASWFLI3N8X72G"}], "B07TVHJ7KY": [{"asin": "B07TVHJ7KY", "instruction": "looking for loose fit medium size casual basic tee shirts", "attributes": ["light weight", "loose fit", "cotton spandex"], "options": ["color: tie dye 27", "size: medium"], "instruction_attributes": ["loose fit"], "instruction_options": ["medium"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGZDWTO", "worker_id": "A10OGH5CQBXL5N"}], "B08BYH6J6Z": [{"asin": "B08BYH6J6Z", "instruction": "i would like a pair of size 5 leather oxfords with a synthetic sole.", "attributes": ["day comfort", "non slip", "synthetic sole"], "options": ["color: porcelain glazed croco | leather", "size: 5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["porcelain glazed croco | leather", "5"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9H1LD1U", "worker_id": "A1WS884SI0SLO4"}], "B0989DND8F": [{"asin": "B0989DND8F", "instruction": "i'm looking for a silicon exfoliating body scrubber which would be easy to use.", "attributes": ["easy clean", "double sided", "dead skin", "sensitive skin"], "options": ["color: blue+yellow"], "instruction_attributes": ["easy clean"], "instruction_options": ["blue+yellow"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35PGGUM", "worker_id": "A21IUUHBSEVB56"}], "B09FPRSY7Q": [{"asin": "B09FPRSY7Q", "instruction": "i need a high power soundbar with stereo sound. it should include the audio line.", "attributes": ["high power", "stereo sound"], "options": ["color: audio line included"], "instruction_attributes": ["high power", "stereo sound"], "instruction_options": ["audio line included"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF5PDLV", "worker_id": "AR9AU5FY1S3RO"}], "B09B6KYFB8": [{"asin": "B09B6KYFB8", "instruction": "i like soy wax in freesia & gardenia", "attributes": ["lead free", "soy wax"], "options": ["scent: freesia & gardenia"], "instruction_attributes": ["soy wax"], "instruction_options": ["freesia & gardenia"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYEFEIW", "worker_id": "A226L9F2AZ38CL"}], "B01DK5GE1U": [{"asin": "B01DK5GE1U", "instruction": "i'm looking for a size 48 in vanity light comtemporary cylinder.", "attributes": ["vanity light", "contemporary design", "brushed nickel", "light fixture", "living room"], "options": ["color: brushed nickel", "size: 48 in", "style: arrow"], "instruction_attributes": ["vanity light"], "instruction_options": ["48 in"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZFHLKD", "worker_id": "ARQ05PDNXPFDI"}], "B0185HLNIW": [{"asin": "B0185HLNIW", "instruction": "i am looking for an easy to clean wobble stool for kids, i would like a 20 inch seat, and black in color.", "attributes": ["fully assembled", "non slip", "easy clean"], "options": ["color: seafoam", "size: 20\" h"], "instruction_attributes": ["easy clean"], "instruction_options": ["20\" h"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCK1LND5", "worker_id": "A2KW17G25L25R8"}], "B08JPVZG7X": [{"asin": "B08JPVZG7X", "instruction": "i am looking for kids blanket of size 50x60 inch for my living room.", "attributes": ["machine washable", "fleece throw", "living room"], "options": ["color: blanket-03", "size: 50x60 inch"], "instruction_attributes": ["living room"], "instruction_options": ["50x60 inch"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCKCSJM", "worker_id": "A1Q8PPQQCWGY0D"}], "B09DDCP3PR": [{"asin": "B09DDCP3PR", "instruction": "i want wildcat leopard impo stretch boots with memory foam.", "attributes": ["memory foam", "leather sole"], "options": ["color: wildcat leopard", "size: 8 wide"], "instruction_attributes": ["memory foam"], "instruction_options": ["wildcat leopard"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWTTFPV", "worker_id": "A2RBF3IIJP15IH"}], "B09P8L6DKB": [{"asin": "B09P8L6DKB", "instruction": "i need red party supplies", "attributes": ["party supplies", "cupcake picks"], "options": ["color: red"], "instruction_attributes": ["party supplies"], "instruction_options": ["red"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFWEE3S", "worker_id": "A2ECRNQ3X5LEXD"}], "B078X4FYKH": [{"asin": "B078X4FYKH", "instruction": "i want a classic fit best cruise director ever shirt for men.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: men", "size: 3t"], "instruction_attributes": ["classic fit"], "instruction_options": ["men"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1ZZ2HG", "worker_id": "A2RBF3IIJP15IH"}], "B001QZZ1J8": [{"asin": "B001QZZ1J8", "instruction": "i would like a pack of six chocolate cake mixes that are non gmo.", "attributes": ["easy use", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: chocolate", "size: 12 ounce (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["chocolate", "12 ounce (pack of 6)"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602VT593", "worker_id": "A2ECRNQ3X5LEXD"}], "B07YXYCXSG": [{"asin": "B07YXYCXSG", "instruction": "i am looking for women's sandals of 8 size having leather sole.", "attributes": ["leather sole", "synthetic sole"], "options": ["color: emerald", "size: 8"], "instruction_attributes": ["leather sole"], "instruction_options": ["8"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGZTWT4", "worker_id": "A1Q8PPQQCWGY0D"}], "B08RNCQN19": [{"asin": "B08RNCQN19", "instruction": "i would like a portable bluetooth speaker with stereo sound.", "attributes": ["hands free", "carrying case", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIJP002", "worker_id": "A1WS884SI0SLO4"}], "B089GWSZ56": [{"asin": "B089GWSZ56", "instruction": "i am looking for a wireless hidden camera that can be easily used with shirt's pocket", "attributes": ["easy use", "motion detection"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM95EI1K", "worker_id": "A2COCSUGZV28X"}], "B093KMSTW2": [{"asin": "B093KMSTW2", "instruction": "i'm looking for golden decorated birthday cupcake.", "attributes": ["birthday cake", "party supplies"], "options": ["color: golden"], "instruction_attributes": ["birthday cake"], "instruction_options": ["golden"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG4IGBE", "worker_id": "A21IUUHBSEVB56"}], "B0774GXDMB": [{"asin": "B0774GXDMB", "instruction": "i would like 42 bags of 100% colombian rich and creamy single serve coffee cups.", "attributes": ["rich creamy", "non gmo", "gluten free"], "options": ["flavor name: 100% colombian, donut shop, morning blen...", "size: 42 count (pack of 2)"], "instruction_attributes": ["rich creamy"], "instruction_options": ["100% colombian, donut shop, morning blen...", "42 count (pack of 2)"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDKBO2M", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0774GXDMB", "instruction": "i want a 200 count pack of hot cocoa cups that is rich and creamy. ensure that it is gluten free.", "attributes": ["rich creamy", "non gmo", "gluten free"], "options": ["flavor name: morning blend, 100% colombian, donut sho...", "size: 200 count (pack of 1)"], "instruction_attributes": ["rich creamy", "gluten free"], "instruction_options": ["200 count (pack of 1)"], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0Y3CCM", "worker_id": "A1NF6PELRKACS9"}], "B082YZ2M39": [{"asin": "B082YZ2M39", "instruction": "i am looking for a large light blue dress shirt that is long sleeved", "attributes": ["hand wash", "machine wash", "regular fit", "polyester spandex", "long sleeve"], "options": ["color: d-light blue no tie", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["d-light blue no tie", "large"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9LY6KY", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PRNYHKP": [{"asin": "B09PRNYHKP", "instruction": "i want size 7 ankle strap in metal", "attributes": ["non slip", "ankle strap"], "options": ["color: z02# gray", "size: 7"], "instruction_attributes": ["ankle strap"], "instruction_options": ["7"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUNN4S8", "worker_id": "A226L9F2AZ38CL"}], "B09G36DP9B": [{"asin": "B09G36DP9B", "instruction": "i'm looking for a 26cm hand painted wicker woven basket.", "attributes": ["hand painted", "living room"], "options": ["size: 26cm"], "instruction_attributes": ["hand painted"], "instruction_options": ["26cm"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZOJY1D", "worker_id": "ARQ05PDNXPFDI"}], "B09T39SXP5": [{"asin": "B09T39SXP5", "instruction": "i'm looking for a carbon fiber tripods for cameras", "attributes": ["quick release", "carbon fiber"], "options": [""], "instruction_attributes": ["carbon fiber"], "instruction_options": [], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8YE8GO", "worker_id": "A2Y2TURT2VEYZN"}], "B073RK32S6": [{"asin": "B073RK32S6", "instruction": "i would like a small rustic brown tv stand made of solid wood.", "attributes": ["mid century", "white item", "solid wood"], "options": ["color: rustic brown", "size: small"], "instruction_attributes": ["solid wood"], "instruction_options": ["rustic brown", "small"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UXN0YO", "worker_id": "A1WS884SI0SLO4"}], "B09SKR3H1J": [{"asin": "B09SKR3H1J", "instruction": "i'm looking for solid wooden furniture for kitchen, dinning and table chair set.", "attributes": ["easy clean", "metal legs", "solid wood", "living room"], "options": ["color: rustic brown", "size: 47.2\"l x 23.6\"w x 33.1\"h"], "instruction_attributes": ["solid wood"], "instruction_options": ["rustic brown"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5J21ZO", "worker_id": "A21IUUHBSEVB56"}], "B092VN7WGH": [{"asin": "B092VN7WGH", "instruction": "i'm looking for some leak proof, easy to clean travel bodies that are non-toxic and have hearts on them.", "attributes": ["leak proof", "non toxic", "easy clean", "travel bottles"], "options": ["style: heart style"], "instruction_attributes": ["leak proof", "non toxic", "easy clean", "travel bottles"], "instruction_options": ["heart style"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV4IHB1", "worker_id": "AR9AU5FY1S3RO"}], "B08Y8HB36D": [{"asin": "B08Y8HB36D", "instruction": "i need some beige storage bins that are easy to clean.", "attributes": ["spot clean", "easy clean", "faux leather"], "options": ["color: beige 16\"", "size: 16\" x 11.8\" x 11.8\"-2pack"], "instruction_attributes": ["easy clean"], "instruction_options": ["beige 16\""], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVQ0KJY", "worker_id": "A2ECRNQ3X5LEXD"}], "B097C7F3PF": [{"asin": "B097C7F3PF", "instruction": "i would like a variety pack of low calorie microwave popcorn.", "attributes": ["low calorie", "non gmo", "artificial ingredients", "gluten free"], "options": ["flavor name: variety pack"], "instruction_attributes": ["low calorie"], "instruction_options": ["variety pack"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9Q6VT8", "worker_id": "A1WS884SI0SLO4"}], "B08PQ792TD": [{"asin": "B08PQ792TD", "instruction": "i am looking for candle having jungle guava scent and should be lead free.", "attributes": ["lead free", "long lasting", "soy wax"], "options": ["scent: jungle guava", "size: 9 oz. | medium single wick"], "instruction_attributes": ["lead free"], "instruction_options": ["jungle guava"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TO73NY", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08PQ792TD", "instruction": "i want a tropic mist lead free single wick candle.", "attributes": ["lead free", "long lasting", "soy wax"], "options": ["scent: tropic mist", "size: 9 oz. | medium single wick"], "instruction_attributes": ["lead free"], "instruction_options": ["tropic mist"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPW2JPM", "worker_id": "A2RBF3IIJP15IH"}], "B08KRQ6JBN": [{"asin": "B08KRQ6JBN", "instruction": "i'm looking for pure mulberry silk underwear for men.", "attributes": ["machine washable", "hand wash", "machine wash", "elastic waistband", "classic fit"], "options": [""], "instruction_attributes": ["elastic waistband", "classic fit"], "instruction_options": [], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXUC5OE", "worker_id": "A21IUUHBSEVB56"}], "B0953QCJ3H": [{"asin": "B0953QCJ3H", "instruction": "looking for tatami floor mat for living room also choose size180x200cm(71*79inch)", "attributes": ["memory foam", "living room"], "options": ["color: c", "size: 180x200cm(71*79inch)"], "instruction_attributes": ["living room"], "instruction_options": ["180x200cm(71*79inch)"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPL2NJ3", "worker_id": "A10OGH5CQBXL5N"}], "B08THG9FDG": [{"asin": "B08THG9FDG", "instruction": "i am looking for ultra hd motion detection surveillance dome camera color black size :6mp wdr 2.8 mm", "attributes": ["ultra hd", "plug play", "motion detection"], "options": ["color: black", "size: 6mp wdr 2.8mm"], "instruction_attributes": ["ultra hd", "motion detection"], "instruction_options": ["black", "6mp wdr 2.8mm"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZJD7A6", "worker_id": "A3N9ZYQAESNFQH"}], "B097C6SVG6": [{"asin": "B097C6SVG6", "instruction": "i need to buy a light weight, machine washable tank top in brown, size small.", "attributes": ["light weight", "machine washable", "machine wash", "relaxed fit", "button closure"], "options": ["color: z5-brown", "size: small"], "instruction_attributes": ["light weight", "machine washable"], "instruction_options": ["z5-brown", "small"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1FSXC8", "worker_id": "AR9AU5FY1S3RO"}], "B01DQ8VYHA": [{"asin": "B01DQ8VYHA", "instruction": "i would like a source vitamin soft drink mix.", "attributes": ["caffeine free", "source vitamin"], "options": [""], "instruction_attributes": ["source vitamin"], "instruction_options": [], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9NJB0W", "worker_id": "A1WS884SI0SLO4"}], "B077V2Q32W": [{"asin": "B077V2Q32W", "instruction": "i would like a 2x poolside sebastion plaid shirt that is easy to take care of.", "attributes": ["easy care", "machine wash", "button closure", "short sleeve"], "options": ["color: poolside sebastion plaid", "size: 2x"], "instruction_attributes": ["easy care"], "instruction_options": ["poolside sebastion plaid", "2x"], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y5ANNA", "worker_id": "A1WS884SI0SLO4"}], "B09NBWK214": [{"asin": "B09NBWK214", "instruction": "i am looing for a fog color hair drying towels which is easy to use", "attributes": ["easy use", "dry hair"], "options": ["color: fog"], "instruction_attributes": ["easy use"], "instruction_options": ["fog"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYTROZB", "worker_id": "A9QRQL9CFJBI7"}], "B09129QLGX": [{"asin": "B09129QLGX", "instruction": "i need to buy a queen sized duvet cover. i want one that's machine washable.", "attributes": ["queen size", "machine washable"], "options": ["color: multi 01", "size: queen"], "instruction_attributes": ["queen size", "machine washable"], "instruction_options": ["queen"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G79S473", "worker_id": "AR9AU5FY1S3RO"}], "B00L7S3FJ2": [{"asin": "B00L7S3FJ2", "instruction": "i'm looking for a cruelty free body wash, preferably citrus and mint scent.", "attributes": ["fragrance free", "cruelty free"], "options": ["scent: citrus and mint"], "instruction_attributes": ["cruelty free"], "instruction_options": ["citrus and mint"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TFL2K0", "worker_id": "ARQ05PDNXPFDI"}], "B07HZHJGY7": [{"asin": "B07HZHJGY7", "instruction": "i am looking for a tablet of plum color having quad core processor.", "attributes": ["hands free", "quad core"], "options": ["color: plum", "digital storage capacity: 32 gb", "offer type: without lockscreen ads", "style: with case & screen protector (2-pack)"], "instruction_attributes": ["quad core"], "instruction_options": ["plum"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IYVKHS", "worker_id": "A1Q8PPQQCWGY0D"}], "B095KSXGZX": [{"asin": "B095KSXGZX", "instruction": "i am looking for a roller shade that is gray and for the living room", "attributes": ["white item", "easy clean", "living room"], "options": ["color: blackout classic gray", "size: 20\"w x 64\"h"], "instruction_attributes": ["living room"], "instruction_options": ["blackout classic gray"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLO03O78", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B095KSXGZX", "instruction": "i want to find white blackout window shades that i can put in my living room, and they need to be 2 inches in width and 64 inches in height.", "attributes": ["white item", "easy clean", "living room"], "options": ["color: blackout white", "size: 74 1 | 2\"w x 64\"h"], "instruction_attributes": ["white item", "living room"], "instruction_options": ["blackout white", "74 1 | 2\"w x 64\"h"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF99RZAL", "worker_id": "A345TDMHP3DQ3G"}], "B01NAWGUXD": [{"asin": "B01NAWGUXD", "instruction": "i need a mid century coffee table.", "attributes": ["mid century", "solid wood"], "options": [""], "instruction_attributes": ["mid century"], "instruction_options": [], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWTJPFV", "worker_id": "A2ECRNQ3X5LEXD"}], "B08NSQG7P3": [{"asin": "B08NSQG7P3", "instruction": "i'm looking for a three pack of grey pendant lights for my dining room.", "attributes": ["pendant light", "dining room", "living room"], "options": ["color: grey,3 pack"], "instruction_attributes": ["pendant light", "dining room"], "instruction_options": ["grey,3 pack"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1BMI2V", "worker_id": "AR9AU5FY1S3RO"}], "B09B3Q8T5W": [{"asin": "B09B3Q8T5W", "instruction": "i'm looking for a high definition wireless bluetooth radio with fast charging capacity. also choose white star one.", "attributes": ["fast charging", "high definition", "wireless bluetooth", "wireless charging"], "options": ["color: white star"], "instruction_attributes": ["fast charging", "high definition", "wireless bluetooth"], "instruction_options": ["white star"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LYECDL", "worker_id": "AR0VJ5XRG16UJ"}], "B08DR1NNJ4": [{"asin": "B08DR1NNJ4", "instruction": "i am interested in buying a universal remote control which has batteries included and is compatible with smart tvs.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6HYEVI", "worker_id": "AJY5G987IRT25"}], "B09B2164QM": [{"asin": "B09B2164QM", "instruction": "i would like some 12 inch balayage dark brown mixed with walnut brown and strawberry blonde hair extensions.", "attributes": ["easy apply", "high quality", "hair extensions"], "options": ["color: balayage dark brown mixed with walnut brown and strawberry blonde #b2 | 3 | 27", "size: 12 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["balayage dark brown mixed with walnut brown and strawberry blonde #b2 | 3 | 27", "12 inch"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWYZDPP5", "worker_id": "A1WS884SI0SLO4"}], "B07RC19HNW": [{"asin": "B07RC19HNW", "instruction": "i would like a pack of dome cameras that have motion detection.", "attributes": ["1080p hd", "motion detection"], "options": ["size: 1 pack"], "instruction_attributes": ["motion detection"], "instruction_options": ["1 pack"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZTSSH3", "worker_id": "A1WS884SI0SLO4"}], "B09NR8NCTD": [{"asin": "B09NR8NCTD", "instruction": "i want to find a barber cape that can be used in a hair salon. it needs to have a pepperoni pizza pattern to it.", "attributes": ["easy clean", "hair cutting", "hair salon"], "options": ["scent: pepperoni pizza"], "instruction_attributes": ["hair cutting", "hair salon"], "instruction_options": ["pepperoni pizza"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VMI60G", "worker_id": "A345TDMHP3DQ3G"}], "B091MXTQYH": [{"asin": "B091MXTQYH", "instruction": "i would like some travel bottles for my cosmetics.", "attributes": ["bpa free", "easy carry", "travel bottles"], "options": [""], "instruction_attributes": ["travel bottles"], "instruction_options": [], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4JA15V", "worker_id": "A1WS884SI0SLO4"}], "B01HHKB888": [{"asin": "B01HHKB888", "instruction": "i need an ac adapter with output protection", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPCBQDY", "worker_id": "A2ECRNQ3X5LEXD"}], "B06XD34LMS": [{"asin": "B06XD34LMS", "instruction": "i am searching for a bronze finish lighting fixture.", "attributes": ["bronze finish", "light fixture"], "options": ["color: bronze | dark", "size: 3 light pendant"], "instruction_attributes": ["bronze finish", "light fixture"], "instruction_options": ["bronze | dark"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTBYLNW", "worker_id": "A1NF6PELRKACS9"}], "B09DK9G19W": [{"asin": "B09DK9G19W", "instruction": "i'm looking for elastic bands that are easily adjustable, please. something good for beginners", "attributes": ["quick release", "easy install"], "options": ["color: steel blue+night blue"], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9QEVTG", "worker_id": "A2TRV8SEM003GG"}], "B09Q2Z5HBF": [{"asin": "B09Q2Z5HBF", "instruction": "i'm looking for a 4g lte tablet", "attributes": ["high performance", "4g lte"], "options": [""], "instruction_attributes": ["4g lte"], "instruction_options": [], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPIR6V4", "worker_id": "ARQ05PDNXPFDI"}], "B07953TM6H": [{"asin": "B07953TM6H", "instruction": "i would like a extra large dark blue sweatshirt that is long sleeved.", "attributes": ["loose fit", "long sleeve", "short sleeve", "button closure", "teen girls"], "options": ["color: dark blue", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["dark blue", "x-large"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O432AZ", "worker_id": "A1WS884SI0SLO4"}], "B09965W7GD": [{"asin": "B09965W7GD", "instruction": "i am searching for 2 packs of gluten free chewy chocolate chip granola bars", "attributes": ["gluten free", "nut free", "certified organic", "non gmo", "artificial colors"], "options": ["size: 2 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["2 pack"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6URPEZ1", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B09965W7GD", "instruction": "i am looking for 3 packs gluten free chocolate bars.", "attributes": ["gluten free", "nut free", "certified organic", "non gmo", "artificial colors"], "options": ["size: 3 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["3 pack"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH4D1VX", "worker_id": "A3FG5PQHG5AH3Y"}], "B07D3RSVLM": [{"asin": "B07D3RSVLM", "instruction": "i am looking for a contemporary home office chair", "attributes": ["easy clean", "contemporary design"], "options": [""], "instruction_attributes": ["contemporary design"], "instruction_options": [], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYZC63N", "worker_id": "A2ECRNQ3X5LEXD"}], "B071ZRG5DF": [{"asin": "B071ZRG5DF", "instruction": "i'm looking for high heel for women's it was white red in color.", "attributes": ["high heel", "rubber sole"], "options": ["color: white red", "size: 5"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQHDHH7", "worker_id": "A16IQOX0DK14OJ"}], "B0936BZ1Q2": [{"asin": "B0936BZ1Q2", "instruction": "i need some hair extensions that are dark brown and 18 inches", "attributes": ["high quality", "hair extensions"], "options": ["color: dark brown #2", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["dark brown #2", "18 inch"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPBYCOT", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NL3VBYK": [{"asin": "B07NL3VBYK", "instruction": "i'm looking for a rug with contemporary design in black/ivory color sized 10x14 ft", "attributes": ["contemporary design", "home furnishings"], "options": ["color: black | ivory", "size: 10 ft x 14 ft"], "instruction_attributes": ["contemporary design"], "instruction_options": [], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJPBOMW", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B07NL3VBYK", "instruction": "i am looking for contemporary designed rug of 3.ftx 5ft.", "attributes": ["contemporary design", "home furnishings"], "options": ["color: silver | ivory", "size: 3 ft x 5 ft"], "instruction_attributes": ["contemporary design"], "instruction_options": ["3 ft x 5 ft"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCFIH78", "worker_id": "A3FG5PQHG5AH3Y"}, {"asin": "B07NL3VBYK", "instruction": "i need an 8ft round contemporary area rug that is silver and ivory.", "attributes": ["contemporary design", "home furnishings"], "options": ["color: silver | ivory", "size: 8 ft round"], "instruction_attributes": ["contemporary design"], "instruction_options": ["silver | ivory", "8 ft round"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVR79XF", "worker_id": "A2ECRNQ3X5LEXD"}], "B005IGVXRU": [{"asin": "B005IGVXRU", "instruction": "i am looking for blue color digital camera having optical zoom.", "attributes": ["optical zoom", "stereo sound"], "options": ["color: blue"], "instruction_attributes": ["optical zoom"], "instruction_options": ["blue"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLPKI4T", "worker_id": "A1Q8PPQQCWGY0D"}], "B09L1GFM58": [{"asin": "B09L1GFM58", "instruction": "i want a black walnut entryway console table with metal legs and 40 inches long.", "attributes": ["easy install", "bronze finish", "metal legs"], "options": ["size: 40 inches"], "instruction_attributes": ["metal legs"], "instruction_options": ["40 inches"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NM9KBX", "worker_id": "A2RBF3IIJP15IH"}], "B09MVFYD7C": [{"asin": "B09MVFYD7C", "instruction": "i want a pink water dental oral irrigator for bad breath.", "attributes": ["easy use", "bad breath"], "options": ["color: pink"], "instruction_attributes": ["bad breath"], "instruction_options": ["pink"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67OT4NA", "worker_id": "A2RBF3IIJP15IH"}], "B08YF51NZ8": [{"asin": "B08YF51NZ8", "instruction": "i'm looking for a leak proof soap container for kids.", "attributes": ["leak proof", "travel size", "easy carry", "travel bottles"], "options": [""], "instruction_attributes": ["leak proof"], "instruction_options": [], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KP0UH6", "worker_id": "ARQ05PDNXPFDI"}], "B09PRLF1YQ": [{"asin": "B09PRLF1YQ", "instruction": "i am looking for wireless bluethooth for my compact radios and stereos- hands free electronic.", "attributes": ["hands free", "wireless bluetooth"], "options": [""], "instruction_attributes": ["hands free", "wireless bluetooth"], "instruction_options": [], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK48ZA6G", "worker_id": "A3R8PQCD99H61E"}], "B09QPK32M1": [{"asin": "B09QPK32M1", "instruction": "i am looking for a 7.5 no. high heel for women", "attributes": ["anti slip", "open toe", "high heel", "ankle strap", "rubber sole"], "options": ["color: sandals 09 silver", "size: 7.5"], "instruction_attributes": ["high heel"], "instruction_options": ["7.5"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907UAAUB", "worker_id": "A9QRQL9CFJBI7"}], "B0773FVVM4": [{"asin": "B0773FVVM4", "instruction": "i'm looking for coated steel for furniture for living room.", "attributes": ["fully assembled", "coated steel"], "options": ["color: light gray"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1FTXC9", "worker_id": "A16IQOX0DK14OJ"}], "B099F1QYFM": [{"asin": "B099F1QYFM", "instruction": "i am looking for a high quality hairpieces. also choose 250# darkest brown with 50% synthetic grey color and 8x10''-80% light density in size", "attributes": ["high quality", "hair loss"], "options": ["color: 250# darkest brown with 50% synthetic grey", "size: 8x10''-80% light density"], "instruction_attributes": ["high quality"], "instruction_options": ["250# darkest brown with 50% synthetic grey", "8x10''-80% light density"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYQB7NP", "worker_id": "A2HMEGTAFO0CS8"}], "B08DKK753Y": [{"asin": "B08DKK753Y", "instruction": "i'm looking for a black storage case for my hair dryer.", "attributes": ["eco friendly", "long lasting", "storage case"], "options": ["color: black"], "instruction_attributes": ["storage case"], "instruction_options": ["black"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8MN4R5", "worker_id": "A3MNXK3VDK37SN"}], "B08KXXM3QK": [{"asin": "B08KXXM3QK", "instruction": "i am looking for quick drying x-large size leggings.", "attributes": ["quick drying", "moisture wicking", "tummy control", "stretch fabric"], "options": ["color: b rose red", "size: x-large"], "instruction_attributes": ["quick drying"], "instruction_options": ["x-large"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHGDBNQ", "worker_id": "A1Q8PPQQCWGY0D"}], "B09Q31YKPN": [{"asin": "B09Q31YKPN", "instruction": "i need some women's shoes with a non-slip rubber sole. look for them in white, size eleven.", "attributes": ["non slip", "rubber sole", "daily wear"], "options": ["color: white", "size: 11"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["white", "11"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJWCVGD", "worker_id": "AR9AU5FY1S3RO"}], "B08BJCGY82": [{"asin": "B08BJCGY82", "instruction": "i need a shampoo set that is paraben free", "attributes": ["paraben free", "cruelty free", "green tea", "hair growth", "natural hair", "hair loss", "damaged hair"], "options": [""], "instruction_attributes": ["paraben free"], "instruction_options": [], "assignment_id": "39JEC75375BYS7D1EDEJWV17L4WCVW", "worker_id": "A2ECRNQ3X5LEXD"}], "B09L5SHDG9": [{"asin": "B09L5SHDG9", "instruction": "i am interested in buying a grey colored rocking chair with memory foam and lumbar support.", "attributes": ["high density", "heavy duty", "lumbar support", "pu leather", "memory foam"], "options": ["color: grey"], "instruction_attributes": ["lumbar support", "memory foam"], "instruction_options": ["grey"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWE4NFJ", "worker_id": "AHXHM1PQTRWIQ"}], "B07V65SLS7": [{"asin": "B07V65SLS7", "instruction": "i am looking for a chocolate gift basket.", "attributes": ["gift basket", "perfect gift"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9CEAZP", "worker_id": "A2ECRNQ3X5LEXD"}], "B085PL9LP4": [{"asin": "B085PL9LP4", "instruction": "i am looking for clinically proven deodorants . the men's deodorants with anitperspirants -long lasting performance and z-discontinued.", "attributes": ["clinically proven", "long lasting"], "options": ["style: z- discontinued"], "instruction_attributes": ["clinically proven", "long lasting"], "instruction_options": ["z- discontinued"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L49VCS", "worker_id": "A3R8PQCD99H61E"}], "B08G1F4RPC": [{"asin": "B08G1F4RPC", "instruction": "i need a high power sound bar in a natural color", "attributes": ["high power", "high speed"], "options": ["color: natural"], "instruction_attributes": ["high power"], "instruction_options": ["natural"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBHVHG3", "worker_id": "A2ECRNQ3X5LEXD"}], "B095HZJZS2": [{"asin": "B095HZJZS2", "instruction": "i would like a 201 by 153 cm high definition protection screen.", "attributes": ["wall mounted", "high definition"], "options": ["size: 201*153cm"], "instruction_attributes": ["high definition"], "instruction_options": ["201*153cm"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98U2YKZ", "worker_id": "A1WS884SI0SLO4"}], "B07YXG3FX7": [{"asin": "B07YXG3FX7", "instruction": "i would like a women's extra large heather grey cotton tank top.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: heather grey", "fit type: women", "size: x-large"], "instruction_attributes": ["heathers cotton", "cotton heather"], "instruction_options": ["heather grey", "women", "x-large"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFOIE93", "worker_id": "A1WS884SI0SLO4"}], "B07MDLKPXY": [{"asin": "B07MDLKPXY", "instruction": "i'm looking for a universal remote control with batteries included", "attributes": ["batteries included", "long lasting"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTKGD4Q", "worker_id": "A2Y2TURT2VEYZN"}], "B09RCHJTN7": [{"asin": "B09RCHJTN7", "instruction": "i am looking for a quad core desktop that has 16gb of ram and 2tb storage", "attributes": ["dual band", "intel core", "quad core"], "options": ["size: 16gb ram | 2tb ssd"], "instruction_attributes": ["quad core"], "instruction_options": ["16gb ram | 2tb ssd"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107BMLIW", "worker_id": "A2ECRNQ3X5LEXD"}], "B01CZVEUIE": [{"asin": "B01CZVEUIE", "instruction": "i need a 1.6ft gold cable usb c for fast charging", "attributes": ["fast charging", "gold plated", "aluminum alloy", "usb port"], "options": ["color: gold", "number of items: 1", "size: 1.6ft"], "instruction_attributes": ["fast charging", "usb port"], "instruction_options": ["gold", "1", "1.6ft"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSYNLGX", "worker_id": "A2Y2TURT2VEYZN"}], "B09QG12W87": [{"asin": "B09QG12W87", "instruction": "i want children's mousse teeth whitening toothpaste.", "attributes": ["teeth whitening", "fresh breath"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9KW6KU", "worker_id": "A2RBF3IIJP15IH"}], "B09JGQZ3VQ": [{"asin": "B09JGQZ3VQ", "instruction": "i'm looking for a outdoor camera with optical zoom and ultra hd", "attributes": ["ultra hd", "optical zoom"], "options": [""], "instruction_attributes": ["ultra hd", "optical zoom"], "instruction_options": [], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA6YC8U", "worker_id": "A2Y2TURT2VEYZN"}], "B09LY9HDNL": [{"asin": "B09LY9HDNL", "instruction": "i drink for red wine quick release for me", "attributes": ["quick release", "hands free"], "options": ["color: wine red"], "instruction_attributes": ["quick release"], "instruction_options": ["wine red"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKMR1TH", "worker_id": "A226L9F2AZ38CL"}], "B08286X2WQ": [{"asin": "B08286X2WQ", "instruction": "i need 12 packs of gluten free cajun rice mix.", "attributes": ["low fat", "gluten free"], "options": ["number of items: 12"], "instruction_attributes": ["gluten free"], "instruction_options": ["12"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA9327Z33", "worker_id": "A1NF6PELRKACS9"}], "B08DMYJMB8": [{"asin": "B08DMYJMB8", "instruction": "i would like a black smartwatch quick release band.", "attributes": ["quick release", "stainless steel"], "options": ["color: black-red"], "instruction_attributes": ["quick release"], "instruction_options": ["black-red"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOFBLL5", "worker_id": "A1WS884SI0SLO4"}], "B07KWHNHF6": [{"asin": "B07KWHNHF6", "instruction": "i am looking for 3t size, olive color cotton heather men shirts .the cloth must be machine wash.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: olive", "fit type: youth", "size: 3t"], "instruction_attributes": ["machine wash", "cotton heather"], "instruction_options": ["olive", "3t"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22MJW8Q", "worker_id": "A3R8PQCD99H61E"}], "B08G1SZVW6": [{"asin": "B08G1SZVW6", "instruction": "i need heavy duty yellow bed frames.", "attributes": ["heavy duty", "easy assemble", "box spring", "storage space"], "options": ["color: yellow"], "instruction_attributes": ["heavy duty"], "instruction_options": ["yellow"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCLEBLP", "worker_id": "A2ECRNQ3X5LEXD"}], "B07QQKCQD7": [{"asin": "B07QQKCQD7", "instruction": "i am in need of 8.5 sized pink color rubber sole women round toe lace up oxford shoes", "attributes": ["anti slip", "non slip", "rubber sole", "synthetic sole"], "options": ["color: pink", "size: 8.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["pink", "8.5"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISZVOYS", "worker_id": "A258PTOZ3D2TQR"}], "B09PYRFKT9": [{"asin": "B09PYRFKT9", "instruction": "i want a high quality, eco friendly cart for a beauty salon.", "attributes": ["high quality", "eco friendly", "beauty salon"], "options": [""], "instruction_attributes": ["high quality", "eco friendly", "beauty salon"], "instruction_options": [], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTK84D9", "worker_id": "AR9AU5FY1S3RO"}], "B09445M1TR": [{"asin": "B09445M1TR", "instruction": "i would like some beige throw pillow covers for the living room", "attributes": ["living room", "dining room"], "options": ["color: beige", "size: 12\"*20\""], "instruction_attributes": ["living room"], "instruction_options": ["beige"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP84JZ7Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QJC9D1K": [{"asin": "B08QJC9D1K", "instruction": "i would like a carrying case for my vita.", "attributes": ["easy carry", "carrying case"], "options": [""], "instruction_attributes": ["carrying case"], "instruction_options": [], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BPSVJI", "worker_id": "A1WS884SI0SLO4"}], "B085S7F1DB": [{"asin": "B085S7F1DB", "instruction": "i am interested in buying a desktop pc which is high performance and has a quad core i5 processor.", "attributes": ["certified refurbished", "high performance", "core i5", "quad core"], "options": [""], "instruction_attributes": ["high performance", "core i5", "quad core"], "instruction_options": [], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVN2Q05", "worker_id": "AHXHM1PQTRWIQ"}], "B08CXMCCTQ": [{"asin": "B08CXMCCTQ", "instruction": "im looking for a synthetic hair ponytail in the color ash blonde.", "attributes": ["easy use", "high quality", "synthetic hair"], "options": ["color: ash blonde"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["ash blonde"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V2NGF9", "worker_id": "AK3JMCIGU8MLU"}], "B0855DYXTG": [{"asin": "B0855DYXTG", "instruction": "my grandma use sugar free honey gram flavor", "attributes": ["keto friendly", "grain free", "low carb", "sugar free", "plant based", "gluten free", "zero sugar"], "options": ["flavor name: honey graham", "size: 9 ounce (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["honey graham"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPIN6V0", "worker_id": "A226L9F2AZ38CL"}], "B08CXS6ZZ7": [{"asin": "B08CXS6ZZ7", "instruction": "i am looking for back exfoliating scrubber easy use in purple", "attributes": ["double sided", "easy use", "dead skin"], "options": ["color: purple"], "instruction_attributes": ["easy use"], "instruction_options": ["purple"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21PBFQI", "worker_id": "A2MSIFDLOHI1UT"}], "B09MYF5VVL": [{"asin": "B09MYF5VVL", "instruction": "i need cupcake toppers for a birthday party", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAXWXZP", "worker_id": "A2ECRNQ3X5LEXD"}], "B0731XBXX8": [{"asin": "B0731XBXX8", "instruction": "i am looking for a pair of easy to use stainless steel monitoring headphones.", "attributes": ["easy use", "stainless steel"], "options": [""], "instruction_attributes": ["easy use", "stainless steel"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYL96L7", "worker_id": "A1EREKSZAA9V7B"}], "B0195C0HKQ": [{"asin": "B0195C0HKQ", "instruction": "i would like a high glossy white desk with metal legs.", "attributes": ["white item", "high gloss", "white finish", "metal legs", "living room"], "options": ["color: glossy white"], "instruction_attributes": ["white item", "high gloss", "white finish", "metal legs"], "instruction_options": ["glossy white"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMQVB6N", "worker_id": "A1WS884SI0SLO4"}], "B09P5HZGZF": [{"asin": "B09P5HZGZF", "instruction": "i would like a desktop dual band mini with a intel core i7 and 64 gigs of ram.", "attributes": ["dual band", "high definition"], "options": ["color: intel core i7-9850h", "size: 64g ram 512g ssd 2tb hdd"], "instruction_attributes": ["dual band"], "instruction_options": ["intel core i7-9850h", "64g ram 512g ssd 2tb hdd"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV2ZX3U", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09P5HZGZF", "instruction": "i'm looking for a mini computer with 32g ram, 512gb sdd and 1tb hd with a intel core i9 for high definition", "attributes": ["dual band", "high definition"], "options": ["color: intel core i9-10880h", "size: 32g ram 512g ssd 1tb hdd"], "instruction_attributes": ["high definition"], "instruction_options": ["intel core i9-10880h", "32g ram 512g ssd 1tb hdd"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFEXLVA", "worker_id": "A2Y2TURT2VEYZN"}, {"asin": "B09P5HZGZF", "instruction": "i would like a desktop mini with a dual band intel i7 core and with 128 g of ssd.", "attributes": ["dual band", "high definition"], "options": ["color: intel core i7-9850h", "size: 8g ram 128g ssd"], "instruction_attributes": ["dual band"], "instruction_options": ["intel core i7-9850h", "8g ram 128g ssd"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXZ5O4I", "worker_id": "A1WS884SI0SLO4"}], "B088PHWLNL": [{"asin": "B088PHWLNL", "instruction": "i'm looking for a easy install protective band strap in gray color", "attributes": ["quick release", "easy install"], "options": ["color: gray"], "instruction_attributes": ["easy install"], "instruction_options": ["gray"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UWP6JQ", "worker_id": "A2Y2TURT2VEYZN"}], "B09BB45XYV": [{"asin": "B09BB45XYV", "instruction": "i would like a long lasting minocular for bird watching.", "attributes": ["non slip", "high power", "long lasting", "bird watching"], "options": [""], "instruction_attributes": ["long lasting", "bird watching"], "instruction_options": [], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPLINJJ", "worker_id": "A1WS884SI0SLO4"}], "B09PHLMDHC": [{"asin": "B09PHLMDHC", "instruction": "looking for a x-large in red slim fit pants for valentine's day", "attributes": ["slim fit", "straight leg", "long sleeve"], "options": ["color: red", "size: x-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["red", "x-large"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1KQ3UG", "worker_id": "A2Y2TURT2VEYZN"}], "B0831RHZP2": [{"asin": "B0831RHZP2", "instruction": "i would like a 15 count herbal tea pack that is non gmo", "attributes": ["caffeine free", "certified organic", "non gmo", "gluten free"], "options": ["flavor name: palace", "size: 15 count"], "instruction_attributes": ["non gmo"], "instruction_options": ["15 count"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDW111RB", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B0831RHZP2", "instruction": "i would like a box of 15 palace tea that is caffeine free.", "attributes": ["caffeine free", "certified organic", "non gmo", "gluten free"], "options": ["flavor name: palace", "size: 15 count (pack of 1)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["palace", "15 count (pack of 1)"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E00GX7M", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0831RHZP2", "instruction": "i want a 3 pack of gluten free paromi cinnamon chai rooibos.", "attributes": ["caffeine free", "certified organic", "non gmo", "gluten free"], "options": ["flavor name: variety: black teas", "size: 15 count (pack of 3)"], "instruction_attributes": ["gluten free"], "instruction_options": ["15 count (pack of 3)"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSG326P", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B0831RHZP2", "instruction": "i am looking for organic caffeine-free chai blends rich rooibos and a sultry blend of spices.; piquant cloves, nutmeg, and cinnamon mingle with sweet allspice, ginger, and a kiss of cardamom organic paromi cinnamon chai rooibos, a chamomile tea,numi which has the floral, herbaceous, and rich herbal teas that's craving. 15 count pack of 1 preferable.", "attributes": ["caffeine free", "certified organic", "non gmo", "gluten free"], "options": ["flavor name: herbal", "size: 15 count (pack of 1)"], "instruction_attributes": ["caffeine free", "certified organic", "non gmo", "gluten free"], "instruction_options": ["herbal", "15 count (pack of 1)"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4COBSZ", "worker_id": "A1DRKZ3SCLAS4V"}], "B083FTXVYC": [{"asin": "B083FTXVYC", "instruction": "i am looking for multi018 color short sleeve shirts.", "attributes": ["long lasting", "polyester spandex", "button closure", "short sleeve", "tumble dry"], "options": ["color: multi018", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["multi018"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THYR5ZS", "worker_id": "A1Q8PPQQCWGY0D"}], "B09N968TTK": [{"asin": "B09N968TTK", "instruction": "i'm looking for a dual layer window 70% blackout hemp fabric zebra roller shades.", "attributes": ["easy install", "living room"], "options": ["color: 70% blackout-violet", "size: 53\"w x 60\"h"], "instruction_attributes": ["living room"], "instruction_options": ["70% blackout-violet"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK8AVNX", "worker_id": "A21IUUHBSEVB56"}], "B087MD5MYH": [{"asin": "B087MD5MYH", "instruction": "i am looking for a high speed laptop wall charger of black color.", "attributes": ["fast charging", "high speed", "usb port"], "options": ["color: black(100w)", "configuration: charger only", "style: 4-port usb-c, usb-a charger,charger only"], "instruction_attributes": ["high speed"], "instruction_options": ["black(100w)"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163VXPQU", "worker_id": "A1Q8PPQQCWGY0D"}], "B07R18DG65": [{"asin": "B07R18DG65", "instruction": "i am looking for lemon cake perfume body mist, in a 4 fl oz container.", "attributes": ["alcohol free", "cruelty free"], "options": [""], "instruction_attributes": ["alcohol free"], "instruction_options": [], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTPOPLJ", "worker_id": "A2KW17G25L25R8"}], "B08LP7K6G7": [{"asin": "B08LP7K6G7", "instruction": "i would like a medium dark pink robe made from a soft material.", "attributes": ["hand wash", "polyester spandex", "soft material", "daily wear"], "options": ["color: dark pink", "size: medium"], "instruction_attributes": ["soft material"], "instruction_options": ["dark pink", "medium"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS4C9GU", "worker_id": "A1WS884SI0SLO4"}], "B09FQ8LHD3": [{"asin": "B09FQ8LHD3", "instruction": "i am looking for a 3x-large long sleeve t shirts for man", "attributes": ["hand wash", "daily casual", "loose fit", "wash cold", "long sleeve", "button closure"], "options": ["color: (#002)navy", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["3x-large"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841CPXAO", "worker_id": "A9QRQL9CFJBI7"}], "B06WLKRWCH": [{"asin": "B06WLKRWCH", "instruction": "i am looking for a quad core tablet that is certified refurbished.", "attributes": ["certified refurbished", "high performance", "quad core"], "options": [""], "instruction_attributes": ["certified refurbished", "quad core"], "instruction_options": [], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWQ452Y", "worker_id": "A1NF6PELRKACS9"}], "B093YSVY9K": [{"asin": "B093YSVY9K", "instruction": "i want a set of 2 mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1HE082", "worker_id": "A2RBF3IIJP15IH"}], "B09FPJ3DLB": [{"asin": "B09FPJ3DLB", "instruction": "i am looking for a height adjustable makeup mirror for cutting hair. it should come with a light.", "attributes": ["height adjustable", "easy carry", "hair cutting"], "options": ["size: with light"], "instruction_attributes": ["height adjustable", "hair cutting"], "instruction_options": ["with light"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WTLWQJ", "worker_id": "A1NF6PELRKACS9"}], "B09N6ZLMRY": [{"asin": "B09N6ZLMRY", "instruction": "i am looking for a nightstand that is easy to install", "attributes": ["easy install", "storage unit"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHACVODS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GM11T53": [{"asin": "B09GM11T53", "instruction": "i am looking for heavy duty flip case for samsung galaxy mobile and color should be olive.", "attributes": ["heavy duty", "wireless charging"], "options": ["color: olive"], "instruction_attributes": ["heavy duty"], "instruction_options": ["olive"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647CMH3R", "worker_id": "A3FG5PQHG5AH3Y"}], "B00RLUQ2YK": [{"asin": "B00RLUQ2YK", "instruction": "i need cruelty free body lotion that is medium dark olive color", "attributes": ["highly pigmented", "cruelty free"], "options": ["color: medium dark olive"], "instruction_attributes": ["cruelty free"], "instruction_options": ["medium dark olive"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL10AVH", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DR6BS9P": [{"asin": "B09DR6BS9P", "instruction": "i am looking for long lasting hair dye if blue and black color.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["style: ash - 1.1 blue black"], "instruction_attributes": ["long lasting", "hair dye"], "instruction_options": ["ash - 1.1 blue black"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYP1HDF", "worker_id": "A3FG5PQHG5AH3Y"}], "B07XJ29K93": [{"asin": "B07XJ29K93", "instruction": "find me a joe west character flash case compatible with apple phone", "attributes": ["compatible apple", "high resolution"], "options": ["color: joe west"], "instruction_attributes": ["compatible apple"], "instruction_options": ["joe west"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOJWCTW", "worker_id": "A2Y2TURT2VEYZN"}], "B09QKSHFCB": [{"asin": "B09QKSHFCB", "instruction": "i want a 9 pack of hairrebirth herbal spray for hair loss.", "attributes": ["hair growth", "hair loss"], "options": ["color: 9pcs"], "instruction_attributes": ["hair loss"], "instruction_options": ["9pcs"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDQCCHZ", "worker_id": "A2RBF3IIJP15IH"}], "B09BKJ813P": [{"asin": "B09BKJ813P", "instruction": "i would like a pair of 38 mens grey hiking shoes with a rubber outsole.", "attributes": ["anti slip", "arch support", "rubber outsole"], "options": ["color: grey", "size: 38 m eu"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["grey", "38 m eu"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6OPWMMF", "worker_id": "A1WS884SI0SLO4"}], "B093WNXZZB": [{"asin": "B093WNXZZB", "instruction": "i'm looking for an easy to use stainless steel nail clipper set.", "attributes": ["non slip", "high quality", "easy use", "stainless steel", "dead skin"], "options": [""], "instruction_attributes": ["easy use", "stainless steel"], "instruction_options": [], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V2VGFH", "worker_id": "AR9AU5FY1S3RO"}], "B073Q2PS8Q": [{"asin": "B073Q2PS8Q", "instruction": "i am looking for non toxic lip gloss that has organic certificate. please select the rose one", "attributes": ["certified organic", "non toxic", "cruelty free"], "options": ["color: ros\u00e9"], "instruction_attributes": ["certified organic", "non toxic"], "instruction_options": ["ros\u00e9"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL9XCEU", "worker_id": "A2COCSUGZV28X"}], "B075GFMP3C": [{"asin": "B075GFMP3C", "instruction": "i'm looking for a replacement remote control for my sharp aquos tv that comes with aaa batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3PIWWX1FJUGC9QJD7GHMGB38G1XJJV", "worker_id": "AR9AU5FY1S3RO"}], "B09QTWZV8L": [{"asin": "B09QTWZV8L", "instruction": "i am looking for a snowy white high speed wifi booster.", "attributes": ["dual band", "high speed"], "options": ["color: snowy white"], "instruction_attributes": ["high speed"], "instruction_options": ["snowy white"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB964YB", "worker_id": "AHXHM1PQTRWIQ"}], "B0963ZR8VH": [{"asin": "B0963ZR8VH", "instruction": "i want a xyyssm barber chair for my beauty salon.", "attributes": ["heavy duty", "beauty salon"], "options": [""], "instruction_attributes": ["beauty salon"], "instruction_options": [], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY5A7PJ", "worker_id": "A2RBF3IIJP15IH"}], "B09N3RLDK5": [{"asin": "B09N3RLDK5", "instruction": "i am looking for lobsters ready eat and size 2-pack(1 box of each)", "attributes": ["wild caught", "ready eat"], "options": ["size: 2 - pack (1 box of each)"], "instruction_attributes": ["ready eat"], "instruction_options": ["2 - pack (1 box of each)"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LH8L04", "worker_id": "AX2EWYWZM19AZ"}], "B08CD4Y4R1": [{"asin": "B08CD4Y4R1", "instruction": "i would like a high resolution background that is 7 by 5 ft.", "attributes": ["high resolution", "easy carry"], "options": ["color: b08", "size: 7x5ft"], "instruction_attributes": ["high resolution"], "instruction_options": ["7x5ft"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNEKPIX8", "worker_id": "A2ECRNQ3X5LEXD"}], "B09M6TR17G": [{"asin": "B09M6TR17G", "instruction": "find me a nightstand in off-white color with storage space", "attributes": ["solid wood", "storage space"], "options": ["color: off-white"], "instruction_attributes": ["storage space"], "instruction_options": ["off-white"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNEKZIXI", "worker_id": "A2Y2TURT2VEYZN"}], "B07Q2PC166": [{"asin": "B07Q2PC166", "instruction": "i am looking for earbud headphone having deep bass stereo sound.please choose black color.", "attributes": ["aluminum alloy", "stereo sound"], "options": ["color: black", "style: without mic"], "instruction_attributes": ["stereo sound"], "instruction_options": ["black"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R8IYTW", "worker_id": "A3FG5PQHG5AH3Y"}], "B003U3A428": [{"asin": "B003U3A428", "instruction": "i would like a surveillance camera with aaa batteries included.", "attributes": ["batteries included", "easy install", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3Y0AJ5H", "worker_id": "A1WS884SI0SLO4"}], "B07MJM2ZKY": [{"asin": "B07MJM2ZKY", "instruction": "i am looking for stainless steel hair cutting scissors of 7 inch size.", "attributes": ["stainless steel", "hair cutting"], "options": ["size: 7 inch"], "instruction_attributes": ["stainless steel"], "instruction_options": ["7 inch"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7YRURW", "worker_id": "A1Q8PPQQCWGY0D"}], "B08MXJXM8L": [{"asin": "B08MXJXM8L", "instruction": "i would like a black lavender candle made from soy.", "attributes": ["lead free", "eco friendly", "long lasting", "soy wax"], "options": ["scent: black lavender"], "instruction_attributes": ["soy wax"], "instruction_options": ["black lavender"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6URJEZV", "worker_id": "A1WS884SI0SLO4"}], "B07RZVLVBV": [{"asin": "B07RZVLVBV", "instruction": "i would like a chrome power amplifier", "attributes": ["power amplifier", "hands free"], "options": ["color: chrome pushbuttons, chrome dot knobs"], "instruction_attributes": ["power amplifier"], "instruction_options": ["chrome pushbuttons, chrome dot knobs"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PODQES", "worker_id": "A2ECRNQ3X5LEXD"}], "B0773RT6TY": [{"asin": "B0773RT6TY", "instruction": "i would like a trail mix that is almond cranberry crunch and is non gmo.", "attributes": ["artificial ingredients", "gluten free", "non gmo"], "options": ["flavor name: almond cranberry crunch", "size: 14 ounce (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["almond cranberry crunch"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJKELOK", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CHBR14C": [{"asin": "B07CHBR14C", "instruction": "i need a high speed black usb cable", "attributes": ["high speed", "aluminum alloy", "usb port"], "options": ["color: black", "size: 3ft"], "instruction_attributes": ["high speed"], "instruction_options": ["black"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVWL9X3", "worker_id": "A2ECRNQ3X5LEXD"}], "B08TQTZYT7": [{"asin": "B08TQTZYT7", "instruction": "i want an easy assemble wampat farmhouse coffee table with storage drawers, modern coffee table for living room, center table with double storage spaces, metal legs, grey,", "attributes": ["easy assemble", "metal legs", "storage space", "living room"], "options": [""], "instruction_attributes": ["easy assemble", "metal legs", "storage space", "living room"], "instruction_options": [], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDK22OR", "worker_id": "A1IL2K0ELYI090"}], "B07K474FMH": [{"asin": "B07K474FMH", "instruction": "i'm looking for nail drill bits for nail art", "attributes": ["easy use", "nail art"], "options": [""], "instruction_attributes": ["nail art"], "instruction_options": [], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X027T43L", "worker_id": "A2Y2TURT2VEYZN"}], "B002NU8W1O": [{"asin": "B002NU8W1O", "instruction": "i'm looking for modern kitchen with the latest design.", "attributes": ["brushed nickel", "nickel finish", "pendant light", "light fixture", "dining room", "living room"], "options": [""], "instruction_attributes": ["brushed nickel", "dining room", "living room"], "instruction_options": [], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6GGPUC", "worker_id": "A21IUUHBSEVB56"}], "B086X5DCDB": [{"asin": "B086X5DCDB", "instruction": "i am looking for amber vanila scented shampoo and conditioner set containing argan oil.", "attributes": ["sulfate free", "argan oil", "natural ingredients", "damaged hair"], "options": ["scent: amber vanila"], "instruction_attributes": ["argan oil"], "instruction_options": ["amber vanila"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQH0CJM", "worker_id": "A1Q8PPQQCWGY0D"}], "B01L9HQ1IM": [{"asin": "B01L9HQ1IM", "instruction": "i am looking for a sulfate free conditioner", "attributes": ["sulfate free", "hair growth"], "options": [""], "instruction_attributes": ["sulfate free"], "instruction_options": [], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJPAOMV", "worker_id": "A2ECRNQ3X5LEXD"}], "B07VY9JYJW": [{"asin": "B07VY9JYJW", "instruction": "i am looking for a linen pants with elastic waist. and i choose the xx-large size with wine color", "attributes": ["quality materials", "elastic waist", "button closure"], "options": ["color: wine", "size: xx-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["wine", "xx-large"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBUQEJW", "worker_id": "A2COCSUGZV28X"}], "B06XT3R53B": [{"asin": "B06XT3R53B", "instruction": "i am looking for aaa batteries remote control for tv.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE24SGQZ", "worker_id": "A1Q8PPQQCWGY0D"}], "B017AHH0IK": [{"asin": "B017AHH0IK", "instruction": "i want to buy ballet shoes which have rubber sole in grey suede color and a size of 6.", "attributes": ["closed toe", "rubber sole"], "options": ["color: grey suede", "size: 6"], "instruction_attributes": ["rubber sole"], "instruction_options": ["grey suede", "6"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7SFRRWJ", "worker_id": "AJY5G987IRT25"}], "B08DFRWV7B": [{"asin": "B08DFRWV7B", "instruction": "i am looking for a women's medium long sleeve sweater.", "attributes": ["loose fit", "long sleeve", "daily wear"], "options": ["color: a-sky blue", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDV38YN", "worker_id": "A1EREKSZAA9V7B"}], "B083WNYPFC": [{"asin": "B083WNYPFC", "instruction": "i would like a 2 pound bag of individually wrapped candy.", "attributes": ["individually wrapped", "perfect gift"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIFJ2LW", "worker_id": "A1WS884SI0SLO4"}], "B09MZFPKXZ": [{"asin": "B09MZFPKXZ", "instruction": "find me a paraben free long lasting lip gloss", "attributes": ["cruelty free", "paraben free", "animal testing", "long lasting"], "options": [""], "instruction_attributes": ["paraben free", "long lasting"], "instruction_options": [], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTS8KTK", "worker_id": "A2Y2TURT2VEYZN"}], "B00HKIBEMS": [{"asin": "B00HKIBEMS", "instruction": "i am looking for a gluten free rice ramen & miso soup. choose a pack of 10 with jade pearl color", "attributes": ["gluten free", "low fat", "ready eat"], "options": ["flavor: jade pearl", "size: 2.8 ounce (pack of 10)"], "instruction_attributes": ["gluten free"], "instruction_options": ["jade pearl", "2.8 ounce (pack of 10)"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDU5ZQQ", "worker_id": "A2COCSUGZV28X"}], "B096XJ6N2Z": [{"asin": "B096XJ6N2Z", "instruction": "i want to buy ceiling chandeliers which are stainless steel, and suitable for dining room, while the color should be 345-variable light.", "attributes": ["stainless steel", "pendant light", "dining room", "living room"], "options": ["color: 345-variabel light"], "instruction_attributes": ["stainless steel", "dining room"], "instruction_options": ["345-variabel light"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTHI9NO", "worker_id": "AJY5G987IRT25"}], "B09JMVRXRG": [{"asin": "B09JMVRXRG", "instruction": "i am looking for arabic anti aging coffee scrub.", "attributes": ["anti aging", "seed oil"], "options": ["scent: himalayan salt"], "instruction_attributes": ["anti aging"], "instruction_options": ["himalayan salt"], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y5NNNN", "worker_id": "A2KW17G25L25R8"}], "B08FZQQ1BR": [{"asin": "B08FZQQ1BR", "instruction": "i am looking for red leather flat sandals in a size 6.5.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: red leather", "size: 6.5"], "instruction_attributes": [], "instruction_options": ["red leather", "6.5"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGUDCRMR", "worker_id": "AK3JMCIGU8MLU"}], "B09SFXQ9QG": [{"asin": "B09SFXQ9QG", "instruction": "i am looking for green tea face masks for adults.", "attributes": ["easy use", "green tea"], "options": ["color: b#-50pc"], "instruction_attributes": ["green tea"], "instruction_options": ["b#-50pc"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZHDRPB", "worker_id": "A2KW17G25L25R8"}], "B093T18DFQ": [{"asin": "B093T18DFQ", "instruction": "looking for laundry bags with imported zipper", "attributes": ["blouse hosiery", "imported zipper", "laundry bag"], "options": [""], "instruction_attributes": ["imported zipper", "laundry bag"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKMI7DG", "worker_id": "A10OGH5CQBXL5N"}], "B09H6MNXFG": [{"asin": "B09H6MNXFG", "instruction": "i am looking for large size sweater pullover having long sleeve.", "attributes": ["long sleeve", "button closure"], "options": ["color: a5-khaki", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["large"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34OW41C", "worker_id": "A1Q8PPQQCWGY0D"}], "B01F1760HS": [{"asin": "B01F1760HS", "instruction": "i am looking for a travel size whitening toothpaste.", "attributes": ["travel size", "fresh breath"], "options": [""], "instruction_attributes": ["travel size"], "instruction_options": [], "assignment_id": "3PIWWX1FJUGC9QJD7GHMGB38G2OJJO", "worker_id": "A1EREKSZAA9V7B"}], "B087YS6TRY": [{"asin": "B087YS6TRY", "instruction": "i'm looking for a large butt lifting women workout short.", "attributes": ["butt lifting", "wide leg", "tummy control", "high waist"], "options": ["color: gray", "size: large"], "instruction_attributes": ["butt lifting"], "instruction_options": ["large"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PCVBU7", "worker_id": "ARQ05PDNXPFDI"}], "B09JGSWVJH": [{"asin": "B09JGSWVJH", "instruction": "i am looking for a lead free limoncello scented jar candle that uses soy wax.", "attributes": ["lead free", "soy wax"], "options": ["scent: limoncello 21704"], "instruction_attributes": ["lead free", "soy wax"], "instruction_options": ["limoncello 21704"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJL1OBYP", "worker_id": "A1EREKSZAA9V7B"}], "B0788C3L56": [{"asin": "B0788C3L56", "instruction": "i am looking for a dresser that is mid century style", "attributes": ["mid century", "assembly required"], "options": [""], "instruction_attributes": ["mid century"], "instruction_options": [], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC57TKRP", "worker_id": "A2ECRNQ3X5LEXD"}], "B07SS54KX2": [{"asin": "B07SS54KX2", "instruction": "i'm looking for a perfect quality modern wall light sconce led brushed nickel hardwired in the brand of natalya.", "attributes": ["brushed nickel", "nickel finish", "living room"], "options": ["color: chrome"], "instruction_attributes": ["brushed nickel", "living room"], "instruction_options": ["chrome"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC571KRX", "worker_id": "A21IUUHBSEVB56"}], "B07D9835GF": [{"asin": "B07D9835GF", "instruction": "i would like a 100g copper holographic body glitter that is long lasting.", "attributes": ["easy apply", "long lasting"], "options": ["color: copper holographic", "size: chunky - 100g | 3.5oz"], "instruction_attributes": ["long lasting"], "instruction_options": ["copper holographic", "chunky - 100g | 3.5oz"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT062LNUM", "worker_id": "A1WS884SI0SLO4"}], "B0982NGF1H": [{"asin": "B0982NGF1H", "instruction": "i am looking for an easy to use wireless nanny camera that features motion detection and night vision.", "attributes": ["easy use", "motion detection"], "options": [""], "instruction_attributes": ["easy use", "motion detection"], "instruction_options": [], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQDL0N0", "worker_id": "AK3JMCIGU8MLU"}], "B08MTY5BJP": [{"asin": "B08MTY5BJP", "instruction": "i am looking for a pair of 80 inch wide by 84 inch long machine washable curtains for my living room.", "attributes": ["machine washable", "hand painted", "living room"], "options": ["size: 80w x 84l inch"], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["80w x 84l inch"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI78KGZ2", "worker_id": "A1EREKSZAA9V7B"}], "B07YM81LFQ": [{"asin": "B07YM81LFQ", "instruction": "i'm looking for a perfect furniture item.", "attributes": ["twin size", "space saving", "white item", "box spring"], "options": ["color: clay", "pattern name: bed + curtains", "style: low loft + staircase"], "instruction_attributes": ["white item"], "instruction_options": ["low loft + staircase"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC7YNIE", "worker_id": "A21IUUHBSEVB56"}], "B09LLLC65G": [{"asin": "B09LLLC65G", "instruction": "looking for bookshelves and bookcases for living room of vintage black colour", "attributes": ["storage space", "living room"], "options": ["color: vintage black"], "instruction_attributes": ["storage space", "living room"], "instruction_options": ["vintage black"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA738RY", "worker_id": "A10OGH5CQBXL5N"}], "B095MP65P5": [{"asin": "B095MP65P5", "instruction": "i would like some 18 inch high quality synthetic hair extensions that are gray.", "attributes": ["high quality", "synthetic hair"], "options": ["color: 1b | gray", "size: 18 inch"], "instruction_attributes": ["high quality", "synthetic hair"], "instruction_options": ["1b | gray", "18 inch"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVJDZS4", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B095MP65P5", "instruction": "please find a multi-pack of 18\" synthetic hair extensions that are curly enough to be suitable for black women.", "attributes": ["high quality", "synthetic hair"], "options": ["color: 1b | bug", "size: 18 inch"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["18 inch"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK4AG6AX", "worker_id": "A3LIIE572Z4OG7"}], "B006OY1LZ4": [{"asin": "B006OY1LZ4", "instruction": "i would like a old version of a 730 golden caramel foundation that is cruelty free.", "attributes": ["dermatologist tested", "fragrance free", "cruelty free"], "options": ["color: 730 golden caramel", "style: old version"], "instruction_attributes": ["cruelty free"], "instruction_options": ["730 golden caramel", "old version"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFOJEMY", "worker_id": "A1WS884SI0SLO4"}], "B07MFN6KSB": [{"asin": "B07MFN6KSB", "instruction": "i'm looking for a snack with 3 seed mix in 1 pack of 4 pound and non gmo product", "attributes": ["low carb", "non gmo"], "options": ["flavor name: 3 seed mix", "size: 4 pound (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["3 seed mix", "4 pound (pack of 1)"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDP7K5E", "worker_id": "A2Y2TURT2VEYZN"}], "B08L7SCJDR": [{"asin": "B08L7SCJDR", "instruction": "i am looking for an easy to install computer table for my living room.", "attributes": ["non slip", "easy install", "exquisite workmanship", "living room"], "options": ["color: rustic brown", "style: computer table"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["computer table"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34OY14B", "worker_id": "A1EREKSZAA9V7B"}], "B07PTKWRLR": [{"asin": "B07PTKWRLR", "instruction": "looking for fresh breath organic toothpaste", "attributes": ["fluoride free", "fresh breath"], "options": [""], "instruction_attributes": ["fresh breath"], "instruction_options": [], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQFQ19J", "worker_id": "A10OGH5CQBXL5N"}, {"asin": "B07PTKWRLR", "instruction": "i would like a fluoride free toothpaste to give me fresh breath.", "attributes": ["fluoride free", "fresh breath"], "options": [""], "instruction_attributes": ["fluoride free", "fresh breath"], "instruction_options": [], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2607YS", "worker_id": "A1WS884SI0SLO4"}], "B09H4FDQ63": [{"asin": "B09H4FDQ63", "instruction": "i'm looking for a blanket with a shark tooth printed in 60x80\"", "attributes": ["easy clean", "printing technology"], "options": ["color: shark tooth", "size: 60\"x80\""], "instruction_attributes": ["printing technology"], "instruction_options": ["shark tooth", "60\"x80\""], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21PHQFZ", "worker_id": "A2Y2TURT2VEYZN"}], "B09NPJPQCW": [{"asin": "B09NPJPQCW", "instruction": "i am lookinf for high quality scrubbing strap that is easy to use.", "attributes": ["easy carry", "easy use", "high quality"], "options": [""], "instruction_attributes": ["easy use", "high quality"], "instruction_options": [], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO90GJ8", "worker_id": "A1Q8PPQQCWGY0D"}], "B094DD5CM1": [{"asin": "B094DD5CM1", "instruction": "i want windmill birthday cake toppers.", "attributes": ["birthday cake", "cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC9F0DE", "worker_id": "A2RBF3IIJP15IH"}], "B009URK5JK": [{"asin": "B009URK5JK", "instruction": "i want katz gluten free cinnamon donut holes.", "attributes": ["gluten free", "nut free", "soy free", "dairy free"], "options": ["flavor name: cinnamon", "size: 6 ounce"], "instruction_attributes": ["gluten free"], "instruction_options": ["cinnamon"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT5JYJH", "worker_id": "A2RBF3IIJP15IH"}], "B097CMW66M": [{"asin": "B097CMW66M", "instruction": "i am looking for a cell phone that is fast charging and is cream colored", "attributes": ["fast charging", "hands free"], "options": ["color: cream", "size: 128gb", "style: z flip 3 + buds 2"], "instruction_attributes": ["fast charging"], "instruction_options": ["cream"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTKHD4R", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B097CMW66M", "instruction": "i would like a z flip 3 256gb phantom black cell phone that is fast charging.", "attributes": ["fast charging", "hands free"], "options": ["color: phantom black", "size: 256gb", "style: z flip 3 + phone case"], "instruction_attributes": ["fast charging"], "instruction_options": ["phantom black", "256gb", "z flip 3 + phone case"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXFG7GA", "worker_id": "A1WS884SI0SLO4"}], "B09D2T94JT": [{"asin": "B09D2T94JT", "instruction": "i want a green couch for my living room. make sure that it is easy to assemble.", "attributes": ["high density", "easy assemble", "metal legs", "solid wood", "living room"], "options": ["color: green"], "instruction_attributes": ["easy assemble", "living room"], "instruction_options": ["green"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXV15O5", "worker_id": "A1NF6PELRKACS9"}], "B009PCNTPM": [{"asin": "B009PCNTPM", "instruction": "i need dark chocolate made by trader joe", "attributes": ["trader joe", "artificial colors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "33UKMF931KU01WBNV49UKNDQC65TT7", "worker_id": "A2COCSUGZV28X"}], "B07C1VP88H": [{"asin": "B07C1VP88H", "instruction": "i am looking for a cd drive that is silver and easier to use", "attributes": ["easy use", "carrying case"], "options": ["color: silver"], "instruction_attributes": ["easy use"], "instruction_options": ["silver"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCZ6Q49", "worker_id": "A2ECRNQ3X5LEXD"}], "B093FQ8SJ9": [{"asin": "B093FQ8SJ9", "instruction": "i need blue clogs that are made of vinyl and are a size 9", "attributes": ["non slip", "ethylene vinyl", "vinyl acetate"], "options": ["color: blue", "size: 9 women | 8 men"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["blue", "9 women | 8 men"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8YW8G6", "worker_id": "A2ECRNQ3X5LEXD"}], "B0829QZFM7": [{"asin": "B0829QZFM7", "instruction": "i am looking for fruit snack pack having fuji & red apple flavor and are gluten and fat free.", "attributes": ["gluten free", "non gmo", "fat free", "real fruit", "simple ingredients"], "options": ["flavor name: fuji & reds apple", "size: 24 snack bags"], "instruction_attributes": ["gluten free", "fat free"], "instruction_options": ["fuji & reds apple"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V6KU2Q", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B0829QZFM7", "instruction": "i want 24 bags of non gmo bare baked crunchy apple fruit snacks.", "attributes": ["gluten free", "non gmo", "fat free", "real fruit", "simple ingredients"], "options": ["flavor name: fruit variety pack", "size: 24 snack bags"], "instruction_attributes": ["non gmo"], "instruction_options": ["24 snack bags"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMH61JC", "worker_id": "A2RBF3IIJP15IH"}], "B08HX6QMT9": [{"asin": "B08HX6QMT9", "instruction": "i would like a brown phone case with tempered glass.", "attributes": ["glass screen", "tempered glass"], "options": ["color: brown"], "instruction_attributes": ["tempered glass"], "instruction_options": ["brown"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYQAN74", "worker_id": "A1WS884SI0SLO4"}], "B09LS4LYWV": [{"asin": "B09LS4LYWV", "instruction": "i would like to a buy a glass window film of the color multi-020884 for the living room.", "attributes": ["eco friendly", "living room"], "options": ["color: multi-020884", "size: 23.6wx35.4l-inch x2 pcs"], "instruction_attributes": ["living room"], "instruction_options": ["multi-020884"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH8U1VM", "worker_id": "AHXHM1PQTRWIQ"}], "B0086UI36O": [{"asin": "B0086UI36O", "instruction": "i am looking for gluten free, low fat protein chips , chili nacho cheese", "attributes": ["gluten free", "protein serving", "low fat", "high protein", "natural flavors"], "options": ["flavor: protein chips - chili nacho cheese", "size: 1.2 ounce (pack of 6)"], "instruction_attributes": ["gluten free", "low fat"], "instruction_options": ["protein chips - chili nacho cheese"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA3JA8W", "worker_id": "A258PTOZ3D2TQR"}], "B08JHBSFLK": [{"asin": "B08JHBSFLK", "instruction": "im looking for women\u2019s blue, flat propet sandals, in size 6 and the style should be fionna.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: blue", "size: 6"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDK5O2G", "worker_id": "AK3JMCIGU8MLU"}], "B013BZTW22": [{"asin": "B013BZTW22", "instruction": "i want gluten free yummy earth organic fruit lollipops.", "attributes": ["gluten free", "dairy free", "natural flavors"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YM5GAR", "worker_id": "A2RBF3IIJP15IH"}], "B07QRYVRPF": [{"asin": "B07QRYVRPF", "instruction": "i would like a 20 by 26 inch dark green pillow throw cover for my living room.", "attributes": ["king size", "living room"], "options": ["color: dark green", "size: 20\"x26\""], "instruction_attributes": ["living room"], "instruction_options": ["dark green", "20\"x26\""], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733PGEBA", "worker_id": "A1WS884SI0SLO4"}], "B09LSW7DJ1": [{"asin": "B09LSW7DJ1", "instruction": "i am looking for pink color long lasting cube ice face roller for facial treatment to tighten ,tone skin and de-puff the eye area", "attributes": ["anti aging", "long lasting", "easy use", "green tea", "fine lines"], "options": ["color: pink"], "instruction_attributes": ["long lasting"], "instruction_options": ["pink"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4LB89P", "worker_id": "A258PTOZ3D2TQR"}], "B082YPVYX6": [{"asin": "B082YPVYX6", "instruction": "i need some lipstick that is long lasting and is cherry colored", "attributes": ["cruelty free", "fragrance free", "long lasting", "hyaluronic acid", "nail polish"], "options": ["color: 11- cherry bomb"], "instruction_attributes": ["long lasting"], "instruction_options": ["11- cherry bomb"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SX9DUI", "worker_id": "A2ECRNQ3X5LEXD"}], "B09M837LNL": [{"asin": "B09M837LNL", "instruction": "i'm looking for outdoor security camera with audio.", "attributes": ["heavy duty", "motion detection"], "options": ["size: 5mp single bullet"], "instruction_attributes": ["motion detection"], "instruction_options": ["5mp single bullet"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRVB2YE", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B09M837LNL", "instruction": "i am looking for 16 pcs 4k bullet hd outdoor security ip camera with mic/audio and motion detection", "attributes": ["heavy duty", "motion detection"], "options": ["size: 16ch 16pcs 4k bullet"], "instruction_attributes": ["motion detection"], "instruction_options": ["16ch 16pcs 4k bullet"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FR6FB6", "worker_id": "A258PTOZ3D2TQR"}], "B07YT5TRSV": [{"asin": "B07YT5TRSV", "instruction": "i am looking for east west furniture dlt-ana-tp dublin dining table made of acacia ,a beautiful round dining table makes a cozy addition to any kitchen or classic dining room. the remarkable dining table which facilitates an affectionate family emotion. the frame of this dining room table which will increase the beauty of your living area. the wood table which gives high-quality style with a touch of class to add a powerful appeal. measurements of the great hardwood wood kitchen table length 42; width 42; height 29.5 in dmt-wbk-tp color preferable.", "attributes": ["mid century", "easy clean", "solid wood", "dining room"], "options": ["color: dmt-wbk-tp", "pattern name: table + dining chairs"], "instruction_attributes": ["mid century", "easy clean", "solid wood", "dining room"], "instruction_options": ["dmt-wbk-tp", "table + dining chairs"], "assignment_id": "3TE22NPXPMMW3QH7127E47P6G8D44W", "worker_id": "A1DRKZ3SCLAS4V"}], "B08VMYJQBT": [{"asin": "B08VMYJQBT", "instruction": "i am looking for rubber sole backless slip on loafer shoes for women of size :8", "attributes": ["rubber sole", "fashion design"], "options": ["color: blue", "size: 8"], "instruction_attributes": ["rubber sole"], "instruction_options": ["8"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLWKTFK", "worker_id": "AX2EWYWZM19AZ"}], "B016KWUP3I": [{"asin": "B016KWUP3I", "instruction": "i want a 2 pack argan oil shampoo and conditioner set.", "attributes": ["sulfate free", "argan oil", "green tea", "natural ingredients", "damaged hair", "dry hair"], "options": ["size: 10 fl oz (pack of 2)"], "instruction_attributes": ["argan oil"], "instruction_options": ["10 fl oz (pack of 2)"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YRS69A", "worker_id": "A2RBF3IIJP15IH"}], "B0017JVMS2": [{"asin": "B0017JVMS2", "instruction": "i am looking for a plant based peppermint scented soap.", "attributes": ["plant based", "cruelty free"], "options": ["scent: peppermint", "size: 16 fl oz (pack of 2)"], "instruction_attributes": ["plant based"], "instruction_options": ["peppermint"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGS9YIO", "worker_id": "A1EREKSZAA9V7B"}], "B08ZJFWNPH": [{"asin": "B08ZJFWNPH", "instruction": "i would like a pair of size 9 walking shoes with a rubber sole.", "attributes": ["non slip", "rubber sole", "comfortable fit", "unique design"], "options": ["size: 9"], "instruction_attributes": ["rubber sole"], "instruction_options": ["9"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ56WKCP", "worker_id": "A1WS884SI0SLO4"}], "B01NC0O22H": [{"asin": "B01NC0O22H", "instruction": "i want to buy walkie talkie which has batteries included and come in pack of 3 in black color.", "attributes": ["batteries included", "aaa batteries"], "options": ["style: 3 pack - black"], "instruction_attributes": ["batteries included"], "instruction_options": ["3 pack - black"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLQA4I7", "worker_id": "AJY5G987IRT25"}], "B09DFLT1VJ": [{"asin": "B09DFLT1VJ", "instruction": "i want a 24w led light with high power lamp. it should mount on a wall.", "attributes": ["wall mounted", "high power", "stainless steel"], "options": ["size: 24w"], "instruction_attributes": ["wall mounted", "high power"], "instruction_options": ["24w"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4D6I0F", "worker_id": "A1NF6PELRKACS9"}], "B09R7W36Q3": [{"asin": "B09R7W36Q3", "instruction": "i want a small and easy to use u-shaped toothbrush for kids.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: c", "size: s"], "instruction_attributes": ["easy use"], "instruction_options": ["s"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCV965J", "worker_id": "A2RBF3IIJP15IH"}], "B076YTK3FV": [{"asin": "B076YTK3FV", "instruction": "i would like a 2 bottles of flathead cherry jerry gluten free jam.", "attributes": ["hand crafted", "non gmo", "gluten free"], "options": ["flavor: flathead cherry jelly", "size: 2 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["flathead cherry jelly", "2 pack"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB168ULC", "worker_id": "A1WS884SI0SLO4"}], "B09QLSZHCP": [{"asin": "B09QLSZHCP", "instruction": "i would like a brush set for synthetic hair.", "attributes": ["high quality", "rose gold", "synthetic hair"], "options": [""], "instruction_attributes": ["synthetic hair"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPDDDQP", "worker_id": "A1WS884SI0SLO4"}], "B00LI3SBU4": [{"asin": "B00LI3SBU4", "instruction": "i want degree men anti-perspirant.", "attributes": ["anti perspirant", "sensitive skin"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR96C0T", "worker_id": "A2RBF3IIJP15IH"}], "B09NR7TK9C": [{"asin": "B09NR7TK9C", "instruction": "looking for high density black colour gaming chair", "attributes": ["high density", "pu leather", "steel frame"], "options": ["color: black"], "instruction_attributes": ["high density"], "instruction_options": ["black"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVU4X96", "worker_id": "A10OGH5CQBXL5N"}], "B07N91GKH1": [{"asin": "B07N91GKH1", "instruction": "i want a cottage grey and long lasting 6-drawer double dresser.", "attributes": ["long lasting", "engineered wood"], "options": ["color: cottage grey"], "instruction_attributes": ["long lasting"], "instruction_options": ["cottage grey"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK52J3C", "worker_id": "A2RBF3IIJP15IH"}], "B098KKFQZH": [{"asin": "B098KKFQZH", "instruction": "i would like a sofa with a solid wood frame.", "attributes": ["solid wood", "memory foam"], "options": ["size: sofa, chair, ottoman"], "instruction_attributes": ["solid wood"], "instruction_options": ["sofa, chair, ottoman"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L43VCM", "worker_id": "A1WS884SI0SLO4"}], "B09HCKSXZW": [{"asin": "B09HCKSXZW", "instruction": "i am looking for 03#beige color women shoes having high heels.", "attributes": ["knee high", "open toe", "steel toe", "high heel", "memory foam"], "options": ["color: 03#beige", "size: 9.5-10"], "instruction_attributes": ["high heel"], "instruction_options": ["03#beige"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTTVE5A", "worker_id": "A1Q8PPQQCWGY0D"}], "B00JZYJBIY": [{"asin": "B00JZYJBIY", "instruction": "i would like a pair of 14 short red pants made from nylon spandex.", "attributes": ["wash cold", "machine wash", "nylon spandex"], "options": ["color: red", "size: 14 short"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["red", "14 short"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL85H59", "worker_id": "A1WS884SI0SLO4"}], "B09S6PJ5BF": [{"asin": "B09S6PJ5BF", "instruction": "i am looking for a black bikini set that is an xx-large and a comfortable fit", "attributes": ["wash cold", "hand wash", "stretch fabric", "comfortable fit", "tummy control", "polyester spandex"], "options": ["color: black", "size: xx-large"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["black", "xx-large"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCWHQ5W", "worker_id": "A2ECRNQ3X5LEXD"}], "B09RDXNHYG": [{"asin": "B09RDXNHYG", "instruction": "looking for babydoll mini bodysuit of quality polyester choose size xx large", "attributes": ["quick drying", "quality polyester"], "options": ["color: c-red", "size: xx-large"], "instruction_attributes": ["quality polyester"], "instruction_options": ["xx-large"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW0X1C4", "worker_id": "A10OGH5CQBXL5N"}], "B0871JYQ1J": [{"asin": "B0871JYQ1J", "instruction": "i need a non toxic and high quality empty bottle for cosmetic", "attributes": ["leak proof", "non toxic", "easy carry", "easy use", "high quality", "fine mist"], "options": [""], "instruction_attributes": ["non toxic", "high quality"], "instruction_options": [], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBI0GH9", "worker_id": "A2Y2TURT2VEYZN"}], "B07S7BSPKW": [{"asin": "B07S7BSPKW", "instruction": "i want a machine washable contemporary 52\"w*52\"l curtain panel for living room color mandala 7rvw0093", "attributes": ["machine washable", "contemporary design", "living room", "dining room"], "options": ["color: mandala7rvw0093", "size: 52\" w by 52\" l"], "instruction_attributes": ["machine washable", "contemporary design", "living room"], "instruction_options": ["mandala7rvw0093", "52\" w by 52\" l"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JEFSF5", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B07S7BSPKW", "instruction": "i am looking for contemporary designed window treatment curtains that are 52 inches long.", "attributes": ["machine washable", "contemporary design", "living room", "dining room"], "options": ["color: mandala7rvw0093", "size: 52\" w by 84\" l"], "instruction_attributes": ["contemporary design"], "instruction_options": ["52\" w by 84\" l"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WT224H", "worker_id": "A2KW17G25L25R8"}], "B08M5ZCYBY": [{"asin": "B08M5ZCYBY", "instruction": "i want a white 16.9oz hair dye bottle from segbeauty.", "attributes": ["leak proof", "coconut oil", "hair dye"], "options": ["color: white", "style: tip cap with scale"], "instruction_attributes": ["hair dye"], "instruction_options": ["white"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0253AAKC", "worker_id": "A2RBF3IIJP15IH"}], "B07Z7SZ2JR": [{"asin": "B07Z7SZ2JR", "instruction": "i am looking for a light fixture for my dining room in the weather wood shade.", "attributes": ["easy install", "light fixture", "solid wood", "living room", "dining room"], "options": ["color: weather wood"], "instruction_attributes": ["light fixture", "dining room"], "instruction_options": ["weather wood"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3IB7FD0", "worker_id": "A1NF6PELRKACS9"}], "B08R3FV6P8": [{"asin": "B08R3FV6P8", "instruction": "i need a floral window curtain for my living room . and i choose the 52x72in with skulllop3455", "attributes": ["super soft", "living room"], "options": ["color: skulllop3455", "size: 52x72in"], "instruction_attributes": ["living room"], "instruction_options": ["skulllop3455", "52x72in"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQFF6SJ", "worker_id": "A2COCSUGZV28X"}, {"asin": "B08R3FV6P8", "instruction": "i want to find a 52 x 84 inch set of living room curtains that are snowman colored.", "attributes": ["super soft", "living room"], "options": ["color: snowmangirl1lop5222", "size: 52x84in"], "instruction_attributes": ["living room"], "instruction_options": ["snowmangirl1lop5222", "52x84in"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61SHWZG", "worker_id": "A345TDMHP3DQ3G"}], "B09RKDJ5DR": [{"asin": "B09RKDJ5DR", "instruction": "i need pumps that are black and closed toe in a 7.5 size", "attributes": ["closed toe", "high heel", "arch support"], "options": ["color: black", "size: 7.5"], "instruction_attributes": ["closed toe"], "instruction_options": ["black", "7.5"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FGTK83", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LKV674T": [{"asin": "B08LKV674T", "instruction": "i am looking for stainless steel gold color wall mounted mirror.", "attributes": ["wall mounted", "stainless steel"], "options": ["color: gold"], "instruction_attributes": ["stainless steel"], "instruction_options": ["gold"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40Y0YFC", "worker_id": "A1Q8PPQQCWGY0D"}], "B095J4Q3XC": [{"asin": "B095J4Q3XC", "instruction": "i am searching for modern contemporary high density and left facing sofa with massage vibration and usb port", "attributes": ["high density", "faux leather"], "options": ["material type: leatherette black", "size: left facing"], "instruction_attributes": ["high density"], "instruction_options": ["left facing"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRM18W3H", "worker_id": "A258PTOZ3D2TQR"}], "B002U7YZXY": [{"asin": "B002U7YZXY", "instruction": "i am interested in purchasing keto friendly protein power in creamy vanilla and raspberry lemonade flavor.", "attributes": ["keto friendly", "lactose free", "low carb"], "options": ["flavor name: creamy vanilla & raspberry lemonade", "size: combo"], "instruction_attributes": ["keto friendly"], "instruction_options": ["creamy vanilla & raspberry lemonade"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OSZ99N", "worker_id": "AHXHM1PQTRWIQ"}, {"asin": "B002U7YZXY", "instruction": "i need protein powder that comes in 3 lbs and is keto friendly", "attributes": ["keto friendly", "lactose free", "low carb"], "options": ["flavor name: protein + collagen", "size: 3 pound (pack of 1)"], "instruction_attributes": ["keto friendly"], "instruction_options": ["3 pound (pack of 1)"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRY8F3S", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZWGHFXC": [{"asin": "B07ZWGHFXC", "instruction": "i would like a king size extra firm 12 inch mattress with memory foam.", "attributes": ["heavy duty", "memory foam"], "options": ["color: 12 inch", "size: king", "style: extra firm"], "instruction_attributes": ["memory foam"], "instruction_options": ["12 inch", "king", "extra firm"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR56A08", "worker_id": "A1WS884SI0SLO4"}], "B07S92Q8TB": [{"asin": "B07S92Q8TB", "instruction": "i want non gmo cauliflower bites 1.4 ounce 2 packs", "attributes": ["non gmo", "gluten free", "source vitamin", "simple ingredients"], "options": ["flavor: salted", "size: 5.75 ounce (pack of 2)"], "instruction_attributes": ["non gmo"], "instruction_options": ["salted"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5UH6XR", "worker_id": "A1V2C99HEV3F14"}], "B0836QNTNJ": [{"asin": "B0836QNTNJ", "instruction": "may i please have teal colored curtains ideally for my living room? size 52x63 is fine", "attributes": ["machine washable", "living room"], "options": ["color: purple", "size: 52x63"], "instruction_attributes": ["living room"], "instruction_options": ["52x63"], "assignment_id": "354P56DE9VDCOY11T1135MPMLQWS71", "worker_id": "A2TRV8SEM003GG"}], "B08L7QL9GV": [{"asin": "B08L7QL9GV", "instruction": "i am looking 4g lte antenna that can be wall mounted.", "attributes": ["wall mounted", "4g lte"], "options": [""], "instruction_attributes": ["wall mounted", "4g lte"], "instruction_options": [], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVIOBIH", "worker_id": "A1Q8PPQQCWGY0D"}], "B0816FY959": [{"asin": "B0816FY959", "instruction": "i'm looking for a hair extension anniston hairpiece preferably color 13#", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: 13#"], "instruction_attributes": ["hair extensions"], "instruction_options": ["13#"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907UDAUE", "worker_id": "ARQ05PDNXPFDI"}], "B008NZ88KS": [{"asin": "B008NZ88KS", "instruction": "i am looking for four pounds of protein powder that is chocolate and kosher.", "attributes": ["grass fed", "artificial ingredients", "kosher certified", "non gmo"], "options": ["flavor name: chocolate", "size: 4 pound (pack of 1)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["chocolate", "4 pound (pack of 1)"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC6ONI2", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZPC9SSP": [{"asin": "B07ZPC9SSP", "instruction": "i want a portable wireless bluetooth waterproof speaker.", "attributes": ["certified refurbished", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE24SQG9", "worker_id": "A2RBF3IIJP15IH"}], "B09336C6C5": [{"asin": "B09336C6C5", "instruction": "i'm looking for some women's flat mules that i can wear every day for walking; i'm a size 5.5 and like the colour apricot.", "attributes": ["moisture wicking", "everyday wear"], "options": ["color: apricot", "size: 5.5"], "instruction_attributes": ["everyday wear"], "instruction_options": ["apricot", "5.5"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06P3XKP", "worker_id": "A3LIIE572Z4OG7"}], "B077NTX823": [{"asin": "B077NTX823", "instruction": "i need high quality makeup bag for my eyeshadow. it should be beach pineapple in color.", "attributes": ["easy carry", "high quality", "eye shadow"], "options": ["color: beach pineapple"], "instruction_attributes": ["high quality", "eye shadow"], "instruction_options": ["beach pineapple"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUG2ZD9", "worker_id": "A1NF6PELRKACS9"}], "B09P4V271L": [{"asin": "B09P4V271L", "instruction": "i would like 3 pieces of white and gold bpa free toiletry travel bottles.", "attributes": ["bpa free", "high quality"], "options": ["color: white&gold", "size: 3 pcs"], "instruction_attributes": ["bpa free"], "instruction_options": ["white&gold", "3 pcs"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E7JHXN", "worker_id": "A1WS884SI0SLO4"}], "B09T6W1JLR": [{"asin": "B09T6W1JLR", "instruction": "i would like a 2xl gray romper that has a high drawstring waist.", "attributes": ["wide leg", "hand wash", "machine wash", "drawstring waist", "high waist"], "options": ["color: gray", "size: xx-large"], "instruction_attributes": ["drawstring waist", "high waist"], "instruction_options": ["gray", "xx-large"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSLD2QS", "worker_id": "A1WS884SI0SLO4"}], "B08T9NCP9K": [{"asin": "B08T9NCP9K", "instruction": "please help me find a violet hair dye in a 500ml bottle; pick a herbal one that has only natural ingredients.", "attributes": ["non toxic", "natural ingredients", "damaged hair", "hair dye"], "options": ["color: violet", "size: 500ml"], "instruction_attributes": ["natural ingredients", "hair dye"], "instruction_options": ["violet", "500ml"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY8698811", "worker_id": "A3LIIE572Z4OG7"}], "B077PR9TL4": [{"asin": "B077PR9TL4", "instruction": "i am looking for mn4 color foundation for my sensitive skin.", "attributes": ["hyaluronic acid", "sensitive skin"], "options": ["color: mn4", "size: 1 ounce (pack of 1)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["mn4"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ASGWB1", "worker_id": "A1Q8PPQQCWGY0D"}], "B092V6XL74": [{"asin": "B092V6XL74", "instruction": "i want 200 pieces of crystal color lip gloss applicator disposable brushes", "attributes": ["beauty salon", "eye shadow"], "options": ["color: white", "size: 300"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NQ52PH", "worker_id": "A1V2C99HEV3F14"}], "B0787DBB6G": [{"asin": "B0787DBB6G", "instruction": "i would like some blueberry acai jelly beans in a resealable bag.", "attributes": ["resealable bag", "artificial colors"], "options": ["flavor name: blueberry acai"], "instruction_attributes": ["resealable bag"], "instruction_options": ["blueberry acai"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C8FHP4", "worker_id": "A1WS884SI0SLO4"}], "B09QL3BLPD": [{"asin": "B09QL3BLPD", "instruction": "i would like a #1 lip stain that is paraben and alcohol free.", "attributes": ["long lasting", "alcohol free", "paraben free", "cruelty free"], "options": ["color: 1#"], "instruction_attributes": ["alcohol free", "paraben free"], "instruction_options": ["1#"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZJMA7I", "worker_id": "A1WS884SI0SLO4"}], "B014LMNBUS": [{"asin": "B014LMNBUS", "instruction": "i would like a perfect bread gift.", "attributes": ["rich creamy", "perfect gift"], "options": [""], "instruction_attributes": ["perfect gift"], "instruction_options": [], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMH2CB7L", "worker_id": "A1WS884SI0SLO4"}], "B09STKPSQN": [{"asin": "B09STKPSQN", "instruction": "i would like some yellow stainless steel nail clippers", "attributes": ["easy clean", "stainless steel"], "options": ["color: lion"], "instruction_attributes": ["stainless steel"], "instruction_options": ["lion"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3HKQNP", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Y66241R": [{"asin": "B07Y66241R", "instruction": "get me fleece lined khaki pants with elastic band in x-large size.", "attributes": ["fleece lined", "elastic waist", "polyester spandex"], "options": ["color: khaki", "size: x-large"], "instruction_attributes": ["fleece lined", "elastic waist"], "instruction_options": ["khaki", "x-large"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U9JMA9", "worker_id": "A3AYHESLQSDY5T"}], "B09NBQ9WG3": [{"asin": "B09NBQ9WG3", "instruction": "i want gray milin 100% blackout roller shades for my living room.", "attributes": ["easy install", "living room"], "options": ["color: gray", "size: 87\"w x 56\"h"], "instruction_attributes": ["living room"], "instruction_options": ["gray"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSD4CWC", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09NBQ9WG3", "instruction": "i am looking for some light brown easy to install roller shades for my living room.", "attributes": ["easy install", "living room"], "options": ["color: light brown", "size: 77\"w x 36\"h"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["light brown"], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY6A7PL", "worker_id": "A1EREKSZAA9V7B"}], "B08NVPGTWT": [{"asin": "B08NVPGTWT", "instruction": "i am looking for a pair of women's size small pants that are machine washable and made of stretch fabric.", "attributes": ["moisture wicking", "machine wash", "stretch fabric"], "options": ["size: small"], "instruction_attributes": ["machine wash", "stretch fabric"], "instruction_options": ["small"], "assignment_id": "33TIN5LC0FKDY31374RC144TX1ZY9G", "worker_id": "A1EREKSZAA9V7B"}], "B00EIMWAE0": [{"asin": "B00EIMWAE0", "instruction": "i want pink and black machine washable nufoot ballet flats.", "attributes": ["easy care", "machine washable"], "options": ["color: pink and black", "size: 6-7 b(m) us"], "instruction_attributes": ["machine washable"], "instruction_options": ["pink and black"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2QS5LK", "worker_id": "A2RBF3IIJP15IH"}], "B07RVCYKVD": [{"asin": "B07RVCYKVD", "instruction": "i would like a island strawberry gluten free drink mix.", "attributes": ["gluten free", "artificial flavors"], "options": ["flavor: island strawberry"], "instruction_attributes": ["gluten free"], "instruction_options": ["island strawberry"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQNR31F", "worker_id": "A1WS884SI0SLO4"}], "B07STZ8LQ2": [{"asin": "B07STZ8LQ2", "instruction": "i would like a pair of 4xl gray pants with a elastic closure.", "attributes": ["quick drying", "elastic closure"], "options": ["color: gray -buttons cuff", "size: 4x-large"], "instruction_attributes": ["elastic closure"], "instruction_options": ["gray -buttons cuff", "4x-large"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGEFSMY", "worker_id": "A1WS884SI0SLO4"}], "B0176GNTU8": [{"asin": "B0176GNTU8", "instruction": "hp all-in-one pc 23.8-inch(60.8 cm) fhd desktop pc intel core i5 4300u with alexa built-in (8gb/256gb ssd + 1tb", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT062NNUO", "worker_id": "A3N9ZYQAESNFQH"}], "B09HSWZ3ZF": [{"asin": "B09HSWZ3ZF", "instruction": "i am looking for a truffle garlic oil gift set", "attributes": ["non gmo", "quality ingredients", "gift set", "perfect gift"], "options": ["flavor name: garlic oil", "size: 5 fl oz (pack of 1)", "style: tin can"], "instruction_attributes": ["gift set"], "instruction_options": ["garlic oil"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVU8X9A", "worker_id": "A2ECRNQ3X5LEXD"}], "B07DBXYCLS": [{"asin": "B07DBXYCLS", "instruction": "i would like a blue green water resistant toiletry bag.", "attributes": ["leak proof", "water resistant"], "options": ["color: blue green (with shoulder strap)"], "instruction_attributes": ["water resistant"], "instruction_options": ["blue green (with shoulder strap)"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJO6W02", "worker_id": "A1WS884SI0SLO4"}], "B07KN925H5": [{"asin": "B07KN925H5", "instruction": "i am looking for low sugar, low carb cocoa flavored peanut butter puffs,1 ounce (pack of 12)", "attributes": ["low sugar", "gluten free", "protein serving", "low carb", "plant based"], "options": ["flavor name: cocoa", "size: 1 ounce (pack of 12)"], "instruction_attributes": ["low sugar", "low carb"], "instruction_options": ["cocoa", "1 ounce (pack of 12)"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCZA468", "worker_id": "A258PTOZ3D2TQR"}], "B07G3RPYLG": [{"asin": "B07G3RPYLG", "instruction": "i am looking for a classic fit medium t-shirt that is cranberry colored", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: cranberry", "fit type: youth", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["cranberry", "medium"], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8GYUXG", "worker_id": "A2ECRNQ3X5LEXD"}], "B099NVLYY3": [{"asin": "B099NVLYY3", "instruction": "i want a sugar free prodough chocolate keto muffin mix.", "attributes": ["keto friendly", "low carb", "gluten free", "low calorie", "high protein", "sugar free", "dairy free", "non gmo"], "options": ["flavor name: chocolate keto", "size: 2 pack"], "instruction_attributes": ["sugar free"], "instruction_options": ["chocolate keto"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36T0LSUT", "worker_id": "A2RBF3IIJP15IH"}], "B08GPWWVT4": [{"asin": "B08GPWWVT4", "instruction": "i'm looking for a light fixture farmhouse pendant light, preferably the white color.", "attributes": ["height adjustable", "pendant light", "light fixture"], "options": ["color: white"], "instruction_attributes": ["light fixture"], "instruction_options": ["white"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPNM6EW", "worker_id": "ARQ05PDNXPFDI"}], "B07VCH69RC": [{"asin": "B07VCH69RC", "instruction": "i'm looking for a vinyl acetate women athletic shoes. preferably the pink color.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: pink", "size: 8.5"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["pink"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH155HHWY", "worker_id": "ARQ05PDNXPFDI"}], "B07FXL6YH9": [{"asin": "B07FXL6YH9", "instruction": "braided synthetic hair bundle", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: rouge pink", "size: 24 inch braiding hair 5pcs"], "instruction_attributes": ["synthetic hair"], "instruction_options": [], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MNYWLU", "worker_id": "A3TTGSUBIK1YCL"}], "B07YJPPMXK": [{"asin": "B07YJPPMXK", "instruction": "i'm looking for a small black t-shirt for women with alpaca design and manchine wash", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: women", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["black", "women", "small"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRPD9FW", "worker_id": "A2Y2TURT2VEYZN"}], "B092W7D67K": [{"asin": "B092W7D67K", "instruction": "i would like a lemonade made with real fruit and natural flavors.", "attributes": ["natural flavors", "real fruit"], "options": [""], "instruction_attributes": ["natural flavors", "real fruit"], "instruction_options": [], "assignment_id": "3WMINLGALMDE0JA33INN08NU0U3AC1", "worker_id": "A1WS884SI0SLO4"}], "B08Z6TCTTM": [{"asin": "B08Z6TCTTM", "instruction": "i'm looking for farmhouse chandelier light with clear glass.", "attributes": ["clear glass", "light fixture", "dining room"], "options": ["color: satin brass | frosted", "size: 30\" linear"], "instruction_attributes": ["clear glass"], "instruction_options": ["satin brass | frosted"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3Y0J5JC", "worker_id": "A21IUUHBSEVB56"}], "B07ZKMQPV6": [{"asin": "B07ZKMQPV6", "instruction": "i am looking for 2 light grey chairs made of high density solid wood.", "attributes": ["high density", "easy assemble", "wood frame", "solid wood", "living room"], "options": ["color: light grey", "size: 2 chairs"], "instruction_attributes": ["high density", "solid wood"], "instruction_options": ["light grey", "2 chairs"], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q87IIW", "worker_id": "A1V2JTEEBCXR20"}], "B0030Y7MLS": [{"asin": "B0030Y7MLS", "instruction": "i'm looking for a nickel finish valley lightning, preferably the old bronze color.", "attributes": ["nickel finish", "glass shade"], "options": ["color: old bronze"], "instruction_attributes": ["nickel finish"], "instruction_options": ["old bronze"], "assignment_id": "3EJPLAJKEXQQLA9A5JQJV1MTDTYZ6Y", "worker_id": "ARQ05PDNXPFDI"}], "B01NBVOGUJ": [{"asin": "B01NBVOGUJ", "instruction": "i would like a winter white floor lamp made with brushed nickel.", "attributes": ["brushed nickel", "clear glass", "nickel finish", "living room"], "options": ["color: winter white"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["winter white"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKM5T1N", "worker_id": "A1WS884SI0SLO4"}], "B09J8F7JRX": [{"asin": "B09J8F7JRX", "instruction": "i need a bag for my hair styling tools", "attributes": ["fine mist", "hair styling"], "options": [""], "instruction_attributes": ["hair styling"], "instruction_options": [], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79TI1HV", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GNC5FPV": [{"asin": "B07GNC5FPV", "instruction": "i am looking for an easy to assemble 4 light vanity light.", "attributes": ["easy assemble", "vanity light", "nickel finish", "glass shade"], "options": ["color: 4 lights"], "instruction_attributes": ["easy assemble", "nickel finish"], "instruction_options": ["4 lights"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C9RHPI", "worker_id": "A1EREKSZAA9V7B"}], "B0912Y7Z5R": [{"asin": "B0912Y7Z5R", "instruction": "i would like a d20\u201dx h 30\u201d silver chandelier for the dining room.", "attributes": ["height adjustable", "easy install", "dining room", "living room"], "options": ["color: silver", "size: d20\u201dx h 30\u201d"], "instruction_attributes": ["dining room"], "instruction_options": ["silver", "d20\u201dx h 30\u201d"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8RS6QS", "worker_id": "A1WS884SI0SLO4"}], "B09NMFPJGN": [{"asin": "B09NMFPJGN", "instruction": "i'm looking for colorful rainbow gradient lattice window coverings film.", "attributes": ["tempered glass", "dining room"], "options": ["color: 960766437466963000", "size: (width\uff0917.7in x (length)35.4in x 2pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["960766437466963000"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0M1PCSG", "worker_id": "A21IUUHBSEVB56"}], "B097K2QPV8": [{"asin": "B097K2QPV8", "instruction": "i'm looking for a beauty salon table towel.", "attributes": ["high quality", "non toxic", "easy use", "beauty salon"], "options": [""], "instruction_attributes": ["beauty salon"], "instruction_options": [], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVOWXLE", "worker_id": "ARQ05PDNXPFDI"}], "B00LJSGWCW": [{"asin": "B00LJSGWCW", "instruction": "you can help me find on the web men's guide gear cargo joggers sweatpants, jogger pants, straight leg and for a gift. size has to be medium", "attributes": ["straight leg", "drawstring waist", "drawstring closure"], "options": ["color: gray camo", "size: medium"], "instruction_attributes": ["straight leg"], "instruction_options": ["medium"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDVRZQE", "worker_id": "A15IJ20C3R4HUO"}], "B093K3D12G": [{"asin": "B093K3D12G", "instruction": "i want a set of 2 mesh laundry bags sea turtle.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CS92T3", "worker_id": "A2RBF3IIJP15IH"}], "B09QLWV2JX": [{"asin": "B09QLWV2JX", "instruction": "i would like a wired 8 cam motion detection surveillance camera.", "attributes": ["high definition", "plug play", "motion detection"], "options": ["color: wired-8cam+2tb"], "instruction_attributes": ["motion detection"], "instruction_options": ["wired-8cam+2tb"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0V6AR7", "worker_id": "A1WS884SI0SLO4"}], "B08Z35MGD6": [{"asin": "B08Z35MGD6", "instruction": "toothpaste for dental cleaning - 60ml fresh breath freeorr", "attributes": ["easy clean", "easy use", "fresh breath"], "options": [""], "instruction_attributes": ["fresh breath"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSLB8BW", "worker_id": "A3TTGSUBIK1YCL"}], "B07XTNQX7P": [{"asin": "B07XTNQX7P", "instruction": "i am looking for a variety pack of keto friendly energy drinks", "attributes": ["usda organic", "keto friendly", "low carb", "non gmo", "gluten free", "quality ingredients"], "options": ["flavor name: variety"], "instruction_attributes": ["keto friendly"], "instruction_options": ["variety"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OL5TRR", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DPKXRKM": [{"asin": "B09DPKXRKM", "instruction": "i want luxshiny 72pcs halloween cupcake picks.", "attributes": ["cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["cupcake picks"], "instruction_options": [], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYQ97NN", "worker_id": "A2RBF3IIJP15IH"}], "B08S6XVM4R": [{"asin": "B08S6XVM4R", "instruction": "i want navy skechers men's gowalk shoes made with vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: navy | orange 2", "size: 7.5"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["navy | orange 2"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREQS2J8", "worker_id": "A2RBF3IIJP15IH"}], "B09M1HNN22": [{"asin": "B09M1HNN22", "instruction": "i'm looking for a fluoride free toothpaste which is clinically proven for sensitive teeth.", "attributes": ["fluoride free", "clinically proven", "sensitive teeth"], "options": [""], "instruction_attributes": ["fluoride free", "clinically proven", "sensitive teeth"], "instruction_options": [], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C9MHPD", "worker_id": "AR0VJ5XRG16UJ"}], "B09MTFD4KQ": [{"asin": "B09MTFD4KQ", "instruction": "i'm looking for a glass screen protector for samsung galaxy a13 5g.", "attributes": ["dust proof", "glass screen", "case cover", "tempered glass"], "options": ["color: galaxy a13 5g case navy blue"], "instruction_attributes": ["dust proof"], "instruction_options": ["galaxy a13 5g case navy blue"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP64OVDV", "worker_id": "A21IUUHBSEVB56"}], "B082J572X8": [{"asin": "B082J572X8", "instruction": "show me a silver colored 2.4ghz intel core i5 laptop with 1.4ghz processor - 8gb ram 256gb ssd capacity.", "attributes": ["core i5", "intel core", "quad core"], "options": ["capacity: 1.4ghz processor - 8gb ram | 256gb ssd", "color: silver", "style: 2.4ghz intel\u00a0core\u00a0i5"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["1.4ghz processor - 8gb ram | 256gb ssd", "silver", "2.4ghz intel\u00a0core\u00a0i5"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WCQOU2", "worker_id": "A3AYHESLQSDY5T"}], "B09MQFCJ9X": [{"asin": "B09MQFCJ9X", "instruction": "i would like a presentation remote that is easy to use", "attributes": ["easy carry", "plug play", "easy use", "usb port"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2PI5L8", "worker_id": "A2ECRNQ3X5LEXD"}], "B00XN076VA": [{"asin": "B00XN076VA", "instruction": "i am looking for a nut and gluten free wild blueberry preserve.", "attributes": ["nut free", "gluten free"], "options": ["flavor: wild blueberry preserve", "size: 12 ounce (pack of 6)", "style: marmalade"], "instruction_attributes": ["nut free", "gluten free"], "instruction_options": ["wild blueberry preserve"], "assignment_id": "3EJJQNKU92FXG870RLNA6P9KDRARHF", "worker_id": "A1NF6PELRKACS9"}], "B005GP9ECE": [{"asin": "B005GP9ECE", "instruction": "i m looking for a 8 no. vinyl acetate man's sandals", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: navy | blue", "size: 8"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["8"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZVC40T", "worker_id": "A9QRQL9CFJBI7"}], "B000QSOCHS": [{"asin": "B000QSOCHS", "instruction": "i want earth's best organic baby food.", "attributes": ["bpa free", "certified organic", "non gmo", "artificial flavors"], "options": [""], "instruction_attributes": ["certified organic"], "instruction_options": [], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0XXW55", "worker_id": "A2RBF3IIJP15IH"}], "B00D267KMK": [{"asin": "B00D267KMK", "instruction": "i'm looking for perfect waterproof digital camera with 2.5 inch lcd screen.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCE1H7P", "worker_id": "A21IUUHBSEVB56"}], "B09NCJH6D6": [{"asin": "B09NCJH6D6", "instruction": "i would like a ginger boost gluten free bottle.", "attributes": ["low sugar", "non alcoholic", "gluten free", "non gmo", "natural flavors", "artificial colors"], "options": ["flavor name: ginger boost"], "instruction_attributes": ["gluten free"], "instruction_options": ["ginger boost"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZHAPR6", "worker_id": "A1WS884SI0SLO4"}], "B09R4LDMSS": [{"asin": "B09R4LDMSS", "instruction": "i am looking for black color heeled sandals containing rubber sole.", "attributes": ["non slip", "rubber sole", "soft material", "ankle strap", "rubber outsole"], "options": ["color: black", "size: 8.5 wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTARLNN", "worker_id": "A1Q8PPQQCWGY0D"}], "B079YYHVVB": [{"asin": "B079YYHVVB", "instruction": "i need a slip on shoes with rubber sole . and i choose the 14\" size with burgundy color", "attributes": ["synthetic sole", "rubber sole"], "options": ["color: burgundy", "size: 14"], "instruction_attributes": ["rubber sole"], "instruction_options": ["burgundy", "14"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4GQBS9", "worker_id": "A2COCSUGZV28X"}], "B01FV5KVAM": [{"asin": "B01FV5KVAM", "instruction": "i am looking for non gmo , gluten free organic cinnamon syrup", "attributes": ["certified organic", "non gmo", "gluten free"], "options": ["flavor name: organic cinnamon", "size: 25.4 fl oz (pack of 1)", "style: syrup pump"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["organic cinnamon"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8LN4C2", "worker_id": "AX2EWYWZM19AZ"}], "B09HC37HYB": [{"asin": "B09HC37HYB", "instruction": "i want a large and short sleeve womens down vest.", "attributes": ["fleece lined", "short sleeve"], "options": ["color: ra1- k7-black", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["large"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G7AZ47C", "worker_id": "A2RBF3IIJP15IH"}], "B08KKZ52F1": [{"asin": "B08KKZ52F1", "instruction": "i am looking for a men's size 14 sneaker with a synthetic sole.", "attributes": ["synthetic sole", "rubber outsole"], "options": ["color: puma white | star sapphire", "size: 14"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["14"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z8MGX5", "worker_id": "A1EREKSZAA9V7B"}], "B07QDK5V1G": [{"asin": "B07QDK5V1G", "instruction": "i would like a long lasting lipstick in the color emma", "attributes": ["long lasting", "highly pigmented"], "options": ["color: color 523 (emma)"], "instruction_attributes": ["long lasting"], "instruction_options": ["color 523 (emma)"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO8DR2I", "worker_id": "A2ECRNQ3X5LEXD"}], "B08SWDDDLX": [{"asin": "B08SWDDDLX", "instruction": "i am looking for a black quad core tablets", "attributes": ["high performance", "quad core"], "options": ["color: black"], "instruction_attributes": ["quad core"], "instruction_options": ["black"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO6B2CM", "worker_id": "A9QRQL9CFJBI7"}], "B0973422R6": [{"asin": "B0973422R6", "instruction": "i would like a galaxy a12 pink phone case with a tempered glass screen.", "attributes": ["glass screen", "tempered glass"], "options": ["color: pink", "size: galaxy a12 | a12 5g"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["pink", "galaxy a12 | a12 5g"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BITR48J", "worker_id": "A1WS884SI0SLO4"}], "B003WM2V4G": [{"asin": "B003WM2V4G", "instruction": "i would like a pair of small olive scrub bottoms with a relaxed fit.", "attributes": ["machine wash", "elastic closure", "polyester cotton", "elastic waistband", "relaxed fit", "classic fit"], "options": ["color: olive", "size: small"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["olive", "small"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO7TC2G", "worker_id": "A1WS884SI0SLO4"}], "B09LSJW1TR": [{"asin": "B09LSJW1TR", "instruction": "i am interested in some monoculars that have optical zoom", "attributes": ["non slip", "optical zoom"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC65KU1", "worker_id": "A2ECRNQ3X5LEXD"}], "B098DL2LS5": [{"asin": "B098DL2LS5", "instruction": "i would like a fluoride free mouth wash made with natural ingredients.", "attributes": ["fluoride free", "natural ingredients", "fresh breath"], "options": [""], "instruction_attributes": ["fluoride free", "natural ingredients"], "instruction_options": [], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKNE1T6", "worker_id": "AHXHM1PQTRWIQ"}], "B09P83W6PP": [{"asin": "B09P83W6PP", "instruction": "i want a earbud wireless bluetooth", "attributes": ["fast charging", "high speed", "case cover", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFGB5U2", "worker_id": "A2Y2TURT2VEYZN"}], "B07W621KSF": [{"asin": "B07W621KSF", "instruction": "i need a 038 | honey beige long lasting foundation which is cruelty,oil,alcohol and paraben free.", "attributes": ["cruelty free", "oil free", "alcohol free", "paraben free", "long lasting"], "options": ["color: 038 | honey beige"], "instruction_attributes": ["cruelty free", "oil free", "alcohol free", "long lasting"], "instruction_options": ["038 | honey beige"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KQFUHN", "worker_id": "ASWFLI3N8X72G"}], "B09SHZ239R": [{"asin": "B09SHZ239R", "instruction": "i want blue egg gender reveal cupcake toppers for my baby shower.", "attributes": ["baby shower", "birthday party"], "options": ["pattern name: one-blue"], "instruction_attributes": ["baby shower"], "instruction_options": ["one-blue"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67P44NN", "worker_id": "A2RBF3IIJP15IH"}], "B09PH5CP53": [{"asin": "B09PH5CP53", "instruction": "i would like a 2 piece window film set for the dining room", "attributes": ["tempered glass", "dining room"], "options": ["color: 1025576617786990000", "size: (width\uff0935.4in x (length)35.4in x 2pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["(width\uff0935.4in x (length)35.4in x 2pcs"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW081CF", "worker_id": "A2ECRNQ3X5LEXD"}], "B0024WNS0G": [{"asin": "B0024WNS0G", "instruction": "i am looking for a pack of 720 high performance aaa batteries.", "attributes": ["high performance", "aaa batteries"], "options": ["size: 720 count (pack of 1)", "style: aaa"], "instruction_attributes": ["high performance"], "instruction_options": ["720 count (pack of 1)", "aaa"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WUC42V", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B0024WNS0G", "instruction": "i need a high performance 48 count set a batteries", "attributes": ["high performance", "aaa batteries"], "options": ["size: 48 count (pack of 1)", "style: aa"], "instruction_attributes": ["high performance"], "instruction_options": ["48 count (pack of 1)"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC7AKU8", "worker_id": "A2ECRNQ3X5LEXD"}], "B08SLNJVWT": [{"asin": "B08SLNJVWT", "instruction": "let's buy a light weight cell phone case.", "attributes": ["light weight", "carbon fiber", "glass screen", "tempered glass"], "options": ["color: \u7070\u8272"], "instruction_attributes": ["light weight"], "instruction_options": [], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMH1WB73", "worker_id": "A15ERD4HOFEPHM"}], "B093YS61WL": [{"asin": "B093YS61WL", "instruction": "i need a wallet that goes with my blouse", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery"], "instruction_options": [], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE3XTJJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B0968MW8H3": [{"asin": "B0968MW8H3", "instruction": "i want a red machine washable slow down men's ultra lightweight jacket.", "attributes": ["water resistant", "wash cold", "machine wash", "drawstring closure", "dry clean", "daily wear"], "options": ["color: red", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["red"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLPPI4Y", "worker_id": "A2RBF3IIJP15IH"}], "B09S1CLQYR": [{"asin": "B09S1CLQYR", "instruction": "i am looking for ready to use gluten free tomato stew sauce made with extra virgin olive oil. and i choose a packet of 4 with mama's everything sauce", "attributes": ["shelf stable", "ready use", "low sodium", "gluten free", "sugar free"], "options": ["flavor name: mama's everything sauce - 4 pack"], "instruction_attributes": ["ready use", "gluten free"], "instruction_options": ["mama's everything sauce - 4 pack"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746Z6BT0", "worker_id": "A2COCSUGZV28X"}], "B08TM3LCN8": [{"asin": "B08TM3LCN8", "instruction": "i would like two strawberry and 2 peach lip balms that are made from seed oil.", "attributes": ["animal testing", "long lasting", "seed oil"], "options": ["flavor name: four pack: 2 strawberry | 2 peach"], "instruction_attributes": ["seed oil"], "instruction_options": ["four pack"], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YNAGAY", "worker_id": "A1WS884SI0SLO4"}], "B09GM9C88P": [{"asin": "B09GM9C88P", "instruction": "i would like non toxic press on nails that are the color jp939", "attributes": ["double sided", "non toxic", "nail art"], "options": ["color: jp939"], "instruction_attributes": ["non toxic"], "instruction_options": ["jp939"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT3PP3X", "worker_id": "A2ECRNQ3X5LEXD"}], "B08THNSP6N": [{"asin": "B08THNSP6N", "instruction": "i would like two packs of fluoride free toothpaste.", "attributes": ["fluoride free", "clinically proven", "oral hygiene"], "options": ["size: 2 pack"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRPE9FX", "worker_id": "A1WS884SI0SLO4"}], "B08ZN8G7JV": [{"asin": "B08ZN8G7JV", "instruction": "hello, i want a music stereo for my car. bluetooth please. i would appreciate it being hands free as well", "attributes": ["batteries included", "hands free", "usb port"], "options": [""], "instruction_attributes": ["hands free", "usb port"], "instruction_options": [], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI70HYQE", "worker_id": "A2TRV8SEM003GG"}], "B09S152XNC": [{"asin": "B09S152XNC", "instruction": "i want a large summer o neck women's short sleeve blouse.", "attributes": ["loose fit", "slim fit", "hand wash", "short sleeve", "long sleeve", "polyester spandex"], "options": ["color: 9-black", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["large"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602WD95T", "worker_id": "A2RBF3IIJP15IH"}], "B00LVQPDGI": [{"asin": "B00LVQPDGI", "instruction": "i am looking for certified organic regular rolled oats, 25 pound (pack of 1)", "attributes": ["certified organic", "non gmo", "old fashioned"], "options": ["flavor: quick", "size: 25 pound (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["25 pound (pack of 1)"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LLOI57", "worker_id": "A258PTOZ3D2TQR"}], "B01N9JIUAS": [{"asin": "B01N9JIUAS", "instruction": "i would like some wild caught sardines that are in water", "attributes": ["wild caught", "high protein"], "options": ["flavor name: water - pack of 4"], "instruction_attributes": ["wild caught"], "instruction_options": ["water - pack of 4"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQERKV5", "worker_id": "A2ECRNQ3X5LEXD"}], "B08JZ5CPRT": [{"asin": "B08JZ5CPRT", "instruction": "i am looking for a travel mirror that is easy to carry", "attributes": ["double sided", "easy carry"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW0Z1C6", "worker_id": "A2ECRNQ3X5LEXD"}], "B094DPFX6Q": [{"asin": "B094DPFX6Q", "instruction": "i'm looking for a set of 14 inch human hair extensions in #3t613 ombre dark brown to bleach blonde color.", "attributes": ["double sided", "hair extensions", "hair salon"], "options": ["color: #3t613 ombre dark brown to bleach blonde", "size: 14 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["14 inch"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZTJ3KA", "worker_id": "A3MNXK3VDK37SN"}], "B09MJLV1J2": [{"asin": "B09MJLV1J2", "instruction": "find mouthwash, tartar stain removal, fresh breath, for daily life, for my bad breath !", "attributes": ["easy use", "bad breath"], "options": [""], "instruction_attributes": ["bad breath"], "instruction_options": [], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4WN7K3", "worker_id": "A15IJ20C3R4HUO"}], "B099MXRP49": [{"asin": "B099MXRP49", "instruction": "i would like a 12 fluid ounce blonde low calorie non alcoholic drink.", "attributes": ["non alcoholic", "low calorie"], "options": ["flavor name: blonde", "size: 12 fl oz (pack of 24)"], "instruction_attributes": ["non alcoholic", "low calorie"], "instruction_options": ["blonde", "12 fl oz (pack of 24)"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HROOWM", "worker_id": "A1WS884SI0SLO4"}], "B072L1636F": [{"asin": "B072L1636F", "instruction": "i would like to buy a nail buffer to take care of dead skin and in style1.", "attributes": ["high quality", "nail art", "dead skin"], "options": ["style name: style1"], "instruction_attributes": ["dead skin"], "instruction_options": ["style1"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCKTSJ3", "worker_id": "AHXHM1PQTRWIQ"}], "B084R89D4Z": [{"asin": "B084R89D4Z", "instruction": "i'm looking for milk based organic formula for baby.", "attributes": ["usda organic", "non gmo"], "options": [""], "instruction_attributes": ["usda organic"], "instruction_options": [], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WTY24D", "worker_id": "A21IUUHBSEVB56"}], "B07BPV6FPT": [{"asin": "B07BPV6FPT", "instruction": "i need a slim fit t-shirt that is blue and a large", "attributes": ["slim fit", "polyester spandex"], "options": ["color: royal blue a", "size: large"], "instruction_attributes": ["slim fit"], "instruction_options": ["royal blue a", "large"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HV3BPB", "worker_id": "A2ECRNQ3X5LEXD"}], "B005GVEHIO": [{"asin": "B005GVEHIO", "instruction": "i would like to buy machine washable leggings in size 16 plus with an elastic waistband.", "attributes": ["machine wash", "elastic waistband", "regular fit"], "options": ["color: waterfall", "size: 16 plus"], "instruction_attributes": ["machine wash", "elastic waistband"], "instruction_options": ["16 plus"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DUWK4V", "worker_id": "AHXHM1PQTRWIQ"}], "B093FGHNYM": [{"asin": "B093FGHNYM", "instruction": "i would like a cake topper for a birthday party.", "attributes": ["baby shower", "party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOME9LI", "worker_id": "A1WS884SI0SLO4"}], "B08K2V17DD": [{"asin": "B08K2V17DD", "instruction": "i would like some black high heels that are a size 6.5", "attributes": ["high heel", "synthetic sole"], "options": ["color: black", "size: 6.5"], "instruction_attributes": ["high heel"], "instruction_options": ["black", "6.5"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEL68Q2", "worker_id": "A2ECRNQ3X5LEXD"}], "B086JW9KL8": [{"asin": "B086JW9KL8", "instruction": "i am looking for toiletries kit bag with water resistant feature and color should be green.", "attributes": ["water resistant", "easy clean", "leak proof"], "options": ["color: bottle green"], "instruction_attributes": ["water resistant"], "instruction_options": ["bottle green"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7P2I3M", "worker_id": "A3FG5PQHG5AH3Y"}], "B093GV68LQ": [{"asin": "B093GV68LQ", "instruction": "i want 42x84 inch, baby pink and gold color gorgeous unicorn eyelash print curtain for living or bed rooms.", "attributes": ["machine washable", "stainless steel", "living room"], "options": ["color: baby pink and gold", "size: 42x84 in"], "instruction_attributes": ["living room"], "instruction_options": ["baby pink and gold", "42x84 in"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO9VGJ3", "worker_id": "A1V2C99HEV3F14"}], "B086G51TH9": [{"asin": "B086G51TH9", "instruction": "i need 5ft power cord cable for blu ray player and home theater system", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKNPPV1", "worker_id": "A258PTOZ3D2TQR"}], "B08MXZXKQ6": [{"asin": "B08MXZXKQ6", "instruction": "i am looking for a living room poster of fruit", "attributes": ["wood frame", "solid wood", "living room"], "options": ["color: fruit pictures-1", "size: 12\"x16\"x3 panel"], "instruction_attributes": ["living room"], "instruction_options": ["fruit pictures-1"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQHVJCO", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08MXZXKQ6", "instruction": "i am looking for a green plants color wall art for my living room.", "attributes": ["wood frame", "solid wood", "living room"], "options": ["color: green plants", "size: 12\"x16\"x3"], "instruction_attributes": ["living room"], "instruction_options": ["green plants"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXZ0O4D", "worker_id": "A1Q8PPQQCWGY0D"}], "B06X3W4PZ8": [{"asin": "B06X3W4PZ8", "instruction": "i am looking for peanut butter chocolate cookie assortments that are dairy free", "attributes": ["lactose free", "dairy free", "non gmo", "gluten free", "birthday cake"], "options": ["flavor name: peanut butter chocolate", "size: 6 ounce (pack of 1)"], "instruction_attributes": ["dairy free"], "instruction_options": ["peanut butter chocolate"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPDGDQS", "worker_id": "A2ECRNQ3X5LEXD"}], "B01M5ANC4W": [{"asin": "B01M5ANC4W", "instruction": "i would like a desk made from engineered wood.", "attributes": ["assembly required", "engineered wood"], "options": [""], "instruction_attributes": ["engineered wood"], "instruction_options": [], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKTHGSU", "worker_id": "A1WS884SI0SLO4"}], "B082J7BWYJ": [{"asin": "B082J7BWYJ", "instruction": "i'm looking for an individually wrapped bar snack cakes.", "attributes": ["individually wrapped", "nut free", "kosher certified", "dairy free", "0g trans", "birthday party"], "options": [""], "instruction_attributes": ["individually wrapped"], "instruction_options": [], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72ANLEOY", "worker_id": "ARQ05PDNXPFDI"}], "B093Z28QMN": [{"asin": "B093Z28QMN", "instruction": "i am looking for khaki colored house slippers with a non-slip grip in the size 11 wide.", "attributes": ["day comfort", "machine washable", "non slip", "arch support", "rubber sole"], "options": ["color: 03khaki", "size: 11 wide"], "instruction_attributes": ["non slip"], "instruction_options": ["03khaki", "11 wide"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXILJUJ", "worker_id": "AK3JMCIGU8MLU"}], "B0981Y1FLG": [{"asin": "B0981Y1FLG", "instruction": "i am looking for a high resolution car stereo system with mp-800 and the latest phonelink.", "attributes": ["high resolution", "hands free", "usb port"], "options": ["color: mp-800 with latest phonelink"], "instruction_attributes": ["high resolution"], "instruction_options": ["mp-800 with latest phonelink"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQ0P4BX", "worker_id": "A1EREKSZAA9V7B"}], "B08QRVN886": [{"asin": "B08QRVN886", "instruction": "i want to buy frame for bed platform which is eco friendly and with box spring, while the color i would prefer for it to be black and as for the size it should be king size.", "attributes": ["eco friendly", "faux leather", "king size", "box spring"], "options": ["color: black pu", "size: king"], "instruction_attributes": ["eco friendly", "box spring"], "instruction_options": ["black pu", "king"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA74GMHR", "worker_id": "AJY5G987IRT25"}], "B07KVZJGBW": [{"asin": "B07KVZJGBW", "instruction": "i need a classic fir t-shirt that is suitable for my wife. and i choose the orange one", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: orange", "fit type: women", "size: 4t"], "instruction_attributes": ["classic fit"], "instruction_options": ["orange", "women"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4DW6RV", "worker_id": "A2COCSUGZV28X"}], "B07CQ4BZQR": [{"asin": "B07CQ4BZQR", "instruction": "i would like a 40 by 84 inch round frosted table pad for the dining room.", "attributes": ["eco friendly", "easy clean", "stainless steel", "dining room", "living room"], "options": ["color: upgraded frosted 1.5mm", "shape: round", "size: 40 x 84 inches"], "instruction_attributes": ["dining room"], "instruction_options": ["upgraded frosted 1.5mm", "round", "40 x 84 inches"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOMX9L1", "worker_id": "A1WS884SI0SLO4"}], "B09PD6NWCN": [{"asin": "B09PD6NWCN", "instruction": "i would like some flouride free toothpaste", "attributes": ["fluoride free", "teeth whitening", "sensitive teeth", "bad breath"], "options": ["color: 2-2"], "instruction_attributes": ["fluoride free"], "instruction_options": ["2-2"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RK9LFM", "worker_id": "A2ECRNQ3X5LEXD"}], "B085GCJ1YK": [{"asin": "B085GCJ1YK", "instruction": "i am looking for a black bike short that is made of nylon spandex. pick a size 16.", "attributes": ["hand wash", "nylon spandex"], "options": ["color: black", "size: 16"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["black", "16"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P783SVT", "worker_id": "A1NF6PELRKACS9"}], "B09PN95H7B": [{"asin": "B09PN95H7B", "instruction": "looking for leather sole womans sandals with arch support also choose size 7 wide", "attributes": ["arch support", "leather sole", "high heel", "ankle strap"], "options": ["color: 04-white", "size: 7 wide"], "instruction_attributes": ["arch support", "leather sole"], "instruction_options": ["7 wide"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADMIHAR", "worker_id": "A10OGH5CQBXL5N"}], "B08YRGRXDZ": [{"asin": "B08YRGRXDZ", "instruction": "find me a white tablet with high performance with quad core", "attributes": ["high performance", "quad core"], "options": ["color: white"], "instruction_attributes": ["high performance", "quad core"], "instruction_options": ["white"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI71JYQI", "worker_id": "A2Y2TURT2VEYZN"}], "B09KT1ZG57": [{"asin": "B09KT1ZG57", "instruction": "i'm looking for a coral velvet microfiber hair towel wrap for women.", "attributes": ["dry hair", "hair salon"], "options": ["color: aquamarine"], "instruction_attributes": ["dry hair"], "instruction_options": ["aquamarine"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95VRXQD", "worker_id": "A21IUUHBSEVB56"}], "B08KDNRWCD": [{"asin": "B08KDNRWCD", "instruction": "i'm looking for new year cupcake with glitter dessert muffins.", "attributes": ["cupcake picks", "party supplies"], "options": ["color: rose gold"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["rose gold"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z4CYCQJ", "worker_id": "A21IUUHBSEVB56"}], "B006XMHPF2": [{"asin": "B006XMHPF2", "instruction": "i would like a volumizing pomegranate conditioner made from seed oil.", "attributes": ["sulfate free", "seed oil"], "options": ["style: volumizing pomegranate conditioner"], "instruction_attributes": ["seed oil"], "instruction_options": ["volumizing pomegranate conditioner"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2JOFKV", "worker_id": "A1WS884SI0SLO4"}], "B08YBGCBT6": [{"asin": "B08YBGCBT6", "instruction": "i want a white emma + oliver kids 3 piece solid hardwood table and chair set for my dining room.", "attributes": ["white item", "wood finish", "dining room"], "options": ["color: white"], "instruction_attributes": ["dining room"], "instruction_options": ["white"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R2K7WL", "worker_id": "A2RBF3IIJP15IH"}], "B087MSRM1R": [{"asin": "B087MSRM1R", "instruction": "i am looking for women's woodland texapore low rise hiking shoes. also ebony blue one.", "attributes": ["low rise", "ethylene vinyl", "vinyl acetate", "rubber outsole"], "options": ["color: ebony blue", "size: 4 big kid"], "instruction_attributes": ["low rise"], "instruction_options": ["ebony blue"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK24AJNKJ", "worker_id": "A258PTOZ3D2TQR"}], "B00QUKS6NW": [{"asin": "B00QUKS6NW", "instruction": "i would like a 4 ounce face moisturizer made with natural ingredients.", "attributes": ["coconut oil", "natural ingredients", "dark circles", "dry skin", "sensitive skin"], "options": ["size: 4 ounce (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["4 ounce (pack of 1)"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1KK3UA", "worker_id": "A1WS884SI0SLO4"}], "B08TVVVXVG": [{"asin": "B08TVVVXVG", "instruction": "can i get the heavy duty 2-gang, outlet toggle combination wall plate cover.", "attributes": ["heavy duty", "high gloss"], "options": ["style: toggle | outlet combo"], "instruction_attributes": ["heavy duty"], "instruction_options": ["toggle | outlet combo"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBINJD6", "worker_id": "A1IL2K0ELYI090"}], "B096YCWV5H": [{"asin": "B096YCWV5H", "instruction": "hello, i would like a gift set of chocolates with peanut products in it? preferably dusted chocolate toffee flavor", "attributes": ["protein serving", "plant based", "non gmo", "great gift", "gift set"], "options": ["flavor name: dustted chocolate toffee", "size: 20oz"], "instruction_attributes": ["great gift", "gift set"], "instruction_options": ["dustted chocolate toffee"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYSFFXW", "worker_id": "A2TRV8SEM003GG"}], "B06XK5TMTD": [{"asin": "B06XK5TMTD", "instruction": "i am looking for ac dc adapter charger for my wireless bluetooth speaker.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "351SEKWQSBRP7CP60H83T50CFB6MDZ", "worker_id": "A1Q8PPQQCWGY0D"}], "B004M8SVGQ": [{"asin": "B004M8SVGQ", "instruction": "i need a bronze colored high resolution digital camera that also has optical zoom lens.", "attributes": ["high resolution", "optical zoom"], "options": ["color: bronze"], "instruction_attributes": ["high resolution", "optical zoom"], "instruction_options": ["bronze"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH156QHW9", "worker_id": "A1NF6PELRKACS9"}], "B0087N3MOI": [{"asin": "B0087N3MOI", "instruction": "i'm looking for vanilla meringues cookies, fat and gluten free", "attributes": ["trader joe", "fat free", "gluten free", "artificial colors"], "options": [""], "instruction_attributes": ["fat free", "gluten free"], "instruction_options": [], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFC6D9Y", "worker_id": "A2Y2TURT2VEYZN"}], "B09N9QHVHK": [{"asin": "B09N9QHVHK", "instruction": "i'm looking for gyufise glitter mounted butterfly cupcake toppers butterfly cupcake pick, pattern name: 1-multicolor birthday party decorations if you find it let me know soon", "attributes": ["birthday party", "party supplies", "baby shower"], "options": ["pattern name: 1-multicolor"], "instruction_attributes": ["birthday party"], "instruction_options": ["1-multicolor"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ATNBWP", "worker_id": "A15IJ20C3R4HUO"}], "B0842TRS8B": [{"asin": "B0842TRS8B", "instruction": "i want non gmo triscuit dill sea salt and olive oil crackers.", "attributes": ["non gmo", "dietary fiber"], "options": ["flavor name: dill sea salt and olive oil"], "instruction_attributes": ["non gmo"], "instruction_options": ["dill sea salt and olive oil"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7Q93IG", "worker_id": "A2RBF3IIJP15IH"}], "B091SV7HJ7": [{"asin": "B091SV7HJ7", "instruction": "i want a grey 3-piece faux leather tufted sectional sofa.", "attributes": ["faux leather", "metal legs"], "options": ["color: grey"], "instruction_attributes": ["faux leather"], "instruction_options": ["grey"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP84O7ZB", "worker_id": "A2RBF3IIJP15IH"}], "B08SJ16N4D": [{"asin": "B08SJ16N4D", "instruction": "i want a 0.27 fl oz perfume bottle that is high in quality. it should be in travel size.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: creed silver mountain water impression", "size: 0.27 fl oz (pack of 1)"], "instruction_attributes": ["travel size", "high quality"], "instruction_options": ["0.27 fl oz (pack of 1)"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DUY4KH", "worker_id": "A1NF6PELRKACS9"}], "B094687BW9": [{"asin": "B094687BW9", "instruction": "i would like a long lasting men's fragrance.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3MDRY2", "worker_id": "A1WS884SI0SLO4"}], "B075817VBP": [{"asin": "B075817VBP", "instruction": "i would like 10 ml of lavender face oil that's high quality.", "attributes": ["high quality", "tea tree"], "options": ["scent: lavender", "size: 10 ml (pack of 1)"], "instruction_attributes": ["high quality"], "instruction_options": ["lavender", "10 ml (pack of 1)"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662YC4M3", "worker_id": "A1WS884SI0SLO4"}], "B07YQJ68W6": [{"asin": "B07YQJ68W6", "instruction": "i want a silver star wars the mandalorian muted warrior t-shirt.", "attributes": ["needle sleeve", "classic fit", "star wars"], "options": ["color: silver", "fit type: youth", "size: 2t"], "instruction_attributes": ["star wars"], "instruction_options": ["silver"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFRVV3T", "worker_id": "A2RBF3IIJP15IH"}], "B07PNRZ353": [{"asin": "B07PNRZ353", "instruction": "i need easy to install white trim led light in pack of 18. tye color should be daylight 5000k.", "attributes": ["easy install", "brushed nickel"], "options": ["color: daylight 5000k", "size: white trim (18 pack)"], "instruction_attributes": ["easy install"], "instruction_options": ["daylight 5000k", "white trim (18 pack)"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTBVLNT", "worker_id": "ASWFLI3N8X72G"}], "B09QFH1FQC": [{"asin": "B09QFH1FQC", "instruction": "would you find this curtain more easily than i can? fangsosolong dragon bedroom curtains with window cover decoration superior noise blocking reduce , machine washable for my boy's bedroom 63\" rod pocket w 52 l 95", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: b001c21", "size: rod pocket-w 52 l 95"], "instruction_attributes": ["machine washable"], "instruction_options": ["rod pocket-w 52 l 95"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGT1I7M8", "worker_id": "A15IJ20C3R4HUO"}], "B08RZ3B76K": [{"asin": "B08RZ3B76K", "instruction": "get me a 10g protein per serving chocolate and peanut butter bars.", "attributes": ["protein serving", "trader joe"], "options": [""], "instruction_attributes": ["protein serving"], "instruction_options": [], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH37D2SEP", "worker_id": "A1NF6PELRKACS9"}], "B07Y4XM3VZ": [{"asin": "B07Y4XM3VZ", "instruction": "i am looking of a balms & moisturizers for fine lines", "attributes": ["anti aging", "fine lines"], "options": [""], "instruction_attributes": ["fine lines"], "instruction_options": [], "assignment_id": "384PI804X3BY6N1H82GUQ7FZDCS0SB", "worker_id": "A9QRQL9CFJBI7"}], "B09BB2WGGF": [{"asin": "B09BB2WGGF", "instruction": "i would like a l5538-1 nail tip that is easy to apply", "attributes": ["easy apply", "nail art"], "options": ["color: l5538-1"], "instruction_attributes": ["easy apply"], "instruction_options": ["l5538-1"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRPF9FY", "worker_id": "A1WS884SI0SLO4"}], "B07GYJSMW3": [{"asin": "B07GYJSMW3", "instruction": "searching to purchase a men's zerogrand hiker boot that is water resistant with rubber outsole in a size 10 1/2, either dark coffee or black in coloring. cole haan.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: dark coffee | black", "size: 10.5"], "instruction_attributes": ["water resistant", "rubber outsole"], "instruction_options": ["dark coffee | black", "10.5"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3JEBV6", "worker_id": "A3RGIKEI8JS2QG"}], "B09NQ3SVTB": [{"asin": "B09NQ3SVTB", "instruction": "i am interested in a c colored cruelty free blush alongside a nailpolish", "attributes": ["cruelty free", "long lasting", "nail polish"], "options": ["color: c"], "instruction_attributes": ["cruelty free", "nail polish"], "instruction_options": ["c"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCMJBLW", "worker_id": "AHXHM1PQTRWIQ"}], "B09P9W683K": [{"asin": "B09P9W683K", "instruction": "i am interested in a grey solid wood nightstand", "attributes": ["solid wood", "storage space", "living room"], "options": ["color: grey", "size: nightstand"], "instruction_attributes": ["solid wood"], "instruction_options": ["grey", "nightstand"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTGGD50", "worker_id": "A2ECRNQ3X5LEXD"}], "B093JLXRB6": [{"asin": "B093JLXRB6", "instruction": "i am looking for kosher certified ready to eat reese quartered artichoke hearts, in size 7 ounce (pack of 12)", "attributes": ["ready eat", "kosher certified", "non gmo"], "options": ["flavor name: delicate", "size: 7 ounce (pack of 12)"], "instruction_attributes": ["ready eat", "kosher certified"], "instruction_options": ["7 ounce (pack of 12)"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNUSFJ0", "worker_id": "AX2EWYWZM19AZ"}], "B09SPHJXGC": [{"asin": "B09SPHJXGC", "instruction": "i am looking for dining chairs of g-gray color for my living room.", "attributes": ["mid century", "metal legs", "living room"], "options": ["color: g-gray", "size: 1 pcs"], "instruction_attributes": ["living room"], "instruction_options": ["g-gray"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTX0E45", "worker_id": "A1Q8PPQQCWGY0D"}], "B01JTHDPP6": [{"asin": "B01JTHDPP6", "instruction": "i want anti aging collagen boosting serum.", "attributes": ["anti aging", "cruelty free", "animal testing", "plant based", "natural ingredients", "fine lines"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THZ5Z52", "worker_id": "A2RBF3IIJP15IH"}], "B09DKB37BS": [{"asin": "B09DKB37BS", "instruction": "i am looking for a classic fit army green color shirts.", "attributes": ["slim fit", "cotton spandex", "short sleeve", "classic fit"], "options": ["color: army green", "size: xx-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["army green"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q6EGWA", "worker_id": "A1Q8PPQQCWGY0D"}], "B08TB8PCRL": [{"asin": "B08TB8PCRL", "instruction": "i am looking for medium size elastic waist loose fit workout running sweatpants for men", "attributes": ["machine wash", "loose fit", "hand wash", "drawstring closure", "elastic waist", "tumble dry", "daily wear"], "options": ["color: camo", "size: medium"], "instruction_attributes": ["loose fit", "elastic waist"], "instruction_options": ["medium"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3GCNQC", "worker_id": "A258PTOZ3D2TQR"}], "B08M9QFNKC": [{"asin": "B08M9QFNKC", "instruction": "i am looking for a comfortable desk chair without wheels, for my living room, or dining room. i would like for it to have golden legs.", "attributes": ["super soft", "mid century", "assembly required", "living room", "dining room"], "options": ["color: blue, fur&golden legs"], "instruction_attributes": ["living room", "dining room"], "instruction_options": ["blue, fur&golden legs"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80F61QH", "worker_id": "A2KW17G25L25R8"}], "B09QJ2PBMJ": [{"asin": "B09QJ2PBMJ", "instruction": "i want a bag of high protein thailand unique jamaican crickets.", "attributes": ["ready eat", "high protein", "artificial colors"], "options": ["flavor name: jamaican crickets bag", "size: 6 pack 90 g"], "instruction_attributes": ["high protein"], "instruction_options": ["jamaican crickets bag"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGEISM1", "worker_id": "A2RBF3IIJP15IH"}], "B07QQKRHR1": [{"asin": "B07QQKRHR1", "instruction": "find some 5 ounce gluten free herbs.", "attributes": ["certified organic", "non gmo", "gluten free"], "options": ["flavor name: herbs de provence", "size: 5 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["5 ounce (pack of 1)"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXIIUJR", "worker_id": "A15ERD4HOFEPHM"}], "B09JR2KSKZ": [{"asin": "B09JR2KSKZ", "instruction": "i want an intel i5 core desktop with 32 gb ram and 256 gb nvme ssd.", "attributes": ["core i5", "intel core"], "options": ["size: 32gb ram | 256gb nvme ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": [], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9WETED", "worker_id": "A1NF6PELRKACS9"}], "B092Q2WQWW": [{"asin": "B092Q2WQWW", "instruction": "i am looking for 5x-large party casual short sleeve loose tunic dress", "attributes": ["machine wash", "wash cold", "soft material", "short sleeve", "dry clean"], "options": ["color: small", "size: 5x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["5x-large"], "assignment_id": "3G2UL9A02OO71034MOY04HTU31567Z", "worker_id": "A258PTOZ3D2TQR"}], "B07T7399JK": [{"asin": "B07T7399JK", "instruction": "i'm looking for a ultra hd digital camera with optical zoom lens.", "attributes": ["ultra hd", "optical zoom", "stereo sound"], "options": [""], "instruction_attributes": ["ultra hd", "optical zoom"], "instruction_options": [], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA74BHMH", "worker_id": "AR0VJ5XRG16UJ"}], "B09MQVPBKV": [{"asin": "B09MQVPBKV", "instruction": "i need some whitening toothpaste", "attributes": ["alcohol free", "teeth whitening", "coconut oil", "natural ingredients"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTSPE52", "worker_id": "A2ECRNQ3X5LEXD"}], "B083JTJXG7": [{"asin": "B083JTJXG7", "instruction": "i want to buy a brush for facial cleansing which is suitable for sensitive skin and it's blue color.", "attributes": ["sensitive skin", "dead skin"], "options": ["color: blue"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["blue"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A21CBHTM", "worker_id": "AJY5G987IRT25"}], "B09NS3HYLV": [{"asin": "B09NS3HYLV", "instruction": "i am looking for variety truffles style - 4pc. of dairy free chocolate truffles", "attributes": ["dairy free", "hand crafted", "low carb", "sugar free", "non gmo"], "options": ["style: variety truffles - 4pc."], "instruction_attributes": ["dairy free"], "instruction_options": ["variety truffles - 4pc."], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXZ4O4H", "worker_id": "A9QRQL9CFJBI7"}], "B09FL9593D": [{"asin": "B09FL9593D", "instruction": "im looking for the long lasting soy wax jar candles in lavender scent.", "attributes": ["long lasting", "soy wax"], "options": [""], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": [], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG4QBGH", "worker_id": "AK3JMCIGU8MLU"}], "B08HN4MPNH": [{"asin": "B08HN4MPNH", "instruction": "i want a beige colored storage bench for my living room. it should be 40 inches in size.", "attributes": ["button tufted", "assembly required", "living room"], "options": ["color: beige", "size: 40 inches"], "instruction_attributes": ["living room"], "instruction_options": ["beige", "40 inches"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O48A2C", "worker_id": "A1NF6PELRKACS9"}], "B07HGKTMCZ": [{"asin": "B07HGKTMCZ", "instruction": "can i get a hedgehog garden ornament collection which has a longlasting battery .", "attributes": ["batteries included", "long lasting"], "options": ["style: hedgehog"], "instruction_attributes": ["long lasting"], "instruction_options": ["hedgehog"], "assignment_id": "351SEKWQSBRP7CP60H83T50CFB7DMR", "worker_id": "AHU9OLV0YKIIW"}], "B07XBV3VZC": [{"asin": "B07XBV3VZC", "instruction": "i want a lenovo thinkcentre quad core desktop pc.", "attributes": ["core i5", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YKSNPN", "worker_id": "A2RBF3IIJP15IH"}], "B08CTS4P7B": [{"asin": "B08CTS4P7B", "instruction": "i need a bag that can carry my travel bottles", "attributes": ["leak proof", "easy use", "travel bottles"], "options": [""], "instruction_attributes": ["travel bottles"], "instruction_options": [], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYTTOZD", "worker_id": "A2ECRNQ3X5LEXD"}], "B08M47K2VY": [{"asin": "B08M47K2VY", "instruction": "find me a pair of women's jogger sweatpants with an elastic band and drawstring. i want a medium sized black pair.", "attributes": ["machine wash", "drawstring closure", "elastic waistband"], "options": ["color: black", "size: medium"], "instruction_attributes": ["drawstring closure", "elastic waistband"], "instruction_options": ["black", "medium"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WBLUO1", "worker_id": "A2DDPSXH2X96RF"}], "B08H7PJKML": [{"asin": "B08H7PJKML", "instruction": "i am looking for 03 yellow square pattern eco friendly shower caps.", "attributes": ["eco friendly", "hair treatment"], "options": ["pattern name: 03 yellow square"], "instruction_attributes": ["eco friendly"], "instruction_options": ["03 yellow square"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQFX19Q", "worker_id": "A1Q8PPQQCWGY0D"}], "B091D648LZ": [{"asin": "B091D648LZ", "instruction": "i am looking for some long lasting ruby colored lip gloss .", "attributes": ["long lasting", "hyaluronic acid"], "options": ["color: 611 ruby sheen", "style: set"], "instruction_attributes": ["long lasting"], "instruction_options": ["611 ruby sheen"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4GSBSB", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B091D648LZ", "instruction": "i am looking for a french chic color lip gloss that is long lasting.", "attributes": ["long lasting", "hyaluronic acid"], "options": ["color: french chic", "style: set"], "instruction_attributes": ["long lasting"], "instruction_options": ["french chic"], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZTK05B", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B091D648LZ", "instruction": "i am interested in a long lasting lip gloss set", "attributes": ["long lasting", "hyaluronic acid"], "options": ["color: 609 lucid glow", "style: set"], "instruction_attributes": ["long lasting"], "instruction_options": ["set"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL29EAJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PYMQ217": [{"asin": "B09PYMQ217", "instruction": "i am looking for height adjustable blue color children's study desk table chair set with drawer and bookstand.", "attributes": ["height adjustable", "steel frame", "storage space"], "options": ["color: blue-4"], "instruction_attributes": ["height adjustable"], "instruction_options": ["blue-4"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K9M12X", "worker_id": "A258PTOZ3D2TQR"}], "B07KW8MDVZ": [{"asin": "B07KW8MDVZ", "instruction": "i am looking for a 3x large heathers cotton t-shirts for boys", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: baby blue", "fit type: men", "size: 3x-large"], "instruction_attributes": ["heathers cotton"], "instruction_options": [], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV3EX3B", "worker_id": "A9QRQL9CFJBI7"}], "B09N79LQQF": [{"asin": "B09N79LQQF", "instruction": "i would like some non gmo gluten free snack food.", "attributes": ["non gmo", "gluten free"], "options": [""], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": [], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4FJL8Q", "worker_id": "A1WS884SI0SLO4"}], "B07VPDDQXV": [{"asin": "B07VPDDQXV", "instruction": "i am interested in buying an ottoman for coffee table which is of high density and solid wood, and i want it's color to be distressed dark blue, and has a 36 inch dimension.", "attributes": ["high density", "faux leather", "solid wood", "living room"], "options": ["color: distressed dark blue", "size: 36 inch"], "instruction_attributes": ["high density", "solid wood"], "instruction_options": ["distressed dark blue", "36 inch"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXNXKWJ", "worker_id": "AJY5G987IRT25"}], "B09KM6MR46": [{"asin": "B09KM6MR46", "instruction": "i want brown pgojuni womens open toe booties.", "attributes": ["knee high", "open toe", "high heel"], "options": ["color: f-1 brown", "size: 8"], "instruction_attributes": ["open toe"], "instruction_options": ["f-1 brown"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E241354", "worker_id": "A2RBF3IIJP15IH"}], "B08KTQGV2H": [{"asin": "B08KTQGV2H", "instruction": "i am looking for long lasting blackout curtains. and i choose the 55\" w x 72\" l with color 17", "attributes": ["machine washable", "long lasting"], "options": ["color: color17", "size: 55\" w x 72\" l"], "instruction_attributes": ["long lasting"], "instruction_options": ["color17", "55\" w x 72\" l"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIN9EFT", "worker_id": "A2COCSUGZV28X"}], "B09KLQ1Q3D": [{"asin": "B09KLQ1Q3D", "instruction": "i'm looking for a high heel stiletto shoes with ankle strap and deep purple color size 10", "attributes": ["ankle strap", "high heel", "rubber outsole"], "options": ["color: deep purple", "size: 10"], "instruction_attributes": ["ankle strap", "high heel"], "instruction_options": ["deep purple", "10"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT5JJY2", "worker_id": "A2Y2TURT2VEYZN"}], "B07S1L3BV5": [{"asin": "B07S1L3BV5", "instruction": "i would like to find gluten free barbecue sauce with flavor of smokey mesquite", "attributes": ["gluten free", "quality ingredients", "high fructose", "artificial colors"], "options": ["flavor name: smokey mesquite", "size: 1.12 pound (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["smokey mesquite"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPO2SYX", "worker_id": "A15ERD4HOFEPHM"}], "B01DCHQMOK": [{"asin": "B01DCHQMOK", "instruction": "i am looking for some oil free baby powder", "attributes": ["oil free", "dry skin"], "options": ["scent: baby powder"], "instruction_attributes": ["oil free"], "instruction_options": ["baby powder"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK8KNVZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07YD83DNZ": [{"asin": "B07YD83DNZ", "instruction": "i am interested in a white alarm clock that has batteries included.", "attributes": ["batteries included", "easy use", "usb port"], "options": ["color: white"], "instruction_attributes": ["batteries included"], "instruction_options": ["white"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GO0Q937", "worker_id": "A2ECRNQ3X5LEXD"}], "B097MYVHHV": [{"asin": "B097MYVHHV", "instruction": "i'm looking for a fluoride free toothpaste that prevents bad breath. also choose a pack of 2, 50g blue colored one.", "attributes": ["fluoride free", "bad breath"], "options": ["color: blue", "size: 50g*2"], "instruction_attributes": ["fluoride free", "bad breath"], "instruction_options": ["blue", "50g*2"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQIBCJZ", "worker_id": "AR0VJ5XRG16UJ"}], "B07QCD9YM6": [{"asin": "B07QCD9YM6", "instruction": "i am looking for a macaroni & cheese with rich creamy and non gmo.", "attributes": ["non gmo", "rich creamy", "artificial flavors"], "options": [""], "instruction_attributes": ["non gmo", "rich creamy"], "instruction_options": [], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZZKZJ6", "worker_id": "A2HMEGTAFO0CS8"}], "B07NPCS939": [{"asin": "B07NPCS939", "instruction": "i am looking for a beige sectional sofa set for my living room.", "attributes": ["spot clean", "wood frame", "living room"], "options": ["color: beige", "size: seating for 4 - 2 ottomans"], "instruction_attributes": ["living room"], "instruction_options": ["beige"], "assignment_id": "3QIYRE09YER1XZUUWP385IO3V5U1N7", "worker_id": "A1EREKSZAA9V7B"}], "B07J4XNCSZ": [{"asin": "B07J4XNCSZ", "instruction": "i would like some non gmo watermelon fruit snacks", "attributes": ["non gmo", "gluten free", "artificial flavors", "natural flavors"], "options": ["flavor name: watermelon", "size: 0.7 ounce (pack of 56)"], "instruction_attributes": ["non gmo"], "instruction_options": ["watermelon"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR8SC0D", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MTQH8MX": [{"asin": "B09MTQH8MX", "instruction": "i want blue travel toothbrushes with long handles.", "attributes": ["non slip", "long handle", "oral hygiene"], "options": ["color: blue"], "instruction_attributes": ["long handle"], "instruction_options": ["blue"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV5BBHQ", "worker_id": "A2RBF3IIJP15IH"}], "B09H79FB9V": [{"asin": "B09H79FB9V", "instruction": "i am looking for easy clean and space saving kitchen trash cabinet of hm-gb01gy model", "attributes": ["space saving", "white item", "easy clean", "easy assemble"], "options": ["style: hm-gb01gy"], "instruction_attributes": ["space saving", "easy clean"], "instruction_options": ["hm-gb01gy"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO8S2R8", "worker_id": "A258PTOZ3D2TQR"}], "B09D8T75XX": [{"asin": "B09D8T75XX", "instruction": "i am looking for non gmo ocean's halo seaweed snacks. 1 case of 20 units.", "attributes": ["certified organic", "non gmo"], "options": [""], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R9QSKZ", "worker_id": "A2KW17G25L25R8"}], "B08HWR1D16": [{"asin": "B08HWR1D16", "instruction": "i want a large royal blue golf and bourbon enjoyer tank top for women for machine wash", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: women", "size: large"], "instruction_attributes": ["machine wash"], "instruction_options": ["royal blue", "women", "large"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3VM9Z1", "worker_id": "A2Y2TURT2VEYZN"}], "B015QLCI7A": [{"asin": "B015QLCI7A", "instruction": "i'm looking for the original gypsy color 5 light crystal white flush mount chandelier.", "attributes": ["fully assembled", "easy assemble", "clear glass", "dining room"], "options": ["color: multicolor", "size: 4 light hardwire"], "instruction_attributes": ["easy assemble"], "instruction_options": ["multicolor"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA932Z3ZZ", "worker_id": "A21IUUHBSEVB56"}], "B071HNJ2T7": [{"asin": "B071HNJ2T7", "instruction": "i am seeking a high quality toothpaste which ensure that i have long lasting fresh breath", "attributes": ["high quality", "fresh breath"], "options": [""], "instruction_attributes": ["high quality", "fresh breath"], "instruction_options": [], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4KS51J", "worker_id": "AHXHM1PQTRWIQ"}], "B09NRNNG1Q": [{"asin": "B09NRNNG1Q", "instruction": "i am looking for 2pink color anti slip women sandals.", "attributes": ["anti slip", "open toe", "high heel", "leather sole", "ankle strap"], "options": ["color: 2pink", "size: 7"], "instruction_attributes": ["anti slip"], "instruction_options": ["2pink"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83NZJIC", "worker_id": "A1Q8PPQQCWGY0D"}], "B09CF1YNVX": [{"asin": "B09CF1YNVX", "instruction": "i am looking for a toning treatment that is fragrance free", "attributes": ["dermatologist tested", "fragrance free"], "options": ["style: prox anti-aging tone treatment, 1.3 oz"], "instruction_attributes": ["fragrance free"], "instruction_options": ["prox anti-aging tone treatment, 1.3 oz"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TOR3NI", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CTY29KJ": [{"asin": "B09CTY29KJ", "instruction": "i am looking for white color wood frame triple bunk bed with ladder", "attributes": ["twin size", "white item", "assembly required", "wood frame", "box spring"], "options": ["color: white", "size: twin over full with slide"], "instruction_attributes": ["wood frame"], "instruction_options": ["white"], "assignment_id": "33UKMF931KU01WBNV49UKNDQC63TT5", "worker_id": "A258PTOZ3D2TQR"}], "B07DKHV65Q": [{"asin": "B07DKHV65Q", "instruction": "i am looking for a lavender women's party dress in the size x-large.", "attributes": ["hand wash", "dry clean"], "options": ["color: lavender", "size: x-large"], "instruction_attributes": ["hand wash"], "instruction_options": ["lavender", "x-large"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X028B435", "worker_id": "AK3JMCIGU8MLU"}], "B09B22PC6S": [{"asin": "B09B22PC6S", "instruction": "king size platform bed with rgb led headboard", "attributes": ["pu leather", "faux leather", "box spring"], "options": ["color: burgundy pu", "size: king"], "instruction_attributes": [], "instruction_options": ["king"], "assignment_id": "3G2UL9A02OO71034MOY04HTU31067U", "worker_id": "A3TTGSUBIK1YCL"}], "B09H2QFSKP": [{"asin": "B09H2QFSKP", "instruction": "i want easy clean high quality pink linens for beauty salon size :60*180 cm", "attributes": ["easy clean", "high quality", "beauty salon"], "options": ["color: pink", "size: 60*180cm round head"], "instruction_attributes": ["easy clean", "high quality", "beauty salon"], "instruction_options": ["pink", "60*180cm round head"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCQUBMH", "worker_id": "A3N9ZYQAESNFQH"}, {"asin": "B09H2QFSKP", "instruction": "i am looking for easy clean yellow color beauty bedspreads massage table skirt", "attributes": ["easy clean", "high quality", "beauty salon"], "options": ["color: yellow", "size: 70*180cm round head"], "instruction_attributes": ["easy clean"], "instruction_options": ["yellow"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPO8E6S", "worker_id": "A258PTOZ3D2TQR"}], "B09631NVQT": [{"asin": "B09631NVQT", "instruction": "i am looking for flower fairy giel with pink wing elves pillow cover for living room.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: flower fairy girl with pink wing elves and beautiful butterflies wild plants"], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OILA297", "worker_id": "A3FG5PQHG5AH3Y"}], "B08MN7Y8Y8": [{"asin": "B08MN7Y8Y8", "instruction": "i am looking for venice color lip gloss containing natural ingredients.", "attributes": ["animal testing", "natural ingredients", "nail polish"], "options": ["color: venice", "style: hydro-shine"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["venice"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO7GR2J", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08MN7Y8Y8", "instruction": "i need a liquid lip gloss that has natural ingredients and is in the color rabida.", "attributes": ["animal testing", "natural ingredients", "nail polish"], "options": ["color: rabida", "style: liquid"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["rabida", "liquid"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9EXE2S", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H6VRJYY": [{"asin": "B09H6VRJYY", "instruction": "i need an orange faux leather office chair", "attributes": ["mid century", "faux leather", "pu leather"], "options": ["color: orange", "size: 1 pcs"], "instruction_attributes": ["faux leather"], "instruction_options": ["orange"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN2DPTP", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CZ72MJV": [{"asin": "B09CZ72MJV", "instruction": "i'm looking for a high waisted jeans for women.", "attributes": ["straight leg", "wide leg", "slim fit", "high waist", "button closure", "polyester spandex", "teen girls"], "options": ["color: b03-blue", "size: small"], "instruction_attributes": ["high waist"], "instruction_options": ["b03-blue"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67PZN41", "worker_id": "A21IUUHBSEVB56"}], "B01LR0OOBC": [{"asin": "B01LR0OOBC", "instruction": "i am looking for hands free and dark blue bluetooth stereo wireless music earphones headset", "attributes": ["hands free", "high definition"], "options": ["color: g6: dark blue"], "instruction_attributes": ["hands free"], "instruction_options": ["g6"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R8LTYU", "worker_id": "A258PTOZ3D2TQR"}], "B082J5FK1B": [{"asin": "B082J5FK1B", "instruction": "i am looking for clinical strength solid deodorant for men.it should be paraben free.", "attributes": ["dermatologist tested", "paraben free", "easy clean"], "options": ["style: clinical strength solid (2 pack)"], "instruction_attributes": ["paraben free"], "instruction_options": ["clinical strength solid (2 pack)"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJPFMOY", "worker_id": "A3FG5PQHG5AH3Y"}], "B07BSC84T2": [{"asin": "B07BSC84T2", "instruction": "i need a medium sized classic fit t-shirt. it should be black in color.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: women", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["black", "medium"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN4GOG7", "worker_id": "A1NF6PELRKACS9"}], "B07JGSMJGS": [{"asin": "B07JGSMJGS", "instruction": "i would like a body scrub that is eco friendly.", "attributes": ["eco friendly", "dead skin"], "options": [""], "instruction_attributes": ["eco friendly"], "instruction_options": [], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTXY4ET", "worker_id": "A1WS884SI0SLO4"}], "B07CB94P73": [{"asin": "B07CB94P73", "instruction": "i am looking for nuts & chews milk chocolate with quality ingredients for valentine day. also choose dark-chocolate flavor and 56 pound (9 ounce) size.", "attributes": ["quality ingredients", "gift set", "valentine day", "gift basket"], "options": ["flavor name: dark-chocolate", "size: .56 pound (9 ounce)"], "instruction_attributes": ["quality ingredients", "valentine day"], "instruction_options": ["dark-chocolate", ".56 pound (9 ounce)"], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPCCORM", "worker_id": "A2HMEGTAFO0CS8"}], "B08781CRRS": [{"asin": "B08781CRRS", "instruction": "i would like a chandelier with pendant lights.", "attributes": ["pendant light", "light fixture", "dining room", "living room"], "options": [""], "instruction_attributes": ["pendant light"], "instruction_options": [], "assignment_id": "3HOSI13XHAYM3IJTNO90AFDI6YUDDQ", "worker_id": "A1WS884SI0SLO4"}], "B08N9XVKWK": [{"asin": "B08N9XVKWK", "instruction": "i am interested in buying a king sized bed with memory foam and which provides lumbar support.", "attributes": ["heavy duty", "memory foam", "lumbar support"], "options": ["size: king", "style: 12\" medium soft + base"], "instruction_attributes": ["memory foam", "lumbar support"], "instruction_options": ["king"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTX1E46", "worker_id": "AHXHM1PQTRWIQ"}], "B09CNHSXDC": [{"asin": "B09CNHSXDC", "instruction": "i need ethylene vinyl slippers in size 8.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: black 1", "size: 8"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["8"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXUUYLP", "worker_id": "A1NF6PELRKACS9"}], "B09NFG77CY": [{"asin": "B09NFG77CY", "instruction": "i would like a purple classic fit t-shirt that is a x-large", "attributes": ["needle sleeve", "classic fit"], "options": ["color: purple", "fit type: men", "size: x-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["purple", "x-large"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3IAUFDL", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JMJP427": [{"asin": "B09JMJP427", "instruction": "i am looking for high quality hair cutting scissor make up of thinning shears.", "attributes": ["high quality", "stainless steel", "hair cutting"], "options": ["color: thinning"], "instruction_attributes": ["high quality", "hair cutting"], "instruction_options": ["thinning"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN3HTPZ", "worker_id": "A3FG5PQHG5AH3Y"}], "B09QXXZNDJ": [{"asin": "B09QXXZNDJ", "instruction": "i would like a extra large pair of sleep bottoms with buttons.", "attributes": ["wide leg", "button closure"], "options": ["size: x-large"], "instruction_attributes": ["button closure"], "instruction_options": ["x-large"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0S4O11Y", "worker_id": "A1WS884SI0SLO4"}], "B08DGQDX38": [{"asin": "B08DGQDX38", "instruction": "i am looking for a sconce light with a black metal base and a wood finish.", "attributes": ["clear glass", "wood finish", "vanity light"], "options": [""], "instruction_attributes": ["wood finish"], "instruction_options": [], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66TJZFL", "worker_id": "A1EREKSZAA9V7B"}], "B096VP5JJS": [{"asin": "B096VP5JJS", "instruction": "i am looking for toilet storage cabinet that is easy to clean.", "attributes": ["space saving", "easy clean", "steel frame", "storage unit", "storage space"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3U36PW", "worker_id": "A1Q8PPQQCWGY0D"}], "B07G75YY2F": [{"asin": "B07G75YY2F", "instruction": "i would like 30 bpa free amber travel bottles.", "attributes": ["bpa free", "high quality", "travel bottles"], "options": ["color: amber", "size: pack of 30"], "instruction_attributes": ["travel bottles"], "instruction_options": ["amber", "pack of 30"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5X44F0", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07G75YY2F", "instruction": "i am looking for some high quality clear travel bottles.", "attributes": ["bpa free", "high quality", "travel bottles"], "options": ["color: clear", "size: pack of 6"], "instruction_attributes": ["high quality"], "instruction_options": ["clear"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPG1TWT8", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07G75YY2F", "instruction": "i want amber and bpa free moyo natural labs 8 oz boston round travel bottles.", "attributes": ["bpa free", "high quality", "travel bottles"], "options": ["color: amber", "size: pack of 6"], "instruction_attributes": ["bpa free"], "instruction_options": ["amber"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LEQL0G", "worker_id": "A2RBF3IIJP15IH"}], "B08ZCHWBFW": [{"asin": "B08ZCHWBFW", "instruction": "i am interested in buying a rug for the living room with diameter of 6ft, 72 inches and 183 cms.", "attributes": ["machine washable", "contemporary style", "living room"], "options": ["size: round diameter:6ft=72in=183cm"], "instruction_attributes": ["living room"], "instruction_options": ["round diameter:6ft=72in=183cm"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAUD29C4", "worker_id": "AHXHM1PQTRWIQ"}], "B07VPR4HN9": [{"asin": "B07VPR4HN9", "instruction": "i want a gray non slip dining chair cushion.", "attributes": ["button tufted", "non slip"], "options": ["color: gray", "size: 2 pack"], "instruction_attributes": ["non slip"], "instruction_options": ["gray"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YRP96A", "worker_id": "A2RBF3IIJP15IH"}], "B07H8VDQ5K": [{"asin": "B07H8VDQ5K", "instruction": "i am looking for an intel i5 core desktop computer that has 4gb ram and 64gb ssd.", "attributes": ["ultra hd", "core i5", "intel core"], "options": ["color: ddr3 core i3 5005u", "size: 4gb ram 64gb ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["4gb ram 64gb ssd"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NQ4P23", "worker_id": "A1NF6PELRKACS9"}], "B01N21GL66": [{"asin": "B01N21GL66", "instruction": "i need to get a dark beige ottoman for my living room.", "attributes": ["button tufted", "wood frame", "storage space", "living room"], "options": ["color: dark beige"], "instruction_attributes": ["living room"], "instruction_options": ["dark beige"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSLF62F", "worker_id": "A15ERD4HOFEPHM"}], "B00THW4ZB2": [{"asin": "B00THW4ZB2", "instruction": "i need a machine wash, red tooloud italian flag the medium size", "attributes": ["machine wash", "drawstring closure", "elastic waistband", "button closure"], "options": ["color: red", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["red", "medium"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFVMJOT", "worker_id": "A1IL2K0ELYI090"}], "B08NGC1KYS": [{"asin": "B08NGC1KYS", "instruction": "i'm looking for a telescope with high power for bird watching", "attributes": ["high power", "1080p hd", "bird watching"], "options": [""], "instruction_attributes": ["high power", "bird watching"], "instruction_options": [], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTNS5VZ", "worker_id": "A2Y2TURT2VEYZN"}], "B08NDYH53P": [{"asin": "B08NDYH53P", "instruction": "i'm looking for wireless bluetooth headphones.", "attributes": ["high performance", "stereo sound"], "options": ["color: dark grey"], "instruction_attributes": ["high performance"], "instruction_options": ["dark grey"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOHLAT4", "worker_id": "A21IUUHBSEVB56"}], "B0777RQR33": [{"asin": "B0777RQR33", "instruction": "i would like a 10.6 ounce coffee crumble that is low calorie.", "attributes": ["low sugar", "low calorie", "individually wrapped", "perfect gift"], "options": ["flavor name: coffee crumble", "size: 10.6 ounce (pack of 2)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["coffee crumble", "10.6 ounce (pack of 2)"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FIILEQ", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B0777RQR33", "instruction": "i want to find a two-pack of 12-count coffee-crumble flavored sweet delights. they need to be individually wrapped.", "attributes": ["low sugar", "low calorie", "individually wrapped", "perfect gift"], "options": ["flavor name: coffee crumble", "size: 12 count (pack of 2)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["coffee crumble", "12 count (pack of 2)"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2CZ7Y3", "worker_id": "A345TDMHP3DQ3G"}], "B074VD1GP5": [{"asin": "B074VD1GP5", "instruction": "i am looking for matte ink long lasting liquid lipstick having 15 lover color", "attributes": ["highly pigmented", "long lasting"], "options": ["color: 15 lover"], "instruction_attributes": ["long lasting"], "instruction_options": ["15 lover"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR6MA0Q", "worker_id": "A258PTOZ3D2TQR"}], "B086533GWT": [{"asin": "B086533GWT", "instruction": "i'm looking for a room divider panel in silver with wood frame", "attributes": ["fully assembled", "long lasting", "wood frame"], "options": ["color: silver"], "instruction_attributes": ["wood frame"], "instruction_options": ["silver"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCZB469", "worker_id": "A2Y2TURT2VEYZN"}], "B00WFDKDIO": [{"asin": "B00WFDKDIO", "instruction": "i am looking for a gluten free non gmo fig bar packet of 7. and i choose the variety pack", "attributes": ["gluten free", "low sodium", "nut free", "plant based", "dairy free", "non gmo", "0g trans", "real fruit", "high fructose", "artificial flavors"], "options": ["flavor name: variety pack", "size: 12 count (pack of 7)"], "instruction_attributes": ["gluten free", "non gmo"], "instruction_options": ["variety pack", "12 count (pack of 7)"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AMSYUQ", "worker_id": "A2COCSUGZV28X"}], "B085T5HZJV": [{"asin": "B085T5HZJV", "instruction": "i want a tv stand made of wood and has a storage space. it should be suitable for my living room.", "attributes": ["tempered glass", "storage space", "living room"], "options": ["color: wood", "style name: 58\" kenton w | fireplace"], "instruction_attributes": ["storage space", "living room"], "instruction_options": ["wood"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN4EGOX", "worker_id": "A1NF6PELRKACS9"}], "B09GPYFH3C": [{"asin": "B09GPYFH3C", "instruction": "i would like a awesome violet 4g lte cell phone", "attributes": ["fast charging", "optical zoom", "4g lte"], "options": ["color: awesome violet"], "instruction_attributes": ["4g lte"], "instruction_options": ["awesome violet"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHS2J0Z", "worker_id": "A1WS884SI0SLO4"}], "B08NQ3Y9TK": [{"asin": "B08NQ3Y9TK", "instruction": "i want a hp elite desktop pc with intel quad core i5.", "attributes": ["core i5", "quad core"], "options": [""], "instruction_attributes": ["quad core"], "instruction_options": [], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL56NSC", "worker_id": "A2RBF3IIJP15IH"}], "B08LKV9N89": [{"asin": "B08LKV9N89", "instruction": "i am looking for a tabletop decorative mirror size 60cm /24inch for my living room.", "attributes": ["exquisite workmanship", "living room"], "options": ["size: 60cm | 24inch"], "instruction_attributes": ["living room"], "instruction_options": ["60cm | 24inch"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTVDL73", "worker_id": "AHU9OLV0YKIIW"}], "B089TMLFR4": [{"asin": "B089TMLFR4", "instruction": "i am looking for a men's body wash that uses seed oil and is burmese sandalwood scented.", "attributes": ["cruelty free", "seed oil"], "options": ["scent: burmese sandalwood"], "instruction_attributes": ["seed oil"], "instruction_options": ["burmese sandalwood"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q6GGWC", "worker_id": "A1EREKSZAA9V7B"}], "B095C4XZCW": [{"asin": "B095C4XZCW", "instruction": "i want a black playstation 1 console airpods water proof case.", "attributes": ["water resistant", "case cover"], "options": ["color: black-style6"], "instruction_attributes": ["water resistant"], "instruction_options": ["black-style6"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGNSW2Q", "worker_id": "A2RBF3IIJP15IH"}], "B000UI6U8I": [{"asin": "B000UI6U8I", "instruction": "i want da vinci sugar free huckleberry syrup.", "attributes": ["sugar free", "fat free"], "options": ["flavor name: huckleberry"], "instruction_attributes": ["sugar free"], "instruction_options": ["huckleberry"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3ATLBWN", "worker_id": "A2RBF3IIJP15IH"}], "B08PPRK2T8": [{"asin": "B08PPRK2T8", "instruction": "i am looking for beauty soaps that contain cocounut oil.", "attributes": ["coconut oil", "tea tree", "natural ingredients"], "options": [""], "instruction_attributes": ["coconut oil"], "instruction_options": [], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AS8WBT", "worker_id": "A1Q8PPQQCWGY0D"}], "B08BXG1NC8": [{"asin": "B08BXG1NC8", "instruction": "i am looking for fully assembled file cabinets.", "attributes": ["fully assembled", "engineered wood"], "options": [""], "instruction_attributes": ["fully assembled"], "instruction_options": [], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUTE51FX", "worker_id": "A1Q8PPQQCWGY0D"}], "B001F1PV1G": [{"asin": "B001F1PV1G", "instruction": "i would like a 8 pack of original fresh scent coconut oil soap that's fragrance free.", "attributes": ["fragrance free", "high quality", "coconut oil", "natural ingredients", "sensitive skin", "dead skin"], "options": ["scent: original fresh scent", "size: pack of 8"], "instruction_attributes": ["fragrance free", "coconut oil"], "instruction_options": ["original fresh scent", "pack of 8"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUKD3C0", "worker_id": "A1WS884SI0SLO4"}], "B09R4V5J3R": [{"asin": "B09R4V5J3R", "instruction": "am looking for low rise lam kwongy sexy yoga shorts for women, blue color.", "attributes": ["low rise", "water resistant", "straight leg", "wide leg", "tummy control", "daily wear"], "options": ["color: blue", "size: 3x-large"], "instruction_attributes": ["low rise"], "instruction_options": ["blue"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HHE6IS", "worker_id": "A1IL2K0ELYI090"}], "B09HHBDGKV": [{"asin": "B09HHBDGKV", "instruction": "i am interested in a high definition yellow playstation", "attributes": ["plug play", "high definition", "quad core"], "options": ["color: yellow-64g"], "instruction_attributes": ["high definition"], "instruction_options": ["yellow-64g"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJPR0WT", "worker_id": "A2ECRNQ3X5LEXD"}], "B0837JNX9T": [{"asin": "B0837JNX9T", "instruction": "i want a black hands free denon home 250 wireless speaker.", "attributes": ["hands free", "stereo sound"], "options": ["color: black", "style: home 350"], "instruction_attributes": ["hands free"], "instruction_options": ["black"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1D2YGD", "worker_id": "A2RBF3IIJP15IH"}], "B083FTBZ6Q": [{"asin": "B083FTBZ6Q", "instruction": "looking for short sleeve tumble dry shirt for men also choose size large", "attributes": ["long lasting", "button closure", "polyester spandex", "short sleeve", "tumble dry"], "options": ["color: muilti 9", "size: large"], "instruction_attributes": ["short sleeve", "tumble dry"], "instruction_options": ["large"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL1QVAS", "worker_id": "A10OGH5CQBXL5N"}], "B09K41V6QJ": [{"asin": "B09K41V6QJ", "instruction": "i am looking for wall art of size 24\" x 36\" black for my living room.", "attributes": ["mid century", "living room"], "options": ["color: b110-2110-002-na02", "size: 24\" x 36\" black"], "instruction_attributes": ["living room"], "instruction_options": ["24\" x 36\" black"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LAFERH", "worker_id": "A1Q8PPQQCWGY0D"}], "B08ML5LCGD": [{"asin": "B08ML5LCGD", "instruction": "i need an easy to install pendant light for ceiling.", "attributes": ["easy install", "pendant light"], "options": [""], "instruction_attributes": ["easy install", "pendant light"], "instruction_options": [], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UT4G1A", "worker_id": "ASWFLI3N8X72G"}], "B097H6BHL9": [{"asin": "B097H6BHL9", "instruction": "find me a medium sized romper with short sleeves.", "attributes": ["short sleeve", "quality polyester", "teen girls"], "options": ["color: h-blue striped", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["medium"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39GSCZO", "worker_id": "A1NF6PELRKACS9"}], "B079K861JP": [{"asin": "B079K861JP", "instruction": "i would like a 19\" tall floor lamp with a white finish.", "attributes": ["white item", "white finish"], "options": ["size: 19\" height"], "instruction_attributes": ["white finish"], "instruction_options": ["19\" height"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL4SSN1", "worker_id": "A1WS884SI0SLO4"}], "B08TM8DKFR": [{"asin": "B08TM8DKFR", "instruction": "looking for cookie favor gifts with natural ingredients choose size 4 bars", "attributes": ["individually wrapped", "high fructose", "natural ingredients"], "options": ["size: 4 bars"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["4 bars"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUKM3C9", "worker_id": "A10OGH5CQBXL5N"}], "B095C9KMNL": [{"asin": "B095C9KMNL", "instruction": "i would like a pair of size 11.5 dark blue sandals that are open toe.", "attributes": ["open toe", "knee high", "non slip", "memory foam", "high heel", "closed toe", "arch support"], "options": ["color: z#01-dark blue", "size: 11.5"], "instruction_attributes": ["open toe"], "instruction_options": ["z#01-dark blue", "11.5"], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5JV1ZH", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B095C9KMNL", "instruction": "i'm looking for women's summer sandals, non-slip, high heels in z#02red color.", "attributes": ["open toe", "knee high", "non slip", "memory foam", "high heel", "closed toe", "arch support"], "options": ["color: z#02red", "size: 8.5"], "instruction_attributes": ["non slip", "high heel"], "instruction_options": ["z#02red"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A21C4THR", "worker_id": "ARJDD0Z3R65BD"}], "B09HWRDK1W": [{"asin": "B09HWRDK1W", "instruction": "i would like a 38 mm gold apple watch band.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: gold", "size: 38 | 40 | 41mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["gold", "38 | 40 | 41mm"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4V25WYP", "worker_id": "A1WS884SI0SLO4"}], "B07TTJHC2N": [{"asin": "B07TTJHC2N", "instruction": "i'm looking for a perfect slip-on active sneaker for women.", "attributes": ["arch support", "rubber outsole", "everyday wear"], "options": ["color: blush", "size: 5"], "instruction_attributes": ["arch support"], "instruction_options": ["blush"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRM173WN", "worker_id": "A21IUUHBSEVB56"}], "B09KMYJ6HC": [{"asin": "B09KMYJ6HC", "instruction": "i want a black and heavy duty pots and pans organizer.", "attributes": ["heavy duty", "easy clean"], "options": ["color: black"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDUIZQ3", "worker_id": "A2RBF3IIJP15IH"}], "B09NRFQLRJ": [{"asin": "B09NRFQLRJ", "instruction": "i am looking for a wireless fast charger that goes with my iphone.", "attributes": ["fast charging", "easy carry", "wireless charging"], "options": [""], "instruction_attributes": ["fast charging", "wireless charging"], "instruction_options": [], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841D6XA7", "worker_id": "A1NF6PELRKACS9"}], "B08RWRCZM4": [{"asin": "B08RWRCZM4", "instruction": "i am looking for a 4gb android 10.0 tv box.", "attributes": ["dual band", "batteries included", "ultra hd", "quad core"], "options": [""], "instruction_attributes": ["ultra hd"], "instruction_options": [], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCZG4QX", "worker_id": "A2KW17G25L25R8"}], "B09L5FJ1Q5": [{"asin": "B09L5FJ1Q5", "instruction": "i want a spicy beef meat and cheese gift basket.", "attributes": ["shelf stable", "gift basket", "great gift"], "options": ["color: spicy beef"], "instruction_attributes": ["gift basket"], "instruction_options": ["spicy beef"], "assignment_id": "3OB0CAO74SZ6D9JM5GF4EL2HGDFYHC", "worker_id": "A2RBF3IIJP15IH"}], "B09RWP246B": [{"asin": "B09RWP246B", "instruction": "i am looking for slim fit men t-shirts of black color.", "attributes": ["moisture wicking", "slim fit", "loose fit", "short sleeve", "long sleeve", "regular fit", "stretch fabric"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["black"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQUFIHO", "worker_id": "A3FG5PQHG5AH3Y"}], "B095BQG7PM": [{"asin": "B095BQG7PM", "instruction": "i need a large 3-wick bucket mult-color floral print soy wax candle for summer", "attributes": ["easy clean", "soy wax"], "options": ["color: mult-color floral print candle"], "instruction_attributes": ["soy wax"], "instruction_options": ["mult-color floral print candle"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW1F1CO", "worker_id": "A258PTOZ3D2TQR"}], "B09L6QB5FC": [{"asin": "B09L6QB5FC", "instruction": "i'm looking for a wings set of 2 white finish heavy home office desk.", "attributes": ["bronze finish", "white finish", "living room"], "options": ["color: copper"], "instruction_attributes": ["white finish"], "instruction_options": ["copper"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3G6QN9", "worker_id": "A21IUUHBSEVB56"}], "B09P4WGX3Z": [{"asin": "B09P4WGX3Z", "instruction": "i am looking for cimota pu leather dining chairs in a set of 2.", "attributes": ["mid century", "high density", "easy clean", "pu leather", "solid wood", "dining room", "living room"], "options": ["color: velvet-ivory-with ring-4pcs", "size: set of 4"], "instruction_attributes": ["dining room"], "instruction_options": ["set of 4"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSLJQ2M", "worker_id": "A2KW17G25L25R8"}], "B001BBQCRC": [{"asin": "B001BBQCRC", "instruction": "i want tiger lily bareminerals eye shadow.", "attributes": ["easy apply", "long lasting", "eye shadow"], "options": ["color: tiger lily", "size: 0.02 ounce (pack of 1)"], "instruction_attributes": ["eye shadow"], "instruction_options": ["tiger lily"], "assignment_id": "3V26SBZTBOOS9KTL7ONUSZFOIX3ZZX", "worker_id": "A2RBF3IIJP15IH"}], "B09R5R4K7N": [{"asin": "B09R5R4K7N", "instruction": "i'm looking for a tempered glass screen protector that is compatible with a 42 mm size apple watch.", "attributes": ["compatible apple", "tempered glass", "glass screen"], "options": ["size: 42 mm"], "instruction_attributes": ["compatible apple", "tempered glass"], "instruction_options": ["42 mm"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZDCSS03", "worker_id": "AK3JMCIGU8MLU"}], "B08N5CCYD6": [{"asin": "B08N5CCYD6", "instruction": "i am looking for a non gmo mojito cocktail mixer", "attributes": ["non gmo", "artificial colors"], "options": ["flavor: mojito", "size: pack of 1"], "instruction_attributes": ["non gmo"], "instruction_options": ["mojito"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJYRVGR3", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MK17G3P": [{"asin": "B09MK17G3P", "instruction": "get football shoes with size 5.5. it should have a rubber sole.", "attributes": ["non slip", "rubber sole"], "options": ["color: blue + dark green", "size: 5.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["5.5"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISZ0OYX", "worker_id": "A15ERD4HOFEPHM"}], "B07GPHFDVS": [{"asin": "B07GPHFDVS", "instruction": "i want seeds of change organic whole grain brown basmati rice.", "attributes": ["certified organic", "artificial colors"], "options": ["size: 8.5 ounce (pack of 12)", "style: whole grain brown basmati rice"], "instruction_attributes": ["certified organic"], "instruction_options": ["whole grain brown basmati rice"], "assignment_id": "3R2PKQ87N7I6FN5SSV9EK2GP7HRMIG", "worker_id": "A2RBF3IIJP15IH"}], "B07WFSTXRP": [{"asin": "B07WFSTXRP", "instruction": "i am looking for casual button-down shirts of burgundy color having long sleeve.", "attributes": ["moisture wicking", "machine wash", "regular fit", "button closure", "polyester spandex", "long sleeve"], "options": ["color: burgundy", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["burgundy"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R2PW7F", "worker_id": "A1Q8PPQQCWGY0D"}], "B072L3ZQ6W": [{"asin": "B072L3ZQ6W", "instruction": "i am looking for a 21 inch high quality hairpiece used for hair extensions.", "attributes": ["high quality", "hair extensions"], "options": ["color: bleach blonde wavy", "size: 21 inch", "style: wavy"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["21 inch"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UXRY0Q", "worker_id": "A1V2JTEEBCXR20"}], "B07WGYLN6G": [{"asin": "B07WGYLN6G", "instruction": "i would like a t6b83a premier edition printer with a usb port.", "attributes": ["certified refurbished", "high performance", "usb port"], "options": ["style: t6b83a - premier edition (w | hp brochure..."], "instruction_attributes": ["usb port"], "instruction_options": ["t6b83a - premier edition (w | hp brochure..."], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BOWX8R", "worker_id": "A1WS884SI0SLO4"}], "B08TB7HMMS": [{"asin": "B08TB7HMMS", "instruction": "i'm looking for tablet pc with 32gb storage, android 9.0, dual sim slots and dual camera.", "attributes": ["high definition", "quad core"], "options": ["color: black"], "instruction_attributes": ["quad core"], "instruction_options": ["black"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80F1Q11", "worker_id": "A21IUUHBSEVB56"}], "B08VWG7WB6": [{"asin": "B08VWG7WB6", "instruction": "i want a black cordless water flosser for bad breath.", "attributes": ["easy use", "bad breath"], "options": ["color: \u3010new\u3011black"], "instruction_attributes": ["bad breath"], "instruction_options": ["\u3010new\u3011black"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98UJYKG", "worker_id": "A2RBF3IIJP15IH"}], "B07NW8RGJ8": [{"asin": "B07NW8RGJ8", "instruction": "i am looking self tanner for removal my dry and dead skin", "attributes": ["dead skin", "dry skin"], "options": [""], "instruction_attributes": ["dead skin", "dry skin"], "instruction_options": [], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2BUY7N", "worker_id": "A3N9ZYQAESNFQH"}], "B0163JJMU0": [{"asin": "B0163JJMU0", "instruction": "i would like an assorted bag of individually wrapped caramels", "attributes": ["individually wrapped", "plant based", "dairy free", "non gmo", "gluten free", "certified organic", "high fructose"], "options": ["flavor name: assorted", "size: 6 pack"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["assorted"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YRQ96B", "worker_id": "A2ECRNQ3X5LEXD"}], "B07H38CYD2": [{"asin": "B07H38CYD2", "instruction": "i would like the perfect jam gift.", "attributes": ["simple ingredients", "perfect gift"], "options": [""], "instruction_attributes": ["perfect gift"], "instruction_options": [], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO8W2RC", "worker_id": "A1WS884SI0SLO4"}], "B09QGGG627": [{"asin": "B09QGGG627", "instruction": "i'm looking for heavy weight paper plates.", "attributes": ["non dairy", "rich creamy", "lactose free", "shelf stable", "gluten free"], "options": ["color: pathways design", "size: 8.5 in", "style: 1000 plates"], "instruction_attributes": ["lactose free"], "instruction_options": ["pathways design"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1LYU3H", "worker_id": "A21IUUHBSEVB56"}], "B09H7MSD9W": [{"asin": "B09H7MSD9W", "instruction": "i am interested in acquiring women shirt which is gray color and x-large size, while also i want it to be machine washable and be a loose fit.", "attributes": ["daily casual", "machine washable", "loose fit", "long sleeve", "unique design", "short sleeve", "laundry bag", "teen girls", "daily wear"], "options": ["color: gray", "size: x-large"], "instruction_attributes": ["machine washable", "loose fit"], "instruction_options": ["gray", "x-large"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIMQ29P", "worker_id": "AJY5G987IRT25"}], "B077L2N9CC": [{"asin": "B077L2N9CC", "instruction": "i looking for strawberry&blueberry artificial flavors in variety pack apple cinnamon &strawberry", "attributes": ["individually wrapped", "high fructose", "artificial flavors"], "options": ["flavor name: variety pack, apple cinnamon & strawberry"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["variety pack, apple cinnamon & strawberry"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW7Q4TO", "worker_id": "A2MSIFDLOHI1UT"}], "B097Y8WNLK": [{"asin": "B097Y8WNLK", "instruction": "i'm looking for disposable razors for hair removal in multiple colors", "attributes": ["easy use", "hair removal"], "options": ["color: rose red, blue, yellow"], "instruction_attributes": ["hair removal"], "instruction_options": ["rose red, blue, yellow"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZDOPA0", "worker_id": "A2Y2TURT2VEYZN"}], "B09LVNHDLT": [{"asin": "B09LVNHDLT", "instruction": "i am looking for a easily cleanable toothbrush with travel case that has extra soft feature. and i choose the white one", "attributes": ["easy clean", "oral hygiene"], "options": ["color: white"], "instruction_attributes": ["easy clean"], "instruction_options": ["white"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD3MIRU", "worker_id": "A2COCSUGZV28X"}], "B01LTHLD9Y": [{"asin": "B01LTHLD9Y", "instruction": "i am looking for 040 medium ash brown color hair dye that is easy to use.", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 040 medium ash brown", "size: 3 count (pack of 1)", "style: old version"], "instruction_attributes": ["easy use"], "instruction_options": ["040 medium ash brown"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4CR6RO", "worker_id": "A1Q8PPQQCWGY0D"}], "B0001EL4DC": [{"asin": "B0001EL4DC", "instruction": "i am looking for some honey dark colored paraben free powder foundation.", "attributes": ["paraben free", "green tea"], "options": ["color: honey dark"], "instruction_attributes": ["paraben free"], "instruction_options": ["honey dark"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39GSZCB", "worker_id": "A1EREKSZAA9V7B"}], "B0748DZCZ7": [{"asin": "B0748DZCZ7", "instruction": "i'm looking for a green tea full coverage concealer for dark circles", "attributes": ["paraben free", "coconut oil", "dark circles", "fine lines"], "options": ["color: green tea"], "instruction_attributes": ["dark circles"], "instruction_options": ["green tea"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY4N4J5", "worker_id": "A2Y2TURT2VEYZN"}], "B08R5YH95C": [{"asin": "B08R5YH95C", "instruction": "i'm looking for boxer briefs for men.", "attributes": ["machine washable", "machine wash", "comfortable fit"], "options": ["color: love heart", "size: small"], "instruction_attributes": ["machine washable"], "instruction_options": ["love heart"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL97H5D", "worker_id": "A21IUUHBSEVB56"}], "B09MLYM9YN": [{"asin": "B09MLYM9YN", "instruction": "i'm interested in a long-sleeved, size large hooded sweatshirt made from quality polyester.", "attributes": ["quality polyester", "long sleeve"], "options": ["size: large"], "instruction_attributes": ["quality polyester", "long sleeve"], "instruction_options": ["large"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCZD4QU", "worker_id": "AFU00NU09CFXE"}], "B09J4GSH9J": [{"asin": "B09J4GSH9J", "instruction": "i would like some non toxic body glitter in the color ch138", "attributes": ["non toxic", "nail art"], "options": ["color: ch138"], "instruction_attributes": ["non toxic"], "instruction_options": ["ch138"], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUM1ZV1", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H9NDB1S": [{"asin": "B09H9NDB1S", "instruction": "i'm looking for a 2t royal blue t-shirt encanto movie officially licensed for men", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: men", "size: 2t"], "instruction_attributes": ["officially licensed"], "instruction_options": ["royal blue", "men", "2t"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3IA3FDU", "worker_id": "A2Y2TURT2VEYZN"}], "B089VSHQQV": [{"asin": "B089VSHQQV", "instruction": "i want a light blue and funut case cover compatible with the macbook pro.", "attributes": ["heavy duty", "case cover"], "options": ["color: light blue", "size: (a1534) macbook 12\" with retina display"], "instruction_attributes": ["case cover"], "instruction_options": ["light blue"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1II088", "worker_id": "A2RBF3IIJP15IH"}], "B09133G83G": [{"asin": "B09133G83G", "instruction": "i would like some non gmo sugar", "attributes": ["non gmo", "gluten free", "artificial colors", "artificial flavors"], "options": ["flavor: sugarcane", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["sugarcane"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WYTA1U", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B09133G83G", "instruction": "i would like a one pound bag of non-gmo amla.", "attributes": ["non gmo", "gluten free", "artificial colors", "artificial flavors"], "options": ["flavor: amla", "size: 1 pound (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["amla", "1 pound (pack of 1)"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUNCH8IT", "worker_id": "A1WS884SI0SLO4"}], "B099CPDVHK": [{"asin": "B099CPDVHK", "instruction": "find this dynasty mattress fully adjustable bed frame with custom headband, bluetooth & usb ports + memory foam mattress set\u2026 for a fair price", "attributes": ["memory foam", "lumbar support", "steel frame"], "options": [""], "instruction_attributes": ["memory foam"], "instruction_options": [], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HWKBPU", "worker_id": "A15IJ20C3R4HUO"}], "B087Y28XLM": [{"asin": "B087Y28XLM", "instruction": "i am looking fresh scent body lotion for dry skin.", "attributes": ["animal testing", "paraben free", "dry skin"], "options": ["scent: fresh", "size: 8.5 fl oz (pack of 1)"], "instruction_attributes": ["dry skin"], "instruction_options": ["fresh"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJW7GVT", "worker_id": "A1Q8PPQQCWGY0D"}], "B015M8V3ZA": [{"asin": "B015M8V3ZA", "instruction": "i am looking for loose fit small size pajama pant.", "attributes": ["easy care", "machine wash", "loose fit", "elastic closure"], "options": ["color: mens - navy | gold", "size: small"], "instruction_attributes": ["loose fit"], "instruction_options": ["small"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AULGR3U", "worker_id": "A1Q8PPQQCWGY0D"}], "B09QRNQCFL": [{"asin": "B09QRNQCFL", "instruction": "i want hands free and bluetooth headphones.", "attributes": ["hands free", "noise cancelling", "stereo sound"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9WR78I", "worker_id": "A2RBF3IIJP15IH"}], "B087TQFKRF": [{"asin": "B087TQFKRF", "instruction": "i want black and comfortable under armour ansa slide sandals.", "attributes": ["comfortable fit", "rubber sole"], "options": ["color: black (011) | black", "size: 3"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["black (011) | black"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0Y2XPH", "worker_id": "A2RBF3IIJP15IH"}], "B07YJRVW8H": [{"asin": "B07YJRVW8H", "instruction": "i am looking for a long handle red color toothbrush which is eco friendly and long lasting.", "attributes": ["eco friendly", "long lasting", "long handle"], "options": ["color: red"], "instruction_attributes": ["eco friendly", "long lasting", "long handle"], "instruction_options": ["red"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7ZCRUG", "worker_id": "A1V2JTEEBCXR20"}], "B08G8DY2LH": [{"asin": "B08G8DY2LH", "instruction": "i want a qivynsry filter carrying case.", "attributes": ["easy carry", "carrying case"], "options": [""], "instruction_attributes": ["carrying case"], "instruction_options": [], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH7HV11", "worker_id": "A2RBF3IIJP15IH"}], "B07JYTS2DM": [{"asin": "B07JYTS2DM", "instruction": "find a 1 pound bag snowy river holiday cocktail sugar - all natural festive cocktail rimmer gluten free, non gmo, i want to make a good impression on guests.", "attributes": ["gmo free", "gluten free", "real fruit"], "options": ["color: chocolate diamond", "size: 1 pound bag"], "instruction_attributes": ["gmo free", "gluten free"], "instruction_options": ["1 pound bag"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZPW1YV", "worker_id": "A15IJ20C3R4HUO"}], "B07Q9JQQ8H": [{"asin": "B07Q9JQQ8H", "instruction": "i would like wall lamps that have two heads and are made of glass", "attributes": ["clear glass", "glass shade"], "options": ["color: 2 heads"], "instruction_attributes": ["glass shade"], "instruction_options": ["2 heads"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUNC58IH", "worker_id": "A2ECRNQ3X5LEXD"}], "B093YSNS24": [{"asin": "B093YSNS24", "instruction": "i am looking for a medium size laundry bag for my wife", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG5UBGN", "worker_id": "A2COCSUGZV28X"}], "B004EJRU9M": [{"asin": "B004EJRU9M", "instruction": "i would like a long lasting men's perfume.", "attributes": ["long lasting", "design house"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N9E7T9", "worker_id": "A1WS884SI0SLO4"}], "B08TRR5993": [{"asin": "B08TRR5993", "instruction": "i am looking for a mango matic flavored performance drink that has zero sugar.", "attributes": ["zero sugar", "artificial flavors"], "options": ["flavor name: mango matic"], "instruction_attributes": ["zero sugar"], "instruction_options": ["mango matic"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9H1R1DO", "worker_id": "A1EREKSZAA9V7B"}], "B000W5NUV4": [{"asin": "B000W5NUV4", "instruction": "i am looking for a boat shoe that has rubber sole. and i would prefer the 8.5 size with blue color", "attributes": ["ethylene vinyl", "vinyl acetate", "rubber sole"], "options": ["color: blue", "size: 8.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["blue", "8.5"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL2YAVH", "worker_id": "A2COCSUGZV28X"}], "B09RWH7SF6": [{"asin": "B09RWH7SF6", "instruction": "i need to get blue tongue cleaner that is stainless steel.", "attributes": ["stainless steel", "oral hygiene", "bad breath"], "options": ["color: black,blue"], "instruction_attributes": ["stainless steel"], "instruction_options": ["black,blue"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4DM0ID", "worker_id": "A15ERD4HOFEPHM"}], "B003NX8C6K": [{"asin": "B003NX8C6K", "instruction": "i would like a xlarge plus red camellia fleece jacket that can be machine washed.", "attributes": ["machine wash", "classic fit", "imported zipper"], "options": ["color: red camellia", "size: x-large plus"], "instruction_attributes": ["machine wash"], "instruction_options": ["red camellia", "x-large plus"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BOOJV0", "worker_id": "A1WS884SI0SLO4"}], "B01GUIJMO0": [{"asin": "B01GUIJMO0", "instruction": "i need a two pack of peanut butter that is non gmo", "attributes": ["non gmo", "gluten free", "protein serving"], "options": ["flavor name: original", "size: 6.5 ounce (pack of 2)"], "instruction_attributes": ["non gmo"], "instruction_options": ["6.5 ounce (pack of 2)"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6US5EZJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HV8PR1B": [{"asin": "B08HV8PR1B", "instruction": "i need a fast charging charging station that is space black", "attributes": ["fast charging", "non slip", "compatible apple", "wireless charging"], "options": ["color: space black"], "instruction_attributes": ["fast charging"], "instruction_options": ["space black"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96DE4GB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JXQYP1Y": [{"asin": "B09JXQYP1Y", "instruction": "i am looking for queen size beds.", "attributes": ["queen size", "box spring"], "options": [""], "instruction_attributes": ["queen size"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZOQ1YN", "worker_id": "A1Q8PPQQCWGY0D"}], "B09NN5NH1H": [{"asin": "B09NN5NH1H", "instruction": "i want white non slip women's wedges cowboy boots.", "attributes": ["day comfort", "non slip", "memory foam", "steel toe", "rubber sole"], "options": ["color: white", "size: 10.5"], "instruction_attributes": ["non slip"], "instruction_options": ["white"], "assignment_id": "3HPZF4IVNX3FW186JO133U513LAYC3", "worker_id": "A2RBF3IIJP15IH"}], "B09SR165B1": [{"asin": "B09SR165B1", "instruction": "i am looking for home theatres plug connectors that are easy to install.", "attributes": ["easy install", "gold plated", "carbon fiber"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYF1EIK", "worker_id": "A1Q8PPQQCWGY0D"}], "B00EG3XIOM": [{"asin": "B00EG3XIOM", "instruction": "i am looking for a 50 ft | 15m size ultra hd gold plated hdmi cables", "attributes": ["ultra hd", "gold plated", "high speed"], "options": ["size: 50 ft | 15m"], "instruction_attributes": ["ultra hd", "gold plated"], "instruction_options": ["50 ft | 15m"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI833SSG", "worker_id": "A9QRQL9CFJBI7"}], "B08LXP8VCB": [{"asin": "B08LXP8VCB", "instruction": "i need meat seasoning that is made in usa . and i would prefer the one with peppered sea salt", "attributes": ["natural flavors", "quality ingredients"], "options": ["flavor name: peppered sea salt"], "instruction_attributes": ["natural flavors"], "instruction_options": [], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7YACUW", "worker_id": "A2COCSUGZV28X"}], "B093YSFQSX": [{"asin": "B093YSFQSX", "instruction": "i need a laundry bag for my travel", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTW9WXH", "worker_id": "A2COCSUGZV28X"}], "B09899K4L6": [{"asin": "B09899K4L6", "instruction": "i need a bluetooth keyboard with aaa batteries in gold color", "attributes": ["batteries included", "long lasting", "aaa batteries"], "options": ["color: gold"], "instruction_attributes": ["aaa batteries"], "instruction_options": ["gold"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3Y1QJ5Z", "worker_id": "ASWFLI3N8X72G"}], "B0080DFOG4": [{"asin": "B0080DFOG4", "instruction": "i'm looking for gift basket for teachers.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQIDJC8", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B0080DFOG4", "instruction": "i am looking for a gift basket for teacher which is hand crafted.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["hand crafted", "gift basket"], "instruction_options": [], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0SARAM", "worker_id": "A2HMEGTAFO0CS8"}], "B08MFG44TV": [{"asin": "B08MFG44TV", "instruction": "i am looking for a 5 piece glass dining table with metal legs for my dining room. it should have faux leather dining chairs.", "attributes": ["heavy duty", "easy install", "pu leather", "faux leather", "tempered glass", "metal legs", "dining room"], "options": ["color: marble", "size: 5 piece glass"], "instruction_attributes": ["faux leather", "metal legs", "dining room"], "instruction_options": ["5 piece glass"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E8YHX4", "worker_id": "A1NF6PELRKACS9"}], "B00DB8KKDK": [{"asin": "B00DB8KKDK", "instruction": "i am looking for a grain free pumpkin bread mix", "attributes": ["grain free", "gluten free", "shelf stable", "plant based", "non gmo", "simple ingredients"], "options": ["flavor name: pumpkin muffin & bread mix", "size: 9 ounce (pack of 1)"], "instruction_attributes": ["grain free"], "instruction_options": ["pumpkin muffin & bread mix"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U9MMAC", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JSYTC4Q": [{"asin": "B09JSYTC4Q", "instruction": "i want a khaki phone case for apple phones.", "attributes": ["compatible apple", "easy carry"], "options": ["color: khaki", "size: for i13 pro max"], "instruction_attributes": ["compatible apple"], "instruction_options": ["khaki"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107C4LIG", "worker_id": "A2RBF3IIJP15IH"}], "B08BSV5VM7": [{"asin": "B08BSV5VM7", "instruction": "i am looking for a 3 pack of trader joe's shelf stable whapping cream in 8 fl oz, three pack -set of two.", "attributes": ["trader joe", "shelf stable"], "options": [""], "instruction_attributes": ["trader joe", "shelf stable"], "instruction_options": [], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUNBUI8E", "worker_id": "A2KW17G25L25R8"}], "B017RXMKUA": [{"asin": "B017RXMKUA", "instruction": "looking for drying hair turban choose one size", "attributes": ["long lasting", "hair salon", "dry hair"], "options": ["color: lavender", "size: one size"], "instruction_attributes": ["dry hair"], "instruction_options": ["one size"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY84U0A", "worker_id": "A10OGH5CQBXL5N"}], "B08B12P6CS": [{"asin": "B08B12P6CS", "instruction": "i am looking for a blue computer gaming chair that is height adjustable and has lumbar support.", "attributes": ["height adjustable", "lumbar support", "pu leather", "metal legs"], "options": ["color: blue"], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": ["blue"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LO690C", "worker_id": "A1EREKSZAA9V7B"}], "B01MQVD7WQ": [{"asin": "B01MQVD7WQ", "instruction": "i want a 2 pack of fragrance free hair detangler spray.", "attributes": ["fragrance free", "paraben free", "cruelty free", "sensitive skin"], "options": ["size: 2 pack"], "instruction_attributes": ["fragrance free"], "instruction_options": ["2 pack"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YZGQ3U", "worker_id": "A2RBF3IIJP15IH"}], "B083XYZ3GR": [{"asin": "B083XYZ3GR", "instruction": "i'm looking a pocket telescope with high definition for bird watching", "attributes": ["non slip", "high definition", "bird watching"], "options": [""], "instruction_attributes": ["high definition", "bird watching"], "instruction_options": [], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPJ96VO", "worker_id": "A2Y2TURT2VEYZN"}], "B09MJZ7GV4": [{"asin": "B09MJZ7GV4", "instruction": "i need a stereo headset with fast charging capacity. and i choose the green one", "attributes": ["fast charging", "high speed"], "options": ["color: green"], "instruction_attributes": ["fast charging"], "instruction_options": ["green"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADX0PYMY", "worker_id": "A2COCSUGZV28X"}], "B07MXPQFCT": [{"asin": "B07MXPQFCT", "instruction": "i'm looking for a gluten free cauliflower cizza crust", "attributes": ["trader joe", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8IJ5RC", "worker_id": "A2Y2TURT2VEYZN"}], "B0971CHBSM": [{"asin": "B0971CHBSM", "instruction": "i am looking for 100th birthday cake toppers.", "attributes": ["birthday party", "birthday cake", "party supplies"], "options": ["pattern name: 18"], "instruction_attributes": ["birthday party", "birthday cake"], "instruction_options": [], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQIHKEQ", "worker_id": "A2KW17G25L25R8"}], "B09DYZ9G64": [{"asin": "B09DYZ9G64", "instruction": "i am looking for watermelon flavored mango dragon fruit tea refresher having high fructose", "attributes": ["quality ingredients", "real fruit", "high fructose", "artificial flavors"], "options": ["flavor name: watermelon lime"], "instruction_attributes": ["high fructose"], "instruction_options": ["watermelon lime"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR99C0W", "worker_id": "A258PTOZ3D2TQR"}], "B01A99GE8I": [{"asin": "B01A99GE8I", "instruction": "i am looking for kosher certified irish fortune cookies with pattern name :halloween", "attributes": ["kosher certified", "individually wrapped"], "options": ["pattern name: halloween"], "instruction_attributes": ["kosher certified"], "instruction_options": ["halloween"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZUY3KR", "worker_id": "AX2EWYWZM19AZ"}], "B07DK3TDFJ": [{"asin": "B07DK3TDFJ", "instruction": "i am looking for certified organic loose leaf containing spirit herbal herbal tea flavor tea.", "attributes": ["caffeine free", "certified organic"], "options": ["flavor name: spirit herbal herbal tea", "size: 8 oz bag (80-100 servings)"], "instruction_attributes": ["certified organic"], "instruction_options": ["spirit herbal herbal tea"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NL8BKL", "worker_id": "A1Q8PPQQCWGY0D"}], "B084XT44LP": [{"asin": "B084XT44LP", "instruction": "i would like a 18 individually wrapped hunnybrush tea bags.", "attributes": ["caffeine free", "individually wrapped"], "options": ["flavor name: honeybush", "size: 18 count (pack of 3)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["honeybush", "18 count (pack of 3)"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZOC7RR", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B084XT44LP", "instruction": "i need18 count box of tea bags (pack of 3) caffeine free herbal tea", "attributes": ["caffeine free", "individually wrapped"], "options": ["flavor name: throat soother", "size: 18 count (pack of 3)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["18 count (pack of 3)"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39HYCZW", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B084XT44LP", "instruction": "i would like a pack of 3 herbal teas that are immune boosting.", "attributes": ["caffeine free", "individually wrapped"], "options": ["flavor name: immune boost", "size: 18 count (pack of 3)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["immune boost", "18 count (pack of 3)"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMONL9MT", "worker_id": "A2ECRNQ3X5LEXD"}], "B08776TNBT": [{"asin": "B08776TNBT", "instruction": "i would like to have bike shorts with elastic waist which are in bold blue color and x-large in size.", "attributes": ["elastic closure", "elastic waist"], "options": ["color: bold blue | white", "size: x-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["bold blue | white", "x-large"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY9H0UV", "worker_id": "AJY5G987IRT25"}], "B08TTWTVQR": [{"asin": "B08TTWTVQR", "instruction": "i would like a african american pretty girl hair kit for home hair cutting.", "attributes": ["long lasting", "hair salon", "hair cutting", "dry hair"], "options": ["color: african american pretty girl"], "instruction_attributes": ["hair cutting"], "instruction_options": ["african american pretty girl"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFVQJOX", "worker_id": "A1WS884SI0SLO4"}], "B09LGX32ZW": [{"asin": "B09LGX32ZW", "instruction": "looking for generic led bedside table set for living room also choose set of 2", "attributes": ["storage space", "living room"], "options": ["size: set of 2"], "instruction_attributes": ["living room"], "instruction_options": ["set of 2"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYK16LX", "worker_id": "A10OGH5CQBXL5N"}], "B08DFH72GP": [{"asin": "B08DFH72GP", "instruction": "i am interested in buying a biege colored diner chai which is easy to assemble and ideal for the dining room.", "attributes": ["button tufted", "assembly required", "easy install", "easy assemble", "solid wood", "dining room"], "options": ["color: beige"], "instruction_attributes": ["easy assemble", "dining room"], "instruction_options": ["beige"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCVDQ5Q", "worker_id": "AHXHM1PQTRWIQ"}], "B09PR7H15R": [{"asin": "B09PR7H15R", "instruction": "i am looking for a super soft fleece throw that has the constellation zodiac scorpio color.", "attributes": ["super soft", "machine washable", "fleece throw", "printing technology"], "options": ["color: constellation zodiac scorpio", "size: 60x50in for teens"], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["constellation zodiac scorpio"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LBLERP", "worker_id": "A1NF6PELRKACS9"}], "B098JKB4Y9": [{"asin": "B098JKB4Y9", "instruction": "i am looking for large size soft material women's cardigans with pockets", "attributes": ["hand wash", "soft material"], "options": ["color: heather grey", "size: large"], "instruction_attributes": ["soft material"], "instruction_options": ["large"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4E4QR8", "worker_id": "A258PTOZ3D2TQR"}], "B07WPXV9MD": [{"asin": "B07WPXV9MD", "instruction": "i am looking for black color twisted x men\u2019s rubber outsole slip-on of size 12.", "attributes": ["slip resistant", "moisture wicking", "rubber outsole"], "options": ["color: black", "size: 12 wide"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["black", "12 wide"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAGFIF5", "worker_id": "A258PTOZ3D2TQR"}], "B09S3C8H4B": [{"asin": "B09S3C8H4B", "instruction": "i am interested in buying a xx-large sized onesie pajamas which is ideal for teen girls and is long sleeved.", "attributes": ["long sleeve", "button closure", "polyester spandex", "teen girls"], "options": ["color: a03-red", "size: xx-large"], "instruction_attributes": ["teen girls"], "instruction_options": ["xx-large"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT39CHJ7", "worker_id": "AHXHM1PQTRWIQ"}], "B09377V4Q9": [{"asin": "B09377V4Q9", "instruction": "i am looking for drawstring closure denim pants that have an elastic waist, in the size large.", "attributes": ["elastic waist", "soft material", "drawstring closure", "teen girls"], "options": ["color: p988 blue1", "size: large"], "instruction_attributes": ["elastic waist", "drawstring closure"], "instruction_options": ["large"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QYW70C", "worker_id": "AK3JMCIGU8MLU"}], "B08G3S9TND": [{"asin": "B08G3S9TND", "instruction": "i am looking for long lasting dark navy color noise cancelling headphones.", "attributes": ["noise cancelling", "long lasting", "high resolution"], "options": ["color: dark navy"], "instruction_attributes": ["noise cancelling", "long lasting"], "instruction_options": ["dark navy"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHHIBNX", "worker_id": "A1Q8PPQQCWGY0D"}], "B07MSM9DQN": [{"asin": "B07MSM9DQN", "instruction": "i would like a ultra hd usb hub.", "attributes": ["ultra hd", "easy carry", "plug play"], "options": [""], "instruction_attributes": ["ultra hd"], "instruction_options": [], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3TJMZ1", "worker_id": "A1WS884SI0SLO4"}], "B083XRVRLB": [{"asin": "B083XRVRLB", "instruction": "i want an ivory safavieh tulum rug for my living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: turquoise | ivory", "item shape: square", "size: 6 ft 7 in x 6 ft 7 in"], "instruction_attributes": ["living room"], "instruction_options": ["turquoise | ivory"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54U938D", "worker_id": "A2RBF3IIJP15IH"}], "B0855CNSB6": [{"asin": "B0855CNSB6", "instruction": "i want cruelty free good chemistry silver coast body spray.", "attributes": ["paraben free", "cruelty free"], "options": ["size: body spray", "style: jasmine rose"], "instruction_attributes": ["cruelty free"], "instruction_options": ["body spray"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20RVZ0I", "worker_id": "A2RBF3IIJP15IH"}], "B083BWCBCV": [{"asin": "B083BWCBCV", "instruction": "i am looking for a spot clean roman shade window blinds which is easy to install. also choose size 24 w x 48 h.", "attributes": ["spot clean", "easy install"], "options": ["size: 24 w x 48 h"], "instruction_attributes": ["spot clean", "easy install"], "instruction_options": ["24 w x 48 h"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9WHET1", "worker_id": "A1V2JTEEBCXR20"}, {"asin": "B083BWCBCV", "instruction": "i am looking for easy install roman window blinds that are light filtering", "attributes": ["spot clean", "easy install"], "options": ["size: 27 w x 36 h"], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MC4RYZZ", "worker_id": "AK3JMCIGU8MLU"}], "B09PGX4H72": [{"asin": "B09PGX4H72", "instruction": "i want gray aodong open toe sandals for women.", "attributes": ["open toe", "knee high", "ankle strap", "high heel", "arch support", "closed toe", "memory foam"], "options": ["color: a04-gray", "size: 8.5"], "instruction_attributes": ["open toe"], "instruction_options": ["a04-gray"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O452A1", "worker_id": "A2RBF3IIJP15IH"}], "B09RZDMDFJ": [{"asin": "B09RZDMDFJ", "instruction": "i am searching for navy color x-large silk smooth slim fit long sleeve shirt for men", "attributes": ["slim fit", "fashion design", "regular fit", "long sleeve"], "options": ["color: navy1", "size: x-large"], "instruction_attributes": ["slim fit", "long sleeve"], "instruction_options": ["navy1", "x-large"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2PP5LF", "worker_id": "A258PTOZ3D2TQR"}], "B092T4BLQM": [{"asin": "B092T4BLQM", "instruction": "i want dalang soy wax scented candles.", "attributes": ["long lasting", "lead free", "eco friendly", "soy wax"], "options": [""], "instruction_attributes": ["soy wax"], "instruction_options": [], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q6DGW9", "worker_id": "A2RBF3IIJP15IH"}], "B07HKK54RY": [{"asin": "B07HKK54RY", "instruction": "i'm looking for a rich creamy, ready to eat buttermilk syrup made from quality ingredients. also, choose a pack of 4 with maple flavored one.", "attributes": ["rich creamy", "ready eat", "quality ingredients"], "options": ["flavor name: maple", "size: 4 pack"], "instruction_attributes": ["rich creamy", "ready eat", "quality ingredients"], "instruction_options": ["maple", "4 pack"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLKHF2Q", "worker_id": "AR0VJ5XRG16UJ"}], "B084DLMXM9": [{"asin": "B084DLMXM9", "instruction": "i am looking for a solid wood bed frames of espresso color", "attributes": ["white item", "assembly required", "solid wood"], "options": ["color: espresso"], "instruction_attributes": ["solid wood"], "instruction_options": ["espresso"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSLI26E", "worker_id": "A9QRQL9CFJBI7"}], "B0847CHSKF": [{"asin": "B0847CHSKF", "instruction": "i need red colored cocktail glitter that is gmo free.", "attributes": ["gmo free", "real fruit"], "options": ["color: red", "style: 12g glitter & 6 ounce sugar pack"], "instruction_attributes": ["gmo free"], "instruction_options": ["red"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9H1RD10", "worker_id": "A1NF6PELRKACS9"}], "B09H7LR8KT": [{"asin": "B09H7LR8KT", "instruction": "i am looking for an anti slip pair of booties with rubber sole. it should be a size 6 and coffee colored.", "attributes": ["knee high", "anti slip", "rubber sole", "daily wear"], "options": ["color: coffee", "size: 6"], "instruction_attributes": ["anti slip", "rubber sole"], "instruction_options": ["coffee", "6"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUMTR39", "worker_id": "A1NF6PELRKACS9"}], "B09SF2S8TZ": [{"asin": "B09SF2S8TZ", "instruction": "i want beige flip flop open toe slippers.", "attributes": ["slip resistant", "fleece lined", "open toe", "steel toe", "high heel", "arch support", "short sleeve", "long sleeve"], "options": ["color: a2 - beige", "size: 6 wide"], "instruction_attributes": ["open toe"], "instruction_options": ["a2 - beige"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4G08LW", "worker_id": "A2RBF3IIJP15IH"}], "B07XSJS2C3": [{"asin": "B07XSJS2C3", "instruction": "i am looking for long lasting lip balm stick with pack of 2.", "attributes": ["long lasting", "seed oil"], "options": ["size: 2 count (pack of 2)"], "instruction_attributes": ["long lasting"], "instruction_options": ["2 count (pack of 2)"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIM3FEM", "worker_id": "A3FG5PQHG5AH3Y"}], "B09JW1K51V": [{"asin": "B09JW1K51V", "instruction": "i am looking for a universal remote control with the aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PDDBUR", "worker_id": "A1EREKSZAA9V7B"}], "B09P3MCJW3": [{"asin": "B09P3MCJW3", "instruction": "i want a blanket that's quirky and is fleece throw. i would appreciate it if it was easy to clean too please", "attributes": ["twin size", "easy clean", "fleece throw"], "options": ["color: coffee is my favorite language", "size: crib 50 x 40 inch"], "instruction_attributes": ["easy clean", "fleece throw"], "instruction_options": [], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0EX16N", "worker_id": "A2TRV8SEM003GG"}], "B07932ZN6V": [{"asin": "B07932ZN6V", "instruction": "i would like some grey sneakers in a 7.5 that have a rubber sole.", "attributes": ["long lasting", "memory foam", "rubber outsole", "rubber sole"], "options": ["color: dk grey | lt grey", "size: 7.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["dk grey | lt grey", "7.5"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0WNRA7", "worker_id": "A2ECRNQ3X5LEXD"}], "B08H8T2GL3": [{"asin": "B08H8T2GL3", "instruction": "i would like a medium sized classic fit tank top for a girl.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: men", "size: medium"], "instruction_attributes": ["classic fit"], "instruction_options": ["medium"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI78IZGJ", "worker_id": "AHXHM1PQTRWIQ"}], "B09R4GN7P7": [{"asin": "B09R4GN7P7", "instruction": "get me a black t-shirt with short sleeves. i am an xx-large sized man.", "attributes": ["light weight", "loose fit", "short sleeve", "long sleeve", "soft material"], "options": ["color: black", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["black", "xx-large"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZEUPA8", "worker_id": "A1NF6PELRKACS9"}], "B0981TPJ1Z": [{"asin": "B0981TPJ1Z", "instruction": "i want a tree hut sugar body scrub for dry skin.", "attributes": ["dry skin", "dead skin"], "options": [""], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJKVOL4", "worker_id": "A2RBF3IIJP15IH"}], "B07K125Z37": [{"asin": "B07K125Z37", "instruction": "i would like 2 thirty inch barstools with a dark gray tunic cover for the dining room.", "attributes": ["button tufted", "wood finish", "contemporary style", "dining room"], "options": ["color: dark gray fabric", "size: 2 pack", "style: 30 inch"], "instruction_attributes": ["contemporary style"], "instruction_options": ["dark gray fabric", "2 pack", "30 inch"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRPN9F6", "worker_id": "A1WS884SI0SLO4"}], "B08BVTBHFC": [{"asin": "B08BVTBHFC", "instruction": "i want a seabear wild caught alaskan smoked salmon gift box.", "attributes": ["fully cooked", "wild caught", "ready eat"], "options": [""], "instruction_attributes": ["wild caught"], "instruction_options": [], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVNWQ0Z", "worker_id": "A2RBF3IIJP15IH"}], "B08NFDZSYN": [{"asin": "B08NFDZSYN", "instruction": "i am looking for a storage cabinet for the kitchen which has a white finish.", "attributes": ["assembly required", "white finish"], "options": [""], "instruction_attributes": ["white finish"], "instruction_options": [], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TFGMNP", "worker_id": "AHXHM1PQTRWIQ"}], "B08R6RYX4J": [{"asin": "B08R6RYX4J", "instruction": "i am looking for central park ombre window curtain panel's in gray 50'' x 84'' set of two for my living room.", "attributes": ["eco friendly", "machine washable", "living room"], "options": ["color: grey", "size: 50\"x95\"x2"], "instruction_attributes": ["living room"], "instruction_options": ["50\"x95\"x2"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCRP7IH", "worker_id": "A2KW17G25L25R8"}], "B000SQQ2D0": [{"asin": "B000SQQ2D0", "instruction": "i am looking for a 450 mocha color oil free fragrance free face makeup", "attributes": ["oil free", "fragrance free", "long lasting"], "options": ["color: 450 mocha"], "instruction_attributes": ["oil free", "fragrance free"], "instruction_options": ["450 mocha"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662ZQ4MJ", "worker_id": "A9QRQL9CFJBI7"}], "B099RPD1Y9": [{"asin": "B099RPD1Y9", "instruction": "i would like a pink body scrub for dry skin.", "attributes": ["dead skin", "dry skin"], "options": ["color: pink"], "instruction_attributes": ["dry skin"], "instruction_options": ["pink"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAIUVOR", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B099RPD1Y9", "instruction": "i'm looking for a body scrub for dead and dry skin. also choose black colored one.", "attributes": ["dead skin", "dry skin"], "options": ["color: black"], "instruction_attributes": ["dead skin", "dry skin"], "instruction_options": ["black"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5BDLQUP", "worker_id": "AR0VJ5XRG16UJ"}], "B09DPSQSX2": [{"asin": "B09DPSQSX2", "instruction": "i want to buy phone glass screen protector which is tempered glass and compatible with apple, the color should be clear, and suitable for iphone 11 pro.", "attributes": ["compatible apple", "high definition", "tempered glass", "glass screen"], "options": ["color: clear", "style: iphone 11 pro"], "instruction_attributes": ["compatible apple", "tempered glass"], "instruction_options": ["clear", "iphone 11 pro"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5BDEQUI", "worker_id": "AJY5G987IRT25"}], "B09PLDZ4PH": [{"asin": "B09PLDZ4PH", "instruction": "i want a small womens summer short sleeve shirt.", "attributes": ["hand wash", "long sleeve", "short sleeve", "faux fur", "tumble dry", "daily wear"], "options": ["color: tops a4c2 white", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["small"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXPEZ21", "worker_id": "A2RBF3IIJP15IH"}], "B07D7T27T2": [{"asin": "B07D7T27T2", "instruction": "i am looking for 16 size short satin homecoming unique design dress", "attributes": ["lace closure", "unique design"], "options": ["color: baby blue", "size: 16"], "instruction_attributes": ["unique design"], "instruction_options": ["16"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4V1ZYWJ", "worker_id": "A258PTOZ3D2TQR"}], "B00AKSCXES": [{"asin": "B00AKSCXES", "instruction": "i want small and machine washable champion men's shorts.", "attributes": ["machine wash", "elastic closure"], "options": ["color: navy-407q88", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["small"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOZI93X", "worker_id": "A2RBF3IIJP15IH"}], "B07QT9M8DL": [{"asin": "B07QT9M8DL", "instruction": "i am looking for classic fit dark heather color tank top.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: men", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["dark heather"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFHP204", "worker_id": "A1Q8PPQQCWGY0D"}], "B08KBTZBRF": [{"asin": "B08KBTZBRF", "instruction": "i want x-large and machine washable leggings depot pajama pants.", "attributes": ["machine washable", "machine wash", "polyester spandex", "drawstring closure", "elastic waistband", "tumble dry"], "options": ["color: perfect admiration", "size: x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["x-large"], "assignment_id": "3G2UL9A02OO71034MOY04HTU31176W", "worker_id": "A2RBF3IIJP15IH"}], "B094QNSQ3V": [{"asin": "B094QNSQ3V", "instruction": "i would like a 8.5 inch wide black non slip platform wedge pair.", "attributes": ["slip resistant", "non slip", "synthetic sole"], "options": ["color: tzz7-3_black", "size: 8.5 wide"], "instruction_attributes": ["non slip"], "instruction_options": ["tzz7-3_black", "8.5 wide"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZNBC7S", "worker_id": "A1WS884SI0SLO4"}], "B073PT96NN": [{"asin": "B073PT96NN", "instruction": "i wan a high speed micro usb cable.", "attributes": ["high speed", "fast charging", "usb port"], "options": [""], "instruction_attributes": ["high speed"], "instruction_options": [], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS4NG9C", "worker_id": "A2RBF3IIJP15IH"}], "B09KLVZXZC": [{"asin": "B09KLVZXZC", "instruction": "i want dual band and quad core smart streaming media tv box with high speed ,which is 4gb +64gb storage capacity", "attributes": ["dual band", "high speed", "high definition", "quad core"], "options": ["color: 4gb+64gb"], "instruction_attributes": ["dual band", "high speed", "quad core"], "instruction_options": ["4gb+64gb"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZNDC7U", "worker_id": "ASWFLI3N8X72G"}], "B082DHB26W": [{"asin": "B082DHB26W", "instruction": "i am looking for a chocolate candy suitable for valentine day. and i choose kisses pink style", "attributes": ["baby shower", "valentine day"], "options": ["style: kisses pink"], "instruction_attributes": ["valentine day"], "instruction_options": ["kisses pink"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907VOUAB", "worker_id": "A2COCSUGZV28X"}], "B084Z7CNH9": [{"asin": "B084Z7CNH9", "instruction": "i am looking for noise cancelling on ear headphone of black color.", "attributes": ["noise cancelling", "carrying case"], "options": ["color: black"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["black"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907UJUA4", "worker_id": "A3FG5PQHG5AH3Y"}], "B06XNP64KD": [{"asin": "B06XNP64KD", "instruction": "i want to buy loose leaf tea which is certified organic and has sleepytime bundle flavor and comes in 4 pack of 40 servings.", "attributes": ["individually wrapped", "certified organic", "gift set"], "options": ["flavor name: sleepytime bundle", "size: 4-pack (40 servings)"], "instruction_attributes": ["certified organic"], "instruction_options": ["sleepytime bundle", "4-pack (40 servings)"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK90VNP", "worker_id": "AJY5G987IRT25"}, {"asin": "B06XNP64KD", "instruction": "i want to buy a ten count tea sampler that's certified organic.", "attributes": ["individually wrapped", "certified organic", "gift set"], "options": ["flavor name: get busy trio tea set", "size: 10 count (pack of 3)"], "instruction_attributes": ["certified organic"], "instruction_options": ["10 count (pack of 3)"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40VMRCF", "worker_id": "AR9AU5FY1S3RO"}], "B07LCGV1K8": [{"asin": "B07LCGV1K8", "instruction": "i am looking for a portable artist storage bag for nail polish and makeup things. also choose corgi-1 color.", "attributes": ["nail polish", "nail art"], "options": ["color: corgi-1"], "instruction_attributes": ["nail polish"], "instruction_options": ["corgi-1"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZSLSHU", "worker_id": "A2HMEGTAFO0CS8"}], "B073V9FL3F": [{"asin": "B073V9FL3F", "instruction": "i need an 8 oz coffee substitute that is caffeine free", "attributes": ["caffeine free", "non gmo", "natural ingredients"], "options": ["flavor name: original", "size: 8 ounce (pack of 1)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["8 ounce (pack of 1)"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPJFQVX", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B073V9FL3F", "instruction": "order for me cocoa blend caffein free drink with natural ingredients.", "attributes": ["caffeine free", "non gmo", "natural ingredients"], "options": ["flavor name: cocoa blend", "size: 7 ounce (pack of 1)"], "instruction_attributes": ["caffeine free", "natural ingredients"], "instruction_options": ["cocoa blend"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA4M8AZ", "worker_id": "AHU9OLV0YKIIW"}], "B09575PQ3Y": [{"asin": "B09575PQ3Y", "instruction": "i am looking for a long lasting eye shadow pen having 7#violet color.", "attributes": ["long lasting", "easy carry", "eye shadow"], "options": ["color: 7#violet"], "instruction_attributes": ["long lasting"], "instruction_options": ["7#violet"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDVSZQF", "worker_id": "A1Q8PPQQCWGY0D"}], "B014P0KPZK": [{"asin": "B014P0KPZK", "instruction": "i am looking for some ready to eat graham crackers.", "attributes": ["ready eat", "simple ingredients", "high fructose", "artificial flavors"], "options": [""], "instruction_attributes": ["ready eat"], "instruction_options": [], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X9HGPL", "worker_id": "A1EREKSZAA9V7B"}], "B07YDMRQRT": [{"asin": "B07YDMRQRT", "instruction": "i need a bath brush with a long handle that is green", "attributes": ["non slip", "long handle"], "options": ["color: green"], "instruction_attributes": ["long handle"], "instruction_options": ["green"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMSOWMW", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BJ1RKYM": [{"asin": "B08BJ1RKYM", "instruction": "i would like a 50 by 60 inch fleece throw decorated with a tractor.", "attributes": ["super soft", "fleece throw"], "options": ["color: tractor", "size: 50\" x 60\""], "instruction_attributes": ["fleece throw"], "instruction_options": ["tractor", "50\" x 60\""], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9GNZR7", "worker_id": "A1WS884SI0SLO4"}], "B07T9GKCPC": [{"asin": "B07T9GKCPC", "instruction": "i'm looking for hair care solutions.", "attributes": ["easy use", "fine mist", "tea tree", "natural ingredients"], "options": ["style: treatment"], "instruction_attributes": ["tea tree"], "instruction_options": ["treatment"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LF0O1A", "worker_id": "A21IUUHBSEVB56"}], "B071QZ7RMJ": [{"asin": "B071QZ7RMJ", "instruction": "i want paraben free and oatmeal shampoo.", "attributes": ["paraben free", "coconut oil", "natural ingredients"], "options": ["scent: oatmeal, milk & honey"], "instruction_attributes": ["paraben free"], "instruction_options": ["oatmeal, milk & honey"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ54ISH", "worker_id": "A2RBF3IIJP15IH"}], "B01N0OQMC7": [{"asin": "B01N0OQMC7", "instruction": "i need a high resolution decal sticker skin for my ps4. it should be long lasting.", "attributes": ["long lasting", "high resolution"], "options": [""], "instruction_attributes": ["long lasting", "high resolution"], "instruction_options": [], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9BTN86", "worker_id": "A1NF6PELRKACS9"}], "B09PH88J47": [{"asin": "B09PH88J47", "instruction": "i'm looking for a long sleeve sweatshirts black flower for valentines", "attributes": ["long sleeve", "quality polyester", "unique design", "daily wear"], "options": ["color: black flower", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["black flower", "xx-large"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98ILWM27", "worker_id": "A2Y2TURT2VEYZN"}], "B07PJXGY87": [{"asin": "B07PJXGY87", "instruction": "i am looking for always women high waisted capri leggings.", "attributes": ["easy care", "machine washable", "hand wash", "elastic waistband", "high waist", "polyester spandex", "tumble dry"], "options": ["color: cbsl128 | mustard", "size: small"], "instruction_attributes": ["high waist"], "instruction_options": ["small"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTVJ7LV", "worker_id": "A2KW17G25L25R8"}], "B086FP44F4": [{"asin": "B086FP44F4", "instruction": "i am looking for a 12 fl oz (pack of 4) of non alcoholic low calorie soft drinks", "attributes": ["non alcoholic", "low calorie", "low carb", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: mango lime", "size: 12 fl oz (pack of 4)"], "instruction_attributes": ["non alcoholic", "low calorie"], "instruction_options": ["12 fl oz (pack of 4)"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N9BT7S", "worker_id": "A9QRQL9CFJBI7"}], "B01BMP2VBM": [{"asin": "B01BMP2VBM", "instruction": "i would like a 10 gram packet of crimson long lasting nail glitter.", "attributes": ["long lasting", "easy use", "nail art"], "options": ["color: crimson", "size: 10 gram"], "instruction_attributes": ["long lasting"], "instruction_options": ["crimson", "10 gram"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIE8BRM", "worker_id": "A1WS884SI0SLO4"}], "B0935ZKGDQ": [{"asin": "B0935ZKGDQ", "instruction": "i am looking for a height adjustable barstool with footrest. i want something in brown.", "attributes": ["easy clean", "height adjustable", "high density", "easy install", "easy assemble", "pu leather"], "options": ["color: brown"], "instruction_attributes": ["height adjustable"], "instruction_options": ["brown"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V6T2U7", "worker_id": "A1NF6PELRKACS9"}], "B098NWSMVT": [{"asin": "B098NWSMVT", "instruction": "i want to get the elastic waistband mofiz women golf short knee-length lounge shorts, khaki color.", "attributes": ["elastic waistband", "elastic waist", "nylon spandex", "drawstring closure"], "options": ["color: khaki", "size: xx-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["khaki"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0UCACA", "worker_id": "A1IL2K0ELYI090"}], "B09F72DMWB": [{"asin": "B09F72DMWB", "instruction": "i need an easy to use trail camera", "attributes": ["easy use", "4g lte"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSY4GL9", "worker_id": "A2ECRNQ3X5LEXD"}], "B01F5W3IFQ": [{"asin": "B01F5W3IFQ", "instruction": "i am looking for wireless bluetooth speaker.please choose gray one.", "attributes": ["certified refurbished", "stereo sound", "wireless bluetooth"], "options": ["color: gray"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["gray"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7ROOBQ", "worker_id": "A3FG5PQHG5AH3Y"}], "B09PLDNV8N": [{"asin": "B09PLDNV8N", "instruction": "i want to buy knee high boots in color brown and having size 8.5.", "attributes": ["knee high", "anti slip"], "options": ["color: brown", "size: 8.5"], "instruction_attributes": ["knee high"], "instruction_options": ["brown", "8.5"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK24ALKNI", "worker_id": "AHXHM1PQTRWIQ"}], "B09G2YMNLC": [{"asin": "B09G2YMNLC", "instruction": "i would like a ac adapter that has output protection.", "attributes": ["output protection", "easy carry"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTRY4VU", "worker_id": "A1WS884SI0SLO4"}], "B08DK4ZKVM": [{"asin": "B08DK4ZKVM", "instruction": "i am looking for a wall mounted book shelf . ad i would prefer the driftwood color", "attributes": ["wall mounted", "assembly required"], "options": ["color: driftwood", "style: book shelf"], "instruction_attributes": ["wall mounted"], "instruction_options": ["driftwood", "book shelf"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HWJBPT", "worker_id": "A2COCSUGZV28X"}], "B09PGGRFRD": [{"asin": "B09PGGRFRD", "instruction": "get me a hand washable short sleeved loose fit top in army green color and 3x-large size.", "attributes": ["loose fit", "day comfort", "hand wash", "short sleeve", "polyester spandex", "teen girls"], "options": ["color: army\u00a0green", "size: 3x-large"], "instruction_attributes": ["loose fit", "hand wash", "short sleeve"], "instruction_options": ["army\u00a0green", "3x-large"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XCVRFF", "worker_id": "A3AYHESLQSDY5T"}], "B007HQNIFO": [{"asin": "B007HQNIFO", "instruction": "i would like a two pack of chicken that is shelf stable", "attributes": ["shelf stable", "fully cooked", "easy prepare", "gluten free", "ready eat", "kosher certified", "dairy free"], "options": ["style: 2 pack"], "instruction_attributes": ["shelf stable"], "instruction_options": ["2 pack"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9L26K2", "worker_id": "A2ECRNQ3X5LEXD"}], "B07MXPLFSH": [{"asin": "B07MXPLFSH", "instruction": "i would like 100 bags of green usda organic tea.", "attributes": ["usda organic", "real fruit", "artificial flavors"], "options": ["flavor name: green", "size: 100 count (pack of 1)"], "instruction_attributes": ["usda organic"], "instruction_options": ["green", "100 count (pack of 1)"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40K5NXH", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07MXPLFSH", "instruction": "i would like 10 bags of peach green tea usda organic tea.", "attributes": ["usda organic", "real fruit", "artificial flavors"], "options": ["flavor name: peach green", "size: 10 count (pack of 1)"], "instruction_attributes": ["usda organic"], "instruction_options": ["peach green", "10 count (pack of 1)"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCLNSJZ", "worker_id": "A1WS884SI0SLO4"}], "B09Q83RGBW": [{"asin": "B09Q83RGBW", "instruction": "i'm looking for a mini desktop computer with 16 gigs of ram and that comes equipped with intel core i5.", "attributes": ["core i5", "intel core"], "options": ["color: i5 10300h", "size: 16g ram 128g ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["16g ram 128g ssd"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJQ5GDY", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B09Q83RGBW", "instruction": "i want an i5 intel core mini pc. it should be 10300h", "attributes": ["core i5", "intel core"], "options": ["color: i5 10300h", "size: 32g ram 1tb ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["i5 10300h"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6IEB2L", "worker_id": "A1NF6PELRKACS9"}], "B09HNMGGPR": [{"asin": "B09HNMGGPR", "instruction": "i would like a beige concealer for dark circles.", "attributes": ["cruelty free", "green tea", "dark circles"], "options": ["color: 04 beige"], "instruction_attributes": ["dark circles"], "instruction_options": ["04 beige"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUXCJQB", "worker_id": "A1WS884SI0SLO4"}], "B08QRW7T8M": [{"asin": "B08QRW7T8M", "instruction": "i'm looking for this product : qumox wireless pro controller remote control pro gamepad joystick with dual vibration if you find it let me know soon i need wireless bluetooth", "attributes": ["high performance", "high speed", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3K772S5NPJL8742V5F3A7IA1Y2NEHS", "worker_id": "A15IJ20C3R4HUO"}], "B00638B5XE": [{"asin": "B00638B5XE", "instruction": "i'm looking for a high protein meat jerky which should be free from gluten, soy and dairy products.", "attributes": ["grass fed", "gluten free", "low fat", "soy free", "high protein", "dairy free", "non gmo"], "options": [""], "instruction_attributes": ["gluten free", "soy free", "high protein", "dairy free"], "instruction_options": [], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH374ZZ", "worker_id": "AR0VJ5XRG16UJ"}], "B07HN56LFJ": [{"asin": "B07HN56LFJ", "instruction": "i would like a polyester cotton hoodie with flowers on it.", "attributes": ["long lasting", "machine wash", "polyester cotton"], "options": ["color: flower-bk-best", "size: best-xl+friend-2xl"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["flower-bk-best"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPLMJNJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08JCCGYHX": [{"asin": "B08JCCGYHX", "instruction": "i would like some pink birthday candles for a birthday party", "attributes": ["birthday cake", "baby shower", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["birthday party"], "instruction_options": ["pink"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTQEO66", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QX6TZ84": [{"asin": "B09QX6TZ84", "instruction": "find me a black 3x-large mens t-shit with button closure aloha theme", "attributes": ["slim fit", "moisture wicking", "winter warm", "straight leg", "fleece lined", "short sleeve", "long sleeve", "nylon spandex", "regular fit", "button closure", "gym workout"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["button closure"], "instruction_options": ["black", "3x-large"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM493D4X6", "worker_id": "A2Y2TURT2VEYZN"}], "B07HFGJ198": [{"asin": "B07HFGJ198", "instruction": "i need flouride free toothpaste", "attributes": ["fluoride free", "teeth whitening", "fresh breath"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WBOUO4", "worker_id": "A2ECRNQ3X5LEXD"}], "B097QXRFK1": [{"asin": "B097QXRFK1", "instruction": "i'm looking for a medium skirt with side pockets in polyester spandex, choose navy blue color", "attributes": ["polyester spandex", "drawstring closure"], "options": ["color: navy blue", "size: medium"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["navy blue", "medium"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI837SSK", "worker_id": "A2Y2TURT2VEYZN"}], "B08YHMV46N": [{"asin": "B08YHMV46N", "instruction": "i am looking for a wicked hot gluten free salsas", "attributes": ["hand crafted", "gluten free"], "options": ["flavor name: wicked hot"], "instruction_attributes": ["gluten free"], "instruction_options": ["wicked hot"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHACXODU", "worker_id": "A9QRQL9CFJBI7"}], "B00Y7X9WI2": [{"asin": "B00Y7X9WI2", "instruction": "i need a cinewhite projector screen that is ultra hd and light weight.", "attributes": ["ultra hd", "light weight"], "options": ["color: cinewhite", "size: 150\" diagonal, 16:9", "style: sable frame b2"], "instruction_attributes": ["ultra hd", "light weight"], "instruction_options": ["cinewhite"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC9LD0X", "worker_id": "A1NF6PELRKACS9"}], "B0983BYQ5B": [{"asin": "B0983BYQ5B", "instruction": "i am looking for height adjustable, mid century crystal chandelier lighting for living room, gold color, size 23.6\"", "attributes": ["height adjustable", "mid century", "assembly required", "light fixture", "dining room", "living room"], "options": ["size: gold 23.6\""], "instruction_attributes": ["height adjustable", "mid century", "living room"], "instruction_options": [], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PPF2X6", "worker_id": "A258PTOZ3D2TQR"}], "B07DPKKDMT": [{"asin": "B07DPKKDMT", "instruction": "my son needs a mattress, look for the greaton brand, fully assembled, box spring. includes 8\" split base | full xl size...", "attributes": ["ready use", "fully assembled", "assembly required", "box spring"], "options": ["size: full xl", "style: includes 8\" split foundation | full xl siz..."], "instruction_attributes": ["fully assembled", "box spring"], "instruction_options": ["includes 8\" split foundation | full xl siz..."], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9HTZRF", "worker_id": "A15IJ20C3R4HUO"}], "B08ZXT2J28": [{"asin": "B08ZXT2J28", "instruction": "i am looking for solo loop dark grey band compatible with apple watch bands 38mm 40mm", "attributes": ["compatible apple", "easy install", "stainless steel"], "options": ["color: dark gray", "size: 38mm | 40mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["dark gray", "38mm | 40mm"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YRS96D", "worker_id": "A258PTOZ3D2TQR"}], "B08523PPK3": [{"asin": "B08523PPK3", "instruction": "i would like a leo candle made of soy wax.", "attributes": ["lead free", "long lasting", "soy wax"], "options": ["size: leo candle"], "instruction_attributes": ["soy wax"], "instruction_options": ["leo candle"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8RQQ6A", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B08523PPK3", "instruction": "i would like a sagittarius candle that has soy wax", "attributes": ["lead free", "long lasting", "soy wax"], "options": ["size: sagittarius candle"], "instruction_attributes": ["soy wax"], "instruction_options": ["sagittarius candle"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733P9BE0", "worker_id": "A2ECRNQ3X5LEXD"}], "B07D5ZYQDD": [{"asin": "B07D5ZYQDD", "instruction": "please look for peet's iced espresso vanilla latte 8 oz can with quality ingredients.", "attributes": ["artificial colors", "quality ingredients"], "options": [""], "instruction_attributes": ["quality ingredients"], "instruction_options": [], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40Z6CRS", "worker_id": "A15IJ20C3R4HUO"}], "B01MYDEK74": [{"asin": "B01MYDEK74", "instruction": "i am looking for 5.9 fl oz eau de parfum - fragrance mist for women", "attributes": ["design house", "long lasting", "fine mist"], "options": ["size: 5.9 fl oz", "style name: 2am kiss"], "instruction_attributes": ["long lasting", "fine mist"], "instruction_options": ["5.9 fl oz"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VNW60W", "worker_id": "A258PTOZ3D2TQR"}], "B00083HDGS": [{"asin": "B00083HDGS", "instruction": "i want a black bellagio european outdoor carriage light fixture.", "attributes": ["bronze finish", "light fixture"], "options": ["color: black - clear - double bridge", "size: 20 1 | 2\" high"], "instruction_attributes": ["light fixture"], "instruction_options": ["black - clear - double bridge"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ2CNRB", "worker_id": "A2RBF3IIJP15IH"}], "B01EFOZHB8": [{"asin": "B01EFOZHB8", "instruction": "i'm looking for pomegranate blueberry flavored energy drinks. preferably with vitamins. i want a pack too", "attributes": ["non gmo", "gluten free", "source vitamin", "artificial colors"], "options": ["flavor name: orange pineapple", "size: 8 fl oz (pack of 6)"], "instruction_attributes": ["source vitamin"], "instruction_options": ["8 fl oz (pack of 6)"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCK1PDNZ", "worker_id": "A2TRV8SEM003GG"}], "B08NXFTJDK": [{"asin": "B08NXFTJDK", "instruction": "i would like to buy men's briefs which is easy care and of stripe color and a unique design.", "attributes": ["easy care", "quality polyester", "unique design", "tumble dry"], "options": ["color: stripe", "size: xx-large"], "instruction_attributes": ["easy care", "unique design"], "instruction_options": ["stripe"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV43HBM", "worker_id": "AHXHM1PQTRWIQ"}], "B093SX96B7": [{"asin": "B093SX96B7", "instruction": "i want a set of 2 mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCLCBLN", "worker_id": "A2RBF3IIJP15IH"}], "B074G399NJ": [{"asin": "B074G399NJ", "instruction": "i want cruelty free illuminating makeup mist.", "attributes": ["cruelty free", "green tea"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602V995N", "worker_id": "A2RBF3IIJP15IH"}], "B076DLGKK9": [{"asin": "B076DLGKK9", "instruction": "i would like a pair of size 6 black luster satin pumps with a open toe.", "attributes": ["open toe", "leather sole"], "options": ["color: black luster satin", "size: 6 wide"], "instruction_attributes": ["open toe"], "instruction_options": ["black luster satin", "6 wide"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53Z4GKD", "worker_id": "A1WS884SI0SLO4"}], "B08HR995R3": [{"asin": "B08HR995R3", "instruction": "i am interested in gray faux leather barstools", "attributes": ["faux leather", "wood finish"], "options": ["color: gray | black", "size: 26\" counter height"], "instruction_attributes": ["faux leather"], "instruction_options": ["gray | black"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788HJ5C9", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08HR995R3", "instruction": "i need a faux leather barstool that is 30\" in height.", "attributes": ["faux leather", "wood finish"], "options": ["color: gray | black", "size: 30\" bar height"], "instruction_attributes": ["faux leather"], "instruction_options": ["30\" bar height"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LET0LY", "worker_id": "A2ECRNQ3X5LEXD"}], "B00NW4QK5A": [{"asin": "B00NW4QK5A", "instruction": "i am looking for certified organic sandwich crackers.", "attributes": ["trader joe", "certified organic"], "options": [""], "instruction_attributes": ["certified organic"], "instruction_options": [], "assignment_id": "3137ONMDKRFU787KL9LSMIY0J14EGL", "worker_id": "A1Q8PPQQCWGY0D"}], "B093YS4MDR": [{"asin": "B093YS4MDR", "instruction": "i want a set of 2 mesh laundry bags with deer floral arrows design.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZNAR77", "worker_id": "A2RBF3IIJP15IH"}], "B07K9C1J7G": [{"asin": "B07K9C1J7G", "instruction": "i am looking for a pc build that's a linux and it is core i5. size: no ram please and thank you", "attributes": ["ultra hd", "high speed", "core i5", "intel core"], "options": ["size: no ram | ssd | hdd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["no ram | ssd | hdd"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVVM9X2", "worker_id": "A2TRV8SEM003GG"}], "B00EE3XEN4": [{"asin": "B00EE3XEN4", "instruction": "i would like to buy individually wrapped hand crafted olive oil tortas. i would prefer them in packs of 10.", "attributes": ["hand crafted", "individually wrapped"], "options": ["size: pack of 10"], "instruction_attributes": ["hand crafted", "individually wrapped"], "instruction_options": ["pack of 10"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662ZR4MK", "worker_id": "AHXHM1PQTRWIQ"}], "B075CSVYBK": [{"asin": "B075CSVYBK", "instruction": "i am looking for some gluten free berries.", "attributes": ["non gmo", "gluten free", "dietary fiber"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBUMEJS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NR8VT9K": [{"asin": "B09NR8VT9K", "instruction": "i want a black hazel velvet king sized bed.", "attributes": ["button tufted", "king size", "contemporary style", "wood frame", "solid wood"], "options": ["color: black", "size: queen"], "instruction_attributes": ["king size"], "instruction_options": ["black"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LNY902", "worker_id": "A2RBF3IIJP15IH"}], "B09N725812": [{"asin": "B09N725812", "instruction": "i am looking for medium size tank tops for women that can be washed through hands.", "attributes": ["hand wash", "wash cold", "polyester spandex"], "options": ["color: moss", "size: medium"], "instruction_attributes": ["hand wash"], "instruction_options": ["medium"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MC47YZF", "worker_id": "A1Q8PPQQCWGY0D"}], "B08ZS5C61B": [{"asin": "B08ZS5C61B", "instruction": "i am looking for a stainless steel watch bands for my smart watch. and i choose the 18mm size with black color", "attributes": ["quick release", "easy install", "stainless steel"], "options": ["color: black", "size: 18mm"], "instruction_attributes": ["stainless steel"], "instruction_options": ["black", "18mm"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI71MYQL", "worker_id": "A2COCSUGZV28X"}], "B08F1V39HN": [{"asin": "B08F1V39HN", "instruction": "i need a super soft baby sized blanket throw for my living room.", "attributes": ["super soft", "living room"], "options": ["color: wt3553", "size: baby(30\"x40\")"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["baby(30\"x40\")"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LINL0L", "worker_id": "A1NF6PELRKACS9"}], "B07W7SQN53": [{"asin": "B07W7SQN53", "instruction": "i need a sugar free lemon cream with raspberry lemonade flavor", "attributes": ["old fashioned", "soy free", "kosher certified", "sugar free", "individually wrapped"], "options": ["flavor name: raspberry lemonade"], "instruction_attributes": ["sugar free"], "instruction_options": ["raspberry lemonade"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBC06UZ", "worker_id": "A2COCSUGZV28X"}, {"asin": "B07W7SQN53", "instruction": "i would like a mango flavored salt water taffy that is old fashioned.", "attributes": ["old fashioned", "soy free", "kosher certified", "sugar free", "individually wrapped"], "options": ["flavor name: mango"], "instruction_attributes": ["old fashioned"], "instruction_options": ["mango"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2YAZIVP", "worker_id": "A1WS884SI0SLO4"}], "B09FLSP4J4": [{"asin": "B09FLSP4J4", "instruction": "i need a white queen sized bed with storage space.", "attributes": ["queen size", "space saving", "box spring", "storage space"], "options": ["color: white", "size: queen"], "instruction_attributes": ["queen size", "storage space"], "instruction_options": ["white", "queen"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIYAMT0", "worker_id": "A1NF6PELRKACS9"}], "B07QK461YX": [{"asin": "B07QK461YX", "instruction": "i am looking for blueberry muffin scent candles that are long lasting.", "attributes": ["lead free", "long lasting"], "options": ["scent: blueberry muffin", "size: ring (size 8)"], "instruction_attributes": ["long lasting"], "instruction_options": ["blueberry muffin"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR97C0U", "worker_id": "A1Q8PPQQCWGY0D"}], "B08H8PKF88": [{"asin": "B08H8PKF88", "instruction": "i am interested in a wall mounted candle holder scone which has a glass shade.", "attributes": ["wall mounted", "glass shade"], "options": [""], "instruction_attributes": ["wall mounted", "glass shade"], "instruction_options": [], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WZZF70", "worker_id": "AHXHM1PQTRWIQ"}], "B084VGH8R2": [{"asin": "B084VGH8R2", "instruction": "i need eco friendly fully assembled and red color 3 drawer rolling file cabinet", "attributes": ["fully assembled", "eco friendly", "steel frame", "storage space"], "options": ["color: orange"], "instruction_attributes": ["fully assembled", "eco friendly"], "instruction_options": ["orange"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQSM0PW", "worker_id": "A258PTOZ3D2TQR"}], "B09SKTG812": [{"asin": "B09SKTG812", "instruction": "i am looking for red color, 3x-large pajamas polyester cotton nightgowns for women", "attributes": ["hand wash", "polyester cotton", "quality materials"], "options": ["color: red", "size: 3x-large"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["red", "3x-large"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP2RTXO", "worker_id": "A258PTOZ3D2TQR"}], "B09QSZ5KX3": [{"asin": "B09QSZ5KX3", "instruction": "looking for long sleeve regular fit shirts for men that's colour black", "attributes": ["loose fit", "hand wash", "fleece lined", "wash cold", "slim fit", "machine wash", "long sleeve", "regular fit", "short sleeve", "drawstring waist", "high waist"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["machine wash", "long sleeve", "regular fit"], "instruction_options": ["black"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6NHU7J", "worker_id": "A10OGH5CQBXL5N"}], "B091C8JKQQ": [{"asin": "B091C8JKQQ", "instruction": "i am looking for an 18 light chandelier for my dining room.", "attributes": ["light fixture", "pendant light", "dining room", "living room"], "options": ["color: linear chandelier - black", "size: 18-light"], "instruction_attributes": ["dining room"], "instruction_options": ["18-light"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAUD4C99", "worker_id": "A1EREKSZAA9V7B"}], "B00I5437GM": [{"asin": "B00I5437GM", "instruction": "i am looking for some anti aging revitalizing shampoo and conditioner with natural ingredients.", "attributes": ["anti aging", "natural ingredients", "natural hair", "hair loss"], "options": ["size: 2 piece set", "style name: conditioner"], "instruction_attributes": ["anti aging", "natural ingredients"], "instruction_options": ["conditioner"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788HK5CA", "worker_id": "A1EREKSZAA9V7B"}], "B09BQT2899": [{"asin": "B09BQT2899", "instruction": "i am looking for ottomans that are round and made of pu leather", "attributes": ["pu leather", "living room"], "options": ["color: round"], "instruction_attributes": ["pu leather"], "instruction_options": ["round"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMTIW9Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B095Y6LXDV": [{"asin": "B095Y6LXDV", "instruction": "i need tamanu scented vitamin e oil for my face to reduce fine lines. i have dry skin.", "attributes": ["anti aging", "dry hair", "fine lines", "dry skin"], "options": ["scent: tamanu"], "instruction_attributes": ["fine lines", "dry skin"], "instruction_options": ["tamanu"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWU9PFN", "worker_id": "A1NF6PELRKACS9"}], "B09R4RJSFP": [{"asin": "B09R4RJSFP", "instruction": "i need a 120 ml hair mask treatment", "attributes": ["dry hair", "hair treatment", "natural hair", "hair growth"], "options": ["color: 120ml"], "instruction_attributes": ["hair treatment"], "instruction_options": ["120ml"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1GPRX2", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PY394BJ": [{"asin": "B09PY394BJ", "instruction": "i need small black ,one count easy to use dental guard", "attributes": ["bpa free", "easy clean", "easy use"], "options": ["size: small black 1 count"], "instruction_attributes": ["easy use"], "instruction_options": ["small black 1 count"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVKATUW", "worker_id": "A258PTOZ3D2TQR"}], "B0894K3JRR": [{"asin": "B0894K3JRR", "instruction": "i am looking for gluten free norwegian crispbread.", "attributes": ["trader joe", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVJN1PT", "worker_id": "A1Q8PPQQCWGY0D"}], "B098QB8QZD": [{"asin": "B098QB8QZD", "instruction": "i'm looking for stretch jeggings for women.", "attributes": ["butt lifting", "moisture wicking", "slim fit", "machine wash", "nylon spandex", "tummy control", "high waist", "elastic closure", "comfortable fit", "daily wear"], "options": ["size: large"], "instruction_attributes": ["slim fit", "high waist"], "instruction_options": ["large"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA7J8CD", "worker_id": "A21IUUHBSEVB56"}], "B092MR8TWP": [{"asin": "B092MR8TWP", "instruction": "i want to buy a dress for women which i can machine wash and has yellow color, as for the size i want it to be 4x-large.", "attributes": ["machine wash", "wash cold", "soft material", "dry clean"], "options": ["color: z7-yellow", "size: 4x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["z7-yellow", "4x-large"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQGTSQ4", "worker_id": "AJY5G987IRT25"}], "B07Q434SD2": [{"asin": "B07Q434SD2", "instruction": "i'm looking for a organic tea tree oil. also, choose vanilla flavored one.", "attributes": ["tea tree", "argan oil"], "options": ["scent: vanilla"], "instruction_attributes": ["tea tree"], "instruction_options": ["vanilla"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC58ERKJ", "worker_id": "AR0VJ5XRG16UJ"}], "B096ZXYXYZ": [{"asin": "B096ZXYXYZ", "instruction": "i would like a heart sunflower heavy duty phone case.", "attributes": ["heavy duty", "easy install", "wireless charging"], "options": ["color: heart sunflower"], "instruction_attributes": ["heavy duty"], "instruction_options": ["heart sunflower"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTWH9PI", "worker_id": "A1WS884SI0SLO4"}], "B098B35RV4": [{"asin": "B098B35RV4", "instruction": "i need black colored natural hair extensions.", "attributes": ["hair extensions", "natural hair"], "options": ["color: black", "size: 4-10 year old"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["black"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR70B6YX", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B098B35RV4", "instruction": "i need some hair extensions that are blue and pink", "attributes": ["hair extensions", "natural hair"], "options": ["color: blue | pink", "size: kids"], "instruction_attributes": ["hair extensions"], "instruction_options": ["blue | pink"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R4TYTZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q94HNBX": [{"asin": "B09Q94HNBX", "instruction": "hello, i would like to have leggings that could go up to my waist please? also, pick purple", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: purple", "size: medium"], "instruction_attributes": ["high waist"], "instruction_options": ["purple"], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUK1S5M", "worker_id": "A2TRV8SEM003GG"}], "B08THCKV97": [{"asin": "B08THCKV97", "instruction": "i would like a 52 inch wide and 63 inch long pair of light grey window panels for the living room.", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: light grey", "size: w 52 x l 63 | pair"], "instruction_attributes": ["living room"], "instruction_options": ["light grey", "w 52 x l 63 | pair"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HHG6IU", "worker_id": "A1WS884SI0SLO4"}], "B089FMKLB9": [{"asin": "B089FMKLB9", "instruction": "i want a 5x7ft vinyl shabby wooden loft background for digital photography.", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 5x7ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["5x7ft"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP1NXTM", "worker_id": "A2RBF3IIJP15IH"}], "B08JKWLXTD": [{"asin": "B08JKWLXTD", "instruction": "i want a gold plated 85ft usb-c to 2 rca stereo audio cable.", "attributes": ["gold plated", "aluminum alloy", "usb port", "stereo sound"], "options": ["color: 3.5mm to 2 rca audio cable-color a", "size: 85ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["85ft"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KQIUHQ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08JKWLXTD", "instruction": "gold plated stereo sound cable input usb port", "attributes": ["gold plated", "aluminum alloy", "usb port", "stereo sound"], "options": ["color: 6.35mm to 2 rca audio cable", "size: 15ft"], "instruction_attributes": ["gold plated", "usb port", "stereo sound"], "instruction_options": [], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUN1R3J", "worker_id": "A3TTGSUBIK1YCL"}], "B08R4TGCYJ": [{"asin": "B08R4TGCYJ", "instruction": "i am looking for 6 packs of nut free, soy free, dairy free chocolate candy variety pack", "attributes": ["dairy free", "nut free", "soy free", "gluten free", "individually wrapped", "non gmo"], "options": ["flavor name: variety pack", "size: 15 count (pack of 6)"], "instruction_attributes": ["dairy free", "nut free", "soy free"], "instruction_options": ["variety pack", "15 count (pack of 6)"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOANGJX", "worker_id": "A258PTOZ3D2TQR"}], "B08VVMNDD3": [{"asin": "B08VVMNDD3", "instruction": "i am looking for low calorie gelatin mix.", "attributes": ["low calorie", "source vitamin"], "options": [""], "instruction_attributes": ["low calorie"], "instruction_options": [], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XU8GNH", "worker_id": "A3FG5PQHG5AH3Y"}], "B084NZ2GKF": [{"asin": "B084NZ2GKF", "instruction": "i am looking for the perfect wedding gift of chocolates that has 27 pieces", "attributes": ["quality ingredients", "perfect gift"], "options": ["size: box of 27"], "instruction_attributes": ["perfect gift"], "instruction_options": ["box of 27"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZNF7CR", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QG6QB9K": [{"asin": "B09QG6QB9K", "instruction": "i want a teeth whitening toothpaste that removes bad breath. pick an orange one.", "attributes": ["teeth whitening", "bad breath", "fresh breath"], "options": ["color: orange"], "instruction_attributes": ["teeth whitening", "bad breath"], "instruction_options": ["orange"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZTXHSX", "worker_id": "A1NF6PELRKACS9"}], "B098KN2L32": [{"asin": "B098KN2L32", "instruction": "i would like some grass fed spicy jerky", "attributes": ["grass fed", "keto friendly"], "options": ["flavor name: sweet & spicy beef jerky"], "instruction_attributes": ["grass fed"], "instruction_options": ["sweet & spicy beef jerky"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LO4091", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SH3RXVC": [{"asin": "B09SH3RXVC", "instruction": "i'm looking for monocular telescope tripod phone mount binoculars.", "attributes": ["high power", "easy carry", "easy use", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGFTMS8", "worker_id": "A21IUUHBSEVB56"}], "B07PSSYVJ4": [{"asin": "B07PSSYVJ4", "instruction": "find me a x-small white slipknot t-shirt classic fit for men", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: men", "size: x-small"], "instruction_attributes": ["classic fit"], "instruction_options": ["white", "men", "x-small"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXZ34OW", "worker_id": "A2Y2TURT2VEYZN"}], "B0999D5BKP": [{"asin": "B0999D5BKP", "instruction": "i am looking for a refresher spray for the curl hair of my wife that is suitable for hair growth. and i choose the a pack of 3", "attributes": ["natural ingredients", "hair growth"], "options": ["size: 8.12 fl oz (pack of 3)"], "instruction_attributes": ["hair growth"], "instruction_options": ["8.12 fl oz (pack of 3)"], "assignment_id": "3TE22NPXPMMW3QH7127E47P6G8644P", "worker_id": "A2COCSUGZV28X"}], "B08BJ5RYSD": [{"asin": "B08BJ5RYSD", "instruction": "i need you to get me slip resistant shoes that has open toes and is white in color. pick a size 4.", "attributes": ["slip resistant", "open toe", "rubber sole"], "options": ["color: white", "size: 4"], "instruction_attributes": ["slip resistant", "open toe"], "instruction_options": ["white", "4"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU4825YYPS", "worker_id": "A1NF6PELRKACS9"}], "B09HL5PF8X": [{"asin": "B09HL5PF8X", "instruction": "i am looking for non alcoholic sparkling refreshments in the sauvignon blanc flavor.", "attributes": ["non alcoholic", "artificial flavors"], "options": ["flavor name: sauvignon blanc", "size: pack of 12"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["sauvignon blanc"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5KAL21Z", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B09HL5PF8X", "instruction": "i would like a 12 pack of non alcoholic rose seltzer water.", "attributes": ["non alcoholic", "artificial flavors"], "options": ["flavor name: ros\u00e9 (sparkling)", "size: pack of 12"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["ros\u00e9 (sparkling)", "pack of 12"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA2C8CW", "worker_id": "A1WS884SI0SLO4"}], "B074Q2C6ZP": [{"asin": "B074Q2C6ZP", "instruction": "i am looking for anti aging cream with green tea and hyaluronic acid. i want it to be effective for dark circles", "attributes": ["anti aging", "hyaluronic acid", "green tea", "sensitive skin", "dark circles", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "hyaluronic acid", "green tea", "dark circles"], "instruction_options": [], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40Z5RC6", "worker_id": "A2TRV8SEM003GG"}], "B095JYNXS1": [{"asin": "B095JYNXS1", "instruction": "i need a royal blue dress with draw string closure. i am a size 17.", "attributes": ["lace closure", "drawstring closure"], "options": ["color: royal blue", "size: 17"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["royal blue", "17"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LBMRE3", "worker_id": "A1NF6PELRKACS9"}], "B0014CWPQA": [{"asin": "B0014CWPQA", "instruction": "i need 12 ounce hormel spam that is cooked fully", "attributes": ["fully cooked", "shelf stable"], "options": [""], "instruction_attributes": ["fully cooked"], "instruction_options": [], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJQ6DGW", "worker_id": "A2COCSUGZV28X"}], "B07BGS3QYM": [{"asin": "B07BGS3QYM", "instruction": "i want violet and hands free walkie talkies for adults.", "attributes": ["batteries included", "hands free"], "options": ["color: m880 violet"], "instruction_attributes": ["hands free"], "instruction_options": ["m880 violet"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUE5R9S", "worker_id": "A2RBF3IIJP15IH"}], "B09RMKGTC8": [{"asin": "B09RMKGTC8", "instruction": "i want a twin xl long lasting memory form 6 in mattress for bed", "attributes": ["high density", "ready use", "long lasting", "assembly required", "box spring", "memory foam"], "options": ["size: twin xl", "style: mattress only"], "instruction_attributes": ["long lasting", "memory foam"], "instruction_options": ["twin xl"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALDTH4P", "worker_id": "A3N9ZYQAESNFQH"}], "B09QQQWN1R": [{"asin": "B09QQQWN1R", "instruction": "i am looking for women's sandals of a7-green color that are non slippable.", "attributes": ["open toe", "non slip", "ankle strap", "arch support", "high heel", "closed toe"], "options": ["color: a7-green", "size: 8.5"], "instruction_attributes": ["non slip"], "instruction_options": ["a7-green"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKSREPP", "worker_id": "A1Q8PPQQCWGY0D"}], "B01HJWC5FE": [{"asin": "B01HJWC5FE", "instruction": "i am looking for a high speed hdmi male to female cable that is 30 feet long. pick a 2 pack one.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["pattern name: 4 pack", "size: 30-feet (2-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["30-feet (2-pack)", "hdmi male to female"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8LL4C0", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B01HJWC5FE", "instruction": "i would like two packs of three foot long gold plated hdmi male to male cables.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["pattern name: 2 pack", "size: 3 feet (10 pack)", "style: hdmi male to female"], "instruction_attributes": ["gold plated"], "instruction_options": ["2 pack", "3 feet (10 pack)", "hdmi male to female"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8965A5", "worker_id": "A1WS884SI0SLO4"}], "B08X9Q5CPC": [{"asin": "B08X9Q5CPC", "instruction": "i want lundberg organic white chocolate thin stackers.", "attributes": ["certified organic", "non gmo", "chocolate covered", "gluten free"], "options": ["flavor: white chocolate lemon poppy seed"], "instruction_attributes": ["certified organic"], "instruction_options": ["white chocolate lemon poppy seed"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4DU6RT", "worker_id": "A2RBF3IIJP15IH"}], "B09SWGQL2Y": [{"asin": "B09SWGQL2Y", "instruction": "i want 1 biotin thickening herbal serum for hair growth.", "attributes": ["natural ingredients", "hair growth", "hair loss"], "options": ["color: 1 pcs"], "instruction_attributes": ["hair growth"], "instruction_options": ["1 pcs"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKP1RJPL", "worker_id": "A2RBF3IIJP15IH"}], "B00KOUK3SK": [{"asin": "B00KOUK3SK", "instruction": "i need blue and yellow headphones that have batteries included", "attributes": ["batteries included", "aaa batteries"], "options": ["color: blue | yellow", "style: dual source ir"], "instruction_attributes": ["batteries included"], "instruction_options": ["blue | yellow"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LBJRE0", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BS5LW7X": [{"asin": "B08BS5LW7X", "instruction": "i'm looking for a desktop computer with inel core core i5 10th generation.", "attributes": ["core i5", "intel core"], "options": ["graphics description: no odd", "hard disk size: 1 tb", "memory_size: 8 gb", "processor_description: 10th gen intel core i3"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["10th gen intel core i3"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXF37GX", "worker_id": "A62B826XMLK7K"}], "B08BY7S34M": [{"asin": "B08BY7S34M", "instruction": "i'm looking for electric hair clipper for men.", "attributes": ["high quality", "hair cutting"], "options": [""], "instruction_attributes": ["hair cutting"], "instruction_options": [], "assignment_id": "3IXEICO79DTUZY0BZR119DLCSYRT6T", "worker_id": "A21IUUHBSEVB56"}], "B07MZ8T6TK": [{"asin": "B07MZ8T6TK", "instruction": "i am looking for caribbean blue color non slippable silicone cases that are compatible with apple iphone.", "attributes": ["non slip", "compatible apple"], "options": ["color: caribbean blue"], "instruction_attributes": ["non slip", "compatible apple"], "instruction_options": ["caribbean blue"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3G76N7", "worker_id": "A1Q8PPQQCWGY0D"}], "B08PC3KRFT": [{"asin": "B08PC3KRFT", "instruction": "i need a slim fitting short sleeved t-shirt in copper color. pick one in xx-large tall size.", "attributes": ["slim fit", "machine wash", "short sleeve", "everyday wear"], "options": ["color: copper", "pocket description: no pocket", "size: xx-large tall"], "instruction_attributes": ["slim fit", "short sleeve"], "instruction_options": ["copper", "xx-large tall"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227KB8FO", "worker_id": "A1NF6PELRKACS9"}], "B07KXV5WKD": [{"asin": "B07KXV5WKD", "instruction": "i am interested in buying sweatpants for men which can be machine washed have navy color, and are large size.", "attributes": ["machine wash", "drawstring closure"], "options": ["color: navy", "size: large"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy", "large"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OV4OPC", "worker_id": "AJY5G987IRT25"}], "B09KQZ9GTK": [{"asin": "B09KQZ9GTK", "instruction": "i am looking for terrace garden style conditioner that are eco friendly.", "attributes": ["sulfate free", "eco friendly", "paraben free", "natural ingredients"], "options": ["size: shampoo", "style: terrace garden"], "instruction_attributes": ["eco friendly"], "instruction_options": ["terrace garden"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X028A434", "worker_id": "A1Q8PPQQCWGY0D"}], "B075DL8NTG": [{"asin": "B075DL8NTG", "instruction": "i would like a pair of small blue shorts made of nylon spandex.", "attributes": ["polyester spandex", "nylon spandex"], "options": ["color: blue", "size: small"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["blue", "small"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PO9QEO", "worker_id": "A1WS884SI0SLO4"}], "B076MH2RS8": [{"asin": "B076MH2RS8", "instruction": "i would like to purchase gramzero banana suger free fooding mix specially low calorie dessert vanilla flavor .", "attributes": ["sugar free", "low calorie", "keto friendly", "low carb", "non gmo"], "options": ["flavor name: vanilla"], "instruction_attributes": ["low carb"], "instruction_options": [], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S4YGMH", "worker_id": "A3RBCGB309WPOC"}], "B08D8D2Q1N": [{"asin": "B08D8D2Q1N", "instruction": "i'm looking for safety boots for men and women.", "attributes": ["steel toe", "rubber sole"], "options": ["color: blue", "size: 14 women | 12.5 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["blue"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW9Z8SZ", "worker_id": "A21IUUHBSEVB56"}], "B093D3GL6X": [{"asin": "B093D3GL6X", "instruction": "i need long lasting wax candles that is scented with lemon verbera", "attributes": ["long lasting", "soy wax"], "options": ["scent: lemon verbera"], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": [], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS5S9GC", "worker_id": "A2COCSUGZV28X"}], "B098SQRW4Z": [{"asin": "B098SQRW4Z", "instruction": "i would like a 32 gb ram intel i5 core desktop mini.", "attributes": ["dual band", "core i5", "intel core"], "options": ["size: 32gb ram | 1tb ssd + 1tb hdd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["32gb ram | 1tb ssd + 1tb hdd"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADNLHAW", "worker_id": "A1WS884SI0SLO4"}], "B08289BWBK": [{"asin": "B08289BWBK", "instruction": "i'm looking for a contemporary style coffee table with tempered glass.", "attributes": ["contemporary style", "tempered glass"], "options": [""], "instruction_attributes": ["contemporary style", "tempered glass"], "instruction_options": [], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70ID2CBE", "worker_id": "AR0VJ5XRG16UJ"}], "B09NPXFG3L": [{"asin": "B09NPXFG3L", "instruction": "i want to buy usb cable for fast charging iphone, and is high speed, also it should be 3ft long, while the type should be usb c.", "attributes": ["fast charging", "high speed"], "options": ["size: 3ft", "style: usb c"], "instruction_attributes": ["fast charging", "high speed"], "instruction_options": ["3ft", "usb c"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7QE3IL", "worker_id": "AJY5G987IRT25"}], "B09F5Q16WG": [{"asin": "B09F5Q16WG", "instruction": "i'm looking for high waisted denim shorts distressed jeans for women.", "attributes": ["slim fit", "button closure", "teen girls", "daily wear"], "options": ["color: (#012)khaki", "size: large"], "instruction_attributes": ["slim fit", "button closure"], "instruction_options": ["large"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HWIBPS", "worker_id": "A21IUUHBSEVB56"}], "B01326VR0U": [{"asin": "B01326VR0U", "instruction": "i want gold and jade fresh collagen eye roller serum for dark circles.", "attributes": ["dark circles", "dry skin"], "options": ["color: gold + jade, gua sha combo"], "instruction_attributes": ["dark circles"], "instruction_options": ["gold + jade, gua sha combo"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYQ4QMH", "worker_id": "A2RBF3IIJP15IH"}], "B09PH1XZG8": [{"asin": "B09PH1XZG8", "instruction": "i would like a large tops a4c4 army green short sleeve t shirt.", "attributes": ["hand wash", "short sleeve", "long sleeve", "star wars", "tumble dry", "teen girls", "daily wear"], "options": ["color: tops a4c4 army green", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["tops a4c4 army green", "large"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT39DHJ8", "worker_id": "A1WS884SI0SLO4"}], "B09KCB2HVL": [{"asin": "B09KCB2HVL", "instruction": "i am looking for a high quality waterproof makeup bag that can be cleaned easily", "attributes": ["easy clean", "high quality"], "options": [""], "instruction_attributes": ["easy clean", "high quality"], "instruction_options": [], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHTD0JT", "worker_id": "A2COCSUGZV28X"}], "B09PG34T51": [{"asin": "B09PG34T51", "instruction": "i want white wall decoration for my beauty salon.", "attributes": ["hair salon", "beauty salon"], "options": ["color: white 4", "size: 16x24 inch,(40x60cm)framed"], "instruction_attributes": ["beauty salon"], "instruction_options": ["white 4"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTQ1LPU", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B09PG34T51", "instruction": "i need some white nail polish that i would find at a beauty salon.", "attributes": ["hair salon", "beauty salon"], "options": ["color: white 5", "size: 16x24 inch,(40x60cm)framed"], "instruction_attributes": ["beauty salon"], "instruction_options": ["white 5"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP1078YLI2", "worker_id": "A2ECRNQ3X5LEXD"}], "B084WTXKYT": [{"asin": "B084WTXKYT", "instruction": "i want medium brown carlxanz hair fibers for hair loss.", "attributes": ["paraben free", "hair loss"], "options": ["color: medium brown", "size: refill 50g"], "instruction_attributes": [], "instruction_options": ["medium brown"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGFQMS5", "worker_id": "A2RBF3IIJP15IH"}], "B096V19HPV": [{"asin": "B096V19HPV", "instruction": "i am interesed in buying a 12 pack travel size storage organizer.", "attributes": ["leak proof", "travel size"], "options": ["style: 12 pack"], "instruction_attributes": ["travel size"], "instruction_options": ["12 pack"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6NKU7M", "worker_id": "AHXHM1PQTRWIQ"}], "B092VRWTC7": [{"asin": "B092VRWTC7", "instruction": "i am looking non slip vinyl acetate women walking shoe size 13.5 color grey _black_white", "attributes": ["non slip", "day comfort", "ethylene vinyl", "vinyl acetate"], "options": ["color: grey_black_white", "size: 13.5 women | 11 men"], "instruction_attributes": ["non slip", "vinyl acetate"], "instruction_options": ["grey_black_white", "13.5 women | 11 men"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7ZGURN", "worker_id": "A3N9ZYQAESNFQH"}], "B07H8KZVGS": [{"asin": "B07H8KZVGS", "instruction": "i like to get a king size bedspread with high density. pick an orange cream one.", "attributes": ["high density", "machine washable", "king size"], "options": ["color: orange cream", "size: king"], "instruction_attributes": ["high density", "king size"], "instruction_options": ["orange cream", "king"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXF77G1", "worker_id": "A1NF6PELRKACS9"}], "B09FVM644T": [{"asin": "B09FVM644T", "instruction": "i need a slim fit gray colored coat that has long sleeves. it should be in x-large size.", "attributes": ["slim fit", "loose fit", "wash cold", "long sleeve", "short sleeve", "elastic waist", "relaxed fit", "daily wear"], "options": ["color: gray", "size: x-large"], "instruction_attributes": ["slim fit", "long sleeve", "daily wear"], "instruction_options": ["gray", "x-large"], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM96V1IM", "worker_id": "A1NF6PELRKACS9"}], "B08HS8PFXK": [{"asin": "B08HS8PFXK", "instruction": "i want a black and easy to use cluster mascara wand.", "attributes": ["alcohol free", "easy use"], "options": ["color: black", "size: 10mm"], "instruction_attributes": ["easy use"], "instruction_options": ["black"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49KEDT5", "worker_id": "A2RBF3IIJP15IH"}], "B08C2BYZ12": [{"asin": "B08C2BYZ12", "instruction": "i want a white tommy hilfiger men's long sleeve button down shirt.", "attributes": ["machine wash", "button closure", "classic fit", "long sleeve"], "options": ["color: white print", "size: 3xl big"], "instruction_attributes": ["long sleeve"], "instruction_options": ["white print"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20RUZ0H", "worker_id": "A2RBF3IIJP15IH"}], "B084JQFVLX": [{"asin": "B084JQFVLX", "instruction": "i am looking for grey color 4 drawers console sofa entry table for living room", "attributes": ["wood frame", "solid wood", "living room"], "options": ["color: grey"], "instruction_attributes": ["living room"], "instruction_options": ["grey"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SZ4QTO", "worker_id": "A258PTOZ3D2TQR"}], "B09NNRN32Y": [{"asin": "B09NNRN32Y", "instruction": "i am interested in buying a blue colored noise cancelling headphones with wireless bluetooth available.", "attributes": ["hands free", "dust proof", "noise cancelling", "wireless bluetooth"], "options": ["color: blue"], "instruction_attributes": ["noise cancelling", "wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE25YGQ7", "worker_id": "AHXHM1PQTRWIQ"}], "B09C2D7VFN": [{"asin": "B09C2D7VFN", "instruction": "i would like a antique gray twin size bed.", "attributes": ["twin size", "easy assemble"], "options": ["color: antique gray+normal white(without ladder)"], "instruction_attributes": ["twin size"], "instruction_options": ["antique gray+normal white(without ladder)"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXZ7O4K", "worker_id": "A1WS884SI0SLO4"}], "B08Z8CBK34": [{"asin": "B08Z8CBK34", "instruction": "i would love to buy a heavy duty dust proof case for my iphone xs in black and gray color.", "attributes": ["heavy duty", "dust proof", "compatible apple", "case cover", "wireless charging"], "options": ["color: black & gray"], "instruction_attributes": ["heavy duty", "dust proof"], "instruction_options": ["black & gray"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOA5JGI", "worker_id": "AHXHM1PQTRWIQ"}], "B097LPYD9Z": [{"asin": "B097LPYD9Z", "instruction": "i'm looking for heels cupcake toppers for gender reveal party baby shower birthday.", "attributes": ["baby shower", "birthday party"], "options": ["style: characters | shape"], "instruction_attributes": ["baby shower"], "instruction_options": ["characters | shape"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8Z4PZC", "worker_id": "A21IUUHBSEVB56"}], "B07YJMPX7T": [{"asin": "B07YJMPX7T", "instruction": "i am looking for long sleeve x-large crew neck caramel color casual pullover", "attributes": ["loose fit", "soft material", "long sleeve", "polyester cotton", "daily wear"], "options": ["color: 01 caramel", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["01 caramel", "x-large"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1EXYGA", "worker_id": "A258PTOZ3D2TQR"}], "B09PD1GNT5": [{"asin": "B09PD1GNT5", "instruction": "i am interested in buying sandals for women which have open toe, are knee high, and are in white color, while the size should be 6.5.", "attributes": ["open toe", "knee high", "ankle strap", "steel toe", "closed toe"], "options": ["color: d white", "size: 6.5"], "instruction_attributes": ["open toe", "knee high"], "instruction_options": ["d white", "6.5"], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y6YNN0", "worker_id": "AJY5G987IRT25"}], "B085DP1X9F": [{"asin": "B085DP1X9F", "instruction": "i will like to have a synthetic sole, memory foam cc corso como women's denice, size 5.5 and tan color", "attributes": ["synthetic sole", "memory foam"], "options": ["color: tan", "size: 5.5"], "instruction_attributes": ["synthetic sole", "memory foam"], "instruction_options": ["tan", "5.5"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVEX8VA", "worker_id": "A1IL2K0ELYI090"}], "B07461B3JK": [{"asin": "B07461B3JK", "instruction": "i am looking for women's pants of wine red color with elastic waistband.", "attributes": ["moisture wicking", "elastic waistband"], "options": ["color: wine red", "size: small | 33\" inseam"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["wine red"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79TIH1B", "worker_id": "A1Q8PPQQCWGY0D"}], "B07LCFSV4H": [{"asin": "B07LCFSV4H", "instruction": "i am looking for a prom dresse with unique design. and i choose the 8\" size with plum color", "attributes": ["unique design", "drawstring closure"], "options": ["color: plum", "size: 8"], "instruction_attributes": ["unique design"], "instruction_options": ["plum", "8"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FJVELY", "worker_id": "A2COCSUGZV28X"}], "B08XNHLLBS": [{"asin": "B08XNHLLBS", "instruction": "i need a set of 4 dining chairs for my dining room. it should be light grey in color.", "attributes": ["button tufted", "easy assemble", "dining room", "living room"], "options": ["color: light grey", "size: dining chairs set of 4"], "instruction_attributes": ["dining room"], "instruction_options": ["light grey", "dining chairs set of 4"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FGUK84", "worker_id": "A1NF6PELRKACS9"}], "B07T5B23NB": [{"asin": "B07T5B23NB", "instruction": "i want a 30 ml sized travel bottle which is leak proof.", "attributes": ["leak proof", "bpa free", "easy carry", "travel bottles"], "options": ["style: 30ml | 1 ounce"], "instruction_attributes": ["leak proof", "travel bottles"], "instruction_options": ["30ml | 1 ounce"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOHX1WX", "worker_id": "A1NF6PELRKACS9"}], "B095VRQH5M": [{"asin": "B095VRQH5M", "instruction": "i want to buy workout sets outfits for women which are high waist and machine washable while their color should be grey, and with the size of x-large.", "attributes": ["butt lifting", "machine washable", "hand wash", "high waist", "daily wear"], "options": ["color: grey", "size: x-large"], "instruction_attributes": ["machine washable", "high waist"], "instruction_options": ["grey", "x-large"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCM5PII", "worker_id": "AJY5G987IRT25"}], "B093KDK7V9": [{"asin": "B093KDK7V9", "instruction": "i want a travel friendly imported zipper laundry bag for blouse, hosiery ,lingeries", "attributes": ["blouse hosiery", "imported zipper", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "imported zipper", "laundry bag"], "instruction_options": [], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXY14OS", "worker_id": "A3N9ZYQAESNFQH"}], "B013WHJDGY": [{"asin": "B013WHJDGY", "instruction": "i am looking for gluten free banana flavored original protein shake", "attributes": ["gluten free", "source vitamin"], "options": ["flavor: banana"], "instruction_attributes": ["gluten free"], "instruction_options": ["banana"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMN7VX6", "worker_id": "A258PTOZ3D2TQR"}], "B00BJKPR9Y": [{"asin": "B00BJKPR9Y", "instruction": "looking for freeze dried green fruit snacks also choose size: 0.36 ounce (pack of 24)", "attributes": ["freeze dried", "nut free", "soy free", "dairy free", "gluten free"], "options": ["flavor name: cantaloupe", "size: 0.36 ounce (pack of 24)"], "instruction_attributes": ["freeze dried"], "instruction_options": [], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQIBJR7", "worker_id": "A10OGH5CQBXL5N"}], "B019WYQM9M": [{"asin": "B019WYQM9M", "instruction": "i want a herbal magic hair loss treatment for promoting hair growth. make sure that it is non-toxic.", "attributes": ["certified organic", "non toxic", "hair growth", "hair loss"], "options": ["color: body wash 8.5 ounce", "scent name: herbal magic"], "instruction_attributes": ["non toxic", "hair loss"], "instruction_options": ["herbal magic"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57IJI9C", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B019WYQM9M", "instruction": "i want to find a 16 ounce box of certified organic hair loss treatment with an herbal magic scent.", "attributes": ["certified organic", "non toxic", "hair growth", "hair loss"], "options": ["color: 16 ounce", "scent name: herbal magic"], "instruction_attributes": ["certified organic", "hair loss"], "instruction_options": ["16 ounce", "herbal magic"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S59GMU", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B019WYQM9M", "instruction": "i used herbal magi shampoo for hair growth", "attributes": ["certified organic", "non toxic", "hair growth", "hair loss"], "options": ["color: shampoo 2 ounce", "scent name: herbal magic"], "instruction_attributes": ["hair growth"], "instruction_options": ["herbal magic"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP8ZOC0", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B019WYQM9M", "instruction": "i want laritelle organic hair loss treatment.", "attributes": ["certified organic", "non toxic", "hair growth", "hair loss"], "options": ["color: hair treatment", "scent name: diamond strong"], "instruction_attributes": ["certified organic"], "instruction_options": ["hair treatment"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5B8MQUG", "worker_id": "A2RBF3IIJP15IH"}], "B08TW3NHZG": [{"asin": "B08TW3NHZG", "instruction": "i am interested in a fresh breath spray of peppermint flavor.", "attributes": ["fresh breath", "bad breath"], "options": [""], "instruction_attributes": ["fresh breath"], "instruction_options": [], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNV6JFK", "worker_id": "AHXHM1PQTRWIQ"}], "B07TJ9XBFJ": [{"asin": "B07TJ9XBFJ", "instruction": "i need a speaker wireless with usb port in green color", "attributes": ["usb port", "wireless bluetooth"], "options": ["color: green"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["green"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIN5EFP", "worker_id": "A2Y2TURT2VEYZN"}], "B08LQXTWLX": [{"asin": "B08LQXTWLX", "instruction": "i want black skechers sport women's d'lites memory foam shoes.", "attributes": ["leather sole", "memory foam"], "options": ["color: black | multi", "size: 7"], "instruction_attributes": ["memory foam"], "instruction_options": ["black | multi"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907VRUAE", "worker_id": "A2RBF3IIJP15IH"}], "B08NVQSL1L": [{"asin": "B08NVQSL1L", "instruction": "i want an easy to use pair of moisturizing gloves to remedy rough skin.", "attributes": ["easy use", "anti aging", "high quality", "fine lines"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "31JLPPHS254FPN8LK8H48035JZ73OA", "worker_id": "A1NF6PELRKACS9"}], "B09T6LC973": [{"asin": "B09T6LC973", "instruction": "i would like a two piece hair treatment for hair growth", "attributes": ["easy use", "natural ingredients", "hair growth", "hair loss"], "options": ["color: 2pcs"], "instruction_attributes": ["hair growth"], "instruction_options": ["2pcs"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC9J0DI", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QDT3S6Y": [{"asin": "B08QDT3S6Y", "instruction": "i am looking for high power sound bar that is also dust proof.", "attributes": ["dust proof", "high power"], "options": [""], "instruction_attributes": ["dust proof", "high power"], "instruction_options": [], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NMDBKS", "worker_id": "A1NF6PELRKACS9"}], "B09PMF152X": [{"asin": "B09PMF152X", "instruction": "i'm looking for a blue power bank with a usb port and wireless charging", "attributes": ["usb port", "wireless charging"], "options": ["color: blue"], "instruction_attributes": ["usb port", "wireless charging"], "instruction_options": ["blue"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIMP29O", "worker_id": "A2Y2TURT2VEYZN"}], "B07KM6LT41": [{"asin": "B07KM6LT41", "instruction": "i want a black 1080p hd mini projector.", "attributes": ["1080p hd", "easy carry", "stereo sound"], "options": ["color: black-white"], "instruction_attributes": ["1080p hd"], "instruction_options": ["black-white"], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X012W40", "worker_id": "A2RBF3IIJP15IH"}], "B08M9M92HF": [{"asin": "B08M9M92HF", "instruction": "i would like a queen sized multicolored comforter set that's easy to clean.", "attributes": ["twin size", "easy clean"], "options": ["color: multi 47", "size: queen"], "instruction_attributes": ["easy clean"], "instruction_options": ["multi 47", "queen"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4GT8LP", "worker_id": "A1WS884SI0SLO4"}], "B09PDCS3GZ": [{"asin": "B09PDCS3GZ", "instruction": "i am interested in buying a short sleeve blouse for men which i can wash in a washing machine and it's f red in color with a size of 3x-large.", "attributes": ["light weight", "machine washable", "short sleeve", "long sleeve", "button closure"], "options": ["color: f red", "size: 3x-large"], "instruction_attributes": ["machine washable", "short sleeve"], "instruction_options": ["f red", "3x-large"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83NZIJB", "worker_id": "AJY5G987IRT25"}], "B08NP79M17": [{"asin": "B08NP79M17", "instruction": "i need a super soft throw blanket for my living room. it should be 80\"x60\" in size.", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: traditional true love tattoo", "size: 80\"x60"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["80\"x60"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3VP9Z4", "worker_id": "A1NF6PELRKACS9"}], "B071NF45HP": [{"asin": "B071NF45HP", "instruction": "i am looking for optical zoom digital camera with flexible 12\" tripod and hdmi cable", "attributes": ["optical zoom", "carrying case"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36C0R3B9", "worker_id": "A258PTOZ3D2TQR"}], "B09MTSQ9YX": [{"asin": "B09MTSQ9YX", "instruction": "i am looking for men's jacket of white-01 color having short sleeve.", "attributes": ["fleece lined", "long sleeve", "short sleeve", "daily wear"], "options": ["color: white-01", "size: 4x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["white-01"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KXA9JH", "worker_id": "A1Q8PPQQCWGY0D"}], "B002LA7WDU": [{"asin": "B002LA7WDU", "instruction": "i'm looking for a long lasting eye shadow made from natural ingredients which should be fragrance free. also, choose rose gold colored one.", "attributes": ["animal testing", "fragrance free", "long lasting", "natural ingredients", "eye shadow", "nail polish"], "options": ["color: rose gold"], "instruction_attributes": ["fragrance free", "long lasting", "natural ingredients", "eye shadow"], "instruction_options": ["rose gold"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRYHF31", "worker_id": "AR0VJ5XRG16UJ"}], "B004FOU34A": [{"asin": "B004FOU34A", "instruction": "for living room i need brushed nickel finish table lamp in black hardback shade. it should be a set of two and should include wifi smart socket.", "attributes": ["brushed nickel", "nickel finish", "living room"], "options": ["color: black hardback shade", "size: set of two - wifi smart socket included"], "instruction_attributes": ["brushed nickel", "living room"], "instruction_options": ["black hardback shade", "set of two - wifi smart socket included"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKTKSG9", "worker_id": "ASWFLI3N8X72G"}], "B09436PGKF": [{"asin": "B09436PGKF", "instruction": "can you direct me to an office desk that's easy to assemble and the size is 40x24? thank you", "attributes": ["easy assemble", "steel frame"], "options": ["color: black-new", "size: 40x24"], "instruction_attributes": ["easy assemble"], "instruction_options": ["40x24"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLO187OY", "worker_id": "A2TRV8SEM003GG"}], "B09M6BQ4GN": [{"asin": "B09M6BQ4GN", "instruction": "am trying to find an easy install floor lamps with shelves tropical green palm leaves, color 1", "attributes": ["easy install", "solid wood", "living room"], "options": ["color: color1"], "instruction_attributes": ["easy install"], "instruction_options": ["color1"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQOZ31P", "worker_id": "A1IL2K0ELYI090"}], "B085181MVT": [{"asin": "B085181MVT", "instruction": "i would like a 32 inch light good mirror that is wall mounted.", "attributes": ["wall mounted", "easy install", "living room"], "options": ["color: light gold (stainless steel frame)", "size: 32in"], "instruction_attributes": ["wall mounted"], "instruction_options": ["light gold (stainless steel frame)", "32in"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3J3YAH", "worker_id": "A1WS884SI0SLO4"}], "B08ZN23X8Q": [{"asin": "B08ZN23X8Q", "instruction": "i am looking for an easy to use facial cleaning brush that is high quality and double sided.", "attributes": ["easy use", "bpa free", "double sided", "non slip", "easy carry", "high quality"], "options": [""], "instruction_attributes": ["easy use", "double sided", "high quality"], "instruction_options": [], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I4WS14", "worker_id": "A1NF6PELRKACS9"}], "B000M51NRM": [{"asin": "B000M51NRM", "instruction": "i would like a 20 foot long 4 pack of gold plated hdmi male to male cables.", "attributes": ["high speed", "gold plated"], "options": ["pattern name: 4 pack", "size: 20 feet (single pack)", "style: hdmi male to female"], "instruction_attributes": ["gold plated"], "instruction_options": ["4 pack", "20 feet (single pack)", "hdmi male to female"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY4RJ4O", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B000M51NRM", "instruction": "i am looking for 3 feet (5 pack) size high speed hdmi cable.", "attributes": ["high speed", "gold plated"], "options": ["pattern name: 3 pack", "size: 3 feet (5 pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["3 feet (5 pack)"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5WDZUOJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B07GZK147G": [{"asin": "B07GZK147G", "instruction": "i would like to buy a 5x5 feet easy to clean grass mat for the lawn which is eco friendly.", "attributes": ["eco friendly", "high density", "easy clean"], "options": ["size: 5 x 5 feet"], "instruction_attributes": ["eco friendly", "easy clean"], "instruction_options": ["5 x 5 feet"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E24653B", "worker_id": "AHXHM1PQTRWIQ"}, {"asin": "B07GZK147G", "instruction": "i want to find a 4 x 50 foot artificial glass turf that is easy to clean.", "attributes": ["eco friendly", "high density", "easy clean"], "options": ["size: 4 x 50 feet"], "instruction_attributes": ["easy clean"], "instruction_options": ["4 x 50 feet"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODMMEW6", "worker_id": "A345TDMHP3DQ3G"}], "B07LGYG1MH": [{"asin": "B07LGYG1MH", "instruction": "i am interested in buying brownies which are plant based and gluten free, with a 4 flavor variety pack, and come in pack of 8 of 1.9 ounce.", "attributes": ["plant based", "gluten free", "non gmo", "individually wrapped", "natural ingredients"], "options": ["flavor name: 4 flavor variety pack", "size: 1.9 ounce (pack of 8)"], "instruction_attributes": ["plant based", "gluten free"], "instruction_options": ["4 flavor variety pack", "1.9 ounce (pack of 8)"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662ZTM44", "worker_id": "AJY5G987IRT25"}], "B09SPSFZ1S": [{"asin": "B09SPSFZ1S", "instruction": "i need closed toe flats that are red in a size 5.5", "attributes": ["open toe", "non slip", "hand wash", "lace closure", "high heel", "closed toe"], "options": ["color: red", "size: 5.5"], "instruction_attributes": ["closed toe"], "instruction_options": ["red", "5.5"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTOXV5W", "worker_id": "A2ECRNQ3X5LEXD"}], "B077TTY6D9": [{"asin": "B077TTY6D9", "instruction": "i need a 3x-large porg star wars t-shirt with charcoal heather 070", "attributes": ["machine washable", "machine wash", "star wars"], "options": ["color: charcoal heather 070", "size: 3x-large"], "instruction_attributes": ["star wars"], "instruction_options": ["charcoal heather 070", "3x-large"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYL36L1", "worker_id": "A2Y2TURT2VEYZN"}], "B07Y46SC5W": [{"asin": "B07Y46SC5W", "instruction": "i would like a navy men's classic fit cami.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: men", "size: x-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["navy", "men"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZWQ409", "worker_id": "A2ECRNQ3X5LEXD"}], "B077ZBM5NF": [{"asin": "B077ZBM5NF", "instruction": "i'm looking for a rejuvenating oil serum for damaged hair", "attributes": ["argan oil", "damaged hair"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "3HPZF4IVNX3FW186JO133U513MHYCC", "worker_id": "A2Y2TURT2VEYZN"}], "B08513K2H6": [{"asin": "B08513K2H6", "instruction": "i want 4 pack of old fashioned sophia italian crackers.", "attributes": ["old fashioned", "individually wrapped"], "options": ["size: 4-pack"], "instruction_attributes": ["old fashioned"], "instruction_options": ["4-pack"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCLG0E7", "worker_id": "A2RBF3IIJP15IH"}], "B096S7JQ8L": [{"asin": "B096S7JQ8L", "instruction": "i need a machine washable decorative elastic edged square fitted tablecloth fit for square table 42\"x42\"", "attributes": ["machine washable", "easy install"], "options": ["color: square tablecover 15", "size: fitted tablecolth-fit square table 42\"x42\""], "instruction_attributes": ["machine washable"], "instruction_options": ["square tablecover 15", "fitted tablecolth-fit square table 42\"x42\""], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ3MRNR", "worker_id": "A258PTOZ3D2TQR"}], "B09PFYL3TX": [{"asin": "B09PFYL3TX", "instruction": "i am looking glitter eyeshadow long lasting easy apply color #15", "attributes": ["long lasting", "easy apply", "eye shadow"], "options": ["color: color # 15", "size: 1bottle"], "instruction_attributes": ["long lasting", "easy apply", "eye shadow"], "instruction_options": ["color # 15"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ27501744P43", "worker_id": "A3N9ZYQAESNFQH"}], "B09QKVGF9R": [{"asin": "B09QKVGF9R", "instruction": "i am interested in acquiring a mattress which is fully assembled and of high density, and it should be only mattress in twin style.", "attributes": ["ready use", "fully assembled", "high density", "memory foam", "box spring"], "options": ["size: mattress only", "style: twin"], "instruction_attributes": ["fully assembled", "high density"], "instruction_options": ["mattress only", "twin"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP95AOJ", "worker_id": "AJY5G987IRT25"}], "B081RKGG84": [{"asin": "B081RKGG84", "instruction": "i need a storage case for false teeth. make sure that it is leak proof.", "attributes": ["leak proof", "non toxic", "storage case"], "options": [""], "instruction_attributes": ["leak proof", "storage case"], "instruction_options": [], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH3A4Z2", "worker_id": "A1NF6PELRKACS9"}], "B07YB4LXM7": [{"asin": "B07YB4LXM7", "instruction": "i am looking for contemporary design privacy protected panel for living room, its size should be 52\" wide by 90\" length", "attributes": ["machine washable", "contemporary design", "dining room", "living room"], "options": ["color: rvw4613", "size: 52\" w by 90\" l"], "instruction_attributes": ["contemporary design", "living room"], "instruction_options": ["52\" w by 90\" l"], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQIDHH9", "worker_id": "A258PTOZ3D2TQR"}], "B07PP7JXBM": [{"asin": "B07PP7JXBM", "instruction": "i am looking for a lavender scented foot peel mask suitable for dry skin which removes dead skin and fine lines.", "attributes": ["easy use", "tea tree", "dead skin", "fine lines", "dry skin"], "options": ["scent: lavender"], "instruction_attributes": ["dead skin", "fine lines", "dry skin"], "instruction_options": ["lavender"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTBXLNV", "worker_id": "A1V2JTEEBCXR20"}], "B08H4SXMWS": [{"asin": "B08H4SXMWS", "instruction": "i am looking for a large women's long sleeve tunic with pockets and is machine washable.", "attributes": ["light weight", "machine washable", "machine wash", "long sleeve", "button closure", "daily wear"], "options": ["color: deep green", "size: large"], "instruction_attributes": ["machine washable", "long sleeve"], "instruction_options": ["large"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYQZ6M9", "worker_id": "A1EREKSZAA9V7B"}], "B07NFRZ7RV": [{"asin": "B07NFRZ7RV", "instruction": "i am looking for x-large navy color lion king jungle trio graphic machine wash t-shirt for men", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: men", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy", "men", "x-large"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6MRB26", "worker_id": "A258PTOZ3D2TQR"}], "B08Q2WDK2B": [{"asin": "B08Q2WDK2B", "instruction": "i need a fragrance free facial wash", "attributes": ["dermatologist tested", "fragrance free", "paraben free", "cruelty free"], "options": [""], "instruction_attributes": ["fragrance free"], "instruction_options": [], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHTF0JV", "worker_id": "A2ECRNQ3X5LEXD"}], "B07R5PTBY2": [{"asin": "B07R5PTBY2", "instruction": "i'm looking for hollister festival nite men spray.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["design house"], "instruction_options": [], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY9E0US", "worker_id": "A21IUUHBSEVB56"}], "B096M5KV1H": [{"asin": "B096M5KV1H", "instruction": "i need a wall mounted white coat hook", "attributes": ["ready use", "eco friendly", "wall mounted", "space saving", "easy install"], "options": ["color: whiteblack2"], "instruction_attributes": ["wall mounted"], "instruction_options": ["whiteblack2"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95VVXQH", "worker_id": "A2ECRNQ3X5LEXD"}], "B096FM43Y4": [{"asin": "B096FM43Y4", "instruction": "i want to buy medium sized hand washable casual trousers which can be used for daily wear.", "attributes": ["wide leg", "straight leg", "loose fit", "wash cold", "hand wash", "machine wash", "high waist", "polyester spandex", "daily wear"], "options": ["color: 1b red", "size: medium"], "instruction_attributes": ["hand wash", "polyester spandex"], "instruction_options": ["medium"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG5XBGQ", "worker_id": "AHXHM1PQTRWIQ"}], "B09S8TQN8N": [{"asin": "B09S8TQN8N", "instruction": "i would like a sparkling dry moscato that is non alcoholic.", "attributes": ["non alcoholic", "artificial flavors"], "options": ["flavor name: sparkling dry moscato"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["sparkling dry moscato"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO7QC2D", "worker_id": "A1WS884SI0SLO4"}], "B09HL6VRRR": [{"asin": "B09HL6VRRR", "instruction": "i want a modern home luxe spyder height adjustable bar stool.", "attributes": ["height adjustable", "easy clean"], "options": [""], "instruction_attributes": ["height adjustable"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL2XAVG", "worker_id": "A2RBF3IIJP15IH"}], "B09QGGQ4Q6": [{"asin": "B09QGGQ4Q6", "instruction": "i want a small sized t-shirt that has long sleeves. it is for a teenage girl.", "attributes": ["loose fit", "day comfort", "hand wash", "short sleeve", "polyester spandex", "long sleeve", "teen girls"], "options": ["color: q23-orange", "size: small"], "instruction_attributes": ["long sleeve", "teen girls"], "instruction_options": ["small"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KZS7EK", "worker_id": "A1NF6PELRKACS9"}], "B09H48GXQ9": [{"asin": "B09H48GXQ9", "instruction": "i'm looking for long sleeve open front chunky knit draped sweaters.", "attributes": ["hand wash", "long sleeve", "short sleeve", "tumble dry", "daily wear"], "options": ["color: 03 # gray", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYXIHVT", "worker_id": "A21IUUHBSEVB56"}], "B09PRLRZ88": [{"asin": "B09PRLRZ88", "instruction": "i am looking for a pink colored body brush with long handle. it should suit my sensitive skin.", "attributes": ["high quality", "long handle", "sensitive skin"], "options": ["color: pink"], "instruction_attributes": ["long handle", "sensitive skin"], "instruction_options": ["pink"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQJQEKV", "worker_id": "A1NF6PELRKACS9"}], "B07PWC3T3T": [{"asin": "B07PWC3T3T", "instruction": "i am looking for a canvas giclee print art suitable for my living room . and i choose the 28\"x40\" size", "attributes": ["ready hang", "dining room", "living room"], "options": ["size: 28\"x40\""], "instruction_attributes": ["living room"], "instruction_options": ["28\"x40\""], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTWG9PH", "worker_id": "A2COCSUGZV28X"}], "B06XWJ4TZC": [{"asin": "B06XWJ4TZC", "instruction": "i am looking for a oil free face wash", "attributes": ["oil free", "fragrance free", "paraben free"], "options": [""], "instruction_attributes": ["oil free"], "instruction_options": [], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOHHTAJ", "worker_id": "A9QRQL9CFJBI7"}], "B00I4WT6QU": [{"asin": "B00I4WT6QU", "instruction": "i'm looking for a heavy duty wall mountable projection screen with ultra hd resolution. also, choose 16:9, 200\", high contrast material one,", "attributes": ["wall mounted", "ultra hd", "heavy duty"], "options": ["color: high contrast material", "size: 16:9, 200\""], "instruction_attributes": ["wall mounted", "ultra hd", "heavy duty"], "instruction_options": ["high contrast material", "16:9, 200\""], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TGKMNV", "worker_id": "AR0VJ5XRG16UJ"}], "B019IOGR4Q": [{"asin": "B019IOGR4Q", "instruction": "i would like two 100 foot long gold plated hdmi male to male cables.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 2 pack", "size: 100-feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["gold plated"], "instruction_options": ["2 pack", "100-feet (single pack)", "hdmi male to male"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95UOQX1", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B019IOGR4Q", "instruction": "i am looking for a high speed male to female hdmi cable.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 1 pack", "size: 3 feet (single pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["hdmi male to female"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODQOWEY", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B019IOGR4Q", "instruction": "i need a high speed hdmi male to female gold plated cable.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 2 pack", "size: 8-feet (4-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["hdmi male to female"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACQ9HNX", "worker_id": "A1NF6PELRKACS9"}], "B07Y375BJ7": [{"asin": "B07Y375BJ7", "instruction": "i am looking for brown color, sleeveless polyester cotton jumpsuit and size is large", "attributes": ["polyester cotton", "daily wear"], "options": ["color: print#brown", "size: large"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["large"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVO80QN", "worker_id": "A258PTOZ3D2TQR"}], "B084C131WS": [{"asin": "B084C131WS", "instruction": "i would like some aluminum alloy binoculars.", "attributes": ["easy carry", "aluminum alloy"], "options": [""], "instruction_attributes": ["aluminum alloy"], "instruction_options": [], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLQ64I3", "worker_id": "A1WS884SI0SLO4"}], "B07NMTMJNK": [{"asin": "B07NMTMJNK", "instruction": "i would like 30 x 30 x 46 cm blue ottoman with a solid wood frame.", "attributes": ["solid wood", "faux leather"], "options": ["color: blue", "size: 30x30x46cm"], "instruction_attributes": ["solid wood"], "instruction_options": ["blue", "30x30x46cm"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNCC10P", "worker_id": "A1WS884SI0SLO4"}], "B09J2T7GCT": [{"asin": "B09J2T7GCT", "instruction": "i can't find this product, please help! smart remote control, htt381 htct380 htct381 remote control replacement for office with batteries included asap, i'm waiting for your reply in minutes", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTWS7L6", "worker_id": "A15IJ20C3R4HUO"}], "B01K5SBF7I": [{"asin": "B01K5SBF7I", "instruction": "i am looking for low sugar, low calorie, gmo free, gluten free , soy free , vanilla caramel protein bars", "attributes": ["low sugar", "plant based", "low calorie", "low carb", "dairy free", "non gmo", "lactose free", "gmo free", "non dairy", "gluten free", "soy free", "keto friendly", "sugar free", "individually wrapped", "artificial flavors"], "options": ["color: vanilla caramel"], "instruction_attributes": ["low sugar", "low calorie", "gmo free", "gluten free", "soy free"], "instruction_options": ["vanilla caramel"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLWW03M", "worker_id": "AX2EWYWZM19AZ"}], "B093BKNKM3": [{"asin": "B093BKNKM3", "instruction": "i want an army green modos logicos case for apple phones.", "attributes": ["compatible apple", "hands free"], "options": ["color: armygreen(ml002)", "size: ml002"], "instruction_attributes": ["compatible apple"], "instruction_options": ["armygreen(ml002)"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3NMYRK", "worker_id": "A2RBF3IIJP15IH"}], "B07XD615H3": [{"asin": "B07XD615H3", "instruction": "i want a maui moisture shine conditioner for dry hair.", "attributes": ["coconut oil", "dry hair"], "options": ["style: conditioner"], "instruction_attributes": ["dry hair"], "instruction_options": ["conditioner"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M20N94T", "worker_id": "A2RBF3IIJP15IH"}], "B01HZ20R9Y": [{"asin": "B01HZ20R9Y", "instruction": "i want a stereo sound wired gaming headset.", "attributes": ["hands free", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJL1LBYM", "worker_id": "A2RBF3IIJP15IH"}], "B00T90UPAC": [{"asin": "B00T90UPAC", "instruction": "i want a white amanti wall mounted mirror.", "attributes": ["wall mounted", "wood frame", "white finish", "living room"], "options": ["color: sonoma white wash", "size: glass size 16x20"], "instruction_attributes": ["wall mounted"], "instruction_options": ["sonoma white wash"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPOAE6U", "worker_id": "A2RBF3IIJP15IH"}], "B00ON1HJ8S": [{"asin": "B00ON1HJ8S", "instruction": "i would like to buy a peach high 490 colored long lasting lipstick.", "attributes": ["cruelty free", "long lasting"], "options": ["color: peach high 490"], "instruction_attributes": ["long lasting"], "instruction_options": ["peach high 490"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOA6JGJ", "worker_id": "AHXHM1PQTRWIQ"}], "B08VDWHY7X": [{"asin": "B08VDWHY7X", "instruction": "i am looking for a high definition binoculars & scopes", "attributes": ["high definition", "bird watching"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYQJHDZ", "worker_id": "A9QRQL9CFJBI7"}], "B095JH58ZN": [{"asin": "B095JH58ZN", "instruction": "i need a high heel sandal of size 6.5\"", "attributes": ["open toe", "high heel"], "options": ["size: 6.5"], "instruction_attributes": ["high heel"], "instruction_options": ["6.5"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQ0N4BV", "worker_id": "A2COCSUGZV28X"}], "B09NRJKQ84": [{"asin": "B09NRJKQ84", "instruction": "i need a yellow colored slim fit t-shirt that has short sleeves.", "attributes": ["slim fit", "short sleeve", "contrast color", "regular fit", "long sleeve", "gym workout"], "options": ["color: yellow", "size: 3x-large"], "instruction_attributes": ["slim fit", "short sleeve"], "instruction_options": ["yellow"], "assignment_id": "33TIN5LC0FKDY31374RC144TX1HY9Y", "worker_id": "A1NF6PELRKACS9"}], "B09BZSMPX8": [{"asin": "B09BZSMPX8", "instruction": "i am looking for an easy to install high speed 4g lte signal booster.", "attributes": ["easy install", "high speed", "4g lte"], "options": [""], "instruction_attributes": ["easy install", "high speed", "4g lte"], "instruction_options": [], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFIP024", "worker_id": "A1EREKSZAA9V7B"}], "B08BZKS922": [{"asin": "B08BZKS922", "instruction": "i am looking for contemporary design polyester fabric storage ottoman bench with legs in white color", "attributes": ["button tufted", "contemporary design", "living room"], "options": ["color: white"], "instruction_attributes": ["contemporary design"], "instruction_options": ["white"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IUA232", "worker_id": "AX2EWYWZM19AZ"}], "B09NTCCVGX": [{"asin": "B09NTCCVGX", "instruction": "i want to buy a folding storage box ottoman which i can easily install and has faux leather, the size of it should be 60x40x40cm.", "attributes": ["non slip", "easy install", "faux leather"], "options": ["size: 60x40x40cm"], "instruction_attributes": ["easy install", "faux leather"], "instruction_options": ["60x40x40cm"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R3X7W0", "worker_id": "AJY5G987IRT25"}], "B07JMK7Q8H": [{"asin": "B07JMK7Q8H", "instruction": "i am looking for low calorie, gluten free protein smoothie squeeze pouch of variety pack with all five flavors, 4.5 ounce (pack of 9)", "attributes": ["low calorie", "soy free", "gluten free", "real fruit", "simple ingredients"], "options": ["flavor name: variety-all whey flavors", "size: 4.5 ounce (pack of 9)"], "instruction_attributes": ["low calorie", "gluten free"], "instruction_options": ["variety-all whey flavors", "4.5 ounce (pack of 9)"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTTXE5C", "worker_id": "A258PTOZ3D2TQR"}], "B09NP6YFHW": [{"asin": "B09NP6YFHW", "instruction": "i ma interested in buying a pack of 6, gluten free chocolate gems.", "attributes": ["non gmo", "gluten free", "resealable bag"], "options": ["size: 5 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["5 ounce (pack of 6)"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBIQJD9", "worker_id": "AHXHM1PQTRWIQ"}], "B089YTQ21G": [{"asin": "B089YTQ21G", "instruction": "i am looking for a hair scalp brush that stimulates hair growth and exfoliates dandruff.", "attributes": ["easy use", "hair growth", "hair removal"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIZ39TO", "worker_id": "A1NF6PELRKACS9"}], "B07ZK9F9DH": [{"asin": "B07ZK9F9DH", "instruction": "i need a 15 feet coaxial cable that is compatible with apple tv.", "attributes": ["compatible apple", "blu ray", "plug play"], "options": ["size: 15feet"], "instruction_attributes": ["compatible apple"], "instruction_options": ["15feet"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH37Z4U", "worker_id": "A1NF6PELRKACS9"}], "B08XLV5GCK": [{"asin": "B08XLV5GCK", "instruction": "i would like a cosmetic case for my nail polish.", "attributes": ["easy clean", "storage case", "nail polish"], "options": [""], "instruction_attributes": ["nail polish"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTWQ7L4", "worker_id": "A1WS884SI0SLO4"}], "B09M74H6QX": [{"asin": "B09M74H6QX", "instruction": "i am looking for a white platform bed that is easy to assemble.", "attributes": ["easy assemble", "box spring"], "options": ["color: white", "size: twin"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUXCQJI", "worker_id": "A1NF6PELRKACS9"}], "B07QW1G8MW": [{"asin": "B07QW1G8MW", "instruction": "i need some kosher sea salt", "attributes": ["kosher certified", "resealable bag", "artificial flavors"], "options": [""], "instruction_attributes": ["kosher certified"], "instruction_options": [], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DYMTOJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07N1CN1FQ": [{"asin": "B07N1CN1FQ", "instruction": "i am looking for a purple toiletry bag that is water resistant", "attributes": ["water resistant", "oral hygiene"], "options": ["color: denim purple", "size: medium"], "instruction_attributes": ["water resistant"], "instruction_options": ["denim purple"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYS19Q7", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LR2JWBG": [{"asin": "B09LR2JWBG", "instruction": "i would like a b type vr headset that has aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": ["color: b type"], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": ["b type"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC58FRKK", "worker_id": "A1WS884SI0SLO4"}], "B07MG8XM7R": [{"asin": "B07MG8XM7R", "instruction": "search for unsalted pretzels that are individually wrapped. it should also be shelf stable.", "attributes": ["individually wrapped", "shelf stable"], "options": ["flavor name: unsalted", "size: 5.99 ounce (pack of 1)"], "instruction_attributes": ["individually wrapped", "shelf stable"], "instruction_options": ["unsalted"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4WOK7H", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B07MG8XM7R", "instruction": "i need some unsalted pretzels that are individually wrapped in a pack of 25.", "attributes": ["individually wrapped", "shelf stable"], "options": ["flavor name: unsalted", "size: 6 ounce (pack of 25)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["unsalted", "6 ounce (pack of 25)"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZJ87RD", "worker_id": "A2ECRNQ3X5LEXD"}], "B0968QW5TN": [{"asin": "B0968QW5TN", "instruction": "i would like a two pack of tempered glass screen protectors", "attributes": ["high definition", "glass screen", "tempered glass"], "options": ["color: 2 pack", "size: samsung galaxy a20e"], "instruction_attributes": ["tempered glass"], "instruction_options": ["2 pack"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UXOY0N", "worker_id": "A2ECRNQ3X5LEXD"}], "B08XXFRVHV": [{"asin": "B08XXFRVHV", "instruction": "i need an all-in-one cleanser that is dermatologist tested.", "attributes": ["dermatologist tested", "easy carry"], "options": ["style: all-in-one cleanser"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["all-in-one cleanser"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH3B4Z3", "worker_id": "A1NF6PELRKACS9"}], "B08H6P5677": [{"asin": "B08H6P5677", "instruction": "i am looking for some gluten free pudina party flavored puffed snacks.", "attributes": ["gluten free", "natural flavors"], "options": ["flavor: pudina party"], "instruction_attributes": ["gluten free"], "instruction_options": ["pudina party"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3RAD0RR", "worker_id": "A1EREKSZAA9V7B"}], "B08JJ8Z6ZQ": [{"asin": "B08JJ8Z6ZQ", "instruction": "i am looking for a pair of women's size 11 sandals with arch support.", "attributes": ["open toe", "closed toe", "arch support"], "options": ["color: blue", "size: 11"], "instruction_attributes": ["arch support"], "instruction_options": ["11"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM8WZHJ", "worker_id": "A1EREKSZAA9V7B"}], "B07NPG61K4": [{"asin": "B07NPG61K4", "instruction": "i would like a 24 inch dark blonde mix hair extension.", "attributes": ["easy apply", "hair extensions", "synthetic hair"], "options": ["color: dark blonde mix bleach blonde", "size: 24 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["dark blonde mix bleach blonde", "24 inch"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFV50TZ", "worker_id": "A1WS884SI0SLO4"}], "B09Q93F425": [{"asin": "B09Q93F425", "instruction": "i am looking for a green colored high definition tablet pc.", "attributes": ["high definition", "aluminum alloy"], "options": ["color: green", "size: european standard"], "instruction_attributes": ["high definition"], "instruction_options": ["green"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQJRKE2", "worker_id": "A1NF6PELRKACS9"}], "B09MDH6FV2": [{"asin": "B09MDH6FV2", "instruction": "i am looking for golden tooth hygiene kit made up of stainless steel.", "attributes": ["high quality", "easy clean", "easy use", "storage case", "stainless steel", "fresh breath"], "options": ["color: golden"], "instruction_attributes": ["stainless steel"], "instruction_options": ["golden"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEMMQ82", "worker_id": "A3FG5PQHG5AH3Y"}], "B002XULCB6": [{"asin": "B002XULCB6", "instruction": "i'm looking for a ready to drink protein shake which should be free from gluten and has low sugar and fat. also choose strawberry cream one.", "attributes": ["protein serving", "keto friendly", "low sugar", "low fat", "high protein", "gluten free"], "options": ["style: strawberry cream"], "instruction_attributes": ["low sugar", "low fat", "gluten free"], "instruction_options": ["strawberry cream"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJYRXRGG", "worker_id": "AR0VJ5XRG16UJ"}], "B07ZCK7PXZ": [{"asin": "B07ZCK7PXZ", "instruction": "i am interested in a 8 by 6ft digital photography background", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 8x6ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["8x6ft"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UHIQQI9", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QSBH418": [{"asin": "B09QSBH418", "instruction": "i am looking for some high quality reusable spray bottles that are easy to clean.", "attributes": ["non toxic", "easy clean", "high quality", "fine mist", "travel bottles"], "options": [""], "instruction_attributes": ["easy clean", "high quality"], "instruction_options": [], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI78JZGK", "worker_id": "A1EREKSZAA9V7B"}], "B07TTLSPTW": [{"asin": "B07TTLSPTW", "instruction": "i want 24\" x 24\" pink purple throw pillow cover for living room sofa", "attributes": ["machine washable", "dining room", "living room"], "options": ["color: pink purple", "size: 24\"x24\""], "instruction_attributes": ["living room"], "instruction_options": ["pink purple", "24\"x24\""], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1IN80L", "worker_id": "ASWFLI3N8X72G"}, {"asin": "B07TTLSPTW", "instruction": "i want to find 24x24 inch dark blue decorative pillow covers that i can use in my living room.", "attributes": ["machine washable", "dining room", "living room"], "options": ["color: dark blue", "size: 24\"x24\""], "instruction_attributes": ["living room"], "instruction_options": ["dark blue", "24\"x24\""], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUJRZVL", "worker_id": "A345TDMHP3DQ3G"}], "B09RWHH1TF": [{"asin": "B09RWHH1TF", "instruction": "i want to buy a cabinet which i can put in living room and it's easy to clean, while it's color should be light brown.", "attributes": ["white item", "easy clean", "living room", "dining room"], "options": ["color: light brown"], "instruction_attributes": ["easy clean", "living room"], "instruction_options": ["light brown"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLO1Y7OO", "worker_id": "AJY5G987IRT25"}], "B09NLTFT8R": [{"asin": "B09NLTFT8R", "instruction": "i need wireless bluetooth noise cancelling headphone in black 2 color", "attributes": ["noise cancelling", "wireless bluetooth"], "options": ["color: black 2"], "instruction_attributes": ["noise cancelling", "wireless bluetooth"], "instruction_options": ["black 2"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTWF9PG", "worker_id": "ASWFLI3N8X72G"}], "B005CN6ORI": [{"asin": "B005CN6ORI", "instruction": "looking for long-wear eyeliner that is easy to apply also choose barrow street", "attributes": ["easy apply", "long lasting"], "options": ["color: barrow street"], "instruction_attributes": ["easy apply"], "instruction_options": ["barrow street"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZPR1YQ", "worker_id": "A10OGH5CQBXL5N"}], "B078TL8M4B": [{"asin": "B078TL8M4B", "instruction": "i want double sided throw pillow cover in blue mustard color.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: blue mustard", "size: 36\" x 16\""], "instruction_attributes": ["double sided"], "instruction_options": ["blue mustard"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL32D7QT", "worker_id": "A1NF6PELRKACS9"}], "B09L7X5B9P": [{"asin": "B09L7X5B9P", "instruction": "i need a laptop with intel quad core i5 processor. it should also have 8gb ddr4 ram and 512 gb pcie ssd.", "attributes": ["core i5", "intel core", "quad core"], "options": ["capacity: 8gb ddr4 ram, 512gb pcie ssd"], "instruction_attributes": ["core i5", "intel core", "quad core"], "instruction_options": ["8gb ddr4 ram, 512gb pcie ssd"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRYL3FT", "worker_id": "ASWFLI3N8X72G"}], "B08H1RRNGK": [{"asin": "B08H1RRNGK", "instruction": "i need black hair cutting shears", "attributes": ["easy clean", "high quality", "hair cutting"], "options": ["color: waterproof black"], "instruction_attributes": ["hair cutting"], "instruction_options": ["waterproof black"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCLLE0Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B08H12XR6B": [{"asin": "B08H12XR6B", "instruction": "i'm looking for professional hair cutting barber scissors.", "attributes": ["easy use", "high quality", "stainless steel", "hair cutting"], "options": ["color: silver"], "instruction_attributes": ["easy use", "hair cutting"], "instruction_options": ["silver"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQGA91D", "worker_id": "A21IUUHBSEVB56"}], "B01HJWDJG8": [{"asin": "B01HJWDJG8", "instruction": "i want to buy a male to male hdmi cable which supports high speed data transfer. it would be good if it is gold plated.", "attributes": ["high speed", "gold plated"], "options": ["color: 10 pack", "size: 8 feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["10 pack"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80GUQ1W", "worker_id": "AHXHM1PQTRWIQ"}], "B000IZ8KZ4": [{"asin": "B000IZ8KZ4", "instruction": "i would like anti-dandruff shampoo that is tea tree.", "attributes": ["plant based", "tea tree"], "options": ["style: anti-dandruff"], "instruction_attributes": ["tea tree"], "instruction_options": ["anti-dandruff"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL7TAE9", "worker_id": "A1WS884SI0SLO4"}], "B0999FNKDM": [{"asin": "B0999FNKDM", "instruction": "i need memory foam slippers that are black in a size 11-11.5", "attributes": ["open toe", "unique design", "arch support", "memory foam", "rubber sole"], "options": ["color: black", "size: 11-11.5"], "instruction_attributes": ["memory foam"], "instruction_options": ["black", "11-11.5"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1PNITD", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CTC8F3F": [{"asin": "B07CTC8F3F", "instruction": "i would like a large champagne colored shower cap for natural hair.", "attributes": ["easy use", "natural hair", "dry hair"], "options": ["color: champagne", "size: large"], "instruction_attributes": ["natural hair"], "instruction_options": ["champagne", "large"], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPWIE0KT", "worker_id": "A1WS884SI0SLO4"}], "B07CKMBDQQ": [{"asin": "B07CKMBDQQ", "instruction": "i would like a turquoise makeup crayon that is fragrance free.", "attributes": ["animal testing", "dermatologist tested", "fragrance free", "non toxic", "sensitive skin"], "options": ["color: turquoise"], "instruction_attributes": ["fragrance free"], "instruction_options": ["turquoise"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP2UXTV", "worker_id": "A1WS884SI0SLO4"}], "B08DYCQL3M": [{"asin": "B08DYCQL3M", "instruction": "i would like almond butter that is keto friendly and comes in a gift box", "attributes": ["plant based", "low sugar", "gluten free", "soy free", "keto friendly", "dairy free", "natural flavors"], "options": ["flavor name: gift box", "size: 11 ounce (pack of 6)"], "instruction_attributes": ["keto friendly"], "instruction_options": ["gift box"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E050X7G", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KFHH7RX": [{"asin": "B07KFHH7RX", "instruction": "i want a morden art paint throw pillow cover size 20\"*20\" color 02", "attributes": ["eco friendly", "living room"], "options": ["color: color 02", "size: 20\"x20\""], "instruction_attributes": ["living room"], "instruction_options": ["color 02", "20\"x20\""], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI71KQYB", "worker_id": "A3N9ZYQAESNFQH"}], "B089SXR1ZX": [{"asin": "B089SXR1ZX", "instruction": "i need high waisted grey pants.", "attributes": ["high waist", "tummy control", "relaxed fit", "daily wear"], "options": ["color: deep grey", "fit type: 29'' inseam(petitie)", "size: small tall"], "instruction_attributes": ["high waist"], "instruction_options": ["deep grey"], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH4IH6T", "worker_id": "A2ECRNQ3X5LEXD"}], "B08XJWLLKQ": [{"asin": "B08XJWLLKQ", "instruction": "i am looking for a green tea detox & repair shampoo", "attributes": ["green tea", "dry hair"], "options": ["style name: detox & repair shampoo"], "instruction_attributes": ["green tea"], "instruction_options": ["detox & repair shampoo"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8KYNZ9", "worker_id": "A9QRQL9CFJBI7"}], "B0734476MY": [{"asin": "B0734476MY", "instruction": "i would like a king sized grey umbria daybed with a box spring.", "attributes": ["box spring", "faux leather", "memory foam"], "options": ["color: grey (faux leather)", "size: king", "style: umbria (daybed)"], "instruction_attributes": ["box spring"], "instruction_options": ["grey (faux leather)", "king", "umbria (daybed)"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHWA88SA", "worker_id": "A1WS884SI0SLO4"}], "B07RTBG8ZQ": [{"asin": "B07RTBG8ZQ", "instruction": "i want a white anferstore simple modern coffee table for my living room.", "attributes": ["easy assemble", "coated steel", "steel frame", "solid wood", "living room"], "options": ["color: white"], "instruction_attributes": ["living room"], "instruction_options": ["white"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H7RU8A", "worker_id": "A2RBF3IIJP15IH"}], "B088JVB7SD": [{"asin": "B088JVB7SD", "instruction": "get me a ready to eat cheese popcorn bag.", "attributes": ["ready eat", "0g trans"], "options": [""], "instruction_attributes": ["ready eat"], "instruction_options": [], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK4976AM", "worker_id": "A1NF6PELRKACS9"}], "B0744K87NJ": [{"asin": "B0744K87NJ", "instruction": "i am interested in buying a steel bed frame with memory foam.", "attributes": ["memory foam", "coated steel", "steel frame"], "options": [""], "instruction_attributes": ["memory foam", "steel frame"], "instruction_options": [], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWQ6520", "worker_id": "AHXHM1PQTRWIQ"}], "B09SDDHQMW": [{"asin": "B09SDDHQMW", "instruction": "i want a high heel open toe pink color women shoe with ankel strap size :4.5 wide", "attributes": ["open toe", "high heel", "closed toe", "ankle strap"], "options": ["color: a1 - pink", "size: 4.5 wide"], "instruction_attributes": ["open toe", "high heel"], "instruction_options": ["a1 - pink", "4.5 wide"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VNT60T", "worker_id": "A3N9ZYQAESNFQH"}], "B08WYP4H2J": [{"asin": "B08WYP4H2J", "instruction": "i am looking for gluten free protein granola for my keto diet", "attributes": ["grain free", "gmo free", "low sugar", "keto friendly", "high protein", "non gmo", "gluten free"], "options": [""], "instruction_attributes": ["keto friendly", "gluten free"], "instruction_options": [], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR6NA0R", "worker_id": "A2COCSUGZV28X"}], "B07H5VZG6M": [{"asin": "B07H5VZG6M", "instruction": "i would like a refurbished laser printer", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCV765H", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GSRNX97": [{"asin": "B07GSRNX97", "instruction": "i am in need of a button tufted sofa for my living room. it should be grey in color.", "attributes": ["button tufted", "high density", "assembly required", "living room"], "options": ["color: gery"], "instruction_attributes": ["button tufted", "living room"], "instruction_options": ["gery"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9WU78L", "worker_id": "A1NF6PELRKACS9"}], "B00AB0MC9Q": [{"asin": "B00AB0MC9Q", "instruction": "i would like a bronze finish table lamp", "attributes": ["heavy duty", "coated steel", "bronze finish"], "options": [""], "instruction_attributes": ["bronze finish"], "instruction_options": [], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK49AA6T", "worker_id": "A2ECRNQ3X5LEXD"}], "B08K4GFDTG": [{"asin": "B08K4GFDTG", "instruction": "i am interested in highly pigmented eyeshadow", "attributes": ["highly pigmented", "long lasting", "easy carry", "rose gold", "eye shadow"], "options": [""], "instruction_attributes": ["highly pigmented"], "instruction_options": [], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8RA1SKC", "worker_id": "A2ECRNQ3X5LEXD"}], "B097DZZXGX": [{"asin": "B097DZZXGX", "instruction": "i am interested in buying a rustic brown entertainment center with a steel frame for the living room.", "attributes": ["steel frame", "living room"], "options": ["color: rustic brown"], "instruction_attributes": ["steel frame", "living room"], "instruction_options": ["rustic brown"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q6FGWB", "worker_id": "AHXHM1PQTRWIQ"}], "B07MCH9HPB": [{"asin": "B07MCH9HPB", "instruction": "i am searching for cupcake picks for a birthday party.", "attributes": ["baby shower", "birthday cake", "cupcake picks", "birthday party"], "options": [""], "instruction_attributes": ["cupcake picks", "birthday party"], "instruction_options": [], "assignment_id": "3L4D84MILA2GIKONJGE14YNT3AKJHJ", "worker_id": "A1NF6PELRKACS9"}], "B09N3J4LB9": [{"asin": "B09N3J4LB9", "instruction": "i'm looking for a mini display port adapter with ultra hd high resolution feature. also, choose 0.65 ft one.", "attributes": ["high resolution", "ultra hd"], "options": ["size: 0.65ft"], "instruction_attributes": ["high resolution", "ultra hd"], "instruction_options": ["0.65ft"], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FLS4UA", "worker_id": "AR0VJ5XRG16UJ"}], "B08J4F7S9V": [{"asin": "B08J4F7S9V", "instruction": "i'm looking for screen protection for apple iphone 12.", "attributes": ["glass screen", "tempered glass"], "options": [""], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": [], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRVRBZF", "worker_id": "A21IUUHBSEVB56"}], "B0032HM6JG": [{"asin": "B0032HM6JG", "instruction": "i am looking for a noise cancelling headset.", "attributes": ["noise cancelling", "hands free"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UT51GW", "worker_id": "A1Q8PPQQCWGY0D"}], "B09MVQ7B58": [{"asin": "B09MVQ7B58", "instruction": "i need non-slip lack pillow slippers that is suitable for pool bathing . and i choose the f size with green color", "attributes": ["anti slip", "quick drying", "open toe", "non slip"], "options": ["color: green", "size: f"], "instruction_attributes": ["anti slip"], "instruction_options": ["green", "f"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVKS1P0", "worker_id": "A2COCSUGZV28X"}], "B084ZT7Q8H": [{"asin": "B084ZT7Q8H", "instruction": "i'm looking for a full size heavy duty bed frame.", "attributes": ["heavy duty", "king size", "box spring", "storage space"], "options": ["size: full"], "instruction_attributes": ["heavy duty"], "instruction_options": ["full"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQEQKV4", "worker_id": "A3MNXK3VDK37SN"}], "B005LURDJK": [{"asin": "B005LURDJK", "instruction": "i need some fat free popsicles", "attributes": ["fat free", "low calorie", "real fruit"], "options": [""], "instruction_attributes": ["fat free"], "instruction_options": [], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FL53DI", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GDL1MDQ": [{"asin": "B07GDL1MDQ", "instruction": "i would like a women's medium sized slate gray t shirt made from heather cotton.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: slate", "fit type: women", "size: medium"], "instruction_attributes": ["heathers cotton", "cotton heather"], "instruction_options": ["slate", "women", "medium"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ57EKC9", "worker_id": "A1WS884SI0SLO4"}], "B08LN9F4NK": [{"asin": "B08LN9F4NK", "instruction": "i am looking for a multi 6 color super soft throws", "attributes": ["super soft", "living room"], "options": ["color: multi 6", "size: king"], "instruction_attributes": ["super soft"], "instruction_options": ["multi 6"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVEZ8VC", "worker_id": "A9QRQL9CFJBI7"}], "B09PRFGCN3": [{"asin": "B09PRFGCN3", "instruction": "i am looking for a teeth whitening toothpaste in b color. it should be for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth", "bad breath"], "options": ["color: b"], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": ["b"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCV856H", "worker_id": "A1NF6PELRKACS9"}], "B08Y924NQ6": [{"asin": "B08Y924NQ6", "instruction": "i need some x-large dark blue jeans that are straight leg/", "attributes": ["straight leg", "wide leg", "hand wash", "high waist"], "options": ["color: k-dark blue", "size: x-large"], "instruction_attributes": ["straight leg"], "instruction_options": ["k-dark blue", "x-large"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0RS8JR", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZWC2S7G": [{"asin": "B07ZWC2S7G", "instruction": "i want a 2.5 pound pack of sugar free candies.", "attributes": ["sugar free", "nut free", "low calorie", "soy free", "dairy free", "gluten free", "artificial colors"], "options": ["size: 2.5 pound (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["2.5 pound (pack of 1)"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSEOCWY", "worker_id": "A1NF6PELRKACS9"}], "B07H9TZL3Q": [{"asin": "B07H9TZL3Q", "instruction": "i am looking for an easy to use hair dye with natural ingredients.", "attributes": ["easy use", "natural ingredients", "hair dye", "hair salon"], "options": [""], "instruction_attributes": ["easy use", "natural ingredients", "hair dye"], "instruction_options": [], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q7RKDA", "worker_id": "A1NF6PELRKACS9"}], "B00VXQGY1Y": [{"asin": "B00VXQGY1Y", "instruction": "i would like a 9 ounce tub of non gmo grass fed ghee.", "attributes": ["grass fed", "lactose free", "old fashioned", "shelf stable", "ready eat", "non gmo", "gluten free"], "options": ["size: 9 ounce (pack of 1)"], "instruction_attributes": ["grass fed", "non gmo"], "instruction_options": ["9 ounce (pack of 1)"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYQMDHY", "worker_id": "A1WS884SI0SLO4"}], "B002GVJZS4": [{"asin": "B002GVJZS4", "instruction": "i would like to buy kosher certified greek yogurt.", "attributes": ["kosher certified", "non gmo"], "options": [""], "instruction_attributes": ["kosher certified"], "instruction_options": [], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZSM50G", "worker_id": "AHXHM1PQTRWIQ"}], "B00YZ56PGY": [{"asin": "B00YZ56PGY", "instruction": "i need a sleeveless hem that is machine washable . and i choose the 3x size with grey mix color", "attributes": ["machine wash", "wash cold", "tumble dry"], "options": ["color: grey mix", "size: 3x"], "instruction_attributes": ["machine wash"], "instruction_options": ["grey mix", "3x"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X41CH08", "worker_id": "A2COCSUGZV28X"}], "B097T5SF5B": [{"asin": "B097T5SF5B", "instruction": "i want a loft bed for a dorm that saves space.", "attributes": ["space saving", "box spring"], "options": [""], "instruction_attributes": ["space saving"], "instruction_options": [], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TGOMNZ", "worker_id": "A1NF6PELRKACS9"}], "B004225TZS": [{"asin": "B004225TZS", "instruction": "i would like a 32 ounce bag of oatmeal that is resealable and has a good protein serving.", "attributes": ["protein serving", "dietary fiber"], "options": ["size: 32 ounce (pack of 4)", "style: resealable"], "instruction_attributes": ["protein serving"], "instruction_options": ["32 ounce (pack of 4)", "resealable"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLQOI4Z", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B004225TZS", "instruction": "i am looking for a bulk bag of protein serving rolled oats.", "attributes": ["protein serving", "dietary fiber"], "options": ["size: 16 ounce (pack of 1)", "style: bulk bag"], "instruction_attributes": ["protein serving"], "instruction_options": ["bulk bag"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTPZ5VA", "worker_id": "A1EREKSZAA9V7B"}], "B088T329M3": [{"asin": "B088T329M3", "instruction": "i am looking for an easy to use makeup lip brush.", "attributes": ["easy apply", "easy carry", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V7H2UX", "worker_id": "A1EREKSZAA9V7B"}], "B093SZ9BGG": [{"asin": "B093SZ9BGG", "instruction": "i'm looking for a pair of mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UU1G19", "worker_id": "A2JP9IKRHNLRPI"}], "B074PY2PSC": [{"asin": "B074PY2PSC", "instruction": "i am looking for grey-1 color women's t-shirt that are machine washable.", "attributes": ["wash cold", "machine wash", "polyester cotton", "dry clean", "tumble dry"], "options": ["color: grey-1", "size: 3x"], "instruction_attributes": ["machine wash"], "instruction_options": ["grey-1"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JE5FSI", "worker_id": "A1Q8PPQQCWGY0D"}], "B086V49TW3": [{"asin": "B086V49TW3", "instruction": "i am looking for a red 40 foot long gold plated hdmi cable.", "attributes": ["blu ray", "high speed", "ultra hd", "gold plated"], "options": ["color: red", "number of items: 1", "size: 40 feet"], "instruction_attributes": ["gold plated"], "instruction_options": ["red", "40 feet"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EHHSWF", "worker_id": "A1EREKSZAA9V7B"}], "B08HRS8TLC": [{"asin": "B08HRS8TLC", "instruction": "i am looking for an anti-aging facial roller.", "attributes": ["anti aging", "fine lines", "dark circles"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSM82QP", "worker_id": "AJDQGOTMB2D80"}], "B08DJYSQCS": [{"asin": "B08DJYSQCS", "instruction": "i would like a birch bar cabinet for the dining room", "attributes": ["coated steel", "dining room"], "options": ["color: birch", "style: bar cabinet"], "instruction_attributes": ["dining room"], "instruction_options": ["birch", "bar cabinet"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80GQQ1S", "worker_id": "A1WS884SI0SLO4"}], "B094J65TJM": [{"asin": "B094J65TJM", "instruction": "i'm looking for korean roasted job's tears powder.", "attributes": ["dietary fiber", "natural ingredients"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFJXVMW", "worker_id": "A21IUUHBSEVB56"}], "B07KDMD6FD": [{"asin": "B07KDMD6FD", "instruction": "i would like a faux fur sleeveless jacket, also, pick the white color", "attributes": ["wash cold", "hand wash", "faux fur"], "options": ["color: white", "size: small"], "instruction_attributes": ["faux fur"], "instruction_options": ["white"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLW630Z", "worker_id": "A2TRV8SEM003GG"}], "B07KYWGP65": [{"asin": "B07KYWGP65", "instruction": "i am looking for long lasting deep color colorstay concealer", "attributes": ["long lasting", "high quality", "dark circles"], "options": ["color: deep"], "instruction_attributes": ["long lasting"], "instruction_options": ["deep"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB44QYXZ", "worker_id": "A258PTOZ3D2TQR"}], "B07Q4NG5X8": [{"asin": "B07Q4NG5X8", "instruction": "i am looking to buy a 2-pack long lasting wall scones which is easy to assemble.", "attributes": ["easy assemble", "long lasting"], "options": ["size: 2-pack"], "instruction_attributes": ["easy assemble", "long lasting"], "instruction_options": ["2-pack"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21QQFQZ", "worker_id": "AHXHM1PQTRWIQ"}], "B07SVPKBZK": [{"asin": "B07SVPKBZK", "instruction": "i am looking for ivory color living room rug of size 2' x 5'", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: light grey | ivory", "size: 2' x 5'"], "instruction_attributes": ["living room"], "instruction_options": ["light grey | ivory", "2' x 5'"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X9QPG3", "worker_id": "A258PTOZ3D2TQR"}], "B06XSH16S8": [{"asin": "B06XSH16S8", "instruction": "get me a shelf stable snack mix. pick the honey cheddar flavor.", "attributes": ["shelf stable", "kosher certified", "non gmo"], "options": ["flavor name: honey cheddar snack mix", "size: 2 28oz"], "instruction_attributes": ["shelf stable"], "instruction_options": ["honey cheddar snack mix"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADLBWVO", "worker_id": "A1NF6PELRKACS9"}], "B08XJVTCJ4": [{"asin": "B08XJVTCJ4", "instruction": "i am looking for high quality 15 inch hair extensions.", "attributes": ["high quality", "hair extensions"], "options": ["color: #12p613 golden brown to blonde", "size: 15 inch"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["15 inch"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE256GQF", "worker_id": "A1EREKSZAA9V7B"}], "B07QQBM12P": [{"asin": "B07QQBM12P", "instruction": "i want black birthday cupcake picks.", "attributes": ["cupcake picks", "birthday party"], "options": ["color: black"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["black"], "assignment_id": "3HPZF4IVNX3FW186JO133U513MHCYQ", "worker_id": "A2RBF3IIJP15IH"}], "B08BVRNMP5": [{"asin": "B08BVRNMP5", "instruction": "i am looking for men's green tea shampoo and conditioner.", "attributes": ["green tea", "tea tree", "dry skin", "hair growth"], "options": [""], "instruction_attributes": ["green tea"], "instruction_options": [], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTXI4ED", "worker_id": "A1EREKSZAA9V7B"}], "B08C6ZTZPN": [{"asin": "B08C6ZTZPN", "instruction": "i am interested in buying a power amplifier with wireless capabilities and stereo sound.", "attributes": ["power amplifier", "stereo sound"], "options": [""], "instruction_attributes": ["power amplifier", "stereo sound"], "instruction_options": [], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79MNQKS", "worker_id": "AHXHM1PQTRWIQ"}], "B09P8NMV5M": [{"asin": "B09P8NMV5M", "instruction": "i need long lasting lipstick in the color b", "attributes": ["long lasting", "nail art"], "options": ["color: b"], "instruction_attributes": ["long lasting"], "instruction_options": ["b"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AN3UYZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B004DIJLHI": [{"asin": "B004DIJLHI", "instruction": "i would like to purchase a 3.3 fl oz, long lasting men's perfume.", "attributes": ["design house", "long lasting"], "options": ["size: 3.3 fl oz (pack of 1)"], "instruction_attributes": ["long lasting"], "instruction_options": ["3.3 fl oz (pack of 1)"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I4A1SR", "worker_id": "A114NK7T5673GK"}], "B07NNS9FL8": [{"asin": "B07NNS9FL8", "instruction": "looking for hand painted multicolor flat candle", "attributes": ["hand painted", "easy assemble"], "options": ["color: multicolor"], "instruction_attributes": ["hand painted"], "instruction_options": ["multicolor"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LMKI55", "worker_id": "A10OGH5CQBXL5N"}], "B0769XY12N": [{"asin": "B0769XY12N", "instruction": "i am looking for 3.88 ounce body wash bar for sensitive skin.", "attributes": ["oil free", "eco friendly", "cruelty free", "natural ingredients", "sensitive skin", "dry skin"], "options": ["size: 3.88 ounce (pack of 1)"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["3.88 ounce (pack of 1)"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9EJ2VF", "worker_id": "AJDQGOTMB2D80"}], "B07VBQJT5G": [{"asin": "B07VBQJT5G", "instruction": "i'm looking for brushes set for eye shadow foundation cosmetic tools.", "attributes": ["easy use", "eye shadow"], "options": [""], "instruction_attributes": ["eye shadow"], "instruction_options": [], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79TSH1L", "worker_id": "A21IUUHBSEVB56"}], "B07K2WVKGD": [{"asin": "B07K2WVKGD", "instruction": "i'm looking for a high definition surveillance camera with 1080p hd resolution.", "attributes": ["1080p hd", "high definition"], "options": [""], "instruction_attributes": ["1080p hd", "high definition"], "instruction_options": [], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB44JYXS", "worker_id": "AR0VJ5XRG16UJ"}], "B09JWMNJGF": [{"asin": "B09JWMNJGF", "instruction": "i am looking for high quality toothbrush containers.", "attributes": ["high quality", "quality materials", "dry hair"], "options": [""], "instruction_attributes": ["high quality", "quality materials"], "instruction_options": [], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG5ABG3", "worker_id": "AK3JMCIGU8MLU"}], "B09MD8DZR1": [{"asin": "B09MD8DZR1", "instruction": "i am looking for a pair of dark blue noise cancelling wireless bluetooth earbuds.", "attributes": ["noise cancelling", "wireless bluetooth"], "options": ["color: dark blue"], "instruction_attributes": ["noise cancelling", "wireless bluetooth"], "instruction_options": ["dark blue"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYQ76MH", "worker_id": "A1EREKSZAA9V7B"}], "B0791WCX84": [{"asin": "B0791WCX84", "instruction": "i would like sunflower butter and chocolate protein bars that are high protein.", "attributes": ["plant based", "soy free", "certified organic", "high protein", "non gmo", "gluten free"], "options": ["flavor name: sunflower butter + chocolate"], "instruction_attributes": ["high protein"], "instruction_options": ["sunflower butter + chocolate"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKONWF07", "worker_id": "A1WS884SI0SLO4"}], "B09T79733X": [{"asin": "B09T79733X", "instruction": "i need an easy to clean tablecloth that is the color of wood", "attributes": ["easy clean", "heavy duty", "faux leather"], "options": ["color: wood grain7"], "instruction_attributes": ["easy clean"], "instruction_options": ["wood grain7"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATAL378", "worker_id": "A2ECRNQ3X5LEXD"}], "B095NYGCW5": [{"asin": "B095NYGCW5", "instruction": "i'm looking for a heavy duty twin size bunk bed made from solid wood with good storage space for space saving. also, choose white colored one.", "attributes": ["space saving", "twin size", "heavy duty", "white item", "solid wood", "storage space"], "options": ["color: white"], "instruction_attributes": ["space saving", "twin size", "heavy duty", "solid wood", "storage space"], "instruction_options": ["white"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3NYYRW", "worker_id": "AR0VJ5XRG16UJ"}], "B07WLS7V2C": [{"asin": "B07WLS7V2C", "instruction": "i would like anti slip boots that are navy", "attributes": ["anti slip", "non slip", "rubber sole"], "options": ["color: navy blue", "size: 10.5women | 9men(10.47inch)"], "instruction_attributes": ["anti slip"], "instruction_options": ["navy blue"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6I0VE3", "worker_id": "A2ECRNQ3X5LEXD"}], "B093QDWQQR": [{"asin": "B093QDWQQR", "instruction": "i am looking for classic fit women's tee shirts of dark gray3 color.", "attributes": ["light weight", "short sleeve", "classic fit"], "options": ["color: dark gray3", "size: x-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["dark gray3"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIELBRZ", "worker_id": "A1Q8PPQQCWGY0D"}], "B09H5VFZGX": [{"asin": "B09H5VFZGX", "instruction": "i am looking for a black pu leather desk organizer that is non slip.", "attributes": ["non slip", "pu leather"], "options": ["color: black"], "instruction_attributes": ["non slip", "pu leather"], "instruction_options": ["black"], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYQGCGH", "worker_id": "AHU9OLV0YKIIW"}], "B072NHJCDS": [{"asin": "B072NHJCDS", "instruction": "i need a pack of 3 natural labs 8 oz green color travel bottles", "attributes": ["leak proof", "bpa free", "non toxic", "long lasting", "travel bottles"], "options": ["color: green", "size: pack of 3"], "instruction_attributes": ["travel bottles"], "instruction_options": ["green", "pack of 3"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X029C438", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B072NHJCDS", "instruction": "i need a six pack of leak proof, bpa free travel bottles. look for the amber colored ones.", "attributes": ["leak proof", "bpa free", "non toxic", "long lasting", "travel bottles"], "options": ["color: amber", "size: pack of 6"], "instruction_attributes": ["leak proof", "bpa free"], "instruction_options": ["amber", "pack of 6"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4IZ897", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B072NHJCDS", "instruction": "i need black moyo natural labs 8 oz travel bottles.", "attributes": ["leak proof", "bpa free", "non toxic", "long lasting", "travel bottles"], "options": ["color: black", "size: pack of 8"], "instruction_attributes": ["travel bottles"], "instruction_options": ["black"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYMY6M0", "worker_id": "A2RBF3IIJP15IH"}], "B07QPQDJD3": [{"asin": "B07QPQDJD3", "instruction": "i want a dark brown bench seat made of solid wood.", "attributes": ["high density", "assembly required", "solid wood"], "options": ["color: madagascar cocoa | dark brown", "size: bench seat"], "instruction_attributes": ["solid wood"], "instruction_options": ["madagascar cocoa | dark brown", "bench seat"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZ1WJZ6", "worker_id": "A1WS884SI0SLO4"}], "B0824Z7W6C": [{"asin": "B0824Z7W6C", "instruction": "i'm looking for a daily wear sweatshirt made of good quality polyester material with long sleeves. also, choose x-large one.", "attributes": ["hand wash", "quality polyester", "long sleeve", "polyester spandex", "daily wear"], "options": ["color: x11", "size: x-large"], "instruction_attributes": ["quality polyester", "long sleeve", "polyester spandex", "daily wear"], "instruction_options": ["x-large"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQE2VKR", "worker_id": "AR0VJ5XRG16UJ"}], "B08TVT7CMD": [{"asin": "B08TVT7CMD", "instruction": "i'm looking for an outlet toggle wall plate cover.", "attributes": ["heavy duty", "high gloss"], "options": ["style: toggle | outlet combo"], "instruction_attributes": ["high gloss"], "instruction_options": ["toggle | outlet combo"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVR0JKZ", "worker_id": "A21IUUHBSEVB56"}], "B082NLH5YJ": [{"asin": "B082NLH5YJ", "instruction": "i am looking for red popcorn boxes for a baby shower.", "attributes": ["party supplies", "baby shower"], "options": ["color: red", "size: 36 count (pack of 1)"], "instruction_attributes": ["baby shower"], "instruction_options": ["red"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BPHX8E", "worker_id": "A1EREKSZAA9V7B"}], "B08NX18SV4": [{"asin": "B08NX18SV4", "instruction": "i am looking for car overhead player of size cm157a+dwh006x2 having stereo sound.", "attributes": ["usb port", "stereo sound"], "options": ["size: cm157a+dwh006x2"], "instruction_attributes": ["stereo sound"], "instruction_options": ["cm157a+dwh006x2"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1HYCXX", "worker_id": "A1Q8PPQQCWGY0D"}], "B07N33YR5J": [{"asin": "B07N33YR5J", "instruction": "i'm looking for individually wrapped triple chocolate cookie bars. choose the ones that come in pack of 18 with 4 count each.", "attributes": ["individually wrapped", "artificial ingredients", "simple ingredients", "natural ingredients"], "options": ["flavor name: triple chocolate", "size: 4 count (pack of 18)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["triple chocolate", "4 count (pack of 18)"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGOIW2I", "worker_id": "A3MNXK3VDK37SN"}], "B08LBHC8C9": [{"asin": "B08LBHC8C9", "instruction": "i am looking for a red women's long sleeve sweater.", "attributes": ["long sleeve", "teen girls", "daily wear"], "options": ["color: z5-red", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["z5-red"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662Z0M4B", "worker_id": "A1EREKSZAA9V7B"}], "B09PDLWMG6": [{"asin": "B09PDLWMG6", "instruction": "i am looking for light weight a34 color photo background.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a34", "size: 5x3ft | 1.5x1m"], "instruction_attributes": ["light weight"], "instruction_options": ["a34"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1E79UE", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09PDLWMG6", "instruction": "i'm looking for a26 high resolution, light weight spring flower portrait photo background 5x3ft/1.5x1m.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a26", "size: 5x3ft | 1.5x1m"], "instruction_attributes": ["light weight", "high resolution"], "instruction_options": ["a26", "5x3ft | 1.5x1m"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788H15CR", "worker_id": "A1Q0EUNCS50S8M"}], "B07YNRQJGW": [{"asin": "B07YNRQJGW", "instruction": "looking for heavy duty twilight blue colour shock-proof standing cover", "attributes": ["heavy duty", "hands free"], "options": ["color: twilight blue"], "instruction_attributes": ["heavy duty"], "instruction_options": ["twilight blue"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O4RA2V", "worker_id": "A10OGH5CQBXL5N"}], "B08C9G9J7B": [{"asin": "B08C9G9J7B", "instruction": "i want a white and long lasting bellesky eyeshadow primer set.", "attributes": ["long lasting", "oil free", "cruelty free"], "options": ["color: white (6 colors set a)"], "instruction_attributes": ["long lasting"], "instruction_options": ["white (6 colors set a)"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2BEY77", "worker_id": "A2RBF3IIJP15IH"}], "B073MQVYVL": [{"asin": "B073MQVYVL", "instruction": "i am looking for certified organic cream blush", "attributes": ["certified organic", "non toxic", "cruelty free"], "options": ["color: blush"], "instruction_attributes": ["certified organic"], "instruction_options": ["blush"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS35401DLMUX", "worker_id": "A258PTOZ3D2TQR"}], "B09J6YN4CD": [{"asin": "B09J6YN4CD", "instruction": "i want to find a win10pro desktop minis with high speed.", "attributes": ["high speed", "intel core"], "options": ["size: 32gb ram|512gb ssd|win10pro"], "instruction_attributes": ["high speed"], "instruction_options": ["32gb ram|512gb ssd|win10pro"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OZYEYR", "worker_id": "A15ERD4HOFEPHM"}], "B08XVFNF42": [{"asin": "B08XVFNF42", "instruction": "i'm looking for sexy beach swimsuit with bikini set.", "attributes": ["polyester spandex", "daily wear"], "options": ["color: yellow", "size: large"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["large"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ6XSIM", "worker_id": "A21IUUHBSEVB56"}], "B08KF8S4Z8": [{"asin": "B08KF8S4Z8", "instruction": "i'm looking for iphone 12 pro carbon fiber pattern case.", "attributes": ["carbon fiber", "wireless charging"], "options": ["color: rosegold 11 pro"], "instruction_attributes": ["carbon fiber", "wireless charging"], "instruction_options": ["rosegold 11 pro"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SY7DUI", "worker_id": "A21IUUHBSEVB56"}], "B09MQ77Y1L": [{"asin": "B09MQ77Y1L", "instruction": "i need a gaming pc powered by an core i5", "attributes": ["core i5", "intel core"], "options": ["size: 16gb ram|512gb ssd|win10h", "style: 3060 ti"], "instruction_attributes": ["core i5"], "instruction_options": [], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FM74UR", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B09MQ77Y1L", "instruction": "i am looking for matx gaming intel core desktop pc having 128gb ram, 2tb ssd and win10 os installed", "attributes": ["core i5", "intel core"], "options": ["size: 128gb ram|2tb ssd|win10h", "style: 6600 xt"], "instruction_attributes": ["intel core"], "instruction_options": ["128gb ram|2tb ssd|win10h"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEMB86Q", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B09MQ77Y1L", "instruction": "i want to find a core i5 6700 xt gaming desktop with 16 gigabytes of ram.", "attributes": ["core i5", "intel core"], "options": ["size: 16gb ram|512gb ssd|win10pro", "style: 6700 xt"], "instruction_attributes": ["core i5"], "instruction_options": ["16gb ram|512gb ssd|win10pro", "6700 xt"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQCY91T", "worker_id": "A345TDMHP3DQ3G"}], "B07SPVFSXJ": [{"asin": "B07SPVFSXJ", "instruction": "i would like a marble black cosmetic bag that is high quality.", "attributes": ["easy clean", "high quality"], "options": ["color: cmarble black"], "instruction_attributes": ["high quality"], "instruction_options": ["cmarble black"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGG69SG", "worker_id": "A1WS884SI0SLO4"}], "B09DPR6PCT": [{"asin": "B09DPR6PCT", "instruction": "i am looking for a pair of women's size 6.5 open toe and knee high sandals", "attributes": ["knee high", "anti slip", "light weight", "day comfort", "open toe", "high heel", "closed toe", "lace closure", "quality materials"], "options": ["color: z3-winered", "size: 6.5"], "instruction_attributes": ["knee high", "open toe"], "instruction_options": ["6.5"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H77U8Q", "worker_id": "A1EREKSZAA9V7B"}], "B093KBLW7B": [{"asin": "B093KBLW7B", "instruction": "i'm looking for 2 mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TV7PMG", "worker_id": "A21IUUHBSEVB56"}], "B07ZD8NQQX": [{"asin": "B07ZD8NQQX", "instruction": "i want an ultra hd wifi bluetooth projector.", "attributes": ["ultra hd", "blu ray", "quad core"], "options": ["color: wifi bluetooth projector 7200 lumen"], "instruction_attributes": ["ultra hd"], "instruction_options": ["wifi bluetooth projector 7200 lumen"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KS0LJ1", "worker_id": "A2RBF3IIJP15IH"}], "B07QWV75WB": [{"asin": "B07QWV75WB", "instruction": "i'm looking for men's workhog xt coil wide square toe.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: earth | twilight", "size: 8.5"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["earth | twilight"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO772CK", "worker_id": "A21IUUHBSEVB56"}], "B09P3G1794": [{"asin": "B09P3G1794", "instruction": "i am looking for large size khaki color wide leg high waist workout pants", "attributes": ["wide leg", "high waist", "nylon spandex", "tummy control"], "options": ["color: khaki", "size: large"], "instruction_attributes": ["wide leg", "high waist"], "instruction_options": ["khaki", "large"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB442XYA", "worker_id": "A258PTOZ3D2TQR"}], "B00M3ACMMY": [{"asin": "B00M3ACMMY", "instruction": "i'm looking for a pair of men's sandals that provide a leather sole, which are grey and sized a men's 14.", "attributes": ["leather sole", "synthetic sole"], "options": ["color: grey", "size: 14"], "instruction_attributes": ["leather sole"], "instruction_options": ["grey", "14"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQJOJCL", "worker_id": "A2JP9IKRHNLRPI"}], "B08H5CDKPM": [{"asin": "B08H5CDKPM", "instruction": "i'm looking for fast wireless charger for iphone 12.", "attributes": ["fast charging", "non slip", "usb port", "wireless charging"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39GGZCZ", "worker_id": "A21IUUHBSEVB56"}], "B00CJT36AG": [{"asin": "B00CJT36AG", "instruction": "i need some ready to eat snack packs", "attributes": ["protein serving", "ready eat"], "options": [""], "instruction_attributes": ["ready eat"], "instruction_options": [], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841DRAX5", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NZVGVCH": [{"asin": "B09NZVGVCH", "instruction": "i am looking for long sleeved orange pajamas in a size medium.", "attributes": ["long sleeve", "quality materials", "button closure", "daily wear"], "options": ["color: a5-orange", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a5-orange", "medium"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG5EBG7", "worker_id": "AK3JMCIGU8MLU"}], "B0092MLO5W": [{"asin": "B0092MLO5W", "instruction": "i am looking for a fully assembled vintage grey side table.", "attributes": ["fully assembled", "living room"], "options": ["color: vintage grey"], "instruction_attributes": ["fully assembled"], "instruction_options": ["vintage grey"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXV9YL6", "worker_id": "A1EREKSZAA9V7B"}], "B00TJKBT34": [{"asin": "B00TJKBT34", "instruction": "i am looking for 6 ounce pack of high protein almond snacks.", "attributes": ["high protein", "source vitamin"], "options": ["flavor name: salt n' vinegar", "size: 6 ounce (pack of 12)"], "instruction_attributes": ["high protein"], "instruction_options": ["6 ounce (pack of 12)"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6H8VE9", "worker_id": "AJDQGOTMB2D80"}, {"asin": "B00TJKBT34", "instruction": "i am looking for smokehouse flavor snack nuts having high protein content.", "attributes": ["high protein", "source vitamin"], "options": ["flavor name: smokehouse", "size: 6 ounce (pack of 12)"], "instruction_attributes": ["high protein"], "instruction_options": ["smokehouse"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY990UN", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00TJKBT34", "instruction": "can you find me a spicy blue diamonds high protein snack? my friends prefer the smokehouse flavor in the 6.ounce can (pack of 12)", "attributes": ["high protein", "source vitamin"], "options": ["flavor name: smokehouse", "size: 6 ounce (pack of 12)"], "instruction_attributes": ["high protein"], "instruction_options": ["6 ounce (pack of 12)"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9GW6KM", "worker_id": "A15IJ20C3R4HUO"}], "B08PKBPDMB": [{"asin": "B08PKBPDMB", "instruction": "i'm looking for a pair of men's gym workout shorts for daily wear in a camo black and size medium.", "attributes": ["gym workout", "daily wear"], "options": ["color: 1piece camo black", "size: medium"], "instruction_attributes": ["gym workout", "daily wear"], "instruction_options": ["1piece camo black", "medium"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDRX5KT", "worker_id": "AFU00NU09CFXE"}], "B08HCQW5D3": [{"asin": "B08HCQW5D3", "instruction": "i am looking for some highly pigmented neon eyeshadow.", "attributes": ["highly pigmented", "eye shadow"], "options": ["color: neon"], "instruction_attributes": ["highly pigmented", "eye shadow"], "instruction_options": ["neon"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPELN860", "worker_id": "A1EREKSZAA9V7B"}], "B09CD2VL88": [{"asin": "B09CD2VL88", "instruction": "i'm interested in purchasing a black colored easy to apply bun maker", "attributes": ["easy apply", "hair styling"], "options": ["color: black, white, red"], "instruction_attributes": ["easy apply"], "instruction_options": ["black, white, red"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXZFO4S", "worker_id": "AHXHM1PQTRWIQ"}], "B09PBV93P6": [{"asin": "B09PBV93P6", "instruction": "i want to buy a toothbrush for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": [""], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR7QA0W", "worker_id": "A15ERD4HOFEPHM"}], "B00WVLVDP2": [{"asin": "B00WVLVDP2", "instruction": "i am looking for 10 pounds of fine grain non gmo sea salt.", "attributes": ["kosher certified", "non gmo"], "options": ["flavor name: 10 lbs. (qty. 2 x 5lb. bags) - fine grain"], "instruction_attributes": ["non gmo"], "instruction_options": ["10 lbs. (qty. 2 x 5lb. bags) - fine grain"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDVJQZX", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00WVLVDP2", "instruction": "i'm looking for a two pound package of sea salt that is both kosher and non gmo. i would like a two pack of five pound package option.", "attributes": ["kosher certified", "non gmo"], "options": ["flavor name: 10 lbs. (qty. 2 x 5lb. bags) - fine grain"], "instruction_attributes": ["kosher certified", "non gmo"], "instruction_options": ["10 lbs. (qty. 2 x 5lb. bags) - fine grain"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163XWPQX", "worker_id": "A2JP9IKRHNLRPI"}], "B095728DTP": [{"asin": "B095728DTP", "instruction": "i would like to get an xx-small hoodie with polyester quality.", "attributes": ["machine wash", "quality polyester", "daily wear"], "options": ["color: 33", "size: xx-small"], "instruction_attributes": ["machine wash", "quality polyester"], "instruction_options": ["xx-small"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS6RUVG", "worker_id": "A15ERD4HOFEPHM"}], "B09PRGMGTC": [{"asin": "B09PRGMGTC", "instruction": "looking for light weight fitbit versa bands for men women also choose size large", "attributes": ["quick release", "light weight", "easy install", "stainless steel"], "options": ["color: black | gray+black | blue", "size: large"], "instruction_attributes": ["light weight"], "instruction_options": ["large"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXP82ZY", "worker_id": "A10OGH5CQBXL5N"}], "B07N1V56NR": [{"asin": "B07N1V56NR", "instruction": "i am looking for soft marble color anna synthetic sole pump for women", "attributes": ["day comfort", "non slip", "synthetic sole"], "options": ["color: soft marble", "size: 9 wide"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["soft marble"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6HFVEG", "worker_id": "A258PTOZ3D2TQR"}], "B0892J76SM": [{"asin": "B0892J76SM", "instruction": "i am looking for a backlit eco friendly vanity mirror.", "attributes": ["eco friendly", "high density"], "options": ["color: backlit", "size: 48x28"], "instruction_attributes": ["eco friendly"], "instruction_options": ["backlit"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9E12VX", "worker_id": "A1EREKSZAA9V7B"}], "B08W5BN4FK": [{"asin": "B08W5BN4FK", "instruction": "i need a wireless amplifier with bluetooth", "attributes": ["power amplifier", "wireless bluetooth"], "options": ["style: basic features"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3BXQMRHWKA8BOE0SMCYS35401DSMU4", "worker_id": "AVIEE6LDH0BT5"}], "B0878X59RR": [{"asin": "B0878X59RR", "instruction": "i'm looking for a long lasting roll on antiperspirant.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant", "long lasting"], "instruction_options": [], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GO1V93E", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B0878X59RR", "instruction": "i am looking for a long lasting deodorant.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HNNOWD", "worker_id": "A2ECRNQ3X5LEXD"}], "B093YTF2FF": [{"asin": "B093YTF2FF", "instruction": "i am looking for a set of 2 mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9LEK6S", "worker_id": "A2KW17G25L25R8"}], "B07WHL23DC": [{"asin": "B07WHL23DC", "instruction": "i am looking for a christmas balls green & red hand painted seasonal celebration candles", "attributes": ["hand painted", "easy assemble"], "options": ["color: christmas balls green & red"], "instruction_attributes": ["hand painted"], "instruction_options": ["christmas balls green & red"], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95VGXQ2", "worker_id": "A9QRQL9CFJBI7"}], "B002XULCAM": [{"asin": "B002XULCAM", "instruction": "i would like some keto friendly strawberry nutrition drink", "attributes": ["protein serving", "keto friendly", "low sugar", "low fat", "high protein", "gluten free"], "options": ["style: strawberry cream"], "instruction_attributes": ["keto friendly"], "instruction_options": ["strawberry cream"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DUH4K0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09KND6B9K": [{"asin": "B09KND6B9K", "instruction": "i would like a 70 by 185 cm round head massage linens for a beauty salon.", "attributes": ["high quality", "beauty salon"], "options": ["size: 70*185cm round head"], "instruction_attributes": ["beauty salon"], "instruction_options": ["70*185cm round head"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3IBNDFE", "worker_id": "A1WS884SI0SLO4"}], "B07TFKT734": [{"asin": "B07TFKT734", "instruction": "i'm looking for a plant based meal replacement shake that are nut, soy, and gluten free. choose the ones that are chai flavor and come in 12 fl oz and pack of 12.", "attributes": ["low sugar", "nut free", "soy free", "plant based", "gluten free", "shelf stable", "dairy free", "non gmo", "artificial colors"], "options": ["flavor name: chai", "size: 12 fl oz (pack of 12)"], "instruction_attributes": ["nut free", "soy free", "plant based", "gluten free"], "instruction_options": ["chai", "12 fl oz (pack of 12)"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WYIA1J", "worker_id": "A3MNXK3VDK37SN"}], "B08GFG8SV9": [{"asin": "B08GFG8SV9", "instruction": "i am looking to buy a paraben free makeup remover containing hyaluronic acid.", "attributes": ["paraben free", "hyaluronic acid"], "options": [""], "instruction_attributes": ["paraben free", "hyaluronic acid"], "instruction_options": [], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TG2NME", "worker_id": "AHXHM1PQTRWIQ"}], "B08Y6LQYYF": [{"asin": "B08Y6LQYYF", "instruction": "i want a 6 pack of valentine's day stretch chair cover dining room chair covers.", "attributes": ["machine washable", "easy install", "dining room"], "options": ["color: tulipswcs4260", "size: 6 pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["6 pcs"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQGU91X", "worker_id": "A2RBF3IIJP15IH"}], "B0006NXZ7G": [{"asin": "B0006NXZ7G", "instruction": "i would like to buy jojoba oil which is non toxic, and comes in a size of 128 fl oz, and pack of 1.", "attributes": ["animal testing", "non toxic", "cruelty free"], "options": ["size: 128 fl oz (pack of 1)"], "instruction_attributes": ["non toxic"], "instruction_options": ["128 fl oz (pack of 1)"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDW0QZG", "worker_id": "AJY5G987IRT25"}], "B019YT48D2": [{"asin": "B019YT48D2", "instruction": "i want dual band upbright 5v ac/dc adapter compatible with zboost.", "attributes": ["dual band", "output protection"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIZKT9P", "worker_id": "A2RBF3IIJP15IH"}], "B09HC7V35F": [{"asin": "B09HC7V35F", "instruction": "i am looking for a women's navy blue blouse that is machine washable.", "attributes": ["machine wash", "fashion design", "polyester spandex"], "options": ["color: navy blue", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy blue"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LB2REJ", "worker_id": "A1EREKSZAA9V7B"}], "B08ZJNF1S5": [{"asin": "B08ZJNF1S5", "instruction": "can you direct me to minimalism barefoot shoes? preferably with rubber soles... also, i want blue", "attributes": ["non slip", "rubber sole"], "options": ["color: new moon | blue", "size: 12 us women | 10.5 us men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["new moon | blue"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN4FPTV", "worker_id": "A2TRV8SEM003GG"}], "B004CX1QZ4": [{"asin": "B004CX1QZ4", "instruction": "i need a large petite elastic waist pan. and i choose the dark indigo 20", "attributes": ["machine washable", "loose fit", "machine wash", "elastic waist", "button closure"], "options": ["color: dark indigo 20", "size: large petite"], "instruction_attributes": ["elastic waist"], "instruction_options": ["dark indigo 20", "large petite"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHAC9DOV", "worker_id": "A2COCSUGZV28X"}], "B081YYTGH8": [{"asin": "B081YYTGH8", "instruction": "i want black levi's men's 501 straight leg jeans.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: black", "size: 36w x 32l"], "instruction_attributes": ["straight leg"], "instruction_options": ["black"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOHEW19", "worker_id": "A2RBF3IIJP15IH"}], "B09CMX4VB3": [{"asin": "B09CMX4VB3", "instruction": "i would like a dark blue denture storage case.", "attributes": ["easy clean", "storage case"], "options": ["color: dark blue"], "instruction_attributes": ["storage case"], "instruction_options": ["dark blue"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT69JYU", "worker_id": "A1WS884SI0SLO4"}], "B08H53L4B4": [{"asin": "B08H53L4B4", "instruction": "i need high speed hdmi panel mount extension cable with angle down- 0.5m", "attributes": ["gold plated", "blu ray", "high speed"], "options": ["color: angle down-0.5m"], "instruction_attributes": ["high speed"], "instruction_options": ["angle down-0.5m"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4EV6RW", "worker_id": "A258PTOZ3D2TQR"}], "B09MKS4HDV": [{"asin": "B09MKS4HDV", "instruction": "i'm looking for a loose fit vest with long sleeves for teen girls. also choose large size khaki colored one.", "attributes": ["loose fit", "long sleeve", "drawstring waist", "relaxed fit", "teen girls"], "options": ["color: khaki", "size: large"], "instruction_attributes": ["loose fit", "long sleeve", "teen girls"], "instruction_options": ["khaki", "large"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOAEGJO", "worker_id": "AR0VJ5XRG16UJ"}], "B094YHLK42": [{"asin": "B094YHLK42", "instruction": "i am looking for an easy to assemble queen size box spring that has memory foam.", "attributes": ["easy assemble", "memory foam", "box spring"], "options": ["color: brown", "size: queen", "style: 8-inch"], "instruction_attributes": ["easy assemble", "memory foam", "box spring"], "instruction_options": ["queen"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVQ671J", "worker_id": "A1EREKSZAA9V7B"}], "B01FGKEBBW": [{"asin": "B01FGKEBBW", "instruction": "i would like a 4 foot by 6 foot rectangular sage green area rug that is super soft.", "attributes": ["easy clean", "spot clean", "super soft"], "options": ["color: sage green", "item shape: rectangular", "size: 4 ft x 6 ft"], "instruction_attributes": ["super soft"], "instruction_options": ["sage green", "rectangular", "4 ft x 6 ft"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGF6SMR", "worker_id": "A1WS884SI0SLO4"}], "B07QB9JC3C": [{"asin": "B07QB9JC3C", "instruction": "i'm looking for a good quality rugs for living and dining rooms. also choose 8\" round shape, green colored one.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: green | turquoise", "size: 8' round"], "instruction_attributes": ["living room", "dining room"], "instruction_options": ["green | turquoise", "8' round"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFE7LVK", "worker_id": "AR0VJ5XRG16UJ"}], "B016NKJX9Y": [{"asin": "B016NKJX9Y", "instruction": "i would like a brown sugar body scrub for sensitive skin.", "attributes": ["fragrance free", "paraben free", "sensitive skin"], "options": ["scent: brown sugar | fig"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["brown sugar | fig"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTSO4VM", "worker_id": "A1WS884SI0SLO4"}], "B00Q8T5GRO": [{"asin": "B00Q8T5GRO", "instruction": "i'm looking for dora the explore kids edt spray.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMORGM99", "worker_id": "A21IUUHBSEVB56"}], "B01BRIT5WW": [{"asin": "B01BRIT5WW", "instruction": "i would like a 44w by 32l big and tall mocha dress that can be machine washed.", "attributes": ["machine wash", "classic fit"], "options": ["color: mocha", "size: 44w x 32l", "special size: big & tall"], "instruction_attributes": ["machine wash"], "instruction_options": ["mocha", "44w x 32l", "big & tall"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OLRTRD", "worker_id": "A1WS884SI0SLO4"}], "B08P2QL6B3": [{"asin": "B08P2QL6B3", "instruction": "i'm looking for plastic empty mist spray bottles.", "attributes": ["easy use", "fine mist"], "options": ["color: transparent 10pcs", "size: 2.9x10.1cm"], "instruction_attributes": ["fine mist"], "instruction_options": ["transparent 10pcs"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJPZ8Z6", "worker_id": "A21IUUHBSEVB56"}], "B092V5VRMB": [{"asin": "B092V5VRMB", "instruction": "kocota unisex garden clogs options to include in your search : bow support, gray vinyl acetate color. i hope you find", "attributes": ["ethylene vinyl", "vinyl acetate", "arch support"], "options": ["color: grey", "size: 10 women | 8 men"], "instruction_attributes": ["vinyl acetate", "arch support"], "instruction_options": ["grey", "10 women | 8 men"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKXOJMZ", "worker_id": "A15IJ20C3R4HUO"}], "B09NYJ6MT9": [{"asin": "B09NYJ6MT9", "instruction": "i want white professional stereo wireless bluetooth speaker.", "attributes": ["power amplifier", "high power", "wireless bluetooth"], "options": ["color: white"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["white"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXVW5O0", "worker_id": "A2RBF3IIJP15IH"}], "B08TWNMVH6": [{"asin": "B08TWNMVH6", "instruction": "i'm looking for a 4g lte gps antenna which should be easy to install.", "attributes": ["easy install", "4g lte"], "options": [""], "instruction_attributes": ["easy install", "4g lte"], "instruction_options": [], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39ITRLT4", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B08TWNMVH6", "instruction": "i am looking for a adhesive mount aerial connector cable right angle plug for car stereo which is easy to install. also choose which accept 4 g lte", "attributes": ["easy install", "4g lte"], "options": [""], "instruction_attributes": ["easy install", "4g lte"], "instruction_options": [], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQCZ19M", "worker_id": "A2HMEGTAFO0CS8"}], "B01MS5PT4L": [{"asin": "B01MS5PT4L", "instruction": "i would like one wall bath fixture that has a brushed nickel finish.", "attributes": ["pendant light", "bronze finish", "light fixture"], "options": ["color: brushed nickel finish", "size: one - light", "style: wall bath fixture"], "instruction_attributes": ["light fixture"], "instruction_options": ["brushed nickel finish", "one - light", "wall bath fixture"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZUI3KB", "worker_id": "A1WS884SI0SLO4"}], "B0199WNJXY": [{"asin": "B0199WNJXY", "instruction": "i would like a 4.2 fluid ounce bottle of coconut oil shampoo.", "attributes": ["coconut oil", "natural ingredients", "hair treatment", "damaged hair", "dry hair"], "options": ["size: 4.2 fl oz (pack of 1)", "style: oil, damage recovery"], "instruction_attributes": ["coconut oil"], "instruction_options": ["4.2 fl oz (pack of 1)", "oil, damage recovery"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0S4111B", "worker_id": "A1WS884SI0SLO4"}], "B08SWJV16Z": [{"asin": "B08SWJV16Z", "instruction": "i would like a bakers rack that is space saving.", "attributes": ["space saving", "storage space"], "options": [""], "instruction_attributes": ["space saving"], "instruction_options": [], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X933YI", "worker_id": "A1WS884SI0SLO4"}], "B09NFGCF3Q": [{"asin": "B09NFGCF3Q", "instruction": "i am looking for a high perfromance grey quad core tablet.", "attributes": ["high performance", "quad core"], "options": ["color: grey"], "instruction_attributes": ["high performance", "quad core"], "instruction_options": ["grey"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9W678X", "worker_id": "A1EREKSZAA9V7B"}], "B07BT88MC3": [{"asin": "B07BT88MC3", "instruction": "looking for light weight rosy pink colour mens womens water shoes", "attributes": ["light weight", "anti slip", "rubber sole"], "options": ["color: rosy pink", "size: 15 women | 13.5 men"], "instruction_attributes": ["light weight"], "instruction_options": ["rosy pink"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107CKLIW", "worker_id": "A10OGH5CQBXL5N"}], "B07B4KXQZV": [{"asin": "B07B4KXQZV", "instruction": "i'm looking for a queen size bedspread set in the color redwood.", "attributes": ["queen size", "machine washable"], "options": ["color: redwood", "size: twin"], "instruction_attributes": ["queen size"], "instruction_options": ["redwood"], "assignment_id": "3IAS3U3I0QQ6LBNTC3YDJ6YE6M72BD", "worker_id": "AK3JMCIGU8MLU"}], "B08BL9NG94": [{"asin": "B08BL9NG94", "instruction": "i am looking for a sma male to female coaxial cable for 4g lte signal booster.", "attributes": ["coaxial cable", "4g lte"], "options": ["size: 7m | 23ft"], "instruction_attributes": ["coaxial cable", "4g lte"], "instruction_options": [], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT0621NU2", "worker_id": "AJDQGOTMB2D80"}], "B09Q1JG3KJ": [{"asin": "B09Q1JG3KJ", "instruction": "i am looking for a wireless, bluetooth enabled home theatre system.", "attributes": ["high definition", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q75DKH", "worker_id": "AK3JMCIGU8MLU"}], "B09RH4CQYD": [{"asin": "B09RH4CQYD", "instruction": "i am looking for a pair of black men's medium underwear that are light weight and machine washable.", "attributes": ["light weight", "machine washable", "fashion design", "drawstring closure"], "options": ["color: black", "size: medium"], "instruction_attributes": ["light weight", "machine washable"], "instruction_options": ["black", "medium"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7RWOBY", "worker_id": "A1EREKSZAA9V7B"}], "B07ML6CH7P": [{"asin": "B07ML6CH7P", "instruction": "i am looking for a pair of women's size 7.5 camo colored non slip walking shoes.", "attributes": ["non slip", "rubber sole"], "options": ["color: camo", "size: 7.5"], "instruction_attributes": ["non slip"], "instruction_options": ["camo", "7.5"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2QDNY1", "worker_id": "A1EREKSZAA9V7B"}], "B08PPW9QKG": [{"asin": "B08PPW9QKG", "instruction": "i'm looking for a high quality accessory bundle for my canon camera; speed and performance is essential.", "attributes": ["high performance", "high speed"], "options": [""], "instruction_attributes": ["high performance", "high speed"], "instruction_options": [], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E807G8T", "worker_id": "A3LIIE572Z4OG7"}], "B099KMQVP3": [{"asin": "B099KMQVP3", "instruction": "i am looking for a pair of women's size 11 daily wear boots.", "attributes": ["day comfort", "quality materials", "teen girls", "daily wear"], "options": ["color: z07-black", "size: 11"], "instruction_attributes": ["daily wear"], "instruction_options": ["11"], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJYSYGR8", "worker_id": "A1EREKSZAA9V7B"}], "B09R7N338P": [{"asin": "B09R7N338P", "instruction": "find me a nice black relaxed fit linen button up for the beach with short sleeves in size 3xl.", "attributes": ["slim fit", "short sleeve", "long sleeve", "relaxed fit"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["short sleeve", "relaxed fit"], "instruction_options": ["black", "3x-large"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODQCWEM", "worker_id": "A3O1I9MATO3ZZN"}], "B08LVPJFWZ": [{"asin": "B08LVPJFWZ", "instruction": "i am loooking for camera lens protector for iphone 12 mini that is easy to use.", "attributes": ["high resolution", "easy use", "aluminum alloy"], "options": ["color: iphone 12 pro pacific blue", "size: iphone 12 mini"], "instruction_attributes": ["easy use"], "instruction_options": ["iphone 12 mini"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P780VST", "worker_id": "A1Q8PPQQCWGY0D"}], "B005OKZ38K": [{"asin": "B005OKZ38K", "instruction": "i would like a 6.56 ounce dark soft brown box of hair dye.", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 33 dark soft brown", "size: 6.56 ounce (pack of 1)"], "instruction_attributes": ["hair dye"], "instruction_options": ["33 dark soft brown", "6.56 ounce (pack of 1)"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPDSQDH", "worker_id": "A1WS884SI0SLO4"}], "B08LDHZLPP": [{"asin": "B08LDHZLPP", "instruction": "i just love the matilde vicenzi brand macaroons and i want to try the amaretto d'italia macaroons flavor. the quality of the ingredients is my requirement, if you find it let me know", "attributes": ["artificial colors", "quality ingredients"], "options": ["flavor name: amaretto d'italia macaroons"], "instruction_attributes": ["quality ingredients"], "instruction_options": [], "assignment_id": "3VFJCI1K4A9JGCCP7F5SLPXJYS0RGL", "worker_id": "A15IJ20C3R4HUO"}], "B09GL9HFT9": [{"asin": "B09GL9HFT9", "instruction": "i would like to buy soundbars which can be operated hands free and are 2.1 soundbar.", "attributes": ["hands free", "high speed"], "options": ["style: 2.1 soundbar w | play-fi"], "instruction_attributes": ["hands free"], "instruction_options": ["2.1 soundbar w | play-fi"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3OUYRU", "worker_id": "AJY5G987IRT25"}], "B09PNBTJVJ": [{"asin": "B09PNBTJVJ", "instruction": "i would like a blue pu leather gaming chair", "attributes": ["high density", "long lasting", "lumbar support", "pu leather", "memory foam"], "options": ["color: blue", "style: flip arm 2"], "instruction_attributes": ["pu leather"], "instruction_options": ["blue"], "assignment_id": "32SCWG5HISEW7674IASH43KF3V0P6E", "worker_id": "A2ECRNQ3X5LEXD"}], "B08L5778PK": [{"asin": "B08L5778PK", "instruction": "i'm looking for dermatologically certified serum skin that contains hyaluronic acid for sensitive skin and is fragrance free.", "attributes": ["cruelty free", "dermatologist tested", "oil free", "plant based", "fragrance free", "non toxic", "hyaluronic acid", "sensitive skin"], "options": ["color: ora st-6"], "instruction_attributes": ["dermatologist tested", "fragrance free", "hyaluronic acid"], "instruction_options": [], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVQ3LXD", "worker_id": "ARJDD0Z3R65BD"}], "B07NXTKYQP": [{"asin": "B07NXTKYQP", "instruction": "i am looking for a rustic brown bookshelf with storage space.", "attributes": ["storage space", "engineered wood", "living room"], "options": ["color: rustic brown", "size: 14.6\"w", "style: bookshelf"], "instruction_attributes": [], "instruction_options": ["rustic brown", "bookshelf"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANJVSXG", "worker_id": "AK3JMCIGU8MLU"}], "B07PMTCQHT": [{"asin": "B07PMTCQHT", "instruction": "i am looking for nut free and fat free gummy candy.", "attributes": ["nut free", "fat free", "dairy free", "gluten free"], "options": [""], "instruction_attributes": ["nut free", "fat free"], "instruction_options": [], "assignment_id": "3P4MQ7TPP8M09ONPVWROKZ1I0SIBBM", "worker_id": "A1Q8PPQQCWGY0D"}], "B093S2LPTM": [{"asin": "B093S2LPTM", "instruction": "i am looking for some high quality nail stickers.", "attributes": ["high quality", "nail art", "nail polish"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P78FVS8", "worker_id": "A1EREKSZAA9V7B"}], "B08RJ3YLKM": [{"asin": "B08RJ3YLKM", "instruction": "i want a 2 pack of green tea & eggplant purifying clay stick masks.", "attributes": ["easy carry", "easy use", "green tea", "natural ingredients"], "options": [""], "instruction_attributes": ["green tea"], "instruction_options": [], "assignment_id": "3G2UL9A02OO71034MOY04HTU32F76C", "worker_id": "A2RBF3IIJP15IH"}], "B094Y4JQMR": [{"asin": "B094Y4JQMR", "instruction": "i am looking for pink, close-toed sandals that have a rubber sole and come in size 8.5", "attributes": ["open toe", "ankle strap", "closed toe", "rubber sole", "teen girls"], "options": ["color: z2-pink", "size: 8.5"], "instruction_attributes": ["closed toe", "rubber sole"], "instruction_options": ["z2-pink", "8.5"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3H1NQ3", "worker_id": "AK3JMCIGU8MLU"}], "B00IX5M0PW": [{"asin": "B00IX5M0PW", "instruction": "i am looking for a anti-perspirant deodorant that is long lasting.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYR3QMI", "worker_id": "A1Q8PPQQCWGY0D"}], "B081YY84HC": [{"asin": "B081YY84HC", "instruction": "i'm looking for original fit jeans for men.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: thunder moon rocks - light indigo", "size: 31w x 30l"], "instruction_attributes": ["straight leg"], "instruction_options": ["thunder moon rocks - light indigo"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4DG6RF", "worker_id": "A21IUUHBSEVB56"}], "B079JDFPMR": [{"asin": "B079JDFPMR", "instruction": "i'm looking for a long-lasting hydration hair treatment spray.", "attributes": ["long lasting", "hair treatment", "hair growth", "natural hair"], "options": [""], "instruction_attributes": ["long lasting", "hair treatment"], "instruction_options": [], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98VAKYV", "worker_id": "A3MNXK3VDK37SN"}], "B08CWNZ56P": [{"asin": "B08CWNZ56P", "instruction": "i am looking for a standard intel core i5 gaming pc.", "attributes": ["core i5", "intel core"], "options": ["style: standard"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["standard"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHRERFJ2E", "worker_id": "A1EREKSZAA9V7B"}], "B091WP1BT5": [{"asin": "B091WP1BT5", "instruction": "i would like a peach juice that is non gmo and gluten free.", "attributes": ["artificial ingredients", "non gmo", "gluten free", "dairy free", "real fruit", "artificial colors", "artificial flavors"], "options": ["flavor name: peach"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": [], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YTC8TP", "worker_id": "A1WS884SI0SLO4"}], "B08P27813M": [{"asin": "B08P27813M", "instruction": "i want a 1b natural hair wig.", "attributes": ["natural hair", "hair growth"], "options": ["color: 1b"], "instruction_attributes": ["natural hair"], "instruction_options": ["1b"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1QW6FD", "worker_id": "A1WS884SI0SLO4"}], "B07G57NM4T": [{"asin": "B07G57NM4T", "instruction": "i'm looking for a comfortable fit pullover shirts with long sleeves for teen girls. also, choose xx-large size white colored one", "attributes": ["loose fit", "daily casual", "wash cold", "hand wash", "long sleeve", "comfortable fit", "teen girls"], "options": ["color: short sleeve-white", "size: xx-large"], "instruction_attributes": ["long sleeve", "comfortable fit", "teen girls"], "instruction_options": ["short sleeve-white", "xx-large"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVJLSZ5", "worker_id": "AR0VJ5XRG16UJ"}], "B09DPTPQW7": [{"asin": "B09DPTPQW7", "instruction": "i want an oribox clear glass screen protector for iphone 12.", "attributes": ["compatible apple", "high definition", "glass screen", "tempered glass"], "options": ["color: clear", "style: iphone 12 | 12 pro"], "instruction_attributes": ["glass screen"], "instruction_options": ["clear"], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYR3CG6", "worker_id": "A2RBF3IIJP15IH"}], "B09RF9GTHZ": [{"asin": "B09RF9GTHZ", "instruction": "i want an army green women's long sleeve tunic.", "attributes": ["quick drying", "machine washable", "short sleeve", "long sleeve", "arch support", "laundry bag", "daily wear"], "options": ["color: mqy-zh1 -army green", "size: 4x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["mqy-zh1 -army green"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QGOM1Y", "worker_id": "A2RBF3IIJP15IH"}], "B07Q5863HF": [{"asin": "B07Q5863HF", "instruction": "i am looking for mens shoes that are of realtree edge color and have rubber sole.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: realtree edge", "size: 9.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["realtree edge"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWSP6WC", "worker_id": "A1Q8PPQQCWGY0D"}], "B08YJ99BGF": [{"asin": "B08YJ99BGF", "instruction": "i'm looking for an intel i5 desk top pc with 32 gigabytes of ram and a two terabyte ssd.", "attributes": ["dual band", "core i5", "intel core", "quad core"], "options": ["size: 32gb ram | 2tb ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["32gb ram | 2tb ssd"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVSXKJZ", "worker_id": "AR9AU5FY1S3RO"}], "B093CRX264": [{"asin": "B093CRX264", "instruction": "help me find a black doorbell that will detect motion and give an excellent 1080p hd video quality.", "attributes": ["dual band", "1080p hd", "motion detection"], "options": ["color: black", "style: with plug-in power (white)"], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": ["black"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACUGHNC", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B093CRX264", "instruction": "looking for the 2021 release of ring video doorbell 4. it has 1080p, motion detection options. floodlight cam wired plus option. prefer white in color, but accept black.", "attributes": ["dual band", "1080p hd", "motion detection"], "options": ["color: black", "style: floodlight cam wired plus"], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": ["black", "floodlight cam wired plus"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7X8XFRX", "worker_id": "A3RGIKEI8JS2QG"}], "B09F2HDDKN": [{"asin": "B09F2HDDKN", "instruction": "i am looking for some gluten free soft blue edible brew dust.", "attributes": ["kosher certified", "dairy free", "gluten free"], "options": ["color: soft blue", "size: 1000g (1kg)"], "instruction_attributes": ["gluten free"], "instruction_options": ["soft blue"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS6OUVD", "worker_id": "A1EREKSZAA9V7B"}], "B079KBCBKX": [{"asin": "B079KBCBKX", "instruction": "i'm looking for a hair extensions with natural hair. also choose 120g 14 inch sized natural black mixed chestnut brown colored one.", "attributes": ["hair extensions", "natural hair"], "options": ["color: natural black mixed chestnut brown #1b | 6 | 1b", "size: 14 inch (120 gram)"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["natural black mixed chestnut brown #1b | 6 | 1b", "14 inch (120 gram)"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733PQEBK", "worker_id": "AR0VJ5XRG16UJ"}], "B09BJPSK5Z": [{"asin": "B09BJPSK5Z", "instruction": "i am looking for a white footstool for my living room.", "attributes": ["high density", "pu leather", "solid wood", "living room"], "options": ["color: white", "size: 11.81in\u00d711.41in"], "instruction_attributes": ["living room"], "instruction_options": ["white"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBI9DJM", "worker_id": "A1EREKSZAA9V7B"}], "B093YT7VND": [{"asin": "B093YT7VND", "instruction": "i am interested in buying a laundry bag", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UINA32", "worker_id": "AHXHM1PQTRWIQ"}], "B09DC88HCP": [{"asin": "B09DC88HCP", "instruction": "i am looking for easy clean , red color shower curtain of size 78\"w x 70\"h with hook", "attributes": ["easy clean", "printing technology"], "options": ["color: red", "size: 78\"w x 70\"h | 200x180cm"], "instruction_attributes": ["easy clean"], "instruction_options": ["red", "78\"w x 70\"h | 200x180cm"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2BF7YH", "worker_id": "A258PTOZ3D2TQR"}], "B07R3SP4BM": [{"asin": "B07R3SP4BM", "instruction": "i want to buy a vortex razor hd spotting scope for iphone 12 pro max that has a carrying case.", "attributes": ["compatible apple", "easy use", "carrying case"], "options": ["color: iphone 12 pro max", "size: vortex razor hd | ultra hd gen 1&2 spottin..."], "instruction_attributes": ["carrying case"], "instruction_options": ["iphone 12 pro max", "vortex razor hd | ultra hd gen 1&2 spottin..."], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL7BEAV", "worker_id": "A2YNPKYEFDZ6C9"}], "B07QKFRT2F": [{"asin": "B07QKFRT2F", "instruction": "i need a sugar free liquid water enhancer", "attributes": ["sugar free", "caffeine free", "easy use"], "options": [""], "instruction_attributes": ["sugar free"], "instruction_options": [], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD30CI1", "worker_id": "A2Y2TURT2VEYZN"}], "B004QVPDEC": [{"asin": "B004QVPDEC", "instruction": "i would like a 6 foot long gold plated pink cable.", "attributes": ["high speed", "ultra hd", "gold plated", "high resolution", "high performance", "high definition"], "options": ["color: pink", "size: 6ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["pink", "6ft"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KRDJLA", "worker_id": "A1WS884SI0SLO4"}], "B08LM9FX1X": [{"asin": "B08LM9FX1X", "instruction": "i'm looking for a waterproof hair cutting capes for hair styling. also choose 55\" * 66\" multi color one", "attributes": ["hair cutting", "hair styling"], "options": ["color: multi color 7", "size: 55\" x 66\""], "instruction_attributes": ["hair cutting", "hair styling"], "instruction_options": ["multi color 7", "55\" x 66\""], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCRHMBH", "worker_id": "AR0VJ5XRG16UJ"}], "B000SATGXE": [{"asin": "B000SATGXE", "instruction": "looking for davidson's tea 100 pcs south africa flavored tea bags, spiced rooibos chai is my favorite, please demand certified organic.", "attributes": ["caffeine free", "certified organic"], "options": ["flavor name: rooibos spiced chai"], "instruction_attributes": ["certified organic"], "instruction_options": ["rooibos spiced chai"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLLAQECR", "worker_id": "A15IJ20C3R4HUO"}], "B085RNCPZC": [{"asin": "B085RNCPZC", "instruction": "i am interested in buying a beige colored super soft throw for the bedroom.", "attributes": ["super soft", "fleece throw"], "options": ["color: beige", "size: travel | throw(50\"x60\")"], "instruction_attributes": ["super soft"], "instruction_options": ["beige"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADX06YMF", "worker_id": "AHXHM1PQTRWIQ"}], "B086VLYFH8": [{"asin": "B086VLYFH8", "instruction": "i need an easy to clean, easy to assemble computer desk. it should have walnut wood and metal legs.", "attributes": ["heavy duty", "easy clean", "easy assemble", "coated steel", "metal legs"], "options": ["color: 4.0 walnut 2"], "instruction_attributes": ["easy clean", "easy assemble", "metal legs"], "instruction_options": ["4.0 walnut 2"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9MCK6S", "worker_id": "AR9AU5FY1S3RO"}], "B09SB4G9CS": [{"asin": "B09SB4G9CS", "instruction": "looking for high performance quad-core 64bit android tv box 10.0", "attributes": ["dual band", "high performance", "easy use", "quad core"], "options": ["color: 2gb+16gb"], "instruction_attributes": ["high performance", "quad core"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGANLSP", "worker_id": "A10OGH5CQBXL5N"}], "B00SYOUSCO": [{"asin": "B00SYOUSCO", "instruction": "i am looking for a 1.5 foot high speed gold plated hdmi cable.", "attributes": ["high speed", "gold plated"], "options": ["pattern name: 1 pack", "size: 1.5 feet"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["1.5 feet"], "assignment_id": "3BC8WZX3VE6A52L3NQZ4KTBQ00NRRR", "worker_id": "A1EREKSZAA9V7B"}], "B07K8X6JZL": [{"asin": "B07K8X6JZL", "instruction": "i would like a caramel variety pack that is individually wrapped.", "attributes": ["hand crafted", "individually wrapped", "artificial ingredients", "high fructose", "natural ingredients", "artificial flavors"], "options": ["flavor name: variety"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["variety"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49LCTDL", "worker_id": "A1WS884SI0SLO4"}], "B01EO2KP2M": [{"asin": "B01EO2KP2M", "instruction": "i'm looking for a blush brush that should cruelty free certified. also, choose angled liner one.", "attributes": ["cruelty free", "nail polish"], "options": ["color: angled liner brush"], "instruction_attributes": ["cruelty free"], "instruction_options": ["angled liner brush"], "assignment_id": "33TIN5LC0FKDY31374RC144TX1SY99", "worker_id": "AR0VJ5XRG16UJ"}, {"asin": "B01EO2KP2M", "instruction": "i would like a foundation brush for my nail polish.", "attributes": ["cruelty free", "nail polish"], "options": ["color: foundation brush"], "instruction_attributes": ["nail polish"], "instruction_options": ["foundation brush"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC7CKUA", "worker_id": "A1WS884SI0SLO4"}], "B07N7YPR32": [{"asin": "B07N7YPR32", "instruction": "i would like a non gmo container of artichoke hearts.", "attributes": ["dairy free", "non gmo", "gluten free"], "options": [""], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "3IXEICO79DTUZY0BZR119DLCSY86TN", "worker_id": "A1WS884SI0SLO4"}], "B083LXGV1K": [{"asin": "B083LXGV1K", "instruction": "i would like a size 34 pair of garden variety shorts that can be machine washed.", "attributes": ["machine wash", "button closure"], "options": ["color: garden variety", "size: 34"], "instruction_attributes": ["machine wash"], "instruction_options": ["garden variety", "34"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRYV3F3", "worker_id": "A1WS884SI0SLO4"}], "B09239MNBY": [{"asin": "B09239MNBY", "instruction": "i am looking for cheese flavored gluten free rice snacks", "attributes": ["gluten free", "natural ingredients"], "options": ["flavor name: cheese x2"], "instruction_attributes": ["gluten free"], "instruction_options": ["cheese x2"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH1571WH1", "worker_id": "A258PTOZ3D2TQR"}], "B092VS43X2": [{"asin": "B092VS43X2", "instruction": "i'm looking for a tv cabinet for living room with high gloss finish and has tempered glass. also, choose a-47\" w* 16\" d* 16\"h in size natural 017 colored one.", "attributes": ["high gloss", "tempered glass", "living room"], "options": ["color: natural 017", "size: a-47 \"w \u00d7 16\" d \u00d7 16 \"h"], "instruction_attributes": ["high gloss", "tempered glass", "living room"], "instruction_options": ["natural 017", "a-47 \"w \u00d7 16\" d \u00d7 16 \"h"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTQLO6D", "worker_id": "AR0VJ5XRG16UJ"}], "B07C8C3JFC": [{"asin": "B07C8C3JFC", "instruction": "i am looking for a ready to hang 24 inch by 30 inch poster of a cow.", "attributes": ["ready hang", "dining room", "living room"], "options": ["size: 24 x 30", "style: wall plaque"], "instruction_attributes": ["ready hang"], "instruction_options": ["24 x 30"], "assignment_id": "37TRT2X24116R7L1JO45INKV8X3BJJ", "worker_id": "A1EREKSZAA9V7B"}], "B08TB6XVY9": [{"asin": "B08TB6XVY9", "instruction": "i am looking for a 3-pack of bpa free fine mist bottles with trigger.", "attributes": ["leak proof", "bpa free", "high quality", "fine mist"], "options": ["size: pack of 3"], "instruction_attributes": ["bpa free", "fine mist"], "instruction_options": ["pack of 3"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVONQ0S", "worker_id": "AK3JMCIGU8MLU"}], "B01IY27IX2": [{"asin": "B01IY27IX2", "instruction": "i would like a unscented body butter that is cruelty free.", "attributes": ["anti aging", "cruelty free", "dry skin"], "options": ["scent: unscented"], "instruction_attributes": ["cruelty free"], "instruction_options": ["unscented"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5YRF40", "worker_id": "A1WS884SI0SLO4"}], "B09JFX86BQ": [{"asin": "B09JFX86BQ", "instruction": "i need a long sleeve casual jacket for women.", "attributes": ["light weight", "long sleeve"], "options": ["color: e2-gray", "size: 5x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5KB912O", "worker_id": "AVIEE6LDH0BT5"}], "B00H4KDZZ6": [{"asin": "B00H4KDZZ6", "instruction": "i'm looking for low carb protein powder.", "attributes": ["low carb", "protein serving", "low fat", "keto friendly", "gluten free"], "options": ["flavor name: chocolate peanut butter cup", "size: variety pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["variety pack"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3PWZLH", "worker_id": "A21IUUHBSEVB56"}], "B08BJ4HYJ9": [{"asin": "B08BJ4HYJ9", "instruction": "i am looking for a navy blue macbook pro 13 inch case cover.", "attributes": ["light weight", "case cover"], "options": ["color: navy blue"], "instruction_attributes": ["case cover"], "instruction_options": ["navy blue"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06PKXK6", "worker_id": "AHU9OLV0YKIIW"}], "B08RJZQYK1": [{"asin": "B08RJZQYK1", "instruction": "i'm looking for track trail running shoe for men.", "attributes": ["lace closure", "rubber outsole", "regular fit"], "options": ["color: core black | core black | bold blue", "size: 12 m uk"], "instruction_attributes": ["regular fit"], "instruction_options": ["core black | core black | bold blue"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRXWWPP", "worker_id": "A21IUUHBSEVB56"}], "B07RMJZTJJ": [{"asin": "B07RMJZTJJ", "instruction": "i would like a 0.4 ounce medium honey concealer that is long lasting.", "attributes": ["anti aging", "highly pigmented", "travel size", "long lasting", "hyaluronic acid", "dark circles"], "options": ["color: 22.5 medium honey (w)", "size: 0.4 ounce (pack of 1)"], "instruction_attributes": ["long lasting"], "instruction_options": ["22.5 medium honey (w)", "0.4 ounce (pack of 1)"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPKFVQ4", "worker_id": "A1WS884SI0SLO4"}], "B08PBP6N38": [{"asin": "B08PBP6N38", "instruction": "i want a grey bellemave bed frame wood platform bed.", "attributes": ["white item", "box spring", "storage space", "wood frame", "solid wood"], "options": ["color: grey", "size: twin"], "instruction_attributes": ["wood frame"], "instruction_options": ["grey"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXWBO50", "worker_id": "A2RBF3IIJP15IH"}], "B07KMJNTY2": [{"asin": "B07KMJNTY2", "instruction": "i am looking for 28 short size women's straight leg jeans", "attributes": ["straight leg", "machine wash", "imported zipper"], "options": ["color: (new) slate ideal clean hem - dark indigo", "fit type: standard", "size: 28 short"], "instruction_attributes": ["straight leg"], "instruction_options": ["standard", "28 short"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UTNG1T", "worker_id": "A258PTOZ3D2TQR"}], "B0956KCDT2": [{"asin": "B0956KCDT2", "instruction": "i am looking for qazpl clip in hair extensions for hair loss.", "attributes": ["high quality", "hair loss"], "options": ["color: kinky curly", "size: 18 inch"], "instruction_attributes": ["hair loss"], "instruction_options": ["18 inch"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQF4AJ9", "worker_id": "A2KW17G25L25R8"}], "B09P12CWD9": [{"asin": "B09P12CWD9", "instruction": "i want a x-large merthy long sleeve camp corduroy shirt.", "attributes": ["slim fit", "loose fit", "hand wash", "winter warm", "fleece lined", "wash cold", "machine wash", "long sleeve", "drawstring waist", "high waist"], "options": ["color: 02 brown", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x-large"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY86AN81I", "worker_id": "A2RBF3IIJP15IH"}], "B073WGFRM1": [{"asin": "B073WGFRM1", "instruction": "i need a concealer for dark circles that is in the color sassy", "attributes": ["certified organic", "anti aging", "cruelty free", "long lasting", "natural ingredients", "dark circles"], "options": ["color: sassy"], "instruction_attributes": ["dark circles"], "instruction_options": ["sassy"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYM4LQ2", "worker_id": "A2ECRNQ3X5LEXD"}], "B092YR7R35": [{"asin": "B092YR7R35", "instruction": "i would like a rose gold cupcake topper for a birthday cake.", "attributes": ["cupcake picks", "birthday party"], "options": ["color: rose gold"], "instruction_attributes": ["birthday party"], "instruction_options": ["rose gold"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MP7FOQ", "worker_id": "A1WS884SI0SLO4"}], "B0983MS3T8": [{"asin": "B0983MS3T8", "instruction": "i want a tripod that is easy to carry.", "attributes": ["quick release", "easy carry"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "37Z929RLGKIZMWY86444AIH4AOWSTO", "worker_id": "A15ERD4HOFEPHM"}], "B08DJ7PMV9": [{"asin": "B08DJ7PMV9", "instruction": "i'm looking for a travel size perfume that should be long lasting and free from alcohol. also choose clinique happy for men impression scented one.", "attributes": ["travel size", "alcohol free", "long lasting"], "options": ["scent: clinique happy for men impression"], "instruction_attributes": ["travel size", "alcohol free", "long lasting"], "instruction_options": ["clinique happy for men impression"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK97VNW", "worker_id": "AR0VJ5XRG16UJ"}], "B01KV6SE5U": [{"asin": "B01KV6SE5U", "instruction": "i am looking for a can of ready to eat smoked oysters.", "attributes": ["high protein", "gluten free", "protein serving", "ready eat"], "options": ["flavor name: oysters smoked"], "instruction_attributes": ["ready eat"], "instruction_options": ["oysters smoked"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LIX0LA", "worker_id": "A1EREKSZAA9V7B"}], "B075813R1S": [{"asin": "B075813R1S", "instruction": "i'm looking for a high quality tea tree oil with basil scent. choose the ones that come in 10 ml package.", "attributes": ["high quality", "tea tree"], "options": ["scent: basil", "size: 10 ml (pack of 1)"], "instruction_attributes": ["high quality", "tea tree"], "instruction_options": ["basil", "10 ml (pack of 1)"], "assignment_id": "3EJPLAJKEXQQLA9A5JQJV1MTDU56ZE", "worker_id": "A3MNXK3VDK37SN"}], "B07R83KXYZ": [{"asin": "B07R83KXYZ", "instruction": "i'm looking for an extra large men's valley jacket that will last a long time and is made from high quality materials.", "attributes": ["long lasting", "quality materials"], "options": ["color: crouton", "size: x-large"], "instruction_attributes": ["long lasting", "quality materials"], "instruction_options": ["x-large"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VKS8E4", "worker_id": "A2JP9IKRHNLRPI"}], "B09R7YYJM4": [{"asin": "B09R7YYJM4", "instruction": "i would like a medium green two piece swim suit with moisture wicking.", "attributes": ["loose fit", "moisture wicking", "slim fit", "tummy control", "long sleeve", "cotton spandex", "memory foam", "high waist", "tumble dry"], "options": ["color: hkfg-a390-green", "size: medium"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["hkfg-a390-green", "medium"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJPJZ8H", "worker_id": "A1WS884SI0SLO4"}], "B003O3P9EC": [{"asin": "B003O3P9EC", "instruction": "i'm looking for a pack of 2 guava jelly 1.06 oz jar with 0g trans", "attributes": ["low fat", "fat free", "0g trans"], "options": ["size: .2 pack - 1.06 ounce (pack of 1)"], "instruction_attributes": ["0g trans"], "instruction_options": [".2 pack - 1.06 ounce (pack of 1)"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQJLKEW", "worker_id": "A2Y2TURT2VEYZN"}], "B087D93CRX": [{"asin": "B087D93CRX", "instruction": "i would like a 3 pack of kugel meal kits that are fully cooked.", "attributes": ["fully cooked", "easy prepare", "shelf stable", "ready eat", "kosher certified"], "options": ["flavor name: kugel", "size: pack of 3"], "instruction_attributes": ["fully cooked"], "instruction_options": ["kugel", "pack of 3"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFSI3VQ", "worker_id": "A1WS884SI0SLO4"}], "B09KPCYCSD": [{"asin": "B09KPCYCSD", "instruction": "i would like a 5xl leopard t shirt with a short sleeve.", "attributes": ["hand wash", "machine wash", "contrast color", "fashion design", "relaxed fit", "short sleeve", "long sleeve"], "options": ["color: a13f-leopard", "size: 5x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["a13f-leopard", "5x-large"], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIMJ92P", "worker_id": "A1WS884SI0SLO4"}], "B094VQTWZ7": [{"asin": "B094VQTWZ7", "instruction": "i want to buy some earbuds that are easy to carry and are in color pinky girls.", "attributes": ["fast charging", "easy carry"], "options": ["color: pinky girls"], "instruction_attributes": ["easy carry"], "instruction_options": ["pinky girls"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LKKPSN", "worker_id": "A2YNPKYEFDZ6C9"}], "B07BLRKV7B": [{"asin": "B07BLRKV7B", "instruction": "i would like a glossy red keychain that is made of carbon fiber.", "attributes": ["light weight", "carbon fiber"], "options": ["color: glossy red - metal keychain"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["glossy red - metal keychain"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAJWOVO", "worker_id": "A1WS884SI0SLO4"}], "B08D7CT1XX": [{"asin": "B08D7CT1XX", "instruction": "add to my list a wizard of oz 3xlarge tshirt for men. should be officially licenced..", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: pink", "fit type: men", "size: 3x-large"], "instruction_attributes": ["officially licensed"], "instruction_options": ["men", "3x-large"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMNZVXY", "worker_id": "AHU9OLV0YKIIW"}], "B08GJ6ZLXB": [{"asin": "B08GJ6ZLXB", "instruction": "i am looking for some gluten free did someone say chipotle flavored seafood seasoning.", "attributes": ["gluten free", "non gmo", "usda organic", "low carb", "dairy free", "natural flavors"], "options": ["flavor name: did someone say chipotle", "size: 2.9 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["did someone say chipotle"], "assignment_id": "32SCWG5HISEW7674IASH43KF3VR6PM", "worker_id": "A1EREKSZAA9V7B"}], "B01499R1F4": [{"asin": "B01499R1F4", "instruction": "i would like a black file cabinets what are fully assembled.", "attributes": ["fully assembled", "coated steel"], "options": ["color: black"], "instruction_attributes": ["fully assembled"], "instruction_options": ["black"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIGI2LX", "worker_id": "A1WS884SI0SLO4"}], "B099RJHQZK": [{"asin": "B099RJHQZK", "instruction": "i am looking for a women's grey short sleeve mini dress.", "attributes": ["daily casual", "wash cold", "machine wash", "short sleeve", "relaxed fit"], "options": ["color: grey", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["grey"], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJV3BXS", "worker_id": "A1EREKSZAA9V7B"}], "B08MJ7Q4LM": [{"asin": "B08MJ7Q4LM", "instruction": "i need an easy to carry background that is 7 by 5 ft", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 7x5ft"], "instruction_attributes": ["easy carry"], "instruction_options": ["7x5ft"], "assignment_id": "3KIBXJ1WDG4LLLGS5E93PMK7UMYOKD", "worker_id": "A2ECRNQ3X5LEXD"}], "B07VG8CYTX": [{"asin": "B07VG8CYTX", "instruction": "i want a 64 gig data shur usb port drive.", "attributes": ["water resistant", "easy use", "usb port"], "options": ["size: 64gb", "style: datashur"], "instruction_attributes": ["usb port"], "instruction_options": ["64gb", "datashur"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UML0PRDG", "worker_id": "A1WS884SI0SLO4"}], "B093SYDS21": [{"asin": "B093SYDS21", "instruction": "i want blouse hosiery in white color", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery"], "instruction_options": [], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGROIYL", "worker_id": "A226L9F2AZ38CL"}], "B07XHRRRQ6": [{"asin": "B07XHRRRQ6", "instruction": "i am looking for some high protein salt n' vinegar flavored almonds.", "attributes": ["high protein", "source vitamin"], "options": ["flavor name: salt n' vinegar", "size: 6 ounce (pack of 1)"], "instruction_attributes": ["high protein"], "instruction_options": ["salt n' vinegar"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN4OOGF", "worker_id": "A1EREKSZAA9V7B"}], "B078PLG6MM": [{"asin": "B078PLG6MM", "instruction": "i want a 2 pack of garnier hair care fructis coconut oil conditioner.", "attributes": ["paraben free", "long lasting", "coconut oil"], "options": ["size: 10.2 fl oz (pack of 2)"], "instruction_attributes": ["coconut oil"], "instruction_options": ["10.2 fl oz (pack of 2)"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1IH80F", "worker_id": "A2RBF3IIJP15IH"}], "B08Y8J5ZTR": [{"asin": "B08Y8J5ZTR", "instruction": "i would like a high protein jerky.", "attributes": ["grass fed", "artificial ingredients", "gluten free", "low fat", "high protein", "low carb"], "options": [""], "instruction_attributes": ["high protein"], "instruction_options": [], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFJHVMG", "worker_id": "A1WS884SI0SLO4"}], "B08XZQBD3R": [{"asin": "B08XZQBD3R", "instruction": "i want some noise cancelling headset. it should be hands free.", "attributes": ["hands free", "noise cancelling"], "options": ["pattern name: headset", "size: on ear", "style: c300-xt"], "instruction_attributes": ["hands free", "noise cancelling"], "instruction_options": ["headset"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CT1T2O", "worker_id": "A1NF6PELRKACS9"}], "B00KXMJXY4": [{"asin": "B00KXMJXY4", "instruction": "iam looking for gmo free assortment - 38 pc", "attributes": ["gmo free", "artificial flavors"], "options": [""], "instruction_attributes": ["gmo free"], "instruction_options": [], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLICQKI3", "worker_id": "A9QRQL9CFJBI7"}], "B0084EHWDW": [{"asin": "B0084EHWDW", "instruction": "i'm looking for professional animal arco pet clipper kit.", "attributes": ["easy clean", "storage case"], "options": ["color: green apple"], "instruction_attributes": ["storage case"], "instruction_options": ["green apple"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHACNODK", "worker_id": "A21IUUHBSEVB56"}], "B09RJ3B1MF": [{"asin": "B09RJ3B1MF", "instruction": "i'm looking for long lasting eyeshadow pencils for women.", "attributes": ["long lasting", "easy apply", "highly pigmented", "eye shadow"], "options": ["color: 10#sky blue"], "instruction_attributes": ["long lasting", "eye shadow"], "instruction_options": [], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ589KC6", "worker_id": "A21IUUHBSEVB56"}], "B08DJB4MS5": [{"asin": "B08DJB4MS5", "instruction": "i am looking for a 3'x5' size of contemporary style area rugs", "attributes": ["easy clean", "contemporary style", "dining room"], "options": ["color: grey, yellow", "size: 3' x 5'"], "instruction_attributes": ["contemporary style"], "instruction_options": [], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZS150V", "worker_id": "A9QRQL9CFJBI7"}], "B09NNQTVYB": [{"asin": "B09NNQTVYB", "instruction": "i am looking for hands free, noise cancelling earphones in the color blue.", "attributes": ["hands free", "dust proof", "noise cancelling", "wireless bluetooth"], "options": ["color: s_blue"], "instruction_attributes": ["hands free", "noise cancelling"], "instruction_options": ["s_blue"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOHL1WL", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B09NNQTVYB", "instruction": "i am looking for a wireless bluetooth headphone with noise cancelling and dust proof. also in red color", "attributes": ["hands free", "dust proof", "noise cancelling", "wireless bluetooth"], "options": ["color: r_red"], "instruction_attributes": ["dust proof", "noise cancelling", "wireless bluetooth"], "instruction_options": ["r_red"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI8ZWSS1", "worker_id": "A2HMEGTAFO0CS8"}], "B094YV3VNZ": [{"asin": "B094YV3VNZ", "instruction": "i'm looking for bookshelf speaker.", "attributes": ["high performance", "plug play", "stereo sound"], "options": ["color: white | white walnut"], "instruction_attributes": ["high performance"], "instruction_options": ["white | white walnut"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5Y06Q3M", "worker_id": "A21IUUHBSEVB56"}], "B07MXS6N5N": [{"asin": "B07MXS6N5N", "instruction": "i am looking for an army green short sleeve polo shirt.", "attributes": ["hand wash", "cotton spandex", "classic fit", "short sleeve"], "options": ["color: a army green", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["large"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UWBJ6P", "worker_id": "A1EREKSZAA9V7B"}], "B098WM2956": [{"asin": "B098WM2956", "instruction": "i want blue velvet sectional couches for the living room.", "attributes": ["button tufted", "mid century", "living room"], "options": ["color: blue"], "instruction_attributes": ["living room"], "instruction_options": ["blue"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK4UIU6", "worker_id": "A2RBF3IIJP15IH"}], "B07QNTX6MQ": [{"asin": "B07QNTX6MQ", "instruction": "i am interested in buying a 13.5 inch intel core i5 processor based tablet which has a usb port.", "attributes": ["core i5", "intel core", "usb port"], "options": ["size: 13.5 in"], "instruction_attributes": ["core i5", "intel core", "usb port"], "instruction_options": ["13.5 in"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C9HHP8", "worker_id": "AHXHM1PQTRWIQ"}], "B09RWTPTVC": [{"asin": "B09RWTPTVC", "instruction": "i'm looking for a men's blue slim fit short sleeve shirt in size small.", "attributes": ["slim fit", "daily casual", "fleece lined", "hand wash", "machine wash", "tummy control", "short sleeve", "long sleeve"], "options": ["color: blue", "size: small"], "instruction_attributes": ["slim fit", "short sleeve"], "instruction_options": ["blue", "small"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCSH9BC", "worker_id": "A3MNXK3VDK37SN"}], "B08VVYWJ24": [{"asin": "B08VVYWJ24", "instruction": "i am looking for non-gmo, gluten-free and kosher certified mustard seeds.", "attributes": ["non gmo", "gluten free", "kosher certified", "dietary fiber"], "options": [""], "instruction_attributes": ["non gmo", "gluten free", "kosher certified"], "instruction_options": [], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8SKQQP", "worker_id": "AJDQGOTMB2D80"}], "B093SXGCZH": [{"asin": "B093SXGCZH", "instruction": "i'm in need of a pair of laundry bags made from mesh.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUBR9AE", "worker_id": "A2JP9IKRHNLRPI"}], "B00BIM3JLQ": [{"asin": "B00BIM3JLQ", "instruction": "i want black dunham men's revchase slip-ons with memory foam.", "attributes": ["ethylene vinyl", "vinyl acetate", "memory foam", "rubber sole"], "options": ["color: black", "size: 12"], "instruction_attributes": ["memory foam"], "instruction_options": ["black"], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1MCFTGG", "worker_id": "A2RBF3IIJP15IH"}], "B00U3TE9ZU": [{"asin": "B00U3TE9ZU", "instruction": "i'm looking for a long lasting foundation that has spf50+. also, choose the color no. 21.", "attributes": ["long lasting", "dark circles"], "options": ["color: no.21"], "instruction_attributes": ["long lasting"], "instruction_options": ["no.21"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLKZ2FV", "worker_id": "A1TWVJS27CL3KT"}], "B09FXVQ8WN": [{"asin": "B09FXVQ8WN", "instruction": "i am looking for a sugar free starburst cherry flavored energy drink.", "attributes": ["sugar free", "artificial colors", "zero sugar"], "options": ["flavor name: starburst cherry", "size: 16 fl oz (pack of 12)"], "instruction_attributes": ["sugar free"], "instruction_options": ["starburst cherry"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK59J3J", "worker_id": "A1EREKSZAA9V7B"}], "B01LYH3JZR": [{"asin": "B01LYH3JZR", "instruction": "i am looking for ivory color entryway plush 2-inch thick area rug of size 2 ft 3 in x 12 ft for living room", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: ivory | gold", "item shape: square", "size: 2 ft 3 in x 12 ft"], "instruction_attributes": ["living room"], "instruction_options": ["ivory | gold", "2 ft 3 in x 12 ft"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4EQRQV", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B01LYH3JZR", "instruction": "i need to buy a nine foot round rug in ivory and green for my living room.", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: ivory | green", "item shape: round", "size: 9 ft"], "instruction_attributes": ["living room"], "instruction_options": ["ivory | green", "round", "9 ft"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOWY937", "worker_id": "AR9AU5FY1S3RO"}], "B08TB67HC2": [{"asin": "B08TB67HC2", "instruction": "i would like a dark green pair of hair cutting sheers.", "attributes": ["easy clean", "hair cutting"], "options": ["color: dark green"], "instruction_attributes": ["hair cutting"], "instruction_options": ["dark green"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FJ6LEG", "worker_id": "A1WS884SI0SLO4"}], "B0073GO7FS": [{"asin": "B0073GO7FS", "instruction": "i'm looking for under armour tech short sleeve t-shirt for men.", "attributes": ["quick drying", "machine wash", "imported zipper", "short sleeve"], "options": ["color: rocket red (984) | black", "size: large tall"], "instruction_attributes": ["short sleeve"], "instruction_options": ["large tall"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8KHZN4", "worker_id": "A21IUUHBSEVB56"}], "B0846WX23D": [{"asin": "B0846WX23D", "instruction": "i am looking for a 4 light vanity light with a contemporary design.", "attributes": ["assembly required", "vanity light", "contemporary design"], "options": [""], "instruction_attributes": ["vanity light", "contemporary design"], "instruction_options": [], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUNCPI8B", "worker_id": "A1EREKSZAA9V7B"}], "B0182YDWS2": [{"asin": "B0182YDWS2", "instruction": "i am looking for betty crocker fruit by the foot with no artificial flavors in a pack of 36.", "attributes": ["source vitamin", "artificial flavors"], "options": ["size: 36 count (pack of 1)"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["36 count (pack of 1)"], "assignment_id": "30LB5CDZNNKV7ZNV3UA2M0C20SS0ZI", "worker_id": "AK3JMCIGU8MLU"}], "B07SZ2Z19Z": [{"asin": "B07SZ2Z19Z", "instruction": "i am looking for open toe women's sandals of size 8.5", "attributes": ["open toe", "closed toe", "high heel", "ankle strap", "arch support"], "options": ["color: z95-hot pink", "size: 8.5"], "instruction_attributes": ["open toe"], "instruction_options": ["8.5"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWP2Y0GT", "worker_id": "A1Q8PPQQCWGY0D"}], "B07WD5TFFT": [{"asin": "B07WD5TFFT", "instruction": "i would like some wild caught oysters.", "attributes": ["wild caught", "natural ingredients"], "options": [""], "instruction_attributes": ["wild caught"], "instruction_options": [], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNR0IJXR", "worker_id": "A1WS884SI0SLO4"}], "B08BNQHLLR": [{"asin": "B08BNQHLLR", "instruction": "i'm looking for flannel throw blanket sherpa microfiber bed sofa.", "attributes": ["super soft", "fleece throw"], "options": ["color: bohemia feathers", "size: 60\"x50\" blanket for teens"], "instruction_attributes": ["super soft"], "instruction_options": ["60\"x50\" blanket for teens"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E05HX7X", "worker_id": "A21IUUHBSEVB56"}], "B09C3XS9N3": [{"asin": "B09C3XS9N3", "instruction": "i need an easy to clean hydraulic chair that is heavy duty. it is for my hair salon.", "attributes": ["easy clean", "heavy duty", "beauty salon", "hair salon"], "options": [""], "instruction_attributes": ["easy clean", "heavy duty", "hair salon"], "instruction_options": [], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNOTNTA", "worker_id": "A1NF6PELRKACS9"}], "B08RN71L4L": [{"asin": "B08RN71L4L", "instruction": "i am interested in buying a green linen arm chair of faux leather for the living room.", "attributes": ["mid century", "assembly required", "easy clean", "faux leather", "living room"], "options": ["color: green linen", "size: c- cute tufted lamb"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["green linen"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2V35M7", "worker_id": "AHXHM1PQTRWIQ"}], "B09N797XCY": [{"asin": "B09N797XCY", "instruction": "i am looking for king size bed having wood frame.", "attributes": ["faux leather", "box spring", "memory foam", "wood frame"], "options": ["color: white", "size: king"], "instruction_attributes": ["wood frame"], "instruction_options": ["king"], "assignment_id": "326O153BMT8RVOXTJJKKGXV36B1EDS", "worker_id": "A1Q8PPQQCWGY0D"}], "B0759ZTCPK": [{"asin": "B0759ZTCPK", "instruction": "i'm looking for a large pack of candles that are honeycomb veriglass scented please? i", "attributes": ["lead free", "long lasting"], "options": ["color: hollyberry", "size: 18-pack"], "instruction_attributes": ["long lasting"], "instruction_options": ["18-pack"], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH37EZSEO", "worker_id": "A2TRV8SEM003GG"}, {"asin": "B0759ZTCPK", "instruction": "please find a root candles honeycomb veriglass scented, lead free, color bayberry .", "attributes": ["lead free", "long lasting"], "options": ["color: bayberry", "size: 8-count"], "instruction_attributes": ["lead free"], "instruction_options": ["bayberry"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZJW7C0", "worker_id": "A15IJ20C3R4HUO"}], "B07V7R8SQN": [{"asin": "B07V7R8SQN", "instruction": "looking for cotton heather t shirt which is machine washable also choose colour dark heather", "attributes": ["machine wash", "drawstring closure", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: dark heather", "fit type: men", "size: 3t"], "instruction_attributes": ["machine wash", "cotton heather"], "instruction_options": ["dark heather", "men"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MML6J12", "worker_id": "A10OGH5CQBXL5N"}], "B08ZXPRPKM": [{"asin": "B08ZXPRPKM", "instruction": "i would like a wolf moon hair cutting kit.", "attributes": ["water resistant", "hair cutting", "hair styling", "hair dye", "hair salon"], "options": ["color: wolf moon"], "instruction_attributes": ["hair cutting"], "instruction_options": ["wolf moon"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCS4BMV", "worker_id": "A1WS884SI0SLO4"}], "B06XF36LSS": [{"asin": "B06XF36LSS", "instruction": "i am looking for a long lasting brown colored liquid eyeliner.", "attributes": ["long lasting", "eye shadow"], "options": ["color: brown", "size: 1 count"], "instruction_attributes": ["long lasting"], "instruction_options": ["brown"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQSZP0Y", "worker_id": "AJDQGOTMB2D80"}], "B0998FBRB9": [{"asin": "B0998FBRB9", "instruction": "i want to buy sneakers for men which have a rubber sole, and are of navy color, while the size should be 13.", "attributes": ["lace closure", "rubber outsole", "rubber sole"], "options": ["color: navy | white", "size: 13"], "instruction_attributes": ["rubber sole"], "instruction_options": ["navy | white", "13"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0WSACU", "worker_id": "AJY5G987IRT25"}], "B09BZ939LC": [{"asin": "B09BZ939LC", "instruction": "i am looking for some high quality 14mm false eyelashes.", "attributes": ["easy apply", "high quality"], "options": ["size: 14mm"], "instruction_attributes": ["high quality"], "instruction_options": ["14mm"], "assignment_id": "3R2PKQ87N7I6FN5SSV9EK2GP7H4IMP", "worker_id": "A1EREKSZAA9V7B"}], "B0771PPM5C": [{"asin": "B0771PPM5C", "instruction": "i am looking for an easy to hang 24 inch by 32 inch floral oil painting for my living room.", "attributes": ["ready hang", "dining room", "living room"], "options": ["size: 24x32inch (60x80cm)"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["24x32inch (60x80cm)"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYSQN7O", "worker_id": "A1EREKSZAA9V7B"}], "B00CWTZ408": [{"asin": "B00CWTZ408", "instruction": "i am looking for some gluten and sugar free irish cream syrup.", "attributes": ["sugar free", "keto friendly", "fat free", "gluten free", "zero sugar"], "options": ["flavor name: sugar free irish cream", "size: 25.4 fl oz (pack of 12)"], "instruction_attributes": ["sugar free", "gluten free"], "instruction_options": ["sugar free irish cream"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOKDTCW", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00CWTZ408", "instruction": "i am looking for sugar free blue raspberry syrup.", "attributes": ["sugar free", "keto friendly", "fat free", "gluten free", "zero sugar"], "options": ["flavor name: sugar free blue raspberry", "size: 25.4-ounce (pack of 3)"], "instruction_attributes": ["sugar free"], "instruction_options": ["sugar free blue raspberry"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3J6YRW", "worker_id": "A1EREKSZAA9V7B"}], "B091MLZ1QX": [{"asin": "B091MLZ1QX", "instruction": "i'm looking for a 198 gram box of crunchy organic breakfast cereal; it must suit my high-protein, gluten-free diet.", "attributes": ["plant based", "dairy free", "non gmo", "low sugar", "gluten free", "protein serving", "soy free", "kosher certified"], "options": ["flavor name: berry", "size: 198 gram"], "instruction_attributes": ["gluten free", "protein serving"], "instruction_options": ["198 gram"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPD10AIK", "worker_id": "A3LIIE572Z4OG7"}], "B089B6814K": [{"asin": "B089B6814K", "instruction": "can you direct me to a pair of women's shorts? i want them to have elastic waist and come in black, please", "attributes": ["fleece lined", "wide leg", "short sleeve", "long sleeve", "closed toe", "elastic waist", "teen girls"], "options": ["color: b-black", "size: 3x-large"], "instruction_attributes": ["short sleeve", "elastic waist", "teen girls"], "instruction_options": ["b-black"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X028M34F", "worker_id": "A2TRV8SEM003GG"}], "B07QB9NBLD": [{"asin": "B07QB9NBLD", "instruction": "i'm looking for a 4oz baked fresh vanilla rum cake", "attributes": ["baked fresh", "quality ingredients", "gift basket"], "options": ["size: 4 ounce (pack of 4)"], "instruction_attributes": ["baked fresh"], "instruction_options": ["4 ounce (pack of 4)"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB44RYX0", "worker_id": "A2Y2TURT2VEYZN"}], "B09RB5K9NL": [{"asin": "B09RB5K9NL", "instruction": "i'm looking for a machine washable, regular fit men's shorts with tummy control elastic waist band and has drawstring closure for gym workout. also choose 3x-large size black colored one.", "attributes": ["loose fit", "wide leg", "wash cold", "hand wash", "machine wash", "elastic waist", "regular fit", "drawstring closure", "elastic waistband", "tummy control", "gym workout"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["machine wash", "regular fit", "drawstring closure", "elastic waistband", "tummy control", "gym workout"], "instruction_options": ["black", "3x-large"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOH4W1Z", "worker_id": "AR0VJ5XRG16UJ"}], "B084BY1GZ4": [{"asin": "B084BY1GZ4", "instruction": "i need aluminum tripod legs", "attributes": ["carbon fiber", "aluminum alloy"], "options": [""], "instruction_attributes": ["aluminum alloy"], "instruction_options": [], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUP54SU", "worker_id": "A2ECRNQ3X5LEXD"}], "B095W7W8XX": [{"asin": "B095W7W8XX", "instruction": "i am looking for yellow birthday cake candles.", "attributes": ["birthday cake", "birthday party"], "options": ["size: 1"], "instruction_attributes": ["birthday cake"], "instruction_options": ["1"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCIAVABO", "worker_id": "A2KW17G25L25R8"}], "B00DLJ4JE0": [{"asin": "B00DLJ4JE0", "instruction": "i want to buy caffeine free herbal tea in a pack of 1.", "attributes": ["caffeine free", "usda organic"], "options": ["size: pack of 1"], "instruction_attributes": ["caffeine free"], "instruction_options": ["pack of 1"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOKLCTN", "worker_id": "AHXHM1PQTRWIQ"}, {"asin": "B00DLJ4JE0", "instruction": "i'm looking for organic, caffeine free elderberry tea. i want a pack of one.", "attributes": ["caffeine free", "usda organic"], "options": ["size: pack of 1"], "instruction_attributes": ["caffeine free", "usda organic"], "instruction_options": ["pack of 1"], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1MD2TG5", "worker_id": "AR9AU5FY1S3RO"}], "B09PLH5ZF6": [{"asin": "B09PLH5ZF6", "instruction": "i want a women slip resistant red color shoes with size 10.5", "attributes": ["slip resistant", "daily wear"], "options": ["color: red", "size: 10.5"], "instruction_attributes": ["slip resistant"], "instruction_options": ["red", "10.5"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L5XCVZ", "worker_id": "A1V2C99HEV3F14"}], "B07GV63JCB": [{"asin": "B07GV63JCB", "instruction": "plus size black velvet cropped and shorts set", "attributes": ["elastic closure", "elastic waist"], "options": ["color: black", "size: large"], "instruction_attributes": [], "instruction_options": ["black", "large"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35QLUG7", "worker_id": "A3TTGSUBIK1YCL"}], "B099QN26PT": [{"asin": "B099QN26PT", "instruction": "i'm looking for a black speaker with a carrying case that is easy to use.", "attributes": ["easy use", "carrying case"], "options": ["color: black"], "instruction_attributes": ["easy use", "carrying case"], "instruction_options": ["black"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNWBJFR", "worker_id": "AFU00NU09CFXE"}], "B08L1VR9KX": [{"asin": "B08L1VR9KX", "instruction": "i am looking for a space saving side table for the living room. also, i would like it to be in blue color.", "attributes": ["space saving", "living room"], "options": ["color: blue"], "instruction_attributes": ["space saving", "living room"], "instruction_options": ["blue"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTSGV45", "worker_id": "AJDQGOTMB2D80"}], "B09MHFT1NS": [{"asin": "B09MHFT1NS", "instruction": "i want a mydrinkbomb cocktail bombs tequila sunrise mix gift set.", "attributes": ["non alcoholic", "hand crafted", "dairy free", "non gmo", "gluten free", "natural flavors", "quality ingredients", "natural ingredients", "gift set", "great gift"], "options": ["flavor name: tequilasunrise"], "instruction_attributes": ["gift set"], "instruction_options": ["tequilasunrise"], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL80AEI", "worker_id": "A2RBF3IIJP15IH"}], "B078MHP88P": [{"asin": "B078MHP88P", "instruction": "i would like a bronze floor lamp with a glass shade.", "attributes": ["glass shade", "living room"], "options": ["color: bronze | red"], "instruction_attributes": ["glass shade"], "instruction_options": ["bronze | red"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTW37LH", "worker_id": "A1WS884SI0SLO4"}], "B09N3MQTZD": [{"asin": "B09N3MQTZD", "instruction": "i am interested in long sleeved white pullovers that are casual", "attributes": ["daily casual", "long sleeve", "unique design", "polyester spandex", "teen girls"], "options": ["color: d1-white", "size: small"], "instruction_attributes": ["daily casual"], "instruction_options": ["d1-white"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANKHXS9", "worker_id": "A2ECRNQ3X5LEXD"}], "B081DWH12M": [{"asin": "B081DWH12M", "instruction": "i am looking for a women's navy t-shirt that is machine washable.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: women", "size: 3t"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy", "women"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GO0C39N", "worker_id": "A1EREKSZAA9V7B"}], "B09LQN4KNL": [{"asin": "B09LQN4KNL", "instruction": "i want a medium gray long leave hoodie.", "attributes": ["faux fur", "button closure", "short sleeve", "long sleeve", "teen girls"], "options": ["color: yingcaier4#gray", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["yingcaier4#gray", "medium"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907WYUAN", "worker_id": "A1WS884SI0SLO4"}], "B08KLJFLVJ": [{"asin": "B08KLJFLVJ", "instruction": "let's see some sandals in vinyl acetate. it should have ponderosa pine puma white as color.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: ponderosa pine puma white", "size: 10"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["ponderosa pine puma white"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOL2TCN", "worker_id": "A15ERD4HOFEPHM"}], "B08DR34W4T": [{"asin": "B08DR34W4T", "instruction": "i am looking for a heavy duty line beige color massage chair.", "attributes": ["heavy duty", "non toxic", "high quality"], "options": ["color: line beige"], "instruction_attributes": ["heavy duty"], "instruction_options": ["line beige"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYUIXFL", "worker_id": "A1Q8PPQQCWGY0D"}], "B07DPS382X": [{"asin": "B07DPS382X", "instruction": "i want to buy tweezers which are stainless steel and have red color.", "attributes": ["stainless steel", "hair removal"], "options": ["color: red"], "instruction_attributes": ["stainless steel"], "instruction_options": ["red"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZTOSHZ", "worker_id": "AJY5G987IRT25"}], "B09R42V2Z9": [{"asin": "B09R42V2Z9", "instruction": "i want gluten free bakell green & gold edible brew glitter.", "attributes": ["kosher certified", "gluten free", "easy use", "dairy free"], "options": ["color: green & gold"], "instruction_attributes": ["gluten free"], "instruction_options": ["green & gold"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBWFGI4", "worker_id": "A2RBF3IIJP15IH"}], "B08HP82QDL": [{"asin": "B08HP82QDL", "instruction": "i am looking for a pacific northwest raspberry flavored syrup that has quality ingredients.", "attributes": ["quality ingredients", "artificial colors"], "options": ["flavor name: pacific northwest raspberry", "size: 12.7 fluid ounce (pack of 6)"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["pacific northwest raspberry"], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVI1BIU", "worker_id": "A1EREKSZAA9V7B"}], "B000LKUZOU": [{"asin": "B000LKUZOU", "instruction": "i would like a 30 ounce bag of quick cook steel cut oats that are usda organic.", "attributes": ["old fashioned", "non gmo", "usda organic", "plant based", "simple ingredients", "artificial colors", "artificial flavors"], "options": ["flavor name: quick cook steel cut oats", "size: 30 ounce (pack of 6)"], "instruction_attributes": ["usda organic"], "instruction_options": ["quick cook steel cut oats", "30 ounce (pack of 6)"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3H3NQ5", "worker_id": "A1WS884SI0SLO4"}], "B07MD7VN92": [{"asin": "B07MD7VN92", "instruction": "i'm interested in a blue long-sleeved sweatshirt in an xx-large that is warm for winter.", "attributes": ["winter warm", "long sleeve"], "options": ["color: blue", "size: xx-large"], "instruction_attributes": ["winter warm", "long sleeve"], "instruction_options": ["blue", "xx-large"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BQWJVC", "worker_id": "AFU00NU09CFXE"}], "B07K2VHZ7B": [{"asin": "B07K2VHZ7B", "instruction": "i would like a 4 ft rectangular pink rug for the living room.", "attributes": ["spot clean", "easy clean", "dining room", "living room"], "options": ["color: light grey | pink", "item shape: rectangular", "size: 4 ft"], "instruction_attributes": ["living room"], "instruction_options": ["light grey | pink", "rectangular", "4 ft"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1HPCXO", "worker_id": "A1WS884SI0SLO4"}], "B00DUIEUIM": [{"asin": "B00DUIEUIM", "instruction": "i'm looking for a fresh baked desserts which is free from dairy and nut. also choose a pack of 6 one.", "attributes": ["baked fresh", "nut free", "dairy free"], "options": ["size: 6 pack"], "instruction_attributes": ["baked fresh", "nut free", "dairy free"], "instruction_options": ["6 pack"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWSKW6X", "worker_id": "AR0VJ5XRG16UJ"}], "B07S6H9KYS": [{"asin": "B07S6H9KYS", "instruction": "i am looking for a long lasting blue caftan dress in the size small-medium.", "attributes": ["long lasting", "easy care"], "options": ["color: blue", "size: small-medium"], "instruction_attributes": ["long lasting"], "instruction_options": ["blue", "small-medium"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALDDH49", "worker_id": "AK3JMCIGU8MLU"}], "B08F3TJDQY": [{"asin": "B08F3TJDQY", "instruction": "i am looking for a non oem replacement tv remote control with the aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": ["style: non-oem"], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": ["non-oem"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P78YVSR", "worker_id": "A1EREKSZAA9V7B"}], "B09NN8KRJW": [{"asin": "B09NN8KRJW", "instruction": "i want a m500 hands free in dash navigation device.", "attributes": ["hands free", "high definition", "high resolution"], "options": ["color: m500s8core4+64"], "instruction_attributes": ["high definition"], "instruction_options": ["m500s8core4+64"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCWJXGGM", "worker_id": "A1WS884SI0SLO4"}], "B01MU0IJKG": [{"asin": "B01MU0IJKG", "instruction": "i am looking for 6'7\" round size area rug for my living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: cream | light grey", "size: 6'7\" round"], "instruction_attributes": ["living room"], "instruction_options": ["6'7\" round"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXP12ZR", "worker_id": "A1Q8PPQQCWGY0D"}], "B088K6CYHC": [{"asin": "B088K6CYHC", "instruction": "i am looking for a homebeez round storage ottoman with button tuffs in beige.", "attributes": ["button tufted", "storage space", "living room"], "options": ["color: milk"], "instruction_attributes": ["button tufted"], "instruction_options": ["milk"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AM5YU3", "worker_id": "A2KW17G25L25R8"}], "B07XPSC3B7": [{"asin": "B07XPSC3B7", "instruction": "i am looking for a barstool in walnut grey that is faux leather", "attributes": ["faux leather", "wood finish", "wood frame"], "options": ["color: walnut | grey", "size: 26\" counter height"], "instruction_attributes": ["faux leather"], "instruction_options": ["walnut | grey"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP3TXTW", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B07XPSC3B7", "instruction": "shop for twenty eight inch faux leather bar stools in cream.", "attributes": ["faux leather", "wood finish", "wood frame"], "options": ["color: cream", "size: 28.5\" bar height"], "instruction_attributes": ["faux leather"], "instruction_options": ["cream", "28.5\" bar height"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTDSN94", "worker_id": "AR9AU5FY1S3RO"}], "B09CGWQ952": [{"asin": "B09CGWQ952", "instruction": "i am looking for a long lasting sweet pea scented soy wax candle.", "attributes": ["long lasting", "soy wax"], "options": ["scent: sweet pea"], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": ["sweet pea"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107D8LIM", "worker_id": "A1EREKSZAA9V7B"}], "B07KPX1VZR": [{"asin": "B07KPX1VZR", "instruction": "i want to get a large men's classic fit t-shirt with an officially licensed logo on it.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["fit type: men", "size: large"], "instruction_attributes": ["officially licensed", "classic fit"], "instruction_options": ["men", "large"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGNO2WS", "worker_id": "A2YNPKYEFDZ6C9"}], "B0009F3PJ4": [{"asin": "B0009F3PJ4", "instruction": "i want a 16 count of chamomile herbal tea that is certified organic.", "attributes": ["caffeine free", "certified organic", "non gmo"], "options": ["flavor name: chamomile", "size: 16 count (pack of 4)"], "instruction_attributes": ["certified organic"], "instruction_options": ["chamomile", "16 count (pack of 4)"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EIFWSJ", "worker_id": "A1WS884SI0SLO4"}], "B09NKFSTNY": [{"asin": "B09NKFSTNY", "instruction": "i need some rose gold cosmetic bags", "attributes": ["high quality", "rose gold"], "options": ["color: tropical plant 137"], "instruction_attributes": ["rose gold"], "instruction_options": ["tropical plant 137"], "assignment_id": "3EO896NRA756NTFIJAVQIHQHE5FJTV", "worker_id": "A2ECRNQ3X5LEXD"}], "B06ZYGR25T": [{"asin": "B06ZYGR25T", "instruction": "i am looking for faux leather bar stools in black.", "attributes": ["faux leather", "wood finish", "solid wood"], "options": ["color: black bar height stools", "style: black bar height stools"], "instruction_attributes": ["faux leather"], "instruction_options": ["black bar height stools"], "assignment_id": "39O5D9O8742EGYBIU38DD09OUL33CS", "worker_id": "A2KW17G25L25R8"}], "B09CH4DL6X": [{"asin": "B09CH4DL6X", "instruction": "i would like high power amplifier.", "attributes": ["power amplifier", "high power"], "options": [""], "instruction_attributes": ["power amplifier", "high power"], "instruction_options": [], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N9P7TK", "worker_id": "A1WS884SI0SLO4"}], "B07WZRRYWP": [{"asin": "B07WZRRYWP", "instruction": "i am looking for a blue leather sole loafers & slip-ons", "attributes": ["leather sole", "memory foam"], "options": ["color: blue", "size: 8"], "instruction_attributes": ["leather sole"], "instruction_options": ["blue"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU4NALP", "worker_id": "A9QRQL9CFJBI7"}], "B08LV7ZHBM": [{"asin": "B08LV7ZHBM", "instruction": "i am looking for an easy to assemble blue ottoman for my living room.", "attributes": ["long lasting", "easy assemble", "storage space", "contemporary design", "living room"], "options": ["color: blue", "size: 31.9\"l x 18\"w x 18.3\"h"], "instruction_attributes": ["easy assemble", "living room"], "instruction_options": ["blue"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBVMEJU", "worker_id": "A1EREKSZAA9V7B"}], "B09JSKHJ3P": [{"asin": "B09JSKHJ3P", "instruction": "i'm looking for matte white with black finish ceiling light fixture.", "attributes": ["mid century", "easy install", "easy clean", "pendant light", "light fixture", "dining room"], "options": ["color: black", "style: matte"], "instruction_attributes": ["mid century", "dining room"], "instruction_options": ["black", "matte"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIZCT9H", "worker_id": "A21IUUHBSEVB56"}], "B09BR5Q9P6": [{"asin": "B09BR5Q9P6", "instruction": "i would like a grey laptop case that is water resistant.", "attributes": ["easy carry", "water resistant"], "options": ["color: grey"], "instruction_attributes": ["water resistant"], "instruction_options": ["grey"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALD44HN", "worker_id": "A1WS884SI0SLO4"}], "B08C32FKC4": [{"asin": "B08C32FKC4", "instruction": "i need a turntable that is hands free", "attributes": ["hands free", "easy carry"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZO5R74", "worker_id": "A2ECRNQ3X5LEXD"}], "B007C99UN0": [{"asin": "B007C99UN0", "instruction": "i am looking for 1 pound box of easter egg sugar cookies baked fresh", "attributes": ["baked fresh", "quality ingredients"], "options": ["size: 1 pound box"], "instruction_attributes": ["baked fresh"], "instruction_options": ["1 pound box"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZO0R7Z", "worker_id": "A258PTOZ3D2TQR"}], "B009LO30S0": [{"asin": "B009LO30S0", "instruction": "i'm looking for a kosher certified individually wrapped wafers. also choose vanilla flavored one.", "attributes": ["kosher certified", "individually wrapped"], "options": ["flavor name: vanilla"], "instruction_attributes": ["kosher certified", "individually wrapped"], "instruction_options": ["vanilla"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4K115O", "worker_id": "AR0VJ5XRG16UJ"}], "B08K8S615G": [{"asin": "B08K8S615G", "instruction": "i am interested in buying a toothbrush that is easy to carry and useful for sensitive teeth.", "attributes": ["easy carry", "sensitive teeth"], "options": [""], "instruction_attributes": ["easy carry", "sensitive teeth"], "instruction_options": [], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFE7VLU", "worker_id": "AHXHM1PQTRWIQ"}], "B093SRHSC4": [{"asin": "B093SRHSC4", "instruction": "i'm interested in a heavy duty adjustable desk in a size 48\" x 30\" with a white frame and walnut top.", "attributes": ["height adjustable", "heavy duty"], "options": ["color: walnut top + white frame", "size: 48\" x 30\""], "instruction_attributes": ["height adjustable", "heavy duty"], "instruction_options": ["walnut top + white frame", "48\" x 30\""], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2CTY7O", "worker_id": "AFU00NU09CFXE"}], "B09FCGL679": [{"asin": "B09FCGL679", "instruction": "i'm looking for zero sugar real ginger ale from reed.", "attributes": ["zero sugar", "natural flavors", "natural ingredients"], "options": ["flavor name: shirley tempting", "size: 12 ounce (pack of 8)"], "instruction_attributes": ["zero sugar"], "instruction_options": ["12 ounce (pack of 8)"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSRA0XZ", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B09FCGL679", "instruction": "i would like a 12 ounce slim cans of zero sugar ginger ale.", "attributes": ["zero sugar", "natural flavors", "natural ingredients"], "options": ["flavor name: zero sugar ginger ale", "size: 12 ounce slim cans (pack of 4)"], "instruction_attributes": ["zero sugar"], "instruction_options": ["zero sugar ginger ale", "12 ounce slim cans (pack of 4)"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8M26QS", "worker_id": "A1WS884SI0SLO4"}], "B087KQ2Y2P": [{"asin": "B087KQ2Y2P", "instruction": "i'm looking for a peanut butter which is fat free with real fruit and should be 0.8ounce (pack of 12).", "attributes": ["fat free", "soy free", "non gmo", "real fruit"], "options": ["flavor name: peanut butter", "size: 0.8 ounce (pack of 12)"], "instruction_attributes": ["fat free", "real fruit"], "instruction_options": ["peanut butter", "0.8 ounce (pack of 12)"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU4FALH", "worker_id": "A1Q0EUNCS50S8M"}], "B097DKFPKC": [{"asin": "B097DKFPKC", "instruction": "can you direct me to an android tablet that has outstanding performance? i'd like a gold one please, and it's 10.1 inches", "attributes": ["high definition", "fast charging", "high performance", "usb port"], "options": ["color: gold", "size: 10.1inch"], "instruction_attributes": ["high performance"], "instruction_options": ["gold", "10.1inch"], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60SAAAT", "worker_id": "A2TRV8SEM003GG"}], "B076CPL8MD": [{"asin": "B076CPL8MD", "instruction": "i would like a blackberry bay shampoo for damaged hair.", "attributes": ["sulfate free", "paraben free", "argan oil", "natural ingredients", "damaged hair"], "options": ["scent: blackberry bay"], "instruction_attributes": ["damaged hair"], "instruction_options": ["blackberry bay"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB44WYX5", "worker_id": "A1WS884SI0SLO4"}], "B089GM2W23": [{"asin": "B089GM2W23", "instruction": "i would like a pair of no mic earbud headphones that have stereo sound.", "attributes": ["aluminum alloy", "stereo sound"], "options": ["color: purple", "size: no mic"], "instruction_attributes": ["stereo sound"], "instruction_options": ["purple", "no mic"], "assignment_id": "3HPZF4IVNX3FW186JO133U513M6CYF", "worker_id": "A1WS884SI0SLO4"}], "B09PYXVSWY": [{"asin": "B09PYXVSWY", "instruction": "i need mid century dining furniture in a 35.4 by 13.2 by 32.7 dimension.", "attributes": ["mid century", "dining room", "living room"], "options": ["size: 35.4\" x 13.2\" x 32.7\" (w x d x h)"], "instruction_attributes": ["mid century"], "instruction_options": ["35.4\" x 13.2\" x 32.7\" (w x d x h)"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CGD0V7", "worker_id": "A2ECRNQ3X5LEXD"}], "B07MTMJQDZ": [{"asin": "B07MTMJQDZ", "instruction": "i need an eco friendly black charcoal conditioner", "attributes": ["eco friendly", "dry hair"], "options": ["style: black charcoal"], "instruction_attributes": ["eco friendly"], "instruction_options": ["black charcoal"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSNV2QE", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MQ6GZZS": [{"asin": "B09MQ6GZZS", "instruction": "look for metal full over full bunks, floor bunks with full size bunk frame, silver, space saving is all i need for my new home.", "attributes": ["space saving", "easy assemble", "box spring"], "options": ["color: silver", "size: full over full"], "instruction_attributes": ["space saving"], "instruction_options": ["silver", "full over full"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGADLSF", "worker_id": "A15IJ20C3R4HUO"}], "B086BY6ZJX": [{"asin": "B086BY6ZJX", "instruction": "i want a gold and individually wrapped survive permanent match metal.", "attributes": ["old fashioned", "individually wrapped"], "options": ["color: gold"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["gold"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYQ5DHH", "worker_id": "A2RBF3IIJP15IH"}], "B07RW2YL7S": [{"asin": "B07RW2YL7S", "instruction": "i want to buy a easy to carry and easy to clean water resistant shaving set for a lady.", "attributes": ["water resistant", "easy carry", "easy clean", "hair removal", "sensitive skin"], "options": [""], "instruction_attributes": ["easy carry", "easy clean"], "instruction_options": [], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53ZYKGB", "worker_id": "AHXHM1PQTRWIQ"}], "B07KSGBV2S": [{"asin": "B07KSGBV2S", "instruction": "i would like a eggplant eyeshadow that is for sensitive skin.", "attributes": ["highly pigmented", "water resistant", "easy apply", "cruelty free", "eye shadow", "dry skin", "sensitive skin"], "options": ["color: eggplant"], "instruction_attributes": ["eye shadow", "sensitive skin"], "instruction_options": ["eggplant"], "assignment_id": "351SEKWQSBRP7CP60H83T50CFCVMDQ", "worker_id": "A1WS884SI0SLO4"}], "B08QMXQVBC": [{"asin": "B08QMXQVBC", "instruction": "i'm having a kids birthday party and need a pack of 36 gold cupcake picks.", "attributes": ["birthday party", "cupcake picks"], "options": ["color: gold"], "instruction_attributes": ["birthday party", "cupcake picks"], "instruction_options": ["gold"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHIMBN3", "worker_id": "A3LIIE572Z4OG7"}], "B07V8L7FMH": [{"asin": "B07V8L7FMH", "instruction": "i am looking for a 1/2 dozen cameron's seafood large female maryland crabs.", "attributes": ["fully cooked", "ready eat"], "options": ["style: 1 | 2 bushel"], "instruction_attributes": ["fully cooked"], "instruction_options": ["1 | 2 bushel"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54UI83R", "worker_id": "A2KW17G25L25R8"}], "B09NMYP3YP": [{"asin": "B09NMYP3YP", "instruction": "i would like a g7 plus 2.4 gig streaming media player that is high speed.", "attributes": ["dual band", "high speed"], "options": ["color: g7 plus 2.4g | 5g"], "instruction_attributes": ["high speed"], "instruction_options": ["g7 plus 2.4g | 5g"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PQFQEY", "worker_id": "A1WS884SI0SLO4"}], "B07KRQ3DWJ": [{"asin": "B07KRQ3DWJ", "instruction": "i am interested in a navy blue regular fit polo", "attributes": ["quick drying", "regular fit", "button closure"], "options": ["color: team navy blue | white", "size: medium"], "instruction_attributes": ["regular fit"], "instruction_options": ["team navy blue | white"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7ZYRU2", "worker_id": "A2ECRNQ3X5LEXD"}], "B00MLMRWCE": [{"asin": "B00MLMRWCE", "instruction": "i want a blueberry natural real fruit bar.", "attributes": ["non gmo", "nut free", "fat free", "soy free", "gluten free", "real fruit"], "options": ["flavor name: blueberry"], "instruction_attributes": ["real fruit"], "instruction_options": ["blueberry"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9H1KD1T", "worker_id": "A2RBF3IIJP15IH"}], "B07Q736GWW": [{"asin": "B07Q736GWW", "instruction": "i am looking for 16''x24'' size sky canvas wall art home decor for living room", "attributes": ["ready hang", "living room", "dining room"], "options": ["color: sexy artwork-19", "size: 16''x24''"], "instruction_attributes": ["living room"], "instruction_options": ["16''x24''"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIOBFEY", "worker_id": "A258PTOZ3D2TQR"}], "B073V5F2S4": [{"asin": "B073V5F2S4", "instruction": "i would like a long lasting perfume.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTR9OQM", "worker_id": "A1WS884SI0SLO4"}], "B08DTQY66D": [{"asin": "B08DTQY66D", "instruction": "i want a blue apple watch case with glass screen protector.", "attributes": ["easy install", "compatible apple", "high performance", "glass screen", "tempered glass"], "options": ["color: blue | black | silver", "size: 44mm"], "instruction_attributes": ["glass screen"], "instruction_options": ["blue | black | silver"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCWE5Q8", "worker_id": "A2RBF3IIJP15IH"}], "B09Q5XSLVZ": [{"asin": "B09Q5XSLVZ", "instruction": "i am looking for 2 grey dining room chairs with metal legs.", "attributes": ["easy assemble", "easy install", "metal legs", "living room", "dining room"], "options": ["color: grey-2pcs"], "instruction_attributes": ["metal legs", "dining room"], "instruction_options": ["grey-2pcs"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN4ZGOI", "worker_id": "A2NSS746CFCT4M"}], "B09HK8HQGD": [{"asin": "B09HK8HQGD", "instruction": "i would like a size 38 rainbow applewatch band.", "attributes": ["compatible apple", "water resistant"], "options": ["color: rainbow", "size: 38 | 40 | 41mm s | m"], "instruction_attributes": ["compatible apple"], "instruction_options": ["rainbow", "38 | 40 | 41mm s | m"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z4DYCQL", "worker_id": "A1WS884SI0SLO4"}], "B08SJ2VZ71": [{"asin": "B08SJ2VZ71", "instruction": "i am looking for an easy to assemble green home office chair with lumbar support.", "attributes": ["easy assemble", "lumbar support"], "options": ["color: green"], "instruction_attributes": ["easy assemble", "lumbar support"], "instruction_options": ["green"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOHSTAU", "worker_id": "A1EREKSZAA9V7B"}], "B098NX52GX": [{"asin": "B098NX52GX", "instruction": "i would like a light blue 32cmx32cmx35cm ottoman with a stainless steel frame.", "attributes": ["high density", "easy clean", "pu leather", "faux leather", "stainless steel", "living room"], "options": ["color: light blue", "size: 32cmx32cmx35cm"], "instruction_attributes": ["stainless steel"], "instruction_options": ["light blue", "32cmx32cmx35cm"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGAFSLO", "worker_id": "A1WS884SI0SLO4"}], "B073RJK6LQ": [{"asin": "B073RJK6LQ", "instruction": "the price of this manhattan comfort utopia table is unbelievable. very good! if you can find it in white and solid wood i will buy it.", "attributes": ["mid century", "solid wood"], "options": ["color: off white"], "instruction_attributes": ["solid wood"], "instruction_options": ["off white"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4NF89X", "worker_id": "A15IJ20C3R4HUO"}], "B08KVNKJFL": [{"asin": "B08KVNKJFL", "instruction": "i am looking for 24 inch long synthetic hair extension.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: 16h60", "size: 24 inch (pack of 1)"], "instruction_attributes": ["synthetic hair", "hair extensions"], "instruction_options": ["24 inch (pack of 1)"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPOO6E0", "worker_id": "AJDQGOTMB2D80"}], "B08K4K8CX6": [{"asin": "B08K4K8CX6", "instruction": "i am looking for medium size black color long sleeve v neck casual shirts tunic t shirt for women", "attributes": ["wash cold", "hand wash", "machine wash", "long sleeve", "daily wear"], "options": ["color: 2746-green black", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FLN3D0", "worker_id": "A258PTOZ3D2TQR"}], "B098QKQP4B": [{"asin": "B098QKQP4B", "instruction": "i am looking for a blue, fast charging usb cord that is compatible with apple and is 16 feet long.", "attributes": ["compatible apple", "fast charging", "aluminum alloy"], "options": ["color: blue", "size: 16foot"], "instruction_attributes": ["compatible apple", "fast charging"], "instruction_options": ["blue", "16foot"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CG30VX", "worker_id": "AK3JMCIGU8MLU"}], "B08NYBB3ZN": [{"asin": "B08NYBB3ZN", "instruction": "i would like a smartwatch case that has four colors and is easy to install", "attributes": ["easy install", "easy use", "case cover"], "options": ["color: fourcolors*b"], "instruction_attributes": ["easy install"], "instruction_options": ["fourcolors*b"], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VJM8EW", "worker_id": "A2ECRNQ3X5LEXD"}], "B08ZNFXRSD": [{"asin": "B08ZNFXRSD", "instruction": "i'm looking for breastfeeding shits maternity cloths double layer postpartum shirt.", "attributes": ["light weight", "soft material"], "options": ["color: black + wine red + grey", "size: small"], "instruction_attributes": ["light weight", "soft material"], "instruction_options": ["black + wine red + grey"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2IHIO4", "worker_id": "A21IUUHBSEVB56"}], "B01GTO91WI": [{"asin": "B01GTO91WI", "instruction": "i would like a 16 ounce bag of sweet potato gluten free flower.", "attributes": ["low sodium", "non gmo", "gluten free"], "options": ["flavor name: sweet potato", "size: 16 ounce (pack of 24)"], "instruction_attributes": ["gluten free"], "instruction_options": ["sweet potato", "16 ounce (pack of 24)"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIGPL2N", "worker_id": "A1WS884SI0SLO4"}], "B08FF672VG": [{"asin": "B08FF672VG", "instruction": "i would love to find a coffee table ideal for my living room? also, pick white please", "attributes": ["white item", "easy assemble", "storage space", "living room"], "options": ["color: white"], "instruction_attributes": ["white item", "living room"], "instruction_options": ["white"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYFDIE0", "worker_id": "A2TRV8SEM003GG"}], "B087QW1WVV": [{"asin": "B087QW1WVV", "instruction": "i would like a 0.17 ounce pack of gluten free oats.", "attributes": ["nut free", "sugar free", "gluten free", "non gmo", "high protein", "dairy free"], "options": ["flavor name: gluten free oats", "size: 0.17 ounce (pack of 4)"], "instruction_attributes": ["gluten free"], "instruction_options": ["gluten free oats", "0.17 ounce (pack of 4)"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTTDE5S", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B087QW1WVV", "instruction": "i want gluten free sigdal bakeri norwegian crispbread with pumpkin seeds.", "attributes": ["nut free", "sugar free", "gluten free", "non gmo", "high protein", "dairy free"], "options": ["flavor name: pumpkin seeds", "size: 0.17 ounce (pack of 4)"], "instruction_attributes": ["gluten free"], "instruction_options": ["pumpkin seeds"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQCU91P", "worker_id": "A2RBF3IIJP15IH"}], "B09RPFKQKT": [{"asin": "B09RPFKQKT", "instruction": "i'm looking for soft elastic mid-waist breathable boxer briefs.", "attributes": ["low rise", "machine wash"], "options": ["color: 3 pack red", "size: xx-large"], "instruction_attributes": ["low rise"], "instruction_options": ["3 pack red"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYFOEI7", "worker_id": "A21IUUHBSEVB56"}], "B07R9M8S63": [{"asin": "B07R9M8S63", "instruction": "i would like a 7 by 5 foot long photo backdrop that is light weight and easy to carry.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 7x5ft"], "instruction_attributes": ["light weight", "digital photography"], "instruction_options": ["7x5ft"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EG51B7", "worker_id": "A1WS884SI0SLO4"}], "B093SSG6KP": [{"asin": "B093SSG6KP", "instruction": "i am interested in a reticular blue colred non slip rugs for the living room which is easy to clean.", "attributes": ["non slip", "easy clean", "living room"], "options": ["color: reticular blue", "size: 8\u00d710 feet"], "instruction_attributes": ["non slip", "easy clean", "living room"], "instruction_options": ["reticular blue"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK49PA68", "worker_id": "AHXHM1PQTRWIQ"}], "B08252526L": [{"asin": "B08252526L", "instruction": "i am looking for a quad core powered high resolution 7 inch tablet with nfc.", "attributes": ["high resolution", "quad core"], "options": [""], "instruction_attributes": ["high resolution", "quad core"], "instruction_options": [], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUXNQJT", "worker_id": "A1EREKSZAA9V7B"}], "B07N85JD3S": [{"asin": "B07N85JD3S", "instruction": "i am looking for a baby blue colored t-shirt with the star wars logo.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: baby blue", "fit type: youth", "size: 3t"], "instruction_attributes": ["star wars"], "instruction_options": ["baby blue"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GOS3SP", "worker_id": "AJDQGOTMB2D80"}], "B09D6TKG55": [{"asin": "B09D6TKG55", "instruction": "i need a high speed asus pn41 fanless minipc barebone with intel 11th gen dual core celeron n4500 that also has a bluetooth.", "attributes": ["high speed", "usb port"], "options": [""], "instruction_attributes": ["high speed"], "instruction_options": [], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPEDQD4", "worker_id": "A1IL2K0ELYI090"}], "B09JQ631H6": [{"asin": "B09JQ631H6", "instruction": "i am loooking for mini business desktop having wireless bluetooth.", "attributes": ["intel core", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGNX2W1", "worker_id": "A1Q8PPQQCWGY0D"}], "B099WZC2BD": [{"asin": "B099WZC2BD", "instruction": "i would like a 108 inch by 84 inch color 27 window panel that is machine washable.", "attributes": ["machine washable", "living room"], "options": ["color: color27", "size: 108\" w x 84\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["color27", "108\" w x 84\" l"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYML2ZI3", "worker_id": "A1WS884SI0SLO4"}], "B07BDQ2413": [{"asin": "B07BDQ2413", "instruction": "i would like a body scrub for dry skin.", "attributes": ["cruelty free", "dry skin"], "options": [""], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WYAA1B", "worker_id": "A1WS884SI0SLO4"}], "B09KMQN4HK": [{"asin": "B09KMQN4HK", "instruction": "i want cupcake toppers for 2022 kids baby shower.", "attributes": ["cupcake picks", "baby shower", "birthday party"], "options": ["style: 2022 e"], "instruction_attributes": ["baby shower"], "instruction_options": ["2022 e"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746ZNTBZ", "worker_id": "A2RBF3IIJP15IH"}], "B09G74B6LD": [{"asin": "B09G74B6LD", "instruction": "i need a fleece jacket for the winter that is warm and gray", "attributes": ["winter warm", "fleece lined", "loose fit", "faux fur", "long sleeve", "teen girls"], "options": ["color: #a2 gray", "size: 4x-large"], "instruction_attributes": ["winter warm"], "instruction_options": ["#a2 gray"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZGGLKE", "worker_id": "A2ECRNQ3X5LEXD"}], "B0932QRZJG": [{"asin": "B0932QRZJG", "instruction": "i'm looking for a stainless steel quick release replacement wristband for fitbit inspire. choose the one that comes in white and in small in size.", "attributes": ["quick release", "stainless steel"], "options": ["color: white", "size: small"], "instruction_attributes": ["quick release", "stainless steel"], "instruction_options": ["white", "small"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TVIMPO", "worker_id": "A3MNXK3VDK37SN"}], "B0831NKRD1": [{"asin": "B0831NKRD1", "instruction": "am searching for low rise handyulong plus size womens jeans size 5x-large", "attributes": ["butt lifting", "low rise", "wide leg", "tummy control", "long sleeve", "regular fit", "relaxed fit", "button closure", "short sleeve"], "options": ["color: z-xgrey", "size: 5x-large"], "instruction_attributes": ["low rise"], "instruction_options": ["5x-large"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107CWLI8", "worker_id": "A1IL2K0ELYI090"}], "B01GQ5WNC0": [{"asin": "B01GQ5WNC0", "instruction": "i am looking for quaker chewy granola bars that are individually wrapped.", "attributes": ["individually wrapped", "artificial colors"], "options": ["flavor name: big chewy variety pack"], "instruction_attributes": ["individually wrapped"], "instruction_options": [], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO7BC2Y", "worker_id": "AK3JMCIGU8MLU"}], "B016OK3LGE": [{"asin": "B016OK3LGE", "instruction": "i would like some green binoculars for bird watching", "attributes": ["non slip", "high power", "carrying case", "bird watching"], "options": ["color: 10x green"], "instruction_attributes": ["bird watching"], "instruction_options": ["10x green"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6USMEZ0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DFLS85N": [{"asin": "B09DFLS85N", "instruction": "i am looking for red black color shower curtains that are easy to clean.", "attributes": ["easy clean", "printing technology"], "options": ["color: red black", "size: 75\"w x 70\"h | 190x180cm"], "instruction_attributes": ["easy clean"], "instruction_options": ["red black"], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO82336", "worker_id": "A1Q8PPQQCWGY0D"}], "B09JWY1CG4": [{"asin": "B09JWY1CG4", "instruction": "i'm looking for two flavor energy shots.", "attributes": ["low sugar", "low carb", "real fruit"], "options": ["size: variety 2-pack"], "instruction_attributes": ["low sugar", "low carb"], "instruction_options": ["variety 2-pack"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SZFTQ2", "worker_id": "A21IUUHBSEVB56"}], "B09P3YCNGR": [{"asin": "B09P3YCNGR", "instruction": "i would like a extra large green swimsuit made from cotton spandex.", "attributes": ["long sleeve", "cotton spandex", "high waist", "short sleeve", "tumble dry"], "options": ["color: swimsuits-a225-green", "size: x-large"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["swimsuits-a225-green", "x-large"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYSV9Q1", "worker_id": "A1WS884SI0SLO4"}], "B08MW5H2NF": [{"asin": "B08MW5H2NF", "instruction": "i want to buy brushes which are for nail polish and have galaxy mix color, and come in a blind box.", "attributes": ["beauty salon", "nail polish"], "options": ["color: galaxy mix", "size: blind box"], "instruction_attributes": ["nail polish"], "instruction_options": ["galaxy mix", "blind box"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQBZ1LC", "worker_id": "AJY5G987IRT25"}, {"asin": "B08MW5H2NF", "instruction": "i am interested in buying make up brushes which are for nail polish, and the color of which is bonbon rose powder-50p and comes in blind box.", "attributes": ["beauty salon", "nail polish"], "options": ["color: bonbon rose powder-50p", "size: blind box"], "instruction_attributes": ["nail polish"], "instruction_options": ["bonbon rose powder-50p", "blind box"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BQQJV6", "worker_id": "AJY5G987IRT25"}], "B00CM0XHRE": [{"asin": "B00CM0XHRE", "instruction": "i am looking for a cyan blue wireless bluetooth speaker that has the batteries included.", "attributes": ["batteries included", "wireless bluetooth"], "options": ["color: cyan blue"], "instruction_attributes": ["batteries included", "wireless bluetooth"], "instruction_options": ["cyan blue"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTLCD4O", "worker_id": "A1EREKSZAA9V7B"}], "B013GKG9XM": [{"asin": "B013GKG9XM", "instruction": "hanes women's x-temp seamless waistband, large, nylon spandex. i hope you are successful in your search. it will be very useful for me.", "attributes": ["hand wash", "nylon spandex"], "options": [""], "instruction_attributes": ["nylon spandex"], "instruction_options": [], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADOVHA8", "worker_id": "A15IJ20C3R4HUO"}], "B00YIU7C7W": [{"asin": "B00YIU7C7W", "instruction": "i need plant based protein bars that are of the peanut butter variety", "attributes": ["plant based", "gluten free", "high protein", "birthday cake"], "options": ["flavor name: peanut butter variety", "size: 12 count (pack of 2)"], "instruction_attributes": ["plant based"], "instruction_options": ["peanut butter variety"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9BGN8T", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P3KS3KV": [{"asin": "B09P3KS3KV", "instruction": "i want a medium sized t-shirt that has long sleeves.", "attributes": ["hand wash", "long sleeve", "short sleeve", "tumble dry", "daily wear"], "options": ["color: blouse a4405 white", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADX0ZMYW", "worker_id": "A1NF6PELRKACS9"}], "B07ZWYNPKK": [{"asin": "B07ZWYNPKK", "instruction": "i am looking for a long lasting ncaa south carolina fighting gamecocks jacket that is made of quality materials.", "attributes": ["long lasting", "quality materials"], "options": ["color: team color", "size: xx-large", "team name: south carolina fighting gamecocks"], "instruction_attributes": ["long lasting"], "instruction_options": ["south carolina fighting gamecocks"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YR496P", "worker_id": "A1EREKSZAA9V7B"}], "B086BBDGL5": [{"asin": "B086BBDGL5", "instruction": "i need a 25 pack of herbal tea that is caffeine free", "attributes": ["caffeine free", "non gmo", "gluten free", "certified organic", "sugar free", "individually wrapped", "quality ingredients"], "options": ["flavor name: chocolate", "size: 25 count (pack of 3)"], "instruction_attributes": ["caffeine free"], "instruction_options": ["25 count (pack of 3)"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBCQU6D", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HNJZ14D": [{"asin": "B09HNJZ14D", "instruction": "can you get me a margarita mix, palomas, real fruit and not too much sugar, and i'll need 32 ounces of it.", "attributes": ["low sugar", "zero sugar", "real fruit"], "options": ["flavor: paloma", "size: 32 fl oz (pack of 3)"], "instruction_attributes": ["low sugar", "real fruit"], "instruction_options": ["paloma", "32 fl oz (pack of 3)"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI71ESD9", "worker_id": "A3O1I9MATO3ZZN"}], "B079TFX61M": [{"asin": "B079TFX61M", "instruction": "i'm looking for a military and tactical boot with moisture wicking and rubber sole.", "attributes": ["moisture wicking", "rubber sole"], "options": ["size: 10.5 x-wide"], "instruction_attributes": ["moisture wicking", "rubber sole"], "instruction_options": [], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67W12F77", "worker_id": "ARJDD0Z3R65BD"}], "B07YB5BBL4": [{"asin": "B07YB5BBL4", "instruction": "i need hall trees for the living room that are brown", "attributes": ["space saving", "living room"], "options": ["color: brown"], "instruction_attributes": ["living room"], "instruction_options": ["brown"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EAA82ST", "worker_id": "A2ECRNQ3X5LEXD"}], "B01FFACR4Q": [{"asin": "B01FFACR4Q", "instruction": "i want to update my digital camera. i'm looking for a canon powershot sx620 w/ optical zoom 25x black color, 64gb memory card. i hope it's the best choice for my need.", "attributes": ["1080p hd", "optical zoom"], "options": ["color: black", "style: w | 64gb memory card"], "instruction_attributes": ["optical zoom"], "instruction_options": ["black", "w | 64gb memory card"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQPX13N", "worker_id": "A15IJ20C3R4HUO"}], "B01HDUTJII": [{"asin": "B01HDUTJII", "instruction": "i am looking for pink wireless bluetooth headphones that have the hands free calling feature.", "attributes": ["hands free", "easy carry", "wireless bluetooth"], "options": ["color: pink"], "instruction_attributes": ["hands free", "wireless bluetooth"], "instruction_options": ["pink"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733P8BEZ", "worker_id": "AK3JMCIGU8MLU"}], "B08T8LBSGF": [{"asin": "B08T8LBSGF", "instruction": "i am looking for black quick drying, butt lifting leggings in size large.", "attributes": ["butt lifting", "quick drying", "moisture wicking", "high waist", "tummy control", "polyester spandex"], "options": ["color: #11-scrunch butt black", "size: large"], "instruction_attributes": ["butt lifting", "quick drying"], "instruction_options": ["#11-scrunch butt black", "large"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7YVUCZ", "worker_id": "AK3JMCIGU8MLU"}], "B07YG8RCRD": [{"asin": "B07YG8RCRD", "instruction": "i would like orange mousse cookies that are non gmo", "attributes": ["non gmo", "artificial colors", "quality ingredients", "high fructose", "artificial flavors"], "options": ["flavor: orange mousse", "size: 5.25 ounce (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["orange mousse"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9HMRZ0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DQ5ZNFC": [{"asin": "B09DQ5ZNFC", "instruction": "i am looking for a high speed 3 foot red usb cable.", "attributes": ["high speed", "usb port"], "options": ["color: red", "size: 3ft"], "instruction_attributes": ["high speed"], "instruction_options": ["red", "3ft"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK4AFA60", "worker_id": "A1EREKSZAA9V7B"}], "B01NGZ050U": [{"asin": "B01NGZ050U", "instruction": "i am looking to buy some fully cooked and ready to eat vienna sausage.", "attributes": ["ready eat", "fully cooked"], "options": [""], "instruction_attributes": ["ready eat", "fully cooked"], "instruction_options": [], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FG28K0", "worker_id": "A114NK7T5673GK"}], "B09P58F4SD": [{"asin": "B09P58F4SD", "instruction": "i am looking for pink slide flip flops with arch support in the size 5.5.", "attributes": ["closed toe", "arch support"], "options": ["color: z5 pink", "size: 5.5"], "instruction_attributes": ["arch support"], "instruction_options": ["z5 pink", "5.5"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQFRKV7", "worker_id": "AK3JMCIGU8MLU"}], "B09219DD59": [{"asin": "B09219DD59", "instruction": "i would like a 90 piece assortment of individually wrapped snacks.", "attributes": ["individually wrapped", "great gift"], "options": ["size: 90 piece assortment"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["90 piece assortment"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTWT9PU", "worker_id": "A1WS884SI0SLO4"}], "B091DCQXM6": [{"asin": "B091DCQXM6", "instruction": "i am looking for x-large size socks that contain cotton spandex.", "attributes": ["moisture wicking", "machine wash", "cotton spandex", "polyester cotton"], "options": ["color: black | shadow red | legacy burgundy red", "size: x-large"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["x-large"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UXD0YE", "worker_id": "A1Q8PPQQCWGY0D"}], "B07M7LDGXB": [{"asin": "B07M7LDGXB", "instruction": "oral nano silver mint toothpaste, natural fluoride free tooth whitening toothpaste, 4 oz. (pack of 1). my daughter only uses this one. i didn't find it in the pharmacy, let me know as soon as you find it", "attributes": ["fluoride free", "teeth whitening"], "options": ["size: 4 ounce (pack of 1)"], "instruction_attributes": ["fluoride free"], "instruction_options": ["4 ounce (pack of 1)"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DZKOTE", "worker_id": "A15IJ20C3R4HUO"}], "B08YQZQZW6": [{"asin": "B08YQZQZW6", "instruction": "i am looking for some sweet 16 cupcake toppers for a birthday cake.", "attributes": ["birthday party", "birthday cake", "party supplies"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUP94SY", "worker_id": "A1EREKSZAA9V7B"}], "B01HOI5E9M": [{"asin": "B01HOI5E9M", "instruction": "i am looking for foundation for dry skin having color 20 | natural ivory.", "attributes": ["oil free", "hyaluronic acid", "dry skin"], "options": ["color: 20 | natural ivory"], "instruction_attributes": ["dry skin"], "instruction_options": ["20 | natural ivory"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21QKFQT", "worker_id": "A1Q8PPQQCWGY0D"}], "B077PHG1MV": [{"asin": "B077PHG1MV", "instruction": "i would like a 40 wide by 36 long pair of big and tall pants in charcoal heather that can be machine washed.", "attributes": ["machine wash", "cotton spandex", "button closure", "classic fit"], "options": ["color: charcoal heather", "fit type: big & tall", "size: 40w x 36l"], "instruction_attributes": ["machine wash"], "instruction_options": ["charcoal heather", "big & tall", "40w x 36l"], "assignment_id": "33TIN5LC0FKDY31374RC144TX1YY9F", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B077PHG1MV", "instruction": "i am looking for men's khaki pants in the color olive grove, and they must have a button closure and be machine washable.", "attributes": ["machine wash", "cotton spandex", "button closure", "classic fit"], "options": ["color: olive grove", "fit type: big & tall", "size: 54w x 28l"], "instruction_attributes": ["machine wash", "button closure"], "instruction_options": ["olive grove"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67QZN43", "worker_id": "A2NSS746CFCT4M"}], "B08SJLZD59": [{"asin": "B08SJLZD59", "instruction": "i'm looking for a white case for iphone 12 with american flag printed and wireless charging", "attributes": ["heavy duty", "wireless charging"], "options": ["color: white"], "instruction_attributes": ["wireless charging"], "instruction_options": ["white"], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6NVU7X", "worker_id": "A2Y2TURT2VEYZN"}], "B09S3NGKV2": [{"asin": "B09S3NGKV2", "instruction": "i am looking for a local gold hands free wireless earpiece with mic.", "attributes": ["hands free", "stereo sound"], "options": ["color: local gold"], "instruction_attributes": ["hands free"], "instruction_options": ["local gold"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODQIEWA", "worker_id": "AHU9OLV0YKIIW"}, {"asin": "B09S3NGKV2", "instruction": "i need black color hands free wireless earpiece with mic", "attributes": ["hands free", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["hands free"], "instruction_options": ["black"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQKJJRJ", "worker_id": "A258PTOZ3D2TQR"}], "B09PHGW8BH": [{"asin": "B09PHGW8BH", "instruction": "i am looking for a high performance easy to carry black wireless bluetooth speaker.", "attributes": ["high performance", "easy carry", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["high performance", "easy carry", "wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIUT84R", "worker_id": "A1EREKSZAA9V7B"}], "B09M4B9JYK": [{"asin": "B09M4B9JYK", "instruction": "i want low fat honey bunches of oats.", "attributes": ["low fat", "source vitamin"], "options": [""], "instruction_attributes": ["low fat"], "instruction_options": [], "assignment_id": "3G2UL9A02OO71034MOY04HTU329675", "worker_id": "A2RBF3IIJP15IH"}], "B093SZ32M3": [{"asin": "B093SZ32M3", "instruction": "i want to buy a mesh travel laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSLQ62Q", "worker_id": "A114NK7T5673GK"}], "B09K7VRPPH": [{"asin": "B09K7VRPPH", "instruction": "i am looking for a high performance red speaker with wireless bluetooth.", "attributes": ["high performance", "high definition", "stereo sound", "wireless bluetooth"], "options": ["color: red"], "instruction_attributes": ["high performance", "wireless bluetooth"], "instruction_options": ["red"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6ORFMM2", "worker_id": "A1EREKSZAA9V7B"}], "B09PMGS3X4": [{"asin": "B09PMGS3X4", "instruction": "i need a tonic that is non gmo", "attributes": ["non gmo", "natural flavors", "high fructose", "artificial flavors"], "options": ["flavor name: tonic", "size: 6.7 fluid ounces (pack 24)"], "instruction_attributes": ["non gmo"], "instruction_options": ["tonic"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0VECAG", "worker_id": "A2ECRNQ3X5LEXD"}], "B004WRCU8M": [{"asin": "B004WRCU8M", "instruction": "i need 1 pack of cruelty free hair spray.", "attributes": ["cruelty free", "long lasting", "high quality"], "options": ["color: light blonde", "size: 1 pack"], "instruction_attributes": ["cruelty free"], "instruction_options": ["1 pack"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMM31RSC", "worker_id": "AVIEE6LDH0BT5"}], "B07WGP1W2L": [{"asin": "B07WGP1W2L", "instruction": "help me find a water-resistant sports strap that is compatible with the apple iwatch. also, please choose a teal one.", "attributes": ["water resistant", "compatible apple", "stainless steel"], "options": ["color: teal", "size: 38mm | 40mm | 41mm"], "instruction_attributes": ["water resistant", "compatible apple"], "instruction_options": ["teal"], "assignment_id": "3G2UL9A02OO71034MOY04HTU32B677", "worker_id": "A3LIIE572Z4OG7"}], "B094NP978P": [{"asin": "B094NP978P", "instruction": "i'm locking for wireless bluetooth earpiece for business, office and driving.", "attributes": ["hands free", "carrying case", "wireless bluetooth"], "options": ["color: golden"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "33UKMF931KU01WBNV49UKNDQC7BTTF", "worker_id": "A21IUUHBSEVB56"}], "B08MQMW47K": [{"asin": "B08MQMW47K", "instruction": "i would like a pair of size 13 dark truffle loafers with a rubber sole.", "attributes": ["day comfort", "rubber sole"], "options": ["color: dark truffle | tundra", "size: 13"], "instruction_attributes": ["rubber sole"], "instruction_options": ["dark truffle | tundra", "13"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q73KDM", "worker_id": "A1WS884SI0SLO4"}], "B074J2GW2X": [{"asin": "B074J2GW2X", "instruction": "i would like brown rice that is organic and spanish style", "attributes": ["certified organic", "artificial colors"], "options": ["size: 8.5 ounce (pack of 12)", "style: spanish style rice"], "instruction_attributes": ["certified organic"], "instruction_options": ["spanish style rice"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80G41QH", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GT2GL1N": [{"asin": "B07GT2GL1N", "instruction": "i am looking for noise cancelling earbuds for iphone.", "attributes": ["noise cancelling", "easy use", "stereo sound"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEMWQ8C", "worker_id": "A2KW17G25L25R8"}], "B001HTI3BQ": [{"asin": "B001HTI3BQ", "instruction": "lightly smoked organic lemon flavor wild caught sardines in olive oil", "attributes": ["wild caught", "bpa free"], "options": ["flavor name: organic lemon"], "instruction_attributes": ["wild caught"], "instruction_options": ["organic lemon"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO9YR25", "worker_id": "A258PTOZ3D2TQR"}], "B09ND7C1L2": [{"asin": "B09ND7C1L2", "instruction": "i need a wireless bluetooth speaker compatible for my smart watch", "attributes": ["non slip", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPG0VTW5", "worker_id": "A2COCSUGZV28X"}], "B09KZNFD8T": [{"asin": "B09KZNFD8T", "instruction": "i need a grey protective airpods 3 case cover which is compatible with apple.", "attributes": ["compatible apple", "case cover"], "options": ["color: d-grey"], "instruction_attributes": ["compatible apple", "case cover"], "instruction_options": ["d-grey"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH3YZ4L", "worker_id": "AHU9OLV0YKIIW"}], "B01HV9BY5W": [{"asin": "B01HV9BY5W", "instruction": "i am looking for a grey coated steel storage islands & carts", "attributes": ["heavy duty", "coated steel"], "options": ["color: grey"], "instruction_attributes": ["coated steel"], "instruction_options": ["grey"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB5PY5Y", "worker_id": "A9QRQL9CFJBI7"}], "B07WVZCHHG": [{"asin": "B07WVZCHHG", "instruction": "i would like a remote with aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDQ2K5B", "worker_id": "A1WS884SI0SLO4"}], "B07CB8PKD9": [{"asin": "B07CB8PKD9", "instruction": "i am looking for a black, stainless steel bottle.", "attributes": ["lead free", "non slip", "stainless steel"], "options": ["color: black+black"], "instruction_attributes": ["stainless steel"], "instruction_options": ["black+black"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYM8QLB", "worker_id": "AK3JMCIGU8MLU"}], "B00Y7CYBUW": [{"asin": "B00Y7CYBUW", "instruction": "i am looking for 25 ml fluoride free fresh truth toothpaste", "attributes": ["fluoride free", "sulfate free", "paraben free"], "options": ["size: .84 ounce | 25 ml"], "instruction_attributes": ["fluoride free"], "instruction_options": [".84 ounce | 25 ml"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUOOS4Z", "worker_id": "A258PTOZ3D2TQR"}], "B01LWJAXIG": [{"asin": "B01LWJAXIG", "instruction": "i want a pack of 2 32 fl oz original sprout classic shampoos that are non toxic.", "attributes": ["sulfate free", "dermatologist tested", "non toxic"], "options": ["size: 32 fl oz (pack of 2)"], "instruction_attributes": ["non toxic"], "instruction_options": ["32 fl oz (pack of 2)"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HXSBP4", "worker_id": "A2RBF3IIJP15IH"}], "B084CVRFYL": [{"asin": "B084CVRFYL", "instruction": "i would like a carbon fiber car stereo kit.", "attributes": ["easy install", "carbon fiber"], "options": [""], "instruction_attributes": ["carbon fiber"], "instruction_options": [], "assignment_id": "33CID5710F37J25O7G1CGJZBOUK3LB", "worker_id": "A1WS884SI0SLO4"}], "B08JSTNKLH": [{"asin": "B08JSTNKLH", "instruction": "i am interested in ocean blue holographic, easy to apply and long lasting sparkle glitter.", "attributes": ["easy apply", "long lasting"], "options": ["color: ocean blue holographic", "size: north star nativity compass shaped"], "instruction_attributes": ["easy apply", "long lasting"], "instruction_options": ["ocean blue holographic"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMSJMWH", "worker_id": "AHXHM1PQTRWIQ"}], "B09K9RRZVK": [{"asin": "B09K9RRZVK", "instruction": "i am looking for real fruit smoothie mix that is easy to use and has the flavor passion fruit.", "attributes": ["shelf stable", "easy use", "kosher certified", "real fruit", "artificial colors", "high fructose", "artificial flavors"], "options": ["flavor name: passion fruit", "size: 1 pack"], "instruction_attributes": ["easy use", "real fruit"], "instruction_options": ["passion fruit"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWTF6W4", "worker_id": "AK3JMCIGU8MLU"}], "B08MJFJJYK": [{"asin": "B08MJFJJYK", "instruction": "i want to get a two pack vanity light with brushed nickel finish in color type 2.", "attributes": ["wall mounted", "light fixture", "brushed nickel", "vanity light"], "options": ["color: type 2", "size: 2 pack"], "instruction_attributes": ["brushed nickel", "vanity light"], "instruction_options": ["type 2", "2 pack"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUMA3R2", "worker_id": "A2YNPKYEFDZ6C9"}], "B001B2S32S": [{"asin": "B001B2S32S", "instruction": "i would like some long lasting hair color in light golden brown", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 054 light golden brown", "size: 3 count (pack of 1)", "style: new version"], "instruction_attributes": ["long lasting"], "instruction_options": ["054 light golden brown"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3SD3G3N", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B001B2S32S", "instruction": "i'm looking for a single pack of old style, brown hair dye.", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 054 light golden brown", "size: pack of 1", "style: old version"], "instruction_attributes": ["hair dye"], "instruction_options": ["pack of 1", "old version"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9EHZAL", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B001B2S32S", "instruction": "i'm looking for a three count package of long lasting, brown hair dye.", "attributes": ["long lasting", "easy use", "hair dye", "permanent hair"], "options": ["color: 080 light ash blonde", "size: 3 count (pack of 1)", "style: new version"], "instruction_attributes": ["long lasting", "hair dye"], "instruction_options": ["3 count (pack of 1)"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1JJ08B", "worker_id": "A2JP9IKRHNLRPI"}], "B00XQ3QL24": [{"asin": "B00XQ3QL24", "instruction": "i'm looking for long lasting men's cologne from banana republic.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6IMPUM", "worker_id": "A2JP9IKRHNLRPI"}], "B072BPPSCF": [{"asin": "B072BPPSCF", "instruction": "i need a valentine's day gift", "attributes": ["valentine day", "great gift", "gift basket"], "options": [""], "instruction_attributes": ["valentine day"], "instruction_options": [], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N987T3", "worker_id": "A2ECRNQ3X5LEXD"}], "B09S31W7TD": [{"asin": "B09S31W7TD", "instruction": "i would like a white and green 5 cube bookcase.", "attributes": ["white item", "assembly required"], "options": ["color: white green", "size: 5-cube"], "instruction_attributes": ["white item"], "instruction_options": ["white green", "5-cube"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOLZLM7", "worker_id": "A1WS884SI0SLO4"}], "B00QTUCVAM": [{"asin": "B00QTUCVAM", "instruction": "i would like a chandelier for my dining room.", "attributes": ["brushed nickel", "nickel finish", "light fixture", "dining room", "living room"], "options": [""], "instruction_attributes": ["dining room"], "instruction_options": [], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF77DLH", "worker_id": "A1WS884SI0SLO4"}], "B098TPB85F": [{"asin": "B098TPB85F", "instruction": "i am looking for mens lightweight cargo shorts camo in pattern.", "attributes": ["daily casual", "elastic waist", "elastic waistband", "polyester spandex", "daily wear"], "options": ["color: black", "size: 29"], "instruction_attributes": ["daily wear"], "instruction_options": ["black"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNVHFJR", "worker_id": "A2KW17G25L25R8"}], "B07TJ7D457": [{"asin": "B07TJ7D457", "instruction": "i need a super soft area rug that is white", "attributes": ["super soft", "non slip", "white item", "easy clean", "living room"], "options": ["color: white", "size: 2x4 feet"], "instruction_attributes": ["super soft"], "instruction_options": ["white"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRSAFUEZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07VBZXM7V": [{"asin": "B07VBZXM7V", "instruction": "i'm looking for a low carb gluten free ketchup flavored bbq sauce. choose the ones that comes in 12 ounce bottles and pack of 2.", "attributes": ["low carb", "non gmo", "gluten free", "artificial colors"], "options": ["flavor name: ketchup", "size: 12 ounce (pack of 2)"], "instruction_attributes": ["low carb", "gluten free"], "instruction_options": ["ketchup", "12 ounce (pack of 2)"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UTK1GB", "worker_id": "A3MNXK3VDK37SN"}], "B07DX8FLPN": [{"asin": "B07DX8FLPN", "instruction": "i would like to buy a screen protector which is made with tempered glass and is suitable for iphone 6 and iphone 6s plus 5.5.", "attributes": ["glass screen", "tempered glass"], "options": ["color: iphone 6 | 6s plus 5.5\""], "instruction_attributes": ["tempered glass"], "instruction_options": ["iphone 6 | 6s plus 5.5\""], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PEEUBD", "worker_id": "AJY5G987IRT25"}], "B09J2ZLMC2": [{"asin": "B09J2ZLMC2", "instruction": "i want a hair removal epilator.", "attributes": ["easy carry", "hair removal"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4E2R6O", "worker_id": "A1WS884SI0SLO4"}], "B08CJ2BW1G": [{"asin": "B08CJ2BW1G", "instruction": "looking for an easy to deliver vintage barbecue sauce needle sleeve white women's halloween t-shirt by tomorrow? forgot to machine wash.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: women", "size: large"], "instruction_attributes": ["machine wash", "needle sleeve"], "instruction_options": ["white", "women"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S49GMS", "worker_id": "A15IJ20C3R4HUO"}], "B088GXF6VD": [{"asin": "B088GXF6VD", "instruction": "high quality butterfly hair clip for women", "attributes": ["high quality", "quality materials", "hair salon", "dry hair"], "options": ["color: black", "style: 3.25 inch , 4 inch"], "instruction_attributes": ["quality materials"], "instruction_options": [], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JFOSFG", "worker_id": "A3TTGSUBIK1YCL"}], "B07RPYQCKB": [{"asin": "B07RPYQCKB", "instruction": "i am looking for a pair of machine washable men's levi's 501 blue jeans.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: blue", "size: 36w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["blue"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK5IJ3S", "worker_id": "A1EREKSZAA9V7B"}], "B075GW4GXH": [{"asin": "B075GW4GXH", "instruction": "i am interested in buying a twin sized natural colored full sized bed frame made of solid wood having a headboard.", "attributes": ["twin size", "box spring", "solid wood", "memory foam", "wood frame"], "options": ["color: natural", "size: full", "style: with headboard"], "instruction_attributes": ["twin size", "solid wood"], "instruction_options": ["natural", "full", "with headboard"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8I25RV", "worker_id": "AHXHM1PQTRWIQ"}], "B0944YG6SQ": [{"asin": "B0944YG6SQ", "instruction": "i am interested in buying white color, cruelty free hair building fibers for thinning hair.", "attributes": ["cruelty free", "hair loss", "natural hair"], "options": ["color: white"], "instruction_attributes": ["cruelty free"], "instruction_options": ["white"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPDQQDF", "worker_id": "AHXHM1PQTRWIQ"}], "B07QMGTXQX": [{"asin": "B07QMGTXQX", "instruction": "i'm interested in a pair of orange sport pants with an elastic waist and drawstring closure in a size x-large.", "attributes": ["drawstring closure", "elastic waist"], "options": ["color: r-aa-orange", "size: x-large"], "instruction_attributes": ["drawstring closure", "elastic waist"], "instruction_options": ["r-aa-orange", "x-large"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4HZL8A", "worker_id": "AFU00NU09CFXE"}], "B08FDCD6NW": [{"asin": "B08FDCD6NW", "instruction": "i'm looking for printed window curtain.", "attributes": ["machine washable", "exquisite workmanship", "dining room", "living room"], "options": ["color: 001", "size: 54\"w x18\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["54\"w x18\" l"], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU4825EYP8", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B08FDCD6NW", "instruction": "buy me some fifty-four inch machine washable drapes for my dining room.", "attributes": ["machine washable", "exquisite workmanship", "dining room", "living room"], "options": ["color: 003", "size: 54\"w x18\" l"], "instruction_attributes": ["machine washable", "dining room"], "instruction_options": ["54\"w x18\" l"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS1CG9V", "worker_id": "AR9AU5FY1S3RO"}], "B08N5CPD71": [{"asin": "B08N5CPD71", "instruction": "i am looking for hair color that is alcohol free and is having color as 1 hair color: 9-00.", "attributes": ["alcohol free", "permanent hair"], "options": ["color: 1 hair color: 9-00"], "instruction_attributes": ["alcohol free"], "instruction_options": ["1 hair color"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJRYO9T", "worker_id": "A1Q8PPQQCWGY0D"}], "B07FDQD8T8": [{"asin": "B07FDQD8T8", "instruction": "i would like a 5.5 ounce bag of sweet chili chips that are non gmo.", "attributes": ["non gmo", "gluten free", "0g trans", "high fructose"], "options": ["flavor name: sweet chili", "size: 5.5 ounce (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["sweet chili", "5.5 ounce (pack of 6)"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GO0893P", "worker_id": "A1WS884SI0SLO4"}], "B092LNSRYV": [{"asin": "B092LNSRYV", "instruction": "i am looking for a beard oil that will help stimulate hair growth.", "attributes": ["natural ingredients", "hair treatment", "hair growth"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW1XC1H", "worker_id": "A2NSS746CFCT4M"}], "B09MFYFTYF": [{"asin": "B09MFYFTYF", "instruction": "i want a modern tall bookcase for my living room.", "attributes": ["easy clean", "storage space", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HIK6I0", "worker_id": "A2RBF3IIJP15IH"}], "B004LU0N70": [{"asin": "B004LU0N70", "instruction": "am hoping to find q-tips cotton swab 375.0 ea nail polish.", "attributes": ["nail polish", "nail art"], "options": [""], "instruction_attributes": ["nail polish"], "instruction_options": [], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4V2TYWF", "worker_id": "A1IL2K0ELYI090"}], "B08D9J7LMH": [{"asin": "B08D9J7LMH", "instruction": "i am looking for a gold pendant light for my dining room.", "attributes": ["assembly required", "pendant light", "dining room"], "options": ["color: gold"], "instruction_attributes": ["pendant light", "dining room"], "instruction_options": ["gold"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB4A0QAK", "worker_id": "A1EREKSZAA9V7B"}], "B09HTTSFSG": [{"asin": "B09HTTSFSG", "instruction": "i am looking for a shadow box frame made from solid wood. also, i would like the size to be 10 by 10.", "attributes": ["assembly required", "solid wood", "wood finish", "tempered glass", "wood frame"], "options": ["color: carbonized", "size: 10x10"], "instruction_attributes": ["solid wood"], "instruction_options": ["10x10"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UX30Y4", "worker_id": "AJDQGOTMB2D80"}], "B01M0WKYT7": [{"asin": "B01M0WKYT7", "instruction": "get me some tattoo serum that uses tea tree oil and is paraben free.", "attributes": ["paraben free", "tea tree", "seed oil"], "options": [""], "instruction_attributes": ["paraben free", "tea tree"], "instruction_options": [], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X01J4WP", "worker_id": "A3O1I9MATO3ZZN"}], "B0936HMVXB": [{"asin": "B0936HMVXB", "instruction": "i'm looking for a package of cupcake toppers for my brother's birthday party cupcakes.", "attributes": ["party supplies", "perfect gift", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTCSLNS", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B0936HMVXB", "instruction": "i am looking for cupcake topper for a birthday party", "attributes": ["party supplies", "perfect gift", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXLV2ZD", "worker_id": "A258PTOZ3D2TQR"}], "B09FPTKNK4": [{"asin": "B09FPTKNK4", "instruction": "i'm looking for silk bonnet.", "attributes": ["high quality", "hair styling"], "options": ["color: gold"], "instruction_attributes": ["hair styling"], "instruction_options": ["gold"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L5YCV0", "worker_id": "A21IUUHBSEVB56"}], "B08T6CQY1M": [{"asin": "B08T6CQY1M", "instruction": "i would like a living room lead free candle.", "attributes": ["lead free", "living room"], "options": [""], "instruction_attributes": ["lead free", "living room"], "instruction_options": [], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21QDFQM", "worker_id": "A1WS884SI0SLO4"}], "B09KTKTM75": [{"asin": "B09KTKTM75", "instruction": "i would like a fast charging station.", "attributes": ["fast charging", "easy carry"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9W6TE5", "worker_id": "A1WS884SI0SLO4"}], "B07X8YFMWL": [{"asin": "B07X8YFMWL", "instruction": "i would like a pair of 14 wide cognac sandals with a leather sole.", "attributes": ["leather sole", "memory foam"], "options": ["color: cognac", "size: 14 wide"], "instruction_attributes": ["leather sole"], "instruction_options": ["cognac", "14 wide"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQOP31F", "worker_id": "A1WS884SI0SLO4"}], "B09RV3Q1TV": [{"asin": "B09RV3Q1TV", "instruction": "i am looking for a purple short sleeved blouse in the size 3x-large.", "attributes": ["loose fit", "short sleeve", "teen girls"], "options": ["color: #02-purple", "size: 3x-large"], "instruction_attributes": [], "instruction_options": ["#02-purple", "3x-large"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQEAVKZ", "worker_id": "AK3JMCIGU8MLU"}], "B07TSRBKZ6": [{"asin": "B07TSRBKZ6", "instruction": "i want black kmm cotton moisture wicking socks.", "attributes": ["moisture wicking", "machine wash", "arch support", "polyester spandex"], "options": ["color: black blue"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["black blue"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATB937Y", "worker_id": "A2RBF3IIJP15IH"}], "B09JMVK45R": [{"asin": "B09JMVK45R", "instruction": "i would like an intel core desktop that has 64 gb of ram with 4 tb storage", "attributes": ["high speed", "intel core"], "options": ["size: 64gb ram|4tb ssd|win10h"], "instruction_attributes": ["intel core"], "instruction_options": ["64gb ram|4tb ssd|win10h"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHWAPS8B", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MT7QRV5": [{"asin": "B09MT7QRV5", "instruction": "look for wash cold pajama set nightwear that size small", "attributes": ["wash cold", "hand wash", "machine wash", "elastic waistband", "dry clean"], "options": ["color: multi 3", "size: small"], "instruction_attributes": ["wash cold"], "instruction_options": ["small"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXCXFC4", "worker_id": "A10OGH5CQBXL5N"}], "B09LS6XBNP": [{"asin": "B09LS6XBNP", "instruction": "my grandson asked me for this order. tjs compatible with boost mobile celero 5g case, samsung galaxy a22 5g case, red color glass screen, it has a lot of detail, and i don't know if i can find it without your help.", "attributes": ["non slip", "heavy duty", "hands free", "glass screen", "tempered glass"], "options": ["color: red"], "instruction_attributes": ["glass screen"], "instruction_options": ["red"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXW7LYT", "worker_id": "A15IJ20C3R4HUO"}], "B012POYRL6": [{"asin": "B012POYRL6", "instruction": "i would like a chocolate chip oat bar that's gluten free.", "attributes": ["baked fresh", "gluten free", "dairy free", "non gmo"], "options": ["flavor name: chocolate chip"], "instruction_attributes": ["gluten free"], "instruction_options": ["chocolate chip"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8LB4CQ", "worker_id": "A1WS884SI0SLO4"}], "B095WGG4QR": [{"asin": "B095WGG4QR", "instruction": "i would like a pair of black headphones that have wireless bluetooth.", "attributes": ["noise cancelling", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJLJOLU", "worker_id": "A1WS884SI0SLO4"}], "B07683ZG4B": [{"asin": "B07683ZG4B", "instruction": "i would like a extra large texas orange t shirt with moisture wicking.", "attributes": ["machine wash", "moisture wicking"], "options": ["color: black | texas orange", "size: x-large"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["black | texas orange", "x-large"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TG1NMD", "worker_id": "A1WS884SI0SLO4"}], "B09LDC8WKH": [{"asin": "B09LDC8WKH", "instruction": "i want a pack of wall lamps for a living room.", "attributes": ["easy install", "clear glass", "light fixture", "glass shade", "living room"], "options": ["size: 1 pack"], "instruction_attributes": ["living room"], "instruction_options": ["1 pack"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCT7I7E", "worker_id": "A1WS884SI0SLO4"}], "B09698R81K": [{"asin": "B09698R81K", "instruction": "i want an orange fast charging usb type-c charging cable power cord.", "attributes": ["fast charging", "wireless bluetooth"], "options": ["color: orange"], "instruction_attributes": ["fast charging"], "instruction_options": ["orange"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733P1BES", "worker_id": "A2RBF3IIJP15IH"}], "B09K7RY4ZF": [{"asin": "B09K7RY4ZF", "instruction": "i am looking for a hands free white alarm clock with wireless bluetooth.", "attributes": ["hands free", "wireless bluetooth"], "options": ["color: white"], "instruction_attributes": ["hands free", "wireless bluetooth"], "instruction_options": ["white"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMUM9WH", "worker_id": "A1EREKSZAA9V7B"}], "B07D5ZGY8Z": [{"asin": "B07D5ZGY8Z", "instruction": "i want to buy a t-shirt which is classic fit and can be machine washed, as for the color i want it lemon color, and suitable for women, with a size of x-large.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: lemon", "fit type: women", "size: x-large"], "instruction_attributes": ["machine wash", "classic fit"], "instruction_options": ["lemon", "women", "x-large"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTS0QOH", "worker_id": "AJY5G987IRT25"}], "B09NVVPPQ3": [{"asin": "B09NVVPPQ3", "instruction": "i am looking for women's turtle necks loose oversized sweaters.", "attributes": ["loose fit", "long sleeve", "short sleeve", "teen girls", "star wars"], "options": ["color: d9-dark blue", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x-large"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R8YYTC", "worker_id": "A2KW17G25L25R8"}], "B09MM37YLN": [{"asin": "B09MM37YLN", "instruction": "i'm looking for a u-shaped toothbrush for my child's sensitive teeth that is aqua colored.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: a"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["a"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKUTEPV", "worker_id": "A2JP9IKRHNLRPI"}], "B09DQ9SN67": [{"asin": "B09DQ9SN67", "instruction": "i would like a 31 wide by 30 long dark williamsburg pair of straight leg jeans.", "attributes": ["straight leg", "machine wash", "relaxed fit"], "options": ["color: dark williamsburg", "size: 31w x 30l"], "instruction_attributes": ["straight leg"], "instruction_options": ["dark williamsburg", "31w x 30l"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA933ZZ3X", "worker_id": "A1WS884SI0SLO4"}], "B084LMXRSJ": [{"asin": "B084LMXRSJ", "instruction": "i would like a 3xl dark green tennessee titan polo that is officially licensed.", "attributes": ["moisture wicking", "officially licensed", "comfortable fit"], "options": ["color: charcoal | dark green", "size: 3x-large tall", "team name: tennessee titans"], "instruction_attributes": ["officially licensed"], "instruction_options": ["charcoal | dark green", "3x-large tall", "tennessee titans"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40KLXN7", "worker_id": "A1WS884SI0SLO4"}], "B09B1DJBRV": [{"asin": "B09B1DJBRV", "instruction": "i would like a pair of black size 8.5 boots with a comfortable fit.", "attributes": ["comfortable fit", "synthetic sole", "rubber outsole", "everyday wear"], "options": ["color: black | black", "size: 8.5"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["black | black", "8.5"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVR9JK8", "worker_id": "A1WS884SI0SLO4"}], "B093RVKB8Z": [{"asin": "B093RVKB8Z", "instruction": "i need some cabernet for a great gift", "attributes": ["quality ingredients", "great gift"], "options": ["flavor name: french cabernet sauvignon"], "instruction_attributes": ["great gift"], "instruction_options": ["french cabernet sauvignon"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z4E1CQQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07XGJBX47": [{"asin": "B07XGJBX47", "instruction": "i am looking for a dolly parton's greatest hits t-shirt.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: cranberry", "fit type: youth", "size: x-small"], "instruction_attributes": ["classic fit"], "instruction_options": ["x-small"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYGI82G", "worker_id": "A2KW17G25L25R8"}], "B00KBOL612": [{"asin": "B00KBOL612", "instruction": "i am looking for 10 wide tan color synthetic sole womens slipper", "attributes": ["faux fur", "synthetic sole"], "options": ["color: tan | black leopard", "size: 10 wide"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["tan | black leopard", "10 wide"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MP7OFZ", "worker_id": "A258PTOZ3D2TQR"}], "B09KPZX6H8": [{"asin": "B09KPZX6H8", "instruction": "i am looking for a super soft throw blanket of pattern 2 color.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: pattern 2", "size: 60x80inch(150x200cm)"], "instruction_attributes": ["super soft"], "instruction_options": ["pattern 2"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OYTYE4", "worker_id": "A1Q8PPQQCWGY0D"}], "B09SL3QDBS": [{"asin": "B09SL3QDBS", "instruction": "i'm looking for massage table sheet sets.", "attributes": ["long lasting", "beauty salon"], "options": ["color: red"], "instruction_attributes": ["beauty salon"], "instruction_options": ["red"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1I108R", "worker_id": "A21IUUHBSEVB56"}], "B01N9YSI29": [{"asin": "B01N9YSI29", "instruction": "i'm looking for tea tree oil soap with a peppermint tea tree scent. i want a 2 pack of 4 ounce bars.", "attributes": ["cruelty free", "tea tree", "sensitive skin"], "options": ["scent: peppermint tea tree", "size: 2-pack of 4 ounce soap bars"], "instruction_attributes": ["tea tree"], "instruction_options": ["peppermint tea tree", "2-pack of 4 ounce soap bars"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVK3P1Z", "worker_id": "A3OLRWACCCCUTU"}], "B07ZGDX4LS": [{"asin": "B07ZGDX4LS", "instruction": "i am looking for a water resistant battery storage containers", "attributes": ["water resistant", "batteries included"], "options": [""], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R4T7WY", "worker_id": "A9QRQL9CFJBI7"}], "B085VJBRFS": [{"asin": "B085VJBRFS", "instruction": "i am looking for milk creme chocolate bar with natural ingredients.", "attributes": ["kosher certified", "artificial colors", "natural ingredients", "artificial flavors"], "options": ["flavor name: milk", "size: 1.76 ounce (pack of 12)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["milk"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQA91LK", "worker_id": "AJDQGOTMB2D80"}], "B07BT8JFNT": [{"asin": "B07BT8JFNT", "instruction": "i'm looking for a twelve pack of black cherry cream flavor hand crafted soda in bottles.", "attributes": ["hand crafted", "non alcoholic", "caffeine free"], "options": ["flavor name: black cherry cream", "size: 24 pack"], "instruction_attributes": ["hand crafted"], "instruction_options": ["black cherry cream"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4H1BSM", "worker_id": "A2JP9IKRHNLRPI"}], "B01NAT3AGR": [{"asin": "B01NAT3AGR", "instruction": "i'm looking for casual twill mens shirt.", "attributes": ["machine washable", "long sleeve"], "options": ["color: burgundy", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB17ALU7", "worker_id": "A21IUUHBSEVB56"}], "B01N0XKMP6": [{"asin": "B01N0XKMP6", "instruction": "i am interested in buying a size 15 walking shoes with a rubber sole.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: black | white | grey three", "size: 15"], "instruction_attributes": ["rubber sole"], "instruction_options": ["15"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YMTPNU", "worker_id": "AHXHM1PQTRWIQ"}], "B073C45CPQ": [{"asin": "B073C45CPQ", "instruction": "i would like a regular sea glass towel for damaged hair.", "attributes": ["easy use", "damaged hair", "dry hair"], "options": ["color: sea glass", "style: regular (19x39 inches)"], "instruction_attributes": ["damaged hair"], "instruction_options": ["sea glass", "regular (19x39 inches)"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCR2BMR", "worker_id": "A1WS884SI0SLO4"}], "B07HB9R7ZC": [{"asin": "B07HB9R7ZC", "instruction": "i am looking for an i5 quad core computer with 16 gb memory.", "attributes": ["core i5", "quad core"], "options": [""], "instruction_attributes": ["core i5", "quad core"], "instruction_options": [], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5JBZ1V", "worker_id": "A1NF6PELRKACS9"}], "B09PTK7CYL": [{"asin": "B09PTK7CYL", "instruction": "i would like to buy easy to clean massage table sheets which are pink in color.", "attributes": ["easy clean", "beauty salon"], "options": ["color: pink 3", "size: 70*190cm square head"], "instruction_attributes": ["easy clean"], "instruction_options": ["pink 3"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54UN83W", "worker_id": "AHXHM1PQTRWIQ"}], "B09JLDJQXX": [{"asin": "B09JLDJQXX", "instruction": "i am looking for a gray long sleeved puffy jacket in size small.", "attributes": ["hand wash", "short sleeve", "long sleeve", "faux fur", "tumble dry", "teen girls", "daily wear"], "options": ["color: 05 # gray", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["05 # gray", "small"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEY4UUB", "worker_id": "AK3JMCIGU8MLU"}], "B09ND72Y7Z": [{"asin": "B09ND72Y7Z", "instruction": "i'm looking for a winter pajama set that my husband can wear every day: it needs to have an elastic waistband because he's a size xxl.", "attributes": ["elastic waistband", "long sleeve", "daily wear"], "options": ["color: multi 10", "size: xx-large"], "instruction_attributes": ["elastic waistband", "daily wear"], "instruction_options": ["xx-large"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT063OUNY", "worker_id": "A3LIIE572Z4OG7"}], "B07WGQFP6V": [{"asin": "B07WGQFP6V", "instruction": "i want asian sesame keto salad dressing.", "attributes": ["low carb", "dairy free", "gluten free", "low sugar", "keto friendly", "natural ingredients"], "options": ["flavor name: asian sesame", "size: 13 ounce (pack of 2)"], "instruction_attributes": ["keto friendly"], "instruction_options": ["asian sesame"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3JKYAY", "worker_id": "A2RBF3IIJP15IH"}], "B09P2P9BKV": [{"asin": "B09P2P9BKV", "instruction": "i am looking for a hydrating stick for face that is suitable for sensitive skin", "attributes": ["tea tree", "sensitive skin"], "options": ["color: 0.8 ounce", "size: tea tree"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["0.8 ounce", "tea tree"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UWDJ6R", "worker_id": "A2COCSUGZV28X"}], "B00HUB2Z46": [{"asin": "B00HUB2Z46", "instruction": "i would like to buy shea butter, which should be cruelty free product and for dry hair.", "attributes": ["cruelty free", "sulfate free", "dry hair"], "options": [""], "instruction_attributes": ["cruelty free", "dry hair"], "instruction_options": [], "assignment_id": "3WMINLGALMDE0JA33INN08NU0WNACP", "worker_id": "AJY5G987IRT25"}], "B09M2L6RDW": [{"asin": "B09M2L6RDW", "instruction": "i am looking for an android 11 tablet with 4g lte.", "attributes": ["1080p hd", "4g lte"], "options": [""], "instruction_attributes": ["4g lte"], "instruction_options": [], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKP15PJ5", "worker_id": "AJDQGOTMB2D80"}], "B09QQ15B5M": [{"asin": "B09QQ15B5M", "instruction": "i am looking for a storage cabinet that is suitable for my living room. pick an espresso color.", "attributes": ["white item", "storage space", "dining room", "living room"], "options": ["color: espresso-3"], "instruction_attributes": ["storage space", "living room"], "instruction_options": ["espresso-3"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4V2DWYX", "worker_id": "A1NF6PELRKACS9"}], "B073WMR9VS": [{"asin": "B073WMR9VS", "instruction": "i am looking for a blue colored, water resistant wireless bluetooth speaker.", "attributes": ["water resistant", "stereo sound", "wireless bluetooth"], "options": ["color: blue", "size: slim"], "instruction_attributes": ["water resistant", "wireless bluetooth"], "instruction_options": ["blue"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36T1BSUL", "worker_id": "AJDQGOTMB2D80"}], "B08NPHTBXB": [{"asin": "B08NPHTBXB", "instruction": "i am looking for an easy to install vanity light for bathroom.", "attributes": ["easy install", "vanity light", "living room"], "options": ["size: 2-light"], "instruction_attributes": ["easy install", "vanity light"], "instruction_options": [], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMLMZIN", "worker_id": "AJDQGOTMB2D80"}], "B09NVCYGZJ": [{"asin": "B09NVCYGZJ", "instruction": "i need 2 pieces of tempered glass film coverings for my dining room windows; they are 17.7\"x35.4\" in size.", "attributes": ["tempered glass", "dining room"], "options": ["color: 1031378586044720000", "size: (width\uff0917.7in x (length)35.4in x 2pcs"], "instruction_attributes": ["tempered glass", "dining room"], "instruction_options": ["(width\uff0917.7in x (length)35.4in x 2pcs"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHIJNBC", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B09NVCYGZJ", "instruction": "i would like a 23.6in by 23.6in in 2pcs set of red window films with tempered glass.", "attributes": ["tempered glass", "dining room"], "options": ["color: 1022157076510930000", "size: (width\uff0923.6in x (length)23.6in x 2pcs"], "instruction_attributes": ["tempered glass"], "instruction_options": ["1022157076510930000", "(width\uff0923.6in x (length)23.6in x 2pcs"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHT6KLN8", "worker_id": "A1WS884SI0SLO4"}], "B08NBDYBJ8": [{"asin": "B08NBDYBJ8", "instruction": "im looking for a blue gift basket.", "attributes": ["gift basket", "gift set", "great gift"], "options": ["color: blue"], "instruction_attributes": ["gift basket"], "instruction_options": ["blue"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCVM56V", "worker_id": "AK3JMCIGU8MLU"}], "B00G8R58QU": [{"asin": "B00G8R58QU", "instruction": "i want to buy some cc cream with hyaluronic acid and color light in size .4 oz.", "attributes": ["hyaluronic acid", "dark circles"], "options": ["color: light", "size: .4 ounce"], "instruction_attributes": ["hyaluronic acid"], "instruction_options": ["light", ".4 ounce"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2BAY73", "worker_id": "A2YNPKYEFDZ6C9"}, {"asin": "B00G8R58QU", "instruction": "look for this brand: it cosmetics your skin but better, full coverage foundation, moisturizing serum and sunscreen spf 50+ - natural finish - for my dark circles .4 oz", "attributes": ["hyaluronic acid", "dark circles"], "options": ["color: light", "size: .4 ounce"], "instruction_attributes": ["dark circles"], "instruction_options": [], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6M3EEK", "worker_id": "A15IJ20C3R4HUO"}], "B07NVSY9BK": [{"asin": "B07NVSY9BK", "instruction": "i want a moonlight lip glosses that is cruelty free.", "attributes": ["cruelty free", "hyaluronic acid"], "options": ["color: moonlight"], "instruction_attributes": ["cruelty free"], "instruction_options": ["moonlight"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP28XT9", "worker_id": "A1WS884SI0SLO4"}], "B08154NM4M": [{"asin": "B08154NM4M", "instruction": "i want a small sonic toothbrush for bad breath.", "attributes": ["teeth whitening", "easy clean", "bad breath"], "options": ["size: small"], "instruction_attributes": ["bad breath"], "instruction_options": ["small"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57JHI9C", "worker_id": "A1WS884SI0SLO4"}], "B07P72RMKH": [{"asin": "B07P72RMKH", "instruction": "i would like a full size style 8 duvet cover that is machine washable.", "attributes": ["queen size", "machine washable"], "options": ["color: style8", "size: full"], "instruction_attributes": ["machine washable"], "instruction_options": ["style8", "full"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AONSTF", "worker_id": "A1WS884SI0SLO4"}], "B07W3GBBZY": [{"asin": "B07W3GBBZY", "instruction": "i'd like a print of persistence of memory, ready to hang in my living room with dimensions 20\"x16\"x1.5\".", "attributes": ["ready hang", "dining room", "living room"], "options": ["color: 05 i and the village", "size: 20\"x16\"x1.5\""], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["20\"x16\"x1.5\""], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYQM6MW", "worker_id": "A3O1I9MATO3ZZN"}], "B0010C2UK0": [{"asin": "B0010C2UK0", "instruction": "i am looking for low calorie, gluten free organic\\ pasta sauce", "attributes": ["low calorie", "gluten free"], "options": [""], "instruction_attributes": ["low calorie", "gluten free"], "instruction_options": [], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5UUF5D", "worker_id": "A258PTOZ3D2TQR"}], "B07NMD498D": [{"asin": "B07NMD498D", "instruction": "i am looking for peripera velvet lipstick that is long lasting and in the color red.", "attributes": ["highly pigmented", "long lasting"], "options": ["color: 06 sold out red", "size: 0.14 fl oz"], "instruction_attributes": ["long lasting"], "instruction_options": ["06 sold out red"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMTOWMY", "worker_id": "AK3JMCIGU8MLU"}], "B09QLXZYW7": [{"asin": "B09QLXZYW7", "instruction": "i would like a fireplace and tv stand for my living room with lots of storage space.", "attributes": ["easy install", "storage space", "living room"], "options": ["size: fireplace + tv stand"], "instruction_attributes": ["storage space", "living room"], "instruction_options": ["fireplace + tv stand"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBUAEJG", "worker_id": "A1WS884SI0SLO4"}], "B09JKM41ML": [{"asin": "B09JKM41ML", "instruction": "i would like a easy to assemble buffet sideboard.", "attributes": ["mid century", "easy assemble", "storage space"], "options": [""], "instruction_attributes": ["easy assemble"], "instruction_options": [], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM8HZH4", "worker_id": "A1WS884SI0SLO4"}], "B08VGPYGYN": [{"asin": "B08VGPYGYN", "instruction": "i am looking for a high resolution projector screen with stand. also, i would like the item to be made of aluminum alloy.", "attributes": ["ultra hd", "high resolution", "aluminum alloy"], "options": ["size: 120 inch"], "instruction_attributes": ["high resolution", "aluminum alloy"], "instruction_options": [], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PPVQEC", "worker_id": "AJDQGOTMB2D80"}], "B09NF79TD7": [{"asin": "B09NF79TD7", "instruction": "i'm looking for an officially licensed spider-man t-shirt with black needle sleeves.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: youth", "size: x-large"], "instruction_attributes": ["officially licensed", "needle sleeve"], "instruction_options": ["black"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DFVDWW", "worker_id": "ARJDD0Z3R65BD"}], "B09NQZHM14": [{"asin": "B09NQZHM14", "instruction": "i would like some gold living room end tables", "attributes": ["high density", "assembly required", "storage space", "living room"], "options": ["color: gold"], "instruction_attributes": ["living room"], "instruction_options": ["gold"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX8UFAI", "worker_id": "A2ECRNQ3X5LEXD"}], "B073D8VH5S": [{"asin": "B073D8VH5S", "instruction": "i'd like to get some binoculars that are high definition and have a carying case. look for style 8x42.", "attributes": ["high definition", "carrying case"], "options": ["style: 8x42"], "instruction_attributes": ["high definition", "carrying case"], "instruction_options": ["8x42"], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TWXMP5", "worker_id": "AR9AU5FY1S3RO"}], "B07Y7JKQ2G": [{"asin": "B07Y7JKQ2G", "instruction": "i am looking for an easy to use anti aging jade roller.", "attributes": ["anti aging", "easy use", "dark circles", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "easy use"], "instruction_options": [], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UXZ0Y0", "worker_id": "A1EREKSZAA9V7B"}], "B01B3IAYEE": [{"asin": "B01B3IAYEE", "instruction": "i am looking for nefertiti's rejuvenating conditioner for dry and damaged hair", "attributes": ["coconut oil", "natural ingredients", "damaged hair", "dry hair"], "options": [""], "instruction_attributes": ["damaged hair", "dry hair"], "instruction_options": [], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A43FHE", "worker_id": "AK3JMCIGU8MLU"}], "B094XK66XL": [{"asin": "B094XK66XL", "instruction": "i am looking for high speed vr headset of size 10ft.", "attributes": ["high speed", "fast charging", "usb port"], "options": ["size: 10ft"], "instruction_attributes": ["high speed"], "instruction_options": ["10ft"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GO1U397", "worker_id": "A1Q8PPQQCWGY0D"}], "B085LSYPYK": [{"asin": "B085LSYPYK", "instruction": "i am looking for men's dark clay color ankle strap sandals.", "attributes": ["ankle strap", "rubber sole"], "options": ["color: dark clay", "size: 6-6.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["dark clay"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53ZJGKS", "worker_id": "A1Q8PPQQCWGY0D"}], "B093PZZQC8": [{"asin": "B093PZZQC8", "instruction": "i am looking for a high quality baby toothbrush that are easy to carry.", "attributes": ["easy carry", "high quality", "sensitive teeth"], "options": [""], "instruction_attributes": ["easy carry", "high quality"], "instruction_options": [], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFPS9EA", "worker_id": "A1Q8PPQQCWGY0D"}], "B002G9MMOA": [{"asin": "B002G9MMOA", "instruction": "i want navy landau essentials straight leg scrub pants.", "attributes": ["straight leg", "machine wash", "relaxed fit", "elastic closure", "polyester cotton", "elastic waistband"], "options": ["color: navy", "size: 3x-large plus tall"], "instruction_attributes": ["straight leg"], "instruction_options": ["navy"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602WZ95F", "worker_id": "A2RBF3IIJP15IH"}], "B0812TLR8P": [{"asin": "B0812TLR8P", "instruction": "i am looking for a kit of teeth whitening & sensitive teeth", "attributes": ["teeth whitening", "long lasting", "sensitive teeth"], "options": [""], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": [], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLO80MZ", "worker_id": "A9QRQL9CFJBI7"}], "B07RV26NQ9": [{"asin": "B07RV26NQ9", "instruction": "i am looking for a heavy duty protective case for iphone of color 2 in 1 red | black.", "attributes": ["compatible apple", "heavy duty"], "options": ["color: 2 in 1 red | black"], "instruction_attributes": ["heavy duty"], "instruction_options": ["2 in 1 red | black"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGT1VM70", "worker_id": "A1Q8PPQQCWGY0D"}], "B07L942Q7B": [{"asin": "B07L942Q7B", "instruction": "i am looking for large size classic fit t-shirt.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: kelly green", "fit type: men", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["large"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYT7FXQ", "worker_id": "A1Q8PPQQCWGY0D"}], "B08411856M": [{"asin": "B08411856M", "instruction": "i am looking for a pair of men's size 7 running shoes with rubber soles.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: black | footwear white | footwear white", "size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["7"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VUPMXA", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08411856M", "instruction": "am searching reebok women's nano x cross trainer running shoes with rubber sole and size 7", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: white | fluid blue | vivid orange", "size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["7"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3RBDR0K", "worker_id": "A1IL2K0ELYI090"}], "B08BHWKZCK": [{"asin": "B08BHWKZCK", "instruction": "i would like a 5.9 inch pendant light fixture for my living room.", "attributes": ["mid century", "glass shade", "pendant light", "light fixture", "dining room", "living room"], "options": ["color: 5.9 inch"], "instruction_attributes": ["light fixture", "living room"], "instruction_options": ["5.9 inch"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UIO3AW", "worker_id": "A1WS884SI0SLO4"}], "B09NRP6LNX": [{"asin": "B09NRP6LNX", "instruction": "i am looking for keto friendly, certified organic clarified butter in the himalayan pink salt ghee style.", "attributes": ["grass fed", "non gmo", "bpa free", "hand crafted", "keto friendly", "certified organic"], "options": ["flavor name: himalayan pink salt ghee", "size: 16.8 fl oz (pack of 1)"], "instruction_attributes": ["keto friendly", "certified organic"], "instruction_options": ["himalayan pink salt ghee"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYQBM61", "worker_id": "AK3JMCIGU8MLU"}], "B099PS6R7Y": [{"asin": "B099PS6R7Y", "instruction": "i am looking for some easy to install gold plated banana plugs for speaker wire.", "attributes": ["gold plated", "easy install"], "options": [""], "instruction_attributes": ["gold plated", "easy install"], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCAFD0T", "worker_id": "A1EREKSZAA9V7B"}], "B09NQ9M14T": [{"asin": "B09NQ9M14T", "instruction": "this brand is the one i have in other rooms, look for it: greaton wood fully assembled traditional box spring/ 4'' split foundation for mattress, queen size, color white. let me know as soon as you find it.", "attributes": ["ready use", "fully assembled", "white item", "assembly required", "box spring"], "options": ["color: white", "size: twin xl", "style: 4\" split foundation"], "instruction_attributes": ["white item", "box spring"], "instruction_options": ["white", "4\" split foundation"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLO15O7C", "worker_id": "A15IJ20C3R4HUO"}], "B00ZLUMAOS": [{"asin": "B00ZLUMAOS", "instruction": "i am looking for some gluten free kool ranch flavored kale chips.", "attributes": ["non gmo", "hand crafted", "gluten free", "simple ingredients"], "options": ["flavor name: kool ranch", "size: 2 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["kool ranch"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTWPWXX", "worker_id": "A1EREKSZAA9V7B"}], "B09KXQ368P": [{"asin": "B09KXQ368P", "instruction": "i'm looking for eye makeup eyeshadow pads professional stencils.", "attributes": ["easy use", "eye shadow"], "options": [""], "instruction_attributes": ["eye shadow"], "instruction_options": [], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQ00B4F", "worker_id": "A21IUUHBSEVB56"}], "B01B22W4OE": [{"asin": "B01B22W4OE", "instruction": "i need some oatmeal chocolate chip cookies that is made from real fruit. make sure that is plant based.", "attributes": ["plant based", "individually wrapped", "gluten free", "real fruit", "simple ingredients", "artificial colors"], "options": ["flavor name: oatmeal chocolate chip"], "instruction_attributes": ["plant based", "real fruit"], "instruction_options": ["oatmeal chocolate chip"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8ZNG87", "worker_id": "A1NF6PELRKACS9"}], "B098BFLRQ2": [{"asin": "B098BFLRQ2", "instruction": "i am interested in buying remove cover which is light weight, and easy to install, and it's color should be red.", "attributes": ["light weight", "easy install", "case cover"], "options": ["color: red"], "instruction_attributes": ["light weight", "easy install"], "instruction_options": ["red"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVPI0QZ", "worker_id": "AJY5G987IRT25"}], "B01C8PBPNU": [{"asin": "B01C8PBPNU", "instruction": "i am looking for amisco club counter stool in grey metal and aqua blue polyurethane that is lead free and easy to clean.", "attributes": ["lead free", "assembly required", "easy clean"], "options": ["color: grey metal | aqua blue polyurethane", "size: counter"], "instruction_attributes": ["lead free", "easy clean"], "instruction_options": ["grey metal | aqua blue polyurethane"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34PY41G", "worker_id": "AK3JMCIGU8MLU"}], "B08QMQ4CNH": [{"asin": "B08QMQ4CNH", "instruction": "i would like a extra large pair of ripped style a jeans with a wide leg.", "attributes": ["wide leg", "machine wash", "loose fit", "high waist", "tumble dry"], "options": ["color: ripped style a", "size: x-large"], "instruction_attributes": ["wide leg"], "instruction_options": ["ripped style a", "x-large"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWSMW6Z", "worker_id": "A1WS884SI0SLO4"}], "B0957PQ9L3": [{"asin": "B0957PQ9L3", "instruction": "i'm looking for a high quality stainless steel tongue cleaners. also, choose assorted color1 one.", "attributes": ["easy carry", "long lasting", "high quality", "stainless steel", "oral hygiene"], "options": ["color: assorted color1"], "instruction_attributes": ["high quality", "stainless steel"], "instruction_options": ["assorted color1"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQIMJCH", "worker_id": "AR0VJ5XRG16UJ"}], "B07GCLX7KN": [{"asin": "B07GCLX7KN", "instruction": "i would like a medium sized black sleep set that is light weight.", "attributes": ["easy care", "light weight", "machine wash"], "options": ["color: style a - 2 pack: black+navy blue", "size: medium"], "instruction_attributes": ["light weight"], "instruction_options": ["style a - 2 pack", "medium"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJLCLOK", "worker_id": "A1WS884SI0SLO4"}], "B08YDBRJW6": [{"asin": "B08YDBRJW6", "instruction": "i'm looking for an easy-to-carry makeup case that contains various types of eyeshadows and is of high quality, in black marble.", "attributes": ["easy carry", "easy clean", "high quality", "eye shadow"], "options": ["color: marble black"], "instruction_attributes": ["easy carry", "high quality", "eye shadow"], "instruction_options": ["marble black"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVKAZS3", "worker_id": "ARJDD0Z3R65BD"}], "B08RD37DPB": [{"asin": "B08RD37DPB", "instruction": "i am looking for butt-lifting, high waisted workout leggings in the color red and the size medium.", "attributes": ["butt lifting", "quick drying", "moisture wicking", "high waist", "tummy control", "nylon spandex", "elastic closure", "polyester spandex"], "options": ["color: (b)-red", "size: medium"], "instruction_attributes": ["butt lifting", "high waist"], "instruction_options": ["(b)-red", "medium"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I4DS1L", "worker_id": "AK3JMCIGU8MLU"}], "B086VZGSF4": [{"asin": "B086VZGSF4", "instruction": "i am looking for a fabric dresser of brown color for my living room.", "attributes": ["easy assemble", "steel frame", "living room"], "options": ["color: brown"], "instruction_attributes": ["living room"], "instruction_options": ["brown"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHHWBNB", "worker_id": "A1Q8PPQQCWGY0D"}], "B09FPQRVC2": [{"asin": "B09FPQRVC2", "instruction": "i am interested in buying a gaming pc which is quad core and has specs of i7, 8gb, and 256 gb ssd.", "attributes": ["dual band", "quad core"], "options": ["size: i7|8gb|256gb ssd"], "instruction_attributes": ["quad core"], "instruction_options": ["i7|8gb|256gb ssd"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9H2MD1X", "worker_id": "AJY5G987IRT25"}], "B09QCYMJ6D": [{"asin": "B09QCYMJ6D", "instruction": "i'm looking for a 7.5 black heeled sandals with open toe", "attributes": ["open toe", "knee high", "arch support", "ankle strap", "closed toe"], "options": ["color: black", "size: 7.5"], "instruction_attributes": ["open toe"], "instruction_options": ["black", "7.5"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RKLLFY", "worker_id": "A2Y2TURT2VEYZN"}], "B08NJPXJ12": [{"asin": "B08NJPXJ12", "instruction": "i'm looking for cute hooded sweatshirts with frog print for women.", "attributes": ["relaxed fit", "long sleeve", "teen girls", "daily wear"], "options": ["color: pink28", "size: 4x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["4x-large"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z1A0K1W", "worker_id": "A21IUUHBSEVB56"}], "B08DDJP9BL": [{"asin": "B08DDJP9BL", "instruction": "i'm looking for a gluten free, keto friendly, and vegan granola that is low sugar and low carb. also, choose the pack of 2 in lemon blueberry tart.", "attributes": ["grain free", "keto friendly", "low sugar", "gluten free", "soy free", "low carb", "dairy free", "dietary fiber"], "options": ["flavor name: lemon blueberry tart", "size: 9 ounce (pack of 2)"], "instruction_attributes": ["keto friendly", "gluten free", "low carb", "dairy free"], "instruction_options": ["lemon blueberry tart", "9 ounce (pack of 2)"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3SDYG3I", "worker_id": "A1TWVJS27CL3KT"}], "B08YV6T6M3": [{"asin": "B08YV6T6M3", "instruction": "i want multi colored self grip hair curlers for hair styling.", "attributes": ["easy use", "hair salon", "hair styling", "dry hair"], "options": ["color: e-multi color-36pcs"], "instruction_attributes": ["hair styling"], "instruction_options": ["e-multi color-36pcs"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57JS9IE", "worker_id": "A2RBF3IIJP15IH"}], "B09SKXMFY5": [{"asin": "B09SKXMFY5", "instruction": "i want to find aurgelmir gray women's quick dry running shorts with a unique design in a size small.", "attributes": ["day comfort", "unique design", "daily wear"], "options": ["color: grey", "size: small"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36C1VB3N", "worker_id": "AMI0SOF51O3FW"}], "B087HM63GM": [{"asin": "B087HM63GM", "instruction": "i am looking for some alcohol free spearmint mouthwash for bad breath.", "attributes": ["alcohol free", "bad breath"], "options": ["size: 17.4 fl oz (pack of 6)", "style: spearmint"], "instruction_attributes": ["alcohol free", "bad breath"], "instruction_options": ["spearmint"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PDVUBS", "worker_id": "A1EREKSZAA9V7B"}], "B01MFFYQW3": [{"asin": "B01MFFYQW3", "instruction": "i need a conditioner for damaged hair", "attributes": ["anti aging", "damaged hair"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39G9ZCS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LR824C8": [{"asin": "B09LR824C8", "instruction": "i'm looking for aaa batteries that will serve as replacement for my soundbar controller.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA8F8RC", "worker_id": "A1Q0EUNCS50S8M"}], "B08XWLWZ7P": [{"asin": "B08XWLWZ7P", "instruction": "i am looking for lactose-free non-dairy coffee creamer.", "attributes": ["lactose free", "non dairy", "gluten free"], "options": [""], "instruction_attributes": ["lactose free", "non dairy"], "instruction_options": [], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXIVUJ4", "worker_id": "AJDQGOTMB2D80"}], "B08MQVYDLD": [{"asin": "B08MQVYDLD", "instruction": "i'm looking for all seed savory crisps.", "attributes": ["grain free", "low carb", "sugar free", "gluten free", "keto friendly", "high protein"], "options": ["flavor name: sesame", "size: 6 ounce (pack of 3)"], "instruction_attributes": ["grain free", "low carb", "sugar free", "gluten free"], "instruction_options": [], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXSCXAWQ", "worker_id": "A21IUUHBSEVB56"}], "B01F7K6Y9S": [{"asin": "B01F7K6Y9S", "instruction": "i want a anti-aging hyaluronic acid cream that includes aloe vera and retinol and is all natural.", "attributes": ["anti aging", "long lasting", "hyaluronic acid", "green tea", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "hyaluronic acid"], "instruction_options": [], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTHRN9B", "worker_id": "A3OLRWACCCCUTU"}], "B09SHJHKYN": [{"asin": "B09SHJHKYN", "instruction": "i am looking for white colored, quick drying bathing suits for women.", "attributes": ["quick drying", "quality polyester"], "options": ["color: white", "size: xx-large"], "instruction_attributes": ["quick drying"], "instruction_options": ["white"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYQFM65", "worker_id": "AJDQGOTMB2D80"}], "B06WGQ2MHX": [{"asin": "B06WGQ2MHX", "instruction": "i am looking for sand brown color curtains for my living room.", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: sand brown", "size: 108\" x 108\""], "instruction_attributes": ["living room"], "instruction_options": ["sand brown"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0R6J8G", "worker_id": "A1Q8PPQQCWGY0D"}], "B07SQ2J3BR": [{"asin": "B07SQ2J3BR", "instruction": "i'm looking for a type a male to male magnetic ring data transfer extension cable for usb flash drive that is fast charging.", "attributes": ["plug play", "gold plated", "fast charging", "usb port"], "options": ["color: 1.8m | m"], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XVHNGZ", "worker_id": "AK3JMCIGU8MLU"}], "B09MND53SQ": [{"asin": "B09MND53SQ", "instruction": "i'm looking for led tv stand for 70 inch.", "attributes": ["easy assemble", "easy clean", "high gloss", "storage space", "living room"], "options": ["color: a type-w51\"upgrade"], "instruction_attributes": ["storage space", "living room"], "instruction_options": ["a type-w51\"upgrade"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUAW9AH", "worker_id": "A21IUUHBSEVB56"}], "B08JLYRZG5": [{"asin": "B08JLYRZG5", "instruction": "i would like a polka dot cosmetic bag that is travel size.", "attributes": ["travel size", "high quality"], "options": ["color: polka dot"], "instruction_attributes": ["travel size"], "instruction_options": ["polka dot"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL6AVRY", "worker_id": "A1WS884SI0SLO4"}], "B08ZWVPZBX": [{"asin": "B08ZWVPZBX", "instruction": "i am interested in buying hanging lights which are suitable for dining room and living room, while their color should be smoky gray.", "attributes": ["contemporary style", "pendant light", "light fixture", "dining room", "living room"], "options": ["color: smoky gray"], "instruction_attributes": ["dining room", "living room"], "instruction_options": ["smoky gray"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA57A8O", "worker_id": "AJY5G987IRT25"}], "B07W5RQKCJ": [{"asin": "B07W5RQKCJ", "instruction": "i am looking for a large size classic fit unreleased t-shirt.", "attributes": ["needle sleeve", "classic fit"], "options": ["fit type: youth", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["large"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21QRQFB", "worker_id": "A1Q8PPQQCWGY0D"}], "B08728KCJB": [{"asin": "B08728KCJB", "instruction": "i want non alcoholic andy anand's bulk tiramisu cordials.", "attributes": ["non alcoholic", "natural ingredients", "great gift"], "options": ["flavor name: tiramisu cordials"], "instruction_attributes": ["non alcoholic"], "instruction_options": ["tiramisu cordials"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOMZMLA", "worker_id": "A2RBF3IIJP15IH"}], "B07FM3BHRW": [{"asin": "B07FM3BHRW", "instruction": "i am looking for a family sized package with a variety of savory snacks made with healthy quality ingredients.", "attributes": ["dietary fiber", "quality ingredients"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4K615T", "worker_id": "A1E235KE3CSO7H"}], "B073YNKVZS": [{"asin": "B073YNKVZS", "instruction": "i am looking for womens plus size bootcut jeans.", "attributes": ["regular fit", "button closure"], "options": ["color: indigo", "size: 18 plus petite"], "instruction_attributes": ["button closure"], "instruction_options": ["18 plus petite"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTWMWXU", "worker_id": "A2KW17G25L25R8"}], "B0963GN8D3": [{"asin": "B0963GN8D3", "instruction": "i'm looking for a non toxic body paint scar wax", "attributes": ["non toxic", "easy apply"], "options": ["color: scar wax"], "instruction_attributes": ["non toxic"], "instruction_options": ["scar wax"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYLW6LU", "worker_id": "A2Y2TURT2VEYZN"}], "B07D4G3QY1": [{"asin": "B07D4G3QY1", "instruction": "i need a noise cancelling headset that is panasonic", "attributes": ["noise cancelling", "hands free"], "options": ["size: middle mono rj9 headset for panasonic ye..."], "instruction_attributes": ["noise cancelling"], "instruction_options": ["middle mono rj9 headset for panasonic ye..."], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ62ISH", "worker_id": "A2ECRNQ3X5LEXD"}], "B08PV6DNMJ": [{"asin": "B08PV6DNMJ", "instruction": "i would like a #5 nightstand that has a wood finish.", "attributes": ["easy install", "storage unit", "wood finish", "storage space"], "options": ["size: #5"], "instruction_attributes": ["wood finish"], "instruction_options": ["#5"], "assignment_id": "3Z4AIRP3CHN69T8YYVQH3KF1XK51XU", "worker_id": "A1WS884SI0SLO4"}], "B099MLG9SN": [{"asin": "B099MLG9SN", "instruction": "i am looking for one pound of organic walnuts", "attributes": ["plant based", "ready eat", "certified organic", "non gmo", "gluten free"], "options": ["flavor name: chandler", "size: 1 pound (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["1 pound (pack of 1)"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H7AU8T", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MMKFCY8": [{"asin": "B09MMKFCY8", "instruction": "i want a x-large yeyamei sweater for women that is made of polyester cotton.", "attributes": ["long sleeve", "comfortable fit", "polyester cotton", "teen girls", "daily wear"], "options": ["color: x10c-brown", "size: x-large"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["x-large"], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9XGTEH", "worker_id": "A2RBF3IIJP15IH"}], "B09QSC583Q": [{"asin": "B09QSC583Q", "instruction": "i am looking for rose gold oral care copper tongue cleaner", "attributes": ["easy use", "rose gold", "bad breath"], "options": [""], "instruction_attributes": ["rose gold"], "instruction_options": [], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z1BKK1I", "worker_id": "A258PTOZ3D2TQR"}], "B093YS5G3P": [{"asin": "B093YS5G3P", "instruction": "iam looking for a wallets for blouse, hosiery and laundry bag", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOMILMS", "worker_id": "A9QRQL9CFJBI7"}], "B01IAESWES": [{"asin": "B01IAESWES", "instruction": "i would like a argan oil hair treatment.", "attributes": ["argan oil", "hair treatment"], "options": [""], "instruction_attributes": ["argan oil", "hair treatment"], "instruction_options": [], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBFNOS4", "worker_id": "A1WS884SI0SLO4"}], "B09QPPL1V7": [{"asin": "B09QPPL1V7", "instruction": "i am interested in buying a black colored loose fitting medium sized workout pants mainly for gym workouts.", "attributes": ["loose fit", "winter warm", "straight leg", "water resistant", "fleece lined", "slim fit", "quality polyester", "gym workout"], "options": ["color: black", "size: medium"], "instruction_attributes": ["loose fit", "gym workout"], "instruction_options": ["black", "medium"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NQN2PZ", "worker_id": "AHXHM1PQTRWIQ"}], "B01N7PB3L6": [{"asin": "B01N7PB3L6", "instruction": "i need milk chocolate covered peanut butter block", "attributes": ["chocolate covered", "individually wrapped", "high fructose"], "options": [""], "instruction_attributes": ["chocolate covered"], "instruction_options": [], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZJSPRS", "worker_id": "A258PTOZ3D2TQR"}], "B08X9SG8VB": [{"asin": "B08X9SG8VB", "instruction": "i would like to buy a black colored box spring bed.", "attributes": ["box spring", "faux leather"], "options": ["color: black", "size: full", "style: faux leather"], "instruction_attributes": ["box spring"], "instruction_options": ["black"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFVO0TI", "worker_id": "AHXHM1PQTRWIQ"}], "B06XS8KPBF": [{"asin": "B06XS8KPBF", "instruction": "i would like a white bed and nightstand with drawers that saves space.", "attributes": ["space saving", "box spring"], "options": ["color: white", "pattern name: bed + nightstand", "size: drawers"], "instruction_attributes": ["space saving"], "instruction_options": ["white", "bed + nightstand", "drawers"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH5WHQS", "worker_id": "A1WS884SI0SLO4"}], "B093YSPZHZ": [{"asin": "B093YSPZHZ", "instruction": "i am looking for a mesh laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1DLI2Y", "worker_id": "A1EREKSZAA9V7B"}], "B09PMFB9LH": [{"asin": "B09PMFB9LH", "instruction": "i am looking for a freeze dried pear chips and should contain real fruit.", "attributes": ["freeze dried", "real fruit"], "options": ["flavor name: pear"], "instruction_attributes": ["freeze dried", "real fruit"], "instruction_options": ["pear"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDLX2OO", "worker_id": "AHU9OLV0YKIIW"}], "B09B7YP723": [{"asin": "B09B7YP723", "instruction": "i need a living room statue", "attributes": ["hand painted", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZLMO8A", "worker_id": "A2ECRNQ3X5LEXD"}], "B008M4S91S": [{"asin": "B008M4S91S", "instruction": "can i get a 2 light bath vanity lighting set with nickel finish?", "attributes": ["brushed nickel", "nickel finish"], "options": ["size: 2 light"], "instruction_attributes": ["nickel finish"], "instruction_options": ["2 light"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP71J7U", "worker_id": "A3O1I9MATO3ZZN"}], "B00N49FECS": [{"asin": "B00N49FECS", "instruction": "i want indigo zac relaxed fit straight leg jeans.", "attributes": ["straight leg", "machine wash", "imported zipper", "relaxed fit"], "options": ["color: medium indigo ssk290", "size: 44w x 34l"], "instruction_attributes": ["straight leg"], "instruction_options": ["medium indigo ssk290"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ79ISQ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B00N49FECS", "instruction": "i am looking for a straight leg jeans in sandblast light color. also in 40w x 34l size.", "attributes": ["straight leg", "machine wash", "imported zipper", "relaxed fit"], "options": ["color: sandblast light", "size: 40w x 34l"], "instruction_attributes": ["straight leg"], "instruction_options": ["sandblast light", "40w x 34l"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZC3CPB", "worker_id": "A2HMEGTAFO0CS8"}], "B081DF9LK8": [{"asin": "B081DF9LK8", "instruction": "i need a 64gb, high performance usb flash drive.", "attributes": ["high performance", "usb port"], "options": ["size: 64gb"], "instruction_attributes": ["high performance"], "instruction_options": ["64gb"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54UQ38U", "worker_id": "A2NSS746CFCT4M"}], "B09MM3TBRJ": [{"asin": "B09MM3TBRJ", "instruction": "i need a manual toothbrush for my sensitive teeth", "attributes": ["easy use", "sensitive teeth"], "options": ["color: c"], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR7ZA05", "worker_id": "AVIEE6LDH0BT5"}], "B0843HBRYC": [{"asin": "B0843HBRYC", "instruction": "i am looking for a ivory color contemporary design area rugs", "attributes": ["contemporary design", "home furnishings"], "options": ["color: ivory", "item shape: round", "size: 2 ft (3 in) x 8 ft"], "instruction_attributes": ["contemporary design"], "instruction_options": ["ivory"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DEIDWH", "worker_id": "A9QRQL9CFJBI7"}], "B093QF29VW": [{"asin": "B093QF29VW", "instruction": "i want a keto high protein snack gift basket.", "attributes": ["low carb", "low sugar", "high protein", "gift basket", "gift set", "perfect gift"], "options": [""], "instruction_attributes": ["high protein", "gift basket"], "instruction_options": [], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8KVZNI", "worker_id": "A1WS884SI0SLO4"}], "B08157ZH8F": [{"asin": "B08157ZH8F", "instruction": "i would like some rubber sole oxfords that are tan and a size 9", "attributes": ["anti slip", "non slip", "rubber outsole", "rubber sole"], "options": ["color: tan", "size: 9"], "instruction_attributes": ["rubber sole"], "instruction_options": ["tan", "9"], "assignment_id": "37TRT2X24116R7L1JO45INKV8X5JBT", "worker_id": "A2ECRNQ3X5LEXD"}], "B095VSRVXW": [{"asin": "B095VSRVXW", "instruction": "i'm looking for crystal roller massager with facial beauty massage stick.", "attributes": ["easy carry", "dark circles"], "options": ["color: fenjinggunlunbaozhuanghe"], "instruction_attributes": ["easy carry"], "instruction_options": ["fenjinggunlunbaozhuanghe"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFHD5U6", "worker_id": "A21IUUHBSEVB56"}], "B09CZ8BMHD": [{"asin": "B09CZ8BMHD", "instruction": "i'm looking for a film screen protector with tempered glass for google pixel 6 pro.", "attributes": ["high definition", "tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["tempered glass"], "instruction_options": [], "assignment_id": "3EJPLAJKEXQQLA9A5JQJV1MTDUAZ6C", "worker_id": "A62B826XMLK7K"}], "B07BPM9WNX": [{"asin": "B07BPM9WNX", "instruction": "i'm looking for an art print for my living room that's ready to hang. look for something with mountains in it that's twelve by sixteen inches.", "attributes": ["ready hang", "living room", "dining room"], "options": ["color: watercolor mountain geometric", "size: 12x16inches*3pcs"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["watercolor mountain geometric", "12x16inches*3pcs"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHAD5DOT", "worker_id": "AR9AU5FY1S3RO"}], "B09JZ9B53Z": [{"asin": "B09JZ9B53Z", "instruction": "i'm need of a black dining chair with solid wood", "attributes": ["easy clean", "solid wood", "memory foam", "wood frame"], "options": ["color: black"], "instruction_attributes": ["solid wood"], "instruction_options": ["black"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNO7TNU", "worker_id": "A2Y2TURT2VEYZN"}], "B09NPKS6PC": [{"asin": "B09NPKS6PC", "instruction": "i am looking for hdmi adapter having usb port.", "attributes": ["high definition", "usb port"], "options": [""], "instruction_attributes": ["usb port"], "instruction_options": [], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LIG0LT", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PZ6LLJC": [{"asin": "B09PZ6LLJC", "instruction": "i am looking for women's t-shirt of white color having short sleeve.", "attributes": ["wash cold", "hand wash", "machine wash", "short sleeve", "everyday wear", "dry clean", "teen girls", "daily wear"], "options": ["color: white", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["white"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X9PGPT", "worker_id": "A1Q8PPQQCWGY0D"}], "B09QS65811": [{"asin": "B09QS65811", "instruction": "i am looking for multi10 color lamp for living room.", "attributes": ["space saving", "storage space", "living room"], "options": ["color: multi10"], "instruction_attributes": ["living room"], "instruction_options": ["multi10"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFIO5UJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B08RXZXTV4": [{"asin": "B08RXZXTV4", "instruction": "i am looking for golden blonde with highlights color hair extensions that are easy to apply.", "attributes": ["easy apply", "hair extensions"], "options": ["color: golden blonde with highlights", "size: 24 inch (pack of 1)"], "instruction_attributes": ["easy apply"], "instruction_options": ["golden blonde with highlights"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLXJFT7", "worker_id": "A1Q8PPQQCWGY0D"}], "B08K2ZPQ6G": [{"asin": "B08K2ZPQ6G", "instruction": "i am looking for some easy to use holographic nail art.", "attributes": ["double sided", "easy use", "nail art"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQKHJRH", "worker_id": "A1EREKSZAA9V7B"}], "B07LH2ZK7M": [{"asin": "B07LH2ZK7M", "instruction": "looking for a long lasting ralph love women perfume", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTWYP9F", "worker_id": "A2Y2TURT2VEYZN"}], "B09ND1LQB2": [{"asin": "B09ND1LQB2", "instruction": "i am looking for a twin size low loft bed with storage in grey.", "attributes": ["twin size", "space saving", "assembly required"], "options": ["color: grey with slide, drawers", "size: twin (with storage)"], "instruction_attributes": ["twin size"], "instruction_options": ["grey with slide, drawers"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XUMNG2", "worker_id": "A2KW17G25L25R8"}], "B099WVM374": [{"asin": "B099WVM374", "instruction": "i want a colourful makeup brush set for sensitive skin.", "attributes": ["easy carry", "eye shadow", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WZ4A17", "worker_id": "A2RBF3IIJP15IH"}], "B09SFWYXGD": [{"asin": "B09SFWYXGD", "instruction": "i'm looking for a 2.0 32 gigabyte, guitar shaped memory drive that is easy to use.", "attributes": ["plug play", "easy use"], "options": ["size: 2.0 32gb"], "instruction_attributes": ["easy use"], "instruction_options": ["2.0 32gb"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KS1LJ2", "worker_id": "AK3JMCIGU8MLU"}], "B01CYVYKI0": [{"asin": "B01CYVYKI0", "instruction": "i'm looking for classic cut wig for women.", "attributes": ["natural hair", "hair growth"], "options": ["color: rl32 | 31 cinnabar"], "instruction_attributes": ["hair growth"], "instruction_options": ["rl32 | 31 cinnabar"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPELV868", "worker_id": "A21IUUHBSEVB56"}], "B09JPCLY25": [{"asin": "B09JPCLY25", "instruction": "i'm looking for a kids toothbrush that's easy to use and not hard on the teeth. also, pick yellow", "attributes": ["easy use", "sensitive teeth"], "options": ["color: yellow", "size: bear paw,large"], "instruction_attributes": ["easy use", "sensitive teeth"], "instruction_options": ["yellow"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YR269K", "worker_id": "A2TRV8SEM003GG"}], "B09SFYFZW5": [{"asin": "B09SFYFZW5", "instruction": "i am looking for high knee womens flat sandals of size 8.", "attributes": ["knee high", "open toe", "non slip", "closed toe", "ankle strap"], "options": ["color: sandals shoes a11- black", "size: 8"], "instruction_attributes": ["knee high"], "instruction_options": ["8"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZLGO84", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PDQ1GP5": [{"asin": "B09PDQ1GP5", "instruction": "i want to find a large pair of pink stretchy yoga shorts for teen girls.", "attributes": ["wash cold", "hand wash", "high waist", "teen girls"], "options": ["color: a2-pink", "size: large"], "instruction_attributes": ["teen girls"], "instruction_options": ["a2-pink", "large"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD59IRL", "worker_id": "A345TDMHP3DQ3G"}], "B09PRPDH13": [{"asin": "B09PRPDH13", "instruction": "i would like a white computer speaker with stereo sound.", "attributes": ["high performance", "wireless bluetooth", "stereo sound"], "options": ["color: white"], "instruction_attributes": ["stereo sound"], "instruction_options": ["white"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHTWJ0V", "worker_id": "A1WS884SI0SLO4"}], "B095W1HB2Q": [{"asin": "B095W1HB2Q", "instruction": "i'm looking for a high quality cosmetic container to refill my lip gloss; please choose the rose gold color.", "attributes": ["high quality", "easy apply", "eco friendly", "rose gold"], "options": ["color: gold"], "instruction_attributes": ["high quality", "rose gold"], "instruction_options": ["gold"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO8U2C9", "worker_id": "A3LIIE572Z4OG7"}], "B089NYN7C7": [{"asin": "B089NYN7C7", "instruction": "i am looking for a quick release plate for my camera made of aluminum alloy.", "attributes": ["quick release", "aluminum alloy"], "options": [""], "instruction_attributes": ["quick release"], "instruction_options": [], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSST0XK", "worker_id": "A1EREKSZAA9V7B"}], "B09SL5XJ54": [{"asin": "B09SL5XJ54", "instruction": "i am looking for a 9.5 size steel toe of sandals", "attributes": ["open toe", "steel toe", "high heel"], "options": ["color: fada-110-multicolor", "size: 9.5"], "instruction_attributes": ["steel toe"], "instruction_options": ["9.5"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0G1610", "worker_id": "A9QRQL9CFJBI7"}], "B075733YQZ": [{"asin": "B075733YQZ", "instruction": "i need lipstick that is long lasting and is the color of brick house", "attributes": ["long lasting", "green tea"], "options": ["color: brick-house"], "instruction_attributes": ["long lasting"], "instruction_options": ["brick-house"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDW261RI", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q2SVGMX": [{"asin": "B09Q2SVGMX", "instruction": "i am looking for bed cover table sheet sets for beauty salon also choose colour purple", "attributes": ["high quality", "beauty salon"], "options": ["color: purple", "size: 70*190cm square head"], "instruction_attributes": ["beauty salon"], "instruction_options": ["purple"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PP7X2T", "worker_id": "A10OGH5CQBXL5N"}], "B09SL5KS15": [{"asin": "B09SL5KS15", "instruction": "i would like a portable bluetooth speaker with stereo sound.", "attributes": ["light weight", "high performance", "hands free", "easy carry", "stereo sound", "wireless bluetooth"], "options": [""], "instruction_attributes": ["stereo sound", "wireless bluetooth"], "instruction_options": [], "assignment_id": "39K0FND3ASPR95MUG7H134S6U96AMK", "worker_id": "A1WS884SI0SLO4"}], "B08T9J3G6B": [{"asin": "B08T9J3G6B", "instruction": "i am looking for easy assemble queen size metal bed frame", "attributes": ["easy assemble", "twin size", "box spring"], "options": ["size: queen"], "instruction_attributes": ["easy assemble"], "instruction_options": ["queen"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK6AJ3M", "worker_id": "A258PTOZ3D2TQR"}], "B09C42X8V1": [{"asin": "B09C42X8V1", "instruction": "i am looking for a long lasting lip balm.", "attributes": ["long lasting", "argan oil", "fine lines", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVKIZSB", "worker_id": "A1EREKSZAA9V7B"}], "B01A4B0N92": [{"asin": "B01A4B0N92", "instruction": "i need a 2 oz hair growth treatment", "attributes": ["plant based", "easy use", "hair growth", "hair loss"], "options": ["size: 2 fl oz"], "instruction_attributes": ["hair growth"], "instruction_options": ["2 fl oz"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMLUZIV", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NW7CZXP": [{"asin": "B09NW7CZXP", "instruction": "i'm interested in buying a medium sized high waisted yoga sweatpants for daily wear.", "attributes": ["high waist", "elastic closure", "elastic waistband", "tummy control", "daily wear"], "options": ["color: #03black", "size: medium"], "instruction_attributes": ["high waist", "daily wear"], "instruction_options": ["medium"], "assignment_id": "3UXUOQ9OKP78O2F7C1FCKMVGZK9A77", "worker_id": "AHXHM1PQTRWIQ"}], "B07692PMHF": [{"asin": "B07692PMHF", "instruction": "i'm looking for a high quality plant based vitamin c serum that contains hyaluronic acid and made of natural ingredients for treating dark circles and fine lines.", "attributes": ["certified organic", "animal testing", "plant based", "anti aging", "cruelty free", "high quality", "hyaluronic acid", "natural ingredients", "dark circles", "fine lines"], "options": [""], "instruction_attributes": ["plant based", "high quality", "hyaluronic acid", "natural ingredients", "dark circles", "fine lines"], "instruction_options": [], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SZEQTY", "worker_id": "AR0VJ5XRG16UJ"}], "B08FSNMMYR": [{"asin": "B08FSNMMYR", "instruction": "i would like a medium black long sleeved pullover.", "attributes": ["long sleeve", "fashion design"], "options": ["color: a-black", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a-black", "medium"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FQCBF6", "worker_id": "A1WS884SI0SLO4"}], "B09QXW6X8Z": [{"asin": "B09QXW6X8Z", "instruction": "i am looking for a 16gb ram | 2tb nvme ssd size of intel core i5 towers", "attributes": ["core i5", "intel core"], "options": ["size: 16gb ram | 2tb nvme ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["16gb ram | 2tb nvme ssd"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79UG1HV", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09QXW6X8Z", "instruction": "i need to buy a desktop computer that's got an intel i5 core, 32 gigabytes of ram, and a one terabyte ssd.", "attributes": ["core i5", "intel core"], "options": ["size: 32gb ram | 1tb nvme ssd"], "instruction_attributes": ["core i5", "intel core"], "instruction_options": ["32gb ram | 1tb nvme ssd"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHPO0JW", "worker_id": "AR9AU5FY1S3RO"}], "B0893MSLT5": [{"asin": "B0893MSLT5", "instruction": "i would like a style 7 chandelier with a pendant light.", "attributes": ["easy clean", "pendant light"], "options": ["color: style 7"], "instruction_attributes": ["pendant light"], "instruction_options": ["style 7"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIH92LQ", "worker_id": "A1WS884SI0SLO4"}], "B08L136TVK": [{"asin": "B08L136TVK", "instruction": "i would like 12 bowls of peaches in strawberry gel gluten free applesauce.", "attributes": ["gluten free", "shelf stable", "bpa free", "non gmo"], "options": ["flavor name: peaches in strawberry gel", "size: 12 bowls"], "instruction_attributes": ["gluten free"], "instruction_options": ["peaches in strawberry gel", "12 bowls"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAGUFIH", "worker_id": "A1WS884SI0SLO4"}], "B08N5CBMDM": [{"asin": "B08N5CBMDM", "instruction": "i would like a 8.6 ounce box of honey cereal that is gluten free.", "attributes": ["grain free", "non gmo", "low sugar", "gluten free", "protein serving", "kosher certified", "high protein", "plant based", "dairy free", "natural flavors"], "options": ["flavor name: honey", "size: 8.6 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["honey", "8.6 ounce (pack of 1)"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8EE5AN", "worker_id": "A1WS884SI0SLO4"}], "B09PCX8BJY": [{"asin": "B09PCX8BJY", "instruction": "i want a pair of size 7.4 red walking shoes with a anti slip material.", "attributes": ["knee high", "anti slip", "non slip", "steel toe", "quality materials", "arch support", "memory foam", "rubber sole"], "options": ["color: a-red", "size: 7.5"], "instruction_attributes": ["anti slip"], "instruction_options": ["a-red", "7.5"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OW8POJ", "worker_id": "A1WS884SI0SLO4"}], "B09D7NCLNK": [{"asin": "B09D7NCLNK", "instruction": "i'm looking for hair dressing scissors set.", "attributes": ["long lasting", "hair cutting"], "options": [""], "instruction_attributes": ["hair cutting"], "instruction_options": [], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YT38TG", "worker_id": "A21IUUHBSEVB56"}], "B08CXD2VHG": [{"asin": "B08CXD2VHG", "instruction": "i need a clip set hair extensions with stainless steel.", "attributes": ["high quality", "stainless steel", "hair extensions"], "options": ["color: clip set", "size: 20 inch (pack of 1)"], "instruction_attributes": ["stainless steel"], "instruction_options": ["clip set"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H808UZ", "worker_id": "AVIEE6LDH0BT5"}], "B0995Z55M4": [{"asin": "B0995Z55M4", "instruction": "i'm looking for mens peake 23 from fila.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: black | black | metallic silver", "size: 9"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["black | black | metallic silver"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM8HHZM", "worker_id": "A21IUUHBSEVB56"}], "B00IWONE9U": [{"asin": "B00IWONE9U", "instruction": "i am in need of some shelf stable tropical fruit", "attributes": ["shelf stable", "gluten free", "non gmo"], "options": ["flavor name: tropical fruit"], "instruction_attributes": ["shelf stable"], "instruction_options": ["tropical fruit"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841DQXAR", "worker_id": "A2ECRNQ3X5LEXD"}], "B093THM3VQ": [{"asin": "B093THM3VQ", "instruction": "i would like to buy easy to assemble storage baskets which has a lot of storage space.", "attributes": ["white item", "easy assemble", "storage space"], "options": [""], "instruction_attributes": ["easy assemble", "storage space"], "instruction_options": [], "assignment_id": "39JEC75375BYS7D1EDEJWV17L51CV3", "worker_id": "AHXHM1PQTRWIQ"}], "B09J8RWJ4L": [{"asin": "B09J8RWJ4L", "instruction": "i need a large sized coat with long sleeves.", "attributes": ["loose fit", "fleece lined", "hand wash", "wash cold", "machine wash", "long sleeve", "drawstring waist", "memory foam", "high waist", "short sleeve"], "options": ["color: 2-army green", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["large"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUTFFF1N", "worker_id": "AVIEE6LDH0BT5"}], "B06Y664VKD": [{"asin": "B06Y664VKD", "instruction": "i need an easy to cary 128 gb flash drive", "attributes": ["dust proof", "easy carry"], "options": ["color: silver", "size: 128gb"], "instruction_attributes": ["easy carry"], "instruction_options": ["128gb"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AOKEOZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B071YBR54C": [{"asin": "B071YBR54C", "instruction": "i would like a magnifying glass intensive polish serum for damaged hair.", "attributes": ["damaged hair", "dry hair"], "options": ["style: magnifying glass intensive polish serum"], "instruction_attributes": ["damaged hair"], "instruction_options": ["magnifying glass intensive polish serum"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2QGYNF", "worker_id": "A1WS884SI0SLO4"}], "B09CYMXNKH": [{"asin": "B09CYMXNKH", "instruction": "i would like a 17 mm scent cc0.07 high quality perfume bottle.", "attributes": ["cruelty free", "high quality", "quality materials"], "options": ["scent: cc-0.07", "size: 17 mm"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3X0H8UUITCYRED22199FX2O3EHQWSS", "worker_id": "A1WS884SI0SLO4"}], "B09J2FZGVK": [{"asin": "B09J2FZGVK", "instruction": "i want an allewie queen bed frame that requires assembly.", "attributes": ["button tufted", "assembly required", "faux leather", "box spring"], "options": ["color: brown", "size: queen"], "instruction_attributes": ["assembly required"], "instruction_options": ["queen"], "assignment_id": "3P1L2B7ADCZW5RYAQEL44MXMJM0LOA", "worker_id": "A2RBF3IIJP15IH"}], "B00M9NLJWO": [{"asin": "B00M9NLJWO", "instruction": "i'm looking for a low calories popcorn kernels with gluten free. also, choose a pack of 2 weighting 2 pounds one.", "attributes": ["low calorie", "non gmo", "old fashioned", "gluten free"], "options": ["size: 2 pound (pack of 2)"], "instruction_attributes": ["low calorie", "gluten free"], "instruction_options": ["2 pound (pack of 2)"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME97V2DW", "worker_id": "AR0VJ5XRG16UJ"}], "B09Q7VC6V9": [{"asin": "B09Q7VC6V9", "instruction": "i would like to buy sandals for women which are eco friendly, and high quality, as for color they should be pink, and of size 6.5.", "attributes": ["eco friendly", "high quality", "rose gold"], "options": ["color: pink", "size: 6.5"], "instruction_attributes": ["eco friendly", "high quality"], "instruction_options": ["pink", "6.5"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V40FGP", "worker_id": "AJY5G987IRT25"}], "B079JVZHSQ": [{"asin": "B079JVZHSQ", "instruction": "i would like a white foot file for dead skin.", "attributes": ["eco friendly", "paraben free", "cruelty free", "dry skin", "dead skin"], "options": ["color: 001-white"], "instruction_attributes": ["dead skin"], "instruction_options": ["001-white"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU4JLAW", "worker_id": "A1WS884SI0SLO4"}], "B07FSKRLTL": [{"asin": "B07FSKRLTL", "instruction": "i am looking for black leather 7.5 size and day comfort winter snow boots for women", "attributes": ["anti slip", "day comfort", "non slip", "lace closure", "rubber sole"], "options": ["color: black-leather", "size: 7.5"], "instruction_attributes": ["day comfort"], "instruction_options": ["black-leather", "7.5"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68IM4AK", "worker_id": "A258PTOZ3D2TQR"}], "B098RX8416": [{"asin": "B098RX8416", "instruction": "i would like a pair of size 11 gold platform wedges with a ankle strap.", "attributes": ["open toe", "ankle strap", "arch support"], "options": ["color: z99-glod", "size: 11.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["z99-glod", "11.5"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD32IC9", "worker_id": "A1WS884SI0SLO4"}], "B07BFXH2DV": [{"asin": "B07BFXH2DV", "instruction": "i'm looking for a pair of non-slip women's wedge sneakers in pink sequin color and in size 4.5.", "attributes": ["non slip", "rubber sole", "daily wear"], "options": ["color: pink sequin", "size: 4.5"], "instruction_attributes": ["non slip"], "instruction_options": ["pink sequin", "4.5"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZZDANH", "worker_id": "A3MNXK3VDK37SN"}], "B07S7HDC88": [{"asin": "B07S7HDC88", "instruction": "i am looking for a pair of men's size 10.5 black loafers with rubber soles.", "attributes": ["slip resistant", "non slip", "rubber outsole", "rubber sole"], "options": ["color: black1901", "size: 10.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black1901", "10.5"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E96HXE", "worker_id": "A1EREKSZAA9V7B"}], "B085PX3LCN": [{"asin": "B085PX3LCN", "instruction": "i am looking for 32 pack of hyaluronic acid full face facial mask", "attributes": ["green tea", "hyaluronic acid"], "options": ["color: a set (2 x 8 types)", "size: 32 pack"], "instruction_attributes": ["hyaluronic acid"], "instruction_options": ["32 pack"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GOSS3E", "worker_id": "A258PTOZ3D2TQR"}], "B095YXYZ33": [{"asin": "B095YXYZ33", "instruction": "i'm looking for hollow vintage casual wedge ankle strap sandals for women.", "attributes": ["open toe", "high heel", "closed toe", "ankle strap", "button closure"], "options": ["color: 01-black", "size: 7.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["01-black"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7SFBRW3", "worker_id": "A21IUUHBSEVB56"}], "B08L5X8R15": [{"asin": "B08L5X8R15", "instruction": "i would like a fresh and clean paraben free men's cologne.", "attributes": ["paraben free", "cruelty free", "easy use"], "options": ["scent: fresh and clean"], "instruction_attributes": ["paraben free"], "instruction_options": ["fresh and clean"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCMYLBL", "worker_id": "A1WS884SI0SLO4"}], "B075DY1CZZ": [{"asin": "B075DY1CZZ", "instruction": "i am looking for a 16 inch size hair extension having synthetic hair.", "attributes": ["hair extensions", "synthetic hair"], "options": ["color: #darkest brown to light brown", "size: 16 inch"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["16 inch"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X9N3Y2", "worker_id": "A1Q8PPQQCWGY0D"}], "B07YLCWZF5": [{"asin": "B07YLCWZF5", "instruction": "i am looking for a queen sized mattress with memory foam.", "attributes": ["high density", "memory foam"], "options": ["color: gel foam + navy cover", "size: queen (60\" x 80\")"], "instruction_attributes": ["memory foam"], "instruction_options": ["queen (60\" x 80\")"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY5L4J5", "worker_id": "A1EREKSZAA9V7B"}], "B09SGXQXRL": [{"asin": "B09SGXQXRL", "instruction": "i want brown women's open toe flats.", "attributes": ["open toe", "knee high", "high heel"], "options": ["color: brown", "size: 6.5-7"], "instruction_attributes": ["open toe"], "instruction_options": ["brown"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E240353", "worker_id": "A2RBF3IIJP15IH"}], "B07B6JSBQ9": [{"asin": "B07B6JSBQ9", "instruction": "i'm looking for a 2 pound jar of dark chocolate cream made of quality ingredients.", "attributes": ["quality ingredients", "gift set", "valentine day", "gift basket"], "options": ["flavor name: dark chocolate", "size: 2 pound (pack of 1)"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["dark chocolate", "2 pound (pack of 1)"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKOO7DQ", "worker_id": "A3MNXK3VDK37SN"}], "B01GKAL67Y": [{"asin": "B01GKAL67Y", "instruction": "i'm looking for liqiud latex makeup.", "attributes": ["paraben free", "cruelty free"], "options": ["color: zombie flesh", "size: 4.5 fl oz (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["4.5 fl oz (pack of 1)"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPG06WTJ", "worker_id": "A21IUUHBSEVB56"}], "B09NB7R15K": [{"asin": "B09NB7R15K", "instruction": "i'm looking for a stainless steel patio furniture set in the color navy blue.", "attributes": ["high density", "stainless steel", "steel frame"], "options": ["color: navy blue", "size: outdoor furniture w | fire pit"], "instruction_attributes": ["stainless steel"], "instruction_options": ["navy blue"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRJ9WN9", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B09NB7R15K", "instruction": "i want dark red and stainless steel asjmr outdoor patio furniture.", "attributes": ["high density", "stainless steel", "steel frame"], "options": ["color: dark red", "size: patio sectional furniture"], "instruction_attributes": ["stainless steel"], "instruction_options": ["dark red"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZR604B", "worker_id": "A2RBF3IIJP15IH"}], "B098J9LXGM": [{"asin": "B098J9LXGM", "instruction": "i'm interested in a 4g lte wall-mounted router in aluminum alloy.", "attributes": ["wall mounted", "aluminum alloy", "4g lte"], "options": [""], "instruction_attributes": ["wall mounted", "aluminum alloy", "4g lte"], "instruction_options": [], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADX1OYMZ", "worker_id": "AFU00NU09CFXE"}], "B095W1N4P1": [{"asin": "B095W1N4P1", "instruction": "i would like a 38 mm pink applewatch band.", "attributes": ["compatible apple", "high performance"], "options": ["color: black | pink | purple | wine red", "size: 38mm | 40mm | 41mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["black | pink | purple | wine red", "38mm | 40mm | 41mm"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTH09N6", "worker_id": "A1WS884SI0SLO4"}], "B098BQ962K": [{"asin": "B098BQ962K", "instruction": "i would like a flip flop travel bottles that are bpa free.", "attributes": ["bpa free", "easy use"], "options": ["style: flip top"], "instruction_attributes": ["bpa free"], "instruction_options": ["flip top"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH3PZ4C", "worker_id": "A1WS884SI0SLO4"}], "B09ND769CP": [{"asin": "B09ND769CP", "instruction": "i need a small sleep set that has an elastic waistband", "attributes": ["elastic waistband", "long sleeve", "daily wear"], "options": ["color: multi 2", "size: small"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["small"], "assignment_id": "3FTOP5WARQY57KIRL87GY6OCHT5J04", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LYZW6P8": [{"asin": "B09LYZW6P8", "instruction": "i'm looking for a day and night roller blinds grey/white item.", "attributes": ["white item", "dining room", "living room"], "options": ["color: blue | purple | pink", "size: 39\"w x 78\"h"], "instruction_attributes": ["white item"], "instruction_options": [], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCMDBLQ", "worker_id": "A62B826XMLK7K"}, {"asin": "B09LYZW6P8", "instruction": "i need to buy some purple blinds for my living room. find the ones that are 32 by 78 inches.", "attributes": ["white item", "dining room", "living room"], "options": ["color: purple", "size: 32\"w x 78\"h"], "instruction_attributes": ["living room"], "instruction_options": ["purple", "32\"w x 78\"h"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LEXL0N", "worker_id": "AR9AU5FY1S3RO"}], "B092J9FHMG": [{"asin": "B092J9FHMG", "instruction": "i want a dark black xfyele 20mm quick release watch band.", "attributes": ["quick release", "easy install"], "options": ["color: dark black+china red"], "instruction_attributes": ["quick release"], "instruction_options": ["dark black+china red"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FHW8KW", "worker_id": "A2RBF3IIJP15IH"}], "B0821HJC39": [{"asin": "B0821HJC39", "instruction": "i am looking for coffee colored sneakers that are steel toed and size 11.", "attributes": ["steel toe", "high heel"], "options": ["color: coffee", "size: 11"], "instruction_attributes": ["steel toe"], "instruction_options": ["coffee", "11"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602WX95D", "worker_id": "AK3JMCIGU8MLU"}], "B07VCB9MS7": [{"asin": "B07VCB9MS7", "instruction": "i am looking for a solid wood super king sized bed with a contemporary style.", "attributes": ["contemporary style", "solid wood"], "options": [""], "instruction_attributes": ["contemporary style", "solid wood"], "instruction_options": [], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7K0PE7Q", "worker_id": "A1EREKSZAA9V7B"}], "B08B1G6XBN": [{"asin": "B08B1G6XBN", "instruction": "i want to find a wooden table that i can put in my dining room.", "attributes": ["steel frame", "dining room"], "options": ["color: solid sheesham wood"], "instruction_attributes": ["dining room"], "instruction_options": ["solid sheesham wood"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC59PRKW", "worker_id": "A345TDMHP3DQ3G"}], "B09MR48WLK": [{"asin": "B09MR48WLK", "instruction": "i want to find a gift set of coconut oil shower gels and lotions. the scent needs to be sunshine mimosa.", "attributes": ["dermatologist tested", "coconut oil"], "options": ["scent: sunshine mimosa"], "instruction_attributes": ["coconut oil"], "instruction_options": ["sunshine mimosa"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHWBB8SF", "worker_id": "A345TDMHP3DQ3G"}], "B09HTHVY7Z": [{"asin": "B09HTHVY7Z", "instruction": "i would like a queen sized gray bed without a box spring.", "attributes": ["box spring", "storage space"], "options": ["color: grey+drawers", "size: queen"], "instruction_attributes": ["box spring"], "instruction_options": ["grey+drawers", "queen"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4QEPKD", "worker_id": "A1WS884SI0SLO4"}], "B00N2JN1L6": [{"asin": "B00N2JN1L6", "instruction": "i need a four ounce coconut oil for my hair", "attributes": ["sulfate free", "anti aging", "coconut oil", "hair growth"], "options": ["size: 4 ounce", "style name: lavender palma christi"], "instruction_attributes": ["coconut oil"], "instruction_options": ["4 ounce"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRVY2Y1", "worker_id": "A2ECRNQ3X5LEXD"}], "B09J7YZLSN": [{"asin": "B09J7YZLSN", "instruction": "i'm looking for a cute mushroom fleece throw blanket for couch.", "attributes": ["super soft", "fleece throw", "king size"], "options": ["color: frog and mushrooms", "size: 60x50 inch for teens"], "instruction_attributes": ["fleece throw"], "instruction_options": ["frog and mushrooms"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCN1IP9", "worker_id": "A21IUUHBSEVB56"}], "B018X8C8P0": [{"asin": "B018X8C8P0", "instruction": "i am looking for a sulfate free shampoo of size 8 ounce.", "attributes": ["sulfate free", "argan oil", "hair treatment"], "options": ["size: 8 ounce"], "instruction_attributes": ["sulfate free"], "instruction_options": ["8 ounce"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPR1FWX", "worker_id": "A1Q8PPQQCWGY0D"}], "B075QKJJSS": [{"asin": "B075QKJJSS", "instruction": "i am looking for a men's jacket in down that comes fleece lined, and i would like it in green and standard size.", "attributes": ["fleece lined", "machine wash"], "options": ["color: green color block", "size: xx-large tall", "special size type: standard"], "instruction_attributes": ["fleece lined"], "instruction_options": ["green color block", "standard"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYLQL63", "worker_id": "A411ZZABHZUNA"}], "B08L4WLKQG": [{"asin": "B08L4WLKQG", "instruction": "am hoping to find the heavy duty yaheetech console table with storage.", "attributes": ["heavy duty", "space saving", "living room"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT063QUN0", "worker_id": "A1IL2K0ELYI090"}], "B08BDZQHVC": [{"asin": "B08BDZQHVC", "instruction": "i am looking for men's machine wash original fit jeans, 44w x 34l size", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: (new) higher mountain - destructed", "size: 44w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["44w x 34l"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNR1ZXJO", "worker_id": "A258PTOZ3D2TQR"}], "B07KD181B3": [{"asin": "B07KD181B3", "instruction": "i would like a aluminum tripod that is lightweight.", "attributes": ["quick release", "easy carry", "light weight", "carbon fiber"], "options": ["size: aluminum 7a"], "instruction_attributes": ["light weight"], "instruction_options": ["aluminum 7a"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL7QVRG", "worker_id": "A1WS884SI0SLO4"}], "B09J2K8K9H": [{"asin": "B09J2K8K9H", "instruction": "i would like a red phone heavy duty case.", "attributes": ["heavy duty", "wireless charging"], "options": ["color: red"], "instruction_attributes": ["heavy duty"], "instruction_options": ["red"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQYCX777", "worker_id": "A1WS884SI0SLO4"}], "B08B88XXYJ": [{"asin": "B08B88XXYJ", "instruction": "where can i find a pink stereo sound bluetooth speaker, portable? it has to be 360\u00b0 voice commands, i was told the hjwl brand. if the price is good i will buy it.", "attributes": ["easy use", "stereo sound"], "options": ["color: pink"], "instruction_attributes": ["stereo sound"], "instruction_options": ["pink"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKONXF08", "worker_id": "A15IJ20C3R4HUO"}], "B009SE5LBW": [{"asin": "B009SE5LBW", "instruction": "i'm interested in high protein salt n' vinegar almonds in a resealable bag.", "attributes": ["high protein", "resealable bag", "source vitamin"], "options": ["flavor name: salt n' vinegar"], "instruction_attributes": ["high protein", "resealable bag"], "instruction_options": ["salt n' vinegar"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA75HMHU", "worker_id": "AFU00NU09CFXE"}], "B09PRLWKM1": [{"asin": "B09PRLWKM1", "instruction": "hello, i'm looking for a tuxedo suit that's slim fit and good for winter? size small, please", "attributes": ["slim fit", "winter warm", "long sleeve", "short sleeve", "button closure", "dry clean"], "options": ["color: purple", "size: small"], "instruction_attributes": ["slim fit", "winter warm", "long sleeve"], "instruction_options": ["small"], "assignment_id": "3G2UL9A02OO71034MOY04HTU31E678", "worker_id": "A2TRV8SEM003GG"}], "B09KLS44DG": [{"asin": "B09KLS44DG", "instruction": "i am looking for a high resolution background of size 9x6ftpolyester.", "attributes": ["high resolution", "easy carry", "high definition", "digital photography"], "options": ["size: 9x6ftpolyester"], "instruction_attributes": ["high resolution"], "instruction_options": ["9x6ftpolyester"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MML0J1W", "worker_id": "A1Q8PPQQCWGY0D"}], "B093KXP9WB": [{"asin": "B093KXP9WB", "instruction": "i am interested in buying a bag which is a laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA9W8RV", "worker_id": "AJY5G987IRT25"}], "B0834W3CG9": [{"asin": "B0834W3CG9", "instruction": "i am looking for a 2 layer small bookshelf for my living room.", "attributes": ["storage unit", "living room"], "options": ["color: two layers", "size: 43cm"], "instruction_attributes": ["living room"], "instruction_options": ["two layers"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY86BZ18P", "worker_id": "A1EREKSZAA9V7B"}], "B08K4LMJNM": [{"asin": "B08K4LMJNM", "instruction": "find official licensed harry potter t-shirts", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: olive", "fit type: women", "size: large"], "instruction_attributes": ["officially licensed"], "instruction_options": [], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL6GSNT", "worker_id": "AVIEE6LDH0BT5"}], "B089GMNRBD": [{"asin": "B089GMNRBD", "instruction": "i am looking for transparent color kitchen drawer mats that are easy to install.", "attributes": ["easy install", "double sided"], "options": ["color: transparent", "size: 35.4 x 98.4 inches"], "instruction_attributes": ["easy install"], "instruction_options": ["transparent"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E9VXHJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B07F7HWDXZ": [{"asin": "B07F7HWDXZ", "instruction": "i'm looking for a high performance desktop computer with intel core processor.", "attributes": ["certified refurbished", "high performance", "intel core"], "options": [""], "instruction_attributes": ["high performance", "intel core"], "instruction_options": [], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0Y8W5I", "worker_id": "A3MNXK3VDK37SN"}], "B08P4GMWJB": [{"asin": "B08P4GMWJB", "instruction": "i'm locking for a open shelves high gloss entertainment center media console.", "attributes": ["high gloss", "tempered glass", "storage space"], "options": ["color: fww", "size: 63\" w x 16\" d x 14\" h"], "instruction_attributes": ["high gloss"], "instruction_options": [], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4H3L8E", "worker_id": "A21IUUHBSEVB56"}], "B00IIU9ELA": [{"asin": "B00IIU9ELA", "instruction": "i'm looking for a desktop pc with an intel core i5 processor.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["core i5", "intel core"], "instruction_options": [], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCGT7HB", "worker_id": "A2JP9IKRHNLRPI"}], "B09D7PKHVD": [{"asin": "B09D7PKHVD", "instruction": "i am looking for maple leaflop9363 color place mats that are eco friendly.", "attributes": ["eco friendly", "long lasting", "printing technology"], "options": ["color: maple leaflop9363", "size: (72\"x16\"+13\"x19\"x4)183x41cm+33x48cmx4"], "instruction_attributes": ["eco friendly"], "instruction_options": ["maple leaflop9363"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YTX8TA", "worker_id": "A1Q8PPQQCWGY0D"}], "B09NMDK42T": [{"asin": "B09NMDK42T", "instruction": "i'm looking for a window film for a dining room that is 23.6 inch wide and 35.4 inch in length in size. choose the ones that comes in the 964074833593106000 color.", "attributes": ["tempered glass", "dining room"], "options": ["color: 964074833593106000", "size: (width\uff0923.6in x (length)35.4in x 2pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["964074833593106000", "(width\uff0923.6in x (length)35.4in x 2pcs"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z1AH1KU", "worker_id": "A3MNXK3VDK37SN"}], "B09RHTPG2S": [{"asin": "B09RHTPG2S", "instruction": "i need a yoga shirt that is a loose fit and dark blue", "attributes": ["loose fit", "short sleeve"], "options": ["color: fupo-a193-dark blue", "size: small"], "instruction_attributes": ["loose fit"], "instruction_options": ["fupo-a193-dark blue"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG1DZ9U4", "worker_id": "A2ECRNQ3X5LEXD"}], "B08Z82R1HH": [{"asin": "B08Z82R1HH", "instruction": "i am looking for high definition orange color 10.8 inch android 9.0 tablet of quad-core processor,6000mah battery etc", "attributes": ["high definition", "quad core"], "options": ["color: orange"], "instruction_attributes": ["high definition", "quad core"], "instruction_options": ["orange"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPG05WTI", "worker_id": "A258PTOZ3D2TQR"}], "B093YSMHJ3": [{"asin": "B093YSMHJ3", "instruction": "i am looking for a set of 2 mesh laundry bags", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZEAUW5", "worker_id": "A258PTOZ3D2TQR"}], "B00MHTDV26": [{"asin": "B00MHTDV26", "instruction": "i am looking for 6 nut free plant based raspberry snack bars.", "attributes": ["low sodium", "nut free", "soy free", "plant based", "dairy free", "non gmo", "0g trans", "real fruit", "high fructose", "artificial flavors"], "options": ["flavor name: raspberry", "size: 6 count (pack of 6)"], "instruction_attributes": ["nut free", "plant based"], "instruction_options": ["raspberry", "6 count (pack of 6)"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACV3NH7", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00MHTDV26", "instruction": "i am looking for a 6 count (pack of 6) real fruit, non-gmo fruit bars", "attributes": ["low sodium", "nut free", "soy free", "plant based", "dairy free", "non gmo", "0g trans", "real fruit", "high fructose", "artificial flavors"], "options": ["flavor name: blueberry", "size: 6 count (pack of 6)"], "instruction_attributes": ["non gmo", "real fruit"], "instruction_options": ["6 count (pack of 6)"], "assignment_id": "3X65QVEQIBXVW21709CD9M35U8FLCB", "worker_id": "A9QRQL9CFJBI7"}], "B075FYF6L5": [{"asin": "B075FYF6L5", "instruction": "i am looking for some ready to eat gluten free red hot spice curry sauce.", "attributes": ["ready eat", "rich creamy", "low sodium", "non gmo", "gluten free"], "options": ["flavor name: red - hot spice"], "instruction_attributes": ["ready eat", "gluten free"], "instruction_options": ["red - hot spice"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCR1BMQ", "worker_id": "A1EREKSZAA9V7B"}], "B09PVGMDKW": [{"asin": "B09PVGMDKW", "instruction": "i want to buy t-shirts which are long sleeved and are in red color, while the size should be large.", "attributes": ["wash cold", "hand wash", "long sleeve", "dry clean"], "options": ["color: 8#red", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["8#red", "large"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8F6A5M", "worker_id": "AJY5G987IRT25"}], "B08QG2T2LX": [{"asin": "B08QG2T2LX", "instruction": "i need some gluten free popped cheddar cheese snacks", "attributes": ["nut free", "low calorie", "low carb", "non gmo", "gluten free"], "options": ["flavor name: cheddar-cheese"], "instruction_attributes": ["gluten free"], "instruction_options": ["cheddar-cheese"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGG6S9Z", "worker_id": "A2ECRNQ3X5LEXD"}], "B08T78Q22X": [{"asin": "B08T78Q22X", "instruction": "i am looking for an ac 220v electric chain hoist crane overhead remote control that is dust proof.", "attributes": ["dust proof", "high performance"], "options": ["color: ac 220v", "size name: 4-key"], "instruction_attributes": ["dust proof"], "instruction_options": ["ac 220v"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV5UBH9", "worker_id": "AHU9OLV0YKIIW"}], "B0006V7Y8Y": [{"asin": "B0006V7Y8Y", "instruction": "i am looking for 1 pack of 1.7 ounce ,anti-perspirant stick for women", "attributes": ["anti perspirant", "sensitive skin"], "options": ["size: 1.7 ounce (pack of 1)"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["1.7 ounce (pack of 1)"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q75QH94", "worker_id": "A258PTOZ3D2TQR"}], "B09QXS3MHQ": [{"asin": "B09QXS3MHQ", "instruction": "i want a 32gig blue cell phone that's 4g lte.", "attributes": ["quad core", "4g lte"], "options": ["color: blue", "size: 32gb"], "instruction_attributes": ["4g lte"], "instruction_options": ["blue", "32gb"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2R6NYW", "worker_id": "A1WS884SI0SLO4"}], "B07YLB9QVP": [{"asin": "B07YLB9QVP", "instruction": "i am looking for a short queen (60\" x 74\") size memory foam", "attributes": ["high density", "memory foam"], "options": ["color: high density foam + mattress cover", "size: short queen (60\" x 74\")"], "instruction_attributes": ["memory foam"], "instruction_options": ["short queen (60\" x 74\")"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYSRQ9E", "worker_id": "A9QRQL9CFJBI7"}], "B09Q5GDSDH": [{"asin": "B09Q5GDSDH", "instruction": "i am looking for a brown colored, large size, loose fit blouse for women.", "attributes": ["daily casual", "loose fit", "elastic waistband"], "options": ["color: brown", "size: large"], "instruction_attributes": ["loose fit"], "instruction_options": ["brown", "large"], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQJVJRT", "worker_id": "AJDQGOTMB2D80"}], "B084BVBT6D": [{"asin": "B084BVBT6D", "instruction": "i want boy elephant sprinkles for baby shower.", "attributes": ["baby shower", "party supplies"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66USZFW", "worker_id": "A2RBF3IIJP15IH"}], "B08HT29Y72": [{"asin": "B08HT29Y72", "instruction": "i am interested in buying a tablet with a quad core processor and a usb port.", "attributes": ["quad core", "usb port"], "options": [""], "instruction_attributes": ["quad core", "usb port"], "instruction_options": [], "assignment_id": "3HPZF4IVNX3FW186JO133U513M3CYC", "worker_id": "AHXHM1PQTRWIQ"}], "B01MDPBUWN": [{"asin": "B01MDPBUWN", "instruction": "i am looking for a pair of sky blue curtains for my living room.", "attributes": ["super soft", "dining room", "living room"], "options": ["color: sky blue", "size: 38w x 63l inch"], "instruction_attributes": ["living room"], "instruction_options": ["sky blue"], "assignment_id": "37C0GNLMHQDNI94ED11M493QPCXD6O", "worker_id": "A1EREKSZAA9V7B"}], "B07FTVF6XH": [{"asin": "B07FTVF6XH", "instruction": "i'm looking for a set of two electric wall sconces that are hand painted with a bronze finish.", "attributes": ["hand painted", "bronze finish", "light fixture"], "options": ["style: set of 2"], "instruction_attributes": ["hand painted", "bronze finish"], "instruction_options": ["set of 2"], "assignment_id": "3JW0YLFXR4QKLUJBLEJGURROKVIWW5", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B07FTVF6XH", "instruction": "i need a vanity light fixture that is a set of 2", "attributes": ["hand painted", "bronze finish", "light fixture"], "options": ["style: set of 2"], "instruction_attributes": ["light fixture"], "instruction_options": ["set of 2"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y6DVI8", "worker_id": "A2ECRNQ3X5LEXD"}], "B094F9S82W": [{"asin": "B094F9S82W", "instruction": "i am looking for a sectional with ottoman l-shaped couch that can seat 5 people, and i would like it to be appropriate for the living room and come in light grey.", "attributes": ["high density", "living room"], "options": ["color: light grey d"], "instruction_attributes": ["living room"], "instruction_options": ["light grey d"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYM1QL4", "worker_id": "A411ZZABHZUNA"}], "B08ZJJKHLL": [{"asin": "B08ZJJKHLL", "instruction": "i'm looking for a golden dinosaur cake toppers for a birthday cake", "attributes": ["birthday cake", "birthday party", "party supplies", "baby shower"], "options": ["color: golden 2"], "instruction_attributes": ["birthday cake"], "instruction_options": ["golden 2"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMZ8G2H", "worker_id": "A2Y2TURT2VEYZN"}], "B08V919YGT": [{"asin": "B08V919YGT", "instruction": "i would like a red cupcake topper for a birthday party.", "attributes": ["valentine day", "party supplies", "baby shower", "birthday party"], "options": ["color: red"], "instruction_attributes": ["birthday party"], "instruction_options": ["red"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVQALXK", "worker_id": "A1WS884SI0SLO4"}], "B09PND7S3Q": [{"asin": "B09PND7S3Q", "instruction": "single color short sleeve polo shirt", "attributes": ["slim fit", "moisture wicking", "hand wash", "short sleeve", "long sleeve", "regular fit", "button closure"], "options": ["color: 02-purple", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": [], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADNCHAN", "worker_id": "A3TTGSUBIK1YCL"}], "B08DGY46T3": [{"asin": "B08DGY46T3", "instruction": "i want unscented maxim sensitive antiperspirant towelettes.", "attributes": ["anti perspirant", "long lasting", "tea tree"], "options": ["scent: unscented", "size: 4 pack"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["unscented"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUHCZDL", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08DGY46T3", "instruction": "i need an unscented anti perspirant", "attributes": ["anti perspirant", "long lasting", "tea tree"], "options": ["scent: unscented", "size: 10 count (pack of 1)"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["unscented"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3OZYRZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07S3RVHGT": [{"asin": "B07S3RVHGT", "instruction": "i would like a 10 by 18 foot photo backdrop that is light weight.", "attributes": ["light weight", "high resolution", "digital photography"], "options": ["size: 10x8ft"], "instruction_attributes": ["light weight"], "instruction_options": ["10x8ft"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCMVLBI", "worker_id": "A1WS884SI0SLO4"}], "B08Z73J42G": [{"asin": "B08Z73J42G", "instruction": "i want to find men's black and white walking shoes that feature memory foam. they should be leather and i need them in a size 12.", "attributes": ["machine washable", "comfortable fit", "synthetic sole", "memory foam"], "options": ["color: black | white 2", "material type: leather", "size: 12"], "instruction_attributes": ["memory foam"], "instruction_options": ["black | white 2", "leather", "12"], "assignment_id": "3GM6G9ZBKY7WO1L3M78IY9IYIZETMD", "worker_id": "A345TDMHP3DQ3G"}], "B07BNBYWL8": [{"asin": "B07BNBYWL8", "instruction": "i am looking for a black light weight carbon fiber round keychain.", "attributes": ["light weight", "carbon fiber"], "options": ["color: black - round keychain"], "instruction_attributes": ["light weight", "carbon fiber"], "instruction_options": ["black - round keychain"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A3FHFQ", "worker_id": "A1EREKSZAA9V7B"}], "B08GCNBFX1": [{"asin": "B08GCNBFX1", "instruction": "i am looking for a hair salon capacity spray bottle.", "attributes": ["easy clean", "hair salon", "beauty salon"], "options": [""], "instruction_attributes": ["hair salon"], "instruction_options": [], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163W1PQ0", "worker_id": "AK3JMCIGU8MLU"}], "B08R7FT3MX": [{"asin": "B08R7FT3MX", "instruction": "i would like a small leopard blue blouse that is hand washable.", "attributes": ["machine washable", "hand wash", "polyester spandex", "long sleeve"], "options": ["color: leopard blue", "size: small"], "instruction_attributes": ["hand wash"], "instruction_options": ["leopard blue", "small"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN32PTG", "worker_id": "A1WS884SI0SLO4"}], "B09D8SWV19": [{"asin": "B09D8SWV19", "instruction": "can you look it up on amazon? erika's tea room february birthday scone & gift box - unique english style scones, april color, will make the perfect gift.", "attributes": ["low sodium", "individually wrapped", "birthday cake", "perfect gift", "birthday party"], "options": ["color: april", "size: set of 4"], "instruction_attributes": ["low sodium", "perfect gift"], "instruction_options": ["april"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLWN30G", "worker_id": "A15IJ20C3R4HUO"}], "B08PKQCZ7W": [{"asin": "B08PKQCZ7W", "instruction": "i'm looking for a black tablet with 64gb and a high resolution", "attributes": ["high definition", "high resolution", "hands free"], "options": ["color: black", "size: 64gb"], "instruction_attributes": ["high resolution"], "instruction_options": ["black", "64gb"], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7LB5ER9", "worker_id": "A2Y2TURT2VEYZN"}], "B08K3SW37R": [{"asin": "B08K3SW37R", "instruction": "i'm looking for a small form factor business pc.", "attributes": ["certified refurbished", "high performance", "core i5", "quad core"], "options": [""], "instruction_attributes": ["core i5", "quad core"], "instruction_options": [], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34PX41F", "worker_id": "A21IUUHBSEVB56"}], "B08FFBX4PP": [{"asin": "B08FFBX4PP", "instruction": "i would like a two pack of high quality shower caps", "attributes": ["easy carry", "high quality", "hair salon", "hair cutting"], "options": ["color: clear (2-pack)", "size: 11.6\" x 6.3\""], "instruction_attributes": ["high quality"], "instruction_options": ["clear (2-pack)"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJPI0WK", "worker_id": "A2ECRNQ3X5LEXD"}], "B00J8Y6ZBW": [{"asin": "B00J8Y6ZBW", "instruction": "i would like a 5 pound bag of kosher certified crackers.", "attributes": ["kosher certified", "ready eat"], "options": ["size: 5 pound"], "instruction_attributes": ["kosher certified"], "instruction_options": ["5 pound"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61WVWZ2", "worker_id": "A1WS884SI0SLO4"}], "B08PXW966C": [{"asin": "B08PXW966C", "instruction": "i need hight quality portable golden wing color travel personal mirror for woman", "attributes": ["high quality", "rose gold"], "options": ["color: golden wing"], "instruction_attributes": ["high quality"], "instruction_options": ["golden wing"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKP2ZPJ1", "worker_id": "A258PTOZ3D2TQR"}], "B07FP4X1NX": [{"asin": "B07FP4X1NX", "instruction": "i am interested in buying a long sleeved xx-large sized sweater which is suitable for both men and women.", "attributes": ["officially licensed", "polyester spandex", "long sleeve"], "options": ["color: cats north pole", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7LD5N7", "worker_id": "AHXHM1PQTRWIQ"}], "B07K3DBFX7": [{"asin": "B07K3DBFX7", "instruction": "i'm looking for nourison jubilant floral pink area rug.", "attributes": ["spot clean", "easy clean", "dining room", "living room"], "options": ["color: ivory | pink", "size: 6 ft x 9 ft"], "instruction_attributes": ["living room"], "instruction_options": ["ivory | pink"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKP1DJP7", "worker_id": "A21IUUHBSEVB56"}], "B08KHXYDKC": [{"asin": "B08KHXYDKC", "instruction": "i need plant-based ground beef patties", "attributes": ["plant based", "dietary fiber"], "options": [""], "instruction_attributes": ["plant based"], "instruction_options": [], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUPKS4X", "worker_id": "A258PTOZ3D2TQR"}], "B00O5ZSEMC": [{"asin": "B00O5ZSEMC", "instruction": "i would like a travel size dark brown hair treatment.", "attributes": ["travel size", "hair loss"], "options": ["color: dark brown"], "instruction_attributes": ["travel size"], "instruction_options": ["dark brown"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IDZCBB", "worker_id": "A1WS884SI0SLO4"}], "B08BFL71VZ": [{"asin": "B08BFL71VZ", "instruction": "i am looking for a pair of men's dark stonewash levi's 501 jeans that are machine washable.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: dark stonewash", "size: 48w x 32l"], "instruction_attributes": ["machine wash"], "instruction_options": ["dark stonewash"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7ZDCU1", "worker_id": "A1EREKSZAA9V7B"}], "B0876G2J22": [{"asin": "B0876G2J22", "instruction": "looking for moisturizing and nourishing cream with multi-vitamin anti-crack foot with argan oil", "attributes": ["argan oil", "dry skin"], "options": ["scent: multi-vitamin anti-crack foot with argan oil"], "instruction_attributes": ["argan oil"], "instruction_options": ["multi-vitamin anti-crack foot with argan oil"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCMWJS1", "worker_id": "A10OGH5CQBXL5N"}], "B07VSNP9RZ": [{"asin": "B07VSNP9RZ", "instruction": "i am looking for black color high definition bluetooth speakers.", "attributes": ["high definition", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["high definition"], "instruction_options": ["black"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4NM894", "worker_id": "A1Q8PPQQCWGY0D"}], "B08DHK9G5X": [{"asin": "B08DHK9G5X", "instruction": "i'm looking for cloths towel for exfoliating in sensitive skin, in size 11.81 x 11.81\" with gray edge color", "attributes": ["easy clean", "long lasting", "sensitive skin"], "options": ["size: 11.81 x 11.8 inch", "style: gray edge"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["11.81 x 11.8 inch", "gray edge"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IZAKH9", "worker_id": "A2Y2TURT2VEYZN"}], "B09K74T4LZ": [{"asin": "B09K74T4LZ", "instruction": "i'm in love with women's mid-calf boots, i want to find one of non-slip vintage embroidered thick heels, size: 9 wide, help me in this mission", "attributes": ["knee high", "slip resistant"], "options": ["color: h-gray", "size: 9 wide"], "instruction_attributes": ["slip resistant"], "instruction_options": ["9 wide"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QZF70X", "worker_id": "A15IJ20C3R4HUO"}], "B08ZG6MNDT": [{"asin": "B08ZG6MNDT", "instruction": "i want gluten free faris gourmet popcorn.", "attributes": ["non gmo", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWRG259", "worker_id": "A2RBF3IIJP15IH"}], "B09PG8PQKY": [{"asin": "B09PG8PQKY", "instruction": "i am interested in knee high shoes that are black", "attributes": ["knee high", "hand wash"], "options": ["color: black", "size: 9"], "instruction_attributes": ["knee high"], "instruction_options": ["black"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLWYDAR", "worker_id": "A2ECRNQ3X5LEXD"}], "B001EJNMR4": [{"asin": "B001EJNMR4", "instruction": "i would like a pair of size 5.5 stone birko sandals with arch support.", "attributes": ["synthetic sole", "arch support"], "options": ["color: stone birko-flor pull up", "size: 5-5.5"], "instruction_attributes": ["arch support"], "instruction_options": ["stone birko-flor pull up", "5-5.5"], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVI7IB7", "worker_id": "A1WS884SI0SLO4"}], "B09FDPMSB4": [{"asin": "B09FDPMSB4", "instruction": "i am looking for a heavy duty red case for a galaxy s21 fe that is easy to install.", "attributes": ["heavy duty", "easy install", "case cover", "wireless charging"], "options": ["color: red"], "instruction_attributes": ["heavy duty", "easy install"], "instruction_options": ["red"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJL1FBYG", "worker_id": "A1EREKSZAA9V7B"}], "B09R7MX43S": [{"asin": "B09R7MX43S", "instruction": "i am looking for black color long sleeve bodysuit for women.", "attributes": ["wide leg", "fleece lined", "tummy control", "high waist", "long sleeve", "teen girls"], "options": ["color: black", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["black"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40KTXNF", "worker_id": "A1Q8PPQQCWGY0D"}], "B00YCT1C70": [{"asin": "B00YCT1C70", "instruction": "i would like a king sized black faux leather bed.", "attributes": ["long lasting", "assembly required", "faux leather"], "options": ["color: black", "size: king"], "instruction_attributes": ["faux leather"], "instruction_options": ["black", "king"], "assignment_id": "3DY46V3X30SWVSP7TC9YER1YG0O55S", "worker_id": "A1WS884SI0SLO4"}], "B09MR5ZD7L": [{"asin": "B09MR5ZD7L", "instruction": "i'm looking for a desktop mini computer with quad core and 8 gb of ram.", "attributes": ["intel core", "quad core"], "options": ["size: 8gb ddr4 ram, 1tb hdd"], "instruction_attributes": ["quad core"], "instruction_options": ["8gb ddr4 ram, 1tb hdd"], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4H6L8H", "worker_id": "AK3JMCIGU8MLU"}], "B09KXTC3FC": [{"asin": "B09KXTC3FC", "instruction": "i'm looking for wireless bluetooth speaker for home.", "attributes": ["hands free", "stereo sound"], "options": ["color: blue"], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH53QH8", "worker_id": "A21IUUHBSEVB56"}], "B07Y3ZBB1C": [{"asin": "B07Y3ZBB1C", "instruction": "i need 1080p wireless security camera with motion detection and cloud storage support", "attributes": ["optical zoom", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUKL5SJ", "worker_id": "A258PTOZ3D2TQR"}], "B096NYPRXP": [{"asin": "B096NYPRXP", "instruction": "i would like a black purple car charger with a usb port.", "attributes": ["fast charging", "high speed", "usb port"], "options": ["color: black purple"], "instruction_attributes": ["usb port"], "instruction_options": ["black purple"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFXOE34", "worker_id": "A1WS884SI0SLO4"}], "B08TZJKJH4": [{"asin": "B08TZJKJH4", "instruction": "i am looking for a high performance power amplifier", "attributes": ["power amplifier", "high performance"], "options": [""], "instruction_attributes": ["power amplifier", "high performance"], "instruction_options": [], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96ED4GC", "worker_id": "A9QRQL9CFJBI7"}], "B00VREDHM6": [{"asin": "B00VREDHM6", "instruction": "i'm looking for a leather slingback flat sandal.", "attributes": ["leather sole", "synthetic sole"], "options": ["color: white", "size: 39 eu | 8 m us"], "instruction_attributes": ["leather sole"], "instruction_options": [], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OLAV5HR", "worker_id": "A21IUUHBSEVB56"}], "B08RDDNJR2": [{"asin": "B08RDDNJR2", "instruction": "looking for light weight long cord headphones for tv choose colour 3-blue+red", "attributes": ["hands free", "light weight"], "options": ["color: 3-blue+red"], "instruction_attributes": ["light weight"], "instruction_options": ["3-blue+red"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT6CJYX", "worker_id": "A10OGH5CQBXL5N"}], "B00VVRVPNM": [{"asin": "B00VVRVPNM", "instruction": "i need a four seater sofa set in contemporary style. pick something in brown white color.", "attributes": ["machine washable", "contemporary style"], "options": ["color: brown white", "size: seating for four - table"], "instruction_attributes": ["contemporary style"], "instruction_options": ["brown white", "seating for four - table"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79NYQK5", "worker_id": "A1NF6PELRKACS9"}], "B07FPJHPX1": [{"asin": "B07FPJHPX1", "instruction": "i would like a 12 count of assorted paraben free face mask.", "attributes": ["oil free", "sulfate free", "paraben free", "cruelty free", "tea tree", "sensitive skin"], "options": ["scent: assorted 12 pack", "size: 12 count (pack of 4)"], "instruction_attributes": ["paraben free"], "instruction_options": ["assorted 12 pack", "12 count (pack of 4)"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKP1NPJN", "worker_id": "A1WS884SI0SLO4"}], "B0052QL4WA": [{"asin": "B0052QL4WA", "instruction": "i would like a great snack gift basket.", "attributes": ["gift basket", "great gift"], "options": [""], "instruction_attributes": ["gift basket", "great gift"], "instruction_options": [], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602W095G", "worker_id": "A1WS884SI0SLO4"}], "B08JQ4QG5B": [{"asin": "B08JQ4QG5B", "instruction": "i am looking for some long lasting easy to carry eyeshadow.", "attributes": ["long lasting", "highly pigmented", "easy carry", "cruelty free", "sensitive skin"], "options": [""], "instruction_attributes": ["long lasting", "easy carry"], "instruction_options": [], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANJNSX8", "worker_id": "A1EREKSZAA9V7B"}], "B08RDG6S4N": [{"asin": "B08RDG6S4N", "instruction": "i am looking for a pair of grey faux leather mid century dining chairs.", "attributes": ["mid century", "faux leather"], "options": ["color: grey", "size: 1 pcs"], "instruction_attributes": ["mid century", "faux leather"], "instruction_options": ["grey"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34OR144", "worker_id": "A1EREKSZAA9V7B"}], "B09MQDZKPL": [{"asin": "B09MQDZKPL", "instruction": "i am looking for a black samsung galaxy s20 fe case with tempered glass.", "attributes": ["glass screen", "tempered glass"], "options": ["color: black"], "instruction_attributes": ["tempered glass"], "instruction_options": ["black"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YT1T8Z", "worker_id": "AK3JMCIGU8MLU"}], "B00JV4M9AA": [{"asin": "B00JV4M9AA", "instruction": "i want a hair care product that is easy to use.", "attributes": ["easy use", "dry hair"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZMRMK4", "worker_id": "A1WS884SI0SLO4"}], "B07R8XNR81": [{"asin": "B07R8XNR81", "instruction": "i am looking for x-large short white color running gym workout fitness shorts", "attributes": ["elastic closure", "elastic waistband", "polyester spandex", "gym workout"], "options": ["color: owine red | white", "size: x-large short"], "instruction_attributes": ["gym workout"], "instruction_options": ["owine red | white", "x-large short"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFJ420N", "worker_id": "A258PTOZ3D2TQR"}], "B09PMG75M5": [{"asin": "B09PMG75M5", "instruction": "i'm looking for tattoo numbing cream with natural ingredients", "attributes": ["tea tree", "seed oil", "natural ingredients", "hair removal"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4QFKP9", "worker_id": "A2Y2TURT2VEYZN"}], "B0892NQ4QP": [{"asin": "B0892NQ4QP", "instruction": "i want individually wrapped lemon bar cookies.", "attributes": ["baked fresh", "individually wrapped"], "options": ["flavor name: lemon bar"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["lemon bar"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLLBGECJ", "worker_id": "A2RBF3IIJP15IH"}], "B07ML9TMTT": [{"asin": "B07ML9TMTT", "instruction": "i would like some non gmo pretzels that are 10 ounces", "attributes": ["non gmo", "lactose free", "kosher certified", "simple ingredients", "artificial flavors"], "options": ["size: 10 ounce (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["10 ounce (pack of 1)"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV7FD82", "worker_id": "A2ECRNQ3X5LEXD"}], "B08JVL3JZS": [{"asin": "B08JVL3JZS", "instruction": "i need brown color, 10 size ethylene vinyl arizona sandal", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: brown", "size: 10"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["brown"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIOGFE3", "worker_id": "A258PTOZ3D2TQR"}, {"asin": "B08JVL3JZS", "instruction": "i want a pair of ethylene vinyl birkenstock arizona sandals in size 9.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: noir", "size: 9"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["9"], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIBL2LQ", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08JVL3JZS", "instruction": "i need to find a unisex sandal that\u2019s made with vinyl acetate; i am a size 11 australian.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: grey iron iron", "size: 11 au"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["11 au"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOC1W1M", "worker_id": "A3LIIE572Z4OG7"}], "B07X9Y42VX": [{"asin": "B07X9Y42VX", "instruction": "i am looking for hair straighteners of color surfing blue&misty mauve that are easy to clean.", "attributes": ["easy clean", "hair styling"], "options": ["color: surfing blue&misty mauve", "size: 1 pack"], "instruction_attributes": ["easy clean"], "instruction_options": ["surfing blue&misty mauve"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8ZZ8GB", "worker_id": "A1Q8PPQQCWGY0D"}], "B07L5ZXML8": [{"asin": "B07L5ZXML8", "instruction": "i would like a gluten free pancake mix.", "attributes": ["low sugar", "gluten free", "high protein", "low carb"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3JGAY6", "worker_id": "A1WS884SI0SLO4"}], "B07KBX1FBN": [{"asin": "B07KBX1FBN", "instruction": "i would like a long sleeved blue blouse that is xx-large", "attributes": ["knee high", "straight leg", "hand wash", "ankle strap", "high waist", "long sleeve"], "options": ["color: blue", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue", "xx-large"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP9UAO8", "worker_id": "A2ECRNQ3X5LEXD"}], "B086QS1S5X": [{"asin": "B086QS1S5X", "instruction": "i would like a 13 inch 512 gig intel core i7 tablet.", "attributes": ["intel core", "quad core"], "options": ["capacity: 512gb", "configuration: i7 | 16gb", "style: 13\""], "instruction_attributes": ["intel core"], "instruction_options": ["512gb", "i7 | 16gb", "13\""], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXVNO5A", "worker_id": "A1WS884SI0SLO4"}], "B07DQH5YXZ": [{"asin": "B07DQH5YXZ", "instruction": "i am looking for a conditioner color shower cream that is sulphate free.", "attributes": ["sulfate free", "anti aging"], "options": ["color: conditioner"], "instruction_attributes": ["sulfate free"], "instruction_options": ["conditioner"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTT7TKU", "worker_id": "A1Q8PPQQCWGY0D"}], "B09LHC2Z4V": [{"asin": "B09LHC2Z4V", "instruction": "i am looking for a chandeliers for my dining room.", "attributes": ["easy install", "easy assemble", "light fixture", "dining room"], "options": [""], "instruction_attributes": ["dining room"], "instruction_options": [], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZ3HCN6", "worker_id": "A1Q8PPQQCWGY0D"}], "B08FQFQJN7": [{"asin": "B08FQFQJN7", "instruction": "hello, i am looking for hair dye that will stay in my hair permanently. also, i want the color to be mahogany blonde", "attributes": ["long lasting", "permanent hair"], "options": ["color: 7m | 7.5 mahogany blonde"], "instruction_attributes": ["permanent hair"], "instruction_options": ["7m | 7.5 mahogany blonde"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL3VAVG", "worker_id": "A2TRV8SEM003GG"}], "B07ZCD2JTH": [{"asin": "B07ZCD2JTH", "instruction": "i am looking for individually wrapped, chocolate toffee candy bars in a 24 pack.", "attributes": ["individually wrapped", "birthday party"], "options": ["flavor name: chocolate", "size: 24 count (pack of 1)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["chocolate", "24 count (pack of 1)"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EGXB19", "worker_id": "AK3JMCIGU8MLU"}], "B09MM89KMB": [{"asin": "B09MM89KMB", "instruction": "i want a blue children\u2019s u-shape toothbrush for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: 2-6 years -blue"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["2-6 years -blue"], "assignment_id": "33TIN5LC0FKDY31374RC144TX12Y9J", "worker_id": "A2RBF3IIJP15IH"}], "B071SF272N": [{"asin": "B071SF272N", "instruction": "i am looking for throw pillow covers of taupe orange colors that are machine washable.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: taupe orange", "size: 24\" x 24\""], "instruction_attributes": ["machine washable"], "instruction_options": ["taupe orange"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPPVSYS", "worker_id": "A1Q8PPQQCWGY0D"}], "B09FSS3YXJ": [{"asin": "B09FSS3YXJ", "instruction": "i am interested in buying hoodies which can be machine washed, and are of color 2, and of small size.", "attributes": ["hand wash", "machine wash"], "options": ["color: 2", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["2", "small"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35R8UGW", "worker_id": "AJY5G987IRT25"}], "B09PX62ZJN": [{"asin": "B09PX62ZJN", "instruction": "i would like a long lasting makeup set.", "attributes": ["dermatologist tested", "paraben free", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYR1MQC", "worker_id": "A1WS884SI0SLO4"}], "B07KPGF8DD": [{"asin": "B07KPGF8DD", "instruction": "i'm looking for 2-piece lounge set for women.", "attributes": ["moisture wicking", "drawstring closure", "relaxed fit", "long sleeve", "everyday wear"], "options": ["color: dark heather charcoal", "size: x-small"], "instruction_attributes": ["long sleeve", "everyday wear"], "instruction_options": ["dark heather charcoal"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK5C3J6", "worker_id": "A21IUUHBSEVB56"}], "B089RBK4Q4": [{"asin": "B089RBK4Q4", "instruction": "i am interested in buying a zero sugar gluten free freezer pops.", "attributes": ["sugar free", "gluten free", "zero sugar"], "options": ["flavor name: zero sugar", "size: pack of 150", "style: freezer pops + mixed berry"], "instruction_attributes": ["gluten free", "zero sugar"], "instruction_options": ["zero sugar"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK491A6K", "worker_id": "AHXHM1PQTRWIQ"}], "B08TZW46HS": [{"asin": "B08TZW46HS", "instruction": "help me find a high performance power amplifier to use with my ho n e theater and is3 in 1", "attributes": ["power amplifier", "high performance"], "options": [""], "instruction_attributes": ["power amplifier", "high performance"], "instruction_options": [], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY86AA815", "worker_id": "A1E235KE3CSO7H"}], "B07R449NTD": [{"asin": "B07R449NTD", "instruction": "i want to find individually wrapped, 2-ounce packs of omega-3 mix in a 14-count box.", "attributes": ["artificial ingredients", "non gmo", "individually wrapped"], "options": ["flavor name: omega-3 mix", "size: 2 ounce (pack of 14)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["omega-3 mix", "2 ounce (pack of 14)"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH6SQHZ", "worker_id": "A345TDMHP3DQ3G"}], "B09MZCWLH7": [{"asin": "B09MZCWLH7", "instruction": "i am looking for cruelty free lip balm lip scrub (color c)", "attributes": ["cruelty free", "easy use", "natural ingredients", "dead skin"], "options": ["color: c"], "instruction_attributes": ["cruelty free"], "instruction_options": ["c"], "assignment_id": "351SEKWQSBRP7CP60H83T50CFC4DMQ", "worker_id": "A258PTOZ3D2TQR"}], "B0000ZFRD0": [{"asin": "B0000ZFRD0", "instruction": "i am searching for hand wash women's top sandalfoot pantyhose, size e-f", "attributes": ["hand wash", "nylon spandex"], "options": ["color: barely there", "size: e-f"], "instruction_attributes": ["hand wash"], "instruction_options": ["e-f"], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6NCEEV", "worker_id": "A258PTOZ3D2TQR"}], "B087LYGR5T": [{"asin": "B087LYGR5T", "instruction": "i would like a brown two piece living room set made of faux leather.", "attributes": ["mid century", "easy clean", "easy assemble", "faux leather", "living room"], "options": ["color: brown two-piece set"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["brown two-piece set"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AN7STX", "worker_id": "A1WS884SI0SLO4"}], "B07KQ3QJ4Y": [{"asin": "B07KQ3QJ4Y", "instruction": "i'm looking for blue, heart shaped cupcake toppers for my sister's baby shower.", "attributes": ["baby shower", "valentine day", "birthday cake"], "options": ["color: blue1 heart"], "instruction_attributes": ["baby shower"], "instruction_options": ["blue1 heart"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA8F8CB", "worker_id": "A2JP9IKRHNLRPI"}], "B0999L6J9X": [{"asin": "B0999L6J9X", "instruction": "i am looking for gray men's casual sweatpants that are machine washable with an elastic waist.", "attributes": ["loose fit", "wash cold", "hand wash", "machine wash", "elastic waist"], "options": ["color: gray", "size: x-large"], "instruction_attributes": ["machine wash", "elastic waist"], "instruction_options": ["gray"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NQW2P8", "worker_id": "A1EREKSZAA9V7B"}], "B08ZRBTHNL": [{"asin": "B08ZRBTHNL", "instruction": "i am looking for a black crypto currency themed tank top in size large that has a classic fit.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: men", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["black", "large"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVR5KJ5", "worker_id": "AK3JMCIGU8MLU"}], "B09D3JRJ7J": [{"asin": "B09D3JRJ7J", "instruction": "i'm looking for a men's long sleeve shirt with button closure. choose the ones that come in the color c-green and size medium.", "attributes": ["winter warm", "slim fit", "water resistant", "faux fur", "long sleeve", "button closure", "classic fit"], "options": ["color: c-green", "size: medium"], "instruction_attributes": ["long sleeve", "button closure"], "instruction_options": ["c-green", "medium"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4F6RQD", "worker_id": "A3MNXK3VDK37SN"}], "B0886D1X9X": [{"asin": "B0886D1X9X", "instruction": "i would like a office chair with lumbar support.", "attributes": ["high density", "lumbar support"], "options": [""], "instruction_attributes": ["lumbar support"], "instruction_options": [], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MNKWLG", "worker_id": "A1WS884SI0SLO4"}], "B08PKDM93D": [{"asin": "B08PKDM93D", "instruction": "i am looking for a bronze colored wall mounted led sconce for my living room.", "attributes": ["wall mounted", "light fixture", "bronze finish", "brushed nickel", "living room"], "options": ["color: bronze", "size: 1 pack"], "instruction_attributes": ["wall mounted", "living room"], "instruction_options": ["bronze"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V7KU2S", "worker_id": "A1EREKSZAA9V7B"}], "B09P17BXXW": [{"asin": "B09P17BXXW", "instruction": "i need some xx-large boxer briefs that is also low rise.", "attributes": ["low rise", "elastic waistband"], "options": ["color: style1 | 1-pack", "size: xx-large"], "instruction_attributes": ["low rise"], "instruction_options": ["xx-large"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTW27LG", "worker_id": "A1NF6PELRKACS9"}], "B01N24TT0B": [{"asin": "B01N24TT0B", "instruction": "i want a serum made from hyaluronic acid.", "attributes": ["hyaluronic acid", "fine lines"], "options": [""], "instruction_attributes": ["hyaluronic acid"], "instruction_options": [], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODR6EW0", "worker_id": "A1WS884SI0SLO4"}], "B092D6861L": [{"asin": "B092D6861L", "instruction": "i am looking for an easy to clean and easy to carry cosmetic bag.", "attributes": ["easy carry", "easy clean"], "options": [""], "instruction_attributes": ["easy carry", "easy clean"], "instruction_options": [], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647DQ3HJ", "worker_id": "A1EREKSZAA9V7B"}], "B000F9ZG9Q": [{"asin": "B000F9ZG9Q", "instruction": "i would like a pair of size 5.5 blue walking shoes with a rubber sole.", "attributes": ["arch support", "rubber sole"], "options": ["color: blue 400", "size: 5.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["blue 400", "5.5"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8MG4RY", "worker_id": "A1WS884SI0SLO4"}], "B07CGYBVT7": [{"asin": "B07CGYBVT7", "instruction": "i need 5.1 ounce rosemary roasted gluten free garlic seasoning, (pack of 1)", "attributes": ["non gmo", "gluten free", "resealable bag", "great gift"], "options": ["size: 5.1 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA54A8L", "worker_id": "A258PTOZ3D2TQR"}], "B00DQH3LP0": [{"asin": "B00DQH3LP0", "instruction": "i'm looking for long lasting intense eye liner.", "attributes": ["long lasting", "seed oil"], "options": ["color: voyage"], "instruction_attributes": ["long lasting"], "instruction_options": ["voyage"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT4FP3P", "worker_id": "A21IUUHBSEVB56"}], "B0812L17DV": [{"asin": "B0812L17DV", "instruction": "i am looking for 12 size regular fit running shoe.", "attributes": ["lace closure", "regular fit"], "options": ["color: footwear white | footwear white | core black", "size: 12"], "instruction_attributes": ["regular fit"], "instruction_options": ["12"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZV8K3K", "worker_id": "A1Q8PPQQCWGY0D"}], "B09CDSR86M": [{"asin": "B09CDSR86M", "instruction": "i want open toe umiyi sandals for women in size 9.5.", "attributes": ["open toe", "closed toe"], "options": ["color: zz02-black", "size: 9.5-10"], "instruction_attributes": ["open toe"], "instruction_options": ["9.5-10"], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6AEG5Z", "worker_id": "A2RBF3IIJP15IH"}], "B09T1NQN6P": [{"asin": "B09T1NQN6P", "instruction": "i'm looking for the perfect gift basket: it's a s'mores bark snack that contains no dairy.", "attributes": ["hand crafted", "dairy free", "natural ingredients", "perfect gift", "gift basket"], "options": ["flavor name: s'mores bark snack"], "instruction_attributes": ["dairy free", "perfect gift", "gift basket"], "instruction_options": ["s'mores bark snack"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CW4FT5E", "worker_id": "A3LIIE572Z4OG7"}, {"asin": "B09T1NQN6P", "instruction": "i'm looking for a gift basket that has chocolate candy and also offers a peanut chew platter.", "attributes": ["hand crafted", "dairy free", "natural ingredients", "perfect gift", "gift basket"], "options": ["flavor name: peanut chew platter"], "instruction_attributes": ["gift basket"], "instruction_options": ["peanut chew platter"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKUTGS8", "worker_id": "A2JP9IKRHNLRPI"}], "B08RP6V5KZ": [{"asin": "B08RP6V5KZ", "instruction": "i would like a 20 inch dark brown mix light auburn hair extensions.", "attributes": ["high quality", "hair extensions"], "options": ["color: dark brown mix light auburn - straight", "size: 20\""], "instruction_attributes": ["hair extensions"], "instruction_options": ["dark brown mix light auburn - straight", "20\""], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNO4NTL", "worker_id": "A1WS884SI0SLO4"}], "B07SDJB826": [{"asin": "B07SDJB826", "instruction": "i need a fully assembled queen sized mattress set", "attributes": ["ready use", "queen size", "double sided", "fully assembled", "assembly required", "king size", "box spring"], "options": ["color: 53x74", "size: queen"], "instruction_attributes": ["fully assembled"], "instruction_options": ["queen"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9OYB0D", "worker_id": "A2ECRNQ3X5LEXD"}], "B098NLYXLK": [{"asin": "B098NLYXLK", "instruction": "i want a mandala blanket throw fleece blanket for my living room.", "attributes": ["super soft", "living room"], "options": ["color: mandala", "size: 50\"x40\""], "instruction_attributes": ["living room"], "instruction_options": ["mandala"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW2H1CS", "worker_id": "A2RBF3IIJP15IH"}], "B07S2FB9TV": [{"asin": "B07S2FB9TV", "instruction": "i am looking for some nut free red velvet with cream cheese cupcakes in a jar.", "attributes": ["nut free", "great gift"], "options": ["flavor name: red velvet with cream cheese"], "instruction_attributes": ["nut free"], "instruction_options": ["red velvet with cream cheese"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFSVV3V", "worker_id": "A1EREKSZAA9V7B"}], "B096NQYLLV": [{"asin": "B096NQYLLV", "instruction": "i am looking for cognac colored combat boots with rubber soles.", "attributes": ["memory foam", "rubber sole"], "options": ["color: cognac", "size: 7.5 medium us"], "instruction_attributes": ["rubber sole"], "instruction_options": ["cognac"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LFGO1Q", "worker_id": "AK3JMCIGU8MLU"}], "B0843N9YKW": [{"asin": "B0843N9YKW", "instruction": "i am looking for a high quality teal colored compact mirror.", "attributes": ["high quality", "rose gold"], "options": ["color: teal"], "instruction_attributes": ["high quality"], "instruction_options": ["teal"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYRYQMD", "worker_id": "A1EREKSZAA9V7B"}], "B073V4382Z": [{"asin": "B073V4382Z", "instruction": "i would like a pair of 33 wide by 32 long standard signature medium indigo jeans with a relaxed fit.", "attributes": ["straight leg", "day comfort", "machine wash", "imported zipper", "relaxed fit"], "options": ["color: signature medium indigo-waterless", "fit type: standard", "size: 33w x 32l"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["signature medium indigo-waterless", "standard", "33w x 32l"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLLA7EC8", "worker_id": "A1WS884SI0SLO4"}], "B08L81FYLV": [{"asin": "B08L81FYLV", "instruction": "i need a pack of 5, 4 inch bowls for mixing my facial masks, and it must be easy to clean.", "attributes": ["easy clean", "hair dye"], "options": ["size: 4 inch (pack of 5)"], "instruction_attributes": ["easy clean"], "instruction_options": ["4 inch (pack of 5)"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOMJ0FD", "worker_id": "A2NSS746CFCT4M"}], "B01IA9B8V2": [{"asin": "B01IA9B8V2", "instruction": "search for antiperspirant deodorant.", "attributes": ["anti perspirant", "sensitive skin"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QGLM1V", "worker_id": "A15ERD4HOFEPHM"}, {"asin": "B01IA9B8V2", "instruction": "i would like a anti perspirant.", "attributes": ["anti perspirant", "sensitive skin"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP85RZ78", "worker_id": "A1WS884SI0SLO4"}], "B08FT51FFD": [{"asin": "B08FT51FFD", "instruction": "i would like to buy eyebrow gel which is long lasting, and is of black color.", "attributes": ["long lasting", "beauty salon"], "options": ["color: black"], "instruction_attributes": ["long lasting"], "instruction_options": ["black"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZPQ7R7", "worker_id": "AJY5G987IRT25"}], "B001333EN8": [{"asin": "B001333EN8", "instruction": "i am looking for high quality eau de parfum for women", "attributes": ["design house", "high quality"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCF27HI", "worker_id": "A258PTOZ3D2TQR"}], "B0852X4S6J": [{"asin": "B0852X4S6J", "instruction": "i need a high density area rug that is white", "attributes": ["high density", "non slip", "living room"], "options": ["color: white", "size: 4' x 5.3'"], "instruction_attributes": ["high density"], "instruction_options": ["white"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V7PU2X", "worker_id": "A2ECRNQ3X5LEXD"}], "B09B5GD54B": [{"asin": "B09B5GD54B", "instruction": "i would like a four pack of fully cooked chicken.", "attributes": ["fully cooked", "easy prepare"], "options": ["size: 4 pack"], "instruction_attributes": ["fully cooked"], "instruction_options": ["4 pack"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODQPWEZ", "worker_id": "A1WS884SI0SLO4"}], "B088LW4JKR": [{"asin": "B088LW4JKR", "instruction": "i'm looking for wireless bluetooth 5.0 earbuds.", "attributes": ["long lasting", "stereo sound", "wireless bluetooth"], "options": ["color: pink"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["pink"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO7B2CO", "worker_id": "A21IUUHBSEVB56"}], "B09QCPGNK2": [{"asin": "B09QCPGNK2", "instruction": "am trying to find the long sleeve of zefotim womens summer tops, g-white color.", "attributes": ["long sleeve", "short sleeve"], "options": ["color: g-white", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["g-white"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV7OD8B", "worker_id": "A1IL2K0ELYI090"}], "B08428CDPD": [{"asin": "B08428CDPD", "instruction": "i am looking for a chestnut colored synthetic hair wig.", "attributes": ["synthetic hair", "natural hair", "hair growth"], "options": ["color: chestnut"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["chestnut"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3N9RY0", "worker_id": "A1EREKSZAA9V7B"}], "B07S1K8FNT": [{"asin": "B07S1K8FNT", "instruction": "i'm looking for a high quality anti-aging skincare kit for my dark circles and fine lines.", "attributes": ["anti aging", "high quality", "dark circles", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "high quality", "dark circles", "fine lines"], "instruction_options": [], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LPG90O", "worker_id": "A2JP9IKRHNLRPI"}], "B07Y8VWSBY": [{"asin": "B07Y8VWSBY", "instruction": "i'm looking for soft high waisted leggings for women.", "attributes": ["machine wash", "stretch fabric", "polyester spandex"], "options": ["color: speedy", "fit type: bike shorts", "size: one size plus"], "instruction_attributes": ["machine wash"], "instruction_options": ["one size plus"], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLICNKI0", "worker_id": "A21IUUHBSEVB56"}], "B09MFZMHVP": [{"asin": "B09MFZMHVP", "instruction": "i would like a pair of size 7.5 clogs that are slip resistant.", "attributes": ["slip resistant", "arch support"], "options": ["color: pewter", "size: 7.5-8"], "instruction_attributes": ["slip resistant"], "instruction_options": ["pewter", "7.5-8"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1A3IFHR", "worker_id": "A1WS884SI0SLO4"}], "B08CKG1M5V": [{"asin": "B08CKG1M5V", "instruction": "i'm looking for a bathroom mirror that can be wall mounted and is 60 cm in size.", "attributes": ["wall mounted", "easy install"], "options": ["size: 60cm"], "instruction_attributes": ["wall mounted"], "instruction_options": ["60cm"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7SGZRWT", "worker_id": "AK3JMCIGU8MLU"}], "B09P7LNSLD": [{"asin": "B09P7LNSLD", "instruction": "i am interested in buying baseball t-shirts which can be machine washed and are classic fit, while the color should be either navy or white, and i am interested for a medium size for women.", "attributes": ["machine wash", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy | white", "fit type: women", "size: medium"], "instruction_attributes": ["machine wash", "classic fit"], "instruction_options": ["navy | white", "women", "medium"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM9SHZZ", "worker_id": "AJY5G987IRT25"}], "B09BHMPRLT": [{"asin": "B09BHMPRLT", "instruction": "i need a easy to clean hair extension.", "attributes": ["easy clean", "stainless steel", "hair extensions"], "options": ["color: r#12 | 60", "size: 22 inch-140g"], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL3AAVV", "worker_id": "AVIEE6LDH0BT5"}], "B003H7YHUW": [{"asin": "B003H7YHUW", "instruction": "i am interested in sardine lemon flavored wild caught sardines which are gluten free.", "attributes": ["non gmo", "wild caught", "gluten free"], "options": ["flavor name: sardines lemon", "size: 4.4 ounce (pack of 12)"], "instruction_attributes": ["wild caught", "gluten free"], "instruction_options": ["sardines lemon"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53ZEGKN", "worker_id": "AHXHM1PQTRWIQ"}], "B0897B2295": [{"asin": "B0897B2295", "instruction": "i am looking for containers for shampoo of color style 7-40ml that are easy to carry.", "attributes": ["travel size", "easy carry", "travel bottles"], "options": ["color: style 7-40ml"], "instruction_attributes": ["easy carry"], "instruction_options": ["style 7-40ml"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPCAOCJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B083Q4DFLY": [{"asin": "B083Q4DFLY", "instruction": "i want an american flag aomike flannel fleece throw blanket.", "attributes": ["super soft", "machine washable", "fleece throw"], "options": ["color: american flagaoe9847", "size: 49\" x 59\""], "instruction_attributes": ["fleece throw"], "instruction_options": ["american flagaoe9847"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFH95U2", "worker_id": "A2RBF3IIJP15IH"}], "B09SCX7TBD": [{"asin": "B09SCX7TBD", "instruction": "i want a 1080p hd camera.", "attributes": ["1080p hd", "easy install"], "options": [""], "instruction_attributes": ["1080p hd"], "instruction_options": [], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R42W7W", "worker_id": "A1WS884SI0SLO4"}], "B083W82VBW": [{"asin": "B083W82VBW", "instruction": "what do you think of this mtfy tall bedside table with drawer and storage that you recommend? i want two in black if it's good quality. i await your reply .", "attributes": ["eco friendly", "space saving", "easy assemble", "storage space", "living room"], "options": ["color: 2pcs black"], "instruction_attributes": ["storage space"], "instruction_options": ["2pcs black"], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746ZZTBB", "worker_id": "A15IJ20C3R4HUO"}], "B08QZ4FHHN": [{"asin": "B08QZ4FHHN", "instruction": "i need one living room table", "attributes": ["pu leather", "living room"], "options": ["color: paisley flower", "size: 1 pack"], "instruction_attributes": ["living room"], "instruction_options": ["1 pack"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG5HBGA", "worker_id": "A2ECRNQ3X5LEXD"}], "B09RHS8FZ9": [{"asin": "B09RHS8FZ9", "instruction": "i am looking for a men's long sleeve button down light blue shirt.", "attributes": ["slim fit", "moisture wicking", "machine wash", "long sleeve", "short sleeve", "regular fit"], "options": ["color: light blue", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["light blue"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSL226Y", "worker_id": "A1EREKSZAA9V7B"}], "B00GTQ0TL4": [{"asin": "B00GTQ0TL4", "instruction": "i am looking for bronze finish chandelier for my living room.", "attributes": ["bronze finish", "light fixture", "dining room", "living room"], "options": [""], "instruction_attributes": ["bronze finish", "living room"], "instruction_options": [], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYM6QL9", "worker_id": "A1Q8PPQQCWGY0D"}], "B000VK9YA6": [{"asin": "B000VK9YA6", "instruction": "i am interested in buying pumpkin seeds which are gluten free.", "attributes": ["low sodium", "gluten free", "dietary fiber"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGBDSLO", "worker_id": "AJY5G987IRT25"}], "B01DM76GFK": [{"asin": "B01DM76GFK", "instruction": "i would like a solid wood sideboard.", "attributes": ["fully assembled", "solid wood"], "options": [""], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841DUXAV", "worker_id": "A1WS884SI0SLO4"}], "B08B3ML761": [{"asin": "B08B3ML761", "instruction": "i want an apple punch highly pigmented lip tint.", "attributes": ["highly pigmented", "hyaluronic acid"], "options": ["color: 002 apple punch"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["002 apple punch"], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUKO5SM", "worker_id": "A2RBF3IIJP15IH"}], "B081T7ZCYM": [{"asin": "B081T7ZCYM", "instruction": "i am looking for yellow and flat ankle booties for women for daily wear, and i would like them to come in size 8.5.", "attributes": ["day comfort", "daily wear"], "options": ["color: z4-yellow", "size: 8.5"], "instruction_attributes": ["daily wear"], "instruction_options": ["z4-yellow", "8.5"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKTFEPF", "worker_id": "A411ZZABHZUNA"}], "B09166MBRR": [{"asin": "B09166MBRR", "instruction": "i want a tv stand made from solid wood.", "attributes": ["high density", "high gloss", "solid wood", "living room"], "options": [""], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QZQ071", "worker_id": "A1WS884SI0SLO4"}], "B098BD9PSC": [{"asin": "B098BD9PSC", "instruction": "i am looking for a snacks gift basket.", "attributes": ["individually wrapped", "valentine day", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3N3YR1", "worker_id": "AJDQGOTMB2D80"}], "B01NAYE128": [{"asin": "B01NAYE128", "instruction": "i need oil free 8 ounce walnut body scrub", "attributes": ["oil free", "sensitive skin", "dead skin"], "options": ["size: 8 ounce"], "instruction_attributes": ["oil free"], "instruction_options": ["8 ounce"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYMBQLE", "worker_id": "A258PTOZ3D2TQR"}], "B09BK2WGGX": [{"asin": "B09BK2WGGX", "instruction": "i am looking for heavy duty folding table of black granite color.", "attributes": ["high density", "heavy duty", "steel frame"], "options": ["color: black granite", "size: 30\"x48\""], "instruction_attributes": ["heavy duty"], "instruction_options": ["black granite"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSRJ0X8", "worker_id": "A1Q8PPQQCWGY0D"}], "B07B52CD3W": [{"asin": "B07B52CD3W", "instruction": "i want an orange spencer modern contemporary table lamp for my living room.", "attributes": ["brushed nickel", "nickel finish", "living room"], "options": ["color: robust orange"], "instruction_attributes": ["living room"], "instruction_options": ["robust orange"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5KB412J", "worker_id": "A2RBF3IIJP15IH"}], "B07JBP3151": [{"asin": "B07JBP3151", "instruction": "i need grass fed protein bars that are banana flavored", "attributes": ["grass fed", "keto friendly", "quality ingredients"], "options": ["color: banana bread", "size: 12 count (pack of 1)"], "instruction_attributes": ["grass fed"], "instruction_options": ["banana bread"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QU2OXP", "worker_id": "A2ECRNQ3X5LEXD"}], "B08TX2CWCP": [{"asin": "B08TX2CWCP", "instruction": "seabed wallpaper with octopus size 8x12 ft", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 18", "size: 8x12 ft"], "instruction_attributes": [], "instruction_options": ["8x12 ft"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZDDV0SG", "worker_id": "A3TTGSUBIK1YCL"}, {"asin": "B08TX2CWCP", "instruction": "i want a light weight 6x9 ft octopus vinyl photography backdrop.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 06", "size: 6x9 ft"], "instruction_attributes": ["light weight"], "instruction_options": ["6x9 ft"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQBHS6Z", "worker_id": "A2RBF3IIJP15IH"}], "B07NYSLGR9": [{"asin": "B07NYSLGR9", "instruction": "i am looking for a wall art of size 40x20 for my living room.", "attributes": ["hand painted", "dining room", "living room"], "options": ["color: sdyagrayabstract", "size: 40x20"], "instruction_attributes": ["living room"], "instruction_options": ["40x20"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYMDQLG", "worker_id": "A1Q8PPQQCWGY0D"}], "B086LJQNB2": [{"asin": "B086LJQNB2", "instruction": "can i get the new 3ounce size of cetaphil moisturizing cream 20 oz hydrating moisturizer fragrance free", "attributes": ["fragrance free", "clinically proven", "paraben free", "dry skin", "sensitive skin"], "options": ["size: new 3 ounce (pack of 3)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4XW7KE", "worker_id": "A1IL2K0ELYI090"}], "B09BTN8F47": [{"asin": "B09BTN8F47", "instruction": "i need a height adjustable full sized bed frame in black.", "attributes": ["button tufted", "queen size", "height adjustable", "white item", "faux leather", "box spring"], "options": ["color: black", "size: full"], "instruction_attributes": ["height adjustable"], "instruction_options": ["black", "full"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163XTPQU", "worker_id": "AR9AU5FY1S3RO"}], "B07CD5P419": [{"asin": "B07CD5P419", "instruction": "i would like a 4.9 ounce face cream for dry skin.", "attributes": ["easy use", "dry skin"], "options": ["style: 4.9 ounce (new packaging)"], "instruction_attributes": ["dry skin"], "instruction_options": ["4.9 ounce (new packaging)"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCZ046Y", "worker_id": "A1WS884SI0SLO4"}], "B00I3303L2": [{"asin": "B00I3303L2", "instruction": "i am in need of rich creamy peanut butter sauce", "attributes": ["rich creamy", "shelf stable"], "options": [""], "instruction_attributes": ["rich creamy"], "instruction_options": [], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMH3OB7Z", "worker_id": "A258PTOZ3D2TQR"}], "B06ZZHT2WK": [{"asin": "B06ZZHT2WK", "instruction": "i just want a power cord for my blu ray player, please and thank you", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBVSIGH", "worker_id": "A2TRV8SEM003GG"}], "B08YD7DNMK": [{"asin": "B08YD7DNMK", "instruction": "i need a easy to use hair clip with pink leopard pattern.", "attributes": ["non slip", "easy use", "high quality"], "options": ["pattern name: leopard print & pink"], "instruction_attributes": ["easy use"], "instruction_options": ["leopard print & pink"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLLBPECS", "worker_id": "AVIEE6LDH0BT5"}], "B08ZYG6RKK": [{"asin": "B08ZYG6RKK", "instruction": "i need a white living room statue", "attributes": ["exquisite workmanship", "living room"], "options": ["color: white"], "instruction_attributes": ["living room"], "instruction_options": ["white"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EHSWSU", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QKH8MV3": [{"asin": "B09QKH8MV3", "instruction": "i'm looking for casual linen cotton loafers slip on ladies walking shoes.", "attributes": ["light weight", "fashion design"], "options": ["color: brown", "size: 9"], "instruction_attributes": ["fashion design"], "instruction_options": ["brown"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAYYXZT", "worker_id": "A21IUUHBSEVB56"}], "B07VV485TM": [{"asin": "B07VV485TM", "instruction": "i am looking for high power monoculars.", "attributes": ["non slip", "high power", "bird watching"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA548AJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B09CTM3SYZ": [{"asin": "B09CTM3SYZ", "instruction": "i am looking for baby shower themed cupcake toppers.", "attributes": ["easy use", "baby shower", "cupcake picks"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXI6UJF", "worker_id": "AK3JMCIGU8MLU"}], "B0924HBQBF": [{"asin": "B0924HBQBF", "instruction": "i need to find a 92mm dual quiet usb fan that has a usb port. must be a high performer.", "attributes": ["high performance", "usb port"], "options": ["size: cooling fan-92mm-dual", "style: 2 pack"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1LEU3X", "worker_id": "A3UJSDFJ9LBQ6Z"}], "B07L2M3LQX": [{"asin": "B07L2M3LQX", "instruction": "i am seraching for wireless charging apple iphone with gradient coral color.", "attributes": ["compatible apple", "wireless charging"], "options": ["color: gradient coral"], "instruction_attributes": ["compatible apple", "wireless charging"], "instruction_options": ["gradient coral"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69QPP8Z", "worker_id": "A3R8PQCD99H61E"}], "B09FHTHBXN": [{"asin": "B09FHTHBXN", "instruction": "i want to buy fully cooked, and ready to eat sausages which come in a pack of 9.", "attributes": ["fully cooked", "protein serving", "ready eat", "high fructose"], "options": ["size: 9 - pack"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3X0H8UUITCYRED22199FX2O3EIHSWH", "worker_id": "AJY5G987IRT25"}], "B08H56VYJC": [{"asin": "B08H56VYJC", "instruction": "i would like a dual band ac adapter.", "attributes": ["output protection", "dual band"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR9U0C5", "worker_id": "A1WS884SI0SLO4"}], "B09JZLZBY2": [{"asin": "B09JZLZBY2", "instruction": "i am looking for machine wash waistcoat jackets also choose size 5x-large", "attributes": ["loose fit", "hand wash", "fleece lined", "wash cold", "machine wash", "long sleeve", "drawstring waist"], "options": ["color: red", "size: 5x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["5x-large"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMT3EXK", "worker_id": "A10OGH5CQBXL5N"}], "B0957HZNK3": [{"asin": "B0957HZNK3", "instruction": "i want vanity lights that are easy to install", "attributes": ["easy install", "light fixture", "vanity light", "glass shade"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIGX2LC", "worker_id": "A2ECRNQ3X5LEXD"}], "B00OKXRX8U": [{"asin": "B00OKXRX8U", "instruction": "i'm looking for a highly pigmented hydrating lipstick with matte finish. also, i want the berry smoothie one.", "attributes": ["cruelty free", "highly pigmented", "long lasting", "high quality", "anti aging"], "options": ["color: berry smoothie"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["berry smoothie"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFXY3E3", "worker_id": "A1198W1SPF1R4"}], "B07FMVYFJP": [{"asin": "B07FMVYFJP", "instruction": "i am in need of 6 pairs of small-medium size navy color, knee high compression socks for women & men", "attributes": ["knee high", "hand wash", "dry clean"], "options": ["color: blue | black | navy | black | green | white", "size: small-medium"], "instruction_attributes": ["knee high"], "instruction_options": ["blue | black | navy | black | green | white", "small-medium"], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY737PG", "worker_id": "A258PTOZ3D2TQR"}], "B08NPP1QZ3": [{"asin": "B08NPP1QZ3", "instruction": "i am looking for pink, high quality massage sheets that are oil resistant.", "attributes": ["non toxic", "high quality", "beauty salon"], "options": ["color: pink - 50 sheets"], "instruction_attributes": ["high quality"], "instruction_options": ["pink - 50 sheets"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVEK8VX", "worker_id": "AK3JMCIGU8MLU"}], "B09RQVSMS8": [{"asin": "B09RQVSMS8", "instruction": "i am looking for mens pajamas of size 3xl code having elastic waistband.", "attributes": ["loose fit", "elastic waistband"], "options": ["size: 3xl code"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["3xl code"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602WT959", "worker_id": "A1Q8PPQQCWGY0D"}], "B07RFP29RW": [{"asin": "B07RFP29RW", "instruction": "i want black columbia women's tidal elastic waist pants.", "attributes": ["elastic waist", "button closure"], "options": ["color: black", "size: small"], "instruction_attributes": ["elastic waist"], "instruction_options": ["black"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT063TNUW", "worker_id": "A2RBF3IIJP15IH"}], "B082FJL2KB": [{"asin": "B082FJL2KB", "instruction": "i'm looking for a pair of women's loose fit, gray jeans.", "attributes": ["wide leg", "loose fit", "tummy control", "high waist", "elastic waist"], "options": ["color: gray", "size: large"], "instruction_attributes": ["loose fit"], "instruction_options": ["gray"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJSGO9D", "worker_id": "A2JP9IKRHNLRPI"}], "B09G2X3K15": [{"asin": "B09G2X3K15", "instruction": "i'm looking for storage drawers for cloths, toys, etc.,", "attributes": ["assembly required", "easy clean", "easy assemble", "storage space"], "options": ["color: macaron-1"], "instruction_attributes": ["storage space"], "instruction_options": ["macaron-1"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YRG69Y", "worker_id": "A21IUUHBSEVB56"}], "B09PGDQXVL": [{"asin": "B09PGDQXVL", "instruction": "i am looking for wireless bluetooth headphones that are easy to use.", "attributes": ["fast charging", "hands free", "easy use", "wireless bluetooth"], "options": [""], "instruction_attributes": ["easy use", "wireless bluetooth"], "instruction_options": [], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4GBL8K", "worker_id": "A1Q8PPQQCWGY0D"}], "B07QY3BQCG": [{"asin": "B07QY3BQCG", "instruction": "i want a 12 pack of oatmeal cranberry and almond bars that are non gmo and gluten free.", "attributes": ["soy free", "certified organic", "non gmo", "gluten free", "natural flavors", "natural ingredients"], "options": ["flavor name: oatmeal cranberry & almond", "size: 12 count (pack of 1)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["oatmeal cranberry & almond", "12 count (pack of 1)"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3IPQNW", "worker_id": "A1WS884SI0SLO4"}], "B09SZGV366": [{"asin": "B09SZGV366", "instruction": "i would like a black brown to tan hairpiece made from synthetic hair.", "attributes": ["easy use", "synthetic hair"], "options": ["color: black brown to tan"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["black brown to tan"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR718Y6O", "worker_id": "A1WS884SI0SLO4"}], "B09R82SVCG": [{"asin": "B09R82SVCG", "instruction": "i am looking for a masks for damaged hair", "attributes": ["natural ingredients", "argan oil", "damaged hair", "hair treatment", "dry hair"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ35NR6", "worker_id": "A9QRQL9CFJBI7"}], "B09332GKRT": [{"asin": "B09332GKRT", "instruction": "i am looking for small size casual elastic waist sleeveless one pieice burgundy jumpsuit", "attributes": ["wide leg", "loose fit", "elastic waist", "elastic closure"], "options": ["color: y1 one piece burgundy jumpsuit", "size: small"], "instruction_attributes": ["elastic waist"], "instruction_options": ["y1 one piece burgundy jumpsuit", "small"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPC7OCG", "worker_id": "A258PTOZ3D2TQR"}], "B08P3WBXLP": [{"asin": "B08P3WBXLP", "instruction": "i would like a 6 piece organizer that has aaa batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": ["size: 6 pcs organizers"], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": ["6 pcs organizers"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LFNO1X", "worker_id": "A1WS884SI0SLO4"}], "B09R1FFQF8": [{"asin": "B09R1FFQF8", "instruction": "i am looking for a red color fast charging portable charger..", "attributes": ["fast charging", "plug play", "easy use", "carrying case"], "options": ["color: red", "size: 3300 mah"], "instruction_attributes": ["fast charging"], "instruction_options": ["red"], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOTWVY7", "worker_id": "A1Q8PPQQCWGY0D"}], "B07MLH8SHQ": [{"asin": "B07MLH8SHQ", "instruction": "find a high protein puffed snack to be made on a brick oven.", "attributes": ["high protein", "low carb", "gluten free", "artificial ingredients", "low sugar", "nut free", "soy free", "non gmo"], "options": ["flavor: brick oven pizza"], "instruction_attributes": ["high protein"], "instruction_options": ["brick oven pizza"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDRHHCB", "worker_id": "AVIEE6LDH0BT5"}], "B092YZ1114": [{"asin": "B092YZ1114", "instruction": "looking for plug and play n64 wired usb pc game pad joystick also choose colour clear red", "attributes": ["plug play", "usb port"], "options": ["color: clear red"], "instruction_attributes": ["plug play"], "instruction_options": ["clear red"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZHNLKN", "worker_id": "A10OGH5CQBXL5N"}], "B07D7GG9DZ": [{"asin": "B07D7GG9DZ", "instruction": "looking for gluten free dairy free protein powder", "attributes": ["dairy free", "gluten free", "baby shower"], "options": [""], "instruction_attributes": ["dairy free", "gluten free"], "instruction_options": [], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JE1SFR", "worker_id": "A10OGH5CQBXL5N"}], "B09L7PVRW8": [{"asin": "B09L7PVRW8", "instruction": "looking for cupcake toppers for baby shower birthday party supplies", "attributes": ["baby shower", "birthday party", "party supplies"], "options": [""], "instruction_attributes": ["baby shower", "birthday party", "party supplies"], "instruction_options": [], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733P4BEV", "worker_id": "A10OGH5CQBXL5N"}], "B09RV3SFJM": [{"asin": "B09RV3SFJM", "instruction": "i am looking for a mini mak spotting scope smart phone adapter that is easy to use and comes with a carrying case.", "attributes": ["easy use", "carrying case"], "options": ["configuration: w | adapter"], "instruction_attributes": ["easy use", "carrying case"], "instruction_options": ["w | adapter"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4L5M8R", "worker_id": "AK3JMCIGU8MLU"}], "B07PGR1T3K": [{"asin": "B07PGR1T3K", "instruction": "i am looking for 4ft black color triple h mist spray needle sleeve t-shirt for youth", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: youth", "size: 4t"], "instruction_attributes": ["needle sleeve"], "instruction_options": ["black", "4t"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCWC56N", "worker_id": "A258PTOZ3D2TQR"}], "B09RHQFJNJ": [{"asin": "B09RHQFJNJ", "instruction": "entatial aluminum alloy ball head, camera tripod ball head. find and let me know", "attributes": ["quick release", "aluminum alloy"], "options": [""], "instruction_attributes": ["aluminum alloy"], "instruction_options": [], "assignment_id": "3OE22WJIGTY29TYKE559KEO5BEIQUO", "worker_id": "A15IJ20C3R4HUO"}], "B07L7H34D8": [{"asin": "B07L7H34D8", "instruction": "i am looking for adidas men's synthetic sole running shoe, also blue one and 5.5 sized", "attributes": ["comfortable fit", "synthetic sole"], "options": ["color: blue | mystery blue", "size: 5.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["blue | mystery blue", "5.5"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UIQ3AY", "worker_id": "A258PTOZ3D2TQR"}], "B09PG9Z97L": [{"asin": "B09PG9Z97L", "instruction": "i am looking for a black women\u2019s loose fit tank top.", "attributes": ["loose fit", "long sleeve"], "options": ["color: b18 - black", "size: 120"], "instruction_attributes": ["loose fit"], "instruction_options": ["b18 - black"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4DN6RM", "worker_id": "AHU9OLV0YKIIW"}], "B09RQT6GC1": [{"asin": "B09RQT6GC1", "instruction": "i would like to buy xx-large men's shorts with an elastic waist and want them to be dark blue.", "attributes": ["machine wash", "drawstring closure", "elastic waist", "daily wear"], "options": ["color: dark blue", "size: xx-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["dark blue", "xx-large"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KZ0E7Z", "worker_id": "A114NK7T5673GK"}], "B079C5SZ5X": [{"asin": "B079C5SZ5X", "instruction": "i would like a four ounce tube of fluoride free toothpaste.", "attributes": ["fluoride free", "long lasting", "bad breath"], "options": ["size: 4 ounce (pack of 1)"], "instruction_attributes": ["fluoride free"], "instruction_options": ["4 ounce (pack of 1)"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZM49KA", "worker_id": "A1WS884SI0SLO4"}], "B01CIVNU3M": [{"asin": "B01CIVNU3M", "instruction": "i need a deodorant anti perspirant in travel size for women", "attributes": ["anti perspirant", "travel size"], "options": [""], "instruction_attributes": ["anti perspirant", "travel size"], "instruction_options": [], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LPDCROR", "worker_id": "A2Y2TURT2VEYZN"}], "B09T38WPBV": [{"asin": "B09T38WPBV", "instruction": "i'm looking for a monopod with carbon fiber", "attributes": ["quick release", "carbon fiber"], "options": [""], "instruction_attributes": ["carbon fiber"], "instruction_options": [], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THZS5ZV", "worker_id": "A2Y2TURT2VEYZN"}], "B08WHCWVJW": [{"asin": "B08WHCWVJW", "instruction": "i would like a low carb bagel.", "attributes": ["low carb", "hand crafted", "protein serving", "ready eat", "high protein", "dietary fiber", "quality ingredients", "artificial flavors"], "options": [""], "instruction_attributes": ["low carb"], "instruction_options": [], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OZ2YEF", "worker_id": "A1WS884SI0SLO4"}], "B09MJ6F65M": [{"asin": "B09MJ6F65M", "instruction": "i would like a 5\" navy futon mattress for my living room.", "attributes": ["twin size", "high density", "living room"], "options": ["color: navy", "size: 5\" depth"], "instruction_attributes": ["living room"], "instruction_options": ["navy", "5\" depth"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE260GQB", "worker_id": "A1WS884SI0SLO4"}], "B010JEDXAU": [{"asin": "B010JEDXAU", "instruction": "i would like a single beige spade bed that is water resistant.", "attributes": ["heavy duty", "water resistant"], "options": ["color: beige", "size: 1 count (pack of 1)"], "instruction_attributes": ["water resistant"], "instruction_options": ["beige", "1 count (pack of 1)"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKTIPET", "worker_id": "A1WS884SI0SLO4"}], "B091TYFSPX": [{"asin": "B091TYFSPX", "instruction": "i am looking for shampoo for damaged hair for men and women with argan oil, which is easy to use, with scented cleansing soap.", "attributes": ["easy use", "argan oil", "damaged hair"], "options": ["scent: cleansing soap"], "instruction_attributes": ["easy use", "argan oil", "damaged hair"], "instruction_options": ["cleansing soap"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZXN408", "worker_id": "ARJDD0Z3R65BD"}], "B00E5MDWQS": [{"asin": "B00E5MDWQS", "instruction": "i would like a 14 ounce caramel lovers taffy that is gluten free.", "attributes": ["gluten free", "soy free"], "options": ["flavor name: caramel lovers", "size: 14 oz"], "instruction_attributes": ["gluten free"], "instruction_options": ["caramel lovers", "14 oz"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDM72O0", "worker_id": "A1WS884SI0SLO4"}], "B09FPZWFYY": [{"asin": "B09FPZWFYY", "instruction": "multifunction charger fast charging usb port", "attributes": ["heavy duty", "fast charging", "aluminum alloy", "usb port"], "options": ["color: black"], "instruction_attributes": ["fast charging", "usb port"], "instruction_options": [], "assignment_id": "33TIN5LC0FKDY31374RC144TX10Y9H", "worker_id": "A3TTGSUBIK1YCL"}], "B081B2G43Z": [{"asin": "B081B2G43Z", "instruction": "i am interested in buying body scrubs for dead skin which have bamboo & charcoal acne face wash scent and come at size of 10.14 fl oz.", "attributes": ["tea tree", "dead skin"], "options": ["scent: bamboo & charcoal acne face wash", "size: 10.14 fl oz"], "instruction_attributes": ["dead skin"], "instruction_options": ["bamboo & charcoal acne face wash", "10.14 fl oz"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE261GQC", "worker_id": "AJY5G987IRT25"}], "B09BVM5TJZ": [{"asin": "B09BVM5TJZ", "instruction": "i'm looking for an ottoman for my living room with metal legs and beige upholstery.", "attributes": ["non slip", "metal legs", "living room"], "options": ["color: beige"], "instruction_attributes": ["metal legs", "living room"], "instruction_options": ["beige"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M21V49Y", "worker_id": "AR9AU5FY1S3RO"}], "B09JLGKMLQ": [{"asin": "B09JLGKMLQ", "instruction": "i would like a round vanity light for the living room.", "attributes": ["vanity light", "clear glass", "light fixture", "dining room", "living room"], "options": ["size: round"], "instruction_attributes": ["vanity light", "living room"], "instruction_options": ["round"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCZ0640", "worker_id": "A1WS884SI0SLO4"}], "B07D5K3Y4F": [{"asin": "B07D5K3Y4F", "instruction": "i'm looking for women's over the knee boot.", "attributes": ["knee high", "regular fit"], "options": ["color: olive v. suede", "size: 10"], "instruction_attributes": ["knee high"], "instruction_options": ["olive v. suede"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNOVNTC", "worker_id": "A21IUUHBSEVB56"}], "B092372XPC": [{"asin": "B092372XPC", "instruction": "i would like a five pound bag of non gmo seeds", "attributes": ["non gmo", "source vitamin"], "options": ["size: 5 pound"], "instruction_attributes": ["non gmo"], "instruction_options": ["5 pound"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23S09QTV", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GF5P4LW": [{"asin": "B09GF5P4LW", "instruction": "i am looking for black color heavy duty protective cover for phone 13 pro", "attributes": ["heavy duty", "wireless charging"], "options": ["color: black", "size: iphone 13 pro"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black", "iphone 13 pro"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHRERSJ2R", "worker_id": "A258PTOZ3D2TQR"}], "B00FLZ5MG6": [{"asin": "B00FLZ5MG6", "instruction": "i would like a bookcase that is made of engineered wood", "attributes": ["white finish", "engineered wood"], "options": [""], "instruction_attributes": ["engineered wood"], "instruction_options": [], "assignment_id": "3X0H8UUITCYRED22199FX2O3EHSSWQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B089NVK9GL": [{"asin": "B089NVK9GL", "instruction": "i am looking for hand crafted gourmet frozen appetizer.", "attributes": ["ready use", "hand crafted"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGSBYIQ", "worker_id": "A1Q8PPQQCWGY0D"}], "B09M7KQX11": [{"asin": "B09M7KQX11", "instruction": "i want a new formuler z10 pro max android 10 dual band ring.", "attributes": ["dual band", "high speed"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3B3WTRP3DMCNXI8WEJKHS03OIM892E", "worker_id": "A2RBF3IIJP15IH"}], "B088CY6GZK": [{"asin": "B088CY6GZK", "instruction": "i would like a high definition surveillance dvr kit.", "attributes": ["high definition", "motion detection"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJRBGD6", "worker_id": "A1WS884SI0SLO4"}], "B09JSDBDCC": [{"asin": "B09JSDBDCC", "instruction": "i would like a 29 wide by 63 tall brown roller shade that is easy to install.", "attributes": ["white item", "easy install", "easy clean"], "options": ["color: bottom up-light filtering-brown", "size: 29\"w x 64\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["bottom up-light filtering-brown", "29\"w x 64\"h"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7ZDHL7", "worker_id": "A1WS884SI0SLO4"}], "B084JH55W8": [{"asin": "B084JH55W8", "instruction": "i would like a makeup palette that is easy to clean and is red", "attributes": ["easy clean", "nail art"], "options": ["color: red"], "instruction_attributes": ["easy clean"], "instruction_options": ["red"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LY4CDB", "worker_id": "A2ECRNQ3X5LEXD"}], "B00G4ITP30": [{"asin": "B00G4ITP30", "instruction": "i would like a 8 ft 6 in x 12 ft rectangular navy rug for my living room.", "attributes": ["dining room", "home furnishings", "living room"], "options": ["color: navy", "item shape: rectangular", "size: 8 ft 6 in x 12 ft"], "instruction_attributes": ["living room"], "instruction_options": ["navy", "rectangular", "8 ft 6 in x 12 ft"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1CVI26", "worker_id": "A1WS884SI0SLO4"}], "B0030EYI4C": [{"asin": "B0030EYI4C", "instruction": "i would like a 6 foot long snake cable for blu ray.", "attributes": ["blu ray", "high performance"], "options": ["color: snake", "size: 6 feet"], "instruction_attributes": ["blu ray"], "instruction_options": ["snake", "6 feet"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJQLMO6", "worker_id": "A1WS884SI0SLO4"}], "B08149WQV1": [{"asin": "B08149WQV1", "instruction": "my sister needs a long-sleeve hoodie dress for casual daily wear; she is an extra large size.", "attributes": ["daily casual", "long sleeve"], "options": ["color: multi 10", "size: x-large"], "instruction_attributes": ["daily casual", "long sleeve"], "instruction_options": ["x-large"], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0ZFCC0", "worker_id": "A3LIIE572Z4OG7"}], "B0170BHYGE": [{"asin": "B0170BHYGE", "instruction": "i am interested in buying a pack of 1, bpa free dental guard with a storage case.", "attributes": ["bpa free", "storage case"], "options": ["size: 1 count (pack of 1)"], "instruction_attributes": ["bpa free", "storage case"], "instruction_options": ["1 count (pack of 1)"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH53HQZ", "worker_id": "AHXHM1PQTRWIQ"}], "B07CZL3WV5": [{"asin": "B07CZL3WV5", "instruction": "i want a 5 ounce hotter n hot jalapeno kosher certified chips.", "attributes": ["kosher certified", "artificial flavors"], "options": ["flavor name: hotter 'n hot jalapeno", "size: 5 ounce (pack of 8)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["hotter 'n hot jalapeno", "5 ounce (pack of 8)"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR71LY61", "worker_id": "A1WS884SI0SLO4"}], "B09PL3X4PF": [{"asin": "B09PL3X4PF", "instruction": "i need a dresser that is easy to assemble and is the color b", "attributes": ["easy assemble", "storage unit"], "options": ["color: b"], "instruction_attributes": ["easy assemble"], "instruction_options": ["b"], "assignment_id": "3MRNMEIQWGG51U7L057OTSLNF7MLD4", "worker_id": "A2ECRNQ3X5LEXD"}], "B07DMBCVLY": [{"asin": "B07DMBCVLY", "instruction": "i am looking for a 2.1 ounce (pack of 4) of gluten free and non gmo candy & chocolate bars", "attributes": ["artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: gingerbread", "size: 2.1 ounce (pack of 4)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["2.1 ounce (pack of 4)"], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9K3E2A", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B07DMBCVLY", "instruction": "i am looking for a four count variety pack of chocolate bars that are non gmo.", "attributes": ["artificial ingredients", "non gmo", "gluten free", "natural ingredients"], "options": ["flavor name: variety", "size: 4 count (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["variety", "4 count (pack of 1)"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPXDPJ5", "worker_id": "A2ECRNQ3X5LEXD"}], "B073SWCZ62": [{"asin": "B073SWCZ62", "instruction": "i am looking for some nut free raspberry snack bars.", "attributes": ["low sodium", "nut free", "plant based", "dairy free", "non gmo", "0g trans", "real fruit", "high fructose", "artificial flavors"], "options": ["flavor name: raspberry", "size: 6 count (pack of 6)"], "instruction_attributes": ["nut free"], "instruction_options": ["raspberry"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XUYGN7", "worker_id": "A1EREKSZAA9V7B"}], "B0842NXL2W": [{"asin": "B0842NXL2W", "instruction": "i'm looking for a pair of men's golf shoes in a seven and a half size that are easy to care for.", "attributes": ["easy care", "vinyl acetate", "rubber outsole", "rubber sole"], "options": ["size: 7.5"], "instruction_attributes": ["easy care"], "instruction_options": ["7.5"], "assignment_id": "37C0GNLMHQDNI94ED11M493QPD2D6V", "worker_id": "A2JP9IKRHNLRPI"}], "B09NDWF94G": [{"asin": "B09NDWF94G", "instruction": "i want to buy cupcake toppers which are suitable for valentine day and have a red color.", "attributes": ["valentine day", "birthday party", "cupcake picks"], "options": ["color: a red"], "instruction_attributes": ["valentine day"], "instruction_options": ["a red"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH4DZ42", "worker_id": "AJY5G987IRT25"}], "B09K7Q9V57": [{"asin": "B09K7Q9V57", "instruction": "i am looking for a 2-4y size of manual toothbrushes for sensitive teeth", "attributes": ["teeth whitening", "easy clean", "sensitive teeth"], "options": ["color: 2 packs blue toothbrush", "size: 2-4y"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["2-4y"], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61WPWZW", "worker_id": "A9QRQL9CFJBI7"}], "B09LQNSL48": [{"asin": "B09LQNSL48", "instruction": "i would like a pair of size 8.5 red slippers with a rubber sole.", "attributes": ["open toe", "anti slip", "non slip", "memory foam", "faux fur", "rubber sole", "high heel"], "options": ["color: red", "size: 8.5-9"], "instruction_attributes": ["rubber sole"], "instruction_options": ["red", "8.5-9"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V3DGF1", "worker_id": "A1WS884SI0SLO4"}], "B09P3CKRSW": [{"asin": "B09P3CKRSW", "instruction": "i need you to find this women's long-sleeved tie-dye printed pajamas, color: b2-orange, size medium. i want to give it as a gift to a friend.", "attributes": ["loose fit", "long sleeve", "short sleeve"], "options": ["color: b2-orange", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["b2-orange", "medium"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4DHR61", "worker_id": "A15IJ20C3R4HUO"}], "B08XN1T626": [{"asin": "B08XN1T626", "instruction": "i would like a 18 fluid ounce bottle of natural hair gel.", "attributes": ["alcohol free", "high quality", "natural ingredients", "dry hair"], "options": ["size: 18 fl oz (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["18 fl oz (pack of 1)"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIUT48N", "worker_id": "A1WS884SI0SLO4"}], "B09QCB88QT": [{"asin": "B09QCB88QT", "instruction": "i need a gm workout tee that is pink", "attributes": ["fleece lined", "long sleeve", "short sleeve", "gym workout"], "options": ["color: pink", "size: x-large"], "instruction_attributes": ["gym workout"], "instruction_options": ["pink"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQYCE77O", "worker_id": "A2ECRNQ3X5LEXD"}], "B06VW5J11K": [{"asin": "B06VW5J11K", "instruction": "i need a 2 fl oz alcohol free wash", "attributes": ["alcohol free", "fragrance free", "dry skin"], "options": ["size: 2 fl oz (pack of 1)"], "instruction_attributes": ["alcohol free"], "instruction_options": ["2 fl oz (pack of 1)"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPJ06VF", "worker_id": "A2ECRNQ3X5LEXD"}], "B08ZH7NTGH": [{"asin": "B08ZH7NTGH", "instruction": "am looking for the gluten free louisiana pepper exchange with cayenne pepper puree flavor", "attributes": ["gluten free", "natural ingredients"], "options": ["flavor name: cayenne pepper puree", "size: 4 ounce (pack of 2)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM8NHZS", "worker_id": "A1IL2K0ELYI090"}], "B003U5DDTM": [{"asin": "B003U5DDTM", "instruction": "i would like a 34 wide by 32 long pair of stone straight leg pants.", "attributes": ["straight leg", "comfortable fit", "polyester cotton"], "options": ["color: stone", "size: 34w x 32l"], "instruction_attributes": ["straight leg"], "instruction_options": ["stone", "34w x 32l"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOKQCTS", "worker_id": "A1WS884SI0SLO4"}], "B09FQ9Q2PH": [{"asin": "B09FQ9Q2PH", "instruction": "i want to buy cupcake toppers which are suitable for birthday party cupcakes and with a pattern of rg 80.", "attributes": ["cupcake picks", "birthday party"], "options": ["pattern name: rg 80"], "instruction_attributes": ["birthday party"], "instruction_options": ["rg 80"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXSCCAW5", "worker_id": "AJY5G987IRT25"}], "B07YFX7DKZ": [{"asin": "B07YFX7DKZ", "instruction": "i would like a 42 wide by 63 long blush window panel that is machine washable.", "attributes": ["machine washable", "easy install", "living room"], "options": ["color: blush", "size: 42w x 63l"], "instruction_attributes": ["machine washable"], "instruction_options": ["blush", "42w x 63l"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK49VA6E", "worker_id": "A1WS884SI0SLO4"}], "B09NSCFQCZ": [{"asin": "B09NSCFQCZ", "instruction": "i am looking for an easy to install wall mounted cd player.", "attributes": ["wall mounted", "easy install", "usb port"], "options": [""], "instruction_attributes": ["wall mounted", "easy install"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZQ0Y1Y", "worker_id": "A1EREKSZAA9V7B"}], "B095BWL2GD": [{"asin": "B095BWL2GD", "instruction": "i am looking for medium size men's hiking shorts having elastic waistband.", "attributes": ["elastic waistband", "relaxed fit"], "options": ["color: multi7", "size: medium"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["medium"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI7LT3J", "worker_id": "A1Q8PPQQCWGY0D"}], "B00FREG0PI": [{"asin": "B00FREG0PI", "instruction": "i want to buy a shirt for men which is easy care and has long sleeves, also it should be black color and have a size of x-large big tall.", "attributes": ["easy care", "machine wash", "button closure", "long sleeve"], "options": ["color: black", "size: x-large big tall"], "instruction_attributes": ["easy care", "long sleeve"], "instruction_options": ["black", "x-large big tall"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0M2YCSR", "worker_id": "AJY5G987IRT25"}], "B0727LGC9S": [{"asin": "B0727LGC9S", "instruction": "i want icelandic provisions yogurt with real fruit.", "attributes": ["protein serving", "real fruit", "artificial flavors"], "options": [""], "instruction_attributes": ["real fruit"], "instruction_options": [], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLLBOECR", "worker_id": "A2RBF3IIJP15IH"}], "B097RHDQS9": [{"asin": "B097RHDQS9", "instruction": "i want a monocular telescope for bird watching", "attributes": ["non slip", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ6XISC", "worker_id": "A2Y2TURT2VEYZN"}], "B076HGVPN2": [{"asin": "B076HGVPN2", "instruction": "i would like a adult sized 4 pack of hermosa pink chairs for the living room.", "attributes": ["contemporary style", "living room"], "options": ["color: hermosa pink", "size: 4 pack", "style: adult"], "instruction_attributes": ["living room"], "instruction_options": ["hermosa pink", "4 pack", "adult"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZHOLKO", "worker_id": "A1WS884SI0SLO4"}], "B09M2YC61W": [{"asin": "B09M2YC61W", "instruction": "|i am looking for 4x-large men's fashion black color regulat fit suit jackets", "attributes": ["slim fit", "regular fit", "dry clean"], "options": ["color: black-5", "size: 4x-large"], "instruction_attributes": ["regular fit"], "instruction_options": ["black-5", "4x-large"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPPH6EV", "worker_id": "A258PTOZ3D2TQR"}], "B081SLWHXH": [{"asin": "B081SLWHXH", "instruction": "i want a wall mounted europe style round decorative mirror.", "attributes": ["wall mounted", "easy install"], "options": [""], "instruction_attributes": ["wall mounted"], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC9ED0Q", "worker_id": "A2RBF3IIJP15IH"}], "B08FHGHRVW": [{"asin": "B08FHGHRVW", "instruction": "i am looking for a large european made lead free candle for my living room.", "attributes": ["lead free", "dining room", "living room"], "options": [""], "instruction_attributes": ["lead free", "living room"], "instruction_options": [], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ6QIS5", "worker_id": "A1EREKSZAA9V7B"}], "B09PQF3XMN": [{"asin": "B09PQF3XMN", "instruction": "i am looking for cruelty free wet n wild lip balm in the color 'no more drama'.", "attributes": ["fragrance free", "paraben free", "cruelty free", "seed oil"], "options": ["color: no more drama"], "instruction_attributes": ["cruelty free"], "instruction_options": ["no more drama"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCM4LBR", "worker_id": "AK3JMCIGU8MLU"}], "B095LC8JT2": [{"asin": "B095LC8JT2", "instruction": "i am looking for wall mounted black metal coat hanger and hat tree rack.", "attributes": ["wall mounted", "space saving", "contemporary style"], "options": [""], "instruction_attributes": ["wall mounted"], "instruction_options": [], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNC101D", "worker_id": "AK3JMCIGU8MLU"}], "B0818ZP6YY": [{"asin": "B0818ZP6YY", "instruction": "i am looking for a pair of women's purple house slippers with memory foam and faux fur.", "attributes": ["fleece lined", "anti slip", "non slip", "memory foam", "faux fur", "rubber sole", "closed toe"], "options": ["color: z5-purple", "size: 8-8.5"], "instruction_attributes": ["memory foam", "faux fur"], "instruction_options": ["z5-purple"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOGBLL7", "worker_id": "A1EREKSZAA9V7B"}], "B01MZAR82R": [{"asin": "B01MZAR82R", "instruction": "i want a living room traditional vintage shabby chic standing floor lamp with a linen shade.", "attributes": ["white finish", "living room"], "options": ["color: linen shade"], "instruction_attributes": ["living room"], "instruction_options": ["linen shade"], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQXHB58", "worker_id": "A2RBF3IIJP15IH"}], "B091QC3SF7": [{"asin": "B091QC3SF7", "instruction": "i am looking for a low carb, high protein meal replacement bar in the flavor of dark chocolate s'mores.", "attributes": ["high protein", "low sugar", "low calorie", "low carb", "individually wrapped"], "options": ["flavor name: dark chocolate s'mores", "size: 1 box - 7 count"], "instruction_attributes": ["high protein", "low carb"], "instruction_options": ["dark chocolate s'mores"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB17ELUB", "worker_id": "AK3JMCIGU8MLU"}, {"asin": "B091QC3SF7", "instruction": "the success of my diet depends on this product!!! bestmed - high protein peaunt nutritional bar - low-carb, 15g protein, low sugar, i need to find help.", "attributes": ["high protein", "low sugar", "low calorie", "low carb", "individually wrapped"], "options": ["flavor name: peanut", "size: 2 box - 14 count"], "instruction_attributes": ["high protein", "low sugar", "low carb"], "instruction_options": ["peanut"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIOGEF2", "worker_id": "A15IJ20C3R4HUO"}], "B09MYNDXXY": [{"asin": "B09MYNDXXY", "instruction": "i would like to buy winter boots for women which are made of quality materials and are in khaki color, as for the size they should be 9.", "attributes": ["day comfort", "quality materials"], "options": ["color: khaki", "size: 9"], "instruction_attributes": ["quality materials"], "instruction_options": ["khaki", "9"], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z1BW1KB", "worker_id": "AJY5G987IRT25"}], "B07HF7G5FB": [{"asin": "B07HF7G5FB", "instruction": "i'm looking for organic shampoo for thinning hair and hair loss.", "attributes": ["hair loss", "hair growth"], "options": [""], "instruction_attributes": ["hair loss"], "instruction_options": [], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQJ7RJD", "worker_id": "A21IUUHBSEVB56"}], "B0046EJQ1K": [{"asin": "B0046EJQ1K", "instruction": "i'm looking for a candy heart shaped covered by chocolate for valentine day", "attributes": ["chocolate covered", "individually wrapped", "gluten free", "valentine day"], "options": [""], "instruction_attributes": ["chocolate covered", "valentine day"], "instruction_options": [], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P78MSVC", "worker_id": "A2Y2TURT2VEYZN"}], "B08RYCHDBV": [{"asin": "B08RYCHDBV", "instruction": "i need a-5 pairs of false eyelashes. it should be easy to apply.", "attributes": ["easy apply", "easy carry", "cruelty free"], "options": ["pattern name: style a-5 pairs"], "instruction_attributes": ["easy apply"], "instruction_options": ["style a-5 pairs"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXCGFCN", "worker_id": "A1NF6PELRKACS9"}], "B088T66N5S": [{"asin": "B088T66N5S", "instruction": "i would like a goddess treasure eyeshadow that is cruelty free.", "attributes": ["highly pigmented", "cruelty free", "long lasting"], "options": ["pattern name: goddess treasure"], "instruction_attributes": ["cruelty free"], "instruction_options": ["goddess treasure"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OVVPO4", "worker_id": "A1WS884SI0SLO4"}], "B08WX4QH5X": [{"asin": "B08WX4QH5X", "instruction": "i'm looking for a scented facial moisturizer anti aging", "attributes": ["anti aging", "natural ingredients", "fine lines", "dry skin"], "options": ["scent: scented"], "instruction_attributes": ["anti aging"], "instruction_options": ["scented"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YST69D", "worker_id": "A2Y2TURT2VEYZN"}], "B08MT567ZS": [{"asin": "B08MT567ZS", "instruction": "i am interested in buying wall mounted lights which have nickel finish and satin nickel color, and i want 5 of them.", "attributes": ["nickel finish", "vanity light"], "options": ["color: satin nickel", "size: 5-light"], "instruction_attributes": ["nickel finish"], "instruction_options": ["satin nickel", "5-light"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHE01ER", "worker_id": "AJY5G987IRT25"}], "B07RGP2LS1": [{"asin": "B07RGP2LS1", "instruction": "i am looking for a pair of women's size 5.5 flat shoes with a synthetic sole.", "attributes": ["anti slip", "synthetic sole", "rubber sole"], "options": ["color: n pink", "size: 5.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["5.5"], "assignment_id": "31Q0U3WYD0PCUE27GIMJ9L2DVQY175", "worker_id": "A1EREKSZAA9V7B"}], "B08L71QGTD": [{"asin": "B08L71QGTD", "instruction": "i am interested in buying a deodorant for body which is paraben free and is suitable for sensitive skin, and has a scent of bay rum.", "attributes": ["clinically proven", "paraben free", "sensitive skin"], "options": ["scent: bay rum"], "instruction_attributes": ["paraben free", "sensitive skin"], "instruction_options": ["bay rum"], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEQ8KZI", "worker_id": "AJY5G987IRT25"}], "B085F3JWD5": [{"asin": "B085F3JWD5", "instruction": "i am looking for low calorie popcorn that is unpopped", "attributes": ["low calorie", "non gmo", "old fashioned", "gluten free"], "options": [""], "instruction_attributes": ["low calorie"], "instruction_options": [], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMMOJ1M", "worker_id": "A2ECRNQ3X5LEXD"}], "B093YTGB24": [{"asin": "B093YTGB24", "instruction": "i want to find a set of two mesh laundry bags that i can wash my delicate items in, such as blouses and hosiery.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODQTWE3", "worker_id": "A3LIIE572Z4OG7"}], "B09P7WWP61": [{"asin": "B09P7WWP61", "instruction": "i am looking for a long handled body brush.", "attributes": ["non slip", "long handle", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["long handle"], "instruction_options": [], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0FN16F", "worker_id": "A1EREKSZAA9V7B"}], "B09S6NTYQY": [{"asin": "B09S6NTYQY", "instruction": "i am looking for a pair of women's size 8.5 open toe sandals.", "attributes": ["open toe", "non slip"], "options": ["color: g-1 pink", "size: 8.5"], "instruction_attributes": ["open toe"], "instruction_options": ["8.5"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCFYH7O", "worker_id": "A1EREKSZAA9V7B"}], "B08V4ZPBZH": [{"asin": "B08V4ZPBZH", "instruction": "i need anti slip grey running shoes", "attributes": ["anti slip", "quick drying"], "options": ["color: 133-grey", "size: 12"], "instruction_attributes": ["anti slip"], "instruction_options": ["133-grey"], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8Z0G8K", "worker_id": "A2ECRNQ3X5LEXD"}], "B0764ZSHVC": [{"asin": "B0764ZSHVC", "instruction": "i would like to buy non gmo popcorns which can also be a perfect gift.", "attributes": ["hand crafted", "non gmo", "perfect gift"], "options": [""], "instruction_attributes": ["non gmo", "perfect gift"], "instruction_options": [], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O5G2AE", "worker_id": "AJY5G987IRT25"}], "B07G6124N1": [{"asin": "B07G6124N1", "instruction": "i need some cute heart-shaped glittery cupcake picks as a gift to bring to a baby shower.", "attributes": ["cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["cupcake picks", "baby shower"], "instruction_options": [], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFERVLE", "worker_id": "A3LIIE572Z4OG7"}], "B078XPX5Y9": [{"asin": "B078XPX5Y9", "instruction": "i am looking for gluten free pride of india brand lentil crackers in the plain mung bean flavor.", "attributes": ["gmo free", "gluten free", "ready eat"], "options": ["flavor name: plain mung bean (moong dal) sada papadum", "size: 6-boxes"], "instruction_attributes": ["gluten free"], "instruction_options": ["plain mung bean (moong dal) sada papadum"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP8L7J4", "worker_id": "AK3JMCIGU8MLU"}], "B09FPTTJ3X": [{"asin": "B09FPTTJ3X", "instruction": "i'm looking for wireless bluetooth car stereo audio receiver.", "attributes": ["hands free", "usb port", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYQCCGD", "worker_id": "A21IUUHBSEVB56"}], "B09RMM8KX7": [{"asin": "B09RMM8KX7", "instruction": "i'm looking for a short sleeve maxi dress with high waist tummy control band. also choose medium size 11-zc4 light blue one", "attributes": ["short sleeve", "tummy control", "long sleeve", "high waist"], "options": ["color: 11 - zc4 light blue", "size: medium"], "instruction_attributes": ["short sleeve", "tummy control", "high waist"], "instruction_options": ["11 - zc4 light blue", "medium"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL9FH5L", "worker_id": "AR0VJ5XRG16UJ"}], "B09KT21VHL": [{"asin": "B09KT21VHL", "instruction": "i want to find a white pair of one-size-fits-all men's underwear that is loose-fitting.", "attributes": ["low rise", "loose fit", "slim fit", "classic fit", "elastic waist"], "options": ["color: u-ae-white", "size: one size"], "instruction_attributes": ["loose fit"], "instruction_options": ["u-ae-white", "one size"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI90H5XN", "worker_id": "A345TDMHP3DQ3G"}], "B09NP3XKKG": [{"asin": "B09NP3XKKG", "instruction": "i am looking for a 5 pound assorted chocolate candy mix gift basket for a birthday party.", "attributes": ["birthday party", "gift basket"], "options": ["size: 5 lbs"], "instruction_attributes": ["birthday party", "gift basket"], "instruction_options": ["5 lbs"], "assignment_id": "34PGFRQONZLYFAJCEF0151XGIYIJW4", "worker_id": "A1EREKSZAA9V7B"}], "B091MCX28W": [{"asin": "B091MCX28W", "instruction": "i am looking for rockandy peppered beef jerky ready to eat snacks in a 5 pack.", "attributes": ["ready eat", "great gift"], "options": ["flavor name: new thick & juicy extremely hot beef jerky", "size: 5 pack"], "instruction_attributes": ["ready eat"], "instruction_options": ["5 pack"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFIRU5B", "worker_id": "AK3JMCIGU8MLU"}], "B07THG63LT": [{"asin": "B07THG63LT", "instruction": "i need a futon set that is blue velvet", "attributes": ["button tufted", "high density", "easy assemble", "memory foam", "wood frame", "living room"], "options": ["color: blue velvet", "style: futon + desk"], "instruction_attributes": ["living room"], "instruction_options": ["blue velvet"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPNVJNW", "worker_id": "A2ECRNQ3X5LEXD"}], "B09L894DVK": [{"asin": "B09L894DVK", "instruction": "i need a receiver with high definition", "attributes": ["1080p hd", "high definition"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKS0MGLV", "worker_id": "AVIEE6LDH0BT5"}], "B08X732PLR": [{"asin": "B08X732PLR", "instruction": "find me an official pokemon shirt with gengar and mewtwo, has to be washable in the machine, black in a men' large.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: asphalt", "fit type: men", "size: large"], "instruction_attributes": ["officially licensed", "machine wash"], "instruction_options": ["asphalt", "men", "large"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNR0CXJZ", "worker_id": "A3O1I9MATO3ZZN"}], "B08SWFTP5S": [{"asin": "B08SWFTP5S", "instruction": "i am looking for a solid steel frame dressers", "attributes": ["assembly required", "steel frame", "white finish", "living room"], "options": ["color: pastel 2", "style: solid"], "instruction_attributes": ["steel frame"], "instruction_options": ["solid"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMSQ6BH", "worker_id": "A9QRQL9CFJBI7"}], "B07PMQTC2L": [{"asin": "B07PMQTC2L", "instruction": "i'm looking for a protective case for the apple watch that contains a rose pink box cover.", "attributes": ["compatible apple", "case cover"], "options": ["color: rose pink", "size: fit for 38mm watch"], "instruction_attributes": ["case cover"], "instruction_options": ["rose pink"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95CAKHPD", "worker_id": "ARJDD0Z3R65BD"}], "B07YNFMRRX": [{"asin": "B07YNFMRRX", "instruction": "i am looking for a high quality nail polish of size 10x24.", "attributes": ["high quality", "nail polish"], "options": ["size: 10x24", "style name: gallery wrapped canvas"], "instruction_attributes": ["high quality"], "instruction_options": ["10x24"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHWB8S8W", "worker_id": "A1Q8PPQQCWGY0D"}], "B08MH9GDK8": [{"asin": "B08MH9GDK8", "instruction": "i am looking for some long lasting lead free prayer candles.", "attributes": ["lead free", "long lasting"], "options": [""], "instruction_attributes": ["lead free", "long lasting"], "instruction_options": [], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1MCRGTF", "worker_id": "A1EREKSZAA9V7B"}], "B08TQDWWZP": [{"asin": "B08TQDWWZP", "instruction": "i am looking for keen utility men's kansas city kbf composite toe athletic shoes.", "attributes": ["water resistant", "slip resistant", "moisture wicking", "non slip", "rubber sole"], "options": ["color: keen yellow | black", "size: 10 wide"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["10 wide"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HSHWOP", "worker_id": "A2KW17G25L25R8"}], "B003ZYOD6A": [{"asin": "B003ZYOD6A", "instruction": "i need long lasting deodorant", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJL1GBYH", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Z8QJFYC": [{"asin": "B07Z8QJFYC", "instruction": "i am looking for a synthetic hair ponytail extension in the color medium brown.", "attributes": ["easy use", "synthetic hair"], "options": ["color: medium brown", "size: one piece"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["medium brown"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7ANXYUX", "worker_id": "AK3JMCIGU8MLU"}], "B09R7VRZV4": [{"asin": "B09R7VRZV4", "instruction": "i am looking for pink color whitening massage easy use toothbrush that fit for age 2-6", "attributes": ["easy use", "sensitive teeth"], "options": ["color: pink", "size: age 2-6"], "instruction_attributes": ["easy use"], "instruction_options": ["pink", "age 2-6"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR71L6Y9", "worker_id": "A258PTOZ3D2TQR"}], "B06XF385WF": [{"asin": "B06XF385WF", "instruction": "i need black long lasting mascara", "attributes": ["long lasting", "eye shadow"], "options": ["color: washable mystic black", "configuration: 1 count"], "instruction_attributes": ["long lasting"], "instruction_options": ["washable mystic black"], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZTNHSN", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PRCCD3L": [{"asin": "B09PRCCD3L", "instruction": "i need one pair of large sized stockings that is high quality and non toxic for my feet.", "attributes": ["non toxic", "high quality"], "options": ["color: skin toes no bone", "size: one pair of feet"], "instruction_attributes": ["non toxic", "high quality"], "instruction_options": ["one pair of feet"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80GO1Q1", "worker_id": "A1NF6PELRKACS9"}], "B08Q37Z1LZ": [{"asin": "B08Q37Z1LZ", "instruction": "i am looking for a light blue mini dress that is machine washable.", "attributes": ["daily casual", "wash cold", "machine wash"], "options": ["color: light blue", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["light blue"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFJBVMA", "worker_id": "A1EREKSZAA9V7B"}], "B08HKYBTFF": [{"asin": "B08HKYBTFF", "instruction": "i would like a face kit for my fine lines.", "attributes": ["storage case", "stainless steel", "fine lines"], "options": [""], "instruction_attributes": ["fine lines"], "instruction_options": [], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQSGP0F", "worker_id": "A1WS884SI0SLO4"}], "B07JB7VQBY": [{"asin": "B07JB7VQBY", "instruction": "i'd like to shop for some red slim fit jeans with a button closure. i need a size 28.", "attributes": ["slim fit", "button closure"], "options": ["color: red", "size: 28"], "instruction_attributes": ["slim fit", "button closure"], "instruction_options": ["red", "28"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G7B647L", "worker_id": "AR9AU5FY1S3RO"}], "B07HYH327V": [{"asin": "B07HYH327V", "instruction": "i would like a gluten free trader joes flatbread.", "attributes": ["trader joe", "gluten free"], "options": [""], "instruction_attributes": ["trader joe", "gluten free"], "instruction_options": [], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662ZJM4U", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07HYH327V", "instruction": "i want to find trader joe's gluten free norwegian crispbreads that i can pack in my lunches.", "attributes": ["trader joe", "gluten free"], "options": [""], "instruction_attributes": ["trader joe", "gluten free"], "instruction_options": [], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49GYDTH", "worker_id": "A345TDMHP3DQ3G"}], "B00RIBX3T4": [{"asin": "B00RIBX3T4", "instruction": "i'm looking for violet pigment and blackberry extract sheer silver shampoo.", "attributes": ["paraben free", "sulfate free"], "options": ["style: conditioner - fl oz 10.1"], "instruction_attributes": ["paraben free", "sulfate free"], "instruction_options": ["conditioner - fl oz 10.1"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2VY5M2", "worker_id": "A21IUUHBSEVB56"}], "B085PWT41F": [{"asin": "B085PWT41F", "instruction": "gluten free meatballs", "attributes": ["grass fed", "gluten free", "natural flavors"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMMPJ1N", "worker_id": "A3TTGSUBIK1YCL"}], "B08V9Y3JWH": [{"asin": "B08V9Y3JWH", "instruction": "i'm looking for a machine washable t-shirts made of heather cotton with needle sleeve and button closure type. also, choose men, x-small size white one.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "button closure", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: men", "size: x-small"], "instruction_attributes": ["machine wash", "heathers cotton", "button closure", "needle sleeve"], "instruction_options": ["white", "men", "x-small"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCFA7HQ", "worker_id": "AR0VJ5XRG16UJ"}], "B082MCN2BL": [{"asin": "B082MCN2BL", "instruction": "i want a rolling cart for a beauty salon.", "attributes": ["high quality", "beauty salon"], "options": [""], "instruction_attributes": ["beauty salon"], "instruction_options": [], "assignment_id": "3K4J6M3CXP3RHVQ854J6QZ89YOJGA9", "worker_id": "A1WS884SI0SLO4"}], "B09L87DN8X": [{"asin": "B09L87DN8X", "instruction": "i need a red sports coat that is slim fitting.", "attributes": ["slim fit", "hand wash", "button closure", "soft material"], "options": ["color: red1", "size: small"], "instruction_attributes": ["slim fit"], "instruction_options": ["red1"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH8O1VG", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PHLSFCP": [{"asin": "B09PHLSFCP", "instruction": "i'm looking for a toothpaste for teeth whitening in blueberry scent", "attributes": ["teeth whitening", "travel size", "sensitive teeth"], "options": ["scent: blueberry"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["blueberry"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3H5NQ7", "worker_id": "A2Y2TURT2VEYZN"}], "B08M94Y2G7": [{"asin": "B08M94Y2G7", "instruction": "i would like a black chair with lumbar support.", "attributes": ["heavy duty", "lumbar support", "pu leather"], "options": ["color: black"], "instruction_attributes": ["lumbar support"], "instruction_options": ["black"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3H8QND", "worker_id": "A1WS884SI0SLO4"}], "B07PCZMLFG": [{"asin": "B07PCZMLFG", "instruction": "i'm looking for a woman's navy workout t-shirt that is machine washable and provides a classic fit.", "attributes": ["wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: men", "size: 3x-large"], "instruction_attributes": ["machine wash", "classic fit"], "instruction_options": ["navy"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7XDARFW", "worker_id": "A2JP9IKRHNLRPI"}], "B08BNGMZM8": [{"asin": "B08BNGMZM8", "instruction": "i'm looking for running shoe for women.", "attributes": ["rubber outsole", "rubber sole", "daily wear"], "options": ["color: grey | teal", "size: 9"], "instruction_attributes": ["daily wear"], "instruction_options": ["grey | teal"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0RKJ8U", "worker_id": "A21IUUHBSEVB56"}], "B07PLYFJSY": [{"asin": "B07PLYFJSY", "instruction": "i would like a coral orange basic heavy duty phone case.", "attributes": ["heavy duty", "easy carry", "case cover"], "options": ["color: m834-coral orange"], "instruction_attributes": ["heavy duty"], "instruction_options": ["m834-coral orange"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AODOE2", "worker_id": "A1WS884SI0SLO4"}], "B09P4MVM85": [{"asin": "B09P4MVM85", "instruction": "i would like a power cable for by blu ray player.", "attributes": ["output protection", "blu ray"], "options": [""], "instruction_attributes": ["blu ray"], "instruction_options": [], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q62GWY", "worker_id": "A1WS884SI0SLO4"}], "B0963729NB": [{"asin": "B0963729NB", "instruction": "i need a face kit for dark circles", "attributes": ["easy use", "fine lines", "dark circles"], "options": [""], "instruction_attributes": ["dark circles"], "instruction_options": [], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UTV1GM", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P3CGSXQ": [{"asin": "B09P3CGSXQ", "instruction": "i am interested in buying beds which are twin size, and of grey color, while their style should be metal triple bunk bed with slide.", "attributes": ["twin size", "space saving", "white item"], "options": ["color: grey", "style: metal triple bunk bed with slide"], "instruction_attributes": ["twin size"], "instruction_options": ["grey", "metal triple bunk bed with slide"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFN0Y8HY", "worker_id": "AJY5G987IRT25"}], "B099SGN3HJ": [{"asin": "B099SGN3HJ", "instruction": "i want a peanut butter cranberry toyou snack that is plant based.", "attributes": ["plant based", "gluten free"], "options": ["flavor name: toyou - peanut butter cranberry - box (1..."], "instruction_attributes": ["plant based"], "instruction_options": ["toyou - peanut butter cranberry - box (1..."], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q9FII6", "worker_id": "A1WS884SI0SLO4"}], "B096MGWMM2": [{"asin": "B096MGWMM2", "instruction": "i'm looking for a replacement remote with batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X416H02", "worker_id": "A62B826XMLK7K"}], "B09J28CKKT": [{"asin": "B09J28CKKT", "instruction": "i am looking for a heavy duty basic cases for iphone 13 size", "attributes": ["heavy duty", "wireless charging"], "options": ["size: iphone 13"], "instruction_attributes": ["heavy duty"], "instruction_options": ["iphone 13"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMO6VX7", "worker_id": "A9QRQL9CFJBI7"}, {"asin": "B09J28CKKT", "instruction": "i need an iphone 7 plus case that has wireless charging capabilities", "attributes": ["heavy duty", "wireless charging"], "options": ["size: iphone 7plus | 8plus"], "instruction_attributes": ["wireless charging"], "instruction_options": ["iphone 7plus | 8plus"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K55219", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QMVR6R7": [{"asin": "B08QMVR6R7", "instruction": "i'm looking for a shimmery eye shadow palette that is long lasting and waterproof. also, choose the fusion palette of 39 colors", "attributes": ["cruelty free", "easy apply", "long lasting", "eye shadow"], "options": ["color: color fusion-39 colors"], "instruction_attributes": ["long lasting", "eye shadow"], "instruction_options": ["color fusion-39 colors"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG4G54A", "worker_id": "A1TWVJS27CL3KT"}], "B0943T7FNN": [{"asin": "B0943T7FNN", "instruction": "i am looking for a pair of easy to carry light blue headphones.", "attributes": ["noise cancelling", "easy carry"], "options": ["color: light blue"], "instruction_attributes": ["easy carry"], "instruction_options": ["light blue"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK3GIUQ", "worker_id": "A1EREKSZAA9V7B"}], "B07S5XRX8X": [{"asin": "B07S5XRX8X", "instruction": "find a water resistant leather jacket", "attributes": ["water resistant", "easy care"], "options": ["color: blush crocodile", "size: large"], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6AL5GV", "worker_id": "AVIEE6LDH0BT5"}], "B09HBV726B": [{"asin": "B09HBV726B", "instruction": "i am looking for a grey sectional sofa for my living room.", "attributes": ["high density", "long lasting", "solid wood", "living room"], "options": ["color: grey", "size: 77x35x28\""], "instruction_attributes": ["living room"], "instruction_options": ["grey"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HH3I6T", "worker_id": "A1EREKSZAA9V7B"}], "B09R7B5VN5": [{"asin": "B09R7B5VN5", "instruction": "i am looking for a white batteries included clock radios", "attributes": ["batteries included", "aaa batteries"], "options": ["color: white"], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907VJUA6", "worker_id": "A9QRQL9CFJBI7"}], "B09GL5Z4N2": [{"asin": "B09GL5Z4N2", "instruction": "i want a size 12 black slipper made of vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate", "faux fur"], "options": ["color: black", "size: 12"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["black", "12"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCTB9B8", "worker_id": "A1WS884SI0SLO4"}], "B0972NGB9Y": [{"asin": "B0972NGB9Y", "instruction": "i'm looking for a daily wear cardigan sweaters with long sleeve and fleece lined. also choose medium size light grey colored one.", "attributes": ["fleece lined", "long sleeve", "daily wear"], "options": ["color: light grey", "size: medium"], "instruction_attributes": ["fleece lined", "long sleeve", "daily wear"], "instruction_options": ["light grey", "medium"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUX6JQ5", "worker_id": "AR0VJ5XRG16UJ"}], "B09SPKW74K": [{"asin": "B09SPKW74K", "instruction": "i would like to buy nail clippers which are easy to clean, and also are made of stainless steel, i also prefer to have them of color 8592 red.", "attributes": ["non slip", "easy clean", "long handle", "stainless steel"], "options": ["color: 8592 red"], "instruction_attributes": ["easy clean", "stainless steel"], "instruction_options": ["8592 red"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7R7I3V", "worker_id": "AJY5G987IRT25"}], "B072HSLKRT": [{"asin": "B072HSLKRT", "instruction": "i am looking for fredd marshall mens skinny jeans in a slim fit.", "attributes": ["slim fit", "imported zipper"], "options": ["color: 347", "size: 32w x 32l"], "instruction_attributes": ["slim fit"], "instruction_options": ["32w x 32l"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L84C56C1", "worker_id": "A2KW17G25L25R8"}], "B09NM4T5YJ": [{"asin": "B09NM4T5YJ", "instruction": "i'm looking for a men's long sleeve, yellow track jacket.", "attributes": ["winter warm", "slim fit", "quality polyester", "long sleeve", "polyester cotton", "elastic waistband", "regular fit", "gym workout", "daily wear"], "options": ["color: yellow", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["yellow"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH6MQHT", "worker_id": "A2JP9IKRHNLRPI"}], "B072JBH9BW": [{"asin": "B072JBH9BW", "instruction": "i would like to have a can of rich and creamy cream of potato soup.", "attributes": ["rich creamy", "artificial colors"], "options": ["flavor name: cream of potato soup"], "instruction_attributes": ["rich creamy"], "instruction_options": ["cream of potato soup"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0ZKXP1", "worker_id": "A1WS884SI0SLO4"}], "B08QDKDNLJ": [{"asin": "B08QDKDNLJ", "instruction": "i am looking for white color heavy duty bar stools.", "attributes": ["heavy duty", "easy install", "pu leather", "steel frame"], "options": ["color: white"], "instruction_attributes": ["heavy duty"], "instruction_options": ["white"], "assignment_id": "37TRT2X24116R7L1JO45INKV8X7JBV", "worker_id": "A1Q8PPQQCWGY0D"}], "B07HMJW9Y8": [{"asin": "B07HMJW9Y8", "instruction": "i'm looking for a pair of black and white rubber-soled sneakers in a size 5.5.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: black | white", "size: 5.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black | white", "5.5"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BQRJV7", "worker_id": "AFU00NU09CFXE"}], "B09B331BGP": [{"asin": "B09B331BGP", "instruction": "i want to find a beauty salon mattress that is 60 centimeters by 180 centimeters in dimension.", "attributes": ["non slip", "beauty salon"], "options": ["size: 60*180cm"], "instruction_attributes": ["beauty salon"], "instruction_options": ["60*180cm"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI89T39", "worker_id": "A345TDMHP3DQ3G"}], "B093XWDXTY": [{"asin": "B093XWDXTY", "instruction": "i'm looking for a spa pedicure kit-at-home foot care for baby soft feet.", "attributes": ["natural ingredients", "fine lines"], "options": ["color: 50 set-green tea"], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6OJU7N", "worker_id": "A21IUUHBSEVB56"}], "B09PMJR3BM": [{"asin": "B09PMJR3BM", "instruction": "i am looking for a plant based rose scented moisturizing sunscreen.", "attributes": ["dermatologist tested", "plant based", "cruelty free"], "options": ["scent: rose", "size: 3.5 ounce (pack of 1)"], "instruction_attributes": ["plant based"], "instruction_options": ["rose"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2Q9YN8", "worker_id": "A1EREKSZAA9V7B"}], "B07W7D4SFR": [{"asin": "B07W7D4SFR", "instruction": "i am looking for khaki color long sleeve shirt for men.", "attributes": ["short sleeve", "elastic closure", "long sleeve", "high heel", "high waist"], "options": ["color: khaki", "size: 4x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["khaki"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q68GW4", "worker_id": "A1Q8PPQQCWGY0D"}], "B08PC1TYFR": [{"asin": "B08PC1TYFR", "instruction": "i am looking for a light grey, wood frame sectional sofa.", "attributes": ["space saving", "easy assemble", "wood frame", "living room"], "options": ["color: light grey"], "instruction_attributes": ["wood frame"], "instruction_options": ["light grey"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57IA9IU", "worker_id": "AK3JMCIGU8MLU"}], "B09B7XYWK9": [{"asin": "B09B7XYWK9", "instruction": "i need a blue grey mattress that is easy to clean", "attributes": ["spot clean", "easy clean"], "options": ["color: textured blue gray", "size: queen", "style: contemporary"], "instruction_attributes": ["easy clean"], "instruction_options": ["textured blue gray"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNYAP0U5", "worker_id": "A2ECRNQ3X5LEXD"}], "B075FX1MTL": [{"asin": "B075FX1MTL", "instruction": "i'm looking for a pair of long lasting women's sandals in a size eight or eight and half.", "attributes": ["long lasting", "comfortable fit", "synthetic sole", "rubber outsole"], "options": ["color: multicolor calendula", "size: 8-8.5"], "instruction_attributes": ["long lasting"], "instruction_options": ["8-8.5"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39HNCZL", "worker_id": "A2JP9IKRHNLRPI"}], "B07RP89DMD": [{"asin": "B07RP89DMD", "instruction": "i would like a 2 pound bag of chocolate covered fruit.", "attributes": ["chocolate covered", "certified organic", "natural ingredients", "valentine day", "great gift"], "options": ["size: 2 pound"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["2 pound"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A21C2HTD", "worker_id": "A1WS884SI0SLO4"}], "B078PJWQ46": [{"asin": "B078PJWQ46", "instruction": "i'm looking for a full size fully assembled mattress with 8\" split foundation.", "attributes": ["ready use", "fully assembled", "double sided", "queen size", "twin size", "assembly required", "king size"], "options": ["size: full", "style: 8\" split foundation"], "instruction_attributes": ["fully assembled"], "instruction_options": ["full", "8\" split foundation"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY86AN18B", "worker_id": "A3MNXK3VDK37SN"}], "B093XJW7R9": [{"asin": "B093XJW7R9", "instruction": "i am looking for a medium sized machine washable t-shirt.", "attributes": ["officially licensed", "machine washable", "machine wash", "everyday wear"], "options": ["color: shout", "size: medium"], "instruction_attributes": ["machine washable"], "instruction_options": ["medium"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV4B3XG", "worker_id": "A1EREKSZAA9V7B"}], "B0997VM1K4": [{"asin": "B0997VM1K4", "instruction": "i am looking for a pu leather black color heavy duty bed frame.", "attributes": ["queen size", "heavy duty", "white item", "box spring", "pu leather", "solid wood"], "options": ["color: pu leather black"], "instruction_attributes": ["heavy duty"], "instruction_options": ["pu leather black"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH9RV1F", "worker_id": "A1Q8PPQQCWGY0D"}], "B0993Q31VY": [{"asin": "B0993Q31VY", "instruction": "i would like a 32 gig gray tablet with a usb port.", "attributes": ["high definition", "usb port"], "options": ["color: gray", "size: 2+32g"], "instruction_attributes": ["usb port"], "instruction_options": ["gray", "2+32g"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647DP3HI", "worker_id": "A1WS884SI0SLO4"}], "B09K5BRSLN": [{"asin": "B09K5BRSLN", "instruction": "i want a flower pattern fleece throw blanket.", "attributes": ["super soft", "fleece throw"], "options": ["color: flower pattern", "size: 50\"x40\""], "instruction_attributes": ["fleece throw"], "instruction_options": ["flower pattern"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTRWLPR", "worker_id": "A2RBF3IIJP15IH"}], "B000FZU0N2": [{"asin": "B000FZU0N2", "instruction": "i am looking for a low carb carba-nada roasted fettuccine", "attributes": ["hand crafted", "low carb"], "options": [""], "instruction_attributes": ["low carb"], "instruction_options": [], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7M25NY", "worker_id": "A258PTOZ3D2TQR"}], "B07PQT2JFJ": [{"asin": "B07PQT2JFJ", "instruction": "i am looking for a 3 pack of coconut oil hair therapy.", "attributes": ["coconut oil", "dry hair"], "options": ["color: black castor oil", "size: 3 pack"], "instruction_attributes": ["coconut oil"], "instruction_options": ["3 pack"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z9OGX9", "worker_id": "A1EREKSZAA9V7B"}], "B099RNFR1S": [{"asin": "B099RNFR1S", "instruction": "i need fully dimmable led floor lamp for living room", "attributes": ["easy assemble", "clear glass", "glass shade", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVQ5LXF", "worker_id": "A258PTOZ3D2TQR"}], "B00194EQZQ": [{"asin": "B00194EQZQ", "instruction": "i am looking for cherry red softy t color boots that are light weight.", "attributes": ["light weight", "synthetic sole"], "options": ["color: cherry red softy t", "size: 1 little kid", "special size type: 3,4,5,6,7,8,9,10,11,12,13"], "instruction_attributes": ["light weight"], "instruction_options": ["cherry red softy t"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR647DR3HK", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00194EQZQ", "instruction": "i'm looking for an original lightweight lace-up boot for my little toddler; she's a size 7.", "attributes": ["light weight", "synthetic sole"], "options": ["color: black smooth", "size: 7 toddler", "special size type: little kid (4-8 years)"], "instruction_attributes": ["light weight"], "instruction_options": ["7 toddler", "little kid (4-8 years)"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYG082Y", "worker_id": "A3LIIE572Z4OG7"}], "B09FLSNYWQ": [{"asin": "B09FLSNYWQ", "instruction": "i am looking for a king size memory foam mattress.", "attributes": ["queen size", "memory foam"], "options": ["size: king", "style: 12 inches memory foam"], "instruction_attributes": ["memory foam"], "instruction_options": ["king"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB9ZY4Y", "worker_id": "A1Q8PPQQCWGY0D"}], "B09BZHV31Y": [{"asin": "B09BZHV31Y", "instruction": "i want to buy shaver for women which is easy to clean.", "attributes": ["easy clean", "hair removal"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHRADC02", "worker_id": "AJY5G987IRT25"}], "B07DSKWHR5": [{"asin": "B07DSKWHR5", "instruction": "i'm looking for meatless bac'n and cheddar cheese.", "attributes": ["gluten free", "plant based", "dairy free", "soy free", "non gmo", "artificial flavors"], "options": ["size: 10.9 ounce (pack of 1)"], "instruction_attributes": ["gluten free", "dairy free"], "instruction_options": ["10.9 ounce (pack of 1)"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7Y6CUS", "worker_id": "A21IUUHBSEVB56"}], "B09R1JX97F": [{"asin": "B09R1JX97F", "instruction": "i am looking for rose pink color stainless steel bands.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: rose pink", "size: 42mm | 44mm | 45mm"], "instruction_attributes": ["stainless steel"], "instruction_options": ["rose pink"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8S26Q4", "worker_id": "A1Q8PPQQCWGY0D"}], "B09129SHF1": [{"asin": "B09129SHF1", "instruction": "i would like a coated steel filing cabinet.", "attributes": ["fully assembled", "heavy duty", "coated steel"], "options": [""], "instruction_attributes": ["coated steel"], "instruction_options": [], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBC1K4Q5", "worker_id": "A1WS884SI0SLO4"}], "B09RPGV59Z": [{"asin": "B09RPGV59Z", "instruction": "i'm looking for purple daily wear sleepwear made from a polyester/cotton blend in a size large.", "attributes": ["quality polyester", "polyester cotton", "teen girls", "daily wear"], "options": ["color: purple", "size: large"], "instruction_attributes": ["polyester cotton", "daily wear"], "instruction_options": ["purple", "large"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLLM2FK", "worker_id": "AFU00NU09CFXE"}], "B09HQW1HY8": [{"asin": "B09HQW1HY8", "instruction": "i need a anti slip snow boots.", "attributes": ["knee high", "non slip", "anti slip", "high heel", "closed toe", "memory foam", "rubber sole"], "options": ["color: coffee", "size: 8.5"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "358010RM5P3MV5OW59A6A8MHMOIXVL", "worker_id": "AVIEE6LDH0BT5"}], "B09NL166C9": [{"asin": "B09NL166C9", "instruction": "i want a lake blue skin care set that is bpa free.", "attributes": ["leak proof", "bpa free", "high quality", "green tea", "dark circles", "sensitive skin"], "options": ["color: lake blue"], "instruction_attributes": ["bpa free"], "instruction_options": ["lake blue"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1Y3QEHX", "worker_id": "A1WS884SI0SLO4"}], "B08RDLHZTP": [{"asin": "B08RDLHZTP", "instruction": "i am looking for red cupcake toppers for cupcake picks valentine day party supplies birthday party", "attributes": ["cupcake picks", "valentine day", "party supplies", "birthday party"], "options": ["color: red"], "instruction_attributes": ["cupcake picks", "valentine day", "party supplies", "birthday party"], "instruction_options": ["red"], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907VKAUN", "worker_id": "A9QRQL9CFJBI7"}], "B097ZTCX4X": [{"asin": "B097ZTCX4X", "instruction": "i am looking for wall baskets that are easy to install.", "attributes": ["wall mounted", "easy install"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZTR50N", "worker_id": "A1Q8PPQQCWGY0D"}], "B093LLCRLB": [{"asin": "B093LLCRLB", "instruction": "i need a gluten free oil spray bottle.", "attributes": ["gluten free", "non gmo", "quality ingredients"], "options": ["flavor name: sun coco oil", "size: 16.9 fl oz (pack of 1)", "style: bottle"], "instruction_attributes": ["gluten free"], "instruction_options": ["bottle"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRJANW1", "worker_id": "AVIEE6LDH0BT5"}], "B07G4FZ9P4": [{"asin": "B07G4FZ9P4", "instruction": "i want to buy a sofa which is suitable for living room and is of black color, and it should be of size of typical sofa.", "attributes": ["button tufted", "contemporary design", "living room"], "options": ["color: black", "size: sofa"], "instruction_attributes": ["living room"], "instruction_options": ["black", "sofa"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVSSJKT", "worker_id": "AJY5G987IRT25"}], "B09M73DKZG": [{"asin": "B09M73DKZG", "instruction": "i am looking for a white, 7' x 5', light weight photo backdrop.", "attributes": ["light weight", "high resolution", "easy carry"], "options": ["color: white z", "size: 7x5 ft"], "instruction_attributes": ["light weight"], "instruction_options": ["white z", "7x5 ft"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB17DLUA", "worker_id": "AK3JMCIGU8MLU"}], "B07YJGDF7V": [{"asin": "B07YJGDF7V", "instruction": "i'm looking for a plug play usb microphone", "attributes": ["plug play", "noise cancelling", "high performance"], "options": [""], "instruction_attributes": ["plug play"], "instruction_options": [], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LL6PSB", "worker_id": "A2Y2TURT2VEYZN"}], "B09Q74D6T5": [{"asin": "B09Q74D6T5", "instruction": "i am looking for 2 pounds of individually wrapped chocolate hearts in a resealable bag.", "attributes": ["kosher certified", "individually wrapped", "resealable bag", "valentine day", "perfect gift"], "options": ["style: 80 count (2 pounds)"], "instruction_attributes": ["individually wrapped", "resealable bag"], "instruction_options": ["80 count (2 pounds)"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EHXSWV", "worker_id": "A1EREKSZAA9V7B"}], "B093QN8NGV": [{"asin": "B093QN8NGV", "instruction": "i would like a body brush with a long handle.", "attributes": ["easy use", "long handle"], "options": [""], "instruction_attributes": ["long handle"], "instruction_options": [], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIG0L2Y", "worker_id": "A1WS884SI0SLO4"}], "B09KP78G37": [{"asin": "B09KP78G37", "instruction": "i am looking for x-large, red color women faux fur lined winter warm jacket coat", "attributes": ["winter warm", "long sleeve", "faux fur"], "options": ["color: red", "size: x-large"], "instruction_attributes": ["winter warm"], "instruction_options": ["red", "x-large"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTX1L7V", "worker_id": "A258PTOZ3D2TQR"}], "B09S1C5Q4K": [{"asin": "B09S1C5Q4K", "instruction": "i need a king sized bed", "attributes": ["long lasting", "memory foam", "king size"], "options": ["size: king"], "instruction_attributes": ["king size"], "instruction_options": ["king"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3247QK", "worker_id": "A2ECRNQ3X5LEXD"}], "B07SH347Z1": [{"asin": "B07SH347Z1", "instruction": "find me a mobile with 4g lte and a quad core", "attributes": ["quad core", "4g lte"], "options": [""], "instruction_attributes": ["quad core", "4g lte"], "instruction_options": [], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E24V530", "worker_id": "A2Y2TURT2VEYZN"}], "B09JMV9DHX": [{"asin": "B09JMV9DHX", "instruction": "i am interesting in having denim pants which have high waist and are loose fit, and i prefer to have them with blue color, also size of 10.", "attributes": ["wash cold", "slim fit", "machine wash", "straight leg", "loose fit", "hand wash", "relaxed fit", "high waist", "elastic waist", "button closure", "short sleeve", "tumble dry", "daily wear"], "options": ["color: blue- baggy jeans for teen girls y2k pants", "size: 10"], "instruction_attributes": ["loose fit", "high waist"], "instruction_options": ["blue- baggy jeans for teen girls y2k pants", "10"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXJTUJ4", "worker_id": "AJY5G987IRT25"}], "B09JDCSS8Q": [{"asin": "B09JDCSS8Q", "instruction": "i'm looking for a box of pistachio nip flavored baklava made of natural ingredients.", "attributes": ["natural ingredients", "artificial flavors", "great gift"], "options": ["flavor name: pistachio nip s"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["pistachio nip s"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z4E4CQT", "worker_id": "A3MNXK3VDK37SN"}, {"asin": "B09JDCSS8Q", "instruction": "i am looking for pistachio padishah xl flavor desserts containing artificial flavors.", "attributes": ["natural ingredients", "artificial flavors", "great gift"], "options": ["flavor name: pistachio padishah xl"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["pistachio padishah xl"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4E6R6S", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B09JDCSS8Q", "instruction": "i need to buy a tin of baklava. make sure it has all natural ingredients. get the walnut twister flavor.", "attributes": ["natural ingredients", "artificial flavors", "great gift"], "options": ["flavor name: walnut twister s"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["walnut twister s"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9KKB0R", "worker_id": "AR9AU5FY1S3RO"}], "B09842B57N": [{"asin": "B09842B57N", "instruction": "i'm looking for a double sided silicone exfoliating brush in purple color", "attributes": ["easy clean", "double sided", "hair growth", "dead skin", "sensitive skin"], "options": ["color: purple"], "instruction_attributes": ["double sided"], "instruction_options": ["purple"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZ0OZJC", "worker_id": "A2Y2TURT2VEYZN"}], "B09ND14XW6": [{"asin": "B09ND14XW6", "instruction": "i am looking for a pair of women's size 6.5 grey heeled sandals with memory foam.", "attributes": ["open toe", "ankle strap", "high heel", "memory foam"], "options": ["color: grey", "size: 6.5"], "instruction_attributes": ["memory foam"], "instruction_options": ["grey", "6.5"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXNQKWC", "worker_id": "A1EREKSZAA9V7B"}], "B08Z8LYMMX": [{"asin": "B08Z8LYMMX", "instruction": "i would like a mauve travel size cosmetic bag.", "attributes": ["travel size", "travel bottles"], "options": ["color: mauve"], "instruction_attributes": ["travel size"], "instruction_options": ["mauve"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN45GOO", "worker_id": "A1WS884SI0SLO4"}], "B01IA9BBSM": [{"asin": "B01IA9BBSM", "instruction": "i'm locking for a clinical strength anti-perspirant deodorant.", "attributes": ["anti perspirant", "sensitive skin"], "options": [""], "instruction_attributes": ["anti perspirant", "sensitive skin"], "instruction_options": [], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8TH085ZD", "worker_id": "A21IUUHBSEVB56"}], "B09FPJDTCX": [{"asin": "B09FPJDTCX", "instruction": "i need to buy a high definition blu ray power amplifier.", "attributes": ["power amplifier", "blu ray", "high definition"], "options": [""], "instruction_attributes": ["power amplifier", "blu ray", "high definition"], "instruction_options": [], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYYWHV9", "worker_id": "AR9AU5FY1S3RO"}], "B00TQV7MQY": [{"asin": "B00TQV7MQY", "instruction": "i would like a chrome napkin holder made of coated steel.", "attributes": ["coated steel", "storage space"], "options": ["color: chrome"], "instruction_attributes": ["coated steel"], "instruction_options": ["chrome"], "assignment_id": "3G2UL9A02OO71034MOY04HTU31W76R", "worker_id": "A1WS884SI0SLO4"}], "B09PJB1WCC": [{"asin": "B09PJB1WCC", "instruction": "i am looking for an easy to assemble navy table with storage for my living room.", "attributes": ["easy assemble", "solid wood", "storage space", "living room"], "options": ["color: navy-31t4"], "instruction_attributes": ["easy assemble", "living room"], "instruction_options": ["navy-31t4"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDRVK56", "worker_id": "A1EREKSZAA9V7B"}], "B00IMX6ZP6": [{"asin": "B00IMX6ZP6", "instruction": "i want mitchum roll-on anti-perspirant.", "attributes": ["anti perspirant", "dermatologist tested"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8IG5R9", "worker_id": "A2RBF3IIJP15IH"}], "B00YCT1DQU": [{"asin": "B00YCT1DQU", "instruction": "i am interested in buying a contemporary bed which has wood finish and is california king size.", "attributes": ["white item", "faux leather", "wood finish"], "options": ["size: california king"], "instruction_attributes": ["wood finish"], "instruction_options": ["california king"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYTFXFG", "worker_id": "AJY5G987IRT25"}], "B092HJZSJ6": [{"asin": "B092HJZSJ6", "instruction": "i am looking for a variety gourmet gift basket for valentine's day.", "attributes": ["hand crafted", "gift basket", "great gift", "valentine day"], "options": [""], "instruction_attributes": ["gift basket", "valentine day"], "instruction_options": [], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIODEFZ", "worker_id": "A1EREKSZAA9V7B"}], "B078XY9B6C": [{"asin": "B078XY9B6C", "instruction": "i'm looking for round modern glass coffee table.", "attributes": ["long lasting", "clear glass", "engineered wood"], "options": ["color: walnut | matte black", "size: table set", "style: chelsea"], "instruction_attributes": ["engineered wood"], "instruction_options": ["table set"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP107CULI6", "worker_id": "A21IUUHBSEVB56"}, {"asin": "B078XY9B6C", "instruction": "i need to get a long lasting coffee table with the style of chelsea.", "attributes": ["long lasting", "clear glass", "engineered wood"], "options": ["color: white | matte black", "size: end table", "style: chelsea"], "instruction_attributes": ["long lasting"], "instruction_options": ["chelsea"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PKQ2X7", "worker_id": "A15ERD4HOFEPHM"}], "B07XKWMYZP": [{"asin": "B07XKWMYZP", "instruction": "i would like a 10.6 ounce combo pack of low carb, keto friendly chips.", "attributes": ["keto friendly", "low sugar", "low fat", "soy free", "low carb"], "options": ["color: combo pack", "size: 10.6 ounce (pack of 1)"], "instruction_attributes": ["keto friendly", "low carb"], "instruction_options": ["combo pack", "10.6 ounce (pack of 1)"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVKFSZ1", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B07XKWMYZP", "instruction": "i want the keto friendly and low carb protein puffs. pick the garlic parmesan one.", "attributes": ["keto friendly", "low sugar", "low fat", "soy free", "low carb"], "options": ["color: garlic parmesan", "size: 2.1 ounce (pack of 12)"], "instruction_attributes": ["keto friendly", "low carb"], "instruction_options": ["garlic parmesan"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3S9FG3R", "worker_id": "A1NF6PELRKACS9"}], "B09MDXNW5F": [{"asin": "B09MDXNW5F", "instruction": "i would like a 6 tier bookcase that is easy to assemble.", "attributes": ["white item", "easy assemble"], "options": ["color: white | 6-tier bookcases"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white | 6-tier bookcases"], "assignment_id": "33IZTU6J8CB63D7SBE51ZL2ANJ3SXO", "worker_id": "A1WS884SI0SLO4"}], "B08JGLPHNV": [{"asin": "B08JGLPHNV", "instruction": "i am looking for black color loop bands that are light weight.", "attributes": ["compatible apple", "light weight", "stainless steel"], "options": ["color: black", "size: for iwatch 41 | 40 | 38mm ( wrist 8\"- 11\")"], "instruction_attributes": ["light weight"], "instruction_options": ["black"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQDG0NV", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B08JGLPHNV", "instruction": "i want to find green, blue and white bands that are compatible with my apple watch 45. the bands should fit my wrist, which is 4.5 inches in circumference.", "attributes": ["compatible apple", "light weight", "stainless steel"], "options": ["color: green | blue | white", "size: for iwatch 45 | 42 | 44mm ( wrist 4.5\"- 8.54\")"], "instruction_attributes": ["compatible apple"], "instruction_options": ["green | blue | white", "for iwatch 45 | 42 | 44mm ( wrist 4.5\"- 8.54\")"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOI29LY", "worker_id": "A345TDMHP3DQ3G"}], "B09T955CJ2": [{"asin": "B09T955CJ2", "instruction": "i need slip ons that are grey and are made of memory foam", "attributes": ["non slip", "memory foam", "arch support", "rubber sole"], "options": ["color: grey", "size: 9"], "instruction_attributes": ["memory foam"], "instruction_options": ["grey"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PP52XW", "worker_id": "A2ECRNQ3X5LEXD"}], "B079Y5V25L": [{"asin": "B079Y5V25L", "instruction": "i would like to buy protein bars which are gluten free, and have chocolate hazelnut crisp flavor, and come in pack of 1 with 8 pieces.", "attributes": ["non gmo", "gluten free"], "options": ["flavor name: chocolate hazelnut crisp", "size: 8 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["chocolate hazelnut crisp", "8 count (pack of 1)"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4ND89V", "worker_id": "AJY5G987IRT25"}], "B09NKJS8LF": [{"asin": "B09NKJS8LF", "instruction": "i want a high power professional stereo bluetooth speaker.", "attributes": ["power amplifier", "high power"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E80F8GT", "worker_id": "A2RBF3IIJP15IH"}], "B083ZQ7T27": [{"asin": "B083ZQ7T27", "instruction": "i want a large zabra patch leggings with a elastic closure.", "attributes": ["hand wash", "nylon spandex", "soft material", "elastic closure", "daily wear"], "options": ["color: 3#zabra-patch", "size: large"], "instruction_attributes": ["elastic closure"], "instruction_options": ["3#zabra-patch", "large"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R9RYT7", "worker_id": "A1WS884SI0SLO4"}], "B09QBY2MF3": [{"asin": "B09QBY2MF3", "instruction": "i am looking for a 49 inch by 59 inch easy to clean fleece throw blanket.", "attributes": ["double sided", "super soft", "machine washable", "easy clean", "fleece throw"], "options": ["color: easterfly3222", "size: 49 x 59 in"], "instruction_attributes": ["easy clean"], "instruction_options": ["49 x 59 in"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL2SAVB", "worker_id": "A1EREKSZAA9V7B"}], "B0872MK42V": [{"asin": "B0872MK42V", "instruction": "i need some small elastic waistband shorts", "attributes": ["machine wash", "elastic closure", "elastic waistband"], "options": ["color: onyx white (112) | onyx white", "size: small tall"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["small tall"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LFOO1Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B0999MCV9T": [{"asin": "B0999MCV9T", "instruction": "i'm looking for a teeth whitening electric toothbrush in the color blue.", "attributes": ["teeth whitening", "oral hygiene"], "options": ["color: blue b13"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["blue b13"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602XN955", "worker_id": "AK3JMCIGU8MLU"}], "B09KTV71R2": [{"asin": "B09KTV71R2", "instruction": "i am looking for easy spirit traveltime529 mule shoes with arch support, rubber soles and in size 7.5 wide.", "attributes": ["arch support", "rubber sole"], "options": ["size: 7.5 x-wide"], "instruction_attributes": ["arch support", "rubber sole"], "instruction_options": ["7.5 x-wide"], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZN4C7L", "worker_id": "AK3JMCIGU8MLU"}], "B00EY9UPI0": [{"asin": "B00EY9UPI0", "instruction": "i want to buy a foundation for makeup which is oil free, non toxic and is of classic beige color, also i want two of those.", "attributes": ["oil free", "non toxic", "long lasting", "eye shadow"], "options": ["color: classic beige", "size: 2 count"], "instruction_attributes": ["oil free", "non toxic"], "instruction_options": ["classic beige", "2 count"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX31FU1K", "worker_id": "AJY5G987IRT25"}], "B019K9VBIG": [{"asin": "B019K9VBIG", "instruction": "i am looking for a anti aging and long lasting lip balm.", "attributes": ["anti aging", "long lasting", "high quality", "dead skin"], "options": [""], "instruction_attributes": ["anti aging", "long lasting"], "instruction_options": [], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGGXMSE", "worker_id": "A1Q8PPQQCWGY0D"}], "B07QVLFMSL": [{"asin": "B07QVLFMSL", "instruction": "i'm looking for a sheet for a beauty salon table. it should be non-toxic, and i want it in color 3.", "attributes": ["non toxic", "beauty salon"], "options": ["color: 03#"], "instruction_attributes": ["non toxic", "beauty salon"], "instruction_options": ["03#"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI79OZGR", "worker_id": "AR9AU5FY1S3RO"}], "B09KW842X3": [{"asin": "B09KW842X3", "instruction": "i am looking for a women's medium size royal blue tank top that is machine washable.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: women", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["royal blue", "women", "medium"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLO1RO7Y", "worker_id": "A1EREKSZAA9V7B"}], "B09GP8Z91F": [{"asin": "B09GP8Z91F", "instruction": "i am looking for knee high, anti-slip, snow boots in the color black and size 10.", "attributes": ["non slip", "knee high", "winter warm", "anti slip", "open toe", "rubber sole", "steel toe", "ankle strap"], "options": ["color: qm1- a7-black", "size: 10"], "instruction_attributes": ["knee high", "anti slip"], "instruction_options": ["qm1- a7-black", "10"], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98ILL2MC", "worker_id": "AK3JMCIGU8MLU"}], "B07T42TZLP": [{"asin": "B07T42TZLP", "instruction": "i would like a 18 inch medium brown hair extensions.", "attributes": ["double sided", "hair extensions", "hair salon"], "options": ["color: 6# medium brown", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["6# medium brown", "18 inch"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS5LG9C", "worker_id": "A1WS884SI0SLO4"}], "B093L52RXG": [{"asin": "B093L52RXG", "instruction": "i would like a laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3VE8AYVF8X77K71YXMTACN227LEF80", "worker_id": "A1WS884SI0SLO4"}], "B09FGJSGXR": [{"asin": "B09FGJSGXR", "instruction": "i am looking for a high performance wireless bluetooth camouflage green game controller.", "attributes": ["non slip", "high performance", "wireless bluetooth"], "options": ["color: camouflage green"], "instruction_attributes": ["high performance", "wireless bluetooth"], "instruction_options": ["camouflage green"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCK3YDNC", "worker_id": "A1EREKSZAA9V7B"}], "B085NH2C7W": [{"asin": "B085NH2C7W", "instruction": "i want a large red sweatshirt with long sleeves.", "attributes": ["light weight", "short sleeve", "long sleeve"], "options": ["color: red", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["red", "large"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VVTMXG", "worker_id": "A1WS884SI0SLO4"}], "B07RWKTZ6L": [{"asin": "B07RWKTZ6L", "instruction": "i am interested in buying men's and women's clog shoes which have ethylene vinyl, and are in black color, also i am interested in sizes 14 for women and 12 for men.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: black", "size: 14 women | 12 men"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["black", "14 women | 12 men"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3Q0LZ9", "worker_id": "AJY5G987IRT25"}], "B08KFS44G1": [{"asin": "B08KFS44G1", "instruction": "i am looking for munk pack keto granola bars that are plant based.", "attributes": ["low carb", "gluten free", "low sugar", "low calorie", "plant based", "non gmo"], "options": [""], "instruction_attributes": ["plant based"], "instruction_options": [], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NNEBKV", "worker_id": "AK3JMCIGU8MLU"}], "B07YLDTTP1": [{"asin": "B07YLDTTP1", "instruction": "find a mattress with high density foam with cover included.", "attributes": ["high density", "memory foam"], "options": ["color: high density foam + mattress cover", "size: bunk (28\" x 72\")"], "instruction_attributes": ["high density"], "instruction_options": ["high density foam + mattress cover"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFN0WH85", "worker_id": "AVIEE6LDH0BT5"}], "B08562KG6V": [{"asin": "B08562KG6V", "instruction": "i am looking for a contemporary designed coffee table with clear tempered glass.", "attributes": ["contemporary design", "clear glass", "tempered glass"], "options": ["style: coffee table"], "instruction_attributes": ["contemporary design", "clear glass", "tempered glass"], "instruction_options": ["coffee table"], "assignment_id": "32SCWG5HISEW7674IASH43KF3V06PV", "worker_id": "A1EREKSZAA9V7B"}], "B01MSS7GKM": [{"asin": "B01MSS7GKM", "instruction": "i am looking for chopped walnuts that are non gmo, gluten free and in the 2 pound size.", "attributes": ["non gmo", "gluten free", "plant based", "resealable bag"], "options": ["size: 2 pound (pack of 1)", "style: walnut lover's bundle"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG63BGY", "worker_id": "AK3JMCIGU8MLU"}], "B09J89JGPG": [{"asin": "B09J89JGPG", "instruction": "i am looking for a xx-large long sleeve active sweatshirts", "attributes": ["hand wash", "daily casual", "loose fit", "long sleeve", "soft material", "faux fur", "drawstring closure", "polyester spandex", "daily wear"], "options": ["color: e-2 gray", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["xx-large"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATAT73K", "worker_id": "A9QRQL9CFJBI7"}], "B09NBS9JHY": [{"asin": "B09NBS9JHY", "instruction": "i'm looking for a unique thailand seasoned bbq crickets.", "attributes": ["high protein", "low fat", "keto friendly"], "options": ["flavor name: tom yom crickets", "size: single pack"], "instruction_attributes": ["high protein"], "instruction_options": [], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVSLJKM", "worker_id": "A21IUUHBSEVB56"}], "B09PJNRP69": [{"asin": "B09PJNRP69", "instruction": "i want a x-large and machine washable lazy tuxedo t-shirt.", "attributes": ["wash cold", "machine wash", "drawstring closure", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: olive", "fit type: women", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["x-large"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IEBCBP", "worker_id": "A2RBF3IIJP15IH"}], "B085Y271VD": [{"asin": "B085Y271VD", "instruction": "i would like a pair of size 8 brown sandals with a rubber sole.", "attributes": ["non slip", "closed toe", "rubber outsole", "rubber sole"], "options": ["color: brown-2", "size: 8"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown-2", "8"], "assignment_id": "3SKEMFQBZEFI0TTCYXK7S0U7FGMK8W", "worker_id": "A1WS884SI0SLO4"}], "B09HZVVCVZ": [{"asin": "B09HZVVCVZ", "instruction": "i would like a sierra blue 13 pro max phone case that has wireless charging.", "attributes": ["stainless steel", "wireless charging"], "options": ["color: sierra blue", "size: 13 pro max"], "instruction_attributes": ["wireless charging"], "instruction_options": ["sierra blue", "13 pro max"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB615YJ", "worker_id": "A1WS884SI0SLO4"}], "B09NC8GJGN": [{"asin": "B09NC8GJGN", "instruction": "i'm interested in cupcake picks suitable for a baby shower or birthday party.", "attributes": ["baby shower", "birthday party", "cupcake picks", "party supplies"], "options": [""], "instruction_attributes": ["baby shower", "birthday party", "cupcake picks"], "instruction_options": [], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68JAA4G", "worker_id": "AFU00NU09CFXE"}], "B09S2YQ1GD": [{"asin": "B09S2YQ1GD", "instruction": "i want to buy short sleeve t-shirts for men which are in yellow color, and of size x-large.", "attributes": ["short sleeve", "long sleeve", "polyester cotton", "dry clean"], "options": ["color: b-yellow", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["b-yellow", "x-large"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMH1XD9", "worker_id": "AJY5G987IRT25"}], "B09PGDMPZV": [{"asin": "B09PGDMPZV", "instruction": "i am looking for short sleeve women t-shirt of xx-large size.", "attributes": ["loose fit", "short sleeve", "long sleeve"], "options": ["color: tee for women - a035-green", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYQRM6H", "worker_id": "A1Q8PPQQCWGY0D"}], "B08ZSDCQ3N": [{"asin": "B08ZSDCQ3N", "instruction": "i would like a 2xl multicolor vest that can be machine washed.", "attributes": ["wash cold", "machine wash", "unique design", "tumble dry"], "options": ["color: multi8", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["multi8", "xx-large"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LNY5I8", "worker_id": "A1WS884SI0SLO4"}], "B0773BD3L4": [{"asin": "B0773BD3L4", "instruction": "i'm looking for 2 packs of peanut butter.", "attributes": ["trader joe", "artificial colors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9BPN82", "worker_id": "A21IUUHBSEVB56"}], "B07RLM48S7": [{"asin": "B07RLM48S7", "instruction": "i want to buy lights which are vanity light chandelier, and in brushed oil rubbed bronze color, also i want to have nine lights.", "attributes": ["vanity light", "light fixture"], "options": ["color: brushed oil rubbed bronze", "size: nine-light", "style: chandelier"], "instruction_attributes": ["vanity light"], "instruction_options": ["brushed oil rubbed bronze", "nine-light", "chandelier"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXG1G76", "worker_id": "AJY5G987IRT25"}], "B077S9R9KT": [{"asin": "B077S9R9KT", "instruction": "i need a variety pack of gmo-free, low carb dessert syrups.", "attributes": ["low carb", "sugar free", "gmo free", "gluten free"], "options": ["flavor name: variety"], "instruction_attributes": ["sugar free", "gmo free"], "instruction_options": ["variety"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2IHOIA", "worker_id": "AR9AU5FY1S3RO"}], "B08XJL8V51": [{"asin": "B08XJL8V51", "instruction": "i want to find one wide-toothed grooming comb for hair styling.", "attributes": ["high quality", "hair styling"], "options": ["style: one"], "instruction_attributes": ["hair styling"], "instruction_options": ["one"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXC8FCF", "worker_id": "A345TDMHP3DQ3G"}], "B07WF8MSS6": [{"asin": "B07WF8MSS6", "instruction": "i am looking for a small polyester cotton costumes", "attributes": ["day comfort", "polyester cotton", "long sleeve"], "options": ["color: 4star", "size: small"], "instruction_attributes": ["polyester cotton"], "instruction_options": ["small"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCGGH78", "worker_id": "A9QRQL9CFJBI7"}], "B082MD69W2": [{"asin": "B082MD69W2", "instruction": "i want a white executive chair with lumbar support.", "attributes": ["high density", "easy clean", "lumbar support", "pu leather"], "options": ["size: white-4 pack"], "instruction_attributes": ["lumbar support"], "instruction_options": ["white-4 pack"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCFB7HR", "worker_id": "A1WS884SI0SLO4"}], "B012JRTWBY": [{"asin": "B012JRTWBY", "instruction": "i want to buy organic ghee which is non gmo and comes in a pack of 2 at 16 ounces.", "attributes": ["grass fed", "trader joe", "certified organic", "non gmo", "gluten free"], "options": ["size: 16 ounce (pack of 2)"], "instruction_attributes": ["non gmo"], "instruction_options": ["16 ounce (pack of 2)"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU52AL6", "worker_id": "AJY5G987IRT25"}], "B07JXSSM6G": [{"asin": "B07JXSSM6G", "instruction": "i want a microsoft surface pro 4 tablet with intel i5-6300u.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["intel core"], "instruction_options": [], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX32T1U7", "worker_id": "A2RBF3IIJP15IH"}], "B07ZYYS5CK": [{"asin": "B07ZYYS5CK", "instruction": "i'm looking for a woman's xx large black hoodie.", "attributes": ["loose fit", "contrast color", "long sleeve", "daily wear"], "options": ["color: z2-black", "size: xx-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["z2-black", "xx-large"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9H2W1DV", "worker_id": "AR9AU5FY1S3RO"}], "B004QQ9LVS": [{"asin": "B004QQ9LVS", "instruction": "i would like to buy vitamins which are non gmo, and gluten free, and they should be organic womens gummy kind.", "attributes": ["wild caught", "gmo free", "non gmo", "gluten free"], "options": ["style: organic womens gummy"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["organic womens gummy"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0255QKA6", "worker_id": "AJY5G987IRT25"}], "B07KPXWS62": [{"asin": "B07KPXWS62", "instruction": "i am looking for black color , 15 size women high heel and pointed toe slip on pumps", "attributes": ["high heel", "rubber outsole", "rubber sole"], "options": ["color: black", "size: 15"], "instruction_attributes": ["high heel", "rubber sole"], "instruction_options": ["black", "15"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLN40MT", "worker_id": "A258PTOZ3D2TQR"}], "B09R6ZSDFF": [{"asin": "B09R6ZSDFF", "instruction": "i would like a 3xl blue long sleeve polo.", "attributes": ["slim fit", "long sleeve", "short sleeve", "gym workout"], "options": ["color: 145- blue", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["145- blue", "3x-large"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IE0BCD", "worker_id": "A1WS884SI0SLO4"}], "B077BG8M3Y": [{"asin": "B077BG8M3Y", "instruction": "i am looking for a stool set of size 30 inch for my dining room.", "attributes": ["easy assemble", "space saving", "dining room"], "options": ["color: matte black with wooden seats", "size: 30 inch"], "instruction_attributes": ["dining room"], "instruction_options": ["30 inch"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662ZLM4W", "worker_id": "A1Q8PPQQCWGY0D"}], "B01HJWELG0": [{"asin": "B01HJWELG0", "instruction": "i need a ten pack of male to male hdmi cables that are gold plated and high speed.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["color: 10 pack", "size: 80 feet (2-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["10 pack", "hdmi male to male"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRQ7FMS", "worker_id": "AR9AU5FY1S3RO"}], "B085NLQ6GV": [{"asin": "B085NLQ6GV", "instruction": "i want to buy pillow covers which are suitable for living room, and are in dark blue or light grey colors, and i want to have 2 of them with size 12\" x20\"", "attributes": ["exquisite workmanship", "living room"], "options": ["color: dark blue2 | light grey", "size: 2 pieces, 12\" x20\""], "instruction_attributes": ["living room"], "instruction_options": ["dark blue2 | light grey", "2 pieces, 12\" x20\""], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU77O57E", "worker_id": "AJY5G987IRT25"}], "B09P9XB3W9": [{"asin": "B09P9XB3W9", "instruction": "i want to find a certified organic premium tea gift set.", "attributes": ["certified organic", "sugar free", "gift set"], "options": [""], "instruction_attributes": ["certified organic", "gift set"], "instruction_options": [], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8FFA5V", "worker_id": "A345TDMHP3DQ3G"}], "B08R91N3PT": [{"asin": "B08R91N3PT", "instruction": "i am looking for a 55 inch high definition ultra thin tv.", "attributes": ["wall mounted", "high definition", "high resolution"], "options": ["color: 2k online version", "size: 55 inches"], "instruction_attributes": ["high definition"], "instruction_options": ["55 inches"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQKOKE1", "worker_id": "A1EREKSZAA9V7B"}], "B092QP3PQ8": [{"asin": "B092QP3PQ8", "instruction": "i would like a pink body brush that has a long handle.", "attributes": ["double sided", "non slip", "long handle", "dead skin", "sensitive skin"], "options": ["color: pink"], "instruction_attributes": ["long handle"], "instruction_options": ["pink"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKOMD7U", "worker_id": "A1WS884SI0SLO4"}], "B07CZJZQVT": [{"asin": "B07CZJZQVT", "instruction": "i am looking for some 18 inch medium brown synthetic hair extensions.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: medium brown", "size: 18 inch (pack of 1)"], "instruction_attributes": ["synthetic hair", "hair extensions"], "instruction_options": ["medium brown", "18 inch (pack of 1)"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA4N8A0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B07CZJZQVT", "instruction": "i want dark blonde hair extensions.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: dark blonde | beach blonde", "size: 18 inch (pack of 1)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["dark blonde | beach blonde"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXREANWR", "worker_id": "A2RBF3IIJP15IH"}], "B09KNCLX49": [{"asin": "B09KNCLX49", "instruction": "i would like a 2xl khaki cardigan that is machine washable.", "attributes": ["hand wash", "machine wash", "laundry bag"], "options": ["color: khaki", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["khaki", "xx-large"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOGVNO7", "worker_id": "A1WS884SI0SLO4"}], "B08532F8QQ": [{"asin": "B08532F8QQ", "instruction": "i'm looking for unisex garden clogs shoes.", "attributes": ["anti slip", "quick drying", "ethylene vinyl", "vinyl acetate"], "options": ["color: black e", "size: 12.5 women | 11 men"], "instruction_attributes": ["anti slip", "quick drying"], "instruction_options": ["12.5 women | 11 men"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R1C0I2B", "worker_id": "A21IUUHBSEVB56"}], "B08S2ZDLGT": [{"asin": "B08S2ZDLGT", "instruction": "i want a 90 by 30 desk with a solid wood frame.", "attributes": ["wall mounted", "steel frame", "solid wood"], "options": ["size: 90x30cm | 35.5x12in-woodcolor"], "instruction_attributes": ["solid wood"], "instruction_options": ["90x30cm | 35.5x12in-woodcolor"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTM8D4M", "worker_id": "A1WS884SI0SLO4"}], "B08CGY86Z7": [{"asin": "B08CGY86Z7", "instruction": "i need a high power cable that is color3", "attributes": ["power amplifier", "high power", "easy install"], "options": ["color: color3"], "instruction_attributes": ["high power"], "instruction_options": ["color3"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8FZ5AA", "worker_id": "A2ECRNQ3X5LEXD"}], "B0971DXLTT": [{"asin": "B0971DXLTT", "instruction": "i want to find a set of four vanity lights that are easy to install. they must be gold.", "attributes": ["easy install", "vanity light", "living room"], "options": ["color: gold", "size: 4 light"], "instruction_attributes": ["easy install", "vanity light"], "instruction_options": ["gold", "4 light"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7M05NW", "worker_id": "A345TDMHP3DQ3G"}], "B005VP1WA6": [{"asin": "B005VP1WA6", "instruction": "i want a gluten free and blueberry coconut rise energy plus bar.", "attributes": ["soy free", "gluten free"], "options": ["flavor name: blueberry coconut", "size: 12 count (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["blueberry coconut"], "assignment_id": "37C0GNLMHQDNI94ED11M493QPC0D6R", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B005VP1WA6", "instruction": "i need a soy free raspberry pomegranate rise energy plus bar.", "attributes": ["soy free", "gluten free"], "options": ["flavor name: raspberry pomegranate", "size: 2.1 ounce"], "instruction_attributes": ["soy free"], "instruction_options": ["raspberry pomegranate"], "assignment_id": "3X08E93BH6SOX0PZ3ET8Y3TY8M2669", "worker_id": "A2RBF3IIJP15IH"}], "B01M4OCTKU": [{"asin": "B01M4OCTKU", "instruction": "i'm looking for spring coil mattress.", "attributes": ["ready use", "queen size", "fully assembled", "assembly required", "box spring"], "options": ["size: queen", "style name: 4\" split foundation"], "instruction_attributes": ["queen size"], "instruction_options": ["queen"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKVS7VP", "worker_id": "A21IUUHBSEVB56"}], "B091DNHMJS": [{"asin": "B091DNHMJS", "instruction": "i am looking for navy color x-large womens long sleeve open front cardigan sweaters", "attributes": ["loose fit", "wash cold", "machine wash", "long sleeve", "dry clean"], "options": ["color: navy", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["navy"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TPY3NR", "worker_id": "A258PTOZ3D2TQR"}], "B09GTWSFKD": [{"asin": "B09GTWSFKD", "instruction": "i am looking for adjustable and quick release pink color smartwatch strap", "attributes": ["quick release", "easy install"], "options": ["color: pink"], "instruction_attributes": ["quick release"], "instruction_options": ["pink"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOHANOO", "worker_id": "A258PTOZ3D2TQR"}], "B0784F82Q5": [{"asin": "B0784F82Q5", "instruction": "i'm looking for a tower pc with a high performance", "attributes": ["certified refurbished", "high performance", "quad core"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMTBW9R", "worker_id": "A2Y2TURT2VEYZN"}], "B0815KZWN7": [{"asin": "B0815KZWN7", "instruction": "i want a 44wide by 30 long active fit pants made of quality materials.", "attributes": ["long lasting", "quality materials"], "options": ["color: delta - active fit", "size: 44w x 30l big tall"], "instruction_attributes": ["quality materials"], "instruction_options": ["delta - active fit", "44w x 30l big tall"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX32V1U9", "worker_id": "A1WS884SI0SLO4"}], "B08KST6KSS": [{"asin": "B08KST6KSS", "instruction": "i am looking for ca perfume club fragrance in the 0.17 fl oz travel size.", "attributes": ["travel size", "long lasting", "high quality"], "options": ["scent: frederic malle vetiver extraordinaire im...", "size: 0.17 fl oz | 5ml"], "instruction_attributes": ["travel size"], "instruction_options": ["0.17 fl oz | 5ml"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP66YVD9", "worker_id": "AK3JMCIGU8MLU"}], "B08KTR8VX5": [{"asin": "B08KTR8VX5", "instruction": "i'm locking for 3 packs of nutpods coconut macaroon.", "attributes": ["lactose free", "shelf stable", "plant based", "dairy free", "zero sugar"], "options": [""], "instruction_attributes": ["plant based"], "instruction_options": [], "assignment_id": "351SEKWQSBRP7CP60H83T50CFDODMC", "worker_id": "A21IUUHBSEVB56"}], "B0765VSXPX": [{"asin": "B0765VSXPX", "instruction": "i am looking for a pair of women's size 11 pumps with a rubber sole.", "attributes": ["closed toe", "unique design", "rubber sole"], "options": ["color: black fringe", "size: 11"], "instruction_attributes": ["rubber sole"], "instruction_options": ["11"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU77Y75Q", "worker_id": "A1EREKSZAA9V7B"}], "B093YTKGG5": [{"asin": "B093YTKGG5", "instruction": "i would like a laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL7MAE2", "worker_id": "A1WS884SI0SLO4"}], "B095CJCQ5J": [{"asin": "B095CJCQ5J", "instruction": "i need a remote control that has batteries included", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY7TP7O", "worker_id": "A2ECRNQ3X5LEXD"}], "B07J2NP9D9": [{"asin": "B07J2NP9D9", "instruction": "i would like a 6 inch full size brown bed with a steel frame.", "attributes": ["box spring", "memory foam", "steel frame", "solid wood"], "options": ["color: brown", "size: full", "style: 6 inch"], "instruction_attributes": ["steel frame"], "instruction_options": ["brown", "full", "6 inch"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4XPK7K", "worker_id": "A1WS884SI0SLO4"}], "B07FYTP342": [{"asin": "B07FYTP342", "instruction": "i'm looking for a pair mavi's regular rise, classic fit jeans in smoke blue twill in a size 34.", "attributes": ["straight leg", "classic fit"], "options": ["color: smoke blue twill", "size: 32-36"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TWQMPY", "worker_id": "AMI0SOF51O3FW"}], "B08SQDPWJ2": [{"asin": "B08SQDPWJ2", "instruction": "i want a silver makeup travel storage case.", "attributes": ["easy clean", "high quality", "storage case"], "options": ["color: silver", "style: upgrade"], "instruction_attributes": ["storage case"], "instruction_options": ["silver"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCNRBL6", "worker_id": "A2RBF3IIJP15IH"}], "B08Y99HCQZ": [{"asin": "B08Y99HCQZ", "instruction": "i am looking for a 63 inch wide by 72 inch long white curtain for my living room.", "attributes": ["white item", "living room", "dining room"], "options": ["color: color05", "size: 63\"w x 72\"l"], "instruction_attributes": ["white item", "living room"], "instruction_options": ["63\"w x 72\"l"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMSZEXE", "worker_id": "A1EREKSZAA9V7B"}], "B08ZCV9XVC": [{"asin": "B08ZCV9XVC", "instruction": "i am looking for 36 dirt bike themed cupcake toppers for a birthday party.", "attributes": ["cupcake picks", "birthday party", "birthday cake"], "options": ["pattern name: 36 pcs cupcake toppers"], "instruction_attributes": ["birthday party"], "instruction_options": ["36 pcs cupcake toppers"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYYLHVY", "worker_id": "A1EREKSZAA9V7B"}], "B07SJ8WBQ4": [{"asin": "B07SJ8WBQ4", "instruction": "i would like a light pink cosmetic case that is space saving.", "attributes": ["space saving", "storage unit"], "options": ["color: light pink | clear"], "instruction_attributes": ["space saving"], "instruction_options": ["light pink | clear"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V3EFG1", "worker_id": "A1WS884SI0SLO4"}], "B09NQC61MF": [{"asin": "B09NQC61MF", "instruction": "i want to find a plus-sized medium short-sleeve top for women in navy.", "attributes": ["short sleeve", "long sleeve"], "options": ["color: tops for women -a158-navy", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["tops for women -a158-navy", "medium"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV8DD82", "worker_id": "A345TDMHP3DQ3G"}], "B015OA6FYA": [{"asin": "B015OA6FYA", "instruction": "find this product : gomacro macrobar organic vegan protein bars - oatmeal chocolate chip butter (2.4 oz. bars, 12 count) gluten free high protein.", "attributes": ["plant based", "soy free", "certified organic", "high protein", "non gmo", "gluten free"], "options": ["flavor name: oatmeal chocolate chip"], "instruction_attributes": ["plant based", "high protein", "non gmo"], "instruction_options": ["oatmeal chocolate chip"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWTB6W0", "worker_id": "A15IJ20C3R4HUO"}], "B09MFGFQYZ": [{"asin": "B09MFGFQYZ", "instruction": "i want highlighting caps for dyeing hair. it should be easy to use.", "attributes": ["easy use", "hair dye", "hair salon"], "options": [""], "instruction_attributes": ["easy use", "hair dye"], "instruction_options": [], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FKFLER", "worker_id": "A1NF6PELRKACS9"}], "B07KVDKBP4": [{"asin": "B07KVDKBP4", "instruction": "i am looking for a pack of one heavy duty nail clippers", "attributes": ["heavy duty", "long handle"], "options": ["size: 22 inch (pack of 1)"], "instruction_attributes": ["heavy duty"], "instruction_options": ["22 inch (pack of 1)"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KYEJ9X", "worker_id": "A2ECRNQ3X5LEXD"}], "B08N2WX2ZL": [{"asin": "B08N2WX2ZL", "instruction": "i would like to get a mint and matcha tea lip balm that is certified organic.", "attributes": ["cruelty free", "certified organic"], "options": ["scent: mint & matcha tea caffeinated"], "instruction_attributes": ["certified organic"], "instruction_options": ["mint & matcha tea caffeinated"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT4Y3PM", "worker_id": "A1WS884SI0SLO4"}], "B09P3K78W9": [{"asin": "B09P3K78W9", "instruction": "i am looking for a set of white hands free and fast charging ear buds with a charging case.", "attributes": ["fast charging", "hands free"], "options": ["color: white"], "instruction_attributes": ["fast charging", "hands free"], "instruction_options": ["white"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OZ5EYY", "worker_id": "A1EREKSZAA9V7B"}], "B084GF52VR": [{"asin": "B084GF52VR", "instruction": "i am interested in buying hdmi display cable which is gold plated and provides high speed.", "attributes": ["blu ray", "gold plated", "high speed"], "options": [""], "instruction_attributes": ["gold plated", "high speed"], "instruction_options": [], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VOU06Q", "worker_id": "AJY5G987IRT25"}], "B0046NEY9A": [{"asin": "B0046NEY9A", "instruction": "i'm looking for 1 pack of permanent hair dye for my husband; i want the jet black colour but it must make his hair look natural.", "attributes": ["long lasting", "easy use", "permanent hair", "hair dye", "natural hair"], "options": ["color: jet black", "size: 1 count (pack of 1)"], "instruction_attributes": ["permanent hair", "hair dye", "natural hair"], "instruction_options": ["jet black", "1 count (pack of 1)"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT4Z3PN", "worker_id": "A3LIIE572Z4OG7"}], "B08DY4RS68": [{"asin": "B08DY4RS68", "instruction": "i am looking for a solid wood chaise lounge for my living room.", "attributes": ["button tufted", "solid wood", "living room"], "options": [""], "instruction_attributes": ["solid wood", "living room"], "instruction_options": [], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSSZX0N", "worker_id": "A1EREKSZAA9V7B"}], "B09H64NQRY": [{"asin": "B09H64NQRY", "instruction": "i'm looking for premium chunk chicken fully cooked in 12.5 oz (pack of 6)", "attributes": ["fully cooked", "artificial ingredients", "fat free"], "options": ["color: .3.pack 12.5 ounce (pack of 6)", "size: 12.5 ounce (pack of 6)"], "instruction_attributes": ["fully cooked"], "instruction_options": ["12.5 ounce (pack of 6)"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXVTYLQ", "worker_id": "A62B826XMLK7K"}], "B079TZX2S9": [{"asin": "B079TZX2S9", "instruction": "looking for relaxed fit men's dark pajamas with checker pant", "attributes": ["wash cold", "machine wash", "relaxed fit", "tumble dry"], "options": ["color: with checker pant", "size: large"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["with checker pant"], "assignment_id": "39LNWE0K456PSVA11X00BCXJK3NIUX", "worker_id": "A10OGH5CQBXL5N"}], "B081VZDSFQ": [{"asin": "B081VZDSFQ", "instruction": "i'm looking for a stainless steel dental scaler.", "attributes": ["teeth whitening", "stainless steel", "bad breath"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3DY46V3X30SWVSP7TC9YER1YG1755D", "worker_id": "AR9AU5FY1S3RO"}], "B085317T22": [{"asin": "B085317T22", "instruction": "i want to buy a black colred heavy duty bok case which is easy to assemble and has ample storage space.", "attributes": ["heavy duty", "easy assemble", "contemporary style", "storage space"], "options": ["color: black"], "instruction_attributes": ["heavy duty", "storage space"], "instruction_options": ["black"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLXPFTD", "worker_id": "AHXHM1PQTRWIQ"}], "B09PBDFYCR": [{"asin": "B09PBDFYCR", "instruction": "i'm looking for a women's long sleeve t-shirt in size medium. choose the ones that come in color n04-black.", "attributes": ["wash cold", "short sleeve", "unique design", "polyester cotton", "long sleeve", "daily wear"], "options": ["color: n04-black", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["n04-black", "medium"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DVUK4V", "worker_id": "A3MNXK3VDK37SN"}], "B07NDJPRQM": [{"asin": "B07NDJPRQM", "instruction": "i'm looking for tov ultra modern furniture barstool.", "attributes": ["metal legs", "wood frame"], "options": ["color: blush", "style: barstool"], "instruction_attributes": ["wood frame"], "instruction_options": ["blush", "barstool"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PE7BUN", "worker_id": "A21IUUHBSEVB56"}], "B09N3411B9": [{"asin": "B09N3411B9", "instruction": "i am looking for panoramic ballhead easy install tripod camera mount", "attributes": ["quick release", "easy install", "aluminum alloy"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRR3F9W", "worker_id": "A258PTOZ3D2TQR"}], "B07CH4CN3M": [{"asin": "B07CH4CN3M", "instruction": "i am looking for 4.69 ounce (pack of 4) hand crafted cinnamon caramel flavoured chewy butter caramel candies", "attributes": ["hand crafted", "old fashioned", "individually wrapped", "quality ingredients"], "options": ["flavor name: cinnamon caramel", "size: 4.69 ounce (pack of 4)"], "instruction_attributes": ["hand crafted"], "instruction_options": ["cinnamon caramel", "4.69 ounce (pack of 4)"], "assignment_id": "3HOSI13XHAYM3IJTNO90AFDI6ZPDDN", "worker_id": "A258PTOZ3D2TQR"}], "B06X1FP7ZC": [{"asin": "B06X1FP7ZC", "instruction": "i am looking for a green tea facial scrub.", "attributes": ["green tea", "natural ingredients", "dry skin"], "options": [""], "instruction_attributes": ["green tea"], "instruction_options": [], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQULES51", "worker_id": "A1EREKSZAA9V7B"}], "B07Y2BP5KF": [{"asin": "B07Y2BP5KF", "instruction": "i am looking for some sugar free sriracha bacon jerky.", "attributes": ["grass fed", "low carb", "high protein", "hand crafted", "low calorie", "keto friendly", "sugar free", "dairy free", "gift basket"], "options": ["flavor name: sriracha bacon jerky", "size: 2 ounce (pack of 12)"], "instruction_attributes": ["sugar free"], "instruction_options": ["sriracha bacon jerky"], "assignment_id": "3NQL1CS152IBVAE6A5W8TMTQOUZYVF", "worker_id": "A1EREKSZAA9V7B"}], "B078MPXY9Z": [{"asin": "B078MPXY9Z", "instruction": "i would like deep concealer for dark circles.", "attributes": ["anti aging", "hyaluronic acid", "dark circles"], "options": ["color: deep (n)"], "instruction_attributes": ["dark circles"], "instruction_options": ["deep (n)"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBV8GIV", "worker_id": "A1WS884SI0SLO4"}], "B096S1HNZ2": [{"asin": "B096S1HNZ2", "instruction": "i'm looking for mid century sofa sleeper for living room.", "attributes": ["mid century", "high density", "metal legs", "living room"], "options": ["color: pink ii"], "instruction_attributes": ["mid century", "metal legs", "living room"], "instruction_options": ["pink ii"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F24MHOS", "worker_id": "A21IUUHBSEVB56"}], "B083GQMJS3": [{"asin": "B083GQMJS3", "instruction": "i need a purple eyeshadow set", "attributes": ["high quality", "eye shadow"], "options": ["color: florescence+purple"], "instruction_attributes": ["eye shadow"], "instruction_options": ["florescence+purple"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DVSK4T", "worker_id": "A2ECRNQ3X5LEXD"}], "B089QCVX27": [{"asin": "B089QCVX27", "instruction": "i want to find a glass tempered screen protector for my huawei p30 lite.", "attributes": ["tempered glass", "glass screen"], "options": ["color: huawei p30 lite"], "instruction_attributes": ["tempered glass", "glass screen"], "instruction_options": ["huawei p30 lite"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPPPE6B", "worker_id": "A345TDMHP3DQ3G"}], "B08QN2KKFG": [{"asin": "B08QN2KKFG", "instruction": "i want the noise cancelling bluetooth earbuds,kurdene wireless earbuds with wireless charging case and the color should be wathet", "attributes": ["noise cancelling", "wireless charging"], "options": ["color: wathet"], "instruction_attributes": ["noise cancelling", "wireless charging"], "instruction_options": ["wathet"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IE8BCL", "worker_id": "A1IL2K0ELYI090"}], "B08M9Q7987": [{"asin": "B08M9Q7987", "instruction": "i am looking for some pink cupcake toppers for a birthday cake.", "attributes": ["birthday cake", "cupcake picks", "baby shower", "birthday party"], "options": ["color: pink"], "instruction_attributes": ["birthday cake"], "instruction_options": ["pink"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTXNL7H", "worker_id": "A1EREKSZAA9V7B"}], "B09MZFJPNY": [{"asin": "B09MZFJPNY", "instruction": "i want to buy sleepwear for women which have elastic waist and are of black color, while also their size should be large.", "attributes": ["comfortable fit", "unique design", "elastic waist", "daily wear"], "options": ["color: black", "size: large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["black", "large"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67W1A7F7", "worker_id": "AJY5G987IRT25"}], "B071XFS47L": [{"asin": "B071XFS47L", "instruction": "i would like a small short signal green track pant with a elastic waist.", "attributes": ["slim fit", "drawstring closure", "elastic waist"], "options": ["color: legacy blue | signal green", "size: small short"], "instruction_attributes": ["elastic waist"], "instruction_options": ["legacy blue | signal green", "small short"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCAN0DO", "worker_id": "A1WS884SI0SLO4"}], "B09C8BWZMP": [{"asin": "B09C8BWZMP", "instruction": "i'm looking for a mini desktop pc with an aluminum alloy case that also has 8 gb of ram and a 240 gb ssd.", "attributes": ["dual band", "aluminum alloy"], "options": ["color: intel xeon e-2186m", "size: 8g ram 240g ssd"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["8g ram 240g ssd"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23S0HQT3", "worker_id": "A2JP9IKRHNLRPI"}], "B08BNKV89Y": [{"asin": "B08BNKV89Y", "instruction": "i'm looking for a quad-core i5 touchscreen laptop computer; specifically with 16 gig ddr4 and 512 gig pcie ssd.", "attributes": ["core i5", "intel core", "quad core"], "options": ["capacity: 16gb ddr4 ram, 512gb pcie ssd"], "instruction_attributes": ["core i5", "quad core"], "instruction_options": ["16gb ddr4 ram, 512gb pcie ssd"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSLA62A", "worker_id": "A3LIIE572Z4OG7"}], "B07Q4J16Y3": [{"asin": "B07Q4J16Y3", "instruction": "i am looking for video recording camera that is easy to use.", "attributes": ["1080p hd", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OMFRT1", "worker_id": "A1Q8PPQQCWGY0D"}], "B07PP3XY3V": [{"asin": "B07PP3XY3V", "instruction": "i want to find a queen-sized safavieh contemporary navy velvet bed in gray.", "attributes": ["queen size", "home furnishings"], "options": ["color: grey", "size: queen"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTSSQO9", "worker_id": "AMI0SOF51O3FW"}], "B09H7HMN8Y": [{"asin": "B09H7HMN8Y", "instruction": "i'm looking for lumbar tassel tufted pillow covers.", "attributes": ["spot clean", "living room"], "options": ["color: red", "size: 18x18 inch"], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTH89NE", "worker_id": "A21IUUHBSEVB56"}], "B09NNBX2SG": [{"asin": "B09NNBX2SG", "instruction": "i'm looking for a woman's long sleeve shirt in a size 5 extra large.", "attributes": ["loose fit", "slim fit", "day comfort", "short sleeve", "long sleeve"], "options": ["color: a28 button down henley shirts black", "size: 5x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["5x-large"], "assignment_id": "3X65QVEQIBXVW21709CD9M35U8TCLG", "worker_id": "A2JP9IKRHNLRPI"}], "B091BSPMBZ": [{"asin": "B091BSPMBZ", "instruction": "i would like a pink hair cutting kit that is easy to use", "attributes": ["easy use", "easy clean", "hair cutting", "hair dye", "hair styling"], "options": ["color: pink"], "instruction_attributes": ["easy use"], "instruction_options": ["pink"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI71GQY7", "worker_id": "A2ECRNQ3X5LEXD"}], "B08PCMR38S": [{"asin": "B08PCMR38S", "instruction": "i'm looking for a rich and creamy low carb ice cream. choose the ones that are best seller.", "attributes": ["rich creamy", "low carb"], "options": ["flavor name: best seller"], "instruction_attributes": ["rich creamy", "low carb"], "instruction_options": ["best seller"], "assignment_id": "3NGMS9VZTWSGZMBL50ZGMFJOUPYFFO", "worker_id": "A3MNXK3VDK37SN"}], "B09JDN73YG": [{"asin": "B09JDN73YG", "instruction": "i would like a color s tongue cleaner for oral hygiene.", "attributes": ["eco friendly", "stainless steel", "oral hygiene"], "options": ["color: s"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["s"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI71IYQH", "worker_id": "A1WS884SI0SLO4"}], "B01N94VSXH": [{"asin": "B01N94VSXH", "instruction": "i am looking for some high quality glitter nail polish that is paraben free.", "attributes": ["highly pigmented", "sulfate free", "paraben free", "cruelty free", "high quality", "nail polish"], "options": ["color: glitter"], "instruction_attributes": ["paraben free", "high quality"], "instruction_options": ["glitter"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC59DRKK", "worker_id": "A1EREKSZAA9V7B"}], "B087JT4GX1": [{"asin": "B087JT4GX1", "instruction": "gold plated micro hdmi to hdmi cable size 50 cm", "attributes": ["gold plated", "high speed", "easy install"], "options": ["color: a1-d2", "size: 50cm"], "instruction_attributes": ["gold plated"], "instruction_options": ["50cm"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0Y15WK", "worker_id": "A3TTGSUBIK1YCL"}], "B07KPY6BKG": [{"asin": "B07KPY6BKG", "instruction": "i want a silver plug and play usb c headphone & microphone adapter.", "attributes": ["plug play", "aluminum alloy"], "options": ["color: silver", "size: usb c, mic mic"], "instruction_attributes": ["plug play"], "instruction_options": ["silver"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQP9311", "worker_id": "A2RBF3IIJP15IH"}], "B08CDV9Y5D": [{"asin": "B08CDV9Y5D", "instruction": "i'm looking for waterproof wildlife hunting trail camera.", "attributes": ["easy install", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKF4NEK", "worker_id": "A21IUUHBSEVB56"}], "B0756MBLNX": [{"asin": "B0756MBLNX", "instruction": "i want a bottle of handcraft ginger tea tree essential oil.", "attributes": ["high quality", "tea tree"], "options": ["scent: ginger", "size: 10 ml (pack of 1)"], "instruction_attributes": ["tea tree"], "instruction_options": ["ginger"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFLU9VH", "worker_id": "A2RBF3IIJP15IH"}], "B0725MDPPC": [{"asin": "B0725MDPPC", "instruction": "looking for high gloss contemporary night stand with stainless steel base and handles also choose colour white", "attributes": ["high gloss", "stainless steel"], "options": ["color: white"], "instruction_attributes": ["high gloss", "stainless steel"], "instruction_options": ["white"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MOYLWL", "worker_id": "A10OGH5CQBXL5N"}], "B013D2ME9Q": [{"asin": "B013D2ME9Q", "instruction": "i am looking for a men's short sleeve denim blue shirt.", "attributes": ["button closure", "short sleeve", "tumble dry"], "options": ["color: denim blue", "size: 6x-large tall"], "instruction_attributes": ["short sleeve"], "instruction_options": ["denim blue"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVPKQ0R", "worker_id": "A1EREKSZAA9V7B"}], "B00WONI1AW": [{"asin": "B00WONI1AW", "instruction": "i want cecemed stop hair loss shampoo.", "attributes": ["hair loss", "hair growth"], "options": [""], "instruction_attributes": ["hair loss"], "instruction_options": [], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL841D2AXG", "worker_id": "A2RBF3IIJP15IH"}], "B08LVYMMHF": [{"asin": "B08LVYMMHF", "instruction": "can you find a high quality, easy to use nail art tool set that i can use to remove dead skin?", "attributes": ["high quality", "non toxic", "easy use", "nail art", "dead skin"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z1BZ1KE", "worker_id": "AMI0SOF51O3FW"}], "B0936QYXV4": [{"asin": "B0936QYXV4", "instruction": "i need color corrector for my hair salon", "attributes": ["hair dye", "hair salon"], "options": [""], "instruction_attributes": ["hair salon"], "instruction_options": [], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVSZJK0", "worker_id": "AVIEE6LDH0BT5"}], "B09MQLBLDJ": [{"asin": "B09MQLBLDJ", "instruction": "i am looking for light weight background having color a6.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a6", "size: 10x10ft | 3x3m"], "instruction_attributes": ["light weight"], "instruction_options": ["a6"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL33D7QV", "worker_id": "A1Q8PPQQCWGY0D"}], "B06XYDTR2G": [{"asin": "B06XYDTR2G", "instruction": "i am interested in buying cleansing water which is suitable for dry skin and it's dermatologist tested.", "attributes": ["dermatologist tested", "dry skin", "sensitive skin"], "options": [""], "instruction_attributes": ["dermatologist tested", "dry skin"], "instruction_options": [], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2C57Y9", "worker_id": "AJY5G987IRT25"}], "B099231V35": [{"asin": "B099231V35", "instruction": "hello, i'm looking for a pair of cargo pants for everyday casual wear? but also hiking-friendly. also, i want an orange pair please", "attributes": ["slim fit", "straight leg", "elastic waist", "long sleeve", "relaxed fit", "everyday wear"], "options": ["color: orange", "size: small"], "instruction_attributes": ["relaxed fit", "everyday wear"], "instruction_options": ["orange"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWP2VG06", "worker_id": "A2TRV8SEM003GG"}], "B08THJGF1Z": [{"asin": "B08THJGF1Z", "instruction": "i want a color a cotton pad for eye shadow.", "attributes": ["eco friendly", "high quality", "eye shadow"], "options": ["color: a"], "instruction_attributes": ["eye shadow"], "instruction_options": ["a"], "assignment_id": "3NGMS9VZTWSGZMBL50ZGMFJOUOJFF7", "worker_id": "A1WS884SI0SLO4"}], "B09B12G3TT": [{"asin": "B09B12G3TT", "instruction": "i would like a 28 inch by 44 inch style 24 poster that is ready to hang in the living room.", "attributes": ["ready hang", "living room"], "options": ["color: style_24", "size: 28\" x 44\""], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["style_24", "28\" x 44\""], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8RBWSK9", "worker_id": "A1WS884SI0SLO4"}], "B096RWXX6S": [{"asin": "B096RWXX6S", "instruction": "i would like some party supplies that are cupcake toppers.", "attributes": ["non alcoholic", "party supplies", "cupcake picks"], "options": [""], "instruction_attributes": ["party supplies"], "instruction_options": [], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VV6XM4", "worker_id": "A2ECRNQ3X5LEXD"}], "B07CKT4CKB": [{"asin": "B07CKT4CKB", "instruction": "i want love beauty argan oil and lavender tea tree conditioner.", "attributes": ["plant based", "paraben free", "cruelty free", "tea tree", "coconut oil"], "options": ["color: argan oil and lavender"], "instruction_attributes": ["tea tree"], "instruction_options": ["argan oil and lavender"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7K0ZE70", "worker_id": "A2RBF3IIJP15IH"}], "B0872G9J57": [{"asin": "B0872G9J57", "instruction": "i am looking for resilient memory foam loveseat sofa", "attributes": ["mid century", "high density", "memory foam", "solid wood", "wood frame"], "options": ["color: aubergine cross weave", "size: loveseat"], "instruction_attributes": ["memory foam"], "instruction_options": ["loveseat"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI90D5XJ", "worker_id": "A258PTOZ3D2TQR"}], "B089SFCL8R": [{"asin": "B089SFCL8R", "instruction": "i am looking for light weight backgrounds of size 12x10ft.", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 12x10ft"], "instruction_attributes": ["light weight"], "instruction_options": ["12x10ft"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GHVUZE", "worker_id": "A1Q8PPQQCWGY0D"}], "B09R752WN9": [{"asin": "B09R752WN9", "instruction": "i am looking for a 2 pack of fresh breath whitening toothpaste.", "attributes": ["sensitive teeth", "fresh breath", "bad breath"], "options": ["color: 2pcs"], "instruction_attributes": ["fresh breath"], "instruction_options": ["2pcs"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8ST6QV", "worker_id": "A1EREKSZAA9V7B"}], "B0119ZOERO": [{"asin": "B0119ZOERO", "instruction": "i want a mid century adesso table lamp.", "attributes": ["mid century", "metal legs"], "options": ["size: table lamp"], "instruction_attributes": ["mid century"], "instruction_options": ["table lamp"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNEMLIX8", "worker_id": "A2RBF3IIJP15IH"}], "B008QZZ88K": [{"asin": "B008QZZ88K", "instruction": "i'm looking for 67.5 ounce cheez-it snack pack.", "attributes": ["ready eat", "individually wrapped"], "options": [""], "instruction_attributes": ["ready eat"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKNK7DK", "worker_id": "A21IUUHBSEVB56"}], "B09Q8WGZ3P": [{"asin": "B09Q8WGZ3P", "instruction": "i want to find an xx-large pair of green women's leggings with a high waist.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: green", "size: xx-large"], "instruction_attributes": ["high waist"], "instruction_options": ["green", "xx-large"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOBBGJN", "worker_id": "A345TDMHP3DQ3G"}], "B09C6N4FVH": [{"asin": "B09C6N4FVH", "instruction": "i want to find some poster prints that i can put in my living room.", "attributes": ["mid century", "dining room", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3BEFOD78WH3C7G6D767AQ16620UM47", "worker_id": "A345TDMHP3DQ3G"}], "B0049W9M5E": [{"asin": "B0049W9M5E", "instruction": "i'm looking for sugar-free double mocha cappuccino mix.", "attributes": ["sugar free", "rich creamy", "easy use"], "options": ["flavor name: salted caramel", "size: 12 ounce (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["12 ounce (pack of 6)"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQSG0PQ", "worker_id": "A21IUUHBSEVB56"}], "B0718XF1ZZ": [{"asin": "B0718XF1ZZ", "instruction": "i'm looking for a replacement remote for my sound bar that includes triple a batteries. i need the color \"xrt303 mgo.\"", "attributes": ["batteries included", "aaa batteries"], "options": ["color: xrt303 mgo"], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": ["xrt303 mgo"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5ZRF42", "worker_id": "AR9AU5FY1S3RO"}], "B09QX1RW8H": [{"asin": "B09QX1RW8H", "instruction": "i would like a toothpaste for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": [""], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ3ENRF", "worker_id": "A1WS884SI0SLO4"}], "B0929KGQWQ": [{"asin": "B0929KGQWQ", "instruction": "i'm looking for a peanut crunch popcorn that could be a perfect gift for my friend.", "attributes": ["old fashioned", "great gift", "perfect gift"], "options": [""], "instruction_attributes": ["perfect gift"], "instruction_options": [], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOAZGJ9", "worker_id": "A3MNXK3VDK37SN"}], "B01MSELGR6": [{"asin": "B01MSELGR6", "instruction": "i would like a high def gold plated hdmi cable.", "attributes": ["blu ray", "high speed", "gold plated", "high definition"], "options": [""], "instruction_attributes": ["gold plated", "high definition"], "instruction_options": [], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0Z1XPI", "worker_id": "A1WS884SI0SLO4"}], "B08Q3NCBHP": [{"asin": "B08Q3NCBHP", "instruction": "i'm looking for shoot digital camera with inspire digital cloth.", "attributes": ["1080p hd", "optical zoom"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYMELQC", "worker_id": "A21IUUHBSEVB56"}], "B08FDC82VY": [{"asin": "B08FDC82VY", "instruction": "i want to find professional binoculars that are easy to carry for birdwatching.", "attributes": ["easy carry", "bird watching"], "options": [""], "instruction_attributes": ["easy carry", "bird watching"], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE267QGS", "worker_id": "A345TDMHP3DQ3G"}], "B0147DG6YE": [{"asin": "B0147DG6YE", "instruction": "i am looking for a tablet with a quad core processor and 4g lte.", "attributes": ["quad core", "4g lte"], "options": [""], "instruction_attributes": ["quad core", "4g lte"], "instruction_options": [], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06Q0KXB", "worker_id": "A1EREKSZAA9V7B"}], "B079VM1R2M": [{"asin": "B079VM1R2M", "instruction": "i'm interested in some gold-plated white patio speakers in size 5'' 8\u03c9 | 70v that are easy to install.", "attributes": ["gold plated", "easy install", "wireless bluetooth"], "options": ["color: white", "size: 5'' 8\u03c9 | 70v"], "instruction_attributes": ["gold plated", "easy install"], "instruction_options": ["white", "5'' 8\u03c9 | 70v"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQKOEKV", "worker_id": "AFU00NU09CFXE"}], "B09M78CSZY": [{"asin": "B09M78CSZY", "instruction": "i am looking for 8.5 size green color low heel day comfort short ankle booties for women", "attributes": ["day comfort", "non slip", "quality materials"], "options": ["color: x02-green", "size: 8.5"], "instruction_attributes": ["day comfort"], "instruction_options": ["x02-green", "8.5"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBJCHGO", "worker_id": "A258PTOZ3D2TQR"}], "B08TB3LLT1": [{"asin": "B08TB3LLT1", "instruction": "i'm looking for a handmade chocolate malt balls.", "attributes": ["resealable bag", "great gift"], "options": ["flavor name: christmas", "size: 16 ounce"], "instruction_attributes": ["resealable bag"], "instruction_options": [], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVSWJKX", "worker_id": "A21IUUHBSEVB56"}], "B08Y6W6VTW": [{"asin": "B08Y6W6VTW", "instruction": "i want a pair of black earbud headphones that are water resistant.", "attributes": ["water resistant", "carbon fiber", "stereo sound"], "options": ["color: black"], "instruction_attributes": ["water resistant"], "instruction_options": ["black"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VO7609", "worker_id": "A1WS884SI0SLO4"}], "B07YZQYBVN": [{"asin": "B07YZQYBVN", "instruction": "i want water proof australian gold continuous spray sunscreen with instant bronzer spf 50.", "attributes": ["water resistant", "cruelty free", "tea tree"], "options": ["color: bronzer - new", "style: spf 50"], "instruction_attributes": ["water resistant"], "instruction_options": ["spf 50"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C9JPHI", "worker_id": "A2RBF3IIJP15IH"}], "B093C69MX2": [{"asin": "B093C69MX2", "instruction": "i'd like a couple of packs of meal replacement shakes to satisfy my high-protein, gluten-free diet; i prefer a natural chocolate flavour.", "attributes": ["soy free", "gluten free", "natural flavors"], "options": ["flavor name: chocolate", "size: 2 pack"], "instruction_attributes": ["gluten free", "natural flavors"], "instruction_options": ["chocolate", "2 pack"], "assignment_id": "326O153BMT8RVOXTJJKKGXV36B3DET", "worker_id": "A3LIIE572Z4OG7"}], "B09NZS1VH9": [{"asin": "B09NZS1VH9", "instruction": "i'm looking for a pair of women's non slip work boots with steel toe cap. choose the ones that come in size 9 us.", "attributes": ["non slip", "anti slip", "steel toe"], "options": ["size: 9 us"], "instruction_attributes": ["non slip", "steel toe"], "instruction_options": ["9 us"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMM8ZIB", "worker_id": "A3MNXK3VDK37SN"}], "B09HH8HK2X": [{"asin": "B09HH8HK2X", "instruction": "i would like a white end table with one drawer and 4 basket cabinet for my living room.", "attributes": ["storage unit", "solid wood", "living room", "dining room"], "options": ["color: white", "size: 1 drawer & 4 baskets cabinet"], "instruction_attributes": ["living room"], "instruction_options": ["white", "1 drawer & 4 baskets cabinet"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17XA53YM", "worker_id": "A1WS884SI0SLO4"}], "B09PNKG7G4": [{"asin": "B09PNKG7G4", "instruction": "i'm looking for a full xl sized, ready to use brown mattress.", "attributes": ["ready use", "fully assembled", "assembly required"], "options": ["color: brown", "size: queen", "style: 8\" foundation"], "instruction_attributes": ["ready use"], "instruction_options": ["brown"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBGKOS3", "worker_id": "A2JP9IKRHNLRPI"}], "B07STLK5DH": [{"asin": "B07STLK5DH", "instruction": "i want to buy an ivory and blue area rug that's eight feet long and has a contemporary design.", "attributes": ["contemporary design", "home furnishings"], "options": ["color: ivory | blue", "size: 2'3\" x 8'"], "instruction_attributes": ["contemporary design"], "instruction_options": ["ivory | blue", "2'3\" x 8'"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4RYPKZ", "worker_id": "AR9AU5FY1S3RO"}], "B08P3YR3TZ": [{"asin": "B08P3YR3TZ", "instruction": "i am looking for long lasting pressed powder in the color ivory.", "attributes": ["long lasting", "easy use", "fine lines"], "options": ["color: 1- pressed powder, ivory"], "instruction_attributes": ["long lasting"], "instruction_options": ["1- pressed powder, ivory"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUBMA9A", "worker_id": "AK3JMCIGU8MLU"}], "B0937GRTF5": [{"asin": "B0937GRTF5", "instruction": "i want princess makeanni the pooh cupcake toppers for a birthday party.", "attributes": ["birthday party", "perfect gift"], "options": ["color: princess"], "instruction_attributes": ["birthday party"], "instruction_options": ["princess"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CW3D5TM", "worker_id": "A2RBF3IIJP15IH"}], "B09PLJMDG2": [{"asin": "B09PLJMDG2", "instruction": "i'm looking for a brown, twin size bed frame.", "attributes": ["twin size", "heavy duty", "assembly required", "box spring"], "options": ["color: brown", "size: full"], "instruction_attributes": ["twin size"], "instruction_options": ["brown"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPD11AIL", "worker_id": "AK3JMCIGU8MLU"}], "B07NP6TDRC": [{"asin": "B07NP6TDRC", "instruction": "i would like a four fluid ounce very dark self tanner that is paraben free.", "attributes": ["easy apply", "paraben free"], "options": ["color: very dark", "size: 4 fl oz (pack of 1)"], "instruction_attributes": ["paraben free"], "instruction_options": ["very dark", "4 fl oz (pack of 1)"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTOSV5R", "worker_id": "A1WS884SI0SLO4"}], "B09JTZ2229": [{"asin": "B09JTZ2229", "instruction": "i am interested in buying make up foundation which is tested by dermatologist, and is of golden beige color.", "attributes": ["dermatologist tested", "fine lines"], "options": ["color: golden beige"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["golden beige"], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKXDMJR", "worker_id": "AJY5G987IRT25"}], "B09MD6V3YM": [{"asin": "B09MD6V3YM", "instruction": "i would like a blue mascara brush that applies easily.", "attributes": ["easy apply", "easy carry"], "options": ["color: blue"], "instruction_attributes": ["easy apply"], "instruction_options": ["blue"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NM8KBW", "worker_id": "A1WS884SI0SLO4"}], "B08H6FZ4PH": [{"asin": "B08H6FZ4PH", "instruction": "i would like a on the rise volume liftscara eyeshadow that is cruelty free.", "attributes": ["cruelty free", "highly pigmented"], "options": ["style name: on the rise volume liftscara"], "instruction_attributes": ["cruelty free"], "instruction_options": ["on the rise volume liftscara"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZDCO0S7", "worker_id": "A1WS884SI0SLO4"}], "B0949JWNZ2": [{"asin": "B0949JWNZ2", "instruction": "i want a bpa free bottle for makeup.", "attributes": ["leak proof", "bpa free", "travel bottles"], "options": [""], "instruction_attributes": ["bpa free"], "instruction_options": [], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017594PP", "worker_id": "A1WS884SI0SLO4"}], "B09BQMH7P7": [{"asin": "B09BQMH7P7", "instruction": "i am looking for synthetic black gray 101 color hair extensions wig hairpiece", "attributes": ["easy clean", "hair extensions", "natural hair"], "options": ["color: 101"], "instruction_attributes": ["hair extensions"], "instruction_options": ["101"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AOSOEH", "worker_id": "A258PTOZ3D2TQR"}], "B0011N17RU": [{"asin": "B0011N17RU", "instruction": "i would like a plum point and shoot camera with a optical zoom.", "attributes": ["high resolution", "optical zoom"], "options": ["color: plum"], "instruction_attributes": [], "instruction_options": ["plum"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GO6S3S", "worker_id": "A1WS884SI0SLO4"}], "B0185LC8YG": [{"asin": "B0185LC8YG", "instruction": "i'm looking for permanent hair dye color in #c cool darkest brown.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 6am light amber brown", "size: pack of 3"], "instruction_attributes": ["permanent hair", "hair dye"], "instruction_options": [], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLLBDCEE", "worker_id": "A62B826XMLK7K"}, {"asin": "B0185LC8YG", "instruction": "i am looking for a long lasting hair color that is light brown and comes in a pack of three.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 6 light brown", "size: pack of 3"], "instruction_attributes": ["long lasting"], "instruction_options": ["6 light brown", "pack of 3"], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EB4B16", "worker_id": "A2ECRNQ3X5LEXD"}], "B07JVP58VR": [{"asin": "B07JVP58VR", "instruction": "i am looking for a gluten free happy hamlet bacon salt gourmet rub.", "attributes": ["certified organic", "gluten free", "kosher certified", "plant based", "non gmo", "artificial flavors"], "options": ["flavor: happy hamlet bacon salt"], "instruction_attributes": ["gluten free"], "instruction_options": ["happy hamlet bacon salt"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMO7XVA", "worker_id": "A1EREKSZAA9V7B"}], "B09BMXK1WD": [{"asin": "B09BMXK1WD", "instruction": "can i request some high performance speakers? also, can you pick the ones that come in white please?", "attributes": ["gold plated", "high performance"], "options": ["color: white", "style: signature"], "instruction_attributes": ["high performance"], "instruction_options": ["white"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOHXNOB", "worker_id": "A2TRV8SEM003GG"}], "B07B9K659S": [{"asin": "B07B9K659S", "instruction": "i want a 1.5 foot long black gold plated hdmi cable.", "attributes": ["gold plated", "blu ray"], "options": ["color: black", "size: 1.5ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["black", "1.5ft"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7ANZYUZ", "worker_id": "A1WS884SI0SLO4"}], "B09MNLV2NY": [{"asin": "B09MNLV2NY", "instruction": "looking for table sofa table for kitchen dining room and also choose colour antique blue", "attributes": ["white item", "storage space", "dining room", "living room"], "options": ["color: antique blue-5"], "instruction_attributes": ["dining room"], "instruction_options": ["antique blue-5"], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVLETU2", "worker_id": "A10OGH5CQBXL5N"}], "B099MC8XFB": [{"asin": "B099MC8XFB", "instruction": "i want small and cotton spandex men's jogger pants.", "attributes": ["elastic closure", "cotton spandex", "elastic waistband", "polyester spandex"], "options": ["color: black-09", "size: small"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["small"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFPYEMF", "worker_id": "A2RBF3IIJP15IH"}], "B09J3B6XR7": [{"asin": "B09J3B6XR7", "instruction": "i am looking for lemongrass eucalyptus & cinnamon apple color candles that are lead free.", "attributes": ["lead free", "soy wax"], "options": ["color: lemongrass eucalyptus & cinnamon apple"], "instruction_attributes": ["lead free"], "instruction_options": ["lemongrass eucalyptus & cinnamon apple"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHPDBQD0", "worker_id": "A1Q8PPQQCWGY0D"}], "B083Q84GLC": [{"asin": "B083Q84GLC", "instruction": "i am looking for light weight wall backgrounds of size 12x8ft.", "attributes": ["light weight", "high resolution", "digital photography"], "options": ["size: 12x8ft"], "instruction_attributes": ["light weight"], "instruction_options": ["12x8ft"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMLGJ1C", "worker_id": "A1Q8PPQQCWGY0D"}], "B076C1LL7R": [{"asin": "B076C1LL7R", "instruction": "i'm looking for anti-aging face and eye serum in the 1.01 ounce size.", "attributes": ["anti aging", "high quality", "dark circles", "fine lines"], "options": ["size: 1.01 ounce lifting & renewing"], "instruction_attributes": ["anti aging"], "instruction_options": ["1.01 ounce lifting & renewing"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA934J3ZN", "worker_id": "AK3JMCIGU8MLU"}], "B08DR2HW2Y": [{"asin": "B08DR2HW2Y", "instruction": "i need a wireless usb charging cable for my boombox; make sure it has adequate output protection.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["output protection", "wireless bluetooth"], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1M13UV", "worker_id": "A3LIIE572Z4OG7"}], "B09JL6P8H6": [{"asin": "B09JL6P8H6", "instruction": "help me find a 3-pack of soft and chewy licorice candy twists; i'd like a variety of flavours but it must be fat-free.", "attributes": ["fat free", "resealable bag", "high fructose"], "options": ["flavor name: variety flavor pack", "size: 10 ounce (pack of 3)"], "instruction_attributes": ["fat free"], "instruction_options": ["variety flavor pack", "10 ounce (pack of 3)"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOIS1WU", "worker_id": "A3LIIE572Z4OG7"}], "B004YAUZQG": [{"asin": "B004YAUZQG", "instruction": "i would like a 8 fluid ounce bottle of tea tree lotion.", "attributes": ["tea tree", "sensitive skin"], "options": ["size: 8 fl oz (pack of 1)", "style: lotion"], "instruction_attributes": ["tea tree"], "instruction_options": ["8 fl oz (pack of 1)", "lotion"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFXTJO4", "worker_id": "A1WS884SI0SLO4"}], "B09QMQM1S3": [{"asin": "B09QMQM1S3", "instruction": "i need easy apply pine tar scented mustache wax stick for men", "attributes": ["easy apply", "easy carry", "natural ingredients", "seed oil", "coconut oil"], "options": ["scent: pine tar"], "instruction_attributes": ["easy apply"], "instruction_options": ["pine tar"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFI0U5K", "worker_id": "A258PTOZ3D2TQR"}], "B09SV1J5KS": [{"asin": "B09SV1J5KS", "instruction": "i am looking for tea tree shampoo for natural hair.", "attributes": ["tea tree", "hair loss", "natural hair"], "options": [""], "instruction_attributes": ["tea tree", "natural hair"], "instruction_options": [], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DVZK40", "worker_id": "A1EREKSZAA9V7B"}], "B07H86WY2Y": [{"asin": "B07H86WY2Y", "instruction": "i'm looking for a quick-release replacement fitness strap band; it should match my chic teal fitbit.", "attributes": ["quick release", "stainless steel"], "options": ["color: chic teal"], "instruction_attributes": ["quick release"], "instruction_options": ["chic teal"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q7BWGP", "worker_id": "A3LIIE572Z4OG7"}], "B09MZQ6HD5": [{"asin": "B09MZQ6HD5", "instruction": "i'm looking for a hdmi splitter 1 in 2 out auto scaling.", "attributes": ["high resolution", "blu ray", "plug play"], "options": [""], "instruction_attributes": ["high resolution"], "instruction_options": [], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVJ0BIV", "worker_id": "A21IUUHBSEVB56"}], "B01KUTWRY2": [{"asin": "B01KUTWRY2", "instruction": "i'm looking for a 12 pack pepper jack gluten free cheese.", "attributes": ["keto friendly", "high protein", "low carb", "gluten free"], "options": ["flavor name: pepper jack", "size: 12 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["pepper jack", "12 pack"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUBPA9D", "worker_id": "A3MNXK3VDK37SN"}], "B01GY2FOPS": [{"asin": "B01GY2FOPS", "instruction": "vegan makeup free from animal testing", "attributes": ["cruelty free", "animal testing"], "options": [""], "instruction_attributes": ["animal testing"], "instruction_options": [], "assignment_id": "32XVDSJFPA7242RQ3SOMXM98IM3M2G", "worker_id": "A3TTGSUBIK1YCL"}], "B09C1R93CH": [{"asin": "B09C1R93CH", "instruction": "i am looking for teeth whitening toothpaste of color d.", "attributes": ["teeth whitening", "long lasting", "oral hygiene", "fresh breath"], "options": ["color: d", "size: 1pc"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["d"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JFNSFF", "worker_id": "A1Q8PPQQCWGY0D"}], "B0722MVPVD": [{"asin": "B0722MVPVD", "instruction": "i'm looking for a cruelty free, face highlighter in a unicorn style color.", "attributes": ["animal testing", "cruelty free"], "options": ["color: unicorn", "size: 0.14 fl oz (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["unicorn"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L84D6C6A", "worker_id": "A2JP9IKRHNLRPI"}], "B099JWWV1V": [{"asin": "B099JWWV1V", "instruction": "i am looking for easy to use thanksgiving themed cupcake toppers.", "attributes": ["easy use", "party supplies", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW2PC1B", "worker_id": "A1EREKSZAA9V7B"}], "B096QMCF7P": [{"asin": "B096QMCF7P", "instruction": "i want to find a monocular telescope for bird-watching that is 12 inches in width and 50 inches in height.", "attributes": ["dust proof", "high performance", "high definition", "bird watching"], "options": ["size: 12*50"], "instruction_attributes": ["bird watching"], "instruction_options": ["12*50"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JFTSFL", "worker_id": "A345TDMHP3DQ3G"}], "B07KKBTHSX": [{"asin": "B07KKBTHSX", "instruction": "i am looking for a heavy duty universal projector case.", "attributes": ["heavy duty", "carrying case"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZN99KH", "worker_id": "A1Q8PPQQCWGY0D"}], "B0928K612B": [{"asin": "B0928K612B", "instruction": "i am looking for a 2-pack of the fanyate antique vanity light fixtures.", "attributes": ["vanity light", "clear glass", "glass shade", "light fixture", "living room", "dining room"], "options": ["color: 2-light", "size: 2-pack"], "instruction_attributes": ["vanity light", "light fixture"], "instruction_options": ["2-pack"], "assignment_id": "3L4D84MILA2GIKONJGE14YNT3BLJHM", "worker_id": "AK3JMCIGU8MLU"}], "B092X4HR76": [{"asin": "B092X4HR76", "instruction": "i would like a intel core i5 desktop mini.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["core i5", "intel core"], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1LSU3B", "worker_id": "A1WS884SI0SLO4"}], "B09BRDD7XJ": [{"asin": "B09BRDD7XJ", "instruction": "i'm locking for a smiley face non-slip cushioned slippers.", "attributes": ["non slip", "quick drying"], "options": ["color: yellow", "size: 6-6.5 women | 5-5.5 men"], "instruction_attributes": ["non slip", "quick drying"], "instruction_options": [], "assignment_id": "3NGMS9VZTWSGZMBL50ZGMFJOUPUFFK", "worker_id": "A21IUUHBSEVB56"}], "B092J891H7": [{"asin": "B092J891H7", "instruction": "i am looking for a teal color stainlesss steel strap.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: teal", "size: 42 | 44 | 45mm s | m"], "instruction_attributes": ["stainless steel"], "instruction_options": ["teal"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SZSUDM", "worker_id": "A1Q8PPQQCWGY0D"}], "B00PQ4RM5G": [{"asin": "B00PQ4RM5G", "instruction": "i need gluten free popcorn", "attributes": ["gluten free", "quality ingredients", "high fructose"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI724SD1", "worker_id": "A2ECRNQ3X5LEXD"}], "B08665MY24": [{"asin": "B08665MY24", "instruction": "i am looking for a long lasting gel capsule for fresh breath.", "attributes": ["long lasting", "bad breath", "fresh breath"], "options": [""], "instruction_attributes": ["long lasting", "fresh breath"], "instruction_options": [], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P79JSVB", "worker_id": "A1EREKSZAA9V7B"}], "B097TSZJCM": [{"asin": "B097TSZJCM", "instruction": "i am lookng for hot chocolate mix gift set for gift set in valentine heart box", "attributes": ["gift set", "perfect gift"], "options": ["size: valentine heart box"], "instruction_attributes": ["gift set"], "instruction_options": ["valentine heart box"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72APXOEO", "worker_id": "A258PTOZ3D2TQR"}], "B082CX8PNK": [{"asin": "B082CX8PNK", "instruction": "i'm looking for a pair of woman's olive camo yoga pants that are worn high on the waist.", "attributes": ["tummy control", "high waist", "polyester spandex"], "options": ["color: olive camo", "size: xx-large"], "instruction_attributes": ["high waist"], "instruction_options": ["olive camo"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV6LHB8", "worker_id": "A2JP9IKRHNLRPI"}], "B08679CMWM": [{"asin": "B08679CMWM", "instruction": "i am lookng for a medium size orange color elastic waistband workout gym yoga shorts for men", "attributes": ["quick drying", "moisture wicking", "machine wash", "nylon spandex", "drawstring closure", "elastic waistband", "polyester spandex"], "options": ["color: 21grey&orange", "size: medium"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["21grey&orange", "medium"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70IEFBCS", "worker_id": "A258PTOZ3D2TQR"}], "B09T37VZCK": [{"asin": "B09T37VZCK", "instruction": "i need some high quality covers for a massage bed in my beauty salon; it's 71 x 24 inches and i'd prefer the \"c\" colour.", "attributes": ["high quality", "beauty salon"], "options": ["color: c", "size: 180x60cm(71x24inch)"], "instruction_attributes": ["high quality", "beauty salon"], "instruction_options": ["c", "180x60cm(71x24inch)"], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LIGL0E", "worker_id": "A3LIIE572Z4OG7"}], "B09SXRJYN6": [{"asin": "B09SXRJYN6", "instruction": "i would like a black face kit with green tea.", "attributes": ["easy use", "green tea"], "options": ["color: black"], "instruction_attributes": ["green tea"], "instruction_options": ["black"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJSG9OY", "worker_id": "A1WS884SI0SLO4"}], "B08PTLBGKR": [{"asin": "B08PTLBGKR", "instruction": "i am looking for easy to use travel bottles.", "attributes": ["easy use", "travel bottles"], "options": [""], "instruction_attributes": ["easy use", "travel bottles"], "instruction_options": [], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINX927M", "worker_id": "A1EREKSZAA9V7B"}], "B07D7HXBJS": [{"asin": "B07D7HXBJS", "instruction": "i'm looking for chocolate flavored low calorie, keto friendly protein drinks.", "attributes": ["low carb", "low sugar", "protein serving", "low calorie", "keto friendly", "high protein", "gluten free", "dietary fiber"], "options": ["flavor: chocolate"], "instruction_attributes": ["low calorie", "keto friendly"], "instruction_options": ["chocolate"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS6WVUM", "worker_id": "AR9AU5FY1S3RO"}], "B08BN4RGSP": [{"asin": "B08BN4RGSP", "instruction": "i'm looking for a gift set with an eight ounce bottle of cinnamon dip.", "attributes": ["rich creamy", "gift set", "perfect gift"], "options": ["flavor name: cinnamon", "size: 8 fl oz (pack of 1)"], "instruction_attributes": ["gift set"], "instruction_options": ["cinnamon", "8 fl oz (pack of 1)"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CU1T2Q", "worker_id": "AR9AU5FY1S3RO"}], "B093YVJSWF": [{"asin": "B093YVJSWF", "instruction": "i would like a laundry bag.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOGWNO8", "worker_id": "A1WS884SI0SLO4"}], "B01IL2J5KO": [{"asin": "B01IL2J5KO", "instruction": "i'm looking for women's 1 oz liquid blush that is long lasting.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMUBC9AZ", "worker_id": "ARJDD0Z3R65BD"}], "B097XG5RSW": [{"asin": "B097XG5RSW", "instruction": "i need to order some gold cupcake toppers for a birthday party.", "attributes": ["cupcake picks", "birthday party", "party supplies"], "options": ["pattern name: c-60 gold"], "instruction_attributes": ["birthday party"], "instruction_options": ["c-60 gold"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ7HSI8", "worker_id": "AR9AU5FY1S3RO"}], "B09922X9JM": [{"asin": "B09922X9JM", "instruction": "i want khaki knee high boots for women.", "attributes": ["knee high", "day comfort", "open toe", "quality materials"], "options": ["color: z2-khaki", "size: 5.5"], "instruction_attributes": ["knee high"], "instruction_options": ["z2-khaki"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X028534Y", "worker_id": "A2RBF3IIJP15IH"}], "B00M9Y5V4A": [{"asin": "B00M9Y5V4A", "instruction": "i want to find a pair of brown men's box shoes with rubber soles. they should be a size 11.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: brown | hanging", "size: 11"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown | hanging", "11"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYNULQU", "worker_id": "A345TDMHP3DQ3G"}], "B0986QC9Q7": [{"asin": "B0986QC9Q7", "instruction": "i'm looking for some wild caught solid white albacore. it should be non-gmo and come in five ounce cans. i want to buy a pack of forty-eight.", "attributes": ["wild caught", "non gmo"], "options": ["color: solid white albacore", "size: 5 ounce (pack of 48)"], "instruction_attributes": ["wild caught", "non gmo"], "instruction_options": ["solid white albacore", "5 ounce (pack of 48)"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP34XT7", "worker_id": "AR9AU5FY1S3RO"}], "B07N7WFZVZ": [{"asin": "B07N7WFZVZ", "instruction": "i need a fluoride free toothpaste", "attributes": ["certified organic", "fluoride free"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY86B518V", "worker_id": "AVIEE6LDH0BT5"}], "B0080AS25W": [{"asin": "B0080AS25W", "instruction": "look for trader joe's meyer lemon cookie thins 9oz (255g) my favorite, i really want it, help me if you can.", "attributes": ["trader joe", "artificial colors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK6B3YYQ", "worker_id": "A15IJ20C3R4HUO"}], "B098YPWXJ5": [{"asin": "B098YPWXJ5", "instruction": "i need synthetic sole flats that are blush colored", "attributes": ["open toe", "synthetic sole"], "options": ["color: blush", "size: 11"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["blush"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWGCFNN", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MQB5DVB": [{"asin": "B09MQB5DVB", "instruction": "i want to find a storage basket that i can put in my living room.", "attributes": ["space saving", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYMA6LA", "worker_id": "A345TDMHP3DQ3G"}], "B08JMCB1QF": [{"asin": "B08JMCB1QF", "instruction": "i want white and light weight adidas men's duramo shoes.", "attributes": ["light weight", "regular fit", "rubber sole"], "options": ["color: white | black | black", "size: 12"], "instruction_attributes": ["light weight"], "instruction_options": ["white | black | black"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATBD372", "worker_id": "A2RBF3IIJP15IH"}], "B07Z647R7C": [{"asin": "B07Z647R7C", "instruction": "i need a wall lamp with clear glass.", "attributes": ["wall mounted", "vanity light", "clear glass", "glass shade", "light fixture"], "options": ["color: black"], "instruction_attributes": ["clear glass"], "instruction_options": [], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZNJ9KR", "worker_id": "AVIEE6LDH0BT5"}], "B09NN2QPRG": [{"asin": "B09NN2QPRG", "instruction": "am hoping to find interestprint men's lightweight sleep lounge pajama pants machine wash and small size", "attributes": ["machine wash", "elastic waistband"], "options": ["color: multi3", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["small"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UOI4W11", "worker_id": "A1IL2K0ELYI090"}], "B07MBFWHQ3": [{"asin": "B07MBFWHQ3", "instruction": "i'm looking for an x-large, short sleeve top for daily wear in pink with a loose fit.", "attributes": ["loose fit", "short sleeve", "polyester spandex", "daily wear"], "options": ["color: 07 pink", "size: x-large"], "instruction_attributes": ["loose fit", "short sleeve", "daily wear"], "instruction_options": ["07 pink", "x-large"], "assignment_id": "3LRKMWOKBGR239Q9IHEG5O5HXQBZ20", "worker_id": "AFU00NU09CFXE"}], "B09SFC3ZLS": [{"asin": "B09SFC3ZLS", "instruction": "i'm interested in a power amplifier board that is easy to install.", "attributes": ["power amplifier", "easy install"], "options": [""], "instruction_attributes": ["power amplifier", "easy install"], "instruction_options": [], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3OPRYI", "worker_id": "AFU00NU09CFXE"}], "B09MLNYZDQ": [{"asin": "B09MLNYZDQ", "instruction": "i'm looking for a birthday cake for a 5 year old boy that features marvel heroes.", "attributes": ["easy use", "birthday cake", "birthday party"], "options": ["style: 10"], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QV8XO6", "worker_id": "ARJDD0Z3R65BD"}], "B07G6ZG582": [{"asin": "B07G6ZG582", "instruction": "i'm locking for a long sleeve loose plain casual dress with pockets.", "attributes": ["long sleeve", "elastic waist"], "options": ["color: floral light blue", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EBD76U8", "worker_id": "A21IUUHBSEVB56"}], "B07BLYRFR9": [{"asin": "B07BLYRFR9", "instruction": "i am looking for a 7 foot by 7 foot light weight and easy to carry fairytale themed photography background.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 7x7ft"], "instruction_attributes": ["light weight", "easy carry"], "instruction_options": ["7x7ft"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1QKTIN", "worker_id": "A1EREKSZAA9V7B"}], "B001KUSZ1A": [{"asin": "B001KUSZ1A", "instruction": "i need a long usb cable with speed in the beige color.", "attributes": ["high power", "high speed"], "options": ["color: beige", "size: 6.6 feet", "style: usb a male to 4 port usb a female"], "instruction_attributes": ["high speed"], "instruction_options": ["beige"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q76EH9U", "worker_id": "AVIEE6LDH0BT5"}], "B09K3TMTY4": [{"asin": "B09K3TMTY4", "instruction": "i would like a black 63\" entertainment center that is easy to assemble.", "attributes": ["easy assemble", "high gloss", "tempered glass", "living room"], "options": ["color: black-63\""], "instruction_attributes": ["easy assemble"], "instruction_options": ["black-63\""], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QGF1M4", "worker_id": "A1WS884SI0SLO4"}], "B09LXVF5RR": [{"asin": "B09LXVF5RR", "instruction": "i want a wireless bluetooth headset.", "attributes": ["high definition", "stereo sound", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7K0XE7Y", "worker_id": "A1WS884SI0SLO4"}], "B0889MHYWT": [{"asin": "B0889MHYWT", "instruction": "i'm looking for beef jerky with a sweet smoked flavor that is high in protein.", "attributes": ["grass fed", "high protein", "individually wrapped", "shelf stable", "ready eat", "gluten free"], "options": ["flavor name: sweet smoked"], "instruction_attributes": ["high protein"], "instruction_options": ["sweet smoked"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4MJ8MT", "worker_id": "A2JP9IKRHNLRPI"}], "B07MHGDC71": [{"asin": "B07MHGDC71", "instruction": "i would like a resealable bag of peanut brittle.", "attributes": ["old fashioned", "resealable bag"], "options": [""], "instruction_attributes": ["resealable bag"], "instruction_options": [], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40L3NXH", "worker_id": "A1WS884SI0SLO4"}], "B00LGRXL2K": [{"asin": "B00LGRXL2K", "instruction": "i want to find in the color deep pink men's wool jogger pants brand southpole model active basic. be quick in your help i'm waiting. that can be machine washed", "attributes": ["machine wash", "elastic closure"], "options": ["color: deep pink", "size: 4x-large", "style: basic active fleece jogger pants"], "instruction_attributes": ["machine wash"], "instruction_options": ["deep pink"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQ1U4B4", "worker_id": "A15IJ20C3R4HUO"}], "B089GKSZH7": [{"asin": "B089GKSZH7", "instruction": "i want an lnafirenze and highly pigmented matte liquid lipstick set.", "attributes": ["highly pigmented", "easy apply", "cruelty free"], "options": ["pattern name: lnafirenze"], "instruction_attributes": ["highly pigmented"], "instruction_options": ["lnafirenze"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG55450", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B089GKSZH7", "instruction": "i am looking high quality waterproof highly pigmented easy apply cruelty free long lasting lip glosses inafirenze pattern", "attributes": ["highly pigmented", "easy apply", "cruelty free"], "options": ["pattern name: lnafirenze"], "instruction_attributes": ["highly pigmented", "easy apply", "cruelty free"], "instruction_options": ["lnafirenze"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC4LNIV", "worker_id": "A3N9ZYQAESNFQH"}], "B09H3Z8QVF": [{"asin": "B09H3Z8QVF", "instruction": "i am looking for a high power high definition sound bars", "attributes": ["high power", "high definition"], "options": [""], "instruction_attributes": ["high power", "high definition"], "instruction_options": [], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3Y2OJ5Z", "worker_id": "A9QRQL9CFJBI7"}], "B081N4PHWC": [{"asin": "B081N4PHWC", "instruction": "i want a curly hair black brown synthetic hairpiece.", "attributes": ["high quality", "hair extensions", "synthetic hair"], "options": ["color: 2# black brown-8\" (black cap)", "size: curly hair-inseparable"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["2# black brown-8\" (black cap)", "curly hair-inseparable"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZF8AP9", "worker_id": "A1WS884SI0SLO4"}], "B08R1PD541": [{"asin": "B08R1PD541", "instruction": "i want to buy cake toppers suitable for a baby shower event.", "attributes": ["cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q9HII8", "worker_id": "AJY5G987IRT25"}], "B09R29WVRM": [{"asin": "B09R29WVRM", "instruction": "i want an espresso prepac astrid 6 drawer solid wood tall chest.", "attributes": ["white item", "white finish", "solid wood"], "options": ["color: espresso", "size: 6-drawer dresser"], "instruction_attributes": ["solid wood"], "instruction_options": ["espresso"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34P041I", "worker_id": "A2RBF3IIJP15IH"}], "B00AW98LMI": [{"asin": "B00AW98LMI", "instruction": "i want a biscuit revlon colorstay concealer for dark circles.", "attributes": ["long lasting", "high quality", "dark circles"], "options": ["color: biscuit"], "instruction_attributes": ["dark circles"], "instruction_options": ["biscuit"], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO9N33T", "worker_id": "A2RBF3IIJP15IH"}], "B08XWZSS3T": [{"asin": "B08XWZSS3T", "instruction": "i need a 38mm smartwatch case with glass screen", "attributes": ["compatible apple", "easy install", "glass screen", "tempered glass"], "options": ["color: green | rosegold", "size: 38 mm"], "instruction_attributes": ["glass screen"], "instruction_options": ["38 mm"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI3ETDBW", "worker_id": "AVIEE6LDH0BT5"}], "B08GKKTMP9": [{"asin": "B08GKKTMP9", "instruction": "i would like easy to apply halloween temp zombie tattoos", "attributes": ["easy apply", "non toxic", "long lasting"], "options": ["color: zombie tattoos"], "instruction_attributes": ["easy apply"], "instruction_options": ["zombie tattoos"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBC0J4Q2", "worker_id": "A1WS884SI0SLO4"}], "B09NQC8SNJ": [{"asin": "B09NQC8SNJ", "instruction": "i am looking for a small slim fit nightgowns & sleepshirts", "attributes": ["slim fit", "quality polyester", "unique design"], "options": ["color: off-white", "size: small"], "instruction_attributes": ["slim fit"], "instruction_options": ["small"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F71V5PM", "worker_id": "A9QRQL9CFJBI7"}], "B09PNGB456": [{"asin": "B09PNGB456", "instruction": "i want a abstract wall art with the boho color", "attributes": ["mid century", "long lasting", "living room", "dining room"], "options": ["color: boho decor abstract wall art"], "instruction_attributes": ["dining room"], "instruction_options": ["boho decor abstract wall art"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PEIBUY", "worker_id": "AVIEE6LDH0BT5"}], "B08F5G34L1": [{"asin": "B08F5G34L1", "instruction": "i want a pair of 7.5 gray shoes with moisture wicking.", "attributes": ["slip resistant", "moisture wicking", "steel toe", "lace closure"], "options": ["color: grey | black | white", "size: 7.5"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["grey | black | white", "7.5"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E97HXF", "worker_id": "A1WS884SI0SLO4"}], "B09KXVVQ88": [{"asin": "B09KXVVQ88", "instruction": "i would like a high resolution tablet", "attributes": ["dual band", "high resolution", "high definition"], "options": [""], "instruction_attributes": ["high resolution"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL32AVN", "worker_id": "A2ECRNQ3X5LEXD"}], "B08M5XCD52": [{"asin": "B08M5XCD52", "instruction": "i want xx-large biker shorts for women high waist.", "attributes": ["moisture wicking", "high waist"], "options": ["color: spacedye orange", "size: xx-large"], "instruction_attributes": ["high waist"], "instruction_options": ["xx-large"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGOPO04", "worker_id": "A2RBF3IIJP15IH"}], "B00ME8CKBS": [{"asin": "B00ME8CKBS", "instruction": "search for an ac adapter with output protection.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSNI8B7", "worker_id": "A15ERD4HOFEPHM"}], "B0742LVGX7": [{"asin": "B0742LVGX7", "instruction": "i want to buy a skin cream which is fragrance free and it is for smoothing eye contour.", "attributes": ["anti aging", "fragrance free", "dark circles"], "options": ["style name: smoothing eye contour"], "instruction_attributes": ["fragrance free"], "instruction_options": ["smoothing eye contour"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQH791C", "worker_id": "AJY5G987IRT25"}], "B09J13M3P9": [{"asin": "B09J13M3P9", "instruction": "i would like a 69 wide by 36 tall gray roller shade that is eco friendly.", "attributes": ["eco friendly", "stainless steel", "living room"], "options": ["color: gray light filtering", "size: 69w x 36h"], "instruction_attributes": ["eco friendly"], "instruction_options": ["gray light filtering", "69w x 36h"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQNDE10T", "worker_id": "A1WS884SI0SLO4"}], "B07CMWK5SV": [{"asin": "B07CMWK5SV", "instruction": "i am looking for short sleeve medium size blush t shirt tops blouse for women", "attributes": ["short sleeve", "polyester cotton"], "options": ["color: blush", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["blush", "medium"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMZCSA4", "worker_id": "A258PTOZ3D2TQR"}], "B08QJ9WXGB": [{"asin": "B08QJ9WXGB", "instruction": "i'm looking for a band for my apple watch that will fit at 38, 40 or 41mm that is easy for me to install.", "attributes": ["compatible apple", "quick release", "easy install"], "options": ["color: green arrow", "size: 38mm | 40mm | 41mm"], "instruction_attributes": ["easy install"], "instruction_options": ["38mm | 40mm | 41mm"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1HOXC8", "worker_id": "A2JP9IKRHNLRPI"}, {"asin": "B08QJ9WXGB", "instruction": "i am looking for stretchy band compatible with apple watch band 42mm", "attributes": ["compatible apple", "quick release", "easy install"], "options": ["color: colorful rope", "size: 42mm | 44mm | 45mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["42mm | 44mm | 45mm"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UUDG1L", "worker_id": "A258PTOZ3D2TQR"}], "B07ZQBJFK4": [{"asin": "B07ZQBJFK4", "instruction": "i am looking for a pair of women's red and green machine washable pants with pockets.", "attributes": ["wide leg", "machine washable", "loose fit", "hand wash", "machine wash", "high waist", "daily wear"], "options": ["color: red+green", "size: 3x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["red+green"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FK5ELA", "worker_id": "A1EREKSZAA9V7B"}], "B06XQV18WL": [{"asin": "B06XQV18WL", "instruction": "i want to find a beige set of blackout curtains that are 54 inches in width and 72 inches in length for my living room.", "attributes": ["white item", "living room"], "options": ["color: beige", "size: w54 x l72"], "instruction_attributes": ["living room"], "instruction_options": ["beige", "w54 x l72"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AP9OE0", "worker_id": "A345TDMHP3DQ3G"}], "B096RTNQFS": [{"asin": "B096RTNQFS", "instruction": "i'm looking for an easy to use case for iphone 12 pro max in color black.", "attributes": ["easy use", "wireless charging"], "options": ["color: black"], "instruction_attributes": ["easy use"], "instruction_options": ["black"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4MB89R", "worker_id": "A62B826XMLK7K"}], "B0978XC32J": [{"asin": "B0978XC32J", "instruction": "i am interested in buying sparkling water which is made of simple ingredients and has raspberry lime flavor.", "attributes": ["gluten free", "simple ingredients"], "options": ["flavor name: raspberry lime"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["raspberry lime"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCK34DNI", "worker_id": "AJY5G987IRT25"}, {"asin": "B0978XC32J", "instruction": "i am looking for gluten free water. please choose black cherry flavor.", "attributes": ["gluten free", "simple ingredients"], "options": ["flavor name: black cherry"], "instruction_attributes": ["gluten free"], "instruction_options": ["black cherry"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZH3MK6", "worker_id": "A3FG5PQHG5AH3Y"}], "B08YDPFDJL": [{"asin": "B08YDPFDJL", "instruction": "i want to buy a cable for guitar which is gold plated is a splitter cord with a length of 50ft.", "attributes": ["gold plated", "aluminum alloy"], "options": ["color: 1 | 8 to 2x1 | 4 y splitter cord", "size: 50ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["1 | 8 to 2x1 | 4 y splitter cord", "50ft"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNYAC0US", "worker_id": "AJY5G987IRT25"}], "B09MZLPKFJ": [{"asin": "B09MZLPKFJ", "instruction": "i am looking for a 4 pack of white chocolate macadamia cookies that are chipmonk cookies brand, low carb and gluten free.", "attributes": ["low carb", "high protein", "gluten free", "grain free", "low sugar", "low calorie", "sugar free", "quality ingredients"], "options": ["color: white chocolate macadamia", "size: 4 pack"], "instruction_attributes": ["low carb", "gluten free"], "instruction_options": ["white chocolate macadamia", "4 pack"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDBA64YD", "worker_id": "AK3JMCIGU8MLU"}], "B09263DSYV": [{"asin": "B09263DSYV", "instruction": "screen protector: 41\"w x 72\"h easy to install", "attributes": ["easy install", "easy clean"], "options": ["color: beige", "size: 41\"w x 72\"h"], "instruction_attributes": ["easy install"], "instruction_options": ["41\"w x 72\"h"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5ZF4FF", "worker_id": "A3TTGSUBIK1YCL"}], "B01M6YL425": [{"asin": "B01M6YL425", "instruction": "i am looking for white color floor lamps having bronze finish.", "attributes": ["assembly required", "bronze finish", "glass shade"], "options": ["color: white | white"], "instruction_attributes": ["bronze finish"], "instruction_options": ["white | white"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHRAFC04", "worker_id": "A1Q8PPQQCWGY0D"}], "B01FR6K40C": [{"asin": "B01FR6K40C", "instruction": "looking for keto friendly jumbo sunflower seeds", "attributes": ["keto friendly", "dietary fiber"], "options": [""], "instruction_attributes": ["keto friendly"], "instruction_options": [], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGHN9SZ", "worker_id": "A10OGH5CQBXL5N"}], "B08MXC3R4R": [{"asin": "B08MXC3R4R", "instruction": "i'm looking for a cheese platter that i can include in a gift basket.", "attributes": ["perfect gift", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTIRD5F", "worker_id": "A2JP9IKRHNLRPI"}], "B08TC5FP4B": [{"asin": "B08TC5FP4B", "instruction": "i am looking for some red heart cupcake toppers for a birthday cake.", "attributes": ["valentine day", "cupcake picks", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTURE58", "worker_id": "A1EREKSZAA9V7B"}], "B083JY7VQ7": [{"asin": "B083JY7VQ7", "instruction": "i'm looking for a size 12, casual woman's dress without sleeves.", "attributes": ["imported zipper", "polyester spandex", "dry clean"], "options": ["color: ochre tulip sleeve", "size: 12"], "instruction_attributes": ["dry clean"], "instruction_options": ["12"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGG8MSP", "worker_id": "A2JP9IKRHNLRPI"}], "B007W9G3FS": [{"asin": "B007W9G3FS", "instruction": "i want a bottle of act total care alcohol free mouthwash.", "attributes": ["alcohol free", "bad breath"], "options": [""], "instruction_attributes": ["alcohol free"], "instruction_options": [], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUFF7LVM", "worker_id": "A2RBF3IIJP15IH"}], "B0999K1GCN": [{"asin": "B0999K1GCN", "instruction": "i want to find a blue toothbrush that can help me take care of my oral hygiene.", "attributes": ["teeth whitening", "oral hygiene"], "options": ["color: blue b09"], "instruction_attributes": ["oral hygiene"], "instruction_options": ["blue b09"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVQ9LXJ", "worker_id": "A345TDMHP3DQ3G"}], "B07QJ1GBZ3": [{"asin": "B07QJ1GBZ3", "instruction": "hello, i'm looking for dermatologist approved sunblock that leaves no scent? also, i want 3.4 fl oz", "attributes": ["dermatologist tested", "fragrance free"], "options": ["size: 3.4 fl oz"], "instruction_attributes": ["dermatologist tested", "fragrance free"], "instruction_options": ["3.4 fl oz"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKPVPVB", "worker_id": "A2TRV8SEM003GG"}], "B08FRM5ZCT": [{"asin": "B08FRM5ZCT", "instruction": "i need bread that is gluten free and bbq cheddar flavored", "attributes": ["gluten free", "protein serving", "simple ingredients", "source vitamin"], "options": ["flavor: bbq cheddar", "size: 0.8 ounce (pack of 36)", "style: crackers + baking mix"], "instruction_attributes": ["gluten free"], "instruction_options": ["bbq cheddar"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS6VG9O", "worker_id": "A2ECRNQ3X5LEXD"}], "B074KJ5LD3": [{"asin": "B074KJ5LD3", "instruction": "i would like a pair of 38 wide by 28 long standard dark indigo flex jeans that are regular fit.", "attributes": ["day comfort", "machine wash", "regular fit", "imported zipper", "button closure"], "options": ["color: dark indigo flex", "size: 38w x 28l", "special size: standard"], "instruction_attributes": ["regular fit"], "instruction_options": ["dark indigo flex", "38w x 28l", "standard"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINX227F", "worker_id": "A1WS884SI0SLO4"}], "B000MHCDWO": [{"asin": "B000MHCDWO", "instruction": "i'm looking for a twelve pack of 1.5 ounce packages of almonds that are high in protein.", "attributes": ["high protein", "source vitamin"], "options": ["flavor name: spicy dill pickle", "size: 1.5 ounce (pack of 12)"], "instruction_attributes": ["high protein"], "instruction_options": ["1.5 ounce (pack of 12)"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PEMBU2", "worker_id": "A2JP9IKRHNLRPI"}], "B071ZZB5QC": [{"asin": "B071ZZB5QC", "instruction": "i would like a 16 inch by 16 inch yellow gray throw pillow cover that is machine washable.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: yellow grey", "size: 16\" x 16\""], "instruction_attributes": ["machine washable"], "instruction_options": ["yellow grey", "16\" x 16\""], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYH2822", "worker_id": "A1WS884SI0SLO4"}], "B097TQG3F6": [{"asin": "B097TQG3F6", "instruction": "i need white walking shoes with arch support.", "attributes": ["loose fit", "arch support", "closed toe", "ankle strap"], "options": ["color: white", "size: 6.5-7"], "instruction_attributes": ["arch support"], "instruction_options": ["white"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRWK2YP", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BKYG8W9": [{"asin": "B08BKYG8W9", "instruction": "i am looking for blue dragonfly color wall light for my living room.", "attributes": ["easy install", "light fixture", "living room"], "options": ["color: blue dragonfly"], "instruction_attributes": ["living room"], "instruction_options": ["blue dragonfly"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO9T2RB", "worker_id": "A1Q8PPQQCWGY0D"}], "B08G4ZNRGP": [{"asin": "B08G4ZNRGP", "instruction": "i need hands free matte black cell phone holder for car dashboard windshield", "attributes": ["hands free", "carbon fiber"], "options": ["color: matte black"], "instruction_attributes": ["hands free"], "instruction_options": ["matte black"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXC6FCD", "worker_id": "A258PTOZ3D2TQR"}], "B095N7NT78": [{"asin": "B095N7NT78", "instruction": "i want silver cooki rhinestone open toe sandals.", "attributes": ["open toe", "teen girls", "daily wear"], "options": ["color: z92 silver", "size: 6.5-7"], "instruction_attributes": ["open toe"], "instruction_options": ["z92 silver"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FH4LZ4A", "worker_id": "A2RBF3IIJP15IH"}], "B078HV1Y6J": [{"asin": "B078HV1Y6J", "instruction": "i would like a bpa free jar.", "attributes": ["leak proof", "bpa free"], "options": [""], "instruction_attributes": ["bpa free"], "instruction_options": [], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIJGVFM", "worker_id": "A1WS884SI0SLO4"}], "B09CW73S5Z": [{"asin": "B09CW73S5Z", "instruction": "may i have machine wash, short sleeve of lands' end men's short sleeve super soft supima polo shirt, the large size.", "attributes": ["machine washable", "machine wash", "short sleeve", "quality materials", "button closure", "long sleeve"], "options": ["color: golden candle light", "size: large"], "instruction_attributes": ["machine wash", "short sleeve"], "instruction_options": ["large"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA508AF", "worker_id": "A1IL2K0ELYI090"}], "B09GM8S6GJ": [{"asin": "B09GM8S6GJ", "instruction": "i am looking for a pair of easy to assemble beige chairs for my living room.", "attributes": ["button tufted", "high density", "easy assemble", "solid wood", "living room"], "options": ["color: beige", "item package quantity: 1"], "instruction_attributes": ["easy assemble", "living room"], "instruction_options": ["beige"], "assignment_id": "3WR9XG3T6ELTMDZQ305L7J9G7BT478", "worker_id": "A1EREKSZAA9V7B"}], "B094RC6NSX": [{"asin": "B094RC6NSX", "instruction": "i want a pair of size 7 wide taupe loafers with arch support.", "attributes": ["arch support", "relaxed fit"], "options": ["color: taupe", "size: 7 wide"], "instruction_attributes": ["arch support"], "instruction_options": ["taupe", "7 wide"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21R3FQE", "worker_id": "A1WS884SI0SLO4"}], "B004C0JXD4": [{"asin": "B004C0JXD4", "instruction": "i need a pack of long lasting permanent hair dye in a cr\u00e8me format; my shade is 6rb light reddish brown.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 6rb light reddish brown", "size: 1 count (pack of 1)"], "instruction_attributes": ["long lasting", "permanent hair", "hair dye"], "instruction_options": ["6rb light reddish brown", "1 count (pack of 1)"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBJNDJ2", "worker_id": "A3LIIE572Z4OG7"}], "B084HLXLKG": [{"asin": "B084HLXLKG", "instruction": "i want to get some low calorie margarita mix. look for a four pack.", "attributes": ["low calorie", "low carb", "gluten free"], "options": ["flavor: margarita", "size: 32 fl oz (pack of 4)"], "instruction_attributes": ["low calorie"], "instruction_options": ["margarita", "32 fl oz (pack of 4)"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVL51PF", "worker_id": "AR9AU5FY1S3RO"}], "B08GM7DTFP": [{"asin": "B08GM7DTFP", "instruction": "i need a pack of 2 fine-tooth dressing combs that are effective in styling as well as preventing hair loss.", "attributes": ["hair styling", "hair loss"], "options": ["color: a-tortoiseshell", "size: 2 pack"], "instruction_attributes": ["hair styling", "hair loss"], "instruction_options": ["2 pack"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OLAL5HH", "worker_id": "A3LIIE572Z4OG7"}], "B081DB3BKN": [{"asin": "B081DB3BKN", "instruction": "i am looking for trader joe's chocolate covered shortbread cookies.", "attributes": ["trader joe", "chocolate covered"], "options": [""], "instruction_attributes": ["trader joe", "chocolate covered"], "instruction_options": [], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OZ4YEH", "worker_id": "A1EREKSZAA9V7B"}], "B093KD454D": [{"asin": "B093KD454D", "instruction": "i'm looking for a laundry bag that is designed for delicate blouses and hosiery.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UYUY0V", "worker_id": "AFU00NU09CFXE"}], "B000XB34TK": [{"asin": "B000XB34TK", "instruction": "make this purchase for me: david's cookies - 24 fresh baked chocolate cookies gourmet gift basket, assorted flavors.tks", "attributes": ["perfect gift", "gift basket"], "options": ["flavor name: assorted flavors", "size: 12 count (pack of 1)"], "instruction_attributes": ["gift basket"], "instruction_options": ["assorted flavors"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV6GHB3", "worker_id": "A15IJ20C3R4HUO"}, {"asin": "B000XB34TK", "instruction": "i need chocolate chunk cookies for my gift basket.", "attributes": ["perfect gift", "gift basket"], "options": ["flavor name: chocolate chunk", "size: 24 count"], "instruction_attributes": ["gift basket"], "instruction_options": ["chocolate chunk"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LZQDC0", "worker_id": "AVIEE6LDH0BT5"}], "B09F2DS41B": [{"asin": "B09F2DS41B", "instruction": "find bluetooth speaks with stereo sound", "attributes": ["water resistant", "stereo sound", "wireless bluetooth"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95W5QXM", "worker_id": "AVIEE6LDH0BT5"}], "B09LC168ZB": [{"asin": "B09LC168ZB", "instruction": "i'm looking for a fast charging wireless bluetooth headphone.", "attributes": ["fast charging", "high definition"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L84D26C0", "worker_id": "A3MNXK3VDK37SN"}], "B08LX46PXG": [{"asin": "B08LX46PXG", "instruction": "i am looking for a box of chocolate covered caramels and nuts.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: caramels & nuts", "size: 9.4 ounce (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["caramels & nuts"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI8TT3T", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08LX46PXG", "instruction": "i want russell stover pecan delights for valentine's day.", "attributes": ["chocolate covered", "valentine day", "perfect gift"], "options": ["flavor name: pecan delights", "size: 8.1 ounce (pack of 1)"], "instruction_attributes": ["valentine day"], "instruction_options": ["pecan delights"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYQBZO0", "worker_id": "A2RBF3IIJP15IH"}], "B09RGMG3JW": [{"asin": "B09RGMG3JW", "instruction": "i would like a white 2xl white sleep set with a elastic waist", "attributes": ["slim fit", "hand wash", "machine wash", "elastic waistband", "relaxed fit", "polyester spandex", "laundry bag"], "options": ["color: white", "size: xx-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["white", "xx-large"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVKDZS6", "worker_id": "A1WS884SI0SLO4"}], "B008MWLO4O": [{"asin": "B008MWLO4O", "instruction": "can you find a 10\" high performance 200 watt, osd in-wall sub-woofer that is trimless 8\" and allows me to customize the grill.", "attributes": ["high performance", "easy install"], "options": ["size: trimless 8 in"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "32SCWG5HISEW7674IASH43KF3WC6P9", "worker_id": "AMI0SOF51O3FW"}], "B08VY5WHQB": [{"asin": "B08VY5WHQB", "instruction": "i need a classic fit pastel goth black girl lolita princess court dress with lemon color.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: lemon", "fit type: women", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["lemon"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WZ1A14", "worker_id": "A1IL2K0ELYI090"}], "B08YJML6FS": [{"asin": "B08YJML6FS", "instruction": "i need 16.5 inch dining room chair pads", "attributes": ["super soft", "dining room"], "options": ["color: dinosaur round", "size: 42cm | 16.5in"], "instruction_attributes": ["dining room"], "instruction_options": ["42cm | 16.5in"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK24CTKNU", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PGH5PQK": [{"asin": "B07PGH5PQK", "instruction": "i need a large size white color line art graphic needle sleeve t-shirt for women", "attributes": ["officially licensed", "needle sleeve", "classic fit", "star wars"], "options": ["color: white", "fit type: women", "size: large"], "instruction_attributes": ["needle sleeve"], "instruction_options": ["white", "large"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPNVNJ0", "worker_id": "A258PTOZ3D2TQR"}], "B09RH3JJLF": [{"asin": "B09RH3JJLF", "instruction": "i am looking for a pair of men's khaki cargo shorts with an elastic waist.", "attributes": ["slim fit", "fleece lined", "loose fit", "elastic waist"], "options": ["color: c#khaki", "size: 3x-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["c#khaki"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB18VUL3", "worker_id": "A1EREKSZAA9V7B"}], "B096Y4T4Q6": [{"asin": "B096Y4T4Q6", "instruction": "i would like a pair of size 6.5 black flats with a ankle strap.", "attributes": ["open toe", "light weight", "ankle strap", "soft material", "teen girls"], "options": ["color: #01 black", "size: 6.5-7"], "instruction_attributes": ["ankle strap"], "instruction_options": ["#01 black", "6.5-7"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPG1QWT5", "worker_id": "A1WS884SI0SLO4"}], "B08MVFP7TN": [{"asin": "B08MVFP7TN", "instruction": "can you find me an bulk sized almond joy, gluten free size large.", "attributes": ["individually wrapped", "gluten free"], "options": ["size: large (pack of 1)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLXC9CFD", "worker_id": "AMI0SOF51O3FW"}], "B09SVF8YJ7": [{"asin": "B09SVF8YJ7", "instruction": "i would like to buy a shirt for men which has short sleeves, and is of green color, and the size i want it to be should be medium.", "attributes": ["light weight", "machine washable", "long sleeve", "short sleeve"], "options": ["color: green", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["green", "medium"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CHP0VL", "worker_id": "AJY5G987IRT25"}], "B01I6QA16C": [{"asin": "B01I6QA16C", "instruction": "i am looking for daily casual xx-large cocktail dress, floral color", "attributes": ["daily casual", "cotton spandex"], "options": ["color: 1a-floral-5", "size: xx-large"], "instruction_attributes": ["daily casual"], "instruction_options": ["1a-floral-5", "xx-large"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIOIEF4", "worker_id": "A258PTOZ3D2TQR"}], "B07S9X3LF4": [{"asin": "B07S9X3LF4", "instruction": "i want an agerios moroccan argan oil instant repaired hair mask.", "attributes": ["argan oil", "dry hair", "hair treatment", "damaged hair", "hair loss"], "options": [""], "instruction_attributes": ["argan oil"], "instruction_options": [], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMUW9WR", "worker_id": "A2RBF3IIJP15IH"}], "B08519PB4W": [{"asin": "B08519PB4W", "instruction": "i'm looking for a small sweatshirt with drawstring closure. choose the ones that come in galaxy fox color.", "attributes": ["drawstring closure", "polyester spandex", "dry clean"], "options": ["color: galaxy fox", "size: small"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["galaxy fox", "small"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KS1JL0", "worker_id": "A3MNXK3VDK37SN"}], "B08GLFRSTM": [{"asin": "B08GLFRSTM", "instruction": "i'm looking for acer aspire computer all-in-one bundle accessory.", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["core i5", "intel core", "quad core"], "instruction_options": [], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDBA3Y44", "worker_id": "A21IUUHBSEVB56"}], "B07M88SRG9": [{"asin": "B07M88SRG9", "instruction": "i want to find a toupee to treat hair loss in the 1b65 color.", "attributes": ["easy use", "hair loss"], "options": ["color: 1b65"], "instruction_attributes": ["hair loss"], "instruction_options": ["1b65"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36T2FSUR", "worker_id": "A345TDMHP3DQ3G"}], "B08CRPT6PK": [{"asin": "B08CRPT6PK", "instruction": "i'm looking for a band for my galaxy watch 3 that offers a quick release mechanism and is small and black. i would also accept pink.", "attributes": ["quick release", "high performance"], "options": ["color: small, black | pink", "size: galaxy watch 3 41mm"], "instruction_attributes": ["quick release"], "instruction_options": ["small, black | pink"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP8X7JG", "worker_id": "A2JP9IKRHNLRPI"}], "B08DNC33W4": [{"asin": "B08DNC33W4", "instruction": "i am looking for a pair of dark green throw pillow covers for my living room.", "attributes": ["super soft", "living room"], "options": ["color: dark green", "size: 22x22 inch"], "instruction_attributes": ["living room"], "instruction_options": ["dark green"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8F85AJ", "worker_id": "A1EREKSZAA9V7B"}], "B099LFWBRD": [{"asin": "B099LFWBRD", "instruction": "i would like a 120 wide by 90 long color 8 window panel that is machine washable.", "attributes": ["machine washable", "long lasting"], "options": ["color: color08", "size: 120\" w x 90\" l"], "instruction_attributes": ["machine washable"], "instruction_options": ["color08", "120\" w x 90\" l"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8NMR4T", "worker_id": "A1WS884SI0SLO4"}], "B09HXNBJR2": [{"asin": "B09HXNBJR2", "instruction": "i need large size wine color crew neck short sleeve tendy tops for women", "attributes": ["light weight", "machine washable", "machine wash", "drawstring closure", "relaxed fit", "short sleeve"], "options": ["color: wine", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["wine", "large"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OZAEY3", "worker_id": "A258PTOZ3D2TQR"}], "B09MJZ214X": [{"asin": "B09MJZ214X", "instruction": "i'd like to look for some fast charging, noise cancelling earbuds.", "attributes": ["noise cancelling", "fast charging"], "options": [""], "instruction_attributes": ["noise cancelling", "fast charging"], "instruction_options": [], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PQRQEA", "worker_id": "AR9AU5FY1S3RO"}], "B07XRDQD96": [{"asin": "B07XRDQD96", "instruction": "i want to find a black and white case cover for my iphone, and it needs to feature cats.", "attributes": ["hands free", "case cover"], "options": ["color: black cat white cat"], "instruction_attributes": ["case cover"], "instruction_options": ["black cat white cat"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSSVX0J", "worker_id": "A345TDMHP3DQ3G"}], "B08HQVKW4Z": [{"asin": "B08HQVKW4Z", "instruction": "i'm looking for a pair of rose red, butt-lifting, high-waisted shorts in xx-large that are machine washable and provide tummy control.", "attributes": ["butt lifting", "machine wash", "tummy control", "elastic closure", "high waist", "daily wear"], "options": ["color: rose red snickers", "size: xx-large"], "instruction_attributes": ["butt lifting", "machine wash", "tummy control", "high waist"], "instruction_options": ["rose red snickers", "xx-large"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRY1WPW", "worker_id": "AFU00NU09CFXE"}], "B09BDYCTS4": [{"asin": "B09BDYCTS4", "instruction": "i'm looking for hair growth serum.", "attributes": ["hair growth", "hair loss", "damaged hair"], "options": [""], "instruction_attributes": ["hair loss"], "instruction_options": [], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEQ6KZG", "worker_id": "A21IUUHBSEVB56"}], "B07CWP8QKT": [{"asin": "B07CWP8QKT", "instruction": "i am looking for a high speed 3 foot long usb-c to usb-a cable.", "attributes": ["fast charging", "high speed"], "options": ["color: silver", "size: 3 feet", "style: type-a 2.0"], "instruction_attributes": ["high speed"], "instruction_options": ["3 feet"], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MC5IZYT", "worker_id": "A1EREKSZAA9V7B"}], "B08FCTYKGC": [{"asin": "B08FCTYKGC", "instruction": "i'm locking for motorcycle stereo speakers soundbar.", "attributes": ["power amplifier", "high performance", "plug play"], "options": [""], "instruction_attributes": ["power amplifier"], "instruction_options": [], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V822UK", "worker_id": "A21IUUHBSEVB56"}], "B0893WV92B": [{"asin": "B0893WV92B", "instruction": "i'm looking for a stainless steal quick release 18mm black watch.", "attributes": ["quick release", "water resistant", "stainless steel"], "options": ["color: silver", "size: 18mm"], "instruction_attributes": ["quick release", "stainless steel"], "instruction_options": ["18mm"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNYAA0UQ", "worker_id": "A62B826XMLK7K"}], "B08Y8BV4D1": [{"asin": "B08Y8BV4D1", "instruction": "i want to find a black pair of women's summer sandals for daily wear in a size 9.", "attributes": ["open toe", "teen girls", "daily wear"], "options": ["color: z92 black", "size: 9"], "instruction_attributes": ["daily wear"], "instruction_options": ["z92 black", "9"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHTC6NL8", "worker_id": "A345TDMHP3DQ3G"}], "B09LV2FPV2": [{"asin": "B09LV2FPV2", "instruction": "i need blue cupcake picks for a baby shower.", "attributes": ["cupcake picks", "baby shower"], "options": ["color: blue-1"], "instruction_attributes": ["cupcake picks", "baby shower"], "instruction_options": ["blue-1"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LNMI59", "worker_id": "A1NF6PELRKACS9"}], "B08PV1DVF9": [{"asin": "B08PV1DVF9", "instruction": "i want to buy an office desk chair which has lumbar support and it's grey color.", "attributes": ["heavy duty", "lumbar support"], "options": ["color: grey"], "instruction_attributes": ["lumbar support"], "instruction_options": ["grey"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GO1K933", "worker_id": "AJY5G987IRT25"}], "B09PH3Y4R5": [{"asin": "B09PH3Y4R5", "instruction": "i'm looking for a loose fitting, machine washable blouse in blue. i need an xx large.", "attributes": ["loose fit", "quick drying", "machine washable", "long sleeve", "short sleeve", "laundry bag", "teen girls", "daily wear"], "options": ["color: baodan-a315-blue", "size: xx-large"], "instruction_attributes": ["loose fit", "machine washable"], "instruction_options": ["baodan-a315-blue", "xx-large"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5KDWIR", "worker_id": "AR9AU5FY1S3RO"}], "B09GV7ZLRH": [{"asin": "B09GV7ZLRH", "instruction": "i want a single count of sassy sangria that is hand crafted.", "attributes": ["hand crafted", "perfect gift"], "options": ["flavor name: sassy sangria", "size: 1 count (pack of 1)"], "instruction_attributes": ["hand crafted"], "instruction_options": ["sassy sangria", "1 count (pack of 1)"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRYBWP6", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B09GV7ZLRH", "instruction": "i'm looking for mason jar spirit infusion kit.", "attributes": ["hand crafted", "perfect gift"], "options": ["flavor name: sassy sangria", "size: serves 8"], "instruction_attributes": ["perfect gift"], "instruction_options": ["serves 8"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTY8E4F", "worker_id": "A21IUUHBSEVB56"}], "B07F6QKGX5": [{"asin": "B07F6QKGX5", "instruction": "looking for ottoman bench footstool upholstered faux leather decor for living room also choose color brown faux leather", "attributes": ["faux leather", "living room"], "options": ["color: brown | faux leather"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["brown | faux leather"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB45DXYN", "worker_id": "A10OGH5CQBXL5N"}], "B08Y69MKT8": [{"asin": "B08Y69MKT8", "instruction": "i need some fast charging usb cables that are grey", "attributes": ["fast charging", "high speed"], "options": ["color: grey", "size: 10ft+6.6ft+3.3ft+1ft", "style: 3 pack"], "instruction_attributes": ["fast charging"], "instruction_options": ["grey"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZV2K3E", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HBNQ5BD": [{"asin": "B09HBNQ5BD", "instruction": "i'm looking for x large cotton pajamas that are elastic waist please and thank you", "attributes": ["machine wash", "drawstring closure", "elastic waist"], "options": ["color: white & red", "size: x-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["x-large"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ003PXE", "worker_id": "A2TRV8SEM003GG"}], "B09PZ121JF": [{"asin": "B09PZ121JF", "instruction": "i am looking for some low fat dried apple rings.", "attributes": ["low fat", "low sodium", "kosher certified", "dairy free", "dietary fiber"], "options": ["flavor name: dried apple rings"], "instruction_attributes": ["low fat"], "instruction_options": ["dried apple rings"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYV4OX3N", "worker_id": "A1EREKSZAA9V7B"}], "B01M8MIZMC": [{"asin": "B01M8MIZMC", "instruction": "i want to find a high-definition wireless bluetooth speaker.", "attributes": ["high definition", "wireless bluetooth"], "options": [""], "instruction_attributes": ["high definition", "wireless bluetooth"], "instruction_options": [], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ7EISV", "worker_id": "A345TDMHP3DQ3G"}], "B08KS8CX53": [{"asin": "B08KS8CX53", "instruction": "i'm looking for christmas gift baskets for kids.", "attributes": ["gift basket", "gift set"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPG1KTWW", "worker_id": "ARJDD0Z3R65BD"}], "B09FXKXDGF": [{"asin": "B09FXKXDGF", "instruction": "i am interested in acquiring a bedroom armoire which is eco friendly, and has steel frame, also i want it to be of black color, and the size should be 56\"x18\"x56\".", "attributes": ["eco friendly", "white item", "storage space", "steel frame"], "options": ["color: black", "size: 56\"x18\"x56\""], "instruction_attributes": ["eco friendly", "steel frame"], "instruction_options": ["black", "56\"x18\"x56\""], "assignment_id": "3KB8R4ZV1PHW05V0BIJ2LASFG6TBGO", "worker_id": "AJY5G987IRT25"}], "B08M36NK2J": [{"asin": "B08M36NK2J", "instruction": "i would like to buy office desk chair which has lumbar support and is of grey color.", "attributes": ["heavy duty", "assembly required", "lumbar support"], "options": ["color: grey"], "instruction_attributes": ["lumbar support"], "instruction_options": ["grey"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUYAQJI", "worker_id": "AJY5G987IRT25"}], "B014LC0QRE": [{"asin": "B014LC0QRE", "instruction": "i am searching for women's two button lux dry clean blazer of 16 size charcoal color", "attributes": ["button closure", "dry clean"], "options": ["color: charcoal", "size: 16", "special size: plus size"], "instruction_attributes": ["dry clean"], "instruction_options": ["charcoal", "16"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S57MGY", "worker_id": "A258PTOZ3D2TQR"}], "B09Q5YBJL8": [{"asin": "B09Q5YBJL8", "instruction": "i want blue and eco friendly cenglings sandals for women.", "attributes": ["eco friendly", "high quality", "rose gold"], "options": ["color: blue", "size: 6"], "instruction_attributes": ["eco friendly"], "instruction_options": ["blue"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKS09LGN", "worker_id": "A2RBF3IIJP15IH"}], "B08X6TG3C4": [{"asin": "B08X6TG3C4", "instruction": "i need a hair cutting kit that is multicolored", "attributes": ["water resistant", "easy clean", "hair cutting", "hair dye"], "options": ["color: multi21"], "instruction_attributes": ["hair cutting"], "instruction_options": ["multi21"], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FM73DM", "worker_id": "A2ECRNQ3X5LEXD"}], "B09C5SR9KH": [{"asin": "B09C5SR9KH", "instruction": "i am looking for a pair of women's size 36 eu water shoes with rubber soles.", "attributes": ["stretch fabric", "rubber sole"], "options": ["color: lightning powder", "size: 36 eu"], "instruction_attributes": ["rubber sole"], "instruction_options": ["36 eu"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN5OGO9", "worker_id": "A1EREKSZAA9V7B"}], "B08BRB66FY": [{"asin": "B08BRB66FY", "instruction": "i need 4 vanity light sconces for my bathroom wall that are modern and easy to install.", "attributes": ["easy install", "vanity light", "clear glass", "glass shade"], "options": ["size: 4 light"], "instruction_attributes": ["easy install", "vanity light"], "instruction_options": ["4 light"], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DV3K44", "worker_id": "A3LIIE572Z4OG7"}], "B00110OL08": [{"asin": "B00110OL08", "instruction": "i want a hair removal solution made with natural ingredients.", "attributes": ["clinically proven", "natural ingredients", "sensitive skin"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHE11ES", "worker_id": "A1WS884SI0SLO4"}], "B016ARX1OS": [{"asin": "B016ARX1OS", "instruction": "i want to find a white long-sleeve dress shirt that has a 20 inch neck and a 36 inch sleeve.", "attributes": ["machine washable", "machine wash", "regular fit", "button closure", "long sleeve", "tumble dry"], "options": ["color: white", "size: 20\"-20.5\" neck 36\"-37\" sleeve"], "instruction_attributes": ["long sleeve"], "instruction_options": ["white", "20\"-20.5\" neck 36\"-37\" sleeve"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q400WFYT", "worker_id": "A345TDMHP3DQ3G"}], "B09DK5YFVL": [{"asin": "B09DK5YFVL", "instruction": "i would like a anti perspirant.", "attributes": ["anti perspirant", "dead skin"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q8MKD7", "worker_id": "A1WS884SI0SLO4"}], "B09RVVB3GL": [{"asin": "B09RVVB3GL", "instruction": "product title i wear this size and model.gibobby women's swimsuits tankini bikini, quick dry, extra large size. i need help finding", "attributes": ["quick drying", "quality polyester"], "options": ["color: yellow", "size: x-large"], "instruction_attributes": ["quick drying"], "instruction_options": ["x-large"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQJKCJA", "worker_id": "A15IJ20C3R4HUO"}], "B00F96L14Y": [{"asin": "B00F96L14Y", "instruction": "i am looking for 2 ft x 6 ft runner size area rugs that are easy to clean.", "attributes": ["easy clean", "contemporary design"], "options": ["color: brown | ivory", "size: 2 ft x 6 ft runner"], "instruction_attributes": ["easy clean"], "instruction_options": ["2 ft x 6 ft runner"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8N04RK", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B00F96L14Y", "instruction": "i am looking for a easy clean area rug with 8 ft square. also choose light brown color.", "attributes": ["easy clean", "contemporary design"], "options": ["color: light brown | beige", "size: 8 ft square"], "instruction_attributes": ["easy clean"], "instruction_options": ["light brown | beige", "8 ft square"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRWAXJP", "worker_id": "A2HMEGTAFO0CS8"}], "B07C9JGB4L": [{"asin": "B07C9JGB4L", "instruction": "i want you to help me find maine root handmade ginger soda, 12 fl oz (12 glass bottles) i'm having a hard time finding certified organic. i hope you succeed", "attributes": ["caffeine free", "hand crafted", "certified organic"], "options": ["flavor name: mexicane cola", "size: 12 pack"], "instruction_attributes": ["certified organic"], "instruction_options": ["mexicane cola", "12 pack"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7M15NX", "worker_id": "A15IJ20C3R4HUO"}], "B099NRCQ9P": [{"asin": "B099NRCQ9P", "instruction": "i want to buy waffle cookies which are non gmo and come in a single package and have 28 pieces.", "attributes": ["non gmo", "artificial colors"], "options": ["size: 28 count (single packages)"], "instruction_attributes": ["non gmo"], "instruction_options": ["28 count (single packages)"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KRPUHZ", "worker_id": "AJY5G987IRT25"}], "B0892P1X12": [{"asin": "B0892P1X12", "instruction": "i am looking for baked fresh red velvet cookies that are individually wrapped.", "attributes": ["baked fresh", "individually wrapped", "old fashioned"], "options": [""], "instruction_attributes": ["baked fresh", "individually wrapped"], "instruction_options": [], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOL4TCP", "worker_id": "AK3JMCIGU8MLU"}], "B08WK88CVJ": [{"asin": "B08WK88CVJ", "instruction": "i want to buy dental retainer container which is made of non toxic elements.", "attributes": ["non toxic", "storage case"], "options": [""], "instruction_attributes": ["non toxic"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZQ4Y12", "worker_id": "AJY5G987IRT25"}], "B07YZ3JVL2": [{"asin": "B07YZ3JVL2", "instruction": "i need to find a small end table that is easy to assemble; pick a blue-coated steel frame that won't rust.", "attributes": ["heavy duty", "space saving", "easy assemble", "coated steel", "steel frame"], "options": ["color: blue"], "instruction_attributes": ["easy assemble", "coated steel", "steel frame"], "instruction_options": ["blue"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1M03UU", "worker_id": "A3LIIE572Z4OG7"}], "B08HVN1DFL": [{"asin": "B08HVN1DFL", "instruction": "i am looking for a white computer gaming chair with lumbar support.", "attributes": ["white item", "lumbar support", "pu leather"], "options": ["color: white"], "instruction_attributes": ["white item", "lumbar support"], "instruction_options": ["white"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXW65OC", "worker_id": "A1EREKSZAA9V7B"}], "B08FMY7SKC": [{"asin": "B08FMY7SKC", "instruction": "i need a core i5 optiplex computer", "attributes": ["high speed", "core i5", "intel core"], "options": ["size: 16gb memory | 256gb pcie ssd + 1tb hdd"], "instruction_attributes": ["core i5"], "instruction_options": [], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQKSJRS", "worker_id": "AVIEE6LDH0BT5"}], "B0822WP1MV": [{"asin": "B0822WP1MV", "instruction": "i need a super soft and fluffy duvet cover for my king-sized bed. please choose the black one.", "attributes": ["queen size", "super soft"], "options": ["color: black", "size: king"], "instruction_attributes": ["super soft"], "instruction_options": ["black", "king"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69RVP87", "worker_id": "A3LIIE572Z4OG7"}], "B0089OQ2YM": [{"asin": "B0089OQ2YM", "instruction": "i am looking for a short sleeve fishing shirt with a button closure in the color emerald city and in the size 2x tall.", "attributes": ["short sleeve", "relaxed fit", "button closure"], "options": ["color: emerald city", "size: 2x tall"], "instruction_attributes": ["button closure"], "instruction_options": ["emerald city", "2x tall"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY68J49", "worker_id": "AK3JMCIGU8MLU"}], "B081GSQBW1": [{"asin": "B081GSQBW1", "instruction": "i need a easy to apply nail polish", "attributes": ["easy apply", "easy carry", "nail polish"], "options": ["color: c07"], "instruction_attributes": ["easy apply", "nail polish"], "instruction_options": [], "assignment_id": "33UKMF931KU01WBNV49UKNDQC7GTTK", "worker_id": "AVIEE6LDH0BT5"}, {"asin": "B081GSQBW1", "instruction": "i need some nail polish in the color c08.", "attributes": ["easy apply", "easy carry", "nail polish"], "options": ["color: c08"], "instruction_attributes": ["nail polish"], "instruction_options": ["c08"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL2VVRB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QBXGP2K": [{"asin": "B09QBXGP2K", "instruction": "i need an easy to install 24 millimeter replacement watchband in red.", "attributes": ["quick release", "easy install", "stainless steel"], "options": ["color: red", "size: 24mm"], "instruction_attributes": ["easy install"], "instruction_options": ["red", "24mm"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLOKM0X", "worker_id": "AR9AU5FY1S3RO"}], "B09MFQ5HBY": [{"asin": "B09MFQ5HBY", "instruction": "i'm looking for a ten pack of silver cake toppers for my friend's baby shower.", "attributes": ["party supplies", "baby shower"], "options": ["color: silver"], "instruction_attributes": ["baby shower"], "instruction_options": ["silver"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8N3R4A", "worker_id": "A2JP9IKRHNLRPI"}], "B077NPM47T": [{"asin": "B077NPM47T", "instruction": "look for a mid century pendant light to be installed in my living room. it should be black.", "attributes": ["mid century", "bronze finish", "pendant light", "living room"], "options": ["color: black"], "instruction_attributes": ["mid century", "pendant light", "living room"], "instruction_options": ["black"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95CA8HP1", "worker_id": "A1NF6PELRKACS9"}], "B08JC9MRLL": [{"asin": "B08JC9MRLL", "instruction": "i want dark grey vislily plus-size long sleeve sweaters.", "attributes": ["machine wash", "cotton spandex", "polyester cotton", "long sleeve"], "options": ["color: 16_dark grey", "size: 14 plus"], "instruction_attributes": ["long sleeve"], "instruction_options": ["16_dark grey"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZQ41Y5", "worker_id": "A2RBF3IIJP15IH"}], "B07TSTQ7CS": [{"asin": "B07TSTQ7CS", "instruction": "i want a set of 5 modern height adjustable mid-back bar stool", "attributes": ["height adjustable", "contemporary design"], "options": [""], "instruction_attributes": ["height adjustable"], "instruction_options": [], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPD12IAU", "worker_id": "A1IL2K0ELYI090"}], "B07CHTZ7MS": [{"asin": "B07CHTZ7MS", "instruction": "i am looking for a ready to use full size mattress and box springs.", "attributes": ["ready use", "queen size", "fully assembled", "assembly required", "king size"], "options": ["color: white | gold", "size: full", "style: 4\" foundation"], "instruction_attributes": ["ready use"], "instruction_options": ["full"], "assignment_id": "3TR2532VI040LV46NXNX77Y3UXFJ6V", "worker_id": "A1EREKSZAA9V7B"}], "B01N050LLG": [{"asin": "B01N050LLG", "instruction": "i am looking for sulfate free shampoo that repairs damaged hair.", "attributes": ["sulfate free", "damaged hair"], "options": [""], "instruction_attributes": ["sulfate free", "damaged hair"], "instruction_options": [], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUPG4S5", "worker_id": "AK3JMCIGU8MLU"}], "B019NLUOXE": [{"asin": "B019NLUOXE", "instruction": "i am looking for warm beige color anti aging foundation.", "attributes": ["cruelty free", "anti aging"], "options": ["color: warm beige", "size: 1 fl oz (pack of 2)"], "instruction_attributes": ["anti aging"], "instruction_options": ["warm beige"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36T22USG", "worker_id": "A1Q8PPQQCWGY0D"}, {"asin": "B019NLUOXE", "instruction": "i need a 1 oz bottle of cruelty free foundation that is golden tan.", "attributes": ["cruelty free", "anti aging"], "options": ["color: golden tan", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["golden tan", "1 fl oz (pack of 1)"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OUO3MH", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MWB5DQG": [{"asin": "B09MWB5DQG", "instruction": "i want to find a pink front-button bra in a size 44 that is made of quality polyester.", "attributes": ["hand wash", "lace closure", "quality polyester"], "options": ["color: pink", "size: 44"], "instruction_attributes": ["quality polyester"], "instruction_options": ["pink", "44"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67W1H7FE", "worker_id": "A345TDMHP3DQ3G"}], "B09H2QPDVB": [{"asin": "B09H2QPDVB", "instruction": "find me a spa treatment beauty salon massage bed skirt in blue in the 190*80cm square head size.", "attributes": ["easy clean", "high quality", "beauty salon"], "options": ["color: blue", "size: 190*80cm square head"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3M68NM076SHHJJNJV2W69YKU4E06R1", "worker_id": "AMI0SOF51O3FW"}], "B078C5DYKV": [{"asin": "B078C5DYKV", "instruction": "i am looking for a 108\" x 84\" size panels for living room", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: pink pale pink", "size: 108\" x 84\""], "instruction_attributes": ["living room"], "instruction_options": ["108\" x 84\""], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZHQKLP", "worker_id": "A9QRQL9CFJBI7"}], "B0769G9XH9": [{"asin": "B0769G9XH9", "instruction": "i am looking for brushed nickel color pendant lights that are easy to install.", "attributes": ["height adjustable", "easy install", "brushed nickel", "pendant light", "nickel finish", "glass shade"], "options": ["color: brushed nickel", "size: 3-light"], "instruction_attributes": ["easy install"], "instruction_options": ["brushed nickel"], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB18UUL2", "worker_id": "A1Q8PPQQCWGY0D"}], "B09P3S2JHL": [{"asin": "B09P3S2JHL", "instruction": "i need a long lasting battery pack with fast charging capabilities.", "attributes": ["long lasting", "fast charging"], "options": [""], "instruction_attributes": ["long lasting", "fast charging"], "instruction_options": [], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZ17JZH", "worker_id": "AVIEE6LDH0BT5"}], "B001M0G1XW": [{"asin": "B001M0G1XW", "instruction": "i want to find organic, low fat applesauce that is apple strawberry flavored. it should come in 4 ounce cups in a pack of 4.", "attributes": ["low fat", "ready eat"], "options": ["flavor name: apple strawberry", "size: 4 ounce, 6 count (pack of 4)"], "instruction_attributes": ["low fat"], "instruction_options": ["apple strawberry", "4 ounce, 6 count (pack of 4)"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOMYLM8", "worker_id": "A345TDMHP3DQ3G"}], "B09J165NX5": [{"asin": "B09J165NX5", "instruction": "i want to buy sneaker shoes which are non slop and are comfortable fit with a size of 7.5 .", "attributes": ["non slip", "rubber sole", "comfortable fit", "unique design"], "options": ["size: 7.5"], "instruction_attributes": ["non slip", "comfortable fit"], "instruction_options": ["7.5"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5VQX6T", "worker_id": "AJY5G987IRT25"}], "B088D259Q5": [{"asin": "B088D259Q5", "instruction": "i am looking for a long lasting gold color tablet.", "attributes": ["long lasting", "quad core", "4g lte"], "options": ["color: gold", "style: 4g cellular + wifi"], "instruction_attributes": ["long lasting"], "instruction_options": ["gold"], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LZFCDO", "worker_id": "A1Q8PPQQCWGY0D"}], "B08TW2ZNLX": [{"asin": "B08TW2ZNLX", "instruction": "i want a dark chocolate covered flipz bites bar.", "attributes": ["chocolate covered", "resealable bag"], "options": ["flavor name: dark-chocolate", "size: 3.5 ounce bag (pack of 6)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["dark-chocolate"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XVMNG4", "worker_id": "A2RBF3IIJP15IH"}], "B08NZ18GMQ": [{"asin": "B08NZ18GMQ", "instruction": "i am looking for white 6 inch ceramic plates for my dining room.", "attributes": ["white finish", "dining room"], "options": [""], "instruction_attributes": ["white finish", "dining room"], "instruction_options": [], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL30VA6", "worker_id": "A1EREKSZAA9V7B"}], "B085CD6YJQ": [{"asin": "B085CD6YJQ", "instruction": "i'm looking for a fast wireless charger in blue color.", "attributes": ["fast charging", "wireless charging"], "options": ["color: blue"], "instruction_attributes": ["fast charging", "wireless charging"], "instruction_options": ["blue"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPDLOCW", "worker_id": "A3MNXK3VDK37SN"}], "B085125HY7": [{"asin": "B085125HY7", "instruction": "i want to buy video recorders which can detect motion and come with a size of nv4108-1tb", "attributes": ["plug play", "motion detection"], "options": ["size: nv4108-1tb"], "instruction_attributes": ["motion detection"], "instruction_options": ["nv4108-1tb"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD4XIC6", "worker_id": "AJY5G987IRT25"}], "B09RPC54JG": [{"asin": "B09RPC54JG", "instruction": "i want large snowshine men's low rise boxer briefs.", "attributes": ["low rise", "hand wash"], "options": ["color: navy", "size: large"], "instruction_attributes": ["low rise"], "instruction_options": ["large"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4F7QRD", "worker_id": "A2RBF3IIJP15IH"}], "B08BX2C29N": [{"asin": "B08BX2C29N", "instruction": "i need a medium pant that has an elastic waist", "attributes": ["elastic waist", "elastic closure", "gym workout"], "options": ["color: bitch please", "size: medium"], "instruction_attributes": ["elastic waist"], "instruction_options": ["medium"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHAD3DOR", "worker_id": "A2ECRNQ3X5LEXD"}], "B085GG5X4X": [{"asin": "B085GG5X4X", "instruction": "i need a quick drying swim suit cover up in a size large. get the watermelon one.", "attributes": ["quick drying", "quality polyester", "tummy control"], "options": ["color: watermelon", "size: large"], "instruction_attributes": ["quick drying"], "instruction_options": ["watermelon", "large"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM494J4XE", "worker_id": "AR9AU5FY1S3RO"}], "B09KG97T9N": [{"asin": "B09KG97T9N", "instruction": "i am lookong for a colorful2 for screen protectors wihich is easy ti install", "attributes": ["high resolution", "easy install"], "options": ["color: colorful2", "size: iphone 13 6.1\" | iphone 13 mini 5.4\""], "instruction_attributes": ["easy install"], "instruction_options": ["colorful2"], "assignment_id": "382M9COHESPDCQ8F5EA9QXZRSBMUE8", "worker_id": "A9QRQL9CFJBI7"}], "B007HQFSMU": [{"asin": "B007HQFSMU", "instruction": "find beef jerkys made from grass feed animals.", "attributes": ["grass fed", "gluten free"], "options": [""], "instruction_attributes": ["grass fed"], "instruction_options": [], "assignment_id": "3DR23U6WEGOYCDTQ59KZL1DP9XRTES", "worker_id": "AVIEE6LDH0BT5"}], "B01B1ZVPR4": [{"asin": "B01B1ZVPR4", "instruction": "i would like a 30\" wide vintage leather grey headboard that is wall mounted.", "attributes": ["queen size", "wall mounted"], "options": ["color: vintage leather light grey", "size: 30'' wide"], "instruction_attributes": ["wall mounted"], "instruction_options": ["vintage leather light grey", "30'' wide"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMO5VX6", "worker_id": "A1WS884SI0SLO4"}], "B09Q94CBZY": [{"asin": "B09Q94CBZY", "instruction": "i would like a large gray pair of leggings with a high waist.", "attributes": ["butt lifting", "high waist", "tummy control"], "options": ["color: gray", "size: large"], "instruction_attributes": ["high waist"], "instruction_options": ["gray", "large"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DF2WDM", "worker_id": "A1WS884SI0SLO4"}], "B07VTDDHWV": [{"asin": "B07VTDDHWV", "instruction": "i'm looking for a stereo headset for my nintendo switch that is both yellow and blue.", "attributes": ["noise cancelling", "stereo sound"], "options": ["color: yellow | blue", "pattern name: headset + just dance 2022"], "instruction_attributes": ["stereo sound"], "instruction_options": ["yellow | blue"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQG3JAJ", "worker_id": "A2JP9IKRHNLRPI"}], "B08PNQB4TN": [{"asin": "B08PNQB4TN", "instruction": "i am in need of elastic waist winter active running joggers pants of small size and dark grey color", "attributes": ["fleece lined", "straight leg", "machine wash", "drawstring closure", "cotton spandex", "unique design", "elastic waist", "relaxed fit"], "options": ["color: dark grey", "size: small"], "instruction_attributes": ["elastic waist"], "instruction_options": ["dark grey", "small"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8F75AI", "worker_id": "A258PTOZ3D2TQR"}], "B08SJ9C7P8": [{"asin": "B08SJ9C7P8", "instruction": "i'm looking for plant based zero sugar energy drinks in a four flavor variety pack.", "attributes": ["plant based", "zero sugar"], "options": ["flavor name: 4 flavor variety pack"], "instruction_attributes": ["plant based", "zero sugar"], "instruction_options": ["4 flavor variety pack"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35RFGUP", "worker_id": "AR9AU5FY1S3RO"}], "B08P1K7X1L": [{"asin": "B08P1K7X1L", "instruction": "i am looking for black daybed frame twin size with upholstered sideboard for living room", "attributes": ["twin size", "space saving", "contemporary style", "box spring", "living room"], "options": ["color: black daybed"], "instruction_attributes": ["twin size", "living room"], "instruction_options": ["black daybed"], "assignment_id": "3ERMJ6L4D929Q3OW945HTDQGT2S7MK", "worker_id": "A258PTOZ3D2TQR"}], "B09Q5QR4D9": [{"asin": "B09Q5QR4D9", "instruction": "i want to find a grey bunk bed frame with shelves made out of solid wood.", "attributes": ["white item", "assembly required", "box spring", "solid wood"], "options": ["color: grey", "size: full over full with shelves"], "instruction_attributes": ["solid wood"], "instruction_options": ["grey", "full over full with shelves"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSMS26Q", "worker_id": "A345TDMHP3DQ3G"}], "B096PJ6ZTW": [{"asin": "B096PJ6ZTW", "instruction": "i am looking for black, open toe sandals in size 9.", "attributes": ["open toe", "closed toe"], "options": ["color: z35 black", "size: 9"], "instruction_attributes": ["open toe"], "instruction_options": ["z35 black", "9"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7R407W5", "worker_id": "AK3JMCIGU8MLU"}], "B09M95Q3LX": [{"asin": "B09M95Q3LX", "instruction": "i am looking for a pair of women's medium sized machine wash biker shorts.", "attributes": ["machine wash", "wash cold", "elastic closure", "cotton spandex", "elastic waistband"], "options": ["color: fewpts0008 americano", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["medium"], "assignment_id": "3O6CYIULEOB7TQU6QE4FC36RZF7UW4", "worker_id": "A1EREKSZAA9V7B"}], "B09RQQ8V11": [{"asin": "B09RQQ8V11", "instruction": "i am looking for s multicolor high quality clips", "attributes": ["non slip", "high quality"], "options": ["color: a-240pcs", "size: multicolor"], "instruction_attributes": ["high quality"], "instruction_options": ["multicolor"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QGFM1P", "worker_id": "A9QRQL9CFJBI7"}], "B09H2W7448": [{"asin": "B09H2W7448", "instruction": "i am looking for amplifiers that have high power and performance.", "attributes": ["power amplifier", "high power", "high performance"], "options": [""], "instruction_attributes": ["power amplifier", "high power", "high performance"], "instruction_options": [], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1MDGTGJ", "worker_id": "A1NF6PELRKACS9"}], "B085MBZH9F": [{"asin": "B085MBZH9F", "instruction": "i want to find open toe hosantel women's flip flops that are size 8, floral and multi-color.", "attributes": ["open toe", "high heel", "closed toe", "ankle strap", "button closure"], "options": ["color: x-05 multicolor", "size: 39=us:8"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3WQ3B2KGEJQZWQ5XTZYZENO9EHH1BL", "worker_id": "AMI0SOF51O3FW"}], "B003XM73P2": [{"asin": "B003XM73P2", "instruction": "i want a 6 foot long gold plated hdmi cable.", "attributes": ["blu ray", "high speed", "ultra hd", "gold plated"], "options": ["size: 6ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["6ft"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV6JHB6", "worker_id": "A1WS884SI0SLO4"}], "B002ZANMHG": [{"asin": "B002ZANMHG", "instruction": "i'm looking for natural java beverage mix.", "attributes": ["quality ingredients", "artificial flavors"], "options": ["flavor name: belgian style dark", "size: 3.5 pound (pack of 1)"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["3.5 pound (pack of 1)"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMMLIZ7", "worker_id": "A21IUUHBSEVB56"}], "B089LQ2T5V": [{"asin": "B089LQ2T5V", "instruction": "i need a women's high waist swimsuit in a fashionable tropical-print design; i'm a size medium.", "attributes": ["high waist", "fashion design"], "options": ["color: floral | blackd5", "size: medium"], "instruction_attributes": ["high waist", "fashion design"], "instruction_options": ["medium"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDW78YT", "worker_id": "A3LIIE572Z4OG7"}], "B078SPT9K8": [{"asin": "B078SPT9K8", "instruction": "i need to find a box of trader joe seed crackers that support my gluten-free diet.", "attributes": ["trader joe", "gluten free"], "options": [""], "instruction_attributes": ["trader joe", "gluten free"], "instruction_options": [], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRW82YD", "worker_id": "A3LIIE572Z4OG7"}], "B09STP6P85": [{"asin": "B09STP6P85", "instruction": "i want a 2xl black short sleeve shirt.", "attributes": ["moisture wicking", "slim fit", "short sleeve"], "options": ["color: shirts-128- black", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["shirts-128- black", "xx-large"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ2750175A4PQ", "worker_id": "A1WS884SI0SLO4"}], "B076B3JX4R": [{"asin": "B076B3JX4R", "instruction": "i'm looking for an 8 oz, paraben free hair regrowth shampoo.", "attributes": ["paraben free", "hair treatment", "damaged hair"], "options": ["size: 8 fl oz (pack of 1)"], "instruction_attributes": ["paraben free"], "instruction_options": ["8 fl oz (pack of 1)"], "assignment_id": "3F0BG9B9M0X9KKDAS7TSN8DN2C37Y7", "worker_id": "AK3JMCIGU8MLU"}], "B09MQC3JX7": [{"asin": "B09MQC3JX7", "instruction": "i want a green table that is 1080p hd.", "attributes": ["high definition", "1080p hd"], "options": ["color: green"], "instruction_attributes": ["1080p hd"], "instruction_options": ["green"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADX1ZYMA", "worker_id": "A1WS884SI0SLO4"}], "B09M34J5W1": [{"asin": "B09M34J5W1", "instruction": "i want a rose gold leotop screen protector compatible with apple watch.", "attributes": ["compatible apple", "easy install"], "options": ["color: rose gold", "size: 42 mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["rose gold"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FKZLEB", "worker_id": "A2RBF3IIJP15IH"}], "B093VCC7L8": [{"asin": "B093VCC7L8", "instruction": "i am interested in buying a t-shirt for women, which is classic fit, and is of black color, while it's size should be 2t.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: black", "fit type: women", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["black", "women", "2t"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZXO409", "worker_id": "AJY5G987IRT25"}], "B09N9LCNPM": [{"asin": "B09N9LCNPM", "instruction": "i need pink color valentine day cake toppers", "attributes": ["birthday party", "valentine day", "cupcake picks", "baby shower"], "options": ["color: pink"], "instruction_attributes": ["valentine day"], "instruction_options": ["pink"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTN4LTP5", "worker_id": "A258PTOZ3D2TQR"}], "B098XHJNWM": [{"asin": "B098XHJNWM", "instruction": "i am looking for a pair of women's size 6.5 to 7 open toe sandals.", "attributes": ["open toe", "closed toe"], "options": ["color: z1#silver", "size: 6.5-7"], "instruction_attributes": ["open toe"], "instruction_options": ["6.5-7"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7ZMCUA", "worker_id": "A1EREKSZAA9V7B"}], "B088X5GYP1": [{"asin": "B088X5GYP1", "instruction": "i'm looking for a 12 pack of gluten free, keto friendly, low carb granola bars", "attributes": ["dairy free", "gluten free", "soy free", "keto friendly", "low carb", "plant based"], "options": ["size: chocolate (12 pack)"], "instruction_attributes": ["gluten free", "keto friendly", "low carb"], "instruction_options": ["chocolate (12 pack)"], "assignment_id": "30X31N5D6E0U70ZZ04DNFDRCMZGASQ", "worker_id": "AK3JMCIGU8MLU"}], "B0158VB6BC": [{"asin": "B0158VB6BC", "instruction": "i am looking for a table lamp for my living room.", "attributes": ["brushed nickel", "nickel finish", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTXQ7L6", "worker_id": "A1Q8PPQQCWGY0D"}], "B07NN1SJZW": [{"asin": "B07NN1SJZW", "instruction": "i need a hands free portable bluetooth speaker with stereo sound.", "attributes": ["hands free", "stereo sound"], "options": [""], "instruction_attributes": ["hands free", "stereo sound"], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN6AI5GS", "worker_id": "AR9AU5FY1S3RO"}], "B0863GF7PC": [{"asin": "B0863GF7PC", "instruction": "i want a black kodak pixpro az401 with optical zoom.", "attributes": ["easy use", "optical zoom"], "options": ["color: black"], "instruction_attributes": ["optical zoom"], "instruction_options": ["black"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLLBOCEP", "worker_id": "A2RBF3IIJP15IH"}], "B08W9PD4TM": [{"asin": "B08W9PD4TM", "instruction": "i want a 8 fluid ounce bottle of mint julep mixers made from natural ingredients.", "attributes": ["artificial colors", "quality ingredients", "natural ingredients"], "options": ["flavor: mint julep", "size: 8 fl oz (pack of 2)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["mint julep", "8 fl oz (pack of 2)"], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZ3QCNF", "worker_id": "A1WS884SI0SLO4"}], "B09LD1443P": [{"asin": "B09LD1443P", "instruction": "i want happy birthday cake sunflower toppers.", "attributes": ["birthday cake", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3K772S5NPJL8742V5F3A7IA1Y3LEHS", "worker_id": "A2RBF3IIJP15IH"}], "B08BNW7GZG": [{"asin": "B08BNW7GZG", "instruction": "i want a rose gold and non slip fueyou makeup brush set.", "attributes": ["cruelty free", "non slip", "rose gold", "synthetic hair"], "options": ["color: rose gold"], "instruction_attributes": ["non slip"], "instruction_options": ["rose gold"], "assignment_id": "3G2UL9A02OO71034MOY04HTU32D679", "worker_id": "A2RBF3IIJP15IH"}], "B08W1YL8C4": [{"asin": "B08W1YL8C4", "instruction": "i'm looking for a edible cupcakes cookies toppers.", "attributes": ["dairy free", "gluten free", "birthday party"], "options": ["size: 7.5\" round"], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZU5SHI", "worker_id": "A21IUUHBSEVB56"}], "B09Q7LVG2Y": [{"asin": "B09Q7LVG2Y", "instruction": "deep conditioning hair growth hair mask with supplement tablets 180 nos", "attributes": ["clinically proven", "hair growth"], "options": ["size: 180 tablets + elixir"], "instruction_attributes": ["hair growth"], "instruction_options": ["180 tablets + elixir"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8TH0DZ5C", "worker_id": "A258PTOZ3D2TQR"}], "B078SMMN8K": [{"asin": "B078SMMN8K", "instruction": "find a bonsai gift set.", "attributes": ["gift set", "perfect gift"], "options": [""], "instruction_attributes": ["gift set"], "instruction_options": [], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6THUMN7", "worker_id": "AVIEE6LDH0BT5"}], "B09K72BKJJ": [{"asin": "B09K72BKJJ", "instruction": "i want to buy hydration lotion which has a size suitable for travel and is made of coconut oil.", "attributes": ["travel size", "coconut oil"], "options": [""], "instruction_attributes": ["travel size", "coconut oil"], "instruction_options": [], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UT7EZN", "worker_id": "AJY5G987IRT25"}], "B095C9WX7T": [{"asin": "B095C9WX7T", "instruction": "i am looking for a black stainless steel smartwatch bands", "attributes": ["compatible apple", "stainless steel"], "options": ["color: black", "size: 42mm | 44mm"], "instruction_attributes": ["stainless steel"], "instruction_options": ["black"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCTW7IS", "worker_id": "A9QRQL9CFJBI7"}], "B09KHDYYRH": [{"asin": "B09KHDYYRH", "instruction": "i'm looking for a 24 pack of cupcake toppers for my daughter's baby shower.", "attributes": ["birthday party", "baby shower", "cupcake picks", "party supplies"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYMJ6LJ", "worker_id": "A2JP9IKRHNLRPI"}], "B07RV33SBH": [{"asin": "B07RV33SBH", "instruction": "i need a pack of 2 high speed cables that support hdmi to dvi and are also compatible with 1080p hd.", "attributes": ["blu ray", "1080p hd", "gold plated", "high speed"], "options": ["color: 2 pack", "size: 10 feet"], "instruction_attributes": ["1080p hd", "high speed"], "instruction_options": ["2 pack"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH157PWHP", "worker_id": "A3LIIE572Z4OG7"}], "B09H2T1JX5": [{"asin": "B09H2T1JX5", "instruction": "i would like some high quality hair claws", "attributes": ["non slip", "high quality", "quality materials"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI725DSN", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MFK9NMD": [{"asin": "B09MFK9NMD", "instruction": "i am looking for lead free candles having 2 pack french lavender scent.", "attributes": ["lead free", "soy wax"], "options": ["scent: 2 pack french lavender"], "instruction_attributes": ["lead free"], "instruction_options": ["2 pack french lavender"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQJCCJ2", "worker_id": "A1Q8PPQQCWGY0D"}], "B08Z3TQLFC": [{"asin": "B08Z3TQLFC", "instruction": "i'm looking for a roller tool that's good for fine lines and aging skin.", "attributes": ["anti aging", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "fine lines"], "instruction_options": [], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNYAK0U0", "worker_id": "AR9AU5FY1S3RO"}], "B09P5ZBCWR": [{"asin": "B09P5ZBCWR", "instruction": "i'm looking for a small portable folding desk that is already fully assembled; it should have a khaki wood finish.", "attributes": ["fully assembled", "high density", "wood finish"], "options": ["color: khaki"], "instruction_attributes": ["fully assembled", "wood finish"], "instruction_options": ["khaki"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTUKKT0", "worker_id": "A3LIIE572Z4OG7"}], "B01HOZO9WS": [{"asin": "B01HOZO9WS", "instruction": "i need nylon spandex pants that are mocha colored.", "attributes": ["wash cold", "machine wash", "tummy control", "nylon spandex"], "options": ["color: mocha", "size: 18"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["mocha"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC8NUKX", "worker_id": "A2ECRNQ3X5LEXD"}], "B087QSW6QW": [{"asin": "B087QSW6QW", "instruction": "i want an ivory pair of bearpaw women's skye boots with rubber soles.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: ivory", "size: 8.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["ivory"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83O4JIJ", "worker_id": "A2RBF3IIJP15IH"}], "B09RFGKR1T": [{"asin": "B09RFGKR1T", "instruction": "find black colored sandals for a teen girl.", "attributes": ["open toe", "closed toe", "teen girls"], "options": ["color: b01 black", "size: 8.5"], "instruction_attributes": ["teen girls"], "instruction_options": ["b01 black"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1I3RXK", "worker_id": "AVIEE6LDH0BT5"}], "B09Q5TJ6ZF": [{"asin": "B09Q5TJ6ZF", "instruction": "i want interestprint women's running shoes with vinyl acetate in size 15.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: multi002", "size: 15"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["15"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZM1O8R", "worker_id": "A2RBF3IIJP15IH"}], "B086XZ3D6Q": [{"asin": "B086XZ3D6Q", "instruction": "i need a low carb brownie mix", "attributes": ["low carb", "grain free", "sugar free", "gluten free"], "options": ["size: 7.4 ounce (pack of 2)", "style: brownie mix"], "instruction_attributes": ["low carb"], "instruction_options": ["brownie mix"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVWT9XB", "worker_id": "A2ECRNQ3X5LEXD"}], "B08ZL8QX27": [{"asin": "B08ZL8QX27", "instruction": "look for a sugar free drink mix that has a banana flavor.", "attributes": ["keto friendly", "low carb", "sugar free", "zero sugar"], "options": ["flavor name: banana"], "instruction_attributes": ["sugar free"], "instruction_options": ["banana"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMHNXDV", "worker_id": "A1NF6PELRKACS9"}], "B01KQ0H7W2": [{"asin": "B01KQ0H7W2", "instruction": "i am looking for a long lasting nail polish.", "attributes": ["long lasting", "nail polish"], "options": [""], "instruction_attributes": ["long lasting", "nail polish"], "instruction_options": [], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GO1V398", "worker_id": "A1EREKSZAA9V7B"}], "B07BDV5PN8": [{"asin": "B07BDV5PN8", "instruction": "i want this food from snack puffs, aged white cheddar. pirate's booty 0.0g trans and gluten free i await your return", "attributes": ["non gmo", "gluten free", "0g trans", "artificial colors"], "options": [""], "instruction_attributes": ["non gmo", "gluten free", "0g trans"], "instruction_options": [], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVLZ1P9", "worker_id": "A15IJ20C3R4HUO"}], "B09N3YZ8PC": [{"asin": "B09N3YZ8PC", "instruction": "i want a blue noldares mens flannel long sleeve shirt.", "attributes": ["slim fit", "machine wash", "long sleeve", "short sleeve", "everyday wear", "daily wear"], "options": ["color: blue", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3LTBVP", "worker_id": "A2RBF3IIJP15IH"}], "B072FHXYSJ": [{"asin": "B072FHXYSJ", "instruction": "i'm looking for farmhouse upholstered dining chair.", "attributes": ["assembly required", "contemporary style", "wood frame", "dining room"], "options": ["style: upholstered half back"], "instruction_attributes": ["dining room"], "instruction_options": ["upholstered half back"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1JM08E", "worker_id": "A21IUUHBSEVB56"}], "B084R8XLRR": [{"asin": "B084R8XLRR", "instruction": "i'm looking for a large, white, cube shaped closet organizer to provide additional storage space.", "attributes": ["easy clean", "storage space"], "options": ["color: white", "size: 56\"x18\"x70\""], "instruction_attributes": ["storage space"], "instruction_options": ["white"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADO1HAE", "worker_id": "A2JP9IKRHNLRPI"}], "B087P3ZJ3F": [{"asin": "B087P3ZJ3F", "instruction": "i need an eyeshadow palette that's easy to carry and contains a highly pigmented brown eyeshadow.", "attributes": ["highly pigmented", "easy carry"], "options": ["color: brown matte"], "instruction_attributes": ["highly pigmented", "easy carry"], "instruction_options": ["brown matte"], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBPAMAO2", "worker_id": "AR9AU5FY1S3RO"}], "B07X379VC8": [{"asin": "B07X379VC8", "instruction": "i want a silver apple macbook pro with intel core i5-7267u.", "attributes": ["core i5", "intel core"], "options": ["capacity: 8gb ram | 256gbssd", "color: silver"], "instruction_attributes": ["core i5"], "instruction_options": ["silver"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P79HVSC", "worker_id": "A2RBF3IIJP15IH"}], "B09D7TR414": [{"asin": "B09D7TR414", "instruction": "i'm looking for faux leather couch bed with armless and metal lega.", "attributes": ["faux leather", "metal legs", "living room"], "options": [""], "instruction_attributes": ["faux leather", "metal legs", "living room"], "instruction_options": [], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6IVVEY", "worker_id": "A21IUUHBSEVB56"}], "B09BZMBWNF": [{"asin": "B09BZMBWNF", "instruction": "i am interested in buying folding mattress for a beauty salon, which has wine red color and is of 75*190cm size.", "attributes": ["non slip", "beauty salon"], "options": ["color: wine red", "size: 75*190cm"], "instruction_attributes": ["beauty salon"], "instruction_options": ["wine red", "75*190cm"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPKIV6O", "worker_id": "AJY5G987IRT25"}], "B09HM99DS3": [{"asin": "B09HM99DS3", "instruction": "i am looking for a long lasting brown soy wax candle.", "attributes": ["long lasting", "soy wax"], "options": ["color: brown"], "instruction_attributes": ["long lasting", "soy wax"], "instruction_options": ["brown"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGSKYIZ", "worker_id": "A1EREKSZAA9V7B"}], "B08H4HZGL9": [{"asin": "B08H4HZGL9", "instruction": "i am looking for blue color hair dye mixing bowl, sized 22x7.5x2cm", "attributes": ["easy use", "hair treatment", "hair dye"], "options": ["color: blue", "size: 22x7.5x2cm"], "instruction_attributes": ["hair dye"], "instruction_options": ["blue", "22x7.5x2cm"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80HDQ1H", "worker_id": "A258PTOZ3D2TQR"}], "B08KSJHSXF": [{"asin": "B08KSJHSXF", "instruction": "i want anon gmo wyman\u2019s triple berry fresh frozen variety pack.", "attributes": ["ready eat", "non gmo", "dietary fiber"], "options": ["flavor name: frozen fruit variety pack", "size: 3 pound (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["frozen fruit variety pack"], "assignment_id": "3HPZF4IVNX3FW186JO133U513NZCYA", "worker_id": "A2RBF3IIJP15IH"}, {"asin": "B08KSJHSXF", "instruction": "prefer this brand wyman's triple berry frozen fresh fruit | no preservatives, certified non-gmo, ready to eat. i count on your experience in finding what i need for today", "attributes": ["ready eat", "non gmo", "dietary fiber"], "options": ["flavor name: triple berry", "size: 3 pound (pack of 2)"], "instruction_attributes": ["ready eat", "non gmo"], "instruction_options": ["triple berry"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFQLE9A", "worker_id": "A15IJ20C3R4HUO"}], "B08KFMG8XZ": [{"asin": "B08KFMG8XZ", "instruction": "i want to find permanent hair color cream in a golden copper color.", "attributes": ["long lasting", "permanent hair"], "options": ["color: 6dr | 6.34 golden-copper dark blond"], "instruction_attributes": ["permanent hair"], "instruction_options": ["6dr | 6.34 golden-copper dark blond"], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3OZRYS", "worker_id": "A345TDMHP3DQ3G"}], "B00O6DHOCY": [{"asin": "B00O6DHOCY", "instruction": "i want a 7.5 oz box of gluten free paleokrunch cereal.", "attributes": ["grain free", "artificial ingredients", "gluten free", "low calorie", "low carb", "resealable bag"], "options": ["size: 7.5 ounce (pack of 3)"], "instruction_attributes": ["gluten free"], "instruction_options": ["7.5 ounce (pack of 3)"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4MR8M1", "worker_id": "A2RBF3IIJP15IH"}], "B07XC27X9V": [{"asin": "B07XC27X9V", "instruction": "i'm looking for long sleeve o-neck casual loose t-shirts.", "attributes": ["light weight", "short sleeve", "long sleeve", "teen girls"], "options": ["color: z-06-purple", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": [], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KI5DPE", "worker_id": "A21IUUHBSEVB56"}], "B08MVBKRGZ": [{"asin": "B08MVBKRGZ", "instruction": "i need black shoes that have rubber soles", "attributes": ["comfortable fit", "rubber sole"], "options": ["color: white (103) | black", "size: 10.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["white (103) | black"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCIBMBAI", "worker_id": "A2ECRNQ3X5LEXD"}], "B07BQD1ZS5": [{"asin": "B07BQD1ZS5", "instruction": "coconut oil hair repair, marc daniels professional, sulfate free no parabens. i need to fix my hair. i count on your help", "attributes": ["sulfate free", "paraben free", "cruelty free", "coconut oil", "damaged hair", "hair salon"], "options": [""], "instruction_attributes": ["sulfate free", "paraben free", "coconut oil"], "instruction_options": [], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9I561SP", "worker_id": "A15IJ20C3R4HUO"}], "B0971STZPV": [{"asin": "B0971STZPV", "instruction": "i want laird superfood aloha oatmac unsweetened non-dairy coffee creamer.", "attributes": ["non dairy", "gluten free", "artificial ingredients", "plant based", "dairy free", "non gmo", "artificial colors"], "options": ["flavor name: unsweetened", "size: 6.8 ounce (pack of 1)"], "instruction_attributes": ["non dairy"], "instruction_options": ["unsweetened"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L70MLHM", "worker_id": "A2RBF3IIJP15IH"}], "B08SW9W6YG": [{"asin": "B08SW9W6YG", "instruction": "i want to buy hair brush for women which is of travel size and it should be with mirror folded at 2.75 inch.", "attributes": ["travel size", "hair growth"], "options": ["color: brush with mirror folded 2.75 inch"], "instruction_attributes": ["travel size"], "instruction_options": ["brush with mirror folded 2.75 inch"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV6JBH0", "worker_id": "AJY5G987IRT25"}], "B0752MN21L": [{"asin": "B0752MN21L", "instruction": "i am looking for graphite color womens slip-on amde from vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: graphite", "size: men's 11, women's 13"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["graphite"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5VG5FR", "worker_id": "A1Q8PPQQCWGY0D"}], "B096KTC8Y4": [{"asin": "B096KTC8Y4", "instruction": "i am looking for small size women casual short sleeve white color tunic tops", "attributes": ["loose fit", "hand wash", "button closure", "short sleeve", "daily wear"], "options": ["color: b9- white", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["b9- white", "small"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYS27NK", "worker_id": "A258PTOZ3D2TQR"}], "B09LM3RGW8": [{"asin": "B09LM3RGW8", "instruction": "i need a super soft bed blanket that has cats on it", "attributes": ["super soft", "fleece throw"], "options": ["color: cat butterfly", "size: 40\"x50\""], "instruction_attributes": ["super soft"], "instruction_options": ["cat butterfly"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLR9I4M", "worker_id": "A2ECRNQ3X5LEXD"}], "B072K3W94S": [{"asin": "B072K3W94S", "instruction": "i am looking for a heavy duty 1 foot long gold plated 3.5mm to rca cable.", "attributes": ["gold plated", "heavy duty"], "options": ["size: 1 feet"], "instruction_attributes": ["gold plated", "heavy duty"], "instruction_options": ["1 feet"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQGO6SU", "worker_id": "A1EREKSZAA9V7B"}], "B084LJ45YN": [{"asin": "B084LJ45YN", "instruction": "i want dermatologist tested herbal essences chamomile conditioner.", "attributes": ["dermatologist tested", "cruelty free"], "options": ["scent: chamomile"], "instruction_attributes": ["dermatologist tested"], "instruction_options": ["chamomile"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRW0ZBE", "worker_id": "A2RBF3IIJP15IH"}], "B08ZH51S65": [{"asin": "B08ZH51S65", "instruction": "i would like a men's powder lotion deodorant that is paraben free.", "attributes": ["animal testing", "paraben free", "natural ingredients"], "options": ["style: men's powder lotion"], "instruction_attributes": ["paraben free"], "instruction_options": ["men's powder lotion"], "assignment_id": "37C0GNLMHQDNI94ED11M493QPDAD63", "worker_id": "A1WS884SI0SLO4"}], "B098XQTSWP": [{"asin": "B098XQTSWP", "instruction": "i am looking for a black sofa bed couch for my living room.", "attributes": ["contemporary design", "living room"], "options": ["color: black"], "instruction_attributes": ["living room"], "instruction_options": ["black"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXW95OF", "worker_id": "A1EREKSZAA9V7B"}], "B07WRD1X1M": [{"asin": "B07WRD1X1M", "instruction": "i am looking for xx-large men's tapa mood woven short sleeve shirt", "attributes": ["hand wash", "button closure", "short sleeve"], "options": ["color: midnight navy taipan mood", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAZDZXC", "worker_id": "A258PTOZ3D2TQR"}], "B099X4XV7J": [{"asin": "B099X4XV7J", "instruction": "i want a noble park corson cut wall mirror for my living room.", "attributes": ["wood finish", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYGAEIV", "worker_id": "A2RBF3IIJP15IH"}], "B09CT58LD3": [{"asin": "B09CT58LD3", "instruction": "aunimeifly pillow slippers for women men, super soft platform shoes. open toe, size 8.5 i really want to wear these shoes, help me buy them", "attributes": ["butt lifting", "open toe", "moisture wicking", "high waist", "high heel", "ankle strap", "long sleeve"], "options": ["color: 003#green", "size: 8.5"], "instruction_attributes": ["open toe"], "instruction_options": ["8.5"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDD4VCIY", "worker_id": "A15IJ20C3R4HUO"}], "B08TVFM6CH": [{"asin": "B08TVFM6CH", "instruction": "i am looking for a heavy duty single toggle wall plate cover.", "attributes": ["heavy duty", "high gloss"], "options": ["style: single toggle"], "instruction_attributes": ["heavy duty"], "instruction_options": ["single toggle"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR4CDFUN", "worker_id": "A1EREKSZAA9V7B"}], "B092Z8TBXZ": [{"asin": "B092Z8TBXZ", "instruction": "i'm looking for a high quality make up brush set in ivory rice color.", "attributes": ["high quality", "easy use", "eye shadow", "sensitive skin"], "options": ["color: ivory rice"], "instruction_attributes": ["high quality"], "instruction_options": ["ivory rice"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UJ5A3M", "worker_id": "A3MNXK3VDK37SN"}], "B06XF253J3": [{"asin": "B06XF253J3", "instruction": "i am looking for 12 pieces of green color high quality small round travel container jar pots with lids", "attributes": ["high quality", "leak proof", "bpa free"], "options": ["color: green", "size: 12 pieces"], "instruction_attributes": ["high quality"], "instruction_options": ["green", "12 pieces"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SZPDU2", "worker_id": "A258PTOZ3D2TQR"}], "B08LW3LSQR": [{"asin": "B08LW3LSQR", "instruction": "i am interested in a machine washable throw that is yellow and aqua", "attributes": ["machine washable", "printing technology"], "options": ["color: yellow aqua", "size: 50\" x 70\" for adults"], "instruction_attributes": ["machine washable"], "instruction_options": ["yellow aqua"], "assignment_id": "32N49TQG3RSAZSG3UZISQ0BJL32VA8", "worker_id": "A2ECRNQ3X5LEXD"}], "B004D8VGIA": [{"asin": "B004D8VGIA", "instruction": "i want to find a white microwave cabinet that has a wood finish.", "attributes": ["wood finish", "contemporary style"], "options": ["color: white"], "instruction_attributes": ["wood finish"], "instruction_options": ["white"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YSZ69J", "worker_id": "A345TDMHP3DQ3G"}], "B09T69NXPT": [{"asin": "B09T69NXPT", "instruction": "i am looking for b color eyeshadow that is long lasting.", "attributes": ["highly pigmented", "long lasting", "eye shadow"], "options": ["color: b"], "instruction_attributes": ["long lasting"], "instruction_options": ["b"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HTDOWF", "worker_id": "A1Q8PPQQCWGY0D"}], "B08QG1HGD9": [{"asin": "B08QG1HGD9", "instruction": "i'm looking for men's fragrance free face lotion that offer spf protection.", "attributes": ["plant based", "fragrance free", "cruelty free", "seed oil"], "options": ["style: spf face lotion"], "instruction_attributes": ["fragrance free"], "instruction_options": ["spf face lotion"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KC0S46S", "worker_id": "A2JP9IKRHNLRPI"}], "B09GM6SDLB": [{"asin": "B09GM6SDLB", "instruction": "i want a peach scrub lip balm made from natural ingredients.", "attributes": ["easy use", "natural ingredients", "dead skin"], "options": ["flavor name: peach scrub"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["peach scrub"], "assignment_id": "388U7OUMFIBM5814TDGP0XA3RBI0RY", "worker_id": "A1WS884SI0SLO4"}], "B01N6PLEXN": [{"asin": "B01N6PLEXN", "instruction": "i'm looking for organic hair conditioner that promotes hair growth, and is both sulfate and cruelty free.", "attributes": ["sulfate free", "cruelty free", "hair growth"], "options": [""], "instruction_attributes": ["sulfate free", "cruelty free", "hair growth"], "instruction_options": [], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2R85L2", "worker_id": "A2JP9IKRHNLRPI"}], "B093T2NBGN": [{"asin": "B093T2NBGN", "instruction": "i need a grey entertainment center", "attributes": ["high gloss", "storage space"], "options": ["color: grey", "size: 71\" w x 17\" d x 12\" h"], "instruction_attributes": ["storage space"], "instruction_options": ["grey"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTT64V6", "worker_id": "A2ECRNQ3X5LEXD"}], "B08Y9315CT": [{"asin": "B08Y9315CT", "instruction": "i am looking for brown color spray bottles for hair styling.", "attributes": ["fine mist", "hair styling"], "options": ["color: brown", "size: 16.9 ounce(500ml)"], "instruction_attributes": ["hair styling"], "instruction_options": ["brown"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJL2UBYX", "worker_id": "A1Q8PPQQCWGY0D"}], "B0154RWL4Q": [{"asin": "B0154RWL4Q", "instruction": "i want a bexley mission tiffany style table lamp for my living room.", "attributes": ["bronze finish", "glass shade", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FMGD35", "worker_id": "A2RBF3IIJP15IH"}], "B09KLWCPLW": [{"asin": "B09KLWCPLW", "instruction": "i'm looking for an office chair that is red and offers lumbar support.", "attributes": ["easy clean", "lumbar support", "pu leather"], "options": ["color: red", "style: with footrest"], "instruction_attributes": ["lumbar support"], "instruction_options": ["red"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAKEOV8", "worker_id": "A2JP9IKRHNLRPI"}], "B09P587279": [{"asin": "B09P587279", "instruction": "i am looking for high heel sandals of size 5.5.", "attributes": ["high heel", "closed toe", "ankle strap"], "options": ["color: z41 green", "size: 5.5"], "instruction_attributes": ["high heel"], "instruction_options": ["5.5"], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZCATD07", "worker_id": "A1Q8PPQQCWGY0D"}], "B095BLCKJF": [{"asin": "B095BLCKJF", "instruction": "i want a m color face kit that is easy to use.", "attributes": ["easy use", "fine lines"], "options": ["color: m"], "instruction_attributes": ["easy use"], "instruction_options": ["m"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VO4060", "worker_id": "A1WS884SI0SLO4"}], "B09D1ZMFBH": [{"asin": "B09D1ZMFBH", "instruction": "i want a resealable bag of raisins.", "attributes": ["low fat", "resealable bag"], "options": [""], "instruction_attributes": ["resealable bag"], "instruction_options": [], "assignment_id": "31EUONYN26DZ1WA44INARVVOAK9OV3", "worker_id": "A1WS884SI0SLO4"}], "B09NSL89H9": [{"asin": "B09NSL89H9", "instruction": "i'm looking for a continuous fine mist spray bottle in the color black.", "attributes": ["high quality", "fine mist"], "options": ["color: black", "size: 200ml"], "instruction_attributes": ["fine mist"], "instruction_options": ["black"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69R7P8J", "worker_id": "AK3JMCIGU8MLU"}], "B09PBX2LND": [{"asin": "B09PBX2LND", "instruction": "i am looking for a pair of women's size 10.5 light blue shoes with memory foam.", "attributes": ["day comfort", "anti slip", "non slip", "hand wash", "lace closure", "high heel", "memory foam"], "options": ["color: light blue", "size: 10.5"], "instruction_attributes": ["memory foam"], "instruction_options": ["light blue", "10.5"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NGB7SLI", "worker_id": "A1EREKSZAA9V7B"}], "B0969KNKCN": [{"asin": "B0969KNKCN", "instruction": "i need a tongue cleaner that is easy to clean", "attributes": ["easy clean", "high quality", "easy use", "stainless steel", "rose gold", "bad breath", "fresh breath"], "options": [""], "instruction_attributes": ["easy clean"], "instruction_options": [], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFN0Q8HQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B01M7TXD6R": [{"asin": "B01M7TXD6R", "instruction": "i am looking for a 25 pack of micellar makeup remover wipes that are sulfate free.", "attributes": ["sulfate free", "paraben free"], "options": ["color: original", "size: 25 count (pack of 2)"], "instruction_attributes": ["sulfate free"], "instruction_options": ["25 count (pack of 2)"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QVIOX7", "worker_id": "AK3JMCIGU8MLU"}], "B01FV5GR0K": [{"asin": "B01FV5GR0K", "instruction": "i want to find an 8 ounce bottle of firming cream that treats fine lines.", "attributes": ["anti aging", "hyaluronic acid", "fine lines"], "options": ["size: 8 ounce"], "instruction_attributes": ["fine lines"], "instruction_options": ["8 ounce"], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6IZPUZ", "worker_id": "A345TDMHP3DQ3G"}], "B08N6KPMKY": [{"asin": "B08N6KPMKY", "instruction": "i'm looking for an extra small cozy blanket for my daughter's christmas gift; it should be super soft and easy to clean.", "attributes": ["super soft", "easy clean"], "options": ["color: chistmas style", "size: x-small(28x40 in)"], "instruction_attributes": ["super soft", "easy clean"], "instruction_options": ["chistmas style", "x-small(28x40 in)"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWTBW6Q", "worker_id": "A3LIIE572Z4OG7"}], "B09SDWVCH4": [{"asin": "B09SDWVCH4", "instruction": "i am looking for a high quality, folding massage table.", "attributes": ["easy carry", "high quality"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68J34A3", "worker_id": "AK3JMCIGU8MLU"}], "B09DSWK9VV": [{"asin": "B09DSWK9VV", "instruction": "i'm looking for a gray iphone 13 pro max case that supports wireless charging.", "attributes": ["hands free", "wireless charging"], "options": ["color: grey"], "instruction_attributes": ["wireless charging"], "instruction_options": ["grey"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AUXBW1", "worker_id": "A2JP9IKRHNLRPI"}], "B00NTBRR6C": [{"asin": "B00NTBRR6C", "instruction": "i want a oatmeal cinnamon raisin snack bar that is low calorie and high protein.", "attributes": ["high protein", "low calorie"], "options": ["flavor name: oatmeal cinnamon raisin"], "instruction_attributes": ["high protein", "low calorie"], "instruction_options": ["oatmeal cinnamon raisin"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQERN0V", "worker_id": "A1WS884SI0SLO4"}], "B08V4PWWY2": [{"asin": "B08V4PWWY2", "instruction": "i want to buy bath brushes which are suitable for dry skin.", "attributes": ["double sided", "long handle", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8NC32NM", "worker_id": "AJY5G987IRT25"}], "B08MFTHKYH": [{"asin": "B08MFTHKYH", "instruction": "i'm interested in love scent, dermatologist tested cream for sensitive skin that is cruelty-free and does not contain parabens or sulfates.", "attributes": ["paraben free", "cruelty free", "dermatologist tested", "sulfate free", "sensitive skin"], "options": ["scent: love"], "instruction_attributes": ["paraben free", "cruelty free", "dermatologist tested", "sulfate free", "sensitive skin"], "instruction_options": ["love"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUPCS4P", "worker_id": "AFU00NU09CFXE"}], "B0888Q3RV8": [{"asin": "B0888Q3RV8", "instruction": "i'm looking for a travel monopod camera tripod with quick release and easy to carry.", "attributes": ["quick release", "easy carry"], "options": [""], "instruction_attributes": ["quick release", "easy carry"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKOOD7W", "worker_id": "ARJDD0Z3R65BD"}], "B07RNX44YW": [{"asin": "B07RNX44YW", "instruction": "i'm looking for an ivory ottoman for my living room that's made out of solid wood with fake leather.", "attributes": ["high density", "pu leather", "solid wood", "living room"], "options": ["color: ivory"], "instruction_attributes": ["pu leather", "solid wood", "living room"], "instruction_options": ["ivory"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFN018H1", "worker_id": "AR9AU5FY1S3RO"}], "B08R973YV5": [{"asin": "B08R973YV5", "instruction": "i need to buy a gift basket for valentines day. find one that has five chocolate bars in it.", "attributes": ["valentine day", "gift basket"], "options": ["style: 5 bar"], "instruction_attributes": ["valentine day", "gift basket"], "instruction_options": ["5 bar"], "assignment_id": "3KAKFY4PG5C5T1XIMD4ZO37J7RII36", "worker_id": "AR9AU5FY1S3RO"}], "B07SVYBWQ1": [{"asin": "B07SVYBWQ1", "instruction": "i would like a red short sleeve shirt that is button down", "attributes": ["wide leg", "loose fit", "short sleeve", "long sleeve", "high waist"], "options": ["color: z-4 red", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["z-4 red"], "assignment_id": "3IRIK4HM3LUDDHY0D56BK3L84DVC6Z", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DG6SXNL": [{"asin": "B08DG6SXNL", "instruction": "i'm looking for a pair of rs-c sized, easy to use, stainless steel barber's scissors.", "attributes": ["high quality", "easy use", "stainless steel", "hair cutting"], "options": ["size: rs-c"], "instruction_attributes": ["easy use", "stainless steel"], "instruction_options": ["rs-c"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1Q1TI4", "worker_id": "A2JP9IKRHNLRPI"}], "B01BY04EMY": [{"asin": "B01BY04EMY", "instruction": "i'm locking for a high speed hdmi cable which supports 3d audio.", "attributes": ["high speed", "gold plated"], "options": ["configuration: hdmi male-female", "pattern name: 1 pack", "size: 10ft"], "instruction_attributes": ["high speed"], "instruction_options": [], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0Z8CCT", "worker_id": "A21IUUHBSEVB56"}], "B01K0ZPGC6": [{"asin": "B01K0ZPGC6", "instruction": "find a non alcoholic 32oz blood mary mix.", "attributes": ["non alcoholic", "easy use"], "options": [""], "instruction_attributes": ["non alcoholic"], "instruction_options": [], "assignment_id": "39LNWE0K456PSVA11X00BCXJK43UIR", "worker_id": "AVIEE6LDH0BT5"}], "B00RI7EFAO": [{"asin": "B00RI7EFAO", "instruction": "i am looking for a chair with no arms. it should be in burgundy color and should have lumbar support.", "attributes": ["heavy duty", "lumbar support"], "options": ["color: burgundy"], "instruction_attributes": ["lumbar support"], "instruction_options": ["burgundy"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VVFXMD", "worker_id": "A1NF6PELRKACS9"}], "B09M3QJRXQ": [{"asin": "B09M3QJRXQ", "instruction": "i want a beige with trundle twin bed with a wood frame.", "attributes": ["twin size", "easy assemble", "wood frame", "box spring"], "options": ["color: beige with trundle"], "instruction_attributes": ["twin size", "wood frame"], "instruction_options": [], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJYJGV9", "worker_id": "A1WS884SI0SLO4"}], "B06X6B7FK9": [{"asin": "B06X6B7FK9", "instruction": "i want a whtie van heusen men's slim fit dress shirt.", "attributes": ["slim fit", "easy care", "machine wash", "stretch fabric", "button closure", "polyester spandex"], "options": ["color: white", "size: 14\"-14.5\" neck 32\"-33\" sleeve"], "instruction_attributes": ["slim fit"], "instruction_options": ["white"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHATBD736", "worker_id": "A2RBF3IIJP15IH"}], "B07VK1ZCRG": [{"asin": "B07VK1ZCRG", "instruction": "i want gluten free sun tropics sea salt snack bites.", "attributes": ["gluten free", "dairy free", "simple ingredients"], "options": ["flavor: sea salt", "size: 3.5 ounce (pack of 6)"], "instruction_attributes": ["gluten free"], "instruction_options": ["sea salt"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL68NSG", "worker_id": "A2RBF3IIJP15IH"}], "B0999CLY8C": [{"asin": "B0999CLY8C", "instruction": "i want a pair of size 8 green loafers with arch support.", "attributes": ["anti slip", "open toe", "arch support", "high heel"], "options": ["color: z1-green", "size: 8"], "instruction_attributes": ["arch support"], "instruction_options": ["z1-green", "8"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLWZDAS", "worker_id": "A1WS884SI0SLO4"}], "B00JNA3MMG": [{"asin": "B00JNA3MMG", "instruction": "i need a xbox one media remote with batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3IRQNY", "worker_id": "AVIEE6LDH0BT5"}], "B09FG4XS2D": [{"asin": "B09FG4XS2D", "instruction": "i want a rca cable that is high def.", "attributes": ["high definition", "gold plated", "high resolution", "plug play"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZJVPRV", "worker_id": "A1WS884SI0SLO4"}], "B00FWUO2IE": [{"asin": "B00FWUO2IE", "instruction": "i want gluten free starkist chunk light tuna in oil.", "attributes": ["wild caught", "soy free", "gluten free"], "options": ["flavor name: chunk light in oil", "size: 5 ounce (pack of 10)"], "instruction_attributes": ["gluten free"], "instruction_options": ["chunk light in oil"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q8TDK7", "worker_id": "A2RBF3IIJP15IH"}], "B099NG13DV": [{"asin": "B099NG13DV", "instruction": "i would like a 8 gig of ram 512 ssd desktop mini with a core i5.", "attributes": ["core i5", "aluminum alloy"], "options": ["size: 8g ram 512g ssd"], "instruction_attributes": ["core i5"], "instruction_options": ["8g ram 512g ssd"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYR1M6T", "worker_id": "A1WS884SI0SLO4"}], "B075FYSWZ8": [{"asin": "B075FYSWZ8", "instruction": "i want a 18 inch by 18 inch blue purple throw pillow cover that is machine washable.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: blue purple", "size: 18 x 18-inch"], "instruction_attributes": ["machine washable"], "instruction_options": ["blue purple", "18 x 18-inch"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBGFSO2", "worker_id": "A1WS884SI0SLO4"}], "B07GLVYPTC": [{"asin": "B07GLVYPTC", "instruction": "i want to find a travel size fragrance that is scented with new york impression. it needs to be 0.34 fluid ounces.", "attributes": ["travel size", "long lasting"], "options": ["scent name: bond #9 eau de new york impression", "size: 0.34 fl oz (pack of 1)"], "instruction_attributes": ["travel size"], "instruction_options": ["bond #9 eau de new york impression", "0.34 fl oz (pack of 1)"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96ENG4Y", "worker_id": "A345TDMHP3DQ3G"}, {"asin": "B07GLVYPTC", "instruction": "i am looking for long lasting travel size mk michael for men impression eau de parfum.", "attributes": ["travel size", "long lasting"], "options": ["scent name: mk michael for men impression", "size: 0.34 fl oz (pack of 1)"], "instruction_attributes": ["travel size", "long lasting"], "instruction_options": ["mk michael for men impression"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQB46S0", "worker_id": "A1EREKSZAA9V7B"}], "B00A77H96O": [{"asin": "B00A77H96O", "instruction": "i am looking for shirt of size 2x and having short sleeve.", "attributes": ["easy care", "machine washable", "comfortable fit", "classic fit", "short sleeve", "everyday wear"], "options": ["size: 2x"], "instruction_attributes": ["short sleeve"], "instruction_options": ["2x"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0WTACV", "worker_id": "A1Q8PPQQCWGY0D"}], "B09PDRQVSR": [{"asin": "B09PDRQVSR", "instruction": "i am lookng for10.5 size black color vintage leather high heel ankle boots for women", "attributes": ["non slip", "high heel", "quality materials"], "options": ["color: d01-black", "size: 10.5"], "instruction_attributes": ["high heel"], "instruction_options": ["d01-black", "10.5"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHWBGS84", "worker_id": "A258PTOZ3D2TQR"}], "B003ZSHNGS": [{"asin": "B003ZSHNGS", "instruction": "i'm looking for a digital camera with an optical zoom and stereo sound.", "attributes": ["optical zoom", "stereo sound"], "options": [""], "instruction_attributes": ["optical zoom", "stereo sound"], "instruction_options": [], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSNVB8N", "worker_id": "AR9AU5FY1S3RO"}], "B00796M93E": [{"asin": "B00796M93E", "instruction": "i'm looking for non-dairy, lactose free chocolate chips.", "attributes": ["non dairy", "lactose free"], "options": [""], "instruction_attributes": ["non dairy", "lactose free"], "instruction_options": [], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZM9O8Z", "worker_id": "AR9AU5FY1S3RO"}], "B087WQFSLH": [{"asin": "B087WQFSLH", "instruction": "i want to buy a carry case for laptop which is easy to carry and is of khaki color, and it's size should be 11-12 inch.", "attributes": ["easy carry", "carrying case"], "options": ["color: khaki", "size: 11-12 inch"], "instruction_attributes": ["easy carry"], "instruction_options": ["khaki", "11-12 inch"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTXK9PN", "worker_id": "AJY5G987IRT25"}], "B08VF6NHJ4": [{"asin": "B08VF6NHJ4", "instruction": "i'm looking for an armchair for my living room; it needs to be made of premium engineered wood with camel upholstery.", "attributes": ["high density", "long lasting", "engineered wood", "living room"], "options": ["color: camel", "size: armchair"], "instruction_attributes": ["engineered wood", "living room"], "instruction_options": ["camel", "armchair"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOSB9MT", "worker_id": "A3LIIE572Z4OG7"}], "B09962GDCV": [{"asin": "B09962GDCV", "instruction": "i want to find gluten free maple syrup that comes in a 32 fluid ounce bottle.", "attributes": ["hand crafted", "nut free", "kosher certified", "non gmo", "gluten free", "artificial flavors"], "options": ["size: .4 pack - 32 fl oz"], "instruction_attributes": ["gluten free"], "instruction_options": [".4 pack - 32 fl oz"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPG1UTW6", "worker_id": "A345TDMHP3DQ3G"}], "B07662G9NQ": [{"asin": "B07662G9NQ", "instruction": "i need a travel-size cologne balm.", "attributes": ["alcohol free", "travel size"], "options": ["color: all set", "size: .15 ounce stick"], "instruction_attributes": ["travel size"], "instruction_options": [], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA70MRUS", "worker_id": "AVIEE6LDH0BT5"}], "B09MYSDQ7W": [{"asin": "B09MYSDQ7W", "instruction": "i am looking for a high resolution telescope with a phone adapter.", "attributes": ["high power", "high resolution", "bird watching"], "options": [""], "instruction_attributes": ["high resolution"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZQ21Y3", "worker_id": "AK3JMCIGU8MLU"}], "B074PYBJ5S": [{"asin": "B074PYBJ5S", "instruction": "i want a 4.2 ounce bottle of facial mist trio that is paraben free.", "attributes": ["paraben free", "cruelty free", "dry skin"], "options": ["scent: facial mist trio", "size: 4.2 ounce"], "instruction_attributes": ["paraben free"], "instruction_options": ["facial mist trio", "4.2 ounce"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9X187V", "worker_id": "A1WS884SI0SLO4"}], "B09468N3GS": [{"asin": "B09468N3GS", "instruction": "i need a case for my lg stylo 6 that's green, supports wireless charging, and comes with a tempered glass screen protector.", "attributes": ["hands free", "glass screen", "tempered glass", "wireless charging"], "options": ["color: green"], "instruction_attributes": ["glass screen", "tempered glass", "wireless charging"], "instruction_options": ["green"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6I7EVT", "worker_id": "AR9AU5FY1S3RO"}], "B08RWVPB2T": [{"asin": "B08RWVPB2T", "instruction": "i am looking for heavy duty monoculars.", "attributes": ["non slip", "heavy duty", "bird watching"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6PEGUBF", "worker_id": "A1Q8PPQQCWGY0D"}], "B08HJMVQTW": [{"asin": "B08HJMVQTW", "instruction": "i will surely succeed with your help. check my order natural deodorant for women | fresh rain + coconut oil - safe for sensitive skin |fresh rain, white floral (2 packages).", "attributes": ["coconut oil", "sensitive skin"], "options": ["scent: 2 pack fresh rain, white floral"], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUYLJQM", "worker_id": "A15IJ20C3R4HUO"}], "B08LCPFB82": [{"asin": "B08LCPFB82", "instruction": "i'm looking for a 3 sided toothbrush for fresh breath", "attributes": ["clinically proven", "fresh breath"], "options": [""], "instruction_attributes": ["fresh breath"], "instruction_options": [], "assignment_id": "3IX2EGZR7MTT7E2QFLQVI2PZQKMRJU", "worker_id": "A2Y2TURT2VEYZN"}], "B09Q7VKGHV": [{"asin": "B09Q7VKGHV", "instruction": "i want a extra large yellow men's loose fit shirt.", "attributes": ["loose fit", "slim fit", "short sleeve", "contrast color", "drawstring waist", "regular fit", "gym workout"], "options": ["color: yellow", "size: x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["yellow", "x-large"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5KGWIU", "worker_id": "A1WS884SI0SLO4"}], "B08QVSQGQ8": [{"asin": "B08QVSQGQ8", "instruction": "i'm looking for a relaxed fit, short sleeve t shirt in the color white rose in the size large.", "attributes": ["machine wash", "wash cold", "relaxed fit", "short sleeve", "tumble dry"], "options": ["color: b07_white rose", "size: large"], "instruction_attributes": ["relaxed fit", "short sleeve"], "instruction_options": ["b07_white rose", "large"], "assignment_id": "33F859I56HNA01QBVO1K6A4GV6KHB7", "worker_id": "AK3JMCIGU8MLU"}], "B09KM1Z4YX": [{"asin": "B09KM1Z4YX", "instruction": "i want to find a black women's jacket for daily wear. it needs to be a small.", "attributes": ["hand wash", "winter warm", "machine wash", "quick drying", "loose fit", "unique design", "daily wear"], "options": ["color: f-black", "size: small"], "instruction_attributes": ["daily wear"], "instruction_options": ["f-black", "small"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCNSLBH", "worker_id": "A345TDMHP3DQ3G"}], "B08SM9436F": [{"asin": "B08SM9436F", "instruction": "i'm looking for a black 2-ounce makeup storage jar that is leak proof and easy to use.", "attributes": ["leak proof", "easy use"], "options": ["color: black", "size: 2 ounce"], "instruction_attributes": ["leak proof", "easy use"], "instruction_options": ["black", "2 ounce"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGUEKRM1", "worker_id": "AFU00NU09CFXE"}, {"asin": "B08SM9436F", "instruction": "i want black round clear wide-mouth leak proof plastic container jars.", "attributes": ["leak proof", "easy use"], "options": ["color: black", "size: 6 ounce (pack of 4)"], "instruction_attributes": ["leak proof"], "instruction_options": ["black"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDRCQZI", "worker_id": "A2RBF3IIJP15IH"}], "B07J3XFV62": [{"asin": "B07J3XFV62", "instruction": "i want to buy paintings which are suitable for living room and are of color ys102 and have a size of 24x36 inch (60x90cm).", "attributes": ["hand painted", "ready hang", "living room"], "options": ["color: ys102", "size: 24x36inch (60x90cm)"], "instruction_attributes": ["living room"], "instruction_options": ["ys102", "24x36inch (60x90cm)"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSNVQ22", "worker_id": "AJY5G987IRT25"}], "B09LCDDZ7L": [{"asin": "B09LCDDZ7L", "instruction": "i want a style b nightstand that is easy to assemble.", "attributes": ["eco friendly", "easy clean", "easy assemble", "solid wood", "living room"], "options": ["color: style b"], "instruction_attributes": ["easy assemble"], "instruction_options": ["style b"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODR6WEI", "worker_id": "A1WS884SI0SLO4"}], "B000EMU234": [{"asin": "B000EMU234", "instruction": "i am looking for some gluten free powder coffee creamer.", "attributes": ["fat free", "lactose free", "non dairy", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DF7DW8", "worker_id": "A1EREKSZAA9V7B"}], "B08RXNQGBR": [{"asin": "B08RXNQGBR", "instruction": "i would like a travel sized bag that is yellow", "attributes": ["travel size", "leak proof", "easy use", "high quality", "storage case"], "options": ["color: illuminating yellow"], "instruction_attributes": ["travel size"], "instruction_options": ["illuminating yellow"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQFWVKN", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PJYDK14": [{"asin": "B09PJYDK14", "instruction": "i would like some sugar free chocolates", "attributes": ["sugar free", "chocolate covered", "low carb", "zero sugar", "perfect gift"], "options": ["flavor name: dark chocolate covered raisins"], "instruction_attributes": ["sugar free"], "instruction_options": ["dark chocolate covered raisins"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPD16AIQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08XX97T1X": [{"asin": "B08XX97T1X", "instruction": "i want to find hair extensions that are platinum blonde and 18 inches long.", "attributes": ["hair extensions", "hair loss"], "options": ["color: #60 platinum blonde", "size: 18 inch (pack of 4)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#60 platinum blonde", "18 inch (pack of 4)"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK4AQA6B", "worker_id": "A345TDMHP3DQ3G"}], "B08BR8FHVZ": [{"asin": "B08BR8FHVZ", "instruction": "i want grey men's moccasin slippers with arch support.", "attributes": ["anti slip", "moisture wicking", "memory foam", "arch support", "rubber sole"], "options": ["color: grey-upgrade", "size: 9"], "instruction_attributes": ["arch support"], "instruction_options": ["grey-upgrade"], "assignment_id": "3E1QT0TDF0JRUY3OYUZVFKFUNDE8IS", "worker_id": "A2RBF3IIJP15IH"}], "B09DDCVDJ7": [{"asin": "B09DDCVDJ7", "instruction": "i need a french vanilla soy wax candle", "attributes": ["long lasting", "soy wax"], "options": ["color: cream- french vanilla"], "instruction_attributes": ["soy wax"], "instruction_options": ["cream- french vanilla"], "assignment_id": "37WLF8U1W00VWFAO5IN98MYG9M4K6K", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P1GXX9Q": [{"asin": "B09P1GXX9Q", "instruction": "i'm looking for a two piece swimsuit in polyester spandex. i want the black one in x-large.", "attributes": ["elastic closure", "tummy control", "polyester spandex"], "options": ["color: black", "size: x-large"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["black", "x-large"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMS16BS", "worker_id": "AR9AU5FY1S3RO"}], "B087RK2F4B": [{"asin": "B087RK2F4B", "instruction": "i am interested in buying candles which are made of soy wax and are in red color.", "attributes": ["lead free", "soy wax"], "options": ["color: red"], "instruction_attributes": ["soy wax"], "instruction_options": ["red"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OZ7YEK", "worker_id": "AJY5G987IRT25"}], "B07TXLDCNK": [{"asin": "B07TXLDCNK", "instruction": "i'm looking for longwear makeup remover towelettes for sensitive skin. make sure they're cruelty free.", "attributes": ["fragrance free", "cruelty free", "sensitive skin"], "options": ["style: longwear"], "instruction_attributes": ["fragrance free", "cruelty free", "sensitive skin"], "instruction_options": ["longwear"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK4AF6AW", "worker_id": "AR9AU5FY1S3RO"}], "B00451ZJB0": [{"asin": "B00451ZJB0", "instruction": "i am looking for some gluten free vanilla caramel coffee creamers.", "attributes": ["non dairy", "lactose free", "shelf stable", "gluten free"], "options": ["flavor name: vanilla caramel", "size: box of 50 singles (pack of 4)"], "instruction_attributes": ["gluten free"], "instruction_options": ["vanilla caramel"], "assignment_id": "3WYP994K1I1QGKZ59XO0HUDR71C6Y0", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B00451ZJB0", "instruction": "i need a box of 180 single shelf stable coffee creamers that are sugar free hazelnut.", "attributes": ["non dairy", "lactose free", "shelf stable", "gluten free"], "options": ["flavor name: sugar free hazelnut", "size: box of 180 singles"], "instruction_attributes": ["shelf stable"], "instruction_options": ["sugar free hazelnut", "box of 180 singles"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP61DDVW", "worker_id": "A2ECRNQ3X5LEXD"}], "B0912N2VT7": [{"asin": "B0912N2VT7", "instruction": "i am looking for a pair of housewarming elephant statue for living room , color: e", "attributes": ["exquisite workmanship", "living room"], "options": ["color: e"], "instruction_attributes": ["living room"], "instruction_options": ["e"], "assignment_id": "31LM9EDVOW28SGAYME9E9IKPPN1NJ6", "worker_id": "A258PTOZ3D2TQR"}], "B003X4G25C": [{"asin": "B003X4G25C", "instruction": "i'm locking for a facial cleanser, makeup remover and face wash for oil skin.", "attributes": ["fragrance free", "sulfate free", "paraben free"], "options": [""], "instruction_attributes": ["sulfate free"], "instruction_options": [], "assignment_id": "326O153BMT8RVOXTJJKKGXV36BYDEO", "worker_id": "A21IUUHBSEVB56"}], "B097QYCG3Y": [{"asin": "B097QYCG3Y", "instruction": "i want a high quality nail drill machine.", "attributes": ["high quality", "storage case"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDRGCH5", "worker_id": "AVIEE6LDH0BT5"}], "B09DCCLFK4": [{"asin": "B09DCCLFK4", "instruction": "i'm looking for an incredibly soft fleece throw blanket that is 50\" x 80\" in size.", "attributes": ["super soft", "machine washable", "fleece throw", "living room"], "options": ["color: carbdr9738", "size: 50\" x 80\""], "instruction_attributes": ["super soft"], "instruction_options": ["50\" x 80\""], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFEO9DG", "worker_id": "A2JP9IKRHNLRPI"}], "B06XQXCMQZ": [{"asin": "B06XQXCMQZ", "instruction": "i want a 18 inch by 18 inch cream blush throw pillow cover for my living room.", "attributes": ["super soft", "living room"], "options": ["color: cream blush", "size: 18 x 18-inch"], "instruction_attributes": ["living room"], "instruction_options": ["cream blush", "18 x 18-inch"], "assignment_id": "33TIN5LC0FKDY31374RC144TX2T9YN", "worker_id": "A1WS884SI0SLO4"}], "B09HX36HQZ": [{"asin": "B09HX36HQZ", "instruction": "i'm looking for golden cupcake toothpick toppers.", "attributes": ["cupcake picks", "party supplies"], "options": ["color: golden"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["golden"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URW2O1CZ", "worker_id": "AK3JMCIGU8MLU"}], "B003VW4KJQ": [{"asin": "B003VW4KJQ", "instruction": "i need lead free taper candles for my living room", "attributes": ["lead free", "soy wax", "living room"], "options": ["color: coastal blue", "size: 10 in"], "instruction_attributes": ["lead free", "living room"], "instruction_options": [], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZPDXCOW", "worker_id": "AVIEE6LDH0BT5"}], "B0977PGVB3": [{"asin": "B0977PGVB3", "instruction": "i am looking for some easy to assemble wall mounted rustic grey floating shelves.", "attributes": ["wall mounted", "easy assemble", "storage space", "living room"], "options": ["color: rustic grey", "size: 12, 24, 36 inch"], "instruction_attributes": ["wall mounted", "easy assemble"], "instruction_options": ["rustic grey"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWVEFPK", "worker_id": "A1EREKSZAA9V7B"}], "B07T66SFPL": [{"asin": "B07T66SFPL", "instruction": "i'm looking for off shoulder short sleeve tops t-shirt bodysuit jumpsuit.", "attributes": ["machine wash", "short sleeve", "long sleeve"], "options": ["color: short sleeve gray green", "size: x-small"], "instruction_attributes": ["short sleeve", "long sleeve"], "instruction_options": ["short sleeve gray green"], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6ORNMMA", "worker_id": "A21IUUHBSEVB56"}], "B087H1LD99": [{"asin": "B087H1LD99", "instruction": "i want to find a television stand for my living room that is nature-colored with some grey as well.", "attributes": ["metal legs", "living room"], "options": ["color: nature | textured grey"], "instruction_attributes": ["living room"], "instruction_options": ["nature | textured grey"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPLVVQM", "worker_id": "A345TDMHP3DQ3G"}], "B093YSFRR7": [{"asin": "B093YSFRR7", "instruction": "i want a set of 2 mesh laundry bags with flamingos and leaves design.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YS169L", "worker_id": "A2RBF3IIJP15IH"}], "B084KJC5S1": [{"asin": "B084KJC5S1", "instruction": "i'm on a low carb diet and i was recommended fried chicken skins chick n' skin - | delicious, low carb, high protein snacks, gluten free, msg free, made with organic chicken, 2 oz. per bag i want 8 bags", "attributes": ["high protein", "low carb", "keto friendly", "ready eat", "certified organic", "gluten free"], "options": ["number of items: 8"], "instruction_attributes": ["high protein", "low carb", "gluten free"], "instruction_options": ["8"], "assignment_id": "3AQF3RZ55JSKGTIA47WCS96B1QS6F9", "worker_id": "A15IJ20C3R4HUO"}], "B095WWB4Y3": [{"asin": "B095WWB4Y3", "instruction": "i am looking for a pair of men's small gym shorts that are machine washable.", "attributes": ["machine washable", "machine wash", "elastic closure", "quality materials", "elastic waistband", "gym workout"], "options": ["size: small"], "instruction_attributes": ["machine washable"], "instruction_options": ["small"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVPC0QT", "worker_id": "A1EREKSZAA9V7B"}], "B00VWQT2KU": [{"asin": "B00VWQT2KU", "instruction": "i'm looking for a plug and play security system with motion detection. it should have an 8 channel dvr, 4 cameras, and a 1 terabyte hard disk.", "attributes": ["plug play", "motion detection"], "options": ["size: 8 channel dvr + 4 cameras +1tb hard disk"], "instruction_attributes": ["plug play", "motion detection"], "instruction_options": ["8 channel dvr + 4 cameras +1tb hard disk"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY644JQ", "worker_id": "AR9AU5FY1S3RO"}], "B08DKBYQ3R": [{"asin": "B08DKBYQ3R", "instruction": "i want to find 30-inch long hair extension braids in a pack of 6. the color needs to be #613.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: 1b | 27 | 613#", "size: 30 inch (pack of 6)"], "instruction_attributes": ["hair extensions"], "instruction_options": ["1b | 27 | 613#", "30 inch (pack of 6)"], "assignment_id": "3R2PKQ87N7I6FN5SSV9EK2GP7IAIMX", "worker_id": "A345TDMHP3DQ3G"}], "B07Y8QCL6Y": [{"asin": "B07Y8QCL6Y", "instruction": "i am looking for a mini pc with an intel core i5 cpu.", "attributes": ["core i5", "intel core"], "options": [""], "instruction_attributes": ["core i5", "intel core"], "instruction_options": [], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINXA27N", "worker_id": "A1EREKSZAA9V7B"}], "B09LRY6H41": [{"asin": "B09LRY6H41", "instruction": "i am looking for a real fruit coconut and pineapple drink.", "attributes": ["real fruit", "natural flavors"], "options": ["flavor name: coco pineapple", "size: 6 pack"], "instruction_attributes": ["real fruit"], "instruction_options": ["coco pineapple"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS35401DTMU5", "worker_id": "A1EREKSZAA9V7B"}], "B08MXC72RZ": [{"asin": "B08MXC72RZ", "instruction": "i am looking for classic casual rubber sole soft walking slip-ons of size 10 with khaki lace up", "attributes": ["anti slip", "non slip", "rubber sole"], "options": ["color: khaki lace up", "size: 10"], "instruction_attributes": ["rubber sole"], "instruction_options": ["khaki lace up", "10"], "assignment_id": "352YTHGRO6NQF252G9RXYWYALEYH4W", "worker_id": "A258PTOZ3D2TQR"}], "B078N4PCQM": [{"asin": "B078N4PCQM", "instruction": "i want a green mattress solution 4-inch wood split low profile traditional box spring.", "attributes": ["ready use", "fully assembled", "white item", "assembly required", "box spring", "king size"], "options": ["color: green", "size: twin", "style: include 4\" split foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["green"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEMJ68W", "worker_id": "A2RBF3IIJP15IH"}], "B013I738K0": [{"asin": "B013I738K0", "instruction": "i'm looking for 1.3 ounce sensible foods fat free fruit snacks with cherry berry flvour", "attributes": ["fat free", "non gmo", "gluten free"], "options": ["flavor: cherry berry", "size: 1.3 ounce (12 count)"], "instruction_attributes": ["fat free"], "instruction_options": ["cherry berry", "1.3 ounce (12 count)"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0WTCAX", "worker_id": "A258PTOZ3D2TQR"}], "B08LFW7KPB": [{"asin": "B08LFW7KPB", "instruction": "i need a tv stand for my living room.", "attributes": ["white finish", "contemporary style", "storage space", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNWDFJP", "worker_id": "AVIEE6LDH0BT5"}], "B09P9LDN8Z": [{"asin": "B09P9LDN8Z", "instruction": "i am looking for gray(new) color sofa bed that is easy to assemble.", "attributes": ["high density", "space saving", "easy assemble", "storage unit", "storage space"], "options": ["color: gray(new)"], "instruction_attributes": ["easy assemble"], "instruction_options": ["gray(new)"], "assignment_id": "3YW4XOSQK1VESPE3TQFUJDGX32S1U6", "worker_id": "A1Q8PPQQCWGY0D"}], "B09R82T74S": [{"asin": "B09R82T74S", "instruction": "i'm looking for an anti aging facial roller in color f.", "attributes": ["anti aging", "easy use"], "options": ["color: f"], "instruction_attributes": ["anti aging"], "instruction_options": ["f"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOMULM4", "worker_id": "A3MNXK3VDK37SN"}], "B095WB4TNZ": [{"asin": "B095WB4TNZ", "instruction": "i want a wireless outdoor security camera with motion detection.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96EJG4U", "worker_id": "A2RBF3IIJP15IH"}], "B07B7FKM4T": [{"asin": "B07B7FKM4T", "instruction": "i need a black colored chandelier for my living room.", "attributes": ["height adjustable", "mid century", "light fixture", "brushed nickel", "pendant light", "dining room", "living room"], "options": ["color: black"], "instruction_attributes": ["living room"], "instruction_options": ["black"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM93ZHS", "worker_id": "AVIEE6LDH0BT5"}], "B004KQF9YW": [{"asin": "B004KQF9YW", "instruction": "i want a 2.7 ounce stick of mitchum men triple odor defense anti-perspirant.", "attributes": ["anti perspirant", "dermatologist tested", "alcohol free"], "options": ["size: 2.7 ounce", "style: clean control"], "instruction_attributes": ["anti perspirant"], "instruction_options": ["2.7 ounce"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5ZM4FM", "worker_id": "A2RBF3IIJP15IH"}], "B09J4M3FS9": [{"asin": "B09J4M3FS9", "instruction": "i am looking for an easy to use stainless steel green monocular telescope for a smartphone.", "attributes": ["easy install", "stainless steel", "bird watching"], "options": ["color: green"], "instruction_attributes": ["easy install", "stainless steel"], "instruction_options": ["green"], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EABQS23", "worker_id": "A1EREKSZAA9V7B"}], "B074PRMLY8": [{"asin": "B074PRMLY8", "instruction": "i am looking for a hair loss shampoo for damaged hair.", "attributes": ["hair loss", "hair growth", "hair treatment", "damaged hair"], "options": [""], "instruction_attributes": ["hair loss", "damaged hair"], "instruction_options": [], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0V4WGFM", "worker_id": "A1EREKSZAA9V7B"}], "B075T77RW1": [{"asin": "B075T77RW1", "instruction": "i would like steel frame drafting tables", "attributes": ["white item", "coated steel", "steel frame"], "options": [""], "instruction_attributes": ["steel frame"], "instruction_options": [], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QZK07V", "worker_id": "A2ECRNQ3X5LEXD"}], "B082HCK3M1": [{"asin": "B082HCK3M1", "instruction": "i need a easy to use hdmi display adapter with high definition.", "attributes": ["easy use", "high definition"], "options": [""], "instruction_attributes": ["easy use", "high definition"], "instruction_options": [], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH6HHQF", "worker_id": "AVIEE6LDH0BT5"}], "B09QSVY6WP": [{"asin": "B09QSVY6WP", "instruction": "i am interested in a media player that has batteries included.", "attributes": ["batteries included", "1080p hd", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF9E9AZO", "worker_id": "A2ECRNQ3X5LEXD"}], "B086N1MGFS": [{"asin": "B086N1MGFS", "instruction": "i want a 0.75 ounce soft peach foundation that is paraben free.", "attributes": ["paraben free", "cruelty free"], "options": ["color: soft peach", "size: 0.75 ounce (pack of 1)"], "instruction_attributes": ["paraben free"], "instruction_options": ["soft peach", "0.75 ounce (pack of 1)"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SZWUDQ", "worker_id": "A1WS884SI0SLO4"}], "B000MCGEYM": [{"asin": "B000MCGEYM", "instruction": "i want a 150 watt black speaker that is heavy duty.", "attributes": ["heavy duty", "easy install", "stereo sound"], "options": ["color: black", "size: 150 watts", "style: speakers + bluetooth marine receiver stereo"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black", "150 watts", "speakers + bluetooth marine receiver stereo"], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW6D9VVF", "worker_id": "A1WS884SI0SLO4"}], "B00FSZRWZS": [{"asin": "B00FSZRWZS", "instruction": "i need a three pack deodorant that is made for sensitive skin", "attributes": ["anti perspirant", "sensitive skin"], "options": ["size: .2 pack(2.6 ounce (pack of 3))"], "instruction_attributes": ["sensitive skin"], "instruction_options": [".2 pack(2.6 ounce (pack of 3))"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GH0ZUO", "worker_id": "A2ECRNQ3X5LEXD"}], "B07215YT9K": [{"asin": "B07215YT9K", "instruction": "i want to find a pair of small, navy-colored active shorts for men that are machine washable.", "attributes": ["officially licensed", "machine wash", "quality polyester"], "options": ["color: navy", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy", "small"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NNOKBE", "worker_id": "A345TDMHP3DQ3G"}], "B09MKB5ZL3": [{"asin": "B09MKB5ZL3", "instruction": "i'm looking for a pair of pink wireless bluetooth headphones with stereo sound.", "attributes": ["noise cancelling", "wireless charging", "stereo sound", "wireless bluetooth"], "options": ["color: pink"], "instruction_attributes": ["stereo sound", "wireless bluetooth"], "instruction_options": ["pink"], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98W2YK3", "worker_id": "A3MNXK3VDK37SN"}], "B09C86HRZ6": [{"asin": "B09C86HRZ6", "instruction": "i want xx-large fabiurt loose fit plus size tops for women.", "attributes": ["loose fit", "short sleeve", "long sleeve"], "options": ["color: b1-white", "size: xx-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["xx-large"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFN0X8HX", "worker_id": "A2RBF3IIJP15IH"}], "B07CGG4WN1": [{"asin": "B07CGG4WN1", "instruction": "i want a pair of 50 by 108 inch red pink peach window panels for my living room.", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: red pink peach", "size: pair of - 50\" x 108\""], "instruction_attributes": ["living room"], "instruction_options": ["red pink peach", "pair of - 50\" x 108\""], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWT3J97L", "worker_id": "A1WS884SI0SLO4"}], "B09PYK8SNV": [{"asin": "B09PYK8SNV", "instruction": "i want to find an office chair that offers lumbar support. i also want to be able to adjust the height.", "attributes": ["height adjustable", "lumbar support"], "options": [""], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": [], "assignment_id": "3Q5ZZ9ZEVZPFIA89RAG1QBBPIR358A", "worker_id": "A345TDMHP3DQ3G"}], "B01KVU8JBK": [{"asin": "B01KVU8JBK", "instruction": "i want to find gluten free mango salsa that is bacon habanero flavored.", "attributes": ["hand crafted", "gluten free"], "options": ["flavor name: bacon habanero"], "instruction_attributes": ["gluten free"], "instruction_options": ["bacon habanero"], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMS56BW", "worker_id": "A345TDMHP3DQ3G"}], "B08XMNHPXY": [{"asin": "B08XMNHPXY", "instruction": "i am looking for dark green color phone case cover which is dust proof.", "attributes": ["dust proof", "heavy duty", "hands free", "wireless charging"], "options": ["color: dark green"], "instruction_attributes": ["dust proof"], "instruction_options": ["dark green"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68JCA4I", "worker_id": "A1Q8PPQQCWGY0D"}], "B09MWB8VWW": [{"asin": "B09MWB8VWW", "instruction": "i am looking for space saving espresso color bed.", "attributes": ["space saving", "solid wood"], "options": ["color: espresso", "style: metal low bunk bed full size"], "instruction_attributes": ["space saving"], "instruction_options": ["espresso"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9PD0BJ", "worker_id": "A1Q8PPQQCWGY0D"}], "B09P1593Z6": [{"asin": "B09P1593Z6", "instruction": "i want a 10 by 7 ft a16 photo background that is light weight.", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a16", "size: 10x7ft | 3x2.2m"], "instruction_attributes": ["light weight"], "instruction_options": ["a16", "10x7ft | 3x2.2m"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OMGTR4", "worker_id": "A1WS884SI0SLO4"}], "B08THVMLZK": [{"asin": "B08THVMLZK", "instruction": "look for it in stock. dustproof case for ps5, anti-dust cover dust plugs hdmi usb interface for ps5 console with 10pcs silicone ps5 controller joystick grips, sky pink", "attributes": ["dust proof", "easy install"], "options": ["color: pink sky", "size: ps5 skin disc"], "instruction_attributes": ["dust proof"], "instruction_options": ["pink sky"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKP2ZJPV", "worker_id": "A15IJ20C3R4HUO"}], "B07PY96H2Q": [{"asin": "B07PY96H2Q", "instruction": "i'm looking for oil free hair conditioner that offers a cruelty free certification.", "attributes": ["oil free", "sulfate free", "paraben free", "cruelty free", "argan oil"], "options": [""], "instruction_attributes": ["oil free"], "instruction_options": [], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XVNGNY", "worker_id": "A2JP9IKRHNLRPI"}], "B082SL5XFG": [{"asin": "B082SL5XFG", "instruction": "i am looking for power cord outlet socket cable plug for wireless bluetooth speakers.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X02F4WN", "worker_id": "A1Q8PPQQCWGY0D"}], "B09HSTMV93": [{"asin": "B09HSTMV93", "instruction": "i am looking for a high quality and easy to clean tongue cleaner.", "attributes": ["easy clean", "high quality", "oral hygiene", "bad breath"], "options": [""], "instruction_attributes": ["easy clean", "high quality"], "instruction_options": [], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X42IH0G", "worker_id": "A1EREKSZAA9V7B"}], "B07RMZ8BBP": [{"asin": "B07RMZ8BBP", "instruction": "i would like a pair of 36 regular cut off white bull denim shorts that are machine washable.", "attributes": ["machine wash", "imported zipper"], "options": ["color: white bull denim - stretch", "fit type: cut off", "size: 36 regular"], "instruction_attributes": ["machine wash"], "instruction_options": ["white bull denim - stretch", "cut off", "36 regular"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBX0C4O7", "worker_id": "A1WS884SI0SLO4"}], "B09RZRT4QD": [{"asin": "B09RZRT4QD", "instruction": "i want to find an open-toed pair of women's fashion wedges in a wide size 11. they should be khaki colored.", "attributes": ["butt lifting", "open toe", "moisture wicking", "high waist", "high heel", "ankle strap", "long sleeve"], "options": ["color: a6 - khaki", "size: 11 wide"], "instruction_attributes": ["open toe"], "instruction_options": ["a6 - khaki", "11 wide"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDRLCHA", "worker_id": "A345TDMHP3DQ3G"}], "B08Q7RNY1W": [{"asin": "B08Q7RNY1W", "instruction": "i need a long lasting organic deodorant.", "attributes": ["long lasting", "coconut oil"], "options": ["scent: blossom breeze", "size: 2 ounce"], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602XP957", "worker_id": "AVIEE6LDH0BT5"}], "B0042RBHXQ": [{"asin": "B0042RBHXQ", "instruction": "i want gluten free lang's chocolates milk chocolate dessert cups.", "attributes": ["hand crafted", "gluten free"], "options": ["flavor name: chocolate", "size: 32"], "instruction_attributes": ["gluten free"], "instruction_options": ["chocolate"], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCWJ0GGP", "worker_id": "A2RBF3IIJP15IH"}], "B083DP4MCM": [{"asin": "B083DP4MCM", "instruction": "i am looking for travel size pump bottles with lotion nozzles.", "attributes": ["bpa free", "travel size"], "options": ["color: lotion nozzle", "size: 15+30+50ml"], "instruction_attributes": ["travel size"], "instruction_options": ["lotion nozzle"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602XS95A", "worker_id": "A1EREKSZAA9V7B"}], "B00F8M95YW": [{"asin": "B00F8M95YW", "instruction": "i want to order a bottle of shampoo with coconut oil for dry, damaged hair.", "attributes": ["coconut oil", "damaged hair", "dry hair"], "options": [""], "instruction_attributes": ["coconut oil", "damaged hair", "dry hair"], "instruction_options": [], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUHEYE12", "worker_id": "AR9AU5FY1S3RO"}], "B093K698Z1": [{"asin": "B093K698Z1", "instruction": "find set of 2 medium pig astronaut-1 mesh laundry bags and 1 small laundry bag, i will give as a gift at a kitchen shower", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKS0CGLL", "worker_id": "A15IJ20C3R4HUO"}], "B096JSQ38T": [{"asin": "B096JSQ38T", "instruction": "i am in need of 5 sets happy birthday cake toppers", "attributes": ["birthday cake", "birthday party"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4R3PK4", "worker_id": "A258PTOZ3D2TQR"}], "B08YRN6MNT": [{"asin": "B08YRN6MNT", "instruction": "i'm looking for a rolling cart offering 3 levels that is made with a steel frame and is painted black.", "attributes": ["space saving", "coated steel", "steel frame", "living room"], "options": ["color: black"], "instruction_attributes": ["steel frame"], "instruction_options": ["black"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3QFLZO", "worker_id": "A2JP9IKRHNLRPI"}], "B07DVRW4NN": [{"asin": "B07DVRW4NN", "instruction": "i'm looking for a 6 foot long, high performance coaxial cable", "attributes": ["high performance", "coaxial cable"], "options": ["size: 6 feet (1.8 meter)"], "instruction_attributes": ["high performance", "coaxial cable"], "instruction_options": ["6 feet (1.8 meter)"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3Y215JY", "worker_id": "AK3JMCIGU8MLU"}], "B08PJY7GW8": [{"asin": "B08PJY7GW8", "instruction": "i am looking for a wall art of size 36\" x 24'' x 2 for my living room.", "attributes": ["hand painted", "living room", "dining room"], "options": ["color: abstract wall art", "size: 36\" x 24'' x 2"], "instruction_attributes": ["living room"], "instruction_options": ["36\" x 24'' x 2"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC8PUKZ", "worker_id": "A1Q8PPQQCWGY0D"}], "B09FF1GQ74": [{"asin": "B09FF1GQ74", "instruction": "i want a 10 piece of green brush set for synthetic hair.", "attributes": ["synthetic hair", "eye shadow"], "options": ["color: 10pcs green"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["10pcs green"], "assignment_id": "3AAJC4I4FR2295OHP2K845RYZ16JZG", "worker_id": "A1WS884SI0SLO4"}], "B07GBXKRCT": [{"asin": "B07GBXKRCT", "instruction": "i want a core i5 tablet.", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["core i5"], "instruction_options": [], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQK0KED", "worker_id": "A1WS884SI0SLO4"}], "B07Q7MFB5G": [{"asin": "B07Q7MFB5G", "instruction": "i am looking for cognac zebra color women's sneaker having rubber sole.", "attributes": ["lace closure", "rubber sole"], "options": ["color: cognac zebra", "size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["cognac zebra"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1HVXCF", "worker_id": "A1Q8PPQQCWGY0D"}], "B079LXH6NX": [{"asin": "B079LXH6NX", "instruction": "i need some noise cancelling headphones", "attributes": ["noise cancelling", "wireless bluetooth"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X42GH0E", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QN1H2RD": [{"asin": "B08QN1H2RD", "instruction": "i am looking for 2 easy to assemble grey barstools.", "attributes": ["long lasting", "easy assemble", "metal legs"], "options": ["color: 2 grey barstools", "size: 4 barstools"], "instruction_attributes": ["easy assemble"], "instruction_options": ["2 grey barstools"], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZ3LCNA", "worker_id": "A1EREKSZAA9V7B"}], "B015OW3TAQ": [{"asin": "B015OW3TAQ", "instruction": "i need a five pack of three foot hdmi cables that support 1080p and are gold plated.", "attributes": ["1080p hd", "gold plated", "usb port"], "options": ["pattern name: cable + cable - 10 feet", "size: 3 feet", "style: 5-pack"], "instruction_attributes": ["1080p hd", "gold plated"], "instruction_options": ["3 feet", "5-pack"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8S0Q6M", "worker_id": "AR9AU5FY1S3RO"}], "B076CK9K6X": [{"asin": "B076CK9K6X", "instruction": "i want a 4 ounce bag of bbq jerky that is high in protein.", "attributes": ["low fat", "high protein"], "options": ["flavor name: bbq", "size: 4 ounce"], "instruction_attributes": ["high protein"], "instruction_options": ["bbq", "4 ounce"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZDD0S0D", "worker_id": "A1WS884SI0SLO4"}], "B009AGABCM": [{"asin": "B009AGABCM", "instruction": "i want to find vintage men's jeans with a regular, but still comfortable, fit. the jeans should be 38 inches in width and 36 inches in length and be river denim in color.", "attributes": ["slim fit", "comfortable fit", "button closure"], "options": ["color: river denim", "fit type: regular", "size: 38w x 36l"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["river denim", "regular", "38w x 36l"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI3EQDBT", "worker_id": "A345TDMHP3DQ3G"}], "B07F1PNPT3": [{"asin": "B07F1PNPT3", "instruction": "help me find this model today: eldof women peep toe pump medium heel, rubber sole, brown color and size 8.5 . i'm giving up on finding it so much i've searched.", "attributes": ["open toe", "rubber sole"], "options": ["color: brown", "size: 8.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown", "8.5"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3V0ZMZ", "worker_id": "A15IJ20C3R4HUO"}], "B09P3R6STB": [{"asin": "B09P3R6STB", "instruction": "i'd like a three piece bikini set for a teen girl. i need it in purple, size xx large.", "attributes": ["open toe", "cotton spandex", "tumble dry", "teen girls"], "options": ["color: swimsuits-a091-purple", "size: xx-large"], "instruction_attributes": ["tumble dry", "teen girls"], "instruction_options": ["swimsuits-a091-purple", "xx-large"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQH0QSB", "worker_id": "AR9AU5FY1S3RO"}], "B00AREGVUM": [{"asin": "B00AREGVUM", "instruction": "i'm looking for clinically proven, anti-aging body oil in a package of 3 of .85 fl oz bottles.", "attributes": ["clinically proven", "anti aging"], "options": ["style: 0.85 fl oz (pack of 3)"], "instruction_attributes": ["clinically proven", "anti aging"], "instruction_options": ["0.85 fl oz (pack of 3)"], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKUCEPE", "worker_id": "A2JP9IKRHNLRPI"}], "B09QCY7VYW": [{"asin": "B09QCY7VYW", "instruction": "i want black cooki heeled open toe sandals for women.", "attributes": ["open toe", "ankle strap", "teen girls", "daily wear"], "options": ["color: z2 black", "size: 6.5"], "instruction_attributes": ["open toe"], "instruction_options": ["z2 black"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPPFE61", "worker_id": "A2RBF3IIJP15IH"}], "B07TPSYZBG": [{"asin": "B07TPSYZBG", "instruction": "i want to find canvas wall art that is 30x60 inches in dimension. i want it to be poppy colored and it should be suitable for my dining room.", "attributes": ["hand painted", "ready hang", "wood frame", "living room", "dining room"], "options": ["color: poppy", "size: 30x60in"], "instruction_attributes": ["dining room"], "instruction_options": ["poppy", "30x60in"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA5H8AW", "worker_id": "A345TDMHP3DQ3G"}], "B08QDWVNVF": [{"asin": "B08QDWVNVF", "instruction": "i need a space saving table for my dining room in espresso.", "attributes": ["space saving", "engineered wood", "steel frame", "dining room", "living room"], "options": ["color: espresso"], "instruction_attributes": ["space saving", "dining room"], "instruction_options": ["espresso"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PQPX2D", "worker_id": "AR9AU5FY1S3RO"}], "B09QX5BT3K": [{"asin": "B09QX5BT3K", "instruction": "i would like a medium gray henley with short sleeves.", "attributes": ["slim fit", "loose fit", "long sleeve", "faux fur", "short sleeve"], "options": ["color: gray", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["gray", "medium"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTR4PL3", "worker_id": "A1WS884SI0SLO4"}], "B09KLMRFP9": [{"asin": "B09KLMRFP9", "instruction": "i need a clear, eco-friendly 6.7 ounce spray bottle.", "attributes": ["eco friendly", "fine mist"], "options": ["color: 2 clear", "size: 6.7 ounce"], "instruction_attributes": ["eco friendly"], "instruction_options": ["2 clear", "6.7 ounce"], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFQR9EB", "worker_id": "AR9AU5FY1S3RO"}], "B01LYRBH74": [{"asin": "B01LYRBH74", "instruction": "i am looking for kosher certified premium gourmet spices of european chicken seasoning -12 oz", "attributes": ["kosher certified", "non gmo"], "options": ["flavor: european chicken seasoning 12 oz"], "instruction_attributes": ["kosher certified"], "instruction_options": ["european chicken seasoning 12 oz"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMMLZIO", "worker_id": "A258PTOZ3D2TQR"}], "B07G3986RC": [{"asin": "B07G3986RC", "instruction": "buy me a heart flavored tea without caffeine", "attributes": ["caffeine free", "usda organic", "sugar free", "gluten free", "artificial colors", "artificial flavors"], "options": ["flavor name: heart", "size: 1.27 ounce"], "instruction_attributes": ["caffeine free"], "instruction_options": ["heart"], "assignment_id": "3R2PKQ87N7I6FN5SSV9EK2GP7IZIMM", "worker_id": "AVIEE6LDH0BT5"}], "B07N32XJSY": [{"asin": "B07N32XJSY", "instruction": "i'm locking for blueberry lavender flavored almond beverage.", "attributes": ["trader joe", "non dairy", "natural flavors"], "options": [""], "instruction_attributes": ["non dairy"], "instruction_options": [], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHRES72JR", "worker_id": "A21IUUHBSEVB56"}], "B08P3RQ6DY": [{"asin": "B08P3RQ6DY", "instruction": "i am interested in non gmo puffed snacks", "attributes": ["non gmo", "gluten free", "artificial colors"], "options": [""], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM9YHZ5", "worker_id": "A2ECRNQ3X5LEXD"}], "B08VGKW66Z": [{"asin": "B08VGKW66Z", "instruction": "i'm looking for a multi-color cuxweot custom blanket for the living room that is super soft and can be used as a fleece throw.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 35"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22ODW8O", "worker_id": "AMI0SOF51O3FW"}], "B09MZB12N3": [{"asin": "B09MZB12N3", "instruction": "i'm locking for a lip sleeping mask.", "attributes": ["cruelty free", "natural ingredients", "fine lines", "dead skin"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79UP1H4", "worker_id": "A21IUUHBSEVB56"}], "B091DYR5QL": [{"asin": "B091DYR5QL", "instruction": "i want gluten free shangri-la tea company organic green tea bags.", "attributes": ["caffeine free", "sugar free", "individually wrapped", "gluten free"], "options": ["flavor name: premium green"], "instruction_attributes": ["gluten free"], "instruction_options": ["premium green"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSOBEGJQ", "worker_id": "A2RBF3IIJP15IH"}], "B076DL1VLG": [{"asin": "B076DL1VLG", "instruction": "i want a sulfate free shampoo & conditioner set with biotin scent", "attributes": ["sulfate free", "paraben free", "argan oil", "seed oil", "hair loss", "hair growth", "natural hair", "dry hair"], "options": ["scent: biotin & collagen", "size: 16.9 fl oz (pack of 2)"], "instruction_attributes": ["sulfate free"], "instruction_options": ["biotin & collagen"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME98A2DD", "worker_id": "AVIEE6LDH0BT5"}], "B08BFDSRL3": [{"asin": "B08BFDSRL3", "instruction": "i need straight leg jeans that are 56w by 30l", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: (new) on my radio", "size: 56w x 30l"], "instruction_attributes": ["straight leg"], "instruction_options": ["56w x 30l"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQ1QB47", "worker_id": "A2ECRNQ3X5LEXD"}], "B0776NB4YW": [{"asin": "B0776NB4YW", "instruction": "i'm looking for a certified organic castor oil. choose the ones that come in 16 oz package.", "attributes": ["certified organic", "alcohol free", "dry hair", "fine lines", "dry skin", "hair growth"], "options": ["style: organic castor oil 16 oz"], "instruction_attributes": ["certified organic"], "instruction_options": ["organic castor oil 16 oz"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OT699W", "worker_id": "A3MNXK3VDK37SN"}], "B09RWW23NJ": [{"asin": "B09RWW23NJ", "instruction": "i need a medium sized board shorts with a elastic waistband.", "attributes": ["quick drying", "elastic waistband", "elastic waist"], "options": ["color: white", "size: medium"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["medium"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HTDWON", "worker_id": "AVIEE6LDH0BT5"}], "B0738CN28V": [{"asin": "B0738CN28V", "instruction": "lasgoos design natural look lightweight reusable false eyelashes eye makeup 11/5 pairs/box (a10) find it and tell me", "attributes": ["easy apply", "cruelty free"], "options": ["style: 011-5pairs"], "instruction_attributes": ["easy apply"], "instruction_options": ["011-5pairs"], "assignment_id": "31JLPPHS254FPN8LK8H48035J0HO37", "worker_id": "A15IJ20C3R4HUO"}], "B0969NHZCY": [{"asin": "B0969NHZCY", "instruction": "i want to find machine washable curtains for my living room in the color 5.", "attributes": ["machine washable", "stainless steel", "dining room", "living room"], "options": ["color: colour5"], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["colour5"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q76GH9W", "worker_id": "A345TDMHP3DQ3G"}], "B09BF9HKMT": [{"asin": "B09BF9HKMT", "instruction": "i am looking for smart bands of size 40mm and are easy to install.", "attributes": ["compatible apple", "quick release", "easy install", "glass screen", "tempered glass"], "options": ["color: black white band+black silver case", "size: 40mm"], "instruction_attributes": ["easy install"], "instruction_options": ["40mm"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMMKZIN", "worker_id": "A1Q8PPQQCWGY0D"}], "B07KK42V6D": [{"asin": "B07KK42V6D", "instruction": "i'm looking for a keto friendly hot cocoa mix in dark chocolate flavor.", "attributes": ["keto friendly", "low carb", "dietary fiber"], "options": ["flavor name: simply dark chocolate"], "instruction_attributes": ["keto friendly"], "instruction_options": ["simply dark chocolate"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5BELQUR", "worker_id": "A3MNXK3VDK37SN"}], "B09RQ8LRDT": [{"asin": "B09RQ8LRDT", "instruction": "i'm looking for some highly pigmented, long lasting eye shadow in color \"c.\"", "attributes": ["highly pigmented", "long lasting", "eye shadow"], "options": ["color: c"], "instruction_attributes": ["highly pigmented", "long lasting", "eye shadow"], "instruction_options": ["c"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC8ENIW", "worker_id": "AR9AU5FY1S3RO"}], "B0963LTSXB": [{"asin": "B0963LTSXB", "instruction": "i want green comfy womens closed toe clogs shoes.", "attributes": ["high heel", "soft material", "closed toe", "daily wear"], "options": ["color: green", "size: 8"], "instruction_attributes": ["closed toe"], "instruction_options": ["green"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H8U8UT", "worker_id": "A2RBF3IIJP15IH"}], "B09Q6CTMF7": [{"asin": "B09Q6CTMF7", "instruction": "i want a blue toothbrush for sensitive teeth.", "attributes": ["easy use", "teeth whitening", "sensitive teeth"], "options": ["color: blue"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["blue"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVF88VN", "worker_id": "A1WS884SI0SLO4"}], "B09FFKMF4T": [{"asin": "B09FFKMF4T", "instruction": "i would like a pair of size 9 white synthetic leather clogs with a synthetic sole.", "attributes": ["high heel", "synthetic sole"], "options": ["color: white synthetic leather", "size: 9"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["white synthetic leather", "9"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIV6846", "worker_id": "A1WS884SI0SLO4"}], "B09F3WRKVG": [{"asin": "B09F3WRKVG", "instruction": "i want a navy blue biedori womens casual long sleeve dress.", "attributes": ["long sleeve", "elastic waist", "relaxed fit"], "options": ["color: navy blue", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["navy blue"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT5J3P9", "worker_id": "A2RBF3IIJP15IH"}], "B07B4RZ87J": [{"asin": "B07B4RZ87J", "instruction": "i want a 8.5 fl oz of mizani true textures cream cleansing conditioner with coconut oil.", "attributes": ["sulfate free", "coconut oil"], "options": ["size: 8.5 fl oz"], "instruction_attributes": ["coconut oil"], "instruction_options": ["8.5 fl oz"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22OBW8M", "worker_id": "A2RBF3IIJP15IH"}], "B07DS5BR42": [{"asin": "B07DS5BR42", "instruction": "i am looking for chocolate chip flavor non gmo cookies.", "attributes": ["non gmo", "quality ingredients", "natural ingredients"], "options": ["flavor: chocolate chip", "size: 4 ounce (pack of 3)"], "instruction_attributes": ["non gmo"], "instruction_options": ["chocolate chip"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCM4SJI", "worker_id": "A1Q8PPQQCWGY0D"}], "B08S6XCNDG": [{"asin": "B08S6XCNDG", "instruction": "i am looking for rocky mount color slim fit jeans.", "attributes": ["slim fit", "quality materials"], "options": ["color: rocky mount", "size: 38w x 32l"], "instruction_attributes": ["slim fit"], "instruction_options": ["rocky mount"], "assignment_id": "35H6S234SLASEWPLYVJ36XFYCWD56O", "worker_id": "A1Q8PPQQCWGY0D"}], "B09Q6CSF2B": [{"asin": "B09Q6CSF2B", "instruction": "i'm looking for a dvd recorder that features stereo sound.", "attributes": ["plug play", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MO3WL1", "worker_id": "A345TDMHP3DQ3G"}], "B07K125KWT": [{"asin": "B07K125KWT", "instruction": "i want a bookshelf for my living room.", "attributes": ["contemporary style", "living room"], "options": ["style: bookshelf"], "instruction_attributes": ["living room"], "instruction_options": ["bookshelf"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95CAZPH0", "worker_id": "A1WS884SI0SLO4"}], "B092PMT773": [{"asin": "B092PMT773", "instruction": "i am looking for a steel frame storage tower in the color dark gray.", "attributes": ["steel frame", "storage space", "living room"], "options": ["color: dark gray"], "instruction_attributes": ["steel frame"], "instruction_options": ["dark gray"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AOVSTN", "worker_id": "AK3JMCIGU8MLU"}], "B07STGB556": [{"asin": "B07STGB556", "instruction": "loeffler randall paulina-ks closed toe leather sole", "attributes": ["leather sole", "closed toe"], "options": ["color: black", "size: 6.5 medium us"], "instruction_attributes": ["leather sole", "closed toe"], "instruction_options": [], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VK08EC", "worker_id": "A3TTGSUBIK1YCL"}], "B00REDUNLW": [{"asin": "B00REDUNLW", "instruction": "i'm looking for a bag of salty sweet mixed nuts in a resealable bag. they should be gmo-free.", "attributes": ["protein serving", "non gmo", "gluten free", "resealable bag", "artificial colors"], "options": ["flavor: salty sweet mixed nuts"], "instruction_attributes": ["non gmo", "resealable bag"], "instruction_options": ["salty sweet mixed nuts"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJYIVGN", "worker_id": "AR9AU5FY1S3RO"}], "B08ZKWSC2G": [{"asin": "B08ZKWSC2G", "instruction": "i am looking for a 2 light wall sconce for my living room.", "attributes": ["clear glass", "vanity light", "light fixture", "living room"], "options": ["color: black & clear glass", "size: 2-light"], "instruction_attributes": ["living room"], "instruction_options": ["2-light"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA934MZ3M", "worker_id": "A1EREKSZAA9V7B"}], "B003WT31QQ": [{"asin": "B003WT31QQ", "instruction": "get a gluten free tuna fish. it should be pack of 60 with 5 ounces.", "attributes": ["wild caught", "gluten free"], "options": ["flavor name: less sodium chunk light in water", "size: 5 ounce (pack of 60)"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG57543", "worker_id": "A15ERD4HOFEPHM"}], "B09N97FN78": [{"asin": "B09N97FN78", "instruction": "i would like a gold plated hdmi cable.", "attributes": ["gold plated", "high definition"], "options": [""], "instruction_attributes": ["gold plated"], "instruction_options": [], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY61J42", "worker_id": "A1WS884SI0SLO4"}], "B09N75L4RD": [{"asin": "B09N75L4RD", "instruction": "i'm looking for a pair of medium sized, straight leg men's black dress pants.", "attributes": ["slim fit", "straight leg", "wide leg", "elastic waist", "elastic closure", "regular fit", "relaxed fit", "high waist", "classic fit", "short sleeve", "everyday wear", "gym workout"], "options": ["color: black", "size: medium"], "instruction_attributes": ["straight leg"], "instruction_options": ["black", "medium"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QGSM12", "worker_id": "A2JP9IKRHNLRPI"}], "B09MCWS928": [{"asin": "B09MCWS928", "instruction": "i need double-sided face wash sponge ( 4 color)", "attributes": ["double sided", "easy clean", "fine lines", "dead skin"], "options": ["color: 04"], "instruction_attributes": ["double sided"], "instruction_options": ["04"], "assignment_id": "3C2NJ6JBKLR8MKCQFT3MA1Y8NCEN2I", "worker_id": "A258PTOZ3D2TQR"}], "B018SFM042": [{"asin": "B018SFM042", "instruction": "i want travel size cornucopia 1-ounce cobalt glass jars.", "attributes": ["bpa free", "travel size"], "options": [""], "instruction_attributes": ["travel size"], "instruction_options": [], "assignment_id": "36PW28KO4A6TXHUHZ9TIQWNXL85EAR", "worker_id": "A2RBF3IIJP15IH"}], "B000E0QFSC": [{"asin": "B000E0QFSC", "instruction": "i'd like to shop for a vanity light with a bronze finish and glass shades.", "attributes": ["bronze finish", "vanity light", "glass shade"], "options": [""], "instruction_attributes": ["bronze finish", "vanity light", "glass shade"], "instruction_options": [], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5Y1ZQ3H", "worker_id": "AR9AU5FY1S3RO"}], "B096KCZFVS": [{"asin": "B096KCZFVS", "instruction": "i am looking for antique gray color nightstand that is fully assembled.", "attributes": ["fully assembled", "assembly required", "brushed nickel"], "options": ["color: antique gray"], "instruction_attributes": ["fully assembled"], "instruction_options": ["antique gray"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH6FQHM", "worker_id": "A1Q8PPQQCWGY0D"}], "B09BR9F792": [{"asin": "B09BR9F792", "instruction": "i am looking for throw blanket of size 60\"x80\" and is super soft.", "attributes": ["super soft", "machine washable", "fleece throw"], "options": ["color: teal", "size: 60\"x80\""], "instruction_attributes": ["super soft"], "instruction_options": ["60\"x80\""], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME98DD2R", "worker_id": "A1Q8PPQQCWGY0D"}], "B09Q55LNN6": [{"asin": "B09Q55LNN6", "instruction": "i need a multi9 floor lamp for my living room.", "attributes": ["space saving", "storage space", "living room"], "options": ["color: multi9"], "instruction_attributes": ["living room"], "instruction_options": ["multi9"], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4HSBSD", "worker_id": "A15ERD4HOFEPHM"}], "B07YWBHL1C": [{"asin": "B07YWBHL1C", "instruction": "i am looking for an easy to clean foot stool for a beauty salon.", "attributes": ["non slip", "easy clean", "beauty salon"], "options": [""], "instruction_attributes": ["easy clean", "beauty salon"], "instruction_options": [], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUN4R3M", "worker_id": "A1EREKSZAA9V7B"}], "B098J857T8": [{"asin": "B098J857T8", "instruction": "i'm locking for a bathroom lighting over modern style mirror.", "attributes": ["easy install", "vanity light", "stainless steel"], "options": ["color: matt black- square shade base", "size: dimmable 5 lights"], "instruction_attributes": ["vanity light"], "instruction_options": [], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVKGSZ2", "worker_id": "A21IUUHBSEVB56"}], "B09N7D3MCC": [{"asin": "B09N7D3MCC", "instruction": "i want a gold colored and high performance android tablet.", "attributes": ["long lasting", "high performance", "high definition"], "options": ["color: gold"], "instruction_attributes": ["high performance"], "instruction_options": ["gold"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HXQPBG", "worker_id": "AVIEE6LDH0BT5"}], "B09N3BVWCJ": [{"asin": "B09N3BVWCJ", "instruction": "i would like a cupcake topper for a birthday cake.", "attributes": ["birthday party", "party supplies", "birthday cake", "baby shower"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCIBOBAK", "worker_id": "A1WS884SI0SLO4"}], "B095N8PLXY": [{"asin": "B095N8PLXY", "instruction": "i want to find burgundy colored moccasins with faux fur in a size 7.", "attributes": ["day comfort", "faux fur", "synthetic sole"], "options": ["color: burgundy", "size: 7"], "instruction_attributes": ["faux fur"], "instruction_options": ["burgundy", "7"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTY94E6", "worker_id": "A345TDMHP3DQ3G"}], "B07DK2673W": [{"asin": "B07DK2673W", "instruction": "i want to find a plant-based belly oil for pregnancy and stretch marks with a legacy pattern.", "attributes": ["plant based", "cruelty free", "natural ingredients", "fine lines"], "options": ["pattern name: legacy"], "instruction_attributes": ["plant based"], "instruction_options": ["legacy"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7K09E7A", "worker_id": "A345TDMHP3DQ3G"}], "B08G8492L2": [{"asin": "B08G8492L2", "instruction": "i am looking for 2 blue color body brush that is easy to clean.", "attributes": ["easy clean", "double sided", "non toxic"], "options": ["color: 2 blue"], "instruction_attributes": ["easy clean"], "instruction_options": ["2 blue"], "assignment_id": "3ZDAD0O1TCN7IDK70EAR9QYWP32TX1", "worker_id": "A1Q8PPQQCWGY0D"}], "B083C5DWWD": [{"asin": "B083C5DWWD", "instruction": "i am looking for tea tree shampoo for dry hair.", "attributes": ["cruelty free", "hair growth", "dry hair", "damaged hair", "hair loss"], "options": ["style: tea tree shampoo"], "instruction_attributes": ["dry hair"], "instruction_options": ["tea tree shampoo"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XONI9LO", "worker_id": "A1EREKSZAA9V7B"}], "B08ZHTCQSH": [{"asin": "B08ZHTCQSH", "instruction": "i want white cotton laundry baskets that can be wall mounted.", "attributes": ["wall mounted", "living room"], "options": ["color: white cotton"], "instruction_attributes": ["wall mounted"], "instruction_options": ["white cotton"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB9C68N6", "worker_id": "A2RBF3IIJP15IH"}], "B09NY99T88": [{"asin": "B09NY99T88", "instruction": "i want a 1080p smart home surveillance camera.", "attributes": ["high definition", "1080p hd", "easy install", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd"], "instruction_options": [], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP869Z7S", "worker_id": "A2RBF3IIJP15IH"}], "B09KZG4LF8": [{"asin": "B09KZG4LF8", "instruction": "i am looking for khaki colored nightstand for my living room.", "attributes": ["space saving", "white item", "living room"], "options": ["color: khaki"], "instruction_attributes": ["living room"], "instruction_options": ["khaki"], "assignment_id": "3HSYG7LRBU82VUVD7MHAI53YAHZKK0", "worker_id": "A1EREKSZAA9V7B"}], "B09FJRH69S": [{"asin": "B09FJRH69S", "instruction": "i am looking for a 60 inch by 50 inch machine washable super soft throw blanket.", "attributes": ["super soft", "machine washable"], "options": ["color: pig", "size: 60\"x50\""], "instruction_attributes": ["super soft", "machine washable"], "instruction_options": ["60\"x50\""], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRJAWNA", "worker_id": "A1EREKSZAA9V7B"}], "B09JZRLPMV": [{"asin": "B09JZRLPMV", "instruction": "i am looking for sparkling water of fizzy lychee flavor having low carb.", "attributes": ["gluten free", "low carb"], "options": ["flavor name: fizzy lychee", "size: variety pack"], "instruction_attributes": ["low carb"], "instruction_options": ["fizzy lychee"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R9WTY7", "worker_id": "A1Q8PPQQCWGY0D"}], "B09FS255S4": [{"asin": "B09FS255S4", "instruction": "i am looking for revitalizing conditioner of size 1 pack used for hair growth.", "attributes": ["hair growth", "hair treatment", "natural hair", "dry hair", "hair loss"], "options": ["size: 1 pack"], "instruction_attributes": ["hair growth"], "instruction_options": ["1 pack"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AUUBWY", "worker_id": "A1Q8PPQQCWGY0D"}], "B00MHGYTYI": [{"asin": "B00MHGYTYI", "instruction": "please find me an eight ounce bottle of pomegranate and fig moisturizer that's cruelty free.", "attributes": ["plant based", "cruelty free", "long lasting", "natural ingredients"], "options": ["scent: pomegranate and fig", "size: 8 oz"], "instruction_attributes": ["cruelty free"], "instruction_options": ["pomegranate and fig", "8 oz"], "assignment_id": "3G2UL9A02OO71034MOY04HTU328765", "worker_id": "AR9AU5FY1S3RO"}], "B0163N2T38": [{"asin": "B0163N2T38", "instruction": "i want to find a wireless headset that is hands-free. the color should be grey and the style should be classic.", "attributes": ["hands free", "long lasting", "high performance"], "options": ["color: litegry", "style: classic"], "instruction_attributes": ["hands free"], "instruction_options": ["litegry", "classic"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWTLW60", "worker_id": "A345TDMHP3DQ3G"}], "B09GBDGJRL": [{"asin": "B09GBDGJRL", "instruction": "i'm looking for lowrise blue sweatpants in a medium.", "attributes": ["low rise", "wide leg", "loose fit", "slim fit", "daily wear"], "options": ["color: blue8", "size: medium"], "instruction_attributes": ["low rise"], "instruction_options": ["blue8", "medium"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVL41PE", "worker_id": "AR9AU5FY1S3RO"}], "B08Q7QK29Q": [{"asin": "B08Q7QK29Q", "instruction": "i want to buy hair extensions clips for synthetic hair and they should be red and green colors.", "attributes": ["hair extensions", "synthetic hair"], "options": ["color: red+green"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": ["red+green"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8TH0E5ZJ", "worker_id": "AJY5G987IRT25"}], "B09Q2ZB3CF": [{"asin": "B09Q2ZB3CF", "instruction": "i want sloth floral women's slip on canvas non slip shoes in size 8.5", "attributes": ["non slip", "contrast color", "fashion design", "quality materials", "rubber sole"], "options": ["color: 1-14", "size: 8.5"], "instruction_attributes": ["non slip"], "instruction_options": ["8.5"], "assignment_id": "3RUIQRXJBMYOZ6VDDM5CC5TSOH5LL3", "worker_id": "A2RBF3IIJP15IH"}], "B08XMMFD22": [{"asin": "B08XMMFD22", "instruction": "i am looking for multi 06 color duvet cover set for king size bed.", "attributes": ["twin size", "queen size", "machine washable", "king size"], "options": ["color: multi 06", "size: twin"], "instruction_attributes": ["king size"], "instruction_options": ["multi 06"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AUTWBI", "worker_id": "A1Q8PPQQCWGY0D"}], "B09N6L96GT": [{"asin": "B09N6L96GT", "instruction": "i want a 17.7 in long by 17.7 inch 1042117309949930000 window panel for my dining room.", "attributes": ["tempered glass", "dining room"], "options": ["color: 1042117309949930000", "size: (width\uff0917.7in x (length)17.7in x 2pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["1042117309949930000", "(width\uff0917.7in x (length)17.7in x 2pcs"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ7JSIA", "worker_id": "A1WS884SI0SLO4"}], "B098B96PP7": [{"asin": "B098B96PP7", "instruction": "i am looking for adjustable child learning blue color desk chair with lumbar support", "attributes": ["easy clean", "easy assemble", "lumbar support"], "options": ["color: blue"], "instruction_attributes": ["lumbar support"], "instruction_options": ["blue"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA8TC8T", "worker_id": "A258PTOZ3D2TQR"}], "B09GBC7N2B": [{"asin": "B09GBC7N2B", "instruction": "i want to buy a skirt for women which is high waist, and is of olive color, and the size of x-large.", "attributes": ["cotton spandex", "elastic waist", "high waist", "polyester spandex"], "options": ["color: olive", "size: x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["olive", "x-large"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTU55ED", "worker_id": "AJY5G987IRT25"}], "B09H7S4Q28": [{"asin": "B09H7S4Q28", "instruction": "i'm looking for a super soft and easy to clean throw blanket. choose the ones that come in cartoon3 color.", "attributes": ["super soft", "easy clean"], "options": ["color: cartoon3"], "instruction_attributes": ["super soft", "easy clean"], "instruction_options": ["cartoon3"], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDR15KX", "worker_id": "A3MNXK3VDK37SN"}], "B08118H4KB": [{"asin": "B08118H4KB", "instruction": "i'm looking for a comfortable fit yoga tank in size 1x and the color light grey heather.", "attributes": ["machine wash", "comfortable fit"], "options": ["color: light grey heather", "size: 1x"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["light grey heather", "1x"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9PKB01", "worker_id": "AK3JMCIGU8MLU"}], "B083JJVQVX": [{"asin": "B083JJVQVX", "instruction": "find gluten-free nori flakes.", "attributes": ["fat free", "gluten free"], "options": ["flavor: flakes", "size: 4 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3JJVG1YBEM7YK86GUM0BHD1QQXR5BC", "worker_id": "AVIEE6LDH0BT5"}], "B08JYMFM1N": [{"asin": "B08JYMFM1N", "instruction": "i want a pair of dark brown easy spirit elinot women's boots with rubber soles.", "attributes": ["water resistant", "faux fur", "rubber outsole", "rubber sole"], "options": ["color: dark brown", "size: 7.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["dark brown"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKPBVPX", "worker_id": "A2RBF3IIJP15IH"}], "B0041YSU76": [{"asin": "B0041YSU76", "instruction": "i am looking for effortless paraben free eye liner", "attributes": ["paraben free", "easy apply", "cruelty free"], "options": [""], "instruction_attributes": ["paraben free"], "instruction_options": [], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8F8A5O", "worker_id": "A258PTOZ3D2TQR"}], "B083VSPFVC": [{"asin": "B083VSPFVC", "instruction": "i'm looking for a hair treatment with tea tree oil. i need one that's for dry hair and promotes hair growth.", "attributes": ["tea tree", "dry hair", "natural hair", "hair growth", "hair loss"], "options": [""], "instruction_attributes": ["tea tree", "dry hair", "hair growth"], "instruction_options": [], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN5NOGG", "worker_id": "AR9AU5FY1S3RO"}], "B08SRBT86D": [{"asin": "B08SRBT86D", "instruction": "i need a 33 inch living room end table", "attributes": ["fully assembled", "living room"], "options": ["color: oil rubbed bronze", "size: 33 inch"], "instruction_attributes": ["living room"], "instruction_options": ["33 inch"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDW1QZH", "worker_id": "A2ECRNQ3X5LEXD"}], "B084623LWW": [{"asin": "B084623LWW", "instruction": "i am looking for a men's large navy star wars t-shirt.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: navy", "fit type: men", "size: large"], "instruction_attributes": ["star wars"], "instruction_options": ["navy", "men", "large"], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQJNHHL", "worker_id": "A1EREKSZAA9V7B"}], "B01K8OQRT0": [{"asin": "B01K8OQRT0", "instruction": "i'm looking for a white coaxial cable that is 10 feet long.", "attributes": ["gold plated", "coaxial cable"], "options": ["color: white", "size: kit"], "instruction_attributes": ["coaxial cable"], "instruction_options": ["white"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UML0URDL", "worker_id": "A2JP9IKRHNLRPI"}], "B08D6ZFWDQ": [{"asin": "B08D6ZFWDQ", "instruction": "i am looking for10th gen intel core i7 -32 gb ram 2tb sotrage capacity pc", "attributes": ["intel core", "quad core"], "options": ["capacity: 2tb", "configuration: i7 | 32gb", "style: 13\""], "instruction_attributes": ["intel core"], "instruction_options": ["2tb", "i7 | 32gb"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPKJ6V0", "worker_id": "A258PTOZ3D2TQR"}], "B08RYBSZZG": [{"asin": "B08RYBSZZG", "instruction": "i need an x-large button down shirt that i can double dry", "attributes": ["easy care", "machine wash", "wash cold", "classic fit", "button closure", "tumble dry"], "options": ["color: north hilo - black onyx", "size: x-large"], "instruction_attributes": ["tumble dry"], "instruction_options": ["x-large"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT75YJ7", "worker_id": "A2ECRNQ3X5LEXD"}], "B085PL16RW": [{"asin": "B085PL16RW", "instruction": "i want a purple conditioner for damaged hair.", "attributes": ["sulfate free", "damaged hair", "hair treatment"], "options": ["color: purple conditioner"], "instruction_attributes": ["damaged hair"], "instruction_options": ["purple conditioner"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYSZ7NH", "worker_id": "A1WS884SI0SLO4"}], "B000W7OL0Q": [{"asin": "B000W7OL0Q", "instruction": "i'm looking for some cologne that is scented with green tea.", "attributes": ["design house", "green tea"], "options": [""], "instruction_attributes": ["green tea"], "instruction_options": [], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXGN7GJ", "worker_id": "A345TDMHP3DQ3G"}], "B07G3J9CKY": [{"asin": "B07G3J9CKY", "instruction": "i want to buy foundation for mattress set which is ready to use and fully assembled.", "attributes": ["ready use", "fully assembled", "assembly required", "box spring"], "options": [""], "instruction_attributes": ["ready use", "fully assembled"], "instruction_options": [], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQF2KVI", "worker_id": "AJY5G987IRT25"}], "B0781HSDTZ": [{"asin": "B0781HSDTZ", "instruction": "i need a three meter gold placed rca audio cable.", "attributes": ["gold plated", "aluminum alloy", "usb port"], "options": ["size: 3m | 10ft"], "instruction_attributes": ["gold plated"], "instruction_options": ["3m | 10ft"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZF7PAN", "worker_id": "AR9AU5FY1S3RO"}], "B08THCND64": [{"asin": "B08THCND64", "instruction": "i need an adapter with output protection", "attributes": ["output protection", "quick release", "usb port"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BQ3VJV", "worker_id": "A2ECRNQ3X5LEXD"}], "B0871V6GWY": [{"asin": "B0871V6GWY", "instruction": "i'm looking for a 31-inch clear glass vanity light.", "attributes": ["glass shade", "vanity light", "clear glass", "living room"], "options": ["size: 31.0 inch"], "instruction_attributes": ["vanity light", "clear glass"], "instruction_options": ["31.0 inch"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79UQH1L", "worker_id": "AFU00NU09CFXE"}, {"asin": "B0871V6GWY", "instruction": "i am looking for a bathroom vanity light fixture with clear glass. also, please make sure that it is at least 31 inches in size.", "attributes": ["glass shade", "vanity light", "clear glass", "living room"], "options": ["size: 31.0 inch"], "instruction_attributes": ["vanity light", "clear glass"], "instruction_options": ["31.0 inch"], "assignment_id": "3QFUFYSY99P616EWLJ3XVBMX5UW4FM", "worker_id": "AJDQGOTMB2D80"}], "B006MIUM20": [{"asin": "B006MIUM20", "instruction": "i need a black bed frame that is made of steel for a queen sized bed.", "attributes": ["box spring", "memory foam", "steel frame"], "options": ["color: black", "size: queen", "style: regular (14\")"], "instruction_attributes": ["steel frame"], "instruction_options": ["black", "queen"], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISV0YOZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HSXB9FV": [{"asin": "B08HSXB9FV", "instruction": "i want black modern led chandeliers for dining room.", "attributes": ["easy install", "pendant light", "light fixture", "living room", "dining room"], "options": ["color: black", "size: 6 lights"], "instruction_attributes": ["dining room"], "instruction_options": ["black"], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ10SIF", "worker_id": "A2RBF3IIJP15IH"}], "B07BCQPKMP": [{"asin": "B07BCQPKMP", "instruction": "i would like extra large checkered sleep pants that i can machine wash.", "attributes": ["wash cold", "machine wash", "relaxed fit", "tumble dry"], "options": ["color: with checker pant", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["with checker pant", "x-large"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRSAWPT", "worker_id": "A1WS884SI0SLO4"}], "B002865CGG": [{"asin": "B002865CGG", "instruction": "i want fat free mariani pitted dates.", "attributes": ["fat free", "gluten free", "non gmo", "dietary fiber", "resealable bag"], "options": ["flavor name: pitted dates"], "instruction_attributes": ["fat free"], "instruction_options": ["pitted dates"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFSEE3K", "worker_id": "A2RBF3IIJP15IH"}], "B09PG42SJW": [{"asin": "B09PG42SJW", "instruction": "i want a stainless steel ladies eyebrow razor shaver.", "attributes": ["rose gold", "stainless steel", "hair removal"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3WAKVUDHU7QS3BT5I6W3KN7A6IB7UG", "worker_id": "A2RBF3IIJP15IH"}], "B08PYFDCRB": [{"asin": "B08PYFDCRB", "instruction": "i am looking for an easy to install 3 light vintage black wall sconce.", "attributes": ["easy install", "vanity light", "light fixture", "living room"], "options": ["size: 3 light"], "instruction_attributes": ["easy install"], "instruction_options": ["3 light"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0SSARN", "worker_id": "A1EREKSZAA9V7B"}], "B09KKVKQ79": [{"asin": "B09KKVKQ79", "instruction": "i need fleece lined underwear that is striped grey and comes in an xx-large", "attributes": ["fleece lined", "moisture wicking", "nylon spandex"], "options": ["color: stripe-grey", "size: xx-large"], "instruction_attributes": ["fleece lined"], "instruction_options": ["stripe-grey", "xx-large"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV948V7", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HXC625B": [{"asin": "B09HXC625B", "instruction": "i would like a 90 men's santa sleep set that i can hand wash.", "attributes": ["hand wash", "long sleeve", "elastic closure", "short sleeve"], "options": ["color: black&plaid- santa", "fit type: men", "size: 90"], "instruction_attributes": ["hand wash"], "instruction_options": ["black&plaid- santa", "men", "90"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3PPMZZ", "worker_id": "A1WS884SI0SLO4"}], "B085VK2CWK": [{"asin": "B085VK2CWK", "instruction": "i need some bluetooth speakers that offer stereo sound are are cobalt blue", "attributes": ["long lasting", "high speed", "stereo sound"], "options": ["color: cobalt blue"], "instruction_attributes": ["stereo sound"], "instruction_options": ["cobalt blue"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8HFR4A", "worker_id": "A2ECRNQ3X5LEXD"}], "B076639JKZ": [{"asin": "B076639JKZ", "instruction": "i am looking for kosher certified caffeinated chocolate bites.", "attributes": ["kosher certified", "gluten free", "artificial flavors"], "options": ["flavor: variety pack", "unit count: 30"], "instruction_attributes": ["kosher certified"], "instruction_options": ["30"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBADOSK", "worker_id": "A2KW17G25L25R8"}], "B08DHM2Z3F": [{"asin": "B08DHM2Z3F", "instruction": "buy me a travel sized bottle of impression chanel 1932.", "attributes": ["travel size", "long lasting"], "options": ["scent: chanel 1932 impression"], "instruction_attributes": ["travel size"], "instruction_options": ["chanel 1932 impression"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGWMTWO", "worker_id": "AR9AU5FY1S3RO"}], "B09D4WLH5N": [{"asin": "B09D4WLH5N", "instruction": "i am looking for a desktop pc that is a core i5 and has 8gb of ram with a 512gb ssd.", "attributes": ["dual band", "core i5", "intel core"], "options": ["size: 8gb ram | 512gb ssd"], "instruction_attributes": ["core i5"], "instruction_options": ["8gb ram | 512gb ssd"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFDO02T", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DKPD2Z7": [{"asin": "B08DKPD2Z7", "instruction": "i am looking for a twin size bed with easy assemble. also choose white color.", "attributes": ["twin size", "space saving", "easy assemble", "box spring"], "options": ["color: white"], "instruction_attributes": ["twin size", "easy assemble"], "instruction_options": ["white"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9RH87Z", "worker_id": "A2HMEGTAFO0CS8"}], "B09FJXKDS6": [{"asin": "B09FJXKDS6", "instruction": "i would like a stainless steel adjustable base.", "attributes": ["height adjustable", "stainless steel"], "options": [""], "instruction_attributes": ["height adjustable", "stainless steel"], "instruction_options": [], "assignment_id": "3UJ1CZ6IZSZX1UNI58M672BQUFPS50", "worker_id": "A1WS884SI0SLO4"}], "B09CPFNX2Z": [{"asin": "B09CPFNX2Z", "instruction": "i need some shades that are for the living room and are black and white with a size of 28\" by 64\"", "attributes": ["easy install", "living room"], "options": ["color: blackout - white", "size: 28\"w x 64\"h"], "instruction_attributes": ["living room"], "instruction_options": ["blackout - white", "28\"w x 64\"h"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y5ZIVF", "worker_id": "A2ECRNQ3X5LEXD"}], "B0924ZDJNX": [{"asin": "B0924ZDJNX", "instruction": "i need long lasting eyeshadow that is in the color 01", "attributes": ["long lasting", "highly pigmented", "easy use"], "options": ["color: 01"], "instruction_attributes": ["long lasting"], "instruction_options": ["01"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTNEV4T", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DVSVCR7": [{"asin": "B09DVSVCR7", "instruction": "i need a media player that is easy to carry", "attributes": ["dual band", "easy carry"], "options": [""], "instruction_attributes": ["easy carry"], "instruction_options": [], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7V35PI", "worker_id": "A2ECRNQ3X5LEXD"}], "B01NCA7RCV": [{"asin": "B01NCA7RCV", "instruction": "i want grey new balance men's shoes with rubber soles.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: grey", "size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["grey"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KMHLJ6", "worker_id": "A2RBF3IIJP15IH"}], "B096DSLRV8": [{"asin": "B096DSLRV8", "instruction": "i would like some orange walking shoes that have a rubber sole in a size 10.5.", "attributes": ["non slip", "lace closure", "rubber sole"], "options": ["color: orange", "size: 10.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["orange", "10.5"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB0T5YZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09N6MZ66Y": [{"asin": "B09N6MZ66Y", "instruction": "i am looking for blue non slip women's sandals that are size 9.", "attributes": ["non slip", "closed toe", "ankle strap"], "options": ["color: blue", "size: 9"], "instruction_attributes": ["non slip"], "instruction_options": ["9"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODMYWE0", "worker_id": "A1EREKSZAA9V7B"}], "B08QM8KGPH": [{"asin": "B08QM8KGPH", "instruction": "get me a quick release camera tripod made out of aluminum alloy.", "attributes": ["quick release", "aluminum alloy"], "options": [""], "instruction_attributes": ["quick release", "aluminum alloy"], "instruction_options": [], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CWW3B6", "worker_id": "AR9AU5FY1S3RO"}], "B095C1TB9H": [{"asin": "B095C1TB9H", "instruction": "i need a cosmetic bag that is easy to carry and is leopard print.", "attributes": ["easy carry", "rose gold", "eye shadow"], "options": ["color: leopard 113"], "instruction_attributes": ["easy carry"], "instruction_options": ["leopard 113"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NHOKB2", "worker_id": "A2ECRNQ3X5LEXD"}], "B08KGD4399": [{"asin": "B08KGD4399", "instruction": "i would like a wall mounted mirror for my living room.", "attributes": ["wall mounted", "living room"], "options": [""], "instruction_attributes": ["wall mounted", "living room"], "instruction_options": [], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21L4FQ3", "worker_id": "A1WS884SI0SLO4"}], "B08BJX51RG": [{"asin": "B08BJX51RG", "instruction": "i am looking for a plant based probiotic tea.", "attributes": ["non dairy", "usda organic", "plant based", "non gmo", "gluten free"], "options": [""], "instruction_attributes": ["plant based"], "instruction_options": [], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8NQ6QI", "worker_id": "A1EREKSZAA9V7B"}], "B09NDSDVQJ": [{"asin": "B09NDSDVQJ", "instruction": "i need a slim fiting sweater that is green and in 3x large.", "attributes": ["slim fit", "machine wash", "long sleeve", "relaxed fit", "everyday wear", "daily wear"], "options": ["color: green", "size: 3x-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["green", "3x-large"], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLI7OIKP", "worker_id": "A2ECRNQ3X5LEXD"}], "B07Q5VPJ8R": [{"asin": "B07Q5VPJ8R", "instruction": "i need an officially licensed star wars \u201cyoda best grandpa\u201c t-shirt. get one that is a youth size and make it black.", "attributes": ["officially licensed", "needle sleeve", "classic fit", "star wars"], "options": ["color: black", "fit type: youth", "size: 4t"], "instruction_attributes": ["officially licensed", "star wars"], "instruction_options": ["black", "youth"], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRD4NWJ", "worker_id": "A31PW970Z2PC5P"}], "B07PK2WMWQ": [{"asin": "B07PK2WMWQ", "instruction": "i am looking for a four pack of chocolate protein drinks that are dairy free.", "attributes": ["dairy free", "soy free", "non gmo", "artificial ingredients", "low sugar", "gluten free", "shelf stable", "low calorie", "keto friendly", "low carb", "plant based"], "options": ["flavor name: chocolate", "size: 11 fl oz (pack of 4)"], "instruction_attributes": ["dairy free"], "instruction_options": ["chocolate", "11 fl oz (pack of 4)"], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBA0B8AG", "worker_id": "A2ECRNQ3X5LEXD"}], "B07G78835P": [{"asin": "B07G78835P", "instruction": "i want a body brush nature boar bristles back scrubber for dry skin.", "attributes": ["non slip", "high quality", "long handle", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733K1BEI", "worker_id": "A2RBF3IIJP15IH"}], "B07MDRMNK8": [{"asin": "B07MDRMNK8", "instruction": "i want a travel size toiletry bag.", "attributes": ["leak proof", "travel size", "travel bottles"], "options": [""], "instruction_attributes": ["travel size"], "instruction_options": [], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCHRIPN", "worker_id": "A1WS884SI0SLO4"}], "B08W8G4QXF": [{"asin": "B08W8G4QXF", "instruction": "look for a sixteen ounce bottle of shampoo that's paraben free and plant based.", "attributes": ["paraben free", "plant based", "dry hair"], "options": ["scent: orange blossom (coily)", "size: 16 fl oz (pack of 6)"], "instruction_attributes": ["paraben free", "plant based"], "instruction_options": ["16 fl oz (pack of 6)"], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP3VJ7G", "worker_id": "AR9AU5FY1S3RO"}], "B08W2YD6BL": [{"asin": "B08W2YD6BL", "instruction": "i need to order a pair of blue snow boots in size five.", "attributes": ["anti slip", "non slip", "rubber sole"], "options": ["color: blue 107", "size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["blue 107", "5"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSALWC7", "worker_id": "AR9AU5FY1S3RO"}], "B07CHV6G21": [{"asin": "B07CHV6G21", "instruction": "i need a 8 fluid ounce bottle of redwood mist body wash made from natural ingredients.", "attributes": ["seed oil", "coconut oil", "natural ingredients"], "options": ["scent: redwood mist", "size: 8 fl oz (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["redwood mist", "8 fl oz (pack of 1)"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R17Z2IK", "worker_id": "A1WS884SI0SLO4"}], "B019ILMPCW": [{"asin": "B019ILMPCW", "instruction": "i need two one hundred foot male to male hdmi cables. they should be high speed and gold plated.", "attributes": ["high speed", "gold plated"], "options": ["color: 2 pack", "size: 100 feet (single pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["2 pack", "100 feet (single pack)", "hdmi male to male"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK5DVNU", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B019ILMPCW", "instruction": "i want a high speed hdmi male to female cable. i need it to be 40 feet in single pack.", "attributes": ["high speed", "gold plated"], "options": ["color: 3 pack", "size: 40 feet (single pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["40 feet (single pack)", "hdmi male to female"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPG8VQP", "worker_id": "A1NF6PELRKACS9"}], "B09MTBV2PG": [{"asin": "B09MTBV2PG", "instruction": "i am in need of easy to use hair curlers rollers which is good for diy hair styling.", "attributes": ["easy use", "hair styling"], "options": [""], "instruction_attributes": ["easy use", "hair styling"], "instruction_options": [], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57EH9IT", "worker_id": "ASWFLI3N8X72G"}], "B09T6SMG6S": [{"asin": "B09T6SMG6S", "instruction": "i would like a medium sized red jumpsuit that is machine washable.", "attributes": ["wide leg", "hand wash", "machine wash", "tummy control"], "options": ["color: red", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["red", "medium"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLW7YBL", "worker_id": "A1WS884SI0SLO4"}], "B0865SKG5G": [{"asin": "B0865SKG5G", "instruction": "please show me a black white 05 sneaker for man. i'm looking for a sneaker for men with synthetic sole, size 9.5.", "attributes": ["non slip", "synthetic sole"], "options": ["color: black white 05", "size: 9.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["black white 05", "9.5"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVM5JKU", "worker_id": "A15IJ20C3R4HUO"}], "B09PQG6HHY": [{"asin": "B09PQG6HHY", "instruction": "i would like some monoculars for birdwatching.", "attributes": ["high definition", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3EFE17QCRNF9HN7D6ANFWZEGZO6SH7", "worker_id": "A1WS884SI0SLO4"}], "B07KGMLRR7": [{"asin": "B07KGMLRR7", "instruction": "i would like a roelson table that is made of solid wood.", "attributes": ["assembly required", "bronze finish", "solid wood", "living room"], "options": ["color: roelson"], "instruction_attributes": ["solid wood"], "instruction_options": ["roelson"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXVDMY0", "worker_id": "A1WS884SI0SLO4"}], "B08ZT1DWTC": [{"asin": "B08ZT1DWTC", "instruction": "i would like some 10 inch high quality hair extensions.", "attributes": ["high quality", "hair loss"], "options": ["size: 10 inch"], "instruction_attributes": ["high quality"], "instruction_options": ["10 inch"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FEOLEO", "worker_id": "A1WS884SI0SLO4"}], "B093YSKTPY": [{"asin": "B093YSKTPY", "instruction": "i would like to see a wallet that would go with my hoisery", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery"], "instruction_options": [], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67KF4NO", "worker_id": "A2ECRNQ3X5LEXD"}], "B08R2M5DJT": [{"asin": "B08R2M5DJT", "instruction": "i need some easy to carry breath mints for fresh breath.", "attributes": ["easy carry", "bad breath", "fresh breath"], "options": [""], "instruction_attributes": ["easy carry", "fresh breath"], "instruction_options": [], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH378GESF", "worker_id": "A19317A3X87NVM"}], "B09LQSSBZ6": [{"asin": "B09LQSSBZ6", "instruction": "i would like a day rifle scope with a optical zoom.", "attributes": ["optical zoom", "bird watching"], "options": ["style: day scope"], "instruction_attributes": ["optical zoom"], "instruction_options": ["day scope"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57DD9IN", "worker_id": "A1WS884SI0SLO4"}], "B097WMDZ6Q": [{"asin": "B097WMDZ6Q", "instruction": "i would like a 1 tb nvme with 64 gig quad core desktop mini.", "attributes": ["core i5", "quad core"], "options": ["size: 64gb memory", "style: 1tb nvme m.2"], "instruction_attributes": ["quad core"], "instruction_options": ["64gb memory", "1tb nvme m.2"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0TYW5Y", "worker_id": "A1WS884SI0SLO4"}], "B082FNCRXH": [{"asin": "B082FNCRXH", "instruction": "i'd like to buy some non-gmo trail mix. look for a six pack of four ounce bags, in the dark chocolate cherry tart flavor.", "attributes": ["chocolate covered", "non gmo", "dietary fiber"], "options": ["flavor: dark chocolate cherry tart", "size: 4 ounce bag (6 count)"], "instruction_attributes": ["non gmo"], "instruction_options": ["dark chocolate cherry tart", "4 ounce bag (6 count)"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79PHH12", "worker_id": "AR9AU5FY1S3RO"}], "B08LLDM11C": [{"asin": "B08LLDM11C", "instruction": "i want white ylong-zs hanging lamps for my dining room.", "attributes": ["pendant light", "dining room"], "options": ["color: yl22-white"], "instruction_attributes": ["dining room"], "instruction_options": ["yl22-white"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHRENY2J8", "worker_id": "A2RBF3IIJP15IH"}], "B07GTCHQSK": [{"asin": "B07GTCHQSK", "instruction": "i need a contemporary chair that is pink with a gold base.", "attributes": ["contemporary design", "stainless steel"], "options": ["color: pink", "style: gold base"], "instruction_attributes": ["contemporary design"], "instruction_options": ["pink", "gold base"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJSYVGR", "worker_id": "A2ECRNQ3X5LEXD"}], "B07HBMZXL4": [{"asin": "B07HBMZXL4", "instruction": "i am looking for a variety of natural flavored iced tea.", "attributes": ["non gmo", "bpa free", "natural flavors"], "options": ["style: variety"], "instruction_attributes": ["natural flavors"], "instruction_options": ["variety"], "assignment_id": "3GDTJDAPV5LDQHTFJ9XN7DMB4HMM80", "worker_id": "A1EREKSZAA9V7B"}], "B08L42TQW4": [{"asin": "B08L42TQW4", "instruction": "i'm looking for a desktop computer with an intel core processor and at least 16gb of ram and a 512gb solid state.", "attributes": ["dual band", "intel core"], "options": ["configuration: 16gb ram | 512gb ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["16gb ram | 512gb ssd"], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKOSSG7", "worker_id": "A3EDFA8UQT5GG8"}], "B07DPWSN5S": [{"asin": "B07DPWSN5S", "instruction": "hello, i'm looking for a harklinikken styling gel. i use no2 /5.07 oz. please consider a anti-frizz moderate hold for dry hair, plant based .", "attributes": ["plant based", "dry hair", "hair styling"], "options": [""], "instruction_attributes": ["plant based", "dry hair"], "instruction_options": [], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WTD1AV", "worker_id": "A15IJ20C3R4HUO"}], "B08X6NJWVD": [{"asin": "B08X6NJWVD", "instruction": "i would like some red and black sandals that have a rubber sole and are in a size 11.5", "attributes": ["non slip", "quick drying", "arch support", "rubber outsole", "rubber sole"], "options": ["color: red | black", "size: 11.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["red | black", "11.5"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WOTWQH", "worker_id": "A2ECRNQ3X5LEXD"}], "B099ZV9MVM": [{"asin": "B099ZV9MVM", "instruction": "i am looking for drink coasters, handmade drink coasters, table mat, set of eight.", "attributes": ["easy clean", "eco friendly"], "options": ["color: linen"], "instruction_attributes": ["eco friendly"], "instruction_options": ["linen"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KLKHU5", "worker_id": "A2KW17G25L25R8"}], "B083QPDP58": [{"asin": "B083QPDP58", "instruction": "i would like a gold dusty rose chair for my living room.", "attributes": ["mid century", "stainless steel", "dining room", "living room"], "options": ["color: gold dusty rose"], "instruction_attributes": ["living room"], "instruction_options": ["gold dusty rose"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD0QRI1", "worker_id": "A1WS884SI0SLO4"}], "B086QSTH3X": [{"asin": "B086QSTH3X", "instruction": "i want a 100 pack of easy to use disposable face hairspray shields.", "attributes": ["easy use", "hair cutting"], "options": ["color: 100pcs"], "instruction_attributes": ["easy use"], "instruction_options": ["100pcs"], "assignment_id": "37TRT2X24116R7L1JO45INKV8SXBJ3", "worker_id": "A2RBF3IIJP15IH"}], "B09PYVG834": [{"asin": "B09PYVG834", "instruction": "i am interested in a console table that is made out of solid wood and is espresso colored.", "attributes": ["solid wood", "living room"], "options": ["color: espresso"], "instruction_attributes": ["solid wood"], "instruction_options": ["espresso"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTRLXWK", "worker_id": "A2ECRNQ3X5LEXD"}], "B086422BW8": [{"asin": "B086422BW8", "instruction": "i would like a high quality brush set.", "attributes": ["high quality", "eye shadow"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWU9ER9R", "worker_id": "A1WS884SI0SLO4"}], "B07WMVMHDV": [{"asin": "B07WMVMHDV", "instruction": "i want a 1080p hd hdmi extender + hdmi splitter.", "attributes": ["blu ray", "1080p hd"], "options": ["style: hdmi extender + hdmi splitter"], "instruction_attributes": ["1080p hd"], "instruction_options": ["hdmi extender + hdmi splitter"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57EM9IY", "worker_id": "A2RBF3IIJP15IH"}], "B08TQXS59H": [{"asin": "B08TQXS59H", "instruction": "i would like a parker espresso entertainment center for my dining room.", "attributes": ["storage unit", "dining room"], "options": ["color: espresso", "style name: parker"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80BQ1QT", "worker_id": "A1WS884SI0SLO4"}], "B01MSSDEPK": [{"asin": "B01MSSDEPK", "instruction": "shop for fragrance free facial cleanser for sensitive skin. look for the sixteen ounce size.", "attributes": ["fragrance free", "paraben free", "hyaluronic acid", "dry skin", "sensitive skin"], "options": ["size: 16 fl oz"], "instruction_attributes": ["fragrance free", "sensitive skin"], "instruction_options": ["16 fl oz"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WU2A1V", "worker_id": "AR9AU5FY1S3RO"}], "B09MDYVTCW": [{"asin": "B09MDYVTCW", "instruction": "i need green cactus coasters for the living room that come in a pack of four.", "attributes": ["easy clean", "living room"], "options": ["color: cactus2cbu9481", "size: set of 4 with cup holder"], "instruction_attributes": ["living room"], "instruction_options": ["cactus2cbu9481", "set of 4 with cup holder"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5EUWIW", "worker_id": "A2ECRNQ3X5LEXD"}], "B086661Z9R": [{"asin": "B086661Z9R", "instruction": "i would like a 13 by 1.8 cm picture 6 case of fine mist.", "attributes": ["travel bottles", "fine mist"], "options": ["color: picture 6", "size: 13*1.8cm"], "instruction_attributes": ["fine mist"], "instruction_options": ["picture 6", "13*1.8cm"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YO88TB", "worker_id": "A1WS884SI0SLO4"}], "B09R9QTKGW": [{"asin": "B09R9QTKGW", "instruction": "i need some easy to install lamp shades that are black.", "attributes": ["white item", "easy install"], "options": ["color: black"], "instruction_attributes": ["easy install"], "instruction_options": ["black"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGMDYIG", "worker_id": "A2ECRNQ3X5LEXD"}], "B081CCNXTX": [{"asin": "B081CCNXTX", "instruction": "i want a gift basket village celebration gift box.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q1RGWD", "worker_id": "A2RBF3IIJP15IH"}], "B08YMX246Z": [{"asin": "B08YMX246Z", "instruction": "i want easy to use birthday cake toppers for celebrating mothers day.", "attributes": ["easy use", "birthday cake"], "options": [""], "instruction_attributes": ["easy use", "birthday cake"], "instruction_options": [], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2M6L56", "worker_id": "A1NF6PELRKACS9"}], "B07VQGKVVY": [{"asin": "B07VQGKVVY", "instruction": "i would like a travel size bottle kit.", "attributes": ["leak proof", "bpa free", "travel size", "easy carry", "travel bottles"], "options": [""], "instruction_attributes": ["travel size", "travel bottles"], "instruction_options": [], "assignment_id": "39K0FND3ASPR95MUG7H134S6U48MAO", "worker_id": "A1WS884SI0SLO4"}], "B09DKZ7PWD": [{"asin": "B09DKZ7PWD", "instruction": "i need some fashion sneakers that are size 3 for a big kid.", "attributes": ["non slip", "ethylene vinyl", "vinyl acetate", "rubber outsole"], "options": ["color: fusion", "size: 3 big kid"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["3 big kid"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLWCBY3", "worker_id": "A2ECRNQ3X5LEXD"}], "B084KTL212": [{"asin": "B084KTL212", "instruction": "i am looking for a motion detection surveillance kit.", "attributes": ["ultra hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSUVGLS", "worker_id": "A2ECRNQ3X5LEXD"}], "B078WBXZ1J": [{"asin": "B078WBXZ1J", "instruction": "i am looking for simple ingredients to make burbon caramel dessert.", "attributes": ["gluten free", "ready eat", "kosher certified", "non gmo", "simple ingredients"], "options": ["flavor name: bourbon caramel"], "instruction_attributes": ["simple ingredients"], "instruction_options": ["bourbon caramel"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTRKP9R", "worker_id": "A2KW17G25L25R8"}], "B000SOIIZM": [{"asin": "B000SOIIZM", "instruction": "i am looking for a mini eau de toilette for a women. also choose green tea scent", "attributes": ["design house", "green tea"], "options": [""], "instruction_attributes": ["green tea"], "instruction_options": [], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMO7BQE", "worker_id": "A2HMEGTAFO0CS8"}], "B082LJ5GKD": [{"asin": "B082LJ5GKD", "instruction": "i would like a 2 foot by 9 foot long navy floor runner for my dining room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: navy | ivory", "size: 2 ft x 9 ft"], "instruction_attributes": ["dining room"], "instruction_options": ["navy | ivory", "2 ft x 9 ft"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEH68QU", "worker_id": "A1WS884SI0SLO4"}], "B09H3LJHF5": [{"asin": "B09H3LJHF5", "instruction": "i want black fine mist spray bottles.", "attributes": ["bpa free", "fine mist"], "options": ["color: black"], "instruction_attributes": ["fine mist"], "instruction_options": ["black"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163RUQPK", "worker_id": "A2RBF3IIJP15IH"}], "B01N37AK8V": [{"asin": "B01N37AK8V", "instruction": "i want ebanel 10 pack collagen anti aging face mask.", "attributes": ["anti aging", "alcohol free", "cruelty free", "hyaluronic acid"], "options": ["size: 10 count"], "instruction_attributes": ["anti aging"], "instruction_options": ["10 count"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDM7CHM", "worker_id": "A2RBF3IIJP15IH"}], "B092ZJYJ21": [{"asin": "B092ZJYJ21", "instruction": "i would like to see some noise cancelling headphones that are red.", "attributes": ["noise cancelling", "hands free"], "options": ["color: red"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["red"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AJMST4", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q943KN9": [{"asin": "B09Q943KN9", "instruction": "i need an automobile charger that has wireless charging and is black.", "attributes": ["fast charging", "wireless charging"], "options": ["color: black"], "instruction_attributes": ["wireless charging"], "instruction_options": ["black"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DTYOTG", "worker_id": "A2ECRNQ3X5LEXD"}], "B098P8MRNT": [{"asin": "B098P8MRNT", "instruction": "i would like to have a plug and play high speed usb flash drive that is blue and black, the quantity should be 3 of 32g or 2 of 64g.", "attributes": ["plug play", "high speed"], "options": ["color: bule and black", "size: 32g 3pcs and 64g 2pcs"], "instruction_attributes": ["plug play", "high speed"], "instruction_options": ["bule and black", "32g 3pcs and 64g 2pcs"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV9IV88", "worker_id": "A182YKPS46KE9F"}], "B00BETIULM": [{"asin": "B00BETIULM", "instruction": "i want a blue mefoto roadtrip carbon fiber tripod/monopod.", "attributes": ["quick release", "heavy duty", "carbon fiber"], "options": ["color: blue", "style: carbon fiber"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["blue"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME9312DU", "worker_id": "A2RBF3IIJP15IH"}], "B004OW70G2": [{"asin": "B004OW70G2", "instruction": "i am looking for a high quality eau de toilette spray for women", "attributes": ["design house", "high quality"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZX5CNI", "worker_id": "A2HMEGTAFO0CS8"}], "B092JLLYK6": [{"asin": "B092JLLYK6", "instruction": "get me a sixteen pack of apple cinnamon freeze dried banana chips.", "attributes": ["freeze dried", "non gmo", "gluten free", "plant based", "dairy free", "real fruit"], "options": ["flavor name: apple cinnamon", "size: 0.53 ounce (pack of 16)"], "instruction_attributes": ["freeze dried"], "instruction_options": ["apple cinnamon", "0.53 ounce (pack of 16)"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N20SG68", "worker_id": "AR9AU5FY1S3RO"}], "B08XQGDK52": [{"asin": "B08XQGDK52", "instruction": "i am in need of a faux leather ottoman that is brown.", "attributes": ["high density", "faux leather", "pu leather", "solid wood", "living room"], "options": ["color: brown"], "instruction_attributes": ["faux leather"], "instruction_options": ["brown"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAU8VC9Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B01N7HBEO8": [{"asin": "B01N7HBEO8", "instruction": "i want a pkpower ac dc adapter charger for g-project with output protection.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3HPZF4IVNX3FW186JO133U513H5YCQ", "worker_id": "A2RBF3IIJP15IH"}], "B09LYSH4YL": [{"asin": "B09LYSH4YL", "instruction": "i am interested in some toothbrushes that are easy to use and are either pink or blue", "attributes": ["easy use", "sensitive teeth"], "options": ["color: pink, blue"], "instruction_attributes": ["easy use"], "instruction_options": ["pink, blue"], "assignment_id": "3ZY8KE4ISUD2M8NKJVFEG0QOPFQQV0", "worker_id": "A2ECRNQ3X5LEXD"}], "B07HH4BYNK": [{"asin": "B07HH4BYNK", "instruction": "i would like a 36 mm tube stainless steel tripod.", "attributes": ["heavy duty", "carbon fiber", "stainless steel"], "options": ["size: max tube 36mm", "style: only tripod"], "instruction_attributes": ["stainless steel"], "instruction_options": ["max tube 36mm", "only tripod"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40FWNXY", "worker_id": "A1WS884SI0SLO4"}], "B09QQ5KZFY": [{"asin": "B09QQ5KZFY", "instruction": "look for a fluoride free toothpaste in purple color. pick a teeth whitening one for sensitive teeth.", "attributes": ["long lasting", "fluoride free", "teeth whitening", "natural ingredients", "fresh breath", "sensitive teeth", "bad breath"], "options": ["color: purple"], "instruction_attributes": ["fluoride free", "teeth whitening", "sensitive teeth"], "instruction_options": ["purple"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTSD7LJ", "worker_id": "A1NF6PELRKACS9"}], "B09KXD32Q9": [{"asin": "B09KXD32Q9", "instruction": "i am looking for a memory foam bed, one that does not need a box spring i would like queen size.", "attributes": ["queen size", "bronze finish", "memory foam", "box spring"], "options": ["color: white", "size: full"], "instruction_attributes": ["memory foam", "box spring"], "instruction_options": ["white"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOGQMLP", "worker_id": "A2KW17G25L25R8"}], "B098C5R15H": [{"asin": "B098C5R15H", "instruction": "i need a manual toothbrush for bad breath", "attributes": ["oral hygiene", "bad breath"], "options": [""], "instruction_attributes": ["bad breath"], "instruction_options": [], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TWGSUG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08RSM28V9": [{"asin": "B08RSM28V9", "instruction": "i am looking for a 12 by 16 inch african american poster that is ready to hang.", "attributes": ["ready hang", "living room", "dining room"], "options": ["color: pink african american girl inspirational", "size: 12x16inch"], "instruction_attributes": ["ready hang"], "instruction_options": ["pink african american girl inspirational", "12x16inch"], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJLIMOT", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KLPML72": [{"asin": "B07KLPML72", "instruction": "i am interested in a non toxic beauty bag.", "attributes": ["non toxic", "fine mist"], "options": [""], "instruction_attributes": ["non toxic"], "instruction_options": [], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4A40IP", "worker_id": "A2ECRNQ3X5LEXD"}], "B0872DG5NK": [{"asin": "B0872DG5NK", "instruction": "i want a brown gift basket of great american cookies.", "attributes": ["baked fresh", "birthday cake", "perfect gift", "gift basket"], "options": ["flavor name: congrats box (brown)"], "instruction_attributes": ["gift basket"], "instruction_options": ["congrats box (brown)"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUSRQJN", "worker_id": "A2RBF3IIJP15IH"}], "B097NW1NJ9": [{"asin": "B097NW1NJ9", "instruction": "i need some floating shelves for my living room. i'd like them to be grey.", "attributes": ["ready use", "long lasting", "living room"], "options": ["color: grey"], "instruction_attributes": ["living room"], "instruction_options": ["grey"], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO4T33P", "worker_id": "AR9AU5FY1S3RO"}], "B082D247QB": [{"asin": "B082D247QB", "instruction": "i want a white yisella shower brush with a long handle.", "attributes": ["eco friendly", "long handle"], "options": ["color: pink | white"], "instruction_attributes": ["long handle"], "instruction_options": ["pink | white"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMBEDXQ", "worker_id": "A2RBF3IIJP15IH"}], "B09MWN6HDD": [{"asin": "B09MWN6HDD", "instruction": "i am looking for a motion detection indoor, outdoor camera smart surveillance.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4LWKPG", "worker_id": "A2KW17G25L25R8"}], "B08GHGYH77": [{"asin": "B08GHGYH77", "instruction": "i want to buy some non-toxic bath gloves.", "attributes": ["non toxic", "easy use", "dead skin"], "options": [""], "instruction_attributes": ["non toxic"], "instruction_options": [], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602SS950", "worker_id": "AR9AU5FY1S3RO"}], "B08HB4TNKL": [{"asin": "B08HB4TNKL", "instruction": "i need some high quality false lashes that are 20d-16mm", "attributes": ["easy use", "high quality"], "options": ["style: 20d-16mm"], "instruction_attributes": ["high quality"], "instruction_options": ["20d-16mm"], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA3Z8CL", "worker_id": "A2ECRNQ3X5LEXD"}], "B097H7BCYM": [{"asin": "B097H7BCYM", "instruction": "i want a drawing desk that's easy to clean and has a steel frame.", "attributes": ["easy clean", "coated steel", "steel frame"], "options": [""], "instruction_attributes": ["easy clean", "steel frame"], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTSU9PN", "worker_id": "A345TDMHP3DQ3G"}], "B07P9W3BK1": [{"asin": "B07P9W3BK1", "instruction": "i would like to get some low carb gourmet crunchy snack which has a red peppers | jalapenos flavor.", "attributes": ["low carb", "resealable bag"], "options": ["flavor: red peppers | jalapenos"], "instruction_attributes": ["low carb"], "instruction_options": ["red peppers | jalapenos"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKZYIU0", "worker_id": "A20DUVEOH6A7KW"}], "B0962T75TW": [{"asin": "B0962T75TW", "instruction": "i need ceiling lights that are a light wood grain color and are easy to install", "attributes": ["easy install", "light fixture", "white finish", "living room"], "options": ["color: 2 light wood grain"], "instruction_attributes": ["easy install"], "instruction_options": ["2 light wood grain"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J9NFSQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07XLW2Q46": [{"asin": "B07XLW2Q46", "instruction": "i am looking for a star wars darth vader funny t-shirt.", "attributes": ["needle sleeve", "classic fit", "star wars"], "options": ["color: royal blue", "fit type: women", "size: 3t"], "instruction_attributes": ["star wars"], "instruction_options": ["women"], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOF8CT0", "worker_id": "A2KW17G25L25R8"}], "B08KVPWV49": [{"asin": "B08KVPWV49", "instruction": "i am looking for high quality natural hair extension. please make sure that is 14 inches in size.", "attributes": ["high quality", "hair extensions"], "options": ["color: body wave 4 bundles with closure", "size: 14 | 14 | 14 | 14+12 inch"], "instruction_attributes": ["high quality"], "instruction_options": ["14 | 14 | 14 | 14+12 inch"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EB8AU6P", "worker_id": "AJDQGOTMB2D80"}], "B01I0TE6GQ": [{"asin": "B01I0TE6GQ", "instruction": "i am looking for an end table that has a white finish.", "attributes": ["white item", "white finish"], "options": [""], "instruction_attributes": ["white finish"], "instruction_options": [], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTNH4V5", "worker_id": "A2ECRNQ3X5LEXD"}], "B07B9LDKPZ": [{"asin": "B07B9LDKPZ", "instruction": "i would like a 35 foot long multicolored hdmi cable for my blu ray player.", "attributes": ["gold plated", "blu ray"], "options": ["color: multi-colored", "size: 35ft"], "instruction_attributes": ["blu ray"], "instruction_options": ["multi-colored", "35ft"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WOVWQJ", "worker_id": "A1WS884SI0SLO4"}], "B097161249": [{"asin": "B097161249", "instruction": "order a tempered glass screen protector for my iphone 13.", "attributes": ["glass screen", "tempered glass"], "options": [""], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": [], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOIZ0FL", "worker_id": "AR9AU5FY1S3RO"}], "B000C20ZSS": [{"asin": "B000C20ZSS", "instruction": "i want a high quality bvlgari blv by bvlgari for women perfume.", "attributes": ["design house", "high quality"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3C9QN4", "worker_id": "A2RBF3IIJP15IH"}], "B006QN9TFC": [{"asin": "B006QN9TFC", "instruction": "i need a 4oz size hair conditioner that has argan oil and is for damged hair.", "attributes": ["sulfate free", "argan oil", "damaged hair", "hair growth"], "options": ["size: 120ml | 4 fl oz"], "instruction_attributes": ["argan oil", "damaged hair"], "instruction_options": ["120ml | 4 fl oz"], "assignment_id": "3X1FV8S5J81B9JT6GZA2MMMMJSJGVX", "worker_id": "A1KZ0KE93WNN5O"}], "B0973QX9X2": [{"asin": "B0973QX9X2", "instruction": "i want to find a 2-pack of 32 fluid ounces of gourmet lime cocktail mix. it needs to taste just like a bloody mary with dill pickles and be gluten free.", "attributes": ["low calorie", "low carb", "gluten free", "high fructose"], "options": ["flavor name: dill pickle bloody mary", "size: 32 fl oz (pack of 2)"], "instruction_attributes": ["gluten free"], "instruction_options": ["dill pickle bloody mary", "32 fl oz (pack of 2)"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYBHIEW", "worker_id": "A345TDMHP3DQ3G"}], "B09BVSKVXG": [{"asin": "B09BVSKVXG", "instruction": "i want to shop for a pair of pink ankle boots with leather soles. i need them in a size eight.", "attributes": ["anti slip", "rubber sole", "leather sole"], "options": ["color: 4pink", "size: 8"], "instruction_attributes": ["leather sole"], "instruction_options": ["4pink", "8"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY5E0UK", "worker_id": "AR9AU5FY1S3RO"}], "B08TQQSQHZ": [{"asin": "B08TQQSQHZ", "instruction": "i would like some solid wood coat hooks to mount on the walls.", "attributes": ["wall mounted", "solid wood"], "options": [""], "instruction_attributes": ["wall mounted", "solid wood"], "instruction_options": [], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AJQOE5", "worker_id": "A1WS884SI0SLO4"}], "B07TZ6B73F": [{"asin": "B07TZ6B73F", "instruction": "i am looking for a game joystick that has a usb port and must be the color black.", "attributes": ["plug play", "usb port"], "options": ["color: black"], "instruction_attributes": ["usb port"], "instruction_options": ["black"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZG9O8N", "worker_id": "A1KZ0KE93WNN5O"}], "B082WMCYX8": [{"asin": "B082WMCYX8", "instruction": "find me some keto friendly and gluten free turkey bars. they should have no sugar and get the 48 count pack.", "attributes": ["low carb", "high protein", "keto friendly", "sugar free", "grass fed", "freeze dried", "gluten free", "low calorie", "ready eat", "individually wrapped", "dairy free", "non gmo", "zero sugar", "gift basket"], "options": ["flavor name: keto sampler", "size: 48 count (pack of 1)"], "instruction_attributes": ["keto friendly", "gluten free"], "instruction_options": ["48 count (pack of 1)"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIUV9T6", "worker_id": "A1NF6PELRKACS9"}], "B09PG9CZY3": [{"asin": "B09PG9CZY3", "instruction": "i want black womens memory foam walking shoes.", "attributes": ["non slip", "memory foam", "high heel", "rubber sole", "teen girls"], "options": ["color: black", "size: 8"], "instruction_attributes": ["memory foam"], "instruction_options": ["black"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKIQT10", "worker_id": "A2RBF3IIJP15IH"}], "B07ZQSQ3B2": [{"asin": "B07ZQSQ3B2", "instruction": "i would like a 42mm smartwatch band that is made of stainless steel and has a gold connector.", "attributes": ["compatible apple", "long lasting", "stainless steel"], "options": ["color: tiana brown w | gold connector&clasp", "size: 42mm-44mm-45mm"], "instruction_attributes": ["stainless steel"], "instruction_options": ["tiana brown w | gold connector&clasp", "42mm-44mm-45mm"], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJMS9OY", "worker_id": "A2ECRNQ3X5LEXD"}], "B08696JGJK": [{"asin": "B08696JGJK", "instruction": "i am looking for a desktop computer with intel core i7-10510u cpu, 240g ssd storage and 16g of ram.", "attributes": ["dual band", "intel core", "aluminum alloy"], "options": ["color: cpu i7-10510u", "size: 16g ram 240g ssd"], "instruction_attributes": ["intel core"], "instruction_options": ["cpu i7-10510u", "16g ram 240g ssd"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ53MCK1", "worker_id": "AJDQGOTMB2D80"}], "B07KX8GVB7": [{"asin": "B07KX8GVB7", "instruction": "give me one adidas crazyflight usav cross trainer regular fit women please, my size is 14.5", "attributes": ["synthetic sole", "rubber outsole", "regular fit"], "options": ["color: white | power red | white", "size: 14.5"], "instruction_attributes": ["regular fit"], "instruction_options": ["white | power red | white"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRKSMF8", "worker_id": "A15IJ20C3R4HUO"}], "B09T5PR172": [{"asin": "B09T5PR172", "instruction": "i want a high quality tooth brush for my sensitive teeth. it should be pale yellow in color.", "attributes": ["high quality", "sensitive teeth"], "options": ["color: pale yellow, small (for 2-6)"], "instruction_attributes": ["high quality"], "instruction_options": ["pale yellow, small (for 2-6)"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB5SY4J", "worker_id": "A1NF6PELRKACS9"}], "B000HTKOMS": [{"asin": "B000HTKOMS", "instruction": "i am looking for big and tall levi's men's 505 regular fit jeans that are machine washable.", "attributes": ["straight leg", "machine wash", "imported zipper", "regular fit"], "options": ["color: tin man - stretch", "fit type: big & tall", "size: 36w x 32l"], "instruction_attributes": ["machine wash"], "instruction_options": ["big & tall"], "assignment_id": "35GCEFQ6IGYRORMSMHSLOYA93ZKZ3A", "worker_id": "A1EREKSZAA9V7B"}], "B0179PDSNO": [{"asin": "B0179PDSNO", "instruction": "i would like a men's rubber sole shoe with a size 7.5.", "attributes": ["steel toe", "rubber outsole", "rubber sole"], "options": ["size: 7.5"], "instruction_attributes": ["rubber outsole", "rubber sole"], "instruction_options": ["7.5"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC27IN8", "worker_id": "A1WS884SI0SLO4"}], "B00N33U2SG": [{"asin": "B00N33U2SG", "instruction": "i would like a dark grey hair building fiber that is easy to apply.", "attributes": ["easy apply", "hair loss"], "options": ["color: dark grey & pepper"], "instruction_attributes": ["easy apply"], "instruction_options": ["dark grey & pepper"], "assignment_id": "3WEV0KO0OX2S572BKE4P5EZI7WJDSP", "worker_id": "A1WS884SI0SLO4"}], "B07VGMCM3T": [{"asin": "B07VGMCM3T", "instruction": "i want trader joe's organic apple banana fruit crushers.", "attributes": ["trader joe", "real fruit", "artificial flavors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK5CVNT", "worker_id": "A2RBF3IIJP15IH"}], "B08CVS5KZJ": [{"asin": "B08CVS5KZJ", "instruction": "i would like a 7 piece king comforter set decorated with flowers and is machine washable.", "attributes": ["queen size", "machine washable"], "options": ["color: flowers", "size: king-7 pieces"], "instruction_attributes": ["machine washable"], "instruction_options": ["flowers", "king-7 pieces"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KL2HUN", "worker_id": "A1WS884SI0SLO4"}], "B00NVK6K5K": [{"asin": "B00NVK6K5K", "instruction": "i want non gmo wild planet wild albacore tuna unsalted.", "attributes": ["non gmo", "gluten free"], "options": ["size: 3 ounce (pack of 1)", "style: albacore no salt"], "instruction_attributes": ["non gmo"], "instruction_options": ["albacore no salt"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMOAQBW", "worker_id": "A2RBF3IIJP15IH"}], "B093X7Z6Z3": [{"asin": "B093X7Z6Z3", "instruction": "i would like some individually wrapped mandolorian lollipops for party supplies.", "attributes": ["individually wrapped", "party supplies"], "options": ["flavor name: mandolorian | the child pop ups"], "instruction_attributes": ["individually wrapped", "party supplies"], "instruction_options": ["mandolorian | the child pop ups"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTLN6ON", "worker_id": "A1WS884SI0SLO4"}], "B09QMDTYDK": [{"asin": "B09QMDTYDK", "instruction": "look for a long sleeve polyester pullover top. get style-23 in small.", "attributes": ["long sleeve", "quality polyester", "daily wear"], "options": ["color: style-23", "size: small"], "instruction_attributes": ["long sleeve", "quality polyester"], "instruction_options": ["style-23", "small"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PLNQEW", "worker_id": "AR9AU5FY1S3RO"}], "B08PL42Q82": [{"asin": "B08PL42Q82", "instruction": "i would like a 55 inch high def tv.", "attributes": ["high definition", "quad core"], "options": ["size: 55 inches"], "instruction_attributes": ["high definition"], "instruction_options": ["55 inches"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFD520C", "worker_id": "A1WS884SI0SLO4"}], "B07TSKCMY8": [{"asin": "B07TSKCMY8", "instruction": "i need white storage cabinets.", "attributes": ["white item", "white finish"], "options": [""], "instruction_attributes": ["white item"], "instruction_options": [], "assignment_id": "3PM8NZGV89QUQXSFJAGW4LN95R5XQJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08P8JKN6J": [{"asin": "B08P8JKN6J", "instruction": "i am looking for a home office desk chair that has lumbar support and is black.", "attributes": ["easy assemble", "lumbar support"], "options": ["color: black"], "instruction_attributes": ["lumbar support"], "instruction_options": ["black"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34JO14R", "worker_id": "A2ECRNQ3X5LEXD"}], "B092YL6HFF": [{"asin": "B092YL6HFF", "instruction": "i am looking for aluminum alloy professional ball head tripod for camera with color: x-4i", "attributes": ["quick release", "aluminum alloy"], "options": ["color: x-4i"], "instruction_attributes": ["aluminum alloy"], "instruction_options": ["x-4i"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TLTN3Y", "worker_id": "AX2EWYWZM19AZ"}], "B07K6Z1DD1": [{"asin": "B07K6Z1DD1", "instruction": "i want a frosted 8 inch shade for my lamp in the living room.", "attributes": ["clear glass", "glass shade", "living room"], "options": ["color: frosted - 2 pack", "size: 2-5 | 8 inch - 10 inch"], "instruction_attributes": ["living room"], "instruction_options": ["frosted - 2 pack", "2-5 | 8 inch - 10 inch"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V2M2US", "worker_id": "A1WS884SI0SLO4"}], "B09JW89R1W": [{"asin": "B09JW89R1W", "instruction": "i need an easy to carry pair of monoculars that are standard.", "attributes": ["long lasting", "high resolution", "easy carry", "bird watching"], "options": ["color: standard + phone clip"], "instruction_attributes": ["easy carry"], "instruction_options": ["standard + phone clip"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H2DU8M", "worker_id": "A2ECRNQ3X5LEXD"}], "B081L2DQVG": [{"asin": "B081L2DQVG", "instruction": "check for the following product in pink: honeydew ladies ultra soft cozy lounge leggings, drawstring closure. thanks", "attributes": ["machine wash", "drawstring closure"], "options": ["color: pink", "size: small"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["pink"], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH4R1VB", "worker_id": "A15IJ20C3R4HUO"}], "B099PSRW2T": [{"asin": "B099PSRW2T", "instruction": "get me some relaxed fit loafers, please.", "attributes": ["ethylene vinyl", "vinyl acetate", "relaxed fit"], "options": [""], "instruction_attributes": ["relaxed fit"], "instruction_options": [], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODMZWE1", "worker_id": "AR9AU5FY1S3RO"}], "B0943FMYK2": [{"asin": "B0943FMYK2", "instruction": "i am looking for a high powered digital amplifier board.", "attributes": ["high power", "power amplifier"], "options": [""], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "3ZPPDN2SL66FSYKC73FIU1CDFLAE9P", "worker_id": "A1EREKSZAA9V7B"}], "B091G2R6MH": [{"asin": "B091G2R6MH", "instruction": "i am interested in a shampoo set that is paraben free and comes in a pack of two.", "attributes": ["sulfate free", "paraben free", "dry hair"], "options": ["size: 28 fl oz (pack of 2)", "style: shampoo - pack of 1"], "instruction_attributes": ["paraben free"], "instruction_options": ["28 fl oz (pack of 2)"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8FENZF", "worker_id": "A2ECRNQ3X5LEXD"}], "B00FP2ACMY": [{"asin": "B00FP2ACMY", "instruction": "i need low rise boot cut pants in grey color.", "attributes": ["low rise", "comfortable fit"], "options": ["color: grey", "size: 35w x 30l"], "instruction_attributes": ["low rise"], "instruction_options": ["grey"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTNXV4C", "worker_id": "A1NF6PELRKACS9"}], "B07RWF7NG9": [{"asin": "B07RWF7NG9", "instruction": "i am interested in a lemon yellow t-shirt for youth that is machine washable and is in an x-small.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: lemon", "fit type: youth", "size: x-small"], "instruction_attributes": ["machine wash"], "instruction_options": ["lemon", "youth", "x-small"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F2Z0HOW", "worker_id": "A2ECRNQ3X5LEXD"}], "B0040ZOQ24": [{"asin": "B0040ZOQ24", "instruction": "i would like a 14.5 fluid ounce can of fresh scent oven cleaner that is easy to use.", "attributes": ["easy use", "kosher certified"], "options": ["scent: fresh scent", "size: 14.5 fl oz (pack of 6)"], "instruction_attributes": ["easy use"], "instruction_options": ["fresh scent", "14.5 fl oz (pack of 6)"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4W10H6", "worker_id": "A1WS884SI0SLO4"}], "B09NNGX9H7": [{"asin": "B09NNGX9H7", "instruction": "i would like a slim fitting button down shirt in an x-small that is light blue", "attributes": ["slim fit", "hand wash", "short sleeve", "long sleeve", "regular fit", "contrast color", "stretch fabric", "fashion design", "relaxed fit", "dry clean", "daily wear"], "options": ["color: b#light blue", "size: x-small"], "instruction_attributes": ["slim fit"], "instruction_options": ["b#light blue", "x-small"], "assignment_id": "3V5Q80FXI811IGJGXAJ71N02IPL233", "worker_id": "A2ECRNQ3X5LEXD"}], "B00UIMGK9U": [{"asin": "B00UIMGK9U", "instruction": "i need knee high socks that are ivory", "attributes": ["knee high", "machine wash", "wash cold", "tumble dry"], "options": ["color: ivory"], "instruction_attributes": ["knee high"], "instruction_options": ["ivory"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54PU38O", "worker_id": "A2ECRNQ3X5LEXD"}], "B07H7VDDVH": [{"asin": "B07H7VDDVH", "instruction": "i want a tan and cruelty free dual salmon concealer.", "attributes": ["fragrance free", "paraben free", "cruelty free", "coconut oil"], "options": ["color: tan"], "instruction_attributes": ["cruelty free"], "instruction_options": ["tan"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0SZ6116", "worker_id": "A2RBF3IIJP15IH"}], "B07CJWZ4XF": [{"asin": "B07CJWZ4XF", "instruction": "shop for a device that prevents hair loss and promotes growth.", "attributes": ["hair growth", "hair loss"], "options": [""], "instruction_attributes": ["hair growth", "hair loss"], "instruction_options": [], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DUUTOJ", "worker_id": "AR9AU5FY1S3RO"}], "B008IDJ4NU": [{"asin": "B008IDJ4NU", "instruction": "i am looking for some espresso pleated shades that are easy to install and are 36 inch by 72 inch.", "attributes": ["white item", "easy install"], "options": ["color: espresso", "size: 36-inch by 72-inch"], "instruction_attributes": ["easy install"], "instruction_options": ["espresso", "36-inch by 72-inch"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADGWVWY", "worker_id": "A2ECRNQ3X5LEXD"}], "B097NG3SVJ": [{"asin": "B097NG3SVJ", "instruction": "i need to buy some eighty-four inch curtains for my living room.", "attributes": ["living room", "dining room"], "options": ["color: color21", "size: 84\"w x 84\"l"], "instruction_attributes": ["living room"], "instruction_options": ["84\"w x 84\"l"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAFKVOB", "worker_id": "AR9AU5FY1S3RO"}], "B07VLMG4DR": [{"asin": "B07VLMG4DR", "instruction": "i am looking for a silver smartwatch band that is apple compatible.", "attributes": ["compatible apple", "high performance"], "options": ["color: silver", "size: 38mm | 40mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["silver"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DAWDWN", "worker_id": "A1EREKSZAA9V7B"}], "B09NL6VC77": [{"asin": "B09NL6VC77", "instruction": "i am looking for men's ripped jeans denim pants with an elastic waist. pick a navy color and get x-large.", "attributes": ["light weight", "machine washable", "hand wash", "elastic waist"], "options": ["color: navy", "size: x-large"], "instruction_attributes": ["machine washable", "elastic waist"], "instruction_options": ["navy", "x-large"], "assignment_id": "3JPSL1DZ539XRN7US8W1GJH6ZUGANA", "worker_id": "A31PW970Z2PC5P"}], "B08CZZMPZW": [{"asin": "B08CZZMPZW", "instruction": "i need a relaxed fit sleep bottom that is gray plaid and is a large", "attributes": ["moisture wicking", "elastic waist", "relaxed fit", "button closure"], "options": ["color: gray plaid", "size: large"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["gray plaid", "large"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA388RV", "worker_id": "A2ECRNQ3X5LEXD"}], "B09R1DKTS6": [{"asin": "B09R1DKTS6", "instruction": "i am looking for a high power sound column subwoofer, that uses bluetooth and is also a 3d surround sound system.", "attributes": ["power amplifier", "high power"], "options": ["color: b"], "instruction_attributes": ["high power"], "instruction_options": [], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNJBNTI", "worker_id": "AK3JMCIGU8MLU"}], "B09RQR4HQS": [{"asin": "B09RQR4HQS", "instruction": "i want blue high waisted plus size swimsuits for women.", "attributes": ["machine wash", "tummy control", "elastic closure", "high waist"], "options": ["color: blue", "size: large"], "instruction_attributes": ["high waist"], "instruction_options": ["blue"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL2SVR8", "worker_id": "A2RBF3IIJP15IH"}], "B00S82AG1U": [{"asin": "B00S82AG1U", "instruction": "i would like a chrome bath sconce that is a vanity light.", "attributes": ["brushed nickel", "nickel finish", "vanity light"], "options": ["color: chrome", "size: four light wall | bath"], "instruction_attributes": ["vanity light"], "instruction_options": ["chrome", "four light wall | bath"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHC8NBP", "worker_id": "A1WS884SI0SLO4"}], "B00AARRS9Y": [{"asin": "B00AARRS9Y", "instruction": "i want speak 510 wireless bluetooth portable speakers, which is uc optimized and comes with a carrying case.", "attributes": ["carrying case", "wireless bluetooth"], "options": ["size: uc optimized (standard)", "style: speak 510"], "instruction_attributes": ["carrying case", "wireless bluetooth"], "instruction_options": ["uc optimized (standard)", "speak 510"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R5LKSE", "worker_id": "ASWFLI3N8X72G"}], "B08FDW2T9T": [{"asin": "B08FDW2T9T", "instruction": "i am looking for a bakers rack for storage space that is 35 by 22 by 42.5cm.", "attributes": ["steel frame", "storage space"], "options": ["size: 35*22*42.5cm"], "instruction_attributes": ["storage space"], "instruction_options": ["35*22*42.5cm"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYLR6MR", "worker_id": "A2ECRNQ3X5LEXD"}], "B08SM44FFD": [{"asin": "B08SM44FFD", "instruction": "i want small wide leg maszone y2k fashion jeans for women.", "attributes": ["wide leg", "slim fit", "tummy control", "high waist", "teen girls"], "options": ["color: d4-blue", "size: small"], "instruction_attributes": ["wide leg"], "instruction_options": ["small"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFR9JO8", "worker_id": "A2RBF3IIJP15IH"}], "B09NN8LSX3": [{"asin": "B09NN8LSX3", "instruction": "i am interested in a long sleeved blue shirt that is in a medium", "attributes": ["fleece lined", "winter warm", "light weight", "long sleeve", "faux fur"], "options": ["color: a6 - blue", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a6 - blue", "medium"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GJL3S8", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DMCX3VF": [{"asin": "B08DMCX3VF", "instruction": "i want to buy the travel size of the creed original impression.", "attributes": ["travel size", "long lasting"], "options": ["scent: creed original santal impression"], "instruction_attributes": ["travel size"], "instruction_options": ["creed original santal impression"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC54VRKS", "worker_id": "AR9AU5FY1S3RO"}], "B09RTQMBZR": [{"asin": "B09RTQMBZR", "instruction": "i need a core i5 desktop that has 20gb of ram and 512gb of storage.", "attributes": ["dual band", "core i5", "intel core"], "options": ["size: 20gb | 512gb ssd", "style: windows 10 pro"], "instruction_attributes": ["core i5"], "instruction_options": ["20gb | 512gb ssd"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H29U8I", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BY8BWNB": [{"asin": "B08BY8BWNB", "instruction": "i'm looking for a party supplies of birthday party cupcake.", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIDMVFG", "worker_id": "A1Q0EUNCS50S8M"}], "B082T2M91S": [{"asin": "B082T2M91S", "instruction": "i need a brushed nickel floor lamp that is turquoise", "attributes": ["brushed nickel", "nickel finish"], "options": ["color: turquoise"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["turquoise"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79ONH16", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HMZXK4R": [{"asin": "B08HMZXK4R", "instruction": "i would like a hair comb for dry hair.", "attributes": ["dry hair", "hair loss"], "options": [""], "instruction_attributes": ["dry hair"], "instruction_options": [], "assignment_id": "33F859I56HNA01QBVO1K6A4GV1BHBO", "worker_id": "A1WS884SI0SLO4"}], "B086ZPR5W2": [{"asin": "B086ZPR5W2", "instruction": "i want reparative eye creme for dark circles.", "attributes": ["plant based", "cruelty free", "dark circles", "fine lines"], "options": [""], "instruction_attributes": ["dark circles"], "instruction_options": [], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH0NQHI", "worker_id": "A2RBF3IIJP15IH"}], "B09J23663B": [{"asin": "B09J23663B", "instruction": "i am looking a dust proof cover easy install easy carry fit for xbox series x colour black", "attributes": ["dust proof", "easy carry", "easy install"], "options": ["color: un"], "instruction_attributes": ["dust proof", "easy carry", "easy install"], "instruction_options": ["un"], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1M7RGT5", "worker_id": "A3N9ZYQAESNFQH"}], "B09MLS9J9L": [{"asin": "B09MLS9J9L", "instruction": "i want a large i just want to work in my garden short sleeve t shirt.", "attributes": ["light weight", "short sleeve", "faux fur"], "options": ["color: srs3-love262-orange", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["large"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACQANH4", "worker_id": "A2RBF3IIJP15IH"}], "B08V4V96YY": [{"asin": "B08V4V96YY", "instruction": "i am looking for heavy duty 4 inch shelf brackets that are easy to install.", "attributes": ["heavy duty", "easy install", "height adjustable", "dining room", "living room"], "options": ["color: 4 inch"], "instruction_attributes": ["heavy duty", "easy install"], "instruction_options": ["4 inch"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCI6KAB5", "worker_id": "A1EREKSZAA9V7B"}], "B09QM769RJ": [{"asin": "B09QM769RJ", "instruction": "i would like some wireless headphones, hands free, in red please. they must have bluetooth and a mic.", "attributes": ["hands free", "stereo sound"], "options": ["color: red"], "instruction_attributes": ["hands free"], "instruction_options": ["red"], "assignment_id": "337RC3OW0GCRVB77RQ7IZERUF95VLI", "worker_id": "A1WAWEY2810TFN"}], "B089659QT7": [{"asin": "B089659QT7", "instruction": "i want a midnight blue and solid wood napa ottoman.", "attributes": ["high density", "assembly required", "solid wood"], "options": ["color: midnight blue", "size: 88.5\" sofa"], "instruction_attributes": ["solid wood"], "instruction_options": ["midnight blue"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZK8Y1U", "worker_id": "A2RBF3IIJP15IH"}], "B084H13NFV": [{"asin": "B084H13NFV", "instruction": "i am looking for a sugar free and gluten free dried fruits in dried pineapple flavor. also choose size of 8 ounce (pack of 2)", "attributes": ["artificial ingredients", "sugar free", "dairy free", "gluten free"], "options": ["flavor name: dried pineapple", "size: 8 ounce (pack of 2)"], "instruction_attributes": ["sugar free", "gluten free"], "instruction_options": ["dried pineapple", "8 ounce (pack of 2)"], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BLH8XH", "worker_id": "A2HMEGTAFO0CS8"}], "B08HCKVX5F": [{"asin": "B08HCKVX5F", "instruction": "i would like a purple 3.35 inch hair clip for hair styling and cutting.", "attributes": ["hair styling", "hair cutting"], "options": ["color: purple", "size: 3.35 inch (pack of 24)"], "instruction_attributes": ["hair styling", "hair cutting"], "instruction_options": ["purple", "3.35 inch (pack of 24)"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0UMXPT", "worker_id": "A1WS884SI0SLO4"}], "B08RJ4VXGQ": [{"asin": "B08RJ4VXGQ", "instruction": "i need a t shirt that i can hand wash in an xx-large and is the color of wine.", "attributes": ["wash cold", "hand wash", "dry clean"], "options": ["color: 03-wine", "size: xx-large"], "instruction_attributes": ["hand wash"], "instruction_options": ["03-wine", "xx-large"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z3RGX0", "worker_id": "A2ECRNQ3X5LEXD"}], "B096KF7K4M": [{"asin": "B096KF7K4M", "instruction": "i am looking for a barbershop tin sign for my hair salon.", "attributes": ["double sided", "hair salon"], "options": ["color: barber shop2", "size: 12inch*17inch"], "instruction_attributes": ["hair salon"], "instruction_options": ["barber shop2"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOHJ9LD", "worker_id": "A2KW17G25L25R8"}], "B06XP2ZQLG": [{"asin": "B06XP2ZQLG", "instruction": "i am interested in some hair growth treatments.", "attributes": ["hair growth", "hair loss", "natural hair", "hair cutting"], "options": [""], "instruction_attributes": ["hair growth"], "instruction_options": [], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z16I1KN", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DD21C8S": [{"asin": "B08DD21C8S", "instruction": "i want a long lasting scented candles aromatherapy soy set.", "attributes": ["long lasting", "soy wax"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFNR3VP", "worker_id": "A2RBF3IIJP15IH"}], "B08WM2V3D9": [{"asin": "B08WM2V3D9", "instruction": "i am looking for a space saving home office desk with a reclaimed wood look to it.", "attributes": ["space saving", "contemporary style"], "options": ["color: brown reclaimed wood-look | black"], "instruction_attributes": ["space saving"], "instruction_options": ["brown reclaimed wood-look | black"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOWK93T", "worker_id": "A1EREKSZAA9V7B"}], "B089GSK6NM": [{"asin": "B089GSK6NM", "instruction": "i am looking for 6 inch stainless steel hair cutting scissors.", "attributes": ["stainless steel", "hair cutting"], "options": ["color: c", "size: 6 inch set"], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": ["6 inch set"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS1WG9F", "worker_id": "A1EREKSZAA9V7B"}], "B08SHSFXF6": [{"asin": "B08SHSFXF6", "instruction": "i would like a 34 piece set of some long lasting press on nails", "attributes": ["long lasting", "nail polish"], "options": ["color: frosting", "size: 34 piece set"], "instruction_attributes": ["long lasting"], "instruction_options": ["frosting", "34 piece set"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGIWO0Z", "worker_id": "A2ECRNQ3X5LEXD"}], "B08411CQPH": [{"asin": "B08411CQPH", "instruction": "i am looking for a dill pickle vegan ranch flavored gourmet popcorn gift basket.", "attributes": ["non gmo", "gluten free", "natural flavors", "gift basket"], "options": ["flavor name: dill pickle vegan ranch", "size: 4 ounce (pack of 9)"], "instruction_attributes": ["gift basket"], "instruction_options": ["dill pickle vegan ranch"], "assignment_id": "3W8CV64QJD9RC8BEX4NOF49Q712H98", "worker_id": "A1EREKSZAA9V7B"}], "B09MYSD8SX": [{"asin": "B09MYSD8SX", "instruction": "i would like some 18 inch micro loop hair extensions.", "attributes": ["double sided", "hair extensions", "hair loss"], "options": ["color: micro loop hair extensions", "size: 18 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["micro loop hair extensions", "18 inch"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOBANOC", "worker_id": "A1WS884SI0SLO4"}], "B0953MXXF1": [{"asin": "B0953MXXF1", "instruction": "i would like a size 8 azure clog made from vinyl acetate.", "attributes": ["ethylene vinyl", "vinyl acetate", "quality materials"], "options": ["color: azure", "size: 8"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["azure", "8"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBDCHGC", "worker_id": "A1WS884SI0SLO4"}], "B0745JHL8C": [{"asin": "B0745JHL8C", "instruction": "i need some regular slim fit jeans that are a size 34w by 38l", "attributes": ["slim fit", "straight leg", "machine wash", "imported zipper", "comfortable fit", "button closure"], "options": ["color: denver", "fit type: regular", "size: 34w x 38l"], "instruction_attributes": ["slim fit"], "instruction_options": ["regular", "34w x 38l"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0RARAK", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NW8X8TX": [{"asin": "B09NW8X8TX", "instruction": "i need a pink color women's eau de parfum which should have a long lasting fragrance.", "attributes": ["long lasting", "green tea"], "options": ["color: pink"], "instruction_attributes": ["long lasting"], "instruction_options": ["pink"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM969RG4S", "worker_id": "ASWFLI3N8X72G"}], "B09C2Z9BM5": [{"asin": "B09C2Z9BM5", "instruction": "i want x-large unisex rubber sole diving shoes.", "attributes": ["non slip", "rubber sole"], "options": ["color: orange", "size: x-large"], "instruction_attributes": ["rubber sole"], "instruction_options": ["x-large"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N5B7TY", "worker_id": "A2RBF3IIJP15IH"}], "B098QHRYN9": [{"asin": "B098QHRYN9", "instruction": "i am looking for a vanity light wall lamp with clear glass also choose 01 - 1 sconces light in color", "attributes": ["vanity light", "clear glass", "glass shade", "light fixture"], "options": ["color: 01 - 1 sconces light"], "instruction_attributes": ["vanity light", "clear glass"], "instruction_options": [], "assignment_id": "37M28K1J01N18XG9DA49NC0PQBGJAM", "worker_id": "A2HMEGTAFO0CS8"}], "B096P751KM": [{"asin": "B096P751KM", "instruction": "i need to buy some cupcake toppers for a birthday party.", "attributes": ["birthday party", "baby shower"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXBIG7D", "worker_id": "AR9AU5FY1S3RO"}], "B000PYOTGC": [{"asin": "B000PYOTGC", "instruction": "i am looking for a 12 ounce jar of raspberry preserve that is nut and gluten free.", "attributes": ["nut free", "gluten free"], "options": ["flavor: clear honey", "size: 12 ounce (pack of 2)", "style: preserve"], "instruction_attributes": ["nut free", "gluten free"], "instruction_options": ["12 ounce (pack of 2)", "preserve"], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLVVDRY", "worker_id": "AJDQGOTMB2D80"}], "B00JGXF99E": [{"asin": "B00JGXF99E", "instruction": "i need 15 pounds of non gmo beans.", "attributes": ["non gmo", "dietary fiber"], "options": ["size: 15 pound (pack of 1)"], "instruction_attributes": ["non gmo"], "instruction_options": ["15 pound (pack of 1)"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG18FU9V", "worker_id": "A2ECRNQ3X5LEXD"}], "B00C0X7UC6": [{"asin": "B00C0X7UC6", "instruction": "i need some hair oil for damaged hair.", "attributes": ["seed oil", "dark circles", "damaged hair", "dry skin", "hair growth"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W71OU3", "worker_id": "A2ECRNQ3X5LEXD"}], "B08GHSLSQR": [{"asin": "B08GHSLSQR", "instruction": "i need some eye cream for treating fine lines.", "attributes": ["dermatologist tested", "dark circles", "fine lines"], "options": [""], "instruction_attributes": ["fine lines"], "instruction_options": [], "assignment_id": "3ON104KXQV68CS0RB8DXZZ8X0XEW44", "worker_id": "AR9AU5FY1S3RO"}], "B08TVG2339": [{"asin": "B08TVG2339", "instruction": "i would like to buy a heavy duty with a rocket type style outlet combo wall plate cover", "attributes": ["heavy duty", "high gloss"], "options": ["style: rocker | outlet combo"], "instruction_attributes": ["heavy duty"], "instruction_options": ["rocker | outlet combo"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG18L9UG", "worker_id": "AJY5G987IRT25"}], "B09S3L82PC": [{"asin": "B09S3L82PC", "instruction": "i would like some fluoride free toothpaste.", "attributes": ["teeth whitening", "fluoride free", "oral hygiene"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGJQO0V", "worker_id": "A1WS884SI0SLO4"}], "B099NPQZX8": [{"asin": "B099NPQZX8", "instruction": "i am looking for beef meat sticks that are keto friendly, and low carb.", "attributes": ["keto friendly", "low carb", "individually wrapped", "zero sugar", "simple ingredients"], "options": ["flavor name: bacon"], "instruction_attributes": ["keto friendly", "low carb"], "instruction_options": ["bacon"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYSTHVU", "worker_id": "A2KW17G25L25R8"}], "B08545S2X3": [{"asin": "B08545S2X3", "instruction": "i need a high speed and dual band wireless signal booster.", "attributes": ["dual band", "high speed"], "options": [""], "instruction_attributes": ["dual band", "high speed"], "instruction_options": [], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZETRPL", "worker_id": "A1NF6PELRKACS9"}], "B01FHVTQNS": [{"asin": "B01FHVTQNS", "instruction": "i'm looking for a cruelty free, herbal toothpaste in mint flavor.", "attributes": ["cruelty free", "oral hygiene"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTRM7LQ", "worker_id": "AK3JMCIGU8MLU"}], "B000SATG70": [{"asin": "B000SATG70", "instruction": "i'm looking for orange spice tea that is caffeine free and organic.", "attributes": ["caffeine free", "certified organic"], "options": ["flavor name: decaf orange spice"], "instruction_attributes": ["caffeine free", "certified organic"], "instruction_options": ["decaf orange spice"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDLHHCZ", "worker_id": "A3EDFA8UQT5GG8"}], "B079SS1CF5": [{"asin": "B079SS1CF5", "instruction": "i am looking for plant based, gluten free, chocolate chip blondie cookies that i can eat or are safe to use for my kid's snacks.", "attributes": ["plant based", "gluten free", "non gmo", "individually wrapped", "natural ingredients"], "options": ["flavor name: chocolate chip blondie", "size: 1.9 ounce (pack of 8)"], "instruction_attributes": ["plant based", "gluten free"], "instruction_options": ["chocolate chip blondie"], "assignment_id": "320DUZ38GIW2IOTCZAWJJYBSO5QGJQ", "worker_id": "AK3JMCIGU8MLU"}], "B00TAM6FNU": [{"asin": "B00TAM6FNU", "instruction": "i would like some cruelty free moisturizer that is in a vanilla shimmer scent and comes in five tubes", "attributes": ["dermatologist tested", "cruelty free", "coconut oil", "sensitive skin"], "options": ["color: vanilla shimmer", "size: 5 tubes (2 ounce each)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["vanilla shimmer", "5 tubes (2 ounce each)"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTN9V4O", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DNBN853": [{"asin": "B09DNBN853", "instruction": "i would like a bianca white crib dresser with a lot of storage space.", "attributes": ["fully assembled", "easy clean", "engineered wood", "storage space"], "options": ["color: bianca white", "size: crib"], "instruction_attributes": ["storage space"], "instruction_options": ["bianca white", "crib"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTRVP92", "worker_id": "A1WS884SI0SLO4"}], "B09MH8CM29": [{"asin": "B09MH8CM29", "instruction": "i would like a super soft camo throw for the living room.", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: camo 2"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["camo 2"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5B84QUY", "worker_id": "A1WS884SI0SLO4"}], "B09Q8TTK5D": [{"asin": "B09Q8TTK5D", "instruction": "i am looking for workout leggings with fantastic texture design. cute fabric, that mask the appearance of cellulite and imperfections with its carefully designed rhombus textured patterns. also provide you the right compression too. butt lift push up wasit shaper sport leggings featuring your curves pop.seamless technology perfectly show your figure shape ,which gives your butt a streamlined flattering look like a juicy peach. womens leggings pack leggings that are designed with high-waist, tummy control wide waistband,to enhance curves,provides a complete coverage for your body(no worrying about belly rolls or a underwear show). the high waist belt can control the stomach, yoga leggings which are perfect for sports women.in red colour ,xl size preferable.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: red", "size: x-large"], "instruction_attributes": ["butt lifting", "tummy control", "high waist"], "instruction_options": ["red", "x-large"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVAW8V1", "worker_id": "A1DRKZ3SCLAS4V"}], "B08PYK8R1L": [{"asin": "B08PYK8R1L", "instruction": "i would like some air bang #6 light brown hair extensions.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: #6 light brown", "size: air bangs"], "instruction_attributes": ["hair extensions"], "instruction_options": ["#6 light brown", "air bangs"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WVD7FY", "worker_id": "A1WS884SI0SLO4"}], "B08ZS6WS81": [{"asin": "B08ZS6WS81", "instruction": "i need an eye cream for dark circles", "attributes": ["anti aging", "fine lines", "dark circles"], "options": [""], "instruction_attributes": ["dark circles"], "instruction_options": [], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCN8B9V", "worker_id": "A2ECRNQ3X5LEXD"}], "B00EOXEPRI": [{"asin": "B00EOXEPRI", "instruction": "original udder balm moisturizer is my choice . please give me fragrance free, 16 oz pump.", "attributes": ["fragrance free", "bpa free"], "options": ["pattern name: 16 oz pump"], "instruction_attributes": ["fragrance free", "bpa free"], "instruction_options": ["16 oz pump"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QPXXOJ", "worker_id": "A15IJ20C3R4HUO"}], "B07KFBHJR9": [{"asin": "B07KFBHJR9", "instruction": "i need some navy button down shirts that are long sleeved and in a size medium", "attributes": ["easy care", "hand wash", "wash cold", "machine wash", "regular fit", "long sleeve", "cotton spandex", "button closure", "tumble dry"], "options": ["color: solid3-navy", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["solid3-navy", "medium"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKB4883", "worker_id": "A2ECRNQ3X5LEXD"}], "B09S65FB4N": [{"asin": "B09S65FB4N", "instruction": "i want a 04 color and easy to use straight hairpiece clip.", "attributes": ["easy use", "hair extensions"], "options": ["color: 04"], "instruction_attributes": ["easy use"], "instruction_options": ["04"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3S8A3G7", "worker_id": "A2RBF3IIJP15IH"}], "B09C26MR9R": [{"asin": "B09C26MR9R", "instruction": "i am looking for a pink colored dental flosser for sensitive teeth.", "attributes": ["sensitive teeth", "bad breath"], "options": ["color: pink"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["pink"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM969CG4D", "worker_id": "A1EREKSZAA9V7B"}], "B08QYZ6PK8": [{"asin": "B08QYZ6PK8", "instruction": "i need a ready to hang wall mirror in a champagne sunburst color.", "attributes": ["ready hang", "assembly required", "living room"], "options": ["color: champagne", "size: 27 inch"], "instruction_attributes": ["ready hang"], "instruction_options": ["champagne"], "assignment_id": "3L2IS5HSFLSH6WLSYDDSGKT06X5NUW", "worker_id": "A19317A3X87NVM"}], "B09KZYZ1SM": [{"asin": "B09KZYZ1SM", "instruction": "i need an easy to install anti-dust plug for an iphone 13.", "attributes": ["dust proof", "easy install"], "options": [""], "instruction_attributes": ["dust proof", "easy install"], "instruction_options": [], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OOF99V", "worker_id": "AR9AU5FY1S3RO"}], "B07PTQ13BB": [{"asin": "B07PTQ13BB", "instruction": "i need a gold plated hdmi adapter that is capable of 4k.", "attributes": ["gold plated", "plug play", "ultra hd", "1080p hd"], "options": ["color: black [4k@30hz]"], "instruction_attributes": ["gold plated"], "instruction_options": ["black [4k@30hz]"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDRBY8D", "worker_id": "A2ECRNQ3X5LEXD"}], "B000KOQ3MA": [{"asin": "B000KOQ3MA", "instruction": "buy a one pack of permanent hair dye in espresso.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 40 espresso", "size: pack of 1", "style: reds"], "instruction_attributes": ["permanent hair", "hair dye"], "instruction_options": ["40 espresso", "pack of 1"], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7NNOBH", "worker_id": "AR9AU5FY1S3RO"}], "B07R7239Z4": [{"asin": "B07R7239Z4", "instruction": "i am looking for small undershirts that i can machine wash", "attributes": ["moisture wicking", "wash cold", "machine wash", "tumble dry"], "options": ["color: big man - cotton mesh - 3 pack - assorted", "fit type: short leg", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["small"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OUFM3R", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q5JGCV9": [{"asin": "B09Q5JGCV9", "instruction": "i would like pair of size 7.5 slides with a rubber sole. .", "attributes": ["non slip", "rubber sole", "soft material", "ankle strap", "rubber outsole"], "options": ["size: 7.5 wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["7.5 wide"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME92WD2Y", "worker_id": "A1WS884SI0SLO4"}], "B08CH2VS4W": [{"asin": "B08CH2VS4W", "instruction": "i need some wall mounted mirrors that are 70 by 100 cm.", "attributes": ["wall mounted", "high density", "easy install"], "options": ["size: 70\u00d7100cm"], "instruction_attributes": ["wall mounted"], "instruction_options": ["70\u00d7100cm"], "assignment_id": "3JZQSN0I31KMDM7GGK5Y40J0VY2FGF", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NDL71CZ": [{"asin": "B09NDL71CZ", "instruction": "i am looking for a 42mm stainless steel smartwatch band", "attributes": ["compatible apple", "stainless steel"], "options": ["color: black | gray | brown", "size: 42mm | 44mm | 45mm xl"], "instruction_attributes": ["stainless steel"], "instruction_options": ["42mm | 44mm | 45mm xl"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3KILZF", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HWVRB9L": [{"asin": "B08HWVRB9L", "instruction": "i am looking for a heavy duty wood colored wall mounted folding table.", "attributes": ["wall mounted", "heavy duty", "easy clean", "easy assemble", "dining room"], "options": ["color: wood color", "size: 100*40cm | 39*16in"], "instruction_attributes": ["wall mounted", "heavy duty"], "instruction_options": ["wood color"], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TL13NM", "worker_id": "A1EREKSZAA9V7B"}], "B000HDKWZ8": [{"asin": "B000HDKWZ8", "instruction": "i would like a bottle of green goddess ranch dressing from quality ingredients.", "attributes": ["quality ingredients", "artificial flavors"], "options": ["flavor name: green goddess"], "instruction_attributes": ["quality ingredients"], "instruction_options": ["green goddess"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40UIRC9", "worker_id": "A1WS884SI0SLO4"}], "B08TF34W98": [{"asin": "B08TF34W98", "instruction": "i need a pack of three dried apricots that are non gmo", "attributes": ["non gmo", "dietary fiber"], "options": ["size: pack of 3"], "instruction_attributes": ["non gmo"], "instruction_options": ["pack of 3"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THU95Z2", "worker_id": "A2ECRNQ3X5LEXD"}], "B01LY663NI": [{"asin": "B01LY663NI", "instruction": "i am looking for natural flavors and high fructose pineapple juice marinade", "attributes": ["natural flavors", "high fructose"], "options": [""], "instruction_attributes": ["natural flavors", "high fructose"], "instruction_options": [], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKJ01TK", "worker_id": "AX2EWYWZM19AZ"}], "B09N72K25B": [{"asin": "B09N72K25B", "instruction": "i want a hot pink kokovifyves women's hooded winter warm vest.", "attributes": ["daily casual", "winter warm", "loose fit", "long sleeve", "relaxed fit", "everyday wear", "teen girls"], "options": ["color: hot pink", "size: 6"], "instruction_attributes": ["winter warm"], "instruction_options": ["hot pink"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDRTZQ8", "worker_id": "A2RBF3IIJP15IH"}], "B01HJV2LU4": [{"asin": "B01HJV2LU4", "instruction": "i need a blackhead extractor that is silver and easy to use.", "attributes": ["double sided", "easy carry", "easy use", "stainless steel", "beauty salon"], "options": ["color: silver"], "instruction_attributes": ["easy use"], "instruction_options": ["silver"], "assignment_id": "3XLBSAQ9ZFM9PANFOTVB1FMP805Z7C", "worker_id": "A2ECRNQ3X5LEXD"}], "B01DV9E90I": [{"asin": "B01DV9E90I", "instruction": "i need four vanity lights.", "attributes": ["brushed nickel", "vanity light", "clear glass"], "options": ["size: 4-light"], "instruction_attributes": ["vanity light"], "instruction_options": ["4-light"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI74RGZ1", "worker_id": "A2ECRNQ3X5LEXD"}], "B007RG4LUA": [{"asin": "B007RG4LUA", "instruction": "i'm looking for a styling cream that is cruelty free and for short hair.", "attributes": ["easy carry", "cruelty free", "seed oil"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVYP3XI", "worker_id": "A3EDFA8UQT5GG8"}], "B09LCLHX9G": [{"asin": "B09LCLHX9G", "instruction": "i want white crystal rhinestones flatback colored jewels for nail art.", "attributes": ["easy apply", "nail art"], "options": ["color: white", "size: ss4"], "instruction_attributes": ["nail art"], "instruction_options": ["white"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X5LGPH", "worker_id": "A2RBF3IIJP15IH"}], "B09HH96NJY": [{"asin": "B09HH96NJY", "instruction": "i am really wanting some khaki jeans that are high waisted and in a xx-large.", "attributes": ["straight leg", "wide leg", "hand wash", "machine wash", "high waist", "polyester spandex", "teen girls", "daily wear"], "options": ["color: z09-khaki", "size: xx-large"], "instruction_attributes": ["high waist"], "instruction_options": ["z09-khaki", "xx-large"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF980AZ3", "worker_id": "A2ECRNQ3X5LEXD"}], "B00GQDRU9O": [{"asin": "B00GQDRU9O", "instruction": "i am looking for a toothpaste that would freshen breath.", "attributes": ["natural ingredients", "fresh breath", "bad breath"], "options": [""], "instruction_attributes": ["fresh breath"], "instruction_options": [], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30USG0Y7", "worker_id": "A2ECRNQ3X5LEXD"}], "B078K7T4NP": [{"asin": "B078K7T4NP", "instruction": "i want a silver hermitshell hard carrying case.", "attributes": ["carrying case", "wireless bluetooth"], "options": ["color: sliver"], "instruction_attributes": ["carrying case"], "instruction_options": ["sliver"], "assignment_id": "3NJM2BJS47GLNNG5S15KQ3CPZCZCP7", "worker_id": "A2RBF3IIJP15IH"}], "B09FTHRDL9": [{"asin": "B09FTHRDL9", "instruction": "i am looking for a cruelty free foundation refill in west indies walnut color.", "attributes": ["cruelty free", "hyaluronic acid", "fine lines"], "options": ["color: west indies walnut"], "instruction_attributes": ["cruelty free"], "instruction_options": ["west indies walnut"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXIQKW2", "worker_id": "A2HMEGTAFO0CS8"}], "B09PDKTMHB": [{"asin": "B09PDKTMHB", "instruction": "i want indiana jones raiders of the lost ark party supplies.", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["party supplies"], "instruction_options": [], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOHIDY6", "worker_id": "A2RBF3IIJP15IH"}], "B098TDDJV9": [{"asin": "B098TDDJV9", "instruction": "i want fuchsia modencoco women's pointed toe pumps with ankle strap.", "attributes": ["high heel", "ankle strap", "rubber sole"], "options": ["color: fuchsia", "size: 11"], "instruction_attributes": ["ankle strap"], "instruction_options": ["fuchsia"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49ZDX4R", "worker_id": "A2RBF3IIJP15IH"}], "B09P861JJH": [{"asin": "B09P861JJH", "instruction": "i would like a high performance quad core tablet.", "attributes": ["high performance", "non slip", "quad core"], "options": [""], "instruction_attributes": ["high performance", "quad core"], "instruction_options": [], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXAAG73", "worker_id": "A1WS884SI0SLO4"}], "B08GC1RHTX": [{"asin": "B08GC1RHTX", "instruction": "i want a olives and rusk gourmet gift basket.", "attributes": ["gift basket", "perfect gift", "gift set"], "options": ["style: olives, wheat cream crackers, & barley rusks"], "instruction_attributes": ["gift basket"], "instruction_options": ["olives, wheat cream crackers, & barley rusks"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYBM82A", "worker_id": "A2RBF3IIJP15IH"}], "B09BLTYRR2": [{"asin": "B09BLTYRR2", "instruction": "i want a pack of halloween cupcake picks.", "attributes": ["baby shower", "birthday party", "cupcake picks", "party supplies"], "options": ["pattern name: a"], "instruction_attributes": ["cupcake picks"], "instruction_options": ["a"], "assignment_id": "3ND9UOO81VC4A07CH0CELGA8MIDLWO", "worker_id": "A2RBF3IIJP15IH"}], "B09LT7FN9M": [{"asin": "B09LT7FN9M", "instruction": "i really need a hand painting painting that comes in a size of 45 inch by 30 inch", "attributes": ["hand painted", "living room", "dining room"], "options": ["color: ef-007", "size: 45x30 inch"], "instruction_attributes": ["hand painted"], "instruction_options": ["45x30 inch"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGMXIYK", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JYLZMTX": [{"asin": "B09JYLZMTX", "instruction": "i need a cheerleading outfit for men that is wine colored and in a x-large size.", "attributes": ["loose fit", "slim fit", "long sleeve", "regular fit"], "options": ["color: z2-wine", "size: x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["z2-wine", "x-large"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2Z96GD", "worker_id": "A2ECRNQ3X5LEXD"}], "B01EA9P2FE": [{"asin": "B01EA9P2FE", "instruction": "i want x-large polyester spandex romastory women fluorescent yoga pants.", "attributes": ["polyester spandex", "elastic waist"], "options": ["color: sky blue", "size: x-large"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["x-large"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOCZAT8", "worker_id": "A2RBF3IIJP15IH"}], "B0925MKQVM": [{"asin": "B0925MKQVM", "instruction": "i would like a 2xl green pair of wide leg jogging pants.", "attributes": ["straight leg", "slim fit", "machine wash", "wide leg", "loose fit", "drawstring closure", "elastic waistband", "elastic waist", "classic fit"], "options": ["color: a-green", "size: xx-large"], "instruction_attributes": ["wide leg"], "instruction_options": ["a-green", "xx-large"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMGXIZ7", "worker_id": "A1WS884SI0SLO4"}], "B09G71MBVW": [{"asin": "B09G71MBVW", "instruction": "i would like a blue extra large long sleeve sweater.", "attributes": ["loose fit", "soft material", "long sleeve"], "options": ["color: a-blue", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a-blue", "x-large"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UDEA3J", "worker_id": "A1WS884SI0SLO4"}], "B01MY4Q927": [{"asin": "B01MY4Q927", "instruction": "i want a black cherry and gluten free v8 +energy drink.", "attributes": ["non gmo", "gluten free", "source vitamin", "artificial colors"], "options": ["flavor name: black cherry", "size: 8 fl oz (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["black cherry"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDQBY8B", "worker_id": "A2RBF3IIJP15IH"}], "B09HBLDMTL": [{"asin": "B09HBLDMTL", "instruction": "i'm looking for rose gold birthday cake decorations.", "attributes": ["cupcake picks", "birthday cake", "baby shower"], "options": ["color: rose gold"], "instruction_attributes": ["birthday cake"], "instruction_options": ["rose gold"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBDAGH9", "worker_id": "A3EDFA8UQT5GG8"}], "B01INSG0WC": [{"asin": "B01INSG0WC", "instruction": "i would like a high performance set of earbud headphones.", "attributes": ["certified refurbished", "high performance", "hands free", "aluminum alloy"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "39LNWE0K456PSVA11X00BCXJKZXIUZ", "worker_id": "A1WS884SI0SLO4"}], "B0824BVCJ3": [{"asin": "B0824BVCJ3", "instruction": "i am looking for some machine washable pillow covers that are peony blue and are 22 by 22 inches.", "attributes": ["double sided", "machine washable", "living room"], "options": ["color: peony blue", "size: 22 x 22 inches"], "instruction_attributes": ["machine washable"], "instruction_options": ["peony blue", "22 x 22 inches"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM9680G4Z", "worker_id": "A2ECRNQ3X5LEXD"}], "B092QJL99K": [{"asin": "B092QJL99K", "instruction": "can you find kids digital cameras for girls boys 8 to 12 years old in this exact configuration? 32gb sd card 1080p hd need to buy today.", "attributes": ["1080p hd", "light weight", "high resolution"], "options": [""], "instruction_attributes": ["1080p hd", "high resolution"], "instruction_options": [], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQCUQSV", "worker_id": "A15IJ20C3R4HUO"}], "B083CPT87C": [{"asin": "B083CPT87C", "instruction": "i need a console table for the living room that is in style 2", "attributes": ["easy clean", "metal legs", "living room"], "options": ["color: style2"], "instruction_attributes": ["living room"], "instruction_options": ["style2"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG5SLSK", "worker_id": "A2ECRNQ3X5LEXD"}], "B087DXGNBS": [{"asin": "B087DXGNBS", "instruction": "i need jar candles that are made out of soy wax.", "attributes": ["long lasting", "soy wax"], "options": [""], "instruction_attributes": ["soy wax"], "instruction_options": [], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IU6KHV", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PPW5DST": [{"asin": "B07PPW5DST", "instruction": "i am looking for a cruelty free and sulfate free eyeshadow palette. also choose naked cyber palette.", "attributes": ["sulfate free", "paraben free", "cruelty free", "eye shadow"], "options": ["color: naked cyber"], "instruction_attributes": ["sulfate free", "cruelty free"], "instruction_options": ["naked cyber"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIAVRBH", "worker_id": "A2HMEGTAFO0CS8"}], "B087CQLJCJ": [{"asin": "B087CQLJCJ", "instruction": "i am interested in a nut free vegan snack.", "attributes": ["dairy free", "bpa free", "gluten free", "nut free", "low calorie", "kosher certified", "plant based", "non gmo", "high fructose"], "options": [""], "instruction_attributes": ["nut free"], "instruction_options": [], "assignment_id": "3HPZF4IVNX3FW186JO133U513HECYD", "worker_id": "A2ECRNQ3X5LEXD"}], "B0928RHTDG": [{"asin": "B0928RHTDG", "instruction": "shop for a slim fit blazer in royal blue, size 42.", "attributes": ["slim fit", "polyester cotton", "regular fit"], "options": ["color: royal blue", "size: 42"], "instruction_attributes": ["slim fit"], "instruction_options": ["royal blue", "42"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNRFFJH", "worker_id": "AR9AU5FY1S3RO"}], "B09B9K96XB": [{"asin": "B09B9K96XB", "instruction": "i want a x-large short sleeve mayntop womens t-shirt.", "attributes": ["short sleeve", "quality materials", "relaxed fit"], "options": ["color: m-brown", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["x-large"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU37RL0", "worker_id": "A2RBF3IIJP15IH"}], "B09P3RSYTJ": [{"asin": "B09P3RSYTJ", "instruction": "i need a nightstand for storage space", "attributes": ["storage unit", "storage space"], "options": [""], "instruction_attributes": ["storage space"], "instruction_options": [], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3F6BVQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B00028OT8Y": [{"asin": "B00028OT8Y", "instruction": "i would like a extra light beige foundation made from natural ingredients.", "attributes": ["cruelty free", "plant based", "paraben free", "non toxic", "seed oil", "natural ingredients"], "options": ["color: extra light beige"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["extra light beige"], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEHRQ8X", "worker_id": "A1WS884SI0SLO4"}], "B0727S5Y86": [{"asin": "B0727S5Y86", "instruction": "i am looking for a pair of graphite colored women's pants with nylon spandex.", "attributes": ["nylon spandex", "tummy control"], "options": ["color: graphite", "size: 4 tall"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["graphite"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQFNKEQ", "worker_id": "A1EREKSZAA9V7B"}], "B09NFD1TYB": [{"asin": "B09NFD1TYB", "instruction": "i need a smartwatch case that is compatible with apple and is in a size 45 mm.", "attributes": ["compatible apple", "high definition", "tempered glass", "glass screen"], "options": ["size: 45mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["45mm"], "assignment_id": "3G2UL9A02OO71034MOY04HTU3W967T", "worker_id": "A2ECRNQ3X5LEXD"}], "B09F5LBNKM": [{"asin": "B09F5LBNKM", "instruction": "i want a pack of two white coat hooks that are easy to install in my living room.", "attributes": ["wall mounted", "heavy duty", "space saving", "easy install", "living room"], "options": ["color: white - 3", "size: 2 hooks"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["white - 3", "2 hooks"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HWCD1B", "worker_id": "A1WS884SI0SLO4"}], "B08LS9CLC3": [{"asin": "B08LS9CLC3", "instruction": "i would like a cake topper for a baby shower.", "attributes": ["birthday cake", "baby shower"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KCDDPA", "worker_id": "A1WS884SI0SLO4"}], "B07NDD5CBS": [{"asin": "B07NDD5CBS", "instruction": "buy me a women's classic fit t-shirt in purple.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: purple", "fit type: women", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["purple", "women"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZKFR76", "worker_id": "AR9AU5FY1S3RO"}], "B09MNF5P5L": [{"asin": "B09MNF5P5L", "instruction": "i am looking for a camel colored futon mattress for my living room.", "attributes": ["high density", "living room"], "options": ["color: camel", "size: 120x200cm(47*79inch)"], "instruction_attributes": ["living room"], "instruction_options": ["camel"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFSYJOZ", "worker_id": "A1EREKSZAA9V7B"}], "B09L2Z9KZ9": [{"asin": "B09L2Z9KZ9", "instruction": "i want to find a high-resolution digital camera with an optical zoom feature.", "attributes": ["high resolution", "optical zoom"], "options": [""], "instruction_attributes": ["high resolution", "optical zoom"], "instruction_options": [], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VFJE8R", "worker_id": "A345TDMHP3DQ3G"}], "B008PSTOQ0": [{"asin": "B008PSTOQ0", "instruction": "i would like a bag of trail mix from trader joes.", "attributes": ["trader joe", "artificial colors"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6OLUMM5", "worker_id": "A1WS884SI0SLO4"}], "B07PPVYF5N": [{"asin": "B07PPVYF5N", "instruction": "i am really in need of some toothpaste that is peppermint for bad breath.", "attributes": ["clinically proven", "bad breath"], "options": ["flavor name: peppermint"], "instruction_attributes": ["bad breath"], "instruction_options": ["peppermint"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35LAUGM", "worker_id": "A2ECRNQ3X5LEXD"}], "B07H9PXL88": [{"asin": "B07H9PXL88", "instruction": "i would like a size 11 brown suede loafer with a rubber sole.", "attributes": ["arch support", "rubber sole"], "options": ["color: brown suede | black sole", "size: 11"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown suede | black sole", "11"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP60CVDB", "worker_id": "A1WS884SI0SLO4"}], "B0070SJ72W": [{"asin": "B0070SJ72W", "instruction": "i need some brown oxfords that offer day comfort and are in a size 7", "attributes": ["day comfort", "rubber outsole", "rubber sole"], "options": ["color: brown md brown full grain", "size: 7"], "instruction_attributes": ["day comfort"], "instruction_options": ["brown md brown full grain", "7"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X5KGPG", "worker_id": "A2ECRNQ3X5LEXD"}], "B07D7JGHMG": [{"asin": "B07D7JGHMG", "instruction": "i am interested in a bedside table that would be easy to assemble and is in the color of espresso.", "attributes": ["easy assemble", "contemporary style", "living room"], "options": ["color: espresso"], "instruction_attributes": ["easy assemble"], "instruction_options": ["espresso"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOVW933", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JKTRL85": [{"asin": "B09JKTRL85", "instruction": "i am looking for a pair of western ankle boots with a pointed toe and fringe.", "attributes": ["open toe", "slip resistant", "teen girls"], "options": ["color: gde45-brown", "size: 8.5"], "instruction_attributes": ["slip resistant"], "instruction_options": ["gde45-brown"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOH3F02", "worker_id": "A2KW17G25L25R8"}], "B087Q8B674": [{"asin": "B087Q8B674", "instruction": "i want 20ml travel size kaaka empty clear glass bottles.", "attributes": ["leak proof", "travel size"], "options": ["size: 20ml"], "instruction_attributes": ["travel size"], "instruction_options": [], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7VJP5I", "worker_id": "A2RBF3IIJP15IH"}], "B0971XD6YS": [{"asin": "B0971XD6YS", "instruction": "look for an officially licensed loki variant t-shirt for women in black.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: women", "size: 4t"], "instruction_attributes": ["officially licensed"], "instruction_options": ["black", "women"], "assignment_id": "32M8BPYGA4W6ND96HSBJ7XWSBRNIG4", "worker_id": "AR9AU5FY1S3RO"}], "B07H8BS7KV": [{"asin": "B07H8BS7KV", "instruction": "i need pair of pink size 10 slippers with a rubber anti slip sole.", "attributes": ["anti slip", "open toe", "machine washable", "rubber sole"], "options": ["color: pink-a", "size: 10-11"], "instruction_attributes": ["anti slip", "rubber sole"], "instruction_options": ["pink-a", "10-11"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CPST27", "worker_id": "A1WS884SI0SLO4"}], "B09GPPKWP2": [{"asin": "B09GPPKWP2", "instruction": "i need an xx-large sweater that is long sleeved and the color x04-5", "attributes": ["winter warm", "loose fit", "long sleeve", "faux fur"], "options": ["color: x04-5", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x04-5", "xx-large"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J96FS9", "worker_id": "A2ECRNQ3X5LEXD"}], "B087D7NGWP": [{"asin": "B087D7NGWP", "instruction": "i need adidas pant's for men with elastic waist , black | team royal blue | vivid red , model tiro track", "attributes": ["drawstring closure", "elastic waist", "regular fit"], "options": ["color: black | team royal blue | vivid red", "size: xx-large long"], "instruction_attributes": ["elastic waist"], "instruction_options": ["black | team royal blue | vivid red"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXBO7GA", "worker_id": "A15IJ20C3R4HUO"}], "B08KL3381H": [{"asin": "B08KL3381H", "instruction": "in the men's fashion sneakers section, i am looking for a bari slip-on sneaker with a rubber outsole in a size 9.5 in the color of puma white-puma silver made by puma.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: puma white-puma silver", "size: 9.5"], "instruction_attributes": ["rubber outsole"], "instruction_options": ["puma white-puma silver", "9.5"], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTSWP95", "worker_id": "A3RGIKEI8JS2QG"}], "B09Q2S6BBG": [{"asin": "B09Q2S6BBG", "instruction": "i need a long sleeved black pullover that is in a large.", "attributes": ["long sleeve", "polyester cotton", "daily wear"], "options": ["color: black", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["black", "large"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163RVPQK", "worker_id": "A2ECRNQ3X5LEXD"}], "B0829Q45LH": [{"asin": "B0829Q45LH", "instruction": "i would like a size seven white flat shoe with a synthetic sole.", "attributes": ["synthetic sole", "memory foam"], "options": ["color: white navy red", "size: 7.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["white navy red", "7.5"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YXWEHR", "worker_id": "A1WS884SI0SLO4"}], "B093D8HPK9": [{"asin": "B093D8HPK9", "instruction": "in the accent furniture section, i am looking for an ottoman bench. must have folding storage, memory foam, contemporary style in the color black, and 30 inches in size.", "attributes": ["memory foam", "contemporary style", "faux leather"], "options": ["color: brown"], "instruction_attributes": ["memory foam", "contemporary style"], "instruction_options": ["brown"], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FL7FBV", "worker_id": "A3RGIKEI8JS2QG"}], "B079YZGLC8": [{"asin": "B079YZGLC8", "instruction": "i want a 8.5 fl oz of volumizing oil free biotin shampoo.", "attributes": ["oil free", "cruelty free", "argan oil", "hair extensions", "natural hair", "hair treatment", "damaged hair", "hair growth", "hair loss"], "options": ["size: shampoo - 8.5 fl oz bottle"], "instruction_attributes": ["oil free"], "instruction_options": ["shampoo - 8.5 fl oz bottle"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCBL7HT", "worker_id": "A2RBF3IIJP15IH"}], "B09KGFMZCV": [{"asin": "B09KGFMZCV", "instruction": "i need a faux fur coat that is black and in a medium.", "attributes": ["hand wash", "quality polyester", "faux fur", "long sleeve"], "options": ["color: black", "size: medium"], "instruction_attributes": ["faux fur"], "instruction_options": ["black", "medium"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW3NT42", "worker_id": "A2ECRNQ3X5LEXD"}], "B093YSND5Y": [{"asin": "B093YSND5Y", "instruction": "i am looking for a laundry bag for travel purpose.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSHJ2QQ", "worker_id": "A2HMEGTAFO0CS8"}], "B000PD247Y": [{"asin": "B000PD247Y", "instruction": "i need some hinges for the cabinet that are heavy duty with a satin nickel finish.", "attributes": ["heavy duty", "nickel finish"], "options": ["color: satin nickel"], "instruction_attributes": ["heavy duty"], "instruction_options": ["satin nickel"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7U1HLL", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MS193N1": [{"asin": "B09MS193N1", "instruction": "i want a high definition germerse portable projector.", "attributes": ["high definition", "easy carry"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOH8DYW", "worker_id": "A2RBF3IIJP15IH"}], "B085419WXH": [{"asin": "B085419WXH", "instruction": "i want a water resistant kodak printomatic instant print camera.", "attributes": ["easy use", "water resistant", "carrying case"], "options": [""], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRRRBZ7", "worker_id": "A2RBF3IIJP15IH"}], "B09GW5BZ1G": [{"asin": "B09GW5BZ1G", "instruction": "i want uscce alarm clock radio with batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9EOE2J", "worker_id": "A2RBF3IIJP15IH"}], "B07YYB2QW6": [{"asin": "B07YYB2QW6", "instruction": "i would like a clock radio with a usb port.", "attributes": ["hands free", "usb port"], "options": [""], "instruction_attributes": ["usb port"], "instruction_options": [], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0RCAR5", "worker_id": "A1WS884SI0SLO4"}], "B01F7B0ZLU": [{"asin": "B01F7B0ZLU", "instruction": "i would like a blue jay fully assembled desk chair.", "attributes": ["height adjustable", "fully assembled"], "options": ["color: blue jay"], "instruction_attributes": ["fully assembled"], "instruction_options": ["blue jay"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR1TA0N", "worker_id": "A1WS884SI0SLO4"}], "B015ND5QJS": [{"asin": "B015ND5QJS", "instruction": "i want sure unscented, anti-perspirant deodorant.", "attributes": ["anti perspirant", "long lasting"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ9JN0D", "worker_id": "A2RBF3IIJP15IH"}], "B091TK7X5K": [{"asin": "B091TK7X5K", "instruction": "i am looking for a camisole blouse for daily wear. also choose loose fit and large size.", "attributes": ["loose fit", "daily wear"], "options": ["color: f- sunflower - black", "size: large"], "instruction_attributes": ["loose fit", "daily wear"], "instruction_options": ["large"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQJV31B", "worker_id": "A2HMEGTAFO0CS8"}], "B094QYPSD6": [{"asin": "B094QYPSD6", "instruction": "i need a super soft fleece throw blanket for my living room couch. i really like the fruit avocado cartoon color.", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: fruit avocado cartoon", "size: 120\"x90\" for family"], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["fruit avocado cartoon"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCRDQ5I", "worker_id": "A1NF6PELRKACS9"}], "B08M3WNDLH": [{"asin": "B08M3WNDLH", "instruction": "i need a long lasting makeup kit.", "attributes": ["long lasting", "water resistant", "easy apply", "high quality", "eye shadow"], "options": ["size: kit005"], "instruction_attributes": ["long lasting"], "instruction_options": ["kit005"], "assignment_id": "31JLPPHS254FPN8LK8H48035JUX3OQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B000EH4XZC": [{"asin": "B000EH4XZC", "instruction": "i want buy a jasmati gluten free bpa free non gmo rice size : 1.75 pound", "attributes": ["non gmo", "bpa free", "gluten free", "low fat"], "options": ["size: 1.75 pound (pack of 1)", "style: jasmati"], "instruction_attributes": ["non gmo", "bpa free", "gluten free"], "instruction_options": ["1.75 pound (pack of 1)", "jasmati"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3C8QN3", "worker_id": "A3N9ZYQAESNFQH"}], "B00B4JM0J0": [{"asin": "B00B4JM0J0", "instruction": "i want a 12 pack of tenergy premium rechargeable aaa batteries.", "attributes": ["high power", "aaa batteries"], "options": ["size: 12 pcs"], "instruction_attributes": ["aaa batteries"], "instruction_options": ["12 pcs"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUSRJQG", "worker_id": "A2RBF3IIJP15IH"}], "B08HRXWX4G": [{"asin": "B08HRXWX4G", "instruction": "i would like a 31.5 inch pendant light chandelier for the dining room.", "attributes": ["pendant light", "dining room"], "options": ["size: length 31.5''"], "instruction_attributes": ["pendant light", "dining room"], "instruction_options": ["length 31.5''"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017ZV4PZ", "worker_id": "A1WS884SI0SLO4"}], "B07N3CDZ3G": [{"asin": "B07N3CDZ3G", "instruction": "i need a black t shirt that is classic fit and an x-large for women", "attributes": ["wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "gym workout"], "options": ["color: black", "fit type: women", "size: x-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["black", "women", "x-large"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTSDL7X", "worker_id": "A2ECRNQ3X5LEXD"}], "B000IVKM6S": [{"asin": "B000IVKM6S", "instruction": "i would like a box of 12 blueberry muffin bars that are made of natural ingredients.", "attributes": ["soy free", "non gmo", "plant based", "gluten free", "natural ingredients"], "options": ["flavor name: blueberry muffin", "size: 12 count (pack of 1)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["blueberry muffin", "12 count (pack of 1)"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZJXR7M", "worker_id": "A1WS884SI0SLO4"}], "B07BF6Z7TM": [{"asin": "B07BF6Z7TM", "instruction": "i am looking for a plant based condition that has olive on it and is 10.8 fl oz", "attributes": ["plant based", "hair loss"], "options": ["scent: olive & black seed", "size: 10.8 fl oz (pack of 1)"], "instruction_attributes": ["plant based"], "instruction_options": ["olive & black seed", "10.8 fl oz (pack of 1)"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BK4VJK", "worker_id": "A2ECRNQ3X5LEXD"}], "B000VOHH8I": [{"asin": "B000VOHH8I", "instruction": "i need a long lasting 6.76 fl oz bottle of l'eau d'issey.", "attributes": ["design house", "long lasting"], "options": ["size: 6.76 fl oz (pack of 1)"], "instruction_attributes": ["long lasting"], "instruction_options": ["6.76 fl oz (pack of 1)"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K61126", "worker_id": "A2RBF3IIJP15IH"}], "B08NXWGSL1": [{"asin": "B08NXWGSL1", "instruction": "i am looking for a dairy free cold coffee which is rich creamy. also choose chocolate milk color and 8.4 fl oz (pack of 6)", "attributes": ["shelf stable", "rich creamy", "dairy free"], "options": ["color: chocolate milk", "size: 8.4 fl oz (pack of 6)"], "instruction_attributes": ["rich creamy", "dairy free"], "instruction_options": ["chocolate milk", "8.4 fl oz (pack of 6)"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZD810SC", "worker_id": "A2HMEGTAFO0CS8"}], "B086YQ42LX": [{"asin": "B086YQ42LX", "instruction": "i want light pink clip in full head hair extensions.", "attributes": ["hair extensions", "dry hair"], "options": ["color: light pink", "size: 24 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["light pink"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU86CMV", "worker_id": "A2RBF3IIJP15IH"}], "B09C332WLY": [{"asin": "B09C332WLY", "instruction": "i need a wax warmer for hair removal.", "attributes": ["easy clean", "natural ingredients", "hair removal", "nail art"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WOUQWC", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PQWGMPH": [{"asin": "B09PQWGMPH", "instruction": "i need type b monoculars that are easy to carry.", "attributes": ["easy carry", "high definition", "bird watching"], "options": ["*: type b"], "instruction_attributes": ["easy carry"], "instruction_options": ["type b"], "assignment_id": "3HVVDCPGTP2WIIAH5AWTS455R3DTYC", "worker_id": "A2ECRNQ3X5LEXD"}], "B09RK7KBXF": [{"asin": "B09RK7KBXF", "instruction": "i would like a extra large red pair of shorts that i can machine washed.", "attributes": ["butt lifting", "machine washable", "hand wash", "elastic waistband", "high waist", "short sleeve", "teen girls"], "options": ["color: red", "size: x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["red", "x-large"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYL36M3", "worker_id": "A1WS884SI0SLO4"}], "B08R6BB3XC": [{"asin": "B08R6BB3XC", "instruction": "i am looking for some kosher raspberry candy that is in a one pound bag.", "attributes": ["old fashioned", "gluten free", "kosher certified", "valentine day", "birthday party"], "options": ["color: raspberry", "size: 1 pound (pack of 1)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["raspberry", "1 pound (pack of 1)"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFEZVMO", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PF38W9C": [{"asin": "B09PF38W9C", "instruction": "i am looking for a hand crafted chocolate gift set.", "attributes": ["hand crafted", "gift set"], "options": [""], "instruction_attributes": ["hand crafted", "gift set"], "instruction_options": [], "assignment_id": "37M28K1J01N18XG9DA49NC0PQADAJ8", "worker_id": "A2HMEGTAFO0CS8"}], "B09H2JW13J": [{"asin": "B09H2JW13J", "instruction": "i would like a sw 65 brown high quality hair extensions.", "attributes": ["high quality", "hair extensions"], "options": ["color: brown", "size: sw65-18h613"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": [], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRD6WNU", "worker_id": "A1WS884SI0SLO4"}], "B01LWV686W": [{"asin": "B01LWV686W", "instruction": "i am looking for some long lasting lavender hair color", "attributes": ["cruelty free", "long lasting", "rose gold"], "options": ["color: lavender"], "instruction_attributes": ["long lasting"], "instruction_options": ["lavender"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME92E2D5", "worker_id": "A2ECRNQ3X5LEXD"}], "B09R9Z116W": [{"asin": "B09R9Z116W", "instruction": "i want black masbird closed toe sandals for women.", "attributes": ["slip resistant", "closed toe", "ankle strap", "teen girls"], "options": ["color: black", "size: 8.5"], "instruction_attributes": ["closed toe"], "instruction_options": ["black"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI73SGZ0", "worker_id": "A2RBF3IIJP15IH"}], "B09S2VM5BL": [{"asin": "B09S2VM5BL", "instruction": "i would like a 5xl white short sleeve top.", "attributes": ["long sleeve", "short sleeve"], "options": ["color: 2-white", "size: 5x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["2-white", "5x-large"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYB1EIC", "worker_id": "A1WS884SI0SLO4"}], "B09LLZ3FMY": [{"asin": "B09LLZ3FMY", "instruction": "i would like a matte black 10 light chandelier for my dining room.", "attributes": ["light fixture", "glass shade", "pendant light", "living room", "dining room"], "options": ["color: matte black", "size: 10-light with adjustable height"], "instruction_attributes": ["dining room"], "instruction_options": ["matte black", "10-light with adjustable height"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E009X7F", "worker_id": "A1WS884SI0SLO4"}], "B07NL4CT8L": [{"asin": "B07NL4CT8L", "instruction": "i would like a quad i5 core desktop tower.", "attributes": ["high performance", "core i5", "quad core"], "options": [""], "instruction_attributes": ["core i5", "quad core"], "instruction_options": [], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZR704C", "worker_id": "A1WS884SI0SLO4"}], "B08WJMH85C": [{"asin": "B08WJMH85C", "instruction": "i am looking for refillable leak proof black plastic pump bottles.", "attributes": ["bpa free", "leak proof"], "options": ["color: black"], "instruction_attributes": ["leak proof"], "instruction_options": ["black"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC54PRKM", "worker_id": "A1EREKSZAA9V7B"}], "B007Q261WQ": [{"asin": "B007Q261WQ", "instruction": "i would like a jar candle that is long lasting and 6 oz.", "attributes": ["lead free", "long lasting"], "options": ["size: 6 oz"], "instruction_attributes": ["long lasting"], "instruction_options": ["6 oz"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSISB8A", "worker_id": "A2ECRNQ3X5LEXD"}], "B08V1N8ZX1": [{"asin": "B08V1N8ZX1", "instruction": "i want black caterpillar unisex shoes with rubber soles.", "attributes": ["day comfort", "rubber outsole", "rubber sole"], "options": ["color: black | black", "size: 11 wide women | 11 wide men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black | black"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB0G5YM", "worker_id": "A2RBF3IIJP15IH"}], "B0865NYZQ4": [{"asin": "B0865NYZQ4", "instruction": "i am looking for travel bottles 1.2 oz plastic, refillable makeup sprayer.", "attributes": ["leak proof", "easy use", "fine mist", "travel bottles"], "options": [""], "instruction_attributes": ["travel bottles"], "instruction_options": [], "assignment_id": "37UQDCYH685SGQI5NW68G99TKPX7VI", "worker_id": "A2KW17G25L25R8"}], "B091H3VWNQ": [{"asin": "B091H3VWNQ", "instruction": "i am looking for some dining room barstools", "attributes": ["height adjustable", "solid wood", "dining room"], "options": [""], "instruction_attributes": ["dining room"], "instruction_options": [], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQN7B10E", "worker_id": "A2ECRNQ3X5LEXD"}], "B08CMX9CTD": [{"asin": "B08CMX9CTD", "instruction": "i want 2 pounds of 4th & heart grass fed butter.", "attributes": ["grass fed", "lactose free", "old fashioned", "shelf stable", "non gmo", "gluten free"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["grass fed"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CVI3BQ", "worker_id": "A2RBF3IIJP15IH"}], "B087QR168J": [{"asin": "B087QR168J", "instruction": "i am looking for a 100 count bubblegum that is spearmint flavored and sugar free", "attributes": ["sugar free", "non gmo", "gluten free", "keto friendly", "natural ingredients"], "options": ["flavor name: spearmint", "size: 100 count (pack of 1)"], "instruction_attributes": ["sugar free"], "instruction_options": ["spearmint", "100 count (pack of 1)"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJKH8ZE", "worker_id": "A2ECRNQ3X5LEXD"}], "B01BMORA3M": [{"asin": "B01BMORA3M", "instruction": "i would like to have a soft black hair building fiber that prevents hair loss and is easy to apply.", "attributes": ["easy apply", "hair loss"], "options": ["color: soft black"], "instruction_attributes": ["easy apply", "hair loss"], "instruction_options": ["soft black"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMG5J1R", "worker_id": "A182YKPS46KE9F"}], "B09F656S51": [{"asin": "B09F656S51", "instruction": "i would like a usb network adapter that is easy to use.", "attributes": ["dual band", "easy carry", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYMVQM0", "worker_id": "A1WS884SI0SLO4"}], "B09STJVCQM": [{"asin": "B09STJVCQM", "instruction": "i need some living room furniture.", "attributes": ["storage space", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5E1WI3", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LV7HGHD": [{"asin": "B09LV7HGHD", "instruction": "i am looking for a high quality pink ice face roller with silicone ice mold.", "attributes": ["high quality", "bpa free", "easy use", "green tea"], "options": ["color: pink"], "instruction_attributes": ["high quality"], "instruction_options": ["pink"], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CW73BH", "worker_id": "A1EREKSZAA9V7B"}], "B093YSVRDF": [{"asin": "B093YSVRDF", "instruction": "i am looking for a wallet that can go with my hoisery.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery"], "instruction_options": [], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTJ8V5X", "worker_id": "A2ECRNQ3X5LEXD"}], "B0754J7ZVJ": [{"asin": "B0754J7ZVJ", "instruction": "i am looking for certified organic baby food squeeze pouches that are easy to use.", "attributes": ["easy use", "certified organic", "non gmo"], "options": [""], "instruction_attributes": ["easy use", "certified organic"], "instruction_options": [], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW3OT43", "worker_id": "A1EREKSZAA9V7B"}], "B08MDT98GD": [{"asin": "B08MDT98GD", "instruction": "i would like a bakers rack for my dining room.", "attributes": ["space saving", "storage unit", "dining room"], "options": [""], "instruction_attributes": ["dining room"], "instruction_options": [], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017ZJ4PN", "worker_id": "A1WS884SI0SLO4"}], "B09PR85B9T": [{"asin": "B09PR85B9T", "instruction": "i'm looking for open toe flat sandals for women in black color. please select size 5 if available.", "attributes": ["open toe", "knee high", "steel toe", "quality materials", "rubber outsole"], "options": ["color: black", "size: 5"], "instruction_attributes": ["open toe"], "instruction_options": ["black", "5"], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADHDVWH", "worker_id": "A20DUVEOH6A7KW"}], "B01BO5PHNE": [{"asin": "B01BO5PHNE", "instruction": "i would like a green tea anti perspirant.", "attributes": ["anti perspirant", "green tea"], "options": [""], "instruction_attributes": ["anti perspirant", "green tea"], "instruction_options": [], "assignment_id": "3JW0YLFXR4QKLUJBLEJGURROKPNWWY", "worker_id": "A1WS884SI0SLO4"}], "B01H7X0BGK": [{"asin": "B01H7X0BGK", "instruction": "buy me some antiperspirant that hasn't been tested on animals.", "attributes": ["anti perspirant", "animal testing"], "options": [""], "instruction_attributes": ["anti perspirant", "animal testing"], "instruction_options": [], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y2VNNP", "worker_id": "AR9AU5FY1S3RO"}], "B07SJR1XFW": [{"asin": "B07SJR1XFW", "instruction": "i want a multi colored us constitution print that is ready to hang.", "attributes": ["ready hang", "dining room", "living room"], "options": ["color: multi8"], "instruction_attributes": ["ready hang"], "instruction_options": ["multi8"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNQPFJP", "worker_id": "A2RBF3IIJP15IH"}], "B09BVBVHTV": [{"asin": "B09BVBVHTV", "instruction": "i am looking for a super soft bed blanket that is 40inch by 30inches and has llamas.", "attributes": ["super soft", "fleece throw"], "options": ["color: just love llama", "size: 40 in x 30 in xs for pet"], "instruction_attributes": ["super soft"], "instruction_options": ["just love llama", "40 in x 30 in xs for pet"], "assignment_id": "3SB4CE2TJ6523HLYUEJAEL8418OXAF", "worker_id": "A2ECRNQ3X5LEXD"}], "B08643FGX5": [{"asin": "B08643FGX5", "instruction": "i am looking for a granola bar rolled oats and peanut butter with artificial flavour", "attributes": ["trader joe", "artificial flavors"], "options": [""], "instruction_attributes": ["artificial flavors"], "instruction_options": [], "assignment_id": "354P56DE9VDCOY11T1135MPMLLQS7L", "worker_id": "A3N9ZYQAESNFQH"}], "B08MVGSN5T": [{"asin": "B08MVGSN5T", "instruction": "i need a cruelty free skin care set.", "attributes": ["cruelty free", "dead skin"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "3HHRAGRYXJF14PX11HIEZD6RJM79OD", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CKX77TL": [{"asin": "B09CKX77TL", "instruction": "i need some towels to dry my hair.", "attributes": ["easy clean", "dry hair"], "options": [""], "instruction_attributes": ["dry hair"], "instruction_options": [], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DP44KD", "worker_id": "A2ECRNQ3X5LEXD"}], "B0932JCSZP": [{"asin": "B0932JCSZP", "instruction": "i am looking for high quality tin jars with screw on lids, lip balm containers, pots for my diy's, salve powder, storage cans, spoon, labels.", "attributes": ["easy carry", "high quality"], "options": ["color: white", "size: 100ml"], "instruction_attributes": ["high quality"], "instruction_options": ["white"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7URHLB", "worker_id": "A2KW17G25L25R8"}], "B07NF9PRPH": [{"asin": "B07NF9PRPH", "instruction": "i am interested in buying a canon camera which has 1080p hd quality and also has optical zoom, i prefer having it in silver color.", "attributes": ["1080p hd", "optical zoom"], "options": ["color: silver"], "instruction_attributes": ["1080p hd", "optical zoom"], "instruction_options": ["silver"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4HT89Z", "worker_id": "AJY5G987IRT25"}], "B09K7SP9Y9": [{"asin": "B09K7SP9Y9", "instruction": "i want a xx-large regular fit hood crew men's polo shirt.", "attributes": ["hand wash", "machine wash", "wash cold", "polyester cotton", "regular fit", "button closure"], "options": ["color: navy & white", "size: xx-large"], "instruction_attributes": ["regular fit"], "instruction_options": ["xx-large"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDQL8YV", "worker_id": "A2RBF3IIJP15IH"}], "B09M7VS2QF": [{"asin": "B09M7VS2QF", "instruction": "i am in need of a 10x6.5ft, light weight and high resolution backdrop for digital photography.", "attributes": ["light weight", "high resolution", "high definition", "digital photography"], "options": ["size: 10x6.5ft"], "instruction_attributes": ["light weight", "high resolution", "digital photography"], "instruction_options": ["10x6.5ft"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZGBKMA", "worker_id": "ASWFLI3N8X72G"}], "B088R5X1X7": [{"asin": "B088R5X1X7", "instruction": "i need a high quality makeup mirror to be given as a gift for the maid of honor. find something in rose gold color.", "attributes": ["high quality", "rose gold"], "options": ["color: maid of honor"], "instruction_attributes": ["high quality", "rose gold"], "instruction_options": ["maid of honor"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSF9ID94", "worker_id": "A1NF6PELRKACS9"}], "B0953MVBG4": [{"asin": "B0953MVBG4", "instruction": "i need a black train case that is high quality and medium in size", "attributes": ["high quality", "storage case"], "options": ["color: large black", "size: meduim"], "instruction_attributes": ["high quality"], "instruction_options": ["large black", "meduim"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYMW7N2", "worker_id": "A2ECRNQ3X5LEXD"}], "B019WAS2PI": [{"asin": "B019WAS2PI", "instruction": "i need high speed hdmi cables that are 10 feet long and in a 5 pack.", "attributes": ["high speed", "blu ray", "gold plated"], "options": ["pattern name: 1 pack", "size: 10 feet (5-pack)"], "instruction_attributes": ["high speed"], "instruction_options": ["10 feet (5-pack)"], "assignment_id": "3DY46V3X30SWVSP7TC9YER1YGVE558", "worker_id": "A2ECRNQ3X5LEXD"}], "B07YF6B5XH": [{"asin": "B07YF6B5XH", "instruction": "i need 8.4 fl oz travel size voir haircare hair masks.", "attributes": ["travel size", "damaged hair", "dry hair"], "options": ["color: wash day duo kit", "size: 8.4 fl oz"], "instruction_attributes": ["travel size"], "instruction_options": ["8.4 fl oz"], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAU929CW", "worker_id": "A2RBF3IIJP15IH"}], "B071FFPC3S": [{"asin": "B071FFPC3S", "instruction": "i would like a 18 by 18-inch teal throw pillow cover that can be machine washed.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: teal yellow", "size: 18 x 18-inch"], "instruction_attributes": ["machine washable"], "instruction_options": ["teal yellow", "18 x 18-inch"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323D9DDW2", "worker_id": "A1WS884SI0SLO4"}], "B09MV32C9T": [{"asin": "B09MV32C9T", "instruction": "i need some candle sconces for the living room", "attributes": ["wall mounted", "clear glass", "living room", "dining room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3Z4XG4ZF4J1OKTSJXGZWIU29BKD8XB", "worker_id": "A2ECRNQ3X5LEXD"}], "B07DFDS6CS": [{"asin": "B07DFDS6CS", "instruction": "i need to buy the greaton 8 inch fully assembled traditional wooden box spring/mattress base for my bedroom. check the following measurements size: 75\" x 33\" and 4\" split base", "attributes": ["ready use", "fully assembled", "assembly required", "box spring"], "options": ["size: 75\" x 33\"", "style name: 4\" split foundation"], "instruction_attributes": ["assembly required"], "instruction_options": ["75\" x 33\"", "4\" split foundation"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI3ST3I", "worker_id": "A15IJ20C3R4HUO"}], "B07VNQWW5H": [{"asin": "B07VNQWW5H", "instruction": "i am looking for a leopard shower cap for natural hair.", "attributes": ["easy carry", "natural hair", "hair loss"], "options": ["color: leopard"], "instruction_attributes": ["natural hair"], "instruction_options": ["leopard"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RFLFLI", "worker_id": "A2ECRNQ3X5LEXD"}], "B0953KT25P": [{"asin": "B0953KT25P", "instruction": "i am looking for taupe colored height adjustable bar stools with steel frame.", "attributes": ["height adjustable", "coated steel", "steel frame"], "options": ["color: taupe"], "instruction_attributes": ["height adjustable", "steel frame"], "instruction_options": ["taupe"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1D8RXF", "worker_id": "AJDQGOTMB2D80"}], "B07WF9RJD3": [{"asin": "B07WF9RJD3", "instruction": "i am looking for royal purple blackout curtains that are easy to install.", "attributes": ["heavy duty", "easy install"], "options": ["color: royal purple", "size: 42 in x 63 in (w x l)"], "instruction_attributes": ["easy install"], "instruction_options": ["royal purple"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0250RAKN", "worker_id": "A1EREKSZAA9V7B"}], "B08Q8H55YK": [{"asin": "B08Q8H55YK", "instruction": "i am looking for a hair extensions with 16 inch long also easy to apply.", "attributes": ["easy apply", "hair extensions"], "options": ["color: #16 | 22 light blonde highlighted golden blonde", "size: 16 inch"], "instruction_attributes": ["easy apply", "hair extensions"], "instruction_options": ["16 inch"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L06VCH", "worker_id": "A2HMEGTAFO0CS8"}], "B09MQW4CXY": [{"asin": "B09MQW4CXY", "instruction": "i would like some easy to use dental flossers.", "attributes": ["easy use", "stainless steel", "bad breath"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L6RREY", "worker_id": "A2ECRNQ3X5LEXD"}], "B013TNXWEK": [{"asin": "B013TNXWEK", "instruction": "i need some small black shoes for men that have arch support.", "attributes": ["day comfort", "arch support"], "options": ["color: black", "size: small"], "instruction_attributes": ["arch support"], "instruction_options": ["black", "small"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TW4SU4", "worker_id": "A2ECRNQ3X5LEXD"}], "B004SQZ4VW": [{"asin": "B004SQZ4VW", "instruction": "i need some steel toed shoes that are chocolate colored and are a size 7.", "attributes": ["lace closure", "steel toe", "rubber outsole", "rubber sole"], "options": ["color: chocolate", "size: 7"], "instruction_attributes": ["steel toe"], "instruction_options": ["chocolate", "7"], "assignment_id": "33M4IA01QRBU2Y7FWP5W9BXE1D4RXB", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QY8BC84": [{"asin": "B09QY8BC84", "instruction": "i need a fluoride free toothpaste made with natural ingredients which is good for sensitive teeth and can fight bad breath.", "attributes": ["fluoride free", "natural ingredients", "fresh breath", "sensitive teeth", "bad breath"], "options": ["color: a"], "instruction_attributes": ["fluoride free", "natural ingredients", "sensitive teeth"], "instruction_options": ["a"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCSRQ5Y", "worker_id": "ASWFLI3N8X72G"}], "B07MXR58WG": [{"asin": "B07MXR58WG", "instruction": "i want peanut butter super pop snacks that are plant based.", "attributes": ["plant based", "gluten free", "low carb", "dairy free", "low sugar", "high protein"], "options": ["flavor name: peanut butter variety", "size: 6 count (pack of 1)"], "instruction_attributes": ["plant based"], "instruction_options": ["peanut butter variety"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9MUVTO", "worker_id": "A2RBF3IIJP15IH"}], "B08QTYTB8C": [{"asin": "B08QTYTB8C", "instruction": "i would like a 30 by 60 inch blue painting for the living room.", "attributes": ["hand painted", "ready hang", "living room", "dining room"], "options": ["color: bl-013", "size: 30x60 inch"], "instruction_attributes": ["living room"], "instruction_options": ["bl-013", "30x60 inch"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL6KCEB", "worker_id": "A1WS884SI0SLO4"}], "B09RW15VTG": [{"asin": "B09RW15VTG", "instruction": "i need a box spring mattress.", "attributes": ["twin size", "box spring"], "options": [""], "instruction_attributes": ["box spring"], "instruction_options": [], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N417TM", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H8QZWZ1": [{"asin": "B09H8QZWZ1", "instruction": "i am looking for a moisturizing skin scrub that is alcohol free.", "attributes": ["dermatologist tested", "alcohol free"], "options": ["style: scrub"], "instruction_attributes": ["alcohol free"], "instruction_options": ["scrub"], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGCW9SY", "worker_id": "AJDQGOTMB2D80"}], "B072QCQJVS": [{"asin": "B072QCQJVS", "instruction": "looking for a medium sized, high waist denim shorts for teen girls.", "attributes": ["high waist", "teen girls"], "options": ["color: f3-blue1-20256", "size: medium"], "instruction_attributes": ["high waist", "teen girls"], "instruction_options": ["medium"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9CNZRZ", "worker_id": "ASWFLI3N8X72G"}], "B09QPYJPKZ": [{"asin": "B09QPYJPKZ", "instruction": "i need a medium sized body suit that is long sleeved and in white.", "attributes": ["long sleeve", "everyday wear"], "options": ["color: x02-white", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x02-white", "medium"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP619DVS", "worker_id": "A2ECRNQ3X5LEXD"}], "B0969H5DJX": [{"asin": "B0969H5DJX", "instruction": "i would like a 52 cm brown bed riser with a lot of storage space.", "attributes": ["heavy duty", "storage space"], "options": ["color: brown-b", "size: 52cm"], "instruction_attributes": ["storage space"], "instruction_options": ["brown-b", "52cm"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYQ9ZOY", "worker_id": "A1WS884SI0SLO4"}], "B088GYH4KF": [{"asin": "B088GYH4KF", "instruction": "i am looking for a 12 count of low sugar espresso bars", "attributes": ["low sugar", "high protein", "low carb", "artificial ingredients", "gluten free", "chocolate covered"], "options": ["flavor name: 12ct espresso"], "instruction_attributes": ["low sugar"], "instruction_options": ["12ct espresso"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9UR5XL", "worker_id": "A2ECRNQ3X5LEXD"}], "B0069874ZQ": [{"asin": "B0069874ZQ", "instruction": "i want fully cooked spam classic lite singles.", "attributes": ["fully cooked", "shelf stable", "protein serving"], "options": [""], "instruction_attributes": ["fully cooked"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZKAY1W", "worker_id": "A2RBF3IIJP15IH"}], "B085928MJN": [{"asin": "B085928MJN", "instruction": "i would like a 36 by 48 inch painting for my living room that is of a red barn", "attributes": ["hand painted", "ready hang", "wood frame", "living room", "dining room"], "options": ["color: red barn", "size: 36x48in"], "instruction_attributes": ["living room"], "instruction_options": ["red barn", "36x48in"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQR2HI4", "worker_id": "A2ECRNQ3X5LEXD"}], "B08R771GPW": [{"asin": "B08R771GPW", "instruction": "i need some teeth whitening that also freshens breath.", "attributes": ["easy carry", "fresh breath"], "options": [""], "instruction_attributes": ["fresh breath"], "instruction_options": [], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR64793H32", "worker_id": "A2ECRNQ3X5LEXD"}], "B00IH0FYJ2": [{"asin": "B00IH0FYJ2", "instruction": "i want trader joe's freeze dried mangos.", "attributes": ["freeze dried", "trader joe"], "options": [""], "instruction_attributes": ["freeze dried", "trader joe"], "instruction_options": [], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY1EP7X", "worker_id": "A2RBF3IIJP15IH"}], "B00MJW2X8E": [{"asin": "B00MJW2X8E", "instruction": "i would like to have a kosher gelato.", "attributes": ["non gmo", "kosher certified", "high fructose"], "options": [""], "instruction_attributes": ["kosher certified"], "instruction_options": [], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUH13RJ", "worker_id": "A1WS884SI0SLO4"}], "B01LTHYWAQ": [{"asin": "B01LTHYWAQ", "instruction": "get me some toothpaste for sensitive teeth that has preventive and restorative properties.", "attributes": ["clinically proven", "sensitive teeth"], "options": ["color: prevent and repair"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["prevent and repair"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KNZJLO", "worker_id": "AR9AU5FY1S3RO"}], "B09895X3NW": [{"asin": "B09895X3NW", "instruction": "i'm looking for a buffet sideboard cabinet with clear glass doors. prefer the size to be \"b type espresso-28\u201cl x 14.6\u201dw x 29\u201dh\" .", "attributes": ["clear glass", "dining room", "living room"], "options": ["size: b type espresso-28\u201cl x 14.6\u201dw x 29\u201dh"], "instruction_attributes": ["clear glass"], "instruction_options": [], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQEDCJT", "worker_id": "A20DUVEOH6A7KW"}], "B097GZ81LY": [{"asin": "B097GZ81LY", "instruction": "i want large high waisted congyee women's athletic shorts.", "attributes": ["moisture wicking", "machine washable", "tummy control", "high waist", "polyester spandex"], "options": ["color: #5-grey", "size: large"], "instruction_attributes": ["high waist"], "instruction_options": ["large"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNU1H8Y", "worker_id": "A2RBF3IIJP15IH"}], "B07PTZ3141": [{"asin": "B07PTZ3141", "instruction": "i need to buy an eight by six foot backdrop for digital photography. it should be high resolution and light weight.", "attributes": ["light weight", "high resolution", "digital photography"], "options": ["size: 8x6ft"], "instruction_attributes": ["light weight", "high resolution", "digital photography"], "instruction_options": ["8x6ft"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4AERQB", "worker_id": "AR9AU5FY1S3RO"}], "B01GEW27DA": [{"asin": "B01GEW27DA", "instruction": "i would like a quad core tablet that is black and has 8gb of ram", "attributes": ["dual band", "quad core"], "options": ["color: black", "offer type: without special offers", "style: 8 gb"], "instruction_attributes": ["quad core"], "instruction_options": ["black", "8 gb"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6C3VEU", "worker_id": "A2ECRNQ3X5LEXD"}], "B08JZJVNPM": [{"asin": "B08JZJVNPM", "instruction": "i am interested in plant based granola bars that are banana flavored and come in a pack of 12.", "attributes": ["grain free", "chocolate covered", "plant based", "non gmo", "gluten free"], "options": ["flavor name: banana", "size: 1.7 ounce (pack of 12)"], "instruction_attributes": ["plant based"], "instruction_options": ["banana", "1.7 ounce (pack of 12)"], "assignment_id": "3VELCLL3GVTP97HDY1KVXDFUT9I1F0", "worker_id": "A2ECRNQ3X5LEXD"}], "B0018OHOPG": [{"asin": "B0018OHOPG", "instruction": "i am looking for straight legged jeans in size 66w x 28l, that are also machine washable.", "attributes": ["straight leg", "machine wash", "button closure"], "options": ["color: bubble cheetah anthracite", "size: 66w x 28l"], "instruction_attributes": ["straight leg", "machine wash"], "instruction_options": ["66w x 28l"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4AKQRG", "worker_id": "A2NSS746CFCT4M"}], "B01KI9G5D8": [{"asin": "B01KI9G5D8", "instruction": "i need a black hoodie that is machine washable and is 4x-large.", "attributes": ["machine wash", "wash cold", "polyester cotton", "tumble dry"], "options": ["color: black", "size: 4x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["black", "4x-large"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39BDZCM", "worker_id": "A2ECRNQ3X5LEXD"}], "B01LZ9TVW8": [{"asin": "B01LZ9TVW8", "instruction": "i want a variety pack of non gmo 7days bagel chips.", "attributes": ["non gmo", "artificial flavors"], "options": ["flavor: variety (garlic, sea salt, cinnamon raisin)", "size: 2.82 ounce (pack of 12)"], "instruction_attributes": ["non gmo"], "instruction_options": ["variety (garlic, sea salt, cinnamon raisin)"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WTC1AU", "worker_id": "A2RBF3IIJP15IH"}], "B09STB31NW": [{"asin": "B09STB31NW", "instruction": "i need a non slip pair of women's shoes with rubber soles. it should be in size 11.5.", "attributes": ["non slip", "contrast color", "fashion design", "quality materials", "rubber sole"], "options": ["color: american element, fish pattern design", "size: 11.5"], "instruction_attributes": ["non slip", "rubber sole"], "instruction_options": ["11.5"], "assignment_id": "3KV0LJBBHDVJ8M8BII3NYUHGU9KMRM", "worker_id": "A1NF6PELRKACS9"}], "B07NXN3V27": [{"asin": "B07NXN3V27", "instruction": "i am looking for a low sugar blue cheese and chive steak sauce.", "attributes": ["bpa free", "low sugar"], "options": [""], "instruction_attributes": ["low sugar"], "instruction_options": [], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BL3JV9", "worker_id": "A1EREKSZAA9V7B"}], "B09R1MRJ7S": [{"asin": "B09R1MRJ7S", "instruction": "i am looking for the high waist bikini push up swimwear. i want it in red.", "attributes": ["high waist", "tumble dry"], "options": ["color: red", "size: large"], "instruction_attributes": ["high waist"], "instruction_options": ["red"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY5JU0J", "worker_id": "A1NF6PELRKACS9"}], "B008BRLSP0": [{"asin": "B008BRLSP0", "instruction": "i want a 24 pack of gluten free goya foods cream of coconut.", "attributes": ["non dairy", "low sodium", "soy free", "gluten free"], "options": ["size: 15 ounce (pack of 24)"], "instruction_attributes": ["gluten free"], "instruction_options": ["15 ounce (pack of 24)"], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGAKSMV", "worker_id": "A2RBF3IIJP15IH"}], "B073V6B9TY": [{"asin": "B073V6B9TY", "instruction": "i want brass calhoun collection farmhouse bath vanity lights.", "attributes": ["mid century", "bronze finish", "vanity light", "clear glass"], "options": ["color: brass"], "instruction_attributes": ["vanity light"], "instruction_options": ["brass"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3C5N6E", "worker_id": "A2RBF3IIJP15IH"}], "B013RIOOFS": [{"asin": "B013RIOOFS", "instruction": "i am looking for an anti aging face serum, tighten, brighten, and hydrate.", "attributes": ["animal testing", "anti aging", "cruelty free", "dark circles", "fine lines", "dry skin"], "options": ["size: 1.75 fl oz"], "instruction_attributes": ["anti aging"], "instruction_options": ["1.75 fl oz"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW59S8L", "worker_id": "A2KW17G25L25R8"}], "B09NB9JW4M": [{"asin": "B09NB9JW4M", "instruction": "i would like a pink hair straightener for styling.", "attributes": ["easy carry", "hair styling"], "options": ["color: pink"], "instruction_attributes": ["hair styling"], "instruction_options": ["pink"], "assignment_id": "3L0KT67Y8PQV3IX2GAR3IZ9JPK0SYN", "worker_id": "A2ECRNQ3X5LEXD"}], "B07BKQ137Y": [{"asin": "B07BKQ137Y", "instruction": "i would like two bags of a variety four pack of gluten free crackers.", "attributes": ["gluten free", "keto friendly", "non gmo"], "options": ["flavor name: variety 4 pack", "size: 2 bags"], "instruction_attributes": ["gluten free"], "instruction_options": ["variety 4 pack", "2 bags"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7RY57WY", "worker_id": "A1WS884SI0SLO4"}], "B09JS6P9P9": [{"asin": "B09JS6P9P9", "instruction": "find me some highly pigmented eye shadow in color b.", "attributes": ["highly pigmented", "easy apply", "long lasting", "eye shadow", "nail art"], "options": ["color: b"], "instruction_attributes": ["highly pigmented", "eye shadow"], "instruction_options": ["b"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H378UW", "worker_id": "AR9AU5FY1S3RO"}], "B07JZL2N7V": [{"asin": "B07JZL2N7V", "instruction": "hello . looking for my new home easy install wall speaker, monoprice carbon fiber - 300 watt 10 inch (each) subwoofer, for home theater .", "attributes": ["easy install", "carbon fiber"], "options": ["size: 10 in", "style: 3 way"], "instruction_attributes": ["easy install"], "instruction_options": ["10 in", "3 way"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL99WV2B", "worker_id": "A15IJ20C3R4HUO"}], "B07KXD5H85": [{"asin": "B07KXD5H85", "instruction": "i am looking for a men's shorts with stretch fabric in 3xl size. also in royal blue color.", "attributes": ["moisture wicking", "stretch fabric", "elastic closure", "elastic waistband"], "options": ["color: royal blue", "size: 3x-large"], "instruction_attributes": ["stretch fabric"], "instruction_options": ["royal blue", "3x-large"], "assignment_id": "3LJ7UR74RSNIPYRDJ7MA3GV67KJN4B", "worker_id": "A2HMEGTAFO0CS8"}], "B07MLJFSW3": [{"asin": "B07MLJFSW3", "instruction": "i want a farmhouse grey acadian solid wood side table.", "attributes": ["solid wood", "living room"], "options": ["color: farmhouse grey"], "instruction_attributes": ["solid wood"], "instruction_options": ["farmhouse grey"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NLNP2C", "worker_id": "A2RBF3IIJP15IH"}], "B08HRYSFKM": [{"asin": "B08HRYSFKM", "instruction": "i am looking for a high performance tablet with quad core processor which should have sim support and all necessary features.", "attributes": ["high performance", "quad core"], "options": [""], "instruction_attributes": ["high performance", "quad core"], "instruction_options": [], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCNNI7I", "worker_id": "ASWFLI3N8X72G"}], "B07FMRG1PF": [{"asin": "B07FMRG1PF", "instruction": "i need low carb protein bars", "attributes": ["keto friendly", "low carb"], "options": [""], "instruction_attributes": ["low carb"], "instruction_options": [], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54PC386", "worker_id": "A2ECRNQ3X5LEXD"}], "B08G9W5T9J": [{"asin": "B08G9W5T9J", "instruction": "i am looking for a legacy grenadine colored men's dress shirt that is machine washable.", "attributes": ["slim fit", "easy care", "machine wash", "stretch fabric", "cotton spandex", "button closure"], "options": ["color: legacy grenadine", "size: 16.5\" neck 34\"-35\" sleeve"], "instruction_attributes": ["machine wash"], "instruction_options": ["legacy grenadine"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1HZU3A", "worker_id": "A1EREKSZAA9V7B"}], "B015YITIGY": [{"asin": "B015YITIGY", "instruction": "i am looking for an assorted small cookie gift set that s covered with chocolate please.", "attributes": ["chocolate covered", "gift set", "valentine day", "gift basket"], "options": ["flavor name: assorted", "size: small"], "instruction_attributes": ["chocolate covered", "gift set"], "instruction_options": ["assorted", "small"], "assignment_id": "32SCWG5HISEW7674IASH43KF3QRP6V", "worker_id": "A182YKPS46KE9F"}], "B01H7ENCMO": [{"asin": "B01H7ENCMO", "instruction": "i am looking for standard sized levi strauss & co. men's carpenter jeans that are machine washable.", "attributes": ["straight leg", "day comfort", "machine wash", "imported zipper"], "options": ["color: light mocha-waterless", "size: 50w x 32l", "special size: standard"], "instruction_attributes": ["machine wash"], "instruction_options": ["standard"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQAYVKF", "worker_id": "A1EREKSZAA9V7B"}], "B07RQ7VQ8V": [{"asin": "B07RQ7VQ8V", "instruction": "i am looking for a light weight medium size body shaper for men. also, i prefer a white colored one.", "attributes": ["light weight", "moisture wicking", "nylon spandex"], "options": ["color: white (with tummy folds)", "size: medium"], "instruction_attributes": ["light weight"], "instruction_options": ["white (with tummy folds)", "medium"], "assignment_id": "33TIN5LC0FKDY31374RC144TXXW9YG", "worker_id": "AJDQGOTMB2D80"}], "B073WD1PN1": [{"asin": "B073WD1PN1", "instruction": "i need a machine washable throw pillow cover that is in a grey color and is 16\" by 16\"", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: grey dust", "size: 16\" x 16\""], "instruction_attributes": ["machine washable"], "instruction_options": ["grey dust", "16\" x 16\""], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBQ2JE5", "worker_id": "A2ECRNQ3X5LEXD"}], "B08GY89RK9": [{"asin": "B08GY89RK9", "instruction": "i want a lorex 16-channel 4k uhd dvr surveillance system with motion detection.", "attributes": ["hands free", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCG4E0Z", "worker_id": "A2RBF3IIJP15IH"}], "B06XR97NGM": [{"asin": "B06XR97NGM", "instruction": "i would like a six drawer natural walnut dresser with bronze finishes.", "attributes": ["bronze finish", "engineered wood"], "options": ["color: adler - natural walnut", "size: 6-drawer"], "instruction_attributes": ["bronze finish"], "instruction_options": ["adler - natural walnut", "6-drawer"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH151HWH5", "worker_id": "A1WS884SI0SLO4"}, {"asin": "B06XR97NGM", "instruction": "i am looking for a 9 drawer dresser with a bronze finish.", "attributes": ["bronze finish", "engineered wood"], "options": ["color: riva - chocolate brown", "size: 9-drawer"], "instruction_attributes": ["bronze finish"], "instruction_options": ["9-drawer"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQATKVZ", "worker_id": "A1EREKSZAA9V7B"}], "B082CSSS2M": [{"asin": "B082CSSS2M", "instruction": "i need cupcake toppers for a baby shower", "attributes": ["baby shower", "valentine day", "cupcake picks"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7MSOBK", "worker_id": "A2ECRNQ3X5LEXD"}], "B08KLGJBRJ": [{"asin": "B08KLGJBRJ", "instruction": "i need a wall mounted mirror that is 36 by 28 inches.", "attributes": ["wall mounted", "contemporary style"], "options": ["size: 36 x28 inch"], "instruction_attributes": ["wall mounted"], "instruction_options": ["36 x28 inch"], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCNL7I5", "worker_id": "A2ECRNQ3X5LEXD"}], "B08CXZHG4C": [{"asin": "B08CXZHG4C", "instruction": "i want a black non slip cordking designed for iphone 12.", "attributes": ["non slip", "wireless charging"], "options": ["color: black"], "instruction_attributes": ["non slip"], "instruction_options": ["black"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYO7Q9M", "worker_id": "A2RBF3IIJP15IH"}], "B07G7SP5WB": [{"asin": "B07G7SP5WB", "instruction": "i need a portable bluetooth speaker that is hands free. pick something in blue.", "attributes": ["hands free", "stereo sound"], "options": ["color: blue"], "instruction_attributes": ["hands free"], "instruction_options": ["blue"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NIHBKO", "worker_id": "A1NF6PELRKACS9"}], "B07XBZ1MPH": [{"asin": "B07XBZ1MPH", "instruction": "i need some living room drapes that are greyish white and are 52w by 108l", "attributes": ["machine washable", "easy install", "living room"], "options": ["color: greyish white", "size: 52w x 108l"], "instruction_attributes": ["living room"], "instruction_options": ["greyish white", "52w x 108l"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H2Y8UL", "worker_id": "A2ECRNQ3X5LEXD"}], "B091CRF68B": [{"asin": "B091CRF68B", "instruction": "i would like a medium purple short sleeve shirt.", "attributes": ["butt lifting", "loose fit", "slim fit", "long sleeve", "short sleeve", "tummy control", "high waist", "classic fit", "teen girls"], "options": ["color: purple-8", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["purple-8", "medium"], "assignment_id": "3BEFOD78WH3C7G6D767AQ1662VRM4U", "worker_id": "A1WS884SI0SLO4"}], "B07NLB7W1P": [{"asin": "B07NLB7W1P", "instruction": "i want a coffee scented coconut oil face scrub.", "attributes": ["coconut oil", "argan oil"], "options": ["scent: coffee"], "instruction_attributes": ["coconut oil"], "instruction_options": ["coffee"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0AM164", "worker_id": "A2RBF3IIJP15IH"}], "B077P2FKZH": [{"asin": "B077P2FKZH", "instruction": "i'm looking for a white king-sized bedroom set with a box spring.", "attributes": ["button tufted", "box spring", "solid wood"], "options": ["color: white", "size: king", "style: metal bed"], "instruction_attributes": ["box spring"], "instruction_options": ["white", "king"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUS1QJX", "worker_id": "A19317A3X87NVM"}], "B0986VB3R6": [{"asin": "B0986VB3R6", "instruction": "i would like purchase 6light chandeliers such as brass mate back model also installations will be easy for my home into dining room", "attributes": ["easy install", "pendant light", "light fixture", "dining room", "living room"], "options": ["color: brass", "size: 6lights"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH941EL", "worker_id": "A3RBCGB309WPOC"}], "B09FKYGPGC": [{"asin": "B09FKYGPGC", "instruction": "i am looking for a soft shower body brush with a long handle.", "attributes": ["long handle", "dead skin"], "options": [""], "instruction_attributes": ["long handle"], "instruction_options": [], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWZPT5E", "worker_id": "AJDQGOTMB2D80"}], "B09881DT11": [{"asin": "B09881DT11", "instruction": "some loose fitting white joggers in an xx-large would be nice.", "attributes": ["slim fit", "moisture wicking", "loose fit", "hand wash", "drawstring closure", "regular fit", "relaxed fit", "everyday wear", "gym workout", "daily wear"], "options": ["color: white", "size: xx-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["white", "xx-large"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZI6K9F", "worker_id": "A2ECRNQ3X5LEXD"}], "B01GUPABIO": [{"asin": "B01GUPABIO", "instruction": "i\u2019d like to find a multipack of macaroni cheese in white cheddar flavour. but it must not contain any dairy or gluten.", "attributes": ["gluten free", "plant based", "dairy free", "soy free", "non gmo", "artificial flavors"], "options": ["flavor name: white cheddar", "size: 10.6 ounce (pack of 8)"], "instruction_attributes": ["gluten free", "dairy free"], "instruction_options": ["white cheddar"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX3IFAW", "worker_id": "A3LIIE572Z4OG7"}], "B07L75RSD5": [{"asin": "B07L75RSD5", "instruction": "i am interested in a beige and wine living room rug.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: beige | wine", "size: 2' 2\" x 14'"], "instruction_attributes": ["living room"], "instruction_options": ["beige | wine"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83JTIJX", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PV6QPPN": [{"asin": "B09PV6QPPN", "instruction": "i need wedge sandals that are high heel and 6.5 narrow.", "attributes": ["open toe", "high heel"], "options": ["size: 6.5 narrow"], "instruction_attributes": ["high heel"], "instruction_options": ["6.5 narrow"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWX11R3", "worker_id": "A2ECRNQ3X5LEXD"}], "B088N8FZMV": [{"asin": "B088N8FZMV", "instruction": "i want some cake toppers for my party supplies.", "attributes": ["cupcake picks", "party supplies"], "options": [""], "instruction_attributes": ["party supplies"], "instruction_options": [], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZAZAPQ", "worker_id": "A1WS884SI0SLO4"}], "B0972Q1T8T": [{"asin": "B0972Q1T8T", "instruction": "i want a noise cancelling cosycost usb microphone.", "attributes": ["noise cancelling", "plug play"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3QWZML", "worker_id": "A2RBF3IIJP15IH"}], "B08989D7RZ": [{"asin": "B08989D7RZ", "instruction": "i am looking for a displayport to hdmi adapter with plug and play option. also support 4k / 30hz.", "attributes": ["plug play", "usb port"], "options": ["pattern name: displayport", "style: 4k | 30hz"], "instruction_attributes": ["plug play"], "instruction_options": ["displayport", "4k | 30hz"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWPWPF0", "worker_id": "A2HMEGTAFO0CS8"}], "B09QPR5NQL": [{"asin": "B09QPR5NQL", "instruction": "i want a pair of pink high heeled sandals with an open toe and a leather sole.", "attributes": ["open toe", "non slip", "leather sole", "high heel"], "options": ["color: sandals 04 pink", "size: 10"], "instruction_attributes": ["open toe", "leather sole"], "instruction_options": ["sandals 04 pink", "10"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYQCZO1", "worker_id": "AR9AU5FY1S3RO"}], "B09KV72579": [{"asin": "B09KV72579", "instruction": "could you find for me for my living room room this product: green palm leaf curtains tropical leaves botanical pattern print blackout curtains, panel set window curtains size 52x24 in", "attributes": ["easy clean", "living room", "dining room"], "options": ["color: cactus backgroundlop4064", "size: 52x24in"], "instruction_attributes": ["living room"], "instruction_options": ["52x24in"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA7Z3MH4", "worker_id": "A15IJ20C3R4HUO"}], "B07V5FS2FQ": [{"asin": "B07V5FS2FQ", "instruction": "i want a light weight leyiyi 15x10ft 80's party backdrop.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 15x10ft-vinyl"], "instruction_attributes": ["light weight"], "instruction_options": ["15x10ft-vinyl"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602SI95Q", "worker_id": "A2RBF3IIJP15IH"}], "B07LB4K52K": [{"asin": "B07LB4K52K", "instruction": "i am looking for a certified refurbished nintendo 3ds.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YGANPX", "worker_id": "A2ECRNQ3X5LEXD"}], "B08T8Q5JXC": [{"asin": "B08T8Q5JXC", "instruction": "i'm looking for some juicy watermelon lip gloss that's paraben and oil free.", "attributes": ["oil free", "paraben free", "cruelty free", "long lasting", "sensitive skin"], "options": ["color: juicy watermelon"], "instruction_attributes": ["oil free", "paraben free"], "instruction_options": ["juicy watermelon"], "assignment_id": "3U4J9857OPLD7CKZIFF8FXFMHYG7BD", "worker_id": "AR9AU5FY1S3RO"}], "B08WHJLGWT": [{"asin": "B08WHJLGWT", "instruction": "i want to buy a vinyl skin for my ps5. look for one that's easy to install. the color should be marijuana black, and get the disc edition size.", "attributes": ["easy install", "easy use", "carbon fiber"], "options": ["color: marijuana black carbon fiber", "size: disc edition"], "instruction_attributes": ["easy install"], "instruction_options": ["marijuana black carbon fiber", "disc edition"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KMQHUD", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B08WHJLGWT", "instruction": "i am looking for an easy to install matte black vinyl skin decal for playstation 5 console and it's two controllers.", "attributes": ["easy install", "easy use", "carbon fiber"], "options": ["color: matte black", "size: digital edition"], "instruction_attributes": ["easy install"], "instruction_options": ["matte black"], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYM9GC6", "worker_id": "AJDQGOTMB2D80"}], "B07L4YCSQL": [{"asin": "B07L4YCSQL", "instruction": "i want green tea scented brickell men's morning face care routine.", "attributes": ["certified organic", "alcohol free", "green tea", "hyaluronic acid"], "options": ["scent: scented"], "instruction_attributes": ["green tea"], "instruction_options": ["scented"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69LKP8K", "worker_id": "A2RBF3IIJP15IH"}], "B094R56BLY": [{"asin": "B094R56BLY", "instruction": "buy me a pair of black snake leather flip flops with arch support in a size six.", "attributes": ["leather sole", "arch support"], "options": ["color: black snake leather", "size: 6"], "instruction_attributes": ["arch support"], "instruction_options": ["black snake leather", "6"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRW0XJF", "worker_id": "AR9AU5FY1S3RO"}], "B09FWZYWC5": [{"asin": "B09FWZYWC5", "instruction": "i am looking for a youth classic fit t-shirt that is black and large.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: youth", "size: large"], "instruction_attributes": ["classic fit"], "instruction_options": ["black", "youth", "large"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB455AQZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B094QPWBTN": [{"asin": "B094QPWBTN", "instruction": "i am looking for a hand painted woman sculpture made of wood for my living room.", "attributes": ["hand painted", "living room"], "options": [""], "instruction_attributes": ["hand painted", "living room"], "instruction_options": [], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XQ9NGH", "worker_id": "A1EREKSZAA9V7B"}], "B071CDLM1Q": [{"asin": "B071CDLM1Q", "instruction": "i am looking for an easy to prepare and ready to eat packaged rice. also, please make sure that it is cheddar broccoli flavored and has 8 packs.", "attributes": ["easy prepare", "artificial flavors"], "options": ["flavor name: cheddar broccoli", "size: pack of 8"], "instruction_attributes": ["easy prepare"], "instruction_options": ["cheddar broccoli", "pack of 8"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRRWZB0", "worker_id": "AJDQGOTMB2D80"}], "B07FQ7QNDL": [{"asin": "B07FQ7QNDL", "instruction": "i'm looking for an 8 bay battery charger with rechargeable triple a batteries. it should be fast charging and have a usb port. get the one that's size 808u+8aa+8aaa.", "attributes": ["fast charging", "aaa batteries", "usb port"], "options": ["size: 808u+8aa+8aaa"], "instruction_attributes": ["fast charging", "aaa batteries", "usb port"], "instruction_options": ["808u+8aa+8aaa"], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQN8J10O", "worker_id": "AR9AU5FY1S3RO"}], "B092VSCVHF": [{"asin": "B092VSCVHF", "instruction": "i want a walnut wersmt led tv stand for my living room.", "attributes": ["white item", "high gloss", "tempered glass", "storage space", "living room"], "options": ["color: walnut", "size: 71 \"w \u00d7 17\" d \u00d7 12 \"h"], "instruction_attributes": ["living room"], "instruction_options": ["walnut"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIPI846", "worker_id": "A2RBF3IIJP15IH"}], "B08611W97Q": [{"asin": "B08611W97Q", "instruction": "i want a high wasted swimdress with sunflowers on it. get the size large.", "attributes": ["light weight", "polyester spandex", "tummy control", "high waist"], "options": ["color: sunflower", "size: large"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QBV1MA", "worker_id": "AR9AU5FY1S3RO"}], "B07658L9HR": [{"asin": "B07658L9HR", "instruction": "i am looking for a sofa made up of pu leather in ottoman size. also in navy leather color.", "attributes": ["button tufted", "pu leather", "faux leather"], "options": ["color: navy leather", "size: ottoman"], "instruction_attributes": ["pu leather"], "instruction_options": ["navy leather", "ottoman"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAEPOV7", "worker_id": "A2HMEGTAFO0CS8"}], "B09HY3G462": [{"asin": "B09HY3G462", "instruction": "i would like a bottle of paraben free hair color.", "attributes": ["sulfate free", "paraben free", "cruelty free", "argan oil", "permanent hair"], "options": [""], "instruction_attributes": ["paraben free"], "instruction_options": [], "assignment_id": "3WJ1OXY92LQCOGKQM67IYMRBAZGA8L", "worker_id": "A1WS884SI0SLO4"}], "B09P1TBBJL": [{"asin": "B09P1TBBJL", "instruction": "i want a black executive office chair with footrest lumbar support.", "attributes": ["high density", "heavy duty", "easy assemble", "lumbar support", "pu leather"], "options": ["color: black"], "instruction_attributes": ["lumbar support"], "instruction_options": ["black"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKJRT13", "worker_id": "A2RBF3IIJP15IH"}], "B01525ZA1G": [{"asin": "B01525ZA1G", "instruction": "look for a coffee gift set with whole bean flavor.", "attributes": ["gift set", "gift basket"], "options": ["flavor name: whole bean"], "instruction_attributes": ["gift set"], "instruction_options": ["whole bean"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSENZPGOY", "worker_id": "A15ERD4HOFEPHM"}], "B09C7WKKVK": [{"asin": "B09C7WKKVK", "instruction": "i would like a #b of long lasting lipstick.", "attributes": ["long lasting", "easy carry"], "options": ["color: #b"], "instruction_attributes": ["long lasting"], "instruction_options": ["#b"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IO4LT7", "worker_id": "A1WS884SI0SLO4"}], "B09P4R6VXR": [{"asin": "B09P4R6VXR", "instruction": "i would like a yellow heavy duty desk that is easy to clean.", "attributes": ["heavy duty", "easy clean", "coated steel"], "options": ["color: yellow"], "instruction_attributes": ["heavy duty", "easy clean"], "instruction_options": ["yellow"], "assignment_id": "3K772S5NPJL8742V5F3A7IA1YXTEHO", "worker_id": "A1WS884SI0SLO4"}], "B018LJZU4C": [{"asin": "B018LJZU4C", "instruction": "i would like a bag of fifty cotton candy sugar free gum.", "attributes": ["sugar free", "gluten free"], "options": ["flavor name: cotton candy", "size: 50 count (pack of 6)"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODL9EWR", "worker_id": "A1WS884SI0SLO4"}], "B088WGMG7P": [{"asin": "B088WGMG7P", "instruction": "i would like a red hdmi cable that is long lasting.", "attributes": ["non slip", "long lasting", "plug play", "aluminum alloy"], "options": ["color: red"], "instruction_attributes": ["long lasting"], "instruction_options": ["red"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVF7P1T", "worker_id": "A1WS884SI0SLO4"}], "B09L52YYMB": [{"asin": "B09L52YYMB", "instruction": "i want fully cooked dill and fava wild garden heat and serve pilaf.", "attributes": ["fully cooked", "ready eat", "natural ingredients"], "options": ["flavor name: dill and fava", "size: 8.8 ounce (pack of 1)"], "instruction_attributes": ["fully cooked"], "instruction_options": ["dill and fava"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7TXUCR", "worker_id": "A2RBF3IIJP15IH"}], "B09CPRKRSF": [{"asin": "B09CPRKRSF", "instruction": "i need a 42mm smartwatch band that is easy to install.", "attributes": ["compatible apple", "easy install"], "options": ["color: 5", "size: 42mm | 44mm"], "instruction_attributes": ["easy install"], "instruction_options": ["42mm | 44mm"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X4TGPN", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HJ4TLXH": [{"asin": "B08HJ4TLXH", "instruction": "i would like three pairs of cruelty free eyelashes.", "attributes": ["cruelty free", "high quality"], "options": ["color: 5 pairs styles mixed", "size: 3 pair (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["3 pair (pack of 1)"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7UZLHN", "worker_id": "A2ECRNQ3X5LEXD"}], "B09414RGKP": [{"asin": "B09414RGKP", "instruction": "i want ethylene vinyl nunn bush toe slip ons in size 9.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: cognac", "size: 9"], "instruction_attributes": ["ethylene vinyl"], "instruction_options": ["9"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDW8IAQ", "worker_id": "A2RBF3IIJP15IH"}], "B07DPC8PV1": [{"asin": "B07DPC8PV1", "instruction": "i would like a brown long lasting eyeliner that is also cruelty free.", "attributes": ["highly pigmented", "easy apply", "cruelty free", "long lasting"], "options": ["color: essential brown"], "instruction_attributes": ["cruelty free", "long lasting"], "instruction_options": ["essential brown"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCMYMBO", "worker_id": "A1WS884SI0SLO4"}], "B07WZVJ14W": [{"asin": "B07WZVJ14W", "instruction": "shop for decaffeinated orange flavored green tea.", "attributes": ["caffeine free", "dairy free", "non dairy", "easy use", "gluten free", "artificial flavors"], "options": ["flavor: orange"], "instruction_attributes": ["caffeine free"], "instruction_options": ["orange"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOI6DYW", "worker_id": "AR9AU5FY1S3RO"}], "B08MZRGZZ8": [{"asin": "B08MZRGZZ8", "instruction": "i want a black dust proof topcovos vr lens cover for oculus quest 2.", "attributes": ["dust proof", "easy use"], "options": ["color: black"], "instruction_attributes": ["dust proof"], "instruction_options": ["black"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNVB8H1", "worker_id": "A2RBF3IIJP15IH"}], "B087D5W1B5": [{"asin": "B087D5W1B5", "instruction": "i need an easy to use body brush to exfoliate dry skin.", "attributes": ["easy use", "dry skin"], "options": [""], "instruction_attributes": ["easy use", "dry skin"], "instruction_options": [], "assignment_id": "34Q075JO18NYC32NVJ1AU6SQN84109", "worker_id": "A1NF6PELRKACS9"}], "B09PY2WZGR": [{"asin": "B09PY2WZGR", "instruction": "i am looking for an oversized women's gray long sleeve sweater.", "attributes": ["long sleeve", "polyester cotton", "daily wear"], "options": ["color: z91-gray", "size: 4x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["z91-gray"], "assignment_id": "3GU1KF0O4TB2DIOZE19PFJ67HSZBP1", "worker_id": "A1EREKSZAA9V7B"}], "B07DWQ218X": [{"asin": "B07DWQ218X", "instruction": "i want to get some face wash that is good for sensitive skin.", "attributes": ["dead skin", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL5X5HJ", "worker_id": "A2YNPKYEFDZ6C9"}], "B07KJZMJXW": [{"asin": "B07KJZMJXW", "instruction": "i would like a size 5 cattail pair of snow boots with faux fur and a rubber sole.", "attributes": ["rubber sole", "lace closure", "faux fur"], "options": ["color: cattail", "size: 5"], "instruction_attributes": ["rubber sole", "faux fur"], "instruction_options": ["cattail", "5"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AHEYU2", "worker_id": "A1WS884SI0SLO4"}], "B083W8R83Q": [{"asin": "B083W8R83Q", "instruction": "i am looking a gluten free low sodium lemony bites flavor snacks & trail mixes", "attributes": ["low sodium", "gluten free", "artificial colors", "artificial flavors"], "options": ["flavor name: lemony bites", "size: 1 ounce (pack of 5)"], "instruction_attributes": ["low sodium", "gluten free"], "instruction_options": ["lemony bites"], "assignment_id": "3E47SOBEY16T61T1F6F0H6BDDYBCI2", "worker_id": "A3N9ZYQAESNFQH"}], "B08ZY1JRN7": [{"asin": "B08ZY1JRN7", "instruction": "i am looking for freeze dried fruit that is gluten free.", "attributes": ["freeze dried", "ready eat", "gluten free"], "options": ["color: b freeze-dried strawberries"], "instruction_attributes": ["freeze dried", "gluten free"], "instruction_options": ["b freeze-dried strawberries"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QPIOXV", "worker_id": "A2KW17G25L25R8"}], "B073P88HMF": [{"asin": "B073P88HMF", "instruction": "i want a 6.8 fl oz, hair treatment pack which provides natural hair smoothening and is sulfate free. i would like color as vitapro fusion leave-in", "attributes": ["cruelty free", "sulfate free", "natural hair"], "options": ["color: vitapro fusion leave-in", "size: 6.8 fl oz", "style name: hair treatment - 1 pack"], "instruction_attributes": ["sulfate free", "natural hair"], "instruction_options": ["vitapro fusion leave-in", "6.8 fl oz", "hair treatment - 1 pack"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KCODPL", "worker_id": "ASWFLI3N8X72G"}], "B08JHGB1KL": [{"asin": "B08JHGB1KL", "instruction": "i am lookinhg for nut free walnut hemp buts that come in a pack of six.", "attributes": ["nut free", "gluten free", "non gmo", "plant based", "protein serving", "soy free", "certified organic", "dairy free"], "options": ["flavor name: walnut hemp", "size: 4 ounce pouches - (pack of 6)"], "instruction_attributes": ["nut free"], "instruction_options": ["walnut hemp", "4 ounce pouches - (pack of 6)"], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB4ZRXYP", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B08JHGB1KL", "instruction": "i want blueberry hemp organic super food energy bites.", "attributes": ["nut free", "gluten free", "non gmo", "plant based", "protein serving", "soy free", "certified organic", "dairy free"], "options": ["flavor name: blueberry hemp", "size: pack of 3"], "instruction_attributes": ["certified organic"], "instruction_options": ["blueberry hemp"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBQ6EJ4", "worker_id": "A2RBF3IIJP15IH"}], "B07DGXG639": [{"asin": "B07DGXG639", "instruction": "i would like a brushed nickel wall lamp with a glass shade for the living room.", "attributes": ["clear glass", "glass shade", "bronze finish", "living room"], "options": ["color: brushed nickel"], "instruction_attributes": ["glass shade", "living room"], "instruction_options": ["brushed nickel"], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVDFIB5", "worker_id": "A1WS884SI0SLO4"}], "B00EEH75YE": [{"asin": "B00EEH75YE", "instruction": "i want a hair treatment and an anti-aging skin moisturizer oil.", "attributes": ["anti aging", "hair treatment"], "options": [""], "instruction_attributes": ["anti aging", "hair treatment"], "instruction_options": [], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TR0PM1", "worker_id": "A1NF6PELRKACS9"}], "B08F1VHBGL": [{"asin": "B08F1VHBGL", "instruction": "i am looking for decorative cupcake toppers which can be ideal for birthday party or baby shower.", "attributes": ["birthday party", "party supplies", "baby shower"], "options": [""], "instruction_attributes": ["birthday party", "baby shower"], "instruction_options": [], "assignment_id": "3WI0P0II6C2G4S2Y5P4KF4UMLU9DRA", "worker_id": "ASWFLI3N8X72G"}], "B09FDMTVRV": [{"asin": "B09FDMTVRV", "instruction": "i want buy a birthday party cupcake picks plant party supply cupcake topper", "attributes": ["birthday party", "party supplies", "baby shower", "cupcake picks"], "options": [""], "instruction_attributes": ["birthday party", "party supplies", "cupcake picks"], "instruction_options": [], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733LXBEG", "worker_id": "A3N9ZYQAESNFQH"}], "B07WHJ8ZLX": [{"asin": "B07WHJ8ZLX", "instruction": "i want gray high speed philips usb type c cables.", "attributes": ["long lasting", "fast charging", "high speed"], "options": ["color: gray", "size: 6 in. | 3 ft. | 6 ft.", "style: 1 pack"], "instruction_attributes": ["high speed"], "instruction_options": ["gray"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB0FY5E", "worker_id": "A2RBF3IIJP15IH"}], "B004IN8ZJ8": [{"asin": "B004IN8ZJ8", "instruction": "i need a pack of three long lasting hair color that is dark mahogany brown", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 4m dark mahogany brown", "size: pack of 3"], "instruction_attributes": ["long lasting"], "instruction_options": ["4m dark mahogany brown", "pack of 3"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS0EUVR", "worker_id": "A2ECRNQ3X5LEXD"}], "B078YC6YQX": [{"asin": "B078YC6YQX", "instruction": "i need a pack of 5 heavy duty hdmi cables that will support a high speed connection.", "attributes": ["high speed", "heavy duty"], "options": ["color: 5 pack", "size: 3 ft"], "instruction_attributes": ["high speed", "heavy duty"], "instruction_options": ["5 pack"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIIHEFR", "worker_id": "A3LIIE572Z4OG7"}], "B07T2GXY84": [{"asin": "B07T2GXY84", "instruction": "i am looking to buy a woman's us size 5 high heel shoe with a rubber sole and color patent-beige.", "attributes": ["high heel", "rubber sole"], "options": ["color: patent-beige", "size: us5"], "instruction_attributes": ["high heel", "rubber sole"], "instruction_options": ["patent-beige", "us5"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQVF4BD", "worker_id": "A114NK7T5673GK"}], "B09QSRKFRZ": [{"asin": "B09QSRKFRZ", "instruction": "can you find for me this brand kelly bro? i'm looking for womens peep toe model, and my size is 8,5. high heel is my favorite.", "attributes": ["fashion design", "high heel", "long sleeve", "daily wear"], "options": ["color: black", "size: 8.5"], "instruction_attributes": ["high heel"], "instruction_options": ["8.5"], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8UWZP4", "worker_id": "A15IJ20C3R4HUO"}], "B00C2DY3HE": [{"asin": "B00C2DY3HE", "instruction": "get me the 2 ounce 24 pack fig bars. it should be non gmo and plant based.", "attributes": ["non gmo", "nut free", "soy free", "plant based", "dairy free", "0g trans", "high fructose"], "options": ["flavor name: assorted types", "size: 2 ounce (pack of 24)"], "instruction_attributes": ["non gmo", "plant based"], "instruction_options": ["2 ounce (pack of 24)"], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQRYIH1", "worker_id": "A1NF6PELRKACS9"}], "B088LVV2LZ": [{"asin": "B088LVV2LZ", "instruction": "i need the best items for oral hygiene.", "attributes": ["easy use", "high quality", "oral hygiene"], "options": [""], "instruction_attributes": ["oral hygiene"], "instruction_options": [], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOX97OR", "worker_id": "A2ECRNQ3X5LEXD"}], "B01EAH9UAY": [{"asin": "B01EAH9UAY", "instruction": "i need a heavy duty extra large twin box spring that's fully assembled and ready to use.", "attributes": ["heavy duty", "ready use", "fully assembled", "box spring"], "options": ["size: twin xl", "style name: 8\" split foundation"], "instruction_attributes": ["heavy duty", "ready use", "fully assembled", "box spring"], "instruction_options": ["twin xl"], "assignment_id": "3AMW0RGHOOC4ERDWHREY6E61YHEPN5", "worker_id": "AR9AU5FY1S3RO"}], "B07CVQVD7T": [{"asin": "B07CVQVD7T", "instruction": "i am looking for some alcohol free skin care.", "attributes": ["certified organic", "alcohol free", "non toxic", "fine lines"], "options": [""], "instruction_attributes": ["alcohol free"], "instruction_options": [], "assignment_id": "3NL0RFNU0QXHHS6AMUUUBOE2DPQ4KZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q82T9S9": [{"asin": "B09Q82T9S9", "instruction": "i am interested in a rotary shaver for hair removal.", "attributes": ["easy clean", "hair removal"], "options": [""], "instruction_attributes": ["hair removal"], "instruction_options": [], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYGYL61", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BZ8LVWJ": [{"asin": "B08BZ8LVWJ", "instruction": "i am looking for a heavy duty spotting scope for bird watching.", "attributes": ["heavy duty", "bird watching"], "options": [""], "instruction_attributes": ["heavy duty", "bird watching"], "instruction_options": [], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S0OMG5", "worker_id": "A2HMEGTAFO0CS8"}], "B07W1JRKL3": [{"asin": "B07W1JRKL3", "instruction": "i would like a long dark red dental chain that is easy to apply.", "attributes": ["easy apply", "high quality"], "options": ["color: 8(dark red)", "size: long"], "instruction_attributes": ["easy apply"], "instruction_options": ["8(dark red)", "long"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HCVI6B", "worker_id": "A1WS884SI0SLO4"}], "B08P3CZMCN": [{"asin": "B08P3CZMCN", "instruction": "i would like a medium sized pair of baseball colored jeans with a elastic waist.", "attributes": ["quality polyester", "unique design", "elastic waist"], "options": ["color: baseball", "size: medium"], "instruction_attributes": ["elastic waist"], "instruction_options": ["baseball", "medium"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL4BH57", "worker_id": "A1WS884SI0SLO4"}], "B08SBG5Q4N": [{"asin": "B08SBG5Q4N", "instruction": "i am looking for a plant based clear lip balm", "attributes": ["plant based", "animal testing", "paraben free", "cruelty free", "green tea", "seed oil", "argan oil"], "options": ["color: 01 agave (clear)"], "instruction_attributes": ["plant based"], "instruction_options": ["01 agave (clear)"], "assignment_id": "354P56DE9VDCOY11T1135MPMLLJ7ST", "worker_id": "A2ECRNQ3X5LEXD"}], "B09713RP1G": [{"asin": "B09713RP1G", "instruction": "i need a remote control that has the batteries included.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BK1JV5", "worker_id": "A2ECRNQ3X5LEXD"}], "B07SQ9YT1T": [{"asin": "B07SQ9YT1T", "instruction": "i want to find a small purple bike tank top for men that has a classic fit.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: purple", "fit type: men", "size: small"], "instruction_attributes": ["classic fit"], "instruction_options": ["purple", "men", "small"], "assignment_id": "3QILPRALQG5J8ZEFVACNKSBB97J8N9", "worker_id": "A345TDMHP3DQ3G"}], "B0915FJ2VH": [{"asin": "B0915FJ2VH", "instruction": "i want emerald mid century modway bar stools.", "attributes": ["mid century", "white item", "coated steel", "steel frame", "dining room"], "options": ["color: emerald", "size: bar stool"], "instruction_attributes": ["mid century"], "instruction_options": ["emerald"], "assignment_id": "3EO896NRA756NTFIJAVQIHQHEZQJTU", "worker_id": "A2RBF3IIJP15IH"}], "B08FX133HB": [{"asin": "B08FX133HB", "instruction": "i want gray high waisted aleumdr womens yoga outfits.", "attributes": ["nylon spandex", "high waist"], "options": ["color: gray", "size: small"], "instruction_attributes": ["high waist"], "instruction_options": ["gray"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017054PB", "worker_id": "A2RBF3IIJP15IH"}], "B007UZ3VWM": [{"asin": "B007UZ3VWM", "instruction": "i need oil free 1 linen makeup foundation for women", "attributes": ["dermatologist tested", "oil free"], "options": ["color: 1 linen"], "instruction_attributes": ["oil free"], "instruction_options": ["1 linen"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YP0T8Q", "worker_id": "A258PTOZ3D2TQR"}], "B08VDXCNGK": [{"asin": "B08VDXCNGK", "instruction": "i need a loveseat that is grey and for the living room.", "attributes": ["mid century", "solid wood", "living room"], "options": ["color: grey", "size: 65\"w loveseat"], "instruction_attributes": ["living room"], "instruction_options": ["grey", "65\"w loveseat"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2C0IOB", "worker_id": "A2ECRNQ3X5LEXD"}], "B08NZV8CCL": [{"asin": "B08NZV8CCL", "instruction": "i need a variety sampler of gluten free quinoa crisps.", "attributes": ["gluten free", "nut free", "non gmo"], "options": ["flavor name: variety sampler"], "instruction_attributes": ["gluten free"], "instruction_options": ["variety sampler"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVEPSZZ", "worker_id": "A2RBF3IIJP15IH"}], "B013S9Z6LW": [{"asin": "B013S9Z6LW", "instruction": "i am looking for a gluten free white grape raspberry flavored drink.", "attributes": ["non gmo", "gluten free", "source vitamin", "artificial colors"], "options": ["flavor name: white grape raspberry", "size: 8.4 fl oz (pack of 24)"], "instruction_attributes": ["gluten free"], "instruction_options": ["white grape raspberry"], "assignment_id": "3LBXNTKX025OYYBT285AIQXKVRVX9R", "worker_id": "A1EREKSZAA9V7B"}], "B09QKSHLWD": [{"asin": "B09QKSHLWD", "instruction": "i need a 6 piece hair growth treatment.", "attributes": ["hair loss", "hair growth"], "options": ["size: 6pcs"], "instruction_attributes": ["hair growth"], "instruction_options": ["6pcs"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS0L9GV", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q84JC6K": [{"asin": "B09Q84JC6K", "instruction": "i want a white machine washable mardi gras festival costume.", "attributes": ["wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: white", "fit type: women", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["white"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0SR5WY", "worker_id": "A2RBF3IIJP15IH"}], "B08D736V7N": [{"asin": "B08D736V7N", "instruction": "i need a set of two barstools. get the thirty inch black ones with the metal legs.", "attributes": ["pu leather", "metal legs"], "options": ["color: black", "size: 30 inch"], "instruction_attributes": ["metal legs"], "instruction_options": ["black", "30 inch"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTK15V2", "worker_id": "AR9AU5FY1S3RO"}], "B08NWFFNQ6": [{"asin": "B08NWFFNQ6", "instruction": "i need some pore cleansing strips that are made with hyaluronic acid.", "attributes": ["easy use", "hyaluronic acid"], "options": [""], "instruction_attributes": ["hyaluronic acid"], "instruction_options": [], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JAESFW", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q2JFL7M": [{"asin": "B09Q2JFL7M", "instruction": "i am interested in a meal kit from trader joes.", "attributes": ["trader joe", "gluten free"], "options": [""], "instruction_attributes": ["trader joe"], "instruction_options": [], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CBYV0D", "worker_id": "A2ECRNQ3X5LEXD"}], "B006X7U6KI": [{"asin": "B006X7U6KI", "instruction": "i am looking for a high definition 100 watt in wall volume control knob.", "attributes": ["high power", "high definition"], "options": ["color: brown", "size: 100w", "style: knob"], "instruction_attributes": ["high definition"], "instruction_options": ["100w", "knob"], "assignment_id": "3FPRZHYEP9HAF7HILK3I3SXDFOB3VB", "worker_id": "A1EREKSZAA9V7B"}], "B09C3B1FHC": [{"asin": "B09C3B1FHC", "instruction": "i am looking for an extra large wolf fleece throw blanket that is machine washable.", "attributes": ["machine washable", "fleece throw", "living room"], "options": ["color: t-rex", "size: xl: 130x150cm"], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["xl"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YWO3Q9", "worker_id": "A1EREKSZAA9V7B"}], "B08LSRNMHH": [{"asin": "B08LSRNMHH", "instruction": "i want a blue non slip saftstar modern upholstered armchair.", "attributes": ["non slip", "mid century", "high density", "solid wood", "living room"], "options": ["color: blue", "item package quantity: 2"], "instruction_attributes": ["non slip"], "instruction_options": ["blue"], "assignment_id": "34S6N1K2Z6TMDACNM1QEKD0L7UDLH1", "worker_id": "A2RBF3IIJP15IH"}], "B07CLB2VKR": [{"asin": "B07CLB2VKR", "instruction": "i want rose c'est moi visionary makeup crayon for sensitive skin.", "attributes": ["animal testing", "dermatologist tested", "fragrance free", "non toxic", "sensitive skin"], "options": ["color: rose"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["rose"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS01VUF", "worker_id": "A2RBF3IIJP15IH"}], "B07RXWX77H": [{"asin": "B07RXWX77H", "instruction": "i am looking for a keto friendly vegetables with low carb also rich source of vitamins.", "attributes": ["keto friendly", "low carb", "source vitamin", "dietary fiber", "artificial colors"], "options": [""], "instruction_attributes": ["keto friendly", "low carb", "source vitamin"], "instruction_options": [], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OV9L8VO", "worker_id": "A2HMEGTAFO0CS8"}], "B085QKBX59": [{"asin": "B085QKBX59", "instruction": "i am looking to buy an x-large short sleeve t shirt that is machine washable and a good workout shirt.", "attributes": ["wash cold", "machine wash", "button closure", "short sleeve", "dry clean", "tumble dry"], "options": ["color: black | heather charcoal", "size: x-large"], "instruction_attributes": ["machine wash", "short sleeve"], "instruction_options": ["black | heather charcoal", "x-large"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY45U03", "worker_id": "A114NK7T5673GK"}], "B08F9TG7FC": [{"asin": "B08F9TG7FC", "instruction": "i am looking for synthetic hair extensions, 14\" long, with wavy ends and made for black women.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: 1b", "size: 14 inch (pack of 5)"], "instruction_attributes": ["synthetic hair", "hair extensions"], "instruction_options": ["14 inch (pack of 5)"], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7U6UR3", "worker_id": "AK3JMCIGU8MLU"}], "B09CLC6Q63": [{"asin": "B09CLC6Q63", "instruction": "i would like a purple high quality beauty case.", "attributes": ["high quality", "fine mist"], "options": ["color: purple"], "instruction_attributes": ["high quality"], "instruction_options": ["purple"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTDEN9Q", "worker_id": "A1WS884SI0SLO4"}], "B003HALJXC": [{"asin": "B003HALJXC", "instruction": "i am looking for english scone mix with real fruit.", "attributes": ["real fruit", "artificial flavors"], "options": [""], "instruction_attributes": ["real fruit"], "instruction_options": [], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUIDR3L", "worker_id": "A1EREKSZAA9V7B"}], "B008CT12G2": [{"asin": "B008CT12G2", "instruction": "i am interested in some paraben free eye creams.", "attributes": ["anti aging", "oil free", "fragrance free", "paraben free", "hyaluronic acid"], "options": [""], "instruction_attributes": ["paraben free"], "instruction_options": [], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGA0SMB", "worker_id": "A2ECRNQ3X5LEXD"}], "B004SPDEWE": [{"asin": "B004SPDEWE", "instruction": "i am looking for an oil free broad spectrum spf 15 sunscreen foundation for sensitive skin.", "attributes": ["oil free", "dermatologist tested", "fragrance free", "fine lines", "sensitive skin"], "options": [""], "instruction_attributes": ["oil free", "sensitive skin"], "instruction_options": [], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY866081N", "worker_id": "A1EREKSZAA9V7B"}], "B000177FXW": [{"asin": "B000177FXW", "instruction": "i want an eucalyptus and plant based bar soap by dr. bronner's.", "attributes": ["certified organic", "plant based", "cruelty free", "tea tree", "dry skin"], "options": ["scent: eucalyptus"], "instruction_attributes": ["plant based"], "instruction_options": ["eucalyptus"], "assignment_id": "338JKRMM2H95HRLJPA1OBZKADI1HA2", "worker_id": "A2RBF3IIJP15IH"}], "B096ZBXV7R": [{"asin": "B096ZBXV7R", "instruction": "i would like a shampoo and conditioner set made of coconut oil.", "attributes": ["cruelty free", "paraben free", "coconut oil", "natural ingredients"], "options": [""], "instruction_attributes": ["coconut oil"], "instruction_options": [], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ8E0NJ", "worker_id": "A1WS884SI0SLO4"}], "B093SXYYJC": [{"asin": "B093SXYYJC", "instruction": "get me a set of two mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE215GQ6", "worker_id": "AR9AU5FY1S3RO"}], "B07MWJ9NN3": [{"asin": "B07MWJ9NN3", "instruction": "i want a nourishing hair treatment that is sulfate free.", "attributes": ["sulfate free", "hair treatment"], "options": [""], "instruction_attributes": ["sulfate free", "hair treatment"], "instruction_options": [], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R5RKSK", "worker_id": "A114NK7T5673GK"}], "B08FBMGK6V": [{"asin": "B08FBMGK6V", "instruction": "i need a 5\" round cake topper for a birthday party", "attributes": ["dairy free", "gluten free", "birthday party"], "options": ["size: 5\" round"], "instruction_attributes": ["birthday party"], "instruction_options": ["5\" round"], "assignment_id": "3F6HPJW4JOAY9EL47UU96KBZGIVW2J", "worker_id": "A2ECRNQ3X5LEXD"}], "B088Y453DR": [{"asin": "B088Y453DR", "instruction": "i would like a black shimmer kosher certified icing glitter.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: black shimmer"], "instruction_attributes": ["kosher certified"], "instruction_options": ["black shimmer"], "assignment_id": "3CN4LGXD58YC1XVRQ9VLKWTDB554Y2", "worker_id": "A1WS884SI0SLO4"}], "B09DDC6DN6": [{"asin": "B09DDC6DN6", "instruction": "i am in need of a high definition media player", "attributes": ["high definition", "dual band"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZL2Y1Q", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q96DVV4": [{"asin": "B09Q96DVV4", "instruction": "i would like a pair of medium sized navy high waisted leggings.", "attributes": ["butt lifting", "tummy control", "high waist"], "options": ["color: navy", "size: medium"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L49HQRB", "worker_id": "A1WS884SI0SLO4"}], "B07XD925X1": [{"asin": "B07XD925X1", "instruction": "i would like a africa 80 by 40 poster to hang readily in my living room.", "attributes": ["ready hang", "living room"], "options": ["color: africa #07", "size: 80\"wx40\"h handart"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["africa #07", "80\"wx40\"h handart"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSH8B8O", "worker_id": "A1WS884SI0SLO4"}], "B09C55SWDM": [{"asin": "B09C55SWDM", "instruction": "i want an elixir to promote hair growth and prevent hair loss. it should also be plant based.", "attributes": ["plant based", "bpa free", "hair loss", "hair growth"], "options": [""], "instruction_attributes": ["plant based", "hair loss", "hair growth"], "instruction_options": [], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMONE9MM", "worker_id": "A1NF6PELRKACS9"}], "B07TYFFWH1": [{"asin": "B07TYFFWH1", "instruction": "i want a honey brown simplihome artisan solid wood tv stand.", "attributes": ["solid wood", "tempered glass", "living room", "dining room"], "options": ["color: honey brown"], "instruction_attributes": ["solid wood"], "instruction_options": ["honey brown"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LHMI5X", "worker_id": "A2RBF3IIJP15IH"}], "B07QXK35PD": [{"asin": "B07QXK35PD", "instruction": "i would like some cake toppers for a birthday party.", "attributes": ["party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLI76KI9", "worker_id": "A1WS884SI0SLO4"}], "B0174OIT6G": [{"asin": "B0174OIT6G", "instruction": "i want a round safavieh sofia collection rug for my living room.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: light grey | blue", "item shape: round", "size: 4 ft x 5 ft 7 in"], "instruction_attributes": ["living room"], "instruction_options": ["round"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOG8ML7", "worker_id": "A2RBF3IIJP15IH"}], "B09JVKR8X9": [{"asin": "B09JVKR8X9", "instruction": "i want to find a small green women's workout set that i can wear daily.", "attributes": ["moisture wicking", "nylon spandex", "stretch fabric", "long sleeve", "tummy control", "high waist", "daily wear"], "options": ["color: green", "size: small"], "instruction_attributes": ["daily wear"], "instruction_options": ["green", "small"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163S5PQW", "worker_id": "A345TDMHP3DQ3G"}], "B09SJ1GTJR": [{"asin": "B09SJ1GTJR", "instruction": "i am looking for two piece suits that are green and quick drying in a size small", "attributes": ["quick drying", "wash cold", "hand wash", "machine wash", "long sleeve"], "options": ["color: 9438-green", "size: small"], "instruction_attributes": ["quick drying"], "instruction_options": ["9438-green", "small"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKIV1TD", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NKPTC7S": [{"asin": "B09NKPTC7S", "instruction": "i would like a yellow quad core tablet.", "attributes": ["long lasting", "quad core"], "options": ["color: yellow"], "instruction_attributes": ["quad core"], "instruction_options": ["yellow"], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2ZUG68", "worker_id": "A1WS884SI0SLO4"}], "B09D8B8WXP": [{"asin": "B09D8B8WXP", "instruction": "i am looking for a fanless mini pc with a quad core processor, 32 gigabytes of ram and a 256 gigabyte ssd.", "attributes": ["ultra hd", "quad core"], "options": ["size: 32gb ram 256gb ssd"], "instruction_attributes": ["quad core"], "instruction_options": ["32gb ram 256gb ssd"], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2WG94E", "worker_id": "A1EREKSZAA9V7B"}], "B07HZ6PY52": [{"asin": "B07HZ6PY52", "instruction": "i am looking for a wireless computer headset that has stereo sound.", "attributes": ["noise cancelling", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG19AU9S", "worker_id": "A1EREKSZAA9V7B"}], "B09CF4LML4": [{"asin": "B09CF4LML4", "instruction": "i need a silver cruelty free my little pony mini glitter gel set.", "attributes": ["cruelty free", "easy use"], "options": ["color: silver"], "instruction_attributes": ["cruelty free"], "instruction_options": ["silver"], "assignment_id": "31JLPPHS254FPN8LK8H48035JUNO31", "worker_id": "A2RBF3IIJP15IH"}], "B00O1ABRRK": [{"asin": "B00O1ABRRK", "instruction": "i need noise cancelling headset that has a charging stand.", "attributes": ["noise cancelling", "plug play"], "options": ["color: mono speaker + charging stand", "style: ms teams optimized"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["mono speaker + charging stand"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREMO2JW", "worker_id": "A2ECRNQ3X5LEXD"}], "B08B87XSLC": [{"asin": "B08B87XSLC", "instruction": "i want a caramel queen size acacia kaylin platform bed.", "attributes": ["lead free", "queen size", "memory foam"], "options": ["color: caramel", "size: king", "style: emery"], "instruction_attributes": ["queen size"], "instruction_options": ["caramel"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUBOZDL", "worker_id": "A2RBF3IIJP15IH"}], "B08Y99D272": [{"asin": "B08Y99D272", "instruction": "i am interested in some individually wrapped granola bars.", "attributes": ["individually wrapped", "high fructose"], "options": [""], "instruction_attributes": ["individually wrapped"], "instruction_options": [], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR469FU7", "worker_id": "A2ECRNQ3X5LEXD"}], "B095M8H1YD": [{"asin": "B095M8H1YD", "instruction": "i am looking for 20 inch high quality hair pieces.", "attributes": ["high quality", "hair loss"], "options": ["size: 20 inch"], "instruction_attributes": ["high quality"], "instruction_options": ["20 inch"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFDJ02O", "worker_id": "A2ECRNQ3X5LEXD"}], "B09KV74LY8": [{"asin": "B09KV74LY8", "instruction": "i would like a lemon living room curtain in the size 52 by 96 inches", "attributes": ["easy clean", "living room", "dining room"], "options": ["color: lemon2lop5557", "size: 52x96in"], "instruction_attributes": ["living room"], "instruction_options": ["lemon2lop5557", "52x96in"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFK2EM9", "worker_id": "A2ECRNQ3X5LEXD"}], "B08NGV4VX3": [{"asin": "B08NGV4VX3", "instruction": "i would like some eucalyptus lavender body scrub that is also eco friendly.", "attributes": ["cruelty free", "oil free", "fragrance free", "sulfate free", "eco friendly", "paraben free", "dead skin"], "options": ["scent: eucalyptus lavender"], "instruction_attributes": ["eco friendly"], "instruction_options": ["eucalyptus lavender"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOHQL9W", "worker_id": "A1WS884SI0SLO4"}], "B099NZVJH2": [{"asin": "B099NZVJH2", "instruction": "i want to buy some shelf stable baby food. look for a fifteen count box of blueberry banana sweet potato.", "attributes": ["gluten free", "non gmo", "bpa free", "shelf stable", "nut free", "dairy free"], "options": ["flavor name: blueberry banana sweet potato", "size: 15 count"], "instruction_attributes": ["shelf stable"], "instruction_options": ["blueberry banana sweet potato", "15 count"], "assignment_id": "3SB5N7Y3OEEVGISQD2MD1TWWPXD0GY", "worker_id": "AR9AU5FY1S3RO"}], "B078KF114Q": [{"asin": "B078KF114Q", "instruction": "i want a modway engage mid-century corner sofa.", "attributes": ["mid century", "contemporary style", "solid wood"], "options": ["color: sunny", "size: corner sofa"], "instruction_attributes": ["mid century"], "instruction_options": ["corner sofa"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9DVZR9", "worker_id": "A2RBF3IIJP15IH"}], "B09PMN9FVZ": [{"asin": "B09PMN9FVZ", "instruction": "i would like a small gray long sleeved hoof pick.", "attributes": ["loose fit", "winter warm", "fleece lined", "long sleeve", "everyday wear"], "options": ["color: z3-gray", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["z3-gray", "small"], "assignment_id": "36DSNE9QZG8QA1AANT9RO7KUFR2OJ6", "worker_id": "A1WS884SI0SLO4"}], "B09LQ4YHSV": [{"asin": "B09LQ4YHSV", "instruction": "i would like a heavy duty bed frame made of steel.", "attributes": ["heavy duty", "steel frame"], "options": [""], "instruction_attributes": ["heavy duty", "steel frame"], "instruction_options": [], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG5CLS4", "worker_id": "A1WS884SI0SLO4"}], "B097FF5WYB": [{"asin": "B097FF5WYB", "instruction": "i want a sugar free mix of earlybird morning cocktail.", "attributes": ["non alcoholic", "sugar free"], "options": [""], "instruction_attributes": ["sugar free"], "instruction_options": [], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30USFY04", "worker_id": "A2RBF3IIJP15IH"}], "B09L1J2MPN": [{"asin": "B09L1J2MPN", "instruction": "i need a small relaxed fit pullover that is the color green.", "attributes": ["quality materials", "relaxed fit"], "options": ["color: a-green", "size: small"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["a-green", "small"], "assignment_id": "3C5W7UE9CQ035IUNRH9FNC34VPKMXV", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NDTB7KD": [{"asin": "B07NDTB7KD", "instruction": "i want a brushed berry schwarzkopf metallic permanent hair dye.", "attributes": ["permanent hair", "hair dye"], "options": ["color: brushed berry", "size: 1 count (pack of 1)"], "instruction_attributes": ["hair dye"], "instruction_options": ["brushed berry"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTP5E5C", "worker_id": "A2RBF3IIJP15IH"}], "B07NV7D8VB": [{"asin": "B07NV7D8VB", "instruction": "i am interested in a 60 count of cruelty free toner.", "attributes": ["cruelty free", "easy use", "sensitive skin"], "options": ["size: 60 count (pack of 1)"], "instruction_attributes": ["cruelty free"], "instruction_options": ["60 count (pack of 1)"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG5HLS9", "worker_id": "A2ECRNQ3X5LEXD"}], "B09N6Q57XZ": [{"asin": "B09N6Q57XZ", "instruction": "i need 2 faux leather barstools that is easy to assemble and is back adjustable. pick a brown one.", "attributes": ["easy assemble", "faux leather"], "options": ["color: b style- brown", "size: 2 barstools"], "instruction_attributes": ["easy assemble", "faux leather"], "instruction_options": ["b style- brown", "2 barstools"], "assignment_id": "3SEPORI8WY9R8CLDVW7VB6OF99QAZV", "worker_id": "A1NF6PELRKACS9"}], "B078XR57G8": [{"asin": "B078XR57G8", "instruction": "i need to buy a tank top for working out. look for one that's tie dyed blue, in extra large. it should be machine washable.", "attributes": ["loose fit", "wash cold", "machine wash"], "options": ["color: tie dye blue", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["tie dye blue", "x-large"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3CQN6Z", "worker_id": "AR9AU5FY1S3RO"}], "B07234YXYJ": [{"asin": "B07234YXYJ", "instruction": "most of people use sugarfree like simple sweet", "attributes": ["sugar free", "plant based", "usda organic", "keto friendly", "non gmo", "low sugar", "low carb", "gluten free", "zero sugar"], "options": ["flavor name: simply sweet"], "instruction_attributes": ["sugar free"], "instruction_options": ["simply sweet"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIQE480", "worker_id": "A226L9F2AZ38CL"}], "B09H5VMW2Q": [{"asin": "B09H5VMW2Q", "instruction": "i want a white merax bunk bed box spring.", "attributes": ["solid wood", "box spring"], "options": ["color: white", "size: full over full w | 2 drawers"], "instruction_attributes": ["box spring"], "instruction_options": ["white"], "assignment_id": "3AMYWKA6YMWEM6V33AF2F3FPTLW6OW", "worker_id": "A2RBF3IIJP15IH"}], "B079CG8RX2": [{"asin": "B079CG8RX2", "instruction": "i would like 24 packs of 60ml eye shadow.", "attributes": ["high quality", "eye shadow"], "options": ["color: 2 oz | 60ml", "size: 1 ounce (pack of 24)"], "instruction_attributes": ["eye shadow"], "instruction_options": ["2 oz | 60ml", "1 ounce (pack of 24)"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3PKMZU", "worker_id": "A1WS884SI0SLO4"}], "B09SQ1RFYR": [{"asin": "B09SQ1RFYR", "instruction": "a dome camera for indoor motion detection indoor smart security camera 1080hd size -hd version +64g", "attributes": ["1080p hd", "motion detection"], "options": ["size: hd version+64g"], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": ["hd version+64g"], "assignment_id": "3IGI0VL64IUMTR1V2R1JHE1BOBPNOR", "worker_id": "A3N9ZYQAESNFQH"}], "B0155KFTHS": [{"asin": "B0155KFTHS", "instruction": "i am looking for a tea sampler that comes in a pack of 8 and is kosher.", "attributes": ["kosher certified", "gift set"], "options": ["flavor name: standard sampler (8 count)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["standard sampler (8 count)"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IOSTL3", "worker_id": "A2ECRNQ3X5LEXD"}], "B097YKK3K1": [{"asin": "B097YKK3K1", "instruction": "i want a full sized non slip tatami mattress.", "attributes": ["non slip", "memory foam", "living room"], "options": ["color: shape", "size: full(47*79inch)"], "instruction_attributes": ["non slip"], "instruction_options": ["full(47*79inch)"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOCWTAO", "worker_id": "A2RBF3IIJP15IH"}], "B07QWVTV87": [{"asin": "B07QWVTV87", "instruction": "i am looking for toenail clippers that are black and stainless steel", "attributes": ["non slip", "heavy duty", "long handle", "stainless steel"], "options": ["color: podiatrist toenail clippers\uff08black\uff09"], "instruction_attributes": ["stainless steel"], "instruction_options": ["podiatrist toenail clippers\uff08black\uff09"], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1KHTI8", "worker_id": "A2ECRNQ3X5LEXD"}], "B08DDHVY7T": [{"asin": "B08DDHVY7T", "instruction": "i need an eye serum that contains hyaluronic acid and that's good for dark circles. get the green one.", "attributes": ["hyaluronic acid", "dark circles"], "options": ["color: green"], "instruction_attributes": ["hyaluronic acid", "dark circles"], "instruction_options": ["green"], "assignment_id": "3W92K5RLW5RDTM4MZ3RBIPVXTKA5VB", "worker_id": "AR9AU5FY1S3RO"}], "B08VWQDPMY": [{"asin": "B08VWQDPMY", "instruction": "i would like three packs of two ounce teriyaki low calorie jerky.", "attributes": ["wild caught", "low sugar", "low calorie"], "options": ["flavor name: teriyaki", "size: 2 ounce (pack of 3)"], "instruction_attributes": ["low calorie"], "instruction_options": ["teriyaki", "2 ounce (pack of 3)"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG18EU9U", "worker_id": "A1WS884SI0SLO4"}], "B097R48QCX": [{"asin": "B097R48QCX", "instruction": "i would like a 3xl white pair of jogging pants that are machine washable.", "attributes": ["hand wash", "long lasting", "machine washable", "polyester cotton", "drawstring closure", "elastic waistband", "elastic waist", "gym workout"], "options": ["color: white", "size: 3x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["white", "3x-large"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKYGUIS", "worker_id": "A1WS884SI0SLO4"}], "B099PMTNR2": [{"asin": "B099PMTNR2", "instruction": "i need a lipstick that is easy to apply and long lasting in the color #1", "attributes": ["long lasting", "highly pigmented", "easy apply"], "options": ["color: # 1"], "instruction_attributes": ["long lasting", "easy apply"], "instruction_options": ["# 1"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLT8TF2", "worker_id": "A2ECRNQ3X5LEXD"}], "B00KQDCYE6": [{"asin": "B00KQDCYE6", "instruction": "i want a smakn high speed hdmi cable.", "attributes": ["gold plated", "high speed"], "options": [""], "instruction_attributes": ["high speed"], "instruction_options": [], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RF0LF3", "worker_id": "A2RBF3IIJP15IH"}], "B0977VPCF3": [{"asin": "B0977VPCF3", "instruction": "i am looking for an ultra thin gold plated mini c hdmi cable", "attributes": ["easy carry", "high speed", "gold plated"], "options": ["size: angle_2ft", "style: mini c hdmi"], "instruction_attributes": ["gold plated"], "instruction_options": ["mini c hdmi"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3D3QN0", "worker_id": "A1EREKSZAA9V7B"}], "B08B889NGC": [{"asin": "B08B889NGC", "instruction": "i want a king sized and lead free acacia aurora bed frame.", "attributes": ["lead free", "memory foam"], "options": ["color: chocolate", "size: king", "style: mervyn"], "instruction_attributes": ["lead free"], "instruction_options": ["king"], "assignment_id": "3LS2AMNW5Q07WOENIJT0L8WGTNYQO5", "worker_id": "A2RBF3IIJP15IH"}], "B09RK86QCM": [{"asin": "B09RK86QCM", "instruction": "i would like a small yellow pair of shorts that can be machine washed.", "attributes": ["slim fit", "low rise", "machine washable", "hand wash", "short sleeve", "elastic waistband"], "options": ["color: yellow", "size: small"], "instruction_attributes": ["machine washable"], "instruction_options": ["yellow", "small"], "assignment_id": "3RWE2M8QWSK1QA9C06Z8RD5TQ8UN0M", "worker_id": "A1WS884SI0SLO4"}], "B09SCTKV42": [{"asin": "B09SCTKV42", "instruction": "i would like a size 7.5 wide pair of white flats with a closed toe.", "attributes": ["open toe", "high heel", "closed toe", "ankle strap"], "options": ["color: a8 - white", "size: 7.5 wide"], "instruction_attributes": ["closed toe"], "instruction_options": ["a8 - white", "7.5 wide"], "assignment_id": "3YZ8UPK3V4WYFSO19N4E09ZO7TYUCS", "worker_id": "A1WS884SI0SLO4"}], "B01D378GCU": [{"asin": "B01D378GCU", "instruction": "i want to find a fully assembled ottoman that is doe-colored.", "attributes": ["button tufted", "fully assembled"], "options": ["color: doe"], "instruction_attributes": ["fully assembled"], "instruction_options": ["doe"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39CCZCN", "worker_id": "A345TDMHP3DQ3G"}], "B07B3XSZS9": [{"asin": "B07B3XSZS9", "instruction": "i would like a red video game chair with lumbar support.", "attributes": ["high density", "lumbar support"], "options": ["color: red"], "instruction_attributes": ["lumbar support"], "instruction_options": ["red"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCNF9B0", "worker_id": "A1WS884SI0SLO4"}], "B09D347T6V": [{"asin": "B09D347T6V", "instruction": "i am looking for statues or figurines to decorate my living room.", "attributes": ["exquisite workmanship", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNEHLXID", "worker_id": "A1EREKSZAA9V7B"}], "B09MCZPD93": [{"asin": "B09MCZPD93", "instruction": "i want a heavy duty protection case for my phone. pick something in black warrior color.", "attributes": ["easy install", "non slip", "heavy duty"], "options": ["color: black warrior"], "instruction_attributes": ["heavy duty"], "instruction_options": ["black warrior"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUARR96", "worker_id": "A1NF6PELRKACS9"}], "B09PQK7D4F": [{"asin": "B09PQK7D4F", "instruction": "i want to shop for a pair of high definition binoculars for bird watching. get type \"e.\"", "attributes": ["high definition", "bird watching"], "options": ["color: type e"], "instruction_attributes": ["high definition", "bird watching"], "instruction_options": ["type e"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYHI6L8", "worker_id": "AR9AU5FY1S3RO"}], "B096YZQ89Y": [{"asin": "B096YZQ89Y", "instruction": "shop for a pair of black walking shoes in size eight. look for memory foam soles.", "attributes": ["slip resistant", "anti slip", "non slip", "memory foam", "comfortable fit"], "options": ["color: black", "size: 8"], "instruction_attributes": ["memory foam"], "instruction_options": ["black", "8"], "assignment_id": "3VA45EW49YXJFKU6X43LK7O8LB6O18", "worker_id": "AR9AU5FY1S3RO"}], "B07CF7GTMW": [{"asin": "B07CF7GTMW", "instruction": "i am looking for a small short sleeve slim fitted t-shirt.", "attributes": ["regular fit", "relaxed fit", "short sleeve"], "options": ["color: grey-long sleeve", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["small"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3YX15JO", "worker_id": "A1EREKSZAA9V7B"}], "B01FWM4A2O": [{"asin": "B01FWM4A2O", "instruction": "i would ike a cd player that comes with aaa batteries and is in the model pm6006", "attributes": ["aaa batteries", "usb port"], "options": ["model: pm6006", "style: streaming passion dt"], "instruction_attributes": ["aaa batteries"], "instruction_options": ["pm6006"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWAMNFT", "worker_id": "A2ECRNQ3X5LEXD"}], "B09B6J7HXM": [{"asin": "B09B6J7HXM", "instruction": "i need a 16:10 aspect ratio privacy filter that is easy to install.", "attributes": ["easy install", "easy use"], "options": ["color: 19.0 inch (diagonal) - 16:10 aspect ratio"], "instruction_attributes": ["easy install"], "instruction_options": ["19.0 inch (diagonal) - 16:10 aspect ratio"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYH3L68", "worker_id": "A2ECRNQ3X5LEXD"}], "B07YNT58BC": [{"asin": "B07YNT58BC", "instruction": "i need an eco friendly biodegradable body glitter, also copper holographic one and ultrafine (1 | 128\" 0.008\" 0.2mm)", "attributes": ["eco friendly", "non toxic", "long lasting"], "options": ["color: copper holographic", "size: ultrafine (1 | 128\" 0.008\" 0.2mm)"], "instruction_attributes": ["eco friendly"], "instruction_options": ["copper holographic", "ultrafine (1 | 128\" 0.008\" 0.2mm)"], "assignment_id": "37Z929RLGKIZMWY86444AIH4AJBTSU", "worker_id": "A258PTOZ3D2TQR"}], "B0764JPHNS": [{"asin": "B0764JPHNS", "instruction": "i want to buy some vanilla flavored soy free cake mix. needs to be in a 3 pack of 11.29-oz boxes.", "attributes": ["non gmo", "nut free", "soy free", "dairy free", "gluten free", "artificial colors"], "options": ["flavor: vanilla", "size: 11.29 ounce (pack of 3)"], "instruction_attributes": ["soy free"], "instruction_options": ["vanilla", "11.29 ounce (pack of 3)"], "assignment_id": "31EUONYN26DZ1WA44INARVVOAFCVO3", "worker_id": "A2YNPKYEFDZ6C9"}], "B000OAY2N2": [{"asin": "B000OAY2N2", "instruction": "i would like a pair of 30 wide by 32 long quartz stone jeans that are machine washable.", "attributes": ["machine wash", "regular fit", "button closure"], "options": ["color: quartz stone", "size: 30w x 32l"], "instruction_attributes": ["machine wash"], "instruction_options": ["quartz stone", "30w x 32l"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZGRO85", "worker_id": "A1WS884SI0SLO4"}], "B09NLPN2FP": [{"asin": "B09NLPN2FP", "instruction": "i need some daily casual sandals that are black and a size 10.5", "attributes": ["daily casual", "open toe", "arch support", "rubber sole"], "options": ["color: black", "size: 10.5"], "instruction_attributes": ["daily casual"], "instruction_options": ["black", "10.5"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UDRA3W", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QVWXBBB": [{"asin": "B08QVWXBBB", "instruction": "i want blue aerothotic water friendly light weight eva sandals with arch support.", "attributes": ["light weight", "ethylene vinyl", "vinyl acetate", "arch support", "relaxed fit"], "options": ["color: arcus blue", "size: 9"], "instruction_attributes": ["arch support"], "instruction_options": ["arcus blue"], "assignment_id": "3H7XDTSHKN1OO8TB69FY8O50Q2OGWC", "worker_id": "A2RBF3IIJP15IH"}], "B07TKJ74X6": [{"asin": "B07TKJ74X6", "instruction": "i am looking for a samsung galaxy case cover that is gray.", "attributes": ["case cover", "glass screen", "tempered glass"], "options": ["color: gray"], "instruction_attributes": ["case cover"], "instruction_options": ["gray"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6STXUDF", "worker_id": "A2ECRNQ3X5LEXD"}], "B00GFA8RN6": [{"asin": "B00GFA8RN6", "instruction": "i want a dove men anti-perspirant deodorant roll-on.", "attributes": ["anti perspirant", "clinically proven"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323D9BDW0", "worker_id": "A2RBF3IIJP15IH"}], "B0846G2YX1": [{"asin": "B0846G2YX1", "instruction": "i would like a 36 ounce chair tea", "attributes": ["rich creamy", "usda organic", "kosher certified", "non gmo", "gluten free"], "options": ["size: 1kg | 36 ounce"], "instruction_attributes": ["kosher certified"], "instruction_options": ["1kg | 36 ounce"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTLHLP0", "worker_id": "A2ECRNQ3X5LEXD"}], "B084VJTJ7J": [{"asin": "B084VJTJ7J", "instruction": "i need one pack of real fruit which dried and is high in dietary fiber.", "attributes": ["dietary fiber", "real fruit"], "options": ["size: pack of 1"], "instruction_attributes": ["dietary fiber", "real fruit"], "instruction_options": ["pack of 1"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL992V2H", "worker_id": "ASWFLI3N8X72G"}], "B071SGP6Y6": [{"asin": "B071SGP6Y6", "instruction": "i search no ram no ssd no wifi but high performance memory", "attributes": ["high performance", "quad core"], "options": ["size: no ram no ssd no wifi"], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3OHYZ19UGNFF9876TNWEV8HBP5EOAY", "worker_id": "A226L9F2AZ38CL"}, {"asin": "B071SGP6Y6", "instruction": "i'm looking for exactly this configuration: qotom 4 lan mini pc q190g4u-s01 with 4gb ram 128gb ssd, intel celeron j1900 processor, quad core 2.0 ghz, x86 mini pc", "attributes": ["high performance", "quad core"], "options": ["size: 4gb ram 128gb ssd wifi"], "instruction_attributes": ["quad core"], "instruction_options": ["4gb ram 128gb ssd wifi"], "assignment_id": "3COPXFW7XMM36LSTKEMIEMPX4MBPK2", "worker_id": "A15IJ20C3R4HUO"}], "B09R93K3N4": [{"asin": "B09R93K3N4", "instruction": "i want a navy slim fit mens golf polo shirt.", "attributes": ["slim fit", "loose fit", "moisture wicking", "long sleeve", "short sleeve", "gym workout"], "options": ["color: navy", "size: xx-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["navy"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z48IQC9", "worker_id": "A2RBF3IIJP15IH"}], "B08P9D3M89": [{"asin": "B08P9D3M89", "instruction": "i need some black curtains for my living room.", "attributes": ["eco friendly", "printing technology", "living room"], "options": ["color: black", "size: 52(w) x 84(h)"], "instruction_attributes": ["living room"], "instruction_options": ["black"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK0B3JV", "worker_id": "A15ERD4HOFEPHM"}], "B09B3W2S7T": [{"asin": "B09B3W2S7T", "instruction": "i need a 0.5 ml serum for my dry skin.", "attributes": ["easy use", "high quality", "hyaluronic acid", "dry skin"], "options": ["color: 0.5ml"], "instruction_attributes": ["dry skin"], "instruction_options": ["0.5ml"], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LFXSPT", "worker_id": "A2ECRNQ3X5LEXD"}], "B091GLL9YH": [{"asin": "B091GLL9YH", "instruction": "i want a silver hair styling bobby pin.", "attributes": ["high quality", "hair styling"], "options": ["color: silver", "size: 2 3 | 8 inch (6cm)"], "instruction_attributes": ["hair styling"], "instruction_options": ["silver"], "assignment_id": "3TVSS0C0ECASTDFHQ9E577KPGW9WTE", "worker_id": "A2RBF3IIJP15IH"}], "B08PY1V83Y": [{"asin": "B08PY1V83Y", "instruction": "i am looking for space saving collapsible and waterproof storage bins.", "attributes": ["space saving", "pu leather"], "options": [""], "instruction_attributes": ["space saving"], "instruction_options": [], "assignment_id": "326O153BMT8RVOXTJJKKGXV366ZEDG", "worker_id": "A1EREKSZAA9V7B"}], "B089LQ8F6G": [{"asin": "B089LQ8F6G", "instruction": "i need a bamboo back scrubber set, with a long handle and twenty four hooks.", "attributes": ["non slip", "high quality", "long handle"], "options": ["color: 24 hooks"], "instruction_attributes": ["long handle"], "instruction_options": ["24 hooks"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHA81DOF", "worker_id": "AR9AU5FY1S3RO"}], "B07XWW83BP": [{"asin": "B07XWW83BP", "instruction": "i am interested in a long lasting lipstick that is also cruelty free.", "attributes": ["long lasting", "highly pigmented", "cruelty free"], "options": [""], "instruction_attributes": ["long lasting", "cruelty free"], "instruction_options": [], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMNC6BT", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JLKPMFD": [{"asin": "B09JLKPMFD", "instruction": "get a white airpods case. it should be water resistant.", "attributes": ["water resistant", "case cover"], "options": ["color: white-style"], "instruction_attributes": ["water resistant"], "instruction_options": ["white-style"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7XSQYB", "worker_id": "AR9AU5FY1S3RO"}], "B0085UXQP8": [{"asin": "B0085UXQP8", "instruction": "i want a frontier soups mix with natural ingredients.", "attributes": ["easy prepare", "natural ingredients"], "options": [""], "instruction_attributes": ["natural ingredients"], "instruction_options": [], "assignment_id": "3RU7GD8VPZ31U451PNVK58G7LFVSPR", "worker_id": "A2RBF3IIJP15IH"}], "B09R3S2LZG": [{"asin": "B09R3S2LZG", "instruction": "i am looking for a loose fit cami that is black and an x-large", "attributes": ["easy care", "moisture wicking", "loose fit", "wash cold", "hand wash", "daily wear"], "options": ["color: 4 black", "size: x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["4 black", "x-large"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68EFA4B", "worker_id": "A2ECRNQ3X5LEXD"}], "B005UN73ZW": [{"asin": "B005UN73ZW", "instruction": "i need to buy an eight ounce lavender scented soy candle.", "attributes": ["lead free", "soy wax"], "options": ["scent: lavender bw"], "instruction_attributes": ["soy wax"], "instruction_options": ["lavender bw"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUC9ZD8", "worker_id": "AR9AU5FY1S3RO"}], "B081TH6VJ4": [{"asin": "B081TH6VJ4", "instruction": "i need a 13 inch water resistant cosmetic bag.", "attributes": ["water resistant", "easy clean"], "options": ["color: horsetooth", "size: 13 inch"], "instruction_attributes": ["water resistant"], "instruction_options": ["13 inch"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP71COO", "worker_id": "A2ECRNQ3X5LEXD"}], "B09R1T216X": [{"asin": "B09R1T216X", "instruction": "i am looking for a c colored toothpaste with natural ingredients and which is also fluoride free.", "attributes": ["fluoride free", "teeth whitening", "natural ingredients", "fresh breath", "sensitive teeth", "bad breath"], "options": ["color: c"], "instruction_attributes": ["fluoride free", "natural ingredients"], "instruction_options": ["c"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLMH4I6", "worker_id": "AJDQGOTMB2D80"}], "B075CYJYG5": [{"asin": "B075CYJYG5", "instruction": "i am looking for vinyl,light weight and it can be folded & easy to carry;high resolution and quality & not easy fade;and can swab with water,easy to keep clean, digital photography of laeacco vinyl 7x5ft photography which is backgrop is glare free and roll out flat; it is great for studio photography:.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 7x5ft"], "instruction_attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "instruction_options": ["7x5ft"], "assignment_id": "3JWH6J9I93N2AXCMYMWXBU1CHDEBNL", "worker_id": "A1DRKZ3SCLAS4V"}], "B087C54M55": [{"asin": "B087C54M55", "instruction": "i need orange jointlycreating womens non slip running shoes.", "attributes": ["non slip", "lace closure", "rubber outsole", "rubber sole", "gym workout", "daily wear"], "options": ["color: 9-3-orange", "size: 6"], "instruction_attributes": ["non slip"], "instruction_options": ["9-3-orange"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7X6YQX", "worker_id": "A2RBF3IIJP15IH"}], "B09JX42MVQ": [{"asin": "B09JX42MVQ", "instruction": "i would like a medium orange short sleeve shirt.", "attributes": ["loose fit", "hand wash", "soft material", "drawstring closure", "short sleeve", "long sleeve", "teen girls"], "options": ["color: yf-01 orange", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["yf-01 orange", "medium"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79PH1HM", "worker_id": "A1WS884SI0SLO4"}], "B08T129W3L": [{"asin": "B08T129W3L", "instruction": "i want large machine washable coorun womens yoga shorts.", "attributes": ["machine washable", "high waist", "polyester spandex", "daily wear"], "options": ["color: wine red", "size: large"], "instruction_attributes": ["machine washable"], "instruction_options": ["large"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINS3276", "worker_id": "A2RBF3IIJP15IH"}], "B07CF7DT95": [{"asin": "B07CF7DT95", "instruction": "i am looking for a double sided hair extensions in 14 inch long. also in green color.", "attributes": ["double sided", "hair extensions", "hair salon"], "options": ["color: #green", "size: 14 inch"], "instruction_attributes": ["double sided"], "instruction_options": ["#green", "14 inch"], "assignment_id": "3SNVL38CIF2KCWJPF90CUMQQ52XCKA", "worker_id": "A2HMEGTAFO0CS8"}], "B09QPDZ1P2": [{"asin": "B09QPDZ1P2", "instruction": "i would like a machine washable tank that is purple and in a men's x-large.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: purple", "fit type: men", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["purple", "men", "x-large"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7RY37WW", "worker_id": "A2ECRNQ3X5LEXD"}], "B07H3MH53Y": [{"asin": "B07H3MH53Y", "instruction": "i need to buy a loveseat for my living room. get one that's flat packed with a wood finish.", "attributes": ["assembly required", "wood finish", "living room"], "options": [""], "instruction_attributes": ["assembly required", "wood finish", "living room"], "instruction_options": [], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7RZAW7U", "worker_id": "AR9AU5FY1S3RO"}], "B07N62QK41": [{"asin": "B07N62QK41", "instruction": "i need a fully assembled metal bar stool. pick the black backless ones.", "attributes": ["fully assembled", "space saving", "white item"], "options": ["color: black"], "instruction_attributes": ["fully assembled"], "instruction_options": ["black"], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8FZNZ0", "worker_id": "A1NF6PELRKACS9"}], "B07TDFCJNX": [{"asin": "B07TDFCJNX", "instruction": "i want white high heel ankle booties.", "attributes": ["high heel", "faux fur", "rubber outsole"], "options": ["color: white | pu-1", "size: 6"], "instruction_attributes": ["high heel"], "instruction_options": ["white | pu-1"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLRA03Q", "worker_id": "A2RBF3IIJP15IH"}], "B08JLQ2J6C": [{"asin": "B08JLQ2J6C", "instruction": "i would like a high def monocular for bird watching.", "attributes": ["high definition", "bird watching"], "options": [""], "instruction_attributes": ["high definition", "bird watching"], "instruction_options": [], "assignment_id": "351SEKWQSBRP7CP60H83T50CF7CMDX", "worker_id": "A1WS884SI0SLO4"}], "B07NLH2WV5": [{"asin": "B07NLH2WV5", "instruction": "locate a hedgehog garden statue with bluetooth speaker. i want the 6 1/4 inch figuring that includes aaa batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included", "aaa batteries"], "instruction_options": [], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40VCYFI", "worker_id": "A1CB72B51L7TKE"}], "B07PGJWVQP": [{"asin": "B07PGJWVQP", "instruction": "i need some water resistant boots with a rubber sole. it should be in a medium brown shade.", "attributes": ["water resistant", "rubber outsole", "rubber sole"], "options": ["color: medium brown", "size: 10.5 wide"], "instruction_attributes": ["water resistant", "rubber sole"], "instruction_options": ["medium brown"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMPQW9Y", "worker_id": "A1NF6PELRKACS9"}], "B012KOJ61M": [{"asin": "B012KOJ61M", "instruction": "i want low fat banana chips.", "attributes": ["low fat", "real fruit"], "options": [""], "instruction_attributes": ["low fat"], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9EK2E3", "worker_id": "A2RBF3IIJP15IH"}], "B09QPCQF6P": [{"asin": "B09QPCQF6P", "instruction": "i would like a loose fit tee that is orange and is a size 4x large", "attributes": ["loose fit", "slim fit", "long sleeve", "short sleeve"], "options": ["color: orange", "size: 4x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["orange", "4x-large"], "assignment_id": "32Z9ZLUT1WUUJVFKZT66CU4F2ZZHOV", "worker_id": "A2ECRNQ3X5LEXD"}], "B0999N8S5F": [{"asin": "B0999N8S5F", "instruction": "i want candy bags for a halloween party.", "attributes": ["party supplies", "baby shower"], "options": ["color: halloween"], "instruction_attributes": ["party supplies"], "instruction_options": ["halloween"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3C9NQ1", "worker_id": "A2RBF3IIJP15IH"}], "B082M964NK": [{"asin": "B082M964NK", "instruction": "i need a home office chair that has lumbar support and comes in a four pack.", "attributes": ["easy assemble", "lumbar support"], "options": ["size: 4 pack with foot ring"], "instruction_attributes": ["lumbar support"], "instruction_options": ["4 pack with foot ring"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWYWGPP2", "worker_id": "A2ECRNQ3X5LEXD"}], "B07HBF94LC": [{"asin": "B07HBF94LC", "instruction": "i want a tea tree based toothpaste which should be good for sensitive teeth and can reduce bad breath.", "attributes": ["tea tree", "sensitive teeth", "bad breath"], "options": [""], "instruction_attributes": ["tea tree", "sensitive teeth", "bad breath"], "instruction_options": [], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA3AR8G", "worker_id": "ASWFLI3N8X72G"}], "B076BMQ43T": [{"asin": "B076BMQ43T", "instruction": "i am looking for curtains for my living room that are a 2 panel set in the color purple lavender.", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: purple lavender", "size: 108\" x 108\""], "instruction_attributes": ["living room"], "instruction_options": ["purple lavender"], "assignment_id": "3EKVH9QME9EZ08LDQZPJEWME92Q2DH", "worker_id": "AK3JMCIGU8MLU"}], "B09KGKRK8J": [{"asin": "B09KGKRK8J", "instruction": "i would like a twin size antique white bed that is easy to assemble.", "attributes": ["twin size", "space saving", "assembly required", "easy assemble", "box spring"], "options": ["color: antique white", "size: twin"], "instruction_attributes": ["twin size", "easy assemble"], "instruction_options": ["antique white", "twin"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7HZN53", "worker_id": "A1WS884SI0SLO4"}], "B08P2PQ7HW": [{"asin": "B08P2PQ7HW", "instruction": "i am looking for natural deodorant with paraben free, cruelty free and scent:unwind (lavender mint) in stainless steel container", "attributes": ["paraben free", "cruelty free", "stainless steel", "seed oil", "natural ingredients"], "options": ["scent: unwind (lavender mint)"], "instruction_attributes": ["paraben free", "cruelty free", "stainless steel"], "instruction_options": ["unwind (lavender mint)"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIAUBR0", "worker_id": "AX2EWYWZM19AZ"}], "B09KS8NRS2": [{"asin": "B09KS8NRS2", "instruction": "i need to buy a high performance tablet with 4g.", "attributes": ["high performance", "4g lte"], "options": [""], "instruction_attributes": ["high performance", "4g lte"], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1HXU38", "worker_id": "AR9AU5FY1S3RO"}], "B09GV9PDT9": [{"asin": "B09GV9PDT9", "instruction": "i am looking for a pair of grey size 11 mens running shoes.", "attributes": ["moisture wicking", "ethylene vinyl", "vinyl acetate"], "options": ["color: grey", "size: 11"], "instruction_attributes": ["vinyl acetate"], "instruction_options": ["grey", "11"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JY5EGG", "worker_id": "A1EREKSZAA9V7B"}], "B09PDBQ133": [{"asin": "B09PDBQ133", "instruction": "i want a high quality toothbrush for sensitive teeth, something in blue color for my baby.", "attributes": ["high quality", "sensitive teeth"], "options": ["color: blue", "size: 7-13 year"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["blue"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22J78WK", "worker_id": "A1NF6PELRKACS9"}], "B093GY7VJG": [{"asin": "B093GY7VJG", "instruction": "i want one size light weight women\u2019s sexy bandage halter dress.", "attributes": ["light weight", "fashion design", "quality polyester", "daily wear"], "options": ["color: multicolor1", "size: one size"], "instruction_attributes": ["light weight"], "instruction_options": ["one size"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP7XOCW", "worker_id": "A2RBF3IIJP15IH"}], "B01GR35QUM": [{"asin": "B01GR35QUM", "instruction": "i want a citrus and plant based dr. bronner\u2019s liquid soap.", "attributes": ["plant based", "cruelty free"], "options": ["scent: citrus", "size: 32 fl oz (pack of 1)"], "instruction_attributes": ["plant based"], "instruction_options": ["citrus"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UNPZEE", "worker_id": "A2RBF3IIJP15IH"}], "B08XNLBGFL": [{"asin": "B08XNLBGFL", "instruction": "i really need a foot file for dead skin.", "attributes": ["high quality", "stainless steel", "dead skin"], "options": [""], "instruction_attributes": ["dead skin"], "instruction_options": [], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UOW1GD", "worker_id": "A2ECRNQ3X5LEXD"}], "B083JB2WS7": [{"asin": "B083JB2WS7", "instruction": "i am looking for a storage bench with a wood finish for my living room.", "attributes": ["wood finish", "living room"], "options": [""], "instruction_attributes": ["wood finish", "living room"], "instruction_options": [], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU6C9AP", "worker_id": "A1EREKSZAA9V7B"}], "B09DPLKCW3": [{"asin": "B09DPLKCW3", "instruction": "i want a 4g lte verizon signal booster.", "attributes": ["light weight", "plug play", "easy install", "coaxial cable", "4g lte"], "options": [""], "instruction_attributes": ["4g lte"], "instruction_options": [], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK247ENK8", "worker_id": "A2RBF3IIJP15IH"}], "B01CD9JXTO": [{"asin": "B01CD9JXTO", "instruction": "i need a certified refurbished nikon d750.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished"], "instruction_options": [], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCI5WBAG", "worker_id": "A2RBF3IIJP15IH"}], "B091Q3LQGW": [{"asin": "B091Q3LQGW", "instruction": "i am looking for a heavy duty bed in twin size which is easy to assemble. also choose silver with trundle color.", "attributes": ["twin size", "heavy duty", "easy assemble", "box spring"], "options": ["color: silver with trundle"], "instruction_attributes": ["twin size", "heavy duty", "easy assemble"], "instruction_options": ["silver with trundle"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYM2HDA", "worker_id": "A2HMEGTAFO0CS8"}], "B08L2YMRSF": [{"asin": "B08L2YMRSF", "instruction": "i want a jying silver round wall mounted mirror.", "attributes": ["wall mounted", "easy install", "living room"], "options": ["color: silver", "size: 40cm | 16inch"], "instruction_attributes": ["wall mounted"], "instruction_options": ["silver"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QP1XON", "worker_id": "A2RBF3IIJP15IH"}], "B09C6117XD": [{"asin": "B09C6117XD", "instruction": "i would like a island i39.3 chandelier for my dining room.", "attributes": ["height adjustable", "stainless steel", "pendant light", "light fixture", "steel frame", "dining room", "living room"], "options": ["color: island l39.3\""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "30H4UDGLTDSYW9SW5QZYTZH1TQTPMS", "worker_id": "A1WS884SI0SLO4"}], "B07V8NLJ3Y": [{"asin": "B07V8NLJ3Y", "instruction": "i want an aura white and fast charging samsung galaxy note 10.", "attributes": ["long lasting", "fast charging"], "options": ["color: aura white", "style: note 10+"], "instruction_attributes": ["fast charging"], "instruction_options": ["aura white"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R5PSKQ", "worker_id": "A2RBF3IIJP15IH"}], "B07SLKMCDW": [{"asin": "B07SLKMCDW", "instruction": "i would like a heather blue men's size 4t t shirt with a needle sleeve.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: heather blue", "fit type: men", "size: 4t"], "instruction_attributes": ["needle sleeve"], "instruction_options": ["heather blue", "men", "4t"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H268UT", "worker_id": "A1WS884SI0SLO4"}], "B08QRYMRFH": [{"asin": "B08QRYMRFH", "instruction": "shop for a virtual reality headset that's high definition. get the size a.", "attributes": ["easy install", "high definition"], "options": ["size: a"], "instruction_attributes": ["high definition"], "instruction_options": ["a"], "assignment_id": "3BGYGHDBB8UCXYNXTA52IDVACCV224", "worker_id": "AR9AU5FY1S3RO"}], "B09JLSZYPJ": [{"asin": "B09JLSZYPJ", "instruction": "get me a hair drying towel with a funny graphic on it.", "attributes": ["dry hair", "hair salon"], "options": ["color: design funny graphic-302"], "instruction_attributes": ["dry hair"], "instruction_options": ["design funny graphic-302"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP8QOCR", "worker_id": "AR9AU5FY1S3RO"}], "B07FXZKPLS": [{"asin": "B07FXZKPLS", "instruction": "i am looking for a non gmo soup that is vegetarian and comes in a pack of six.", "attributes": ["non gmo", "simple ingredients"], "options": ["flavor name: vegetarian vegetable", "size: pack of 6"], "instruction_attributes": ["non gmo"], "instruction_options": ["vegetarian vegetable", "pack of 6"], "assignment_id": "3NS0A6KXCFISI3YGHWZ57SZI738ZGZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QDRF3WW": [{"asin": "B08QDRF3WW", "instruction": "i'm looking for intel core it can easily install any.", "attributes": ["core i5", "intel core"], "options": ["size: 1tb nvme | 16gb ddr4"], "instruction_attributes": ["intel core"], "instruction_options": ["1tb nvme | 16gb ddr4"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLN6I4B", "worker_id": "A16IQOX0DK14OJ"}], "B0742C39SB": [{"asin": "B0742C39SB", "instruction": "i am looking for some gray living room pillows.", "attributes": ["high density", "living room"], "options": ["color: gray", "size: california king"], "instruction_attributes": ["living room"], "instruction_options": ["gray"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVY03XT", "worker_id": "A2ECRNQ3X5LEXD"}], "B08XBFG6ZS": [{"asin": "B08XBFG6ZS", "instruction": "i am looking for a mouth guard that is pink and non toxic.", "attributes": ["leak proof", "non toxic", "easy clean"], "options": ["color: pink"], "instruction_attributes": ["non toxic"], "instruction_options": ["pink"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW2G4T4", "worker_id": "A2ECRNQ3X5LEXD"}], "B07HKFLFKM": [{"asin": "B07HKFLFKM", "instruction": "i need a brush set that can be used with eyeshadow. get color \"d.\"", "attributes": ["eye shadow", "hair loss"], "options": ["color: d"], "instruction_attributes": ["eye shadow"], "instruction_options": ["d"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZD82S05", "worker_id": "AR9AU5FY1S3RO"}], "B082CLV61D": [{"asin": "B082CLV61D", "instruction": "i want a long lasting, women's spray perfume.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "39LNWE0K456PSVA11X00BCXJKYNIUN", "worker_id": "A114NK7T5673GK"}], "B09MHNZ9F5": [{"asin": "B09MHNZ9F5", "instruction": "i need a blue breenhill electric body brush with extended long handle.", "attributes": ["long handle", "sensitive skin"], "options": ["size: 4110blue"], "instruction_attributes": ["long handle"], "instruction_options": ["4110blue"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBQREJP", "worker_id": "A2RBF3IIJP15IH"}], "B0922RLZ22": [{"asin": "B0922RLZ22", "instruction": "look for an easy to install antique bronze vanity light.", "attributes": ["mid century", "easy install", "clear glass", "glass shade", "vanity light", "light fixture"], "options": ["color: antique bronze", "size: 2lt"], "instruction_attributes": ["easy install"], "instruction_options": ["antique bronze"], "assignment_id": "3TR2532VI040LV46NXNX77Y3US76J0", "worker_id": "AR9AU5FY1S3RO"}], "B084KYT2BK": [{"asin": "B084KYT2BK", "instruction": "i would like to purchase teriyaki flavored jerky that is made from grass fed beef and comes in a 10 ounce package.", "attributes": ["sugar free", "grass fed", "keto friendly"], "options": ["flavor name: teriyaki", "size: 10 ounce"], "instruction_attributes": ["grass fed"], "instruction_options": ["teriyaki", "10 ounce"], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YVJQ3P", "worker_id": "A114NK7T5673GK"}], "B09MFC8PTT": [{"asin": "B09MFC8PTT", "instruction": "i need a black full sized bed frame that is easy to assemble", "attributes": ["easy assemble", "heavy duty", "space saving", "box spring", "storage space"], "options": ["color: black", "size: full"], "instruction_attributes": ["easy assemble"], "instruction_options": ["black", "full"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR6478KH3H", "worker_id": "A2ECRNQ3X5LEXD"}], "B01K4GG51C": [{"asin": "B01K4GG51C", "instruction": "i would like a pair of light blue size 6 sneakers with rubber soles.", "attributes": ["memory foam", "rubber sole"], "options": ["color: gray | light blue", "size: 6"], "instruction_attributes": ["rubber sole"], "instruction_options": ["gray | light blue", "6"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP7Z6D9", "worker_id": "A1WS884SI0SLO4"}], "B09CW9ZHD7": [{"asin": "B09CW9ZHD7", "instruction": "i want to buy an x-large tall, long sleeve flannel shirt that is sea cliff blue plaid.", "attributes": ["machine wash", "button closure", "cotton spandex", "quality materials", "long sleeve", "tumble dry"], "options": ["color: sea cliff blue plaid", "size: x-large tall"], "instruction_attributes": ["long sleeve"], "instruction_options": ["sea cliff blue plaid", "x-large tall"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC538RK3", "worker_id": "A114NK7T5673GK"}], "B09PL66P24": [{"asin": "B09PL66P24", "instruction": "i want a jacksing stereo audio power amplifier.", "attributes": ["power amplifier", "high definition"], "options": [""], "instruction_attributes": ["power amplifier"], "instruction_options": [], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPKQE62", "worker_id": "A2RBF3IIJP15IH"}], "B08NJ8WV83": [{"asin": "B08NJ8WV83", "instruction": "i am looking for a fresh, bright taste, 0 calories and fast-acting nanotonic hemp extract. cocktail with extra sparkling, you'll feel good all night, and in the morning too. yum! the mountjoy extra sparkling | fast-acting hemp-infused sparkling aperitif in assorted flavors and simple ingredients. single pack preferable.", "attributes": ["non alcoholic", "simple ingredients"], "options": ["flavor name: assorted flavors", "size: single"], "instruction_attributes": ["non alcoholic", "simple ingredients"], "instruction_options": ["assorted flavors", "single"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UD13AZ", "worker_id": "A1DRKZ3SCLAS4V"}], "B07TZ1Y9W7": [{"asin": "B07TZ1Y9W7", "instruction": "i am looking for king sized 5 inch mattress with high-density foam comfort and pressure relieving support for a better night's sleep. mayton medium firm tight top mattress preferable.", "attributes": ["high density", "ready use", "fully assembled"], "options": ["size: king", "style: 5-inch"], "instruction_attributes": ["high density", "ready use", "fully assembled"], "instruction_options": ["king", "5-inch"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WP8WQY", "worker_id": "A1DRKZ3SCLAS4V"}], "B09MTDNWNZ": [{"asin": "B09MTDNWNZ", "instruction": "i'm looking for a fast charging oculus quest 2, usb a to usb c link cable that's 10ft.", "attributes": ["fast charging", "high speed"], "options": ["size: 10ft | 3m"], "instruction_attributes": ["fast charging"], "instruction_options": ["10ft | 3m"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z48ACQN", "worker_id": "A292TFDMNVS0TP"}], "B08JK6X5W2": [{"asin": "B08JK6X5W2", "instruction": "i am looking for a cake topper for a baby shower. also choose easy to use", "attributes": ["easy use", "cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["easy use", "baby shower"], "instruction_options": [], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1Z9PAPE", "worker_id": "A2HMEGTAFO0CS8"}], "B096ZS3934": [{"asin": "B096ZS3934", "instruction": "i am searching for a pair of crocs (flip flops) in a size 9-10 in stucco | white. need to be vinyl acetate ot ethylene vinyl. possible product code is 11033.", "attributes": ["ethylene vinyl", "vinyl acetate"], "options": ["color: stucco | white", "size: 9-10"], "instruction_attributes": ["ethylene vinyl", "vinyl acetate"], "instruction_options": ["stucco | white", "9-10"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYVE36E", "worker_id": "A3RGIKEI8JS2QG"}], "B08XVP4YC7": [{"asin": "B08XVP4YC7", "instruction": "i need a 42mm | 44 mm, apple compatible stainless steel smartwatch band which is of coffee color with a black buckle.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: coffee with black buckle", "size: 42mm | 44mm"], "instruction_attributes": ["compatible apple", "stainless steel"], "instruction_options": ["coffee with black buckle", "42mm | 44mm"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUTTQJR", "worker_id": "ASWFLI3N8X72G"}], "B09PNDFZFZ": [{"asin": "B09PNDFZFZ", "instruction": "i want type b high-definition high-power binoculars.", "attributes": ["high power", "high definition"], "options": ["color: type b"], "instruction_attributes": ["high definition"], "instruction_options": ["type b"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SUFTQS", "worker_id": "A2RBF3IIJP15IH"}], "B087NKBGGN": [{"asin": "B087NKBGGN", "instruction": "i want a king size twin bed with storage compartments.", "attributes": ["king size", "box spring"], "options": ["color: green", "size: twin"], "instruction_attributes": ["king size"], "instruction_options": ["twin"], "assignment_id": "3FFJ6VRILCY9C9YL3QMGM59C4AZ0IK", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B087NKBGGN", "instruction": "i need a king size bed that is green.", "attributes": ["king size", "box spring"], "options": ["color: green", "size: king"], "instruction_attributes": ["king size"], "instruction_options": ["green"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3APVBWP", "worker_id": "A2ECRNQ3X5LEXD"}], "B08WRR2W8Q": [{"asin": "B08WRR2W8Q", "instruction": "i want an ivory modway solid wood 6-piece sectional sofa.", "attributes": ["solid wood", "living room"], "options": ["color: ivory"], "instruction_attributes": ["solid wood"], "instruction_options": ["ivory"], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK664YYH", "worker_id": "A2RBF3IIJP15IH"}], "B085D1H4KG": [{"asin": "B085D1H4KG", "instruction": "i would like some dental flossers that come in a storage case.", "attributes": ["clinically proven", "storage case"], "options": [""], "instruction_attributes": ["storage case"], "instruction_options": [], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQQMIHN", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KYKPRQH": [{"asin": "B07KYKPRQH", "instruction": "i would like some memory foam shoes that are navy and are a size 7.5 wide.", "attributes": ["synthetic sole", "memory foam"], "options": ["color: navy", "size: 7.5 wide"], "instruction_attributes": ["memory foam"], "instruction_options": ["navy", "7.5 wide"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3Q1MZD", "worker_id": "A2ECRNQ3X5LEXD"}], "B091SN3LMG": [{"asin": "B091SN3LMG", "instruction": "i would like some black and golden jewlery for daily wear.", "attributes": ["unique design", "rubber sole", "daily wear"], "options": ["color: black | golden", "size: 2.5 little kid"], "instruction_attributes": ["daily wear"], "instruction_options": ["black | golden"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49Y6X4I", "worker_id": "A2ECRNQ3X5LEXD"}], "B0991WC1L9": [{"asin": "B0991WC1L9", "instruction": "i need some high waisted jeans that are black and in an x-small.", "attributes": ["wide leg", "high waist", "drawstring closure", "relaxed fit", "polyester spandex"], "options": ["color: black", "size: x-small"], "instruction_attributes": ["high waist"], "instruction_options": ["black", "x-small"], "assignment_id": "33CID5710F37J25O7G1CGJZBOQML3N", "worker_id": "A2ECRNQ3X5LEXD"}], "B08642JYRV": [{"asin": "B08642JYRV", "instruction": "i am looking for siete grain free tortilla chips that are also gluten free, and non gmo.", "attributes": ["grain free", "dairy free", "non gmo", "gluten free", "natural ingredients", "quality ingredients"], "options": ["flavor name: variety pack", "size: 5 ounce (pack of 3)"], "instruction_attributes": ["grain free", "non gmo", "gluten free"], "instruction_options": ["5 ounce (pack of 3)"], "assignment_id": "3ZPBJO59K0B3FYOV9KSQ10SGYLPHDV", "worker_id": "A2KW17G25L25R8"}], "B07BS1PT7S": [{"asin": "B07BS1PT7S", "instruction": "i want a black officially licensed judy hopps average bunny t-shirt.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: youth", "size: medium"], "instruction_attributes": ["officially licensed"], "instruction_options": ["black"], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZXYCNB", "worker_id": "A2RBF3IIJP15IH"}], "B09P7SPJDS": [{"asin": "B09P7SPJDS", "instruction": "i would like a blue size 8.5 flat shoe that is pretty light weight.", "attributes": ["light weight", "fashion design"], "options": ["color: model 1 blue", "size: 8.5"], "instruction_attributes": ["light weight"], "instruction_options": ["model 1 blue", "8.5"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCGHSJJ", "worker_id": "A1WS884SI0SLO4"}], "B003C09PC4": [{"asin": "B003C09PC4", "instruction": "i'm looking for individually wrapped turkey flavoured meat sticks for snacking.", "attributes": ["individually wrapped", "old fashioned"], "options": ["flavor: turkey"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["turkey"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK48NVF", "worker_id": "A3EDFA8UQT5GG8"}], "B082VL74XD": [{"asin": "B082VL74XD", "instruction": "i am looking for high quality dark brown braided synthetic hair extensions.", "attributes": ["high quality", "synthetic hair", "hair extensions"], "options": ["color: dark brown"], "instruction_attributes": ["high quality", "synthetic hair"], "instruction_options": ["dark brown"], "assignment_id": "3FE7TXL1LTXTPHPIVLV3EVTDSICQ29", "worker_id": "A1EREKSZAA9V7B"}], "B01MT94PJW": [{"asin": "B01MT94PJW", "instruction": "look for antiperspirant in the jean-marie farina scent. buy the travel size.", "attributes": ["anti perspirant", "travel size"], "options": ["scent: jean-marie farina"], "instruction_attributes": ["anti perspirant", "travel size"], "instruction_options": ["jean-marie farina"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SUTUDD", "worker_id": "AR9AU5FY1S3RO"}], "B00TZJDY4Q": [{"asin": "B00TZJDY4Q", "instruction": "buy a pack of whitening toothpaste.", "attributes": ["clinically proven", "teeth whitening"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNKINTR", "worker_id": "AR9AU5FY1S3RO"}], "B095C5CZL3": [{"asin": "B095C5CZL3", "instruction": "i want a dongtai 1080p hd hot link remote surveillance camera.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd"], "instruction_options": [], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH9R1E8", "worker_id": "A2RBF3IIJP15IH"}], "B08R3KWXDL": [{"asin": "B08R3KWXDL", "instruction": "i'm looking for cake toppers for a birthday party", "attributes": ["cupcake picks", "party supplies", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP61DVDE", "worker_id": "A258PTOZ3D2TQR"}], "B07GXHP1X1": [{"asin": "B07GXHP1X1", "instruction": "i need a contemporary mid century, sea blue sofa for living room made with wood frame.", "attributes": ["mid century", "wood frame", "living room"], "options": ["color: sea blue", "size: sofa"], "instruction_attributes": ["mid century", "wood frame", "living room"], "instruction_options": ["sea blue", "sofa"], "assignment_id": "3BXQMRHWKA8BOE0SMCYS3540180MU2", "worker_id": "ASWFLI3N8X72G"}], "B08RJDWPF1": [{"asin": "B08RJDWPF1", "instruction": "i would like to buy some easy to use hair topper extensions that are 10 inches in length, 130% density and come in wine red color.", "attributes": ["easy use", "hair loss"], "options": ["color: wine red-b", "size: 10 inch-130% density"], "instruction_attributes": ["easy use"], "instruction_options": ["wine red-b", "10 inch-130% density"], "assignment_id": "3RJSC4XJ1B4X0L36W63MXW57ZND05S", "worker_id": "A114NK7T5673GK"}], "B08X7153CG": [{"asin": "B08X7153CG", "instruction": "i would like a hair cutting kit that is multicolor.", "attributes": ["rose gold", "hair cutting"], "options": ["color: multicolor 1"], "instruction_attributes": ["hair cutting"], "instruction_options": ["multicolor 1"], "assignment_id": "3H8DHMCCWKLUHOP3F5VNES88Q2CKDL", "worker_id": "A2ECRNQ3X5LEXD"}], "B01G2HM9NA": [{"asin": "B01G2HM9NA", "instruction": "buy a pair of sneakers with rubber soles in a size seven and a half. order them in silver.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: silver multi", "size: 7.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["silver multi", "7.5"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIECVF8", "worker_id": "AR9AU5FY1S3RO"}], "B09ML2WVBK": [{"asin": "B09ML2WVBK", "instruction": "i need an easy to use butter chicken recipe mix that comes in a pack of 3.", "attributes": ["easy use", "artificial flavors"], "options": ["flavor name: karahi gosht 3.30 oz (94g)", "size: pack of 3"], "instruction_attributes": ["easy use"], "instruction_options": ["pack of 3"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFE420D", "worker_id": "A1NF6PELRKACS9"}], "B07R4X5GR9": [{"asin": "B07R4X5GR9", "instruction": "i need some jerky that does not have gluten in it.", "attributes": ["artificial ingredients", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3LQ8PUHQFW2KN94H1YT1SX8TQQOIHP", "worker_id": "A2ECRNQ3X5LEXD"}], "B082MMHC2S": [{"asin": "B082MMHC2S", "instruction": "i need x-large handyulong women's high waisted ripped jeans.", "attributes": ["butt lifting", "straight leg", "wide leg", "high waist", "long sleeve", "drawstring closure", "tummy control"], "options": ["color: z-zzzblue", "size: x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["x-large"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQCB19Y", "worker_id": "A2RBF3IIJP15IH"}], "B09JK7DWCM": [{"asin": "B09JK7DWCM", "instruction": "i'm looking for a red long sleeve sweatshirt in size 3x", "attributes": ["machine wash", "wash cold", "long sleeve", "daily wear"], "options": ["color: x-red", "size: 3x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["x-red", "3x-large"], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK66QYY3", "worker_id": "A36LOA6VLJU157"}], "B09M968ZCM": [{"asin": "B09M968ZCM", "instruction": "i am looking for a high protein energy bar with low sugar and low carb.", "attributes": ["high protein", "low sugar", "low carb", "low calorie", "non gmo", "gluten free"], "options": [""], "instruction_attributes": ["high protein", "low sugar", "low carb"], "instruction_options": [], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYLMM62", "worker_id": "A2HMEGTAFO0CS8"}], "B07RFQ668G": [{"asin": "B07RFQ668G", "instruction": "i would like a 8 oz bag of kosher certified sea salt.", "attributes": ["gmo free", "kosher certified", "real fruit"], "options": ["size: 8oz bag"], "instruction_attributes": ["kosher certified"], "instruction_options": ["8oz bag"], "assignment_id": "37Q970SNZPIYDCMZ4LKU4CY9IZSS1Q", "worker_id": "A1WS884SI0SLO4"}], "B089Z43Q8H": [{"asin": "B089Z43Q8H", "instruction": "i want to buy a watermelon-flavored, sugar-free syrup.", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: watermelon", "size: 15.89 ounce"], "instruction_attributes": ["sugar free"], "instruction_options": ["watermelon"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40U6YFA", "worker_id": "A114NK7T5673GK"}, {"asin": "B089Z43Q8H", "instruction": "i want to find sugar-free marshmallow flavored syrup in a 25.4 ounce bottle. it must come in a pack of three.", "attributes": ["sugar free", "keto friendly", "quality ingredients"], "options": ["flavor name: marshmallow", "size: 25.4 ounce (pack of 3)"], "instruction_attributes": ["sugar free"], "instruction_options": ["marshmallow", "25.4 ounce (pack of 3)"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUKNS4Q", "worker_id": "A345TDMHP3DQ3G"}], "B09CKSFXF1": [{"asin": "B09CKSFXF1", "instruction": "i need a set of easy to clean hair drying towels.", "attributes": ["easy clean", "dry hair"], "options": [""], "instruction_attributes": ["easy clean", "dry hair"], "instruction_options": [], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX7CCF6", "worker_id": "AR9AU5FY1S3RO"}], "B07TNR54WL": [{"asin": "B07TNR54WL", "instruction": "i want a high waist tummy control active shorts for teen girls in w-grey color and xx-large size.", "attributes": ["high waist", "tummy control", "teen girls"], "options": ["color: w-grey", "size: xx-large"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIV8T95", "worker_id": "ASWFLI3N8X72G"}], "B09MTTB7K5": [{"asin": "B09MTTB7K5", "instruction": "get me a portable toothbrush in color \"b.\" the one that says it's for teeth whitening.", "attributes": ["teeth whitening", "fresh breath"], "options": ["color: b"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["b"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB1B5YJ", "worker_id": "AR9AU5FY1S3RO"}], "B09HTH7VQG": [{"asin": "B09HTH7VQG", "instruction": "i would like a free standing shoe rack that is easy to assemble.", "attributes": ["easy assemble", "space saving", "storage space", "living room"], "options": [""], "instruction_attributes": ["easy assemble"], "instruction_options": [], "assignment_id": "3EO896NRA756NTFIJAVQIHQHEZUTJ8", "worker_id": "A1WS884SI0SLO4"}], "B09PJ792FP": [{"asin": "B09PJ792FP", "instruction": "i am looking for a straight leg pants for gym workout in medium size. choose navy color.", "attributes": ["straight leg", "high waist", "tummy control", "button closure", "gym workout"], "options": ["color: navy", "size: medium"], "instruction_attributes": ["straight leg", "gym workout"], "instruction_options": ["navy", "medium"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACPBHNX", "worker_id": "A2HMEGTAFO0CS8"}], "B089LQ8526": [{"asin": "B089LQ8526", "instruction": "i would like a two pack of light brown hair dye that is long lasting.", "attributes": ["dermatologist tested", "long lasting", "hair dye"], "options": ["color: 4n-light brown", "size: pack of 2"], "instruction_attributes": ["long lasting", "hair dye"], "instruction_options": ["4n-light brown", "pack of 2"], "assignment_id": "3BQU611VF0UYX2TVZSZW2NB2OOC99S", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SF2KCDD": [{"asin": "B09SF2KCDD", "instruction": "i need some khaki open toed sandals that come in a 6 wide.", "attributes": ["open toe", "closed toe"], "options": ["color: a4 - khaki", "size: 6 wide"], "instruction_attributes": ["open toe"], "instruction_options": ["a4 - khaki", "6 wide"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OGYTRA", "worker_id": "A2ECRNQ3X5LEXD"}], "B07KMD725G": [{"asin": "B07KMD725G", "instruction": "i need a tee tree based scalp treatment hair care product, which is good for dry hair.", "attributes": ["tea tree", "dry hair"], "options": [""], "instruction_attributes": ["tea tree", "dry hair"], "instruction_options": [], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZ0LNRG", "worker_id": "ASWFLI3N8X72G"}], "B07J28SMHM": [{"asin": "B07J28SMHM", "instruction": "i want a black and easy to use ultra slim waterproof gel eyeliner pencil.", "attributes": ["long lasting", "easy apply", "easy use"], "options": ["color: 1. black"], "instruction_attributes": ["easy use"], "instruction_options": ["1. black"], "assignment_id": "35DR22AR5OU2JWMDLZ40RDUYVY1X3O", "worker_id": "A2RBF3IIJP15IH"}], "B096FKVW28": [{"asin": "B096FKVW28", "instruction": "i want beige chrisdowa light filtering roller shades for my living room.", "attributes": ["easy install", "living room"], "options": ["color: beige-solar", "size: 48\"w x 72\"h"], "instruction_attributes": ["living room"], "instruction_options": ["beige-solar"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMHW1J2", "worker_id": "A2RBF3IIJP15IH"}], "B084443PVV": [{"asin": "B084443PVV", "instruction": "can you help me find a shampoo set that is sulfate free, 24 fl oz and is repairing?", "attributes": ["sulfate free", "cruelty free", "dry hair"], "options": ["color: repairing (blackberry + coconut oil)", "size: 24 fl oz"], "instruction_attributes": ["sulfate free"], "instruction_options": ["repairing (blackberry + coconut oil)", "24 fl oz"], "assignment_id": "3YDTZAI2W8QFBRKOEKOC69I34JO41U", "worker_id": "A2ECRNQ3X5LEXD"}], "B08HD2F1QG": [{"asin": "B08HD2F1QG", "instruction": "i want a charcoal grey colored chair with metal legs to go in my living room.", "attributes": ["easy install", "metal legs", "living room"], "options": ["color: charcoal grey", "size: velvet"], "instruction_attributes": ["metal legs", "living room"], "instruction_options": ["charcoal grey"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTDHD5V", "worker_id": "A1NF6PELRKACS9"}], "B092Z6QBYK": [{"asin": "B092Z6QBYK", "instruction": "i need a purple color loose fit blouse with long sleeves. i am a medium size.", "attributes": ["light weight", "loose fit", "short sleeve", "long sleeve", "quality polyester", "drawstring closure", "classic fit"], "options": ["color: z2-purple", "size: medium"], "instruction_attributes": ["loose fit", "long sleeve"], "instruction_options": ["z2-purple", "medium"], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY15J4W", "worker_id": "A1NF6PELRKACS9"}], "B06XYH75NQ": [{"asin": "B06XYH75NQ", "instruction": "i want a gold high speed micro usb cable.", "attributes": ["high speed", "stainless steel"], "options": ["color: gold", "size: 10ft"], "instruction_attributes": ["high speed"], "instruction_options": ["gold"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YMA96L", "worker_id": "A2RBF3IIJP15IH"}], "B0009XQPHU": [{"asin": "B0009XQPHU", "instruction": "please show me a digital camera. my favorite brand is casio, my husnband told me about model exilim ex-z120 7. is there a batteries included too ? isn't it", "attributes": ["batteries included", "optical zoom"], "options": [""], "instruction_attributes": ["batteries included", "optical zoom"], "instruction_options": [], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RFYFLV", "worker_id": "A15IJ20C3R4HUO"}], "B09NQ5TCN2": [{"asin": "B09NQ5TCN2", "instruction": "i am looking for a hot pink jumpsuit that is large and made of quality materials", "attributes": ["long sleeve", "quality materials", "button closure", "daily wear"], "options": ["color: c2-hot pink", "size: large"], "instruction_attributes": ["quality materials"], "instruction_options": ["c2-hot pink", "large"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH0RHQD", "worker_id": "A2ECRNQ3X5LEXD"}], "B098NWGY7P": [{"asin": "B098NWGY7P", "instruction": "i need to buy a new desktop pc. look for one that's intel core, 64gb of ram, with a 2 terabyte ssd and a 1 terabyte hdd.", "attributes": ["dual band", "intel core"], "options": ["size: 64gb ddr4 ram, 2tb pcie ssd + 1tb hdd"], "instruction_attributes": ["intel core"], "instruction_options": ["64gb ddr4 ram, 2tb pcie ssd + 1tb hdd"], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1AZZHF2", "worker_id": "AR9AU5FY1S3RO"}], "B09B6VTZVK": [{"asin": "B09B6VTZVK", "instruction": "i need a long lasting non slip mattress. the size should be 1.2*2 meters.", "attributes": ["non slip", "machine washable", "long lasting", "exquisite workmanship"], "options": ["color: a", "size: 1.2*2.0m"], "instruction_attributes": ["non slip", "long lasting"], "instruction_options": ["1.2*2.0m"], "assignment_id": "36WLNQG78AKYGRZ95NTEL7733LDBEW", "worker_id": "A1NF6PELRKACS9"}], "B07PMYB9NK": [{"asin": "B07PMYB9NK", "instruction": "i am looking for a blackhead removal tool with eco friendly and also non toxic", "attributes": ["oil free", "eco friendly", "non toxic"], "options": [""], "instruction_attributes": ["eco friendly", "non toxic"], "instruction_options": [], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0S3RAF", "worker_id": "A2HMEGTAFO0CS8"}], "B08RJ1678V": [{"asin": "B08RJ1678V", "instruction": "i want a xx-large sousuoty short sleeve shirt.", "attributes": ["unique design", "short sleeve"], "options": ["color: 01-pink", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3J2UYBXQQWMTJP3K1PDRP2J7VIC602", "worker_id": "A2RBF3IIJP15IH"}], "B07MWHY5YH": [{"asin": "B07MWHY5YH", "instruction": "i want a hunter colored and heavy duty gorilla grip bath rug mat.", "attributes": ["machine washable", "heavy duty", "easy clean"], "options": ["color: hunter", "size: 60\" x 24\""], "instruction_attributes": ["heavy duty"], "instruction_options": ["hunter"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG5USLT", "worker_id": "A2RBF3IIJP15IH"}], "B099DZH4P9": [{"asin": "B099DZH4P9", "instruction": "i am looking for 12 pack case for apple watch 38mm series 3, 2, and 1 with tempered glass screen protector. it may be better to have waterproof, shockproof, impact resistant protective and in all the colors.", "attributes": ["ultra hd", "easy install", "high definition", "glass screen", "tempered glass"], "options": ["color: black | white | silver | rosegold | clear | pink | winered | darkblue | lightblue | green | purple | leopard", "size: 42 mm"], "instruction_attributes": ["ultra hd"], "instruction_options": ["black | white | silver | rosegold | clear | pink | winered | darkblue | lightblue | green | purple | leopard"], "assignment_id": "3TGOYF9918WU1M51VEPEUFLUEUXUUW", "worker_id": "A2DQZHJHF45NDT"}], "B07Z76QFVZ": [{"asin": "B07Z76QFVZ", "instruction": "i'm looking for an easy carry and light weight photography backdrop. also, choose the 7x5ft size.", "attributes": ["light weight", "easy carry", "digital photography"], "options": ["size: 7x5ft"], "instruction_attributes": ["light weight", "easy carry"], "instruction_options": ["7x5ft"], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC55WKRO", "worker_id": "A9ZM1P6LBW79"}], "B082BWSGLF": [{"asin": "B082BWSGLF", "instruction": "i want seventh generation, body wash sensitive skin.", "attributes": ["animal testing", "fragrance free", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "345LHZDED82A2SSIGUTD76VU1H83US", "worker_id": "A2RBF3IIJP15IH"}], "B08CF1GQBM": [{"asin": "B08CF1GQBM", "instruction": "look for a pair of dark grey sneakers with a rubber sole.", "attributes": ["ethylene vinyl", "vinyl acetate", "rubber sole"], "options": ["color: dark grey", "size: 6"], "instruction_attributes": ["rubber sole"], "instruction_options": ["dark grey", "6"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68E9A45", "worker_id": "AR9AU5FY1S3RO"}], "B015PK1GQG": [{"asin": "B015PK1GQG", "instruction": "i want azure glitties glitter powder for nail art.", "attributes": ["long lasting", "easy use", "nail art"], "options": ["color: azure", "size: 10 gram"], "instruction_attributes": ["nail art"], "instruction_options": ["azure"], "assignment_id": "3MHW492WWBNB1TPSR28XZR6JFFTVMK", "worker_id": "A2RBF3IIJP15IH"}], "B00SH90TJ8": [{"asin": "B00SH90TJ8", "instruction": "i need a high quality one way for one coral nail polish.", "attributes": ["high quality", "nail polish"], "options": ["color: coral", "style: one way for one"], "instruction_attributes": ["high quality", "nail polish"], "instruction_options": ["coral", "one way for one"], "assignment_id": "37TD41K0ASJI0FWXKI9EL8H0MXCCSV", "worker_id": "ASWFLI3N8X72G"}], "B09439M7D8": [{"asin": "B09439M7D8", "instruction": "i want a small machine washable jcbytjsw jean jacket for men.", "attributes": ["machine wash", "button closure", "everyday wear"], "options": ["color: yellow01", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["small"], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66O4ZFW", "worker_id": "A2RBF3IIJP15IH"}], "B09RJ9LMHQ": [{"asin": "B09RJ9LMHQ", "instruction": "i am looking for mens size medium golf t-shirts that are lightweight.", "attributes": ["slim fit", "long sleeve", "short sleeve", "regular fit"], "options": ["color: black", "size: medium"], "instruction_attributes": ["short sleeve"], "instruction_options": ["medium"], "assignment_id": "3GD6L00D337VFH9UKOO8S3Z3QALM1J", "worker_id": "A2KW17G25L25R8"}], "B08GFL3B4J": [{"asin": "B08GFL3B4J", "instruction": "i need gold hands free kids bluetooth 5.0 unicorns headphones.", "attributes": ["hands free", "easy carry"], "options": ["color: gold"], "instruction_attributes": ["hands free"], "instruction_options": ["gold"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWTYB973", "worker_id": "A2RBF3IIJP15IH"}], "B0789VCBF6": [{"asin": "B0789VCBF6", "instruction": "i am looking for deep moisturizing shampoo for extreme damage hair .advanced formula of micro nutrients to generate moisture inside the hair repairing chemical damage and color damage from the inside out; locks in nutrients and hydration needed to keep hair strong and bouncy. the truss ultra hydration plus shampoo for dry hair.", "attributes": ["damaged hair", "dry hair"], "options": [""], "instruction_attributes": ["damaged hair", "dry hair"], "instruction_options": [], "assignment_id": "3R6P78PK7VLWWRPHB4ANL4Y1M8UTGN", "worker_id": "A1DRKZ3SCLAS4V"}], "B07S6BVN5L": [{"asin": "B07S6BVN5L", "instruction": "i would like a bronze wall lamp for my living room.", "attributes": ["clear glass", "glass shade", "bronze finish", "living room"], "options": [""], "instruction_attributes": ["bronze finish", "living room"], "instruction_options": [], "assignment_id": "354GIDR5ZMGY5EH5Z0XAG19GIFJ00O", "worker_id": "A1WS884SI0SLO4"}], "B005VTQ05Y": [{"asin": "B005VTQ05Y", "instruction": "i need some kosher buffalo wing sauce", "attributes": ["ready use", "kosher certified"], "options": ["size: 23 fl oz (pack of 1)"], "instruction_attributes": ["kosher certified"], "instruction_options": ["23 fl oz (pack of 1)"], "assignment_id": "3QL2OFSM9HSLK24SCMSSME7UZXANCY", "worker_id": "A2ECRNQ3X5LEXD"}], "B09G2FS316": [{"asin": "B09G2FS316", "instruction": "i want a marble white and high quality travel makeup bag.", "attributes": ["high quality", "rose gold"], "options": ["color: v-marble white", "size: small (pack of 1)"], "instruction_attributes": ["high quality"], "instruction_options": ["v-marble white"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L1YVCB", "worker_id": "A2RBF3IIJP15IH"}], "B078XR8C15": [{"asin": "B078XR8C15", "instruction": "i would like a white item finder that has batteries included.", "attributes": ["batteries included", "easy use"], "options": ["color: white"], "instruction_attributes": ["batteries included"], "instruction_options": ["white"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040COGT2T", "worker_id": "A1WS884SI0SLO4"}], "B09BFDRGX4": [{"asin": "B09BFDRGX4", "instruction": "i want army green knee high hbeylia women's booties.", "attributes": ["knee high", "day comfort", "quality materials"], "options": ["color: army green", "size: 7.5 wide"], "instruction_attributes": ["knee high"], "instruction_options": ["army green"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB45XQA7", "worker_id": "A2RBF3IIJP15IH"}], "B01J5OMNWO": [{"asin": "B01J5OMNWO", "instruction": "i would like a pair of size 9.5 heeled blue sandals with a synthetic sole.", "attributes": ["ankle strap", "synthetic sole"], "options": ["color: blue | multi", "size: 9.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["blue | multi", "9.5"], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39BFCZ1", "worker_id": "A1WS884SI0SLO4"}], "B093238RB2": [{"asin": "B093238RB2", "instruction": "i would like a high speed streaming media player that is easy to use.", "attributes": ["high speed", "easy use", "quad core"], "options": [""], "instruction_attributes": ["high speed", "easy use"], "instruction_options": [], "assignment_id": "369J354OFOKQUTE5FR2UAU6N2ZDG6R", "worker_id": "A1WS884SI0SLO4"}], "B00A1EYZQA": [{"asin": "B00A1EYZQA", "instruction": "florida caribbean flavor tortuga orange rum cake - 4 oz rum cake for easter dessert. find a fresh baked one for me in stock.", "attributes": ["baked fresh", "quality ingredients", "gift basket"], "options": [""], "instruction_attributes": ["baked fresh"], "instruction_options": [], "assignment_id": "3RGU30DZTLI2AYPYADUEW3VPKSEMJI", "worker_id": "A15IJ20C3R4HUO"}], "B08DM9N8XQ": [{"asin": "B08DM9N8XQ", "instruction": "i am looking for a travel sized bottle of prada luna rossa impression eau de parfum.", "attributes": ["travel size", "long lasting"], "options": ["scent: prada luna rossa impression"], "instruction_attributes": ["travel size"], "instruction_options": ["prada luna rossa impression"], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDRPY8R", "worker_id": "A1EREKSZAA9V7B"}], "B07JLCRDCZ": [{"asin": "B07JLCRDCZ", "instruction": "i need a dress that is machine washable and is navy with pinstripes.", "attributes": ["easy care", "machine wash", "button closure"], "options": ["color: navy, pinstripe", "size: 34w x 32l"], "instruction_attributes": ["machine wash"], "instruction_options": ["navy, pinstripe"], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL99UV29", "worker_id": "A2ECRNQ3X5LEXD"}], "B081N9396M": [{"asin": "B081N9396M", "instruction": "i am looking for double sided hair extensions that are at least 22 inches", "attributes": ["double sided", "hair extensions"], "options": ["color: #p10 | 16 | 613", "size: 22 inch"], "instruction_attributes": ["double sided", "hair extensions"], "instruction_options": ["22 inch"], "assignment_id": "3I2PTA7R344O6XT8KR17ERF79IFKQ6", "worker_id": "A32JEH06T23HDF"}], "B07YYLBZYV": [{"asin": "B07YYLBZYV", "instruction": "i am looking for a 5ft black ac adapter that has output protection.", "attributes": ["output protection", "1080p hd"], "options": ["color: black", "size: 5ft"], "instruction_attributes": ["output protection"], "instruction_options": ["black", "5ft"], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCU264S", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SWPZS4B": [{"asin": "B09SWPZS4B", "instruction": "i am looking for a 5 piece hair growth treatment that has all natural ingredients.", "attributes": ["seed oil", "natural ingredients", "hair growth", "hair loss", "damaged hair"], "options": ["size: 5pcs"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["5pcs"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WTK1A2", "worker_id": "A2ECRNQ3X5LEXD"}], "B000JZEABG": [{"asin": "B000JZEABG", "instruction": "i want fat free black forest gummy bears.", "attributes": ["fat free", "gluten free", "real fruit", "resealable bag"], "options": [""], "instruction_attributes": ["fat free"], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9FEE2B", "worker_id": "A2RBF3IIJP15IH"}], "B09MG37LP8": [{"asin": "B09MG37LP8", "instruction": "i want a sweet and awesome hersheys candy mix gift set.", "attributes": ["individually wrapped", "gift set"], "options": ["style: hersheys candy mix - 2 lb"], "instruction_attributes": ["gift set"], "instruction_options": ["hersheys candy mix - 2 lb"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LI7I5K", "worker_id": "A2RBF3IIJP15IH"}], "B08MJCJ659": [{"asin": "B08MJCJ659", "instruction": "i want melody of the night wall art for the living room.", "attributes": ["ready hang", "living room"], "options": ["color: melody of the night", "size: 30\"x20\""], "instruction_attributes": ["living room"], "instruction_options": ["melody of the night"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6ST0DU1", "worker_id": "A2RBF3IIJP15IH"}], "B073G1P3ZX": [{"asin": "B073G1P3ZX", "instruction": "i want a 2 pound, pack of 1, chocolate covered hazelnuts.", "attributes": ["non dairy", "chocolate covered"], "options": ["size: 2 pound (pack of 1)"], "instruction_attributes": ["chocolate covered"], "instruction_options": ["2 pound (pack of 1)"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRQI2YB", "worker_id": "A3UUH3632AI3ZX"}], "B08WJGYNWJ": [{"asin": "B08WJGYNWJ", "instruction": "i would like a 16 ounce bottle of raisin milk that could be a great gift set.", "attributes": ["chocolate covered", "gift set", "great gift"], "options": ["flavor name: raisins - milk", "size: 16 ounce"], "instruction_attributes": ["gift set", "great gift"], "instruction_options": ["raisins - milk", "16 ounce"], "assignment_id": "31LVTDXBLIKZ24QQI628YH2RU36RLZ", "worker_id": "A1WS884SI0SLO4"}], "B09QJMYF49": [{"asin": "B09QJMYF49", "instruction": "i want a pair of green noise cancelling earbud headphones.", "attributes": ["noise cancelling", "light weight", "stereo sound"], "options": ["color: green"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["green"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQVBB4G", "worker_id": "A1WS884SI0SLO4"}], "B095SCLBTF": [{"asin": "B095SCLBTF", "instruction": "i want a small high waisted smooto summer dress for women.", "attributes": ["high waist", "daily wear"], "options": ["color: beige 1", "size: small"], "instruction_attributes": ["high waist"], "instruction_options": ["small"], "assignment_id": "3DYGAII7PWIPHOQOXJ6FA8163RAQP0", "worker_id": "A2RBF3IIJP15IH"}], "B09PNC6152": [{"asin": "B09PNC6152", "instruction": "i need 2 pcs of purple color toothpaste which is good for sensitive teeth and bad breath.", "attributes": ["sensitive teeth", "bad breath"], "options": ["color: purple", "size: 2 pcs"], "instruction_attributes": ["sensitive teeth", "bad breath"], "instruction_options": ["purple", "2 pcs"], "assignment_id": "3Y5140Z9D8QC0Q25KB1616AKCICIPA", "worker_id": "ASWFLI3N8X72G"}], "B077TQ74DM": [{"asin": "B077TQ74DM", "instruction": "i would like a 40 by 40 blue orange throw pillow cover that is machine washable.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: blue orange", "size: 40\" x 40\""], "instruction_attributes": ["machine washable"], "instruction_options": ["blue orange", "40\" x 40\""], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKGZQ54A", "worker_id": "A1WS884SI0SLO4"}], "B0051I9OWQ": [{"asin": "B0051I9OWQ", "instruction": "i need high speed hdmi cables that are 15 feet long", "attributes": ["high speed", "ultra hd", "blu ray", "1080p hd", "gold plated"], "options": ["size: 15ft"], "instruction_attributes": ["high speed"], "instruction_options": ["15ft"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1GM3U4", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GZY9KK8": [{"asin": "B07GZY9KK8", "instruction": "i am looking for roasted and salted cashews that has low sodium content and no artificial ingredients.", "attributes": ["artificial ingredients", "low sodium", "protein serving", "non gmo"], "options": [""], "instruction_attributes": ["artificial ingredients", "low sodium"], "instruction_options": [], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSAYWCK", "worker_id": "AJDQGOTMB2D80"}], "B07P13RBND": [{"asin": "B07P13RBND", "instruction": "i would like a 19\" by 13\" by 17\" nile green bench that is super soft to sit in.", "attributes": ["spot clean", "super soft", "living room"], "options": ["color: nile green", "size: 19\" x 13\" x 17\""], "instruction_attributes": ["super soft"], "instruction_options": ["nile green", "19\" x 13\" x 17\""], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9USX5E", "worker_id": "A1WS884SI0SLO4"}], "B06ZYJ5HL4": [{"asin": "B06ZYJ5HL4", "instruction": "i want size 2x and machine washable women's plus size active run shorts.", "attributes": ["machine wash", "drawstring waist", "drawstring closure"], "options": ["color: spot on odyssey", "size: 2x"], "instruction_attributes": ["machine wash"], "instruction_options": ["2x"], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2FPFKO", "worker_id": "A2RBF3IIJP15IH"}], "B00VUUR50W": [{"asin": "B00VUUR50W", "instruction": "i need some xx-large polos that have buttons and are in red and black.", "attributes": ["wash cold", "button closure", "tumble dry"], "options": ["color: red | black", "size: xx-large", "team name: indiana hoosiers"], "instruction_attributes": ["button closure"], "instruction_options": ["red | black", "xx-large"], "assignment_id": "37TRT2X24116R7L1JO45INKV8TKBJS", "worker_id": "A2ECRNQ3X5LEXD"}], "B09ML1SJJ9": [{"asin": "B09ML1SJJ9", "instruction": "i am looking for a high speed gaming desktop with core i5. also choose 64gb ram|512gb ssd|win11h.", "attributes": ["high speed", "core i5", "intel core"], "options": ["size: 64gb ram|512gb ssd|win11h"], "instruction_attributes": ["high speed", "core i5"], "instruction_options": ["64gb ram|512gb ssd|win11h"], "assignment_id": "3NVC2EB6519RJ1CNQVQ2AR17X56Y38", "worker_id": "A2HMEGTAFO0CS8"}], "B01K4XK2FU": [{"asin": "B01K4XK2FU", "instruction": "i want pink ambesonne shutters curtains for my living room.", "attributes": ["machine washable", "printing technology", "living room"], "options": ["color: pink green", "size: 108\" x 84\""], "instruction_attributes": ["living room"], "instruction_options": ["pink green"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYBHEIS", "worker_id": "A2RBF3IIJP15IH"}], "B08W2NYM42": [{"asin": "B08W2NYM42", "instruction": "i would like a stainless steel facial roller.", "attributes": ["stainless steel", "dark circles"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZH49K0", "worker_id": "A1WS884SI0SLO4"}], "B07KQ5FQDX": [{"asin": "B07KQ5FQDX", "instruction": "get me a pair of neon green shorts with a drawstring closure in size small.", "attributes": ["moisture wicking", "machine wash", "drawstring closure", "elastic waistband", "polyester spandex"], "options": ["color: neon green", "size: small"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["neon green", "small"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWBANFJ", "worker_id": "AR9AU5FY1S3RO"}], "B084Z1G6TC": [{"asin": "B084Z1G6TC", "instruction": "i am looking for a wall sconce with a nickel finish. please make sure that it has a vintage brass color and is mini pendant styled.", "attributes": ["nickel finish", "clear glass"], "options": ["color: vintage brass", "style: mini pendant"], "instruction_attributes": ["nickel finish"], "instruction_options": ["vintage brass", "mini pendant"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJLY0WS", "worker_id": "AJDQGOTMB2D80"}], "B09GVYBZTF": [{"asin": "B09GVYBZTF", "instruction": "i would like a blue hair towel like those in a salon.", "attributes": ["hair salon", "dry hair"], "options": ["color: blue"], "instruction_attributes": ["hair salon"], "instruction_options": ["blue"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH88E10", "worker_id": "A1WS884SI0SLO4"}], "B07C812LHQ": [{"asin": "B07C812LHQ", "instruction": "i want a rose pink maxone 1tb portable external hard drive that is plug and play.", "attributes": ["plug play", "usb port"], "options": ["capacity: 500gb", "color: rose pink"], "instruction_attributes": ["plug play"], "instruction_options": ["rose pink"], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINRN27O", "worker_id": "A2RBF3IIJP15IH"}], "B01K7YK2RY": [{"asin": "B01K7YK2RY", "instruction": "buy me a pair of machine washable jeans in maria.", "attributes": ["machine wash", "imported zipper", "quality materials"], "options": ["color: maria", "size: 20-30"], "instruction_attributes": ["machine wash"], "instruction_options": ["maria"], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZLTY1H", "worker_id": "AR9AU5FY1S3RO"}], "B08LSM3T2G": [{"asin": "B08LSM3T2G", "instruction": "i am looking for a machine washable boxer brief with tumble dry. also choose multi color pack and 3x large size.", "attributes": ["machine washable", "machine wash", "tumble dry"], "options": ["color: multi10", "size: 3x-large"], "instruction_attributes": ["machine washable", "tumble dry"], "instruction_options": ["multi10", "3x-large"], "assignment_id": "3N1FSUEFLGA93M00UD877BJCTH8D4C", "worker_id": "A2HMEGTAFO0CS8"}], "B09Q6BNXVY": [{"asin": "B09Q6BNXVY", "instruction": "i want masbird open toe sandals for women in size 7.5.", "attributes": ["open toe", "leather sole", "high heel", "teen girls", "daily wear"], "options": ["color: a01-black", "size: 7.5"], "instruction_attributes": ["open toe"], "instruction_options": ["7.5"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK247PKNG", "worker_id": "A2RBF3IIJP15IH"}], "B09P8F6J2T": [{"asin": "B09P8F6J2T", "instruction": "i am looking for easy to use hair rollers in pink.", "attributes": ["easy use", "hair styling"], "options": ["color: pink"], "instruction_attributes": ["easy use"], "instruction_options": ["pink"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH8J1EY", "worker_id": "A2ECRNQ3X5LEXD"}], "B08N4S3B85": [{"asin": "B08N4S3B85", "instruction": "let me get some stainless steel tongue scrapers. pick a purple one.", "attributes": ["stainless steel", "oral hygiene"], "options": ["color: purple | orange | pink | yellow"], "instruction_attributes": ["stainless steel"], "instruction_options": ["purple | orange | pink | yellow"], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V372UF", "worker_id": "A1NF6PELRKACS9"}], "B09QHK4DV1": [{"asin": "B09QHK4DV1", "instruction": "i'm looking for men's low rise boxer briefs in black color. please select xx-large size.", "attributes": ["butt lifting", "low rise", "day comfort", "quick drying", "moisture wicking", "high waist"], "options": ["color: black", "size: xx-large"], "instruction_attributes": ["low rise"], "instruction_options": ["black", "xx-large"], "assignment_id": "3A4TN5196VSTA6IH9OXFHUAYDMEHCY", "worker_id": "A20DUVEOH6A7KW"}], "B09MFZY1QC": [{"asin": "B09MFZY1QC", "instruction": "i need to buy four pounds of individually wrapped chocolates.", "attributes": ["individually wrapped", "valentine day", "perfect gift"], "options": ["size: 4 pound"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["4 pound"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L1XCVR", "worker_id": "AR9AU5FY1S3RO"}], "B09P5LY24M": [{"asin": "B09P5LY24M", "instruction": "i am looking for a supplement for hair growth which is clinically proven. also choose bundle pack 2", "attributes": ["clinically proven", "hair growth", "hair loss"], "options": ["size: bundle pack #2"], "instruction_attributes": ["clinically proven", "hair growth"], "instruction_options": ["bundle pack #2"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788CA5CQ", "worker_id": "A2HMEGTAFO0CS8"}], "B0829VDK65": [{"asin": "B0829VDK65", "instruction": "i would love some water resistant eye shadow that is coral colored.", "attributes": ["highly pigmented", "water resistant", "easy apply", "cruelty free", "eye shadow", "dry skin", "sensitive skin"], "options": ["color: golden coral"], "instruction_attributes": ["water resistant"], "instruction_options": ["golden coral"], "assignment_id": "3P529IW9K9V2ZELHRB2EHSO8RF5LF8", "worker_id": "A2ECRNQ3X5LEXD"}], "B08613274T": [{"asin": "B08613274T", "instruction": "i want a mid century console sofa table.", "attributes": ["mid century", "assembly required", "metal legs"], "options": [""], "instruction_attributes": ["mid century"], "instruction_options": [], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZRA40J", "worker_id": "A2RBF3IIJP15IH"}], "B07GDSVW8B": [{"asin": "B07GDSVW8B", "instruction": "i'd like to order some barbecue flavored veggie crisps. look for low fat, non gmo, and plant based snacks.", "attributes": ["plant based", "low fat", "non gmo", "gluten free", "artificial flavors"], "options": ["flavor: barbecue"], "instruction_attributes": ["plant based", "low fat", "non gmo"], "instruction_options": ["barbecue"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2DKOI3", "worker_id": "AR9AU5FY1S3RO"}], "B08DQWMM4J": [{"asin": "B08DQWMM4J", "instruction": "i am looking for a high quality 25mm false eyelash extensions.", "attributes": ["easy apply", "high quality"], "options": ["color: dd-0.03", "size: 25mm"], "instruction_attributes": ["high quality"], "instruction_options": ["25mm"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3GGBV2", "worker_id": "A1EREKSZAA9V7B"}], "B07Z51SR1J": [{"asin": "B07Z51SR1J", "instruction": "i want to find a natural jade face mask that helps hide dark circles. the mask needs to be crystal clear in color.", "attributes": ["easy use", "dark circles"], "options": ["color: clear crystal"], "instruction_attributes": ["dark circles"], "instruction_options": ["clear crystal"], "assignment_id": "33CID5710F37J25O7G1CGJZBOQJL3K", "worker_id": "A345TDMHP3DQ3G"}], "B09KTNVY6F": [{"asin": "B09KTNVY6F", "instruction": "i want a black machine washable women's round turtleneck sweater.", "attributes": ["winter warm", "fleece lined", "machine wash", "long sleeve", "relaxed fit", "polyester spandex", "everyday wear"], "options": ["color: black", "size: medium"], "instruction_attributes": ["machine wash"], "instruction_options": ["black"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQ6WL1J", "worker_id": "A2RBF3IIJP15IH"}], "B09T3NHTTR": [{"asin": "B09T3NHTTR", "instruction": "i want a pink eforcase u shaped toddler toothbrush for sensitive teeth.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: type 3", "size: pink (7~12 year old)"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["pink (7~12 year old)"], "assignment_id": "3DUZQ9U6SXYEZO2XBZ4JB05P74BSVT", "worker_id": "A2RBF3IIJP15IH"}], "B09129MQDV": [{"asin": "B09129MQDV", "instruction": "for my living room, i need a ready to hang, 16 x 20 in, wall art poster made in athletic gold color.", "attributes": ["ready hang", "solid wood", "living room"], "options": ["color: athletic gold", "size: 16 x 20 in"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["athletic gold", "16 x 20 in"], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUIWVZK", "worker_id": "ASWFLI3N8X72G"}], "B074PTW8TX": [{"asin": "B074PTW8TX", "instruction": "i want a package of individual wrapped granola bars. look for the peanut butter chocolate chip flavor.", "attributes": ["individually wrapped", "artificial colors"], "options": ["flavor name: peanut butter chocolate chip"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["peanut butter chocolate chip"], "assignment_id": "3RRCEFRB7XMGOP2GGHH1CLVCQW3B4A", "worker_id": "AR9AU5FY1S3RO"}], "B088LKHSL9": [{"asin": "B088LKHSL9", "instruction": "i want a .63 ounce pack of 12 watkins organic gourmet dip mix. i want the salsa and sour cream flavor.", "attributes": ["certified organic", "non gmo"], "options": ["flavor: salsa & sour cream - organic", "size: 0.63 ounce (pack of 12)"], "instruction_attributes": ["non gmo"], "instruction_options": ["salsa & sour cream - organic", "0.63 ounce (pack of 12)"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZQXK3Z", "worker_id": "A1CB72B51L7TKE"}], "B073RNY6WF": [{"asin": "B073RNY6WF", "instruction": "i would like a pair of pants in a size 7 that are machine washable and a tartan color.", "attributes": ["wash cold", "machine wash", "nylon spandex"], "options": ["color: neutral tartan", "size: 7"], "instruction_attributes": ["machine wash"], "instruction_options": ["neutral tartan", "7"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AP4BWY", "worker_id": "A2ECRNQ3X5LEXD"}], "B0825DBY38": [{"asin": "B0825DBY38", "instruction": "i need a wall lamp that has a dark bronze nickel finish", "attributes": ["brushed nickel", "nickel finish", "contemporary style"], "options": ["color: dark bronze"], "instruction_attributes": ["nickel finish"], "instruction_options": ["dark bronze"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR400C1", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QQM4W65": [{"asin": "B09QQM4W65", "instruction": "select 1 unit toothpaste for sensitive teeth whitening corrector, enamel care.", "attributes": ["teeth whitening", "natural ingredients", "sensitive teeth", "fresh breath"], "options": ["color: mix", "size: 1pc"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["1pc"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWXAR12", "worker_id": "A15IJ20C3R4HUO"}], "B08V8XQRX5": [{"asin": "B08V8XQRX5", "instruction": "i would like a medium black camo tank top for my gym workouts.", "attributes": ["moisture wicking", "stretch fabric", "polyester spandex", "gym workout"], "options": ["color: black+emcamoblack", "size: medium"], "instruction_attributes": ["gym workout"], "instruction_options": ["black+emcamoblack", "medium"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH0JQHE", "worker_id": "A1WS884SI0SLO4"}], "B098XF9SZD": [{"asin": "B098XF9SZD", "instruction": "i want to buy some 72 inch long drapes for the living room. look for machine washable drapes.", "attributes": ["machine washable", "living room"], "options": ["size: 52x72inch"], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["52x72inch"], "assignment_id": "3Z4GS9HPN6KQ50H95Y3SAVTQY8M77O", "worker_id": "AR9AU5FY1S3RO"}], "B08QJ9646M": [{"asin": "B08QJ9646M", "instruction": "i would like a 10.63x9.05 inch pack of 5 red edge sponges that are long lasting.", "attributes": ["easy clean", "long lasting", "sensitive skin"], "options": ["size: 10.63x9.05 inch (pack of 5)", "style: red edge"], "instruction_attributes": ["long lasting"], "instruction_options": ["10.63x9.05 inch (pack of 5)", "red edge"], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLLUI4V", "worker_id": "A1WS884SI0SLO4"}], "B09T6BY7J5": [{"asin": "B09T6BY7J5", "instruction": "i need a men's short sleeve shirt that is coffee colored and an xx-large", "attributes": ["daily casual", "loose fit", "wash cold", "slim fit", "hand wash", "short sleeve", "polyester spandex"], "options": ["color: ccoffee", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["ccoffee", "xx-large"], "assignment_id": "31JLPPHS254FPN8LK8H48035JU0O3E", "worker_id": "A2ECRNQ3X5LEXD"}], "B09DYJ6K32": [{"asin": "B09DYJ6K32", "instruction": "i want ailun privacy glass screen protectors.", "attributes": ["high definition", "tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["glass screen"], "instruction_options": [], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLFZ2FL", "worker_id": "A2RBF3IIJP15IH"}], "B00BNP9KR0": [{"asin": "B00BNP9KR0", "instruction": "i need a cocoa mix that is non gmo and a pack of 3.", "attributes": ["non gmo", "gluten free", "natural flavors", "artificial colors"], "options": ["flavor name: pure cocoa", "size: 4 fl oz (pack of 3)"], "instruction_attributes": ["non gmo"], "instruction_options": ["pure cocoa", "4 fl oz (pack of 3)"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHP82DQ4", "worker_id": "A2ECRNQ3X5LEXD"}], "B09HCFGKZY": [{"asin": "B09HCFGKZY", "instruction": "i want to find a monocular telescope that i can use for birdwatching, and it must be easy to install.", "attributes": ["easy install", "bird watching"], "options": [""], "instruction_attributes": ["easy install", "bird watching"], "instruction_options": [], "assignment_id": "3CTOC39K3I0JPVIB67SPDLYZP3A7JJ", "worker_id": "A345TDMHP3DQ3G"}], "B097DCRTWP": [{"asin": "B097DCRTWP", "instruction": "i am looking for high quality 22 inch hair extensions.", "attributes": ["high quality", "hair extensions", "dry hair"], "options": ["color: honey blonde mix bleach blonde-curly", "size: 22 inch"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["22 inch"], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60O1AAC", "worker_id": "A1EREKSZAA9V7B"}], "B077PHGLJN": [{"asin": "B077PHGLJN", "instruction": "i need low rise jeans that are a 54w by 34l", "attributes": ["low rise", "straight leg", "machine wash", "imported zipper"], "options": ["color: (new) cool slate", "fit type: big & tall", "size: 54w x 34l"], "instruction_attributes": ["low rise"], "instruction_options": ["54w x 34l"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR4UC07", "worker_id": "A2ECRNQ3X5LEXD"}], "B000KOSF30": [{"asin": "B000KOSF30", "instruction": "i am looking for 1 pack of 9 gr light golden reddish blonde hair dye which is good and long lasting.", "attributes": ["long lasting", "permanent hair", "hair dye"], "options": ["color: 9gr light golden reddish blonde", "size: pack of 1"], "instruction_attributes": ["long lasting", "hair dye"], "instruction_options": ["9gr light golden reddish blonde", "pack of 1"], "assignment_id": "3CFVK00FWWV6GLS6QIZANMBVYHIL6N", "worker_id": "ASWFLI3N8X72G"}], "B00XE3UFAU": [{"asin": "B00XE3UFAU", "instruction": "i want peanut butter & co. cocoa powder, non-gmo.", "attributes": ["non gmo", "gluten free", "protein serving"], "options": ["flavor name: cocoa", "size: 6.5 ounce (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["cocoa"], "assignment_id": "317HQ483II2CX5QS4WOEXH5PC37NIF", "worker_id": "A2RBF3IIJP15IH"}], "B07ZBF449V": [{"asin": "B07ZBF449V", "instruction": "i need a futon mattress in the color a for the living room.", "attributes": ["non slip", "space saving", "living room"], "options": ["color: a", "size: 180x220cm(71x87inch)"], "instruction_attributes": ["living room"], "instruction_options": ["a"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFRK0T6", "worker_id": "A2ECRNQ3X5LEXD"}], "B0811DB2R8": [{"asin": "B0811DB2R8", "instruction": "i would like a pair of noise cancelling earbud headphones.", "attributes": ["noise cancelling", "gold plated", "carrying case"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY1HP70", "worker_id": "A1WS884SI0SLO4"}], "B09B5M59X1": [{"asin": "B09B5M59X1", "instruction": "i would like a social distance hug perfect gift basket.", "attributes": ["gift basket", "perfect gift"], "options": ["style: sending a social distance hug"], "instruction_attributes": ["gift basket", "perfect gift"], "instruction_options": ["sending a social distance hug"], "assignment_id": "324G5B4FBEICNPHPKZIJVGJ3QT7076", "worker_id": "A1WS884SI0SLO4"}], "B093352T72": [{"asin": "B093352T72", "instruction": "i am looking for an easy to install white antler chandelier with 18 antlers and 9 lights.", "attributes": ["easy install", "pendant light"], "options": ["size: 18 antlers + 9 lights"], "instruction_attributes": ["easy install"], "instruction_options": ["18 antlers + 9 lights"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3PPZMC", "worker_id": "A1EREKSZAA9V7B"}], "B09L7TFHXB": [{"asin": "B09L7TFHXB", "instruction": "shop for a laptop that's intel i5 quad core, with 16 gigabytes of ram and a 512 gigabyte ssd.", "attributes": ["core i5", "intel core", "quad core"], "options": ["capacity: 16gb ddr4 ram, 512gb pcie ssd"], "instruction_attributes": ["core i5", "intel core", "quad core"], "instruction_options": ["16gb ddr4 ram, 512gb pcie ssd"], "assignment_id": "3FE2ERCCZ8IMWCD8I6EBL366OR9POA", "worker_id": "AR9AU5FY1S3RO"}], "B08D3H2DJR": [{"asin": "B08D3H2DJR", "instruction": "i am looking for a pack of 3 high quality heavy duty clear toiletry bags.", "attributes": ["heavy duty", "high quality", "travel bottles"], "options": ["color: navy pack of 2", "size: pack of 3"], "instruction_attributes": ["heavy duty", "high quality"], "instruction_options": ["pack of 3"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU49U6RL", "worker_id": "A1EREKSZAA9V7B"}], "B00PY2FBSK": [{"asin": "B00PY2FBSK", "instruction": "i would like some dining room pendant lights that are river stone color and are 20.5\" wide.", "attributes": ["bronze finish", "light fixture", "dining room"], "options": ["color: river stone", "size: 20.5\" wide"], "instruction_attributes": ["dining room"], "instruction_options": ["river stone", "20.5\" wide"], "assignment_id": "3DOCMVPBTYO4B61J1C162P16Y1ONNG", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NRCY45Z": [{"asin": "B09NRCY45Z", "instruction": "i am looking for a high quality slipper made up of quality material for a little kid, size 10.5 - 11. also choose white color.", "attributes": ["non slip", "high quality", "quality materials"], "options": ["color: white", "size: 10.5-11 little kid"], "instruction_attributes": ["high quality", "quality materials"], "instruction_options": ["white", "10.5-11 little kid"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8NQQ62", "worker_id": "A2HMEGTAFO0CS8"}], "B07ZNF8BP3": [{"asin": "B07ZNF8BP3", "instruction": "i would like a 18 inch #5 easy to use hair extensions.", "attributes": ["easy apply", "hair extensions"], "options": ["color: #6 | 14 | 26", "size: 18 inch (pack of 1)"], "instruction_attributes": ["easy apply", "hair extensions"], "instruction_options": ["#6 | 14 | 26", "18 inch (pack of 1)"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2LQ5L8", "worker_id": "A1WS884SI0SLO4"}], "B08RPCGJGD": [{"asin": "B08RPCGJGD", "instruction": "i would like a 32 fluid ounce bottle of sweet and creamy non-gmo dairy creamer.", "attributes": ["plant based", "non dairy", "certified organic", "dairy free", "non gmo", "gluten free", "shelf stable", "artificial flavors"], "options": ["flavor name: sweet & creamy", "size: 32 fl oz (pack of 6)"], "instruction_attributes": ["non gmo"], "instruction_options": ["sweet & creamy", "32 fl oz (pack of 6)"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREMS2J0", "worker_id": "A1WS884SI0SLO4"}], "B09QQFCTT9": [{"asin": "B09QQFCTT9", "instruction": "i am looking for a brighten colored toothpaste that is fluoride free and has natural ingredients.", "attributes": ["teeth whitening", "fluoride free", "long lasting", "natural ingredients", "fresh breath", "sensitive teeth", "bad breath"], "options": ["color: brighten"], "instruction_attributes": ["fluoride free", "natural ingredients"], "instruction_options": ["brighten"], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOWY391", "worker_id": "AJDQGOTMB2D80"}], "B09P656ZZ4": [{"asin": "B09P656ZZ4", "instruction": "i am looking for fluoride free teeth whitening toothpaste that has two times the repair.", "attributes": ["fluoride free", "teeth whitening", "bad breath"], "options": ["color: 2x tooth repair"], "instruction_attributes": ["fluoride free", "teeth whitening"], "instruction_options": ["2x tooth repair"], "assignment_id": "30ZX6P7VFJ5C3UL50VBUHUHREN6J2X", "worker_id": "A1EREKSZAA9V7B"}], "B07NKC79K5": [{"asin": "B07NKC79K5", "instruction": "i am looking for a dual band ac/dc adapter for a zboost.", "attributes": ["output protection", "dual band"], "options": [""], "instruction_attributes": ["dual band"], "instruction_options": [], "assignment_id": "3FDJT1UU7FIZDBAA0ZD4GGKGDLVK5U", "worker_id": "A2KW17G25L25R8"}], "B075QHVT8K": [{"asin": "B075QHVT8K", "instruction": "i'd like to order an eight ounce bottle of maple syrup. make sure it's nut free.", "attributes": ["hand crafted", "nut free", "kosher certified", "non gmo", "gluten free", "artificial flavors"], "options": ["size: 8 ounce"], "instruction_attributes": ["nut free"], "instruction_options": ["8 ounce"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYODGTAA", "worker_id": "AR9AU5FY1S3RO"}], "B075PK2DSR": [{"asin": "B075PK2DSR", "instruction": "i would like to buy a one fluid ounce bottle of face oil for my dry skin.", "attributes": ["non toxic", "dark circles", "damaged hair", "dry skin", "hair growth"], "options": ["size: 1 fl oz - 30 ml."], "instruction_attributes": ["dry skin"], "instruction_options": ["1 fl oz - 30 ml."], "assignment_id": "3L4D84MILA2GIKONJGE14YNT36HJH8", "worker_id": "A1WS884SI0SLO4"}], "B09PZTG93B": [{"asin": "B09PZTG93B", "instruction": "i need teeth whitening toothpaste that is orange and purple.", "attributes": ["teeth whitening", "long lasting", "fresh breath", "sensitive teeth", "bad breath"], "options": ["color: 2pcs orange+purple"], "instruction_attributes": ["teeth whitening"], "instruction_options": ["2pcs orange+purple"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWU9RR94", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H48G5P9": [{"asin": "B09H48G5P9", "instruction": "i need a microphone cable with a power amplifier and 1.8\u7c73 capacity.", "attributes": ["power amplifier", "easy install"], "options": ["capacity: 1.8\u7c73"], "instruction_attributes": ["power amplifier"], "instruction_options": [], "assignment_id": "3OONKJ5DKNTKSICYZ1WAQJ1H7NTBOA", "worker_id": "AR9AU5FY1S3RO"}], "B0828FCWRW": [{"asin": "B0828FCWRW", "instruction": "i need a wall lamp that has a bronze finish.", "attributes": ["glass shade", "bronze finish"], "options": [""], "instruction_attributes": ["bronze finish"], "instruction_options": [], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWYU1RY", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PHVKQT3": [{"asin": "B07PHVKQT3", "instruction": "i would like a 0.33 fluid ounce porcelain concealers for the dark circles under my eyes.", "attributes": ["cruelty free", "dark circles"], "options": ["color: porcelain", "size: 0.33 fl oz (pack of 1)"], "instruction_attributes": ["dark circles"], "instruction_options": ["porcelain", "0.33 fl oz (pack of 1)"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK44G6AL", "worker_id": "A1WS884SI0SLO4"}], "B09B4F9KPL": [{"asin": "B09B4F9KPL", "instruction": "i am interested in red heavy duty bed frames for a queen sized bed.", "attributes": ["heavy duty", "faux leather", "memory foam"], "options": ["color: red", "size: queen", "style: linen"], "instruction_attributes": ["heavy duty"], "instruction_options": ["red", "queen"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1BKXCS", "worker_id": "A2ECRNQ3X5LEXD"}], "B07TQ56RZD": [{"asin": "B07TQ56RZD", "instruction": "i want some highly pigmented eye liner pencils that come in a variety of colors and are easy to apply.", "attributes": ["long lasting", "highly pigmented", "easy apply"], "options": ["color: 12 rainbow colors"], "instruction_attributes": ["highly pigmented", "easy apply"], "instruction_options": ["12 rainbow colors"], "assignment_id": "3OUYGIZWRI81TVLPGLC0V2AOQOQ0PS", "worker_id": "AR9AU5FY1S3RO"}], "B007CQ6A72": [{"asin": "B007CQ6A72", "instruction": "i want to find a navy colored non-slip rug that is oval shaped and 3 feet by 5 feet in size.", "attributes": ["non slip", "white item"], "options": ["color: navy", "item shape: oval", "size: 3 ft x 5 ft"], "instruction_attributes": ["non slip"], "instruction_options": ["navy", "oval", "3 ft x 5 ft"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EB8MU61", "worker_id": "A345TDMHP3DQ3G"}], "B001EQ5AVI": [{"asin": "B001EQ5AVI", "instruction": "i need this shelf stable roast beef and mashed potatoes with gravy meal. it should go in the microwave.", "attributes": ["shelf stable", "artificial ingredients", "protein serving", "quality ingredients"], "options": ["style: microwave meals"], "instruction_attributes": ["shelf stable"], "instruction_options": ["microwave meals"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMMXOSRO", "worker_id": "A1NF6PELRKACS9"}], "B07TWQZM5N": [{"asin": "B07TWQZM5N", "instruction": "i want a blessliving red hearts plush blanket that is 50 x 60 inches.", "attributes": ["queen size", "twin size", "king size"], "options": ["color: 7", "size: throw, 50 x 60 inches"], "instruction_attributes": ["queen size"], "instruction_options": ["throw, 50 x 60 inches"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SUFQTP", "worker_id": "A2RBF3IIJP15IH"}], "B08PFM7RW9": [{"asin": "B08PFM7RW9", "instruction": "i am looking for a black heavy duty steel framed electric standing desk that is height adjustable.", "attributes": ["height adjustable", "heavy duty", "steel frame"], "options": ["color: black"], "instruction_attributes": ["height adjustable", "heavy duty", "steel frame"], "instruction_options": ["black"], "assignment_id": "3634BBTX0Z409DDB6851PCWGACVFIA", "worker_id": "A1EREKSZAA9V7B"}], "B007MYLM1I": [{"asin": "B007MYLM1I", "instruction": "a sunscreen spf 50 ,anti aging fine lines and wrinkles and protection from sun", "attributes": ["anti aging", "fine lines"], "options": [""], "instruction_attributes": ["anti aging", "fine lines"], "instruction_options": [], "assignment_id": "3W2LOLRXLMPOIY88X6Q7JHPC539KRX", "worker_id": "A3N9ZYQAESNFQH"}], "B00ZK6KSS8": [{"asin": "B00ZK6KSS8", "instruction": "i want plant based ginger ale zevia zero calorie soda.", "attributes": ["plant based", "non gmo", "gluten free", "zero sugar"], "options": ["flavor name: ginger ale"], "instruction_attributes": ["plant based"], "instruction_options": ["ginger ale"], "assignment_id": "34J10VATJQ8X023KKOGV1B0UHE2IQ5", "worker_id": "A2RBF3IIJP15IH"}], "B09S1BBCFP": [{"asin": "B09S1BBCFP", "instruction": "i need a black winter warm pair of boots that has arch support. pick a black on in size 8.", "attributes": ["knee high", "winter warm", "anti slip", "faux fur", "closed toe", "high heel", "arch support"], "options": ["color: a03-black", "size: 8"], "instruction_attributes": ["winter warm", "arch support"], "instruction_options": ["a03-black", "8"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTDLN9X", "worker_id": "A1NF6PELRKACS9"}], "B09NYBZX2T": [{"asin": "B09NYBZX2T", "instruction": "i need a long sleeved sleep set in a 4x-large in the color mt7308", "attributes": ["long sleeve", "elastic waistband", "elastic waist", "relaxed fit"], "options": ["color: mt7308", "size: 4x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["mt7308", "4x-large"], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY13P7M", "worker_id": "A2ECRNQ3X5LEXD"}], "B003Y5CI7Q": [{"asin": "B003Y5CI7Q", "instruction": "i want a 12 pack ass kickin' habanero microwave popcorn bags gift set.", "attributes": ["ready eat", "individually wrapped", "gift set"], "options": ["size: 12 pack"], "instruction_attributes": ["gift set"], "instruction_options": ["12 pack"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWBONFX", "worker_id": "A2RBF3IIJP15IH"}], "B07PYQKFZV": [{"asin": "B07PYQKFZV", "instruction": "i want an oxidized brass capital lighting 330311xb sedona industrial metal dome pendant light.", "attributes": ["pendant light", "dining room", "living room"], "options": ["color: oxidized brass", "size: 17\" width"], "instruction_attributes": ["pendant light"], "instruction_options": ["oxidized brass"], "assignment_id": "3K9FOBBF2STEN6YYPZLRPXXHT76LNW", "worker_id": "A2RBF3IIJP15IH"}], "B09KH12KSK": [{"asin": "B09KH12KSK", "instruction": "i want anti aging collagen cream for face.", "attributes": ["anti aging", "clinically proven", "long lasting", "easy use", "hyaluronic acid", "coconut oil", "fine lines"], "options": [""], "instruction_attributes": ["anti aging"], "instruction_options": [], "assignment_id": "3WRFBPLXRLYX7289JTHRTB30TL3N38", "worker_id": "A2RBF3IIJP15IH"}], "B09FKBJ4TZ": [{"asin": "B09FKBJ4TZ", "instruction": "let me see for a medium size by innoviera brand hoodies for women, long sleeve check for halloween pumpkin", "attributes": ["long sleeve", "fashion design"], "options": ["color: #q ny", "size: medium"], "instruction_attributes": ["long sleeve"], "instruction_options": ["medium"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYPWOZ8", "worker_id": "A15IJ20C3R4HUO"}], "B01C4Z2P2Y": [{"asin": "B01C4Z2P2Y", "instruction": "i would like a pair of brown size 7 shoes with a rubber sole.", "attributes": ["water resistant", "slip resistant", "rubber sole", "lace closure"], "options": ["color: 1212brown", "size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["1212brown", "7"], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL4DH59", "worker_id": "A1WS884SI0SLO4"}], "B098MQD3J4": [{"asin": "B098MQD3J4", "instruction": "i need some hair drying towels that have a grid lines pattern for drying hair.", "attributes": ["hair salon", "dry hair"], "options": ["color: electronic computer network grid lines pattern"], "instruction_attributes": ["dry hair"], "instruction_options": ["electronic computer network grid lines pattern"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L493QRX", "worker_id": "A2ECRNQ3X5LEXD"}], "B00MWKB122": [{"asin": "B00MWKB122", "instruction": "i am looking for a framed hand painted abstract oil painting to hang in my living room.", "attributes": ["hand painted", "ready hang", "living room", "dining room"], "options": [""], "instruction_attributes": ["hand painted", "living room"], "instruction_options": [], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KNNJLC", "worker_id": "A1EREKSZAA9V7B"}], "B092385ZVJ": [{"asin": "B092385ZVJ", "instruction": "i want to buy some meat stick snacks in spicy jalapeno venison flavor. it needs to be a 1 oz six pack.", "attributes": ["sugar free", "grass fed", "gluten free", "high protein", "low carb", "natural ingredients", "0g trans"], "options": ["flavor name: spicy jalapeno venison", "size: 1oz-6 pack"], "instruction_attributes": ["grass fed"], "instruction_options": ["spicy jalapeno venison", "1oz-6 pack"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ2750170CP43", "worker_id": "A2YNPKYEFDZ6C9"}], "B09NNVZCGC": [{"asin": "B09NNVZCGC", "instruction": "i want a high power bluetooth speakers with quality bass. pick a pink one.", "attributes": ["high power", "hands free", "high definition"], "options": ["color: pink"], "instruction_attributes": ["high power"], "instruction_options": ["pink"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU72157H", "worker_id": "A1NF6PELRKACS9"}], "B08JVNDZ3S": [{"asin": "B08JVNDZ3S", "instruction": "i am looking for a holiday cocoa mug which can be a perfect gift for valentines day.", "attributes": ["gift set", "valentine day", "perfect gift", "gift basket"], "options": ["style: holiday cocoa mug"], "instruction_attributes": ["valentine day", "perfect gift"], "instruction_options": ["holiday cocoa mug"], "assignment_id": "3IQ1VMJRY4UC2L30RYDWYIMMU6SA96", "worker_id": "ASWFLI3N8X72G"}], "B0776TDH1V": [{"asin": "B0776TDH1V", "instruction": "i need a 2 pack of smartmouth activated mouthwash for bad breath.", "attributes": ["alcohol free", "long lasting", "fresh breath", "bad breath"], "options": ["item package quantity: 2"], "instruction_attributes": ["bad breath"], "instruction_options": ["2"], "assignment_id": "3IXQG4FA248HLV8SXCDSTT6SCO29BP", "worker_id": "A2RBF3IIJP15IH"}], "B09BHMMG4S": [{"asin": "B09BHMMG4S", "instruction": "i want a high definition 3d video projector.", "attributes": ["dual band", "high definition", "stereo sound"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4CKL8L", "worker_id": "A2RBF3IIJP15IH"}], "B09LR3RQ1M": [{"asin": "B09LR3RQ1M", "instruction": "i want a large hoefirm women's v neck elegant velvet wrap long sleeve.", "attributes": ["wash cold", "unique design", "high waist", "long sleeve"], "options": ["color: 01# blackish green", "size: large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["large"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UE4A3B", "worker_id": "A2RBF3IIJP15IH"}], "B074JZJ2Y4": [{"asin": "B074JZJ2Y4", "instruction": "i want large machine washable belaroi plus size tops for women.", "attributes": ["hand wash", "machine wash", "laundry bag", "daily wear"], "options": ["color: flower17", "size: large"], "instruction_attributes": ["machine wash"], "instruction_options": ["large"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R64KSZ", "worker_id": "A2RBF3IIJP15IH"}], "B08K2YWJ5L": [{"asin": "B08K2YWJ5L", "instruction": "i want a black and high quality cenglings womens cowl neck sweatshirt.", "attributes": ["high quality", "quality materials"], "options": ["color: black", "size: medium"], "instruction_attributes": ["high quality"], "instruction_options": ["black"], "assignment_id": "3B4YI393VK6Y7WLTH4ZE0DLI8Z2SS7", "worker_id": "A2RBF3IIJP15IH"}], "B09Q3KFFTL": [{"asin": "B09Q3KFFTL", "instruction": "i am looking for a gray shirt that is xx-large and has a slim fit.", "attributes": ["slim fit", "short sleeve", "contrast color", "regular fit", "long sleeve", "gym workout"], "options": ["color: gray", "size: xx-large"], "instruction_attributes": ["slim fit"], "instruction_options": ["gray", "xx-large"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFF99VK", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RJRYVW8": [{"asin": "B07RJRYVW8", "instruction": "i am looking for a carrying case for my canon.", "attributes": ["fast charging", "carrying case"], "options": ["size: for canon"], "instruction_attributes": ["carrying case"], "instruction_options": ["for canon"], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DAAWDK", "worker_id": "A2ECRNQ3X5LEXD"}], "B08996HWW6": [{"asin": "B08996HWW6", "instruction": "i would like some hands free earbud handphones.", "attributes": ["dust proof", "hands free"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "3634BBTX0Z409DDB6851PCWGABRIF7", "worker_id": "A1WS884SI0SLO4"}], "B06XX9X4XG": [{"asin": "B06XX9X4XG", "instruction": "i am looking for dining room chandelier lighting with a polished nickel finish.", "attributes": ["nickel finish", "clear glass", "dining room"], "options": ["color: polished nickel", "size: 6-light"], "instruction_attributes": ["nickel finish", "dining room"], "instruction_options": ["polished nickel"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K6E12J", "worker_id": "AJDQGOTMB2D80"}], "B073QH76W7": [{"asin": "B073QH76W7", "instruction": "i am looking for along lasting carrying case for a speaker that comes in size 4.", "attributes": ["long lasting", "carrying case"], "options": ["color: travel case - size 4"], "instruction_attributes": ["long lasting", "carrying case"], "instruction_options": ["travel case - size 4"], "assignment_id": "3IOEN3P9SITTQEO2X8HR372H0AV61I", "worker_id": "A114NK7T5673GK"}], "B08BX7XBGN": [{"asin": "B08BX7XBGN", "instruction": "i would like a samsung galaxy note 20 that is fast charging and green", "attributes": ["long lasting", "fast charging"], "options": ["color: mystic green", "pattern name: cell phone + case - black", "style: note 20 ultra 5g"], "instruction_attributes": ["fast charging"], "instruction_options": ["mystic green", "note 20 ultra 5g"], "assignment_id": "31N2WW6R920LJAVSL5YEL6URRUVF37", "worker_id": "A2ECRNQ3X5LEXD"}], "B082DVCGG2": [{"asin": "B082DVCGG2", "instruction": "i need to buy a pack of shower brushes with long handles.", "attributes": ["long lasting", "high quality", "long handle"], "options": [""], "instruction_attributes": ["long handle"], "instruction_options": [], "assignment_id": "3V0Z7YWSI9ALUPLZHKPDKISL9ANV24", "worker_id": "AR9AU5FY1S3RO"}], "B0921XCPZF": [{"asin": "B0921XCPZF", "instruction": "i am looking for a white colored and high gloss tv stand for a 60 inch flat screen tv.", "attributes": ["white item", "storage space", "high gloss", "living room", "dining room"], "options": [""], "instruction_attributes": ["white item", "high gloss"], "instruction_options": [], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3LBLZA", "worker_id": "AJDQGOTMB2D80"}], "B08NZ75CJN": [{"asin": "B08NZ75CJN", "instruction": "i would like to buy a 25\" h tv stand that has a sturdy steel frame and is light rustic oak in color.", "attributes": ["coated steel", "steel frame"], "options": ["color: light rustic oak", "size: 25\" h tv stand + 18\" h coffee table"], "instruction_attributes": ["steel frame"], "instruction_options": ["light rustic oak", "25\" h tv stand + 18\" h coffee table"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X42PG5", "worker_id": "A114NK7T5673GK"}], "B09BCSRVKM": [{"asin": "B09BCSRVKM", "instruction": "i want navy haenpisy mens sweat pants for gym workouts.", "attributes": ["moisture wicking", "drawstring closure", "elastic waistband", "elastic waist", "gym workout"], "options": ["color: navy", "size: 3x-large"], "instruction_attributes": ["gym workout"], "instruction_options": ["navy"], "assignment_id": "34T446B1CBOIZ6CLBGQUB2BHR5M0CP", "worker_id": "A2RBF3IIJP15IH"}], "B09MFDPHZM": [{"asin": "B09MFDPHZM", "instruction": "i need an easy to install shower caddy tension pole.", "attributes": ["height adjustable", "easy install", "stainless steel", "storage space", "living room"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3HMIGG0U4WGDKYIT2CLY189IDRE8YQ", "worker_id": "A2RBF3IIJP15IH"}], "B08YWVX5LL": [{"asin": "B08YWVX5LL", "instruction": "i would like a blue medium sized light weight tank top.", "attributes": ["light weight", "unique design"], "options": ["color: a 1 -blue", "size: medium"], "instruction_attributes": ["light weight"], "instruction_options": ["a 1 -blue", "medium"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE20DQGM", "worker_id": "A1WS884SI0SLO4"}], "B08C742D94": [{"asin": "B08C742D94", "instruction": "i am looking 1 pack of low carb soy free gmo free keto friendly peppermint swirl flavor meal replacement drinks", "attributes": ["low carb", "plant based", "gmo free", "soy free", "keto friendly", "non gmo"], "options": ["flavor name: peppermint swirl", "size: 1 servings (pack of 1)"], "instruction_attributes": ["low carb", "gmo free", "soy free", "keto friendly"], "instruction_options": ["peppermint swirl", "1 servings (pack of 1)"], "assignment_id": "3OWEPKL08KMF8L9WL5KH6SFGYNF7NN", "worker_id": "A3N9ZYQAESNFQH"}], "B013LLVO1I": [{"asin": "B013LLVO1I", "instruction": "i am looking for a gluten free, non gmo granola loaf, about 2.5 pounds made by bakery on main. prefer either cranberry almond maple or cranberry cashew. most likely in the grocery/gourmet foods aisle.", "attributes": ["non gmo", "low sodium", "gluten free", "dairy free"], "options": ["flavor name: cranberry cashew", "size: 1.1 ounce (pack of 50)"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["cranberry cashew"], "assignment_id": "39U1BHVTDW1V2FDTGP332A9SI3NT3D", "worker_id": "A3RGIKEI8JS2QG"}], "B09QSVTP34": [{"asin": "B09QSVTP34", "instruction": "i want a pink bpa free ice roller for face and eye.", "attributes": ["high quality", "leak proof", "bpa free", "green tea", "fine lines"], "options": ["color: pink"], "instruction_attributes": ["bpa free"], "instruction_options": ["pink"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57D5I9O", "worker_id": "A2RBF3IIJP15IH"}], "B084Q7G2HN": [{"asin": "B084Q7G2HN", "instruction": "i need a red patio set that has a steel frame.", "attributes": ["easy clean", "steel frame", "tempered glass"], "options": ["color: red"], "instruction_attributes": ["steel frame"], "instruction_options": ["red"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L49ZQRT", "worker_id": "A2ECRNQ3X5LEXD"}], "B08BDW6D4V": [{"asin": "B08BDW6D4V", "instruction": "i want to find 18 decorated shortbread cookies that have been individually wrapped and placed in a gift basket.", "attributes": ["baked fresh", "individually wrapped", "gift basket"], "options": ["number of items: 18"], "instruction_attributes": ["individually wrapped", "gift basket"], "instruction_options": ["18"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMHA1JG", "worker_id": "A345TDMHP3DQ3G"}], "B083X4GW6Y": [{"asin": "B083X4GW6Y", "instruction": "i want to find a 1-pound box of gluten free muffin mix, and it should come in a pack of three.", "attributes": ["gluten free", "easy prepare"], "options": ["size: 1 pound (pack of 3)"], "instruction_attributes": ["gluten free"], "instruction_options": ["1 pound (pack of 3)"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM96934GS", "worker_id": "A345TDMHP3DQ3G"}], "B08LMZFVW7": [{"asin": "B08LMZFVW7", "instruction": "i want some rice crispy treat made with simple ingredients. i want the kind that are individually wrapped", "attributes": ["individually wrapped", "non gmo", "gluten free", "simple ingredients"], "options": [""], "instruction_attributes": ["individually wrapped", "simple ingredients"], "instruction_options": [], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMO9XEZ", "worker_id": "A32JEH06T23HDF"}], "B08L8Z6N16": [{"asin": "B08L8Z6N16", "instruction": "i am interested in a rose gold compact mirror.", "attributes": ["double sided", "rose gold"], "options": ["color: gold"], "instruction_attributes": ["rose gold"], "instruction_options": ["gold"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79O8H1R", "worker_id": "A2ECRNQ3X5LEXD"}], "B07C55LZRJ": [{"asin": "B07C55LZRJ", "instruction": "look for a sampler of spicy masala black chai tea that has natural flavors and ingredients.", "attributes": ["keto friendly", "low carb", "natural flavors", "natural ingredients"], "options": ["flavor name: spicy masala chai black tea"], "instruction_attributes": ["natural flavors", "natural ingredients"], "instruction_options": ["spicy masala chai black tea"], "assignment_id": "34QN5IT0TA1GN3M8U4AP9GFY1E308L", "worker_id": "AR9AU5FY1S3RO"}], "B0764HJ965": [{"asin": "B0764HJ965", "instruction": "miss jones baking organic buttercream frosting is my favorite ! please i want dairy free, soy free and pack of 2 with great value.", "attributes": ["nut free", "soy free", "dairy free", "non gmo", "gluten free", "artificial colors"], "options": ["flavor: cream cheese", "size: pack of 2"], "instruction_attributes": ["soy free", "dairy free"], "instruction_options": ["pack of 2"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68ELA4H", "worker_id": "A15IJ20C3R4HUO"}], "B09CTF9RZQ": [{"asin": "B09CTF9RZQ", "instruction": "i want rainbow white non slip ciadoon mushroom shoes.", "attributes": ["non slip", "rubber sole", "daily wear"], "options": ["color: rainbow white", "size: 15.5 women | 13 men"], "instruction_attributes": ["non slip"], "instruction_options": ["rainbow white"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYOI9QG", "worker_id": "A2RBF3IIJP15IH"}], "B0743MP28H": [{"asin": "B0743MP28H", "instruction": "i would like 100 grams of non gmo peppercorns.", "attributes": ["non gmo", "gluten free", "natural ingredients"], "options": ["size: 3.52 ounce (100 gram)"], "instruction_attributes": ["non gmo"], "instruction_options": ["3.52 ounce (100 gram)"], "assignment_id": "3LOZAJ85YONDYEQUHZQV83P6PLR2XA", "worker_id": "A2ECRNQ3X5LEXD"}], "B07H3MZQGJ": [{"asin": "B07H3MZQGJ", "instruction": "i am looking for a clear portable makeup bag that is easy to clean.", "attributes": ["easy clean", "eye shadow"], "options": ["color: clear", "size: m+m"], "instruction_attributes": ["easy clean"], "instruction_options": ["clear"], "assignment_id": "3DZQRBDBSWPUNF0ERPYDS5D6GK93SY", "worker_id": "A1EREKSZAA9V7B"}], "B08GKDQ398": [{"asin": "B08GKDQ398", "instruction": "i need brown ballet shoes that have a synthetic sole and are size 5.5 for women", "attributes": ["leather sole", "synthetic sole"], "options": ["color: brown", "size: 5.5 women | 5 men"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["brown", "5.5 women | 5 men"], "assignment_id": "3WJEQKOXAJCUDG05NLY3JC43WTY1AG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08S9V2LSL": [{"asin": "B08S9V2LSL", "instruction": "i would like a pair of size six fossil boots that are machine washable.", "attributes": ["light weight", "machine washable", "memory foam"], "options": ["color: fossil", "size: 6"], "instruction_attributes": ["machine washable"], "instruction_options": ["fossil", "6"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYOBFXK", "worker_id": "A1WS884SI0SLO4"}], "B088643Z84": [{"asin": "B088643Z84", "instruction": "i am looking for an easy to install brushed nickel 4 light sconce for the bathroom.", "attributes": ["easy install", "vanity light", "brushed nickel", "light fixture", "dining room", "living room"], "options": ["color: chrome-4w", "size: wall light-4 light"], "instruction_attributes": ["easy install", "brushed nickel"], "instruction_options": ["wall light-4 light"], "assignment_id": "354P56DE9VDCOY11T1135MPMLM9S76", "worker_id": "A1EREKSZAA9V7B"}], "B00NPA92SI": [{"asin": "B00NPA92SI", "instruction": "i want to buy an eco-friendly soy wax candle.", "attributes": ["eco friendly", "soy wax"], "options": [""], "instruction_attributes": ["eco friendly", "soy wax"], "instruction_options": [], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFT73E4", "worker_id": "AR9AU5FY1S3RO"}], "B0979P65QG": [{"asin": "B0979P65QG", "instruction": "i want to find an office chair featuring white faux leather, a rose gold frame, and great lumbar support.", "attributes": ["height adjustable", "faux leather", "lumbar support"], "options": ["color: white faux leather | rose gold frame"], "instruction_attributes": ["faux leather", "lumbar support"], "instruction_options": ["white faux leather | rose gold frame"], "assignment_id": "3I33IC7ZWQC121I16PYHOVE8O0T2AH", "worker_id": "A345TDMHP3DQ3G"}], "B07F2K1QJ4": [{"asin": "B07F2K1QJ4", "instruction": "i would like a black 8 x wide construction shoe that has a rubber sole.", "attributes": ["slip resistant", "moisture wicking", "rubber sole"], "options": ["color: black", "size: 8 x-wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black", "8 x-wide"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKAWENT", "worker_id": "A1WS884SI0SLO4"}], "B07JMPN91D": [{"asin": "B07JMPN91D", "instruction": "i would like a pair of gold 30w x 34l pants that i can machine wash.", "attributes": ["slim fit", "machine wash", "cotton spandex"], "options": ["color: gold", "size: 30w x 34l"], "instruction_attributes": ["machine wash"], "instruction_options": ["gold", "30w x 34l"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDQYZQB", "worker_id": "A1WS884SI0SLO4"}], "B0929737FS": [{"asin": "B0929737FS", "instruction": "i want a q color long lasting lipstick made with natural ingredients.", "attributes": ["long lasting", "natural ingredients"], "options": ["color: q"], "instruction_attributes": ["long lasting", "natural ingredients"], "instruction_options": ["q"], "assignment_id": "373ERPL3YZINLHYVRF4ZK8C8OHDTRR", "worker_id": "ASWFLI3N8X72G"}], "B09FKJZ14L": [{"asin": "B09FKJZ14L", "instruction": "i need a seventeen ounce sprayer bottle with a fine mist. i want a black one.", "attributes": ["easy use", "fine mist"], "options": ["color: black", "size: 17 ounce"], "instruction_attributes": ["fine mist"], "instruction_options": ["black", "17 ounce"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXS7JAW2", "worker_id": "AR9AU5FY1S3RO"}], "B07JN3DYR3": [{"asin": "B07JN3DYR3", "instruction": "i need closed toe flats that are blue in a 7 wide.", "attributes": ["closed toe", "rubber sole"], "options": ["color: medium blue", "size: 7 wide"], "instruction_attributes": ["closed toe"], "instruction_options": ["medium blue", "7 wide"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0SMARH", "worker_id": "A2ECRNQ3X5LEXD"}], "B08ZJWV75S": [{"asin": "B08ZJWV75S", "instruction": "find me this old fashioned maraschino cherry cocktail syrup. pick a 12.7 fluid oz one.", "attributes": ["old fashioned", "easy use"], "options": ["flavor name: maraschino cherry", "size: 12.7 fl oz (pack of 1)"], "instruction_attributes": ["old fashioned"], "instruction_options": ["maraschino cherry", "12.7 fl oz (pack of 1)"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOH9L9F", "worker_id": "A1NF6PELRKACS9"}], "B01GHFBKKA": [{"asin": "B01GHFBKKA", "instruction": "i am looking for a fluoride free toothpaste with clinically proven. also choose 3.75 ounce in size", "attributes": ["non toxic", "fluoride free", "clinically proven", "teeth whitening"], "options": ["size: 3.75 ounce (pack of 1)"], "instruction_attributes": ["fluoride free", "clinically proven"], "instruction_options": ["3.75 ounce (pack of 1)"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFK9MEO", "worker_id": "A2HMEGTAFO0CS8"}], "B096XX5CGP": [{"asin": "B096XX5CGP", "instruction": "i need a hair silicone fiber powder applicator for hair loss, with a pump nozzle.", "attributes": ["easy use", "hair extensions", "hair loss"], "options": [""], "instruction_attributes": ["hair loss"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTRL7LP", "worker_id": "AK3JMCIGU8MLU"}], "B07N1X6548": [{"asin": "B07N1X6548", "instruction": "i want to find a 3-pack of gluten free hot dog buns.", "attributes": ["gluten free", "nut free", "dairy free", "simple ingredients"], "options": ["size: 3 pack"], "instruction_attributes": ["gluten free"], "instruction_options": ["3 pack"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2MGYN7", "worker_id": "A345TDMHP3DQ3G"}], "B087V3GK1Q": [{"asin": "B087V3GK1Q", "instruction": "get me a long handled pink exfoliating brush.", "attributes": ["non slip", "high quality", "long handle"], "options": ["color: pink"], "instruction_attributes": ["long handle"], "instruction_options": ["pink"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UTZ0YS", "worker_id": "AR9AU5FY1S3RO"}], "B07JJCNH26": [{"asin": "B07JJCNH26", "instruction": "i want a sulfate and paraben free repairing hair oil with the coconut monoi scent.", "attributes": ["alcohol free", "sulfate free", "paraben free", "argan oil", "damaged hair", "dry hair"], "options": ["scent: coconut monoi", "size: 2 fl oz (pack of 2)"], "instruction_attributes": ["sulfate free", "paraben free"], "instruction_options": ["coconut monoi"], "assignment_id": "3I02618YABGH9HX5ESQKK9YV6DVPUL", "worker_id": "A1NF6PELRKACS9"}], "B01NBAXU4T": [{"asin": "B01NBAXU4T", "instruction": "i am looking for casual pants that are machine washable in the color loden and are size 48w by 32 l.", "attributes": ["machine wash", "imported zipper"], "options": ["color: loden", "size: 48w x 32l"], "instruction_attributes": ["machine wash"], "instruction_options": ["loden", "48w x 32l"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU7ZMCW", "worker_id": "A2ECRNQ3X5LEXD"}], "B0877B4MKC": [{"asin": "B0877B4MKC", "instruction": "i want a walr, vr bluetooth remote controller and virtual reality googles with included batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPNTWFY", "worker_id": "A2RBF3IIJP15IH"}], "B0846853TF": [{"asin": "B0846853TF", "instruction": "i would like to have a youth extra small red t shirt that is made of heather cotton.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: red", "fit type: youth", "size: x-small"], "instruction_attributes": ["heathers cotton", "cotton heather"], "instruction_options": ["red", "youth", "x-small"], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53V8GK9", "worker_id": "A1WS884SI0SLO4"}], "B085Y2KVND": [{"asin": "B085Y2KVND", "instruction": "i want open toe gibobby sandals for women in size 8.", "attributes": ["open toe", "anti slip", "high heel", "ankle strap"], "options": ["color: z1-multicolor", "size: 8"], "instruction_attributes": ["open toe"], "instruction_options": ["8"], "assignment_id": "3ATPCQ38JJKR3MB8ZA5CXZFD3EBYAF", "worker_id": "A2RBF3IIJP15IH"}], "B07V9WP3JV": [{"asin": "B07V9WP3JV", "instruction": "i'm looking for a nut free kosher certified dried fruits basket to be given as a gift.", "attributes": ["nut free", "kosher certified", "perfect gift"], "options": [""], "instruction_attributes": ["nut free", "kosher certified"], "instruction_options": [], "assignment_id": "3TR2532VI040LV46NXNX77Y3USJJ6P", "worker_id": "A20DUVEOH6A7KW"}], "B09HWVCGBH": [{"asin": "B09HWVCGBH", "instruction": "i want a loose fitting black pullover that is in a large.", "attributes": ["loose fit", "wash cold", "hand wash"], "options": ["color: z0104black", "size: large"], "instruction_attributes": ["loose fit"], "instruction_options": ["z0104black", "large"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23J9DSFT", "worker_id": "A2ECRNQ3X5LEXD"}], "B074VG3CD5": [{"asin": "B074VG3CD5", "instruction": "i want to find liquid foundation makeup in the classic ivory color. it needs to last for a long time and ideally, i can get a 3-pack of containers with a single fluid ounce.", "attributes": ["highly pigmented", "long lasting"], "options": ["color: 120 classic ivory", "size: 1 fl oz (pack of 3)"], "instruction_attributes": ["long lasting"], "instruction_options": ["120 classic ivory", "1 fl oz (pack of 3)"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU72C75U", "worker_id": "A345TDMHP3DQ3G"}], "B09Q7V929M": [{"asin": "B09Q7V929M", "instruction": "i am looking for some x-large leggings that are moisture wicking and the color #25.", "attributes": ["day comfort", "quick drying", "moisture wicking"], "options": ["color: #25", "size: x-large"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["#25", "x-large"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRSVPW7", "worker_id": "A2ECRNQ3X5LEXD"}], "B08XP9P22K": [{"asin": "B08XP9P22K", "instruction": "i need some high waisted yoga shorts that are gray and in a xx-large.", "attributes": ["moisture wicking", "high waist"], "options": ["color: gray-a", "size: xx-large"], "instruction_attributes": ["high waist"], "instruction_options": ["gray-a", "xx-large"], "assignment_id": "351SEKWQSBRP7CP60H83T50CF7DDMP", "worker_id": "A2ECRNQ3X5LEXD"}], "B01LXJY21J": [{"asin": "B01LXJY21J", "instruction": "i need 3 tongue cleaners for bad breath.", "attributes": ["oral hygiene", "bad breath"], "options": ["design: 3 pc round+bag"], "instruction_attributes": ["bad breath"], "instruction_options": ["3 pc round+bag"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGJ40OL", "worker_id": "A2ECRNQ3X5LEXD"}, {"asin": "B01LXJY21J", "instruction": "i need a bag for a tongue cleaner for bad breath", "attributes": ["oral hygiene", "bad breath"], "options": ["design: pipe+round+bag"], "instruction_attributes": ["bad breath"], "instruction_options": ["pipe+round+bag"], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KMUHUH", "worker_id": "A2ECRNQ3X5LEXD"}], "B075FVC51L": [{"asin": "B075FVC51L", "instruction": "i need a living room throw that is smoke colored.", "attributes": ["queen size", "super soft", "twin size", "machine washable", "king size", "living room"], "options": ["color: smoke", "size: throw"], "instruction_attributes": ["living room"], "instruction_options": ["smoke", "throw"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO2F2CI", "worker_id": "A2ECRNQ3X5LEXD"}], "B09T5GRJR6": [{"asin": "B09T5GRJR6", "instruction": "i would like a high performance tablet.", "attributes": ["high performance", "4g lte"], "options": [""], "instruction_attributes": ["high performance"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKICD78", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q3GXQYP": [{"asin": "B09Q3GXQYP", "instruction": "get me an extra extra large mint green g-string. make sure it's machine washable.", "attributes": ["low rise", "day comfort", "hand wash", "machine wash"], "options": ["color: mint green", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["mint green", "xx-large"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC3HUKH", "worker_id": "AR9AU5FY1S3RO"}], "B00U0VVSCS": [{"asin": "B00U0VVSCS", "instruction": "please get me a three pack of jelly with natural ingredients.", "attributes": ["high fructose", "natural ingredients"], "options": ["size: .3 pack - 1.12 pound (pack of 2)"], "instruction_attributes": ["natural ingredients"], "instruction_options": [".3 pack - 1.12 pound (pack of 2)"], "assignment_id": "33JKGHPFYN4YTOGJPBM6PAC6TC1NM5", "worker_id": "AR9AU5FY1S3RO"}], "B08KVZP9LB": [{"asin": "B08KVZP9LB", "instruction": "i want to find a white and pink case for my apple watch. it needs to be 40 millimeters long and be compatible with the series 6.", "attributes": ["compatible apple", "case cover", "wireless charging"], "options": ["color: white+pink", "size: 40mm (for se | series 6 | 5 | 4 )"], "instruction_attributes": ["compatible apple", "case cover"], "instruction_options": ["white+pink", "40mm (for se | series 6 | 5 | 4 )"], "assignment_id": "39LOEL67O3FC4VL5DRS8BED54QO38K", "worker_id": "A345TDMHP3DQ3G"}], "B089B658NP": [{"asin": "B089B658NP", "instruction": "i need long lasting and wireless charging buds live in mystic black color which also supports active noise cancelling.", "attributes": ["long lasting", "noise cancelling", "wireless charging"], "options": ["color: mystic black", "style: buds live"], "instruction_attributes": ["long lasting", "noise cancelling", "wireless charging"], "instruction_options": ["mystic black", "buds live"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KDRPD2", "worker_id": "ASWFLI3N8X72G"}], "B097MMHTM2": [{"asin": "B097MMHTM2", "instruction": "i am looking for a pair of blue women's faux fur slippers.", "attributes": ["winter warm", "faux fur"], "options": ["color: blue", "size: 37-38"], "instruction_attributes": ["faux fur"], "instruction_options": ["blue"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOXSO7R", "worker_id": "A1EREKSZAA9V7B"}], "B091PWDWRH": [{"asin": "B091PWDWRH", "instruction": "i want a brown and cruelty free moira lip exposure pencil.", "attributes": ["highly pigmented", "cruelty free"], "options": ["color: 014 real brown"], "instruction_attributes": ["cruelty free"], "instruction_options": ["014 real brown"], "assignment_id": "3N4BPTXIOJ2GYQ0P10LCOSCWC3PKUF", "worker_id": "A2RBF3IIJP15IH"}], "B09NC73FQL": [{"asin": "B09NC73FQL", "instruction": "i would like a pink shoe with a high heel for my size 8 foot.", "attributes": ["closed toe", "high heel", "ankle strap"], "options": ["color: z2 pink", "size: 8"], "instruction_attributes": ["high heel"], "instruction_options": ["z2 pink", "8"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QPJOXW", "worker_id": "A1WS884SI0SLO4"}], "B089KRMBKR": [{"asin": "B089KRMBKR", "instruction": "i am interested in a remote control that has batteries included", "attributes": ["batteries included", "easy use", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0TJW5J", "worker_id": "A2ECRNQ3X5LEXD"}], "B07ZC95D4Q": [{"asin": "B07ZC95D4Q", "instruction": "i want a gold plated and braided 4k hdmi cable.", "attributes": ["gold plated", "high speed", "blu ray"], "options": ["color: braided", "size: 6.6 feet"], "instruction_attributes": ["gold plated"], "instruction_options": ["braided"], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTPBKTH", "worker_id": "A2RBF3IIJP15IH"}], "B07KN62K42": [{"asin": "B07KN62K42", "instruction": "i need a pink iphone 7 flip case that has wireless charging capabilities.", "attributes": ["compatible apple", "wireless charging"], "options": ["color: pink-iphone 7 | 8 | se2", "size: iphone 7 | 8 | se2"], "instruction_attributes": ["wireless charging"], "instruction_options": ["pink-iphone 7 | 8 | se2"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRKRFM0", "worker_id": "A2ECRNQ3X5LEXD"}], "B081VP285Q": [{"asin": "B081VP285Q", "instruction": "i want to buy some chunky red glitter. make sure it's non-toxic and eco-friendly.", "attributes": ["eco friendly", "easy apply", "non toxic", "long lasting", "rose gold"], "options": ["color: red", "size: chunky (1 | 40\" 0.025\" 0.6mm)"], "instruction_attributes": ["eco friendly", "non toxic"], "instruction_options": ["red", "chunky (1 | 40\" 0.025\" 0.6mm)"], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOI10FN", "worker_id": "AR9AU5FY1S3RO"}], "B09R96BLLY": [{"asin": "B09R96BLLY", "instruction": "i am looking for plant based, and gluten free snack chips. pick the 0.9 ounce pack of 48.", "attributes": ["low calorie", "grain free", "plant based", "gluten free", "nut free", "soy free", "dairy free", "non gmo", "natural ingredients", "simple ingredients"], "options": ["size: 0.9 ounce (pack of 48)"], "instruction_attributes": ["plant based", "gluten free"], "instruction_options": ["0.9 ounce (pack of 48)"], "assignment_id": "3OE22WJIGTY29TYKE559KEO5B8TUQR", "worker_id": "A31PW970Z2PC5P"}], "B09NR7N82D": [{"asin": "B09NR7N82D", "instruction": "he was wearing a burgundy polyester spandex and size large.", "attributes": ["polyester spandex", "fashion design", "elastic waistband"], "options": ["size: large"], "instruction_attributes": ["polyester spandex"], "instruction_options": [], "assignment_id": "3X3OR7WPZAATKZBUJXW8707M4CK8L8", "worker_id": "ASL9LVC97FUCZ"}], "B08LGVLS3D": [{"asin": "B08LGVLS3D", "instruction": "i am looking for a glass screen protector that is compatible with the 38mm apple watch case.", "attributes": ["compatible apple", "glass screen"], "options": ["color: black | clear | silver", "size: 38 mm"], "instruction_attributes": ["compatible apple", "glass screen"], "instruction_options": ["38 mm"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I7PDF8", "worker_id": "AJDQGOTMB2D80"}], "B09GPSGTNP": [{"asin": "B09GPSGTNP", "instruction": "i want black liueong women's knee high riding boots.", "attributes": ["knee high", "day comfort", "high heel", "rubber sole", "daily wear"], "options": ["color: black", "size: 7.5"], "instruction_attributes": ["knee high"], "instruction_options": ["black"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXS7KWAP", "worker_id": "A2RBF3IIJP15IH"}], "B07KQ1JFCF": [{"asin": "B07KQ1JFCF", "instruction": "i am looking for a button closure down shirt in slim fit which is machine washable. also choose gold color and large size.", "attributes": ["hand wash", "winter warm", "machine washable", "slim fit", "machine wash", "button closure", "long sleeve", "dry clean", "daily wear"], "options": ["color: gold", "size: large"], "instruction_attributes": ["machine washable", "slim fit", "button closure"], "instruction_options": ["gold", "large"], "assignment_id": "3R0T90IZ13MFAAN6PIFXWUYXYLLCGC", "worker_id": "A2HMEGTAFO0CS8"}], "B07MT1WYXV": [{"asin": "B07MT1WYXV", "instruction": "i am interested in a youth classic fit shirt that is small and is black in color.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: black", "fit type: youth", "size: small"], "instruction_attributes": ["classic fit"], "instruction_options": ["black", "youth", "small"], "assignment_id": "3WETL7AQW4ITHD23FTL5ZU3E2ZC537", "worker_id": "A2ECRNQ3X5LEXD"}], "B01K8IZGWU": [{"asin": "B01K8IZGWU", "instruction": "i want small machine washable stacy adams men's sleep pants.", "attributes": ["moisture wicking", "machine wash", "drawstring waist", "polyester spandex"], "options": ["color: army green", "size: small"], "instruction_attributes": ["machine wash"], "instruction_options": ["small"], "assignment_id": "30JNVC0ORKUX47S0E6YA1ZZFH18HQW", "worker_id": "A2RBF3IIJP15IH"}], "B09P885PTB": [{"asin": "B09P885PTB", "instruction": "i am looking for mens long sleeve athletic sweatshirt size xx-large.", "attributes": ["winter warm", "long sleeve", "short sleeve", "soft material"], "options": ["color: t01#gray", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["xx-large"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYMT6MV", "worker_id": "A1EREKSZAA9V7B"}], "B07Y832BSX": [{"asin": "B07Y832BSX", "instruction": "find me a high definition waterproof case for my iphone. it could be aqua blue or black in color.", "attributes": ["high definition", "wireless charging"], "options": ["color: aqua blue | black"], "instruction_attributes": ["high definition"], "instruction_options": ["aqua blue | black"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMHXIZ9", "worker_id": "A1NF6PELRKACS9"}], "B08FST7BFQ": [{"asin": "B08FST7BFQ", "instruction": "i would like to buy a white faux fur chair for my living room.", "attributes": ["metal legs", "living room"], "options": ["color: white", "material type: faux fur"], "instruction_attributes": ["living room"], "instruction_options": ["white", "faux fur"], "assignment_id": "3FUI0JHJP88Q3YFZ1AXCKX5UO4D339", "worker_id": "A1WS884SI0SLO4"}], "B07SQGHJ63": [{"asin": "B07SQGHJ63", "instruction": "i am searching for rubber sole loafers with 7.5-8 size and royal blue color", "attributes": ["non slip", "rubber sole", "lace closure"], "options": ["color: royal blue", "size: 7.5-8"], "instruction_attributes": ["rubber sole"], "instruction_options": ["royal blue", "7.5-8"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602SX591", "worker_id": "A258PTOZ3D2TQR"}], "B07GXTFHMW": [{"asin": "B07GXTFHMW", "instruction": "i need to buy an art print for the living room. look for one that's ready to hang, thirty-six inches by twenty-four inches.", "attributes": ["ready hang", "living room", "dining room"], "options": ["color: artwork-01", "size: 36''wx24''h"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["36''wx24''h"], "assignment_id": "3TPZPLC3MBMXANKMZ8UJX08VT0C3PS", "worker_id": "AR9AU5FY1S3RO"}], "B09JZ95R9H": [{"asin": "B09JZ95R9H", "instruction": "i want a red and easy to assemble gaming chair.", "attributes": ["high density", "easy install", "easy assemble", "lumbar support", "pu leather"], "options": ["color: red", "style: atl"], "instruction_attributes": ["easy assemble"], "instruction_options": ["red"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPW5JPP", "worker_id": "A2RBF3IIJP15IH"}], "B01AIUQW2G": [{"asin": "B01AIUQW2G", "instruction": "i am looking for fresh & natural skin care shea and cocoa body butter which is best for all type of skin with fragrance free,paraben free. brown sugar | fig scent preferable in 8 ounce.", "attributes": ["fragrance free", "paraben free", "dry skin", "sensitive skin"], "options": ["scent name: brown sugar | fig", "size: 8 ounce"], "instruction_attributes": ["fragrance free", "paraben free", "dry skin", "sensitive skin"], "instruction_options": ["brown sugar | fig", "8 ounce"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTD19NZ", "worker_id": "A1DRKZ3SCLAS4V"}], "B07SBDG3CR": [{"asin": "B07SBDG3CR", "instruction": "i want some low carb and keto friendly snacks. it should be almond espresso flavored and diary free.", "attributes": ["low carb", "grain free", "keto friendly", "sugar free", "gluten free", "soy free", "dairy free", "quality ingredients", "natural ingredients"], "options": ["flavor name: almond espresso (pack of 1)"], "instruction_attributes": ["low carb", "keto friendly", "dairy free"], "instruction_options": ["almond espresso (pack of 1)"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R66SK9", "worker_id": "A1NF6PELRKACS9"}], "B08KXFNV1X": [{"asin": "B08KXFNV1X", "instruction": "i am looking for a sulfate free shampoo and conditioner set for natural hair. also choose mousse styler.", "attributes": ["sulfate free", "paraben free", "natural hair"], "options": ["style name: mousse styler"], "instruction_attributes": ["sulfate free", "natural hair"], "instruction_options": ["mousse styler"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3G6BVS", "worker_id": "A2HMEGTAFO0CS8"}], "B098WHZSTN": [{"asin": "B098WHZSTN", "instruction": "look for a three quarter length sleeve blouse in a light weight navy blue material. i need it in extra large.", "attributes": ["light weight", "loose fit", "hand wash", "short sleeve", "long sleeve", "daily wear"], "options": ["color: a3 navy", "size: x-large"], "instruction_attributes": ["light weight"], "instruction_options": ["a3 navy", "x-large"], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6D1EVD", "worker_id": "AR9AU5FY1S3RO"}], "B09HNTHKSN": [{"asin": "B09HNTHKSN", "instruction": "i want black non slip ankle boots for women.", "attributes": ["non slip", "day comfort", "lace closure", "high heel"], "options": ["color: b01-black", "size: 9"], "instruction_attributes": ["non slip"], "instruction_options": ["b01-black"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL6RECK", "worker_id": "A2RBF3IIJP15IH"}], "B076MJJVCF": [{"asin": "B076MJJVCF", "instruction": "i would like a easy to use soft box.", "attributes": ["quick release", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTRHL7Z", "worker_id": "A1WS884SI0SLO4"}], "B09HPJXC38": [{"asin": "B09HPJXC38", "instruction": "i need some eco friendly window films that are 23.6 by 35.4 inch", "attributes": ["eco friendly", "living room"], "options": ["color: multi-001116", "size: 23.6wx35.4l-inch x2 pcs"], "instruction_attributes": ["eco friendly"], "instruction_options": ["23.6wx35.4l-inch x2 pcs"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZEYRPQ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09RHXT94Y": [{"asin": "B09RHXT94Y", "instruction": "i am in need of a power amplifier.", "attributes": ["power amplifier", "aluminum alloy"], "options": [""], "instruction_attributes": ["power amplifier"], "instruction_options": [], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5F8Z1K", "worker_id": "A2ECRNQ3X5LEXD"}], "B00UBH4YMW": [{"asin": "B00UBH4YMW", "instruction": "i want to buy a dry skin treatment that has coconut oil in it.", "attributes": ["coconut oil", "dry skin"], "options": [""], "instruction_attributes": ["coconut oil", "dry skin"], "instruction_options": [], "assignment_id": "3L4PIM1GQ4QJ23XP1LRYSP4N3J9YRZ", "worker_id": "AR9AU5FY1S3RO"}], "B099NDYBF1": [{"asin": "B099NDYBF1", "instruction": "i want a black mini wireless bluetooth headset.", "attributes": ["noise cancelling", "compatible apple", "fast charging", "high speed", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQEBCJR", "worker_id": "A2RBF3IIJP15IH"}], "B0000X0W1O": [{"asin": "B0000X0W1O", "instruction": "i am looking fat free kosher certrified low calo dried peaches", "attributes": ["fat free", "kosher certified"], "options": [""], "instruction_attributes": ["fat free", "kosher certified"], "instruction_options": [], "assignment_id": "3OF2M9AATRYXKPUZ7NKK5KRBEKTKZR", "worker_id": "A3N9ZYQAESNFQH"}], "B0824CBD9P": [{"asin": "B0824CBD9P", "instruction": "i want yellow machine washable batmerry summer bright decorative pillow covers.", "attributes": ["double sided", "machine washable", "living room"], "options": ["color: flowers yellow", "size: 18 x 18 inches"], "instruction_attributes": ["machine washable"], "instruction_options": ["flowers yellow"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ2750170PP4G", "worker_id": "A2RBF3IIJP15IH"}], "B08WLWTV59": [{"asin": "B08WLWTV59", "instruction": "i want to find a 15-pack box of individually wrapped rockin' straw-beary granola bars that are each 0.88 ounces.", "attributes": ["individually wrapped", "gluten free", "non gmo", "nut free", "quality ingredients"], "options": ["flavor name: rockin' straw-beary", "size: 0.88 ounce (pack of 15)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["rockin' straw-beary", "0.88 ounce (pack of 15)"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUKRS4U", "worker_id": "A345TDMHP3DQ3G"}], "B09QM478Y1": [{"asin": "B09QM478Y1", "instruction": "i am looking for sandals features a comfortable high heel, open-back slip on style, easy on and off.suitable for party, prom, wedding, red carpet show, street shooting, nightclub, ballroom and other special occasions. slide sandals for women in a6-black, size 8 preferable.", "attributes": ["non slip", "high heel"], "options": ["color: a6-black", "size: 8"], "instruction_attributes": ["non slip", "high heel"], "instruction_options": ["a6-black", "8"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACPINHA", "worker_id": "A1DRKZ3SCLAS4V"}], "B091XXL92R": [{"asin": "B091XXL92R", "instruction": "i need an evening gown in purple that is a size four.", "attributes": ["unique design", "drawstring closure"], "options": ["color: dusty purple", "size: 4"], "instruction_attributes": ["unique design"], "instruction_options": ["dusty purple", "4"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXQSYLF", "worker_id": "A2ECRNQ3X5LEXD"}], "B09D2NHQRF": [{"asin": "B09D2NHQRF", "instruction": "i want a pink 4 pack of kids u shaped toothbrush for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["color: pink, blue, purple, yellow,", "style: cat's claw shape style"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["pink, blue, purple, yellow,"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W8FOUJ", "worker_id": "A2RBF3IIJP15IH"}], "B09HPGGRTZ": [{"asin": "B09HPGGRTZ", "instruction": "look for a pair of open toe ankle booties in size seven and a half. get the black ones.", "attributes": ["slip resistant", "open toe"], "options": ["color: se031-black", "size: 7.5"], "instruction_attributes": ["open toe"], "instruction_options": ["se031-black", "7.5"], "assignment_id": "36H9ULYP6D4W4OXHOQQ11DBGNR4JFA", "worker_id": "AR9AU5FY1S3RO"}], "B09J8QT8LM": [{"asin": "B09J8QT8LM", "instruction": "i want toyandona 100pcs christmas cake toppers snowflake cupcake toppers for a baby shower.", "attributes": ["baby shower", "birthday party"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XQONGW", "worker_id": "A2RBF3IIJP15IH"}], "B07Z7JYC1M": [{"asin": "B07Z7JYC1M", "instruction": "i want a yongfoto 20x10ft high resolution photo studio background.", "attributes": ["light weight", "high resolution"], "options": ["size: 20x10ft"], "instruction_attributes": ["high resolution"], "instruction_options": ["20x10ft"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBEZGH0", "worker_id": "A1CB72B51L7TKE"}], "B08J3VKB62": [{"asin": "B08J3VKB62", "instruction": "i want a smart wi-fi bulb camera with motion detection.", "attributes": ["1080p hd", "motion detection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "37FMASSAYN1AWW1V16J56M5VVETIBL", "worker_id": "A2RBF3IIJP15IH"}], "B08Z7PSKGX": [{"asin": "B08Z7PSKGX", "instruction": "i am looking for modern gold round(vintage) and exquisite workmanship desk table mirror", "attributes": ["heavy duty", "exquisite workmanship"], "options": ["color: modern gold", "size: round(vintage)"], "instruction_attributes": ["exquisite workmanship"], "instruction_options": ["modern gold", "round(vintage)"], "assignment_id": "3YOH7BII0KHGB5PP6QVHKEEFQAEVKV", "worker_id": "A258PTOZ3D2TQR"}], "B01MQHE1B0": [{"asin": "B01MQHE1B0", "instruction": "i am looking for queen size futon bed sofa with space saving , armless and color to be twill royal blue", "attributes": ["queen size", "space saving"], "options": ["color: twill royal blue", "size: queen"], "instruction_attributes": ["space saving"], "instruction_options": ["twill royal blue"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNK2NTB", "worker_id": "AX2EWYWZM19AZ"}], "B07FWBSJMJ": [{"asin": "B07FWBSJMJ", "instruction": "i need a box of 12 desserts that are made with natural ingredients and are part of the friends collection.", "attributes": ["natural ingredients", "valentine day", "great gift", "perfect gift"], "options": ["flavor name: friends collection", "size: box of 12"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["friends collection", "box of 12"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMNWBQ1", "worker_id": "A2ECRNQ3X5LEXD"}], "B09BVDR3X1": [{"asin": "B09BVDR3X1", "instruction": "i am looking for d style high quality travel bottles.", "attributes": ["high quality", "travel bottles"], "options": ["color: style d"], "instruction_attributes": ["high quality", "travel bottles"], "instruction_options": ["style d"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4GF15U", "worker_id": "A3FG5PQHG5AH3Y"}], "B07NY3NCTT": [{"asin": "B07NY3NCTT", "instruction": "i am looking for a synthetic coffee brown colored wig.", "attributes": ["natural hair", "synthetic hair", "hair growth"], "options": ["color: coffee brown lighted"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["coffee brown lighted"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1HU3UE", "worker_id": "A1EREKSZAA9V7B"}], "B09KBWV5MQ": [{"asin": "B09KBWV5MQ", "instruction": "i am looking for a high speed macaroon mobile portable router with 12gb data.", "attributes": ["high speed", "light weight", "4g lte"], "options": ["size: m1-3g-30days"], "instruction_attributes": ["high speed", "4g lte"], "instruction_options": ["m1-3g-30days"], "assignment_id": "3E4GGUZ1TJ17EERNIGB6I9H4TB4K2T", "worker_id": "A2KW17G25L25R8"}], "B08W1P6ZSL": [{"asin": "B08W1P6ZSL", "instruction": "i want to find a pair of black and gold women's pumps with a synesthetic sole. i wear a size 5.5.", "attributes": ["high heel", "synthetic sole"], "options": ["color: black | gold", "size: 5.5"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["black | gold", "5.5"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYPTXFM", "worker_id": "A345TDMHP3DQ3G"}], "B00HM1Z0I2": [{"asin": "B00HM1Z0I2", "instruction": "i'd like to find a chandelier-style vanity light with a brushed nickel finish. ideally, there will be three lights in the set.", "attributes": ["nickel finish", "brushed nickel", "vanity light"], "options": ["color: brushed nickel", "size: three - light", "style: chandelier"], "instruction_attributes": ["nickel finish", "brushed nickel", "vanity light"], "instruction_options": ["brushed nickel", "three - light", "chandelier"], "assignment_id": "3IJXV6UZ18TXC3IKX35V61AZD0DRIO", "worker_id": "A345TDMHP3DQ3G"}], "B08PD1HYNM": [{"asin": "B08PD1HYNM", "instruction": "i am looking for a high capacity, white tablet with an android operating system, micro hdmi and a quad core processor.", "attributes": ["high speed", "quad core"], "options": ["color: elegant white"], "instruction_attributes": ["quad core"], "instruction_options": ["elegant white"], "assignment_id": "3G2UL9A02OO71034MOY04HTU3XY76L", "worker_id": "AK3JMCIGU8MLU"}], "B08H4Q7SNS": [{"asin": "B08H4Q7SNS", "instruction": "select for me travel bottles for shampoo paraben and bpa free. i need them to be flipflop caps. include 24 labels and one brush if possible.", "attributes": ["paraben free", "high quality", "bpa free", "travel bottles"], "options": [""], "instruction_attributes": ["paraben free", "bpa free", "travel bottles"], "instruction_options": [], "assignment_id": "3NAPMVF0Z7PJJZK3ZMMXE4CINSW724", "worker_id": "A15IJ20C3R4HUO"}], "B07FBLG5Q2": [{"asin": "B07FBLG5Q2", "instruction": "i am looking for mickey and minnie cupcake toppers for a birthday party.", "attributes": ["party supplies", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NM22P6", "worker_id": "A1EREKSZAA9V7B"}], "B09GN63TVC": [{"asin": "B09GN63TVC", "instruction": "i would like a multicolored 17.7 wide by 35.4long window film for my living room.", "attributes": ["eco friendly", "living room"], "options": ["color: multi-0000680", "size: 17.7wx35.4l-inch x2 pcs"], "instruction_attributes": ["living room"], "instruction_options": ["17.7wx35.4l-inch x2 pcs"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHYH4ZZ", "worker_id": "A1WS884SI0SLO4"}], "B08HJSCV5Y": [{"asin": "B08HJSCV5Y", "instruction": "i am looking for an oil and cruelty free beyond golden glow colored highlighter.", "attributes": ["cruelty free", "oil free", "alcohol free", "paraben free"], "options": ["color: 030 | beyond golden glow"], "instruction_attributes": ["cruelty free", "oil free"], "instruction_options": ["030 | beyond golden glow"], "assignment_id": "34V1S5K3G3BBFJRX1LWKIDK0YNM96Z", "worker_id": "A1EREKSZAA9V7B"}], "B078GVH2XW": [{"asin": "B078GVH2XW", "instruction": "i want an ivory maybelline instant age rewind eraser dark circles treatment.", "attributes": ["anti aging", "dark circles", "fine lines"], "options": ["color: 95 cool ivory"], "instruction_attributes": ["dark circles"], "instruction_options": ["95 cool ivory"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB467QAJ", "worker_id": "A2RBF3IIJP15IH"}], "B0952VJ8S9": [{"asin": "B0952VJ8S9", "instruction": "i want a synthetic wig that has multiple colors.", "attributes": ["long lasting", "high quality", "synthetic hair"], "options": ["color: mix color"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["mix color"], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTP95E7", "worker_id": "A345TDMHP3DQ3G"}], "B01MZ82PKM": [{"asin": "B01MZ82PKM", "instruction": "i need a chrome wall lamp that is brushed nickel.", "attributes": ["nickel finish", "brushed nickel", "vanity light", "glass shade"], "options": ["color: chrome", "size: six light", "style: wall | bath sconce"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["chrome"], "assignment_id": "34BBWHLWHLL2KZZ6WXF1T0IG5FFIW5", "worker_id": "A2ECRNQ3X5LEXD"}], "B07P1B7MLB": [{"asin": "B07P1B7MLB", "instruction": "i am looking for a pair of women's size 9 extra wide loafers that have synthetic soles.", "attributes": ["day comfort", "synthetic sole"], "options": ["color: french navy", "size: 9 x-wide"], "instruction_attributes": ["synthetic sole"], "instruction_options": ["9 x-wide"], "assignment_id": "38F5OAUN5YMNYPNLI7P418IKCBEH7W", "worker_id": "A1EREKSZAA9V7B"}], "B09MRYV1HH": [{"asin": "B09MRYV1HH", "instruction": "i want to find a lib balm set made with natural ingredients that has long-lasting effects. the color must be 02.", "attributes": ["long lasting", "green tea", "natural ingredients"], "options": ["color: set02"], "instruction_attributes": ["long lasting", "natural ingredients"], "instruction_options": ["set02"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSIXB8F", "worker_id": "A345TDMHP3DQ3G"}], "B08JTZ145X": [{"asin": "B08JTZ145X", "instruction": "i am looking for a usb headset with built-in microphone and noise cancelling feature.", "attributes": ["noise cancelling", "heavy duty", "plug play"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZCZLKP", "worker_id": "AJDQGOTMB2D80"}], "B09QX4T789": [{"asin": "B09QX4T789", "instruction": "i need to shop for some lounge pants that can be machine washed and tumble dried. look for a size 3 x large in black.", "attributes": ["hand wash", "machine wash", "polyester spandex", "daily wear", "tumble dry"], "options": ["color: black", "size: 3x-large"], "instruction_attributes": ["machine wash", "tumble dry"], "instruction_options": ["black", "3x-large"], "assignment_id": "3HYA4D4522TWYSZ9H5K92WPZLGX2FL", "worker_id": "AR9AU5FY1S3RO"}], "B08N86GWP7": [{"asin": "B08N86GWP7", "instruction": "i am looking for a cruelty free foundation stick for fine lines. also choose warm brown color.", "attributes": ["cruelty free", "hyaluronic acid", "fine lines"], "options": ["color: warm brown"], "instruction_attributes": ["cruelty free", "fine lines"], "instruction_options": ["warm brown"], "assignment_id": "3K2755HG53DJ12XPEU4QYFG3I79DFS", "worker_id": "A2HMEGTAFO0CS8"}], "B09Q3K9J4K": [{"asin": "B09Q3K9J4K", "instruction": "i need a green henley shirts pullover mens long sleeve.", "attributes": ["loose fit", "hand wash", "fleece lined", "wash cold", "slim fit", "machine wash", "long sleeve", "drawstring waist", "regular fit", "high waist", "short sleeve"], "options": ["color: green", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["green"], "assignment_id": "34MAJL3QPFXBLUY31O2VU2X024B43X", "worker_id": "A2RBF3IIJP15IH"}], "B09DYB8MKH": [{"asin": "B09DYB8MKH", "instruction": "i want a long 001 coffee colored xx-large long jacket for women that is for daily wear.", "attributes": ["hand wash", "high waist", "polyester spandex", "long sleeve", "dry clean", "daily wear"], "options": ["color: 001 coffee", "size: xx-large"], "instruction_attributes": ["daily wear"], "instruction_options": ["001 coffee", "xx-large"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWXG1CH", "worker_id": "A1CB72B51L7TKE"}], "B07PVKBGV3": [{"asin": "B07PVKBGV3", "instruction": "i need lactose free chocolate flavor", "attributes": ["plant based", "non gmo", "lactose free", "usda organic", "soy free", "dairy free", "gluten free", "dietary fiber"], "options": ["flavor name: chocolate", "size: 1.12 pound (pack of 1)"], "instruction_attributes": ["lactose free"], "instruction_options": ["chocolate"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0N4J86", "worker_id": "A226L9F2AZ38CL"}], "B09BB2LHTT": [{"asin": "B09BB2LHTT", "instruction": "i want to find a waterproof case for my samsung galaxy phone that is heavy duty and easy to install.", "attributes": ["heavy duty", "easy install", "wireless charging"], "options": [""], "instruction_attributes": ["heavy duty", "easy install"], "instruction_options": [], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OUMYEP", "worker_id": "A345TDMHP3DQ3G"}], "B07MR8XZJV": [{"asin": "B07MR8XZJV", "instruction": "i am looking for fresh baked valentine cookies i would like m&m and sugar cookies.", "attributes": ["baked fresh", "valentine day", "perfect gift"], "options": ["flavor name: double peanut butter"], "instruction_attributes": ["baked fresh", "valentine day"], "instruction_options": ["double peanut butter"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BKXJV1", "worker_id": "A2KW17G25L25R8"}], "B08GC2BJPN": [{"asin": "B08GC2BJPN", "instruction": "i am looking for a 12 feet high speed 4k hdmi cable compatible with apple tv.", "attributes": ["high speed", "compatible apple", "blu ray", "gold plated"], "options": ["color: 4k hdmi 12ft", "size: 3ft"], "instruction_attributes": ["high speed", "compatible apple"], "instruction_options": ["4k hdmi 12ft"], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4SY7K6", "worker_id": "AJDQGOTMB2D80"}], "B071G6PFDR": [{"asin": "B071G6PFDR", "instruction": "i want a low carb smoked snack jerky.", "attributes": ["low carb", "dietary fiber"], "options": [""], "instruction_attributes": ["low carb"], "instruction_options": [], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5FCZ1O", "worker_id": "A1NF6PELRKACS9"}], "B01HJW75O0": [{"asin": "B01HJW75O0", "instruction": "i need high speed hdmi cable male to female.", "attributes": ["high speed", "gold plated"], "options": ["color: 10 pack", "size: 8 feet (2-pack)", "style: hdmi male to female"], "instruction_attributes": ["high speed"], "instruction_options": ["hdmi male to female"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HDE6IK", "worker_id": "A2RBF3IIJP15IH"}], "B06WV8ZRPX": [{"asin": "B06WV8ZRPX", "instruction": "i want dell optiplex 7050 tower desktop with intel core i5-7500.", "attributes": ["core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["core i5"], "instruction_options": [], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R6XKSS", "worker_id": "A2RBF3IIJP15IH"}], "B082DSKT9G": [{"asin": "B082DSKT9G", "instruction": "i need a chocolate colored hair dye.", "attributes": ["easy use", "seed oil", "hair dye"], "options": ["color: brussels chocolat"], "instruction_attributes": ["hair dye"], "instruction_options": ["brussels chocolat"], "assignment_id": "3PXX5PX6L88VQEIXPIRSPOHCI5UBAE", "worker_id": "A2ECRNQ3X5LEXD"}], "B08R6RDYJV": [{"asin": "B08R6RDYJV", "instruction": "i need leak proof empty travel bottles for lotion cream.", "attributes": ["leak proof", "travel bottles"], "options": [""], "instruction_attributes": ["leak proof", "travel bottles"], "instruction_options": [], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOWB39E", "worker_id": "A1NF6PELRKACS9"}], "B08KGN21R3": [{"asin": "B08KGN21R3", "instruction": "i want to find a teeth whitening device kit for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": [""], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": [], "assignment_id": "3FK0YFF9PAQURGJ15U9OMNPW68OVVK", "worker_id": "A345TDMHP3DQ3G"}], "B07M9ZLMYY": [{"asin": "B07M9ZLMYY", "instruction": "want to replace 2 packs for palm size 3 device rca universal remote control - works with symphonic vcr - remote code 0001, 1593 accurate with batteries included", "attributes": ["batteries included", "long lasting"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQ6U1LX", "worker_id": "A15IJ20C3R4HUO"}], "B07ZPZ5BDS": [{"asin": "B07ZPZ5BDS", "instruction": "i am looking for best anti aginf formula that supports healthy skin by naturally reducing inflammation and soothing troubled skin for an overall more even skin tone! sand & sky australian emu apple dreamy glow dropswith vitamins, essential oils, and organic ingredients.", "attributes": ["cruelty free", "hyaluronic acid"], "options": [""], "instruction_attributes": ["cruelty free", "hyaluronic acid"], "instruction_options": [], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3DINQC", "worker_id": "A1DRKZ3SCLAS4V"}], "B09FXPMQT5": [{"asin": "B09FXPMQT5", "instruction": "get a long handled bath brush in blue.", "attributes": ["easy clean", "long handle", "stainless steel"], "options": ["color: blue"], "instruction_attributes": ["long handle"], "instruction_options": ["blue"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VY4YWI", "worker_id": "AR9AU5FY1S3RO"}], "B010C6WZEU": [{"asin": "B010C6WZEU", "instruction": "i am looking for dining room chairs. choose the satin cream.", "attributes": ["high density", "engineered wood", "faux leather", "solid wood", "dining room"], "options": ["color: satin cream"], "instruction_attributes": ["dining room"], "instruction_options": ["satin cream"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3G3VB9", "worker_id": "A3FG5PQHG5AH3Y"}], "B08NZQ8F8R": [{"asin": "B08NZQ8F8R", "instruction": "i need women's denim shorts in cotton spandex material with color jayne and size 9", "attributes": ["day comfort", "machine wash", "imported zipper", "cotton spandex", "quality materials"], "options": ["color: jayne", "size: 9"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["jayne", "9"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSFAB9DV", "worker_id": "ASWFLI3N8X72G"}], "B08M5BM6ZD": [{"asin": "B08M5BM6ZD", "instruction": "i want a navy officially licensed harry potter professor sybill shirt.", "attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather"], "options": ["color: navy", "fit type: youth", "size: 3x-large"], "instruction_attributes": ["officially licensed"], "instruction_options": ["navy"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SUSDUV", "worker_id": "A2RBF3IIJP15IH"}], "B07R1QGLQF": [{"asin": "B07R1QGLQF", "instruction": "i am looking for long lasting aaa batteries and a charger.", "attributes": ["batteries included", "long lasting", "aaa batteries"], "options": ["configuration: charger + aaa batteries"], "instruction_attributes": ["long lasting"], "instruction_options": ["charger + aaa batteries"], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KTR9JQ", "worker_id": "A1EREKSZAA9V7B"}], "B08QYMTQRX": [{"asin": "B08QYMTQRX", "instruction": "i am looking for gluten free snacks. please choose super turmeric flavor.", "attributes": ["low calorie", "plant based", "non gmo", "gluten free", "simple ingredients"], "options": ["flavor name: super turmeric"], "instruction_attributes": ["gluten free"], "instruction_options": ["super turmeric"], "assignment_id": "336YQZE836OU3ZADLBQKVTCK2RAM5N", "worker_id": "A3FG5PQHG5AH3Y"}], "B09SDZSKK2": [{"asin": "B09SDZSKK2", "instruction": "i need a9 - beige color, size 8.5 wide sandal which has a closed toe and ankle strap.", "attributes": ["ankle strap", "closed toe", "arch support"], "options": ["color: a9 - beige", "size: 8.5 wide"], "instruction_attributes": ["ankle strap", "closed toe"], "instruction_options": ["a9 - beige", "8.5 wide"], "assignment_id": "3VE8AYVF8X77K71YXMTACN227GRF83", "worker_id": "ASWFLI3N8X72G"}], "B082D23RLP": [{"asin": "B082D23RLP", "instruction": "i am looking for bow knot designed filler for nail art", "attributes": ["nail art", "nail polish"], "options": ["design: bow knot"], "instruction_attributes": ["nail art"], "instruction_options": ["bow knot"], "assignment_id": "3RSDURM96LWUTZSKFF7YTI54OUKYEN", "worker_id": "A258PTOZ3D2TQR"}], "B08TVDMNFK": [{"asin": "B08TVDMNFK", "instruction": "i need to find a heavy duty outlet wall plate cover; choose the rocker combo style.", "attributes": ["heavy duty", "high gloss"], "options": ["style: outlet | rocker combo"], "instruction_attributes": ["heavy duty"], "instruction_options": ["outlet | rocker combo"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3LELZD", "worker_id": "A3LIIE572Z4OG7"}], "B001HTIY9C": [{"asin": "B001HTIY9C", "instruction": "i would like a 0.5 ounce goan shrimp curry beans that are low sodium.", "attributes": ["low sodium", "usda organic", "non gmo", "gluten free"], "options": ["flavor name: goan shrimp curry", "size: 0.5 ounce (6-pack)"], "instruction_attributes": ["low sodium"], "instruction_options": ["goan shrimp curry", "0.5 ounce (6-pack)"], "assignment_id": "31Z0PCVWUVPD3YEGI16TFRL8N5F7T2", "worker_id": "A1WS884SI0SLO4"}], "B08HVWJC7J": [{"asin": "B08HVWJC7J", "instruction": "i am looking for a jerky with low carb and high protein serving. also choose farmhouse garlic.", "attributes": ["grass fed", "low carb", "protein serving"], "options": ["flavor name: farmhouse garlic"], "instruction_attributes": ["low carb", "protein serving"], "instruction_options": ["farmhouse garlic"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAUUXZH", "worker_id": "A2HMEGTAFO0CS8"}], "B00K375TT2": [{"asin": "B00K375TT2", "instruction": "i'd like to buy some fettuccini alfredo that's easy to prepare.", "attributes": ["rich creamy", "easy prepare"], "options": [""], "instruction_attributes": ["easy prepare"], "instruction_options": [], "assignment_id": "3HWRJOOETGCXXDGBG9F9BWH379HESI", "worker_id": "AR9AU5FY1S3RO"}], "B09J94TS4M": [{"asin": "B09J94TS4M", "instruction": "i need a portable label printer which comes with aaa batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK45V6A2", "worker_id": "A1NF6PELRKACS9"}], "B08C7LCRJT": [{"asin": "B08C7LCRJT", "instruction": "i want a xx-large classic fit weekend forecast kayaking beer drinking tank top.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: royal blue", "fit type: women", "size: xx-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["xx-large"], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3S9WG38", "worker_id": "A2RBF3IIJP15IH"}], "B00RZTITAC": [{"asin": "B00RZTITAC", "instruction": "it was time for his food high density breakfast, so the food is very super soft.", "attributes": ["super soft", "high density", "long lasting", "memory foam"], "options": [""], "instruction_attributes": ["super soft", "high density"], "instruction_options": [], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7RZHW71", "worker_id": "ASL9LVC97FUCZ"}], "B09QSVVVH3": [{"asin": "B09QSVVVH3", "instruction": "i want a mattress solution california king with box spring.", "attributes": ["ready use", "double sided", "high density", "long lasting", "assembly required", "box spring"], "options": ["size: california king", "style: 8\" foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["california king"], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WW87FV", "worker_id": "A2RBF3IIJP15IH"}], "B07H2R23YX": [{"asin": "B07H2R23YX", "instruction": "find a 5.7 ounce pack of 4 easy prepare knorr rice side dishes in chicken fried rice flavor.", "attributes": ["easy prepare", "artificial flavors"], "options": ["color: chicken fried rice", "size: 5.7 ounce (pack of 4)"], "instruction_attributes": ["easy prepare"], "instruction_options": ["chicken fried rice", "5.7 ounce (pack of 4)"], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEH6689", "worker_id": "A1CB72B51L7TKE"}], "B097WNMQF6": [{"asin": "B097WNMQF6", "instruction": "i am looking for an easy to use dslr camera with optical zoom.", "attributes": ["high speed", "easy use", "optical zoom"], "options": [""], "instruction_attributes": ["easy use", "optical zoom"], "instruction_options": [], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KDGPDR", "worker_id": "A1EREKSZAA9V7B"}], "B09L6FSN5G": [{"asin": "B09L6FSN5G", "instruction": "i am looking for horse cupcake toppers for a birthday cake.", "attributes": ["birthday cake", "birthday party"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3MD9PLUKKTOYSVF240C0XC8F8G8NZB", "worker_id": "A1EREKSZAA9V7B"}], "B099WDPGQR": [{"asin": "B099WDPGQR", "instruction": "i want to buy some twenty six inch square pillow covers for my living room. look for some that are super soft.", "attributes": ["super soft", "exquisite workmanship", "storage space", "living room"], "options": ["size: 26\"*26\""], "instruction_attributes": ["super soft", "living room"], "instruction_options": ["26\"*26\""], "assignment_id": "3DH6GAKTY9ZS4UJGB2LBES6MC09YZ9", "worker_id": "AR9AU5FY1S3RO"}], "B07V43CTPY": [{"asin": "B07V43CTPY", "instruction": "i want a large machine washable marky g short sleeve t-shirt.", "attributes": ["day comfort", "machine washable", "machine wash", "short sleeve", "relaxed fit", "tumble dry"], "options": ["color: bondi blue", "size: large"], "instruction_attributes": ["machine washable"], "instruction_options": ["large"], "assignment_id": "3X73LLYYQCOC1AF8YE6TX54ACQSNHM", "worker_id": "A2RBF3IIJP15IH"}], "B094JVTYW5": [{"asin": "B094JVTYW5", "instruction": "get me a set of pillowcases in sage green. buy the machine washable ones.", "attributes": ["machine washable", "exquisite workmanship"], "options": ["color: sage green", "size: 20x30 inches"], "instruction_attributes": ["machine washable"], "instruction_options": ["sage green"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06LZXKD", "worker_id": "AR9AU5FY1S3RO"}], "B08WH7R5CG": [{"asin": "B08WH7R5CG", "instruction": "i need some storage space that is white and grey and also tall", "attributes": ["white item", "easy install", "wood frame", "storage unit", "storage space"], "options": ["color: white | gray", "size: tall"], "instruction_attributes": ["storage space"], "instruction_options": ["white | gray", "tall"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S0DGMO", "worker_id": "A2ECRNQ3X5LEXD"}], "B00DAOAQ1G": [{"asin": "B00DAOAQ1G", "instruction": "my mom want x- size polyster spandex", "attributes": ["straight leg", "machine wash", "elastic closure", "drawstring waist", "relaxed fit", "polyester spandex"], "options": ["color: new royal", "size: x-small"], "instruction_attributes": ["polyester spandex"], "instruction_options": ["x-small"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYIVLQL", "worker_id": "A226L9F2AZ38CL"}], "B07Q74BCVB": [{"asin": "B07Q74BCVB", "instruction": "i am looking for clinically proven hair treatment for a dry itchy scalp.", "attributes": ["clinically proven", "plant based", "sulfate free", "non toxic", "cruelty free", "hair growth", "hair treatment", "natural hair", "dead skin"], "options": [""], "instruction_attributes": ["clinically proven", "hair treatment"], "instruction_options": [], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHZR4ZB", "worker_id": "A1EREKSZAA9V7B"}], "B09F7RT6P3": [{"asin": "B09F7RT6P3", "instruction": "i need a dark tint 36w x 32l denim jeans for men which is good for everyday wear and has a relaxed fit.", "attributes": ["easy care", "straight leg", "relaxed fit", "everyday wear", "tumble dry"], "options": ["color: dark tint", "size: 36w x 32l"], "instruction_attributes": ["everyday wear"], "instruction_options": ["dark tint", "36w x 32l"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZKU7R1", "worker_id": "ASWFLI3N8X72G"}], "B09QKXKTJC": [{"asin": "B09QKXKTJC", "instruction": "i want pink buipokd women's sports shoes with arch support.", "attributes": ["day comfort", "open toe", "moisture wicking", "hand wash", "memory foam", "lace closure", "closed toe", "arch support", "rubber outsole", "rubber sole"], "options": ["color: pink", "size: 7"], "instruction_attributes": ["arch support"], "instruction_options": ["pink"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XQKGNL", "worker_id": "A2RBF3IIJP15IH"}], "B08CBK9Z8X": [{"asin": "B08CBK9Z8X", "instruction": "i want a solid wood sunset trading shades of sand console table.", "attributes": ["solid wood", "wood finish"], "options": [""], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "3Z2R0DQ0JSO4SEZDMU03KE4Z9F22EN", "worker_id": "A2RBF3IIJP15IH"}], "B09RMZGJ47": [{"asin": "B09RMZGJ47", "instruction": "i would like a gray mascara brush for natural hair.", "attributes": ["rose gold", "natural hair"], "options": ["color: gray"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "392CY0QWGC1QBXGMMR9IY8ZPLL0I41", "worker_id": "A1WS884SI0SLO4"}], "B08VJ38NHR": [{"asin": "B08VJ38NHR", "instruction": "i want a easy carry easy use usb flash drive memory stick 5g data storage size :16g-3.0(1 pack)", "attributes": ["easy carry", "plug play", "easy use", "usb port"], "options": ["color: 5-multicoloured", "size: 16g-3.0(1 pack)"], "instruction_attributes": ["easy carry", "easy use"], "instruction_options": [], "assignment_id": "33OOO72IVSVJFF9C9IE4VDDMOGHTCS", "worker_id": "A3N9ZYQAESNFQH"}], "B096L8RMMG": [{"asin": "B096L8RMMG", "instruction": "i am looking for a six pack of 4 ounce plant based sweet potato puffs.", "attributes": ["grain free", "non gmo", "gluten free", "plant based"], "options": ["flavor: vegan cheesy cheddar | sea salt fry vari...", "size: 4 ounce (pack of 6)"], "instruction_attributes": ["plant based"], "instruction_options": ["4 ounce (pack of 6)"], "assignment_id": "3570Y55XZ0TSDDOBLAXMTLQG1AAGYX", "worker_id": "A1EREKSZAA9V7B"}], "B09S8S33TR": [{"asin": "B09S8S33TR", "instruction": "i need a photo backdrop for my living room that's around sixty by forty inches.", "attributes": ["printing technology", "living room"], "options": ["color: t1-plane-23", "size: 59.1\" x 39.4\""], "instruction_attributes": ["living room"], "instruction_options": ["59.1\" x 39.4\""], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WPVWQL", "worker_id": "AR9AU5FY1S3RO"}], "B085NMCTQ5": [{"asin": "B085NMCTQ5", "instruction": "i am searching for women's yoga short sleeve daily wear and round neck t-shirts of small size and #3 blue color", "attributes": ["moisture wicking", "hand wash", "machine wash", "short sleeve", "daily wear"], "options": ["color: #3 blue", "size: small"], "instruction_attributes": ["short sleeve", "daily wear"], "instruction_options": ["#3 blue", "small"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRRR2YM", "worker_id": "A258PTOZ3D2TQR"}], "B01DPWDWG8": [{"asin": "B01DPWDWG8", "instruction": "i need a two ounce package of hair dye in light to medium blonde.", "attributes": ["long lasting", "hair dye"], "options": ["color: light to medium blonde", "size: 2 ounce (pack of 1)"], "instruction_attributes": ["hair dye"], "instruction_options": ["light to medium blonde", "2 ounce (pack of 1)"], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPNKFW8", "worker_id": "AR9AU5FY1S3RO"}], "B07TMNWP3Z": [{"asin": "B07TMNWP3Z", "instruction": "i am looking for a high power binocular for watching the birds .", "attributes": ["high power", "bird watching"], "options": [""], "instruction_attributes": ["high power", "bird watching"], "instruction_options": [], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUJUVZK", "worker_id": "A2HMEGTAFO0CS8"}], "B08YJK1MKG": [{"asin": "B08YJK1MKG", "instruction": "i'm looking for a human skeleton shower cap made for women with natural hair.", "attributes": ["long lasting", "hair salon", "natural hair"], "options": ["color: human skeleton"], "instruction_attributes": ["natural hair"], "instruction_options": ["human skeleton"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A218WHTZ", "worker_id": "A36LOA6VLJU157"}], "B074TYK1HT": [{"asin": "B074TYK1HT", "instruction": "let me get an anti perspirant deodorant for sensitive skin.", "attributes": ["anti perspirant", "dermatologist tested", "sensitive skin"], "options": [""], "instruction_attributes": ["anti perspirant", "sensitive skin"], "instruction_options": [], "assignment_id": "3DEL4X4ELHV3ZZJ1AKXQH7QB40KXYK", "worker_id": "A1NF6PELRKACS9"}, {"asin": "B074TYK1HT", "instruction": "i want to buy an anti antiperspirant deodorant for sensitive skin.", "attributes": ["anti perspirant", "dermatologist tested", "sensitive skin"], "options": [""], "instruction_attributes": ["anti perspirant", "sensitive skin"], "instruction_options": [], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDHWO21", "worker_id": "A1NF6PELRKACS9"}], "B09GQJY8SG": [{"asin": "B09GQJY8SG", "instruction": "i am looking a tempared glass anti scratch screen protector for i phone 13 pro", "attributes": ["tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["tempered glass"], "instruction_options": [], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH8K1EZ", "worker_id": "A3N9ZYQAESNFQH"}], "B079QGBL5H": [{"asin": "B079QGBL5H", "instruction": "i need steel gray color water resistant bag", "attributes": ["water resistant", "carrying case"], "options": ["color: steel gray"], "instruction_attributes": ["water resistant"], "instruction_options": [], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YPV8T0", "worker_id": "A226L9F2AZ38CL"}], "B09PYFGHJH": [{"asin": "B09PYFGHJH", "instruction": "i want mivofun 11pcs cute dinosaur cake toppers for a baby shower.", "attributes": ["birthday cake", "party supplies", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3PH3VY7DJW7OFPOGW13NTVL61S8WZ7", "worker_id": "A2RBF3IIJP15IH"}], "B082LNYDJJ": [{"asin": "B082LNYDJJ", "instruction": "i am looking for goodness of health cinnamon flavored toffee covered cashews by it's delish an energizing and delicious snack for those reducing sodium in their diet. almonds flavor , 3 pound size preferable.", "attributes": ["non dairy", "kosher certified"], "options": ["flavor: almonds", "size: 3 pound"], "instruction_attributes": ["non dairy", "kosher certified"], "instruction_options": ["almonds", "3 pound"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOD7ATI", "worker_id": "A1DRKZ3SCLAS4V"}, {"asin": "B082LNYDJJ", "instruction": "my mom like non dairy pecans flavor", "attributes": ["non dairy", "kosher certified"], "options": ["flavor: pecans", "size: 1 pound"], "instruction_attributes": ["non dairy"], "instruction_options": ["pecans"], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSH062S", "worker_id": "A226L9F2AZ38CL"}], "B09G6QSJWR": [{"asin": "B09G6QSJWR", "instruction": "i would like a gold birthday party cupcake topper", "attributes": ["birthday cake", "cupcake picks", "birthday party"], "options": ["pattern name: gold 15"], "instruction_attributes": ["birthday party"], "instruction_options": ["gold 15"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP616VD7", "worker_id": "A2ECRNQ3X5LEXD"}], "B09C3ZCVJS": [{"asin": "B09C3ZCVJS", "instruction": "i am looking for a office leather chair useful for heavy duty with synchro-tilt mechanism", "attributes": ["high density", "heavy duty"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49GXDTG", "worker_id": "A3N9ZYQAESNFQH"}], "B07D58V7Z2": [{"asin": "B07D58V7Z2", "instruction": "i would like a tteal green hrow pillow cover that is super soft and 16\" by 16\"", "attributes": ["super soft", "white item", "living room"], "options": ["color: teal green", "size: 16\"x16\""], "instruction_attributes": ["super soft"], "instruction_options": ["teal green", "16\"x16\""], "assignment_id": "3DIP6YHAPN2FET122B94U5H2VFGE8O", "worker_id": "A2ECRNQ3X5LEXD"}], "B07TJDGGND": [{"asin": "B07TJDGGND", "instruction": "i need some facial scrub for sensitive skin. it should be oil free. get the three pack.", "attributes": ["oil free", "dermatologist tested", "sensitive skin"], "options": ["size: 4.2 fl oz (pack of 3)", "style: facial scrub + body wash"], "instruction_attributes": ["oil free", "sensitive skin"], "instruction_options": ["4.2 fl oz (pack of 3)", "facial scrub + body wash"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI39SBDJ", "worker_id": "AR9AU5FY1S3RO"}], "B09R9YS1GX": [{"asin": "B09R9YS1GX", "instruction": "i need height adjustable home office desk chair with metal legs in ivory color.", "attributes": ["height adjustable", "metal legs"], "options": ["color: ivory"], "instruction_attributes": ["height adjustable", "metal legs"], "instruction_options": ["ivory"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FF4ELZ", "worker_id": "ASWFLI3N8X72G"}], "B09P61NVL1": [{"asin": "B09P61NVL1", "instruction": "i want to find an orange color corrector for my teeth, which are very sensitive.", "attributes": ["sensitive teeth", "bad breath"], "options": ["color: orange"], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3CP1TO84P4B4WV6KBT70GKYMWMS25B", "worker_id": "A345TDMHP3DQ3G"}], "B07SL9Y1G7": [{"asin": "B07SL9Y1G7", "instruction": "i want to find a wall-mounted security camera that runs on aaa batteries.", "attributes": ["wall mounted", "aaa batteries"], "options": [""], "instruction_attributes": ["wall mounted", "aaa batteries"], "instruction_options": [], "assignment_id": "3H0W84IWBVCLWYGY1KF4LMC7L76REF", "worker_id": "A345TDMHP3DQ3G"}], "B081TV68PN": [{"asin": "B081TV68PN", "instruction": "i need a pair of stretch cotton spandex pants in size 40w x 32l. they should be machine washable and in a stone color.", "attributes": ["machine wash", "imported zipper", "cotton spandex"], "options": ["color: stone", "size: 40w x 32l"], "instruction_attributes": ["machine wash", "cotton spandex"], "instruction_options": ["stone", "40w x 32l"], "assignment_id": "3H7Z272LXIHEQRAB5EYJTM2CTM9LPU", "worker_id": "AR9AU5FY1S3RO"}], "B081TGYYFC": [{"asin": "B081TGYYFC", "instruction": "buy me a sixteen pack of sugar free spicy nacho keto chips.", "attributes": ["low carb", "low sugar", "sugar free", "gluten free"], "options": ["flavor name: spicy nacho", "size: 1.13 ounce (pack of 16)"], "instruction_attributes": ["sugar free"], "instruction_options": ["spicy nacho", "1.13 ounce (pack of 16)"], "assignment_id": "3CPLWGV3MZ9JM4XP02I1KO6MTDO9NM", "worker_id": "AR9AU5FY1S3RO"}], "B093HFR3HG": [{"asin": "B093HFR3HG", "instruction": "i am looking for a pink case with a kickstand and wireless charging for my samsung galaxy s21 ultra.", "attributes": ["high definition", "tempered glass", "wireless charging"], "options": ["color: pink", "size: galaxy s21 ultra(6.8 inch)"], "instruction_attributes": ["wireless charging"], "instruction_options": ["pink"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1HD3UX", "worker_id": "A1EREKSZAA9V7B"}], "B085686P5N": [{"asin": "B085686P5N", "instruction": "i want a juniper and fully assembled rivet decatur modern upholstered dining chair.", "attributes": ["fully assembled", "metal legs"], "options": ["color: juniper", "size: bar height"], "instruction_attributes": ["fully assembled"], "instruction_options": ["juniper"], "assignment_id": "3U5NZHP4L2CC4VRLETJL1U95C5QPHH", "worker_id": "A2RBF3IIJP15IH"}], "B08CQY2SP4": [{"asin": "B08CQY2SP4", "instruction": "i would like a pink classic fit shirt for men that is a size 4t.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "star wars"], "options": ["color: pink", "fit type: men", "size: 4t"], "instruction_attributes": ["classic fit"], "instruction_options": ["pink", "men", "4t"], "assignment_id": "3DBQWDE4YH80LHVDXC5K881K7H85NU", "worker_id": "A2ECRNQ3X5LEXD"}], "B000F8EURQ": [{"asin": "B000F8EURQ", "instruction": "i am looking for jolly rancher candies that are individually wrapped, but in a fat free version.", "attributes": ["individually wrapped", "fat free"], "options": [""], "instruction_attributes": ["individually wrapped", "fat free"], "instruction_options": [], "assignment_id": "32ZKVD547QXV6TJCG3CI2G36CW4B3M", "worker_id": "A2NSS746CFCT4M"}], "B08TVTL77Y": [{"asin": "B08TVTL77Y", "instruction": "get a heavy duty double toggle wall plate cover.", "attributes": ["heavy duty", "high gloss"], "options": ["style: double toggle"], "instruction_attributes": ["heavy duty"], "instruction_options": ["double toggle"], "assignment_id": "3LUY3GC63AAFB6L91KX9AHKBY22P7N", "worker_id": "AR9AU5FY1S3RO"}], "B08D68PBS9": [{"asin": "B08D68PBS9", "instruction": "i am looking for a 5-shelf industrial corner, a-shaped display storage rack shelf in grey finish. it needs to be space saving, 5-tier, and have storage space. made by homyshopy.", "attributes": ["space saving", "storage space"], "options": ["color: b", "size: 5-tier"], "instruction_attributes": ["space saving", "storage space"], "instruction_options": ["5-tier"], "assignment_id": "3TYCR1GOTNT84VCHSNWLKK4Q3L4ZLH", "worker_id": "A3RGIKEI8JS2QG"}], "B09MTV2CSQ": [{"asin": "B09MTV2CSQ", "instruction": "i'm looking for hd electronics it so useful and long lasting.", "attributes": ["1080p hd", "long lasting", "high resolution", "plug play", "high definition"], "options": ["color: 9 inch-th102"], "instruction_attributes": ["1080p hd", "long lasting"], "instruction_options": ["9 inch-th102"], "assignment_id": "32SCWG5HISEW7674IASH43KF3S8P6G", "worker_id": "A16IQOX0DK14OJ"}], "B09MZH121Q": [{"asin": "B09MZH121Q", "instruction": "find an extra large blue long sleeve sweatshirt.", "attributes": ["moisture wicking", "loose fit", "slim fit", "long sleeve", "short sleeve"], "options": ["color: blue", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue", "x-large"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLSE30Z", "worker_id": "AR9AU5FY1S3RO"}], "B005A2GHCS": [{"asin": "B005A2GHCS", "instruction": "i want red lucky brand women's low rise jeans.", "attributes": ["low rise", "button closure"], "options": ["color: scarlet red step", "inseam length: 27 inches", "size: 34"], "instruction_attributes": ["low rise"], "instruction_options": ["scarlet red step"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KVT7ED", "worker_id": "A2RBF3IIJP15IH"}], "B09SH5BNDP": [{"asin": "B09SH5BNDP", "instruction": "i want to buy a high performance quad core streaming media player.", "attributes": ["dual band", "ultra hd", "high performance", "quad core"], "options": [""], "instruction_attributes": ["high performance", "quad core"], "instruction_options": [], "assignment_id": "3OS4RQUCRKPQM5Z50YDK3PS3FM4FBU", "worker_id": "AR9AU5FY1S3RO"}], "B0866B2Q2N": [{"asin": "B0866B2Q2N", "instruction": "i need a pair of slip-resistant work boots in a size 8. buy them in black.", "attributes": ["slip resistant", "moisture wicking", "long lasting"], "options": ["color: black", "size: 8"], "instruction_attributes": ["slip resistant"], "instruction_options": ["black", "8"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXRZ5OV", "worker_id": "AR9AU5FY1S3RO"}, {"asin": "B0866B2Q2N", "instruction": "this brand thorogood infinity fd series 6\u201d is gorgeous ! i want by one with: waterproof, slip resistant, composite safety toe work boots for men in a butterscotch collor and size 13", "attributes": ["slip resistant", "moisture wicking", "long lasting"], "options": ["color: butterscotch", "size: 13"], "instruction_attributes": ["slip resistant"], "instruction_options": ["13"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7RZD7W8", "worker_id": "A15IJ20C3R4HUO"}], "B09Q8PPBXJ": [{"asin": "B09Q8PPBXJ", "instruction": "i am looking for butt lift high waist tummy control breathable athletic yoga pants affordable and accessible, perfect for fitness enthusiasts and everyday athleisure. jaqqra legging that are made from the highest quality fabricss for women which are designed to remove moisture from your body, providing maximum comfort. pretty squat proof! breathable, tight fit, strong compression, quick drying, moisture wicking, stretchy.super elastic fabrics are perfect for your body,very comfortable and soft! in yellow sizw 3x large preferable.", "attributes": ["fleece lined", "quick drying", "moisture wicking", "tummy control", "high waist", "polyester spandex", "gym workout"], "options": ["color: yellow", "size: 3x-large"], "instruction_attributes": ["tummy control", "high waist", "gym workout"], "instruction_options": ["yellow", "3x-large"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYPKFXV", "worker_id": "A1DRKZ3SCLAS4V"}], "B09B3RRJDB": [{"asin": "B09B3RRJDB", "instruction": "i want to find multi-colored extra-small sweatpants that i can wear daily.", "attributes": ["elastic waist", "polyester spandex", "daily wear"], "options": ["color: multicolored", "size: x-small"], "instruction_attributes": ["daily wear"], "instruction_options": ["multicolored", "x-small"], "assignment_id": "3B837J3LDZ6M6HLG2FZ9A3GMMYFRSG", "worker_id": "A345TDMHP3DQ3G"}], "B096W49HCJ": [{"asin": "B096W49HCJ", "instruction": "i need a pair of pink loafers for teen girls. they should be size eight.", "attributes": ["teen girls", "daily wear"], "options": ["color: pink", "size: 8"], "instruction_attributes": ["teen girls"], "instruction_options": ["pink", "8"], "assignment_id": "3HQUKB7LNQOKRETXVGBGSL7EQEHHH5", "worker_id": "AR9AU5FY1S3RO"}], "B097PMFHPF": [{"asin": "B097PMFHPF", "instruction": "i'm looking for white hair extensions made with synthetic hair.", "attributes": ["hair extensions", "synthetic hair"], "options": ["color: white"], "instruction_attributes": ["hair extensions", "synthetic hair"], "instruction_options": ["white"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWBJFNK", "worker_id": "A20DUVEOH6A7KW"}], "B09Q5LY988": [{"asin": "B09Q5LY988", "instruction": "i want a red office chair ergonomic gaming chair with lumbar support.", "attributes": ["easy assemble", "pu leather", "lumbar support"], "options": ["color: red", "style: modern"], "instruction_attributes": ["lumbar support"], "instruction_options": ["red"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM969I4G7", "worker_id": "A2RBF3IIJP15IH"}], "B092VSGJVR": [{"asin": "B092VSGJVR", "instruction": "i am looking for a pair of women's ultra soft arch support sandals in a size 9.", "attributes": ["ethylene vinyl", "vinyl acetate", "arch support"], "options": ["color: lemon a", "size: 9"], "instruction_attributes": ["arch support"], "instruction_options": ["9"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR6479DH3C", "worker_id": "A1EREKSZAA9V7B"}], "B09PL8RY44": [{"asin": "B09PL8RY44", "instruction": "i need black non slip zieglen sandals for women.", "attributes": ["non slip", "open toe", "memory foam"], "options": ["color: p1 black", "size: 8.5"], "instruction_attributes": ["non slip"], "instruction_options": ["p1 black"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWOUW6Z", "worker_id": "A2RBF3IIJP15IH"}], "B097SPSG33": [{"asin": "B097SPSG33", "instruction": "i need a 3 pack pendant light fixture with glass shade and white finish. it should be 45.7 inches in size.", "attributes": ["easy install", "white finish", "glass shade", "light fixture"], "options": ["size: 3 pack,45.7in"], "instruction_attributes": ["white finish", "glass shade", "light fixture"], "instruction_options": ["3 pack,45.7in"], "assignment_id": "30IQTZXKAVG624NG2CMHPFWRSNH0XY", "worker_id": "A1NF6PELRKACS9"}], "B01AH0DMFM": [{"asin": "B01AH0DMFM", "instruction": "i want charcoal and comfortable fit skechers performance women's go walk shoes.", "attributes": ["comfortable fit", "rubber sole"], "options": ["color: charcoal", "size: 7.5 wide"], "instruction_attributes": ["comfortable fit"], "instruction_options": ["charcoal"], "assignment_id": "3XIQGXAUMNIKKFN0NB7Q4U6E013X7B", "worker_id": "A2RBF3IIJP15IH"}], "B09HQTJZ7T": [{"asin": "B09HQTJZ7T", "instruction": "i want hand painted jmkj sculptures.", "attributes": ["hand painted", "exquisite workmanship", "living room"], "options": [""], "instruction_attributes": ["hand painted"], "instruction_options": [], "assignment_id": "3M68NM076SHHJJNJV2W69YKU49JR6V", "worker_id": "A2RBF3IIJP15IH"}], "B07TT5BCRW": [{"asin": "B07TT5BCRW", "instruction": "order a high waisted skirt in a size small. get the plantation colored one.", "attributes": ["high waist", "daily wear"], "options": ["color: plantation", "size: x-small"], "instruction_attributes": ["high waist"], "instruction_options": ["plantation", "x-small"], "assignment_id": "3EF8EXOTTC55E939HRBGCB7MMHKJ18", "worker_id": "AR9AU5FY1S3RO"}], "B08X4WFLQF": [{"asin": "B08X4WFLQF", "instruction": "i would like a pack of vermicelli rice sticks that are easy to make.", "attributes": ["gluten free", "easy prepare", "non gmo"], "options": ["style: rice sticks vermicelli"], "instruction_attributes": ["easy prepare"], "instruction_options": ["rice sticks vermicelli"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRL0MFI", "worker_id": "A1WS884SI0SLO4"}], "B07211VXZL": [{"asin": "B07211VXZL", "instruction": "i need a cellphone car adapter with output protection.", "attributes": ["output protection", "dual band"], "options": [""], "instruction_attributes": ["output protection"], "instruction_options": [], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CP62TU", "worker_id": "AR9AU5FY1S3RO"}], "B092VJKR3M": [{"asin": "B092VJKR3M", "instruction": "i need to buy a virtual reality headset with a carrying case.", "attributes": ["easy carry", "easy install", "carrying case"], "options": [""], "instruction_attributes": ["carrying case"], "instruction_options": [], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU72T579", "worker_id": "AR9AU5FY1S3RO"}], "B01C9O8IGM": [{"asin": "B01C9O8IGM", "instruction": "i am looking for teeth whitening stirps that come with a shade guide.", "attributes": ["teeth whitening", "easy use"], "options": [""], "instruction_attributes": ["teeth whitening"], "instruction_options": [], "assignment_id": "3R9WASFE2AQM432L6CTNP7Z66PQFZ0", "worker_id": "AJDQGOTMB2D80"}], "B099KQ6F2D": [{"asin": "B099KQ6F2D", "instruction": "i am looking for women's cotton spandex booty shorts with medium size and color should be black bae white", "attributes": ["low rise", "cotton spandex"], "options": ["color: black bae white", "size: medium"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["black bae white", "medium"], "assignment_id": "3NXNZ5RS1L7UJJ52KV1CORKWTYT79J", "worker_id": "AX2EWYWZM19AZ"}], "B07CTK2ZGL": [{"asin": "B07CTK2ZGL", "instruction": "i want wall light 1 light bathroom vanity lighting.", "attributes": ["easy install", "brushed nickel", "glass shade", "vanity light", "light fixture", "living room"], "options": ["size: 1 light"], "instruction_attributes": ["vanity light"], "instruction_options": ["1 light"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UPAG18", "worker_id": "A2RBF3IIJP15IH"}], "B08K89ZK4Q": [{"asin": "B08K89ZK4Q", "instruction": "i need some pants with an elastic waist. they should be black and in size three x large.", "attributes": ["drawstring waist", "high waist", "elastic waist", "polyester spandex"], "options": ["color: b-black.", "size: 3x-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["b-black.", "3x-large"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79PY1H3", "worker_id": "AR9AU5FY1S3RO"}], "B093FGJ9RL": [{"asin": "B093FGJ9RL", "instruction": "i am looking for a steel framed brown 5 tier bookcase.", "attributes": ["assembly required", "coated steel", "steel frame", "storage space", "living room"], "options": ["color: brown-a", "size: 35.4\" x 11.8\" x 70.9\" (w x d x h)"], "instruction_attributes": ["steel frame"], "instruction_options": ["brown-a"], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69MZP81", "worker_id": "A1EREKSZAA9V7B"}], "B07T86JC7C": [{"asin": "B07T86JC7C", "instruction": "i want black chloe women's arch support clogs.", "attributes": ["slip resistant", "arch support", "rubber sole"], "options": ["color: black", "size: 10.5-11"], "instruction_attributes": ["arch support"], "instruction_options": ["black"], "assignment_id": "35K3O9HUAMNOT8BPAPFA4XYOIJPEF1", "worker_id": "A2RBF3IIJP15IH"}], "B0993R8ZHB": [{"asin": "B0993R8ZHB", "instruction": "i want a pack of low fat gourmet kitchen cooked shrimp.", "attributes": ["fully cooked", "low fat", "high protein"], "options": ["size: 1 pack"], "instruction_attributes": ["low fat"], "instruction_options": ["1 pack"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68E0A4W", "worker_id": "A2RBF3IIJP15IH"}], "B0033YLK7M": [{"asin": "B0033YLK7M", "instruction": "i want to find a doctor's stool with cinder-colored fabric. it needs to be 18.5 inches to 24 inches tall and be height adjustable.", "attributes": ["height adjustable", "lumbar support"], "options": ["color: cinder fabric", "size: desk height 18.5\"- 24\""], "instruction_attributes": ["height adjustable"], "instruction_options": ["cinder fabric", "desk height 18.5\"- 24\""], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJLLZ8B", "worker_id": "A345TDMHP3DQ3G"}], "B09MB3CRYB": [{"asin": "B09MB3CRYB", "instruction": "i want a easy clean water resistant hair cutting salon kit for professnol hair salon color:style 2", "attributes": ["water resistant", "easy clean", "hair cutting", "hair dye", "hair salon"], "options": ["color: style 2"], "instruction_attributes": ["water resistant", "easy clean", "hair cutting", "hair salon"], "instruction_options": ["style 2"], "assignment_id": "3BWI6RSP7RJBEFWJS6HYG5L7KWUE7N", "worker_id": "A3N9ZYQAESNFQH"}], "B09DKVZSVK": [{"asin": "B09DKVZSVK", "instruction": "i need a case for my 40 millimeter samsung galaxy watch 4. look for one with a tempered glass screen in rose gold.", "attributes": ["glass screen", "tempered glass"], "options": ["color: pink+rose gold+clear", "size: 40mm"], "instruction_attributes": ["glass screen", "tempered glass"], "instruction_options": ["pink+rose gold+clear", "40mm"], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDRWZQB", "worker_id": "AR9AU5FY1S3RO"}], "B079TR2JHT": [{"asin": "B079TR2JHT", "instruction": "men's eau de parfum long lasting for daily use", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJMTDGB", "worker_id": "A3N9ZYQAESNFQH"}], "B091KTBPG4": [{"asin": "B091KTBPG4", "instruction": "i am looking for a rose gold colored nail polish storage case.", "attributes": ["storage case", "nail polish"], "options": ["color: rose gold"], "instruction_attributes": ["storage case", "nail polish"], "instruction_options": ["rose gold"], "assignment_id": "3LEP4MGT3RATOLL99SIUFPPI39NBDE", "worker_id": "A1EREKSZAA9V7B"}], "B08LK9WRFQ": [{"asin": "B08LK9WRFQ", "instruction": "i need to buy a ready to hang art print that's sixteen by twenty-four inches. look for one that has women and palm leaves on it.", "attributes": ["hand painted", "ready hang", "wood frame"], "options": ["color: women face with palm leaves", "size: 16\"x24\"x1"], "instruction_attributes": ["ready hang"], "instruction_options": ["women face with palm leaves", "16\"x24\"x1"], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT6J732", "worker_id": "AR9AU5FY1S3RO"}], "B082HJWXKX": [{"asin": "B082HJWXKX", "instruction": "i need a space saving office desk that is blue and 90 by 30 cm", "attributes": ["wall mounted", "space saving", "easy clean", "living room"], "options": ["color: blue", "size: 90*30cm"], "instruction_attributes": ["space saving"], "instruction_options": ["blue"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R18LI2O", "worker_id": "A2ECRNQ3X5LEXD"}], "B08GS38WN1": [{"asin": "B08GS38WN1", "instruction": "i want blue striped and wide leg elsofer women's pajama lounge pants.", "attributes": ["wide leg", "hand wash", "wash cold", "polyester spandex", "quality polyester", "drawstring waist"], "options": ["color: blue striped", "size: 3x-large"], "instruction_attributes": ["wide leg"], "instruction_options": ["blue striped"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DU8TOX", "worker_id": "A2RBF3IIJP15IH"}], "B079PLY9B7": [{"asin": "B079PLY9B7", "instruction": "i am looking for mj korean cosmetic full face collagen red ginseng essence pack for sensitive skin in color: hyaluronic acid and size: pack of 14", "attributes": ["hyaluronic acid", "sensitive skin"], "options": ["color: hyaluronic acid", "size: pack of 14"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["hyaluronic acid", "pack of 14"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZIX9KV", "worker_id": "AX2EWYWZM19AZ"}], "B075DM81YY": [{"asin": "B075DM81YY", "instruction": "i would like a long lasting animal pattern storage bench that is easy to clean.", "attributes": ["long lasting", "assembly required", "easy clean", "contemporary design"], "options": ["color: animal pattern"], "instruction_attributes": ["long lasting", "easy clean"], "instruction_options": ["animal pattern"], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTSCWXC", "worker_id": "A1WS884SI0SLO4"}], "B01N297Q3Y": [{"asin": "B01N297Q3Y", "instruction": "i saw the women's shoe in a store and i need you to find it on amazon in brown and size 7, with rubber sole. the brand is jambu and the model is mule.", "attributes": ["memory foam", "rubber sole"], "options": ["color: brown", "size: 7"], "instruction_attributes": ["rubber sole"], "instruction_options": ["brown", "7"], "assignment_id": "3S06PH7KS2ESBN3H7VP59DC9HXYD1Z", "worker_id": "A15IJ20C3R4HUO"}], "B07GPBX5Z1": [{"asin": "B07GPBX5Z1", "instruction": "i want to buy some tummy-control shorts in extra small.", "attributes": ["nylon spandex", "stretch fabric", "tummy control"], "options": ["color: booty shorts dimgray camo", "size: x-small"], "instruction_attributes": ["tummy control"], "instruction_options": ["x-small"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21MDQFP", "worker_id": "AR9AU5FY1S3RO"}], "B00BBUSDW0": [{"asin": "B00BBUSDW0", "instruction": "i need a vanity light that is a satin nickel color.", "attributes": ["bronze finish", "vanity light", "glass shade"], "options": ["color: satin nickel"], "instruction_attributes": ["vanity light"], "instruction_options": ["satin nickel"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4AQRQN", "worker_id": "A2ECRNQ3X5LEXD"}], "B08R8CBM2D": [{"asin": "B08R8CBM2D", "instruction": "i want a hands free hlongg bluetooth clock speaker.", "attributes": ["hands free", "aaa batteries"], "options": [""], "instruction_attributes": ["hands free"], "instruction_options": [], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNZ4TPE", "worker_id": "A2RBF3IIJP15IH"}], "B09D3HK2T5": [{"asin": "B09D3HK2T5", "instruction": "i need to buy a smartwatch band for my apple watch. look for one in rose gold stainless steel mesh.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: mesh-rosegold", "size: 42mm | 44mm | 45mm"], "instruction_attributes": ["compatible apple", "stainless steel"], "instruction_options": ["mesh-rosegold", "42mm | 44mm | 45mm"], "assignment_id": "3X4JMASXCXJZP1KFXGUZ0I5Z9KGB0N", "worker_id": "AR9AU5FY1S3RO"}], "B09NC39NKL": [{"asin": "B09NC39NKL", "instruction": "i want samsung galaxy s22 glass screen protectors.", "attributes": ["long lasting", "tempered glass", "glass screen"], "options": [""], "instruction_attributes": ["glass screen"], "instruction_options": [], "assignment_id": "32EYX73OYBJ2LUDKRKU9P4YA7VEURD", "worker_id": "A2RBF3IIJP15IH"}], "B075NZNBPN": [{"asin": "B075NZNBPN", "instruction": "i would like a campfire fragrance beard conditioner made with argan oil", "attributes": ["natural ingredients", "argan oil"], "options": ["scent: campfire fragrance - the american"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3JNQLM5FTFWIYK953GN7X9UJIC62LD", "worker_id": "A1WS884SI0SLO4"}], "B09MTH718B": [{"asin": "B09MTH718B", "instruction": "i need a solid wood computer desk for living room which is easy to install and clean. i want color choice 1 and style 2.", "attributes": ["easy install", "easy clean", "solid wood", "living room"], "options": ["color: choice 1", "size: style 2"], "instruction_attributes": ["easy install", "easy clean", "solid wood", "living room"], "instruction_options": ["choice 1", "style 2"], "assignment_id": "3QAVNHZ3EXE73N49GVGM3RDHU0LALF", "worker_id": "ASWFLI3N8X72G"}], "B078Y8DS18": [{"asin": "B078Y8DS18", "instruction": "look for some high quality stainless steel hair cutting shears. they should be seven inches and made out of stainless steel.", "attributes": ["high quality", "stainless steel", "hair cutting"], "options": ["color: matt black", "size: 7.0 inch"], "instruction_attributes": ["high quality", "stainless steel", "hair cutting"], "instruction_options": ["matt black", "7.0 inch"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU72T75B", "worker_id": "AR9AU5FY1S3RO"}], "B099SBXBJH": [{"asin": "B099SBXBJH", "instruction": "i need a large niantie mens short sleeve t shirt.", "attributes": ["slim fit", "short sleeve", "long sleeve", "regular fit", "relaxed fit", "gym workout"], "options": ["color: blue", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["large"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXEKUJL", "worker_id": "A2RBF3IIJP15IH"}], "B08RTGLYGM": [{"asin": "B08RTGLYGM", "instruction": "i need a double dark chocolate bar which is high protein and ready to eat.", "attributes": ["ready eat", "high protein"], "options": ["flavor name: double dark chocolate"], "instruction_attributes": ["ready eat", "high protein"], "instruction_options": ["double dark chocolate"], "assignment_id": "3634BBTX0Z409DDB6851PCWGAC2FIH", "worker_id": "A1NF6PELRKACS9"}], "B08PVWCXK8": [{"asin": "B08PVWCXK8", "instruction": "i am looking for a 50ml leak proof refillable glass spray bottle.", "attributes": ["leak proof", "fine mist"], "options": ["color: green", "size: 50ml"], "instruction_attributes": ["leak proof"], "instruction_options": ["50ml"], "assignment_id": "3VJ40NV2QTXKO46FZNNVQD73DULTOA", "worker_id": "A1EREKSZAA9V7B"}], "B08QM88LCF": [{"asin": "B08QM88LCF", "instruction": "i want black rockport men's toe sneaker with lace closure.", "attributes": ["lace closure", "ethylene vinyl", "vinyl acetate"], "options": ["color: black", "size: 7.5"], "instruction_attributes": ["lace closure"], "instruction_options": ["black"], "assignment_id": "3RXPCZQMQ0LVN7D89LQDFYF6UPI1G1", "worker_id": "A2RBF3IIJP15IH"}], "B08RDS6J17": [{"asin": "B08RDS6J17", "instruction": "i need an easy to install 2pcs camera with 6pcs door alarm.", "attributes": ["batteries included", "easy install"], "options": ["color: 6pcs-alarm+2pcs-camera"], "instruction_attributes": ["easy install"], "instruction_options": ["6pcs-alarm+2pcs-camera"], "assignment_id": "3ATTHHXXWLYH9Z4W62BNVJWNEHZIXC", "worker_id": "A1NF6PELRKACS9"}], "B09DYVLH72": [{"asin": "B09DYVLH72", "instruction": "i would like a blue long sleeved sweatshirt that is the size 4x-large.", "attributes": ["long sleeve", "elastic closure", "high waist", "daily wear"], "options": ["color: a01-blue", "size: 4x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["a01-blue", "4x-large"], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K6H21N", "worker_id": "A2ECRNQ3X5LEXD"}], "B07GK93FTM": [{"asin": "B07GK93FTM", "instruction": "i would like two variety packs of non gmo trail mix", "attributes": ["non gmo", "high fructose"], "options": ["flavor name: variety", "size: 6 ounce x 2 packs"], "instruction_attributes": ["non gmo"], "instruction_options": ["variety", "6 ounce x 2 packs"], "assignment_id": "3TUI152ZZMXM0W7MCHVP9CJ80CXQ1R", "worker_id": "A2ECRNQ3X5LEXD"}], "B00EN3JV96": [{"asin": "B00EN3JV96", "instruction": "i need to buy a three ounce bottle of long lasting perfume in the sexy amber scent.", "attributes": ["design house", "long lasting"], "options": ["scent: sexy amber", "size: 3.4 ounce"], "instruction_attributes": ["long lasting"], "instruction_options": ["sexy amber", "3.4 ounce"], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKC6887", "worker_id": "AR9AU5FY1S3RO"}], "B07ZHGQQZ6": [{"asin": "B07ZHGQQZ6", "instruction": "i would like a mint green brush cleaner that is easy to use.", "attributes": ["non toxic", "easy use"], "options": ["color: mint green"], "instruction_attributes": ["easy use"], "instruction_options": ["mint green"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2MINYY", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PFW75M2": [{"asin": "B09PFW75M2", "instruction": "i would like a set of pendant lights for the living room.", "attributes": ["pendant light", "light fixture", "living room"], "options": [""], "instruction_attributes": ["pendant light", "living room"], "instruction_options": [], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZST040", "worker_id": "A1WS884SI0SLO4"}], "B07DXP1XRB": [{"asin": "B07DXP1XRB", "instruction": "i would like a set of fast charging noise cancelling headphones.", "attributes": ["noise cancelling", "fast charging"], "options": [""], "instruction_attributes": ["noise cancelling", "fast charging"], "instruction_options": [], "assignment_id": "3Z7VU45IP9RVEO8DZDE205VC5F1Z1D", "worker_id": "A1WS884SI0SLO4"}], "B01IM9I5L6": [{"asin": "B01IM9I5L6", "instruction": "i want to find a pair of size 5, coral-colored flip-flops with rubber soles that i can wear to yoga.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: coral", "size: 5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["coral", "5"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40VOCR2", "worker_id": "A345TDMHP3DQ3G"}], "B096W7H2ZD": [{"asin": "B096W7H2ZD", "instruction": "i want a bronze gold highlighter & luminizer made with natural ingredients for fine lines which is easy to apply, clean & carry.", "attributes": ["easy apply", "easy carry", "easy clean", "rose gold", "natural ingredients", "fine lines"], "options": ["color: bronze gold"], "instruction_attributes": ["easy apply", "easy carry", "easy clean", "natural ingredients", "fine lines"], "instruction_options": ["bronze gold"], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU72957P", "worker_id": "ASWFLI3N8X72G"}], "B09K81GRGT": [{"asin": "B09K81GRGT", "instruction": "i am interested in birthday party cupcake toppers that are multicolor.", "attributes": ["cupcake picks", "birthday party", "birthday cake", "party supplies"], "options": ["color: multicolor"], "instruction_attributes": ["birthday party"], "instruction_options": ["multicolor"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9SF87Z", "worker_id": "A2ECRNQ3X5LEXD"}], "B09PVH3W92": [{"asin": "B09PVH3W92", "instruction": "i want black women's open toe ring sandals.", "attributes": ["open toe", "non slip", "quality materials", "ankle strap", "rubber sole"], "options": ["color: black", "size: 9.5"], "instruction_attributes": ["open toe"], "instruction_options": ["black"], "assignment_id": "3YGXWBAF7BRZYUUMUHDWN51U8HQ4CX", "worker_id": "A2RBF3IIJP15IH"}], "B09T38ZZGL": [{"asin": "B09T38ZZGL", "instruction": "i need a new tv box that is made by android that come with the batteries included.", "attributes": ["batteries included", "easy use", "quad core"], "options": ["color: 4gb+128gb"], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "3PPTZCWAL1UJVSSUKS4H163KDRVZQA", "worker_id": "A32JEH06T23HDF"}], "B09MCYGBRZ": [{"asin": "B09MCYGBRZ", "instruction": "i want to get some red cupcake toppers that i can use for a birthday party.", "attributes": ["birthday cake", "party supplies", "birthday party"], "options": ["color: style a-red"], "instruction_attributes": ["birthday party"], "instruction_options": ["style a-red"], "assignment_id": "3TMSXRD2XHARKT38OQUV111UODB1W3", "worker_id": "A345TDMHP3DQ3G"}], "B09QMJ9PN2": [{"asin": "B09QMJ9PN2", "instruction": "i need high quality pillow covers in color a-8 and it should be fade resistant.", "attributes": ["high quality", "fine lines"], "options": ["color: a-8"], "instruction_attributes": ["high quality"], "instruction_options": ["a-8"], "assignment_id": "3OXV7EAXLP0P0H2HKCVAR0HEYV1634", "worker_id": "A1NF6PELRKACS9"}], "B004SE22H8": [{"asin": "B004SE22H8", "instruction": "i want fruit of the loom men's low-rise brief in size 38-40.", "attributes": ["low rise", "machine wash"], "options": ["size: 38-40"], "instruction_attributes": ["low rise"], "instruction_options": ["38-40"], "assignment_id": "3IUZPWIU1ZHTQUPUW00D6GXTXJ0KWE", "worker_id": "A2RBF3IIJP15IH"}], "B093S184XH": [{"asin": "B093S184XH", "instruction": "i am looking for easy to apply nail mirror powder.", "attributes": ["easy apply", "non toxic", "nail art", "nail polish"], "options": [""], "instruction_attributes": ["easy apply"], "instruction_options": [], "assignment_id": "3PEIJLRY643ZAUO1VJF2WA5VTSKXWL", "worker_id": "A1EREKSZAA9V7B"}], "B09GV9RWXX": [{"asin": "B09GV9RWXX", "instruction": "i am looking for solar power bank with 10w wireless charger, dual usb, fast charging and waterproof", "attributes": ["fast charging", "dust proof", "wireless charging"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3SNLUL3WOFXRIWI7M0XD3SPB139UL7", "worker_id": "AX2EWYWZM19AZ"}], "B08SHKMP5B": [{"asin": "B08SHKMP5B", "instruction": "find me a non alcoholic and zero sugar mocktail.", "attributes": ["non alcoholic", "keto friendly", "sugar free", "zero sugar"], "options": [""], "instruction_attributes": ["non alcoholic", "zero sugar"], "instruction_options": [], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83JIJIN", "worker_id": "A1NF6PELRKACS9"}], "B07KJFN8RM": [{"asin": "B07KJFN8RM", "instruction": "i want some cuticle pushers that are stainless steel.", "attributes": ["stainless steel", "dead skin"], "options": [""], "instruction_attributes": ["stainless steel"], "instruction_options": [], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKYBDNF", "worker_id": "A2ECRNQ3X5LEXD"}], "B09SPN32XS": [{"asin": "B09SPN32XS", "instruction": "i want a cd player portable boombox with stereo sound.", "attributes": ["easy use", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "3SKRO2GZ7C10PT9RZCBSDQ7Z16W1K1", "worker_id": "A2RBF3IIJP15IH"}], "B0916M7Z9C": [{"asin": "B0916M7Z9C", "instruction": "i am looking for hair and scalp serum for natural hair that is made with natural ingredients. i also would prefer the peppermint and aloe fragrance.", "attributes": ["cruelty free", "tea tree", "natural ingredients", "damaged hair", "natural hair", "hair growth", "dead skin"], "options": ["scent: peppermint & aloe"], "instruction_attributes": ["natural ingredients", "natural hair"], "instruction_options": ["peppermint & aloe"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLJBM0E", "worker_id": "AK3JMCIGU8MLU"}], "B01GJC4WRO": [{"asin": "B01GJC4WRO", "instruction": "i am looking for 2 pieces of 6ft long fast charging micro usb cable", "attributes": ["fast charging", "heavy duty", "high speed", "usb port"], "options": ["color: space grey", "number of items: 2", "size: 6.6ft"], "instruction_attributes": ["fast charging"], "instruction_options": ["2", "6.6ft"], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8ONQQK", "worker_id": "A258PTOZ3D2TQR"}], "B0747LWDCK": [{"asin": "B0747LWDCK", "instruction": "i would like some organic old fashioned oatmeal.", "attributes": ["non gmo", "certified organic", "old fashioned", "usda organic", "artificial flavors"], "options": ["flavor name: organic standard, old fashioned"], "instruction_attributes": ["usda organic"], "instruction_options": ["organic standard, old fashioned"], "assignment_id": "3VZLGYJEYWK34PT666Z9VEZDAUZZXO", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PV723CF": [{"asin": "B07PV723CF", "instruction": "i want a 2 pack of dseap coat rack wall mount.", "attributes": ["heavy duty", "wall mounted", "stainless steel"], "options": ["color: red antique copper", "package quantity: 2"], "instruction_attributes": ["wall mounted"], "instruction_options": ["2"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQF6EK3", "worker_id": "A2RBF3IIJP15IH"}], "B0050XG6QE": [{"asin": "B0050XG6QE", "instruction": "i like design house with white color", "attributes": ["design house", "alcohol free"], "options": [""], "instruction_attributes": ["design house"], "instruction_options": [], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQEPJCC", "worker_id": "A226L9F2AZ38CL"}], "B09HNCG2LQ": [{"asin": "B09HNCG2LQ", "instruction": "i would like a clinically proven deodorant that is lavender sage", "attributes": ["clinically proven", "paraben free", "sensitive skin"], "options": ["scent: lavender sage, sweet lily, jasmine rose"], "instruction_attributes": ["clinically proven"], "instruction_options": ["lavender sage, sweet lily, jasmine rose"], "assignment_id": "31UV0MXWN1M87GKM0WSS3053LIB5IB", "worker_id": "A2ECRNQ3X5LEXD"}], "B009NCWNQ0": [{"asin": "B009NCWNQ0", "instruction": "i want to find mango-flavored lip balm that is paraben free and contains some sun protection.", "attributes": ["paraben free", "cruelty free"], "options": ["flavor name: mango"], "instruction_attributes": ["paraben free"], "instruction_options": ["mango"], "assignment_id": "3U8YCDAGX0QMT7M4GYRPV70YVK1Q0Y", "worker_id": "A345TDMHP3DQ3G"}], "B09PQJ17S7": [{"asin": "B09PQJ17S7", "instruction": "i'm looking for short sleeve fitting clot. it can easy to machine wash.", "attributes": ["wide leg", "straight leg", "wash cold", "slim fit", "hand wash", "machine wash", "elastic waist", "high waist", "elastic closure", "short sleeve", "long sleeve", "everyday wear"], "options": ["color: 01 white", "size: x-large"], "instruction_attributes": ["wide leg", "machine wash", "elastic waist", "short sleeve"], "instruction_options": ["01 white"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRX6JX9", "worker_id": "A16IQOX0DK14OJ"}], "B09QQKW86M": [{"asin": "B09QQKW86M", "instruction": "i want small and high waisted comfortable underwear 831 new men u-convex.", "attributes": ["unique design", "high waist"], "options": ["color: 3 light blue", "size: small"], "instruction_attributes": ["high waist"], "instruction_options": ["small"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTSEL7Y", "worker_id": "A2RBF3IIJP15IH"}], "B07C5BQG5J": [{"asin": "B07C5BQG5J", "instruction": "i need to buy a flat-packed ottoman. look for one that's white.", "attributes": ["assembly required", "high gloss", "stainless steel"], "options": ["color: white"], "instruction_attributes": ["assembly required"], "instruction_options": ["white"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4IX895", "worker_id": "AR9AU5FY1S3RO"}], "B073YLPR26": [{"asin": "B073YLPR26", "instruction": "i am looking for an intel quad core i5-6500 mini pc with windows 10 pro.", "attributes": ["fast charging", "core i5", "quad core", "intel core"], "options": [""], "instruction_attributes": ["quad core", "intel core"], "instruction_options": [], "assignment_id": "3G5W44VEUISXT8ZUHVWVKDB53VHGKI", "worker_id": "A1EREKSZAA9V7B"}], "B07N4FGLPJ": [{"asin": "B07N4FGLPJ", "instruction": "look for a brushed aluminum wall sconce with a glass shade.", "attributes": ["clear glass", "glass shade"], "options": ["color: black | brushed aluminum", "size: 13.75x5.25x"], "instruction_attributes": ["glass shade"], "instruction_options": ["black | brushed aluminum"], "assignment_id": "3LPW2N6LK4CDG7FMUDH6M3TEFDYU58", "worker_id": "AR9AU5FY1S3RO"}], "B09QKQSLBT": [{"asin": "B09QKQSLBT", "instruction": "i want yellow wide leg eaktool sexy women shorts.", "attributes": ["fleece lined", "wide leg", "tummy control", "high waist", "teen girls"], "options": ["color: yellow", "size: x-large"], "instruction_attributes": ["wide leg"], "instruction_options": ["yellow"], "assignment_id": "3LWJHTCVCNWDQB1UJGAAYEN21MBQFN", "worker_id": "A2RBF3IIJP15IH"}], "B09NVGCG3K": [{"asin": "B09NVGCG3K", "instruction": "i am looking a spider man cupcake topper party supply for my pet birthday party", "attributes": ["birthday cake", "cupcake picks", "party supplies", "baby shower", "birthday party"], "options": [""], "instruction_attributes": ["birthday cake", "party supplies", "birthday party"], "instruction_options": [], "assignment_id": "3N8OEVH1F204BC17361WW31GEMOOO3", "worker_id": "A3N9ZYQAESNFQH"}], "B09P4Z74XN": [{"asin": "B09P4Z74XN", "instruction": "i am looking for a lavender foot peel off mask which works on dry skin and it is easy to use.", "attributes": ["anti aging", "easy use", "dead skin", "fine lines"], "options": ["color: lavender"], "instruction_attributes": ["easy use", "dead skin"], "instruction_options": ["lavender"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOINMLQ", "worker_id": "AHU9OLV0YKIIW"}], "B098JZ8Q61": [{"asin": "B098JZ8Q61", "instruction": "shop for teeth whitening strips. look for some that taste like peppermint and are appropriate for sensitive teeth.", "attributes": ["teeth whitening", "sensitive teeth"], "options": ["flavor name: peppermint"], "instruction_attributes": ["teeth whitening", "sensitive teeth"], "instruction_options": ["peppermint"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZQEK3G", "worker_id": "AR9AU5FY1S3RO"}], "B09C7SHQH2": [{"asin": "B09C7SHQH2", "instruction": "i need an intel quad core tablet which is certified refurbished.", "attributes": ["certified refurbished", "core i5", "intel core", "quad core"], "options": [""], "instruction_attributes": ["certified refurbished", "intel core", "quad core"], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTS19PU", "worker_id": "A1NF6PELRKACS9"}], "B09G2MCRX4": [{"asin": "B09G2MCRX4", "instruction": "find me twin sized bunk beds made of solid wood. it should be espresso colored.", "attributes": ["twin size", "box spring", "solid wood"], "options": ["color: espresso", "size: twin over twin"], "instruction_attributes": ["twin size", "solid wood"], "instruction_options": ["espresso"], "assignment_id": "34PGFRQONZLYFAJCEF0151XGIU4WJV", "worker_id": "A1NF6PELRKACS9"}], "B09T78TGBM": [{"asin": "B09T78TGBM", "instruction": "i am looking for a high speed 12v ac/dc adapter with output protection.", "attributes": ["output protection", "high speed"], "options": [""], "instruction_attributes": ["output protection", "high speed"], "instruction_options": [], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE215QGG", "worker_id": "A1EREKSZAA9V7B"}], "B07MXMZD94": [{"asin": "B07MXMZD94", "instruction": "look for the easy chef sampler of green bean snacks. i want the twelve piece non-gmo assortment.", "attributes": ["gluten free", "low calorie", "keto friendly", "low carb", "non gmo", "simple ingredients"], "options": ["flavor name: easy chef sampler", "size: 12 piece assortment"], "instruction_attributes": ["non gmo"], "instruction_options": ["easy chef sampler", "12 piece assortment"], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y6MVIH", "worker_id": "AR9AU5FY1S3RO"}], "B084KYR68F": [{"asin": "B084KYR68F", "instruction": "i want a trupedic x mozaic casual queen size futon mattress.", "attributes": ["queen size", "spot clean", "easy clean"], "options": ["color: camel khaki", "size: queen", "style: casual"], "instruction_attributes": ["queen size"], "instruction_options": ["casual"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH961EN", "worker_id": "A2RBF3IIJP15IH"}], "B07L2L64XL": [{"asin": "B07L2L64XL", "instruction": "i need a fluoride free toothpaste for fresh breath. i will need a pack of 4 in 3.5 ounce size.", "attributes": ["fluoride free", "cruelty free", "seed oil", "fresh breath"], "options": ["size: 3.5 ounce (pack of 4)"], "instruction_attributes": ["fluoride free", "fresh breath"], "instruction_options": ["3.5 ounce (pack of 4)"], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40VKYFQ", "worker_id": "A1NF6PELRKACS9"}], "B09QSR47T4": [{"asin": "B09QSR47T4", "instruction": "i am looking for a 52 inch by 45 inch green window panel.", "attributes": ["printing technology", "dining room", "living room"], "options": ["size: 52x45in"], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCN8MB0", "worker_id": "A1EREKSZAA9V7B"}], "B08S7MD3HY": [{"asin": "B08S7MD3HY", "instruction": "i want to find a printed backdrop that is 5 by 7 feet for a digital photography session.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 06", "size: 5x7 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["printed backdrop 06", "5x7 ft"], "assignment_id": "39K0FND3ASPR95MUG7H134S6U59AMF", "worker_id": "A345TDMHP3DQ3G"}], "B082X5XQP4": [{"asin": "B082X5XQP4", "instruction": "i want a 10 foot gold plated jolgoo 1/4\" trs to dual rca insert cable.", "attributes": ["gold plated", "high performance"], "options": ["size: 10 feet", "style: 1 | 4 trs to dual rca"], "instruction_attributes": ["gold plated"], "instruction_options": ["10 feet"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXBAG75", "worker_id": "A2RBF3IIJP15IH"}], "B08G143L51": [{"asin": "B08G143L51", "instruction": "i want to find vanity light fixtures that i can put in my bathroom.", "attributes": ["mid century", "vanity light", "light fixture", "clear glass"], "options": [""], "instruction_attributes": ["vanity light", "light fixture"], "instruction_options": [], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LE1L0R", "worker_id": "A345TDMHP3DQ3G"}], "B00AUOJH8M": [{"asin": "B00AUOJH8M", "instruction": "my father mostly use grey color intel core laptop only", "attributes": ["high performance", "intel core"], "options": [""], "instruction_attributes": ["intel core"], "instruction_options": [], "assignment_id": "3KKG4CDWKT8X0WNJIX35LF0M2WW49P", "worker_id": "A226L9F2AZ38CL"}], "B00S1L6590": [{"asin": "B00S1L6590", "instruction": "i need a detangler hair brush that stimulates hair growth. choose the purple one.", "attributes": ["long lasting", "hair styling", "dry hair", "hair growth", "hair loss"], "options": ["color: purple", "size: 6.25\""], "instruction_attributes": ["hair growth"], "instruction_options": ["purple"], "assignment_id": "3ITXP059P7T58T23UAQ08CUVCH2JSX", "worker_id": "A1NF6PELRKACS9"}], "B08WWV6B8G": [{"asin": "B08WWV6B8G", "instruction": "i need a glossy electrical outlet cover.", "attributes": ["heavy duty", "high gloss"], "options": ["style: outlet | rocker combo"], "instruction_attributes": ["high gloss"], "instruction_options": ["outlet | rocker combo"], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKJJ7DB", "worker_id": "A19317A3X87NVM"}], "B08TJ1VF6P": [{"asin": "B08TJ1VF6P", "instruction": "i am looking for a super soft throw blanket that is at least 50 by 60 inches in size.", "attributes": ["super soft", "living room"], "options": ["color: t210120c-4", "size: 50 x 60 inches"], "instruction_attributes": ["super soft"], "instruction_options": ["50 x 60 inches"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SVHQTT", "worker_id": "AJDQGOTMB2D80"}], "B075RPQLCT": [{"asin": "B075RPQLCT", "instruction": "i am looking for low fat high protein salted toffee pretzel protein bars.", "attributes": ["low fat", "low carb", "low calorie", "high protein"], "options": ["flavor name: salted toffee pretzel", "size: 7 count (pack of 1)", "style: 3 boxes (save 5%)"], "instruction_attributes": ["low fat", "high protein"], "instruction_options": ["salted toffee pretzel", "3 boxes (save 5%)"], "assignment_id": "3DY46V3X30SWVSP7TC9YER1YGW7553", "worker_id": "A1EREKSZAA9V7B"}], "B09GLW6K81": [{"asin": "B09GLW6K81", "instruction": "show me travel bottles with bpa free, non toxic, high quality (yellow) please do it quickly.", "attributes": ["leak proof", "high quality", "bpa free", "non toxic", "easy clean", "easy use", "travel bottles", "quality materials"], "options": ["color: yellow"], "instruction_attributes": ["bpa free", "non toxic"], "instruction_options": ["yellow"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU8RCMG", "worker_id": "A15IJ20C3R4HUO"}], "B09LSQX8MH": [{"asin": "B09LSQX8MH", "instruction": "i am interested in headphones that are noise cancelling.", "attributes": ["noise cancelling", "hands free"], "options": [""], "instruction_attributes": ["noise cancelling"], "instruction_options": [], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OVC3M7", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PGQQH3S": [{"asin": "B07PGQQH3S", "instruction": "i need a pack of 24 individually wrapped ready to eat strawberry crepes.", "attributes": ["individually wrapped", "non gmo", "ready eat", "simple ingredients", "high fructose"], "options": ["flavor name: strawberry", "size: 1.13 ounce (pack of 24)"], "instruction_attributes": ["individually wrapped", "ready eat"], "instruction_options": ["strawberry", "1.13 ounce (pack of 24)"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZKKR7B", "worker_id": "AR9AU5FY1S3RO"}], "B084GCLMNR": [{"asin": "B084GCLMNR", "instruction": "get me some hydrating hyaluronic acid moisturizer for sensitive skin.", "attributes": ["hyaluronic acid", "sensitive skin"], "options": ["color: peptaronic serum", "style name: peptaronic (hydrating)"], "instruction_attributes": ["hyaluronic acid", "sensitive skin"], "instruction_options": ["peptaronic (hydrating)"], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXR1YLQ", "worker_id": "AR9AU5FY1S3RO"}], "B01LNKHDAK": [{"asin": "B01LNKHDAK", "instruction": "i am looking for a individually wrapped granola bar with high fructose. also choose 3-flavor variety pack", "attributes": ["chocolate covered", "individually wrapped", "high fructose"], "options": ["flavor name: 3-flavor variety pack"], "instruction_attributes": ["individually wrapped", "high fructose"], "instruction_options": ["3-flavor variety pack"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA4AR8I", "worker_id": "A2HMEGTAFO0CS8"}], "B09QHTZX6Z": [{"asin": "B09QHTZX6Z", "instruction": "i would like a pink electric tootbrush that is long lasting.", "attributes": ["teeth whitening", "long lasting"], "options": ["color: pink cow"], "instruction_attributes": ["long lasting"], "instruction_options": ["pink cow"], "assignment_id": "3C6FJU71T13BIVP65FM3X0R7AIGUY2", "worker_id": "A2ECRNQ3X5LEXD"}], "B00KUPS3JU": [{"asin": "B00KUPS3JU", "instruction": "i want to buy a mid-back drafting chair that has an adjustable height and lumbar support. look for a blue one.", "attributes": ["height adjustable", "lumbar support"], "options": ["color: blue mesh | white frame", "style: mid back drafting chair"], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": ["blue mesh | white frame", "mid back drafting chair"], "assignment_id": "37UQDCYH685SGQI5NW68G99TKQ8V7J", "worker_id": "AR9AU5FY1S3RO"}], "B07Y2B737Q": [{"asin": "B07Y2B737Q", "instruction": "buy me the toothpaste with hempseed and coconut oil.", "attributes": ["seed oil", "coconut oil"], "options": [""], "instruction_attributes": ["seed oil", "coconut oil"], "instruction_options": [], "assignment_id": "3R3YRB5GRQDAMDR3P98NUE907RVUAA", "worker_id": "AR9AU5FY1S3RO"}], "B09GNBPCRL": [{"asin": "B09GNBPCRL", "instruction": "i need some hair quality hair clippers", "attributes": ["long lasting", "easy clean", "high quality", "stainless steel", "hair cutting"], "options": ["color: gold with box"], "instruction_attributes": ["high quality"], "instruction_options": ["gold with box"], "assignment_id": "339ANSOTRGCBPZ5P7JWY5POLI8KIKN", "worker_id": "A2ECRNQ3X5LEXD"}], "B00XV44F44": [{"asin": "B00XV44F44", "instruction": "i am looking for a three pack of lactose free milk", "attributes": ["lactose free", "dairy free", "gluten free"], "options": ["size: 11.25 ounce (pack of 3)"], "instruction_attributes": ["lactose free"], "instruction_options": ["11.25 ounce (pack of 3)"], "assignment_id": "3P4RDNWNDGGGEFZ7PYWM4AO83JAIJE", "worker_id": "A2ECRNQ3X5LEXD"}], "B01FNQX11A": [{"asin": "B01FNQX11A", "instruction": "i need a 32 ct variety pack of cruelty free lip balms.", "attributes": ["cruelty free", "green tea", "natural ingredients"], "options": ["flavor name: variety", "size: pack of 32"], "instruction_attributes": ["cruelty free"], "instruction_options": ["variety", "pack of 32"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOHVMLW", "worker_id": "A2ECRNQ3X5LEXD"}], "B079CGP5GP": [{"asin": "B079CGP5GP", "instruction": "i need eye shadow with 0.5 ounce size only", "attributes": ["high quality", "eye shadow"], "options": ["color: .5 oz | 15ml", "size: 0.5 ounce (pack of 12)"], "instruction_attributes": ["eye shadow"], "instruction_options": ["0.5 ounce (pack of 12)"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNK1TNG", "worker_id": "A226L9F2AZ38CL"}], "B09RFYG8YG": [{"asin": "B09RFYG8YG", "instruction": "can you search for keeyo women's oversized jumpsuits? are summer casual baggy pants, daily wear with wide legs please find this costume for me in blue color and x-large size", "attributes": ["wide leg", "straight leg", "fleece lined", "loose fit", "wash cold", "hand wash", "machine wash", "long sleeve", "tummy control", "elastic waist", "high waist", "polyester spandex", "daily wear"], "options": ["color: blue", "size: x-large"], "instruction_attributes": ["wide leg", "daily wear"], "instruction_options": ["blue", "x-large"], "assignment_id": "3U0SRXB7COFPQ4TBUJINB96GZZRNRK", "worker_id": "A15IJ20C3R4HUO"}], "B00TOV2F4K": [{"asin": "B00TOV2F4K", "instruction": "i need to buy a forty-six inch under cabinet light fixture.", "attributes": ["white item", "light fixture"], "options": ["color: 3000k-warm white", "size: 46 in"], "instruction_attributes": ["light fixture"], "instruction_options": ["46 in"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HDQI68", "worker_id": "AR9AU5FY1S3RO"}], "B099KPHTQT": [{"asin": "B099KPHTQT", "instruction": "i would like to buy a 4g lte pc tablet with a hd screen.", "attributes": ["high definition", "4g lte"], "options": [""], "instruction_attributes": ["high definition", "4g lte"], "instruction_options": [], "assignment_id": "3OJSZ2ATD36BIW3QH5OVCBFU73S75C", "worker_id": "AHXHM1PQTRWIQ"}], "B08PPYCK6H": [{"asin": "B08PPYCK6H", "instruction": "i need ultra hd 13ft size smart tv", "attributes": ["high speed", "ultra hd", "blu ray", "gold plated"], "options": ["color: grey", "size: 13ft"], "instruction_attributes": ["ultra hd"], "instruction_options": ["13ft"], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMOPBQW", "worker_id": "A226L9F2AZ38CL"}], "B09DV19VKY": [{"asin": "B09DV19VKY", "instruction": "i am looking for a brushed nickel modern sputnik chandelier that has 15 lights for my dining room.", "attributes": ["mid century", "light fixture", "brushed nickel", "dining room", "living room"], "options": ["color: brushed brass", "size: 15 lights"], "instruction_attributes": ["brushed nickel", "dining room"], "instruction_options": ["15 lights"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGNKYIP", "worker_id": "A1EREKSZAA9V7B"}], "B09NSWZF5X": [{"asin": "B09NSWZF5X", "instruction": "i am looking for gaming pc windows 10 professional desktop tower with quad core i7 3.4ghz, 16gb ram, 256gb ssd, tempered glass and wifi adapter", "attributes": ["quad core", "tempered glass"], "options": [""], "instruction_attributes": ["quad core", "tempered glass"], "instruction_options": [], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LU2DC2", "worker_id": "AX2EWYWZM19AZ"}], "B09PG5MJG1": [{"asin": "B09PG5MJG1", "instruction": "i need to buy a height adjustable office chair with lumbar support. i want a grey one.", "attributes": ["height adjustable", "space saving", "lumbar support"], "options": ["color: grey"], "instruction_attributes": ["height adjustable", "lumbar support"], "instruction_options": ["grey"], "assignment_id": "3ZV9H2YQQOHNUWHNBU8EPUGRMXS3W0", "worker_id": "AR9AU5FY1S3RO"}], "B08R61WQ6K": [{"asin": "B08R61WQ6K", "instruction": "i want to find a black manual shaver that can help remove hair.", "attributes": ["non toxic", "high quality", "hair removal"], "options": ["color: black"], "instruction_attributes": ["hair removal"], "instruction_options": ["black"], "assignment_id": "3U5JL4WY5VJN1S5HLD9J1IM49ZZ4XK", "worker_id": "A345TDMHP3DQ3G"}], "B09CM59VGC": [{"asin": "B09CM59VGC", "instruction": "i am looking for a large wig storage case with accessory pockets.", "attributes": ["water resistant", "storage case", "synthetic hair"], "options": ["color: g102", "size: large"], "instruction_attributes": ["storage case"], "instruction_options": ["large"], "assignment_id": "3GFK2QRXXKRQ8B4RPDW74REB0T9W59", "worker_id": "A1EREKSZAA9V7B"}], "B08HQ8JRQP": [{"asin": "B08HQ8JRQP", "instruction": "i would like some low calorie sesame pretzels.", "attributes": ["artificial ingredients", "low calorie", "non gmo"], "options": ["flavor name: sesame", "size: 7.1 ounce bag, 3-pack"], "instruction_attributes": ["low calorie"], "instruction_options": ["sesame"], "assignment_id": "3PIWWX1FJUGC9QJD7GHMGB38GYTJJL", "worker_id": "A2ECRNQ3X5LEXD"}], "B096NK94S7": [{"asin": "B096NK94S7", "instruction": "i want a hieha double din car stereo compatible with apple.", "attributes": ["compatible apple", "hands free", "high definition", "usb port"], "options": [""], "instruction_attributes": ["compatible apple"], "instruction_options": [], "assignment_id": "3RXCAC0YI2ZDY7XT86ZSU82E8VY8G2", "worker_id": "A2RBF3IIJP15IH"}], "B00CUMRXKG": [{"asin": "B00CUMRXKG", "instruction": "i need to buy a queen sized faux leather platform bed in white.", "attributes": ["white item", "faux leather", "wood frame", "box spring"], "options": ["color: white", "size: queen"], "instruction_attributes": ["white item", "faux leather"], "instruction_options": ["white", "queen"], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVLEXLQ", "worker_id": "AR9AU5FY1S3RO"}], "B088RL3PW2": [{"asin": "B088RL3PW2", "instruction": "i am looking for 20 inch by 20 inch machine washable throw pillow inserts.", "attributes": ["machine washable", "lumbar support"], "options": ["size: 20\" x 20\""], "instruction_attributes": ["machine washable"], "instruction_options": ["20\" x 20\""], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIQM488", "worker_id": "A1EREKSZAA9V7B"}], "B07CMW1YNZ": [{"asin": "B07CMW1YNZ", "instruction": "i need firecracker eau de parfum for women's which is paraben free.", "attributes": ["paraben free", "cruelty free"], "options": ["size: eau de parfum", "style: firecracker"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTSNP9W", "worker_id": "ASWFLI3N8X72G"}], "B07RPNJXQQ": [{"asin": "B07RPNJXQQ", "instruction": "i want blue wide leg fudule women shorts.", "attributes": ["wide leg", "low rise", "slim fit", "hand wash", "high waist", "elastic waist", "button closure"], "options": ["color: x-6 blue", "size: 3x-large"], "instruction_attributes": ["wide leg"], "instruction_options": ["x-6 blue"], "assignment_id": "3M0NZ3JDPC8U269W00GE3V8THVH5ZC", "worker_id": "A2RBF3IIJP15IH"}], "B07NC2QDQM": [{"asin": "B07NC2QDQM", "instruction": "i want gluten free aurelia's spanish chorizo.", "attributes": ["fully cooked", "keto friendly", "dairy free", "gluten free"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SUADUD", "worker_id": "A2RBF3IIJP15IH"}], "B0130O3CWA": [{"asin": "B0130O3CWA", "instruction": "i want to find a makeup palette that is highly pigmented.", "attributes": ["cruelty free", "animal testing", "highly pigmented"], "options": [""], "instruction_attributes": ["highly pigmented"], "instruction_options": [], "assignment_id": "3HPZF4IVNX3FW186JO133U513I4CY5", "worker_id": "A345TDMHP3DQ3G"}], "B007TXXBJI": [{"asin": "B007TXXBJI", "instruction": "i am looking for combo pack b, low calorie, sugar and fat free cakes weighing 2.6 ounces in pack of 12", "attributes": ["low carb", "low calorie", "fat free", "sugar free"], "options": ["flavor: combo pack b", "size: 2.6 ounce (pack of 12)"], "instruction_attributes": ["low calorie", "fat free", "sugar free"], "instruction_options": ["combo pack b", "2.6 ounce (pack of 12)"], "assignment_id": "3URFVVM16GSBNLZB11OMB709GC6ZUK", "worker_id": "ASWFLI3N8X72G"}], "B089GY4SGR": [{"asin": "B089GY4SGR", "instruction": "i am looking for steel framed storage bench box. please choose red one.", "attributes": ["assembly required", "steel frame"], "options": ["color: red"], "instruction_attributes": ["steel frame"], "instruction_options": ["red"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTORV48", "worker_id": "A3FG5PQHG5AH3Y"}], "B07XDXNMR8": [{"asin": "B07XDXNMR8", "instruction": "i want to find a noise-cancelling headset that is bluetooth enabled and features a clip and cable.", "attributes": ["noise cancelling", "high speed", "easy install"], "options": ["size: clip+cable heaphone"], "instruction_attributes": ["noise cancelling"], "instruction_options": ["clip+cable heaphone"], "assignment_id": "3P59JYT76WU6HXHACPPYJ040CPBT2Q", "worker_id": "A345TDMHP3DQ3G"}], "B07PXBRYZR": [{"asin": "B07PXBRYZR", "instruction": "i want to find 3-inch silver hairpins that i can use to style my hair with.", "attributes": ["high quality", "hair styling"], "options": ["color: silver", "size: 3 inch"], "instruction_attributes": ["hair styling"], "instruction_options": ["silver", "3 inch"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPFR6VY", "worker_id": "A345TDMHP3DQ3G"}], "B09QKPTN7Q": [{"asin": "B09QKPTN7Q", "instruction": "i am looking for 2 nos high back armrest 3d mesh lumbar support office chair with red color", "attributes": ["easy assemble", "lumbar support", "pu leather"], "options": ["color: red", "item package quantity: 2"], "instruction_attributes": ["lumbar support"], "instruction_options": ["red", "2"], "assignment_id": "3X87C8JFVHLMUG6GP0A95D6HQC8QS9", "worker_id": "A258PTOZ3D2TQR"}], "B09FSFQ6QT": [{"asin": "B09FSFQ6QT", "instruction": "i need a hair elastic for my hair extensions.", "attributes": ["hair extensions", "natural hair"], "options": [""], "instruction_attributes": ["hair extensions"], "instruction_options": [], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMOEBQL", "worker_id": "A2ECRNQ3X5LEXD"}], "B082NBXXJP": [{"asin": "B082NBXXJP", "instruction": "i want a solid wood bench with storage space to go in my living room. it should be grey in color.", "attributes": ["solid wood", "living room"], "options": ["color: grey"], "instruction_attributes": ["solid wood", "living room"], "instruction_options": ["grey"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVFMZS5", "worker_id": "A1NF6PELRKACS9"}], "B07YY4DYV2": [{"asin": "B07YY4DYV2", "instruction": "i need some drapes for the living room that are 40\" by 63\" by 2.", "attributes": ["eco friendly", "living room", "dining room"], "options": ["size: 40'' x 63'' x 2 panels"], "instruction_attributes": ["living room"], "instruction_options": ["40'' x 63'' x 2 panels"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDWMAIW", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PBXXNCY": [{"asin": "B07PBXXNCY", "instruction": "i am looking for 300 count eco friendly face towels.", "attributes": ["eco friendly", "cruelty free", "dead skin", "sensitive skin"], "options": ["pattern name: 300 count (save 20%)"], "instruction_attributes": ["eco friendly"], "instruction_options": ["300 count (save 20%)"], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMP1EXA", "worker_id": "A3FG5PQHG5AH3Y"}], "B001KW0CYG": [{"asin": "B001KW0CYG", "instruction": "i am looking for a maple and brushed nickel 2 door armoire.", "attributes": ["assembly required", "brushed nickel"], "options": ["color: maple"], "instruction_attributes": ["brushed nickel"], "instruction_options": ["maple"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL6LCEC", "worker_id": "A1EREKSZAA9V7B"}], "B07ZWGVCNM": [{"asin": "B07ZWGVCNM", "instruction": "i am looking for hp elitedesk 800 g2 business desktop mini tower with core i5 ,16gb ram, 512gb harddrive and windows 10 pro along with high performance and certified refurbished", "attributes": ["certified refurbished", "fast charging", "high performance", "core i5", "intel core", "usb port"], "options": [""], "instruction_attributes": ["certified refurbished", "high performance"], "instruction_options": [], "assignment_id": "3483FV8BEPT0FZ6YGCH58QCMSH162T", "worker_id": "AX2EWYWZM19AZ"}], "B08586N7Z1": [{"asin": "B08586N7Z1", "instruction": "i am looking for yellow anti slip chair cushions", "attributes": ["button tufted", "non slip"], "options": ["color: yellow", "style: 4 pack"], "instruction_attributes": ["non slip"], "instruction_options": ["yellow"], "assignment_id": "3L70J4KAZRWO5BGH3EIYKE5CLRHDA0", "worker_id": "A1EREKSZAA9V7B"}], "B0882N9V2H": [{"asin": "B0882N9V2H", "instruction": "get me some party mix with chocolate covered cashews in a resealable bag.", "attributes": ["chocolate covered", "resealable bag"], "options": ["flavor name: cashews"], "instruction_attributes": ["chocolate covered", "resealable bag"], "instruction_options": ["cashews"], "assignment_id": "3IHR8NYAMIBISJ3QZMZ275017074PD", "worker_id": "AR9AU5FY1S3RO"}], "B09LYBQWXJ": [{"asin": "B09LYBQWXJ", "instruction": "i want to buy some multicolored machine washable pajamas in size large.", "attributes": ["wash cold", "hand wash", "machine wash", "elastic waistband", "dry clean"], "options": ["color: multi 1", "size: large"], "instruction_attributes": ["machine wash"], "instruction_options": ["multi 1", "large"], "assignment_id": "3Z7ISHFUHB5DPOSYYYNHFFIKJLHZ87", "worker_id": "AR9AU5FY1S3RO"}], "B09D9KYZ5D": [{"asin": "B09D9KYZ5D", "instruction": "i want some easy to use rose gold hair extensions.", "attributes": ["easy use", "rose gold"], "options": [""], "instruction_attributes": ["easy use", "rose gold"], "instruction_options": [], "assignment_id": "3634BBTX0Z409DDB6851PCWGACUFI9", "worker_id": "AR9AU5FY1S3RO"}], "B09KH2XNJM": [{"asin": "B09KH2XNJM", "instruction": "i want a pair of machine washable memory foam slippers. get the size 12-13 women in berry.", "attributes": ["hand wash", "machine wash", "memory foam", "quality materials", "closed toe"], "options": ["color: berry square argyle plaid bright", "size: 12-13 wide women | 10-11 wide men"], "instruction_attributes": ["machine wash", "memory foam"], "instruction_options": ["berry square argyle plaid bright", "12-13 wide women | 10-11 wide men"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG6OSLP", "worker_id": "AR9AU5FY1S3RO"}], "B08CN7FPM7": [{"asin": "B08CN7FPM7", "instruction": "my sister use avocado color eyebrow", "attributes": ["easy clean", "eye shadow"], "options": ["color: avocado-1"], "instruction_attributes": ["eye shadow"], "instruction_options": ["avocado-1"], "assignment_id": "3TR2532VI040LV46NXNX77Y3USEJ6K", "worker_id": "A226L9F2AZ38CL"}], "B09B3FXKMD": [{"asin": "B09B3FXKMD", "instruction": "i want a misty blue anker magnetic wireless charger.", "attributes": ["non slip", "wireless charging"], "options": ["color: misty blue"], "instruction_attributes": ["wireless charging"], "instruction_options": ["misty blue"], "assignment_id": "3KOPY89HMJC1OCHO4VPZ04MJK1D3JZ", "worker_id": "A2RBF3IIJP15IH"}], "B096KTWFQW": [{"asin": "B096KTWFQW", "instruction": "i'm looking for an easy to install cell phone safety lanyard patch which has a color specification of transparent x 6.", "attributes": ["easy install", "wireless charging"], "options": ["color: transparent x 6"], "instruction_attributes": ["easy install"], "instruction_options": ["transparent x 6"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JYGGET", "worker_id": "A20DUVEOH6A7KW"}], "B09LGYLN2X": [{"asin": "B09LGYLN2X", "instruction": "i need hair extensions of 18 inch in #1 jet black color made of natural hair.", "attributes": ["hair extensions", "natural hair"], "options": ["color: #1 jet black", "size: 18 inch"], "instruction_attributes": ["hair extensions", "natural hair"], "instruction_options": ["#1 jet black", "18 inch"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUAQR95", "worker_id": "ASWFLI3N8X72G"}], "B08NJT56G6": [{"asin": "B08NJT56G6", "instruction": "i am looking woman's non slip made from vinyl acetate indoor bathroom slipper color black size 13", "attributes": ["fleece lined", "anti slip", "non slip", "ethylene vinyl", "vinyl acetate", "comfortable fit"], "options": ["color: black", "size: 13 women | 11 men"], "instruction_attributes": ["non slip", "vinyl acetate", "comfortable fit"], "instruction_options": ["black", "13 women | 11 men"], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS15UVK", "worker_id": "A3N9ZYQAESNFQH"}], "B09FHLKBZ5": [{"asin": "B09FHLKBZ5", "instruction": "i need a ready to hang wall art with white mustangs on a brown background. it should be easy to clean as well.", "attributes": ["ready hang", "easy clean"], "options": ["color: white mustangs on brown background", "size: 20x30"], "instruction_attributes": ["ready hang", "easy clean"], "instruction_options": ["white mustangs on brown background"], "assignment_id": "34Z02EIMI3NZLNEWX2LK0CBLFRET0T", "worker_id": "A1NF6PELRKACS9"}], "B09GFGTPVG": [{"asin": "B09GFGTPVG", "instruction": "i am looking for a blue colored 4g lte signal booster for home.", "attributes": ["high speed", "4g lte"], "options": ["color: blue"], "instruction_attributes": ["4g lte"], "instruction_options": ["blue"], "assignment_id": "3YJ6NA41JMQ8V1MB2TM6D7PKPX9PJ1", "worker_id": "AJDQGOTMB2D80"}], "B078N6MJ4J": [{"asin": "B078N6MJ4J", "instruction": "i'm looking for a full xl size mattress and box spring set with 8\" foundation.", "attributes": ["ready use", "queen size", "fully assembled", "twin size", "assembly required", "box spring", "king size"], "options": ["size: full xl size", "style: 8\" foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["full xl size", "8\" foundation"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWZ25T3", "worker_id": "A20DUVEOH6A7KW"}], "B081J5858X": [{"asin": "B081J5858X", "instruction": "he was wearing a burgundy polyester cotton with black color and size 31 . it's quality is good.", "attributes": ["machine wash", "cotton spandex", "polyester cotton", "button closure"], "options": ["color: black", "size: 31"], "instruction_attributes": ["cotton spandex", "polyester cotton"], "instruction_options": ["black", "31"], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXVPO4U", "worker_id": "ASL9LVC97FUCZ"}], "B09QRZRHZD": [{"asin": "B09QRZRHZD", "instruction": "i am looking for iphone 11 mobile case. please choose green one.", "attributes": ["easy install", "wireless charging"], "options": ["color: green", "size: iphone 11"], "instruction_attributes": ["wireless charging"], "instruction_options": ["green"], "assignment_id": "3TOK3KHVJ4SXQ698MKKULHFLOXP7O7", "worker_id": "A3FG5PQHG5AH3Y"}], "B082CMQ79J": [{"asin": "B082CMQ79J", "instruction": "i am looking for bunny cake toppers for a baby shower.", "attributes": ["cupcake picks", "baby shower"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YWEQ3M", "worker_id": "A1EREKSZAA9V7B"}], "B09KQ2Y1X1": [{"asin": "B09KQ2Y1X1", "instruction": "i am looking for a twin xl over queen sized heavy duty steel bunk bed frame.", "attributes": ["heavy duty", "metal legs"], "options": ["size: twin xl over queen"], "instruction_attributes": ["heavy duty"], "instruction_options": ["twin xl over queen"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LKC091", "worker_id": "AJDQGOTMB2D80"}], "B00158OJ9O": [{"asin": "B00158OJ9O", "instruction": "i am looking for hd dvd player.", "attributes": ["high definition", "aaa batteries"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3VSOLARPKMJCI04FIJYMBA8GOW993I", "worker_id": "A3FG5PQHG5AH3Y"}], "B09KRN61GH": [{"asin": "B09KRN61GH", "instruction": "guyou faux fur accent chairs set of 2 chairs, white item is my choice for my new home .", "attributes": ["white item", "living room", "dining room"], "options": ["color: grey", "size: 2 chairs"], "instruction_attributes": ["white item"], "instruction_options": ["2 chairs"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW364TW", "worker_id": "A15IJ20C3R4HUO"}], "B09DPFQ2MD": [{"asin": "B09DPFQ2MD", "instruction": "i am looking for canvas paintings with ready hang for living room, blue&white color is preferred", "attributes": ["hand painted", "ready hang", "living room"], "options": ["color: blue&white"], "instruction_attributes": ["ready hang", "living room"], "instruction_options": ["blue&white"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XQVGNW", "worker_id": "A258PTOZ3D2TQR"}], "B09RGBM4R7": [{"asin": "B09RGBM4R7", "instruction": "i need a navy blue shock absorption carbon fiber case", "attributes": ["carbon fiber", "wireless charging"], "options": ["color: navy blue"], "instruction_attributes": ["carbon fiber"], "instruction_options": ["navy blue"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBBROS0", "worker_id": "A258PTOZ3D2TQR"}], "B09KN2NMLY": [{"asin": "B09KN2NMLY", "instruction": "i am looking for extra large high waist women's leggings with tummy control.", "attributes": ["tummy control", "high waist", "polyester spandex"], "options": ["color: ablack", "size: x-large"], "instruction_attributes": ["tummy control", "high waist"], "instruction_options": ["x-large"], "assignment_id": "379J5II41ZQAT0LLW0I8ZA38FF8LEA", "worker_id": "A1EREKSZAA9V7B"}], "B0979YW9ZJ": [{"asin": "B0979YW9ZJ", "instruction": "i want a aipsun clear glass globe pendant light fixture.", "attributes": ["mid century", "easy install", "pendant light", "light fixture", "clear glass", "glass shade", "dining room", "living room"], "options": ["size: round"], "instruction_attributes": ["clear glass"], "instruction_options": [], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70I9RBCU", "worker_id": "A2RBF3IIJP15IH"}], "B07TGHZH66": [{"asin": "B07TGHZH66", "instruction": "i need to buy a full sized, machine washable comforter. get color six.", "attributes": ["machine washable", "king size", "printing technology"], "options": ["color: 6", "size: full | queen"], "instruction_attributes": ["machine washable"], "instruction_options": ["6", "full | queen"], "assignment_id": "3SBEHTYCWYD694U6BYXPEX3WGNJYIO", "worker_id": "AR9AU5FY1S3RO"}], "B081MXB6L9": [{"asin": "B081MXB6L9", "instruction": "i want to find a red d04 gaming chair that offers lumbar support.", "attributes": ["height adjustable", "heavy duty", "steel frame", "lumbar support", "pu leather", "memory foam"], "options": ["color: red", "style: d04"], "instruction_attributes": ["lumbar support"], "instruction_options": ["red", "d04"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUI93RT", "worker_id": "A345TDMHP3DQ3G"}], "B088TFG3LN": [{"asin": "B088TFG3LN", "instruction": "i am looking for a high speed digital camera with optical zoom.", "attributes": ["high speed", "optical zoom"], "options": [""], "instruction_attributes": ["high speed", "optical zoom"], "instruction_options": [], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3G5VBB", "worker_id": "A2HMEGTAFO0CS8"}], "B098SSXM1M": [{"asin": "B098SSXM1M", "instruction": "i would like some elastic waistband pants that are black in a size 38w by 34l", "attributes": ["long lasting", "polyester cotton", "cotton spandex", "elastic waistband"], "options": ["color: duratex black", "size: 38w x 34l"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["duratex black", "38w x 34l"], "assignment_id": "31HQ4X3T33KB3JQ3XV2DOR7NG6ILSC", "worker_id": "A2ECRNQ3X5LEXD"}], "B08YP3KNRT": [{"asin": "B08YP3KNRT", "instruction": "i want to buy a four pack of non-gmo orange mango sparkling waters.", "attributes": ["keto friendly", "non gmo", "gluten free", "artificial colors"], "options": ["flavor name: energy - orange mango", "size: 12 fl oz (pack of 4)"], "instruction_attributes": ["non gmo"], "instruction_options": ["energy - orange mango", "12 fl oz (pack of 4)"], "assignment_id": "3WLEIWSYHZRGCOQFCV895H1C1VF2HO", "worker_id": "AR9AU5FY1S3RO"}], "B07VS875WL": [{"asin": "B07VS875WL", "instruction": "i'm looking for farmhouse window curtain set of grey color for living room , w 52 x l 90 | pair", "attributes": ["machine washable", "high density", "living room"], "options": ["color: grey", "size: w 52 x l 90 | pair"], "instruction_attributes": ["living room"], "instruction_options": ["grey", "w 52 x l 90 | pair"], "assignment_id": "3J4Q2Z4UT9DF1XNP95KA2292WPBQWV", "worker_id": "A258PTOZ3D2TQR"}], "B00M674K0G": [{"asin": "B00M674K0G", "instruction": "i need a 10 pound back of parboiled brown rice that is easy to prepare.", "attributes": ["easy prepare", "artificial ingredients"], "options": [""], "instruction_attributes": ["easy prepare"], "instruction_options": [], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG0P54B", "worker_id": "A1NF6PELRKACS9"}], "B09D2N6MHB": [{"asin": "B09D2N6MHB", "instruction": "i need to buy some blackout curtains for my living room that are eighty-four inches by eighty-four inches. get the ones with trees on them.", "attributes": ["exquisite workmanship", "living room"], "options": ["color: trees_74", "size: w84 x l84"], "instruction_attributes": ["living room"], "instruction_options": ["trees_74", "w84 x l84"], "assignment_id": "36NEMU28XQNOGIPXHCDTLTPXMO7MWX", "worker_id": "AR9AU5FY1S3RO"}], "B004UBFLR2": [{"asin": "B004UBFLR2", "instruction": "find me some tea tree and lavender conditioner for dry, sensitive skin.", "attributes": ["tea tree", "dry skin", "sensitive skin"], "options": ["scent: lavender"], "instruction_attributes": ["tea tree", "dry skin", "sensitive skin"], "instruction_options": ["lavender"], "assignment_id": "3FIJLY1B65ESQZ0FJ3VLY9XSWQQPFW", "worker_id": "AR9AU5FY1S3RO"}], "B07YM3C3JT": [{"asin": "B07YM3C3JT", "instruction": "i am looking for buff which is a sulfate-free, vegan scent-free conditioner bar for sensitive skin! free from fragrance & coconut oil to soothe & smooth your scalp! ethique solid conditioner bar for sensitive skin which is 100% soap free & safe for color-treated or damaged hair. palm-oil free & aluminum free. kookabara scent in 2.12 ounce preferable.", "attributes": ["sulfate free", "eco friendly", "oil free", "fragrance free", "cruelty free", "coconut oil", "sensitive skin", "damaged hair"], "options": ["scent: kookabara", "size: 2.12 ounce (pack of 2)"], "instruction_attributes": ["sulfate free", "eco friendly", "oil free", "fragrance free", "cruelty free", "coconut oil", "sensitive skin", "damaged hair"], "instruction_options": ["kookabara", "2.12 ounce (pack of 2)"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EDTWSN", "worker_id": "A1DRKZ3SCLAS4V"}], "B00ZQEN1U6": [{"asin": "B00ZQEN1U6", "instruction": "get me a pair of grey nylon spandex stretch pants.", "attributes": ["nylon spandex", "button closure"], "options": ["color: grey", "size: 30w x 30l"], "instruction_attributes": ["nylon spandex"], "instruction_options": ["grey"], "assignment_id": "3ZWFC4W1U5HD2CGUWVZA34X7X85RFH", "worker_id": "AR9AU5FY1S3RO"}], "B0167BTDBC": [{"asin": "B0167BTDBC", "instruction": "i want a mojito twist flavored cocktail mixer. make sure that it is non alcoholic and low calorie.", "attributes": ["plant based", "non alcoholic", "low calorie", "fat free", "sugar free", "gluten free", "zero sugar"], "options": ["flavor: mojito twist"], "instruction_attributes": ["non alcoholic", "low calorie"], "instruction_options": ["mojito twist"], "assignment_id": "32VNZTT0AIE34WJ5CE3RC00G8IDR4A", "worker_id": "A1NF6PELRKACS9"}], "B09RHZT7FK": [{"asin": "B09RHZT7FK", "instruction": "i am looking for high quality replacement shaver heads for a philips razor.", "attributes": ["easy use", "easy clean", "high quality", "quality materials"], "options": [""], "instruction_attributes": ["high quality"], "instruction_options": [], "assignment_id": "3CFJTT4SX40NUKY5OP7P1KJZCO2I7Z", "worker_id": "A1EREKSZAA9V7B"}], "B07XFPQQGW": [{"asin": "B07XFPQQGW", "instruction": "i need a light weight case cover for a macbook air. get the creative marble pattern.", "attributes": ["light weight", "case cover"], "options": ["color: creative marble 1"], "instruction_attributes": ["light weight", "case cover"], "instruction_options": ["creative marble 1"], "assignment_id": "3634BBTX0Z409DDB6851PCWGACYFID", "worker_id": "AR9AU5FY1S3RO"}], "B0094V8VMK": [{"asin": "B0094V8VMK", "instruction": "i need to find a pair of coral suede ballet flats in size eight and a half. find the ones with the rubber soles.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: coral suede", "size: 8.5 women | 8.5 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["coral suede", "8.5 women | 8.5 men"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P9EUB3", "worker_id": "AR9AU5FY1S3RO"}], "B089NC1WS1": [{"asin": "B089NC1WS1", "instruction": "i need to get a synthetic hair extension in color 4.", "attributes": ["synthetic hair", "natural hair"], "options": ["color: 4#"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["4#"], "assignment_id": "3Z9WI9EOZAYBT4U511ED5DN6IVTHKH", "worker_id": "AR9AU5FY1S3RO"}], "B09NSKWVMS": [{"asin": "B09NSKWVMS", "instruction": "i used green color coconut oil", "attributes": ["long lasting", "coconut oil"], "options": ["color: g"], "instruction_attributes": ["coconut oil"], "instruction_options": ["g"], "assignment_id": "326O153BMT8RVOXTJJKKGXV3665EDM", "worker_id": "A226L9F2AZ38CL"}], "B07Q89CKGR": [{"asin": "B07Q89CKGR", "instruction": "i need a long lasting tv stand in white color.", "attributes": ["long lasting", "white item", "engineered wood"], "options": [""], "instruction_attributes": ["long lasting", "white item"], "instruction_options": [], "assignment_id": "3STRJBFXO711YDL01VV2JWQUTPJKTP", "worker_id": "A1NF6PELRKACS9"}], "B09P77DZZQ": [{"asin": "B09P77DZZQ", "instruction": "i need bath sponges that are non toxic for dead skin in the color 1.", "attributes": ["non toxic", "easy clean", "dead skin"], "options": ["color: 1"], "instruction_attributes": ["non toxic", "dead skin"], "instruction_options": ["1"], "assignment_id": "3TDXMTX3CM44QKK05F2XV6J3HD0I6I", "worker_id": "A2ECRNQ3X5LEXD"}], "B09GM514NH": [{"asin": "B09GM514NH", "instruction": "i need some blue wide legged pants in a large.", "attributes": ["long lasting", "wide leg", "drawstring closure", "relaxed fit", "gym workout"], "options": ["color: blue", "size: large"], "instruction_attributes": ["wide leg"], "instruction_options": ["blue", "large"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWOMW6R", "worker_id": "A2ECRNQ3X5LEXD"}], "B08PVD3LNP": [{"asin": "B08PVD3LNP", "instruction": "i need a tempered glass screen protector for my iphone.", "attributes": ["aluminum alloy", "tempered glass"], "options": [""], "instruction_attributes": ["tempered glass"], "instruction_options": [], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKJN1T7", "worker_id": "A2ECRNQ3X5LEXD"}], "B09B29YL3R": [{"asin": "B09B29YL3R", "instruction": "i need a pair of white sneakers with rubber sole. it should be in women size 11.", "attributes": ["rubber outsole", "rubber sole"], "options": ["color: galaxy | multi | white", "size: 11 women | 9.5 men"], "instruction_attributes": ["rubber sole"], "instruction_options": ["galaxy | multi | white", "11 women | 9.5 men"], "assignment_id": "3WMOAN2SRM7HJBAS33NXC6VJK7FNVS", "worker_id": "A1NF6PELRKACS9"}], "B09KBSGMBB": [{"asin": "B09KBSGMBB", "instruction": "i need some cupcake toppers for a birthday party. get the ones with silver glitter.", "attributes": ["birthday party", "birthday cake"], "options": ["color: glitter silver"], "instruction_attributes": ["birthday party"], "instruction_options": ["glitter silver"], "assignment_id": "3S96KQ6I9XETK7FQ9E9FFJV49GQDT9", "worker_id": "AR9AU5FY1S3RO"}], "B00FTBREYK": [{"asin": "B00FTBREYK", "instruction": "i want non gmo gimme, seaweed snack teriyaki.", "attributes": ["usda organic", "non gmo", "gluten free", "artificial flavors"], "options": [""], "instruction_attributes": ["non gmo"], "instruction_options": [], "assignment_id": "30BUDKLTXO5WRBI04D21IL7BTP8E5F", "worker_id": "A2RBF3IIJP15IH"}], "B09QPYH2S5": [{"asin": "B09QPYH2S5", "instruction": "i need some blue linens that are high in quality.", "attributes": ["high quality", "beauty salon"], "options": ["color: blue", "size: 70*190cm round head"], "instruction_attributes": ["high quality"], "instruction_options": ["blue"], "assignment_id": "3UWN2HHPU9F1RJTO98IS1JBCL1BNS9", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P1NR5Z7": [{"asin": "B09P1NR5Z7", "instruction": "i need a toothbrush for kids that is easy to use and is the color c.", "attributes": ["easy use", "sensitive teeth"], "options": ["color: c"], "instruction_attributes": ["easy use"], "instruction_options": ["c"], "assignment_id": "36TFCYNS4FKHD4TC0KT2V7V8E45HX3", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MW196JX": [{"asin": "B09MW196JX", "instruction": "i want a brown mens shawl collar long-sleeved cardigans sweater.", "attributes": ["hand wash", "machine wash", "long sleeve"], "options": ["color: brown", "size: x-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["brown"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WQK42V", "worker_id": "A2RBF3IIJP15IH"}], "B01C0UPTUS": [{"asin": "B01C0UPTUS", "instruction": "i want to find butter infused olive oil in a 200 milliliter bottle. it shouldn't have any artificial flavors.", "attributes": ["gluten free", "artificial flavors"], "options": ["flavor name: butter infused", "size: 200ml bottle"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["butter infused", "200ml bottle"], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTOQ4VG", "worker_id": "A345TDMHP3DQ3G"}], "B089QMJTLB": [{"asin": "B089QMJTLB", "instruction": "i am looking for a replacement remote control for samsung tvs that includes batteries.", "attributes": ["batteries included", "aaa batteries"], "options": [""], "instruction_attributes": ["batteries included"], "instruction_options": [], "assignment_id": "39N5ACM9HPXJPP92GHVTODBHTSTP92", "worker_id": "A1EREKSZAA9V7B"}], "B09BTW5WRN": [{"asin": "B09BTW5WRN", "instruction": "i need some wide leg pajama pants. it should be a large sized relaxed fit pant.", "attributes": ["wide leg", "drawstring waist", "relaxed fit"], "options": ["color: colorful fireworks", "size: large"], "instruction_attributes": ["wide leg", "relaxed fit"], "instruction_options": ["large"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKAJENG", "worker_id": "A1NF6PELRKACS9"}], "B09MJG8ZJN": [{"asin": "B09MJG8ZJN", "instruction": "i want to buy a faux fur sherpa jacket in medium.", "attributes": ["faux fur", "long sleeve"], "options": ["color: salesale-a093-gray", "size: medium"], "instruction_attributes": ["faux fur"], "instruction_options": ["medium"], "assignment_id": "3CCZ6YKWRITFWFRJW2MFQ7602SU952", "worker_id": "AR9AU5FY1S3RO"}], "B01MYQEGN0": [{"asin": "B01MYQEGN0", "instruction": "find me some low-fat jerky in a resealable bag. i'd like the teriyaki flavor.", "attributes": ["low fat", "gluten free", "resealable bag"], "options": ["flavor name: gap beef 2.2oz 8ct - teriyaki"], "instruction_attributes": ["low fat", "resealable bag"], "instruction_options": ["gap beef 2.2oz 8ct - teriyaki"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO392CE", "worker_id": "AR9AU5FY1S3RO"}], "B07F1BVNJ7": [{"asin": "B07F1BVNJ7", "instruction": "i am looking for men's slim-fit machine wash and button closure with moisture wicking medium grey heather polo shirt and size is x-small", "attributes": ["slim fit", "moisture wicking", "machine wash", "button closure"], "options": ["color: medium grey heather", "material type: polyester", "size: x-small"], "instruction_attributes": ["moisture wicking", "machine wash", "button closure"], "instruction_options": ["medium grey heather", "x-small"], "assignment_id": "3ZOTGHDK5TLJ94T0ANI5G8BHBBVOS4", "worker_id": "AX2EWYWZM19AZ"}], "B08X227GNQ": [{"asin": "B08X227GNQ", "instruction": "i need green women high waist yoga pants.", "attributes": ["tummy control", "high waist", "quality polyester", "drawstring closure", "daily wear"], "options": ["color: green", "size: medium"], "instruction_attributes": ["high waist"], "instruction_options": ["green"], "assignment_id": "36ZN444YT28UFQQ45BORC65U2DKIOX", "worker_id": "A2RBF3IIJP15IH"}], "B08GG22BF6": [{"asin": "B08GG22BF6", "instruction": "i want to buy wireless nunchuck controllers for the wii.", "attributes": ["batteries included", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "37ZHEEHM67W84HGM3M02XEHAT6K37Z", "worker_id": "AR9AU5FY1S3RO"}], "B087C94L8C": [{"asin": "B087C94L8C", "instruction": "i want to buy a twenty four pack of stupid hot low carb pork rinds.", "attributes": ["low carb", "sugar free"], "options": ["flavor name: stupid hot", "size: 24 pack"], "instruction_attributes": ["low carb"], "instruction_options": ["stupid hot", "24 pack"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTD8D5M", "worker_id": "AR9AU5FY1S3RO"}], "B09R1WHYBK": [{"asin": "B09R1WHYBK", "instruction": "find ps3 controller playstation 3 controller wireless bluetooth remote controller for playstation 3 system (siliver+orange) at amazon please.", "attributes": ["high performance", "wireless bluetooth"], "options": ["color: siliver+orange"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["siliver+orange"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZD86S09", "worker_id": "A15IJ20C3R4HUO"}], "B08BQK4P1D": [{"asin": "B08BQK4P1D", "instruction": "i want tea biscuits made with quality ingredients. make sure that it is individually wrapped and doesn't come in a jar.", "attributes": ["individually wrapped", "quality ingredients"], "options": ["flavor name: turtle", "style: without jar (individually wrapped)"], "instruction_attributes": ["individually wrapped", "quality ingredients"], "instruction_options": ["without jar (individually wrapped)"], "assignment_id": "3VAR3R6G10B1QKERWPC0ZHBGZIC8OE", "worker_id": "A1NF6PELRKACS9"}], "B008YDVYMI": [{"asin": "B008YDVYMI", "instruction": "i want to buy a 36 count box of java love k cup pods. they should be usda organic.", "attributes": ["usda organic", "plant based"], "options": ["flavor name: java love", "size: 36 count (pack of 1)"], "instruction_attributes": ["usda organic"], "instruction_options": ["java love", "36 count (pack of 1)"], "assignment_id": "3PJUZCGDJHQYJXALU0TI2RGR4IK98T", "worker_id": "AR9AU5FY1S3RO"}], "B07DKTN85G": [{"asin": "B07DKTN85G", "instruction": "i am looking for medium brown end tables with outlets and usb ports for my living room.", "attributes": ["assembly required", "engineered wood", "living room"], "options": ["color: medium brown"], "instruction_attributes": ["living room"], "instruction_options": ["medium brown"], "assignment_id": "37TRT2X24116R7L1JO45INKV8TMBJU", "worker_id": "A1EREKSZAA9V7B"}], "B08Z7PFF24": [{"asin": "B08Z7PFF24", "instruction": "i have 4x-large size short sleeve", "attributes": ["short sleeve", "everyday wear", "daily wear"], "options": ["color: purple magical butterfly", "size: 4x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["4x-large"], "assignment_id": "386CSBG1OAWH7I8JIN7648AP8N66QY", "worker_id": "A226L9F2AZ38CL"}], "B09PH5TQVH": [{"asin": "B09PH5TQVH", "instruction": "i'd like to find a loose short-sleeved summer tunic top for my teenage daughter. she's a size xxl and likes the color green.", "attributes": ["short sleeve", "teen girls"], "options": ["color: p04- green", "size: xx-large"], "instruction_attributes": ["short sleeve", "teen girls"], "instruction_options": ["p04- green", "xx-large"], "assignment_id": "3907X2AHFBF8P5O3V8GEEQ33NMG2PK", "worker_id": "A3LIIE572Z4OG7"}], "B09LRTVYR7": [{"asin": "B09LRTVYR7", "instruction": "i am looking for makeup brushes tool set with eye shadow blush", "attributes": ["synthetic hair", "eye shadow"], "options": ["color: purple"], "instruction_attributes": ["eye shadow"], "instruction_options": ["purple"], "assignment_id": "3HPZF4IVNX3FW186JO133U513IAYCX", "worker_id": "A258PTOZ3D2TQR"}], "B09Q2MDFKY": [{"asin": "B09Q2MDFKY", "instruction": "i am looking for a large short sleeve men's graphic t-shirt.", "attributes": ["slim fit", "long sleeve", "contrast color", "short sleeve", "regular fit", "daily wear"], "options": ["color: a-red", "size: large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["large"], "assignment_id": "3ZAK8W07IFOEL0TLX7BU58XNY5O0UU", "worker_id": "A1EREKSZAA9V7B"}], "B099NB8PK5": [{"asin": "B099NB8PK5", "instruction": "i want to find earbuds that are very lightweight.", "attributes": ["light weight", "plug play"], "options": [""], "instruction_attributes": ["light weight"], "instruction_options": [], "assignment_id": "39GAF6DQW2AE5433YGPZFZIGH4G1V0", "worker_id": "A345TDMHP3DQ3G"}], "B09QLJ586M": [{"asin": "B09QLJ586M", "instruction": "i would like some chocolates that are individually wrapped that say congratulations.", "attributes": ["nut free", "individually wrapped", "artificial colors", "gift basket"], "options": ["style: congratulations"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["congratulations"], "assignment_id": "3PB5A5BD06G9YTSAY17MG86JXBQG7L", "worker_id": "A2ECRNQ3X5LEXD"}], "B09LL184WP": [{"asin": "B09LL184WP", "instruction": "i want to find a hair repair mask treatment that can treat damaged hair.", "attributes": ["damaged hair", "hair loss"], "options": [""], "instruction_attributes": ["damaged hair"], "instruction_options": [], "assignment_id": "3EQHHY4HQ32UBPERA8SPIOSN65QG51", "worker_id": "A345TDMHP3DQ3G"}], "B09NRM8YB8": [{"asin": "B09NRM8YB8", "instruction": "i am looking for tufted storage bench ottoman of qtqhome padded footrest stool which is collapsible design of this storage trunk makes it easy to set up a cozy, padded seating within seconds! it can also be folded flat when not in use for compact storage. best for living room in brown color 100x40x42cm(39x16x17inch) preferable.", "attributes": ["non slip", "faux leather", "storage space", "living room"], "options": ["color: brown", "size: 100x40x42cm(39x16x17inch)"], "instruction_attributes": ["non slip", "faux leather", "storage space", "living room"], "instruction_options": ["brown", "100x40x42cm(39x16x17inch)"], "assignment_id": "3PZDLQMM04VPVGFZQ3U8UQ4WO3DC2S", "worker_id": "A1DRKZ3SCLAS4V"}], "B00CTG7QYG": [{"asin": "B00CTG7QYG", "instruction": "i want to find an ac adapter that is high definition.", "attributes": ["output protection", "high definition"], "options": [""], "instruction_attributes": ["high definition"], "instruction_options": [], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4ATRQQ", "worker_id": "A345TDMHP3DQ3G"}], "B08SHZZT49": [{"asin": "B08SHZZT49", "instruction": "i want to find an extra-large pair of high waisted x1-21 blue jeans for women.", "attributes": ["wide leg", "straight leg", "hand wash", "high waist", "short sleeve", "long sleeve", "teen girls"], "options": ["color: x1-21 blue", "size: x-large"], "instruction_attributes": ["high waist"], "instruction_options": ["x1-21 blue", "x-large"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCS75QT", "worker_id": "A345TDMHP3DQ3G"}], "B07SJW6LKN": [{"asin": "B07SJW6LKN", "instruction": "i am looking for ready to eat plain jackfruit.", "attributes": ["ready eat", "plant based", "non gmo", "gluten free"], "options": ["flavor: plain"], "instruction_attributes": ["ready eat"], "instruction_options": ["plain"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRLMMF4", "worker_id": "A1EREKSZAA9V7B"}], "B01LTI98E0": [{"asin": "B01LTI98E0", "instruction": "i am looking for an anti perspirant.", "attributes": ["anti perspirant", "clinically proven"], "options": [""], "instruction_attributes": ["anti perspirant"], "instruction_options": [], "assignment_id": "3K5TEWLKG6LP5AZ16NA57YZ2Y6BVI6", "worker_id": "A2ECRNQ3X5LEXD"}], "B00SYOXIBM": [{"asin": "B00SYOXIBM", "instruction": "i'm looking for a high speed cable hdmi male to male 2 pack of 30 feet", "attributes": ["high speed", "gold plated"], "options": ["color: 2 pack", "size: 30-feet (2-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed"], "instruction_options": ["2 pack", "30-feet (2-pack)", "hdmi male to male"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUC8R9R", "worker_id": "A2Y2TURT2VEYZN"}], "B00SZXFIEW": [{"asin": "B00SZXFIEW", "instruction": "get me a hdmi male to male cable that is high speed and gold plated.", "attributes": ["high speed", "gold plated"], "options": ["color: 1 pack", "size: 12 feet (5-pack)", "style: hdmi male to male"], "instruction_attributes": ["high speed", "gold plated"], "instruction_options": ["hdmi male to male"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X5YGPU", "worker_id": "A1NF6PELRKACS9"}], "B07V4J5G67": [{"asin": "B07V4J5G67", "instruction": "i would like a living room ottoman that is white faux fur.", "attributes": ["mid century", "contemporary design", "metal legs", "living room"], "options": ["color: white faux fur | gold base"], "instruction_attributes": ["living room"], "instruction_options": ["white faux fur | gold base"], "assignment_id": "3180JW2OTFM42R4SIEDSF1K3YX75JU", "worker_id": "A2ECRNQ3X5LEXD"}], "B01N66JEE3": [{"asin": "B01N66JEE3", "instruction": "i want a pair of super soft fleece lined socks in snowflake or light pink color.", "attributes": ["fleece lined", "nylon spandex"], "options": ["color: snowflake | light pink ab"], "instruction_attributes": ["fleece lined"], "instruction_options": ["snowflake | light pink ab"], "assignment_id": "3X0H8UUITCYRED22199FX2O3EDVWSP", "worker_id": "A1NF6PELRKACS9"}], "B09Q2R5FJJ": [{"asin": "B09Q2R5FJJ", "instruction": "i'm looking for high power and high resolution monocular telescope", "attributes": ["high power", "dust proof", "high resolution"], "options": [""], "instruction_attributes": ["high power", "high resolution"], "instruction_options": [], "assignment_id": "3HMVI3QICU2V9YY83RCJMYMAZLCY10", "worker_id": "A258PTOZ3D2TQR"}], "B08QJGB99C": [{"asin": "B08QJGB99C", "instruction": "i need a wall-mounted mirror that is easy to install.", "attributes": ["double sided", "easy install", "living room", "dining room"], "options": [""], "instruction_attributes": ["easy install"], "instruction_options": [], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT22JYF", "worker_id": "A2ECRNQ3X5LEXD"}], "B074348Q5V": [{"asin": "B074348Q5V", "instruction": "get me a hand washable camo jumpsuit in size extra extra large.", "attributes": ["wash cold", "hand wash", "polyester cotton"], "options": ["color: 2 camo", "size: xx-large"], "instruction_attributes": ["hand wash"], "instruction_options": ["2 camo", "xx-large"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMJEXV7", "worker_id": "AR9AU5FY1S3RO"}], "B09CLLJ8QL": [{"asin": "B09CLLJ8QL", "instruction": "running a candle flame up and down a twisted piece of dry hair and color is beige.", "attributes": ["eco friendly", "non slip", "dry hair"], "options": ["color: beige"], "instruction_attributes": [], "instruction_options": [], "assignment_id": "3EA3QWIZ4T5ASIVC1SAQ6GBH1LATI3", "worker_id": "ASL9LVC97FUCZ"}], "B09BW1BRQQ": [{"asin": "B09BW1BRQQ", "instruction": "i need a floor lamp for my living room.", "attributes": ["brushed nickel", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKKIVPU", "worker_id": "A2ECRNQ3X5LEXD"}], "B08LGRSCFT": [{"asin": "B08LGRSCFT", "instruction": "i am looking for super soft and machine washable dujiea lightweight cozy bed blanket with size small (40\"x50\") and also color is christmas kitty cat", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: christmas kitty cat", "size: small (40\"x50\")"], "instruction_attributes": ["super soft", "machine washable"], "instruction_options": ["christmas kitty cat", "small (40\"x50\")"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRTOPW2", "worker_id": "AX2EWYWZM19AZ"}], "B09NXS5F3S": [{"asin": "B09NXS5F3S", "instruction": "i want a grey and easy to install naked eye 3d holographic projector.", "attributes": ["easy install", "aluminum alloy"], "options": ["color: space grey", "size: us"], "instruction_attributes": ["easy install"], "instruction_options": ["space grey"], "assignment_id": "3M68NM076SHHJJNJV2W69YKU49HR6T", "worker_id": "A2RBF3IIJP15IH"}], "B088GN4M6J": [{"asin": "B088GN4M6J", "instruction": "i am looking for a long lasting rechargeable hair clipper.", "attributes": ["long lasting", "hair cutting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3XUHV3NRVV88BL92UEA73O4OL515HN", "worker_id": "AJDQGOTMB2D80"}], "B09HTJX6LY": [{"asin": "B09HTJX6LY", "instruction": "i am looking for high resolution digital camera. choose pink color.", "attributes": ["high resolution", "high performance"], "options": ["color: pink", "style: w | lens cap"], "instruction_attributes": ["high resolution"], "instruction_options": ["pink"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLSH03Z", "worker_id": "A3FG5PQHG5AH3Y"}], "B07LBBBWLM": [{"asin": "B07LBBBWLM", "instruction": "i am looking for 3 pcs wall art for living room. size should be 12x16 inches.", "attributes": ["ready hang", "living room"], "options": ["color: coffee bean coffee cup", "size: 12x16inches*3pcs"], "instruction_attributes": ["living room"], "instruction_options": ["coffee bean coffee cup"], "assignment_id": "3VNL7UK1XQTQIRTM0K453JYPLTGTFA", "worker_id": "A3FG5PQHG5AH3Y"}], "B09BNYG291": [{"asin": "B09BNYG291", "instruction": "i need an easy to apply glitter pot that comes in copper holographic color.", "attributes": ["easy apply", "long lasting"], "options": ["color: copper holographic", "size: super chunky (1 | 8\" 0.125\" 3mm)"], "instruction_attributes": ["easy apply"], "instruction_options": ["copper holographic"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYB8EIJ", "worker_id": "A1NF6PELRKACS9"}], "B08W8PBDGW": [{"asin": "B08W8PBDGW", "instruction": "i want to find a white console table with double layers for my living room.", "attributes": ["easy clean", "metal legs", "living room"], "options": ["color: white double layer console table", "size: white console table"], "instruction_attributes": ["living room"], "instruction_options": ["white double layer console table", "white console table"], "assignment_id": "3C44YUNSICZVSFMJSX0VA9U7KDBPDM", "worker_id": "A345TDMHP3DQ3G"}], "B082251QT1": [{"asin": "B082251QT1", "instruction": "i am looking for 3 foot plug play hdmi cable", "attributes": ["blu ray", "plug play"], "options": ["size: 3 foot", "style: cable + adapter"], "instruction_attributes": ["plug play"], "instruction_options": ["3 foot"], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPWE20K9", "worker_id": "A258PTOZ3D2TQR"}], "B07MG7Z32T": [{"asin": "B07MG7Z32T", "instruction": "i want cheese pretzelhaus soft individually wrapped bavarian baked pretzels.", "attributes": ["individually wrapped", "shelf stable"], "options": ["flavor name: cheese", "size: 6 ounce (pack of 1)"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["cheese"], "assignment_id": "3EG49X3515M1GF9V412YYG6I5QR6XT", "worker_id": "A2RBF3IIJP15IH"}], "B08HRZG38Q": [{"asin": "B08HRZG38Q", "instruction": "i am looking for machine washable blue colored heated vest for men and women.", "attributes": ["easy care", "machine washable", "hand wash", "machine wash"], "options": ["color: blue", "size: 6x-large"], "instruction_attributes": ["machine washable"], "instruction_options": ["blue"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R18P2IC", "worker_id": "AJDQGOTMB2D80"}], "B07Q8SMN7B": [{"asin": "B07Q8SMN7B", "instruction": "i need a suction tool for removing dry, dead skin.", "attributes": ["non toxic", "easy carry", "easy clean", "fine lines", "dry skin", "dead skin"], "options": [""], "instruction_attributes": ["dry skin", "dead skin"], "instruction_options": [], "assignment_id": "33FBRBDW6Z90HVHO6K394HHZA30C8Q", "worker_id": "AR9AU5FY1S3RO"}], "B07ZK5V3Z4": [{"asin": "B07ZK5V3Z4", "instruction": "i need to buy some machine washable blackout curtains for my living room. buy the 52 inch by 52 inch size.", "attributes": ["machine washable", "living room"], "options": ["color: aurora-002lbg0560", "size: 52\" w by 52\" l"], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["aurora-002lbg0560", "52\" w by 52\" l"], "assignment_id": "31QNSG6A523U5EMSF3VYOVPL9S287M", "worker_id": "AR9AU5FY1S3RO"}], "B07G31BXTV": [{"asin": "B07G31BXTV", "instruction": "i am looking for brother hl-2170w 23ppm laser printer with wireless , high performance and certified refurbished", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished", "high performance"], "instruction_options": [], "assignment_id": "3TU5ZICBROB4BWR7B244OM6GEI78QX", "worker_id": "AX2EWYWZM19AZ"}], "B09NZDB484": [{"asin": "B09NZDB484", "instruction": "i would like some sugar free salted caramel truffles.", "attributes": ["sugar free", "rich creamy", "keto friendly", "individually wrapped"], "options": ["flavor name: salted caramel"], "instruction_attributes": ["sugar free"], "instruction_options": ["salted caramel"], "assignment_id": "3IXEICO79DTUZY0BZR119DLCSU4T6Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B07TGMKJ1D": [{"asin": "B07TGMKJ1D", "instruction": "i want a burt's bees body lotion for sensitive skin with aloe & shea butter.", "attributes": ["dermatologist tested", "animal testing", "fragrance free", "sensitive skin"], "options": ["scent: aloe & shea butter", "size: 6.0 ounce"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["aloe & shea butter"], "assignment_id": "3QXNC7EIPT5G185IZWG39CA9LKO90M", "worker_id": "A2RBF3IIJP15IH"}], "B09SPZM8VL": [{"asin": "B09SPZM8VL", "instruction": "i want a regular fit tee with short sleeves. i am 3x-large in size.", "attributes": ["slim fit", "loose fit", "short sleeve", "long sleeve", "regular fit"], "options": ["size: 3x-large"], "instruction_attributes": ["short sleeve", "regular fit"], "instruction_options": ["3x-large"], "assignment_id": "3NLZY2D530ZZQ3BQ5RD8TRSMYI6LQW", "worker_id": "A1NF6PELRKACS9"}], "B08PBRZHV4": [{"asin": "B08PBRZHV4", "instruction": "i want a hemoton 25 pack christmas cupcake toppers for a baby shower.", "attributes": ["baby shower", "birthday party"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3X66WABAJ7SRXARNWP4W3RU3S9W3GV", "worker_id": "A2RBF3IIJP15IH"}], "B07ZK3M34L": [{"asin": "B07ZK3M34L", "instruction": "i want to find 12 ounces of sweet potatoes that are certified organic.", "attributes": ["grain free", "gluten free", "certified organic"], "options": ["flavor name: sweet potato", "size: 12 ounce (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["sweet potato", "12 ounce (pack of 1)"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3Y27QA", "worker_id": "A345TDMHP3DQ3G"}], "B08HFQSJJL": [{"asin": "B08HFQSJJL", "instruction": "i would like a jalapeno ranch sauce that is gluten free.", "attributes": ["dairy free", "gluten free", "high fructose", "artificial flavors"], "options": ["size: 9 ounce (pack of 6)", "style: jalepeno ranch"], "instruction_attributes": ["gluten free"], "instruction_options": ["jalepeno ranch"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0S0U11W", "worker_id": "A2ECRNQ3X5LEXD"}], "B08L7RG5Z9": [{"asin": "B08L7RG5Z9", "instruction": "find this product: tangist corner table stand microwave oven stand 4 shelves storage unit for my kitchen", "attributes": ["space saving", "storage unit", "storage space"], "options": [""], "instruction_attributes": ["space saving", "storage space"], "instruction_options": [], "assignment_id": "3TXD01ZLDFRVKOBMG8YWHBN0FHD4UN", "worker_id": "A15IJ20C3R4HUO"}], "B08BJ112QF": [{"asin": "B08BJ112QF", "instruction": "i need a camera case cover that is light green in color. it is for my iphone which is 11-6.1 inches in size.", "attributes": ["case cover", "wireless charging"], "options": ["color: light green", "size: for iphone 11-6.1 in"], "instruction_attributes": ["case cover"], "instruction_options": ["light green", "for iphone 11-6.1 in"], "assignment_id": "308XBLVESTENPV4ERTDEKE6MIATBRZ", "worker_id": "A1NF6PELRKACS9"}], "B08F54DW1X": [{"asin": "B08F54DW1X", "instruction": "i am looking for steel frame kamiler rustic 6 drawers dresser with open shelf in rustic brown color", "attributes": ["storage space", "steel frame", "living room"], "options": ["color: rustic brown"], "instruction_attributes": ["steel frame"], "instruction_options": ["rustic brown"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODMLWEN", "worker_id": "AX2EWYWZM19AZ"}], "B08JQMNF69": [{"asin": "B08JQMNF69", "instruction": "i want to find shampoo that is made with argan oil.", "attributes": ["argan oil", "hair dye"], "options": [""], "instruction_attributes": ["argan oil"], "instruction_options": [], "assignment_id": "3UOUJI6MTOOMIQZW0J01EMKY8CLXUY", "worker_id": "A345TDMHP3DQ3G"}], "B08WLXV4Z7": [{"asin": "B08WLXV4Z7", "instruction": "i want to buy some dragon's dream cookies n'cream granola bars. get the pack of fifteen and make sure they're individually wrapped and nut free.", "attributes": ["individually wrapped", "gluten free", "non gmo", "nut free", "quality ingredients"], "options": ["flavor name: dragon's dream cookies n' cream", "size: 0.88 ounce (pack of 15)"], "instruction_attributes": ["individually wrapped", "nut free"], "instruction_options": ["dragon's dream cookies n' cream", "0.88 ounce (pack of 15)"], "assignment_id": "3NPFYT4IZNE3D8Y1GEBKA7J7Z4VXGN", "worker_id": "AR9AU5FY1S3RO"}], "B00OZV63OW": [{"asin": "B00OZV63OW", "instruction": "i need to buy some scrub bottoms in petite small. they should be blue and machine washable.", "attributes": ["low rise", "moisture wicking", "machine washable"], "options": ["color: new royal", "size: small petite"], "instruction_attributes": ["machine washable"], "instruction_options": ["new royal", "small petite"], "assignment_id": "3Z7EFSHGNKOQWWIWESF1KGYS1CAXCK", "worker_id": "AR9AU5FY1S3RO"}], "B07YZQTKDJ": [{"asin": "B07YZQTKDJ", "instruction": "i'm looking for medium-tan mineral sunscreen lotion for kids that is water-resistant.", "attributes": ["oil free", "water resistant", "cruelty free", "fine lines", "sensitive skin"], "options": ["color: medium-tan", "style: mineral lotion for kids"], "instruction_attributes": ["water resistant"], "instruction_options": ["medium-tan", "mineral lotion for kids"], "assignment_id": "3SPJ03342CD24FECTGIPQYIWT27JYK", "worker_id": "A345TDMHP3DQ3G"}], "B07SBH6293": [{"asin": "B07SBH6293", "instruction": "i'm looking for a desktop computer that's certified refurbished and has an intel i5 core.", "attributes": ["certified refurbished", "core i5", "intel core"], "options": [""], "instruction_attributes": ["certified refurbished", "core i5", "intel core"], "instruction_options": [], "assignment_id": "3KMS4QQVKD0RF83Z6BQD2SBT2GGFKH", "worker_id": "AR9AU5FY1S3RO"}], "B097GVR1ZK": [{"asin": "B097GVR1ZK", "instruction": "i need a children's mouthwash two pack that is made from natural ingredients.", "attributes": ["fluoride free", "natural ingredients"], "options": ["size: 2pack"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["2pack"], "assignment_id": "3MAOD8E571K9N0FN3IOF0RS40GSNXW", "worker_id": "A2ECRNQ3X5LEXD"}], "B07PXXNZ3C": [{"asin": "B07PXXNZ3C", "instruction": "i need women's eau de toilette from design house which has a good fragrance and is long lasting.", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["design house", "long lasting"], "instruction_options": [], "assignment_id": "3JMSRU9HQT4DP5XFA4KEMJ1A6DCEVO", "worker_id": "ASWFLI3N8X72G"}], "B003EWOCDW": [{"asin": "B003EWOCDW", "instruction": "i want to find a speedotron beauty box that is 12 inches by 56 inches in size. it needs to be very heavy duty.", "attributes": ["high power", "heavy duty"], "options": ["size: 12x56in (30x140cm)", "style: speedotron"], "instruction_attributes": ["heavy duty"], "instruction_options": ["12x56in (30x140cm)", "speedotron"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYBOIE3", "worker_id": "A345TDMHP3DQ3G"}], "B07SJYYLWS": [{"asin": "B07SJYYLWS", "instruction": "i need a coconut oil based exfoliating body cream for my dry skin.", "attributes": ["cruelty free", "natural ingredients", "coconut oil", "dry skin"], "options": [""], "instruction_attributes": ["coconut oil", "dry skin"], "instruction_options": [], "assignment_id": "3ZSY5X72N8L78PTNVYI0QY6LP9YOR2", "worker_id": "A1NF6PELRKACS9"}], "B09MD1ZGCL": [{"asin": "B09MD1ZGCL", "instruction": "i want a navy fleece lined womens winter coat.", "attributes": ["fleece lined", "drawstring waist", "daily wear"], "options": ["color: x01-navy", "size: large"], "instruction_attributes": ["fleece lined"], "instruction_options": ["x01-navy"], "assignment_id": "3MYYFCXHJEHCF6ARW39FDWM969V4GK", "worker_id": "A2RBF3IIJP15IH"}], "B09NXY57FB": [{"asin": "B09NXY57FB", "instruction": "i want purple fluoride free mmnm teeth cleansing toothpaste.", "attributes": ["fluoride free", "natural ingredients", "sensitive teeth"], "options": ["color: purple", "size: 2pcs"], "instruction_attributes": ["fluoride free"], "instruction_options": ["purple"], "assignment_id": "3NOKK93PRCIWNUBTFEV4MFDO6IAEEJ", "worker_id": "A2RBF3IIJP15IH"}], "B0791Y2LMB": [{"asin": "B0791Y2LMB", "instruction": "i am looking for high protein vanilla flavored nutrition shake, 11 fl oz, 12 count", "attributes": ["high protein", "low fat", "non gmo", "gluten free"], "options": ["flavor name: vanilla"], "instruction_attributes": ["high protein"], "instruction_options": ["vanilla"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLXAYBQ", "worker_id": "A258PTOZ3D2TQR"}], "B09NRCH7RS": [{"asin": "B09NRCH7RS", "instruction": "i want to buy a television stand that's easy to assemble. it needs to be brown and 27.5 inches tall.", "attributes": ["white item", "easy clean", "easy assemble", "engineered wood", "living room"], "options": ["color: brown(large)", "size: 27.5 inches tall"], "instruction_attributes": ["easy assemble"], "instruction_options": ["brown(large)", "27.5 inches tall"], "assignment_id": "31JLPPHS254FPN8LK8H48035JVKO30", "worker_id": "A2YNPKYEFDZ6C9"}], "B08W2CL9WD": [{"asin": "B08W2CL9WD", "instruction": "help me find a short sleeved button down shirt made in a tall men's extra large. also, i prefer a fabric with some stretch to it.", "attributes": ["moisture wicking", "stretch fabric", "button closure", "short sleeve"], "options": ["color: pagoda blue", "fit type: regular", "size: x-large tall"], "instruction_attributes": ["stretch fabric", "short sleeve"], "instruction_options": ["x-large tall"], "assignment_id": "3OVR4I9US0T3SV45ZZER7AQBCW34QE", "worker_id": "A1E235KE3CSO7H"}], "B00CF61DDK": [{"asin": "B00CF61DDK", "instruction": "i am looking for 50 single serving irish creme liquid creamers that are easy to use.", "attributes": ["rich creamy", "easy use"], "options": [""], "instruction_attributes": ["easy use"], "instruction_options": [], "assignment_id": "3Y9N9SS8L9LOLQHWUZ3OX6R6FHC3DH", "worker_id": "A1EREKSZAA9V7B"}], "B086HLP2MT": [{"asin": "B086HLP2MT", "instruction": "i want to find extra-small women's yoga pants that i can wear for my gym workouts. they need to be green colored.", "attributes": ["tummy control", "high waist", "drawstring closure", "elastic waistband", "elastic waist", "gym workout"], "options": ["color: z1-green", "size: x-small"], "instruction_attributes": ["gym workout"], "instruction_options": ["z1-green", "x-small"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KNCJL1", "worker_id": "A345TDMHP3DQ3G"}], "B09QT1LJ7D": [{"asin": "B09QT1LJ7D", "instruction": "i want to find some whitening toothpaste that treats bad breath.", "attributes": ["teeth whitening", "bad breath"], "options": [""], "instruction_attributes": ["teeth whitening", "bad breath"], "instruction_options": [], "assignment_id": "3X0H8UUITCYRED22199FX2O3EDPWSJ", "worker_id": "A345TDMHP3DQ3G"}], "B09S3PQJZF": [{"asin": "B09S3PQJZF", "instruction": "shop for a red short sleeve t-shirt in size x-large.", "attributes": ["loose fit", "wash cold", "hand wash", "short sleeve", "long sleeve"], "options": ["color: 1-red", "size: x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["1-red", "x-large"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW6ES8S", "worker_id": "AR9AU5FY1S3RO"}], "B09S3Q2DWB": [{"asin": "B09S3Q2DWB", "instruction": "i need a black color, large sized, daily wear men's underwear which can be hand washed.", "attributes": ["hand wash", "daily wear"], "options": ["color: black", "size: large"], "instruction_attributes": ["hand wash", "daily wear"], "instruction_options": ["black", "large"], "assignment_id": "35LDD5557LEXLIVGSYUQXIV2ZH3KM4", "worker_id": "ASWFLI3N8X72G"}], "B09PHD4LGT": [{"asin": "B09PHD4LGT", "instruction": "i need a male cable for an outdoor 4g lte antenna. it should be five meters long.", "attributes": ["easy install", "4g lte"], "options": ["color: 5m cable n male"], "instruction_attributes": ["easy install", "4g lte"], "instruction_options": ["5m cable n male"], "assignment_id": "32UTUBMZ7R6FI2LV0DIOLBVP3GYVB4", "worker_id": "AR9AU5FY1S3RO"}], "B09N8RTNSX": [{"asin": "B09N8RTNSX", "instruction": "i would like some red butt lifting sweatpants that are in a size small.", "attributes": ["moisture wicking", "butt lifting", "quick drying", "machine wash", "quality polyester", "elastic closure", "polyester cotton", "elastic waist"], "options": ["color: yred7", "size: small"], "instruction_attributes": ["butt lifting"], "instruction_options": ["yred7", "small"], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX4PFA5", "worker_id": "A2ECRNQ3X5LEXD"}], "B0863M3S82": [{"asin": "B0863M3S82", "instruction": "i am looking for optical zoom cameras", "attributes": ["optical zoom", "carrying case"], "options": [""], "instruction_attributes": ["optical zoom"], "instruction_options": [], "assignment_id": "323Q6SJS8TQ0DI2R0QNGP0V1AZRFHS", "worker_id": "A16M39T60N60NO"}], "B01NBHBR7S": [{"asin": "B01NBHBR7S", "instruction": "i want a solid wood table in dark cognac brown color for my living room.", "attributes": ["fully assembled", "solid wood", "living room"], "options": ["color: dark cognac brown 2", "size: 14 inch"], "instruction_attributes": ["solid wood", "living room"], "instruction_options": ["dark cognac brown 2"], "assignment_id": "3AUQQEL7UG3EYFIL2XLZ1UZ6CCX0VJ", "worker_id": "A1NF6PELRKACS9"}], "B07LGFDCJH": [{"asin": "B07LGFDCJH", "instruction": "i want to find some individually wrapped lozenges that are lemon and ginger flavored.", "attributes": ["nut free", "individually wrapped", "gluten free", "artificial colors"], "options": ["flavor name: lemon & ginger"], "instruction_attributes": ["individually wrapped"], "instruction_options": ["lemon & ginger"], "assignment_id": "3DQQ64TANRVU1LMA9S5L2XJSRTIPWW", "worker_id": "A345TDMHP3DQ3G"}], "B095JYXNKY": [{"asin": "B095JYXNKY", "instruction": "i need a hand washable short sleeve t-shirt in blue. get the size large.", "attributes": ["hand wash", "long sleeve", "faux fur", "short sleeve"], "options": ["color: 2-blue", "size: large"], "instruction_attributes": ["hand wash", "short sleeve"], "instruction_options": ["2-blue", "large"], "assignment_id": "3AAPLD8UCNRAWNKSVAS564A218NHTQ", "worker_id": "AR9AU5FY1S3RO"}], "B09JRCG3K3": [{"asin": "B09JRCG3K3", "instruction": "i want a 2022 dell g5 gaming desktop pc intel 6-core i5-10400f with windows 11 home.", "attributes": ["core i5", "intel core"], "options": ["size: 32gb | 512gb ssd", "style: windows 11 home"], "instruction_attributes": ["core i5"], "instruction_options": ["windows 11 home"], "assignment_id": "3L6L49WXWB7EZ9L7F7QO9ZVKG0G542", "worker_id": "A2RBF3IIJP15IH"}], "B07HQXTQKS": [{"asin": "B07HQXTQKS", "instruction": "let me get some shelf stable tub of ghee which is grass fed.", "attributes": ["grass fed", "shelf stable", "fat free", "keto friendly", "gluten free"], "options": [""], "instruction_attributes": ["grass fed", "shelf stable"], "instruction_options": [], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUCNZDM", "worker_id": "A1NF6PELRKACS9"}], "B09FJVTX94": [{"asin": "B09FJVTX94", "instruction": "i need an orange leather ottoman for my living room that is 46 cm.", "attributes": ["high density", "pu leather", "living room"], "options": ["color: orange leather", "size: 46cm"], "instruction_attributes": ["living room"], "instruction_options": ["orange leather", "46cm"], "assignment_id": "3M1CVSFP6BFIUKKM80OIKDCB46XQA9", "worker_id": "A2ECRNQ3X5LEXD"}], "B08YJ42QYT": [{"asin": "B08YJ42QYT", "instruction": "i want to buy a twin size bed frame in gray with drawers. it should be solid wood and easily assembled.", "attributes": ["twin size", "assembly required", "easy assemble", "solid wood"], "options": ["color: gray-drawers"], "instruction_attributes": ["twin size", "assembly required", "easy assemble", "solid wood"], "instruction_options": ["gray-drawers"], "assignment_id": "3HL8HNGX4GB7YCK82EZOCJXDRMDF9W", "worker_id": "AR9AU5FY1S3RO"}], "B08Y1FRSVT": [{"asin": "B08Y1FRSVT", "instruction": "can you find me a loose fitting jumpsuit with wide legs in size medium. i want it to be green in color.", "attributes": ["loose fit", "wide leg", "soft material"], "options": ["color: f green", "size: medium"], "instruction_attributes": ["loose fit", "wide leg"], "instruction_options": ["f green", "medium"], "assignment_id": "3HUTX6F6V5XQ45C2G83ZPQYDDHX2OG", "worker_id": "A36LOA6VLJU157"}], "B09PGHW1TQ": [{"asin": "B09PGHW1TQ", "instruction": "i want a pink machine washable womens swimsuits tankini top set.", "attributes": ["machine wash", "drawstring closure", "elastic waistband", "tummy control"], "options": ["color: pink", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["pink"], "assignment_id": "3GNA64GUZPELOE85D4X1C2WPCS55QR", "worker_id": "A2RBF3IIJP15IH"}], "B08FT2CF2R": [{"asin": "B08FT2CF2R", "instruction": "i am looking for 40 mm smartwatch case. it should be compatible to apple watch.", "attributes": ["compatible apple", "easy install", "case cover"], "options": ["color: clear", "size: 40 mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["40 mm"], "assignment_id": "3LRLIPTPE1JWJHMRVV4LOR0250DAK9", "worker_id": "A3FG5PQHG5AH3Y"}], "B08MT83DJ9": [{"asin": "B08MT83DJ9", "instruction": "i want green zuseris unisex fleece lined clogs.", "attributes": ["fleece lined", "water resistant", "arch support", "rubber sole"], "options": ["color: green", "size: 14 women | 13 men"], "instruction_attributes": ["fleece lined"], "instruction_options": ["green"], "assignment_id": "3OS46CRSLQ99CQ404M1GAV9XPFJ6VQ", "worker_id": "A2RBF3IIJP15IH"}], "B07RN8QGPS": [{"asin": "B07RN8QGPS", "instruction": "i am looking for hands free headphones that are mint and yellow.", "attributes": ["hands free", "stainless steel"], "options": ["color: mint & yellow"], "instruction_attributes": ["hands free"], "instruction_options": ["mint & yellow"], "assignment_id": "3R8YZBNQ9SS0BIMO1XCYAMAL3YS7Q0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QXKCNDR": [{"asin": "B09QXKCNDR", "instruction": "i need high quality linen fabric item.", "attributes": ["high density", "white item", "faux leather", "wood frame", "living room"], "options": ["color: white", "style: linen fabric"], "instruction_attributes": ["high density"], "instruction_options": ["linen fabric"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQB4JAA", "worker_id": "A226L9F2AZ38CL"}], "B01LZSFOFS": [{"asin": "B01LZSFOFS", "instruction": "i am looking for a rectangular sofa table for my living room.", "attributes": ["assembly required", "engineered wood", "living room"], "options": [""], "instruction_attributes": ["living room"], "instruction_options": [], "assignment_id": "38BQUHLA97AGB9GVQQMJ4ZCBJMEOMT", "worker_id": "A1NF6PELRKACS9"}], "B07YST7545": [{"asin": "B07YST7545", "instruction": "i want to find a package of six keto-friendly caramel sea salt bars.", "attributes": ["low carb", "plant based", "gluten free", "low sugar", "low calorie", "keto friendly", "non gmo", "artificial flavors"], "options": ["flavor name: new! caramel sea salt", "size: 6 count (pack of 1)"], "instruction_attributes": ["keto friendly"], "instruction_options": ["new! caramel sea salt", "6 count (pack of 1)"], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SVJTQY", "worker_id": "A345TDMHP3DQ3G"}], "B078Z2PCVZ": [{"asin": "B078Z2PCVZ", "instruction": "i'am purchased women's clothing with quality materials and size 4x. also ,choose the magenta one.", "attributes": ["fashion design", "quality materials"], "options": ["color: magenta", "size: 4x"], "instruction_attributes": ["quality materials"], "instruction_options": ["magenta", "4x"], "assignment_id": "3TPWUS5F8KBB7WD64NJFIXKLSA4WCQ", "worker_id": "ASL9LVC97FUCZ"}], "B07VBVRL6Q": [{"asin": "B07VBVRL6Q", "instruction": "i want to buy a super soft fleece throw. look for one that's fifty by eighty inches.", "attributes": ["super soft", "fleece throw"], "options": ["color: style 1", "size: 50\"x80\""], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["50\"x80\""], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUKQ4S5", "worker_id": "AR9AU5FY1S3RO"}], "B09NBJCF85": [{"asin": "B09NBJCF85", "instruction": "i want to find a vintage sherpa fleece throw that is 50 inches wide and 60 inches long. it needs to accommodate a queen sized bed.", "attributes": ["double sided", "queen size"], "options": ["color: vintage 5", "size: throw 50\" w x 60\" l"], "instruction_attributes": ["queen size"], "instruction_options": ["vintage 5", "throw 50\" w x 60\" l"], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMV3G24", "worker_id": "A345TDMHP3DQ3G"}], "B093KDG2NY": [{"asin": "B093KDG2NY", "instruction": "i want laundry bag organiser for blouse ,hosiery other lingeries easy cary for travel", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "304SM51WAEEZQA4R6IDJAOBI4C6SBY", "worker_id": "A3N9ZYQAESNFQH"}], "B08H1Y41XM": [{"asin": "B08H1Y41XM", "instruction": "i want pink hair styling parting combs for braids.", "attributes": ["stainless steel", "long handle", "hair styling", "hair salon", "hair cutting"], "options": ["color: pink"], "instruction_attributes": ["hair styling"], "instruction_options": ["pink"], "assignment_id": "3ZGVPD4G64RWN8KM1WYC6BE7XY9TZX", "worker_id": "A2RBF3IIJP15IH"}], "B073TSTFB8": [{"asin": "B073TSTFB8", "instruction": "i am looking for long lasting l'eau de parfum spray for women", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["long lasting"], "instruction_options": [], "assignment_id": "3IAEQB9FMPULCOJK4JEQ2323DAMDWD", "worker_id": "AX2EWYWZM19AZ"}], "B07GXBJ73P": [{"asin": "B07GXBJ73P", "instruction": "if you have maybelline new york super stay full coverage (dermatologist tested,oil free) i'm looking for color 128 warm nude.", "attributes": ["dermatologist tested", "oil free", "long lasting"], "options": ["color: 128 warm nude", "size: 1 fl oz (pack of 1)"], "instruction_attributes": ["dermatologist tested", "oil free"], "instruction_options": ["128 warm nude"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0R2ACU", "worker_id": "A15IJ20C3R4HUO"}], "B08XYMK48Z": [{"asin": "B08XYMK48Z", "instruction": "i want to find a pink and blue hair brush that can promote hair growth.", "attributes": ["hair removal", "hair growth", "hair loss", "dead skin"], "options": ["color: 0-pink,blue"], "instruction_attributes": ["hair growth"], "instruction_options": ["0-pink,blue"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRLEMFW", "worker_id": "A345TDMHP3DQ3G"}], "B099S29GVM": [{"asin": "B099S29GVM", "instruction": "i need a sky blue women's top with long sleeves.", "attributes": ["loose fit", "long sleeve", "soft material", "teen girls"], "options": ["color: sky blue", "size: medium"], "instruction_attributes": ["loose fit", "long sleeve"], "instruction_options": ["sky blue"], "assignment_id": "3VD82FOHK1Y32N44D1S5137ZP87COW", "worker_id": "A1NF6PELRKACS9"}], "B01MAWFHQW": [{"asin": "B01MAWFHQW", "instruction": "i want a 12 pack of gmo free cherry bay orchards tart cherry concentrate.", "attributes": ["gmo free", "gluten free", "easy use", "kosher certified", "natural ingredients", "artificial flavors"], "options": ["color: 8 oz", "size: 16 fl oz (pack of 12)"], "instruction_attributes": ["gmo free"], "instruction_options": ["16 fl oz (pack of 12)"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVAC8VH", "worker_id": "A2RBF3IIJP15IH"}], "B093WKBWHF": [{"asin": "B093WKBWHF", "instruction": "i want to find scented shampoo that can stop hair loss and promote hair growth.", "attributes": ["hair loss", "hair growth"], "options": [""], "instruction_attributes": ["hair loss", "hair growth"], "instruction_options": [], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCNVMBN", "worker_id": "A345TDMHP3DQ3G"}], "B09P8C5V26": [{"asin": "B09P8C5V26", "instruction": "i want to shop for a plug and play car radio receiver.", "attributes": ["plug play", "wall mounted"], "options": [""], "instruction_attributes": ["plug play"], "instruction_options": [], "assignment_id": "3S3AMIZX35FCYQDFNSEPQ9V0LUVDCV", "worker_id": "AR9AU5FY1S3RO"}], "B07T3HHL17": [{"asin": "B07T3HHL17", "instruction": "i am looking for carbon fiber tripod. model should be veo2pro263ao.", "attributes": ["quick release", "carbon fiber"], "options": ["style: veo2pro263ao"], "instruction_attributes": ["carbon fiber"], "instruction_options": [], "assignment_id": "3TESA3PJ3CKSB6VJDA76CVN6OMVMM8", "worker_id": "A3FG5PQHG5AH3Y"}], "B07TXL5GWT": [{"asin": "B07TXL5GWT", "instruction": "i want oatmeal columbia men's bahama with rubber soles.", "attributes": ["long lasting", "day comfort", "rubber sole", "lace closure"], "options": ["color: oatmeal | whale", "size: 16 wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["oatmeal | whale"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE217GQ8", "worker_id": "A2RBF3IIJP15IH"}], "B015KMIN6K": [{"asin": "B015KMIN6K", "instruction": "i need some purple, machine washable drapes with a fifty-two inch width.", "attributes": ["super soft", "machine washable", "living room"], "options": ["color: royal purple", "size: 52\"w x 54\"l"], "instruction_attributes": ["machine washable"], "instruction_options": ["royal purple", "52\"w x 54\"l"], "assignment_id": "38SKSKU7RC7M95N7SJ8ZKP1078HLIL", "worker_id": "AR9AU5FY1S3RO"}], "B078PHRMWT": [{"asin": "B078PHRMWT", "instruction": "i'm looking for 8\" foundation flex box spring for mattress", "attributes": ["ready use", "fully assembled", "queen size", "assembly required", "box spring"], "options": ["size: queen", "style name: 8\" foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["queen", "8\" foundation"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4AVQRR", "worker_id": "A258PTOZ3D2TQR"}], "B08C7GB6YW": [{"asin": "B08C7GB6YW", "instruction": "i am finding a eco friendly and leak proof plastic refillable bottle container with protective case - style 1 color", "attributes": ["leak proof", "eco friendly", "non toxic"], "options": ["color: style 1"], "instruction_attributes": ["leak proof", "eco friendly"], "instruction_options": ["style 1"], "assignment_id": "3TY7ZAOG5QU0I4O93T7SZLOPWE40KB", "worker_id": "A258PTOZ3D2TQR"}], "B08515GJ6B": [{"asin": "B08515GJ6B", "instruction": "i would like a pink cosmetic bag that is easy to clean.", "attributes": ["bpa free", "easy clean"], "options": ["color: pink"], "instruction_attributes": ["easy clean"], "instruction_options": ["pink"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68EJ4A9", "worker_id": "A2ECRNQ3X5LEXD"}], "B099KG8HS8": [{"asin": "B099KG8HS8", "instruction": "i need green loose fit zincoty women's lace stain solid lounge set.", "attributes": ["loose fit", "elastic waistband", "long sleeve", "polyester cotton", "elastic waist", "relaxed fit", "everyday wear"], "options": ["color: green", "size: 3x-large"], "instruction_attributes": ["loose fit"], "instruction_options": ["green"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22JE8WR", "worker_id": "A2RBF3IIJP15IH"}], "B0764L8XHW": [{"asin": "B0764L8XHW", "instruction": "i want to find orange-scented kids' soap that is free of parabens.", "attributes": ["fragrance free", "paraben free", "cruelty free"], "options": ["scent name: orange"], "instruction_attributes": ["paraben free"], "instruction_options": ["orange"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUTUQJS", "worker_id": "A345TDMHP3DQ3G"}], "B074HDYYXJ": [{"asin": "B074HDYYXJ", "instruction": "i need a size 9 blue dove blue slides sandal which has rubber sole and are slip resistant.", "attributes": ["slip resistant", "rubber outsole", "rubber sole"], "options": ["color: blue dove blue", "size: 9"], "instruction_attributes": ["slip resistant", "rubber sole"], "instruction_options": ["blue dove blue", "9"], "assignment_id": "3YMU66OBIYI6RIYMBATY7LVDBEPHGR", "worker_id": "ASWFLI3N8X72G"}], "B09CMK2FN9": [{"asin": "B09CMK2FN9", "instruction": "i am looking for rock and roll cupcake topper musical themed guitar cake topper which is easy to use in all kind of occasion. music guitar color preferable.", "attributes": ["easy use", "party supplies"], "options": ["color: music guitar"], "instruction_attributes": ["easy use", "party supplies"], "instruction_options": ["music guitar"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQKN315", "worker_id": "A1DRKZ3SCLAS4V"}], "B09NBZD6QM": [{"asin": "B09NBZD6QM", "instruction": "i want black qinxiao simple computer desk with metal legs.", "attributes": ["space saving", "easy assemble", "metal legs"], "options": ["color: black"], "instruction_attributes": ["metal legs"], "instruction_options": ["black"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HOQOWI", "worker_id": "A2RBF3IIJP15IH"}], "B01JOXW3YE": [{"asin": "B01JOXW3YE", "instruction": "i want to find a wi-fi router that can handle 10+ devices over 1000 feet with high speed.", "attributes": ["dual band", "high speed"], "options": ["size: wifi 5", "style: 1000 ft, 10+ devices, 1.2 gbps"], "instruction_attributes": ["high speed"], "instruction_options": ["wifi 5", "1000 ft, 10+ devices, 1.2 gbps"], "assignment_id": "3X4MXAO0BRYFDY2PMK9A7SJ7SBAWRZ", "worker_id": "A345TDMHP3DQ3G"}], "B09B32HLMF": [{"asin": "B09B32HLMF", "instruction": "i looking for contemporary style throw pillow covers for living room color yellow -a-1pc", "attributes": ["exquisite workmanship", "contemporary style", "living room"], "options": ["color: yellow-a-1pc"], "instruction_attributes": ["contemporary style", "living room"], "instruction_options": ["yellow-a-1pc"], "assignment_id": "3U088ZLJVV3RD4IQS7QVNWIKJMW0WS", "worker_id": "A3N9ZYQAESNFQH"}], "B000NK3NBA": [{"asin": "B000NK3NBA", "instruction": "i need a high resolution digital camera with 4x optical zoom.", "attributes": ["high resolution", "optical zoom"], "options": [""], "instruction_attributes": ["high resolution", "optical zoom"], "instruction_options": [], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06LMXK0", "worker_id": "A1NF6PELRKACS9"}], "B09BVT195T": [{"asin": "B09BVT195T", "instruction": "i want to find a 120 inch projector screen that can be mounted to the wall.", "attributes": ["high definition", "wall mounted", "dust proof"], "options": ["color: 120 inches 4:3"], "instruction_attributes": ["wall mounted"], "instruction_options": ["120 inches 4:3"], "assignment_id": "3MTMREQS46SNEHG8K9NOC2UXS7NWAS", "worker_id": "A345TDMHP3DQ3G"}], "B07Q3HK7YS": [{"asin": "B07Q3HK7YS", "instruction": "i am looking for men slim fit dress shirt and please choose ballard blue color.", "attributes": ["slim fit", "machine wash", "stretch fabric", "button closure"], "options": ["color: ballard blue", "size: 16.5\" neck 36\"-37\" sleeve"], "instruction_attributes": ["slim fit"], "instruction_options": ["ballard blue"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL6AEC3", "worker_id": "A3FG5PQHG5AH3Y"}], "B07S523DJC": [{"asin": "B07S523DJC", "instruction": "i am looking for a cruelty free shampoo for a hair salon. also choose 250ml pack and copper style.", "attributes": ["cruelty free", "hair salon"], "options": ["size: 250 ml (pack of 1)", "style: copper"], "instruction_attributes": ["cruelty free", "hair salon"], "instruction_options": ["250 ml (pack of 1)", "copper"], "assignment_id": "3NGI5ARFT4F10K67C4G097TYVGGP14", "worker_id": "A2HMEGTAFO0CS8"}], "B07L7B575V": [{"asin": "B07L7B575V", "instruction": "i am looking for women ankle strap sandal. choose black color.", "attributes": ["ethylene vinyl", "vinyl acetate", "ankle strap"], "options": ["color: black", "size: 5.5"], "instruction_attributes": ["ankle strap"], "instruction_options": ["black"], "assignment_id": "3WT783CTPMRJJTFV9WNJVJ70I9PCBT", "worker_id": "A3FG5PQHG5AH3Y"}], "B09C1XJNNP": [{"asin": "B09C1XJNNP", "instruction": "i need a solid wood bookcase.", "attributes": ["solid wood", "living room"], "options": [""], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "3YHH42UU5MPB2A6ROTJTEL14LE80LD", "worker_id": "A2ECRNQ3X5LEXD"}], "B08762SVZ4": [{"asin": "B08762SVZ4", "instruction": "i would like hair extensions that are 14 inches.", "attributes": ["hair extensions", "natural hair"], "options": ["color: #10p613", "size: 14 inch"], "instruction_attributes": ["hair extensions"], "instruction_options": ["14 inch"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57E59IH", "worker_id": "A2ECRNQ3X5LEXD"}], "B081VB212R": [{"asin": "B081VB212R", "instruction": "i need a coaxial cable with an audio adapter.", "attributes": ["blu ray", "plug play", "coaxial cable"], "options": [""], "instruction_attributes": ["coaxial cable"], "instruction_options": [], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLXZYBF", "worker_id": "A1NF6PELRKACS9"}], "B09NMBBZZV": [{"asin": "B09NMBBZZV", "instruction": "i need fast charging charger with white color", "attributes": ["fast charging", "high performance"], "options": ["color: white"], "instruction_attributes": ["fast charging"], "instruction_options": ["white"], "assignment_id": "3DL65MZB8OPHQWRFJNP9WRDLL6TECM", "worker_id": "A226L9F2AZ38CL"}], "B001459IEE": [{"asin": "B001459IEE", "instruction": "i am interested in a fragrance free lotion that is 18 fl oz.", "attributes": ["fragrance free", "clinically proven", "dry skin"], "options": ["size: 18 fl oz (pack of 1)"], "instruction_attributes": ["fragrance free"], "instruction_options": ["18 fl oz (pack of 1)"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57E39IF", "worker_id": "A2ECRNQ3X5LEXD"}], "B09Q21W8KW": [{"asin": "B09Q21W8KW", "instruction": "i need to buy a machine washable purple t-shirt that says \"hello, my name is jennifer.\" please show me the women's size xx large.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: purple", "fit type: women", "size: xx-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["purple", "women", "xx-large"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HOHOW9", "worker_id": "AR9AU5FY1S3RO"}], "B08XPKVTBW": [{"asin": "B08XPKVTBW", "instruction": "i want to find a black usb mouse that is easy to use.", "attributes": ["plug play", "easy use"], "options": ["color: black"], "instruction_attributes": ["easy use"], "instruction_options": ["black"], "assignment_id": "33LK57MYL4FV8877CWTMW6ILVFYZSH", "worker_id": "A345TDMHP3DQ3G"}], "B08NDV7DKW": [{"asin": "B08NDV7DKW", "instruction": "i am looking for a men's white star wars t-shirt.", "attributes": ["officially licensed", "needle sleeve", "classic fit", "star wars"], "options": ["color: white", "fit type: men", "size: 2t"], "instruction_attributes": ["star wars"], "instruction_options": ["white", "men"], "assignment_id": "3EICBYG64F6P1CD7XO00T7QDQE1JCO", "worker_id": "A1EREKSZAA9V7B"}], "B09QKTK4S5": [{"asin": "B09QKTK4S5", "instruction": "i'm looking for a ready to use fully assembled mattresses with box spring. also, choose queen sized one.", "attributes": ["ready use", "fully assembled", "high density", "box spring"], "options": ["size: queen"], "instruction_attributes": ["ready use", "fully assembled", "box spring"], "instruction_options": ["queen"], "assignment_id": "3TE3O8573BIT1I4I80K3JL3IO5XR2W", "worker_id": "AR0VJ5XRG16UJ"}], "B08M62Q3JC": [{"asin": "B08M62Q3JC", "instruction": "i'm looking for binocular for bird watching.", "attributes": ["high power", "easy use", "non slip", "light weight", "bird watching"], "options": [""], "instruction_attributes": ["easy use", "bird watching"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKKN7DH", "worker_id": "A16IQOX0DK14OJ"}], "B08HS3H5CZ": [{"asin": "B08HS3H5CZ", "instruction": "i am looking for a space saving champagne ottoman that is 40 by 40 by 40.", "attributes": ["space saving", "living room"], "options": ["color: champagne", "size: 40x40x40cm"], "instruction_attributes": ["space saving"], "instruction_options": ["champagne", "40x40x40cm"], "assignment_id": "3VHHR074HERPKL6B9S42T0BRTS4L7O", "worker_id": "A2ECRNQ3X5LEXD"}], "B07RJPJW3W": [{"asin": "B07RJPJW3W", "instruction": "i want green modern velvet dining chairs for the dining room.", "attributes": ["assembly required", "metal legs", "living room", "dining room"], "options": ["color: green", "size: 6pcs"], "instruction_attributes": ["dining room"], "instruction_options": ["green"], "assignment_id": "3QRYMNZ7F9R26J63Y8NIBO7YNK3TNI", "worker_id": "A2RBF3IIJP15IH"}], "B09HWGB5LJ": [{"asin": "B09HWGB5LJ", "instruction": "i am looking for hair masks for damaged hair in spray style", "attributes": ["hair treatment", "damaged hair"], "options": ["style: leave in spray"], "instruction_attributes": ["damaged hair"], "instruction_options": ["leave in spray"], "assignment_id": "3GA6AFUKOZY5X6MYGVMEOR6479N3H8", "worker_id": "A16M39T60N60NO"}], "B07FF5G19C": [{"asin": "B07FF5G19C", "instruction": "i want black prop\u00e9t women's aviator sneakers with rubber soles.", "attributes": ["long lasting", "rubber sole"], "options": ["color: black", "size: 8.5"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black"], "assignment_id": "358010RM5P3MV5OW59A6A8MHMJMXVF", "worker_id": "A2RBF3IIJP15IH"}], "B086JS4HJF": [{"asin": "B086JS4HJF", "instruction": "i need some cupcake picks for toppers.", "attributes": ["cupcake picks", "party supplies"], "options": [""], "instruction_attributes": ["cupcake picks"], "instruction_options": [], "assignment_id": "3TAYZSBPLWI52X4VNPK89V8EA6VS2Y", "worker_id": "A2ECRNQ3X5LEXD"}], "B0036FPX9E": [{"asin": "B0036FPX9E", "instruction": "i want to find a professional tripod that is heavy duty.", "attributes": ["quick release", "heavy duty"], "options": [""], "instruction_attributes": ["heavy duty"], "instruction_options": [], "assignment_id": "31T4R4OBO3QWHHC5WFB3QHL4ZJZ7C3", "worker_id": "A345TDMHP3DQ3G"}], "B07JLLDHGR": [{"asin": "B07JLLDHGR", "instruction": "i am looking for high quality 20 inch hair extensions.", "attributes": ["high quality", "hair extensions"], "options": ["color: #6 | 613", "size: 20 inch, 100 gram(pack of 1)"], "instruction_attributes": ["high quality", "hair extensions"], "instruction_options": ["20 inch, 100 gram(pack of 1)"], "assignment_id": "3OLQQLKKN3Z4YAXLTF6VJVQGBQCEJA", "worker_id": "A1EREKSZAA9V7B"}], "B07V2PTF2R": [{"asin": "B07V2PTF2R", "instruction": "i want a black classic fit disney the lion king characters shirt.", "attributes": ["needle sleeve", "classic fit"], "options": ["color: black", "fit type: women", "size: 2t"], "instruction_attributes": ["classic fit"], "instruction_options": ["black"], "assignment_id": "3MB8LZR5BQ3DF0DVSMTBX5GDZC1LKR", "worker_id": "A2RBF3IIJP15IH"}], "B000HG84EQ": [{"asin": "B000HG84EQ", "instruction": "i want non gmo stretch island original grape fruit leather.", "attributes": ["non gmo", "gluten free", "real fruit", "artificial flavors"], "options": ["flavor name: grape", "pattern name: fruit leather + variety pack potato crisps"], "instruction_attributes": ["non gmo"], "instruction_options": ["grape"], "assignment_id": "3OSWBBLG1P701OOAEOAC4MGAMCRDX5", "worker_id": "A2RBF3IIJP15IH"}], "B0861FCMVG": [{"asin": "B0861FCMVG", "instruction": "i want a large sized women's scrub pants. pick a ciel colored one.", "attributes": ["drawstring closure", "polyester spandex"], "options": ["color: ciel", "size: large"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["ciel", "large"], "assignment_id": "3D4CH1LGEL3DCCG3DY56U4XPS22G9N", "worker_id": "A1NF6PELRKACS9"}], "B09RPK2C8F": [{"asin": "B09RPK2C8F", "instruction": "searching for an x-large short sleeve, loose fitting women's summer casual cute printed tee top band or blouse i can wear at holidays in the clothing shoes & jewerly department", "attributes": ["quick drying", "machine washable", "loose fit", "short sleeve", "long sleeve", "laundry bag", "teen girls", "daily wear"], "options": ["color: fcbf-a017-mint green", "size: x-large"], "instruction_attributes": ["loose fit", "short sleeve"], "instruction_options": ["x-large"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUCLDZY", "worker_id": "A3RGIKEI8JS2QG"}], "B09CPTHDG2": [{"asin": "B09CPTHDG2", "instruction": "i want to find a remote for my samsung security camera that runs on aaa batteries.", "attributes": ["easy use", "aaa batteries"], "options": [""], "instruction_attributes": ["aaa batteries"], "instruction_options": [], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZIS9KQ", "worker_id": "A345TDMHP3DQ3G"}], "B07ZHRC8SJ": [{"asin": "B07ZHRC8SJ", "instruction": "i would like some sausage and bacon that is fully cooked.", "attributes": ["fully cooked", "ready eat"], "options": [""], "instruction_attributes": ["fully cooked"], "instruction_options": [], "assignment_id": "3G2UL9A02OO71034MOY04HTU3XL677", "worker_id": "A2ECRNQ3X5LEXD"}], "B07S45Q1SP": [{"asin": "B07S45Q1SP", "instruction": "i am looking for a full sized box spring.", "attributes": ["twin size", "easy assemble", "box spring", "storage space"], "options": ["size: full", "style: antique brown"], "instruction_attributes": ["box spring"], "instruction_options": ["full"], "assignment_id": "3PWWM24LH38NJDPM9RE3S48DYCI282", "worker_id": "A2ECRNQ3X5LEXD"}], "B09F5QCW21": [{"asin": "B09F5QCW21", "instruction": "in hand creams & lotion aisle of the beauty & personal care department, i want a white long lasting, fragrance free hand lotion for dry, rough or sensitive skin that soothes and comforts. comes in a 3 ounce 4 pack", "attributes": ["long lasting", "fragrance free", "paraben free", "cruelty free", "dry skin", "sensitive skin"], "options": [""], "instruction_attributes": ["long lasting", "fragrance free", "dry skin", "sensitive skin"], "instruction_options": [], "assignment_id": "30MVJZJNHXNN3E64L4Q9RHP5KTSJ91", "worker_id": "A3RGIKEI8JS2QG"}], "B010EC1TCG": [{"asin": "B010EC1TCG", "instruction": "i mostly like designed house with grey color", "attributes": ["design house", "long lasting"], "options": [""], "instruction_attributes": ["design house"], "instruction_options": [], "assignment_id": "3T3IWE1XGHXN9GJVE0FZFI23SVOTQ3", "worker_id": "A226L9F2AZ38CL"}], "B074RVN91Q": [{"asin": "B074RVN91Q", "instruction": "i am looking for an eco friendly wood bedside shelf for a bed.", "attributes": ["eco friendly", "box spring"], "options": [""], "instruction_attributes": ["eco friendly"], "instruction_options": [], "assignment_id": "3LOTDFNYAI9IA8XGVP9GQ35OPNXFWL", "worker_id": "A1EREKSZAA9V7B"}], "B0963D2H5J": [{"asin": "B0963D2H5J", "instruction": "i am looking for gold colored geometric cushion covers.", "attributes": ["super soft", "living room"], "options": ["color: gold foil-15"], "instruction_attributes": ["living room"], "instruction_options": ["gold foil-15"], "assignment_id": "3PQ8K71NH8UQ74D5J4RWUDX60OAAAL", "worker_id": "A1EREKSZAA9V7B"}], "B0054KM7IY": [{"asin": "B0054KM7IY", "instruction": "find this brand duckfeet blavand unisex, model leather clog, important: size 38 m eu and leather sole .", "attributes": ["water resistant", "leather sole"], "options": ["color: granate", "size: 38 m eu"], "instruction_attributes": ["leather sole"], "instruction_options": ["38 m eu"], "assignment_id": "3BV8HQ2ZZ7BPK212TRAKE8VK45RA62", "worker_id": "A15IJ20C3R4HUO"}], "B09BKNLL1G": [{"asin": "B09BKNLL1G", "instruction": "i want to find a loofah back scrubber with a long handle.", "attributes": ["long lasting", "long handle"], "options": [""], "instruction_attributes": ["long handle"], "instruction_options": [], "assignment_id": "3ZQIG0FLQPQ765J6V4EK8P8ADHOWVT", "worker_id": "A345TDMHP3DQ3G"}], "B08J1SJ5R5": [{"asin": "B08J1SJ5R5", "instruction": "i am looking for a under -sink storage fine wood finish", "attributes": ["wood finish", "storage unit"], "options": [""], "instruction_attributes": ["wood finish", "storage unit"], "instruction_options": [], "assignment_id": "340UGXU9D9BUE1U104ZJQ1NDS14UVJ", "worker_id": "A3N9ZYQAESNFQH"}], "B08794V8MM": [{"asin": "B08794V8MM", "instruction": "i am looking for merrycolor farmhouse decorative throw pillow super durable throw pillow cases are easy to care, wipe or hand wash recommended due to the faux leather fabric, coffee color, 18 x 18 inch preferable.", "attributes": ["faux leather", "living room"], "options": ["color: coffee", "size: 18 x 18-inch"], "instruction_attributes": ["faux leather", "living room"], "instruction_options": ["coffee", "18 x 18-inch"], "assignment_id": "3YDGXNSEOA4XMR49D5XRLJ5BIQO48A", "worker_id": "A1DRKZ3SCLAS4V"}], "B09CGWLL3Z": [{"asin": "B09CGWLL3Z", "instruction": "i need a fast charging headset", "attributes": ["fast charging", "high speed"], "options": [""], "instruction_attributes": ["fast charging"], "instruction_options": [], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKYADNE", "worker_id": "A2ECRNQ3X5LEXD"}], "B09CKNBQXH": [{"asin": "B09CKNBQXH", "instruction": "i need pu or faux leather space saving storage organizer in dark grey shagreen color.", "attributes": ["space saving", "pu leather", "faux leather"], "options": ["color: dark grey shagreen"], "instruction_attributes": ["space saving", "pu leather", "faux leather"], "instruction_options": ["dark grey shagreen"], "assignment_id": "3I7DHKZYGYAOXPIWZOM703SB5QTF54", "worker_id": "ASWFLI3N8X72G"}], "B08TT6C13M": [{"asin": "B08TT6C13M", "instruction": "i want a small knqr men's long sleeve quick dry shirt.", "attributes": ["easy care", "machine washable", "machine wash", "stretch fabric", "polyester spandex", "long sleeve", "daily wear"], "options": ["color: neon lime", "size: small"], "instruction_attributes": ["long sleeve"], "instruction_options": ["small"], "assignment_id": "37M28K1J01N18XG9DA49NC0PQBDJAJ", "worker_id": "A2RBF3IIJP15IH"}], "B09PFP98PG": [{"asin": "B09PFP98PG", "instruction": "i am looking for a xx-large size short sleeve e5-gray colored women blouse.", "attributes": ["loose fit", "short sleeve", "teen girls"], "options": ["color: e5 - gray", "size: xx-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["e5 - gray", "xx-large"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWXNC1Z", "worker_id": "AJDQGOTMB2D80"}], "B0872DL8CX": [{"asin": "B0872DL8CX", "instruction": "i am interested in 6 inch hair cutting shears.", "attributes": ["hair salon", "dry hair", "hair cutting"], "options": ["size: 6 inch cutting"], "instruction_attributes": ["hair cutting"], "instruction_options": ["6 inch cutting"], "assignment_id": "3Y4W8Q93LAU8XZJFE99UG1JP61GDVZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B087M3J9H8": [{"asin": "B087M3J9H8", "instruction": "i need a size x-large skirt in coffee brown. it should have a high elastic waist and a slim fit.", "attributes": ["slim fit", "elastic waist", "high waist"], "options": ["color: coffee brown", "size: x-large"], "instruction_attributes": ["slim fit", "elastic waist", "high waist"], "instruction_options": ["coffee brown", "x-large"], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDWFAIP", "worker_id": "AR9AU5FY1S3RO"}], "B07W56G36H": [{"asin": "B07W56G36H", "instruction": "i am looking for nathan james theo industrial bookshelf which is cube storage organizer also contrasting solid wood that pairs smoothly with its glossy white frame and solid veneer back panel. themodern scandinavian style storage cabinet which perfectly forliving room, entryway or in the kid's bedroom.in white brass gold color with size 6 preferable.", "attributes": ["space saving", "white item", "steel frame", "living room"], "options": ["color: white | brass gold", "pattern name: bookcase", "size: 6-shelf"], "instruction_attributes": ["space saving", "white item", "steel frame", "living room"], "instruction_options": ["white | brass gold", "bookcase", "6-shelf"], "assignment_id": "32Q90QCQ13VZ9U33B067KAQTQFCEK9", "worker_id": "A1DRKZ3SCLAS4V"}], "B01CU5Y0PS": [{"asin": "B01CU5Y0PS", "instruction": "i'd like to buy some cotton candy for a baby shower.", "attributes": ["baby shower", "birthday party"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3KRVW3HTZYVV918OX73SO4MCGBAMSH", "worker_id": "AR9AU5FY1S3RO"}], "B07MNM28ZN": [{"asin": "B07MNM28ZN", "instruction": "i am looking for a fluoride free toothpaste for kids. also choose high quality and 1.5 ounce in size.", "attributes": ["fluoride free", "high quality"], "options": ["size: 1.5 ounce (pack of 1)"], "instruction_attributes": ["fluoride free", "high quality"], "instruction_options": ["1.5 ounce (pack of 1)"], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7WLP5M", "worker_id": "A2HMEGTAFO0CS8"}], "B081DYTR9J": [{"asin": "B081DYTR9J", "instruction": "i want to find a 68-inch carbon fiber tripod camera.", "attributes": ["quick release", "carbon fiber"], "options": ["size: sa255c1 | 25mm tube | 68\""], "instruction_attributes": ["carbon fiber"], "instruction_options": ["sa255c1 | 25mm tube | 68\""], "assignment_id": "3DHE4R9OC7L2CSV4SPQRKHPBMV7G28", "worker_id": "A345TDMHP3DQ3G"}], "B07F25KJFQ": [{"asin": "B07F25KJFQ", "instruction": "i want to find a purple dress shirt that is 15 inches in circumference for the neck and 33 inches in circumference for the sleeve. the shirt should be regular fitting.", "attributes": ["regular fit", "tumble dry"], "options": ["color: purple", "size: 15\" neck 32\"-33\" sleeve"], "instruction_attributes": ["regular fit"], "instruction_options": ["purple", "15\" neck 32\"-33\" sleeve"], "assignment_id": "3F1567XTN7F4P1AHGUAIOI1RYOPQ94", "worker_id": "A345TDMHP3DQ3G"}], "B0719QLYF2": [{"asin": "B0719QLYF2", "instruction": "i want to find a pack of 24 single-ounce jalapeno free range turkey sticks. they need to be keto friendly.", "attributes": ["low carb", "high protein", "keto friendly", "sugar free", "grass fed", "freeze dried", "gluten free", "low calorie", "ready eat", "individually wrapped", "dairy free", "non gmo", "zero sugar", "gift basket"], "options": ["flavor name: jalapeno free range turkey", "size: 1 ounce (pack of 24)"], "instruction_attributes": ["keto friendly"], "instruction_options": ["jalapeno free range turkey", "1 ounce (pack of 24)"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMHWZIP", "worker_id": "A345TDMHP3DQ3G"}], "B0824YGBQ9": [{"asin": "B0824YGBQ9", "instruction": "i want a pink light weight kids digital camera.", "attributes": ["1080p hd", "light weight", "easy use"], "options": ["color: pink"], "instruction_attributes": ["light weight"], "instruction_options": ["pink"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZE9RP1", "worker_id": "A2RBF3IIJP15IH"}], "B073HPF4CF": [{"asin": "B073HPF4CF", "instruction": "i need size 2' 2\" x 22' runner area rugs for living or dining room in ivory | grey color.", "attributes": ["home furnishings", "living room", "dining room"], "options": ["color: ivory | grey", "item shape: runner", "size: 2' 2\" x 22'"], "instruction_attributes": ["living room", "dining room"], "instruction_options": ["ivory | grey", "runner", "2' 2\" x 22'"], "assignment_id": "3S0TNUHWK4SAMNN26GYKONZHV3C8DM", "worker_id": "ASWFLI3N8X72G"}], "B0716MLBXK": [{"asin": "B0716MLBXK", "instruction": "i want to buy some black synthetic hair extensions.", "attributes": ["synthetic hair", "hair extensions"], "options": ["color: black"], "instruction_attributes": ["synthetic hair", "hair extensions"], "instruction_options": ["black"], "assignment_id": "3QHK8ZVMIXSCMX91M9GIY2XNCI1BL6", "worker_id": "AR9AU5FY1S3RO"}], "B07KZK5F6C": [{"asin": "B07KZK5F6C", "instruction": "i'm looking for 20-inch long curtains for my living room that are charcoal colored.", "attributes": ["machine washable", "exquisite workmanship", "living room"], "options": ["color: charcoal", "size: 20 l"], "instruction_attributes": ["living room"], "instruction_options": ["charcoal", "20 l"], "assignment_id": "3KXIR214IFQM0C2KXOOQBSS8WQO24X", "worker_id": "A345TDMHP3DQ3G"}], "B09KMCRRSG": [{"asin": "B09KMCRRSG", "instruction": "i want to find an l-shaped desk that can help save me space.", "attributes": ["heavy duty", "space saving", "coated steel"], "options": [""], "instruction_attributes": ["space saving"], "instruction_options": [], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYT8HVB", "worker_id": "A345TDMHP3DQ3G"}], "B076D9DS75": [{"asin": "B076D9DS75", "instruction": "i am looking for a gluten free socorro sweet tea that has low calories.", "attributes": ["low calorie", "non gmo", "gluten free"], "options": ["flavor name: socorro sweet tea", "size: 18 fl oz (pack of 6)"], "instruction_attributes": ["low calorie", "gluten free"], "instruction_options": ["socorro sweet tea"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNV58HV", "worker_id": "A1EREKSZAA9V7B"}], "B09BLZ3CTJ": [{"asin": "B09BLZ3CTJ", "instruction": "i want to find a two-pack of white usb chargers that can be mounted to a wall.", "attributes": ["fast charging", "wall mounted", "usb port"], "options": ["color: white+white", "size: 2 pack"], "instruction_attributes": ["wall mounted", "usb port"], "instruction_options": ["white+white", "2 pack"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIVO9T1", "worker_id": "A345TDMHP3DQ3G"}], "B08P4B5HQV": [{"asin": "B08P4B5HQV", "instruction": "i need 2pcs mixed package of grey color reusable easy clean cotton swab", "attributes": ["non toxic", "easy clean", "high quality"], "options": ["color: grey", "size: 2pcs mixed package"], "instruction_attributes": ["easy clean"], "instruction_options": ["grey", "2pcs mixed package"], "assignment_id": "3BF51CHDT6K9GEN1X84VMT8X4XY0H5", "worker_id": "A258PTOZ3D2TQR"}], "B08QC54P6P": [{"asin": "B08QC54P6P", "instruction": "i want to buy a pair of compression pants in size xx large. they should be nude with an elastic waistband.", "attributes": ["hand wash", "wash cold", "nylon spandex", "elastic waistband"], "options": ["color: nude b", "size: xx-large"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["nude b", "xx-large"], "assignment_id": "3JC6VJ2SAMTT1Y1OO80FM2HK8ACA5I", "worker_id": "AR9AU5FY1S3RO"}], "B081V88NYR": [{"asin": "B081V88NYR", "instruction": "i want a bluetooth mp3 decoded module audio receiver board power amplifier easy install", "attributes": ["power amplifier", "easy install"], "options": [""], "instruction_attributes": ["power amplifier", "easy install"], "instruction_options": [], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA5JR8T", "worker_id": "A3N9ZYQAESNFQH"}], "B093RZ7MC6": [{"asin": "B093RZ7MC6", "instruction": "i am looking for a resin diy for nail art with non toxic also easy to clean.", "attributes": ["non toxic", "easy clean", "nail art"], "options": [""], "instruction_attributes": ["non toxic", "easy clean", "nail art"], "instruction_options": [], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWBTFNU", "worker_id": "A2HMEGTAFO0CS8"}], "B08G14B779": [{"asin": "B08G14B779", "instruction": "i want a pink niuta 2 pack hair towel wrap for dry hair.", "attributes": ["high quality", "dry hair"], "options": ["color: pink", "size: 26 inch x 10 inch"], "instruction_attributes": ["dry hair"], "instruction_options": ["pink"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AP6BW0", "worker_id": "A2RBF3IIJP15IH"}], "B09H5B7PKR": [{"asin": "B09H5B7PKR", "instruction": "i am looking for a super soft feece throw with christmas deer, snowflakes and funny gifts.", "attributes": ["super soft", "fleece throw", "printing technology"], "options": ["color: christmas deer and snowflakes funny gifts fleece throw", "size: (s 50\"x40\" inch for kid)"], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["christmas deer and snowflakes funny gifts fleece throw"], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH152FWH5", "worker_id": "A1NF6PELRKACS9"}], "B093HJBHVX": [{"asin": "B093HJBHVX", "instruction": "i am looking for a 2 pack of pendant ceiling lights for my dining room.", "attributes": ["bronze finish", "dining room"], "options": ["color: oil rubbed bronze 1 light 2 pack", "size: 2 pack"], "instruction_attributes": ["dining room"], "instruction_options": ["2 pack"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0S05117", "worker_id": "A1EREKSZAA9V7B"}], "B09R7XC49B": [{"asin": "B09R7XC49B", "instruction": "i need a tea tree shampoo and conditioner set which is sulfate free and promotes hair growth.", "attributes": ["sulfate free", "cruelty free", "tea tree", "green tea", "argan oil", "damaged hair", "natural hair", "hair growth"], "options": [""], "instruction_attributes": ["sulfate free", "tea tree", "hair growth"], "instruction_options": [], "assignment_id": "3QY7M81QHIWE0FOTOSS1E0YC4S7K7S", "worker_id": "A1NF6PELRKACS9"}], "B08LBHBP2V": [{"asin": "B08LBHBP2V", "instruction": "i am looking for super soft and fleece throw blanket in multi 10 color", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 10", "size: baby"], "instruction_attributes": ["super soft", "fleece throw"], "instruction_options": ["multi 10"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JA6FSB", "worker_id": "AX2EWYWZM19AZ"}], "B0989VJ5BQ": [{"asin": "B0989VJ5BQ", "instruction": "i am looking for sneakers for teen girls walking shoes with ankle strap , size 8.5 and also z4-blue color", "attributes": ["open toe", "ankle strap", "teen girls"], "options": ["color: z4-blue", "size: 8.5"], "instruction_attributes": ["ankle strap", "teen girls"], "instruction_options": ["z4-blue", "8.5"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOIKYDV", "worker_id": "AX2EWYWZM19AZ"}], "B007JV7F4W": [{"asin": "B007JV7F4W", "instruction": "we are looking easy install stereo sound subwoofers 800 watt speaker speaker size :12\"", "attributes": ["easy install", "stereo sound"], "options": ["speakers maximum output power: 800 watts", "vehicle speaker size: 12-inch", "voice coil: 1-inch single voice coil 4-ohm"], "instruction_attributes": ["easy install", "stereo sound"], "instruction_options": ["800 watts", "12-inch"], "assignment_id": "32SVAV9L3QJQNJEKAPCM75J0UFI3AK", "worker_id": "A3N9ZYQAESNFQH"}], "B007QEY8RE": [{"asin": "B007QEY8RE", "instruction": "i'd like to find frozen, handmade appetizers made with pear and brie.", "attributes": ["ready use", "hand crafted"], "options": [""], "instruction_attributes": ["hand crafted"], "instruction_options": [], "assignment_id": "3A9AA95AT7W0O27QDRICCX6F7WBP5C", "worker_id": "A345TDMHP3DQ3G"}], "B0876Y38DS": [{"asin": "B0876Y38DS", "instruction": "i am looking for men's white athletic shorts with a drawstring closure.", "attributes": ["drawstring closure", "polyester spandex"], "options": ["color: white", "size: 3x-large"], "instruction_attributes": ["drawstring closure"], "instruction_options": ["white"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA44R8C", "worker_id": "A1EREKSZAA9V7B"}], "B09P572DP9": [{"asin": "B09P572DP9", "instruction": "i want a heavy duty, non-slip protector case for my iphone. choose something in black.", "attributes": ["heavy duty", "dust proof", "non slip", "easy install", "glass screen", "tempered glass"], "options": ["color: black", "size: case+2 protectors+clip"], "instruction_attributes": ["heavy duty", "non slip"], "instruction_options": ["black"], "assignment_id": "32AT8R96GWJEM9DX69UEFE36TXKSUM", "worker_id": "A1NF6PELRKACS9"}], "B08F7WVPN2": [{"asin": "B08F7WVPN2", "instruction": "i'm looking for a black colored short sleeved women's casual summer off the shoulder dress. please select the size small.", "attributes": ["soft material", "polyester spandex", "short sleeve"], "options": ["color: black", "size: small"], "instruction_attributes": ["short sleeve"], "instruction_options": ["black", "small"], "assignment_id": "39PAAFCODXAFEOFC0Z99L51B9NWVTS", "worker_id": "A20DUVEOH6A7KW"}], "B09M3YVTF6": [{"asin": "B09M3YVTF6", "instruction": "i am looking for a digital alarm clock radio with wireless bluetooth built-in. also, i prefer a black colored one.", "attributes": ["high definition", "wireless bluetooth"], "options": ["color: black"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["black"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79PZH1K", "worker_id": "AJDQGOTMB2D80"}], "B01LYTO6V1": [{"asin": "B01LYTO6V1", "instruction": "i want 4 ounce fat free musselman's cinnamon apple sauce cups.", "attributes": ["fat free", "non gmo", "gluten free"], "options": ["size: 4 ounce"], "instruction_attributes": ["fat free"], "instruction_options": ["4 ounce"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTTDE4A", "worker_id": "A2RBF3IIJP15IH"}], "B07B9GTSHW": [{"asin": "B07B9GTSHW", "instruction": "my skin was dry i need 4 ounce pack of facial cream", "attributes": ["anti aging", "dry skin", "dead skin"], "options": ["color: 8oz bundle (plain + salicylic acid)", "size: 4 ounce (pack of 1)"], "instruction_attributes": ["dry skin"], "instruction_options": [], "assignment_id": "3SITXWYCN6J7MRQQ0SJ69WSAJR4BXL", "worker_id": "A226L9F2AZ38CL"}], "B000Q38THM": [{"asin": "B000Q38THM", "instruction": "i want to find shelf-stable beef stew that is ready to eat.", "attributes": ["fully cooked", "shelf stable", "ready eat"], "options": [""], "instruction_attributes": ["shelf stable", "ready eat"], "instruction_options": [], "assignment_id": "3FIUS151D6CSRM3BR4BGMLJCWE3GGI", "worker_id": "A345TDMHP3DQ3G"}], "B08JYVB93Z": [{"asin": "B08JYVB93Z", "instruction": "i am looking for eyeshadow that is cruelty free.", "attributes": ["cruelty free", "long lasting", "high quality"], "options": [""], "instruction_attributes": ["cruelty free"], "instruction_options": [], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW6M8SG", "worker_id": "A2ECRNQ3X5LEXD"}], "B09P8MWPCG": [{"asin": "B09P8MWPCG", "instruction": "i want to find a white twin sized bed frame that is easy to assemble.", "attributes": ["white item", "easy assemble", "storage space", "box spring", "metal legs"], "options": ["color: white", "size: twin bed frame"], "instruction_attributes": ["white item", "easy assemble"], "instruction_options": ["white", "twin bed frame"], "assignment_id": "386PBUZZXQ7I4G7DA1TZWQG0KNCLJ3", "worker_id": "A345TDMHP3DQ3G"}], "B01KZZ5HOS": [{"asin": "B01KZZ5HOS", "instruction": "i want camile modern table lamps with a brushed nickel finish.", "attributes": ["brushed nickel", "nickel finish", "living room"], "options": ["color: brushed nickel - off white drum shade"], "instruction_attributes": ["nickel finish"], "instruction_options": ["brushed nickel - off white drum shade"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHZO4Z8", "worker_id": "A2RBF3IIJP15IH"}], "B092X4W66N": [{"asin": "B092X4W66N", "instruction": "i am looking for valentine day gift basket with luxury gold leaf hand cream, handmade freshly baked treats like variety of brownies and decadent cookies", "attributes": ["individually wrapped", "gift basket", "valentine day"], "options": [""], "instruction_attributes": ["gift basket", "valentine day"], "instruction_options": [], "assignment_id": "3PW9OPU9P1U58D51A65ODUL5K6N12S", "worker_id": "AX2EWYWZM19AZ"}], "B01HEH31OI": [{"asin": "B01HEH31OI", "instruction": "i am looking for a pair of long lasting women's size 5.5 wide hiking boots.", "attributes": ["long lasting", "rubber sole", "lace closure"], "options": ["color: epic plum | storm", "size: 5.5 wide"], "instruction_attributes": ["long lasting"], "instruction_options": ["5.5 wide"], "assignment_id": "3300DTYQTDRLKX1YO5Q4GW22PL1EQY", "worker_id": "A1EREKSZAA9V7B"}], "B085ZW9G4X": [{"asin": "B085ZW9G4X", "instruction": "i need zerofire 2 pack travel size spray bottles.", "attributes": ["travel size", "fine mist"], "options": ["color: 2 pack", "size: 1 ounce"], "instruction_attributes": ["travel size"], "instruction_options": ["2 pack"], "assignment_id": "3WQQ9FUS6L4H7QPISK7ETXBHSIWB8E", "worker_id": "A2RBF3IIJP15IH"}], "B08DKM7Y6G": [{"asin": "B08DKM7Y6G", "instruction": "i need a quick drying running shorts with drawstring closure. it should be light grayish blue in color.", "attributes": ["wide leg", "quick drying", "moisture wicking", "polyester spandex", "drawstring closure", "elastic waistband"], "options": ["color: light grayish blue", "size: xx-small"], "instruction_attributes": ["quick drying", "drawstring closure"], "instruction_options": ["light grayish blue"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3CKN6T", "worker_id": "A1NF6PELRKACS9"}], "B09KVBJ56K": [{"asin": "B09KVBJ56K", "instruction": "i am interested in sprinkles that are soy free and for christmas.", "attributes": ["easy use", "nut free", "soy free", "dairy free", "gluten free", "valentine day"], "options": ["color: 8-christmas - candy"], "instruction_attributes": ["soy free"], "instruction_options": ["8-christmas - candy"], "assignment_id": "34YB12FSQ9YSJWZX279BZQ39S0KGMV", "worker_id": "A2ECRNQ3X5LEXD"}], "B096B397LX": [{"asin": "B096B397LX", "instruction": "i need to buy some easy to install pendant lights for my living room. get the blue ones.", "attributes": ["easy install", "pendant light", "light fixture", "living room"], "options": ["color: blue"], "instruction_attributes": ["easy install", "pendant light", "living room"], "instruction_options": ["blue"], "assignment_id": "3D8YOU6S9PU9ZBF0ZWRBE97EB8I6U9", "worker_id": "AR9AU5FY1S3RO"}], "B09PC48LDS": [{"asin": "B09PC48LDS", "instruction": "i need wireless charging with white color", "attributes": ["water resistant", "noise cancelling", "hands free", "wireless charging", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "3IO1LGZLKK7B1E8NWTQ6IHPPEHS68V", "worker_id": "A226L9F2AZ38CL"}], "B083TJJDJW": [{"asin": "B083TJJDJW", "instruction": "i need no artificial color chocolate for 10 pocket", "attributes": ["nut free", "soy free", "dairy free", "gluten free", "artificial colors"], "options": [""], "instruction_attributes": ["artificial colors"], "instruction_options": [], "assignment_id": "39KFRKBFIY5G5Q599TAUYUZISWOYOP", "worker_id": "A226L9F2AZ38CL"}], "B099Z7F8RC": [{"asin": "B099Z7F8RC", "instruction": "find me a cruelty free non toxic lip treatment oil for sensitive skin in 100 #loveyourself color.", "attributes": ["cruelty free", "fragrance free", "non toxic", "seed oil", "sensitive skin"], "options": ["color: 100\u00a0#loveyourself"], "instruction_attributes": ["cruelty free", "non toxic", "sensitive skin"], "instruction_options": ["100\u00a0#loveyourself"], "assignment_id": "32KTQ2V7ROPD4MCPO13179HMOP89MK", "worker_id": "A3AYHESLQSDY5T"}], "B09373HTN7": [{"asin": "B09373HTN7", "instruction": "shop for a light weight windows desktop pc.", "attributes": ["dual band", "light weight", "high speed"], "options": [""], "instruction_attributes": ["light weight"], "instruction_options": [], "assignment_id": "3NC5L260MZWA5ZOE43I699S2MLUOFE", "worker_id": "AR9AU5FY1S3RO"}], "B07VYXP4DP": [{"asin": "B07VYXP4DP", "instruction": "i am looking for large dark grey pajama pants with an elastic waist.", "attributes": ["straight leg", "loose fit", "elastic waist"], "options": ["color: dark grey", "size: large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["dark grey", "large"], "assignment_id": "36V4Q8R5ZVAJWLTB53ENT47BYNNMQQ", "worker_id": "A1EREKSZAA9V7B"}], "B00J7G0I8M": [{"asin": "B00J7G0I8M", "instruction": "i am looking for fluoride free all natural toothpaste.", "attributes": ["fluoride free", "fresh breath"], "options": [""], "instruction_attributes": ["fluoride free"], "instruction_options": [], "assignment_id": "3WS1NTTKE9MP2IWV2IGVJ8WKOIN0F9", "worker_id": "A1EREKSZAA9V7B"}], "B08TWWYH8Q": [{"asin": "B08TWWYH8Q", "instruction": "i want a 125 digital power audio amplifier board.", "attributes": ["high power", "power amplifier"], "options": [""], "instruction_attributes": ["power amplifier"], "instruction_options": [], "assignment_id": "3TR2532VI040LV46NXNX77Y3USIJ6O", "worker_id": "A2RBF3IIJP15IH"}], "B08VJ474GR": [{"asin": "B08VJ474GR", "instruction": "i need a non slip sofa slipcover which is either camel or ivory colored.", "attributes": ["non slip", "machine washable", "easy install"], "options": ["color: camel | ivory"], "instruction_attributes": ["non slip"], "instruction_options": ["camel | ivory"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX7JCFD", "worker_id": "A1NF6PELRKACS9"}], "B09KCMTNQP": [{"asin": "B09KCMTNQP", "instruction": "i need a long clip-in hair extension which is natural looking.", "attributes": ["hair extensions", "hair styling"], "options": ["color: i"], "instruction_attributes": ["hair extensions"], "instruction_options": [], "assignment_id": "3IFS6Q0HJTT9DIIXCS50WBFVZ2XIS4", "worker_id": "A1NF6PELRKACS9"}], "B09DCWZ4JB": [{"asin": "B09DCWZ4JB", "instruction": "i would like a blue smartwatch band that is 42mm and is apple compatible.", "attributes": ["easy install", "compatible apple", "case cover"], "options": ["color: blue", "size: 42mm | 44mm | 45mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["blue", "42mm | 44mm | 45mm"], "assignment_id": "3R6BYFZZPIMXZ8265U52SMJVYP4XFX", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H59CSTC": [{"asin": "B09H59CSTC", "instruction": "need a monopod with carbon fiber for dslr cameras", "attributes": ["easy carry", "carbon fiber"], "options": [""], "instruction_attributes": ["carbon fiber"], "instruction_options": [], "assignment_id": "3KGTPGBS68VLHAWZCUF8OWQ2V532UF", "worker_id": "A2Y2TURT2VEYZN"}], "B097K252L9": [{"asin": "B097K252L9", "instruction": "i want anti slip leopard print shoes for women in size 11.", "attributes": ["anti slip", "rubber sole"], "options": ["color: denim yellow leopard b", "size: 11 women | 9.5 men"], "instruction_attributes": ["anti slip"], "instruction_options": ["11 women | 9.5 men"], "assignment_id": "3TXMY6UCAPY6NZHKSEK9Q82Z49SQCL", "worker_id": "A2RBF3IIJP15IH"}], "B09QBVFM8F": [{"asin": "B09QBVFM8F", "instruction": "i want to find a gold hair comb that is easy to use.", "attributes": ["easy use", "high quality", "rose gold", "quality materials"], "options": ["color: gold"], "instruction_attributes": ["easy use"], "instruction_options": ["gold"], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQ6E1LH", "worker_id": "A345TDMHP3DQ3G"}], "B09928J5CH": [{"asin": "B09928J5CH", "instruction": "i need a gold colored storage case bag for holding nail art machine and tools.", "attributes": ["storage case", "nail art"], "options": ["color: golden machine with a bag"], "instruction_attributes": ["storage case", "nail art"], "instruction_options": ["golden machine with a bag"], "assignment_id": "3EWIJTFFVZHXW4WZ77WP1QBKCHY0EH", "worker_id": "A1NF6PELRKACS9"}], "B09FF773JY": [{"asin": "B09FF773JY", "instruction": "i want to find a black apple watch band that is 38 millimeters long.", "attributes": ["compatible apple", "stainless steel"], "options": ["color: black", "size: 38mm"], "instruction_attributes": ["compatible apple"], "instruction_options": ["black", "38mm"], "assignment_id": "34FNN24DCXJUXGZR4EEVPOZRB1E5YM", "worker_id": "A345TDMHP3DQ3G"}], "B077VQD17T": [{"asin": "B077VQD17T", "instruction": "i'm looking for skin care need to buy a sugarcane and papaya for dry skin.", "attributes": ["paraben free", "seed oil", "dry skin"], "options": ["color: sugarcane & papaya", "size: 17 fl oz (pack of 1)"], "instruction_attributes": ["seed oil", "dry skin"], "instruction_options": ["sugarcane & papaya"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SVXUDJ", "worker_id": "A16IQOX0DK14OJ"}], "B08X1KBCZM": [{"asin": "B08X1KBCZM", "instruction": "i am looking for long lasting hair color dye.please choose 7bg color.", "attributes": ["long lasting", "permanent hair", "hair growth"], "options": ["color: 7.13 | 7bg"], "instruction_attributes": ["long lasting"], "instruction_options": ["7.13 | 7bg"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3DAQN7", "worker_id": "A3FG5PQHG5AH3Y"}], "B07V3NKGHD": [{"asin": "B07V3NKGHD", "instruction": "i want to find individually wrapped chocolates in a gift basket that i can give for christmas.", "attributes": ["individually wrapped", "gift basket"], "options": [""], "instruction_attributes": ["individually wrapped", "gift basket"], "instruction_options": [], "assignment_id": "352YTHGRO6NQF252G9RXYWYAL9B4HM", "worker_id": "A345TDMHP3DQ3G"}], "B08N9S7DVZ": [{"asin": "B08N9S7DVZ", "instruction": "i am looking for a coffee sofa slipcovers of pu leather", "attributes": ["non slip", "machine washable", "easy install", "pu leather"], "options": ["color: coffee"], "instruction_attributes": ["pu leather"], "instruction_options": ["coffee"], "assignment_id": "3Q8GYXHFE0CHUDYM8MW6SX788FEC57", "worker_id": "A9QRQL9CFJBI7"}], "B00B46XLT6": [{"asin": "B00B46XLT6", "instruction": "i am looking a high resolution fiber optic cable for audio vedio colour :black", "attributes": ["high resolution", "optical zoom"], "options": ["color: black"], "instruction_attributes": ["high resolution"], "instruction_options": ["black"], "assignment_id": "3ZSANO2JCQHP3RG7BKZFTE23JA4FS9", "worker_id": "A3N9ZYQAESNFQH"}], "B09GK7V42L": [{"asin": "B09GK7V42L", "instruction": "i want a yellow easy to carry gaone fm radio alarm clock.", "attributes": ["easy carry", "aaa batteries"], "options": ["color: yellow"], "instruction_attributes": ["easy carry"], "instruction_options": ["yellow"], "assignment_id": "345LHZDED82A2SSIGUTD76VU1HHU3S", "worker_id": "A2RBF3IIJP15IH"}], "B07WV947XR": [{"asin": "B07WV947XR", "instruction": "i want a long handle body brush to remove dead skin. get me something in blue or white.", "attributes": ["non slip", "long handle", "dead skin"], "options": ["scent: blue | white"], "instruction_attributes": ["long handle", "dead skin"], "instruction_options": ["blue | white"], "assignment_id": "3JV9LGBJW4OGJZK9FNOORUSEN02GOD", "worker_id": "A1NF6PELRKACS9"}], "B09PNF3MJR": [{"asin": "B09PNF3MJR", "instruction": "i am looking for a red colored button down hawaiian shirt with short sleeves.", "attributes": ["machine washable", "slim fit", "hand wash", "short sleeve", "regular fit", "quality polyester", "button closure"], "options": ["color: 03 red", "size: 3x-large"], "instruction_attributes": ["short sleeve", "button closure"], "instruction_options": ["03 red"], "assignment_id": "3EFVCAY5LEJNP9NUGCKVRLUU0NF8J6", "worker_id": "A1NF6PELRKACS9"}], "B00DBXR7MW": [{"asin": "B00DBXR7MW", "instruction": "i want to find a 6-pack of 12 count ferrero rocher candies for valentine's day.", "attributes": ["chocolate covered", "valentine day"], "options": ["size: 12 count (pack of 6)", "style: ferrero rocher"], "instruction_attributes": ["valentine day"], "instruction_options": ["12 count (pack of 6)", "ferrero rocher"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYT7HVA", "worker_id": "A345TDMHP3DQ3G"}], "B09SY7QSC7": [{"asin": "B09SY7QSC7", "instruction": "i am looking for powerful stainless steel kit for total body clipping, trimming, & grooming.", "attributes": ["stainless steel", "hair cutting"], "options": [""], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": [], "assignment_id": "3TEM0PF1QG7S4YIZBCL5V8TZC5YD02", "worker_id": "A2DQZHJHF45NDT"}], "B09P8Q42XL": [{"asin": "B09P8Q42XL", "instruction": "i want large loose fit tank tops for women.", "attributes": ["loose fit", "slim fit", "hand wash", "polyester spandex", "short sleeve", "teen girls"], "options": ["color: h23-khaki", "size: large"], "instruction_attributes": ["loose fit"], "instruction_options": ["large"], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLX2BYV", "worker_id": "A2RBF3IIJP15IH"}], "B07D5ZPCX4": [{"asin": "B07D5ZPCX4", "instruction": "i want to find kettle style potato chips with 0 grams of trans fat. there should be 4 bags total.", "attributes": ["gluten free", "0g trans"], "options": ["size: 4 bags"], "instruction_attributes": ["0g trans"], "instruction_options": ["4 bags"], "assignment_id": "3A7Y0R2P2ZYD4AO2OKWN7KBNRWNXJ2", "worker_id": "A345TDMHP3DQ3G"}], "B082HT2BKV": [{"asin": "B082HT2BKV", "instruction": "i am looking for creative cupcake toppers for a kids birthday cake.", "attributes": ["cupcake picks", "birthday cake", "party supplies"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3DPNQGW4LWPAIDLLKQ0T159KCVR64J", "worker_id": "ASWFLI3N8X72G"}], "B07HRZ23TW": [{"asin": "B07HRZ23TW", "instruction": "i need 1 pack 6.34 ounce, hand crafted and individually wrapped tortas.", "attributes": ["hand crafted", "individually wrapped"], "options": ["size: 6.34 ounce (pack of 1)"], "instruction_attributes": ["hand crafted", "individually wrapped"], "instruction_options": ["6.34 ounce (pack of 1)"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFTRE3Z", "worker_id": "ASWFLI3N8X72G"}], "B09PVJ5GD4": [{"asin": "B09PVJ5GD4", "instruction": "my high heel size was 6.5", "attributes": ["non slip", "rubber sole", "high heel", "ankle strap"], "options": ["color: 1red", "size: 6.5"], "instruction_attributes": ["high heel"], "instruction_options": ["6.5"], "assignment_id": "3R08VXYT7N55VFIAD6B42BS7RZEW7Y", "worker_id": "A226L9F2AZ38CL"}], "B001E95F4W": [{"asin": "B001E95F4W", "instruction": "i have 3 hair dye", "attributes": ["permanent hair", "hair dye"], "options": ["color: 2bg burgundy black", "size: 3 count"], "instruction_attributes": ["hair dye"], "instruction_options": ["3 count"], "assignment_id": "34S9DKFK7EZYN55X8EAHJ5ZD2MJYNA", "worker_id": "A226L9F2AZ38CL"}], "B09KP5VSHV": [{"asin": "B09KP5VSHV", "instruction": "i am looking for a faux fur cardigan coat with long sleeves. i am a 3x-large in size.", "attributes": ["fleece lined", "faux fur", "long sleeve"], "options": ["size: 3x-large"], "instruction_attributes": ["faux fur", "long sleeve"], "instruction_options": ["3x-large"], "assignment_id": "384PI804X3BY6N1H82GUQ7FZD8E0SP", "worker_id": "A1NF6PELRKACS9"}], "B09BZTJPZW": [{"asin": "B09BZTJPZW", "instruction": "i am looking for high quality , easy use , bpa free tongue brush", "attributes": ["bpa free", "easy use", "high quality", "fresh breath", "bad breath"], "options": [""], "instruction_attributes": ["bpa free", "easy use", "high quality"], "instruction_options": [], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VYQYW4", "worker_id": "AX2EWYWZM19AZ"}], "B086RJ1N69": [{"asin": "B086RJ1N69", "instruction": "i'm baking a birthday cake for raju.", "attributes": ["birthday cake", "birthday party"], "options": [""], "instruction_attributes": ["birthday cake"], "instruction_options": [], "assignment_id": "3X31TUMD78WB9ZR9KCNTSQKEQ6D1LG", "worker_id": "ASL9LVC97FUCZ"}], "B093YSK8QX": [{"asin": "B093YSK8QX", "instruction": "i am looking for a set of 2 mesh laundry bags.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["laundry bag"], "instruction_options": [], "assignment_id": "378XPAWRUNN5DMW3VSJ9BBLPDWRIA9", "worker_id": "A1EREKSZAA9V7B"}], "B07TGFS8KX": [{"asin": "B07TGFS8KX", "instruction": "i want a golden lighting 3602-vl3 blk duncan vanity light.", "attributes": ["contemporary style", "vanity light"], "options": [""], "instruction_attributes": ["vanity light"], "instruction_options": [], "assignment_id": "3Y54SXRO1WVF19QCV9Z4PJZSVGYUTD", "worker_id": "A2RBF3IIJP15IH"}], "B09H7PL3NN": [{"asin": "B09H7PL3NN", "instruction": "i am looking for a winter warm jacket with long sleeve which is washable in machine. also choose navy color and small size.", "attributes": ["daily casual", "winter warm", "loose fit", "machine wash", "long sleeve", "relaxed fit", "short sleeve", "everyday wear", "teen girls"], "options": ["color: navy", "size: small"], "instruction_attributes": ["winter warm", "machine wash", "long sleeve"], "instruction_options": ["navy", "small"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYQXOZB", "worker_id": "A2HMEGTAFO0CS8"}], "B07J2QPQMM": [{"asin": "B07J2QPQMM", "instruction": "get me a high performance video camera that is certified refurbished.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished", "high performance"], "instruction_options": [], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXWEMY3", "worker_id": "A1NF6PELRKACS9"}], "B08BHN5S3C": [{"asin": "B08BHN5S3C", "instruction": "i am looking for a large bright blue daily casual dress.", "attributes": ["daily casual", "slim fit", "polyester spandex"], "options": ["color: bright blue", "size: large"], "instruction_attributes": ["daily casual"], "instruction_options": ["bright blue", "large"], "assignment_id": "33L7PJKHCR8H3CJZS6YZTRH3YP1T8R", "worker_id": "A1EREKSZAA9V7B"}], "B078WTG2RC": [{"asin": "B078WTG2RC", "instruction": "i need to buy some green sandals with arch support. look for uk size nine medium.", "attributes": ["ethylene vinyl", "vinyl acetate", "arch support"], "options": ["color: green green black green xgkg", "size: 9 m uk"], "instruction_attributes": ["arch support"], "instruction_options": ["green green black green xgkg", "9 m uk"], "assignment_id": "351SEKWQSBRP7CP60H83T50CF8YDMC", "worker_id": "AR9AU5FY1S3RO"}], "B08ZS9TZW2": [{"asin": "B08ZS9TZW2", "instruction": "sony xr50x90j 50-inch ultra hd and high speed full array led smart tv", "attributes": ["ultra hd", "high speed"], "options": [""], "instruction_attributes": ["ultra hd", "high speed"], "instruction_options": [], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40V0YF6", "worker_id": "AX2EWYWZM19AZ"}], "B09JBZP1KV": [{"asin": "B09JBZP1KV", "instruction": "i want to find an xx-large blue women's long sleeve sweater.", "attributes": ["machine washable", "hand wash", "long sleeve", "relaxed fit"], "options": ["color: blue", "size: xx-large"], "instruction_attributes": ["long sleeve"], "instruction_options": ["blue", "xx-large"], "assignment_id": "39LNWE0K456PSVA11X00BCXJKZDIUF", "worker_id": "A345TDMHP3DQ3G"}], "B08FM8P9RB": [{"asin": "B08FM8P9RB", "instruction": "i am looking for button tufted , easy assemble velvet ottoman bench with white faux fur in color", "attributes": ["button tufted", "easy assemble", "metal legs", "dining room", "living room"], "options": ["color: white faux fur"], "instruction_attributes": ["button tufted", "easy assemble"], "instruction_options": ["white faux fur"], "assignment_id": "3OVHNO1VEHBP6JOPF6YX17WLUCOZDN", "worker_id": "AX2EWYWZM19AZ"}], "B08DYFCRVT": [{"asin": "B08DYFCRVT", "instruction": "i want to find an 11 fluid ounce bottle of ginger lemonade kombucha that has no sugar, and it needs to come in a pack of 16.", "attributes": ["keto friendly", "gluten free", "shelf stable", "certified organic", "non gmo", "zero sugar", "real fruit"], "options": ["flavor name: ginger lemonade", "size: 11 fl oz (pack of 16)"], "instruction_attributes": ["zero sugar"], "instruction_options": ["ginger lemonade", "11 fl oz (pack of 16)"], "assignment_id": "35BLDD71IH7B00OB6RYR7T2SUJNZVH", "worker_id": "A345TDMHP3DQ3G"}], "B079QPZ8KN": [{"asin": "B079QPZ8KN", "instruction": "i need this product for afternoon snack with friends .rhythm superfoods carrot sticks,1.4 oz (pack of 12), vegan/gluten-free superfood snacks", "attributes": ["non gmo", "gluten free", "simple ingredients"], "options": ["flavor: naked", "size: 1.4 ounce (pack of 12)"], "instruction_attributes": ["gluten free"], "instruction_options": ["1.4 ounce (pack of 12)"], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVADV85", "worker_id": "A15IJ20C3R4HUO"}], "B08XMD5NG2": [{"asin": "B08XMD5NG2", "instruction": "i am looking for an intel quad core i3 6157u powered mini pc.", "attributes": ["intel core", "quad core"], "options": ["color: i3 6157u", "size: 16g ram 128g ssd 1tb hdd"], "instruction_attributes": ["intel core", "quad core"], "instruction_options": ["i3 6157u"], "assignment_id": "33CKWXB73UUYJSN5R25A8BB0S0Z111", "worker_id": "A1EREKSZAA9V7B"}, {"asin": "B08XMD5NG2", "instruction": "i want to find an industrial i7 8550u computer that has a quad core. it needs to have 16 gigabytes of storage space on its ram.", "attributes": ["intel core", "quad core"], "options": ["color: i7 8550u", "size: 16g ram 512g ssd 1tb hdd"], "instruction_attributes": ["quad core"], "instruction_options": ["i7 8550u", "16g ram 512g ssd 1tb hdd"], "assignment_id": "33LKR6A5KPUZSCZETLPKEHUVKJWT18", "worker_id": "A345TDMHP3DQ3G"}], "B09PBLK5BF": [{"asin": "B09PBLK5BF", "instruction": "i want to find stainless steel hair cutting scissors with silver blades.", "attributes": ["stainless steel", "hair styling", "hair cutting"], "options": ["color: silver tooth scissors"], "instruction_attributes": ["stainless steel", "hair cutting"], "instruction_options": ["silver tooth scissors"], "assignment_id": "3MH9DQ7577MBW446B90XQ0K35MPUG3", "worker_id": "A345TDMHP3DQ3G"}], "B00S5UFHFU": [{"asin": "B00S5UFHFU", "instruction": "i would like some organic hair oil that is 16 fl oz.", "attributes": ["certified organic", "hair growth", "natural hair"], "options": ["size: 16 fl oz (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["16 fl oz (pack of 1)"], "assignment_id": "3G0WWMR1U6UPE3EBH4TN6JWB3D7NQ1", "worker_id": "A2ECRNQ3X5LEXD"}], "B001AHJJJA": [{"asin": "B001AHJJJA", "instruction": "i need a travel sized facial cleanser for sensitive skin.", "attributes": ["dermatologist tested", "sensitive skin"], "options": ["size: travel size"], "instruction_attributes": ["sensitive skin"], "instruction_options": ["travel size"], "assignment_id": "30LSNF23955G8J1ZIDQU5T2R18RI2U", "worker_id": "AR9AU5FY1S3RO"}], "B07YXFXNNV": [{"asin": "B07YXFXNNV", "instruction": "i am looking for chocolate covered and non gmo pre filled stocking stuffers with candy", "attributes": ["chocolate covered", "non gmo", "individually wrapped"], "options": [""], "instruction_attributes": ["chocolate covered", "non gmo"], "instruction_options": [], "assignment_id": "3QBD8R3Z2CT07JRPKMMNI5VBXVS4OD", "worker_id": "AX2EWYWZM19AZ"}], "B09QQSQKRY": [{"asin": "B09QQSQKRY", "instruction": "may you give me this costume please? there is a women's plus size loose jumpsuit ethnic floral summer jumpsuit quick dry 4x large.", "attributes": ["quick drying", "loose fit"], "options": ["color: yellow green", "size: 4x-large"], "instruction_attributes": ["quick drying"], "instruction_options": ["4x-large"], "assignment_id": "3I0BTBYZA8VV29DQ788J8T30UT6Y0X", "worker_id": "A15IJ20C3R4HUO"}], "B09KQ6QLH8": [{"asin": "B09KQ6QLH8", "instruction": "i am looking for non gmo, gluten free, soy free , plant based perfect chicken spinach pesto burger with size 4-pack", "attributes": ["non gmo", "gluten free", "protein serving", "soy free", "plant based"], "options": ["size: 4 - pack"], "instruction_attributes": ["non gmo", "gluten free", "soy free", "plant based"], "instruction_options": ["4 - pack"], "assignment_id": "3DI28L7YXLOX3THH3Q0PFVUUH9D1EU", "worker_id": "AX2EWYWZM19AZ"}], "B000P3U70K": [{"asin": "B000P3U70K", "instruction": "i am looking for old fashioned wabash valley farms - kernels with flavorful medley and with size 6 pound (pack of 1)", "attributes": ["old fashioned", "great gift"], "options": ["flavor name: flavorful medley", "size: 6 pound (pack of 1)"], "instruction_attributes": ["old fashioned"], "instruction_options": ["flavorful medley", "6 pound (pack of 1)"], "assignment_id": "33FOTY3KEXVI6VX37ZUUP7URWX01C1", "worker_id": "AX2EWYWZM19AZ"}], "B07CTBC6HX": [{"asin": "B07CTBC6HX", "instruction": "i'am purchase new type of machine wash and it's color is dark coffee,size:36w x34i", "attributes": ["machine wash", "cotton spandex", "imported zipper", "relaxed fit"], "options": ["color: dark coffee", "size: 36w x 34l"], "instruction_attributes": ["imported zipper"], "instruction_options": ["dark coffee", "36w x 34l"], "assignment_id": "3HRMW88U1H0V8SOCO5K8EYGTLJY0MF", "worker_id": "ASL9LVC97FUCZ"}], "B06XW3YW82": [{"asin": "B06XW3YW82", "instruction": "i'm looking for stainless steel for kitchen product.", "attributes": ["fully assembled", "stainless steel"], "options": ["style: rectangle lockable"], "instruction_attributes": ["fully assembled", "stainless steel"], "instruction_options": ["rectangle lockable"], "assignment_id": "34X6J5FLP48TVDNQ261VDCFUUURQJR", "worker_id": "A16IQOX0DK14OJ"}], "B09J4PRB13": [{"asin": "B09J4PRB13", "instruction": "i want to find xx-large black workout sweatpants with a relaxed fit.", "attributes": ["fashion design", "elastic closure", "relaxed fit", "high waist", "polyester spandex", "daily wear"], "options": ["color: black a34", "size: xx-large"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["black a34", "xx-large"], "assignment_id": "3GLB5JMZF85PF2TKPEA8G0GFJMRGDC", "worker_id": "A345TDMHP3DQ3G"}], "B07QXV6T4K": [{"asin": "B07QXV6T4K", "instruction": "i want a majestic pure argan oil hair mask.", "attributes": ["paraben free", "cruelty free", "argan oil", "coconut oil", "hair treatment"], "options": [""], "instruction_attributes": ["argan oil"], "instruction_options": [], "assignment_id": "3B2X28YI37PU3C6UZ5AG9JFQMND6BU", "worker_id": "A2RBF3IIJP15IH"}], "B00OIUBDLI": [{"asin": "B00OIUBDLI", "instruction": "zahara brought a cup of green tea.", "attributes": ["cruelty free", "green tea"], "options": [""], "instruction_attributes": ["green tea"], "instruction_options": [], "assignment_id": "3NG53N1RL6TJBKQSBPPFOHG69ML8P6", "worker_id": "ASL9LVC97FUCZ"}], "B09N76DG4F": [{"asin": "B09N76DG4F", "instruction": "i am looking for a green hoodie that is loose fit and a size small.", "attributes": ["loose fit", "quality polyester", "long sleeve", "daily wear"], "options": ["color: green", "size: small"], "instruction_attributes": ["loose fit"], "instruction_options": ["green", "small"], "assignment_id": "3F6KKYWMNMBVPUA6CIN36KPCKYCDNG", "worker_id": "A2ECRNQ3X5LEXD"}], "B08YS18GLB": [{"asin": "B08YS18GLB", "instruction": "i want to find black women's walking shoes with great arch support. the shoes should be in size 8.5 and lean on the wide side.", "attributes": ["lace closure", "arch support"], "options": ["color: black 1", "size: 8.5 wide"], "instruction_attributes": ["arch support"], "instruction_options": ["black 1", "8.5 wide"], "assignment_id": "3NC5L260MZWA5ZOE43I699S2ML0FOB", "worker_id": "A345TDMHP3DQ3G"}], "B07N34HVW3": [{"asin": "B07N34HVW3", "instruction": "i am looking for style edit root concealer touch up spray with unique pinpoint applicator provides targeted gray root coverage in seconds, natural emollients adhere to hair, while keeping a soft, natural feel. pack of 3 in medium brown color preferable.", "attributes": ["cruelty free", "permanent hair", "hair dye", "beauty salon"], "options": ["color: medium brown", "size: pack of 3"], "instruction_attributes": ["cruelty free", "permanent hair", "hair dye", "beauty salon"], "instruction_options": ["medium brown", "pack of 3"], "assignment_id": "35USIKEBN2QW4LVR2VFP0EFK3CT6NL", "worker_id": "A1DRKZ3SCLAS4V"}], "B09JLY4R5N": [{"asin": "B09JLY4R5N", "instruction": "let me get some birthday party cake toppers in red color.", "attributes": ["party supplies", "birthday party"], "options": ["color: red"], "instruction_attributes": ["birthday party"], "instruction_options": ["red"], "assignment_id": "3KYQYYSHY6HD7FAIDXNGL9PHA8MODB", "worker_id": "A1NF6PELRKACS9"}], "B079TJP1FM": [{"asin": "B079TJP1FM", "instruction": "i need a set of leak proof, bpa free jars.", "attributes": ["leak proof", "bpa free", "high quality"], "options": [""], "instruction_attributes": ["leak proof", "bpa free"], "instruction_options": [], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3QEMZQ", "worker_id": "AR9AU5FY1S3RO"}], "B09HQ2ZNN1": [{"asin": "B09HQ2ZNN1", "instruction": "i am looking for stainless steel tongue scraper with rose gold for oral hygiene", "attributes": ["rose gold", "stainless steel", "oral hygiene", "bad breath"], "options": ["color: rose gold"], "instruction_attributes": ["stainless steel"], "instruction_options": ["rose gold"], "assignment_id": "374TNBHA8M5JQ2IPO62YNZUI7X9QYS", "worker_id": "AX2EWYWZM19AZ"}], "B07LGDYVXH": [{"asin": "B07LGDYVXH", "instruction": "i want to find cajun seasoning that is gluten free and low sodium.", "attributes": ["low sodium", "gluten free", "natural ingredients"], "options": [""], "instruction_attributes": [], "instruction_options": [], "assignment_id": "35L9RVQFCZSPW0ZHVFIFB0W4KMWHUJ", "worker_id": "A345TDMHP3DQ3G"}], "B07NRZ1G6P": [{"asin": "B07NRZ1G6P", "instruction": "i want a 3 pack of dr. pawpaw multi-purpose balm for dry skin.", "attributes": ["cruelty free", "fragrance free", "natural ingredients", "dry skin"], "options": ["color: nude collection", "size: 3 pack"], "instruction_attributes": ["dry skin"], "instruction_options": ["3 pack"], "assignment_id": "35GMH2SV3PRIZLOI9SY0RR72AKGEON", "worker_id": "A2RBF3IIJP15IH"}], "B00NR5QGAS": [{"asin": "B00NR5QGAS", "instruction": "i am looking for women's 3x-large plus sized capri pants with regular fit. get me a white one.", "attributes": ["straight leg", "elastic waistband", "regular fit"], "options": ["color: white", "size: 3x-large plus petite"], "instruction_attributes": ["regular fit"], "instruction_options": ["white", "3x-large plus petite"], "assignment_id": "3UN61F00H7ZL0FN5QJM1HS6U8E8R5F", "worker_id": "A1NF6PELRKACS9"}], "B09T33NQZ8": [{"asin": "B09T33NQZ8", "instruction": "i want to find pink massage table sheets that are 70 x 185 centimeters in size. they must be high quality and non-toxic.", "attributes": ["high quality", "non toxic", "easy clean", "quality materials", "beauty salon"], "options": ["color: pink", "size: 70*185cm"], "instruction_attributes": ["high quality", "non toxic"], "instruction_options": ["pink", "70*185cm"], "assignment_id": "3C8HJ7UOPI4SADU2SZX0KXJF3QGZM5", "worker_id": "A345TDMHP3DQ3G"}], "B07YLJPMC3": [{"asin": "B07YLJPMC3", "instruction": "i am looking for fragrance free foaming cream cleanser.", "attributes": ["fragrance free", "paraben free", "hyaluronic acid"], "options": [""], "instruction_attributes": ["fragrance free"], "instruction_options": [], "assignment_id": "3WZ36BJEVEQ05AH6VII9KT746VQBTC", "worker_id": "A3FG5PQHG5AH3Y"}], "B081B4JGDW": [{"asin": "B081B4JGDW", "instruction": "i am looking for mysteek color pop temporary hair color that is easy to use for hair dye . color bougie blue , 0.25 fl oz (pack of 1) preferable.", "attributes": ["easy use", "natural hair", "hair dye"], "options": ["color: bougie blue", "size: 0.25 fl oz (pack of 1)"], "instruction_attributes": ["easy use", "natural hair", "hair dye"], "instruction_options": ["bougie blue", "0.25 fl oz (pack of 1)"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWYWMPP8", "worker_id": "A1DRKZ3SCLAS4V"}], "B07CR22SWM": [{"asin": "B07CR22SWM", "instruction": "i am looking for 20 pack set 10ml protable refill bulk atomizer spray of high quality sprayer glass bottles with fine mist sprayers, are perfect for storing your essential oils, perfumes or colognes in red color.", "attributes": ["high quality", "fine mist"], "options": ["color: red"], "instruction_attributes": ["high quality", "fine mist"], "instruction_options": ["red"], "assignment_id": "3E7TUJ2EGNWA0S6CB84YOJUSF9YD9K", "worker_id": "A1DRKZ3SCLAS4V"}], "B077BFH5FZ": [{"asin": "B077BFH5FZ", "instruction": "i need a gift set of snacks.", "attributes": ["gift set", "great gift"], "options": [""], "instruction_attributes": ["gift set"], "instruction_options": [], "assignment_id": "3JBT3HLQFJCYVGRFKFPS11DA8VJZPT", "worker_id": "ASWFLI3N8X72G"}], "B07NB7XWLW": [{"asin": "B07NB7XWLW", "instruction": "i want luseta tea tree oil shampoo.", "attributes": ["sulfate free", "easy use", "tea tree", "argan oil", "natural ingredients", "damaged hair", "dead skin"], "options": ["size: 33.8 ounce", "style: shampoo"], "instruction_attributes": ["tea tree"], "instruction_options": ["shampoo"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XQXNG5", "worker_id": "A2RBF3IIJP15IH"}], "B00BBUSCQC": [{"asin": "B00BBUSCQC", "instruction": "i need a vanity light with four bulbs and glass shades.", "attributes": ["vanity light", "glass shade"], "options": ["size: 4-light"], "instruction_attributes": ["vanity light", "glass shade"], "instruction_options": ["4-light"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R6HKSC", "worker_id": "AR9AU5FY1S3RO"}], "B09SFXT82T": [{"asin": "B09SFXT82T", "instruction": "i am searching for elastic waist black color boxer briefs underwear", "attributes": ["low rise", "cotton spandex", "quality polyester", "elastic waist"], "options": ["color: black", "size: x-large"], "instruction_attributes": ["elastic waist"], "instruction_options": ["black"], "assignment_id": "3AZHRG4CUFUUM6G2INFTIZ7NLSG301", "worker_id": "A258PTOZ3D2TQR"}], "B000WLXMB6": [{"asin": "B000WLXMB6", "instruction": "i want lundberg family farms organic california wild blend white jasmine rice.", "attributes": ["certified organic", "non gmo", "gluten free"], "options": ["flavor name: wild blend", "size: 400 ounce (pack of 1)"], "instruction_attributes": ["certified organic"], "instruction_options": ["wild blend"], "assignment_id": "3JRJSWSMQSVTDWVWQUE83O9RFTOE3W", "worker_id": "A2RBF3IIJP15IH"}], "B07256GKZ5": [{"asin": "B07256GKZ5", "instruction": "i want to find resealable bags of sea salt and fine ground celtic sea salt. the bags should be 16 ounces each and come in a pack of 6.", "attributes": ["non gmo", "gluten free", "resealable bag"], "options": ["pattern name: sea salt + fine ground celtic sea salt", "size: 16 ounce (pack of 6)", "style: bag"], "instruction_attributes": ["resealable bag"], "instruction_options": ["sea salt + fine ground celtic sea salt", "16 ounce (pack of 6)", "bag"], "assignment_id": "3MX2NQ3YCK45XB9HZIST6ASI9VPX5D", "worker_id": "A345TDMHP3DQ3G"}], "B09Q2D29MR": [{"asin": "B09Q2D29MR", "instruction": "i want a quick release 360\u00b0 panoramic ball head.", "attributes": ["quick release", "easy install", "aluminum alloy"], "options": [""], "instruction_attributes": ["quick release"], "instruction_options": [], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H3DU8O", "worker_id": "A2RBF3IIJP15IH"}], "B00JHGSANM": [{"asin": "B00JHGSANM", "instruction": "i would like a gluten free blue cheese dressing that is 15 oz", "attributes": ["gluten free", "high fructose"], "options": ["flavor: fat free chunky blue cheese 15 oz", "size: 15 ounce (pack of 1)"], "instruction_attributes": ["gluten free"], "instruction_options": ["fat free chunky blue cheese 15 oz", "15 ounce (pack of 1)"], "assignment_id": "3UNH76FOC3FS5NKXWDVH6QADXW8YM9", "worker_id": "A2ECRNQ3X5LEXD"}], "B08M3FNT2M": [{"asin": "B08M3FNT2M", "instruction": "i want to find an extra soft toothbrush that can help with sensitive teeth.", "attributes": ["high quality", "sensitive teeth", "bad breath"], "options": [""], "instruction_attributes": ["sensitive teeth"], "instruction_options": [], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8OLQQI", "worker_id": "A345TDMHP3DQ3G"}], "B07VYWC1SH": [{"asin": "B07VYWC1SH", "instruction": "i want to find a kelly green women's 3x-large t-shirt that has a classic fit.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: kelly green", "fit type: women", "size: 3x-large"], "instruction_attributes": ["classic fit"], "instruction_options": ["kelly green", "women", "3x-large"], "assignment_id": "37C0GNLMHQDNI94ED11M493QP8SD6B", "worker_id": "A345TDMHP3DQ3G"}], "B09CSRTBJ1": [{"asin": "B09CSRTBJ1", "instruction": "i want to find 45 grams of dark green edible glitter that is dairy free.", "attributes": ["kosher certified", "nut free", "dairy free", "gluten free"], "options": ["color: dark green", "size: 45g shaker"], "instruction_attributes": ["dairy free"], "instruction_options": ["dark green", "45g shaker"], "assignment_id": "3K3R2QNK8MDWHUHYX3UNYJYG19O9UL", "worker_id": "A345TDMHP3DQ3G"}], "B09F9NV74S": [{"asin": "B09F9NV74S", "instruction": "i want silver beaupretty mirror nail polish.", "attributes": ["non toxic", "nail art", "nail polish"], "options": ["color: silver"], "instruction_attributes": ["nail polish"], "instruction_options": ["silver"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIVH9TU", "worker_id": "A2RBF3IIJP15IH"}], "B01913CX6U": [{"asin": "B01913CX6U", "instruction": "i want to shop for some sulfate free, paraben free conditioner for dry, damaged hair.", "attributes": ["sulfate free", "paraben free", "tea tree", "natural ingredients", "dry hair", "damaged hair"], "options": [""], "instruction_attributes": ["sulfate free", "paraben free", "dry hair", "damaged hair"], "instruction_options": [], "assignment_id": "39OWYR0EPV1MZDSGAQR4B0Q40VYYF4", "worker_id": "AR9AU5FY1S3RO"}], "B0143NQVJ8": [{"asin": "B0143NQVJ8", "instruction": "i am interested in a high protein bar that is mixed berry flavor.", "attributes": ["high protein", "gluten free"], "options": ["flavor name: mixed berry", "size: 1.83 ounce (pack of 12)"], "instruction_attributes": ["high protein"], "instruction_options": ["mixed berry"], "assignment_id": "37XITHEIS7J6Z0WK5T99VYC40VQRCJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B08QJTPHLS": [{"asin": "B08QJTPHLS", "instruction": "ultra soft - charcoal toothbrush for adults and sensitive teeth with pack consists of 8 count.", "attributes": ["sensitive teeth", "bad breath"], "options": ["color: charcoal - ultra soft - adults", "size: 8 count (pack of 1)"], "instruction_attributes": ["sensitive teeth"], "instruction_options": ["charcoal - ultra soft - adults", "8 count (pack of 1)"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOD2ATD", "worker_id": "AX2EWYWZM19AZ"}], "B07FYDYR9J": [{"asin": "B07FYDYR9J", "instruction": "i'm searching for long spaghetti straps satin ball dry clean gown .its size is 6, and lilac color", "attributes": ["lace closure", "drawstring closure", "dry clean"], "options": ["color: lilac", "size: 6"], "instruction_attributes": ["dry clean"], "instruction_options": ["lilac", "6"], "assignment_id": "336KAV9KY122YJG4MVCXRHWFRRQY2H", "worker_id": "A258PTOZ3D2TQR"}], "B0936Y95DB": [{"asin": "B0936Y95DB", "instruction": "i am looking for yellow color stool cover. it should be washable in machine.", "attributes": ["machine washable", "easy install"], "options": ["color: yellow"], "instruction_attributes": ["machine washable"], "instruction_options": ["yellow"], "assignment_id": "3II4UPYCOUHGSRNYSAFKAEKHP95DQ9", "worker_id": "A3FG5PQHG5AH3Y"}], "B09DPF82NP": [{"asin": "B09DPF82NP", "instruction": "i need a smart watch protective case. get the one for a 40mm apple watch.", "attributes": ["compatible apple", "case cover"], "options": ["size: 40mm"], "instruction_attributes": ["compatible apple", "case cover"], "instruction_options": ["40mm"], "assignment_id": "3GNCZX450TXXU8J78N9TK8M1ZAGAP7", "worker_id": "AR9AU5FY1S3RO"}], "B09NRP78WV": [{"asin": "B09NRP78WV", "instruction": "i need an extra large twin box spring with a four inch foundation. get the white one.", "attributes": ["ready use", "fully assembled", "assembly required", "box spring"], "options": ["color: white", "size: twin xl", "style name: 4\" foundation"], "instruction_attributes": ["box spring"], "instruction_options": ["white", "twin xl", "4\" foundation"], "assignment_id": "3Q5C1WP23XBX7AOOSP7MB1OH4G915O", "worker_id": "AR9AU5FY1S3RO"}], "B09CKS7B2J": [{"asin": "B09CKS7B2J", "instruction": "i want grey and light weight wygrqbn mens walking shoes.", "attributes": ["light weight", "rubber sole"], "options": ["color: grey", "size: 9.5"], "instruction_attributes": ["light weight"], "instruction_options": ["grey"], "assignment_id": "37QW5D2ZRRWGOC6K36T9JMLHW6SS86", "worker_id": "A2RBF3IIJP15IH"}], "B093D82ZGC": [{"asin": "B093D82ZGC", "instruction": "i want black straight leg shopessa harem sweatpants for women.", "attributes": ["straight leg", "elastic closure", "short sleeve"], "options": ["color: a7 - black", "size: 4x-large"], "instruction_attributes": ["straight leg"], "instruction_options": ["a7 - black"], "assignment_id": "3XXU1SWE8X5U6RFNR2U357LTR210AN", "worker_id": "A2RBF3IIJP15IH"}], "B093SYBT18": [{"asin": "B093SYBT18", "instruction": "i want to find a laundry bag for my blouses and hosiery.", "attributes": ["blouse hosiery", "laundry bag"], "options": [""], "instruction_attributes": ["blouse hosiery", "laundry bag"], "instruction_options": [], "assignment_id": "3BDCF01OG848Z52CW1U26DVOXROYLD", "worker_id": "A345TDMHP3DQ3G"}], "B09FLHHWNX": [{"asin": "B09FLHHWNX", "instruction": "my living room in grey color", "attributes": ["eco friendly", "machine washable", "easy install", "living room"], "options": ["color: grey", "size: 40\"x84\"x2"], "instruction_attributes": ["living room"], "instruction_options": ["grey"], "assignment_id": "3YWRV122C39W3PYOSBO9YN35H3A8UZ", "worker_id": "A226L9F2AZ38CL"}], "B09R3N24W6": [{"asin": "B09R3N24W6", "instruction": "i want a black women's shoe in size 7 with a lace closure. it should have a metal decoration.", "attributes": ["hand wash", "lace closure"], "options": ["color: black", "size: 6.5-7"], "instruction_attributes": ["lace closure"], "instruction_options": ["black", "6.5-7"], "assignment_id": "3D3VGR7TABPIM001C0Y82V8AUIER3M", "worker_id": "A1NF6PELRKACS9"}], "B092CJR3ST": [{"asin": "B092CJR3ST", "instruction": "i want a cheery cacao flavored bar that is gluten and diary free.", "attributes": ["gluten free", "plant based", "dairy free"], "options": ["flavor name: cherry cacao", "size: 12-pack smalls"], "instruction_attributes": ["gluten free", "dairy free"], "instruction_options": ["cherry cacao"], "assignment_id": "37U1UTWH96W4NX67OHT4TCGLA49R8H", "worker_id": "A1NF6PELRKACS9"}], "B08XV5X86G": [{"asin": "B08XV5X86G", "instruction": "i would like a tablet that has a 1080p screen.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd"], "instruction_options": [], "assignment_id": "30BXRYBRPF72O4OMQFXGTOH152DWH3", "worker_id": "A2ECRNQ3X5LEXD"}], "B094XVH5SR": [{"asin": "B094XVH5SR", "instruction": "i want to find a white security camera system that produces high definition footage.", "attributes": ["plug play", "high definition"], "options": ["color: white"], "instruction_attributes": ["high definition"], "instruction_options": ["white"], "assignment_id": "3VNXK88KKNSWU96Y2T4SU50ZFG49VH", "worker_id": "A345TDMHP3DQ3G"}], "B08RF3WW88": [{"asin": "B08RF3WW88", "instruction": "i need space saving coat rack in the style of a contemporary branch.", "attributes": ["space saving", "contemporary style"], "options": [""], "instruction_attributes": ["space saving", "contemporary style"], "instruction_options": [], "assignment_id": "3M81GAB8ABTNDUPEEEOEFOWHMOTBQ0", "worker_id": "A1NF6PELRKACS9"}], "B09MHXYT1Y": [{"asin": "B09MHXYT1Y", "instruction": "i'm looking for cosmetic container need to buy a high quality green colored want to buy.", "attributes": ["high quality", "fine mist"], "options": ["color: green"], "instruction_attributes": ["high quality"], "instruction_options": ["green"], "assignment_id": "3A4NIXBJ7H985ODYDY6RCI8HOISLMU", "worker_id": "A16IQOX0DK14OJ"}], "B07X7CKYBG": [{"asin": "B07X7CKYBG", "instruction": "i am looking for a dust proof cheapest 8 inch octa core tablet pc", "attributes": ["dust proof", "dual band"], "options": [""], "instruction_attributes": ["dust proof"], "instruction_options": [], "assignment_id": "3EG49X3515M1GF9V412YYG6I5Q4X6X", "worker_id": "A258PTOZ3D2TQR"}], "B0971B7XQ3": [{"asin": "B0971B7XQ3", "instruction": "i looking casual flat loose fitting open toe having ankle strap woman slipper size-9 ,color :z92 -camouflage", "attributes": ["open toe", "loose fit", "arch support", "closed toe", "ankle strap"], "options": ["color: z92-camouflage", "size: 9"], "instruction_attributes": ["open toe", "loose fit", "ankle strap"], "instruction_options": ["z92-camouflage", "9"], "assignment_id": "3QJOXOW4XU1UZI36WCJNZNIXFK4MEJ", "worker_id": "A3N9ZYQAESNFQH"}], "B07S2H6J7T": [{"asin": "B07S2H6J7T", "instruction": "i want red bull energy drink sugar free.", "attributes": ["lactose free", "sugar free", "dairy free", "gluten free"], "options": ["flavor name: crisp pear", "size: 12 fl oz (pack of 24)", "style: energy drink"], "instruction_attributes": ["sugar free"], "instruction_options": ["energy drink"], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AP2BWW", "worker_id": "A2RBF3IIJP15IH"}], "B08CD2NJPH": [{"asin": "B08CD2NJPH", "instruction": "i am looking for long lasting and pink color gaming headset ps4 3.5 mm stereo wired", "attributes": ["noise cancelling", "long lasting"], "options": ["color: pink"], "instruction_attributes": ["long lasting"], "instruction_options": ["pink"], "assignment_id": "39DD6S19J0LUYP2PB19H7PE6UOPZEG", "worker_id": "AX2EWYWZM19AZ"}], "B07X2QXM96": [{"asin": "B07X2QXM96", "instruction": "i want to find a 3-pack of 50-foot long nylon microphone cables that are heavy duty.", "attributes": ["heavy duty", "high performance"], "options": ["color: 6color", "size: 50ft 3pack", "style: nylon"], "instruction_attributes": ["heavy duty"], "instruction_options": ["50ft 3pack", "nylon"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNZ6PTC", "worker_id": "A345TDMHP3DQ3G"}], "B07F2TFTRW": [{"asin": "B07F2TFTRW", "instruction": "i am looking for easy assemble and box spring mainstay 14\" high profile foldabel steel bed frame", "attributes": ["easy assemble", "coated steel", "memory foam", "box spring"], "options": [""], "instruction_attributes": ["easy assemble", "box spring"], "instruction_options": [], "assignment_id": "34HJIJKLPG6VX30MLY81DXPJTOQV47", "worker_id": "AX2EWYWZM19AZ"}], "B07QN3K2XN": [{"asin": "B07QN3K2XN", "instruction": "i am looking for a tummy control high waist active short for woman ,size -x- small color : tie dye light blue", "attributes": ["moisture wicking", "tummy control", "high waist"], "options": ["color: tie dye light blue", "size: x-small"], "instruction_attributes": ["tummy control", "high waist"], "instruction_options": ["tie dye light blue", "x-small"], "assignment_id": "3A1PQ49WVSR9N38JTR8V0YR79PX1H2", "worker_id": "A3N9ZYQAESNFQH"}], "B07PJ1CXXY": [{"asin": "B07PJ1CXXY", "instruction": "i am looking for a light weight jumpsuit which is washable in machine. also choose medium size and teal color.", "attributes": ["light weight", "loose fit", "wash cold", "machine wash", "elastic waistband"], "options": ["color: n51, teal", "size: medium"], "instruction_attributes": ["light weight", "machine wash"], "instruction_options": ["n51, teal", "medium"], "assignment_id": "3PS7W85Z8ACHHH29XY4DTNCEIVPT9M", "worker_id": "A2HMEGTAFO0CS8"}], "B09HL9DTF5": [{"asin": "B09HL9DTF5", "instruction": "can you help me find a pair of women's high heel sandal with a rubber sole? i want bubble pink one and size 11.", "attributes": ["high heel", "rubber sole"], "options": ["color: bubble pink", "size: 11"], "instruction_attributes": ["high heel", "rubber sole"], "instruction_options": ["bubble pink", "11"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWOU6W9", "worker_id": "A1198W1SPF1R4"}], "B07WLYZRZJ": [{"asin": "B07WLYZRZJ", "instruction": "i'd like to find a soy wax candle that is scented to smell like the sea and citrus.", "attributes": ["eco friendly", "lead free", "soy wax"], "options": ["color: seaside | citrus"], "instruction_attributes": ["soy wax"], "instruction_options": ["seaside | citrus"], "assignment_id": "3RKNTXVS3X8B5FXOA3H5HAB68EP4AF", "worker_id": "A345TDMHP3DQ3G"}], "B08BLBPWC5": [{"asin": "B08BLBPWC5", "instruction": "i want to find a 3x-large short-sleeve hawaiian shirt for men in the 1685 color.", "attributes": ["machine washable", "hand wash", "regular fit", "short sleeve"], "options": ["color: 1685", "size: 3x-large"], "instruction_attributes": ["short sleeve"], "instruction_options": ["1685", "3x-large"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM4DZHS", "worker_id": "A345TDMHP3DQ3G"}], "B07J4L9VCX": [{"asin": "B07J4L9VCX", "instruction": "i want to buy some sulfate free body wash for sensitive skin. get me one that's peppermint scented.", "attributes": ["plant based", "sulfate free", "natural ingredients", "sensitive skin"], "options": ["scent: sweet peppermint 1pk"], "instruction_attributes": ["sulfate free", "sensitive skin"], "instruction_options": ["sweet peppermint 1pk"], "assignment_id": "3FTYUGLFS5VRZ5408IRHC3PQTDAD5O", "worker_id": "AR9AU5FY1S3RO"}], "B07KLZJ8RH": [{"asin": "B07KLZJ8RH", "instruction": "i am interested in solid wood storage cabinets.", "attributes": ["white item", "white finish", "solid wood"], "options": [""], "instruction_attributes": ["solid wood"], "instruction_options": [], "assignment_id": "3VBEN272MV9VHRC2M45XBZ2FKPZGS4", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NSDTJQ5": [{"asin": "B09NSDTJQ5", "instruction": "i want to find an s22 ultra 2+2 screen protector that's easy to install, and it needs to be made of tempered glass.", "attributes": ["ultra hd", "easy install", "glass screen", "tempered glass"], "options": ["color: s22 ultra 2+2"], "instruction_attributes": ["ultra hd", "easy install", "glass screen", "tempered glass"], "instruction_options": ["s22 ultra 2+2"], "assignment_id": "39JEC75375BYS7D1EDEJWV17L12VCF", "worker_id": "A345TDMHP3DQ3G"}], "B08CDRZH7B": [{"asin": "B08CDRZH7B", "instruction": "i am looking easy use long curly hairpieces density top size -14 inch -130% density,color: medium brown -e", "attributes": ["easy use", "hair loss"], "options": ["color: medium brown-e", "size: 14 inch-130% density"], "instruction_attributes": ["easy use"], "instruction_options": ["medium brown-e", "14 inch-130% density"], "assignment_id": "39ZSFO5CAJ6LN6U7JFL0NDCJXE1JUR", "worker_id": "A3N9ZYQAESNFQH"}], "B09NWC91MH": [{"asin": "B09NWC91MH", "instruction": "i want to find toothpaste that helps whiten teeth and kill bad breath.", "attributes": ["teeth whitening", "long lasting", "natural ingredients", "bad breath", "fresh breath", "sensitive teeth"], "options": ["color: b"], "instruction_attributes": ["teeth whitening", "bad breath"], "instruction_options": ["b"], "assignment_id": "3WYGZ5XF37P0JD8LCVQC9RU8R6NSKQ", "worker_id": "A345TDMHP3DQ3G"}], "B001E0XSAE": [{"asin": "B001E0XSAE", "instruction": "i am looking for a sandy golden blonde permanent hair color that is cruelty free. pick the 8g one.", "attributes": ["cruelty free", "long lasting", "easy use", "seed oil", "permanent hair"], "options": ["color: 8g sandy golden blonde", "size: 5.6 fl oz (pack of 6)"], "instruction_attributes": ["cruelty free", "permanent hair"], "instruction_options": ["8g sandy golden blonde"], "assignment_id": "3QAPZX2QNFN51OKJEN1OZP2VFEH02O", "worker_id": "A1NF6PELRKACS9"}], "B01JPENOTK": [{"asin": "B01JPENOTK", "instruction": "i need argan oil lotion for anti aging hair treatment.", "attributes": ["anti aging", "argan oil", "hair treatment"], "options": ["color: argan oil lotion"], "instruction_attributes": ["anti aging", "hair treatment"], "instruction_options": ["argan oil lotion"], "assignment_id": "3U84XHCDINNC6N5WMVX4Y32FHZQZ45", "worker_id": "ASWFLI3N8X72G"}], "B07KY81F8T": [{"asin": "B07KY81F8T", "instruction": "i am looking for a portable wireless security cameras with motion detection for home monitoring", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "39GXDJN2O4OWG4NOX1YEU95OVAMV8E", "worker_id": "A258PTOZ3D2TQR"}], "B08PNW7WS8": [{"asin": "B08PNW7WS8", "instruction": "i'd like to buy some machine washable drapes for my living room. look for multicolored drapes that are one hundred and four by sixty-three inches.", "attributes": ["machine washable", "living room", "dining room"], "options": ["color: multi 60", "size: 104\" x 63\""], "instruction_attributes": ["machine washable", "living room"], "instruction_options": ["multi 60", "104\" x 63\""], "assignment_id": "3TS1AR6UQ1O3KTWFNH14YN67WWOF7J", "worker_id": "AR9AU5FY1S3RO"}], "B08MZ9HY8Y": [{"asin": "B08MZ9HY8Y", "instruction": "i want an o christmas tree, large christmas gift basket.", "attributes": ["hand crafted", "gift basket"], "options": [""], "instruction_attributes": ["gift basket"], "instruction_options": [], "assignment_id": "3XM0HYN6NV90KL0JOSBFGRCSKPKEPC", "worker_id": "A2RBF3IIJP15IH"}], "B075H6L5RC": [{"asin": "B075H6L5RC", "instruction": "i want a satin nickel design house 578849 dane 4-light indoor bathroom vanity light.", "attributes": ["nickel finish", "vanity light"], "options": ["color: satin nickel", "size: 3-light"], "instruction_attributes": ["vanity light"], "instruction_options": ["satin nickel"], "assignment_id": "3HFNH7HEMSOJ4BXPU0GSGZNE21BQGM", "worker_id": "A2RBF3IIJP15IH"}], "B08Y6K393G": [{"asin": "B08Y6K393G", "instruction": "i would like a shower cap for my natural hair that has corgis on them.", "attributes": ["long lasting", "hair salon", "natural hair"], "options": ["color: cute corgi"], "instruction_attributes": ["natural hair"], "instruction_options": ["cute corgi"], "assignment_id": "3XCC1ODXDWLAT163ABA4F31L4AURQR", "worker_id": "A2ECRNQ3X5LEXD"}], "B089GRDSCZ": [{"asin": "B089GRDSCZ", "instruction": "camera is easy carry and it's high resolution photo are there ,also size:8x6.5ft.", "attributes": ["light weight", "high resolution", "easy carry", "digital photography"], "options": ["size: 8x6.5ft"], "instruction_attributes": ["high resolution", "easy carry"], "instruction_options": ["8x6.5ft"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQCX19K", "worker_id": "ASL9LVC97FUCZ"}], "B09MTLYMPM": [{"asin": "B09MTLYMPM", "instruction": "i am looking for women's high heel boots of 8.5 size and green one", "attributes": ["steel toe", "high heel", "rubber sole"], "options": ["color: green", "size: 8.5"], "instruction_attributes": ["high heel"], "instruction_options": ["green", "8.5"], "assignment_id": "3LO69W1SUEN8DEHC2V8WZDOKSVVGLU", "worker_id": "A258PTOZ3D2TQR"}], "B08TR29R32": [{"asin": "B08TR29R32", "instruction": "i want to find a pair of construction work shoes that are black and gray with rubber soles. they should come in a size 8 and be extra wide.", "attributes": ["non slip", "steel toe", "rubber sole"], "options": ["color: black+gray", "size: 8 wide"], "instruction_attributes": ["rubber sole"], "instruction_options": ["black+gray", "8 wide"], "assignment_id": "38JBBYETQZKEVSE0Q8JRDT1XTTIE4F", "worker_id": "A345TDMHP3DQ3G"}], "B07ZHXJT92": [{"asin": "B07ZHXJT92", "instruction": "i am looking for a cupcake topper for a birthday party. also choose black color", "attributes": ["cupcake picks", "birthday party"], "options": ["color: black"], "instruction_attributes": ["birthday party"], "instruction_options": ["black"], "assignment_id": "3Z4AIRP3CHN69T8YYVQH3KF1XFNX1Y", "worker_id": "A2HMEGTAFO0CS8"}], "B08YY6XQGH": [{"asin": "B08YY6XQGH", "instruction": "i am looking for miracase glass case for iphone 12/ iphone 12 pro 6.1 inch with military grade protection support wireless charging without taking off the iphone 12/ iphone 12 pro. the 2 pieces design offers easy install only for iphone, cover the front case onto the face of iphone, purple color preferable.", "attributes": ["easy install", "glass screen", "tempered glass", "wireless charging"], "options": ["color: purple"], "instruction_attributes": ["easy install", "glass screen", "tempered glass", "wireless charging"], "instruction_options": ["purple"], "assignment_id": "37W3JXSD6HIOAZEB0F14FOC4VYPWY1", "worker_id": "A1DRKZ3SCLAS4V"}], "B08T21G734": [{"asin": "B08T21G734", "instruction": "i want to find a 3.5 foot printed backdrop that i can use for my digital photography.", "attributes": ["light weight", "digital photography"], "options": ["color: printed backdrop 07", "size: 3x5 ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["printed backdrop 07", "3x5 ft"], "assignment_id": "3R2UR8A0ILQR5LFZ4XOSFGS9QQROX6", "worker_id": "A345TDMHP3DQ3G"}], "B073BRKKV8": [{"asin": "B073BRKKV8", "instruction": "i am looking for mally beauty h3 hydrating concealer which glides on smoothly and easily, providing excellent coverage on the areas you need it the most. that is lightweight, creamy formula gives skin the look of radiance, blurring the appearance of imperfections and softening the look of fine lines. medium size preferable.", "attributes": ["anti aging", "hyaluronic acid"], "options": ["color: medium"], "instruction_attributes": ["anti aging", "hyaluronic acid"], "instruction_options": ["medium"], "assignment_id": "36AHBNMV12MP1TEKJKWEN0NJOIMDYC", "worker_id": "A1DRKZ3SCLAS4V"}], "B001H0FR6O": [{"asin": "B001H0FR6O", "instruction": "i want big & tall levi's men's 550 relaxed fit jeans.", "attributes": ["straight leg", "relaxed fit", "button closure"], "options": ["color: rinse", "fit type: big & tall", "size: 31w x 34l"], "instruction_attributes": ["relaxed fit"], "instruction_options": ["big & tall"], "assignment_id": "31IBVUNM9395VJXB5F4K41MAIEXVFT", "worker_id": "A2RBF3IIJP15IH"}], "B09CNPZJTJ": [{"asin": "B09CNPZJTJ", "instruction": "i need some cupcake toppers for a baby shower.", "attributes": ["baby shower", "birthday party", "cupcake picks"], "options": [""], "instruction_attributes": ["baby shower"], "instruction_options": [], "assignment_id": "3Z3ZLGNNST4IAZL1ZL98X5Y5YW8Q3G", "worker_id": "AR9AU5FY1S3RO"}], "B08LPCBR3X": [{"asin": "B08LPCBR3X", "instruction": "i want a ownest 6 colors matte crayon lipstick for sensitive skin.", "attributes": ["long lasting", "natural ingredients", "sensitive skin"], "options": [""], "instruction_attributes": ["sensitive skin"], "instruction_options": [], "assignment_id": "33CUSNVVNYMY5SRBP8N42VLGKCL88M", "worker_id": "A2RBF3IIJP15IH"}], "B00VQS4IPS": [{"asin": "B00VQS4IPS", "instruction": "may you give me anti aging it cosmetics your skin but better cc+ airbrush perfecting powder in clor rich", "attributes": ["anti aging", "hyaluronic acid", "fine lines"], "options": ["color: rich (w)"], "instruction_attributes": [], "instruction_options": ["rich (w)"], "assignment_id": "3RYC5T2D7E3PTP5OAYVFFYBBZE5PRV", "worker_id": "A15IJ20C3R4HUO"}], "B0065PZY1O": [{"asin": "B0065PZY1O", "instruction": "i need a small chef jacket that has a button closure and is a charcoal color.", "attributes": ["moisture wicking", "polyester cotton", "short sleeve", "button closure"], "options": ["color: charcoal", "size: small"], "instruction_attributes": ["button closure"], "instruction_options": ["charcoal", "small"], "assignment_id": "3WSELTNVRECVM0CEP4IDPINYOD5ATG", "worker_id": "A2ECRNQ3X5LEXD"}], "B072QY1N34": [{"asin": "B072QY1N34", "instruction": "i want a double sided pillow case that can be washed in a machine. choose a black and white one.", "attributes": ["double sided", "machine washable", "printing technology"], "options": ["color: black and white", "size: 26\" x 26\""], "instruction_attributes": ["double sided", "machine washable"], "instruction_options": ["black and white"], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JYTEG4", "worker_id": "A1NF6PELRKACS9"}], "B07RM5BDTF": [{"asin": "B07RM5BDTF", "instruction": "i use olive color moisture wicking", "attributes": ["moisture wicking", "stretch fabric", "elastic waist"], "options": ["color: olive", "size: medium"], "instruction_attributes": ["moisture wicking"], "instruction_options": ["olive"], "assignment_id": "3MMN5BL1WAERPKN97S2RGWE0OVF3MA", "worker_id": "A226L9F2AZ38CL"}], "B08WYD18X9": [{"asin": "B08WYD18X9", "instruction": "i am looking for twin size bed. color should be light grey.", "attributes": ["twin size", "space saving", "assembly required", "easy install", "wood frame", "box spring"], "options": ["color: light grey", "size: with 3 drawers"], "instruction_attributes": ["twin size"], "instruction_options": ["light grey"], "assignment_id": "3QUO65DNQ5YZOHL4ZSD5V9T5W8GUOQ", "worker_id": "A3FG5PQHG5AH3Y"}], "B00CP53C6W": [{"asin": "B00CP53C6W", "instruction": "i am looking for a victorian style queen size bed.", "attributes": ["queen size", "white item"], "options": ["color: bronze", "size: queen", "style: bed"], "instruction_attributes": ["queen size"], "instruction_options": ["bed"], "assignment_id": "33PPUNGG3JFJ7T7UX7TH6WDP9D9ZRN", "worker_id": "A1EREKSZAA9V7B"}], "B09JKMM837": [{"asin": "B09JKMM837", "instruction": "i am looking for kitchen bar table set in industrial brown and black color with space saving, easy clean , easy assemble option", "attributes": ["heavy duty", "non slip", "space saving", "easy clean", "easy assemble", "dining room", "living room"], "options": ["color: industrial brown and black", "size: kitchen bar table set"], "instruction_attributes": ["space saving", "easy clean", "easy assemble"], "instruction_options": ["industrial brown and black", "kitchen bar table set"], "assignment_id": "3M23Y66PODHTKYNWARWBZ8PQQB26SY", "worker_id": "AX2EWYWZM19AZ"}], "B07TD6T9WP": [{"asin": "B07TD6T9WP", "instruction": "i am looking for a area rug for living room with easy to clean which is in rectangular shape. also choose gold color and 2ft 8in x 8ft in size", "attributes": ["easy clean", "dining room", "living room"], "options": ["color: gold", "item shape: rectangular", "size: 2 ft 8 in x 8 ft"], "instruction_attributes": ["easy clean", "living room"], "instruction_options": ["gold", "rectangular", "2 ft 8 in x 8 ft"], "assignment_id": "3TMFV4NEPJO9VTNTNB3AGBO22JOW8P", "worker_id": "A2HMEGTAFO0CS8"}], "B07R1WCC3H": [{"asin": "B07R1WCC3H", "instruction": "i want a 52\"x84\" 100% blackout window curtain for my living room.", "attributes": ["machine washable", "easy install", "living room"], "options": ["color: love64cos5922", "size: 52\"x84\""], "instruction_attributes": ["living room"], "instruction_options": ["52\"x84\""], "assignment_id": "39GHHAVOMQ1M680S49UIA9EPY1CJ43", "worker_id": "A2RBF3IIJP15IH"}], "B08R3V8RC1": [{"asin": "B08R3V8RC1", "instruction": "i looking a fruit & nut bar low sodium low carb gluteen free having dietry fiber individually wrapped flavor cocoa & chocolate", "attributes": ["low sodium", "low carb", "gluten free", "low fat", "low calorie", "sugar free", "plant based", "individually wrapped", "non gmo", "dietary fiber"], "options": ["flavor name: cocoa & chocolate", "size: 80"], "instruction_attributes": ["low sodium", "low carb", "gluten free", "individually wrapped", "dietary fiber"], "instruction_options": ["cocoa & chocolate"], "assignment_id": "3QECW5O0KSBYGU0XU8RWH77CWZ45T5", "worker_id": "A3N9ZYQAESNFQH"}], "B08ZGWYWXS": [{"asin": "B08ZGWYWXS", "instruction": "i need a non gmo ginger candy pack with assorted flavors.", "attributes": ["non gmo", "gluten free", "individually wrapped", "simple ingredients"], "options": ["color: assorted 2", "size: 6 piece assortment"], "instruction_attributes": ["non gmo", "gluten free"], "instruction_options": ["assorted 2"], "assignment_id": "3G5F9DBFO07P9FOH05SK7MYNYTCVHT", "worker_id": "A1NF6PELRKACS9"}], "B07GRQ7Q5F": [{"asin": "B07GRQ7Q5F", "instruction": "i need to buy a roller shade that's easy to install in my living room. get the mocha color, 79 inches wide.", "attributes": ["easy install", "living room"], "options": ["color: 11.mocha", "size: w79 3 | 4 x h95 (inch)"], "instruction_attributes": ["easy install", "living room"], "instruction_options": ["11.mocha", "w79 3 | 4 x h95 (inch)"], "assignment_id": "3VW6495TLUASZ49BFGJS0LXK66OYY1", "worker_id": "AR9AU5FY1S3RO"}], "B08PC4GGHL": [{"asin": "B08PC4GGHL", "instruction": "i am looking for verizon 700mhz cell phone signal booster which is easy to install with 4g lte. color 4g band 5 | 13 preferable.", "attributes": ["easy install", "4g lte"], "options": ["color: 4g band 5 | 13"], "instruction_attributes": ["easy install", "4g lte"], "instruction_options": ["4g band 5 | 13"], "assignment_id": "3ERET4BTVXJIEYCM3PQLSWPIZIW9KU", "worker_id": "A1DRKZ3SCLAS4V"}], "B09B3RQZLM": [{"asin": "B09B3RQZLM", "instruction": "i want a pink long sleeved t-shirt in size 12.", "attributes": ["machine washable", "wash cold", "hand wash", "machine wash", "long sleeve", "dry clean"], "options": ["color: pink", "size: 12"], "instruction_attributes": ["long sleeve"], "instruction_options": ["pink", "12"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMP3W9B", "worker_id": "A1NF6PELRKACS9"}], "B09PL5QXZM": [{"asin": "B09PL5QXZM", "instruction": "i am looking for face mask brushes for easy apply and easy carry with color blue", "attributes": ["easy apply", "easy carry"], "options": ["color: blue"], "instruction_attributes": ["easy apply", "easy carry"], "instruction_options": ["blue"], "assignment_id": "3WMINLGALMDE0JA33INN08NU0R4CAY", "worker_id": "AX2EWYWZM19AZ"}], "B096FJX5RM": [{"asin": "B096FJX5RM", "instruction": "i'm looking reddhoon 3 colors liquid glitter eyeshadow, i want color a12, show me the price too.", "attributes": ["long lasting", "highly pigmented", "eye shadow"], "options": ["color: a12"], "instruction_attributes": ["eye shadow"], "instruction_options": ["a12"], "assignment_id": "32RIADZIS3EF5BJIR33W2A5CUKS4S7", "worker_id": "A15IJ20C3R4HUO"}], "B09KBZR5Y6": [{"asin": "B09KBZR5Y6", "instruction": "i want a blue high definition android tablet 8 inch.", "attributes": ["high performance", "high definition"], "options": ["color: blue"], "instruction_attributes": ["high definition"], "instruction_options": ["blue"], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM92H1I0", "worker_id": "A2RBF3IIJP15IH"}], "B08T2122SB": [{"asin": "B08T2122SB", "instruction": "i am looking for some keto snacks that are grain free.", "attributes": ["grain free", "high protein", "low carb", "low calorie", "keto friendly", "gluten free"], "options": [""], "instruction_attributes": ["grain free", "keto friendly"], "instruction_options": [], "assignment_id": "3TVRFO09GVPJZ0C2R580NZOFVLNXLZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B07QV3RKCB": [{"asin": "B07QV3RKCB", "instruction": "i am looking for gluten free and grass fed patties - 6 chipotle chicken + 6 thai style turkey", "attributes": ["grass fed", "wild caught", "soy free", "dairy free", "gluten free", "quality ingredients"], "options": ["flavor name: 6 chipotle chicken + 6 thai style turkey"], "instruction_attributes": ["grass fed", "gluten free"], "instruction_options": ["6 chipotle chicken + 6 thai style turkey"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKKKVPW", "worker_id": "A258PTOZ3D2TQR"}], "B09S6LTK2D": [{"asin": "B09S6LTK2D", "instruction": "i am looking for low rise cotton underwear. please choose sky blue color.", "attributes": ["low rise", "machine wash"], "options": ["color: sky blue", "size: medium"], "instruction_attributes": ["low rise"], "instruction_options": ["sky blue"], "assignment_id": "38F71OA9G46M5W32RN3TH53XRLNMF5", "worker_id": "A3FG5PQHG5AH3Y"}], "B088WFLJNF": [{"asin": "B088WFLJNF", "instruction": "i need a black henley that is made of cotton spandex.", "attributes": ["quick drying", "cotton spandex", "contrast color", "button closure", "short sleeve"], "options": ["color: a1 black", "size: x-large"], "instruction_attributes": ["cotton spandex"], "instruction_options": ["a1 black", "x-large"], "assignment_id": "37KGEN7NJE04HCP9X6RQA3BWYWEPP0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09QH2T5R3": [{"asin": "B09QH2T5R3", "instruction": "i am looking for purple color cotton heather assistants t-shirts for women with machine wash type and size : large", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: purple", "fit type: women", "size: large"], "instruction_attributes": ["machine wash", "cotton heather"], "instruction_options": ["purple", "women", "large"], "assignment_id": "3ZR9AIQJUMJF42Z6I1KCS4ZTZSD40O", "worker_id": "AX2EWYWZM19AZ"}], "B09PNKGWYX": [{"asin": "B09PNKGWYX", "instruction": "i am looking for black knee high winter boots for women.", "attributes": ["winter warm", "anti slip", "knee high", "arch support"], "options": ["color: a03-black", "size: 8.5"], "instruction_attributes": ["knee high"], "instruction_options": ["a03-black"], "assignment_id": "33SA9F9TR84Q4UXK0EPA8LKODMFEWZ", "worker_id": "A1EREKSZAA9V7B"}], "B09QCY1MGX": [{"asin": "B09QCY1MGX", "instruction": "i am looking for a light grey sectional couch that is easy to assemble for my living room.", "attributes": ["metal legs", "living room"], "options": ["color: light grey"], "instruction_attributes": ["living room"], "instruction_options": ["light grey"], "assignment_id": "3FQ5JJ512WY330GG4Z9QAXK2478KNZ", "worker_id": "A1EREKSZAA9V7B"}], "B07XLG6HVZ": [{"asin": "B07XLG6HVZ", "instruction": "i am looking for a high performance desktop tower with core i5. also choose refurbished from certified dealers.", "attributes": ["certified refurbished", "high performance", "core i5"], "options": [""], "instruction_attributes": ["certified refurbished", "high performance", "core i5"], "instruction_options": [], "assignment_id": "3PDJHANYKGQ4UP9GZXKCVUIOH0J6HB", "worker_id": "A2HMEGTAFO0CS8"}], "B009JITV9U": [{"asin": "B009JITV9U", "instruction": "i am interested in flouride free mouthwash that is 1 oz", "attributes": ["fluoride free", "easy use", "natural ingredients", "bad breath", "fresh breath"], "options": ["size: 1 fl oz (pack of 2)"], "instruction_attributes": ["fluoride free"], "instruction_options": ["1 fl oz (pack of 2)"], "assignment_id": "3AWETUDC9D26EU4B7KZ8S4CYMHTIZ5", "worker_id": "A2ECRNQ3X5LEXD"}], "B09NBZ5ZTL": [{"asin": "B09NBZ5ZTL", "instruction": "i want a wireless bluetooth speaker,portable audio mini music player,usb easy to carry rechargble usb port color: pink", "attributes": ["usb port", "wireless bluetooth"], "options": ["color: pink"], "instruction_attributes": ["wireless bluetooth"], "instruction_options": ["pink"], "assignment_id": "3OCHAWUVGZU8FUUK65WZ8ZB06LJKXK", "worker_id": "A3N9ZYQAESNFQH"}], "B091GZRZ6K": [{"asin": "B091GZRZ6K", "instruction": "i'd like to find a teeth whitening kit that is not only easy to carry but also delivers high quality results.", "attributes": ["teeth whitening", "easy carry", "high quality"], "options": [""], "instruction_attributes": ["teeth whitening", "easy carry", "high quality"], "instruction_options": [], "assignment_id": "3GS6S824S17UY0AXTDSTY8EXRELWNB", "worker_id": "A345TDMHP3DQ3G"}], "B08LQCB4WJ": [{"asin": "B08LQCB4WJ", "instruction": "i want to find a six-ounce plastic container jar that is leak proof and easy to use. ideally it will come in white.", "attributes": ["leak proof", "easy use"], "options": ["color: white", "size: 6 ounce"], "instruction_attributes": ["leak proof", "easy use"], "instruction_options": ["white", "6 ounce"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUAL9RI", "worker_id": "A345TDMHP3DQ3G"}], "B07LGK3XR5": [{"asin": "B07LGK3XR5", "instruction": "i am interested in living room pendant lights that are white.", "attributes": ["pendant light", "light fixture", "dining room", "living room"], "options": ["color: white color"], "instruction_attributes": ["pendant light", "living room"], "instruction_options": ["white color"], "assignment_id": "3QY5DC2MX2U5I48B0PUF8FKR47NFUN", "worker_id": "A2ECRNQ3X5LEXD"}], "B09FQ6Y4N9": [{"asin": "B09FQ6Y4N9", "instruction": "find a red sweatshirt for a teen girl in size small.", "attributes": ["long sleeve", "teen girls"], "options": ["color: red", "size: small"], "instruction_attributes": ["teen girls"], "instruction_options": ["red", "small"], "assignment_id": "3JAOYWH7VTETY4U4OP2M7W2XOIYL96", "worker_id": "AR9AU5FY1S3RO"}], "B084JTNDXH": [{"asin": "B084JTNDXH", "instruction": "i want to find 3 dozen cookies that are individually wrapped and baked fresh for valentine's day.", "attributes": ["baked fresh", "individually wrapped", "valentine day"], "options": ["size: 3 dozen"], "instruction_attributes": ["baked fresh", "individually wrapped", "valentine day"], "instruction_options": ["3 dozen"], "assignment_id": "3NKQQ8O399F8KKUF9JZPKFH6SU7DUA", "worker_id": "A345TDMHP3DQ3G"}], "B07D9JJH67": [{"asin": "B07D9JJH67", "instruction": "i am looking for moisturizing shower gel with vegan , green tea and coconut oil and also mint argan scent", "attributes": ["cruelty free", "green tea", "coconut oil"], "options": ["scent: mint argan"], "instruction_attributes": ["green tea", "coconut oil"], "instruction_options": ["mint argan"], "assignment_id": "37TRT2X24116R7L1JO45INKV8T0BJ8", "worker_id": "AX2EWYWZM19AZ"}], "B07ST3YB1W": [{"asin": "B07ST3YB1W", "instruction": "i am looking for dell ultra small desktop computer with core i5 , 16gb ram , 256gb ssd and windows 10 pro", "attributes": ["core i5", "intel core"], "options": ["configuration: 16gb ram | 256gb ssd"], "instruction_attributes": ["core i5"], "instruction_options": ["16gb ram | 256gb ssd"], "assignment_id": "37UEWGM5H4IMCXMMPWKPE2TDWY31R7", "worker_id": "AX2EWYWZM19AZ"}], "B096WSKLRV": [{"asin": "B096WSKLRV", "instruction": "i need a contemporary design acrylic leg bench for living room in navy velvet color.", "attributes": ["contemporary design", "living room"], "options": ["color: navy velvet", "size: acrylic legs bench"], "instruction_attributes": ["contemporary design", "living room"], "instruction_options": ["navy velvet", "acrylic legs bench"], "assignment_id": "3RANCT1ZVQRF5NWVVN8JPPT6P9VUBK", "worker_id": "ASWFLI3N8X72G"}], "B09R9PN89Q": [{"asin": "B09R9PN89Q", "instruction": "i need a machine washable costume tank top. pick a classic fit in navy.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: men", "size: large"], "instruction_attributes": ["machine wash", "classic fit"], "instruction_options": ["navy"], "assignment_id": "3GGAI1SQE68F2KJS0LDS9ZIUU8SMCR", "worker_id": "A1NF6PELRKACS9"}], "B07L9KXTM4": [{"asin": "B07L9KXTM4", "instruction": "show me this brand zeskit cinema plus 4k 1.5ft (2-pack) i'm looking for high speed with ethernet 22.28gbps hdmi 2.0b cable.", "attributes": ["gold plated", "high speed"], "options": [""], "instruction_attributes": ["high speed"], "instruction_options": [], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX4UFAA", "worker_id": "A15IJ20C3R4HUO"}], "B09RBB5DTP": [{"asin": "B09RBB5DTP", "instruction": "i need a loose fitting tee for daily wear. find a x-large shirt.", "attributes": ["moisture wicking", "loose fit", "slim fit", "short sleeve", "long sleeve", "teen girls", "daily wear"], "options": ["color: a15 oversized tee dark gray", "size: x-large"], "instruction_attributes": ["loose fit", "daily wear"], "instruction_options": ["x-large"], "assignment_id": "33C7UALJVW8GUS7QQNEPNLY866C81Z", "worker_id": "A1NF6PELRKACS9"}], "B07ZXFTJ67": [{"asin": "B07ZXFTJ67", "instruction": "i want spicy beef meat and cheese gift baskets.", "attributes": ["shelf stable", "gift basket", "great gift"], "options": ["color: spicy beef"], "instruction_attributes": ["gift basket"], "instruction_options": ["spicy beef"], "assignment_id": "3E13VNJ1NY59JYJ3Z9QG0ASM92KI1K", "worker_id": "A2RBF3IIJP15IH"}], "B0797QCG79": [{"asin": "B0797QCG79", "instruction": "i need a white high heel pump shoes with a rubber sole.", "attributes": ["high heel", "rubber sole"], "options": ["color: white-matt", "size: 8.5"], "instruction_attributes": ["high heel", "rubber sole"], "instruction_options": ["white-matt"], "assignment_id": "3WOKGM4L7CQJ8V9O1LZL625YGJE0OV", "worker_id": "A1NF6PELRKACS9"}], "B010AJ5DXY": [{"asin": "B010AJ5DXY", "instruction": "i need a plant based cleansing conditioner with coconut oil in it.", "attributes": ["plant based", "tea tree", "coconut oil", "natural ingredients"], "options": [""], "instruction_attributes": ["plant based", "coconut oil"], "instruction_options": [], "assignment_id": "3A0EX8ZRNJYWMWG05O58SAZJLX7YBN", "worker_id": "A1NF6PELRKACS9"}], "B09DVP1Z8Q": [{"asin": "B09DVP1Z8Q", "instruction": "i am interested in monoculars that are good for bird watching.", "attributes": ["high power", "easy use", "dust proof", "water resistant", "easy carry", "easy install", "bird watching"], "options": [""], "instruction_attributes": ["bird watching"], "instruction_options": [], "assignment_id": "3ZAZR5XV0CSF1RIBFA3MH1E39C7CZV", "worker_id": "A2ECRNQ3X5LEXD"}], "B07NJN4VJT": [{"asin": "B07NJN4VJT", "instruction": "i need a black camo headset with stereo sound and noise cancelling microphone.", "attributes": ["noise cancelling", "stereo sound"], "options": ["color: black camo"], "instruction_attributes": ["noise cancelling", "stereo sound"], "instruction_options": ["black camo"], "assignment_id": "3SUWZRL0M9NSAFIE9WC6ARLBPKP6ET", "worker_id": "ASWFLI3N8X72G"}], "B0819ZH1RC": [{"asin": "B0819ZH1RC", "instruction": "i want coconut scented hask invigorating tea tree oil.", "attributes": ["sulfate free", "paraben free", "tea tree", "hair styling", "damaged hair", "dry hair"], "options": ["scent: coconut monoi"], "instruction_attributes": ["tea tree"], "instruction_options": ["coconut monoi"], "assignment_id": "3VP0C6EFSR6QM3ARQU0PNZQKYMIM60", "worker_id": "A2RBF3IIJP15IH"}], "B09MLRX3H7": [{"asin": "B09MLRX3H7", "instruction": "i need a grey twin sized bed.", "attributes": ["twin size", "white item", "wood frame", "box spring"], "options": ["color: grey+slide"], "instruction_attributes": ["twin size"], "instruction_options": ["grey+slide"], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XQYGNZ", "worker_id": "A2ECRNQ3X5LEXD"}], "B096FSKXTD": [{"asin": "B096FSKXTD", "instruction": "i want by a haoch cotton spa massage treatment table bed cover eco friendly, size 70x190cm please show me.", "attributes": ["eco friendly", "beauty salon"], "options": ["color: a", "size: 70x190cm"], "instruction_attributes": ["eco friendly"], "instruction_options": ["70x190cm"], "assignment_id": "38YMOXR4M59MRF45UW6CWXSBWOTW6Y", "worker_id": "A15IJ20C3R4HUO"}], "B07MTLTRHD": [{"asin": "B07MTLTRHD", "instruction": "i am looking for a office chair ready use assembly required color: heron with tilt feature", "attributes": ["ready use", "assembly required", "lumbar support"], "options": ["color: heron | with tilt feature"], "instruction_attributes": ["ready use", "assembly required"], "instruction_options": ["heron | with tilt feature"], "assignment_id": "3FTF2T8WL2S99Y63S39OG7JDMP6W9E", "worker_id": "A3N9ZYQAESNFQH"}], "B09DPXST7F": [{"asin": "B09DPXST7F", "instruction": "i like motion detection machine in white color", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "31QTRG6Q24NYQQHAOTN9NU4821KYP6", "worker_id": "A226L9F2AZ38CL"}], "B09PJDHN14": [{"asin": "B09PJDHN14", "instruction": "i am looking for long sleeve wide leg daily casual medium size jumpsuit for young woman color :b-white", "attributes": ["daily casual", "wide leg", "machine wash", "long sleeve", "polyester spandex"], "options": ["color: b-white", "size: medium"], "instruction_attributes": ["daily casual", "wide leg", "long sleeve"], "instruction_options": ["b-white", "medium"], "assignment_id": "3KWTYT087BDAXHSSLZP5VGXV2MBL5B", "worker_id": "A3N9ZYQAESNFQH"}], "B001BM4RC8": [{"asin": "B001BM4RC8", "instruction": "i need unsalted blue corn tortillas which are non gmo, gluten free and are certified organic.", "attributes": ["certified organic", "non gmo", "gluten free", "artificial flavors"], "options": ["flavor name: unsalted blue corn"], "instruction_attributes": ["certified organic", "non gmo", "gluten free"], "instruction_options": ["unsalted blue corn"], "assignment_id": "33NF62TLXUC7KAPVP1HYHQ3LVN9JK0", "worker_id": "ASWFLI3N8X72G"}], "B08F4WC928": [{"asin": "B08F4WC928", "instruction": "i am looking wireless home security camera for motion detection 1080hd", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["1080p hd", "motion detection"], "instruction_options": [], "assignment_id": "3OLF68YTNKBL3VUDUKDO8E8XX4YFAE", "worker_id": "A3N9ZYQAESNFQH"}], "B08738RTBF": [{"asin": "B08738RTBF", "instruction": "i want to find a pair of black men's workout shorts with an elastic waistband. the shorts need to be in size 30.", "attributes": ["elastic waistband", "polyester spandex"], "options": ["color: #1 black", "size: 30"], "instruction_attributes": ["elastic waistband"], "instruction_options": ["#1 black", "30"], "assignment_id": "3VHP9MDGRYU9WARBEY9FE9YLX7IFCF", "worker_id": "A345TDMHP3DQ3G"}], "B08JG22BX6": [{"asin": "B08JG22BX6", "instruction": "i want to find a mini home security camera that has a motion detection feature.", "attributes": ["1080p hd", "motion detection"], "options": [""], "instruction_attributes": ["motion detection"], "instruction_options": [], "assignment_id": "3PMBY0YE2ID0V00YBC9N4DCAU9OC9L", "worker_id": "A345TDMHP3DQ3G"}], "B08L24QYC1": [{"asin": "B08L24QYC1", "instruction": "i am looking for stirrings simple cosmopolitan non-alcoholic cocktail mix which is non alcoholic and made up with real fruit. cosmopolitan cocktail mix flavor preferable.", "attributes": ["non alcoholic", "real fruit"], "options": ["flavor: cosmopolitan cocktail mix"], "instruction_attributes": ["non alcoholic", "real fruit"], "instruction_options": ["cosmopolitan cocktail mix"], "assignment_id": "30OG32W0S5L0H0O68DYNC27XKAJNEP", "worker_id": "A1DRKZ3SCLAS4V"}], "B07PRFZ25L": [{"asin": "B07PRFZ25L", "instruction": "i need a background for digital photography that is 10ft by 7ft.", "attributes": ["light weight", "high resolution", "digital photography"], "options": ["size: 10x7ft"], "instruction_attributes": ["digital photography"], "instruction_options": ["10x7ft"], "assignment_id": "3YMTUJH0D3QGKBWXG38MCF1YW3A4T0", "worker_id": "A2ECRNQ3X5LEXD"}], "B09H5GJCML": [{"asin": "B09H5GJCML", "instruction": "i am interested in a home theatre system that has stereo sound", "attributes": ["ultra hd", "stereo sound"], "options": [""], "instruction_attributes": ["stereo sound"], "instruction_options": [], "assignment_id": "326O153BMT8RVOXTJJKKGXV366DDET", "worker_id": "A2ECRNQ3X5LEXD"}], "B07TLNZL9W": [{"asin": "B07TLNZL9W", "instruction": "i want an officially licensed navy teenage mutant ninja turtles chillin' tank top.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: women", "size: medium"], "instruction_attributes": ["officially licensed"], "instruction_options": ["navy"], "assignment_id": "358UUM7WRAD0NJ1OEC1YFCKQZK1R7S", "worker_id": "A2RBF3IIJP15IH"}], "B003EWKPSI": [{"asin": "B003EWKPSI", "instruction": "for my work i want pro studio solutions ez pro beauty dish octagon softbox 60in (150 cm) with speedring, sturdy. contact me if you find", "attributes": ["high power", "heavy duty"], "options": ["size: 60in (150cm)", "style: photogenic"], "instruction_attributes": ["heavy duty"], "instruction_options": ["60in (150cm)"], "assignment_id": "3N2BF7Y2V146JSU8MDRTKQFA70WHMU", "worker_id": "A15IJ20C3R4HUO"}], "B08S7F8F17": [{"asin": "B08S7F8F17", "instruction": "i am looking for a hand decorated valentine day cookies gift set. it should be perfect.", "attributes": ["valentine day", "perfect gift"], "options": [""], "instruction_attributes": ["valentine day", "perfect gift"], "instruction_options": [], "assignment_id": "3M0BCWMB866SXRL0QNNK7DE3AP8WBN", "worker_id": "A1NF6PELRKACS9"}], "B0885R9QCJ": [{"asin": "B0885R9QCJ", "instruction": "i need to buy some shave oil for dry skin with argan oil in it.", "attributes": ["argan oil", "dry skin"], "options": [""], "instruction_attributes": ["argan oil", "dry skin"], "instruction_options": [], "assignment_id": "3E337GFOLKIY1EKXE8OBC5S9XQSGNT", "worker_id": "AR9AU5FY1S3RO"}], "B005II6BUC": [{"asin": "B005II6BUC", "instruction": "i want to find an 11 inch light fixture with a bronze finish that i can put outside.", "attributes": ["bronze finish", "light fixture"], "options": ["size: 11\" w led"], "instruction_attributes": ["bronze finish", "light fixture"], "instruction_options": ["11\" w led"], "assignment_id": "3IKZ72A5BFQSNEO23OITUKSXWBUFNV", "worker_id": "A345TDMHP3DQ3G"}], "B09287QZSX": [{"asin": "B09287QZSX", "instruction": "i want to find a black-colored waxing kit for women that can help remove hair using natural ingredients.", "attributes": ["natural ingredients", "hair removal"], "options": ["color: black"], "instruction_attributes": ["natural ingredients", "hair removal"], "instruction_options": ["black"], "assignment_id": "3JCG6DTRVE0AH0R3XWL4ADRG8OPQQM", "worker_id": "A345TDMHP3DQ3G"}], "B09JZF19JN": [{"asin": "B09JZF19JN", "instruction": "i'm looking for fine mist it can the bottle continues the stream of water.", "attributes": ["leak proof", "fine mist"], "options": [""], "instruction_attributes": ["fine mist"], "instruction_options": [], "assignment_id": "36U2A8VAGC9XFZKUB1I1RDI98SYYKR", "worker_id": "A16IQOX0DK14OJ"}], "B09PJP57GD": [{"asin": "B09PJP57GD", "instruction": "i am looking for a men's t-shirt with a fruit motif that is machine washable.", "attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"], "options": ["color: navy", "fit type: men", "size: x-large"], "instruction_attributes": ["machine wash"], "instruction_options": ["men"], "assignment_id": "3I3WADAZ91EI32VPYR5XNX1PXRHO5W", "worker_id": "A1EREKSZAA9V7B"}], "B08VRBPZJF": [{"asin": "B08VRBPZJF", "instruction": "i am in need of memory foam slippers that are in a size 5.5.-7.5 women.", "attributes": ["officially licensed", "loose fit", "memory foam"], "options": ["color: nc state wolfpack", "size: 5.5-7.5 women | 4.5-6.5 men"], "instruction_attributes": ["memory foam"], "instruction_options": ["5.5-7.5 women | 4.5-6.5 men"], "assignment_id": "3DY4FPOOACY2Y92KWA4ELQ0TL27RVJ", "worker_id": "A2ECRNQ3X5LEXD"}], "B09MKW5WTF": [{"asin": "B09MKW5WTF", "instruction": "i like ax color synthetic hair", "attributes": ["hair extensions", "synthetic hair"], "options": ["color: a"], "instruction_attributes": ["synthetic hair"], "instruction_options": ["a"], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCNSBM9", "worker_id": "A226L9F2AZ38CL"}], "B092DDRXTQ": [{"asin": "B092DDRXTQ", "instruction": "it was time for his food high density breakfast, so kitchen background color is black", "attributes": ["high density", "lumbar support"], "options": ["color: black"], "instruction_attributes": ["high density"], "instruction_options": ["black"], "assignment_id": "3LYA37P8I1X12RRJ194HJ2K8NIZKBF", "worker_id": "ASL9LVC97FUCZ"}], "B09RH5VMGX": [{"asin": "B09RH5VMGX", "instruction": "i am looking for a swimsuit with tummy control for a women. also choose navy color and small size.", "attributes": ["high waist", "tummy control"], "options": ["color: a1_navy", "size: small"], "instruction_attributes": ["tummy control"], "instruction_options": ["a1_navy", "small"], "assignment_id": "36W0OB37H7O6IZTR12HNSSBJM4HHZE", "worker_id": "A2HMEGTAFO0CS8"}], "B07V6D1G16": [{"asin": "B07V6D1G16", "instruction": "i am looking for a women's wine red prom dress with a lace closure.", "attributes": ["lace closure", "drawstring closure"], "options": ["color: wine red", "size: 16 plus"], "instruction_attributes": ["lace closure"], "instruction_options": ["wine red"], "assignment_id": "3R5F3LQFVDUGAGFE5FCDC18KYQRZOG", "worker_id": "A1EREKSZAA9V7B"}], "B085YB2DRL": [{"asin": "B085YB2DRL", "instruction": "i am interested in some chocolate grain free granola.", "attributes": ["grain free", "gluten free", "non gmo"], "options": ["flavor name: chocolate", "size: 8 ounce (pack of 3)"], "instruction_attributes": ["grain free"], "instruction_options": ["chocolate"], "assignment_id": "3TK8OJTYMCVHMWM5JI0PGV0EKKLVPX", "worker_id": "A2ECRNQ3X5LEXD"}], "B07K1MJP78": [{"asin": "B07K1MJP78", "instruction": "i want to find a gold pendant light for my living room ceiling.", "attributes": ["pendant light", "living room", "dining room"], "options": ["color: gold"], "instruction_attributes": ["pendant light", "living room"], "instruction_options": ["gold"], "assignment_id": "3PJ71Z61RFCG8XQ0VFK3NHTJQCW91R", "worker_id": "A345TDMHP3DQ3G"}], "B09C8D3ZHK": [{"asin": "B09C8D3ZHK", "instruction": "i need some folding tables that are easy to assemble and are white.", "attributes": ["easy assemble", "dining room"], "options": ["color: white", "size: 80*40cm | 31*16in"], "instruction_attributes": ["easy assemble"], "instruction_options": ["white"], "assignment_id": "308Q0PEVBJNR83MY3M59FGA57E2I9N", "worker_id": "A2ECRNQ3X5LEXD"}], "B09JRKJ35C": [{"asin": "B09JRKJ35C", "instruction": "painting my living room with multi 31 color", "attributes": ["super soft", "fleece throw", "living room"], "options": ["color: multi 31", "size: queen"], "instruction_attributes": ["living room"], "instruction_options": ["multi 31"], "assignment_id": "3NPI0JQDAZF294IGEN0AFDCTNZ2TPC", "worker_id": "A226L9F2AZ38CL"}], "B01IP5MBSU": [{"asin": "B01IP5MBSU", "instruction": "i am looking for wireless bluetooth speaker.", "attributes": ["output protection", "wireless bluetooth"], "options": [""], "instruction_attributes": ["wireless bluetooth"], "instruction_options": [], "assignment_id": "39RP059MES3WSFRMMLHXYFCCCNQBM7", "worker_id": "A3FG5PQHG5AH3Y"}], "B01I5N7JMU": [{"asin": "B01I5N7JMU", "instruction": "i want to find a rinse that can treat my hair and promote hair growth.", "attributes": ["hair treatment", "hair growth", "dead skin"], "options": [""], "instruction_attributes": ["hair treatment", "hair growth"], "instruction_options": [], "assignment_id": "3TXWC2NHNA0G2HPU8YZNJIGSGC4S9P", "worker_id": "A345TDMHP3DQ3G"}], "B08QVM52CQ": [{"asin": "B08QVM52CQ", "instruction": "i need a cake topper for a birthday party", "attributes": ["baby shower", "birthday party", "cupcake picks", "party supplies"], "options": [""], "instruction_attributes": ["birthday party"], "instruction_options": [], "assignment_id": "3PQMUDRV72GKJ4F17GBMS998Q4SII9", "worker_id": "A2ECRNQ3X5LEXD"}], "B09B9WRP24": [{"asin": "B09B9WRP24", "instruction": "i want to find a pair of pink women's sneakers with good arch support. they need to come in a size 8.5.", "attributes": ["non slip", "arch support", "ankle strap"], "options": ["color: z6-pink", "size: 8.5"], "instruction_attributes": ["arch support"], "instruction_options": ["z6-pink", "8.5"], "assignment_id": "3YT88D1N0J8WZWN6MGPB1JMWZQK3K5", "worker_id": "A345TDMHP3DQ3G"}], "B016B10NAS": [{"asin": "B016B10NAS", "instruction": "i would like a extra round 53mm brush for hair styling.", "attributes": ["hair styling", "hair growth"], "options": ["style: extra round brush 53mm"], "instruction_attributes": ["hair styling"], "instruction_options": ["extra round brush 53mm"], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0WICCX", "worker_id": "A1WS884SI0SLO4"}], "B092V9RY16": [{"asin": "B092V9RY16", "instruction": "i want to find a silver case with a glass screen protector for my phone.", "attributes": ["case cover", "glass screen", "tempered glass"], "options": ["color: silver"], "instruction_attributes": ["case cover", "glass screen"], "instruction_options": ["silver"], "assignment_id": "33TIN5LC0FKDY31374RC144TXX4Y9D", "worker_id": "A345TDMHP3DQ3G"}], "B09DV1GMLP": [{"asin": "B09DV1GMLP", "instruction": "i am looking for gua sha facial tools set which mattifying face roller for oily and acne prone skin, dark circles, fine lines beauty tools and high-pigment, the bold color makeup.", "attributes": ["dark circles", "fine lines"], "options": [""], "instruction_attributes": ["dark circles", "fine lines"], "instruction_options": [], "assignment_id": "3137ONMDKRFU787KL9LSMIY0JYVEG6", "worker_id": "A1DRKZ3SCLAS4V"}], "B09D7TVJKT": [{"asin": "B09D7TVJKT", "instruction": "a bath sponge for bathing remove dead skin easy clean pink color size 8.5*6 inch", "attributes": ["easy clean", "dead skin", "hair growth"], "options": ["color: pink", "size: 8.5x6inch"], "instruction_attributes": ["easy clean", "dead skin"], "instruction_options": ["pink", "8.5x6inch"], "assignment_id": "3J88R45B2R89QLR0JX174GXZ0WDPXG", "worker_id": "A3N9ZYQAESNFQH"}], "B07PK1NZY6": [{"asin": "B07PK1NZY6", "instruction": "i want an officially licensed white marvel guardians of the galaxy retro logo tee.", "attributes": ["officially licensed", "needle sleeve", "classic fit"], "options": ["color: white", "fit type: men", "size: medium"], "instruction_attributes": ["officially licensed"], "instruction_options": ["white"], "assignment_id": "33ISQZVXP0W2TY71NWJE63DI0USCC3", "worker_id": "A2RBF3IIJP15IH"}], "B07QBPL36R": [{"asin": "B07QBPL36R", "instruction": "i am looking for sugar free beverages with lemonade and 0.14 ounce (pack of 4)", "attributes": ["sugar free", "zero sugar"], "options": ["flavor name: lemonade", "size: 0.14 ounce (pack of 4)"], "instruction_attributes": ["sugar free"], "instruction_options": ["lemonade", "0.14 ounce (pack of 4)"], "assignment_id": "3SLE99ER0YNWRMQ51A7R6H8LRRDBZT", "worker_id": "AX2EWYWZM19AZ"}], "B07JMF85DY": [{"asin": "B07JMF85DY", "instruction": "search the electronics department, computers & tablets for a renewed rugged 11.6 inch screen with 8 gigabytes of data. model number 7202. must be certified refurbished and high performance.", "attributes": ["certified refurbished", "high performance"], "options": [""], "instruction_attributes": ["certified refurbished", "high performance"], "instruction_options": [], "assignment_id": "39ASUFLU68H5TU2AAJLWA4YVMOMXEC", "worker_id": "A3RGIKEI8JS2QG"}], "B0962P6LCS": [{"asin": "B0962P6LCS", "instruction": "i am looking for ataiwee women's wide width ballet flats which is well made of soft leather, flexible tpr out-sole, lightweight and comfortable. tan 1905019-5, 9 wide size preferable.", "attributes": ["anti slip", "rubber sole"], "options": ["color: tan 1905019-5", "size: 9 wide"], "instruction_attributes": ["anti slip", "rubber sole"], "instruction_options": ["9 wide"], "assignment_id": "3A1COHJ8NU5RY3S4SCHAF8EFNVAH89", "worker_id": "A1DRKZ3SCLAS4V"}], "B07DKVQTXT": [{"asin": "B07DKVQTXT", "instruction": "i'm looking for a solid wood bookcase in espresso color. would prefer it to be in the size of 5-shelf.", "attributes": ["white item", "contemporary design", "white finish", "solid wood", "storage space"], "options": ["color: espresso (new)", "size: 5-shelf"], "instruction_attributes": ["solid wood"], "instruction_options": ["espresso (new)", "5-shelf"], "assignment_id": "3LKC68YZ3LDCGLA9USS6DXE2HONWON", "worker_id": "A20DUVEOH6A7KW"}], "B000R30X2A": [{"asin": "B000R30X2A", "instruction": "i want capri sun pacific cooler mixed fruit naturally flavored juice drinks.", "attributes": ["natural ingredients", "artificial colors", "high fructose"], "options": ["flavor name: pacific cooler", "size: 6 fl oz (pack of 10)"], "instruction_attributes": ["natural ingredients"], "instruction_options": ["pacific cooler"], "assignment_id": "39L1G8WVW11UTV1KE6JTW4QXQKM314", "worker_id": "A2RBF3IIJP15IH"}], "B07LC6DF3G": [{"asin": "B07LC6DF3G", "instruction": "i want to find high volume 71a mink lashes that are cruelty-free and easy to apply.", "attributes": ["high quality", "easy apply", "cruelty free"], "options": ["style: 71a"], "instruction_attributes": ["easy apply", "cruelty free"], "instruction_options": ["71a"], "assignment_id": "3LEIZ60CDU9D3TB83QTVFBDV3RAZ97", "worker_id": "A345TDMHP3DQ3G"}], "B07TB1TCXK": [{"asin": "B07TB1TCXK", "instruction": "i am looking for protein bites by protein power ball organic plant based pumpkin protein powder ideal for healthy, on the go nutrition for men, women, and kids. usda organic, vegan, gluten free, dairy free, lactose free, low net carbs, no added sugar, soy free, kosher, non gmo, carrageenan free, and no artificial ingredients 4.5 ounce (pack of 4) preferable.", "attributes": ["soy free", "dairy free", "gluten free", "protein serving", "keto friendly", "high protein", "plant based", "non gmo", "resealable bag"], "options": ["flavor name: pumpkin", "size: 4.5 ounce (pack of 4)"], "instruction_attributes": ["soy free", "dairy free", "gluten free", "protein serving", "keto friendly", "high protein", "plant based", "non gmo", "resealable bag"], "instruction_options": ["pumpkin", "4.5 ounce (pack of 4)"], "assignment_id": "3018Q3ZVOT0I6LZMLFDIP3MG0SAAR5", "worker_id": "A1DRKZ3SCLAS4V"}], "B00286361O": [{"asin": "B00286361O", "instruction": "i want to find a six-pack of 32 ounce packages of raisins that have no added artificial flavors.", "attributes": ["non gmo", "low fat", "artificial flavors"], "options": ["size: 32 ounce (pack of 6)"], "instruction_attributes": ["artificial flavors"], "instruction_options": ["32 ounce (pack of 6)"], "assignment_id": "3B1NLC6UGA6Y4ZWAUN13GUX4X5TGPP", "worker_id": "A345TDMHP3DQ3G"}], "B09436HZFC": [{"asin": "B09436HZFC", "instruction": "i am looking for natural flavor clear fruit water 20 ounce bottles non carbonated water beverage which is caffeine free . 6 flavor sampler flavor preferable.", "attributes": ["caffeine free", "natural flavors"], "options": ["flavor name: 6 flavor sampler"], "instruction_attributes": ["caffeine free", "natural flavors"], "instruction_options": ["6 flavor sampler"], "assignment_id": "3O7L7BFSHPZ83ZDFBXLV7UBGYBPIE4", "worker_id": "A1DRKZ3SCLAS4V"}], "B09PV47N89": [{"asin": "B09PV47N89", "instruction": "i am looking for 10x10ft | 3x3m high resolution backdrops for photo studio", "attributes": ["light weight", "high resolution", "high definition"], "options": ["color: a31", "size: 10x10ft | 3x3m"], "instruction_attributes": ["high resolution"], "instruction_options": ["10x10ft | 3x3m"], "assignment_id": "333U7HK6IKPZ64JLXKVBDD8VBEAJDL", "worker_id": "A258PTOZ3D2TQR"}], "B09QZPKF8N": [{"asin": "B09QZPKF8N", "instruction": "i am looking for twin bunk bed with slide & ladder , assembly required and also color is black", "attributes": ["assembly required", "box spring"], "options": ["color: black", "style: twin size loft bed with desk&shelves"], "instruction_attributes": ["assembly required"], "instruction_options": ["black"], "assignment_id": "3XC1O3LBO3WCIJ3IMV73YW39IP4TLH", "worker_id": "AX2EWYWZM19AZ"}], "B08TM1D58H": [{"asin": "B08TM1D58H", "instruction": "i want to find a white security camera that is easy to install.", "attributes": ["easy install", "aaa batteries", "stainless steel"], "options": ["color: 2.white"], "instruction_attributes": ["easy install"], "instruction_options": ["2.white"], "assignment_id": "3T111IHZ5P0412PHT9ZIT8BWUAS9RP", "worker_id": "A345TDMHP3DQ3G"}], "B074W81C8L": [{"asin": "B074W81C8L", "instruction": "i want an xx-large light grey colored jogger pants with zipper pockets.", "attributes": ["light weight", "drawstring closure", "elastic waist", "gym workout"], "options": ["color: 02 light grey", "size: xx-large"], "instruction_attributes": ["light weight"], "instruction_options": ["xx-large"], "assignment_id": "3KJYX6QCMKLL0LJ7O5V5JZE2BLGVJY", "worker_id": "A1NF6PELRKACS9"}]} \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/data/small/items_ins_v2_1000.json b/external/webshop-minimal/webshop_minimal/data/small/items_ins_v2_1000.json new file mode 100644 index 0000000000000000000000000000000000000000..22837ad99f3173712fc9cb1cce7de6b75fe90595 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/data/small/items_ins_v2_1000.json @@ -0,0 +1 @@ +{"B08GFNJN5R": {"attributes": []}, "B07DJJXGB5": {"attributes": ["tea tree", "essential oils", "natural ingredients"], "instruction": "Find me scrubs & body treatments with tea tree, natural ingredients", "instruction_attributes": ["tea tree", "natural ingredients"]}, "B08X2PKKB2": {"attributes": ["rose gold", "lip balm", "skin care", "easy carry", "high quality"], "instruction": "Find me easy carry, high quality refillable containers with rose gold", "instruction_attributes": ["easy carry", "high quality", "rose gold"]}, "B07QXZL1K5": {"attributes": ["eco friendly", "oral care", "sensitive skin"], "instruction": "Find me eco friendly cotton balls & swabs for sensitive skin", "instruction_attributes": ["eco friendly", "sensitive skin"]}, "B005F2EVMQ": {"attributes": ["eye makeup", "makeup remover"]}, "B08J3WFRBT": {"attributes": ["travel bottles", "face wash", "leak proof", "bpa free", "easy clean"], "instruction": "Find me leak proof, bpa free, easy clean refillable containers with travel bottles", "instruction_attributes": ["leak proof", "bpa free", "easy clean", "travel bottles"]}, "B0851PC2TM": {"attributes": ["eau toilette"]}, "B00IG0RDNI": {"attributes": ["coconut oil"]}, "B07B41K2VV": {"attributes": []}, "B00FR4V65M": {"attributes": ["stainless steel"]}, "B081QR9F3V": {"attributes": []}, "B01LWI2TLG": {"attributes": []}, "B01A0VZQHK": {"attributes": []}, "B07234S5G1": {"attributes": ["heavy duty"]}, "B089T9S33Y": {"attributes": []}, "B08SMS3CNY": {"attributes": ["easy apply"]}, "B004LCZEJK": {"attributes": ["eau parfum"]}, "B08D4MH7XQ": {"attributes": ["oil free", "clinically proven", "paraben free", "dead skin"], "instruction": "Find me oil free, clinically proven, paraben free scrubs & body treatments for dead skin", "instruction_attributes": ["oil free", "clinically proven", "paraben free", "dead skin"]}, "B09NYHTCVX": {"attributes": ["long lasting"]}, "B07SS8QC3G": {"attributes": []}, "B01E7UY7AC": {"attributes": ["travel size"]}, "B004VMVLLU": {"attributes": ["body lotion"]}, "B006Y3IDMO": {"attributes": ["antiperspirant deodorant", "easy use"]}, "B09QYN9MYN": {"attributes": ["toilette spray", "eau toilette"]}, "B017MOAUGA": {"attributes": []}, "B07K6TCDR9": {"attributes": ["animal testing", "natural hair", "dry hair", "hair growth"], "instruction": "Find me animal testing hair loss products for natural hair, dry hair, hair growth", "instruction_attributes": ["animal testing", "natural hair", "dry hair", "hair growth"]}, "B07N864Q64": {"attributes": ["easy apply", "cruelty free", "long lasting"], "instruction": "Find me easy apply, cruelty free, long lasting makeup palettes", "instruction_attributes": ["easy apply", "cruelty free", "long lasting"]}, "B07CBFM96F": {"attributes": ["hair care"]}, "B01IADZ9LI": {"attributes": []}, "B079HGJ5MH": {"attributes": ["hair care", "hair mask"]}, "B084PCSG5H": {"attributes": ["dry skin", "non slip"], "instruction": "Find me non slip foot, hand & nail care for dry skin", "instruction_attributes": ["non slip", "dry skin"]}, "B08HNFTG83": {"attributes": ["body cream"]}, "B07MVN1K94": {"attributes": []}, "B07C8NSB75": {"attributes": ["highly pigmented"]}, "B085HGD5Z3": {"attributes": []}, "B078T46X81": {"attributes": []}, "B09JJ5W1N4": {"attributes": ["makeup bag", "cosmetic bag", "toiletry bag", "skin care", "easy carry", "high quality"], "instruction": "Find me easy carry, high quality bags & cases", "instruction_attributes": ["easy carry", "high quality"]}, "B08W568RSB": {"attributes": ["leak proof", "travel size", "essential oils", "high quality"], "instruction": "Find me leak proof, travel size, high quality refillable containers", "instruction_attributes": ["leak proof", "travel size", "high quality"]}, "B09B321GS4": {"attributes": ["dermatologist tested", "cruelty free"], "instruction": "Find me dermatologist tested, cruelty free body care", "instruction_attributes": ["dermatologist tested", "cruelty free"]}, "B08SH37R9Z": {"attributes": ["dead skin", "shower gel"]}, "B01GGCZA7I": {"attributes": ["tea tree", "oral care", "essential oils"]}, "B08LD3XCPQ": {"attributes": ["tongue scraper", "brush head", "storage case", "tongue cleaner", "bpa free", "bad breath", "oral care", "easy clean"], "instruction": "Find me bpa free, easy clean tongue cleaners with storage case for bad breath", "instruction_attributes": ["bpa free", "easy clean", "storage case", "bad breath"]}, "B005X7IXTK": {"attributes": ["body cream", "anti perspirant", "cruelty free"], "instruction": "Find me anti perspirant, cruelty free deodorants & antiperspirants", "instruction_attributes": ["anti perspirant", "cruelty free"]}, "B08DQWNJPQ": {"attributes": ["water resistant", "beauty salon", "hair styling"], "instruction": "Find me water resistant hair cutting tools for beauty salon, hair styling", "instruction_attributes": ["water resistant", "beauty salon", "hair styling"]}, "B00OYBADQ2": {"attributes": ["dead skin", "certified organic", "non toxic", "cruelty free"], "instruction": "Find me certified organic, non toxic, cruelty free scrubs & body treatments for dead skin", "instruction_attributes": ["certified organic", "non toxic", "cruelty free", "dead skin"]}, "B001EHF3KK": {"attributes": []}, "B094JTNPWK": {"attributes": ["anti aging", "essential oils", "fine lines", "dry skin", "dead skin"], "instruction": "Find me anti aging scrubs & body treatments for fine lines, dry skin, dead skin", "instruction_attributes": ["anti aging", "fine lines", "dry skin", "dead skin"]}, "B07BFLJQCX": {"attributes": ["coconut oil", "hair loss"], "instruction": "Find me hair loss products with coconut oil for hair loss", "instruction_attributes": ["coconut oil", "hair loss"]}, "B00ECNSAXU": {"attributes": ["hair care"]}, "B07KHWY7YT": {"attributes": []}, "B00M777566": {"attributes": []}, "B00KTPKPQA": {"attributes": ["whitening toothpaste"]}, "B004TSFEBY": {"attributes": ["professional makeup", "makeup bag", "eye shadow", "makeup brush", "cruelty free", "high quality"], "instruction": "Find me cruelty free, high quality makeup brushes & tools for eye shadow", "instruction_attributes": ["cruelty free", "high quality", "eye shadow"]}, "B08WG7VLQF": {"attributes": ["fragrance free", "dry hair"], "instruction": "Find me fragrance free styling products for dry hair", "instruction_attributes": ["fragrance free", "dry hair"]}, "B096MM7XM4": {"attributes": ["double sided", "hair extensions", "easy clean", "easy use"], "instruction": "Find me double sided, easy clean, easy use hair extensions, wigs & accessories for hair extensions", "instruction_attributes": ["double sided", "easy clean", "easy use", "hair extensions"]}, "B09JBZQJ9M": {"attributes": ["dental floss", "high quality"]}, "B08T9KJJPZ": {"attributes": ["dark circles"]}, "B08PFRP4RN": {"attributes": ["easy carry", "high quality"], "instruction": "Find me easy carry, high quality hair extensions, wigs & accessories", "instruction_attributes": ["easy carry", "high quality"]}, "B08XQRDDT1": {"attributes": ["long lasting", "easy apply", "cruelty free"], "instruction": "Find me long lasting, easy apply, cruelty free lips makeup", "instruction_attributes": ["long lasting", "easy apply", "cruelty free"]}, "B091DMZNR4": {"attributes": ["dead skin"]}, "B09MW563KN": {"attributes": ["tongue scraper", "tongue cleaner", "oral hygiene", "fresh breath", "oral care"], "instruction": "Find me tongue cleaners for oral hygiene, fresh breath", "instruction_attributes": ["oral hygiene", "fresh breath"]}, "B08GXD5MDG": {"attributes": ["dental floss", "oral care"]}, "B07XCY8DND": {"attributes": []}, "B001E77OCU": {"attributes": []}, "B07CXTNVRJ": {"attributes": ["makeup palette", "easy clean", "stainless steel"], "instruction": "Find me easy clean makeup palettes with stainless steel", "instruction_attributes": ["easy clean", "stainless steel"]}, "B01IA9BY1G": {"attributes": []}, "B01GR1ABDG": {"attributes": []}, "B09QT2369P": {"attributes": []}, "B079Y4B4YP": {"attributes": ["hair care"]}, "B09QMGX7V3": {"attributes": []}, "B09MM1S15K": {"attributes": ["stainless steel", "tattoo machine"]}, "B08NB29KXH": {"attributes": ["high quality", "hair removal", "sensitive skin", "easy carry", "stainless steel"], "instruction": "Find me high quality, easy carry shave & hair removal with stainless steel for hair removal, sensitive skin", "instruction_attributes": ["high quality", "easy carry", "stainless steel", "hair removal", "sensitive skin"]}, "B08XQWJX8P": {"attributes": ["eau toilette", "essential oils", "natural ingredients", "long lasting"], "instruction": "Find me long lasting men's fragrance with natural ingredients", "instruction_attributes": ["long lasting", "natural ingredients"]}, "B09NPZHTTY": {"attributes": ["hair styling", "hair scalp"]}, "B09Q3PZ8JK": {"attributes": ["body wash", "aloe vera"]}, "B09LVMQ1K6": {"attributes": []}, "B08KLLJJXG": {"attributes": ["cosmetic bag", "double sided"]}, "B095TRCDXW": {"attributes": ["skin care"]}, "B08276Q6PZ": {"attributes": ["storage box", "non toxic", "skin care"]}, "B091HFPLPW": {"attributes": ["face cream", "high quality"]}, "B001B4NFV0": {"attributes": ["spray women", "parfum spray", "eau parfum"]}, "B004Q5CYH2": {"attributes": ["anti perspirant"]}, "B06ZYJ4JHT": {"attributes": ["face mask"]}, "B089VWZB64": {"attributes": ["alcohol free", "natural ingredients", "long lasting"], "instruction": "Find me alcohol free, long lasting men's fragrance with natural ingredients", "instruction_attributes": ["alcohol free", "long lasting", "natural ingredients"]}, "B00NFV6V3Q": {"attributes": []}, "B00HTXJLL0": {"attributes": ["anti perspirant"]}, "B09MCF64RM": {"attributes": ["makeup bag", "cosmetic bag", "hair accessories", "eye shadow", "makeup brush", "high quality"], "instruction": "Find me high quality bags & cases for eye shadow", "instruction_attributes": ["high quality", "eye shadow"]}, "B08X93ZXR5": {"attributes": ["eau toilette"]}, "B09MDQ4HBT": {"attributes": ["argan oil"]}, "B09D842QY4": {"attributes": ["eye shadow", "easy clean"], "instruction": "Find me easy clean bags & cases for eye shadow", "instruction_attributes": ["easy clean", "eye shadow"]}, "B08936C8GH": {"attributes": ["high quality"]}, "B07ZKCYT47": {"attributes": ["oral care"]}, "B08329Z669": {"attributes": ["cruelty free"]}, "B09T33VS4Y": {"attributes": ["brush set", "makeup brush"]}, "B09BW4S48B": {"attributes": ["sensitive skin", "nail polish", "skin care"], "instruction": "Find me makeup remover for sensitive skin, nail polish", "instruction_attributes": ["sensitive skin", "nail polish"]}, "B083FBJVDY": {"attributes": []}, "B00T9U3NA6": {"attributes": ["hair removal"]}, "B07963ZMK6": {"attributes": []}, "B09BWQZ68V": {"attributes": ["dermatologist tested", "shea butter", "sensitive skin"], "instruction": "Find me dermatologist tested foot, hand & nail care for sensitive skin", "instruction_attributes": ["dermatologist tested", "sensitive skin"]}, "B08X31TV2P": {"attributes": ["antiperspirant deodorant"]}, "B09SHRV5JW": {"attributes": ["hair growth", "hair loss", "essential oils", "hair oil", "seed oil", "high quality"], "instruction": "Find me high quality hair loss products with seed oil for hair growth, hair loss", "instruction_attributes": ["high quality", "seed oil", "hair growth", "hair loss"]}, "B077D7RL4P": {"attributes": ["lip care", "professional makeup", "cruelty free"]}, "B07CYXLSF2": {"attributes": []}, "B007F4B69S": {"attributes": ["teeth whitening"]}, "B098824K9T": {"attributes": ["shower cap", "dry hair", "hair care", "easy use"], "instruction": "Find me easy use bathing accessories for dry hair", "instruction_attributes": ["easy use", "dry hair"]}, "B0895PSD5P": {"attributes": ["hair cutting", "stainless steel", "hair trimmer"], "instruction": "Find me hair cutting tools with stainless steel for hair cutting", "instruction_attributes": ["stainless steel", "hair cutting"]}, "B083YVHBXH": {"attributes": ["face wash", "high quality"]}, "B07BB1FJV8": {"attributes": ["long lasting", "high quality"], "instruction": "Find me long lasting, high quality hair loss products", "instruction_attributes": ["long lasting", "high quality"]}, "B08M6D6TVK": {"attributes": ["lip balm", "high quality"]}, "B08DZ2593Y": {"attributes": ["whitening toothpaste", "clinically proven", "teeth whitening"], "instruction": "Find me clinically proven, teeth whitening toothpaste", "instruction_attributes": ["clinically proven", "teeth whitening"]}, "B07LGBVH6L": {"attributes": ["easy apply"]}, "B084VWH12H": {"attributes": ["hair removal", "rose gold"], "instruction": "Find me mirrors with rose gold for hair removal", "instruction_attributes": ["rose gold", "hair removal"]}, "B07T3PZ3S9": {"attributes": ["hair care"]}, "B09F9DZFKL": {"attributes": ["water tank", "oral care"]}, "B008QA6YOC": {"attributes": ["argan oil", "makeup remover", "eye makeup", "essential oils"]}, "B09L1G6H5Z": {"attributes": ["green tea", "aloe vera", "non toxic", "easy use", "high quality"], "instruction": "Find me non toxic, easy use, high quality skin care tools with green tea", "instruction_attributes": ["non toxic", "easy use", "high quality", "green tea"]}, "B08DNGCK67": {"attributes": ["vanity mirror", "makeup mirror"]}, "B07HYCDLN6": {"attributes": []}, "B08WKMHTGH": {"attributes": ["eco friendly"]}, "B09B9QLDKD": {"attributes": ["dead skin", "stainless steel", "storage box", "easy clean"], "instruction": "Find me easy clean skin care sets & kits with stainless steel for dead skin", "instruction_attributes": ["easy clean", "stainless steel", "dead skin"]}, "B09G2F3HQ2": {"attributes": ["hair clips", "hair extensions", "natural hair", "easy use"], "instruction": "Find me easy use hair extensions, wigs & accessories for hair extensions, natural hair", "instruction_attributes": ["easy use", "hair extensions", "natural hair"]}, "B09T6FCCY9": {"attributes": ["stainless steel"]}, "B01N9HLYS1": {"attributes": ["travel size"]}, "B08XH9JMTG": {"attributes": ["oral hygiene", "non slip", "easy clean", "easy use"], "instruction": "Find me non slip, easy clean, easy use lip care for oral hygiene", "instruction_attributes": ["non slip", "easy clean", "easy use", "oral hygiene"]}, "B099F1NHY1": {"attributes": ["massage table"]}, "B09HPMWHM4": {"attributes": ["easy carry", "high quality"], "instruction": "Find me easy carry, high quality dental floss & picks", "instruction_attributes": ["easy carry", "high quality"]}, "B01N1T77OM": {"attributes": ["anti perspirant", "travel size", "long lasting"], "instruction": "Find me anti perspirant, travel size, long lasting deodorants & antiperspirants", "instruction_attributes": ["anti perspirant", "travel size", "long lasting"]}, "B01M0FH8J8": {"attributes": []}, "B00GUQZHJW": {"attributes": ["dry hair"]}, "B00IKXU4OQ": {"attributes": []}, "B07K23XNQN": {"attributes": []}, "B09GLMTMHM": {"attributes": ["high quality"]}, "B09MYFGDY5": {"attributes": ["eco friendly", "easy use", "high quality"], "instruction": "Find me eco friendly, easy use, high quality orthodontic supplies", "instruction_attributes": ["eco friendly", "easy use", "high quality"]}, "B09Q55JLCS": {"attributes": ["brush head", "teeth whitening", "easy use"], "instruction": "Find me teeth whitening, easy use children's dental care", "instruction_attributes": ["teeth whitening", "easy use"]}, "B09NSJX1WC": {"attributes": ["stainless steel", "high quality"], "instruction": "Find me high quality piercing & tattoo supplies with stainless steel", "instruction_attributes": ["high quality", "stainless steel"]}, "B005P0T90C": {"attributes": ["cruelty free", "permanent hair", "long lasting", "high quality"], "instruction": "Find me cruelty free, long lasting, high quality hair coloring products for permanent hair", "instruction_attributes": ["cruelty free", "long lasting", "high quality", "permanent hair"]}, "B08HVH2DZF": {"attributes": ["tattoo machine", "stainless steel", "easy use", "high quality"], "instruction": "Find me easy use, high quality piercing & tattoo supplies with stainless steel", "instruction_attributes": ["easy use", "high quality", "stainless steel"]}, "B08N16XC83": {"attributes": ["double sided", "makeup remover", "skin care", "easy use"], "instruction": "Find me double sided, easy use makeup remover", "instruction_attributes": ["double sided", "easy use"]}, "B085RG99KT": {"attributes": []}, "B09QMJ5KQH": {"attributes": ["hair extensions", "synthetic hair", "high quality"], "instruction": "Find me high quality hair extensions, wigs & accessories for hair extensions, synthetic hair", "instruction_attributes": ["high quality", "hair extensions", "synthetic hair"]}, "B00JISMSG4": {"attributes": ["shampoo conditioner"]}, "B074F9FBV3": {"attributes": []}, "B07144YPN6": {"attributes": ["hair scalp"]}, "B09GF68QPJ": {"attributes": ["long handle", "brush set", "brush head", "dead skin", "easy use"], "instruction": "Find me easy use bathing accessories with long handle for dead skin", "instruction_attributes": ["easy use", "long handle", "dead skin"]}, "B08FY843HB": {"attributes": ["dry skin", "face wash", "skin care"]}, "B09Q53YH1W": {"attributes": ["easy carry"]}, "B082WKKPDH": {"attributes": ["hair growth", "hair loss", "natural hair"], "instruction": "Find me hair loss products for hair growth, hair loss, natural hair", "instruction_attributes": ["hair growth", "hair loss", "natural hair"]}, "B093HFSQ3B": {"attributes": ["hair loss", "high quality"], "instruction": "Find me high quality hair extensions, wigs & accessories for hair loss", "instruction_attributes": ["high quality", "hair loss"]}, "B01LR85M1U": {"attributes": []}, "B099NJ5YRG": {"attributes": ["dark circles"]}, "B08XDKBH2P": {"attributes": []}, "B01BV3XRG8": {"attributes": []}, "B09MM9NCQQ": {"attributes": ["hair dryer", "hair extensions"]}, "B08FX48B6X": {"attributes": ["skin care", "anti aging", "sensitive skin"], "instruction": "Find me anti aging skin care tools for sensitive skin", "instruction_attributes": ["anti aging", "sensitive skin"]}, "B097TTFZ43": {"attributes": ["facial mask", "fine lines"]}, "B08SKT2TCH": {"attributes": ["skin care"]}, "B092CKF9YF": {"attributes": []}, "B09S3NVLCV": {"attributes": ["fresh breath", "bad breath", "whitening toothpaste", "sensitive teeth", "natural ingredients"], "instruction": "Find me toothpaste with natural ingredients for fresh breath, bad breath, sensitive teeth", "instruction_attributes": ["natural ingredients", "fresh breath", "bad breath", "sensitive teeth"]}, "B09GP6G1MT": {"attributes": ["cutting scissors", "hair cutting", "high quality", "non slip", "stainless steel"], "instruction": "Find me high quality, non slip hair cutting tools with stainless steel for hair cutting", "instruction_attributes": ["high quality", "non slip", "stainless steel", "hair cutting"]}, "B09LLRSWF4": {"attributes": ["hair accessories", "high quality"]}, "B00Q5DO1KQ": {"attributes": []}, "B082T4FKHD": {"attributes": ["fine lines"]}, "B00NYLV8EY": {"attributes": []}, "B07FLKB8CV": {"attributes": ["hair styling", "natural ingredients"], "instruction": "Find me hair loss products with natural ingredients for hair styling", "instruction_attributes": ["natural ingredients", "hair styling"]}, "B087TR48KK": {"attributes": ["hair trimmer", "non slip", "stainless steel"], "instruction": "Find me non slip shave & hair removal with stainless steel", "instruction_attributes": ["non slip", "stainless steel"]}, "B083WSK6F2": {"attributes": ["dead skin", "double sided", "dry skin"], "instruction": "Find me double sided bathing accessories for dead skin, dry skin", "instruction_attributes": ["double sided", "dead skin", "dry skin"]}, "B004RK7I2W": {"attributes": ["long lasting"]}, "B01L2JKW6E": {"attributes": []}, "B095SX6366": {"attributes": ["high quality"]}, "B07ZR54L56": {"attributes": []}, "B09NSMMHTY": {"attributes": ["eye shadow", "makeup palette", "long lasting", "easy use", "high quality"], "instruction": "Find me long lasting, easy use, high quality makeup palettes for eye shadow", "instruction_attributes": ["long lasting", "easy use", "high quality", "eye shadow"]}, "B09NRWND4H": {"attributes": ["makeup palette", "high quality", "eyeshadow palette", "stainless steel", "easy use"], "instruction": "Find me high quality, easy use makeup palettes with stainless steel", "instruction_attributes": ["high quality", "easy use", "stainless steel"]}, "B07H35M2PY": {"attributes": ["professional makeup"]}, "B00X2UAMXU": {"attributes": []}, "B0936C6MBM": {"attributes": ["fragrance free", "sensitive skin"], "instruction": "Find me fragrance free women's fragrance for sensitive skin", "instruction_attributes": ["fragrance free", "sensitive skin"]}, "B09PY89B1S": {"attributes": ["hair growth", "hair loss"], "instruction": "Find me hair loss products for hair growth, hair loss", "instruction_attributes": ["hair growth", "hair loss"]}, "B078FL4788": {"attributes": ["hair oil", "olive oil", "essential oils", "hair growth", "hair loss"], "instruction": "Find me hair treatment oils for hair growth, hair loss", "instruction_attributes": ["hair growth", "hair loss"]}, "B09M7M1YB3": {"attributes": ["non toxic", "easy clean"], "instruction": "Find me non toxic, easy clean refillable containers", "instruction_attributes": ["non toxic", "easy clean"]}, "B08BV94TBP": {"attributes": ["long handle", "bath brush", "dry skin"], "instruction": "Find me bath & bathing accessories with long handle for dry skin", "instruction_attributes": ["long handle", "dry skin"]}, "B09GW3N8TF": {"attributes": ["whitening toothpaste", "teeth whitening", "coconut oil", "bad breath"], "instruction": "Find me teeth whitening toothpaste with coconut oil for bad breath", "instruction_attributes": ["teeth whitening", "coconut oil", "bad breath"]}, "B07B6DVG41": {"attributes": ["damaged hair", "sulfate free", "hyaluronic acid", "coconut oil", "hair growth", "hair loss", "paraben free"], "instruction": "Find me sulfate free, paraben free shampoo & conditioner with hyaluronic acid, coconut oil for damaged hair, hair growth, hair loss", "instruction_attributes": ["sulfate free", "paraben free", "hyaluronic acid", "coconut oil", "damaged hair", "hair growth", "hair loss"]}, "B09RFDP1C3": {"attributes": ["green tea", "face cream", "hyaluronic acid", "natural ingredients", "cruelty free"], "instruction": "Find me cruelty free skin care sets & kits with green tea, hyaluronic acid, natural ingredients", "instruction_attributes": ["cruelty free", "green tea", "hyaluronic acid", "natural ingredients"]}, "B08FMSRJRP": {"attributes": ["long lasting"]}, "B09FFV98FY": {"attributes": ["permanent hair"]}, "B09B1M51SK": {"attributes": ["makeup mirror", "easy use"]}, "B087Y28XLM": {"attributes": ["animal testing", "dry skin", "paraben free"], "instruction": "Find me animal testing, paraben free body care for dry skin", "instruction_attributes": ["animal testing", "paraben free", "dry skin"]}, "B09L4WSCBS": {"attributes": ["long lasting", "eau parfum"]}, "B07CYS9J9N": {"attributes": ["stainless steel"]}, "B09GXPBPLG": {"attributes": ["oral hygiene"]}, "B09LQHW84R": {"attributes": ["oral care", "brush head", "high quality"]}, "B084DF7NLZ": {"attributes": ["eau parfum", "long lasting"]}, "B01IA9EC06": {"attributes": []}, "B09G9V3G1N": {"attributes": ["easy carry", "easy use"], "instruction": "Find me easy carry, easy use sets fragrance", "instruction_attributes": ["easy carry", "easy use"]}, "B00UYJEU8A": {"attributes": ["lip gloss"]}, "B09QMGM5S3": {"attributes": ["essential oils", "easy clean", "easy use"], "instruction": "Find me easy clean, easy use makeup remover", "instruction_attributes": ["easy clean", "easy use"]}, "B085GLK7X4": {"attributes": []}, "B09KCF4KPT": {"attributes": ["shampoo conditioner"]}, "B08RCVFMQ7": {"attributes": ["eye shadow", "highly pigmented", "eye makeup", "eyeshadow palette", "professional makeup", "long lasting"], "instruction": "Find me highly pigmented, long lasting makeup palettes for eye shadow", "instruction_attributes": ["highly pigmented", "long lasting", "eye shadow"]}, "B01NB94BQO": {"attributes": []}, "B09S2Z2GMJ": {"attributes": ["hair clipper"]}, "B09RYN5ZS7": {"attributes": ["high quality"]}, "B09CTMLF8X": {"attributes": ["face wash", "sensitive skin", "eye makeup", "anti aging"], "instruction": "Find me anti aging makeup remover for sensitive skin", "instruction_attributes": ["anti aging", "sensitive skin"]}, "B000JS0V70": {"attributes": ["natural ingredients", "skin care"]}, "B099F89JTZ": {"attributes": []}, "B07VTR9SYD": {"attributes": []}, "B09JNRTFGQ": {"attributes": ["stainless steel", "nail clippers", "high quality", "travel size"], "instruction": "Find me high quality, travel size foot, hand & nail care with stainless steel", "instruction_attributes": ["high quality", "travel size", "stainless steel"]}, "B09R4RJSFP": {"attributes": ["hair mask", "dry hair", "hair care", "hair treatment", "hair scalp", "natural hair", "hair growth"], "instruction": "Find me hair masks for dry hair, hair treatment, natural hair, hair growth", "instruction_attributes": ["dry hair", "hair treatment", "natural hair", "hair growth"]}, "B09NLZFMRG": {"attributes": ["bath towel", "dead skin", "easy clean"], "instruction": "Find me easy clean bathing accessories for dead skin", "instruction_attributes": ["easy clean", "dead skin"]}, "B075GC6LWC": {"attributes": ["cruelty free"]}, "B0892Y9F83": {"attributes": ["stainless steel", "false eyelashes", "easy use", "high quality"], "instruction": "Find me easy use, high quality makeup remover with stainless steel", "instruction_attributes": ["easy use", "high quality", "stainless steel"]}, "B09P7XL5RF": {"attributes": ["hair dye", "easy use"], "instruction": "Find me easy use hair coloring products for hair dye", "instruction_attributes": ["easy use", "hair dye"]}, "B08CV24121": {"attributes": ["tattoo machine"]}, "B01LM6W7Z6": {"attributes": ["nail polish", "nail art"], "instruction": "Find me eyes makeup for nail polish, nail art", "instruction_attributes": ["nail polish", "nail art"]}, "B08QDRGTDY": {"attributes": ["spray women", "parfum spray"]}, "B0816QM13S": {"attributes": ["hair accessories", "hair extensions"]}, "B083TZ4JSR": {"attributes": ["hair brush", "hair loss"]}, "B09DD2C1XD": {"attributes": ["easy carry"]}, "B09FYBZNQL": {"attributes": ["damaged hair", "hair treatment", "hair mask", "dry hair", "hair care"], "instruction": "Find me hair masks for damaged hair, hair treatment, dry hair", "instruction_attributes": ["damaged hair", "hair treatment", "dry hair"]}, "B08532HWVM": {"attributes": ["travel bottles", "leak proof", "body wash", "shampoo conditioner"], "instruction": "Find me leak proof refillable containers with travel bottles", "instruction_attributes": ["leak proof", "travel bottles"]}, "B09JT3Z6JV": {"attributes": ["brush head", "sensitive teeth", "high quality", "teeth whitening", "quality materials"], "instruction": "Find me high quality, teeth whitening children's dental care with quality materials for sensitive teeth", "instruction_attributes": ["high quality", "teeth whitening", "quality materials", "sensitive teeth"]}, "B09MS5RTDD": {"attributes": ["hair clips"]}, "B07VJ8R4HY": {"attributes": ["compact mirror", "makeup mirror", "high quality"]}, "B0046VILG4": {"attributes": []}, "B07MJGQ6NK": {"attributes": []}, "B08DK9WBQL": {"attributes": ["vanity mirror", "eye makeup", "makeup mirror"]}, "B07CKTXS1J": {"attributes": ["coconut oil", "shea butter"]}, "B08X4YD5WH": {"attributes": ["hair loss", "high quality"], "instruction": "Find me high quality hair extensions, wigs & accessories for hair loss", "instruction_attributes": ["high quality", "hair loss"]}, "B09MSZ4VS8": {"attributes": []}, "B08Q42DTN1": {"attributes": ["olive oil", "essential oils", "oil free", "plant based", "hair scalp", "shampoo conditioner", "paraben free"], "instruction": "Find me oil free, plant based, paraben free shampoo & conditioner", "instruction_attributes": ["oil free", "plant based", "paraben free"]}, "B08ZKDQPZ3": {"attributes": ["hair extensions", "easy use"], "instruction": "Find me easy use body care for hair extensions", "instruction_attributes": ["easy use", "hair extensions"]}, "B0065YIB8I": {"attributes": ["easy use", "clinically proven", "paraben free", "sensitive skin"], "instruction": "Find me easy use, clinically proven, paraben free body care for sensitive skin", "instruction_attributes": ["easy use", "clinically proven", "paraben free", "sensitive skin"]}, "B08G14B779": {"attributes": ["face wash", "dry hair", "high quality"], "instruction": "Find me high quality bathing accessories for dry hair", "instruction_attributes": ["high quality", "dry hair"]}, "B09CV5GPJ2": {"attributes": ["toiletry bag", "travel size", "makeup brush", "high quality"], "instruction": "Find me travel size, high quality skin care sets & kits", "instruction_attributes": ["travel size", "high quality"]}, "B0927BXC6B": {"attributes": ["eye shadow", "high quality", "easy carry"], "instruction": "Find me high quality, easy carry eyes makeup for eye shadow", "instruction_attributes": ["high quality", "easy carry", "eye shadow"]}, "B094QGVQLK": {"attributes": ["non slip"]}, "B015CSUKG8": {"attributes": []}, "B09CGNH5XT": {"attributes": ["makeup mirror", "false eyelashes", "easy apply"]}, "B07S8JZJ6Y": {"attributes": ["oral hygiene"]}, "B0874Y2KJR": {"attributes": ["non alcoholic"]}, "B09LM3H2F5": {"attributes": ["white chocolate", "hand crafted", "dark chocolate", "milk chocolate", "gift set", "valentine day", "sea salt"], "instruction": "Find me hand crafted candy & chocolate for gift set, valentine day", "instruction_attributes": ["hand crafted", "gift set", "valentine day"]}, "B00IB6AW4Y": {"attributes": []}, "B097F54DT8": {"attributes": ["fully cooked", "freeze dried", "shelf stable", "ready eat"], "instruction": "Find me fully cooked, freeze dried, shelf stable, ready eat fresh meal kits", "instruction_attributes": ["fully cooked", "freeze dried", "shelf stable", "ready eat"]}, "B01J5J2RPW": {"attributes": []}, "B004L4D6FW": {"attributes": ["tea bags"]}, "B0121IVA5W": {"attributes": []}, "B086VP8Q9T": {"attributes": ["herbs spices", "artificial ingredients", "quality ingredients", "non gmo", "gluten free"], "instruction": "Find me artificial ingredients, non gmo, gluten free meat & seafood with quality ingredients", "instruction_attributes": ["artificial ingredients", "non gmo", "gluten free", "quality ingredients"]}, "B00B04344Y": {"attributes": ["rich creamy", "ready use"], "instruction": "Find me rich creamy, ready use deli & prepared foods", "instruction_attributes": ["rich creamy", "ready use"]}, "B07KK49655": {"attributes": ["non alcoholic"]}, "B07SDSG3TT": {"attributes": []}, "B09NX4RGK7": {"attributes": ["plant based", "artificial flavors"], "instruction": "Find me plant based meat & seafood with artificial flavors", "instruction_attributes": ["plant based", "artificial flavors"]}, "B000SKM4CE": {"attributes": []}, "B00N6Y8ORI": {"attributes": ["keto friendly", "dietary fiber", "easy prepare", "low carb", "artificial flavors"], "instruction": "Find me keto friendly, easy prepare, low carb frozen with dietary fiber, artificial flavors", "instruction_attributes": ["keto friendly", "easy prepare", "low carb", "dietary fiber", "artificial flavors"]}, "B08QRKJWW9": {"attributes": ["great gift"]}, "B003I567W4": {"attributes": ["sea salt", "gluten free", "protein serving", "healthy snack"], "instruction": "Find me gluten free, protein serving pantry staples", "instruction_attributes": ["gluten free", "protein serving"]}, "B07BHQ6ZFT": {"attributes": ["peanut butter"]}, "B08WR7WFGM": {"attributes": []}, "B07Z4G8253": {"attributes": ["potato chips", "sour cream"]}, "B08Z3PLHLL": {"attributes": ["black tea", "brown sugar"]}, "B09M4C31FL": {"attributes": ["brown rice", "sugar free"]}, "B00HWHS3ZS": {"attributes": ["source vitamin", "fat free"], "instruction": "Find me fat free applesauce & fruit cups with source vitamin", "instruction_attributes": ["fat free", "source vitamin"]}, "B000VDV2F8": {"attributes": ["herbs spices"]}, "B08X6N3L2Z": {"attributes": ["low sugar"]}, "B07XRDD75B": {"attributes": ["certified organic", "dietary fiber", "high protein", "gluten free"], "instruction": "Find me certified organic, high protein, gluten free breakfast foods with dietary fiber", "instruction_attributes": ["certified organic", "high protein", "gluten free", "dietary fiber"]}, "B00CQ7PQYU": {"attributes": ["usda organic", "gluten free"], "instruction": "Find me usda organic, gluten free cream cheeses", "instruction_attributes": ["usda organic", "gluten free"]}, "B08ZHP2QQG": {"attributes": ["mac cheese", "sour cream"]}, "B07VQJM594": {"attributes": ["plant based", "herbs spices", "resealable bag"], "instruction": "Find me plant based meat substitutes with resealable bag", "instruction_attributes": ["plant based", "resealable bag"]}, "B015PWVRPO": {"attributes": ["dietary fiber", "dried fruit", "vitamins minerals", "non gmo"], "instruction": "Find me non gmo dried fruits & raisins with dietary fiber", "instruction_attributes": ["non gmo", "dietary fiber"]}, "B09JPCC7MJ": {"attributes": []}, "B09CDRQGLS": {"attributes": []}, "B07VVGKHLH": {"attributes": ["kosher certified"]}, "B000YG3DWC": {"attributes": ["protein serving", "quality ingredients"], "instruction": "Find me protein serving meat substitutes with quality ingredients", "instruction_attributes": ["protein serving", "quality ingredients"]}, "B09K4S16YT": {"attributes": ["chocolate covered", "milk chocolate"]}, "B08LQZ5BRC": {"attributes": ["plant based", "dairy free", "gluten free"], "instruction": "Find me plant based, dairy free, gluten free breakfast foods", "instruction_attributes": ["plant based", "dairy free", "gluten free"]}, "B07L5T94C5": {"attributes": ["artificial flavors"]}, "B08P28NXH3": {"attributes": ["cheddar cheese", "grain free", "artificial ingredients", "low calorie", "high protein", "low carb", "non gmo", "gluten free"], "instruction": "Find me grain free, artificial ingredients, low calorie, high protein, low carb, non gmo, gluten free puffed snacks", "instruction_attributes": ["grain free", "artificial ingredients", "low calorie", "high protein", "low carb", "non gmo", "gluten free"]}, "B08SFVL56K": {"attributes": ["fructose corn", "high fructose"]}, "B004PCJTR4": {"attributes": ["beef jerky", "old fashioned", "protein serving", "keto friendly"], "instruction": "Find me old fashioned, protein serving, keto friendly meat substitutes", "instruction_attributes": ["old fashioned", "protein serving", "keto friendly"]}, "B08NYTKYSS": {"attributes": []}, "B014HKGM9Q": {"attributes": []}, "B07WDRM4HG": {"attributes": ["cream cheese", "perfect gift"]}, "B073WX1ZSK": {"attributes": []}, "B09RLQR5NP": {"attributes": ["peanut butter"]}, "B085RRL27J": {"attributes": ["white cheddar", "soy free", "plant based", "dairy free", "artificial flavors", "non gmo", "gluten free"], "instruction": "Find me soy free, plant based, dairy free, non gmo, gluten free wasabi peas with artificial flavors", "instruction_attributes": ["soy free", "plant based", "dairy free", "non gmo", "gluten free", "artificial flavors"]}, "B00FBPHZKC": {"attributes": []}, "B07HYF111T": {"attributes": ["simple ingredients", "peanut butter", "low carb", "grain free", "chocolate covered", "low sugar", "gluten free", "healthy snack", "dark chocolate", "dairy free"], "instruction": "Find me low carb, grain free, chocolate covered, low sugar, gluten free, dairy free granola & nutrition bars with simple ingredients", "instruction_attributes": ["low carb", "grain free", "chocolate covered", "low sugar", "gluten free", "dairy free", "simple ingredients"]}, "B09FNLS51H": {"attributes": []}, "B08W2XSDST": {"attributes": ["resealable bag", "hot chocolate", "fat free"], "instruction": "Find me fat free puffed snacks with resealable bag", "instruction_attributes": ["fat free", "resealable bag"]}, "B084GWS59P": {"attributes": ["plant based", "high protein", "non gmo", "gluten free"], "instruction": "Find me plant based, high protein, non gmo, gluten free meat substitutes", "instruction_attributes": ["plant based", "high protein", "non gmo", "gluten free"]}, "B08WKT3X4Z": {"attributes": ["trail mix"]}, "B00GMQ4WRI": {"attributes": []}, "B08BPTT8MX": {"attributes": ["vitamins minerals", "non gmo", "gluten free"], "instruction": "Find me non gmo, gluten free food & beverage gifts", "instruction_attributes": ["non gmo", "gluten free"]}, "B09R8RN6S5": {"attributes": []}, "B08W2WTW4Z": {"attributes": ["cake decorations", "party supplies", "ice cream"]}, "B097DSB79F": {"attributes": ["real cheese", "protein serving", "natural ingredients", "artificial flavors"], "instruction": "Find me protein serving meat snacks with natural ingredients, artificial flavors", "instruction_attributes": ["protein serving", "natural ingredients", "artificial flavors"]}, "B09FK6LQ59": {"attributes": ["ice cream", "resealable bag"]}, "B07G2SC9HW": {"attributes": ["artificial flavors"]}, "B08PBDHVN8": {"attributes": ["cupcake toppers", "baby shower"]}, "B07JHNMLN9": {"attributes": ["gift set", "green tea"]}, "B0015DH8AQ": {"attributes": ["peanut butter"]}, "B09LDGGBS8": {"attributes": []}, "B07XP6DGJH": {"attributes": []}, "B0916MNM1W": {"attributes": ["milk chocolate", "dark chocolate"]}, "B004K6B5TK": {"attributes": []}, "B003QB1A72": {"attributes": []}, "B07KYC4B45": {"attributes": ["quality ingredients"]}, "B085LSKHM6": {"attributes": ["drink mix", "zero sugar"]}, "B002AO9GSG": {"attributes": []}, "B09KRL9W5C": {"attributes": []}, "B07VT81LP5": {"attributes": []}, "B072MR7PPJ": {"attributes": ["resealable bag"]}, "B07PGQKDFD": {"attributes": []}, "B073J29HJW": {"attributes": []}, "B00VQJ07CA": {"attributes": ["perfect gift", "dark chocolate"]}, "B07BBQDRDR": {"attributes": ["wild caught"]}, "B07L6PR5WS": {"attributes": []}, "B088WFD1XQ": {"attributes": ["hot chocolate", "easy prepare", "milk chocolate"]}, "B00NCSNO78": {"attributes": []}, "B01LA37T1S": {"attributes": []}, "B00EY177C0": {"attributes": []}, "B00DL08RWY": {"attributes": []}, "B00UETYYV8": {"attributes": ["milk chocolate", "individually wrapped"]}, "B001LDRMVU": {"attributes": []}, "B07D21HNGZ": {"attributes": []}, "B07M5VGSW1": {"attributes": ["fructose corn", "high fructose"]}, "B07TVMCK3F": {"attributes": ["baby shower", "cupcake toppers", "cupcake picks", "birthday party", "ice cream"], "instruction": "Find me toothpicks for baby shower, cupcake picks, birthday party", "instruction_attributes": ["baby shower", "cupcake picks", "birthday party"]}, "B079Z5V2WK": {"attributes": ["ice cream"]}, "B09PNJC838": {"attributes": ["cupcake toppers", "valentine day", "baby shower"], "instruction": "Find me toothpicks for valentine day, baby shower", "instruction_attributes": ["valentine day", "baby shower"]}, "B09D4L5H3V": {"attributes": []}, "B076R28M2M": {"attributes": []}, "B07FYPSNH8": {"attributes": ["nut free", "soy free", "plant based", "lactose free", "cane sugar", "low sugar", "gluten free", "shelf stable", "artificial colors", "dairy free", "non gmo"], "instruction": "Find me nut free, soy free, plant based, lactose free, low sugar, gluten free, shelf stable, dairy free, non gmo beverages with artificial colors", "instruction_attributes": ["nut free", "soy free", "plant based", "lactose free", "low sugar", "gluten free", "shelf stable", "dairy free", "non gmo", "artificial colors"]}, "B07YPYJ32Z": {"attributes": []}, "B07FM9K5S3": {"attributes": ["low calorie"]}, "B01LXP39SN": {"attributes": ["gift set"]}, "B00V57WXMU": {"attributes": []}, "B01N37FSYX": {"attributes": ["non gmo", "gluten free", "easy use", "natural ingredients"], "instruction": "Find me non gmo, gluten free, easy use cheeses with natural ingredients", "instruction_attributes": ["non gmo", "gluten free", "easy use", "natural ingredients"]}, "B07YL7L9BF": {"attributes": []}, "B00DGDBYQC": {"attributes": []}, "B08RJ279HW": {"attributes": ["easy use"]}, "B004PD3K46": {"attributes": ["hot chocolate"]}, "B000V53HHC": {"attributes": []}, "B00D4NQQ7G": {"attributes": []}, "B01ITTAW1U": {"attributes": []}, "B09DXD6LLB": {"attributes": []}, "B00BT1QVW0": {"attributes": []}, "B08SFMB8YZ": {"attributes": []}, "B00390ALA2": {"attributes": []}, "B08QTTR98M": {"attributes": []}, "B0198VF30I": {"attributes": ["baked goods"]}, "B079ZBPR2X": {"attributes": []}, "B085W9G2QY": {"attributes": ["wheat flour", "quality ingredients"]}, "B09DBYG4XD": {"attributes": ["gmo free", "olive oil", "gluten free", "kosher certified", "non gmo"], "instruction": "Find me gmo free, gluten free, kosher certified, non gmo snack food gifts", "instruction_attributes": ["gmo free", "gluten free", "kosher certified", "non gmo"]}, "B002C56QX6": {"attributes": ["0g trans", "gluten free"], "instruction": "Find me gluten free snack crackers with 0g trans", "instruction_attributes": ["gluten free", "0g trans"]}, "B07F1JDWJP": {"attributes": ["non gmo", "keto friendly"], "instruction": "Find me non gmo, keto friendly milks & creams", "instruction_attributes": ["non gmo", "keto friendly"]}, "B009LHWYO8": {"attributes": []}, "B0017WNF34": {"attributes": ["milk chocolate"]}, "B07GH3J1Z1": {"attributes": ["blu ray", "ultra hd", "remote control"], "instruction": "Find me blu ray, ultra hd blu-ray players & recorders", "instruction_attributes": ["blu ray", "ultra hd"]}, "B07CZPMFQ2": {"attributes": ["replacement remote", "remote control"]}, "B08533PJ4S": {"attributes": ["power cord", "home theater", "ultra hd", "extension cable", "power cable", "ac power", "sound bar"]}, "B07YN72RH4": {"attributes": ["high resolution", "usb port"], "instruction": "Find me high resolution multiroom wireless systems with usb port", "instruction_attributes": ["high resolution", "usb port"]}, "B08GL4GB2M": {"attributes": ["blu ray", "home theater"]}, "B09KGN7XF4": {"attributes": ["flash drive", "micro usb"]}, "B09J4RS3V1": {"attributes": ["tv box"]}, "B00LT8T9F4": {"attributes": []}, "B07Q8JM1JZ": {"attributes": ["certified refurbished", "hard drive"]}, "B09LSKQF8C": {"attributes": ["dual band", "voice control", "quad core"], "instruction": "Find me dual band streaming media players with quad core", "instruction_attributes": ["dual band", "quad core"]}, "B074DVCKHB": {"attributes": ["ac adapter", "ac power", "power cord"]}, "B00R249C5G": {"attributes": []}, "B09FYXV44L": {"attributes": ["volume control", "hands free"]}, "B09NMZS7HK": {"attributes": ["high performance", "home theater"]}, "B08QSNM69H": {"attributes": ["blu ray", "gold plated", "high speed", "dvd player", "heavy duty", "hdmi cable"], "instruction": "Find me blu ray, gold plated, high speed, heavy duty hdmi cables", "instruction_attributes": ["blu ray", "gold plated", "high speed", "heavy duty"]}, "B091GHBJZ1": {"attributes": []}, "B08R8K8H6S": {"attributes": ["replacement remote", "home theater", "remote control", "power supply"]}, "B001IGMS28": {"attributes": []}, "B00JIKV6E2": {"attributes": []}, "B09KQNH5C6": {"attributes": ["stereo sound", "volume control", "sd card"]}, "B08FZDJRQ7": {"attributes": ["portable bluetooth", "hands free", "bluetooth speaker"]}, "B01C8RQ1NM": {"attributes": []}, "B08YWKVNLT": {"attributes": ["bird watching", "easy use", "carrying case", "high power", "night vision"], "instruction": "Find me easy use, high power binoculars & scopes with carrying case for bird watching", "instruction_attributes": ["easy use", "high power", "carrying case", "bird watching"]}, "B089ZJ7H1N": {"attributes": ["wireless charging", "heavy duty"], "instruction": "Find me heavy duty power protection for wireless charging", "instruction_attributes": ["heavy duty", "wireless charging"]}, "B09BKMRMDV": {"attributes": ["power cable", "dvd player", "blu ray", "plug play"], "instruction": "Find me blu ray, plug play hdmi cables", "instruction_attributes": ["blu ray", "plug play"]}, "B0912JD5KF": {"attributes": ["mobile phone"]}, "B07ZYVWCZ7": {"attributes": ["tempered glass", "heavy duty", "home theater"], "instruction": "Find me heavy duty television accessories with tempered glass", "instruction_attributes": ["heavy duty", "tempered glass"]}, "B01BCOAE7G": {"attributes": ["non slip"]}, "B08YQKXLVG": {"attributes": ["bird watching", "high power", "non slip"], "instruction": "Find me high power, non slip binoculars & scopes for bird watching", "instruction_attributes": ["high power", "non slip", "bird watching"]}, "B09QMPV75P": {"attributes": ["flash drive", "usb flash", "usb port", "mobile phone", "pro max", "iphone pro", "high speed"], "instruction": "Find me high speed flashes with usb port", "instruction_attributes": ["high speed", "usb port"]}, "B00VI88X7U": {"attributes": ["power amplifier", "hands free", "usb port"], "instruction": "Find me power amplifier, hands free av receivers & amplifiers with usb port", "instruction_attributes": ["power amplifier", "hands free", "usb port"]}, "B08SM5R231": {"attributes": ["cd player", "ac power", "power cord", "fm radio", "wireless bluetooth", "extension cable", "power cable"]}, "B00OHHTTVS": {"attributes": []}, "B0912FQSMT": {"attributes": ["bluetooth audio"]}, "B08NFLLK8P": {"attributes": []}, "B08XXDGPKR": {"attributes": []}, "B08YNRQSBL": {"attributes": ["bird watching", "heavy duty", "high definition"], "instruction": "Find me heavy duty, high definition binoculars & scopes for bird watching", "instruction_attributes": ["heavy duty", "high definition", "bird watching"]}, "B00O19GGSG": {"attributes": []}, "B08Q3FW68R": {"attributes": ["home theater"]}, "B08HR1P3Z9": {"attributes": ["power cable"]}, "B08H22ZV67": {"attributes": ["dvd vcr", "gold plated"]}, "B09G2ZL7CP": {"attributes": ["touch screen", "lcd screen"]}, "B07FMR5JGX": {"attributes": ["easy install"]}, "B075ZH94L7": {"attributes": ["dvd vcr", "tv remote", "remote control"]}, "B09RZRQVGT": {"attributes": ["home theater", "high definition"]}, "B0972M4N2W": {"attributes": ["power cord", "ac power"]}, "B09CPZH548": {"attributes": ["pro max", "iphone pro", "power bank", "wireless charging", "usb cable"]}, "B07S7D6RQC": {"attributes": []}, "B007PCP2OU": {"attributes": []}, "B07DTWJYND": {"attributes": ["carbon fiber"]}, "B01F3JGOWA": {"attributes": ["carbon fiber"]}, "B096L3FNMR": {"attributes": ["dvd player", "power amplifier", "fm radio", "wireless bluetooth", "remote control"], "instruction": "Find me power amplifier av receivers & amplifiers for wireless bluetooth", "instruction_attributes": ["power amplifier", "wireless bluetooth"]}, "B001GCVA0U": {"attributes": []}, "B09GVF8WWY": {"attributes": ["dvd vcr", "ac power", "power cord", "home theater"]}, "B09B4YH4RG": {"attributes": ["sound bar", "home theater", "power cord", "hdmi cable", "usb port", "plug play", "power supply", "remote control"], "instruction": "Find me plug play soundbars with usb port", "instruction_attributes": ["plug play", "usb port"]}, "B09P8JXLSY": {"attributes": ["alarm clock", "power bank"]}, "B0978LGNMN": {"attributes": ["output protection", "cd player", "ac power", "power cord"]}, "B09KG58GWJ": {"attributes": ["alarm clock", "memory card", "bluetooth speaker", "usb port"]}, "B006G5CYAM": {"attributes": []}, "B01M7U6F8T": {"attributes": ["pro max", "cell phone", "phone holder", "iphone pro", "aluminum alloy", "mobile phone"]}, "B085VFMXMZ": {"attributes": ["flash drive"]}, "B074PBDJG9": {"attributes": ["home theater", "high performance", "high speed", "easy install"], "instruction": "Find me high performance, high speed, easy install surround sound systems", "instruction_attributes": ["high performance", "high speed", "easy install"]}, "B088KSY32D": {"attributes": []}, "B09H2NB41N": {"attributes": ["projector screen", "projection screen", "movie screen", "home theater"]}, "B09Q6CZ59K": {"attributes": ["dvd player", "plug play", "easy use"], "instruction": "Find me plug play, easy use turntables", "instruction_attributes": ["plug play", "easy use"]}, "B07XTQ1ZMN": {"attributes": []}, "B09PKHJN8P": {"attributes": ["light weight", "aluminum alloy", "easy carry"], "instruction": "Find me light weight, easy carry underwater photography with aluminum alloy", "instruction_attributes": ["light weight", "easy carry", "aluminum alloy"]}, "B09P147DN2": {"attributes": ["1080p hd"]}, "B082HFQM2B": {"attributes": []}, "B09H6G6PT9": {"attributes": ["remote control", "replacement remote", "home theater"]}, "B086DK24K2": {"attributes": []}, "B087C56PZQ": {"attributes": ["power supply"]}, "B074J81XRB": {"attributes": ["power supply", "power amplifier", "power adapter", "power cord"]}, "B08ZNVVZ91": {"attributes": ["wireless bluetooth", "bluetooth speaker"]}, "B083HXHG75": {"attributes": ["glass screen", "tempered glass", "screen protector", "case cover", "heavy duty"], "instruction": "Find me heavy duty video glasses with glass screen, tempered glass, case cover", "instruction_attributes": ["heavy duty", "glass screen", "tempered glass", "case cover"]}, "B097PCJMP5": {"attributes": ["high speed", "easy use"], "instruction": "Find me high speed, easy use printers & scanners", "instruction_attributes": ["high speed", "easy use"]}, "B07JMMM1B5": {"attributes": ["canon eos", "dslr camera"]}, "B08HWG1NFW": {"attributes": ["remote control", "dvd vcr", "replacement remote"]}, "B0932C11QQ": {"attributes": ["power amplifier", "fm radio", "aluminum alloy", "easy use"], "instruction": "Find me power amplifier, easy use receivers & amplifiers with aluminum alloy", "instruction_attributes": ["power amplifier", "easy use", "aluminum alloy"]}, "B004HO58MA": {"attributes": ["optical zoom", "touch screen", "digital camera", "high speed"], "instruction": "Find me high speed digital cameras with optical zoom", "instruction_attributes": ["high speed", "optical zoom"]}, "B09J8772MN": {"attributes": ["mobile phone", "car audio"]}, "B09476F64C": {"attributes": ["projection screen", "projector screen", "home theater"]}, "B09HK6JF63": {"attributes": ["macbook pro", "ac adapter", "power adapter"]}, "B08TGMZX1F": {"attributes": ["smart watch", "touch screen", "usb cable"]}, "B07QL67W9Y": {"attributes": ["camera lens"]}, "B09SJ5YGMZ": {"attributes": ["dvd player", "projector screen", "mobile phone", "plug play"]}, "B000EMWBV0": {"attributes": ["optical zoom"]}, "B07QB4BV5W": {"attributes": ["tv antenna"]}, "B001P06Q0W": {"attributes": ["optical zoom", "digital camera"]}, "B07YFF7B78": {"attributes": []}, "B07YCGBPRD": {"attributes": ["pro max", "iphone pro", "screen protector", "tempered glass", "easy install"], "instruction": "Find me easy install screen protectors with tempered glass", "instruction_attributes": ["easy install", "tempered glass"]}, "B095C2ZMTX": {"attributes": ["remote control", "audio cable", "sound bar", "wireless bluetooth", "home theater"]}, "B08GKZNTHK": {"attributes": ["non slip", "aluminum alloy", "digital camera"], "instruction": "Find me non slip mounts with aluminum alloy", "instruction_attributes": ["non slip", "aluminum alloy"]}, "B09J5HJ8DL": {"attributes": ["flash drive", "ipad pro", "dslr camera", "usb flash"]}, "B07L5XKY24": {"attributes": ["vr headset", "ac adapter"]}, "B01MQH5VGR": {"attributes": ["gold plated", "hdmi cable", "high speed"], "instruction": "Find me gold plated, high speed hdmi cables", "instruction_attributes": ["gold plated", "high speed"]}, "B09NLX1BC4": {"attributes": ["smart watch", "touch screen"]}, "B092W6WNH4": {"attributes": ["wireless earbuds", "charging case"]}, "B001PTGCD4": {"attributes": ["wireless headset", "bluetooth headset"]}, "B00VC425OM": {"attributes": ["tv remote", "remote control"]}, "B003FPD3IS": {"attributes": ["volume control"]}, "B00OFQR8D2": {"attributes": ["quad core"]}, "B01E9OPWUU": {"attributes": ["ac adapter"]}, "B09B7551X2": {"attributes": ["apple watch", "easy install", "compatible apple", "screen protector"], "instruction": "Find me easy install, compatible apple wearable technology", "instruction_attributes": ["easy install", "compatible apple"]}, "B07H179NY3": {"attributes": ["usb port", "power supply"]}, "B08W4H39JR": {"attributes": ["easy install"]}, "B019IHR5LW": {"attributes": []}, "B09RF2DLZX": {"attributes": ["volume control", "noise cancelling", "audio cable", "micro usb", "tf card", "stereo sound", "wireless bluetooth"], "instruction": "Find me noise cancelling bluetooth speakers for stereo sound, wireless bluetooth", "instruction_attributes": ["noise cancelling", "stereo sound", "wireless bluetooth"]}, "B09R1T2P6V": {"attributes": ["apple watch", "compatible apple", "stainless steel", "screen protector"], "instruction": "Find me compatible apple wearable technology with stainless steel", "instruction_attributes": ["compatible apple", "stainless steel"]}, "B0813C1C4J": {"attributes": ["4g lte", "signal booster", "cell phone", "heavy duty"], "instruction": "Find me heavy duty signal boosters for 4g lte", "instruction_attributes": ["heavy duty", "4g lte"]}, "B07D4JGPHM": {"attributes": ["nintendo switch"]}, "B009AFLXZM": {"attributes": []}, "B08WYZWYN1": {"attributes": ["memory card", "digital camera", "hdmi cable", "high performance"]}, "B07ZDJZJFD": {"attributes": ["digital camera", "memory card"]}, "B09HMN26HY": {"attributes": []}, "B09QQWRW2M": {"attributes": ["hdmi cable"]}, "B09CYYD51R": {"attributes": []}, "B01LYSBBX5": {"attributes": ["replacement remote", "remote control"]}, "B00AY1SXW2": {"attributes": ["power cord"]}, "B00SYVE3CI": {"attributes": ["quick release", "easy install"], "instruction": "Find me quick release, easy install mounts", "instruction_attributes": ["quick release", "easy install"]}, "B00UVRUFNE": {"attributes": []}, "B004EEG95I": {"attributes": []}, "B089GN6L6R": {"attributes": ["cell phone", "bluetooth speaker"]}, "B00UN9GR8W": {"attributes": ["heavy duty"]}, "B089R7JZHK": {"attributes": ["aaa batteries", "easy use", "remote control"], "instruction": "Find me easy use vcrs with aaa batteries", "instruction_attributes": ["easy use", "aaa batteries"]}, "B00YZ5KT98": {"attributes": ["gold plated"]}, "B08ZMR6MCR": {"attributes": ["micro usb", "remote control"]}, "B09J2QLPR1": {"attributes": ["hands free", "bluetooth headset", "wireless bluetooth"], "instruction": "Find me hands free headphones for wireless bluetooth", "instruction_attributes": ["hands free", "wireless bluetooth"]}, "B09FXPRZN5": {"attributes": ["touch screen", "high definition"]}, "B01LZWDNX6": {"attributes": ["vr glasses", "vr headset", "easy carry", "samsung galaxy"]}, "B01LW6NN8T": {"attributes": ["hands free"]}, "B07KK7G5YJ": {"attributes": ["digital photography", "light weight", "high resolution", "easy carry"], "instruction": "Find me light weight, high resolution, easy carry underwater photography for digital photography", "instruction_attributes": ["light weight", "high resolution", "easy carry", "digital photography"]}, "B07SRS3MXP": {"attributes": ["car stereo", "4g lte", "touch screen", "high resolution", "mobile phone"], "instruction": "Find me high resolution cd players & recorders for 4g lte", "instruction_attributes": ["high resolution", "4g lte"]}, "B09T6LTTCY": {"attributes": ["signal booster"]}, "B09DVS5MQW": {"attributes": ["bluetooth speaker", "power bank", "high power", "rechargeable battery", "wireless bluetooth"], "instruction": "Find me high power bluetooth speakers for wireless bluetooth", "instruction_attributes": ["high power", "wireless bluetooth"]}, "B095PF5BXT": {"attributes": ["screen protector", "camera lens", "lens protector", "tempered glass", "high definition", "glass screen", "samsung galaxy", "easy install"], "instruction": "Find me high definition, easy install lenses with tempered glass, glass screen", "instruction_attributes": ["high definition", "easy install", "tempered glass", "glass screen"]}, "B08M5BYQN9": {"attributes": ["plug play", "easy install", "high definition"], "instruction": "Find me plug play, easy install, high definition car accessories", "instruction_attributes": ["plug play", "easy install", "high definition"]}, "B09SZ4RMNY": {"attributes": ["long lasting", "digital camera"]}, "B07TB37SG5": {"attributes": ["digital photography", "light weight", "high resolution", "easy carry"], "instruction": "Find me light weight, high resolution, easy carry underwater photography for digital photography", "instruction_attributes": ["light weight", "high resolution", "easy carry", "digital photography"]}, "B07WGHWNSB": {"attributes": ["plug play"]}, "B09T5M3KKG": {"attributes": ["signal booster", "cell phone", "easy carry"]}, "B07VVVDRCX": {"attributes": ["case cover", "compatible apple"], "instruction": "Find me compatible apple online game services with case cover", "instruction_attributes": ["compatible apple", "case cover"]}, "B07DGXZJ1K": {"attributes": []}, "B079R9H2KB": {"attributes": []}, "B004N1T7VK": {"attributes": []}, "B07JMXLXNY": {"attributes": ["tempered glass", "ipad pro", "screen protector", "glass screen"], "instruction": "Find me screen protectors with tempered glass, glass screen", "instruction_attributes": ["tempered glass", "glass screen"]}, "B001C6JXJU": {"attributes": ["projection screen"]}, "B07X3TZQ27": {"attributes": ["night vision", "sd card", "1080p hd", "power bank", "motion detection", "security camera", "memory card"], "instruction": "Find me 1080p hd video surveillance for motion detection", "instruction_attributes": ["1080p hd", "motion detection"]}, "B09SWLPPVQ": {"attributes": ["dual band", "smart tv", "signal booster", "high speed"], "instruction": "Find me dual band, high speed signal boosters", "instruction_attributes": ["dual band", "high speed"]}, "B06Y44FL9J": {"attributes": []}, "B09J89KFHQ": {"attributes": ["apple watch", "compatible apple"]}, "B07WV38GWM": {"attributes": []}, "B07VHJY9KJ": {"attributes": ["tf card", "sound bar", "easy use", "usb flash", "flash drive", "high performance", "cell phone", "wireless bluetooth", "bluetooth speaker", "remote control"], "instruction": "Find me easy use, high performance soundbars for wireless bluetooth", "instruction_attributes": ["easy use", "high performance", "wireless bluetooth"]}, "B00A0WG5KW": {"attributes": []}, "B00JH23QMQ": {"attributes": ["high definition", "touch screen", "screen protector", "samsung galaxy"]}, "B09PZZJ2XG": {"attributes": ["sound bar", "plug play"]}, "B07JMS4SL4": {"attributes": ["power cord"]}, "B08NF4L614": {"attributes": ["cell phone"]}, "B07F6MN8RH": {"attributes": []}, "B0073AC440": {"attributes": ["canon eos"]}, "B00CHSKYKE": {"attributes": ["replacement remote", "remote control"]}, "B07THL8PP1": {"attributes": ["wireless charger", "samsung galaxy", "ac adapter", "wireless charging", "charging case", "micro usb", "phone case", "pro max", "iphone pro", "usb cable", "high speed"], "instruction": "Find me high speed chargers for wireless charging", "instruction_attributes": ["high speed", "wireless charging"]}, "B07GFS3MNT": {"attributes": ["night vision", "motion detection", "power adapter", "security camera", "high resolution", "easy install"], "instruction": "Find me high resolution, easy install video surveillance for motion detection", "instruction_attributes": ["high resolution", "easy install", "motion detection"]}, "B083G2416L": {"attributes": ["case cover"]}, "B0912H5LHP": {"attributes": ["ac power", "fast charging"]}, "B00PZ006U4": {"attributes": []}, "B08LWWRDCB": {"attributes": []}, "B013WXK2QI": {"attributes": ["memory card"]}, "B09P42GFBR": {"attributes": ["virtual reality", "vr headset", "wireless headset", "vr glasses", "high definition", "remote control"]}, "B08W874R8Z": {"attributes": ["lcd screen", "dslr camera", "ultra hd", "1080p hd", "camera lens", "stereo sound"], "instruction": "Find me ultra hd, 1080p hd digital cameras for stereo sound", "instruction_attributes": ["ultra hd", "1080p hd", "stereo sound"]}, "B07PXMFDQ3": {"attributes": []}, "B01MSXI9M5": {"attributes": ["home theater", "remote control", "replacement battery", "replacement remote", "easy use"]}, "B09MHLS36W": {"attributes": ["dvd player", "high speed", "high definition"], "instruction": "Find me high speed, high definition projectors", "instruction_attributes": ["high speed", "high definition"]}, "B09D42HCTN": {"attributes": ["1080p hd", "high definition", "home theater"], "instruction": "Find me 1080p hd, high definition projectors", "instruction_attributes": ["1080p hd", "high definition"]}, "B07W92ZTVW": {"attributes": ["blu ray", "home theater", "remote control"]}, "B015D7YII4": {"attributes": []}, "B0973XVPCD": {"attributes": ["volume control", "ipad pro", "macbook pro", "long lasting", "samsung galaxy", "remote control"]}, "B09DPDGYRK": {"attributes": ["virtual reality", "vr glasses", "vr headset"]}, "B08GHLKGHJ": {"attributes": []}, "B08Q2YQ35N": {"attributes": ["aluminum alloy", "bird watching"], "instruction": "Find me binoculars & scopes with aluminum alloy for bird watching", "instruction_attributes": ["aluminum alloy", "bird watching"]}, "B07TPRMHFG": {"attributes": ["action camera"]}, "B0871VQT3Q": {"attributes": []}, "B08YNND3LN": {"attributes": ["charging case", "case cover"]}, "B08ZYQC4PL": {"attributes": ["virtual reality", "pro max", "iphone pro"]}, "B077KY1X93": {"attributes": ["easy install"]}, "B09P1HJ32G": {"attributes": ["night vision", "bird watching", "high definition"], "instruction": "Find me high definition binoculars & scopes for bird watching", "instruction_attributes": ["high definition", "bird watching"]}, "B099F5HHZK": {"attributes": []}, "B092LSVMTY": {"attributes": ["reality headset", "virtual reality", "light weight"]}, "B0002J1HOC": {"attributes": []}, "B014C9KQLM": {"attributes": ["usb flash", "flash drive", "car stereo", "hands free", "usb port"], "instruction": "Find me hands free flashes with usb port", "instruction_attributes": ["hands free", "usb port"]}, "B088X39YNP": {"attributes": ["sony playstation"]}, "B07X9623L4": {"attributes": []}, "B09S2ZQ49B": {"attributes": []}, "B07RKLL1ZK": {"attributes": ["remote control", "replacement remote"]}, "B08GZ88BLT": {"attributes": ["hands free", "voice control", "remote control"]}, "B08VH8MZZ6": {"attributes": ["high speed", "night vision", "motion detection", "1080p hd", "tf card", "high performance", "mobile phone"], "instruction": "Find me high speed, 1080p hd, high performance video surveillance for motion detection", "instruction_attributes": ["high speed", "1080p hd", "high performance", "motion detection"]}, "B08D8726MN": {"attributes": ["motion detection"]}, "B00A974J3I": {"attributes": ["hdmi cable"]}, "B08QRHVS6N": {"attributes": ["pro max", "iphone pro", "quick release", "wireless charging", "hands free", "samsung galaxy"], "instruction": "Find me quick release, hands free iphone accessories for wireless charging", "instruction_attributes": ["quick release", "hands free", "wireless charging"]}, "B07Z397262": {"attributes": ["charging cable", "fast charging", "mobile phone", "samsung galaxy"]}, "B08GS6B87J": {"attributes": []}, "B09L86RDXS": {"attributes": ["wireless headset", "bluetooth headset", "cell phone", "wireless bluetooth", "usb cable"]}, "B083ZK4NRS": {"attributes": ["tempered glass", "glass screen", "screen protector"], "instruction": "Find me screen protectors with tempered glass, glass screen", "instruction_attributes": ["tempered glass", "glass screen"]}, "B09JJWGGD9": {"attributes": ["screen protector", "smart watch"]}, "B09NFG3XXY": {"attributes": ["hard drive", "high speed", "plug play"], "instruction": "Find me high speed, plug play mac", "instruction_attributes": ["high speed", "plug play"]}, "B088LZPNG6": {"attributes": ["ipad pro", "tempered glass", "lens protector", "camera lens", "glass screen", "screen protector"], "instruction": "Find me screen protectors with tempered glass, glass screen", "instruction_attributes": ["tempered glass", "glass screen"]}, "B0982W8RKZ": {"attributes": ["samsung galaxy", "glass screen", "tempered glass", "screen protector"], "instruction": "Find me mac with glass screen, tempered glass", "instruction_attributes": ["glass screen", "tempered glass"]}, "B07YBM2JHT": {"attributes": ["canon eos", "dslr camera", "memory card"]}, "B0049KSSKQ": {"attributes": ["carrying case"]}, "B09P57ZKGP": {"attributes": ["usb flash", "flash drive", "high performance", "high speed"], "instruction": "Find me high performance, high speed flashes", "instruction_attributes": ["high performance", "high speed"]}, "B09P3BXF1H": {"attributes": ["hard drive", "usb cable"]}, "B06XQYN77L": {"attributes": ["car audio", "audio cable", "plug play", "light weight", "hands free"], "instruction": "Find me plug play, light weight, hands free bluetooth headsets", "instruction_attributes": ["plug play", "light weight", "hands free"]}, "B08NWDG4N4": {"attributes": []}, "B001JEPWD6": {"attributes": []}, "B09T2MW12R": {"attributes": ["cell phone", "mobile phone", "easy install"]}, "B07GZLDJMC": {"attributes": ["tempered glass", "tv box", "sound bar"]}, "B09B265D1J": {"attributes": ["led light", "bluetooth speaker", "mobile phone"]}, "B01MTYK2T9": {"attributes": ["quick release", "aluminum alloy"], "instruction": "Find me quick release tripods & monopods with aluminum alloy", "instruction_attributes": ["quick release", "aluminum alloy"]}, "B08T6Y8VVT": {"attributes": ["touch screen", "ipad pro"]}, "B07B9QWJW9": {"attributes": ["coaxial cable", "signal booster"]}, "B07H5GWRL4": {"attributes": ["oculus quest", "vr headset", "fast charging", "high speed"], "instruction": "Find me fast charging, high speed virtual reality", "instruction_attributes": ["fast charging", "high speed"]}, "B09NDGV4PL": {"attributes": ["light weight", "hands free", "wireless bluetooth", "bluetooth speaker", "easy carry"], "instruction": "Find me light weight, hands free, easy carry bluetooth speakers for wireless bluetooth", "instruction_attributes": ["light weight", "hands free", "easy carry", "wireless bluetooth"]}, "B09LC67HYC": {"attributes": ["phone case", "non slip"]}, "B0924PKLQ4": {"attributes": ["wall mounted", "charging cable", "long lasting", "easy use"], "instruction": "Find me wall mounted, long lasting, easy use mounts", "instruction_attributes": ["wall mounted", "long lasting", "easy use"]}, "B08MBG3421": {"attributes": ["pro max", "iphone pro", "camera lens", "screen protector"]}, "B01DNNKHBC": {"attributes": []}, "B09GRD2SK4": {"attributes": ["power adapter", "plug play"]}, "B091YV7CRB": {"attributes": ["oculus quest", "vr headset", "non slip"]}, "B098SV78BW": {"attributes": ["camera lens", "phone case", "lens protector", "wireless charging", "heavy duty"], "instruction": "Find me heavy duty iphone accessories for wireless charging", "instruction_attributes": ["heavy duty", "wireless charging"]}, "B07CN9RZ1C": {"attributes": ["rubber sole"]}, "B08T84R7V2": {"attributes": ["lace closure", "rubber outsole", "rubber sole"], "instruction": "Find me men's fashion sneakers with lace closure, rubber outsole, rubber sole", "instruction_attributes": ["lace closure", "rubber outsole", "rubber sole"]}, "B082MT9162": {"attributes": ["rubber sole", "anti slip"], "instruction": "Find me anti slip men's loafers & slip-ons with rubber sole", "instruction_attributes": ["anti slip", "rubber sole"]}, "B07HP6LVRS": {"attributes": ["rubber outsole", "rubber sole"], "instruction": "Find me men's loafers & slip-ons with rubber outsole, rubber sole", "instruction_attributes": ["rubber outsole", "rubber sole"]}, "B005B75PDO": {"attributes": []}, "B07S7HDC88": {"attributes": ["slip resistant", "rubber outsole", "non slip", "rubber sole"], "instruction": "Find me slip resistant, non slip men's loafers & slip-ons with rubber outsole, rubber sole", "instruction_attributes": ["slip resistant", "non slip", "rubber outsole", "rubber sole"]}, "B07NZ173GY": {"attributes": ["day comfort", "rubber sole"], "instruction": "Find me day comfort men's sandals with rubber sole", "instruction_attributes": ["day comfort", "rubber sole"]}, "B07L6DV555": {"attributes": ["lace closure", "rubber outsole", "rubber sole"], "instruction": "Find me men's boots with lace closure, rubber outsole, rubber sole", "instruction_attributes": ["lace closure", "rubber outsole", "rubber sole"]}, "B01LXTLLVG": {"attributes": ["rubber sole"]}, "B00ITCBD3Y": {"attributes": []}, "B09C8YNWWB": {"attributes": ["faux fur", "house slippers", "slippers women"]}, "B07RPMCNKD": {"attributes": ["rubber sole", "soft material", "light weight", "memory foam", "non slip"], "instruction": "Find me light weight, non slip women's outdoor shoes with rubber sole, soft material, memory foam", "instruction_attributes": ["light weight", "non slip", "rubber sole", "soft material", "memory foam"]}, "B06Y52T6KC": {"attributes": ["shoes women", "rubber sole"]}, "B07XDRVVYM": {"attributes": ["arch support", "rubber outsole", "rubber sole"], "instruction": "Find me women's sandals with arch support, rubber outsole, rubber sole", "instruction_attributes": ["arch support", "rubber outsole", "rubber sole"]}, "B092VDY5MF": {"attributes": ["dress shoes", "closed toe", "rubber sole"], "instruction": "Find me women's pumps with closed toe, rubber sole", "instruction_attributes": ["closed toe", "rubber sole"]}, "B09HMCKZQW": {"attributes": ["closed toe", "knee high", "leather sole", "ankle boots", "ankle strap", "arch support", "rubber outsole", "sandals women", "non slip"], "instruction": "Find me knee high, non slip women's pumps with closed toe, leather sole, ankle strap, arch support, rubber outsole", "instruction_attributes": ["knee high", "non slip", "closed toe", "leather sole", "ankle strap", "arch support", "rubber outsole"]}, "B08DF5MMRM": {"attributes": ["rubber sole"]}, "B09QRV4YLR": {"attributes": ["ethylene vinyl", "vinyl acetate", "sneakers shoes", "shoes women", "non slip"], "instruction": "Find me non slip women's fashion sneakers with ethylene vinyl, vinyl acetate", "instruction_attributes": ["non slip", "ethylene vinyl", "vinyl acetate"]}, "B09QPX97VW": {"attributes": ["sandals women", "sneakers women", "slippers women", "shoes women", "women sneakers", "women sandals", "slip ons", "house slippers", "high heel", "wedge sandals", "short sleeve"], "instruction": "Find me women's pumps with high heel, short sleeve", "instruction_attributes": ["high heel", "short sleeve"]}, "B09GL561XH": {"attributes": ["officially licensed", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "machine wash"], "instruction": "Find me officially licensed, machine wash men's t-shirts with polyester heathers, heathers cotton, cotton heather, needle sleeve, classic fit", "instruction_attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"]}, "B07N325S5H": {"attributes": ["rubber sole"]}, "B08MFFGK5C": {"attributes": ["running shoes"]}, "B00I3O3BSS": {"attributes": ["synthetic sole"]}, "B07F2G93BJ": {"attributes": ["slim fit", "button closure", "long sleeve", "machine wash"], "instruction": "Find me slim fit, machine wash men's casual button-down shirts with button closure, long sleeve", "instruction_attributes": ["slim fit", "machine wash", "button closure", "long sleeve"]}, "B002RRT0NM": {"attributes": ["rubber sole"]}, "B085WQKRRJ": {"attributes": ["slim fit", "short sleeve", "wash cold", "regular fit", "hand wash", "machine wash"], "instruction": "Find me slim fit, wash cold, hand wash, machine wash men's henleys with short sleeve, regular fit", "instruction_attributes": ["slim fit", "wash cold", "hand wash", "machine wash", "short sleeve", "regular fit"]}, "B07HRFSNL4": {"attributes": ["cotton spandex", "classic fit", "short sleeve", "machine wash"], "instruction": "Find me machine wash men's dress shirts with cotton spandex, classic fit, short sleeve", "instruction_attributes": ["machine wash", "cotton spandex", "classic fit", "short sleeve"]}, "B00O30JLDK": {"attributes": ["sleeve shirt", "long sleeve", "machine wash"], "instruction": "Find me machine wash men's t-shirts with long sleeve", "instruction_attributes": ["machine wash", "long sleeve"]}, "B07R54PMHD": {"attributes": ["synthetic sole"]}, "B07JZ5HVN6": {"attributes": ["ankle strap"]}, "B01N9I1E62": {"attributes": ["faux fur", "rubber sole"], "instruction": "Find me women's slippers with faux fur, rubber sole", "instruction_attributes": ["faux fur", "rubber sole"]}, "B07N7TDKXQ": {"attributes": ["tee shirt", "tumble dry", "machine washable", "short sleeve"], "instruction": "Find me machine washable men's t-shirts with short sleeve for tumble dry", "instruction_attributes": ["machine washable", "short sleeve", "tumble dry"]}, "B01EX1BWE4": {"attributes": ["long lasting", "moisture wicking", "daily wear"], "instruction": "Find me long lasting, moisture wicking men's boots for daily wear", "instruction_attributes": ["long lasting", "moisture wicking", "daily wear"]}, "B09F2MFG1Q": {"attributes": ["house slippers", "casual shoes", "memory foam", "rubber sole"], "instruction": "Find me men's slippers with memory foam, rubber sole", "instruction_attributes": ["memory foam", "rubber sole"]}, "B07JVVDJ6L": {"attributes": ["polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "machine wash"], "instruction": "Find me machine wash men's tuxedo shirts with polyester heathers, heathers cotton, cotton heather, needle sleeve, classic fit", "instruction_attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"]}, "B094RBNS2K": {"attributes": ["work shoes", "walking shoes", "rubber sole"]}, "B01DJGWDBA": {"attributes": ["memory foam", "rubber sole"], "instruction": "Find me men's fashion sneakers with memory foam, rubber sole", "instruction_attributes": ["memory foam", "rubber sole"]}, "B088TWNTRB": {"attributes": ["slip ons", "day comfort"]}, "B09Q5J5HKG": {"attributes": []}, "B09P5V8ZSK": {"attributes": ["sneakers women", "sandals women", "open toe", "platform sandals", "flat shoes", "flat sandals", "slip ons", "ankle boots", "high heel", "ankle strap", "dress shirt", "arch support", "non slip", "rubber sole"], "instruction": "Find me open toe, non slip women's pumps with high heel, ankle strap, arch support, rubber sole", "instruction_attributes": ["open toe", "non slip", "high heel", "ankle strap", "arch support", "rubber sole"]}, "B09QKJHF4Q": {"attributes": ["shoes men", "slippers women", "slippers men", "shoes women", "water shoes", "house slippers", "casual shoes", "high heel", "closed toe", "day comfort", "ankle strap", "anti slip", "memory foam", "sandals women", "non slip", "rubber sole"], "instruction": "Find me day comfort, anti slip, non slip women's oxfords with high heel, closed toe, ankle strap, memory foam, rubber sole", "instruction_attributes": ["day comfort", "anti slip", "non slip", "high heel", "closed toe", "ankle strap", "memory foam", "rubber sole"]}, "B09MFZ726L": {"attributes": ["open toe", "flat sandals", "daily wear", "rubber sole"], "instruction": "Find me open toe women's flats with rubber sole for daily wear", "instruction_attributes": ["open toe", "rubber sole", "daily wear"]}, "B09HH6P68W": {"attributes": ["rubber sole", "comfortable fit", "unique design", "running shoes", "walking shoes", "non slip"], "instruction": "Find me non slip men's outdoor shoes with rubber sole, comfortable fit, unique design", "instruction_attributes": ["non slip", "rubber sole", "comfortable fit", "unique design"]}, "B01MSP2B0I": {"attributes": ["slim fit", "straight leg", "quality materials"], "instruction": "Find me slim fit, straight leg men's jeans with quality materials", "instruction_attributes": ["slim fit", "straight leg", "quality materials"]}, "B09KXCHWGD": {"attributes": ["polo shirts", "mens shirts", "short sleeve", "button closure", "shirts men"], "instruction": "Find me men's polos with short sleeve, button closure", "instruction_attributes": ["short sleeve", "button closure"]}, "B09HGFV91W": {"attributes": ["long sleeve", "shirts men", "sleeve shirt", "graphic tees", "graphic shirt", "mens shirts", "slim fit", "short sleeve"], "instruction": "Find me slim fit men's suits & sport coats with long sleeve, short sleeve", "instruction_attributes": ["slim fit", "long sleeve", "short sleeve"]}, "B07T3VMGDG": {"attributes": ["tee shirt", "cotton heather", "needle sleeve", "classic fit", "machine wash"], "instruction": "Find me machine wash men's tuxedo shirts with cotton heather, needle sleeve, classic fit", "instruction_attributes": ["machine wash", "cotton heather", "needle sleeve", "classic fit"]}, "B07N7XBN4S": {"attributes": []}, "B0821674CT": {"attributes": ["rubber outsole", "rubber sole"], "instruction": "Find me men's athletic shoes with rubber outsole, rubber sole", "instruction_attributes": ["rubber outsole", "rubber sole"]}, "B08R7STMBS": {"attributes": ["moisture wicking"]}, "B01MG1LTMS": {"attributes": ["graphic tees", "relaxed fit", "tank tops", "needle sleeve"], "instruction": "Find me men's polos with relaxed fit, needle sleeve", "instruction_attributes": ["relaxed fit", "needle sleeve"]}, "B08LKKSL8F": {"attributes": ["pants men", "relaxed fit", "machine wash"], "instruction": "Find me machine wash men's pants with relaxed fit", "instruction_attributes": ["machine wash", "relaxed fit"]}, "B099FKK27G": {"attributes": ["slip ons", "anti slip", "faux fur", "non slip"], "instruction": "Find me anti slip, non slip women's slippers with faux fur", "instruction_attributes": ["anti slip", "non slip", "faux fur"]}, "B096P77XMD": {"attributes": ["running shorts", "shorts men", "athletic shorts", "workout shorts", "comfortable fit", "gym workout", "elastic waistband", "daily wear"], "instruction": "Find me men's shorts with comfortable fit, elastic waistband for gym workout, daily wear", "instruction_attributes": ["comfortable fit", "elastic waistband", "gym workout", "daily wear"]}, "B06W51MMKY": {"attributes": ["slip resistant"]}, "B09Q8RD8YN": {"attributes": ["sweatshirt hoodie", "wash cold", "long sleeve", "machine wash"], "instruction": "Find me wash cold, machine wash men's fashion hoodies & sweatshirts with long sleeve", "instruction_attributes": ["wash cold", "machine wash", "long sleeve"]}, "B09QXF3V3X": {"attributes": ["sandals women", "shoes women", "women sandals", "platform sandals", "casual shoes", "dress shoes", "slippers women", "shoes men", "boots women", "wedge sandals", "walking shoes", "non slip", "rubber sole"], "instruction": "Find me non slip men's outdoor shoes with rubber sole", "instruction_attributes": ["non slip", "rubber sole"]}, "B07DKGJR74": {"attributes": ["pullover sweater", "relaxed fit", "long sleeve"], "instruction": "Find me women's sweaters with relaxed fit, long sleeve", "instruction_attributes": ["relaxed fit", "long sleeve"]}, "B099231V35": {"attributes": ["lounge pants", "swim trunks", "elastic waist", "tops women", "denim shorts", "workout shorts", "cargo shorts", "cargo pants", "dress pants", "yoga pants", "polo shirts", "graphic tees", "shirts men", "slim fit", "gym shorts", "denim pants", "workout leggings", "long sleeve", "everyday wear", "skinny jeans", "straight leg", "pants women", "relaxed fit", "tunic tops", "shirts women"], "instruction": "Find me slim fit, straight leg men's pants with elastic waist, long sleeve, relaxed fit for everyday wear", "instruction_attributes": ["slim fit", "straight leg", "elastic waist", "long sleeve", "relaxed fit", "everyday wear"]}, "B09R7H66FC": {"attributes": ["button closure", "slim fit", "dress pants", "classic fit"], "instruction": "Find me slim fit men's suits & sport coats with button closure, classic fit", "instruction_attributes": ["slim fit", "button closure", "classic fit"]}, "B08ZRR3DZT": {"attributes": ["polyester spandex", "daily wear"], "instruction": "Find me women's dresses with polyester spandex for daily wear", "instruction_attributes": ["polyester spandex", "daily wear"]}, "B09RB2LMTL": {"attributes": ["hoodie sweatshirt"]}, "B08226NDZW": {"attributes": ["officially licensed", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "machine wash"], "instruction": "Find me officially licensed, machine wash men's t-shirts & tanks with polyester heathers, heathers cotton, cotton heather, needle sleeve, classic fit", "instruction_attributes": ["officially licensed", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"]}, "B07FD13LP1": {"attributes": ["machine wash", "drawstring closure", "tumble dry"], "instruction": "Find me machine wash men's shorts with drawstring closure for tumble dry", "instruction_attributes": ["machine wash", "drawstring closure", "tumble dry"]}, "B01JJR8GJG": {"attributes": ["rubber sole"]}, "B09RPRRNVP": {"attributes": ["sandals women", "women sandals", "women sneakers", "platform sandals", "shoes women", "slip ons", "arch support", "flat sandals", "wedge sandals", "high heel", "ankle strap", "open toe", "memory foam", "sneakers shoes", "slippers women", "slip resistant"], "instruction": "Find me open toe, slip resistant women's work & safety footwear with arch support, high heel, ankle strap, memory foam", "instruction_attributes": ["open toe", "slip resistant", "arch support", "high heel", "ankle strap", "memory foam"]}, "B07YDHNZ6B": {"attributes": ["machine wash"]}, "B008QYOGZ2": {"attributes": ["leather sole"]}, "B081KJLMST": {"attributes": ["machine wash"]}, "B09QQJJ3KM": {"attributes": ["sweatshirt hoodie", "long sleeve", "hoodie sweatshirt", "wash cold", "machine wash"], "instruction": "Find me wash cold, machine wash men's fashion hoodies & sweatshirts with long sleeve", "instruction_attributes": ["wash cold", "machine wash", "long sleeve"]}, "B074Z315KK": {"attributes": ["wash cold", "hand wash", "machine wash"], "instruction": "Find me wash cold, hand wash, machine wash men's t-shirts & tanks", "instruction_attributes": ["wash cold", "hand wash", "machine wash"]}, "B00ZDEDVBI": {"attributes": ["star wars"]}, "B09KLQLLT2": {"attributes": ["machine wash", "moisture wicking", "polyester spandex", "long sleeve"], "instruction": "Find me machine wash, moisture wicking men's t-shirts & tanks with polyester spandex, long sleeve", "instruction_attributes": ["machine wash", "moisture wicking", "polyester spandex", "long sleeve"]}, "B09S3TWKSC": {"attributes": ["boots women", "slippers men", "ankle boots", "slippers women", "shoes men", "shoes women", "knee high", "dress shoes", "slip ons", "flat shoes", "house slippers", "steel toe", "casual shoes", "high heel", "faux fur", "running shoes", "sneakers women", "open toe", "arch support"], "instruction": "Find me knee high, open toe women's loafers & slip-ons with steel toe, high heel, faux fur, arch support", "instruction_attributes": ["knee high", "open toe", "steel toe", "high heel", "faux fur", "arch support"]}, "B00ED8OH2C": {"attributes": []}, "B098B8KGMB": {"attributes": ["daily wear"]}, "B07YYNY2ZZ": {"attributes": ["stretch fabric", "cotton spandex", "boxer briefs"], "instruction": "Find me men's underwear with stretch fabric, cotton spandex", "instruction_attributes": ["stretch fabric", "cotton spandex"]}, "B07GYWW3NY": {"attributes": ["straight leg", "machine washable"], "instruction": "Find me straight leg, machine washable men's jeans", "instruction_attributes": ["straight leg", "machine washable"]}, "B09QQP3356": {"attributes": ["short sleeve", "regular fit", "polo shirts", "shirts men", "gym workout", "graphic tees", "long sleeve", "denim shorts", "hoodies men", "polyester cotton", "mens shirts", "tee shirt", "shirts women", "sleeve shirt", "slim fit", "hand wash", "machine wash"], "instruction": "Find me slim fit, hand wash, machine wash men's tuxedo shirts with short sleeve, regular fit, long sleeve, polyester cotton for gym workout", "instruction_attributes": ["slim fit", "hand wash", "machine wash", "short sleeve", "regular fit", "long sleeve", "polyester cotton", "gym workout"]}, "B08X4GMMZV": {"attributes": ["imported zipper"]}, "B098XT346Y": {"attributes": ["button closure"]}, "B07GYTHLGV": {"attributes": ["quality materials"]}, "B09ND8P2QR": {"attributes": ["long sleeve", "pajama set", "elastic waistband", "daily wear", "hand wash"], "instruction": "Find me hand wash men's sleep & lounge with long sleeve, elastic waistband for daily wear", "instruction_attributes": ["hand wash", "long sleeve", "elastic waistband", "daily wear"]}, "B08KYBVQ46": {"attributes": ["elastic waist", "machine wash"], "instruction": "Find me machine wash women's pants with elastic waist", "instruction_attributes": ["machine wash", "elastic waist"]}, "B07MNW91JH": {"attributes": ["slip resistant", "synthetic sole"], "instruction": "Find me slip resistant women's mules & clogs with synthetic sole", "instruction_attributes": ["slip resistant", "synthetic sole"]}, "B09PJ5ZXGH": {"attributes": ["lingerie set", "lingerie women", "women lingerie", "pajama set", "sexy lingerie", "hand wash"]}, "B06Y1C21SC": {"attributes": ["tank tops"]}, "B09N9T673Q": {"attributes": ["shoes women", "sandals women", "flat shoes", "open toe", "slippers women", "ankle strap", "platform sandals", "flat sandals", "knee high", "high heel", "dress shirt", "memory foam", "teen girls", "non slip", "rubber sole"], "instruction": "Find me open toe, knee high, non slip women's pumps with ankle strap, high heel, memory foam, rubber sole for teen girls", "instruction_attributes": ["open toe", "knee high", "non slip", "ankle strap", "high heel", "memory foam", "rubber sole", "teen girls"]}, "B08R3XSC65": {"attributes": []}, "B09SHVH1K7": {"attributes": ["pajama pants", "pants men", "yoga pants", "elastic waist"]}, "B08DXL22JN": {"attributes": ["skinny jeans", "jacket women", "button closure", "polyester spandex", "wash cold", "long sleeve", "machine wash"], "instruction": "Find me wash cold, machine wash women's suiting & blazers with button closure, polyester spandex, long sleeve", "instruction_attributes": ["wash cold", "machine wash", "button closure", "polyester spandex", "long sleeve"]}, "B09ND9DP7J": {"attributes": ["long sleeve", "pajama set", "elastic waistband", "sleeve shirt", "daily wear"], "instruction": "Find me men's sleep & lounge with long sleeve, elastic waistband for daily wear", "instruction_attributes": ["long sleeve", "elastic waistband", "daily wear"]}, "B09NSC5VDG": {"attributes": ["lingerie women", "bikini swimsuit", "long sleeve", "sexy lingerie", "tummy control", "high waist", "short sleeve"], "instruction": "Find me women's lingerie, sleep & lounge with long sleeve, tummy control, high waist, short sleeve", "instruction_attributes": ["long sleeve", "tummy control", "high waist", "short sleeve"]}, "B08JD14GJF": {"attributes": ["quick drying", "moisture wicking", "long sleeve"], "instruction": "Find me quick drying, moisture wicking women's activewear with long sleeve", "instruction_attributes": ["quick drying", "moisture wicking", "long sleeve"]}, "B09S6VN97V": {"attributes": ["relaxed fit", "arch support", "rubber sole"], "instruction": "Find me women's mules & clogs with relaxed fit, arch support, rubber sole", "instruction_attributes": ["relaxed fit", "arch support", "rubber sole"]}, "B01KI9HU1O": {"attributes": ["crewneck sweatshirt", "machine wash", "polyester cotton", "tumble dry", "wash cold"], "instruction": "Find me machine wash, wash cold men's sweaters with polyester cotton for tumble dry", "instruction_attributes": ["machine wash", "wash cold", "polyester cotton", "tumble dry"]}, "B094Q7B3SS": {"attributes": ["shirts women", "long sleeve", "polo shirts", "short sleeve", "shirts men", "tops women", "slim fit", "tank tops", "loose fit"], "instruction": "Find me slim fit, loose fit women's tops, tees & blouses with long sleeve, short sleeve", "instruction_attributes": ["slim fit", "loose fit", "long sleeve", "short sleeve"]}, "B074FMTQNC": {"attributes": ["comfortable fit"]}, "B01AX3JMGG": {"attributes": ["machine wash"]}, "B001J6NXFS": {"attributes": ["rubber outsole"]}, "B07XPR3R7N": {"attributes": ["officially licensed", "needle sleeve", "classic fit"], "instruction": "Find me officially licensed men's t-shirts & tanks with needle sleeve, classic fit", "instruction_attributes": ["officially licensed", "needle sleeve", "classic fit"]}, "B09GLVMLMS": {"attributes": []}, "B09BVYK2WL": {"attributes": ["elastic waist"]}, "B09KRLGSC5": {"attributes": ["long sleeve", "unique design", "sweaters women", "hand wash", "machine wash"], "instruction": "Find me hand wash, machine wash women's sweaters with long sleeve, unique design", "instruction_attributes": ["hand wash", "machine wash", "long sleeve", "unique design"]}, "B09Q5ZHRVM": {"attributes": ["shorts men", "gym shorts", "cargo shorts", "elastic waistband", "yoga shorts", "athletic shorts", "long lasting", "quality materials", "polyester cotton", "moisture wicking", "loose fit", "short sleeve"], "instruction": "Find me long lasting, moisture wicking, loose fit men's shorts with elastic waistband, quality materials, polyester cotton, short sleeve", "instruction_attributes": ["long lasting", "moisture wicking", "loose fit", "elastic waistband", "quality materials", "polyester cotton", "short sleeve"]}, "B07WMMYB6G": {"attributes": ["running shorts", "workout shorts", "gym workout", "drawstring closure", "elastic waist"], "instruction": "Find me men's shorts with drawstring closure, elastic waist for gym workout", "instruction_attributes": ["drawstring closure", "elastic waist", "gym workout"]}, "B07MGB73NJ": {"attributes": ["short sleeve", "unique design", "leggings women", "relaxed fit", "tunic tops", "button closure", "polyester spandex", "machine wash"], "instruction": "Find me machine wash women's tops, tees & blouses with short sleeve, unique design, relaxed fit, button closure, polyester spandex", "instruction_attributes": ["machine wash", "short sleeve", "unique design", "relaxed fit", "button closure", "polyester spandex"]}, "B08L373FLK": {"attributes": ["cotton spandex", "machine washable"], "instruction": "Find me machine washable women's shorts with cotton spandex", "instruction_attributes": ["machine washable", "cotton spandex"]}, "B07LBNRY7H": {"attributes": ["pullover hoodie", "officially licensed", "classic fit"], "instruction": "Find me officially licensed men's sweaters with classic fit", "instruction_attributes": ["officially licensed", "classic fit"]}, "B097RK2B2Q": {"attributes": ["tank tops", "tops women", "short sleeve", "tunic tops", "long sleeve", "tee shirt", "loose fit"], "instruction": "Find me loose fit women's tops, tees & blouses with short sleeve, long sleeve", "instruction_attributes": ["loose fit", "short sleeve", "long sleeve"]}, "B09S632DT3": {"attributes": ["lingerie women", "sexy lingerie", "lingerie set", "women lingerie", "laundry bag", "pajamas women", "pajama set", "hand wash"], "instruction": "Find me hand wash women's lingerie, sleep & lounge for laundry bag", "instruction_attributes": ["hand wash", "laundry bag"]}, "B08ZB1MN8D": {"attributes": ["jogger pants", "long lasting", "easy care", "elastic waistband", "machine washable"], "instruction": "Find me long lasting, easy care, machine washable men's pants with elastic waistband", "instruction_attributes": ["long lasting", "easy care", "machine washable", "elastic waistband"]}, "B09N3CDKGV": {"attributes": ["bathing suits"]}, "B07V3WXX85": {"attributes": ["imported zipper", "machine wash"], "instruction": "Find me machine wash men's jackets & coats with imported zipper", "instruction_attributes": ["machine wash", "imported zipper"]}, "B09HX5CD2D": {"attributes": ["drawstring closure", "elastic waistband", "officially licensed", "machine wash"], "instruction": "Find me officially licensed, machine wash men's shorts with drawstring closure, elastic waistband", "instruction_attributes": ["officially licensed", "machine wash", "drawstring closure", "elastic waistband"]}, "B08NTPQ4KP": {"attributes": ["nylon spandex", "lingerie women", "hand wash", "machine wash"], "instruction": "Find me hand wash, machine wash women's bodysuit tops with nylon spandex", "instruction_attributes": ["hand wash", "machine wash", "nylon spandex"]}, "B072FCNCGP": {"attributes": []}, "B072PCHZC3": {"attributes": ["hoodie sweatshirt", "machine washable"]}, "B015H77AF8": {"attributes": ["nylon spandex", "day comfort", "open toe"], "instruction": "Find me day comfort, open toe women's socks & hosiery with nylon spandex", "instruction_attributes": ["day comfort", "open toe", "nylon spandex"]}, "B09R9YCM6R": {"attributes": ["short sleeve", "shirts men", "sleeve shirt", "graphic tees", "graphic shirt", "slim fit", "mens shirts"], "instruction": "Find me slim fit men's henleys with short sleeve", "instruction_attributes": ["slim fit", "short sleeve"]}, "B09PBPZ24Z": {"attributes": ["jeans women", "skinny jeans", "high waist", "fleece lined", "denim pants", "low rise", "straight leg", "wide leg", "teen girls", "polyester spandex", "jeans men", "butt lifting", "leggings women", "jacket women", "pants women", "regular fit", "button closure", "daily wear", "wash cold", "slim fit", "hand wash", "machine wash"], "instruction": "Find me fleece lined, low rise, straight leg, wide leg, butt lifting, wash cold, slim fit, hand wash, machine wash women's jeans with high waist, polyester spandex, regular fit, button closure for teen girls, daily wear", "instruction_attributes": ["fleece lined", "low rise", "straight leg", "wide leg", "butt lifting", "wash cold", "slim fit", "hand wash", "machine wash", "high waist", "polyester spandex", "regular fit", "button closure", "teen girls", "daily wear"]}, "B0989VY7D8": {"attributes": ["arch support"]}, "B00V6AB796": {"attributes": ["polyester spandex"]}, "B07PVZPS58": {"attributes": ["briefs men", "boxer briefs", "machine wash", "polyester spandex"], "instruction": "Find me machine wash men's underwear with polyester spandex", "instruction_attributes": ["machine wash", "polyester spandex"]}, "B09PB9MWKR": {"attributes": ["swimsuit cover", "bikini swimsuit", "cover ups", "daily wear"]}, "B09MLG4MXX": {"attributes": []}, "B09CDK9Q6Y": {"attributes": ["hand wash", "quality polyester", "long sleeve", "machine wash"], "instruction": "Find me hand wash, machine wash women's dresses with quality polyester, long sleeve", "instruction_attributes": ["hand wash", "machine wash", "quality polyester", "long sleeve"]}, "B09RV4TXKJ": {"attributes": ["lingerie set", "lingerie women", "women lingerie", "sexy lingerie", "high waist"]}, "B07ZXBGDXF": {"attributes": ["elastic closure", "faux fur", "loose fit"], "instruction": "Find me loose fit women's shorts with elastic closure, faux fur", "instruction_attributes": ["loose fit", "elastic closure", "faux fur"]}, "B089K79PQ1": {"attributes": ["hand wash", "tumble dry", "polyester spandex", "daily wear", "wash cold"], "instruction": "Find me hand wash, wash cold women's bodysuit tops with polyester spandex for tumble dry, daily wear", "instruction_attributes": ["hand wash", "wash cold", "polyester spandex", "tumble dry", "daily wear"]}, "B09JC3K6R6": {"attributes": ["high heel", "non slip", "machine wash"], "instruction": "Find me non slip, machine wash women's socks & hosiery with high heel", "instruction_attributes": ["non slip", "machine wash", "high heel"]}, "B00JGBJD3E": {"attributes": ["drawstring closure", "machine wash"], "instruction": "Find me machine wash men's shorts with drawstring closure", "instruction_attributes": ["machine wash", "drawstring closure"]}, "B077YSTCCT": {"attributes": []}, "B09LVGYL1Z": {"attributes": []}, "B09P39QN2W": {"attributes": ["polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "wash cold", "classic fit", "machine wash"], "instruction": "Find me wash cold, machine wash men's shirts with polyester heathers, heathers cotton, cotton heather, needle sleeve, classic fit", "instruction_attributes": ["wash cold", "machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"]}, "B0897M3HYM": {"attributes": []}, "B08HF132PN": {"attributes": ["polyester heathers", "heathers cotton", "cotton heather", "machine wash"], "instruction": "Find me machine wash men's dress shirts with polyester heathers, heathers cotton, cotton heather", "instruction_attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather"]}, "B09QL82H1L": {"attributes": ["flat sandals", "sandals women", "shoes women", "non slip", "flat shoes", "slippers women", "arch support", "hand wash"], "instruction": "Find me non slip, hand wash women's loafers & slip-ons with arch support", "instruction_attributes": ["non slip", "hand wash", "arch support"]}, "B09S3BN15C": {"attributes": ["short sleeve", "shirts men", "polo shirts", "long sleeve", "regular fit", "slim fit", "graphic tees", "graphic shirt", "mens shirts", "sleeve shirt", "loose fit"], "instruction": "Find me slim fit, loose fit men's henleys with short sleeve, long sleeve, regular fit", "instruction_attributes": ["slim fit", "loose fit", "short sleeve", "long sleeve", "regular fit"]}, "B09QCVCYVY": {"attributes": ["long sleeve", "elastic waist", "lounge pants", "wide leg", "high waist", "slim fit", "denim pants", "running shorts", "workout leggings", "jogger pants", "pullover sweater", "skinny jeans", "cargo pants", "leggings women", "straight leg", "hoodie sweatshirt", "pants men", "sweaters women", "yoga pants", "tummy control", "graphic tees", "sleeve shirt", "tank tops", "shirts men", "tops women", "loose fit", "short sleeve"], "instruction": "Find me wide leg, slim fit, straight leg, loose fit women's shorts with long sleeve, elastic waist, high waist, tummy control, short sleeve", "instruction_attributes": ["wide leg", "slim fit", "straight leg", "loose fit", "long sleeve", "elastic waist", "high waist", "tummy control", "short sleeve"]}, "B09682D2T6": {"attributes": ["polyester cotton"]}, "B09NMBV996": {"attributes": ["pajamas women", "pajama set", "sexy lingerie"]}, "B09GRCNRHH": {"attributes": []}, "B079PH6955": {"attributes": ["needle sleeve", "classic fit"], "instruction": "Find me men's t-shirts & tanks with needle sleeve, classic fit", "instruction_attributes": ["needle sleeve", "classic fit"]}, "B099WX3CV5": {"attributes": ["short sleeve", "high waist", "polyester spandex", "daily wear", "slim fit", "machine wash"], "instruction": "Find me slim fit, machine wash women's jumpsuits, rompers & overalls with short sleeve, high waist, polyester spandex for daily wear", "instruction_attributes": ["slim fit", "machine wash", "short sleeve", "high waist", "polyester spandex", "daily wear"]}, "B09NDS8F4V": {"attributes": ["pajamas women", "button closure", "quality polyester", "polyester spandex", "daily wear", "long sleeve"], "instruction": "Find me women's jumpsuits, rompers & overalls with button closure, quality polyester, polyester spandex, long sleeve for daily wear", "instruction_attributes": ["button closure", "quality polyester", "polyester spandex", "long sleeve", "daily wear"]}, "B09PVNLVRW": {"attributes": ["jumpsuits women", "long sleeve", "daily wear", "slim fit"], "instruction": "Find me slim fit women's jumpsuits, rompers & overalls with long sleeve for daily wear", "instruction_attributes": ["slim fit", "long sleeve", "daily wear"]}, "B09B2HN6NN": {"attributes": ["tops women", "drawstring closure", "elastic waist", "polyester spandex", "machine wash"], "instruction": "Find me machine wash men's pants with drawstring closure, elastic waist, polyester spandex", "instruction_attributes": ["machine wash", "drawstring closure", "elastic waist", "polyester spandex"]}, "B08HW24C55": {"attributes": ["long sleeve", "long lasting", "crewneck sweatshirt", "officially licensed", "relaxed fit"], "instruction": "Find me long lasting, officially licensed women's fashion hoodies & sweatshirts with long sleeve, relaxed fit", "instruction_attributes": ["long lasting", "officially licensed", "long sleeve", "relaxed fit"]}, "B09PYSKD7H": {"attributes": ["shorts men", "gym shorts", "workout shorts", "shirts men", "running shorts", "gym workout", "mens shirts", "athletic shorts", "swim trunks", "lounge pants", "elastic waist", "classic fit", "short sleeve"], "instruction": "Find me men's shorts with elastic waist, classic fit, short sleeve for gym workout", "instruction_attributes": ["elastic waist", "classic fit", "short sleeve", "gym workout"]}, "B09Q37JQZ6": {"attributes": ["tummy control", "piece swimsuit", "swimsuit cover", "bikini swimsuit", "bathing suits", "tops women", "cover ups", "high waist", "machine wash"], "instruction": "Find me machine wash women's swimsuits & cover ups with tummy control, high waist", "instruction_attributes": ["machine wash", "tummy control", "high waist"]}, "B09NPML43M": {"attributes": ["shirts women", "tees women", "tops women", "short sleeve", "loose fit", "tunic tops", "teen girls", "day comfort", "graphic tees", "polyester spandex", "hand wash"], "instruction": "Find me loose fit, day comfort, hand wash women's tops, tees & blouses with short sleeve, polyester spandex for teen girls", "instruction_attributes": ["loose fit", "day comfort", "hand wash", "short sleeve", "polyester spandex", "teen girls"]}, "B0969G2DH8": {"attributes": ["polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "machine wash"], "instruction": "Find me machine wash men's dress shirts with polyester heathers, heathers cotton, cotton heather, needle sleeve, classic fit", "instruction_attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"]}, "B09N6WLYY1": {"attributes": []}, "B005WXS61A": {"attributes": []}, "B09RK77R3V": {"attributes": ["shorts men", "yoga shorts", "denim shorts", "short sleeve", "gym shorts", "athletic shorts", "workout shorts", "butt lifting", "running shorts", "cargo shorts", "mens shirts", "elastic waistband", "machine washable", "hand wash"], "instruction": "Find me butt lifting, machine washable, hand wash men's shorts with short sleeve, elastic waistband", "instruction_attributes": ["butt lifting", "machine washable", "hand wash", "short sleeve", "elastic waistband"]}, "B085FQ4YL5": {"attributes": []}, "B09HY9XB8P": {"attributes": ["briefs men", "boxer briefs", "machine wash", "polyester spandex"], "instruction": "Find me machine wash men's underwear with polyester spandex", "instruction_attributes": ["machine wash", "polyester spandex"]}, "B092T8CY89": {"attributes": ["shorts men"]}, "B09KP78G37": {"attributes": ["winter warm", "long sleeve", "jacket women", "faux fur"], "instruction": "Find me winter warm women's coats, jackets & vests with long sleeve, faux fur", "instruction_attributes": ["winter warm", "long sleeve", "faux fur"]}, "B0861GWJV2": {"attributes": ["nylon spandex", "quick drying", "long sleeve"], "instruction": "Find me quick drying women's swimsuits & cover ups with nylon spandex, long sleeve", "instruction_attributes": ["quick drying", "nylon spandex", "long sleeve"]}, "B08BC7JRLQ": {"attributes": ["jogger pants", "high waist", "elastic closure", "yoga pants", "machine wash"], "instruction": "Find me machine wash women's pants with high waist, elastic closure", "instruction_attributes": ["machine wash", "high waist", "elastic closure"]}, "B09QXG3BM2": {"attributes": ["women lingerie"]}, "B09QSQ8RT9": {"attributes": ["short sleeve", "gym workout", "sleeve shirt", "contrast color", "shirts men", "polo shirts", "tee shirt", "regular fit", "drawstring waist", "graphic tees", "tank tops", "loose fit", "slim fit"], "instruction": "Find me loose fit, slim fit men's shorts with short sleeve, contrast color, regular fit, drawstring waist for gym workout", "instruction_attributes": ["loose fit", "slim fit", "short sleeve", "contrast color", "regular fit", "drawstring waist", "gym workout"]}, "B07Z9M6KH1": {"attributes": []}, "B09J95S478": {"attributes": ["christmas sweater", "long sleeve"]}, "B09QGK5XHZ": {"attributes": ["shirts men", "jacket women", "long sleeve", "slim fit", "pullover hoodie", "shirts women", "mens shirts", "tee shirt", "graphic tees", "sleeve shirt", "tank tops"], "instruction": "Find me slim fit men's tuxedo shirts with long sleeve", "instruction_attributes": ["slim fit", "long sleeve"]}, "B09P7H5YK7": {"attributes": ["polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "machine wash"], "instruction": "Find me machine wash men's dress shirts with polyester heathers, heathers cotton, cotton heather, needle sleeve, classic fit", "instruction_attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"]}, "B0756KQCQY": {"attributes": ["dry clean"]}, "B09Q67H373": {"attributes": ["long sleeve", "shirts men", "dress shirt", "graphic tees", "sleeve shirt", "tops women", "short sleeve", "gym workout", "polyester cotton", "elastic waist", "regular fit", "tunic tops", "shirts women", "tank tops", "loose fit", "slim fit"], "instruction": "Find me loose fit, slim fit men's tuxedo shirts with long sleeve, short sleeve, polyester cotton, elastic waist, regular fit for gym workout", "instruction_attributes": ["loose fit", "slim fit", "long sleeve", "short sleeve", "polyester cotton", "elastic waist", "regular fit", "gym workout"]}, "B07Q48JVT8": {"attributes": ["officially licensed", "wash cold", "classic fit", "machine wash"], "instruction": "Find me officially licensed, wash cold, machine wash women's fashion hoodies & sweatshirts with classic fit", "instruction_attributes": ["officially licensed", "wash cold", "machine wash", "classic fit"]}, "B09QW2HQRK": {"attributes": ["low rise", "lounge pants", "pants men"]}, "B08KGWLWFN": {"attributes": ["crewneck sweatshirt", "polyester cotton"]}, "B08L9SFBXV": {"attributes": ["christmas sweater"]}, "B09PV9J15D": {"attributes": ["lingerie women", "lingerie set", "sexy lingerie"]}, "B09PL5W9PD": {"attributes": ["drawstring closure", "flat shoes", "piece swimsuit", "ankle boots", "bathing suits", "walking shoes", "elastic waistband", "tummy control", "machine wash"], "instruction": "Find me machine wash women's swimsuits & cover ups with drawstring closure, elastic waistband, tummy control", "instruction_attributes": ["machine wash", "drawstring closure", "elastic waistband", "tummy control"]}, "B09P5CRVQ6": {"attributes": ["long sleeve", "tops women", "crewneck sweatshirt", "shirts women", "sleeve shirt", "daily wear", "sweatshirt hoodie", "pullover sweater", "hoodies women", "skinny jeans", "jacket women", "zip hoodie", "fleece lined", "pullover hoodie", "tunic tops", "tank tops", "classic fit"], "instruction": "Find me fleece lined women's activewear with long sleeve, classic fit for daily wear", "instruction_attributes": ["fleece lined", "long sleeve", "classic fit", "daily wear"]}, "B078WSND96": {"attributes": ["mens shirts", "shirts men", "short sleeve", "graphic shirt", "tee shirt", "fashion design", "long sleeve", "button closure", "sleeve shirt", "tank tops"], "instruction": "Find me men's t-shirts & tanks with short sleeve, fashion design, long sleeve, button closure", "instruction_attributes": ["short sleeve", "fashion design", "long sleeve", "button closure"]}, "B09PVPYWHB": {"attributes": []}, "B09NNMV9LN": {"attributes": ["long sleeve", "short sleeve", "loose fit", "light weight", "sweatshirts women", "shirts women", "tops women", "contrast color", "unique design", "gym workout", "zip hoodie", "mens shirts", "teen girls", "tunic tops", "tank tops", "slim fit"], "instruction": "Find me loose fit, light weight, slim fit men's henleys with long sleeve, short sleeve, contrast color, unique design for gym workout, teen girls", "instruction_attributes": ["loose fit", "light weight", "slim fit", "long sleeve", "short sleeve", "contrast color", "unique design", "gym workout", "teen girls"]}, "B09S6LZYHQ": {"attributes": ["swimsuits women", "tummy control", "teen girls", "piece swimsuit"], "instruction": "Find me women's swimsuits & cover ups with tummy control for teen girls", "instruction_attributes": ["tummy control", "teen girls"]}, "B07HDK7TPT": {"attributes": ["long sleeve"]}, "B085S5P7WB": {"attributes": ["yoga pants", "pants women", "machine washable", "tummy control", "high waist", "daily wear", "hand wash", "machine wash"], "instruction": "Find me machine washable, hand wash, machine wash women's pants with tummy control, high waist for daily wear", "instruction_attributes": ["machine washable", "hand wash", "machine wash", "tummy control", "high waist", "daily wear"]}, "B09N974RWN": {"attributes": ["bikini swimsuit", "cover ups", "bathing suits", "quick drying", "high waist", "machine wash"], "instruction": "Find me quick drying, machine wash women's swimsuits & cover ups with high waist", "instruction_attributes": ["quick drying", "machine wash", "high waist"]}, "B09T756KQ5": {"attributes": ["long sleeve", "short sleeve", "tops women", "shirts women", "shirts men", "graphic tees", "tunic tops", "slim fit", "tank tops", "contrast color", "tees women", "pullover hoodie", "mens shirts", "tee shirt", "teen girls", "loose fit", "classic fit"], "instruction": "Find me slim fit, loose fit men's tuxedo shirts with long sleeve, short sleeve, contrast color, classic fit for teen girls", "instruction_attributes": ["slim fit", "loose fit", "long sleeve", "short sleeve", "contrast color", "classic fit", "teen girls"]}, "B09PLBDCBY": {"attributes": ["lingerie women", "lingerie set", "women lingerie", "pajamas women", "sexy lingerie", "machine wash"]}, "B09QCP4579": {"attributes": ["yoga pants", "butt lifting", "high waist", "yoga shorts", "light weight", "leggings women", "tummy control"], "instruction": "Find me butt lifting, light weight women's shorts with high waist, tummy control", "instruction_attributes": ["butt lifting", "light weight", "high waist", "tummy control"]}, "B09PBG3GYB": {"attributes": ["lingerie set", "sexy lingerie", "lingerie women"]}, "B09KM7X1G4": {"attributes": ["pullover hoodie", "moisture wicking"]}, "B07WX8FPGG": {"attributes": ["pullover sweater"]}, "B09M63B87V": {"attributes": ["shirts men", "long sleeve", "pullover sweater", "tunic tops", "shirts women", "tank tops", "tops women", "stretch fabric", "denim shorts", "sweatshirt hoodie", "hoodies women", "jacket women", "sweatshirts women", "pullover hoodie", "sweaters women", "yoga pants", "pants women", "teen girls", "polyester spandex", "sleeve shirt", "daily wear", "hand wash"], "instruction": "Find me hand wash women's sweaters with long sleeve, stretch fabric, polyester spandex for teen girls, daily wear", "instruction_attributes": ["hand wash", "long sleeve", "stretch fabric", "polyester spandex", "teen girls", "daily wear"]}, "B09RVF4JP1": {"attributes": ["polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit", "machine wash"], "instruction": "Find me machine wash men's t-shirts & tanks with polyester heathers, heathers cotton, cotton heather, needle sleeve, classic fit", "instruction_attributes": ["machine wash", "polyester heathers", "heathers cotton", "cotton heather", "needle sleeve", "classic fit"]}, "B08G8DXR5N": {"attributes": ["hand wash", "nylon spandex", "machine wash"], "instruction": "Find me hand wash, machine wash women's activewear with nylon spandex", "instruction_attributes": ["hand wash", "machine wash", "nylon spandex"]}, "B08Q43LJKJ": {"attributes": ["pants women", "pajama pants", "pants men", "cargo pants", "leggings women", "yoga pants", "boots women", "pajamas women", "slippers women", "lingerie women", "lounge pants", "fleece lined", "sweaters women", "shirts women", "jogger pants", "women lingerie", "long sleeve", "house slippers", "hoodies women", "christmas sweater", "dress pants", "sweatshirts women", "sexy lingerie", "teen girls", "shoes women"], "instruction": "Find me fleece lined women's pants with long sleeve for teen girls", "instruction_attributes": ["fleece lined", "long sleeve", "teen girls"]}, "B093KBGC44": {"attributes": ["laundry bag", "blouse hosiery"], "instruction": "Find me women's socks & hosiery with blouse hosiery for laundry bag", "instruction_attributes": ["blouse hosiery", "laundry bag"]}, "B01GEVN2HG": {"attributes": ["elastic waistband", "machine wash"], "instruction": "Find me machine wash men's underwear with elastic waistband", "instruction_attributes": ["machine wash", "elastic waistband"]}, "B093YT83QR": {"attributes": ["laundry bag", "blouse hosiery"], "instruction": "Find me women's socks & hosiery with blouse hosiery for laundry bag", "instruction_attributes": ["blouse hosiery", "laundry bag"]}, "B0859PP21L": {"attributes": ["easy care", "quality materials", "polyester spandex"], "instruction": "Find me easy care women's activewear with quality materials, polyester spandex", "instruction_attributes": ["easy care", "quality materials", "polyester spandex"]}, "B01HQTWL6S": {"attributes": ["machine wash", "dry clean", "tumble dry", "wash cold"], "instruction": "Find me machine wash, wash cold women's fashion hoodies & sweatshirts for dry clean, tumble dry", "instruction_attributes": ["machine wash", "wash cold", "dry clean", "tumble dry"]}, "B093K5JK25": {"attributes": ["laundry bag", "blouse hosiery"], "instruction": "Find me women's socks & hosiery with blouse hosiery for laundry bag", "instruction_attributes": ["blouse hosiery", "laundry bag"]}, "B07Y81FQV3": {"attributes": ["console table", "sofa table", "steel frame", "tv stand", "home office", "living room"], "instruction": "Find me console tables with steel frame for living room", "instruction_attributes": ["steel frame", "living room"]}, "B07G4HJR5V": {"attributes": ["faux leather", "sectional sofa", "coffee table", "easy clean"], "instruction": "Find me easy clean living room sets with faux leather", "instruction_attributes": ["easy clean", "faux leather"]}, "B09KTB1VG6": {"attributes": ["fleece blanket", "throw blanket", "fleece throw", "sofa bed"]}, "B01N4JDM7G": {"attributes": ["mid century", "living room"], "instruction": "Find me mid century ottomans for living room", "instruction_attributes": ["mid century", "living room"]}, "B09C1YWG8W": {"attributes": ["throw blanket", "machine washable"]}, "B099WH1RTM": {"attributes": ["wall decor", "wall art", "ready hang", "living room", "solid wood"], "instruction": "Find me ready hang wall art with solid wood for living room", "instruction_attributes": ["ready hang", "solid wood", "living room"]}, "B09B7G7P58": {"attributes": ["dining table", "table set", "dining room", "space saving", "easy assemble"], "instruction": "Find me space saving, easy assemble living room sets for dining room", "instruction_attributes": ["space saving", "easy assemble", "dining room"]}, "B09GBF12CY": {"attributes": ["floor lamp", "remote control", "living room", "dining room"], "instruction": "Find me floor lamps for living room, dining room", "instruction_attributes": ["living room", "dining room"]}, "B0784G74Z9": {"attributes": ["coffee table"]}, "B09DG3YTHY": {"attributes": ["throw blanket", "fleece throw", "fleece blanket", "sofa bed", "eco friendly"], "instruction": "Find me eco friendly throw blankets with fleece throw", "instruction_attributes": ["eco friendly", "fleece throw"]}, "B07SXRVKZ2": {"attributes": ["storage basket", "eco friendly"]}, "B08L2ZDWN2": {"attributes": ["pillow covers", "super soft", "throw pillow", "living room"], "instruction": "Find me super soft decorative pillows for living room", "instruction_attributes": ["super soft", "living room"]}, "B079LQTZNC": {"attributes": ["accent chair", "living room"]}, "B08K7LDM7Q": {"attributes": ["pillow covers", "throw pillow", "double sided"]}, "B000J3HZXS": {"attributes": []}, "B0943TLW3L": {"attributes": ["exquisite workmanship", "long lasting", "home decor", "living room"], "instruction": "Find me long lasting artificial plants with exquisite workmanship for living room", "instruction_attributes": ["long lasting", "exquisite workmanship", "living room"]}, "B07P24ZMXK": {"attributes": ["pillow covers", "sofa bed", "throw pillow", "home decor"]}, "B096G437B4": {"attributes": ["led bulb", "bronze finish", "table lamp", "steel frame", "mid century"], "instruction": "Find me mid century table lamps with bronze finish, steel frame", "instruction_attributes": ["mid century", "bronze finish", "steel frame"]}, "B09BKPV8LR": {"attributes": ["adjustable shelves", "tv cabinet", "tv stand", "console table"]}, "B0854JTZMT": {"attributes": ["pendant light", "living room", "dining room"], "instruction": "Find me pendants and chandeliers with pendant light for living room, dining room", "instruction_attributes": ["pendant light", "living room", "dining room"]}, "B08JQ5TLQV": {"attributes": ["soy wax", "long lasting", "lead free"], "instruction": "Find me long lasting, lead free candles with soy wax", "instruction_attributes": ["long lasting", "lead free", "soy wax"]}, "B01MR4Q0WA": {"attributes": ["engineered wood", "file cabinet"]}, "B08MFGNXW3": {"attributes": ["file cabinet", "eco friendly", "storage cabinet", "heavy duty", "assembly required", "easy clean"], "instruction": "Find me eco friendly, heavy duty, assembly required, easy clean file cabinets", "instruction_attributes": ["eco friendly", "heavy duty", "assembly required", "easy clean"]}, "B073KYWX93": {"attributes": ["button tufted"]}, "B08PYQVNBQ": {"attributes": ["home office", "shelf bookcase", "storage shelf", "metal frame", "living room"]}, "B07Q87P8DQ": {"attributes": ["glass shade", "clear glass", "kitchen island"], "instruction": "Find me pendants and chandeliers with glass shade, clear glass", "instruction_attributes": ["glass shade", "clear glass"]}, "B07QNLY8KV": {"attributes": ["scented candle"]}, "B00062IG3A": {"attributes": ["bronze finish", "floor lamp", "living room"], "instruction": "Find me floor lamps with bronze finish for living room", "instruction_attributes": ["bronze finish", "living room"]}, "B095KCTB3Y": {"attributes": ["office desk", "pu leather", "non slip", "easy clean"], "instruction": "Find me non slip, easy clean computer armoires with pu leather", "instruction_attributes": ["non slip", "easy clean", "pu leather"]}, "B09KQQNRRM": {"attributes": ["pendant light", "kitchen island", "height adjustable", "light fixture", "wood frame", "dining room", "living room"], "instruction": "Find me height adjustable pendants and chandeliers with pendant light, light fixture, wood frame for dining room, living room", "instruction_attributes": ["height adjustable", "pendant light", "light fixture", "wood frame", "dining room", "living room"]}, "B07T9LZKM7": {"attributes": ["throw pillow", "machine washable"]}, "B092QQBW4Y": {"attributes": ["wall art", "living room"]}, "B0928LGTVF": {"attributes": ["clear glass", "glass shade", "vanity light", "light fixture", "wall sconce", "living room", "dining room"], "instruction": "Find me sconces with clear glass, glass shade, vanity light, light fixture for living room, dining room", "instruction_attributes": ["clear glass", "glass shade", "vanity light", "light fixture", "living room", "dining room"]}, "B08D74SKT2": {"attributes": ["brushed nickel", "nickel finish", "vanity light", "clear glass", "glass shade"], "instruction": "Find me sconces with brushed nickel, nickel finish, vanity light, clear glass, glass shade", "instruction_attributes": ["brushed nickel", "nickel finish", "vanity light", "clear glass", "glass shade"]}, "B0101Q3V7Q": {"attributes": ["floor lamp"]}, "B09LHM4WQS": {"attributes": ["coffee table", "dining table", "steel frame", "living room", "storage space"], "instruction": "Find me coffee tables with steel frame, storage space for living room", "instruction_attributes": ["steel frame", "storage space", "living room"]}, "B09Q3NSH3D": {"attributes": ["wall mirror", "wall art", "living room"]}, "B096RV56XP": {"attributes": ["machine washable", "living room"], "instruction": "Find me machine washable window coverings for living room", "instruction_attributes": ["machine washable", "living room"]}, "B07ZWVS584": {"attributes": []}, "B09F6SCW47": {"attributes": ["wall mounted", "tv cabinet", "storage shelves", "tv stand", "storage cabinet", "living room", "white item", "easy clean"], "instruction": "Find me wall mounted, white item, easy clean tv stands for living room", "instruction_attributes": ["wall mounted", "white item", "easy clean", "living room"]}, "B0836D6CW4": {"attributes": ["fleece throw", "super soft", "throw blanket", "machine washable"], "instruction": "Find me super soft, machine washable throw blankets with fleece throw", "instruction_attributes": ["super soft", "machine washable", "fleece throw"]}, "B01NCQLFPH": {"attributes": ["wall sconce"]}, "B089KGBJGW": {"attributes": ["memory foam"]}, "B07CJSNLNZ": {"attributes": []}, "B07GLPCY1C": {"attributes": ["home office"]}, "B015MSXCL8": {"attributes": []}, "B07S2Z9KGP": {"attributes": ["wall mirror", "wall decor", "space saving", "home decor", "living room"], "instruction": "Find me space saving decorative mirrors for living room", "instruction_attributes": ["space saving", "living room"]}, "B01N9RL0AX": {"attributes": ["shelf bookcase", "coated steel"]}, "B09DYFZM1X": {"attributes": ["pillow covers", "throw pillow"]}, "B08CV7M1HV": {"attributes": ["tempered glass", "sofa table", "mid century", "end table", "living room", "coffee table", "solid wood"], "instruction": "Find me mid century coffee tables with tempered glass, solid wood for living room", "instruction_attributes": ["mid century", "tempered glass", "solid wood", "living room"]}, "B07N33BPQ6": {"attributes": []}, "B09B7ZKMVY": {"attributes": ["futon mattress", "queen size", "spot clean", "easy clean"], "instruction": "Find me queen size, spot clean, easy clean mattresses", "instruction_attributes": ["queen size", "spot clean", "easy clean"]}, "B082KBN23S": {"attributes": ["decorative mirror", "wall mounted", "living room"], "instruction": "Find me wall mounted decorative mirrors for living room", "instruction_attributes": ["wall mounted", "living room"]}, "B091CNTBNS": {"attributes": ["light fixture", "easy clean"], "instruction": "Find me easy clean pendants and chandeliers with light fixture", "instruction_attributes": ["easy clean", "light fixture"]}, "B077KJXD99": {"attributes": ["memory foam", "high density"], "instruction": "Find me high density mattresses with memory foam", "instruction_attributes": ["high density", "memory foam"]}, "B09GY58GDH": {"attributes": ["dining chair", "solid wood", "button tufted", "wood frame", "mid century", "high density", "dining room", "easy assemble"], "instruction": "Find me button tufted, mid century, high density, easy assemble dining sets with solid wood, wood frame for dining room", "instruction_attributes": ["button tufted", "mid century", "high density", "easy assemble", "solid wood", "wood frame", "dining room"]}, "B09NTCCVGX": {"attributes": ["storage box", "faux leather", "non slip", "coffee table", "easy install"], "instruction": "Find me non slip, easy install ottomans with faux leather", "instruction_attributes": ["non slip", "easy install", "faux leather"]}, "B095SWN6C3": {"attributes": ["vanity light", "glass shade", "light fixture", "wall sconce", "easy install", "living room"], "instruction": "Find me easy install sconces with vanity light, glass shade, light fixture for living room", "instruction_attributes": ["easy install", "vanity light", "glass shade", "light fixture", "living room"]}, "B09B77K9YQ": {"attributes": ["console table", "wood frame", "sofa table", "living room"], "instruction": "Find me console tables with wood frame for living room", "instruction_attributes": ["wood frame", "living room"]}, "B099Z6YWL1": {"attributes": ["storage shelf", "baker rack", "microwave oven", "storage rack", "storage unit", "white finish", "dining table", "white item", "metal frame", "storage space"], "instruction": "Find me white item baker's racks with storage unit, white finish, storage space", "instruction_attributes": ["white item", "storage unit", "white finish", "storage space"]}, "B0743JKHBV": {"attributes": ["printing technology", "double sided", "throw pillow", "machine washable"], "instruction": "Find me double sided, machine washable decorative pillows with printing technology", "instruction_attributes": ["double sided", "machine washable", "printing technology"]}, "B09S6S7LG1": {"attributes": ["tv stand", "high gloss", "entertainment center", "wall mounted", "living room", "storage space"], "instruction": "Find me wall mounted tv stands with high gloss, storage space for living room", "instruction_attributes": ["wall mounted", "high gloss", "storage space", "living room"]}, "B09BYX42DW": {"attributes": ["machine washable", "living room", "home office"], "instruction": "Find me machine washable living room sets for living room", "instruction_attributes": ["machine washable", "living room"]}, "B00D43URUS": {"attributes": []}, "B00BL2YE2Q": {"attributes": ["floor lamp"]}, "B07BKRV1QH": {"attributes": ["wall art"]}, "B08LF355G2": {"attributes": ["shelf bookcase", "long lasting"]}, "B07ZBCF88X": {"attributes": ["glass shade", "dining room", "contemporary design", "clear glass", "height adjustable", "kitchen island"], "instruction": "Find me height adjustable dining tables with glass shade, contemporary design, clear glass for dining room", "instruction_attributes": ["height adjustable", "glass shade", "contemporary design", "clear glass", "dining room"]}, "B0029LHT7A": {"attributes": []}, "B00IMMU4G8": {"attributes": []}, "B09L44298X": {"attributes": ["desk chair", "office chair", "home office", "accent chair", "height adjustable", "stainless steel", "office desk", "living room", "metal frame"], "instruction": "Find me height adjustable home office chairs with stainless steel for living room", "instruction_attributes": ["height adjustable", "stainless steel", "living room"]}, "B094YFJ95K": {"attributes": ["twin size", "storage box", "sofa bed", "wood frame", "bed frame", "living room", "easy assemble", "storage space"], "instruction": "Find me twin size, easy assemble bedframes with wood frame, storage space for living room", "instruction_attributes": ["twin size", "easy assemble", "wood frame", "storage space", "living room"]}, "B085RBZCHH": {"attributes": ["mid century", "desk chair", "heavy duty", "coffee table", "easy install"], "instruction": "Find me mid century, heavy duty, easy install furniture sets", "instruction_attributes": ["mid century", "heavy duty", "easy install"]}, "B09GK4XTJG": {"attributes": ["pendant light", "wall mounted", "dining room", "living room"], "instruction": "Find me wall mounted pendants and chandeliers with pendant light for dining room, living room", "instruction_attributes": ["wall mounted", "pendant light", "dining room", "living room"]}, "B08FQTMCNM": {"attributes": ["pu leather", "height adjustable", "accent chair", "faux leather", "assembly required"], "instruction": "Find me height adjustable, assembly required bases with pu leather, faux leather", "instruction_attributes": ["height adjustable", "assembly required", "pu leather", "faux leather"]}, "B09MCTMRH6": {"attributes": ["computer desk", "home office", "office desk", "easy assemble"]}, "B089B1K9LJ": {"attributes": ["storage cabinet"]}, "B09P8D2Q1Q": {"attributes": ["file cabinet", "storage cabinet", "home office", "storage shelves", "storage shelf", "metal frame", "storage space", "living room"], "instruction": "Find me home office cabinets with storage space for living room", "instruction_attributes": ["storage space", "living room"]}, "B018A8MPJ2": {"attributes": ["storage unit", "queen size"], "instruction": "Find me queen size beds with storage unit", "instruction_attributes": ["queen size", "storage unit"]}, "B07PM8MJKZ": {"attributes": ["double sided", "fully assembled", "long lasting"], "instruction": "Find me double sided, fully assembled, long lasting mattresses", "instruction_attributes": ["double sided", "fully assembled", "long lasting"]}, "B07FDJYBVW": {"attributes": ["white finish", "storage rack", "wood frame", "assembly required"], "instruction": "Find me assembly required kitchen islands with white finish, wood frame", "instruction_attributes": ["assembly required", "white finish", "wood frame"]}, "B09Q2ZBB1G": {"attributes": ["computer desk", "home office", "office desk", "storage shelves", "living room"]}, "B07DRFDWVT": {"attributes": ["machine washable", "living room"], "instruction": "Find me machine washable living room sets for living room", "instruction_attributes": ["machine washable", "living room"]}, "B08DHS3TH5": {"attributes": ["vanity light", "clear glass", "light fixture", "mid century"], "instruction": "Find me mid century vanities with vanity light, clear glass, light fixture", "instruction_attributes": ["mid century", "vanity light", "clear glass", "light fixture"]}, "B09LCM3NKN": {"attributes": ["window curtain", "living room"]}, "B08R5Z7S2K": {"attributes": ["file cabinet", "storage space", "storage cabinet", "easy clean", "easy assemble"], "instruction": "Find me easy clean, easy assemble file cabinets with storage space", "instruction_attributes": ["easy clean", "easy assemble", "storage space"]}, "B01I5B1Q1M": {"attributes": ["dining chair", "bar stool", "faux leather", "mid century", "solid wood", "easy clean"], "instruction": "Find me mid century, easy clean bar stools with faux leather, solid wood", "instruction_attributes": ["mid century", "easy clean", "faux leather", "solid wood"]}, "B079V5YD92": {"attributes": ["engineered wood", "assembly required"], "instruction": "Find me assembly required baker's racks with engineered wood", "instruction_attributes": ["assembly required", "engineered wood"]}, "B09RQ22QJY": {"attributes": ["fully assembled"]}, "B092D51DYS": {"attributes": []}, "B09PTQFBNT": {"attributes": ["computer desk", "easy assemble", "home office", "storage shelves", "steel frame", "metal frame", "storage space"], "instruction": "Find me easy assemble drafting tables with steel frame, storage space", "instruction_attributes": ["easy assemble", "steel frame", "storage space"]}, "B089Q6FS79": {"attributes": ["wall art", "home decor"]}, "B097TTL54K": {"attributes": ["home office", "wall art"]}, "B07TNKTKF4": {"attributes": ["long lasting"]}, "B07V5WMYXS": {"attributes": []}, "B08R9QHFPC": {"attributes": ["high density", "foam mattress", "space saving", "easy clean"], "instruction": "Find me high density, space saving, easy clean mattresses", "instruction_attributes": ["high density", "space saving", "easy clean"]}, "B0873B8Y7P": {"attributes": ["wall sconce", "clear glass", "wall decor", "assembly required", "living room"], "instruction": "Find me assembly required sconces with clear glass for living room", "instruction_attributes": ["assembly required", "clear glass", "living room"]}, "B003HBR86S": {"attributes": []}, "B00KL9G3Z6": {"attributes": ["bed frame"]}, "B09N55XTPL": {"attributes": ["easy clean"]}, "B0166POJEU": {"attributes": []}, "B07S8F7SHK": {"attributes": ["dining table", "sofa table", "white item", "assembly required", "dining room", "home office"], "instruction": "Find me white item, assembly required console tables for dining room", "instruction_attributes": ["white item", "assembly required", "dining room"]}, "B08KY1G31G": {"attributes": ["soy wax", "scented candle", "living room"], "instruction": "Find me candles with soy wax for living room", "instruction_attributes": ["soy wax", "living room"]}, "B08HN55NGW": {"attributes": []}, "B08D3GRMHK": {"attributes": ["lead free"]}, "B08TR23329": {"attributes": ["led bulb", "bronze finish", "floor lamp", "steel frame"], "instruction": "Find me floor lamps with bronze finish, steel frame", "instruction_attributes": ["bronze finish", "steel frame"]}, "B09GVJBPRR": {"attributes": ["dining table", "non slip", "easy clean", "dining room"], "instruction": "Find me non slip, easy clean dining sets for dining room", "instruction_attributes": ["non slip", "easy clean", "dining room"]}, "B084Q7C6TX": {"attributes": ["desk lamp", "office desk", "long lasting", "bedside table", "white item", "home office", "living room"], "instruction": "Find me long lasting, white item table lamps for living room", "instruction_attributes": ["long lasting", "white item", "living room"]}, "B01M8HL69L": {"attributes": []}, "B00272NBN2": {"attributes": []}, "B07PX22S9F": {"attributes": ["bar stool", "dining room", "living room"], "instruction": "Find me bar stools for dining room, living room", "instruction_attributes": ["dining room", "living room"]}, "B08FGWZZ8J": {"attributes": ["throw blanket", "fleece blanket", "home decor"]}, "B0893JSZHZ": {"attributes": ["home decor"]}, "B08HXR3BGR": {"attributes": ["dining table"]}, "B009EEVDSQ": {"attributes": ["queen size", "futon mattress"]}, "B09DG92LJL": {"attributes": ["console table", "metal legs", "sofa table"]}, "B09P65MG4G": {"attributes": ["contemporary style", "fully assembled", "gray item", "sofa table"], "instruction": "Find me fully assembled sofa tables with contemporary style", "instruction_attributes": ["fully assembled", "contemporary style"]}, "B09RX1PLP4": {"attributes": ["console table", "metal frame", "home decor", "sofa table", "easy assemble", "home office"]}, "B06XG74CXC": {"attributes": ["office chair"]}, "B09C8FZ9YS": {"attributes": ["easy clean", "storage box"]}, "B08MQF4FV1": {"attributes": ["desk chair", "home office", "office chair", "living room"]}, "B09C896SN6": {"attributes": ["home decor", "exquisite workmanship", "tv stand", "living room"], "instruction": "Find me tv stands with exquisite workmanship for living room", "instruction_attributes": ["exquisite workmanship", "living room"]}, "B09QYYN4S4": {"attributes": ["wall mounted", "coat hooks", "hall tree", "coat rack", "space saving", "assembly required", "living room"], "instruction": "Find me wall mounted, space saving, assembly required hall trees for living room", "instruction_attributes": ["wall mounted", "space saving", "assembly required", "living room"]}, "B08MB4NQGQ": {"attributes": ["wine cabinet", "tv cabinet", "home office", "living room"]}, "B09S5KV1MY": {"attributes": ["storage space"]}, "B00RIK1LI0": {"attributes": ["adjustable shelves"]}, "B010CBCDGK": {"attributes": []}, "B08HV9D6P3": {"attributes": ["height adjustable", "easy assemble", "home office"], "instruction": "Find me height adjustable, easy assemble desks", "instruction_attributes": ["height adjustable", "easy assemble"]}, "B08P8LRFZ4": {"attributes": ["desk chair", "office chair", "office desk", "home office", "height adjustable", "high density", "living room", "easy install", "easy assemble"], "instruction": "Find me height adjustable, high density, easy install, easy assemble home office chairs for living room", "instruction_attributes": ["height adjustable", "high density", "easy install", "easy assemble", "living room"]}, "B07PDKXJSK": {"attributes": ["gray item"]}, "B09LVDSDQG": {"attributes": ["easy assemble", "living room"], "instruction": "Find me easy assemble cabinets for living room", "instruction_attributes": ["easy assemble", "living room"]}, "B07XTK3P89": {"attributes": ["printing technology", "machine washable"], "instruction": "Find me machine washable ottomans with printing technology", "instruction_attributes": ["machine washable", "printing technology"]}, "B0048U51N4": {"attributes": ["metal frame", "box spring", "bed frame", "assembly required"], "instruction": "Find me assembly required beds with box spring", "instruction_attributes": ["assembly required", "box spring"]}, "B084ZPN17C": {"attributes": ["metal frame", "assembly required"]}, "B09MNNBDTJ": {"attributes": ["tv stand", "high gloss", "entertainment center", "remote control", "tv cabinet", "gray item"]}, "B09J4RH84G": {"attributes": []}, "B01N4QB5WP": {"attributes": ["desk chair", "office desk"]}, "B000GQ4KX6": {"attributes": []}, "B00V0OCMXS": {"attributes": ["heavy duty", "assembly required"], "instruction": "Find me heavy duty, assembly required desks", "instruction_attributes": ["heavy duty", "assembly required"]}, "B07GRP1WCD": {"attributes": ["bed frame"]}, "B09P71WY8C": {"attributes": ["window film", "living room"]}, "B000GLTJ3M": {"attributes": ["adjustable shelves", "assembly required"]}, "B09J9Y9H95": {"attributes": ["bronze finish", "vanity light"], "instruction": "Find me vanities with bronze finish, vanity light", "instruction_attributes": ["bronze finish", "vanity light"]}, "B08XZ58NCK": {"attributes": ["wall decor", "wall art"]}, "B01A0L5FXA": {"attributes": ["box spring", "ready use", "fully assembled", "high density"], "instruction": "Find me ready use, fully assembled, high density mattresses with box spring", "instruction_attributes": ["ready use", "fully assembled", "high density", "box spring"]}, "B06XDG8XFX": {"attributes": ["book shelf", "space saving"]}, "B07NLHNQCG": {"attributes": ["wood finish"]}, "B08QVDNJC7": {"attributes": ["pillow covers", "throw pillow", "home decor", "sofa bed", "eco friendly", "living room"], "instruction": "Find me eco friendly decorative pillows for living room", "instruction_attributes": ["eco friendly", "living room"]}, "B09PFWVXVS": {"attributes": ["coat rack"]}, "B09QHT6WKQ": {"attributes": ["platform bed", "bed frame", "twin size", "storage space", "gray item", "box spring"], "instruction": "Find me twin size beds with storage space, box spring", "instruction_attributes": ["twin size", "storage space", "box spring"]}, "B09DZVSFJL": {"attributes": ["solid wood", "home office"]}, "B084HBQYTD": {"attributes": ["solid wood", "sofa table"]}, "B08YH6Y6FQ": {"attributes": ["window curtain"]}, "B09JC84P1M": {"attributes": ["end table", "storage basket", "coffee table", "living room", "desk lamp", "bedside table", "sofa table", "long lasting", "metal frame"], "instruction": "Find me long lasting coffee tables for living room", "instruction_attributes": ["long lasting", "living room"]}, "B00KM40FHM": {"attributes": ["window film", "dining room", "living room"], "instruction": "Find me window coverings for dining room, living room", "instruction_attributes": ["dining room", "living room"]}, "B07WH2WBF2": {"attributes": ["eco friendly", "home decor"]}, "B08GY1VWPH": {"attributes": ["wall lamp", "wall sconce", "dining room", "living room"], "instruction": "Find me sconces for dining room, living room", "instruction_attributes": ["dining room", "living room"]}, "B08D3S1KK4": {"attributes": []}, "B099YQ75WT": {"attributes": ["adjustable shelves", "engineered wood", "solid wood"], "instruction": "Find me bookcases with engineered wood, solid wood", "instruction_attributes": ["engineered wood", "solid wood"]}, "B09H3N5P74": {"attributes": ["high density"]}, "B07FKGQKZ1": {"attributes": ["dining room", "living room"], "instruction": "Find me home office furniture sets for dining room, living room", "instruction_attributes": ["dining room", "living room"]}, "B09CQ45ZRB": {"attributes": ["non slip", "home decor", "living room"], "instruction": "Find me non slip desks for living room", "instruction_attributes": ["non slip", "living room"]}, "B07KY5X445": {"attributes": ["stainless steel", "heavy duty"], "instruction": "Find me heavy duty baker's racks with stainless steel", "instruction_attributes": ["heavy duty", "stainless steel"]}, "B06XFZXXTC": {"attributes": ["non slip", "space saving", "coat rack"], "instruction": "Find me non slip, space saving coat racks", "instruction_attributes": ["non slip", "space saving"]}, "B09PJ6QZWW": {"attributes": ["ready hang", "wall decor", "wall art", "home decor"]}, "B088WSDHTW": {"attributes": ["easy install"]}, "B0769HRGD2": {"attributes": ["platform bed", "wood frame", "box spring", "solid wood"], "instruction": "Find me beds with wood frame, box spring, solid wood", "instruction_attributes": ["wood frame", "box spring", "solid wood"]}, "B0832YXLRK": {"attributes": ["decorative mirror", "wall mounted"]}, "B079N3VLRJ": {"attributes": ["solid wood", "bedside table", "easy clean", "living room"], "instruction": "Find me easy clean sofa tables with solid wood for living room", "instruction_attributes": ["easy clean", "solid wood", "living room"]}, "B073P9Z1K9": {"attributes": ["home decor"]}, "B07WC14R63": {"attributes": ["wall mirror", "wood frame", "wall mounted", "makeup mirror", "decorative mirror", "living room", "solid wood"], "instruction": "Find me wall mounted decorative mirrors with wood frame, solid wood for living room", "instruction_attributes": ["wall mounted", "wood frame", "solid wood", "living room"]}, "B09688C4XM": {"attributes": ["high density", "space saving", "living room"], "instruction": "Find me high density, space saving sofa tables for living room", "instruction_attributes": ["high density", "space saving", "living room"]}, "B08CHHHB46": {"attributes": ["wall decor", "wall art", "living room", "home office"]}, "B07BKXMCNB": {"attributes": ["soy wax"]}, "B07FFHJ8YL": {"attributes": []}, "B07FVHPK5X": {"attributes": ["wall art", "living room"]}, "B08XWT6RND": {"attributes": ["easy install"]}, "B004A9L7ZO": {"attributes": ["box spring", "bed frame", "assembly required"], "instruction": "Find me assembly required bedframes with box spring", "instruction_attributes": ["assembly required", "box spring"]}, "B00QFWWZMI": {"attributes": ["spot clean"]}, "B06Y3VLDFB": {"attributes": ["console table", "solid wood"]}, "B08NXTHM2W": {"attributes": ["solid wood", "wall art"]}, "B09N8SLFRJ": {"attributes": ["coffee table", "coated steel", "tempered glass", "steel frame"], "instruction": "Find me coffee tables with coated steel, tempered glass, steel frame", "instruction_attributes": ["coated steel", "tempered glass", "steel frame"]}, "B08KLHMPP9": {"attributes": ["foot stool", "non slip", "easy clean", "living room"], "instruction": "Find me non slip, easy clean ottomans for living room", "instruction_attributes": ["non slip", "easy clean", "living room"]}, "B09P58VY9G": {"attributes": ["wall art", "living room"]}, "B09PYR413Y": {"attributes": []}, "B094QQ7X9T": {"attributes": ["decorative mirror", "wall mounted"]}, "B08SHNQJBW": {"attributes": ["baker rack", "engineered wood", "storage space"], "instruction": "Find me baker's racks with engineered wood, storage space", "instruction_attributes": ["engineered wood", "storage space"]}, "B0957XW92M": {"attributes": ["metal legs", "high density", "living room", "white item"], "instruction": "Find me high density, white item vanities with metal legs for living room", "instruction_attributes": ["high density", "white item", "metal legs", "living room"]}, "B08SKH3LTM": {"attributes": ["fleece blanket", "super soft"]}, "B08TGV7SP2": {"attributes": ["decorative mirror", "wall mirror", "living room"]}, "B09HXDPKJF": {"attributes": ["storage cabinet"]}, "B07SXLVPF3": {"attributes": ["box spring", "high density", "assembly required", "king size", "ready use", "memory foam", "bed frame", "long lasting"], "instruction": "Find me high density, assembly required, ready use, long lasting mattresses with box spring, king size, memory foam", "instruction_attributes": ["high density", "assembly required", "ready use", "long lasting", "box spring", "king size", "memory foam"]}, "B017L3XL54": {"attributes": []}, "B09PGQQQDL": {"attributes": ["dining table", "kitchen island"]}, "B06ZYS6NW4": {"attributes": ["kitchen island", "glass shade", "pendant light", "living room"], "instruction": "Find me kitchen islands with glass shade, pendant light for living room", "instruction_attributes": ["glass shade", "pendant light", "living room"]}, "B01FT2KXJG": {"attributes": ["contemporary style", "floor lamp", "living room", "easy clean", "easy assemble"], "instruction": "Find me easy clean, easy assemble floor lamps with contemporary style for living room", "instruction_attributes": ["easy clean", "easy assemble", "contemporary style", "living room"]}, "B09HKZS7LV": {"attributes": ["pillow covers", "throw pillow", "home decor"]}, "B091SK8ZH5": {"attributes": ["home decor", "living room"]}, "B09NRF2QGD": {"attributes": ["coat rack", "solid wood", "storage space", "living room"], "instruction": "Find me hall trees with solid wood, storage space for living room", "instruction_attributes": ["solid wood", "storage space", "living room"]}, "B095Z2SDB9": {"attributes": ["window film", "easy install", "home office"]}, "B08QCL5SX5": {"attributes": ["decorative mirror", "wall mirror", "living room", "metal frame"]}, "B098M9KX7K": {"attributes": ["futon mattress", "living room"]}, "B09BNCFGLY": {"attributes": ["bed frame", "twin size", "platform bed", "eco friendly", "solid wood"], "instruction": "Find me twin size, eco friendly bedframes with solid wood", "instruction_attributes": ["twin size", "eco friendly", "solid wood"]}, "B08X2FSR21": {"attributes": ["box spring", "bed frame", "heavy duty", "assembly required"], "instruction": "Find me heavy duty, assembly required bedframes with box spring", "instruction_attributes": ["heavy duty", "assembly required", "box spring"]}, "B078PKLZFB": {"attributes": ["box spring", "high density", "ready use", "twin size", "long lasting", "assembly required"], "instruction": "Find me high density, ready use, twin size, long lasting, assembly required mattresses with box spring", "instruction_attributes": ["high density", "ready use", "twin size", "long lasting", "assembly required", "box spring"]}, "B004FG6BV2": {"attributes": []}, "B08XX6QRK4": {"attributes": ["bed frame", "storage shelves", "box spring", "easy assemble"], "instruction": "Find me easy assemble beds with box spring", "instruction_attributes": ["easy assemble", "box spring"]}, "B09DVQ3646": {"attributes": ["bedside table", "eco friendly", "sofa table", "storage shelf", "white item", "easy install", "storage space", "living room"], "instruction": "Find me eco friendly, white item, easy install nightstands with storage space for living room", "instruction_attributes": ["eco friendly", "white item", "easy install", "storage space", "living room"]}, "B08LNFNXSD": {"attributes": ["office chair", "home office", "dining chair", "desk chair", "office desk", "easy install", "easy assemble"], "instruction": "Find me easy install, easy assemble home office chairs", "instruction_attributes": ["easy install", "easy assemble"]}, "B09KWX51GJ": {"attributes": []}, "B083ZPYNHH": {"attributes": ["bed frame", "box spring"]}, "B071S7GPMS": {"attributes": ["queen size", "platform bed", "box spring"], "instruction": "Find me queen size beds with box spring", "instruction_attributes": ["queen size", "box spring"]}, "B09M6VXD6W": {"attributes": ["bedside table", "end table", "coffee table", "easy clean"]}, "B08NPQT5TW": {"attributes": ["home decor"]}, "B07TN3Y9H1": {"attributes": ["vanity light", "glass shade", "mid century"], "instruction": "Find me mid century vanities with vanity light, glass shade", "instruction_attributes": ["mid century", "vanity light", "glass shade"]}, "B0851Y9BDC": {"attributes": ["stainless steel", "heavy duty"], "instruction": "Find me heavy duty china cabinets with stainless steel", "instruction_attributes": ["heavy duty", "stainless steel"]}} \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/data/small/items_shuffle_1000.json b/external/webshop-minimal/webshop_minimal/data/small/items_shuffle_1000.json new file mode 100644 index 0000000000000000000000000000000000000000..08dfda9a1c896e0f69d50e3437dd3fe94419b7d7 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/data/small/items_shuffle_1000.json @@ -0,0 +1 @@ +[{"name": "Vhomes Lights Reclaimed Wood Console Table The Genessis Collection Sofa-Tables", "product_information": {"ASIN": "B06Y3VLDFB", "Best Sellers Rank": ["#8,224,795 in Home & Kitchen (See Top 100 in Home & Kitchen) #8,879 in Sofa Tables"], "Date First Available": "April 7, 2017"}, "brand": "Brand: Vhomes Lights", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Vhomes+Lights", "full_description": "Solid, Reclaimed Fir Wood In Natural, Sun Bleached Finish With Light Antiquing Glaze.", "pricing": "$877.80", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51Y1zY1ZdZL.jpg", "https://m.media-amazon.com/images/I/41fbRZ6LKlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": "", "small_description": ["Finish/Frame Description:Solid, Reclaimed Fir Wood In Natural, Sun Bleached Finish With Light Antiquing Glaze. ", "Material:SOLID WOOD ", "Dimensions (Inches): 14.125 Depth 54 Width 33 Height ", "Weight:41 "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3AFTPXK3AVV55", "seller_name": "Naturals N' More", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B06Y3VLDFB", "category": "garden", "query": "Console tables", "page": 378, "small_description_old": "About this item Finish/Frame Description:Solid, Reclaimed Fir Wood In Natural, Sun Bleached Finish With Light Antiquing Glaze. Material:SOLID WOOD Dimensions (Inches): 14.125 Depth 54 Width 33 Height Weight:41 \n \u203a See more product details"}, {"name": "Pointed Toe Pumps Shoes, Stiletto Plaid Leather High Heels, Sexy Elegant Party Wedding Work Court Shoes,Wine red,40", "product_information": {"Department": "Womens", "Manufacturer": "TYX", "ASIN": "B08R3XSC65"}, "brand": "Brand: TYX", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=TYX", "full_description": "\u2605Detailed parameters:Upper material: microfiber check patternInside material: leatherShoe sole material: rubber soleToe shape: pointedHeel shape: stilettoHeel height: super high heelsuitable season: spring, autumnWearing style: sleeve/overshoesUpper height: lowColor: beige, apricot, bronze, wine redShoe size: 34-46Heel height: 9.5 cmPalm width: 7.8 cm\u2605Reminder:1. All sizes need to be customized and will be shipped 7-10 days after purchase. Please wait patiently2. Due to the different reasons of the shooting light and the monitor, there may be chromatic aberration, please refer to the actual color, thank you for your understanding3. Due to manual measurement, there may be some errors, which belong to the normal range, please understand\u2605After-sales service: If you have any questions about the product, please contact us by email, we will give you a satisfactory answer within 24 hours\u2605I wish you a happy life!", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41+l47A+ltL.jpg", "https://m.media-amazon.com/images/I/41qop4KW0HL.jpg", "https://m.media-amazon.com/images/I/41hn0R1OFbL.jpg", "https://m.media-amazon.com/images/I/41h7zrrg9PL.jpg", "https://m.media-amazon.com/images/I/51uFTTHzDYL.jpg", "https://m.media-amazon.com/images/I/51aXEEvfkiL.jpg", "https://m.media-amazon.com/images/I/51osJ--BLPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Pumps", "average_rating": "", "small_description": ["\u2605Fashionable upper: Shallow mouth upper plaid design, exquisite and elegant, sexy and fashionable stiletto heel, modified leg shape, fashionable legs look more slender and slender. ", "\u2605Shoe upper material: The upper is made of super-fiber material, soft and delicate, comfortable and breathable, wear-resistant and cold-resistant, beautiful and aging-resistant, and has good water resistance. ", "\u2605Fashionable all-match: Fashionable stilettos are very versatile. You can perfectly match any outfit for leisure, party, work, dating, wedding, bar, school or other special occasions. ", "\u2605Comfortable design: The design of high-heeled shoes conforms to the comfortable curvature of human feet, and naturally fits the feet. Relieve foot fatigue and give you a comfortable and stable walking feeling. ", "\u2605Customization: All sizes are custom sizes and will be shipped within 7-10 days after ordering. Please refer to the foot length in the size chart, and then choose the appropriate size according to your foot type. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08R3XSC65", "category": "fashion", "query": "Women's Pumps", "page": 130, "small_description_old": "\u2605Fashionable upper: Shallow mouth upper plaid design, exquisite and elegant, sexy and fashionable stiletto heel, modified leg shape, fashionable legs look more slender and slender. \u2605Shoe upper material: The upper is made of super-fiber material, soft and delicate, comfortable and breathable, wear-resistant and cold-resistant, beautiful and aging-resistant, and has good water resistance. \u2605Fashionable all-match: Fashionable stilettos are very versatile. You can perfectly match any outfit for leisure, party, work, dating, wedding, bar, school or other special occasions. \u2605Comfortable design: The design of high-heeled shoes conforms to the comfortable curvature of human feet, and naturally fits the feet. Relieve foot fatigue and give you a comfortable and stable walking feeling. \u2605Customization: All sizes are custom sizes and will be shipped within 7-10 days after ordering. Please refer to the foot length in the size chart, and then choose the appropriate size according to your foot type."}, {"name": "HSJWOSA Decorative Rustic Entryway Console Table, 60\" Long Sofa Table with Two Different Size Drawers and Bottom Shelf for Storage Ornamental (Color : Black)", "product_information": {"Item Weight": "\u200e0.035 ounces", "Country of Origin": "\u200eChina", "ASIN": "B09DG92LJL", "Date First Available": "August 24, 2021"}, "brand": "Brand: HSJWOSA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=HSJWOSA", "full_description": "A SOLID BEAUTY With a frame and legs constructed of solid timber, and coated with a beautiful distressed finish, this occasional console table is reinforced in order to require low maintenance and be long-lasting and sturdy for a long time to come.ASSEMBLY This versatile and stylish piece is designed to provide customers with a hassle-free setup experience. Only the four legs and bottom shelf are in need of assembly. Anyone can begin enjoying this elegant and understated table in just a few minutes.Overall Dimension60.03\u201cL x 11.02\u201dW x 34\u201dHDetail DimensionPlease refer to the image.Package Dimension63\u201cL x 15\u201dW x14\u201dHOverall Weight46.7LBSPackage Weight53.8LBSWeight CapacityTop shelf:45KGBottom shelf:18KGDrawer:8KGSpecifications:Product NameConsole TableMaterialSolid wood frame and legsMDF panelsThicknessTop shelf:15mm Bottom shelf\uff1a30mmFinishDistressed FinishColorBlackAssembly Required20minsPackage Number1", "pricing": "$557.72", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31C3K0QAnvL.jpg", "https://m.media-amazon.com/images/I/418xzIMt2EL.jpg", "https://m.media-amazon.com/images/I/51MbRZbEbvL.jpg", "https://m.media-amazon.com/images/I/51vqsWxVawL.jpg", "https://m.media-amazon.com/images/I/41CR-BaH0PL.jpg", "https://m.media-amazon.com/images/I/51IvSDjrzAL.jpg", "https://m.media-amazon.com/images/I/51byzaZMuYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": "", "small_description": ["LONG, NARROW, ELEGANT DESIGN Designed with a clean silhouette in an elegant, understated espresso color. It imbues any space with an atmosphere of class, and showcases the taste of it\u2019s owner. The desktop measures 60.03 x 10 inches (L x W), making it the perfect space-saver for any room \u2013 including hallways. ", "TWO DRAWER SIZES FOR STORAGE CONVENIENCE This side console table features two small drawers and two bigger drawers, perfect for you to organize your necessities and accessories of all different sizes - such as remote controls, cables, keys or coffee cups. With smooth opening and closing, these drawers will keep the dust off, while also providing beautiful external decorations in the form of uniquely patterned knobs. ", "A SPACIOUS, STYLISH DISPLAY SPACE A sleek and wide desktop, complemented with a clean and simple bottom shelf is great for displaying decorations such as paintings, photos, flowers and everything else you can think of. The perfect blend of storage and display means this piece has both style and functionality for all occasions and all spaces. ", "Crafted with metal legs that are connected with a round lower frame for maximum stability, fusing durability with a modern-contemporary appearance ", "Designed with non-marring foot glides, this side table protects floors from scuffs, scratches, and other potential damages "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A30N1D7XQ4NN5F", "seller_name": "bhuokuangyeall", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09DG92LJL", "category": "garden", "query": "Console tables", "page": 238, "small_description_old": "About this item LONG, NARROW, ELEGANT DESIGN Designed with a clean silhouette in an elegant, understated espresso color. It imbues any space with an atmosphere of class, and showcases the taste of it\u2019s owner. The desktop measures 60.03 x 10 inches (L x W), making it the perfect space-saver for any room \u2013 including hallways. TWO DRAWER SIZES FOR STORAGE CONVENIENCE This side console table features two small drawers and two bigger drawers, perfect for you to organize your necessities and accessories of all different sizes - such as remote controls, cables, keys or coffee cups. With smooth opening and closing, these drawers will keep the dust off, while also providing beautiful external decorations in the form of uniquely patterned knobs. A SPACIOUS, STYLISH DISPLAY SPACE A sleek and wide desktop, complemented with a clean and simple bottom shelf is great for displaying decorations such as paintings, photos, flowers and everything else you can think of. The perfect blend of storage and display means this piece has both style and functionality for all occasions and all spaces. Crafted with metal legs that are connected with a round lower frame for maximum stability, fusing durability with a modern-contemporary appearance Designed with non-marring foot glides, this side table protects floors from scuffs, scratches, and other potential damages \n \u203a See more product details"}, {"name": "100% PURE Glossy Locks: Repair Shampoo (13.5 Fl Oz), Sulfate Free Shampoo, Restores Damaged Hair, Moisturizing, Improves Hair Growth, Made with Biotin, Coconut Oil", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 8.07 x 2.56 x 2.56 inches; 14.4 Ounces", "Item model number\n \u200f": "\u200e\n B07B6DVG41", "UPC\n \u200f": "\u200e\n 899738008255", "Manufacturer\n \u200f": "\u200e\n ITSATRONIC", "ASIN\n \u200f": "\u200e\n B07B6DVG41", "Best Sellers Rank": "#187,346 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,740 in Amazon Launchpad Beauty & Health #4,669 in Hair Shampoo", "#1,740 in Amazon Launchpad Beauty & Health": "", "#4,669 in Hair Shampoo": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the 100% PURE Store", "brand_url": "https://www.amazon.com/stores/100%25+Pure/page/64C2D37E-66DA-4BAE-BB1E-B292EA197869?ref_=ast_bln", "full_description": "", "pricing": "$34.00", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/315li5K4j4L.jpg", "https://m.media-amazon.com/images/I/41e6UH9joCL.jpg", "https://m.media-amazon.com/images/I/41+ZZJ9qIQL.jpg", "https://m.media-amazon.com/images/I/415am-XO9bL.jpg", "https://m.media-amazon.com/images/I/41RfOQC+wVL.jpg", "https://m.media-amazon.com/images/I/418615MWxVL.jpg", "https://m.media-amazon.com/images/I/41VPvYicTrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Shampoos", "average_rating": 4.8, "small_description": ["NUTRIENT DENSE TO REPAIR DAMAGED HAIR - Our paraben-free shampoo formula uses biotin and ceramides to repair and restore damaged hair cuticles, to protect against further breakage, tangling, or hair loss ", "PERFECT FOR COLOR TREATED HAIR - For those who use hair color, bleach, and other chemical hair treatments, this shampoo for color treated hair can help to reverse long term chemical damage ", "MADE TO MOISTURIZE - To heal damaged hair cuticles, we add ingredients like hydrating aloe juice and hyaluronic acid paired with plant cellulose and vegetable glycerin to lock in essential moisture for softer strands ", "HEALTHY HAIR FROM HONEY - We use both honey and royal jelly in this ultra moisturizing shampoo to coat hair with emollient moisture and protect each delicate strand with strengthening vitamins and keratin ", "MADE WITHOUT HAIR HARMING INGREDIENTS - Our sulfate-free shampoos and conditioners are free of moisture-stripping detergents, harmful parabens, phthalates, PEGs, and artificial fragrances "], "total_reviews": 4, "total_answered_questions": "", "customization_options": "", "seller_id": "A161OT36SON0IZ", "seller_name": "100% PURE", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07B6DVG41", "category": "beauty", "query": "Shampoo & Conditioner", "page": 135, "small_description_old": "About this item NUTRIENT DENSE TO REPAIR DAMAGED HAIR - Our paraben-free shampoo formula uses biotin and ceramides to repair and restore damaged hair cuticles, to protect against further breakage, tangling, or hair loss PERFECT FOR COLOR TREATED HAIR - For those who use hair color, bleach, and other chemical hair treatments, this shampoo for color treated hair can help to reverse long term chemical damage MADE TO MOISTURIZE - To heal damaged hair cuticles, we add ingredients like hydrating aloe juice and hyaluronic acid paired with plant cellulose and vegetable glycerin to lock in essential moisture for softer strands HEALTHY HAIR FROM HONEY - We use both honey and royal jelly in this ultra moisturizing shampoo to coat hair with emollient moisture and protect each delicate strand with strengthening vitamins and keratin MADE WITHOUT HAIR HARMING INGREDIENTS - Our sulfate-free shampoos and conditioners are free of moisture-stripping detergents, harmful parabens, phthalates, PEGs, and artificial fragrances"}, {"name": "Minkissy Eyebrow Hair Razors Eyebrow Trimmer Portable Facial Hair Remover Facail Hair Trimmer Hair Beauty Grooming Tool for Women and Men 4pcs", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5.91 x 0.39 x 0.16 inches; 2.12 Ounces", "Item model number\n \u200f": "\u200e\n R2314327968EK", "Manufacturer\n \u200f": "\u200e\n Minkissy", "ASIN\n \u200f": "\u200e\n B087TR48KK", "": ""}, "brand": "Brand: minkissy", "brand_url": "https://www.amazon.com/minkissy/b/ref=bl_dp_s_web_23471563011?ie=UTF8&node=23471563011&field-lbr_brands_browse-bin=minkissy", "full_description": "DescriptionThis eyebrow razor set is made of high-quality of stainless steel, hard edge and sharp enough to trim eyebrow. This product is easy to use with a plastic handle, which can protect you hand from hurt. Please follow the brows growth direction when you use the razor and it will not hurt your skin easily. The small design makes it convenient to be stored in your handbag.Features- Color: assorted.- Material: Stainless Steel and ABS.- Size: About 15x1x0.4cm.- Being made of premium stainless steel, you can safely clean hair in seconds to get neat and decent eyebrow shape without wasting time.- Lightweight and non-slip grip for easy control.- Convenient to clean after using.- Small appearance with Cover fit in your make-up bag, perfect for travelling.- Perfect beauty tool that gives you professional salon style results for home use.Package Including4 x eyebrow razors", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31rv1QPuSDL.jpg", "https://m.media-amazon.com/images/I/410Co04WjqL.jpg", "https://m.media-amazon.com/images/I/41becJBdZrL.jpg", "https://m.media-amazon.com/images/I/41YQo3FPrUL.jpg", "https://m.media-amazon.com/images/I/41crD0k2ZNL.jpg", "https://m.media-amazon.com/images/I/31vr0R6jE4L.jpg", "https://m.media-amazon.com/images/I/31IulnxRXwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Men's \u203a Eyebrow Trimmers", "average_rating": "", "small_description": ["Small appearance with Cover fit in your make-up bag, perfect for travelling. ", "Perfect beauty tool that gives you professional salon style results for home use. ", "Convenient to clean after using. ", "Lightweight and non-slip grip for easy control. ", "Being made of premium stainless steel, you can safely clean hair in seconds to get neat and decent eyebrow shape without wasting time. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AZ6A34DKOL2LS", "seller_name": "Villemure", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B087TR48KK", "category": "beauty", "query": "Shave & Hair Removal", "page": 121, "small_description_old": "About this item Small appearance with Cover fit in your make-up bag, perfect for travelling. Perfect beauty tool that gives you professional salon style results for home use. Convenient to clean after using. Lightweight and non-slip grip for easy control. Being made of premium stainless steel, you can safely clean hair in seconds to get neat and decent eyebrow shape without wasting time."}, {"name": "SheIn Women's Sexy One Shoulder Sleeveless Cutout Mini Club Pencil Bodycon Dress", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 14 x 10.5 x 0.5 inches; 6.74 Ounces", "Item model number\n \u200f": "\u200e\n 10-swdress03200323818-XS", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n March 23, 2021", "ASIN\n \u200f": "\u200e\n B08ZSMVXPB", "Best Sellers Rank": "#81,412 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#590 in Women's Club & Night Out Dresses", "#590 in Women's Club & Night Out Dresses": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the SheIn Store", "brand_url": "https://www.amazon.com/stores/SheIn/page/D8D952E3-6804-4133-9EE2-F716733F2E2F?ref_=ast_bln", "full_description": "", "pricing": "$19.99$27.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/4195PqQ185L.jpg", "https://m.media-amazon.com/images/I/317R4Ssn4BL.jpg", "https://m.media-amazon.com/images/I/41kido9FM-L.jpg", "https://m.media-amazon.com/images/I/41ElSj8HW9L.jpg", "https://m.media-amazon.com/images/I/418SIVnOHjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Dresses \u203a Club & Night Out", "average_rating": 3.9, "small_description": ["One shoulder dresses for women/ Black mini dress/ Sleeveless bodycon dress/ Make for 95% Polyester, 5% Spandex ", "Pull On closure ", "Cutout dresses for women/ Black cutout dress for women/ Very soft fabric, high stretch and comfortable material to wear ", "One shoulder dresses for women/ Designs with sleeveless coutouts, bodycon mini dress, solid color, sexy cut out club dress for women / Cut out dress for women summer ", "Sexy dresses for women part night sexy, suit for spring, summer days, perfect beach, shopping, dating, vacation, club and daily wear, being a going out dresses for women ", "Pencil dress for women can be easily dress up and dress down, perfect to match with your rhinestone drop earrings and heels in summer for girls for dating for party for outgoing ", "Dresses for women party night sexy/ Tight fitted dress for women. Please kindly check the SIZE CHART below before you ordering "], "total_reviews": 30, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B08ZSMVXPB"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B08ZSJ3CHK"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08ZRR3DZT"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08ZSNGZWN"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09NBWC2T1"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4195PqQ185L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J4YK4G7/ref=twister_B08ZSK67GP", "value": "Light Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fmYlplW0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C7SWH2T/ref=twister_B08ZSK67GP", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41nExbIsnSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09TFDV93J/ref=twister_B08ZSK67GP", "value": "Plain Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EjINyiiNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F66V4TH/ref=twister_B08ZSK67GP", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41h9pNliLZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098F66VR3/ref=twister_B08ZSK67GP", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31FPFT22-sS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09D7FQGYC/ref=twister_B08ZSK67GP", "value": "Chocolate Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qkyQCoPeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J4YFX8T/ref=twister_B08ZSK67GP", "value": "Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41o-L7KFmDL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08ZRR3DZT", "category": "fashion", "query": "Women's Dresses", "page": 8, "small_description_old": "95% Polyester, 5% Spandex Pull On closure Very soft fabric, high stretch and comfortable material to wear One shoulder, sleeveless, bodycon style, solid color, sexy cut out club dress for women Sexy and elegant, suit for spring, summer days, perfect beach, shopping, dating, shopping, vacation, club, party and daily wear Can be easily dress up and dress down, perfect to match with your rhinestone drop earrings and heels in summer Please kindly check the SIZE CHART below before you ordering"}, {"name": "Avon Anew Dark Circle Corrector Dual Eye System 2 Phase Care Against Dark Circles 20ml - 0.68 fl.oz", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 3.9 x 3.78 x 2.6 inches; 1.87 Pounds", "Manufacturer\n \u200f": "\u200e\n Avon", "ASIN\n \u200f": "\u200e\n B08T9KJJPZ", "Best Sellers Rank": "#316,407 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,597 in Eye Treatment Creams", "#1,597 in Eye Treatment Creams": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: AVON", "brand_url": "https://www.amazon.com/AVON/b/ref=bl_dp_s_web_20319565011?ie=UTF8&node=20319565011&field-lbr_brands_browse-bin=AVON", "full_description": "Highly effective innovative eye system care for day and night against eye shadow and dark circles. Suitable for all ages and skin tones. Effect: For a radiant, beautiful eye area without shadow. The 2-phase eye care instantly improves the appearance of the eye area and reduces dark circles, shadows and crow's feet. It is mild and suitable for sensitive skin around the eyes. The day cream contains brightening ingredients that adapt to every skin tone, make dark circles and shadows brighter and prevent aggravation. The night gel intensively moisturises into deeper skin layers, regenerates and smooths the delicate eye area. For a younger, fresh and radiant look. Application: Apply the cream (white) to the lower eye area in the morning. The cream can be used ideally under daily make-up. Apply the gel to the lower eye area in the evening. Suitable for those who wear contact lenses. Contents: 20 ml", "pricing": "$8.50", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Eyes \u203a Creams", "average_rating": 3.5, "small_description": ["With colour correcting technology and seaweed, sweep dark circles and eye shadows. ", "Suitable for all ages and skin tones. ", "Application: apply the cream (white) to the lower eye area in the morning. In the evening, apply the gel (green) to the lower eye area. "], "total_reviews": 21, "total_answered_questions": "", "customization_options": "", "seller_id": "AR965UGVS692U", "seller_name": "Care&Beauty", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08T9KJJPZ", "category": "beauty", "query": "Eyes Care", "page": 34, "small_description_old": "About this item Avon Anew 2 Phase Care for Dark Circles With colour correcting technology and seaweed, sweep dark circles and eye shadows. Suitable for all ages and skin tones. Application: apply the cream (white) to the lower eye area in the morning. In the evening, apply the gel (green) to the lower eye area."}, {"name": "JYLRX natural loofah sponge,Very Suitable for Kitchen Household use and Personal Skin Care Products with Cleanser Pack of 4 (white)", "product_information": "", "brand": "Brand: JYLRX", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JYLRX", "full_description": "", "pricing": "$12.98", "list_price": "", "availability_quantity": 20, "availability_status": "Only 20 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41gM96tD+OL.jpg", "https://m.media-amazon.com/images/I/51T1H9G2EWL.jpg", "https://m.media-amazon.com/images/I/516EzGE+TwL.jpg", "https://m.media-amazon.com/images/I/51Rs1etT3EL.jpg", "https://m.media-amazon.com/images/I/41sNSFeIfnL.jpg", "https://m.media-amazon.com/images/I/41UkWPTJ7PL.jpg", "https://m.media-amazon.com/images/I/51ggS1jBcgL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Loofahs", "average_rating": 5, "small_description": ["Material: Made of natural organic loofah, green and environmentally friendly, without adding any irritating chemicals ", "Packaging: Includes 4 pieces of loofah sponge, 6 inches in length, each is individually packaged, convenient for storage and cleaner ", "Advantages: According to the \"Compendium of Materia Medica\" written by the ancient famous doctor Li Shizhen: Loofah has the effect of strengthening the body and strengthening the brain. It is the first choice for bathing and beauty care products. ", "Uses: Suitable for kitchen and household cleaning products, to clean pots, dishes, barbecue racks, bathroom tiles, etc., but also for bathing and beauty. ", "Service: I hope you can like our JYLRX products. If you have any questions, please contact us and we will answer you as soon as possible. If the products have any defects, we will replace them with new ones or refund the purchase price. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JSVQYJT/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Bath Ball", "price_string": "$12.80", "price": 12.8, "image": "https://m.media-amazon.com/images/I/51mXeNhOAXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JSTCFWZ/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Bath Towel", "price_string": "$14.80", "price": 14.8, "image": "https://m.media-amazon.com/images/I/41VxekX7UKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JST53C9/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Cleansing Brush", "price_string": "$9.90", "price": 9.9, "image": "https://m.media-amazon.com/images/I/51hLS+etadL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JST2Z8P/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Flower Bath Towel", "price_string": "$14.80", "price": 14.8, "image": "https://m.media-amazon.com/images/I/517ps3NhSrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SKVD4M1/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Primary", "price_string": "$12.98", "price": 12.98, "image": "https://m.media-amazon.com/images/I/51ggS1jBcgL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$12.98", "price": 12.98, "image": "https://m.media-amazon.com/images/I/51ggS1jBcgL.jpg"}]}, "seller_id": "A2LUOBCBKWF6FQ", "seller_name": "JYArt-US", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08SKT2TCH", "category": "beauty", "query": "Bathing Accessories", "page": 121, "small_description_old": "About this item Material: Made of natural organic loofah, green and environmentally friendly, without adding any irritating chemicals Packaging: Includes 4 pieces of loofah sponge, 6 inches in length, each is individually packaged, convenient for storage and cleaner Advantages: According to the \"Compendium of Materia Medica\" written by the ancient famous doctor Li Shizhen: Loofah has the effect of strengthening the body and strengthening the brain. It is the first choice for bathing and beauty care products. Uses: Suitable for kitchen and household cleaning products, to clean pots, dishes, barbecue racks, bathroom tiles, etc., but also for bathing and beauty. Service: I hope you can like our JYLRX products. If you have any questions, please contact us and we will answer you as soon as possible. If the products have any defects, we will replace them with new ones or refund the purchase price."}, {"name": "Saireed UL Listed 2 Prong Power Cord for JBL Bar 3.1 Bar 2.1 Channel 4K Ultra HD Soundbar Home Theater System Subwoofer AC 5.5ft Power Cord IEC C7 Cable Replacement", "product_information": {"Package Dimensions": "14.65 x 6.22 x 1.26 inches", "Item Weight": "3.2 ounces", "ASIN": "B08533PJ4S", "Customer Reviews": {"ratings_count": 15, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#4,495 in Audio & Video Power Cables"], "Is Discontinued By Manufacturer": "No", "Date First Available": "September 21, 2019", "Manufacturer": "Saireed"}, "brand": "Visit the Saireed Store", "brand_url": "https://www.amazon.com/stores/Saireed/page/DD28D735-3B4E-460A-A47F-CECBADF3B2B8?ref_=ast_bln", "full_description": "", "pricing": "$9.99", "list_price": "", "availability_quantity": 11, "availability_status": "Only 11 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31oU0XoegzL.jpg", "https://m.media-amazon.com/images/I/41EjiEn8LiL.jpg", "https://m.media-amazon.com/images/I/51Ve1u0WmJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Power Cables", "average_rating": 4.4, "small_description": ["Replacement Figure 8 AC 2 prong IEC C7 125V 10A / 7A power cord cable for JBL Bar 2.1/3.1 Soundbar (Compatible with the Mentioned MODEL ONLY) ", "Replace your overused, old, broken, damaged, or misplaced power cable or add extra distance / extension between devices for convenience ", "Figure 8 Power Cords ,NEMA 1-15P to IEC320 C7,Non-Polarized,NISPT-2 18AWG(approx.0.824mm2) extension cable connects from your equipment socket to a standard 2 pronged AC outlet receptacle. ", "(Compatible with the Mentioned MODEL ONLY) 5.5 Foot ac cable two prong power cord for \"JBL Bar 2.1 Deep Bass Soundbar with 6.5\"\" Wireless Subwoofer\uff0cJBL Bar 2.1 Home Theater Starter System with Soundbar and Wireless Subwoofer with Bluetooth,JBL Bar 3.1 - Channel 4K Ultra HD Soundbar with 10\u201d Wireless Subwoofer\uff0c JBL Bar 3.1 Home Theater System w/ Soundbar & Wireless Subwoofer\" ", "Package content: 1 x 5.5 Foot length Figure 8 Extension AC Power Cord for JBL Bar 2.1/3.1 Sound Bar "], "total_reviews": 15, "total_answered_questions": "", "customization_options": "", "seller_id": "A6L0L06011USG", "seller_name": "Saireeddirect", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08533PJ4S", "category": "electronics", "query": "Home Theater Systems", "page": 11, "small_description_old": "About this item\n \nReplacement Figure 8 AC 2 prong IEC C7 125V 10A / 7A power cord cable for JBL Bar 2.1/3.1 Soundbar (Compatible with the Mentioned MODEL ONLY) Replace your overused, old, broken, damaged, or misplaced power cable or add extra distance / extension between devices for convenience Figure 8 Power Cords ,NEMA 1-15P to IEC320 C7,Non-Polarized,NISPT-2 18AWG(approx.0.824mm2) extension cable connects from your equipment socket to a standard 2 pronged AC outlet receptacle. (Compatible with the Mentioned MODEL ONLY) 5.5 Foot ac cable two prong power cord for \"JBL Bar 2.1 Deep Bass Soundbar with 6.5\"\" Wireless Subwoofer\uff0cJBL Bar 2.1 Home Theater Starter System with Soundbar and Wireless Subwoofer with Bluetooth,JBL Bar 3.1 - Channel 4K Ultra HD Soundbar with 10\u201d Wireless Subwoofer\uff0c JBL Bar 3.1 Home Theater System w/ Soundbar & Wireless Subwoofer\" Package content: 1 x 5.5 Foot length Figure 8 Extension AC Power Cord for JBL Bar 2.1/3.1 Sound Bar"}, {"name": "3-Piece Dining Table Set, Farmhouse Counter Height Dining Table Set, Wood Dining Table Set with Drop Leaf Table/2 Cross Back Padded Chairs/One Shelf", "product_information": {"Item Weight": "\u200e85 pounds", "Product Dimensions": "\u200e42.3 x 24 x 35.3 inches", "Country of Origin": "\u200eVietnam", "Item model number": "\u200eDining Table Set", "Is Discontinued By Manufacturer": "\u200eNo", "Weight": "\u200e85 Pounds", "ASIN": "B09B7G7P58", "Customer Reviews": {"ratings_count": null, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#431,117 in Home & Kitchen (See Top 100 in Home & Kitchen) #321 in Kitchen & Dining Room Sets"], "Date First Available": "July 27, 2021"}, "brand": "Brand: VOGU", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=VOGU", "full_description": "\u266c Offer 2 great dining chairs and an attractive kitchen table,this refined dinette set will reinvent your dining room with its extendable drop leaf design. Featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed.Upgrade your seating experience with these padded chairs. Each ergonomically designed chair is completed with a high cross-designed backrest and splayed legs to keep your body supported when you lean back to ensure comfort. The 4 spindles are designed for increased stability while also providing a place to prop your feet up. \u2714 Weight & Dimensions Overall Product Dimension: Extended Table Dimensions: Dia 42.3\" x 35.3\"(DiaXH) Folded Table Size: 34.6\" x 24\" x 35.3\"(LXWXH) Chair Dimensions: 15.8\" x 18.2\" x 40\"(LXWXH) Seat Depth: 16.2\" Seat to Floor: 22.8\" Cushion Thickness: 1.8\" Tabletop Thickness: 0.7\" Number of Package: 2 Overall Weight: Table Net weight: 50.7 lbs Each Chair New Weight: 16.3 lbs Weight Capacity: Table Weight Capacity: 200LBS Each Chair Capacity: 250LBS \u2714 Specifications Product Name: 3 Piece Counter Height Table Material: Table Top: MDF+ Acaia Veneer Table Legs: Rubber Wood Chair Cushion: Linen Fabric + Foam Chair Legs: Rubber Pieces Included: 1 Table and 2 Chairs Color: Gray+Gray Cushion Assembly Required: Yes Additional Tools Required: All Tools Included Country of Origin: Vietnam \u2714 Notice: Manual measurement has been used, there may be some reasonable error. Items may slightly differ from photo in terms of color due to the lighting or your monitor display.", "pricing": "$319.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51oBcRkCySL.jpg", "https://m.media-amazon.com/images/I/515IkvFOzDL.jpg", "https://m.media-amazon.com/images/I/41sQxaMuIkL.jpg", "https://m.media-amazon.com/images/I/517q7ijP4ZL.jpg", "https://m.media-amazon.com/images/I/51zyI9znpcL.jpg", "https://m.media-amazon.com/images/I/51blkYGaNWL.jpg", "https://m.media-amazon.com/images/I/41NbZmX6sRL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Dining Room Furniture \u203a Table & Chair Sets", "average_rating": 4, "small_description": ["\ud83e\udd1e [Extendable Drop Leaf Design] - Offer 2 great dining chairs and an attractive kitchen table, this refined dinette set will reinvent your dining room with its extendable drop leaf design. Featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed. ", "\ud83e\udd1e [Extra Shelf Table] - The shelf on the bottom creates a display area for your magazines, decorative baskets and other daily essentials within arm reach while also a providing space-saving solution. The compact round structure neatly fits into small spaces without compromising the function. ", "\ud83e\udd1e [Wooden Dining Table Set] - Built with high quality solid rubber wood legs with MDF tabletop, the tabletop is strong and smooth for easy cleaning, the rubber wood table legs are solid to ensure a stable construction. The chair and bench legs are made of plywood with strong bending resistance, and the rubber wood seat is wear-resistant, built for a long-time use. This set is designed to hold 200lbs maximum capacity for its table and last for years. ", "\ud83e\udd1e [Farmhouse Dining Table set] - Finished with retro and graceful antique graywash coating as well as classical cross back, this eye-catching dining table and bench set serves up irresistible charm and a home-grown cottage aesthetic for your dining room.\u00a0 ", "\ud83e\udd1e [Easy to Assemble] - All parts, tools and instructions are shipped straight to your door in efficiently packed box. If you have any questions, please feel free to contact us. We will contact you within 6 hours. After placing the order, it will be shipped from the US local warehouse. The package will be delivered to your home in the shortest time. Extended Table Dimensions: Dia 42.3\" x 35.3\" Folded Table Size: 34.6\" x 24\" x 35.3\" Chair Dimensions: 15.8\" x 18.2\" x 40\" "], "total_reviews": 1, "total_answered_questions": "", "model": "\u200eDining Table Set", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09CYZQCQ1/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Antique Graywash", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/510-GFcmL7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0882NKDXH/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Brown Finish+black Cushion", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LcvjRRuES.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HC6F76X/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Brown-1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LqR2r6u-S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NM69XYW/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Brown-6", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51JQearZUMS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LLN3DS1/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Cherry + White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LBU2uViVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FHKQ1R6/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Espresso", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51qMlWnC7tS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PFPCYBX/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Espresso + Beige 9", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51VpxwCfuJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LLQKYL7/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Gray + Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/514eUP2KIzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QC8FS36/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Gray Finish+black Cushion", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Na44WLHqS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09B8XG8PR/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Gray+beige Cushion", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51MvYc-VxfS.jpg"}, {"is_selected": true, "url": null, "value": "Gray+gray Cushion", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oBcRkCySL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HC82P8T/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Gray-1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51S2WL+6vsS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FHK5479/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Xpr-hK5aS.jpg"}]}, "seller_id": "A14YN9QU92FENT", "seller_name": "Yuekan&FUR", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09B7G7P58", "category": "garden", "query": "Living room Sets", "page": 24, "small_description_old": "About this item \ud83e\udd1e [Extendable Drop Leaf Design] - Offer 2 great dining chairs and an attractive kitchen table, this refined dinette set will reinvent your dining room with its extendable drop leaf design. Featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed. \ud83e\udd1e [Extra Shelf Table] - The shelf on the bottom creates a display area for your magazines, decorative baskets and other daily essentials within arm reach while also a providing space-saving solution. The compact round structure neatly fits into small spaces without compromising the function. \ud83e\udd1e [Wooden Dining Table Set] - Built with high quality solid rubber wood legs with MDF tabletop, the tabletop is strong and smooth for easy cleaning, the rubber wood table legs are solid to ensure a stable construction. The chair and bench legs are made of plywood with strong bending resistance, and the rubber wood seat is wear-resistant, built for a long-time use. This set is designed to hold 200lbs maximum capacity for its table and last for years. \ud83e\udd1e [Farmhouse Dining Table set] - Finished with retro and graceful antique graywash coating as well as classical cross back, this eye-catching dining table and bench set serves up irresistible charm and a home-grown cottage aesthetic for your dining room.\u00a0 \ud83e\udd1e [Easy to Assemble] - All parts, tools and instructions are shipped straight to your door in efficiently packed box. If you have any questions, please feel free to contact us. We will contact you within 6 hours. After placing the order, it will be shipped from the US local warehouse. The package will be delivered to your home in the shortest time. Extended Table Dimensions: Dia 42.3\" x 35.3\" Folded Table Size: 34.6\" x 24\" x 35.3\" Chair Dimensions: 15.8\" x 18.2\" x 40\" \n \u203a See more product details"}, {"name": "Level 3 Temporary Beard Color - For Black Hair Beards - Full Beard in Minutes - Easy to Apply and No Mixing Required L3 - Level Three Natural Looking Black Dye", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.73 x 3.11 x 1.73 inches; 5.61 Ounces", "UPC\n \u200f": "\u200e\n 850018251099", "Manufacturer\n \u200f": "\u200e\n L3V3L3", "ASIN\n \u200f": "\u200e\n B08SMS3CNY", "Best Sellers Rank": "#103,819 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,763 in Hair Coloring Products", "#1,763 in Hair Coloring Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the L3 Store", "brand_url": "https://www.amazon.com/stores/L3/page/A7523D2E-6C29-47AF-A2A6-FCF1D917C4EC?ref_=ast_bln", "full_description": "", "pricing": "$18.32", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31kPs4o3ELL.jpg", "https://m.media-amazon.com/images/I/41pgDpbge1L.jpg", "https://m.media-amazon.com/images/I/41xKVHhPzpL.jpg", "https://m.media-amazon.com/images/I/51EAaUWv3OL.jpg", "https://m.media-amazon.com/images/I/416srvGnyaL.jpg", "https://m.media-amazon.com/images/I/51mR0306m6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Coloring Products", "average_rating": 3.5, "small_description": ["READY TO APPLY, NO MIXING REQUIRED - Our beard color bottle is ready to apply with no mixing required. ", "FULL BEARD APPEARANCE IN MINUTES - The men beard dye gives you a nice full beard within minutes! ", "NATURAL-LOOKING RESULTS - We made sure to formulate the beard dye that lead to natural looking results and that's what you will get with usage. ", "COVERS WHITE/GRAY HAIR - The beard dye works easily on covering white and grey hair. ", "NO HARSH CHEMICAL INGREDIENTS - There is no harsh chemicals that will irritate our redden your beard. "], "total_reviews": 187, "total_answered_questions": 3, "customization_options": "", "seller_id": "A1XKNRVO5R2OX4", "seller_name": "5th Ace Enterprise", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08SMS3CNY", "category": "beauty", "query": "Hair Coloring Products", "page": 8, "small_description_old": "READY TO APPLY, NO MIXING REQUIRED - Our beard color bottle is ready to apply with no mixing required. FULL BEARD APPEARANCE IN MINUTES - The men beard dye gives you a nice full beard within minutes! NATURAL-LOOKING RESULTS - We made sure to formulate the beard dye that lead to natural looking results and that's what you will get with usage. COVERS WHITE/GRAY HAIR - The beard dye works easily on covering white and grey hair. NO HARSH CHEMICAL INGREDIENTS - There is no harsh chemicals that will irritate our redden your beard."}, {"name": "YOUNG VISION Cream Blush Stick, All-in-One Natural Makeup Stick for Cheeks, Lips, Eyes and Contour, Matte Pink/Peach/Brown Face Blushes, Highlighter and Contour for Mature Skin, Long Lasting", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4.45 x 3.78 x 1.34 inches; 4.41 Ounces", "Manufacturer\n \u200f": "\u200e\n Zhejiang Yuantiao Cosmetics Co., Ltd.", "ASIN\n \u200f": "\u200e\n B08XQRDDT1", "Best Sellers Rank": "#67,946 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#198 in Face Blushes", "#198 in Face Blushes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the YOUNG VISION Store", "brand_url": "https://www.amazon.com/stores/YOUNGVISION/page/71956E3E-AB9D-478C-9492-ED715328F46A?ref_=ast_bln", "full_description": "", "pricing": "$15.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/514+C3RAjsL.jpg", "https://m.media-amazon.com/images/I/511Ax8Yg46L.jpg", "https://m.media-amazon.com/images/I/41XeMC79tCL.jpg", "https://m.media-amazon.com/images/I/51cKskEUmUL.jpg", "https://m.media-amazon.com/images/I/41ZsRjvxEIL.jpg", "https://m.media-amazon.com/images/I/81VYQtskLZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Face \u203a Blush", "average_rating": 3.9, "small_description": ["\u3010MULTI USE\u3011This lip and cheek tint set can be multi used for eyes, cheeks and lips, include a highlight and 3 matte colors. Whether you want to make eyeshadow, blush, contour or color your lips, it can help you achieve it. There are not only 4 colors' combination, but also countless beautiful makeup results ", "\u3010EASY TO APPLY\u3011Lightweight and portable multi-sticks, go on smoothly and long lasting, very suitable for temporary touch-ups ", "\u3010PERFECT BLENDING\u3011Thsi creamy tinted blush set have sheer and natural texture\uff0cWhether it is highlight or soft matte peach colors, it can have a good blending effect into skin, making you look younger, more energetic, and more aura. ", "\u3010SAFE AND RELIABLE INGREDIENTS\u3011We Have used an upgraded natural ingredient formula for this Creamy bronzer set, and follows cruelty-free and vegan principles, eliminating harmful substances while making its texture lighter and thinner "], "total_reviews": 122, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08XQQWZ3L/ref=twister_B08XQR5C1R?_encoding=UTF8&psc=1", "value": "SET-A", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/51DI6L0k87L.jpg"}, {"is_selected": true, "url": null, "value": "Set-B", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/514+C3RAjsL.jpg"}]}, "seller_id": "A3590G6VGRCQ67", "seller_name": "YOUNG VISION", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08XQRDDT1", "category": "beauty", "query": "Lips Makeup", "page": 34, "small_description_old": "About this item \u3010MULTI USE\u3011This lip and cheek tint set can be multi used for eyes, cheeks and lips, include a highlight and 3 matte colors. Whether you want to make eyeshadow, blush, contour or color your lips, it can help you achieve it. There are not only 4 colors' combination, but also countless beautiful makeup results \u3010EASY TO APPLY\u3011Lightweight and portable multi-sticks, go on smoothly and long lasting, very suitable for temporary touch-ups \u3010PERFECT BLENDING\u3011Thsi creamy tinted blush set have sheer and natural texture\uff0cWhether it is highlight or soft matte peach colors, it can have a good blending effect into skin, making you look younger, more energetic, and more aura. \u3010SAFE AND RELIABLE INGREDIENTS\u3011We Have used an upgraded natural ingredient formula for this Creamy bronzer set, and follows cruelty-free and vegan principles, eliminating harmful substances while making its texture lighter and thinner"}, {"name": "Linange Milk and Keratin Mask 500ml; Softening, Strengthening, Moisturizing, Nourishing, Hair Care Product; Hair Mask w/Proteins for Men and Women \u2013 for Dry, Frizzy, Damaged, Curly Hair", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 4.2 x 4.2 x 4 inches; 1 Pounds", "Manufacturer\n \u200f": "\u200e\n LINANGE", "ASIN\n \u200f": "\u200e\n B079HGJ5MH", "Best Sellers Rank": "#359,172 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,469 in Hair Treatment Masks", "#1,469 in Hair Treatment Masks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the LINANGE Store", "brand_url": "https://www.amazon.com/stores/LINANGE/page/6659826D-6190-48EC-BCDC-A929529F9C66?ref_=ast_bln", "full_description": "", "pricing": "$49.95", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31exEDc8HEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Masks", "average_rating": 4.3, "small_description": ["Milk and Keratin Mask (masque) 500ml. This mask hair care product is a revitalizing mask enriched with Milk and Keratin extracts, & proteins. ", "Milk and Keratin: Milk and Keratin extracts are loaded with proteins and amino acids that can help to assist in revitalizing and nourishing hair, head and scalp. Milk is high in lactic acid amino acids, proteins, vitamins and minerals. Keratin can help protect cells from stress or damage. Used by professionals in salons and in homes, alike. ", "Features/Hair Type: Infused with our renovation technology. Excellent softener for dry and frizzy hair. Gently nourishes hair structure, restores shine, and eliminates static electricity. This is an amazing hair care product masque that is enriched with Milk and Keratin extracts, and its rebalancing, anti-flyaway action makes it especially suited for dry and frizzy hair ", "Directions: Apply this hair mask after shampooing hair. Leave on for 10-15 minutes. Massage into hair and rinse off well. ", "Uses: This softening and strengthening mask can be used for all types of hair \u2013 dry, frizzy, thin, medium, thick, healthy, damaged, normal and curly. Great for treated hair, or after a haircut. Can be used by men \u2013 males, women \u2013 females, professionals, amateurs; in salons, homes, showers, and baths. For clarifying, hydrating, moisturizing, cleansing, nourishing, and revitalizing. "], "total_reviews": 42, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "500ml", "price_string": "$49.95", "price": 49.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B008SEX82C/ref=twister_B079HD19JG?_encoding=UTF8&psc=1", "value": "1000ml", "price_string": "$79.95", "price": 79.95, "image": null}]}, "seller_id": "A1G1MN1NX7F2T8", "seller_name": "Your Beauty Our Passion", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B079HGJ5MH", "category": "beauty", "query": "Hair Masks", "page": 13, "small_description_old": "About this item Milk and Keratin Mask (masque) 500ml. This mask hair care product is a revitalizing mask enriched with Milk and Keratin extracts, & proteins. Milk and Keratin: Milk and Keratin extracts are loaded with proteins and amino acids that can help to assist in revitalizing and nourishing hair, head and scalp. Milk is high in lactic acid amino acids, proteins, vitamins and minerals. Keratin can help protect cells from stress or damage. Used by professionals in salons and in homes, alike. Features/Hair Type: Infused with our renovation technology. Excellent softener for dry and frizzy hair. Gently nourishes hair structure, restores shine, and eliminates static electricity. This is an amazing hair care product masque that is enriched with Milk and Keratin extracts, and its rebalancing, anti-flyaway action makes it especially suited for dry and frizzy hair Directions: Apply this hair mask after shampooing hair. Leave on for 10-15 minutes. Massage into hair and rinse off well. Uses: This softening and strengthening mask can be used for all types of hair \u2013 dry, frizzy, thin, medium, thick, healthy, damaged, normal and curly. Great for treated hair, or after a haircut. Can be used by men \u2013 males, women \u2013 females, professionals, amateurs; in salons, homes, showers, and baths. For clarifying, hydrating, moisturizing, cleansing, nourishing, and revitalizing."}, {"name": "Viracy Women's Short Sleeve V-Neck Casual Flowy Tunic Shirt (M-3XL)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 9.25 x 7.95 x 1.22 inches; 5.61 Ounces", "Item model number\n \u200f": "\u200e\n shirt VC023BK14", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 30, 2019", "ASIN\n \u200f": "\u200e\n B07MGB73NJ", "Best Sellers Rank": "#216,770 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,931 in Women's Tunics", "#1,931 in Women's Tunics": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Viracy Store", "brand_url": "https://www.amazon.com/stores/Viracy/page/45117786-DC98-4E98-877C-4D4A84B8C8E6?ref_=ast_bln", "full_description": "", "pricing": "$16.99$26.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51VXn21pnSL.jpg", "https://m.media-amazon.com/images/I/51Qhr2vfWhL.jpg", "https://m.media-amazon.com/images/I/51j5gw4B51L.jpg", "https://m.media-amazon.com/images/I/51ydeuMmpaL.jpg", "https://m.media-amazon.com/images/I/51GB0KHRuOL.jpg", "https://m.media-amazon.com/images/I/41dc+dV2awL.jpg", "https://m.media-amazon.com/images/I/51r7z5Gh99L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.1, "small_description": ["Unique Design - Short Sleeve/ V Neck/ Button Trim/ Subtle Pleats/ Flare Silhouette/ High Elasticity/ Relaxed Fit/ Fashion Casual Style/ Floral Print/ Solid Color ", "Stylish V Neck - Modest V neckline is neither too low to be revealing,nor too high to make busty women look weird,it is elegant and just fits right .This sparkly design can easily catch people's eyes. ", "A line Silhouette - Cute front ruffle and flare hem can perfectly modify the belly,show off your feminine curve.Good tunic length can cover hips,make you looking more elegant and charming. ", "Easy To Pair - This nice tunic blouse is easy to go with Any Pants, Jeans, leggings,Pencil Skirt.You can wear it for Home,Office and Casual. An essential shirt in women wardrobe. ", "Style: Swing Tunic Tops/ Short Sleeve Tunics for Women/ Casual Loose Tops/ V Neck Tunics to wear with Leggings/ Women Tops and Blouses Fashion 2019/ Flowy Top "], "total_reviews": 680, "total_answered_questions": 25, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07MGB73NJ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07MCP7F5G"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07MJVHCSQ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07M7ZC7H5"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B0936SPQXG"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51VXn21pnSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07MCN7NBX/ref=twister_B07MMFQ762", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/417fcOtO+cS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07MMF7QJD/ref=twister_B07MMFQ762", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/519jMYp4KgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07P8ZRTMC/ref=twister_B07MMFQ762", "value": "Green2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51BburPjsDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08Y6MFQSG/ref=twister_B07MMFQ762", "value": "Sunflowers", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51z-zxJ8qvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08Y6LBTN1/ref=twister_B07MMFQ762", "value": "Tie Dye", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51AMzm6Pc6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SJ7NBL8/ref=twister_B07MMFQ762", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51aryiL9zUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SJ87FLJ/ref=twister_B07MMFQ762", "value": "Wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pLKVczQ6L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07MGB73NJ", "category": "fashion", "query": "Women's Tops, Tees & Blouses", "page": 31, "small_description_old": "\ud83c\udf38Breathable & Comfort -Floral:95% Polyester,5% Spandex.Drapes nicely and keeps the air flowing through this tunic,designed for incoming spring and summer. \ud83d\udca5\ud83d\udca5Lightning Deal: UP to 15% Off. Today's Deal Only.\ud83d\udca5\ud83d\udca5Snap up now before the price goes up. Button closure Machine Wash Unique Design - Short Sleeve/ V Neck/ Button Trim/ Subtle Pleats/ Flare Silhouette/ High Elasticity/ Relaxed Fit/ Fashion Casual Style/ Floral Print/ Solid Color Stylish V Neck - Modest V neckline is neither too low to be revealing,nor too high to make busty women look weird,it is elegant and just fits right .This sparkly design can easily catch people's eyes. A line Silhouette - Cute front ruffle and flare hem can perfectly modify the belly,show off your feminine curve.Good tunic length can cover hips,make you looking more elegant and charming. \n Easy To Pair - This nice tunic blouse is easy to go with Any Pants, Jeans, leggings,Pencil Skirt.You can wear it for Home,Office and Casual. An essential shirt in women wardrobe.Style: Swing Tunic Tops/ Short Sleeve Tunics for Women/ Casual Loose Tops/ V Neck Tunics to wear with Leggings/ Women Tops and Blouses Fashion 2019/ Flowy TopShow more"}, {"name": "Listerine Smart Rinse Kids Mouthwash Mild Mint", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 3.94 x 3.94 x 3.94 inches; 6.77 Pounds", "Item model number\n \u200f": "\u200e\n 3387974", "Manufacturer\n \u200f": "\u200e\n Johnson & Johnson", "ASIN\n \u200f": "\u200e\n B001EHF3KK", "Best Sellers Rank": "#157,818 in Health & Household (See Top 100 in Health & Household)#608 in Mouthwashes", "#608 in Mouthwashes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Johnson & Johnson", "brand_url": "https://www.amazon.com/Johnson-Johnson/b/ref=bl_dp_s_web_21559084011?ie=UTF8&node=21559084011&field-lbr_brands_browse-bin=Johnson+%26+Johnson", "full_description": "Listerine Smart Children Mint", "pricing": "$14.70", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41GBWR2V1nL.jpg", "https://m.media-amazon.com/images/I/418pQcZRPcL.jpg", "https://m.media-amazon.com/images/I/31Mj9maXPOL.jpg", "https://m.media-amazon.com/images/I/31pip1Ap4CL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Mouthwash", "average_rating": 3.8, "small_description": ["Fun & easy way to protect teeth Helps protect against cavities Cleans what brushing misses Alcohol & sugar free mouthwash "], "total_reviews": 45, "total_answered_questions": "", "customization_options": "", "seller_id": "A1O3Q73Y02TSCM", "seller_name": "Acrossthepond - Shipped from UK", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B001EHF3KK", "category": "beauty", "query": "Mouthwash", "page": 20, "small_description_old": "About this item Fun & easy way to protect teeth Helps protect against cavities Cleans what brushing misses Alcohol & sugar free mouthwash"}, {"name": "Rustic Wooden Chandelier,1-Light Farmhouse Chandelier Hanging Light Fixture Antique Wood Vintage Pendant Light for Dining Room,Kitchen Island,Foyer", "product_information": {"Brand": "\u200eCREATE BRIGHT", "Manufacturer": "\u200eCREATE BRIGHT", "Item Weight": "\u200e3.35 pounds", "Package Dimensions": "\u200e9.84 x 9.57 x 4.53 inches", "Country of Origin": "\u200eChina", "Item Package Quantity": "\u200e110", "Color": "\u200eAntique Wood", "Material": "\u200eWood, Metal", "Finish Types": "\u200eAntique", "Number of Lights": "\u200e1", "Shade Material": "\u200eWood", "Batteries Required?": "\u200eNo", "Certification": "\u200eUL", "Type of Bulb": "\u200eIncandescent", "ASIN": "B09KQQNRRM", "Best Sellers Rank": ["#258,471 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #1,671 in Chandeliers"], "Date First Available": "May 26, 2020"}, "brand": "Visit the CREATE BRIGHT Store", "brand_url": "https://www.amazon.com/stores/CREATE+BRIGHT/page/CA3A9B74-88A9-4E71-80C9-8973B8422238?ref_=ast_bln", "full_description": "small wood chandelier", "pricing": "$65.99", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51-OZrJ+VwL.jpg", "https://m.media-amazon.com/images/I/31pKtv4zNYL.jpg", "https://m.media-amazon.com/images/I/21arqgK7lCL.jpg", "https://m.media-amazon.com/images/I/516zz7w+D9L.jpg", "https://m.media-amazon.com/images/I/514KfAxxArL.jpg", "https://m.media-amazon.com/images/I/51gDmeFNURL.jpg", "https://m.media-amazon.com/images/I/51hUsI9gT9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Chandeliers", "average_rating": "", "small_description": ["Vintage style wooden chandelier:The cylindrical rustic chandelier lighting dimension D7 x H20 (inch) with adjustable chain 59 inch, 1 E26 socket, compatible with Max 60w incandescent light bulb and dimmer switch (Both switch and Bulbs Not Included). ", "Excellent Surface Treatment Process:This rustic\u00a0chandeliers\u00a0farmhouse is constructed of a quality wood frame and a premium black metal finish, the grain of the wood look adds a vintage, artistic and charming appeal, the rustproof material brings you a durable wood pendant light that will decorate your space for years to come! ", "Adjustable Height:The adjustable boom creates a flexible farmhouse light fixtures. 59\" boom is made of high quality metal so you don't have to worry about rust or breakage. You can adjust the most appropriate height according to your desire. ", "Wide range of applications:This rustic chandelier is perfectly applied to bar, living room, entryway, corridor, hallway, kitchen island, foyer, farmhouse etc. Hanging in group of two or more to creating warm atmosphere,Perfect decoration indoor space. ", "Buy with confidence:We are committed to providing the best user experience and service. This wood chandelier is UL listed. If you have any questions during the installation process, you can contact us via email and we will get back to you within 24 hours, so buy with confidence. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Antique Wood", "price_string": "$65.99", "price": 65.99, "image": "https://m.media-amazon.com/images/I/51-OZrJ+VwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KQQ24B7/ref=twister_B09TPSBCCN?_encoding=UTF8&psc=1", "value": "Distressed White", "price_string": "$65.99", "price": 65.99, "image": "https://m.media-amazon.com/images/I/515fkdzcCEL.jpg"}]}, "seller_id": "A122F8GW92NYV8", "seller_name": "HBLCL", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": "", "asin": "B09KQQNRRM", "category": "garden", "query": "Pendants and Chandeliers", "page": 64, "small_description_old": "About this item Vintage style wooden chandelier:The cylindrical rustic chandelier lighting dimension D7 x H20 (inch) with adjustable chain 59 inch, 1 E26 socket, compatible with Max 60w incandescent light bulb and dimmer switch (Both switch and Bulbs Not Included). Excellent Surface Treatment Process:This rustic\u00a0chandeliers\u00a0farmhouse is constructed of a quality wood frame and a premium black metal finish, the grain of the wood look adds a vintage, artistic and charming appeal, the rustproof material brings you a durable wood pendant light that will decorate your space for years to come! Adjustable Height:The adjustable boom creates a flexible farmhouse light fixtures. 59\" boom is made of high quality metal so you don't have to worry about rust or breakage. You can adjust the most appropriate height according to your desire. Wide range of applications:This rustic chandelier is perfectly applied to bar, living room, entryway, corridor, hallway, kitchen island, foyer, farmhouse etc. Hanging in group of two or more to creating warm atmosphere,Perfect decoration indoor space. Buy with confidence:We are committed to providing the best user experience and service. This wood chandelier is UL listed. If you have any questions during the installation process, you can contact us via email and we will get back to you within 24 hours, so buy with confidence. \n \u203a See more product details"}, {"name": "e.l.f. Makeup Mist and Set, Clear, 2.02 Ounce, 3 Pack", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 4.2 x 1.8 x 5.2 inches; 8.92 Ounces", "Item model number\n \u200f": "\u200e\n SG_B074F9FBV3_US", "ASIN\n \u200f": "\u200e\n B074F9FBV3", "Best Sellers Rank": "#267,266 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#837 in Foundation Primers", "#837 in Foundation Primers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the e.l.f. Store", "brand_url": "https://www.amazon.com/stores/elf/page/0D20CBB2-BB73-4B24-9CFB-34A96815C14A?ref_=ast_bln", "full_description": "", "pricing": "$19.97", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/515qkubOA-L.jpg", "https://m.media-amazon.com/images/I/41cLVnDjLJL.jpg", "https://m.media-amazon.com/images/I/51CFYG2nMnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Face \u203a Foundation Primers", "average_rating": 4.4, "small_description": [""], "total_reviews": 42, "total_answered_questions": "", "customization_options": "", "seller_id": "AG7X8DOJKUODM", "seller_name": "YoneLay", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B074F9FBV3", "category": "beauty", "query": "Makeup Sets", "page": 95, "small_description_old": ""}, {"name": "OluKai MEA Ola - Men's Supportive Sandal Charcoal/Dkjava - 14", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 3 x 8 x 10 inches; 10.08 Ounces", "Item model number\n \u200f": "\u200e\n 10138-2648", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n August 17, 2013", "Manufacturer\n \u200f": "\u200e\n Olukai", "ASIN\n \u200f": "\u200e\n B008QYOGZ2", "Best Sellers Rank": "#5,597,172 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#18,182 in Men's Running Shoes", "#18,182 in Men's Running Shoes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the OLUKAI Store", "brand_url": "https://www.amazon.com/stores/OluKai/page/E73AA65B-28BA-470C-95F6-3A2246230287?ref_=ast_bln", "full_description": "Slip into the Olukai Men's Mea Ola Sandal when you have a relaxing day to look forward to. Premium full-grain leather wraps the straps, footbed, and sole for smooth comfort, and the microfiber lining is soft against the tops of your feet. This sandal's compression-molded EVA midsole features an anatomically correct contour for sustained comfort overtime. Olukai added non-marking rubber lugs underneath the leather sole in order to give you some grippy traction while you walk the boardwalk.", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/31xUAsoyosL.jpg", "https://m.media-amazon.com/images/I/41+dzc0zRyL.jpg", "https://m.media-amazon.com/images/I/41yD5cpqo0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Athletic \u203a Running", "average_rating": 4.5, "small_description": ["Made in the USA or imported ", "Leather sole ", "Upper Material: [face fabric] full-grain leather, [lining] microfiber ", "Footbed: full-grain leather ", "Midsole: compression-molded EVA ", "Sole: full-grain leather, non-marking rubber ", "Recommended Use: casual "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B008QYOGZ2", "category": "fashion", "query": "Men's Sandals", "page": 131, "small_description_old": "100% Leather Made in the USA or imported Leather sole Upper Material: [face fabric] full-grain leather, [lining] microfiber Footbed: full-grain leather Midsole: compression-molded EVA Sole: full-grain leather, non-marking rubber Recommended Use: casual"}, {"name": "Women Lingerie Sexy Sets - Cage Bra + Corset Bandage Hollow G String Thong Panties Racy Muslin Sleepwear Underwear", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 20, 2022", "Manufacturer\n \u200f": "\u200e\n QIUSGE women Underwear -791", "ASIN\n \u200f": "\u200e\n B09QXG3BM2", "": ""}, "brand": "Brand: QIUSGE", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=QIUSGE", "full_description": "---- -------- -------- ------ --- --- \u2764\ufe0f \u2764\ufe0fSize:S --- US:4 --- UK:8 --- EU:34 --- Under Bust:64cm/25.2\" --- Fit Bust:86-92cm/33.9-36.2\" --- Waist:64cm/25.2\" \u2764\ufe0f \u2764\ufe0fSize:M --- US:6 --- UK:10 --- EU:36 --- Under Bust:68cm/26.8\" --- Fit Bust:92-98cm/36.2-38.6\" --- Waist:68cm/26.8\" \u2764\ufe0f \u2764\ufe0fSize:L --- US:8 --- UK:12 --- EU:38 --- Under Bust:72cm/28.3\" --- Fit Bust:98-104cm/38.6-40.9\" --- Waist:72cm/28.3\" \u2764\ufe0f \u2764\ufe0fSize:XL --- US:10 --- UK:14 --- EU:40 --- Under Bust:76cm/29.9\" --- Fit Bust:104-110cm/40.9-43.3\" --- Waist:76cm/29.9\" \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f \" --- \u3010Note: \u3011This is asian size ,run small.If you want looser ,please choose 1-3 size larger.Please check with our size chart before buying.Petite or full bodied, all will find a size. \" --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- Material:Spandex --- --- --- --- ---", "pricing": "$10.30", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41YzaEIf-lL.jpg", "https://m.media-amazon.com/images/I/51-o4xw+Q4L.jpg", "https://m.media-amazon.com/images/I/41H1YVitUUL.jpg", "https://m.media-amazon.com/images/I/513sCbEM-5L.jpg", "https://m.media-amazon.com/images/I/51AXSE7y7EL.jpg", "https://m.media-amazon.com/images/I/51U6+nkpLNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Exotic Apparel \u203a Women \u203a Lingerie Sets", "average_rating": "", "small_description": ["100% Polyester ", "\u00b7 \ud83c\udf3b\ud83d\udc1d Fast Delivery :FAST SHIPPING,DELIVERY TIME:7-15 DAYS!!!.So Don't Worry About The Estimated Delivery Time, We Will Choose the Fastest Logistics, Usually it Will be Delivered in Advance.the delivery time is much less than the time marked by Amazon. ", "\ud83c\udf3b\ud83d\udc1d Adorn your green house, yard and general landscaping with these cute metal bumble bees for the garden. They add a stylish lawn accent for anytime of the year and you use them inside. ", "\u00b7 \ud83c\udf3b\ud83d\udc1dThese metal garden decorations can be hung on fences and posts throughout the yard instead of being placed on the ground. Place them around the yard for a busy bee atmosphere for spring. ", "\ud83c\udf3b\ud83d\udc1dBecause these metal bumble bee ornaments are so stylish and have a versatile design scheme, you can use them inside the home too. Place them through the home for an outdoors vibe. ", "\ud83c\udf3b\ud83d\udc1dPlace these cute little metal garden critters around your own gardening areas and fences or give them as a planting season gift for the home gardener with a green thumb. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09QXG3BM2"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09QWZ7ZVL"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09QX3P2YJ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09QXHN7PT"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QXG3BM2", "category": "fashion", "query": "Women's Lingerie, Sleep & Lounge", "page": 94, "small_description_old": "100% Polyester \u00b7 \ud83c\udf3b\ud83d\udc1d Fast Delivery :FAST SHIPPING,DELIVERY TIME:7-15 DAYS!!!.So Don't Worry About The Estimated Delivery Time, We Will Choose the Fastest Logistics, Usually it Will be Delivered in Advance.the delivery time is much less than the time marked by Amazon. \ud83c\udf3b\ud83d\udc1d Adorn your green house, yard and general landscaping with these cute metal bumble bees for the garden. They add a stylish lawn accent for anytime of the year and you use them inside. \u00b7 \ud83c\udf3b\ud83d\udc1dThese metal garden decorations can be hung on fences and posts throughout the yard instead of being placed on the ground. Place them around the yard for a busy bee atmosphere for spring. \ud83c\udf3b\ud83d\udc1dBecause these metal bumble bee ornaments are so stylish and have a versatile design scheme, you can use them inside the home too. Place them through the home for an outdoors vibe. \ud83c\udf3b\ud83d\udc1dPlace these cute little metal garden critters around your own gardening areas and fences or give them as a planting season gift for the home gardener with a green thumb."}, {"name": "Nite Ize Steelie Squeeze Windshield Kit, Universal Windshield Magnetic Car Mount Holder, Compatible With MagSafe iPhone 12 Pro Max/Mini/Galaxy/Edge/Google Pixel and more", "product_information": {"Package Dimensions": "10.75 x 4.21 x 2.2 inches", "Item Weight": "9.5 ounces", "ASIN": "B08QRHVS6N", "Item model number": "STSWK-01-R8", "Customer Reviews": {"ratings_count": 15776, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#707 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #11 in Amazon Launchpad Electronics #45 in Cell Phone Automobile Cradles"], "Special Features": "Rotatable, Adjustable, Wireless Charging", "Other display features": "Wireless", "Colour": "Windshield Kit", "Included Components": "Steelie Squeeze Windshield Kit", "Manufacturer": "Nite Ize, Inc.", "Country of Origin": "China", "Date First Available": "December 15, 2020"}, "brand": "Visit the Nite Ize Store", "brand_url": "https://www.amazon.com/stores/NiteIze/page/892B8B38-5CEA-4244-B77E-A601561EE431?ref_=ast_bln", "full_description": "\"Dock your phone for the long haul and navigate hands-free with just a Squeeze\u2122. The Steelie Squeeze Windshield Kit pairs the modern Squeeze Clamp with the classic Steelie Windshield Mount for space-saving attachment, smooth 360\u00ba rotation, and a strong hold. Virtually any phone is secured between the grippy Squeeze arms and magnetically attached to the Windshield Mount for adjustable viewing. To secure your phone for the drive ahead, easily pinch the levers to open the Squeeze arms, place your phone, and release the levers to secure\u2014no extra grip strength needed. As an added bonus, when the Squeeze Clamp is on your phone, it can magnetically connect to other Steelie mounts and magnetic surfaces such as your refrigerator, car, or toolbox for hands-free viewing. In addition to allowing for endless interchanging between multiple phones and cases, Squeeze is also compatible with MagSafe phones, cases and wireless chargers. The Magnetic Socket Plus on the Squeeze Clamp features a silicone center, providing a smooth glide and firm grip when connected to the Windshield Mount while allowing for easy 360\u00ba rotation and adjustment. The Windshield Mount features an adjustable aluminum arm and suspended Steelie ball design which can be securely adjusted to your ideal angle. The patented suction cup design features an easy-to-use locking lever that engages the suction cup for ultimate holding power to your windshield, also acting as a quick release lever when you want to transfer it to another vehicle. The Steelie Squeeze Clamp contains a strong magnet. This magnet will NOT damage your mobile device; however, do not place it near magnetically sensitive objects such as credit cards, pacemakers, or computer hard drives. Nite Ize assumes no liability for damage to such products.\"", "pricing": "$36.73", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31UcOuutGZL.jpg", "https://m.media-amazon.com/images/I/41QODzHCT7L.jpg", "https://m.media-amazon.com/images/I/41yEN5fZUNL.jpg", "https://m.media-amazon.com/images/I/51VmC44rnmL.jpg", "https://m.media-amazon.com/images/I/51skYwOAbRL.jpg", "https://m.media-amazon.com/images/I/41mfKEdOtFL.jpg", "https://m.media-amazon.com/images/I/91-NnTFi38L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Automobile Accessories \u203a Cradles", "average_rating": 4.5, "small_description": ["UNIVERSAL FIT - The Squeeze Clamp fits most standard and plus-sized phones, including a case and accessories, up to 2.3\u201d \u2013 3.6\u201d wide | 60mm \u2013 93mm, including the iPhone 12 Pro Max, iPhone 12 Mini, Samsung Galaxy, and more ", "EASY TO SQUEEZE - The Squeeze car mount holder features two levers at its base that require a simple pinch of your thumb and index finger to open the clamp and place your phone, no extra grip needed ", "HOLDS STRONG THROUGH IT ALL -Don't be fooled by its easy-to-squeeze nature - the Squeeze Clamp features inner continuous force springs that amplify the hold of your phone, along with grippy arms to keep it in place through every twist and turn ", "COMPATIBLE WITH MAGSAFE + MORE - Squeeze is compatible with MagSafe chargers, accessories, and other wireless charging pads, while also allowing you to easily change your case or phone ", "SMOOTH ADJUSTMENT + 360\u00b0 ROTATION - The Squeeze Clamp magnetically attaches onto the steel ball of the Windshield Mount, allowing for smooth adjustment and hands-free viewing at any angle ", "PATENTED SUCTION TECHNOLOGY - The adjustable aluminum arm and suspended Steelie ball design adheres to any windshield with a patented suction cup design for ultimate holding power, with a lever for engagement/quick release "], "total_reviews": 15776, "total_answered_questions": 399, "model": "STSWK-01-R8", "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "Squeeze", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MSZY38J/ref=twister_B09QRXQ4YC", "value": "Dash", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01JJP5CT0/ref=twister_B09QRXQ4YC", "value": "Vent", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07485TKQJ/ref=twister_B09QRXQ4YC", "value": "Windshield", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08QR1PCMJ/ref=twister_B09QRXQ4YC?_encoding=UTF8&psc=1", "value": "Dash Kit", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31jNCCiABCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MSZY38J/ref=twister_B09QRXQ4YC", "value": "Freemount", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31WxrnVB+8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FQVR54F/ref=twister_B09QRXQ4YC", "value": "Orbiter", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Whg09W8cL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00BAQKRHY/ref=twister_B09QRXQ4YC", "value": "Original", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qxbZ5VFOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078NPFFDP/ref=twister_B09QRXQ4YC", "value": "Plus", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31nA9SjkF8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08QRNP22N/ref=twister_B09QRXQ4YC?_encoding=UTF8&psc=1", "value": "Vent Kit", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31TB-4b-4zL.jpg"}, {"is_selected": true, "url": null, "value": "Windshield Kit", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41QODzHCT7L.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08QRHVS6N", "category": "electronics", "query": "iPhone Accessories", "page": 232, "small_description_old": "About this item UNIVERSAL FIT - The Squeeze Clamp fits most standard and plus-sized phones, including a case and accessories, up to 2.3\u201d \u2013 3.6\u201d wide | 60mm \u2013 93mm, including the iPhone 12 Pro Max, iPhone 12 Mini, Samsung Galaxy, and more EASY TO SQUEEZE - The Squeeze car mount holder features two levers at its base that require a simple pinch of your thumb and index finger to open the clamp and place your phone, no extra grip needed HOLDS STRONG THROUGH IT ALL -Don't be fooled by its easy-to-squeeze nature - the Squeeze Clamp features inner continuous force springs that amplify the hold of your phone, along with grippy arms to keep it in place through every twist and turn COMPATIBLE WITH MAGSAFE + MORE - Squeeze is compatible with MagSafe chargers, accessories, and other wireless charging pads, while also allowing you to easily change your case or phone SMOOTH ADJUSTMENT + 360\u00b0 ROTATION - The Squeeze Clamp magnetically attaches onto the steel ball of the Windshield Mount, allowing for smooth adjustment and hands-free viewing at any angle PATENTED SUCTION TECHNOLOGY - The adjustable aluminum arm and suspended Steelie ball design adheres to any windshield with a patented suction cup design for ultimate holding power, with a lever for engagement/quick release"}, {"name": "Lingerie for Women Faux Leather Teddy Bodysuit Halter Tops Sleepwear Sexy One Piece Babydoll Exotic Nightwear Bodycon", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Item model number\n \u200f": "\u200e\n womens lingerie sexy teddy", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 3, 2022", "Manufacturer\n \u200f": "\u200e\n Women's Lingerie Sets", "ASIN\n \u200f": "\u200e\n B09PLCDDBV", "": ""}, "brand": "Brand: BingYELH", "brand_url": "https://www.amazon.com/BingYELH/b/ref=bl_sl_s_ap_web_19230432011?ie=UTF8&node=19230432011&field-lbr_brands_browse-bin=BingYELH", "full_description": "product information: 1.Material: Polyester/ Leather 2.Season: Spring,Summer,Autumn,Winter 3.Style: Sexy style 4.Type: Lingerie 5.How to wash:Hand wash Cold 6.Place: Honeymoon, Wedding night, lingerie Party, sleepwear,Valentine's Day.etc 7.Package: 1PC Lingerie Suit 1.If you want a more relaxed and comfortable feeling, you can buy a larger size. 2.Different monitors have slight chromatic aberration. Don't mind. Details: beautiful designed, very exquisite and fancy; Occasions: A well-made quality bustier, shows your stunning golden figure. Occasions perfectly like wedding, Halloween, Christmas, Black Friday, party, evening, cocktail, wedding, dinner, date, home and it's a special surprise gift for women. More: women's costumes exotic lingerie bodystockings nightgowns bustiers corsets plus size costumeswomens open back halter plunging teddy,comfortable scalloped trim lace women teddy one piece babydoll mini bodysuit for deep v backless slip floral see through v-neck sexy lingerie-deep neck perspective underwear hollow out crotch sex cup crotchless men set sleepwear", "pricing": "$2.99$6.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41uV5eJkeCL.jpg", "https://m.media-amazon.com/images/I/516xGfvi9jL.jpg", "https://m.media-amazon.com/images/I/51EiJRWJpgL.jpg", "https://m.media-amazon.com/images/I/41khtLrQlLL.jpg", "https://m.media-amazon.com/images/I/41YsIq6Po-L.jpg", "https://m.media-amazon.com/images/I/413uABj2w5L.jpg", "https://m.media-amazon.com/images/I/3136eP+b3aL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Lingerie \u203a Baby Dolls & Chemises", "average_rating": "", "small_description": ["adult exotic negligees ", "Made in USA or Imported ", "Dear Queen, please check our size chart, we suggest buy One size Up ", "Prime Wardrobe closure ", "Machine Wash ", "Gift -- It is Very Suitable for Birthdays, Valentine's Day, Anniversary, Halloween, Christmas and Other Special Days as a Gift to Your Lover and Girlfriend. This is a Good Gift for Lovers to Show Her Charming and Sexy Side. ", "Match -- Gorgeous, hollow out lace bralette push up bra, matching with a thong high cut panty, the perfect sexy lace nightwear for women. This boudoir babydoll lingerie can be wear as lingerie for women, sexy lace bra and panty set, g-string thongs for women, two pieces lingerie set, hollow out lace nightwear. , Occasion -- Suitable for babydoll lingerie, underwear, nightwear, sleepwear, lingerie set, honeymoon lingerie for women, bridal lingerie set, bra and panty set, and even pair with skinny pants, jackets and high heels for a hot sexy look in the night party. Perfect for special night, valentine's day, honeymoon gifts, wedding night, bridal gifts, anniversary, bedroom and every hot moment., valentines day women babydoll mesh lingerie strap chemise lace sleepwear halter nighties women satin lingerie bodysuit deep-v stretch teddy one piece lace babydoll short jumpsuit pajamas women lingerie halter chemise lace babydoll mesh nightwear v neck teddy women's modal sleepwear full slips strap nightgown v neck chemise lace lingerie women sexy bridal lingerie lace floral babydoll stretch strappy set with cute bowknot mesh thong sexy lingerie for women, 2 women lace sleepwear set v neck solid color adjustable straps sexy camisole top and elastic short pants piece nightwear for the black deco make you elegant seductive womens pajamas sets satin sleep shorts with pajama woman cami crotchless lingerie blue plus size red purple bodysuit halter garter stockings robe teddy xl sex corset chest 4x underwear 50s 36dd boudoir panties chemise 1x 28h romper corsette 3pc women's exotic lingerie bodystockings nightgowns bustiers corsets negligees"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PLCDDBV"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PLCRXJ4"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PLBDCBY"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PLC7C5X"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PLBDCBY", "category": "fashion", "query": "Women's Bodysuit Tops", "page": 117, "small_description_old": "adult exotic negligees Made in USA or Imported Dear Queen, please check our size chart, we suggest buy One size Up Prime Wardrobe closure Machine Wash Gift -- It is Very Suitable for Birthdays, Valentine's Day, Anniversary, Halloween, Christmas and Other Special Days as a Gift to Your Lover and Girlfriend. This is a Good Gift for Lovers to Show Her Charming and Sexy Side. Match -- Gorgeous, hollow out lace bralette push up bra, matching with a thong high cut panty, the perfect sexy lace nightwear for women. This boudoir babydoll lingerie can be wear as lingerie for women, sexy lace bra and panty set, g-string thongs for women, two pieces lingerie set, hollow out lace nightwear. \n Occasion -- Suitable for babydoll lingerie, underwear, nightwear, sleepwear, lingerie set, honeymoon lingerie for women, bridal lingerie set, bra and panty set, and even pair with skinny pants, jackets and high heels for a hot sexy look in the night party. Perfect for special night, valentine's day, honeymoon gifts, wedding night, bridal gifts, anniversary, bedroom and every hot moment.valentines day women babydoll mesh lingerie strap chemise lace sleepwear halter nighties women satin lingerie bodysuit deep-v stretch teddy one piece lace babydoll short jumpsuit pajamas women lingerie halter chemise lace babydoll mesh nightwear v neck teddy women's modal sleepwear full slips strap nightgown v neck chemise lace lingerie women sexy bridal lingerie lace floral babydoll stretch strappy set with cute bowknot mesh thong sexy lingerie for women2 women lace sleepwear set v neck solid color adjustable straps sexy camisole top and elastic short pants piece nightwear for the black deco make you elegant seductive womens pajamas sets satin sleep shorts with pajama woman cami crotchless lingerie blue plus size red purple bodysuit halter garter stockings robe teddy xl sex corset chest 4x underwear 50s 36dd boudoir panties chemise 1x 28h romper corsette 3pc women's exotic lingerie bodystockings nightgowns bustiers corsets negligeesShow more"}, {"name": "Rusticware 921ORB Kitchen and Bath Cabinet Knob", "product_information": {"Manufacturer": "\u200eRusticware", "Part Number": "\u200e921ORB", "Item Weight": "\u200e0.32 ounces", "Product Dimensions": "\u200e1 x 1.3 x 1 inches", "Item model number": "\u200e921ORB", "Is Discontinued By Manufacturer": "\u200eNo", "Style": "\u200eTraditional", "Finish": "\u200eAluminum", "Material": "\u200eMetal", "Item Package Quantity": "\u200e1", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B004FG6BV2", "Customer Reviews": {"ratings_count": 2, "stars": "5.0 out of 5 stars"}, "Date First Available": "April 2, 2010"}, "brand": "Brand: Rusticware", "brand_url": "https://www.amazon.com/Rusticware/b/ref=bl_dp_s_web_7799229011?ie=UTF8&node=7799229011&field-lbr_brands_browse-bin=Rusticware", "full_description": "The Rusticware collection of cabinet hardware features multiple styles of knobs and pulls as well as a versatile knob backplate. Knobs and pulls are available in Oil Rubbed Bronze, Satin Nickel, Weathered Pewter, Iron, Black and Chrome. All knobs & pulls are solid zinc die cast and are packed with standard 8/32\" screws and screws that are 1/2\" longer to fit most applications.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41EiXSU7jOL.jpg", "https://m.media-amazon.com/images/I/214R0QvW1nL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Hardware \u203a Cabinet Hardware \u203a Knobs", "average_rating": 5, "small_description": ["Packaged with fasteners ", "Made from zinc dia cast ", "Multiple designs to fit any style decoration ", "Made in China "], "total_reviews": 2, "total_answered_questions": "", "model": "\u200e921ORB", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B004FG6BV2", "category": "garden", "query": "China Cabinets", "page": 307, "small_description_old": "About this item\n \nPackaged with fasteners Made from zinc dia cast Multiple designs to fit any style decoration Made in China \n \u203a See more product details"}, {"name": "New Compatible for Sony Playstation 4 PS4 Pro CUH-7015b CUH-7115b 7000 7500 G95C12MS1AJ-56J14 Cooling Fan", "product_information": {"Package Dimensions": "6.89 x 5.39 x 1.73 inches", "Item Weight": "8.1 ounces", "Manufacturer": "QUETTERLEE", "ASIN": "B088X39YNP", "Customer Reviews": {"ratings_count": 16, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#73,064 in Video Games (See Top 100 in Video Games) #99 in PlayStation 4 Cooling Systems"], "Date First Available": "June 13, 2020"}, "brand": "Visit the QUETTERLEE Store", "brand_url": "https://www.amazon.com/stores/QUETTERLEE/page/4A27E2BD-55D4-4CFA-B2BD-56104F9C4892?ref_=ast_bln", "full_description": "PS4 PRO 7000 CPU FAN", "pricing": "$19.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41pThgsyveL.jpg", "https://m.media-amazon.com/images/I/41d9nK8qAoL.jpg", "https://m.media-amazon.com/images/I/41XEvoB4WSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a PlayStation 4 \u203a Accessories \u203a Cooling Systems", "average_rating": 4.2, "small_description": [""], "total_reviews": 16, "total_answered_questions": "", "customization_options": "", "seller_id": "A1Y7WWG7AKO4KL", "seller_name": "TXLIMINHONG", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B088X39YNP", "category": "electronics", "query": "PlayStation", "page": 168, "small_description_old": ""}, {"name": "BY ALEGORY Acrylic Makeup Wall Organizing Shelves Nail Polish, Eyelashes, Foundations Cosmetics | 12 inch shelf (Pack of 4) Hardware Incl'd", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 12.01 x 1.85 x 1.06 inches; 2.12 Ounces", "Item model number\n \u200f": "\u200e\n AS-4", "UPC\n \u200f": "\u200e\n 815731020704", "Manufacturer\n \u200f": "\u200e\n byAlegory Premium Beauty Organization", "ASIN\n \u200f": "\u200e\n B01LM6W7Z6", "Best Sellers Rank": "#220,963 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,146 in Nail Art Equipment", "#2,146 in Nail Art Equipment": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the BY ALEGORY Store", "brand_url": "https://www.amazon.com/stores/BY+ALEGORY/page/67B7B4BB-8198-46C8-8585-FADF9F8250A8?ref_=ast_bln", "full_description": "", "pricing": "$16.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51jmgjYAF9L.jpg", "https://m.media-amazon.com/images/I/21lbEBMpkWL.jpg", "https://m.media-amazon.com/images/I/41HJr6thtVL.jpg", "https://m.media-amazon.com/images/I/41sbWrOgIRL.jpg", "https://m.media-amazon.com/images/I/41umDy+f4qL.jpg", "https://m.media-amazon.com/images/I/41-sbmlSwTL.jpg", "https://m.media-amazon.com/images/I/41cGaycMtBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Foot, Hand & Nail Care \u203a Nail Art & Polish \u203a Nail Art Accessories \u203a Nail Art Equipment", "average_rating": 4.3, "small_description": ["DESIGNED w/ a Front Lip to Keep Nail Polish Bottles, Eyelash Containers, Nail Art Tools, Nail Stamps From Falling Forward. Pre-drilled Holes For Wall Hanging ", "MADE From A Single Piece With The Highest Quality Crystalline Acrylic for a Flawless Clear Look & No Glued Pieces ", "SIZE 12L x 1W x .59H Inches per Single Shelf | Available In 3, 4 or 5 Shelf Packs (Please Also See The Dimension Photo) ", "ORGANIZE Infinite Amounts of Cosmetics - Made w/ a Flush Flat Edge to Put Them Side by Side to Create Unlimited Shelf Widths ", "THICK Acrylic With Rounded Edges Offers a Beautiful Look and Feel ", "PACKAGED In Soft Protective Foam Within a Black and Metallic Silver Box "], "total_reviews": 42, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01LM6W814/ref=twister_B087YW343S?_encoding=UTF8&psc=1", "value": "3 Shelves", "price_string": "$13.99", "price": 13.99, "image": null}, {"is_selected": true, "url": null, "value": "4 Shelves", "price_string": "$16.99", "price": 16.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B27J6W9/ref=twister_B087YW343S?_encoding=UTF8&psc=1", "value": "5 Shelves", "price_string": "$19.99", "price": 19.99, "image": null}], "Color": null}, "seller_id": "A3206KCK2HVOT", "seller_name": "BYALEGORY", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01LM6W7Z6", "category": "beauty", "query": "Eyes Makeup", "page": 167, "small_description_old": "About this item DESIGNED w/ a Front Lip to Keep Nail Polish Bottles, Eyelash Containers, Nail Art Tools, Nail Stamps From Falling Forward. Pre-drilled Holes For Wall Hanging MADE From A Single Piece With The Highest Quality Crystalline Acrylic for a Flawless Clear Look & No Glued Pieces SIZE 12L x 1W x .59H Inches per Single Shelf | Available In 3, 4 or 5 Shelf Packs (Please Also See The Dimension Photo) ORGANIZE Infinite Amounts of Cosmetics - Made w/ a Flush Flat Edge to Put Them Side by Side to Create Unlimited Shelf Widths THICK Acrylic With Rounded Edges Offers a Beautiful Look and Feel PACKAGED In Soft Protective Foam Within a Black and Metallic Silver Box"}, {"name": "A Novel ; Still Life with Bread Crumbs", "product_information": "", "brand": "Brand: IM VERA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=IM+VERA", "full_description": "", "pricing": "$17.38", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/21060v3xWYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Breadsticks", "average_rating": "", "small_description": ["Author: Anna Quindlen Publication Year: 2014 Format: Hardcover Number of Pages: 272 Pages Language: English ISBN: 9781400065752 EAN: 9781400065752 ", "Still Life with Bread Crumbs begins with an imagined gunshot and ends with a new tin roof. Between the two is a wry and knowing portrait of Rebecca Winter, a photographer whose work made her an unlikely heroine for many women. Her career is now descendent, her bank balance shaky, and she has fled the city for the middle of nowhere. ", "There she discovers, in a tree stand with a roofer named Jim Bates, that what she sees through a camera lens is not all there is to life. Brilliantly written, powerfully observed, Still Life with Bread Crumbs is a deeply moving and often very funny story of unexpected love, and a stunningly crafted journey into the life of a woman, her heart, her mind, her days, as she discovers that life is a story with many levels, a story that is longer and more exciting than she ever imagined. ", "Dimensions Weight 18 Oz Height 1in. Width 6.6in. Length 9.6in. ", "Product Key Features Author Anna Quindlen Format Hardcover Language English Publication Year 2014 Number of Pages 272 Pages "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AURVNSCGC80IS", "seller_name": "IM VERA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09CDRQGLS", "category": "grocery", "query": "Breads & Bakery", "page": 148, "small_description_old": "Author: Anna Quindlen Publication Year: 2014 Format: Hardcover Number of Pages: 272 Pages Language: English ISBN: 9781400065752 EAN: 9781400065752 Still Life with Bread Crumbs begins with an imagined gunshot and ends with a new tin roof. Between the two is a wry and knowing portrait of Rebecca Winter, a photographer whose work made her an unlikely heroine for many women. Her career is now descendent, her bank balance shaky, and she has fled the city for the middle of nowhere. There she discovers, in a tree stand with a roofer named Jim Bates, that what she sees through a camera lens is not all there is to life. Brilliantly written, powerfully observed, Still Life with Bread Crumbs is a deeply moving and often very funny story of unexpected love, and a stunningly crafted journey into the life of a woman, her heart, her mind, her days, as she discovers that life is a story with many levels, a story that is longer and more exciting than she ever imagined. Dimensions Weight 18 Oz Height 1in. Width 6.6in. Length 9.6in. Product Key Features Author Anna Quindlen Format Hardcover Language English Publication Year 2014 Number of Pages 272 Pages"}, {"name": "Star Wars I Am Furry Chewbacca Womens Costume Zip-Up Jacket", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n July 31, 2015", "ASIN\n \u200f": "\u200e\n B01349PIKU", "Best Sellers Rank": "#3,100,465 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#21,429 in Women's Fashion Hoodies & Sweatshirts #33,628 in Women's Yoga Clothing", "#21,429 in Women's Fashion Hoodies & Sweatshirts": "", "#33,628 in Women's Yoga Clothing": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the STAR WARS Store", "brand_url": "https://www.amazon.com/stores/StarWars/page/79D57AE1-6192-438C-B806-E5A8D255EEF6?ref_=ast_bln", "full_description": "The 100% polyester Star Wars Chewbacca Women's Costume Hoodie is a great hoodie for the ladies who happen to love Wookiees! Roar!", "pricing": "$69.99", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51fDh0zQV7L.jpg", "https://m.media-amazon.com/images/I/41u1HtW4wFL.jpg", "https://m.media-amazon.com/images/I/41uFj7L-5iL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Fashion Hoodies & Sweatshirts", "average_rating": 4.3, "small_description": [""], "total_reviews": 13, "total_answered_questions": "", "customization_options": {"Size": null, "Color": null}, "seller_id": "A3FSZ6G34A90OQ", "seller_name": "Hanopop", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00ZDEDVBI", "category": "fashion", "query": "Women's Fashion Hoodies & Sweatshirts", "page": 7, "small_description_old": "100% Polyester"}, {"name": "QualGear High Speed Long HDMI 2.0 Cable with Ethernet (50 Feet) - 100% OFC Copper, 24 Awg, 24K Gold Plated Contacts, CL3 Rated, Triple-Shielded. Supports 4K UHD, 3D, 18 Gbps, ARC (QG-CBL-HD20-50FT)", "product_information": {"Product Dimensions": "90.5 x 90.5 x 31.5 inches", "Item Weight": "3.34 pounds", "ASIN": "B01MQH5VGR", "Item model number": "QG-CBL-HD20-50FT", "Customer Reviews": {"ratings_count": 212, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#5,767 in HDMI Cables"], "Is Discontinued By Manufacturer": "No", "Date First Available": "October 24, 2016", "Manufacturer": "QualGear LLC", "Country of Origin": "China"}, "brand": "Visit the QualGear Store", "brand_url": "https://www.amazon.com/stores/QualGear/page/5AC22D66-A20F-4733-8BA4-E8238D9CF18F?ref_=ast_bln", "full_description": "Enjoy high-quality picture and pure audio by implementing the QualGear 50' (feet) HDMI cable with Ethernet in your AV setup. This all-in-one video plus audio cable Features 100% oxygen free copper (OFC), 24Awg thick bare copper for higher bandwidths up to 18Gbps. It Features 24K gold plated contacts for improved signal clarity. This HDMI cable is triple shielded for maximum protection from electromagnetic interference (EMI) and to achieve ultra-low signal to noise ratio (SNR). at 50' (feet) in length, this cable is flexible and convenient when making connections. It Features HDMI type a male connector on either end and plugs into any HDMI port. It Works with a variety of devices, including Ultra HD 4K TVs, a/V receivers, blu-ray players, cable / satellite boxes, gaming systems, Apple TV, Roku, computers and more. The CL3 fire safety rating means that the cable jacket has been treated with a fire-retardant, which ensures that it meets fire safety standards for use in and through the walls of residential class buildings. This cable meets HDMI 2. 0B specification and is backward compatible with all previous specifications - HDMI 1. 4, 1. 3, and 1. 0. This HDMI cable supports Ethernet and audio Return channels (ARC) so no separate cables are needed for Ethernet and audio Return capabilities. QualGear HDMI cables are also available in 3ft , 6ft , 10ft , 25ft , 75ft , 100ft lengths.", "pricing": "$39.45", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51eMyHuztmL.jpg", "https://m.media-amazon.com/images/I/413Zf8gxLwL.jpg", "https://m.media-amazon.com/images/I/41zQ9DWcRaL.jpg", "https://m.media-amazon.com/images/I/411wRQuF48L.jpg", "https://m.media-amazon.com/images/I/41FUe-+O7tL.jpg", "https://m.media-amazon.com/images/I/41ej6Bz93sL.jpg", "https://m.media-amazon.com/images/I/51e0mxckHaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a HDMI Cables", "average_rating": 4.4, "small_description": ["Bandwidth up to 18Gbps ", "Hdmi Type a Male to HDMI Type a Male cable ", "Supports 4K at50/60 (2160p), which is 4 times the clarity of 1080p/60 Video resolution ", "Supports Ethernet, 3D, 4K video and Audio Return Channel (ARC). up to 32 Audio channels for a multi-dimensional immersive Audio experience. 24K gold-plated contacts ", "Each cable Meets HDMI 2. 0 specification, and Supports sharing an internet Connection among multiple devices without the need for a separate Ethernet cable ", "Constructed with full-metal connectors, double-shielding (alu mylar foil & aluminium braiding), 24k gold-plated connectors, and oxygen-free copper, you can buy with confidence knowing you\u2019ll get pristine pictures and sound with a loss-free transmission. ", "Gold-plated, corrosion-resistant connectors deliver optimal signal transfer with lower distortion. "], "total_reviews": 212, "total_answered_questions": 9, "model": "QG-CBL-HD20-50FT", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01MQH5S8Z/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "25 Feet", "price_string": "$18.95", "price": 18.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073V5S5Q8/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "30 Feet", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073V637RH/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "40 Feet", "price_string": "$27.15", "price": 27.15, "image": null}, {"is_selected": true, "url": null, "value": "50 Feet", "price_string": "$39.45", "price": 39.45, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073V62BJ5/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "60 Feet", "price_string": "$46.67", "price": 46.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01N3QONAP/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "75 Feet", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MTLOK5Q/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "100 Feet", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01MQH5VGR", "category": "electronics", "query": "HDMI Cables", "page": 186, "small_description_old": "About this item\n \nBandwidth up to 18Gbps Hdmi Type a Male to HDMI Type a Male cable Supports 4K at50/60 (2160p), which is 4 times the clarity of 1080p/60 Video resolution Supports Ethernet, 3D, 4K video and Audio Return Channel (ARC). up to 32 Audio channels for a multi-dimensional immersive Audio experience. 24K gold-plated contacts Each cable Meets HDMI 2. 0 specification, and Supports sharing an internet Connection among multiple devices without the need for a separate Ethernet cable Constructed with full-metal connectors, double-shielding (alu mylar foil & aluminium braiding), 24k gold-plated connectors, and oxygen-free copper, you can buy with confidence knowing you\u2019ll get pristine pictures and sound with a loss-free transmission. Gold-plated, corrosion-resistant connectors deliver optimal signal transfer with lower distortion."}, {"name": "adidas Originals Women's Adicolor Essentials Tights", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11 x 6 x 1 inches; 5.61 Ounces", "Item model number\n \u200f": "\u200e\n 88693", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 1, 2021", "Manufacturer\n \u200f": "\u200e\n adidas Originals", "ASIN\n \u200f": "\u200e\n B08KYDFCKC", "Best Sellers Rank": "#43,551 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#200 in Women's Activewear Leggings", "#200 in Women's Activewear Leggings": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the adidas Originals Store", "brand_url": "https://www.amazon.com/stores/Adidas+Originals/page/66B6ABFF-F9DD-48F0-8D81-B45CEB2C6D31?ref_=ast_bln", "full_description": "Casual tights with plenty of style. These women's adidas tights have a Trefoil logo on the hip and a high-rise waist for added coverage. Super-soft cotton and a tight fit keep everything as comfortable as it gets.", "pricing": "$16.82$35.00", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31TTQjQco+L.jpg", "https://m.media-amazon.com/images/I/31bkJEM7jdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Leggings", "average_rating": 4.2, "small_description": ["Women's tights for casual wear ", "TIGHT FIT: Wears close but is not restrictive, and hugs the legs almost like a second skin ", "ELASTIC WAIST: High-rise elastic waist for extra coverage ", "BETTER COTTON INITIATIVE: By buying cotton products from us, you're supporting more sustainable cotton farming "], "total_reviews": 49, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "XX-Small", "asin": "B08KYBLWDC"}, {"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B08KYFD8SQ"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B08KYCF5XZ"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08KYBVQ46"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08KYDDQSD"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B08KZ1GWV3"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08KYDFCKC/ref=twister_B08SH44K67", "value": "Orbit Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31IOpmf4sYL.jpg"}, {"is_selected": true, "url": null, "value": "Victory Crimson", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31TTQjQco+L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08KYBVQ46", "category": "fashion", "query": "Women's Pants", "page": 16, "small_description_old": "93% Cotton/7% Elastane Imported Pull On closure Machine Wash Women's tights for casual wear TIGHT FIT: Wears close but is not restrictive, and hugs the legs almost like a second skin ELASTIC WAIST: High-rise elastic waist for extra coverage BETTER COTTON INITIATIVE: By buying cotton products from us, you're supporting more sustainable cotton farming"}, {"name": "2 Pcs Cowhide Throw Pillow Covers Decorative Pillow Cases Farm Animal Brown Cow Hide Skin Print Pillow Case 18 X 18 Inch Velvet Square Cushion Cover for Sofa Bedroom", "product_information": {"Product Dimensions": "18 x 18 x 0.2 inches", "Item Weight": "7.8 ounces", "Manufacturer": "ENTUA", "ASIN": "B08K7LDM7Q", "Customer Reviews": {"ratings_count": 75, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#251,973 in Home & Kitchen (See Top 100 in Home & Kitchen) #3,455 in Throw Pillow Covers"], "Batteries Required?": "No"}, "brand": "Brand: Entua", "brand_url": "https://www.amazon.com/Entua/b/ref=bl_dp_s_web_23548006011?ie=UTF8&node=23548006011&field-lbr_brands_browse-bin=Entua", "full_description": "SET OF 2 DECORATIVE ANIMAL SKIN THROW PILLOW COVERS BROWN AND WHITEYOU WILL GET: 2 brown and white animal print throw pillows, standard size 18*18 inches, invisible zipper, easy to clean pillowcases.This 18x18 brown leather pillowcase adds a lot of color to your home decoration and immediately enhances the unique style of your room!Not only is it very suitable for decorating sofas, chairs, sofas, cars, beds, offices, but also a perfect gift for family and friends for Christmas and birthday!FEATURE:set of 2 cow print throw pillow coversDouble-sided printingHigh-quality soft velvet materialHidden zipper design18*18 inch cowhide decorative cushion coversWe use soft swan material that will not irritate the skin, high quality, environmentally friendly ink.Printing uses high temperature to make the ink penetrate into the material fibers and will not fade after washing.It looks beautiful after repeated washing. An easy and cheap way to add decorations to the living room, bedroom, study, and sofa.PROMPT:Machine wash in cold water or hand wash.Machine dry or natural dry.Only abstract throw pillow covers, no plug-ins.1. Due to different computer pixels, the actual color may be slightly different, which is normal. please allow.2. Due to manual measurement, a difference of 1-2CM is allowed.", "pricing": "$17.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/414UNymlFJL.jpg", "https://m.media-amazon.com/images/I/51VQrWgoe-L.jpg", "https://m.media-amazon.com/images/I/511iEartsQL.jpg", "https://m.media-amazon.com/images/I/41-1z4zo6rL.jpg", "https://m.media-amazon.com/images/I/51IZEjix4IL.jpg", "https://m.media-amazon.com/images/I/51exIu7Rj2L.jpg", "https://m.media-amazon.com/images/I/51R44CgNsdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": 4.5, "small_description": ["\ud83c\udf3bFASHION STYLE:Brown and white cowhide printed pillowcase patterns make the whole pillowcase full of fashion and brighten your home. ", "\ud83c\udf3bATERIALS:The cowhide throw pillow case is made of velvet. Softness, comfort and durability are the most prominent features of this fabric. x 20 are made of smooth and soft velvet fabric.The tightly woven short and tight soft pillowcases are comfortable,strong and durable,which is the most prominent of the fabric feature. ", "\ud83c\udf3bSIZE:18x18 inches / 45x45cm. The package includes set of 2 animal print pillow case, excluding inserts.. ", "\ud83c\udf3bFARM ANIMAL PRINT DECOR PILLOW COVERS:Double-sided pattern printed animal skin pillow covers, with invisible zipper on the side. ", "\ud83c\udf3bSATISFYING SERVICE:We hope that it will be our honor for customers to feel 100% satisfied with square pillow covers. If you have any questions about our 2 pack hidden zippered pillowcase, please consult. Take it home if you like it. "], "total_reviews": 75, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "18 x 18-Inch", "price_string": "$17.99", "price": 17.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GRNB7QT/ref=twister_B09GRJJCRH?_encoding=UTF8&psc=1", "value": "20\"x20\"", "price_string": "$20.99", "price": 20.99, "image": null}]}, "seller_id": "AZ8TC9Z96S3AD", "seller_name": "ENTUA", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08K7LDM7Q", "category": "garden", "query": "Decorative Pillows", "page": 55, "small_description_old": "About this item \ud83c\udf3bFASHION STYLE:Brown and white cowhide printed pillowcase patterns make the whole pillowcase full of fashion and brighten your home. \ud83c\udf3bATERIALS:The cowhide throw pillow case is made of velvet. Softness, comfort and durability are the most prominent features of this fabric. x 20 are made of smooth and soft velvet fabric.The tightly woven short and tight soft pillowcases are comfortable,strong and durable,which is the most prominent of the fabric feature. \ud83c\udf3bSIZE:18x18 inches / 45x45cm. The package includes set of 2 animal print pillow case, excluding inserts.. \ud83c\udf3bFARM ANIMAL PRINT DECOR PILLOW COVERS:Double-sided pattern printed animal skin pillow covers, with invisible zipper on the side. \ud83c\udf3bSATISFYING SERVICE:We hope that it will be our honor for customers to feel 100% satisfied with square pillow covers. If you have any questions about our 2 pack hidden zippered pillowcase, please consult. Take it home if you like it."}, {"name": "BIFESTA Micellar Water Dual Phase Pore Clear 360ml-Effectively removes Waterproof & Heavy Makeup.", "product_information": {"Item Weight": "1.06 pounds", "ASIN": "B085RG99KT", "Manufacturer recommended age": "7 years and up", "Best Sellers Rank": ["#1,103,499 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #257 in Makeup Cleansing Water"], "Is Discontinued By Manufacturer": "No", "Manufacturer": "BIFESTA"}, "brand": "Brand: Bifesta", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Bifesta", "full_description": "Dual Effect Water-based remover which contains moisturizing cleansing ingredients and botanical oil layer that effectively removes waterproof & heavy makeup", "pricing": "$33.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41jBbA-5KuS.jpg", "https://m.media-amazon.com/images/I/51eNydlsl4S.jpg", "https://m.media-amazon.com/images/I/51fF6+41EYS.jpg", "https://m.media-amazon.com/images/I/51VmkI97kNS.jpg", "https://m.media-amazon.com/images/I/51GnfTMAIqS.jpg", "https://m.media-amazon.com/images/I/417klPb9WAS.jpg", "https://m.media-amazon.com/images/I/41PMAKOWmZS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Makeup Remover \u203a Makeup Cleansing Water", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AXBOXQY0T5BDB", "seller_name": "New Era International Store", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B085RG99KT", "category": "beauty", "query": "Makeup Remover", "page": 108, "small_description_old": ""}, {"name": "C.O. Bigelow Hair & Body Wash, Elixir Black, No. 1605, 8 fl oz", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3 x 2 x 7.75 inches; 9.45 Ounces", "UPC\n \u200f": "\u200e\n 815691000631", "Manufacturer\n \u200f": "\u200e\n C.O. Bigelow", "ASIN\n \u200f": "\u200e\n B09Q3PZ8JK", "Best Sellers Rank": "#111,613 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,765 in Bath & Shower Gels", "#1,765 in Bath & Shower Gels": ""}, "brand": "Visit the C. O. Bigelow Store", "brand_url": "https://www.amazon.com/stores/COBigelow/page/0BF97E6B-40B1-402E-8357-82C45A4E6A9B?ref_=ast_bln", "full_description": "Our aromatic, rich-lathering hair & body wash is a 2-in-1 cleanser, making for a highly efficient shower regimen to effectively cleanse both the hair and body. Infused with our Elixir Cologne, the aromatic rich-lathering formula lightly scents the skin as it washes. Elixir Black blends exotic Agar Wood and Tonka Bean with undertones of Amber, Musk and Vanilla. Pair it with Elixir Cologne for a perfect gift.", "pricing": "$18.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31PEYdJptZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Cleansers \u203a Body Washes", "average_rating": "", "small_description": ["Rich lathering mens body wash and shampoo 2 in 1 cleanser makes a highly effective shower regimen to cleanse the hair and body ", "Formulated with Aloe Vera 0.5% and Pro Vitamin B5 1% and infused with Bigelow's Elixir Cologne, the aromatic shampoo and bath soap combination lightly scents skin and hair as it washes ", "Elixir Black is confident, exotic and rich, blending exotic agar wood and tonka bean with undertones of amber, musk and vanilla ", "Pair Elixir Hair & Body Wash with our Elixir Cologne for a perfect gift for men ", "Made in the USA, SLS Free, Paraben Free, Cruelty Free, No artificial colors "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1VQAHT7VTQPVE", "seller_name": "Bigelow Chemists", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09Q3PZ8JK", "category": "beauty", "query": "Body Care", "page": 30, "small_description_old": "About this item C.O. Bigelow's aromatic, rich-lathering hair & body wash is a 2-in-1 cleanser, making for a highly efficient shower regimen to effectively cleanse both the hair and body Formulated with Aloe Vera 0.5% and Pro Vitamin B5 1% and infused with Bigelow's Elixir Cologne, the aromatic rich-lathering formula lightly scents the skin as it washes Elixir Black blends exotic Agar Wood and Tonka Bean with undertones of Amber, Musk and Vanilla Pair it with Elixir Cologne for a perfect gift No artificial colors, not tested on animals and Made in USA"}, {"name": "Cabilock Metal Vanity Tray Rectangle Decorative Tray Jewelry Tray Trinket Ring Dish Black Food Serving Plate for Bathroom Kitchen Counter Dresser 22x9.5x2cm", "product_information": {"Product Dimensions": "8.66 x 3.74 x 0.79 inches", "Item Weight": "9.2 ounces", "Manufacturer": "Cabilock", "ASIN": "B08NPQT5TW", "Item model number": "NSJCXOG6109R4618TJJ20E5AG", "Best Sellers Rank": ["#2,059,926 in Home & Kitchen (See Top 100 in Home & Kitchen) #523 in Bathroom Sink Vanity Trays"], "material_composition": "Iron", "Included Components": "Container"}, "brand": "Visit the Cabilock Store", "brand_url": "https://www.amazon.com/stores/cabilock/page/6D55E6F7-3655-4F25-A4B9-551E6574232E?ref_=ast_bln", "full_description": "DescriptionThis tray can be a jewelry tray for necklace, bracelet, earrings, ring, etc. Also can be a great storage tool for wallets, glasses, keys. This trays is a great transporting and displaying showcase for your jewelry, suitable\u00a0for personal use at home, also a perfect countertop jewelry display tray in stores or trade shows.Features-Material:\u00a0iron-Color: black- Size: 22x9.5x2cm.-\u00a0Perfect to storage your daily essentials such as creams, lotions, oils, etc, And make your tabletop look so tidy.- Can also be used as jewelry organizer, perfume trays, vanity trays, dresser tray, decorative tray, bathroom vanity tray, makeup tray organizer, etc.-\u00a0A perfect gift for the one who appreciates exclusive-looking home decor items.- A perfect gift for birthday, Christmas, thanksgiving, wedding registry, housewarming, and so on.-\u00a0Allows you to have jewelry, rings, earrings, necklace, trinkets within reach. Offers a stylish way to keep organized and a perfect choice for home decor!Package Including1 x jewelry tray", "pricing": "$13.99", "list_price": "", "availability_quantity": 11, "availability_status": "Only 11 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31zcr7Got2L.jpg", "https://m.media-amazon.com/images/I/315m8DNgFML.jpg", "https://m.media-amazon.com/images/I/41x7KzGPvgL.jpg", "https://m.media-amazon.com/images/I/415ieZzR0OL.jpg", "https://m.media-amazon.com/images/I/41FjThzTveL.jpg", "https://m.media-amazon.com/images/I/4150xsuqIwL.jpg", "https://m.media-amazon.com/images/I/31FnOyZqeNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bath \u203a Bathroom Accessories \u203a Holders & Dispensers \u203a Vanity Trays", "average_rating": "", "small_description": ["A perfect gift for birthday, Christmas, thanksgiving, wedding registry, housewarming, and so on. ", "Allows you to have jewelry, rings, earrings, necklace, trinkets within reach. Offers a stylish way to keep organized and a perfect choice for home decor! ", "A perfect gift for the one who appreciates exclusive-looking home decor items. ", "Can also be used as jewelry organizer, perfume trays, vanity trays, dresser tray, decorative tray, bathroom vanity tray, makeup tray organizer, etc. ", "Perfect to storage your daily essentials such as creams, lotions, oils, etc, And make your tabletop look so tidy. "], "total_reviews": "", "total_answered_questions": "", "model": "NSJCXOG6109R4618TJJ20E5AG", "customization_options": {"Size": null}, "seller_id": "A3EFB0PP14MVTY", "seller_name": "LaDawn", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08NPQT5TW", "category": "garden", "query": "Vanities", "page": 355, "small_description_old": "About this item A perfect gift for birthday, Christmas, thanksgiving, wedding registry, housewarming, and so on. Allows you to have jewelry, rings, earrings, necklace, trinkets within reach. Offers a stylish way to keep organized and a perfect choice for home decor! A perfect gift for the one who appreciates exclusive-looking home decor items. Can also be used as jewelry organizer, perfume trays, vanity trays, dresser tray, decorative tray, bathroom vanity tray, makeup tray organizer, etc. Perfect to storage your daily essentials such as creams, lotions, oils, etc, And make your tabletop look so tidy."}, {"name": "Acme Furniture Sofa, Velvet & Antique Silver", "product_information": {"Item Weight": "\u200e172 pounds", "Product Dimensions": "\u200e100 x 42 x 42 inches", "Item model number": "\u200e56930", "Assembled Seat Height": "\u200e20 Inches", "ASIN": "B07N33BPQ6", "Best Sellers Rank": ["#5,566,404 in Home & Kitchen (See Top 100 in Home & Kitchen) #9,942 in Sofas & Couches"], "Date First Available": "January 24, 2019"}, "brand": "Visit the Acme Furniture Store", "brand_url": "https://www.amazon.com/stores/Acme+Furniture/page/D5EAE6AE-7FFC-4E63-B361-BDB8AFE7792B?ref_=ast_bln", "full_description": "Traditional style. Exclusive design. Button tufted. Nail head. Oversized molding trim. Tight back and loose seat cushions. Seat construction: Pocket coil. Armrest: Rolled and scrolled-floral front trim. Upholstered. Made from velvet and poly-resin. No assembly required. Seat: 24 in. W x 20 in. H. Overall: 100 in. L x 42 in. W x 42 in. H (185 lbs. ). The Northville sofa is exclusively designed and filled with romantic spirit. This beautiful velvet upholstered sofa features carved legs, apron, and trim, decorated with raised and scrolled floral motifs in an antique champagne finish. This sophisticated sofa boasts of curved and rolled arms, oversized molding and button tufted backrests with nail head trim. This collection with contrasting accent pillows will bring sophistication to your living room and will add elegance to any room Decor. Sit back and relax on this sophisticated collection that will instantly bring style to your living area.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41ayTN2g6sL.jpg", "https://m.media-amazon.com/images/I/31XoMu33itL.jpg", "https://m.media-amazon.com/images/I/41USzvVCg8L.jpg", "https://m.media-amazon.com/images/I/41eeS7tBcbL.jpg", "https://m.media-amazon.com/images/I/41re3ElXXuL.jpg", "https://m.media-amazon.com/images/I/41scUseGbML.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Sofas & Couches", "average_rating": "", "small_description": ["Traditional style ", "Exclusive design ", "Satisfaction Ensured ", "Package Dimensions : 105\" L x 45\" W x 45\" H "], "total_reviews": "", "total_answered_questions": "", "model": "\u200e56930", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07N33BPQ6", "category": "garden", "query": "Sofas and couches", "page": 166, "small_description_old": "About this item Traditional style Exclusive design Satisfaction Ensured Package Dimensions : 105\" L x 45\" W x 45\" H \n \u203a See more product details"}, {"name": "FitFlop Men's Hollis Neoprene Sport Sandal", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 12.5 x 8.5 x 5.5 inches; 2.2 Pounds", "Item model number\n \u200f": "\u200e\n V48", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n March 24, 2019", "Manufacturer\n \u200f": "\u200e\n FitFlop", "ASIN\n \u200f": "\u200e\n B07NZ173GY", "Best Sellers Rank": "#243,673 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#240 in Men's Athletic & Outdoor Sandals & Slides #631 in Men's Sandals", "#240 in Men's Athletic & Outdoor Sandals & Slides": "", "#631 in Men's Sandals": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the FitFlop Store", "brand_url": "https://www.amazon.com/stores/FITFLOP/page/9313D090-B40B-4D24-962B-1EFA9BD2BBEE?ref_=ast_bln", "full_description": "These cut-out kicks deliver a 'hole' lot: the sporty athleisure vibe of sneakers and the breeziness of sandals (while keeping your toes out of sight). Then there are cool style details", "pricing": "$26.44$69.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31slmiLPkAL.jpg", "https://m.media-amazon.com/images/I/4113YvlsfOL.jpg", "https://m.media-amazon.com/images/I/313UcvWh9zL.jpg", "https://m.media-amazon.com/images/I/31DoNJXURmL.jpg", "https://m.media-amazon.com/images/I/318qcfFVrdL.jpg", "https://m.media-amazon.com/images/I/31iaZgrH0IL.jpg", "https://m.media-amazon.com/images/I/31hmxK7cGQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Sandals", "average_rating": 4.2, "small_description": ["Imported ", "Rubber sole ", "on FitFlop\u2019s superlight, hyper-flexible Anatomiflex midsoles for all-day comfort ", "made of 'bouncy' high-rebound cushioning that feels great to walk on ", "average to wide fit ", "APMA Seal of Acceptance, for footwear found to promote good foot health "], "total_reviews": 20, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "11", "asin": "B07NZ173GY"}, {"is_selected": false, "is_available": true, "value": "12", "asin": "B07P13L855"}, {"is_selected": false, "is_available": true, "value": "12.5", "asin": "B07WW6RG3T"}, {"is_selected": false, "is_available": true, "value": "13", "asin": "B07P124Z6X"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31slmiLPkAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08S45C33R/ref=twister_B07WY5ZWJD", "value": "Light Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31eTYpTg4OL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07NZ173GY", "category": "fashion", "query": "Men's Sandals", "page": 23, "small_description_old": "Neoprene Imported Rubber sole on FitFlop\u2019s superlight, hyper-flexible Anatomiflex midsoles for all-day comfort made of 'bouncy' high-rebound cushioning that feels great to walk on average to wide fit APMA Seal of Acceptance, for footwear found to promote good foot health"}, {"name": "TEMPTU Airbrush Makeup System 2.0 Premier Kit: Airbrush Makeup Set for Professionals Includes S/B Silicone-Based Foundation Starter Set & Cleaning Kit, Travel-Friendly", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.25 x 3.75 x 4.5 inches; 1 Pounds", "UPC\n \u200f": "\u200e\n 671741998446", "Manufacturer\n \u200f": "\u200e\n Temptu", "ASIN\n \u200f": "\u200e\n B07CYXLSF2", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#83,151 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#14 in Makeup Airbrushes", "#14 in Makeup Airbrushes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$250.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41qtWvtRqpL.jpg", "https://m.media-amazon.com/images/I/41+ZcnkDbZL.jpg", "https://m.media-amazon.com/images/I/41paLE-vu+L.jpg", "https://m.media-amazon.com/images/I/511XfqNsrzL.jpg", "https://m.media-amazon.com/images/I/41I+RwicMqL.jpg", "https://m.media-amazon.com/images/I/41Zb7xEfGEL.jpg", "https://m.media-amazon.com/images/I/4117yPDDrkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Makeup Brushes & Tools \u203a Makeup Airbrushes", "average_rating": 4.2, "small_description": [""], "total_reviews": 112, "total_answered_questions": 28, "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07CYXLSF2", "category": "beauty", "query": "Makeup Sets", "page": 62, "small_description_old": ""}, {"name": "Delicious & Sons - Organic - Non-GMO - Gluten-free - Italian Basil Pesto Genovese Sauce with Parmigiano Reggiano PDO Cheese (6.70 oz.)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.6 x 2.6 x 4.2 inches; 11.29 Ounces", "Manufacturer\n \u200f": "\u200e\n Delicious & Sons", "ASIN\n \u200f": "\u200e\n B01N37FSYX", "Best Sellers Rank": "#209,912 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#110 in Pesto Sauces", "#110 in Pesto Sauces": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the DELICIOUS & SONS SINCE 2006 A FAMILY OF FLAVORS Store", "brand_url": "https://www.amazon.com/stores/DELICIOUSSONS/page/7F76D094-3BE3-4CD7-B880-8052AF5E73D0?ref_=ast_bln", "full_description": "", "pricing": "$14.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51AJ1BpnuPL.jpg", "https://m.media-amazon.com/images/I/51esKyfoDgL.jpg", "https://m.media-amazon.com/images/I/41O7nMVy31L.jpg", "https://m.media-amazon.com/images/I/31pnIUolgZL.jpg", "https://m.media-amazon.com/images/I/31N9VsJvK9L.jpg", "https://m.media-amazon.com/images/I/41PzeqYR9mL.jpg", "https://m.media-amazon.com/images/I/9103aClmS3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Sauces, Gravies & Marinades \u203a Sauces \u203a Italian \u203a Pesto", "average_rating": 3.9, "small_description": ["Organic Italian Sauce made with high-quality natural Ingredients: organic basil, organic sunflower oil, Parmigiano Reggiano cheese PDO (cow's milk, salt, rennet), salt, organic potato starch, organic pine nuts, acidity regulator: lactic acid, antioxidant: ascorbic acid. Made in Italy. 6.70 oz. ", "Non-GMO Pesto Sauce Organic. Can be used as: Pasta Sauce (Spaghetti Sauce, Linguine Sauce...), Fish Sauce, Meat Sauce, Salad Dressing, Vegetable Dip, Pesto Spread... ", "We want everyone to enjoy our products: Our Organic Pesto is a Gluten-free Sauce, Non-GMO, Keto Sauce, without added sugars! ", "Our Basil Pesto Sauce is produced in Italy. All of the ingredients used are 100% traceable and had been locally sourced, supporting organic local farmers. Minimal waste is done during harvest. ", "Delicious & Sons is a Certified B Corp. We offer high quality, honest, natural sauces. Our products are easy to use and even easier to love. "], "total_reviews": 24, "total_answered_questions": "", "customization_options": "", "seller_id": "A2P6XZL28L7EC0", "seller_name": "meDINEterranean", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B01N37FSYX", "category": "grocery", "query": "Cheeses", "page": 286, "small_description_old": "About this item Organic Italian Sauce made with high-quality natural Ingredients: organic basil, organic sunflower oil, Parmigiano Reggiano cheese PDO (cow's milk, salt, rennet), salt, organic potato starch, organic pine nuts, acidity regulator: lactic acid, antioxidant: ascorbic acid. Made in Italy. 6.70 oz. Non-GMO Pesto Sauce Organic. Can be used as: Pasta Sauce (Spaghetti Sauce, Linguine Sauce...), Fish Sauce, Meat Sauce, Salad Dressing, Vegetable Dip, Pesto Spread... We want everyone to enjoy our products: Our Organic Pesto is a Gluten-free Sauce, Non-GMO, Keto Sauce, without added sugars! Our Basil Pesto Sauce is produced in Italy. All of the ingredients used are 100% traceable and had been locally sourced, supporting organic local farmers. Minimal waste is done during harvest. Delicious & Sons is a Certified B Corp. We offer high quality, honest, natural sauces. Our products are easy to use and even easier to love."}, {"name": "YHJIC Helmet Virtual Reality Headset Press for Smartphone Cardboard Casque Phone Android 3D Lense", "product_information": {"Product Dimensions": "6.69 x 5.12 x 3.27 inches", "Item Weight": "12 ounces", "ASIN": "B092LSVMTY", "Item model number": "400500", "Date First Available": "April 15, 2021", "Manufacturer": "YHJIC", "Country of Origin": "China"}, "brand": "Brand: YHJIC", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=YHJIC", "full_description": "YHJIC Parameters:Name: Model: AR-XMaterial: ABS+PU leatherBattery Capacity: No BatteryCamera: No cameraMain body: visual lens, reflection (plane mirror), face-contact leatherWearing mode: head-mounted typeViewing angle: high definition magnification, 2.8 times, 69\u00b0 panoramic viewing angleAdapt to mobile phone configuration: best effect configuration: resolution 1080P and above, processor: 4 cores and aboveMyopia: support to wear glassesSupport systems: for Android, , Android, IOS, systemColor: blackList:1 * 1 * lens cloth1 * ManualOnly the above package content, other products are not included.Note: Light shooting and different displays may cause the color of the item in the picture a little different from the real thing. The measurement allowed error is +/- 1-3cm.", "pricing": "$22.57", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/414DxMTw+-L.jpg", "https://m.media-amazon.com/images/I/511CW2dZWiL.jpg", "https://m.media-amazon.com/images/I/51R5r6MyHXL.jpg", "https://m.media-amazon.com/images/I/51kLfOi-QJL.jpg", "https://m.media-amazon.com/images/I/51npVxWd3DL.jpg", "https://m.media-amazon.com/images/I/41SidDCu0eL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories", "average_rating": "", "small_description": ["1. The product is clearly imaged and does not damage eyes, thus reducing optical energy loss to a greater extent, and the color is more saturated and bright. ", "2. Compatible with 4.7-6.0 inch cell phones, with expanded use range ", "3. Portable and foldable will bring you more convenience ", "4. The product is small in size, light in weight and more convenient to use ", "5. With its own amplification effect, it can enable you to enjoy the shocking experience of being personally on the scene. "], "total_reviews": "", "total_answered_questions": "", "model": "400500", "customization_options": "", "seller_id": "A5FTD28MHRS74", "seller_name": "ayubb1", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B092LSVMTY", "category": "electronics", "query": "Virtual Reality", "page": 131, "small_description_old": "About this item\n \n1. The product is clearly imaged and does not damage eyes, thus reducing optical energy loss to a greater extent, and the color is more saturated and bright. 2. Compatible with 4.7-6.0 inch cell phones, with expanded use range 3. Portable and foldable will bring you more convenience 4. The product is small in size, light in weight and more convenient to use 5. With its own amplification effect, it can enable you to enjoy the shocking experience of being personally on the scene."}, {"name": "Lifestyle Furniture Sectional Recliner Sofa Set Living Room Reclining Couch with Drop Down Table (Single Piece or Combination) (GS2900, 3PCS)", "product_information": {"Product Dimensions": "37 x 82 x 40 inches", "Manufacturer": "Lifestyle Furniture", "ASIN": "B09688C4XM", "Best Sellers Rank": ["#4,504,563 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,434 in Living Room Furniture Sets"], "Date First Available": "May 31, 2021"}, "brand": "Brand: Lifestyle Furniture", "brand_url": "https://www.amazon.com/Lifestyle-Furniture/b/ref=bl_dp_s_web_16038479011?ie=UTF8&node=16038479011&field-lbr_brands_browse-bin=Lifestyle+Furniture", "full_description": "??????Welcome to Lifestyle Furniture?Product Feature? Faux Bonded Leather Wooden Frame High Density Foam PopUp Footrest?Dimensions?3seat Sofa: 82 x 37 x 40Inch, 2seater Loveseat: 61.5 x 37 x 40Inch, 1seater Chair: 38.5 x 37 x 40Inch ?Package?1 x 3Seat Sofa1 x 2Seat Loveseat1 x 1Seat Chair??Easy AssemblyUnpack all needed assembly components from the underside zipper compartment (Located on the underside of the sofa body)??Shipping ServiceLifestyle only offer Curbside Only Shipping trucking service. Customer is REQUIRED to move it into your home. Carrier will contact you prior to help you set up a delivery time.", "pricing": "$1,847.00", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31k1bZtxHfS.jpg", "https://m.media-amazon.com/images/I/31CJTfL8ZOS.jpg", "https://m.media-amazon.com/images/I/31uf8EvwOLS.jpg", "https://m.media-amazon.com/images/I/31+F49yQbMS.jpg", "https://m.media-amazon.com/images/I/41rY2f0ZLeS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Living Room Sets", "average_rating": "", "small_description": ["\u2611LUXURY COMFORT\uff1aBringing a simplistic style into the home, soft bonded leather upholstery with high-density padding provides a relaxed way to spend an evening at home. ", "\u2611EASY TO THROUGH THE DOOR\uff1aCome with 3 boxes. It's easy to get in the 30\" door. All parts are in the zipper compartment under the sofa. Just assembly according to the instructions. ", "\u2611RECLINING MOTION SET\uff1aReclining functions are all manual, very easy to use. You only need to pull the switch on the recliner couch lightly. It also can be easily returned to sit-up position. ", "\u2611SPACE SAVING\uff1aThis recliner sofa set can be placed closer to the wall because they do not require as much space between the back of the recliner and the wall. Required back clearance to recline:7\u201d-7.5\u201d. ", "\ud83d\ude9aCurbside Only Shipping Trucking: \u2460Outdoor delivery. Customer is REQUIRED to move the furniture into your home. \u2461The LTL carrier will contact customers to set up delivery. \u2462You MUST email us a valid/direct phone number when placing an order as invalid phone will cause a delay in your shipment. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Gs2900", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31sn4GMfaGS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09687XG4G/ref=twister_B09688T4PG?_encoding=UTF8&psc=1", "value": "Gs2900b", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41b14WqRapL.jpg"}], "Size": [{"is_selected": true, "url": null, "value": "3PSC", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09687JS71/ref=twister_B09688T4PG?_encoding=UTF8&psc=1", "value": "C", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09686FM9P/ref=twister_B09688T4PG?_encoding=UTF8&psc=1", "value": "Large", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09685KWPV/ref=twister_B09688T4PG?_encoding=UTF8&psc=1", "value": "Small", "price_string": "", "price": 0, "image": null}]}, "seller_id": "AUFRFZL689IW0", "seller_name": "G. Furniture", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09688C4XM", "category": "garden", "query": "Sofa Tables", "page": 199, "small_description_old": "About this item\n \n\u2611LUXURY COMFORT\uff1aBringing a simplistic style into the home, soft bonded leather upholstery with high-density padding provides a relaxed way to spend an evening at home. \u2611EASY TO THROUGH THE DOOR\uff1aCome with 3 boxes. It's easy to get in the 30\" door. All parts are in the zipper compartment under the sofa. Just assembly according to the instructions. \u2611RECLINING MOTION SET\uff1aReclining functions are all manual, very easy to use. You only need to pull the switch on the recliner couch lightly. It also can be easily returned to sit-up position. \u2611SPACE SAVING\uff1aThis recliner sofa set can be placed closer to the wall because they do not require as much space between the back of the recliner and the wall. Required back clearance to recline:7\u201d-7.5\u201d. \ud83d\ude9aCurbside Only Shipping Trucking: \u2460Outdoor delivery. Customer is REQUIRED to move the furniture into your home. \u2461The LTL carrier will contact customers to set up delivery. \u2462You MUST email us a valid/direct phone number when placing an order as invalid phone will cause a delay in your shipment."}, {"name": "Oriental Eau de Toilette \u2013 Natural Eau de Toilette for Men Woody Eau de Toilette Infused with Essential Oils Fragrance for Men with Oriental Woody Tones NOU Oliban Eau de Toilette for Men \u2013 1.7 Fl Oz", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4.69 x 3.43 x 2.24 inches; 7.41 Ounces", "Item model number\n \u200f": "\u200e\n 3", "Manufacturer\n \u200f": "\u200e\n NOU Poland", "ASIN\n \u200f": "\u200e\n B08XQWJX8P", "Best Sellers Rank": "#627,504 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#31,657 in Perfumes & Fragrances", "#31,657 in Perfumes & Fragrances": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: nou", "brand_url": "https://www.amazon.com/nou/b/ref=bl_dp_s_web_23505435011?ie=UTF8&node=23505435011&field-lbr_brands_browse-bin=nou", "full_description": "", "pricing": "$21.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51gDhcURgKL.jpg", "https://m.media-amazon.com/images/I/51s8RKl5asL.jpg", "https://m.media-amazon.com/images/I/51QARgyv75L.jpg", "https://m.media-amazon.com/images/I/41ndpUPxnPL.jpg", "https://m.media-amazon.com/images/I/41gEIkhqz3L.jpg", "https://m.media-amazon.com/images/I/51lQc4bzneL.jpg", "https://m.media-amazon.com/images/I/61vejBEoo9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance", "average_rating": 4, "small_description": ["NOU OLIBAN ORIENTAL SCENT FOR MEN \u2013 this fragrance for men has been perfectly blended and infused with essential oils, resulting in an intriguing, mysterious scent that is powerful and appealing to women. In the beautiful Catalan language, NOU means \u201cnew\u201d \u2013 a new fragrance, sparking new emotions for a new you! ", "ORIENTAL EAU DE TOILETTE CRAFTED BY FRENCH PERFUMERS \u2013 expertly crafted by French perfumers, this natural fragrance for men is created with pure and natural ingredients and infused with aromatic essential oils. Our Oliban natural Eau de Toilette for men is designed for the elegant, modern man who is determined and exudes confidence ", "OLIBAN WOODY FRAGRANCE NOTES \u2013 this natural Eau de Toilette for men is mysterious and adventurous giving a sense of both power and safety. NOU Oliban Eau de Toilette features elemi and olibanum, toned down by the relaxing scent of chamomile. The heart notes are patchouli and cistus, with raised notes of sandalwood, leather, vanilla and benzoin resulting in a masculine, powerful fragrance for men ", "NATURAL EAU DE TOILETTE FOR MEN WITH ESSENTIAL OILS \u2013 each of the NOU Eau de toilette perfumes in our range includes 10% natural essential oils, which are long-lasting and highly fragrant too. Containing no synthetic pigments and featuring its\u2019 natural colour, this oriental scent is safe to use on all skin types ", "INCLUDED IN YOUR PURCHASE \u2013 you will receive 1 x NOU Oriental 50ml fragrance for men in your purchase. This powerful, masculine fragrance for men is packaged in a modern, minimalistic glass flacon which is both presentable as a gift or as a wonderful treat for yourself to wear every day! "], "total_reviews": 6, "total_answered_questions": "", "customization_options": "", "seller_id": "A1PI8WU691RQZR", "seller_name": "AmTm Cosmetics", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08XQWJX8P", "category": "beauty", "query": "Men's Fragrance", "page": 41, "small_description_old": "About this item NOU OLIBAN ORIENTAL SCENT FOR MEN \u2013 this fragrance for men has been perfectly blended and infused with essential oils, resulting in an intriguing, mysterious scent that is powerful and appealing to women. In the beautiful Catalan language, NOU means \u201cnew\u201d \u2013 a new fragrance, sparking new emotions for a new you! ORIENTAL EAU DE TOILETTE CRAFTED BY FRENCH PERFUMERS \u2013 expertly crafted by French perfumers, this natural fragrance for men is created with pure and natural ingredients and infused with aromatic essential oils. Our Oliban natural Eau de Toilette for men is designed for the elegant, modern man who is determined and exudes confidence OLIBAN WOODY FRAGRANCE NOTES \u2013 this natural Eau de Toilette for men is mysterious and adventurous giving a sense of both power and safety. NOU Oliban Eau de Toilette features elemi and olibanum, toned down by the relaxing scent of chamomile. The heart notes are patchouli and cistus, with raised notes of sandalwood, leather, vanilla and benzoin resulting in a masculine, powerful fragrance for men NATURAL EAU DE TOILETTE FOR MEN WITH ESSENTIAL OILS \u2013 each of the NOU Eau de toilette perfumes in our range includes 10% natural essential oils, which are long-lasting and highly fragrant too. Containing no synthetic pigments and featuring its\u2019 natural colour, this oriental scent is safe to use on all skin types INCLUDED IN YOUR PURCHASE \u2013 you will receive 1 x NOU Oriental 50ml fragrance for men in your purchase. This powerful, masculine fragrance for men is packaged in a modern, minimalistic glass flacon which is both presentable as a gift or as a wonderful treat for yourself to wear every day!"}, {"name": "Walker Edison Addison Urban Industrial Metal and Wood 5-Shelf Bookcase, 64 Inch, Grey Wash", "product_information": {"Item Weight": "\u200e66 pounds", "Product Dimensions": "\u200e25 x 13 x 64 inches", "Item model number": "\u200eAZS64MOR5GW", "ASIN": "B08LF355G2", "Customer Reviews": {"ratings_count": 6, "stars": "3.2 out of 5 stars"}, "Best Sellers Rank": ["#2,179,020 in Home & Kitchen (See Top 100 in Home & Kitchen) #3,604 in Bookcases"], "Date First Available": "October 19, 2020"}, "brand": "Visit the Walker Edison Store", "brand_url": "https://www.amazon.com/stores/WalkerEdison/page/D0D2A602-6790-40E0-91C5-CF992DB24FF4?ref_=ast_bln", "full_description": "Sick of small shelves, running out of room, or getting startled in the middle of the night when your books fall off the side of your old bookcase? Now you don\u2019t have to. Feel satisfied with your new 64 inch tall, metal and wood bookshelf. These deep box shelves come with raised edges, and with five tiers total, imagine all the new organizing capabilities. Craft a mini library or use the shelf depth to display a layered interior design style. A contemporary design makes this bookcase a breeze to match most home looks. Try out a farmhouse look, an industrial atmosphere, or a boho vibe.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/513chD0bYrL.jpg", "https://m.media-amazon.com/images/I/41SWWNKorUL.jpg", "https://m.media-amazon.com/images/I/41hjZSb6lEL.jpg", "https://m.media-amazon.com/images/I/31onAsa-b4L.jpg", "https://m.media-amazon.com/images/I/41HVD4Y9H6L.jpg", "https://m.media-amazon.com/images/I/51GTdLQhIWL.jpg", "https://m.media-amazon.com/images/I/51aMSbA9RrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": 3.2, "small_description": ["Dimensions: 64\u201d H x 25\u201d L x 13\u201d W ", "Shelf dimensions: 5\u201d H x 23\u201d L x 12.5\u201d W ", "Warp-resistant MDF and long-lasting laminate coating ", "Five fixed shelves ", "Shelves support up to 50 Ibs. each "], "total_reviews": 6, "total_answered_questions": "", "model": "\u200eAZS64MOR5GW", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08LF355G2", "category": "garden", "query": "Book Cases", "page": 96, "small_description_old": "About this item Dimensions: 64\u201d H x 25\u201d L x 13\u201d W Shelf dimensions: 5\u201d H x 23\u201d L x 12.5\u201d W Warp-resistant MDF and long-lasting laminate coating Five fixed shelves Shelves support up to 50 Ibs. each \n \u203a See more product details"}, {"name": "Bling Charm Pendant Bracelet Band Compatible with Apple Watch Bands 38mm 40mm 42mm 44mm,Adjustable Stainless Steel Smartwatch Band with Bling Diamond Case for iwatch Series SE Series 7 6 5 4 3 2 1", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4 x 3 x 0.7 inches; 0.64 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 20, 2022", "ASIN\n \u200f": "\u200e\n B09QSL1ZZ3", "Best Sellers Rank": "#24,007 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories)#1,796 in Smartwatch Bands", "#1,796 in Smartwatch Bands": ""}, "brand": "Brand: HZDK", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=HZDK", "full_description": "", "pricing": "$13.99$16.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41POWql2otL.jpg", "https://m.media-amazon.com/images/I/51IB+vAO7xL.jpg", "https://m.media-amazon.com/images/I/61vS5mSDfUL.jpg", "https://m.media-amazon.com/images/I/41Xd7VmO8AL.jpg", "https://m.media-amazon.com/images/I/418vGQhC7RL.jpg", "https://m.media-amazon.com/images/I/41KRevVmeOL.jpg", "https://m.media-amazon.com/images/I/51hPL-WtBpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Smartwatch Accessories \u203a Smartwatch Bands", "average_rating": "", "small_description": ["Unique Hanging Charms :We add beautiful Four Leaf Clover&Angel wings&Bird&Tree of life to our watch bands,there still have more space to add your own lovely charms. ", "Bling Diamond Watch Case:Come with a transparent Bling Watch Case to match this bling watch band.Please choose the right watch case size you need. ", "Adjustable Chain Length:Easy to adjust the wrist size with push-button.No tools Needed. ", "Compatibility:Compatible with Apple Watch 42mm 44mm 45mm Series 7/6/5/4/3/2/1/SE; Fits 5.5-8.1 inch wrists. ", "18 months Promise : Unconditional refund or replacement for any quality issues. Life-long friendly protection and you will get What you get: 1* Charms apple watch band + 1* Bling protective watch case(no screen protector). "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QSL1ZZ3/ref=twister_B09QRWRPF3", "value": "Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410-v7h6H7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QSJQMGL/ref=twister_B09QRWRPF3", "value": "Rose Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rpZrPHH7L.jpg"}, {"is_selected": true, "url": null, "value": "Silver", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41POWql2otL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "38mm", "asin": "B09R1SXHW4"}, {"is_selected": false, "is_available": true, "value": "40mm", "asin": "B09R1T2P6V"}, {"is_selected": false, "is_available": true, "value": "42mm", "asin": "B09QSH75VN"}, {"is_selected": false, "is_available": true, "value": "44mm", "asin": "B09QSJLSM9"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09R1T2P6V", "category": "electronics", "query": "Wearable Technology", "page": 79, "small_description_old": "Unique Hanging Charms :We add beautiful Four Leaf Clover&Angel wings&Bird&Tree of life to our watch bands,there still have more space to add your own lovely charms. Bling Diamond Watch Case:Come with a transparent Bling Watch Case to match this bling watch band.Please choose the right watch case size you need. Adjustable Chain Length:Easy to adjust the wrist size with push-button.No tools Needed. Compatibility:Compatible with Apple Watch 42mm 44mm 45mm Series 7/6/5/4/3/2/1/SE; Fits 5.5-8.1 inch wrists. 18 months Promise : Unconditional refund or replacement for any quality issues. Life-long friendly protection and you will get What you get: 1* Charms apple watch band + 1* Bling protective watch case(no screen protector)."}, {"name": "RootGrain Baked Organic Whole Grain Crunch Cereal 1.41oz 40g (Pack of 10) Sprouted Germinated Brown Rice Barley Whole Wheat Oats Sorghum Healthy Breakfast (0.53oz/15g x 10)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.89 x 7.76 x 4.06 inches; 7.52 Ounces", "Manufacturer\n \u200f": "\u200e\n KAYFOOD", "ASIN\n \u200f": "\u200e\n B09M4C31FL", "Country of Origin\n \u200f": "\u200e\n Korea, Republic of", "Best Sellers Rank": "#596,680 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#3,620 in Cold Breakfast Cereals", "#3,620 in Cold Breakfast Cereals": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: KAYFOOD", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=KAYFOOD", "full_description": "Germinated grains (Brown rice, Barley, Whole Wheat, Oats and Sorghum) Sugar free cereal Only 60 kcal Non-Frying Baked Cereals On-the-go packets (10packets) Germination? The process by which a plant sprouts. Nutrients increase or good ingredients that did not exist before are created. As the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. Contains wheat. May contain traces of amount soybean, peanut, walnut, milk, egg, pork and sulfurous acids. Root Grain, a premium Korean cereal brand that specializes in researching and developing healthy grain intake.", "pricing": "$21.99", "list_price": "", "availability_quantity": 8, "availability_status": "Only 8 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41YqH14wfmL.jpg", "https://m.media-amazon.com/images/I/51VZqGlv2tL.jpg", "https://m.media-amazon.com/images/I/51SHtmoxXoL.jpg", "https://m.media-amazon.com/images/I/51Ri8mQp1yL.jpg", "https://m.media-amazon.com/images/I/41QpUpp05OL.jpg", "https://m.media-amazon.com/images/I/41WLpM-UmSL.jpg", "https://m.media-amazon.com/images/I/418GpUhsKJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breakfast Foods \u203a Cereals \u203a Cold Cereals", "average_rating": 5, "small_description": ["Germination? The process by which a plant sprouts. Nutrients increase or good ingredients that did not exist before are created. As the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. ", "Only 60 kcal Germinated grains (Brown rice, Barley, Whole Wheat, Oats and Sorghum) ", "Have a bowl of healthy Non-Frying Baked Cereals with sugar free. ", "On-the-go packets (10packets). Packed in individual packet for easy portability ", "Root Grain, a premium Korean cereal brand that specializes in researching and developing healthy grain intake. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "0.53oz/15g x 10", "price_string": "$21.99", "price": 21.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PZ8WYTW/ref=twister_B09PZ7ZDPY?_encoding=UTF8&psc=1", "value": "1.41oz/40g x 10", "price_string": "$49.99", "price": 49.99, "image": null}]}, "seller_id": "A20DAC3T0KYKDE", "seller_name": "Dr. Camp", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09M4C31FL", "category": "grocery", "query": "Breakfast Foods", "page": 101, "small_description_old": "About this item Germination? The process by which a plant sprouts. Nutrients increase or good ingredients that did not exist before are created. As the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. Only 60 kcal Germinated grains (Brown rice, Barley, Whole Wheat, Oats and Sorghum) Have a bowl of healthy Non-Frying Baked Cereals with sugar free. On-the-go packets (10packets). Packed in individual packet for easy portability Root Grain, a premium Korean cereal brand that specializes in researching and developing healthy grain intake."}, {"name": "JSPOYOU Mens Short Sleeve Crewneck 3D Graphic Tunic Shirts Big & Tall Tie Dye Summer Top Basic Designed Classic Cotton Shirt", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 15, 2021", "Manufacturer\n \u200f": "\u200e\n JSPOYOU-2021-Mens", "ASIN\n \u200f": "\u200e\n B09NNLDF5D", "": ""}, "brand": "Brand: JSPOYOU", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=JSPOYOU", "full_description": "\u2764\u2764\u3010Product Information\u3011\u2764\u2764 Gender: Men Material: Polyester, Fleece,Faux Leather Pattern Type: Printed Style: Casual Fashion,Athletics Fit Type: Standard Closure Type: Elastic What you get: 1 PC Man T-shirt tops \u2764\u2764\u3010Note\u3011\u2764\u2764 Size chart carefully before order. Please allow 1-3cm differs due to manual measurement, thanks (1 cm=0.39 inch,1 inch=2.54 cm) Due to possible physical differences between different monitors, the product photography is illustrative only and may not precisely reflect the actual color of the item received. \u2764\u2764\u3010Service\u3011\u2764\u2764 If you have any problem about our items, please send message to us, we will try to our best service to resolve your issues. \u3010Purchase Guarantee\u3011 please rest assured to buy afterwards! after receiving the order, if you have any questions, please feel free to send us an email, thank you for choosing our products, the quality is guaranteed. \u3010Our Shop\u3011standard shipping:7-10 days;expedited shipping:3-5 days. \u3010Search Term\u3011men suits slim fit men suits slim fit plaid men suits slim fit prom men suits regular fit men suits for wedding men suits for wedding regular fit men suits for wedding white men suits for wedding fushia men suits for wedding on the beach men suits big and tall men suits big and tall long men suits \u3010Search Term\u3011men's pants casual men's pants casual jeans casual elastic waist men's pants casual relaxed fit men's pants casual stretch relax men's pants casual big and tall men's pants casual cool breathable men's pants casual cargo men's pants casual works pants men's pants jeans men's pants jeans men's pants jeans relaxed fit men's pants jeans big and tall men's pants jeans tee t shirt tee shirts", "pricing": "$3.99$10.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41p9dAvjOoL.jpg", "https://m.media-amazon.com/images/I/518m8crf7QL.jpg", "https://m.media-amazon.com/images/I/41JKcrvfc-L.jpg", "https://m.media-amazon.com/images/I/41PL646alTL.jpg", "https://m.media-amazon.com/images/I/51mKtxtbLmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a Henleys", "average_rating": "", "small_description": ["\u3010Note\u3011Please check the size chart before purchase,If you want the mens shirts to be loose,choose 1-2 size up.If you are not sure about the size,please send us a message. ", "\u3010Material\u3011Stretch 60% cotton 40%.made of superior quality modal fiber,ultra light-weight,soft & smooth,feels really comfortable.soft and comfy,skin-friendly and lightweight. ", "\u3010Design\u3011short/long sleeve button down tshirts,big and tall tees,graphic print tops,hoodies zip up shirt top,fashion casual blouses,athletic running sweatshirt,workout pullover,cotton linen shirt,henley shirts, shirts,hawaiian shirts,tank tops,beach shirts,sweatshirts sweater,knit cardigans. ", "\u3010Feature\u30112021 Stylish and modern unique design.long sleeves button down design,not only convenient for relaxation,but also stylish. flowers print or striped plaid graphic prints,unique hawaiian style brings you different vibe. closure ", "\u3010Occasions\u3011The men's 2021 Long sleeve tee shirts,great for beach, work,Halloween,Christmas,loungewear,homewear,casual look,daily, dating,school,graduation day,party,holiday,gym workout,running, training,jogging.A great gifts for boy friend,friends,and families. ", "\u3010Search Term\u3011womens with built in bra plus size tops halter cold shoulder tops boho going out cropped sexy long sleeve 3/4 sleeve loose fit camisole off the shoulder tops womens racerback fashion shirts v neck hawaiian shirts button up shirts womens tee shirts western shirts blouses womens 3/4 sleeve work womens shirts and blouses womens tops and blouses womens summer autumn 2021 ", "\u3010Search Term\u3011women 2021 fashion long sleeve stand collar 1/4 zipper hoodies floral patchwork drawstring sweatshirts with kangaroo pockets women casual quilted lightweight pullover ladies button down lapel striped colorblock tie dye printed graphic pattern plain womens oversized sherpa fuzzy fleece sweatshirt women turtleneck contrast color cozy jacket coat womens casual loose fit batwing sleeve asymmetric hem sweater knit tops women's round neck 3/4 sleeve lace blouse tops , \u3010Search Term\u3011womens long sleeve hoodies sweatshirt jumper pullover cat heart printed cat ear hooded tunic blouses hoodies casual short sleeve graphic tee shirts tops crop girl cute novelty autumn winter teen girls sweater coats womens outwear junior sports women's sweatshirts zip up autumn lightweight with pocket plus size casual cartoon print short sleeve drawstring hoodies sweatshirt with pocket i do what i want letter print women's 3/4 sleeve cat and cup ear hoodies irregular tunic tops, \u3010Search Term\u3011womens oversized tie dye casual tops sweatshirts women cute raglan letter print solid shirts tops women long sleeve v neck button up blouses womens trendy slim fit lace sleeves tunic blouse women ribbed knit casual shirts women fashion cutout loose fit tops basic dress with side pockets women hoodies drawstring lightweight loose tops womens soft side split floral leopard printed chiffon blouses tops t shirts womens plus size fall henley shirts women french terry fleece, \u3010Search Term\u3011womens zip up hoodie pullover oversized sleeveless long short sleeve loose casual fit warm light weight lightweight crop long cropped tie dye camo fleece zipper workout vintage sweatshirts women full zip up white cotton jacket tops rain jackets for women waterproof evening formal plus size fleece vest cool wind braker fitted suit jackets coats indian designer flower print puff petite linen cardigan jackets women black yellow red grey sweater pullover"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09NNLDF5D/ref=twister_B09NNMFWKZ", "value": "A-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41JTNIPuNHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NNM7HPF/ref=twister_B09NNMFWKZ", "value": "A-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-0-bruaVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NNM4FCH/ref=twister_B09NNMFWKZ", "value": "B-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/411IUX0+xFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NNNRDKV/ref=twister_B09NNMFWKZ", "value": "B-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41BiCmOTANL.jpg"}, {"is_selected": true, "url": null, "value": "C-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41p9dAvjOoL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09NNMV9LN"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09NNMS6FW"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09NNLW4FC"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09NNMTJRB"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09NNN8M87"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NNMV9LN", "category": "fashion", "query": "Men's Henleys", "page": 202, "small_description_old": "\u3010Note\u3011Please check the size chart before purchase,If you want the mens shirts to be loose,choose 1-2 size up.If you are not sure about the size,please send us a message. \u3010Material\u3011Stretch 60% cotton 40%.made of superior quality modal fiber,ultra light-weight,soft & smooth,feels really comfortable.soft and comfy,skin-friendly and lightweight. \u3010Design\u3011short/long sleeve button down tshirts,big and tall tees,graphic print tops,hoodies zip up shirt top,fashion casual blouses,athletic running sweatshirt,workout pullover,cotton linen shirt,henley shirts, shirts,hawaiian shirts,tank tops,beach shirts,sweatshirts sweater,knit cardigans. \u3010Feature\u30112021 Stylish and modern unique design.long sleeves button down design,not only convenient for relaxation,but also stylish. flowers print or striped plaid graphic prints,unique hawaiian style brings you different vibe. closure \u3010Occasions\u3011The men's 2021 Long sleeve tee shirts,great for beach, work,Halloween,Christmas,loungewear,homewear,casual look,daily, dating,school,graduation day,party,holiday,gym workout,running, training,jogging.A great gifts for boy friend,friends,and families. \u3010Search Term\u3011womens with built in bra plus size tops halter cold shoulder tops boho going out cropped sexy long sleeve 3/4 sleeve loose fit camisole off the shoulder tops womens racerback fashion shirts v neck hawaiian shirts button up shirts womens tee shirts western shirts blouses womens 3/4 sleeve work womens shirts and blouses womens tops and blouses womens summer autumn 2021 \u3010Search Term\u3011women 2021 fashion long sleeve stand collar 1/4 zipper hoodies floral patchwork drawstring sweatshirts with kangaroo pockets women casual quilted lightweight pullover ladies button down lapel striped colorblock tie dye printed graphic pattern plain womens oversized sherpa fuzzy fleece sweatshirt women turtleneck contrast color cozy jacket coat womens casual loose fit batwing sleeve asymmetric hem sweater knit tops women's round neck 3/4 sleeve lace blouse tops \n \u3010Search Term\u3011womens long sleeve hoodies sweatshirt jumper pullover cat heart printed cat ear hooded tunic blouses hoodies casual short sleeve graphic tee shirts tops crop girl cute novelty autumn winter teen girls sweater coats womens outwear junior sports women's sweatshirts zip up autumn lightweight with pocket plus size casual cartoon print short sleeve drawstring hoodies sweatshirt with pocket i do what i want letter print women's 3/4 sleeve cat and cup ear hoodies irregular tunic tops\u3010Search Term\u3011womens oversized tie dye casual tops sweatshirts women cute raglan letter print solid shirts tops women long sleeve v neck button up blouses womens trendy slim fit lace sleeves tunic blouse women ribbed knit casual shirts women fashion cutout loose fit tops basic dress with side pockets women hoodies drawstring lightweight loose tops womens soft side split floral leopard printed chiffon blouses tops t shirts womens plus size fall henley shirts women french terry fleece\u3010Search Term\u3011womens zip up hoodie pullover oversized sleeveless long short sleeve loose casual fit warm light weight lightweight crop long cropped tie dye camo fleece zipper workout vintage sweatshirts women full zip up white cotton jacket tops rain jackets for women waterproof evening formal plus size fleece vest cool wind braker fitted suit jackets coats indian designer flower print puff petite linen cardigan jackets women black yellow red grey sweater pulloverShow more"}, {"name": "Crimson Trace Brushline Pro Riflescope with Lightweight Solid Construction, Scope Caps and Lens Cloth for Hunting, Shooting and Outdoor", "product_information": {"Item Package Dimensions L x W x H": "\u200e15.71 x 4.88 x 4.06 inches", "Package Weight": "\u200e0.94 Kilograms", "Item Dimensions LxWxH": "\u200e15.5 x 4.75 x 4 inches", "Brand Name": "\u200eCrimson Trace", "Warranty Description": "\u200eLimited Lifetime", "Model Name": "\u200eBrushline Pro Riflescope 2.5-10x42mm CT Plex Reticle", "Color": "\u200eBlack", "Material": "\u200eAluminum", "Suggested Users": "\u200eUnisex-adult", "Number of Items": "\u200e1", "Manufacturer": "\u200eCrimson Trace", "Part Number": "\u200e01-01380", "Style": "\u200e2.5-10x42mm Plex", "Included Components": "\u200eScope, Lens Cloth, Scope Caps", "Sport Type": "\u200eHunting", "ASIN": "B08GS6B87J", "Customer Reviews": {"ratings_count": 28, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#168,705 in Sports & Outdoors (See Top 100 in Sports & Outdoors) #557 in Rifle Scopes"], "Date First Available": "November 24, 2020"}, "brand": "Visit the Crimson Trace Store", "brand_url": "https://www.amazon.com/stores/CrimsonTrace/page/34617959-FFE8-4866-84D8-8C1BBC4C74FE?ref_=ast_bln", "full_description": "", "pricing": "$218.79", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock (more on the way).", "images": ["https://m.media-amazon.com/images/I/31j7DdlfrOL.jpg", "https://m.media-amazon.com/images/I/31kluOH8MKL.jpg", "https://m.media-amazon.com/images/I/31wIIvbKKXL.jpg", "https://m.media-amazon.com/images/I/31IpXVotaHL.jpg", "https://m.media-amazon.com/images/I/216otY5T8cL.jpg", "https://m.media-amazon.com/images/I/31OVJk-FnJS.jpg", "https://m.media-amazon.com/images/I/41uJbDL2H4S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Sports & Outdoors \u203a Hunting & Fishing \u203a Shooting \u203a Optics \u203a Gun Scopes \u203a Rifle Scopes", "average_rating": 4.3, "small_description": ["SPECS: 2.5-10 magnification with a 42mm lens diameter, aerospace grade 1\" tube and weighs 16.6 oz - FOV Range: 40.3 ft Min - 10.1 ft Max ", "ACCURACY: Features a second focal plane, non-illuminated, CT Plex reticle with a 4\" eye relief, 1/4\" click value and quick spring-loaded zero reset capped turrets ", "EASE OF USE: Windage (right side), elevation (top) knobs are capped and can be easily unscrewed and adjusted when sighting in at the range by turning with your fingers (no tool required) ", "DURABLE: Constructed of lightweight anodized aluminum with multi-coated lenses and is waterproof, shockproof and nitrogen purged to prevent fogging ", "INCLUDES: Lens cloth and scope caps "], "total_reviews": 28, "total_answered_questions": 11, "customization_options": {"Style": [{"is_selected": false, "is_available": true, "value": "2-7x32mm BDC Pro", "asin": "B08GQH4VDR"}, {"is_selected": false, "is_available": true, "value": "2-7x32mm BDC Rimfire", "asin": "B08GS1K2MM"}, {"is_selected": false, "is_available": true, "value": "2.5-10x42mm BDC Pro", "asin": "B08GRNWMPZ"}, {"is_selected": true, "is_available": false, "value": "2.5-10x42mm Plex", "asin": "B08GS6B87J"}, {"is_selected": false, "is_available": true, "value": "2.5-8x28mm Pistol BDC Pro", "asin": "B08GQHGYKM"}, {"is_selected": false, "is_available": true, "value": "3-12x42mm BDC Pro (1\" tube)", "asin": "B08GQGPKGP"}, {"is_selected": false, "is_available": true, "value": "3-12x42mm BDC Pro (30mm tube)", "asin": "B08GQGNK8C"}, {"is_selected": false, "is_available": true, "value": "3-12x42mm Plex", "asin": "B08GS1FBJD"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC .350 Legend", "asin": "B08GQGHVD6"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC Muzzleloader", "asin": "B08GQGYQ9N"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC Predator", "asin": "B08GQH5F6M"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC Pro", "asin": "B08GRYJSKD"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC Slugger", "asin": "B08GRLRF51"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm Plex", "asin": "B08GS5NRDY"}, {"is_selected": false, "is_available": true, "value": "3-9x50mm BDC Pro", "asin": "B08GQH2CNX"}, {"is_selected": false, "is_available": true, "value": "4-12x40mm BDC Predator", "asin": "B08GRP8FGM"}, {"is_selected": false, "is_available": true, "value": "4-12x40mm BDC Pro", "asin": "B08GQJD4TY"}, {"is_selected": false, "is_available": true, "value": "4-12x40mm Plex", "asin": "B08GQJL78C"}, {"is_selected": false, "is_available": true, "value": "4-16x42mm BDC Pro", "asin": "B08GQK4KCZ"}, {"is_selected": false, "is_available": true, "value": "4-16x50mm BDC Pro (1\" tube)", "asin": "B08GRZG7R5"}, {"is_selected": false, "is_available": true, "value": "4-16x50mm BDC Pro (30mm tube)", "asin": "B08GRP1XQG"}, {"is_selected": false, "is_available": true, "value": "6-24x50mm BDC Pro", "asin": "B08GS1TJST"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08GS6B87J", "category": "electronics", "query": "Lenses", "page": 327, "small_description_old": "About this item\n \nSPECS: 2.5-10 magnification with a 42mm lens diameter, aerospace grade 1\" tube and weighs 16.6 oz - FOV Range: 40.3 ft Min - 10.1 ft Max ACCURACY: Features a second focal plane, non-illuminated, CT Plex reticle with a 4\" eye relief, 1/4\" click value and quick spring-loaded zero reset capped turrets EASE OF USE: Windage (right side), elevation (top) knobs are capped and can be easily unscrewed and adjusted when sighting in at the range by turning with your fingers (no tool required) DURABLE: Constructed of lightweight anodized aluminum with multi-coated lenses and is waterproof, shockproof and nitrogen purged to prevent fogging INCLUDES: Lens cloth and scope caps"}, {"name": "Nature's Guru Instant Tender Coconut Water Powder Original 10 Count Single Serve On-the-Go Drink Packets (Pack of 4)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.8 x 4.3 x 4.3 inches; 0.37 Ounces", "Item model number\n \u200f": "\u200e\n COCO_FBA", "UPC\n \u200f": "\u200e\n 850005429357 793573885531", "Manufacturer\n \u200f": "\u200e\n Nature's Guru", "ASIN\n \u200f": "\u200e\n B004L4D6FW", "Country of Origin\n \u200f": "\u200e\n India", "Domestic Shipping": "Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.", "International Shipping": "This item is not eligible for international shipping.Learn More", "Best Sellers Rank": "#153,860 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#281 in Flavored Drinking Water", "#281 in Flavored Drinking Water": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Nature's Guru Store", "brand_url": "https://www.amazon.com/stores/NaturesGuru/page/776B1728-618E-42A5-BD89-D92A546C045B?ref_=ast_bln", "full_description": "Excellent for replacing lost electrolytes due to exercise, fatigue, heat exhaustion, hangover, or illness. Instant Hydration on the Go. Allows Coconut Water to be with you on the go - perfect for running, biking, hiking, or traveling. Affordable - Cheaper per fluid ounce than any Ready-to-Drink natural coconut water.", "pricing": "$19.53", "list_price": "", "availability_status": "Temporarily out of stock. High demand product. We are working hard to be back in stock as soon as possible. Place your order and we\u2019ll email you when we have an estimated delivery date. You won\u2019t be charged until the item ships.", "images": ["https://m.media-amazon.com/images/I/51+7HSxB-LL.jpg", "https://m.media-amazon.com/images/I/51qLTDSVU7L.jpg", "https://m.media-amazon.com/images/I/41ieGqgS8EL.jpg", "https://m.media-amazon.com/images/I/41G19HAe52L.jpg", "https://m.media-amazon.com/images/I/51Zogz3rnUL.jpg", "https://m.media-amazon.com/images/I/41cU5k8MYML.jpg", "https://m.media-amazon.com/images/I/31DCUHR5-lL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Water \u203a Flavored Water", "average_rating": 3.7, "small_description": ["INSTANT COCONUT WATER: Our powdered coconut water lets you take the hydrating, electrolyte-rich benefits of coconut water anywhere. Perfect for a pre-workout boost or post-workout recovery beverage. ", "INSTANT HYDRATION: Whether you an electrolyte sports drink or just a delicious beverage, our Instant Coconut Water Powder in Mango, Chocolate, or Original flavor will quench your thirst, naturally. ", "INSTANT GRATIFICATION: With Nature's Guru Instant Chai Mix, organic whole leaf teas, Madras Coffee, & Tender Coconut Water powders, you're just moments away from a tasty, natural beverage, anytime. ", "TASTY & CONVENIENT: Our hot drink & latte mixes, Chai, tea bags, & coconut water powders can be mixed anywhere, anytime by adding hot or cold water. Individual packages are easy to enjoy on the go! ", "NATURE'S GURU: We are passionate about creating health & wellness foods & drinks with on-the-go, stash-in-your bag convenience. Try our instant chai, whole leaf tea, coconut water powder, & more! "], "total_reviews": 124, "total_answered_questions": 5, "customization_options": {"Flavor": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00TTYMXLM/ref=twister_B07KBQ9LQ9", "value": "Chocolate", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B006CSD5C4/ref=twister_B07KBQ9LQ9", "value": "Mango", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Original", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00FRYPZUO/ref=twister_B07KBQ9LQ9?_encoding=UTF8&psc=1", "value": "1 Count", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HFK4RHX/ref=twister_B07KBQ9LQ9?_encoding=UTF8&psc=1", "value": "8 Count", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "4 Count", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B004L4D6FW", "category": "grocery", "query": "Alcoholic Beverages", "page": 68, "small_description_old": "INSTANT COCONUT WATER: Our powdered coconut water lets you take the hydrating, electrolyte-rich benefits of coconut water anywhere. Perfect for a pre-workout boost or post-workout recovery beverage. INSTANT HYDRATION: Whether you an electrolyte sports drink or just a delicious beverage, our Instant Coconut Water Powder in Mango, Chocolate, or Original flavor will quench your thirst, naturally. INSTANT GRATIFICATION: With Nature's Guru Instant Chai Mix, organic whole leaf teas, Madras Coffee, & Tender Coconut Water powders, you're just moments away from a tasty, natural beverage, anytime. TASTY & CONVENIENT: Our hot drink & latte mixes, Chai, tea bags, & coconut water powders can be mixed anywhere, anytime by adding hot or cold water. Individual packages are easy to enjoy on the go! NATURE'S GURU: We are passionate about creating health & wellness foods & drinks with on-the-go, stash-in-your bag convenience. Try our instant chai, whole leaf tea, coconut water powder, & more!"}, {"name": "2022 WiFi Extender - Wireless Signal Repeater Booster up to 4500 sq.ft - 1200Mbps Wall-Through Strong WiFi Booster-Dual Band 2.4G and 5G - 4 Antennas 360\u00b0 Full C6541-11", "product_information": {"Package Dimensions": "5.1 x 2.36 x 1.8 inches", "Item Weight": "4.8 ounces", "ASIN": "B09SWLPPVQ", "Date First Available": "January 20, 2022", "Manufacturer": "JKnDtt"}, "brand": "Brand: JKNDTT", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JKNDTT", "full_description": "Easy set up1. Plug in the extender NEAR your current wireless network2. On your cell, turn off mobile data3. 2 green lites will blink in extender 2.4G and 5G4. Enter your CURRENT WiFi password5. Turn on cell phone mobile data6. Click on 2.4G and enter CURRENT WiFi PW. Click in 5G and do same7. Remove extender and plug into deadzone room. Ck that 3 green lites are blinking. You need to receive signal from main WiFi8. Ck phone that you can now switch to 3 different WiFi accounts. It will have an extension ending with PRO plus original9. You have completed setup.", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/417C92Ma1gL.jpg", "https://m.media-amazon.com/images/I/51y46lhWygL.jpg", "https://m.media-amazon.com/images/I/41h0ZHlNuxL.jpg", "https://m.media-amazon.com/images/I/41rCbTPKLqL.jpg", "https://m.media-amazon.com/images/I/41qudUTRYEL.jpg", "https://m.media-amazon.com/images/I/51SOrM5JcUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Networking Products \u203a Repeaters", "average_rating": "", "small_description": "[1200Mbps HIGH-SPEED STABLE SIGNAL] : Wifi Extender wireless signal booster with lastest dual band technology can provide up to 300Mbps for 2.4GHz, up to 867Mbps for 5Ghz, a total rate of about 1200Mbps, maximizing reduces the loss of data transmission and enjoying HD video/game and fast speeds internet mode. [Full Signal Coverage] : This WiFi repeater equipped with 4 high gain external antenna, covering up to 360 degrees, up to 4000 square feet, higher penetration, no loss signal when passing through the wall , enhance the WiFi network and eliminate dead zones, up to bedroom, floors, restroom, garage, basement and garden, allow you enjoy wifi throughout whole home. [Repeater / AP Mode / 2 Ethernet Ports] : Repeater Mode is for extending WiFi coverage of an existing wireless network. AP Mode is for covering a wired network to a wireless network. The two Ethernet ports and 4 External Antennas to achieve the best performance, being able to connect to any wired Ethernet device such as smart TV, desktop and so on while boosting your existing WiFi coverage. [Universal Compatibility & Easy set up] : This WiFi extender can be used with any 802.11b/g/n/a/ac wireless Internet router, what means it works with any standard router or gateway. It can easily extend the wireless coverage by pressing the WPS button. Or set up via browser website(192.168.188.1) on almost any devices, including Windows/Android/iOS mobile platforms. [Safe Network Access] : This wifi extender can maximize the network security, ensure your network safety, prevent others stealing your net, protect your important data and avoid the interference and privacy problems of Wi-Fi. Our team offers 180 days return or replacement quality warranty & lifetime technical supports. Please contact us freely if you need any further assistance.", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09SWLPPVQ", "category": "electronics", "query": "Signal Boosters", "page": 122, "small_description_old": "[1200Mbps HIGH-SPEED STABLE SIGNAL] : Wifi Extender wireless signal booster with lastest dual band technology can provide up to 300Mbps for 2.4GHz, up to 867Mbps for 5Ghz, a total rate of about 1200Mbps, maximizing reduces the loss of data transmission and enjoying HD video/game and fast speeds internet mode. [Full Signal Coverage] : This WiFi repeater equipped with 4 high gain external antenna, covering up to 360 degrees, up to 4000 square feet, higher penetration, no loss signal when passing through the wall , enhance the WiFi network and eliminate dead zones, up to bedroom, floors, restroom, garage, basement and garden, allow you enjoy wifi throughout whole home. [Repeater / AP Mode / 2 Ethernet Ports] : Repeater Mode is for extending WiFi coverage of an existing wireless network. AP Mode is for covering a wired network to a wireless network. The two Ethernet ports and 4 External Antennas to achieve the best performance, being able to connect to any wired Ethernet device such as smart TV, desktop and so on while boosting your existing WiFi coverage. [Universal Compatibility & Easy set up] : This WiFi extender can be used with any 802.11b/g/n/a/ac wireless Internet router, what means it works with any standard router or gateway. It can easily extend the wireless coverage by pressing the WPS button. Or set up via browser website(192.168.188.1) on almost any devices, including Windows/Android/iOS mobile platforms. [Safe Network Access] : This wifi extender can maximize the network security, ensure your network safety, prevent others stealing your net, protect your important data and avoid the interference and privacy problems of Wi-Fi. Our team offers 180 days return or replacement quality warranty & lifetime technical supports. Please contact us freely if you need any further assistance."}, {"name": "Womens Tops Casual, Sweatshirt for Women Graphic, Womens Sweatshirt Hoodie, Women Love Print Sweatshirt Long Sleeve Cute Heart Sweater Pullover Tops Blouse", "product_information": {"Item model number\n \u200f": "\u200e\n Sweatshirts Clearance!Hot!Cheap!", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 24, 2021", "Manufacturer\n \u200f": "\u200e\n crewneck sweatshirts for women aesthetic", "ASIN\n \u200f": "\u200e\n B09P5CRVQ6", "": ""}, "brand": "Brand: AODONG", "brand_url": "https://www.amazon.com/AODONG/b/ref=bl_sl_s_ap_web_21412088011?ie=UTF8&node=21412088011&field-lbr_brands_browse-bin=AODONG", "full_description": "ladies tops and blouses with support layering summer work short sleeve workout silk camisole casual summer low cut chiffon tops for women plus size tops 3/4 sleeve leopard print tops scrub long tunic to wear with leggings off shoulder tops workout crop tops button up high crop tops flowy plus size tunic tops tops short sleeve and blouses black crop tops silk plus tops plus size off the shoulder tops tunic tops cute workout rayon print chiffon cropped for women tops", "pricing": "$22.78", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51jf-yE0-eL.jpg", "https://m.media-amazon.com/images/I/51YDWOR-oEL.jpg", "https://m.media-amazon.com/images/I/51xQSY0xl4L.jpg", "https://m.media-amazon.com/images/I/5105a0RoNrL.jpg", "https://m.media-amazon.com/images/I/51rM9EkeSOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Base Layers", "average_rating": "", "small_description": ["valentines day sweater for women grinch ", "Gifts for Women--Big Promotion\ud83d\udca5NOTE: Most of our items are Asian size. Please reference to our Size Chart carefully before Purchasing, It may be a little Run Small ", "\u3010Fast Shipping\u3011 We ususally shipped out your items within 20 hours, and It usually takes 10-18 days for shipping to you. Please wait it more patience. Thanks. ", "womens valentines day tops cute printed tshirts long sleeve pullover casual crewneck sweatshirt loose comfy tops valentines day cardigan for women oversized open front printed coats fall long sleeve casual lightweight jackets shirt valentines day print cardigan for women,women solid color long-sleeved valentines day cardigan cotton mid-length cardigan women\u2019s long sleeve tops lace casual loose blouses t shirts women's crewneck sweatshirt women's comfort long sleeve t-shirt tee ", "fall jacket hoodies for women striped leopard print for choice zipper coat pullover hoodie for choice thin jackets jean jacket women winter jackets buttons casual plus velvet warm coat jeans long sleeve hooded blue black denim winter coats for women plus size thick fleece lined plush hooded windproof warm down outerwear jackets parka womens plush hooded sweatshirts long sleeve oversized hoodies zip hood sweater fall winter pullover zipper coats with pocket ", "women's sexy sleeveless racer back halter neck bodysuit tank tops women's fall casual tunic tops long sleeve tshirt crew neck ladys oversized pullover sweatshirt tops basic blouses women's tee crew neck long sleeve t-shirt womens turtleneck long batwing sleeve asymmetric hem casual pullover sweater knit tops women's turtleneck hoodie jackets long sleeve casual color block zip up drawstring sweatshirt coat with pockets women's jersey full zip hoodie ", "womens corduroy button down shirts boyfriend long sleeve oversized blouses tops women's waffle knit tunic blouse tie knot henley tops loose fitting bat wing plain shirts women's classic fit long-sleeve full-zip polar soft fleece jacket cardigan for women open front long sleeve casual fall lightweight cardigans with pockets womens casual blazers open front long sleeve work office jackets blazer women's benton springs full zip fleece jacket ", "above the knee length dress perfect for casual daily wear, party, club, work, office, business, vacation, beach, etc. perfect tunic dress for leggings, tights, or laying with coat, jackets, sweaters in spring, autumn and winter fashion ballon sleeve, easy dress up or down. perfect to paired with shorts, skinny jeans, boots, leggings for a chic look this womens top is very trendy and cute, suitable for casual, going out, school, office, daily wear, suit for all seasons "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A26CDAWIXJ1S0W", "seller_name": "Wamajoly", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P5CRVQ6", "category": "fashion", "query": "Women's Activewear", "page": 113, "small_description_old": "valentines day sweater for women grinch Gifts for Women--Big Promotion\ud83d\udca5NOTE: Most of our items are Asian size. Please reference to our Size Chart carefully before Purchasing, It may be a little Run Small \u3010Fast Shipping\u3011 We ususally shipped out your items within 20 hours, and It usually takes 10-18 days for shipping to you. Please wait it more patience. Thanks. womens valentines day tops cute printed tshirts long sleeve pullover casual crewneck sweatshirt loose comfy tops valentines day cardigan for women oversized open front printed coats fall long sleeve casual lightweight jackets shirt valentines day print cardigan for women,women solid color long-sleeved valentines day cardigan cotton mid-length cardigan women\u2019s long sleeve tops lace casual loose blouses t shirts women's crewneck sweatshirt women's comfort long sleeve t-shirt tee fall jacket hoodies for women striped leopard print for choice zipper coat pullover hoodie for choice thin jackets jean jacket women winter jackets buttons casual plus velvet warm coat jeans long sleeve hooded blue black denim winter coats for women plus size thick fleece lined plush hooded windproof warm down outerwear jackets parka womens plush hooded sweatshirts long sleeve oversized hoodies zip hood sweater fall winter pullover zipper coats with pocket women's sexy sleeveless racer back halter neck bodysuit tank tops women's fall casual tunic tops long sleeve tshirt crew neck ladys oversized pullover sweatshirt tops basic blouses women's tee crew neck long sleeve t-shirt womens turtleneck long batwing sleeve asymmetric hem casual pullover sweater knit tops women's turtleneck hoodie jackets long sleeve casual color block zip up drawstring sweatshirt coat with pockets women's jersey full zip hoodie womens corduroy button down shirts boyfriend long sleeve oversized blouses tops women's waffle knit tunic blouse tie knot henley tops loose fitting bat wing plain shirts women's classic fit long-sleeve full-zip polar soft fleece jacket cardigan for women open front long sleeve casual fall lightweight cardigans with pockets womens casual blazers open front long sleeve work office jackets blazer women's benton springs full zip fleece jacket above the knee length dress perfect for casual daily wear, party, club, work, office, business, vacation, beach, etc. perfect tunic dress for leggings, tights, or laying with coat, jackets, sweaters in spring, autumn and winter fashion ballon sleeve, easy dress up or down. perfect to paired with shorts, skinny jeans, boots, leggings for a chic look this womens top is very trendy and cute, suitable for casual, going out, school, office, daily wear, suit for all seasons"}, {"name": "FITUEYES Universal TV Stand/Base Tabletop TV Stand with Swivel Mount for 32 to 65 inch Flat Screen TV Height Adjustable,Tempered Glass Base", "product_information": {"Item Weight": "\u200e13 pounds", "Product Dimensions": "\u200e25.4 x 11.8 x 29 inches", "Item model number": "\u200eFTT105202GB", "Is Discontinued By Manufacturer": "\u200eNo", "ASIN": "B07GZLDJMC", "Customer Reviews": {"ratings_count": 721, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#63 in TV Mount Stands #1,114 in Electronics Mounts"], "Date First Available": "August 30, 2018"}, "brand": "Visit the FITUEYES Store", "brand_url": "https://www.amazon.com/stores/FITUEYES/page/894D17F8-69E9-46EA-AD8A-9F4842AF0A23?ref_=ast_bln", "full_description": "", "pricing": "$42.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/413EZxD1zsL.jpg", "https://m.media-amazon.com/images/I/41yUiOZFt1L.jpg", "https://m.media-amazon.com/images/I/51r+Gtxm4DL.jpg", "https://m.media-amazon.com/images/I/51IW3X4PXVL.jpg", "https://m.media-amazon.com/images/I/41RHmmRkNZL.jpg", "https://m.media-amazon.com/images/I/41twoekPJyL.jpg", "https://m.media-amazon.com/images/I/41TOmsv5p1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Television Accessories \u203a TV Mounts, Stands & Turntables \u203a TV Mount Stands", "average_rating": 4.6, "small_description": ["\u3010TV STAND\u3011Universal TV stand/base tabletop stand to mount your TV and AV components on an entertainment center or a desk/table. 8 mm thick sleek tempered glass shelf can store your cable tv box, satellite receiver, gaming consoles such as PS4, Xbox, or Apple TV ", "\u3010HEIGHT ADJUSTABLED DESKTOP TV MOUNT\u3011 TV bracket is height adjustable! 4 positions to suit different applications or TV sizes. The TV can be raised to install a sound bar or game console sensors like the Kinect. ", "\u3010VESA COMPATIBLE\u3011 Universal TV mounting bracket design fits most of 32'' to 65\" LCD/LED/Plasma TVs on the market up to VESA 600x400 and weighing up to 70 lbs. Fits VESA 600x400, 500x400, 400 x400 400x300, 400x200, 300x300, 200X200). Please check VESA (mounting hole pattern behind TV), possible blocked cable/input and TV weight prior to making purchase ", "\u3010UNIVERSAL FIT\u3011 TV mounting bracket is compatible with Samsung, Sony, LG, Sharp, Insignia, Vizio, Haier, Toshiba, Sharp, Element, TCL, Westinghouse 32, 36, 37, 40, 42, 47, 48, 49, 50, 55,60,65 inch TVs. Please ensure your TV has VESA 400x600mm pattern or smaller ", "\u3010A LIFETIME WARRANTY\u3011 Our TV stand includes an incredible a lifetime warranty and friendly customer service. We provide Standard mounting hardware to make installation as easy and convenient as possible, if you have any problem please feel free to contact us. "], "total_reviews": 721, "total_answered_questions": "", "model": "\u200eFTT105202GB", "customization_options": "", "seller_id": "A2T4RI5JPP2USG", "seller_name": "Dropship Shopping Centre", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07GZLDJMC", "category": "electronics", "query": "Mounts", "page": 323, "small_description_old": "About this item \u3010TV STAND\u3011Universal TV stand/base tabletop stand to mount your TV and AV components on an entertainment center or a desk/table. 8 mm thick sleek tempered glass shelf can store your cable tv box, satellite receiver, gaming consoles such as PS4, Xbox, or Apple TV \u3010HEIGHT ADJUSTABLED DESKTOP TV MOUNT\u3011 TV bracket is height adjustable! 4 positions to suit different applications or TV sizes. The TV can be raised to install a sound bar or game console sensors like the Kinect. \u3010VESA COMPATIBLE\u3011 Universal TV mounting bracket design fits most of 32'' to 65\" LCD/LED/Plasma TVs on the market up to VESA 600x400 and weighing up to 70 lbs. Fits VESA 600x400, 500x400, 400 x400 400x300, 400x200, 300x300, 200X200). Please check VESA (mounting hole pattern behind TV), possible blocked cable/input and TV weight prior to making purchase \u3010UNIVERSAL FIT\u3011 TV mounting bracket is compatible with Samsung, Sony, LG, Sharp, Insignia, Vizio, Haier, Toshiba, Sharp, Element, TCL, Westinghouse 32, 36, 37, 40, 42, 47, 48, 49, 50, 55,60,65 inch TVs. Please ensure your TV has VESA 400x600mm pattern or smaller \u3010A LIFETIME WARRANTY\u3011 Our TV stand includes an incredible a lifetime warranty and friendly customer service. We provide Standard mounting hardware to make installation as easy and convenient as possible, if you have any problem please feel free to contact us. \n \u203a See more product details"}, {"name": "Arya Farm Certified Organic Bajra Flakes ( Crunch ) 300 g ( Pack of 2 ) Breakfast Cereal Without Chemicals", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.02 x 9.45 x 7.09 inches; 1.32 Pounds", "Manufacturer\n \u200f": "\u200e\n Arya Farm", "ASIN\n \u200f": "\u200e\n B07XRDD75B", "Country of Origin\n \u200f": "\u200e\n India", "": ""}, "brand": "Brand: Arya Farm", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Arya+Farm", "full_description": "Arya Farm Certified Organic Jeera Powder Combo Offer. The World Is Going Organi. Why choose Arya? \u00e2rya is an ancient Sanskrit word which means Excellent! We at Arya Farm ensure we bring that excellence in each and every product we create for you by handpicking the farmers and also the ingredients. Our products are fresher than others because of our short supply cycle to stores", "pricing": "$7.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51amfIEpFXL.jpg", "https://m.media-amazon.com/images/I/513Unr0ArjL.jpg", "https://m.media-amazon.com/images/I/5191XNIpS9L.jpg", "https://m.media-amazon.com/images/I/41rCPSqil7L.jpg", "https://m.media-amazon.com/images/I/41rCPSqil7L.jpg", "https://m.media-amazon.com/images/I/213YNOLmbjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breakfast Foods \u203a Cereals \u203a Muesli", "average_rating": "", "small_description": ["Arya Farm Certified Organic Bajra Flakes ( Crunch ) 300 g - 2 pcs ", "Gluten free High in Protein Rich in Dietary Fiber ", "Organic. Free from Chemicals. Safe for Farmers. Good for Nature. ", "No preservatives artificial colours chemicals or any other flavours are used. ", "Product is Produced & Processed as per NOP / NPOP standards. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ALUXMQCBED6CD", "seller_name": "IndianTree", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07XRDD75B", "category": "grocery", "query": "Breakfast Foods", "page": 115, "small_description_old": "About this item Arya Farm Certified Organic Bajra Flakes ( Crunch ) 300 g - 2 pcs Gluten free High in Protein Rich in Dietary Fiber Organic. Free from Chemicals. Safe for Farmers. Good for Nature. No preservatives artificial colours chemicals or any other flavours are used. Product is Produced & Processed as per NOP / NPOP standards."}, {"name": "starboosa Rifle Scope Mount Camera Adapter - Smartphone Camera Adapter for Hunting Teaching", "product_information": {"Item Package Dimensions L x W x H": "\u200e5.43 x 5.04 x 2.68 inches", "Package Weight": "\u200e0.26 Kilograms", "Brand Name": "\u200eStarboosa", "Manufacturer": "\u200estarboosa", "ASIN": "B0912JD5KF", "Customer Reviews": {"ratings_count": 3, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#170 in Telescope Photo Adapters"], "Date First Available": "March 25, 2021"}, "brand": "Visit the starboosa Store", "brand_url": "https://www.amazon.com/stores/STARBOOSA/page/203784B2-E971-4F4C-8F09-42CE6F9702A5?ref_=ast_bln", "full_description": "", "pricing": "$36.59", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41PjzVjI46S.jpg", "https://m.media-amazon.com/images/I/41vg00hXRNS.jpg", "https://m.media-amazon.com/images/I/51FXissxj1S.jpg", "https://m.media-amazon.com/images/I/51TMDD8ffcS.jpg", "https://m.media-amazon.com/images/I/31yaIOiFuuS.jpg", "https://m.media-amazon.com/images/I/31Swox7l4tS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Telescope & Microscope Accessories \u203a Telescope Accessories \u203a Photo Adapters", "average_rating": 4.2, "small_description": ["Smart phone camera adapter can be connected to rifle scopes,so that you can easily take photos and videos with your mobile phone, and share the discovery with your family and friends. ", "The holder is suitable for almost all eyepieces with an outer diameter of 33mm-46mm, including eyepieces with simple rifle scopes, eyepieces with knobs, curved eyepieces, and even eyepieces with small rings and handles. Also suitable for telescope, monocular, binocular eyepieces. ", "It can be applied to various smart phones with a width of 58mm-100mm. For example, iphone 5, 5s, 6, 6s, etc. ", "It is made of durable aluminum and has been well anodized. ", "The firm PA plastic M5x8 screws (come with 6 pcs) will never scratch the surface of your eyepiece. Surface of the connected smartphone is covered with a soft material. No need to worry about the phone being scratched or damaged. "], "total_reviews": 3, "total_answered_questions": 5, "customization_options": "", "seller_id": "A7NFAF6DY2CB6", "seller_name": "Starboosa", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0912JD5KF", "category": "electronics", "query": "Binoculars & Scopes", "page": 29, "small_description_old": "Smart phone camera adapter can be connected to rifle scopes,so that you can easily take photos and videos with your mobile phone, and share the discovery with your family and friends. The holder is suitable for almost all eyepieces with an outer diameter of 33mm-46mm, including eyepieces with simple rifle scopes, eyepieces with knobs, curved eyepieces, and even eyepieces with small rings and handles. Also suitable for telescope, monocular, binocular eyepieces. It can be applied to various smart phones with a width of 58mm-100mm. For example, iphone 5, 5s, 6, 6s, etc. It is made of durable aluminum and has been well anodized. The firm PA plastic M5x8 screws (come with 6 pcs) will never scratch the surface of your eyepiece. Surface of the connected smartphone is covered with a soft material. No need to worry about the phone being scratched or damaged."}, {"name": "USB C Magnetic Charging Cable 3 Pack, 3 Magnetic Tips, CAFELE 6.6ft Type C Fast Charging Nylon Braided Cord for Samsung Galaxy S10 S10e S9 Note 8 9 S8 S8 Google Pixel Nexus LG Motorola HTC etc Blue", "product_information": {"Product Dimensions": "66 x 0.1 x 0.5 inches", "Item Weight": "3.2 ounces", "ASIN": "B07Z397262", "Item model number": "43191600", "Customer Reviews": {"ratings_count": 1078, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#1,300 in USB Cables"], "Is Discontinued By Manufacturer": "Yes", "OS": "IOS, Android", "Other display features": "Wireless", "Colour": "Blue/6.6ft/3 Pack/Type-C", "Manufacturer": "CAFELE", "Date First Available": "July 4, 2019"}, "brand": "Visit the CAFELE Store", "brand_url": "https://www.amazon.com/stores/CAFELE/page/0275D5F2-C759-45BA-8F4A-930ED6961E2D?ref_=ast_bln", "full_description": "CAFELE Type-C 3 Pack 3 Adapters Fast Charging Magnetic Charging Cable for Type-c Devices Specification: Color: Black Length: 3 magnetic nylon braided cord, 6.6ft (2 Meters) Connector: 3 Typec-C Connectors USB Charging Current: 5A Max compatibility\uff1aCompatible with Samsung LG XiaoMi Oneplus and Other Type-c Smartphones Such as Samsung s10 S9 S8 Note10 Note 9 etc. Product Technologies - Support QC 3.0 fast charging and data sync transmission What you get - Magnetic Charging Cable x 3 - Typec-C Magnetic Adapter/Connect x 3 - Lifetime technical support and 18 months of after-sales service - User guide manual", "pricing": "$19.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51B4avzcGvL.jpg", "https://m.media-amazon.com/images/I/51qzxCLRmTL.jpg", "https://m.media-amazon.com/images/I/51kLb1j9HOL.jpg", "https://m.media-amazon.com/images/I/51kGyxZ9WTL.jpg", "https://m.media-amazon.com/images/I/51C07oPnhsL.jpg", "https://m.media-amazon.com/images/I/51p0ea+rGlL.jpg", "https://m.media-amazon.com/images/I/41jmkAs51tL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Cables & Accessories \u203a Cables & Interconnects \u203a USB Cables", "average_rating": 4.2, "small_description": ["Support QC 3.0 Fast Charging: 3A maximum current fast charging, high-quality copper wire maximizes signal quality and increases durability, our technology teams make thousands of tests to ensure 100% safety for your device. ", "Stable & Durable Nylon Braided Cord: CAFELE charging cable are well made with pretty braided neylon that could protect wire cores. CAFELE charging cables are reliable, sturdy and strong, tangle free and flexible, more than 10000+ bend lifespan. ", "Automatically Connectors: Super strong magnetic charging adapters/connectors/tips. While it is out of charging, the magnetic connector can be used as Anti-dust plug. Do not worry, the moderate magnetic force will not damage the mobile phone components. ", "Support Data Trasfer: Up to 480Mbps data sync. Videos photos, and all your data could be transferred and synced speedy stably. Data transfer and power charging 2 in 1 to save your much time. ", "Compatibility: 3 Magnetic charging cable and 3 Magnetic adapters/connectors included. CAFELE 3 in 1 magnetic cable is compatible with Type-C mobile devices. Made Samsung LG Nexus Google pixel and other Type-C devices such as Galaxy S8 S9 S10 Note10 Note9 Note8 etc. "], "total_reviews": 1078, "total_answered_questions": 18, "model": "43191600", "customization_options": "", "seller_id": "AH2YPRAS1B6ZV", "seller_name": "CAFELE Direct", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07Z397262", "category": "electronics", "query": "Cell Phones", "page": 271, "small_description_old": "About this item Support QC 3.0 Fast Charging: 3A maximum current fast charging, high-quality copper wire maximizes signal quality and increases durability, our technology teams make thousands of tests to ensure 100% safety for your device. Stable & Durable Nylon Braided Cord: CAFELE charging cable are well made with pretty braided neylon that could protect wire cores. CAFELE charging cables are reliable, sturdy and strong, tangle free and flexible, more than 10000+ bend lifespan. Automatically Connectors: Super strong magnetic charging adapters/connectors/tips. While it is out of charging, the magnetic connector can be used as Anti-dust plug. Do not worry, the moderate magnetic force will not damage the mobile phone components. Support Data Trasfer: Up to 480Mbps data sync. Videos photos, and all your data could be transferred and synced speedy stably. Data transfer and power charging 2 in 1 to save your much time. Compatibility: 3 Magnetic charging cable and 3 Magnetic adapters/connectors included. CAFELE 3 in 1 magnetic cable is compatible with Type-C mobile devices. Made Samsung LG Nexus Google pixel and other Type-C devices such as Galaxy S8 S9 S10 Note10 Note9 Note8 etc."}, {"name": "Sheer Lace G-String For Men Floral Briefs Sexy T-Back Underwears See Through G-Strings Jockstrap Bikini Briefs", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n June 30, 2021", "Manufacturer\n \u200f": "\u200e\n MAIYIFU-2021", "ASIN\n \u200f": "\u200e\n B098B6P7SP", "Best Sellers Rank": "#582,020 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#526 in Men's Thong Underwear", "#526 in Men's Thong Underwear": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_sl_s_ap_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "\ud83d\udc51\ud83d\udc51\ud83d\udc51Product information\ud83d\udc51\ud83d\udc51\ud83d\udc51 \u25b8 Season: Spring,Summer,Autumn,Winter \u25b8 Gender: Man \u25b8 Style: Sexy \u25b8 Fit: Fits ture to size \u25b8 Occasion: Various Occasion \u25b8 Fabric: Soft,comfortable,breathable, skin-friendly. \u25b8 How to wash: Hand wash Cold,Hang or Line Dry \u25b8 What you get: 1 piece lingerie \ud83d\udc51For What?????? You can buy for yourself or as a gift/birthday present for your lover. We hope it has been designed to make you look great. \ud83d\udc51Who Are We?????? We are a brand designed for men offering what style you want with highest qualities. We bring customers to a different outlook on life of fashion. \ud83d\udc51Everyday Made Better!!!!!! We are focused on creating affordable, high-quality, and long-lasting everyday clothing you can rely on. Also we hope the relationship between you and your love gets better and better. \ud83d\udc51Easy Care & World-Class Customer Services: If you have any further questions please feel free to contact us We'll reply to you in 24 hours. Good quality can Machine wash with like color cold, tumble dry low, do not bleach. We support a 30-day replacement return service that allows you to shop without a worry. \ud83d\udc51Other Note : \u25ce The actual color may be slightly different from the image caused by different brightness of various monitors and brightness. \u25ce Please refer to the size chart listed below or let us know your weight and height in or lbs and inches. \u25ce Fits may vary by styles, body types, and manufacturer. \u25ce If you are in muscular shape, sturdy or plump shape,you'd better chooses 1 size larger than you usually wear.", "pricing": "$2.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Y6AcUwn4S.jpg", "https://m.media-amazon.com/images/I/41MJ54u8ulS.jpg", "https://m.media-amazon.com/images/I/31hUDV4VxZS.jpg", "https://m.media-amazon.com/images/I/31awnWd4QZS.jpg", "https://m.media-amazon.com/images/I/31xlFrOtaBS.jpg", "https://m.media-amazon.com/images/I/31pEJXg111S.jpg", "https://m.media-amazon.com/images/I/218CzqOyFmS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a G-Strings & Thongs", "average_rating": "", "small_description": ["extreme shorts with large split sides jock strap plaid school boy lingerie boxer briefs back suspenders outfits set men sexy leather pants tight trousers harness nightclub wet look bikini swim ", "for sex flower embroidery babydoll cutout g-string underwire shiny pu bodybuilding enhancing pouch short zipper lounge hollow pieces bow collar tuxedo supporter elastic waistband body modal underwear, style underpants drawstring smart g string full fully frilly imitation jockstraps jumpsuits wrestling singlet low rise open buttock bulge out rompers pantyhose tights stockings men's sexy lace thong bikini sissy briefs lingerie with garter mens up see through long sleeve t ", "\u3010High Quality\u3011: \ud83d\udc51Made with very stretchy and soft fabric that does not irritate skin, perfect for daily wear. The lingerie are soft to touch against the skin and smooth fitting. ", "\u3010Special Design\u3011: \ud83d\udc51This lingerie is a good choice to increase couple/lover's romantic moments, and it let your allure to be sexy,hot,enchanting and unstoppable. And to be glamorous and romantic. ", "\u3010Oaccasions\u3011: \ud83d\udc51Shiny Bottoms for Dancing, Raves, Party, Club, Festivals, Costumes.Suitable for Valentine's Day or Memorial day to increase desire. ", "\u3010Great Gift\u3011: \ud83d\udc51A perfect gift for yourself and a big surprise to spice up Valentines Days, Wedding Days, Honeymoon, Club, Private Day, Special Day, etc ", "\u3010Washing Recommended\u3011: \ud83d\udc51Hand Washing For Foam Pads, Washing Temperature Under 30 Degree Centigrade, Do Not Bleach, Hang Dry In Shade. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": null}, "seller_id": "A27TMH7ZF4TDEL", "seller_name": "liangduming2021", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B098B8KGMB", "category": "fashion", "query": "Men's Underwear", "page": 24, "small_description_old": "\u3010High Quality\u3011: \ud83d\udc51Made with very stretchy and soft fabric that does not irritate skin, perfect for daily wear. The lingerie are soft to touch against the skin and smooth fitting. \u3010Special Design\u3011: \ud83d\udc51This lingerie is a good choice to increase couple/lover's romantic moments, and it let your allure to be sexy,hot,enchanting and unstoppable. And to be glamorous and romantic. \u3010Oaccasions\u3011: \ud83d\udc51Shiny Bottoms for Dancing, Raves, Party, Club, Festivals, Costumes.Suitable for Valentine's Day or Memorial day to increase desire. \u3010Great Gift\u3011: \ud83d\udc51A perfect gift for yourself and a big surprise to spice up Valentines Days, Wedding Days, Honeymoon, Club, Private Day, Special Day, etc \u3010Washing Recommended\u3011: \ud83d\udc51Hand Washing For Foam Pads, Washing Temperature Under 30 Degree Centigrade, Do Not Bleach, Hang Dry In Shade."}, {"name": "DOVE STICK Mix Antiperspirant deodorants 40Ml /1.76OZ (Dove Stick Mix, 12X40ML/1.4OZ)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "UPC\n \u200f": "\u200e\n 600181871699", "Manufacturer\n \u200f": "\u200e\n Unilever UK", "ASIN\n \u200f": "\u200e\n B07963ZMK6", "Best Sellers Rank": "#638,273 in Health & Household (See Top 100 in Health & Household)#3,204 in Antiperspirant Deodorant", "#3,204 in Antiperspirant Deodorant": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Stick Dove", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Stick+Dove", "full_description": "If you ask us, antiperspirants shouldn\u2019t just protect: they should care for your underarm skin, too. We put care into the rest of our bodies, shouldn\u2019t our underarms get the same? After all, a lot of the best things in life lead to us throwing our arms in the air: great music, enthusiastic \u2013 if not particularly good \u2013 dancing, hugs with friends we haven\u2019t seen in ages. And in those moments, insecurities about our underarms definitely aren\u2019t welcome. Which is why Dove antiperspirant deodorants are created with our \u00bc moisturizing cream, to care for your underarm skin, leaving it soft and smooth. And there\u2019s a Dove antiperspirant to suit every situation \u2013 like our Dry Spray range, extra strong Dove Clinical Protection or Advanced Care range, to name a few of our favorites. Because we know you want more from an antiperspirant than just protection, with Dove you get care, too. The perfect combination.", "pricing": "$28.99", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41OxNCi+LvL.jpg", "https://m.media-amazon.com/images/I/41qE6vHVxrL.jpg", "https://m.media-amazon.com/images/I/41xYARrFaaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Antiperspirant Deodorant", "average_rating": 5, "small_description": ["DOVE STICK Mix Antiperspirant deodorants "], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07963JN58/ref=twister_B07963VCTJ?_encoding=UTF8&psc=1", "value": "6X40ML/1.4 Ounce", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "12X40ML/1.4 Ounce", "price_string": "$28.99", "price": 28.99, "image": null}]}, "seller_id": "A2Y5UTN3F2ET27", "seller_name": "Alwash INC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07963ZMK6", "category": "beauty", "query": "Deodorants & Antiperspirants", "page": 58, "small_description_old": "About this item DOVE STICK Mix Antiperspirant deodorants"}, {"name": "Minkissy 2pcs Stainless Steel Eyebrow Tweezers Blackhead Acne Remover Portable Makeup Tweezers (Silver)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 4.49 x 0.31 x 0.24 inches; 0.99 Ounces", "Item model number\n \u200f": "\u200e\n GMVZW5DO0886ZFYT1190GY", "Manufacturer\n \u200f": "\u200e\n Minkissy", "ASIN\n \u200f": "\u200e\n B0892Y9F83", "Best Sellers Rank": "#1,282,410 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#4,172 in Hair Removal Tweezers", "#4,172 in Hair Removal Tweezers": ""}, "brand": "Brand: minkissy", "brand_url": "https://www.amazon.com/minkissy/b/ref=bl_dp_s_web_23471563011?ie=UTF8&node=23471563011&field-lbr_brands_browse-bin=minkissy", "full_description": "Description2pcs Stainless Steel Eyebrow Tweezers Blackhead Acne Remover Portable Makeup Tweezers (Silver)Features-\u00a0 Color:\u00a0 Silver.-\u00a0 Material:\u00a0 Stainless Steel.-\u00a0 Packing Size:\u00a0 About 11.4x0.8x0.6cm.-\u00a0Warm Tip: Dear customer, Due to lighting effect, monitor's brightness, and manual measurement, etc, there might be some slight differences in the color & size between the photo & the actual item. Sincerely hope you can understand! Thanks!Package Including2 x\u00a0 eyebrow tweezers", "pricing": "$10.39", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31ky64jtqBL.jpg", "https://m.media-amazon.com/images/I/31VANU0gcIL.jpg", "https://m.media-amazon.com/images/I/31LMCKpcb2L.jpg", "https://m.media-amazon.com/images/I/51wQNcyRQTL.jpg", "https://m.media-amazon.com/images/I/314RGMlz1vL.jpg", "https://m.media-amazon.com/images/I/417ZL3P92vL.jpg", "https://m.media-amazon.com/images/I/316X7Ixf6QL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Women's \u203a Tweezers", "average_rating": "", "small_description": ["Different design to trim your eyebrows, apply for false eyelashes, clip double eyelids and more. ", "Great for your eyebrow according to your eyebrow shape, outline different styles of eyebrow shapes. ", "Ergonomic design, easy to use, no harm your skin. ", "Easy and convenient to use, save your time and effort. Lightweight to carry out when travelling. ", "Made of high quality stainless steel, which is safe and durable. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2OHPKEOCIT70Q", "seller_name": "Kotfiler", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0892Y9F83", "category": "beauty", "query": "Makeup Remover", "page": 208, "small_description_old": "About this item Different design to trim your eyebrows, apply for false eyelashes, clip double eyelids and more. Great for your eyebrow according to your eyebrow shape, outline different styles of eyebrow shapes. Ergonomic design, easy to use, no harm your skin. Easy and convenient to use, save your time and effort. Lightweight to carry out when travelling. Made of high quality stainless steel, which is safe and durable."}, {"name": "Tarragon Leaves, Dried - Spiceology Cut and Sorted Tarragon - 4 ounces", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 3 x 3.5 x 8 inches; 4 Ounces", "UPC\n \u200f": "\u200e\n 814076020851", "Manufacturer\n \u200f": "\u200e\n Spiceology", "ASIN\n \u200f": "\u200e\n B00V57WXMU", "Best Sellers Rank": "#320,560 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#52 in Tarragon", "#52 in Tarragon": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Spiceology Store", "brand_url": "https://www.amazon.com/stores/Spiceology/page/34A26ED1-32A8-42AE-8D8C-E375E7326F15?ref_=ast_bln", "full_description": "", "pricing": "$23.12", "list_price": "", "availability_quantity": 16, "availability_status": "Only 16 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41FTD5VzNfL.jpg", "https://m.media-amazon.com/images/I/51Xo8pcf5VL.jpg", "https://m.media-amazon.com/images/I/61WuinYoXqL.jpg", "https://m.media-amazon.com/images/I/61A7-VYIFBL.jpg", "https://m.media-amazon.com/images/I/51u9O+Yfz6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Herbs, Spices & Seasonings \u203a Single Herbs & Spices \u203a Tarragon", "average_rating": 4.9, "small_description": ["Spiceology Tarragon Leaves (Ta) have an hints of anise, licorice and floral ", "Add dried Tarragon leaves to sauces, marinades, dressings, stews and sauces ", "Use Tarragon Leaves to impart anise flavor to spice seasonings and rubs for all meats and vegetables, including beef, chicken, fowl, pork, fish, seafood, game, and vegetables ", "Bulk container for chefs and commercial kitchens ", "Packed fresh in the USA "], "total_reviews": 12, "total_answered_questions": "", "customization_options": "", "seller_id": "A3VPX1394N9N4N", "seller_name": "spiceology", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B00V57WXMU", "category": "grocery", "query": "Meat & Seafood", "page": 331, "small_description_old": "About this item Spiceology Tarragon Leaves (Ta) have an hints of anise, licorice and floral Add dried Tarragon leaves to sauces, marinades, dressings, stews and sauces Use Tarragon Leaves to impart anise flavor to spice seasonings and rubs for all meats and vegetables, including beef, chicken, fowl, pork, fish, seafood, game, and vegetables Bulk container for chefs and commercial kitchens Packed fresh in the USA"}, {"name": "Levi's Mens Lance Lo Mono UL Casual Sneaker Shoe", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.54 x 7.8 x 4.88 inches; 3 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n April 6, 2021", "Manufacturer\n \u200f": "\u200e\n Levi's", "ASIN\n \u200f": "\u200e\n B091WP7DSJ", "Best Sellers Rank": "#174,708 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#806 in Men's Fashion Sneakers", "#806 in Men's Fashion Sneakers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$29.99$44.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31qjfqRTw5L.jpg", "https://m.media-amazon.com/images/I/318f89YH9SL.jpg", "https://m.media-amazon.com/images/I/31pcWGSk4HL.jpg", "https://m.media-amazon.com/images/I/310MvfbqR2L.jpg", "https://m.media-amazon.com/images/I/31m-Y6yaMjL.jpg", "https://m.media-amazon.com/images/I/31vC0nuqYkL.jpg", "https://m.media-amazon.com/images/I/41OnfnGt-yL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Fashion Sneakers", "average_rating": 4.1, "small_description": ["100% Synthetic ", "Imported ", "Rubber sole ", "Synthetic vegan leather upper ", "Soft, breathable fabric lining ", "Lightly cushioned footbed for excellent comfort ", "Lace-up closure with metal eyelets ", "Durable rubber outsole for added traction "], "total_reviews": 43, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "7", "asin": "B091V8T68Z"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B091V7MLFN"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B08VH1GXPK"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B08VH72GNH"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B08T84R7V2"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B08VHBB5ND"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B08VH8CCFW"}, {"is_selected": false, "is_available": false, "value": "10.5", "asin": "B08VHBK2YJ"}, {"is_selected": false, "is_available": false, "value": "11", "asin": "B08VH8HMFC"}, {"is_selected": false, "is_available": false, "value": "12", "asin": "B08VH7YPP5"}, {"is_selected": false, "is_available": true, "value": "13", "asin": "B08VHB69C4"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B091WP7DSJ/ref=twister_B095Z6YLYH", "value": "Black/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31njX07cXyL.jpg"}, {"is_selected": true, "url": null, "value": "White/Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qjfqRTw5L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08T84R7V2", "category": "fashion", "query": "Men's Fashion Sneakers", "page": 13, "small_description_old": "100% Synthetic Imported Rubber sole Synthetic vegan leather upper Soft, breathable fabric lining Lightly cushioned footbed for excellent comfort Lace-up closure with metal eyelets Durable rubber outsole for added traction"}, {"name": "RMISODO 15 Pieces 50ml Empty Refillable Roll On Bottles, Plastic Roller Bottles, Reusable Leak-Proof Deodorant Containers with Roller Balls for Essential Oil Perfume Fragrance, White", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.87 x 7.6 x 4.33 inches; 10.23 Ounces", "Manufacturer\n \u200f": "\u200e\n RMISODO", "ASIN\n \u200f": "\u200e\n B08W568RSB", "Best Sellers Rank": "#195,165 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#3,217 in Refillable Cosmetic Containers #7,019 in Makeup Bags & Cases", "#3,217 in Refillable Cosmetic Containers": "", "#7,019 in Makeup Bags & Cases": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the RMISODO Store", "brand_url": "https://www.amazon.com/stores/RMISODO/page/447939F6-721F-4C9B-9952-C328A3D2266F?ref_=ast_bln", "full_description": "", "pricing": "$16.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/310o3+lM2+L.jpg", "https://m.media-amazon.com/images/I/41-WxCDDeHL.jpg", "https://m.media-amazon.com/images/I/31vHrguAg9L.jpg", "https://m.media-amazon.com/images/I/41WwBjNU2jL.jpg", "https://m.media-amazon.com/images/I/41Jhg1+zsyL.jpg", "https://m.media-amazon.com/images/I/41J3yhdwfvL.jpg", "https://m.media-amazon.com/images/I/31AG++fFuOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": 4.8, "small_description": ["LEAK-PROOF DESIGN -- These empty bottles with roller ball design, which apply your blend smoothly and effortlessly. The threaded lid fits tightly and can effectively prevent liquid leakage. ", "EXCELLENT QUALITY -- The roller bottle is made of high quality plastic material, sturdy and reliable, not easy to break, safe and durable to use. ", "WIDE APPLICATION -- Ideal for DIY your own essential oils, synthesis oil, essence, perfumes, lip balms, aromatherapy, fragrances, and other cosmetic liquids, meet your needs of daily care for eyes, faces and body. ", "TRAVEL FRIENDLY -- These rollerball bottles are portable and lightweight, conveniently fits in your purse, handbag or suitcase, very helpful especially when you are off for a business trip or travel. ", "SIZE & PACKAGE -- Size of the perfume container is about 10 x 3.8 cm/3.9 x 1.5 inches, the capacity is 50 ml. Package includes 15 pieces empty essential oil roller bottles. "], "total_reviews": 7, "total_answered_questions": "", "customization_options": "", "seller_id": "A25TYWXARA3P5D", "seller_name": "RMISODO", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08W568RSB", "category": "beauty", "query": "Refillable Containers", "page": 12, "small_description_old": "About this item LEAK-PROOF DESIGN -- These empty bottles with roller ball design, which apply your blend smoothly and effortlessly. The threaded lid fits tightly and can effectively prevent liquid leakage. EXCELLENT QUALITY -- The roller bottle is made of high quality plastic material, sturdy and reliable, not easy to break, safe and durable to use. WIDE APPLICATION -- Ideal for DIY your own essential oils, synthesis oil, essence, perfumes, lip balms, aromatherapy, fragrances, and other cosmetic liquids, meet your needs of daily care for eyes, faces and body. TRAVEL FRIENDLY -- These rollerball bottles are portable and lightweight, conveniently fits in your purse, handbag or suitcase, very helpful especially when you are off for a business trip or travel. SIZE & PACKAGE -- Size of the perfume container is about 10 x 3.8 cm/3.9 x 1.5 inches, the capacity is 50 ml. Package includes 15 pieces empty essential oil roller bottles."}, {"name": "SweatyRocks Women's Oversized Sweater Crewneck Long Sleeve Knit Tops Pullover Jumper Tops", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 14 x 10.5 x 0.5 inches; 8.15 Ounces", "Item model number\n \u200f": "\u200e\n swSWK2109157283712335-XS", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n November 1, 2021", "ASIN\n \u200f": "\u200e\n B09KRK9NC2", "Best Sellers Rank": "#335,857 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,798 in Women's Pullover Sweaters", "#1,798 in Women's Pullover Sweaters": ""}, "brand": "Visit the SweatyRocks Store", "brand_url": "https://www.amazon.com/stores/SweatyRocks/page/20C915C3-43E9-4DDF-B989-54C26F090808?ref_=ast_bln", "full_description": "SweatyRocks Women's Oversized Sweater Crewneck Long Sleeve Knit Tops Pullover Jumper Tops/ Pattern Type: Plain/ Length: Regular/ Season: Spring/Fall/ Details: Rib-Knit/ Fit Type: Regular Fit/ Neckline: Round Neck/ Sleeve Length: Long Sleeve/ Sleeve Type: Drop Shoulder/ Sheer: No/ Placket Type: Pullovers/ Fabric: Slight Stretch/", "pricing": "$25.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41EIRDij3jL.jpg", "https://m.media-amazon.com/images/I/41g+f9p3uPL.jpg", "https://m.media-amazon.com/images/I/41h0ao+CawL.jpg", "https://m.media-amazon.com/images/I/41LkZviIGyL.jpg", "https://m.media-amazon.com/images/I/41Tf-Or6IpL.jpg", "https://m.media-amazon.com/images/I/31tWYUhzvLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Sweaters \u203a Pullovers", "average_rating": "", "small_description": ["Material:The fabric is stretchy, breathable and very soft, very comfortable against skin ", "Unique design: Solid color\uff0c loose ribbed knit shirt\uff0cbatwing long sleeve,cable slouchy sweater pullover,round neck,drop shoulder is more stylish and feminine, ", "Occasion: This casual pullover sweaters for women looks great with jeans, leggings, casual pant, scarf ,handbag ,backpack or boots,trendy and stylish look.Perfect sweater for spring,autumn and winter ", "Hand wash or machine wash, do not bleach ", "Please refer to the size measurement in image before ordering "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B09KRK9NC2"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B09KRLGSC5"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09KRKNWLR"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09KRKQPLS"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EIRDij3jL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09L88ZMHD/ref=twister_B09KRLNYCY", "value": "Coffee Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41WRK7ufjvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KRLYKRY/ref=twister_B09KRLNYCY", "value": "Mocha Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41VN-sheBuL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09KRLGSC5", "category": "fashion", "query": "Women's Sweaters", "page": 38, "small_description_old": "Material:The fabric is stretchy, breathable and very soft, very comfortable against skin Unique design: Solid color\uff0c loose ribbed knit shirt\uff0cbatwing long sleeve,cable slouchy sweater pullover,round neck,drop shoulder is more stylish and feminine, Occasion: This casual pullover sweaters for women looks great with jeans, leggings, casual pant, scarf ,handbag ,backpack or boots,trendy and stylish look.Perfect sweater for spring,autumn and winter Hand wash or machine wash, do not bleach Please refer to the size measurement in image before ordering"}, {"name": "Sit Stand Tabletop Desk Larger Height Adjustable Standing Desk Converter Laptop Riser Platform Laptop Desktop Sit to Stand Up Desk for Home Office Computer Workstation 32x24inch", "product_information": {"Product Dimensions": "23.6 x 31.5 x 2.55 inches", "Item Weight": "39.9 pounds", "Manufacturer": "DONGGUAN YUNGU", "ASIN": "B08HV9D6P3", "Country of Origin": "China", "Customer Reviews": {"ratings_count": 24, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#132,246 in Office Products (See Top 100 in Office Products) #129 in Desktop Shelves & Office Shelves #159,874 in Home D\u00e9cor Products"], "Date First Available": "September 9, 2020"}, "brand": "Visit the Yoogu Store", "brand_url": "https://www.amazon.com/stores/Yoogu/page/4E0E4D7C-4FB6-4171-81AC-C2B5D4859EAC?ref_=ast_bln", "full_description": "", "pricing": "$129.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41dSDXDY8OL.jpg", "https://m.media-amazon.com/images/I/412IrKRJpAL.jpg", "https://m.media-amazon.com/images/I/41VqcUQlr9L.jpg", "https://m.media-amazon.com/images/I/51q-QXTLecL.jpg", "https://m.media-amazon.com/images/I/41FdQFVonoL.jpg", "https://m.media-amazon.com/images/I/41R1rmKDQSL.jpg", "https://m.media-amazon.com/images/I/81S0iAL1JzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office & School Supplies \u203a Desk Accessories & Workspace Organizers \u203a Platforms, Stands & Shelves \u203a Desktop & Off-Surface Shelves", "average_rating": 4.2, "small_description": ["EASY TO ASSEMBLE-Just unpackage your Updesk from the box and place it on your existing desk , you\u2019re done! ", "EASY SIT STAND-Use the lever to raise the desk. Hold both side of the desk, squeeze the lever, and give a gentle lift. After the first few inches it will raise easily by itself. ", "SPACIOUS DESKTOP-The desktop is 31.5\"x 23.6\" (desktop Height:2.55\"-16.2\"). More larger than ordinary desk ,which accommodate two moderately sized monitors or a monitor and a laptop ", "BETTER QUALITY-Made of high-quality steel, More heavier and more stable ! Overall Weight Capacity: about 39Ibs , Suitable for most people ", "BEST SERVICE-Please contact us when you have any questions, we will try our best to help you to solve them "], "total_reviews": 24, "total_answered_questions": "", "customization_options": "", "seller_id": "A248DFEB2KNYPG", "seller_name": "Yoogu", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08HV9D6P3", "category": "garden", "query": "Desks", "page": 185, "small_description_old": "About this item\n \nEASY TO ASSEMBLE-Just unpackage your Updesk from the box and place it on your existing desk , you\u2019re done! EASY SIT STAND-Use the lever to raise the desk. Hold both side of the desk, squeeze the lever, and give a gentle lift. After the first few inches it will raise easily by itself. SPACIOUS DESKTOP-The desktop is 31.5\"x 23.6\" (desktop Height:2.55\"-16.2\"). More larger than ordinary desk ,which accommodate two moderately sized monitors or a monitor and a laptop BETTER QUALITY-Made of high-quality steel, More heavier and more stable ! Overall Weight Capacity: about 39Ibs , Suitable for most people BEST SERVICE-Please contact us when you have any questions, we will try our best to help you to solve them"}, {"name": "BESIGN Ground Loop Noise Isolator for Car Audio/Home Stereo System with 3.5mm Audio Cable", "product_information": {"Package Dimensions": "3.35 x 1.46 x 1.06 inches", "Item Weight": "1.13 ounces", "ASIN": "B06XQYN77L", "Item model number": "GLNI01", "Customer Reviews": {"ratings_count": 3150, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#1 in Car Amplifier Noise Filters"], "Is Discontinued By Manufacturer": "No", "Other display features": "Wireless", "Manufacturer": "BESIGN", "Date First Available": "March 19, 2017"}, "brand": "Visit the BESIGN Store", "brand_url": "https://www.amazon.com/stores/BESIGN/page/8F6423CA-97ED-4780-B880-78166E233A51?ref_=ast_bln", "full_description": "", "pricing": "$10.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41HZspghbBL.jpg", "https://m.media-amazon.com/images/I/41WPOgU5QnL.jpg", "https://m.media-amazon.com/images/I/51UTDmf-ZML.jpg", "https://m.media-amazon.com/images/I/31zDsqpz-ZL.jpg", "https://m.media-amazon.com/images/I/51Ck6aoDobL.jpg", "https://m.media-amazon.com/images/I/51xr8EzH+pL.jpg", "https://m.media-amazon.com/images/I/41uXBOFrvZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Vehicle Electronics Accessories \u203a Vehicle Audio & Video Installation \u203a Amplifier Installation \u203a Noise Filters", "average_rating": 4.4, "small_description": ["Ground loop filter noise isolator, eliminating the hiss, buzz and interference caused by ground loops which happens when the audio source and the speaker use the same power source in some car speakers / home stereo systems when using the Bluetooth receiver. ", "You can enjoy the clean and clear music/audio by eliminating the current noise in some car speakers / home stereo systems. ", "Works with any device that has a 3.5mm jack including smartphones, tablets, mp3 player, speakers, when grounding issues persist. You could also use with a Bluetooth Receiver/Bluetooth Hands-free Car Kit in your Car Audio System/Home Stereo. ", "Being so mini, portable and light, plug and play, no battery need or button, all you need to do is to plug in the ground loop isolator ", "Portable, light-weight and plug and play without any complicated setup. Package Contents: Besign Ground Loop noise Isolator with 3.5mm Audio Cable, User Manual. "], "total_reviews": 3150, "total_answered_questions": 39, "model": "GLNI01", "customization_options": "", "seller_id": "A2UM0X40UXSI2V", "seller_name": "Besign Direct", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B06XQYN77L", "category": "electronics", "query": "Bluetooth Headsets", "page": 346, "small_description_old": "Ground loop filter noise isolator, eliminating the hiss, buzz and interference caused by ground loops which happens when the audio source and the speaker use the same power source in some car speakers / home stereo systems when using the Bluetooth receiver. You can enjoy the clean and clear music/audio by eliminating the current noise in some car speakers / home stereo systems. Works with any device that has a 3.5mm jack including smartphones, tablets, mp3 player, speakers, when grounding issues persist. You could also use with a Bluetooth Receiver/Bluetooth Hands-free Car Kit in your Car Audio System/Home Stereo. Being so mini, portable and light, plug and play, no battery need or button, all you need to do is to plug in the ground loop isolator Portable, light-weight and plug and play without any complicated setup. Package Contents: Besign Ground Loop noise Isolator with 3.5mm Audio Cable, User Manual."}, {"name": "ORS HAIRestore Hair Mayonnaise with Nettle Leaf and Horsetail Extract 16 oz (Pack of 4)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 13.6 x 4.2 x 3.4 inches; 5.41 Pounds", "UPC\n \u200f": "\u200e\n 632169110216", "Manufacturer\n \u200f": "\u200e\n Namaste Laboratories LLC", "ASIN\n \u200f": "\u200e\n B01BV3XRG8", "Best Sellers Rank": "#169,351 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#195 in Deep Hair Conditioners", "#195 in Deep Hair Conditioners": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: ORS HAIRestore", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ORS+HAIRestore", "full_description": "Deep conditioning, protein-rich treatment intensely moisturizes and helps strengthen damaged, weak and over-processed hair with a combination of hair-nourishing herbs, Olive Oil, Egg Protein and Wheat Germ Oil. Step 3 of the HAIRestore\u201a\u00d1 system designed to help fight hair loss and promote healthy hair growth, this hair-restoring treatment can be added to any haircare routine to help undo damage and maintain healthy, vibrant hair.", "pricing": "$38.92", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51vQGvdW28L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Deep Conditioners", "average_rating": 3.9, "small_description": ["Perfect for: Hair lacking moisture and strength ", "Suitable for: Any hair type ", "Use as an intensive treatment to provide both strength and moisture ", "For hair breakage, damaged and weak hair ", "Combats chemical over-processing "], "total_reviews": 12, "total_answered_questions": "", "customization_options": "", "seller_id": "ASEVS99O6FS73", "seller_name": "Pharmapacks_", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01BV3XRG8", "category": "beauty", "query": "Hair Treatment Oils", "page": 108, "small_description_old": "About this item Perfect for: Hair lacking moisture and strength Suitable for: Any hair type Use as an intensive treatment to provide both strength and moisture For hair breakage, damaged and weak hair Combats chemical over-processing"}, {"name": "Grandfather Italian Mafia Puppet Men's Crewneck Sweatshirt", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 12 x 9 x 1 inches; 15 Ounces", "Item model number\n \u200f": "\u200e\n 70X08-18000-BLK-S", "Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n February 17, 2017", "ASIN\n \u200f": "\u200e\n B01KI9HPK0", "Best Sellers Rank": "#1,268,494 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#5,362 in Men's Novelty Sweatshirts #479,173 in Men's Fashion", "#5,362 in Men's Novelty Sweatshirts": "", "#479,173 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Brisco Brands Store", "brand_url": "https://www.amazon.com/stores/BriscoBrands/page/427F9C05-0E4A-48C7-B5C2-DFD7836997BC?ref_=ast_bln", "full_description": "", "pricing": "$23.99$29.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/419dYBykkGL.jpg", "https://m.media-amazon.com/images/I/41rEDVAOGpL.jpg", "https://m.media-amazon.com/images/I/41ZasDFOZ-L.jpg", "https://m.media-amazon.com/images/I/41zix8xbMgL.jpg", "https://m.media-amazon.com/images/I/416o2uSstVL.jpg", "https://m.media-amazon.com/images/I/31O6jHFkyAL.jpg", "https://m.media-amazon.com/images/I/6174I4g9-TL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Sweatshirts", "average_rating": 4.5, "small_description": ["50% Cotton, 50% Polyester ", "Made in the USA or Imported ", "Machine Wash ", "Size Small: Chest Width/Front Length 20\"x 27\" ", "Classic cut for looser fit | This is a unisex garment ", "Machine Wash Cold | Tumble Dry Low | Do Not Iron ", "Our graphic designs make unique gifts for every holiday and occasion ", "Please refer to images for more details "], "total_reviews": 38, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B01KI9HPK0"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B01KI9HMGM"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B01KI9H4JW"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B01KI9H8NO"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B01KI9HCLW"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B01KI9HGP4"}], "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01KI9HU1O", "category": "fashion", "query": "Men's Sweaters", "page": 74, "small_description_old": "50% Polyester, 50% Cotton Made in the USA or Imported Machine Wash Size Small: Chest Width/Front Length 20\"x 27\" Classic cut for looser fit | This is a unisex garment Machine Wash Cold | Tumble Dry Low | Do Not Iron Our graphic designs make unique gifts for every holiday and occasion Please refer to images for more details"}, {"name": "Canon PowerShot Pro Series S3 IS 6MP with 12x Image Stabilized Zoom (Discontinued by Manufacturer)", "product_information": {"Product Dimensions": "4.45 x 2.99 x 3.07 inches", "Item Weight": "1.12 pounds", "ASIN": "B000EMWBV0", "Item model number": "1101B001", "Batteries": "Lithium Metal batteries required. (included)", "Customer Reviews": {"ratings_count": 632, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#115,727 in Electronics (See Top 100 in Electronics) #908 in Digital Point & Shoot Cameras"], "Is Discontinued By Manufacturer": "No", "Date First Available": "February 21, 2006", "Manufacturer": "Canon"}, "brand": "Visit the Canon Store", "brand_url": "https://www.amazon.com/stores/Canon/page/5FDDA83E-27A1-472F-8444-4828B50C4243?ref_=ast_bln", "full_description": "The sleek PowerShot S3 IS digital camera offers you high resolution, an extra-long zoom, advanced yet easy-to-use movie functions plus great new shooting options. Also, with Image Stabilizer technology, images and movies taken with the S3 IS are sharp and smooth, even when the camera gets jostled. It's everything you need to capture the fun, excitement and beauty of your active life wherever it takes you. The sleek PowerShot S3 IS digital camera offers you high resolution, an extra-long zoom, advanced yet easy-to-use movie functions plus great new shooting options. Also, with Image Stabilizer technology, images and movies taken with the S3 IS are sharp and smooth, even when the camera gets jostled. It's everything you need to capture the fun, excitement and beauty of your active life - wherever it takes you! Successor to the popular PowerShot S2 IS, the latest addition to the PowerShot S-series incorporates a 6.0-megapixel CCD sensor, Canon's renowned optical Image Stabilizer technology, and video functionality rivalling that of dedicated digital video camcorders. Sporting a striking new finish in gunmetal grey, the compact PowerShot S3 IS answers the demands of advanced photographers with several improvements over its predecessor, including an increased sensitivity range of ISO 80 to ISO 800, a larger 2.0-inch vari-angle LCD screen, widescreen (16:9) recording, new movie features, and an additional Sports mode. Canon PowerShot S3 IS features: 12x optical zoom lens with USM and UD lens element Optical Image Stabilizer 6.0-megapixel CCD Larger size 2.0-inch vari-angle LCD 30-frame-per-second (fps) VGA movies with stereo sound and Photo in Movie feature DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results and 2.3 fps continuous shooting performance 20 shooting modes and My Colors photo effects High ISO Auto and ISO 800 for low light flexibility Widescreen (16:9) recording The PowerShot S3 IS caters for serious photo enthusiasts seeking extended zooming flexibility and fully featured movie recording in a versatile compact digital stills camera. Optics Still the most powerful zoom in a Canon digital compact camera (36 to 432mm, f2.7-f.3.5), the PowerShot S3 IS's lens incorporates the same leading technologies used in Canon's professional EF lenses. An Ultra-Sonic Motor (USM) drives rapid and near-silent zoom operation; an Ultra-low Dispersion (UD) lens element significantly reduces chromatic aberration in telephoto shots; Canon's optical Image Stabilizer (IS) technology counteracts camera shake to reduce image blur when shooting stills or recording video, essential for handheld shots at longer focal lengths. IS allows photographers to shoot at shutter speeds up to 3 stops slower for reliable flash-free photography in low light conditions. The PowerShot S3 IS's 12x optical zoom combines with digital zoom to deliver 48x magnification for recording both stills and video. For even wider framing options, optional wide and telephoto converter lenses extend the focal length from wide 27mm to super-tele 648mm (35mm film equivalent) for an impressive 24x optical zoom. A Super Macro mode and optional Close-Up lens 500D (58mm) allow for detailed macro photography. (Optional wide, telephoto, and close-up lenses not included--must be purchased separately.) Increased ISO speed In addition to Image Stabilization, the PowerShot S3 IS features a new High ISO Auto setting and ISO 800 to further extend the camera's low light shooting capabilities. High ISO Auto automatically sets exposure using the higher range of ISO sensitivities, enabling faster shutter speeds in low light and increased image stability at the telephoto end. A dedicated ISO button allows for easy switching between ISO sensitivities. Movie functions Powerful video functions make the PowerShot S3 IS far more than just a high-performance digital still camera. A dedicated movie button means users do not need to switch modes to start recording, so spontaneous moments can be instantly captured in full motion. Users can record smooth 30-frame-per-second VGA quality movies of up to 1 GB with stereo sound, or create 60-frame-per-second QVGA clips for sharp slow-motion playback. The Movie mode also allows users to pre-select exposure and white balance, zoom throughout the camera's focal range, and manually adjust focus while shooting. A Photo In Movie feature enables the capture of full resolution digital stills during video recording. Creative shooting The PowerShot S3 IS offers 20 shooting modes including full Manual mode, Aperture Priority, and Shutter Speed Priority. Together with 2.3-frame-per-second continuous shooting, a new fast-shutter Sports mode with improved autofocus accuracy provides unprecedented capabilities for capturing action sports sequences. Special Scene modes--such as Night Snapshot and Snow--assist with tricky lighting conditions, while Color Accent and Color Swap modes enable dramatic color effects to be applied to both images and movies. Canon's My Colors photo effects have been enhanced for this model, and can now be applied to images both before and after shooting. The PowerShot S3 IS features a new Widescreen mode (2816 x 1584 recording pixels) for capturing still images in 16:9 format--perfect for viewing images on widescreen television or printing wide (10 x 20-centimeter) photos with a Selphy Compact Photo Printer. Printing and other features A new, dedicated Print menu simplifies printing of multiple images. Full PictBridge support means users can print directly to any PictBridge compatible printer without the need for a PC. New PictBridge features include the ability to print shooting data and optimize faces in portrait shots when connected to a compatible Canon PIXMA printer. The camera's ID photo and movie stills features are also available when connected to a Selphy CP Series Printer. A handy Print/Share button allows one-touch printing and easy uploads to Windows or Mac systems. (Printer not included--must be purchased separately.) The camera's menu system now features support for Arabic, bringing the total number of supported languages to 23. Canon technologies explained Optical Image Stabilizer Canon's lens-shift-type optical Image Stabilizer counteracts the camera shake caused by slight hand movements. Vibration sensors detect the angle and speed of movement and send this information to a processor, allowing the camera to compensate. This adds stability to hand-held, telephoto, or moving shots and enables shooting at shutter speeds of up to three stops slower with no noticeable increase in image blur. DIGIC II Canon's purpose-built DIGIC II (DIGital Imaging Core) image processor links all primary camera functions for maximum efficiency. High-speed processing results in outstanding responsiveness, rapid autofocus, and extended continuous shooting ability. Advanced image processing algorithms deliver superb image detail and color reproduction with accurate white balance and minimal noise. DIGIC II operates efficiently to extend battery life, for longer shooting on a single charge. iSAPS iSAPS (Intelligent Scene Analysis based on Photographic Space) automatically optimizes key camera settings before every shot. Each scene is analyzed and cross-referenced against Photographic Space--a vast in-camera library of photographic data. This enables the camera to make optimal adjustments to autoexposure, autofocus, and auto white balance before image capture occurs. 9-Point AiAF Canon's 9-point AiAF (Artificial Intelligence Autofocus) automatically scans and selects subjects from a set of nine focusing areas across the scene. This ensures accurately focused images even when subjects are not in the centre of the frame. FlexiZone AF/AE FlexiZone AF/AE lets users manually select the focus point from almost any point in the frame by moving the autofocus window in the viewfinder. Exposure is linked to the focus point to ensure that the chosen subject is accurately focused and exposed. Ultra-low Dispersion (UD) lens technology No matter how well engineered, conventional optical glass lens elements cause chromatic aberrations which can 'soften' images and appear in photographs as fringing around the outside edge of subjects. Canon's Ultra-low Dispersion (UD) glass has special optical properties to successfully reduce these aberrations. Especially effective in super telephoto lenses, UD glass helps to deliver crisp, sharp, high-contrast images. What's in the Box PowerShot S3 IS body, AA-size alkaline battery (x 4), SD memory card SDC-16MB, lens cap, neck strap NS-DC4, Digital Camera Solution CD-ROM, USB interface cable IFC-400PCU, stereo video cable STV-250N The PowerShot S3 IS caters for serious photo enthusiasts seeking extended zooming flexibility and fully featured movie recording in a versatile compact digital stills camera. Optics Still the most powerful zoom in a Canon digital compact camera (36 to 432mm, f2.7-f.3.5), the PowerShot S3 IS's lens incorporates the same leading technologies used in Canon's professional EF lenses. An Ultra-Sonic Motor (USM) drives rapid and near-silent zoom operation; an Ultra-low Dispersion (UD) lens element significantly reduces chromatic aberration in telephoto shots; Canon's optical Image Stabilizer (IS) technology counteracts camera shake to reduce image blur when shooting stills or recording video, essential for handheld shots at longer focal lengths. IS allows photographers to shoot at shutter speeds up to 3 stops slower for reliable flash-free photography in low light conditions. The PowerShot S3 IS's 12x optical zoom combines with digital zoom to deliver 48x magnification for recording both stills and video. For even wider framing options, optional wide and telephoto converter lenses extend the focal length from wide 27mm to super-tele 648mm (35mm film equivalent) for an impressive 24x optical zoom. A Super Macro mode and optional Close-Up lens 500D (58mm) allow for detailed macro photography. (Optional wide, telephoto, and close-up lenses not included--must be purchased separately.) Increased ISO speed In addition to Image Stabilization, the PowerShot S3 IS features a new High ISO Auto setting and ISO 800 to further extend the camera's low light shooting capabilities. High ISO Auto automatically sets exposure using the higher range of ISO sensitivities, enabling faster shutter speeds in low light and increased image stability at the telephoto end. A dedicated ISO button allows for easy switching between ISO sensitivities. Movie functions Powerful video functions make the PowerShot S3 IS far more than just a high-performance digital still camera. A dedicated movie button means users do not need to switch modes to start recording, so spontaneous moments can be instantly captured in full motion. Users can record smooth 30-frame-per-second VGA quality movies of up to 1 GB with stereo sound, or create 60-frame-per-second QVGA clips for sharp slow-motion playback. The Movie mode also allows users to pre-select exposure and white balance, zoom throughout the camera's focal range, and manually adjust focus while shooting. A Photo In Movie feature enables the capture of full resolution digital stills during video recording. Creative shooting The PowerShot S3 IS offers 20 shooting modes including full Manual mode, Aperture Priority, and Shutter Speed Priority. Together with 2.3-frame-per-second continuous shooting, a new fast-shutter Sports mode with improved autofocus accuracy provides unprecedented capabilities for capturing action sports sequences. Special Scene modes--such as Night Snapshot and Snow--assist with tricky lighting conditions, while Color Accent and Color Swap modes enable dramatic color effects to be applied to both images and movies. Canon's My Colors photo effects have been enhanced for this model, and can now be applied to images both before and after shooting. The PowerShot S3 IS features a new Widescreen mode (2816 x 1584 recording pixels) for capturing still images in 16:9 format--perfect for viewing images on widescreen television or printing wide (10 x 20-centimeter) photos with a Selphy Compact Photo Printer. Printing and other features A new, dedicated Print menu simplifies printing of multiple images. Full PictBridge support means users can print directly to any PictBridge compatible printer without the need for a PC. New PictBridge features include the ability to print shooting data and optimize faces in portrait shots when connected to a compatible Canon PIXMA printer. The camera's ID photo and movie stills features are also available when connected to a Selphy CP Series Printer. A handy Print/Share button allows one-touch printing and easy uploads to Windows or Mac systems. (Printer not included--must be purchased separately.) The camera's menu system now features support for Arabic, bringing the total number of supported languages to 23. Canon technologies explained Optical Image Stabilizer Canon's lens-shift-type optical Image Stabilizer counteracts the camera shake caused by slight hand movements. Vibration sensors detect the angle and speed of movement and send this information to a processor, allowing the camera to compensate. This adds stability to hand-held, telephoto, or moving shots and enables shooting at shutter speeds of up to three stops slower with no noticeable increase in image blur. DIGIC II Canon's purpose-built DIGIC II (DIGital Imaging Core) image processor links all primary camera functions for maximum efficiency. High-speed processing results in outstanding responsiveness, rapid autofocus, and extended continuous shooting ability. Advanced image processing algorithms deliver superb image detail and color reproduction with accurate white balance and minimal noise. DIGIC II operates efficiently to extend battery life, for longer shooting on a single charge. iSAPS iSAPS (Intelligent Scene Analysis based on Photographic Space) automatically optimizes key camera settings before every shot. Each scene is analyzed and cross-referenced against Photographic Space--a vast in-camera library of photographic data. This enables the camera to make optimal adjustments to autoexposure, autofocus, and auto white balance before image capture occurs. 9-Point AiAF Canon's 9-point AiAF (Artificial Intelligence Autofocus) automatically scans and selects subjects from a set of nine focusing areas across the scene. This ensures accurately focused images even when subjects are not in the centre of the frame. FlexiZone AF/AE FlexiZone AF/AE lets users manually select the focus point from almost any point in the frame by moving the autofocus window in the viewfinder. Exposure is linked to the focus point to ensure that the chosen subject is accurately focused and exposed. Ultra-low Dispersion (UD) lens technology No matter how well engineered, conventional optical glass lens elements cause chromatic aberrations which can 'soften' images and appear in photographs as fringing around the outside edge of subjects. Canon's Ultra-low Dispersion (UD) glass has special optical properties to successfully reduce these aberrations. Especially effective in super telephoto lenses, UD glass helps to deliver crisp, sharp, high-contrast images. What's in the Box PowerShot S3 IS body, AA-size alkaline battery (x 4), SD memory card SDC-16MB, lens cap, neck strap NS-DC4, Digital Camera Solution CD-ROM, USB interface cable IFC-400PCU, stereo video cable STV-250N", "pricing": "$49.79", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41In54eEN3L.jpg", "https://m.media-amazon.com/images/I/41InVEpk7ZL.jpg", "https://m.media-amazon.com/images/I/41l0azIA69L.jpg", "https://m.media-amazon.com/images/I/4118vr4kzAL.jpg", "https://m.media-amazon.com/images/I/41I-32pCk1L.jpg", "https://m.media-amazon.com/images/I/41IqJHCNRKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a Point & Shoot Digital Cameras", "average_rating": 4.1, "small_description": ["Powered by 4 AA-size batteries (alkaline batteries supplied) , stores images on SD memory cards (16 MB card included) ", "DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results , 2.3-frame-per-second continuous shooting performance ", "12x optical zoom lens with USM and UD lens element , 2.0-inch vari-angle LCD display ", "6.0-megapixel CCD captures enough detail for photo-quality 14 x 19-inch prints ", "20 shooting modes and My Colors photo effects ", "6.0-megapixel CCD captures enough detail for photo-quality 14 x 19-inch prints ", "12x optical zoom lens with USM and UD lens element; 2.0-inch vari-angle LCD display , 20 shooting modes and My Colors photo effects, DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results; 2.3-frame-per-second continuous shooting performance, Powered by 4 AA-size batteries (alkaline batteries supplied); stores images on SD memory cards (16 MB card included)"], "total_reviews": 632, "total_answered_questions": 41, "model": "1101B001", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B000EMWBV0", "category": "electronics", "query": "Digital Cameras", "page": 137, "small_description_old": "About this item\n \nPowered by 4 AA-size batteries (alkaline batteries supplied) , stores images on SD memory cards (16 MB card included) DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results , 2.3-frame-per-second continuous shooting performance 12x optical zoom lens with USM and UD lens element , 2.0-inch vari-angle LCD display 6.0-megapixel CCD captures enough detail for photo-quality 14 x 19-inch prints 20 shooting modes and My Colors photo effects 6.0-megapixel CCD captures enough detail for photo-quality 14 x 19-inch prints 12x optical zoom lens with USM and UD lens element; 2.0-inch vari-angle LCD display \n 20 shooting modes and My Colors photo effectsDIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results; 2.3-frame-per-second continuous shooting performancePowered by 4 AA-size batteries (alkaline batteries supplied); stores images on SD memory cards (16 MB card included)Show more"}, {"name": "9\u201d Pure Beeswax Candle Set of 20 Pieces, deep Yellow Beeswax Candles with Natural Honey Scent and Cotton Wicks Food Grade tapers and Toppers for Everyday use 1102469", "product_information": {"Brand": "\u200eMHH", "Item Weight": "\u200e9.1 ounces", "Package Dimensions": "\u200e10.94 x 2.44 x 1.81 inches", "Item Package Quantity": "\u200e20", "Style": "\u200e20", "Material": "\u200eBeeswax", "Special Features": "\u200eClean Burn, Dripless", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B07WH2WBF2", "Customer Reviews": {"ratings_count": 3, "stars": "3.4 out of 5 stars"}, "Best Sellers Rank": ["#589,376 in Home & Kitchen (See Top 100 in Home & Kitchen) #144 in Candle Sets"], "Date First Available": "August 16, 2019"}, "brand": "Visit the MHH Store", "brand_url": "https://www.amazon.com/stores/MHH/page/47393A0E-B418-4D53-BA21-E574A8DAA495?ref_=ast_bln", "full_description": "Be sure you\u2019re getting a quality, healthy candles! There\u2019s something incredibly soothing about the soft warm glow of a candle at night that makes the world seem a little bit simpler and more pleasant. Therefore, why not enjoy the charm of candlelight and be confident your indoor air quality is actually improving? It can happen, but not with your standard candle. This is because store-bought paraffin candles are made from chemical wax and are not good for your breathing. One fabulous alternative to paraffin candles is a natural beeswax candle. Did you know that beeswax candles are a natural air-purifier? They work through a process called negative ionization when these negative ions will attach to positively charged particles in the air, such as dust and pollen. These new clumps of particles become heavier, allowing gravity to pull them down where they can be swept. But the golden glow and long burn time are just the beginning of a handmade beeswax candle\u2019s charm. Unlike paraffin candles they burn clean and bright while releasing a faint honey scent. Beeswax candles have a higher melting point than many other waxes, and so the candles remain upright in hot weather. Yet you cannot just light your beeswax candle and walk away. All burning candles need some maintenance and they should NEVER BE LEFT UNATTENDED. Not all natural beeswax candles is the same color. If the bees were on clover the beeswax will be lighter than if they were on buckwheat. It is lighter or darker depending on the flowers the bees have been able to forage. Enjoy the diversity! NOTE: Not everyone knows that \u2019bloom\u2019 on beeswax candles is a good thing. Only 100% pure beeswax will \u2018bloom\u2019 as the candles have been subjected to many temperature changes. If you prefer your beeswax candles polished and shiny then just warm them to a room temperature or try a lifehack - use a hair fan and in no time candles will look fresh like they had been recently poured.", "pricing": "$11.99", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51uXoatWECL.jpg", "https://m.media-amazon.com/images/I/41C8MSYW3DL.jpg", "https://m.media-amazon.com/images/I/41vn+f+eFIL.jpg", "https://m.media-amazon.com/images/I/51IwwmhbGxL.jpg", "https://m.media-amazon.com/images/I/41Gvz9mEnSL.jpg", "https://m.media-amazon.com/images/I/41o5PzT9bkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Candles & Holders \u203a Candles \u203a Candle Sets", "average_rating": 3.4, "small_description": ["Natural Beeswax Candles, 20 pieces, 9 inches ", "Pure cotton wick - burn purely and dripless ", "Natural honey scent - healthy aromatherapy ", "Eco-friendly candles for home, decor, party and birthday cakes, religious purposes "], "total_reviews": 3, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07QM7DFFG/ref=twister_B096W6M6JT", "value": "7 in", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "9 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08T5XP2TF/ref=twister_B096W6M6JT?_encoding=UTF8&psc=1", "value": "12 in", "price_string": "", "price": 0, "image": null}], "Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07WG33N1L/ref=twister_B096W6M6JT", "value": "30", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07QM7DFFG/ref=twister_B096W6M6JT", "value": "45", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WH2WTRQ/ref=twister_B096W6M6JT?_encoding=UTF8&psc=1", "value": "10", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "20", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WJ5XL4P/ref=twister_B096W6M6JT?_encoding=UTF8&psc=1", "value": "40", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WJ5MKTT/ref=twister_B096W6M6JT?_encoding=UTF8&psc=1", "value": "50", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A2VE9J396BUVQ", "seller_name": "MyHomeHelper", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07WH2WBF2", "category": "garden", "query": "Candles", "page": 279, "small_description_old": "About this item Natural Beeswax Candles, 20 pieces, 9 inches Pure cotton wick - burn purely and dripless Natural honey scent - healthy aromatherapy Eco-friendly candles for home, decor, party and birthday cakes, religious purposes \n \u203a See more product details"}, {"name": "1 Factory Radio Audio Equipment Radio Amplifier Compatible with 2001-2005 Chevrolet Cavalier 9393191", "product_information": {"Manufacturer": "\u200e1 Factory Radio", "Brand": "\u200e1 Factory Radio", "Item Weight": "\u200e8 pounds", "Package Dimensions": "\u200e10 x 10 x 6 inches", "Manufacturer Part Number": "\u200e638-01348-NOA", "ASIN": "B08NFLLK8P", "Date First Available": "November 13, 2020"}, "brand": "Brand: 1 Factory Radio", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=1+Factory+Radio", "full_description": "1 Factory Radio Audio Equipment Radio Amplifier Compatible with 2001-2005 Chevrolet Cavalier 9393191. 2001-2005 Chevrolet Cavalier Audio Equipment Radio Amplifier -- No Unlock Code Required -- Professionally remanufactured and 100% working order. Item may have normal signs of wear. Part Number: 9393191 Interchange Part Number: 638-01348 Compatible Part Number: 22670845, 22670845 Option Code: None This is a Professionally Remanufactured Audio Equipment Radio Amplifier that fits 2001-2005 Chevrolet Cavalier. Please see pictures for more cosmetic details. This item has been cleaned, serviced as needed and thoroughly checked. Function is in 100% working order! This unit is being sold as a REPLACEMENT ONLY! The part number is 9393191. If you do not have this exact part number, or compatible part number currently in your vehicle, it will likely NOT WORK. If you are unsure of your part number, contact us with your VIN and they should be able to provide you with the correct part number. They may look the same and have the same plugs but data streams may be different, not allowing them to code. For example, external amps are used in some cars and will not allow interchange, etc. Please verify that this is the item you require before purchase. The item you receive will be as pictured and described. Thank you for your purchase!", "pricing": "$75.00", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31+JYbiT+UL.jpg", "https://m.media-amazon.com/images/I/31YTSVR+5KL.jpg", "https://m.media-amazon.com/images/I/414EdXqoh5L.jpg", "https://m.media-amazon.com/images/I/31--MidU0rL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Car Electronics \u203a Car Audio \u203a Car Stereo Receivers", "average_rating": "", "small_description": ["Professionally Remanufactured OEM Unit ", "Audio Equipment Radio Amplifier ", "Part Number: 9393191 | Interchange Part Number: 638-01348 ", "Compatible with 2001-2005 Chevrolet Cavalier ", "Technical Support Powered By 1 Factory Radio "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B08NFLLK8P", "category": "electronics", "query": "AV Receivers & Amplifiers", "page": 112, "small_description_old": "Professionally Remanufactured OEM Unit Audio Equipment Radio Amplifier Part Number: 9393191 | Interchange Part Number: 638-01348 Compatible with 2001-2005 Chevrolet Cavalier Technical Support Powered By 1 Factory Radio \n \u203a See more product details"}, {"name": "Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet", "product_information": {"UPC\n \u200f": "\u200e\n 098379486174", "Manufacturer\n \u200f": "\u200e\n Alicia International", "ASIN\n \u200f": "\u200e\n B07BB1FJV8", "Best Sellers Rank": "#165,850 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#4,833 in Hair Replacement Wigs", "#4,833 in Hair Replacement Wigs": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Foxy Silver", "brand_url": "https://www.amazon.com/Foxy-Silver/b/ref=bl_dp_s_web_20272095011?ie=UTF8&node=20272095011&field-lbr_brands_browse-bin=Foxy+Silver", "full_description": "The Edna Synthetic Wig by Alicia Beauty is a short pixie style. This wig has shorter layers at the top to create volume and natural lift. The shorter straight side layers can be smoothed down or worn fuller. Wispy fringe gives the perfect amount of coverage toward the front. It is made from superior synthetic Kanekalon fibers. So the fibers hold the style all day long. Edna features a machine wefted cap construction that is lightweight and comfortable. The Foxy Silver Collection offer high quality wigs for women that feature machine wefted lightweight caps for fabulous hair - everyday. Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet", "pricing": "$36.69", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/512H6v6aqbL.jpg", "https://m.media-amazon.com/images/I/511YkccAuiL.jpg", "https://m.media-amazon.com/images/I/410KRXqpWXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Wigs", "average_rating": 4, "small_description": ["Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet ", "Designed using only high quality Kanekalon synthetic fibers, this hair cut simulates the appearance of real human hair with lightweight precision and soft texture. ", "Model shows 3T34, but the listing is for FS4/30 ", "A machine-stitched standard wig cap allows long-lasting comfort, durability, and security which works as hard as you do. Available in several solid and highlighted colors, the Mary synthetic wig is one easy style that's ready to go whenever you are. ", "Short Length, Average Cap (21.5\" - 22.5\" Circumference), (13.5\" Ear to Ear), (14.5\" Front to Back) "], "total_reviews": 21, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07B9ZD3J9/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "1 Black", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51v9Hn1YZXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BB1BLM3/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "1B", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/5182CohvejL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9ZJXCS/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "2", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51LP7rKYWzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9YRTXY/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "3T280", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51Erptuz-ZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9ZBLTQ/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "3T34", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51gOp16HgPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9YHWJF/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "3T44", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51kydsFcIDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9Z5R3Z/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "3T51", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51ENpVS23lL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9Z926N/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "4 Medium Dark Brown", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51xx+RYNMQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9YX9W7/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "FS1B/30", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51fFYjweylL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9ZV6VV/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "FS4/27", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51R6YoMdO2L.jpg"}, {"is_selected": true, "url": null, "value": "FS4/30", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/511YkccAuiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9YLTPC/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "White", "price_string": "$39.06", "price": 39.06, "image": "https://m.media-amazon.com/images/I/41B9gMDVRvL.jpg"}]}, "seller_id": "A257NGKA80G4PQ", "seller_name": "MaxWigs", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07BB1FJV8", "category": "beauty", "query": "Hair Loss Products", "page": 66, "small_description_old": "About this item Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet Designed using only high quality Kanekalon synthetic fibers, this hair cut simulates the appearance of real human hair with lightweight precision and soft texture. Model shows 3T34, but the listing is for FS4/30 A machine-stitched standard wig cap allows long-lasting comfort, durability, and security which works as hard as you do. Available in several solid and highlighted colors, the Mary synthetic wig is one easy style that's ready to go whenever you are. Short Length, Average Cap (21.5\" - 22.5\" Circumference), (13.5\" Ear to Ear), (14.5\" Front to Back)"}, {"name": "Expression Tees Pug Life Funny Thug Life Unisex Adult Hoodie", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 26 x 20 x 26 inches; 1.5 Pounds", "Item model number\n \u200f": "\u200e\n 9000-H-BK-S", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n June 29, 2016", "Manufacturer\n \u200f": "\u200e\n Expression Tees", "ASIN\n \u200f": "\u200e\n B01HQTWIRK", "Best Sellers Rank": "#958,821 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#9,594 in Women's Novelty Hoodies #13,747 in Men's Novelty Hoodies #359,148 in Men's Fashion", "#9,594 in Women's Novelty Hoodies": "", "#13,747 in Men's Novelty Hoodies": "", "#359,148 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Expression Tees Store", "brand_url": "https://www.amazon.com/stores/Expression+Tees/page/7F641448-1FA3-404E-9BB7-4A3AF722648F?ref_=ast_bln", "full_description": "Our professionally printed Adult Hoodies are preshrunk 50% cotton/50% polyester pill-resistant fleece. They feature a double-ply hood, with matching tipped and knotted drawcord. Ribbed cuffs and waistband and a front pouch pocket.Printed and designed in the U.S.A. using top quality garments for comfort and style. We use state of the art equipment to ensure vibrant colors and lasting durability on every piece of clothing apparel we sell.Recommended Care Instructions - Machine wash cold, inside out, with like colors. Only non-chlorine bleach. Tumble dry medium. Do not iron. Do not dry clean.", "pricing": "$36.99$48.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41EG6AoafEL.jpg", "https://m.media-amazon.com/images/I/51IdjA754gL.jpg", "https://m.media-amazon.com/images/I/41mBNpHMQkL.jpg", "https://m.media-amazon.com/images/I/51q6X1+wT0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Hoodies", "average_rating": 4.6, "small_description": ["50% Polyester, 50% Cotton ", "Pull On closure ", "Machine Wash ", "Thug life? More like Pug Life ", "snug as a pug on a rug ", "Printed and designed in the U.S.A. using top quality garments for comfort and style. We use state of the art equipment to ensure vibrant colors and lasting durability on every piece of clothing apparel we sell ", "Our Adult Hoodies are 8 oz. preshrunk 50% cotton/50% polyester pill-resistant fleece. They feature a double-ply hood, with matching tipped and knotted drawcord. Ribbed cuffs and waistband and a front pouch pocket. ", "Recommended Care Instructions - Machine wash cold, inside out, with like colors. Only non-chlorine bleach. Tumble dry medium. Do not iron. Do not dry clean. Makes a perfect gift for Christmas, Birthdays or any Holiday or special event "], "total_reviews": 19, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B01HQTWIRK"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B01HQTWJD8"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B01HQTWK5K"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B01HQTWKLY"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B01HQTWL6S"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09Q4H2GQX"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B09Q49WR64"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WJGS3SS-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTWM80/ref=twister_B01HQTWIGQ", "value": "Charcoal Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pHWclpVgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTWUHS/ref=twister_B01HQTWIGQ", "value": "Forest Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51zTI74wysL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTX08Q/ref=twister_B01HQTWIGQ", "value": "Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61Cm2muI2XL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTX4C8/ref=twister_B01HQTWIGQ", "value": "Kelly Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oaEJdo7cL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTX68U/ref=twister_B01HQTWIGQ", "value": "Maroon", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pnmrCl7gL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTX8QK/ref=twister_B01HQTWIGQ", "value": "Navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oGnpFEeFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTXESC/ref=twister_B01HQTWIGQ", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51yvSJ2v9NL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTXGKI/ref=twister_B01HQTWIGQ", "value": "Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51n-zm5zCHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTUO5I/ref=twister_B01HQTWIGQ", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qWqY9uwML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07QGKQW3F/ref=twister_B01HQTWIGQ", "value": "Cotton Candy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41oXy4WLldL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q4WJNZX/ref=twister_B01HQTWIGQ", "value": "Sand Camo", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51jGSDdEGpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GGD279X/ref=twister_B01HQTWIGQ", "value": "Vintage Camo", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61dEUFrJImS.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01HQTWL6S", "category": "fashion", "query": "Women's Fashion Hoodies & Sweatshirts", "page": 191, "small_description_old": "50% Cotton, 50% Polyester Pull On closure Machine Wash Thug life? More like Pug Life snug as a pug on a rug Printed and designed in the U.S.A. using top quality garments for comfort and style. We use state of the art equipment to ensure vibrant colors and lasting durability on every piece of clothing apparel we sell Our Adult Hoodies are 8 oz. preshrunk 50% cotton/50% polyester pill-resistant fleece. They feature a double-ply hood, with matching tipped and knotted drawcord. Ribbed cuffs and waistband and a front pouch pocket. Recommended Care Instructions - Machine wash cold, inside out, with like colors. Only non-chlorine bleach. Tumble dry medium. Do not iron. Do not dry clean. Makes a perfect gift for Christmas, Birthdays or any Holiday or special event"}, {"name": "TASYL USB Adapter for iPhone iPad Lightning Camera Adapter USB 3.0 OTG Cable Supports Camera, USB Flash Drive, Keyboard, Mouse, Camera, Wireless dongles, Bluetooth Dongles", "product_information": {"Package Dimensions": "5.98 x 2.01 x 0.55 inches", "Item Weight": "0.704 ounces", "ASIN": "B09J5HJ8DL", "Customer Reviews": {"ratings_count": 6, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#1,055 in USB-to-USB Adapters #36,923 in Computer Cables & Interconnects"], "Date First Available": "November 2, 2021", "Manufacturer": "TASYL"}, "brand": "Visit the TASYL Store", "brand_url": "https://www.amazon.com/stores/TASYLTrackableDevices/page/628198D9-D53B-402C-9D65-29DFD0470582?ref_=ast_bln", "full_description": "- Multi Device Adapter cable with charging port for both iPhone and iPAD. - Devices like USB Flash drive, SSD drive, DSLR camera, Wireless keyboard/Mouse Dongle, Printer USB cable, USB webcam, etc can be connected to the iPAD or iPhone whilst charging the iPhone and iPAD at the same time. - Perfect for power intensive applications like connecting USB Flash Drives, SSD drives, etc for data transfer of example 4K videos etc wherein your iPhone and iPAD keeps on charging whilst the USB devices in constant use. - Connect MIDI keyboard etc to your iPhone or iPad using this Tasyl OTG adapter whilst also making sure your phone/tablet is charging. Note: You would need respective MIDI App to work with your musical keyboard etc.", "pricing": "$13.80", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/21muq5x2vjL.jpg", "https://m.media-amazon.com/images/I/21Ge6pO0QfL.jpg", "https://m.media-amazon.com/images/I/41r+1az1X5L.jpg", "https://m.media-amazon.com/images/I/41md0DJ1PvL.jpg", "https://m.media-amazon.com/images/I/5161CpI2ldL.jpg", "https://m.media-amazon.com/images/I/31J-O-JXvLL.jpg", "https://m.media-amazon.com/images/I/519a97CkFIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Computer Cable Adapters \u203a USB-to-USB Adapters", "average_rating": 4, "small_description": ["[Date transfer + Charging] Phones and tablets battery have limited capacity to power externally connected USB devices so this product is perfect in such situations wherein you can charge your iPhone or iPAD while also having power hungry USB devices connected. ", "[Data Transfer Only mode] You can also use this adapter with all it's features even if charger not connected. Note that for higher current drawing devices like SSD drive and DSLR camera you would need charger to be connected to this adapter charge port. ", "[PowerBank compatible] Charging port can be connected with standard mains powered supplies or even using a powerbank while the adapter feature of this product is in use. Note: This charging port requires a standard lightning connector cable which you use with your iphone/iPAD for charging. ", "[Files App Required] - You would need the free \"Files\" app from App store installed. When connect any device like flash drive to your iphone/iPad then within you will see this flash drive appear as a USB drive within Files App. You can then for example go to Gallery and \"Select\" one or more files from your iPhone or iPAD and then select \"Save to Files\" option and save it to USB drive from there. Any queries then please do contact us. Tested on latest iPAD Pro, iPad 2017, iPhone X and iPhone 13. "], "total_reviews": 6, "total_answered_questions": "", "customization_options": "", "seller_id": "A101ZY0GFUP9U6", "seller_name": "TASYL", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09J5HJ8DL", "category": "electronics", "query": "Flashes", "page": 162, "small_description_old": "About this item\n \n[Date transfer + Charging] Phones and tablets battery have limited capacity to power externally connected USB devices so this product is perfect in such situations wherein you can charge your iPhone or iPAD while also having power hungry USB devices connected. [Data Transfer Only mode] You can also use this adapter with all it's features even if charger not connected. Note that for higher current drawing devices like SSD drive and DSLR camera you would need charger to be connected to this adapter charge port. [PowerBank compatible] Charging port can be connected with standard mains powered supplies or even using a powerbank while the adapter feature of this product is in use. Note: This charging port requires a standard lightning connector cable which you use with your iphone/iPAD for charging. [Files App Required] - You would need the free \"Files\" app from App store installed. When connect any device like flash drive to your iphone/iPad then within you will see this flash drive appear as a USB drive within Files App. You can then for example go to Gallery and \"Select\" one or more files from your iPhone or iPAD and then select \"Save to Files\" option and save it to USB drive from there. Any queries then please do contact us. Tested on latest iPAD Pro, iPad 2017, iPhone X and iPhone 13. USB to Lightning, USB to iphone adapter, iphone to usb adapter, iphone 13 usb adapter, iphone adapter usb, usb adapter for ipad pro, ipad lightning to usb adapter, ipad adapter usb, usb adapter for ipad, camera adapter for iphone ipad"}, {"name": "Daeng Gi Meo Ri Jin Gi Vitalizing Treatment 500 ML Anti Dandruff and Itchiness Made In Korea (Treatment)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.43 x 4.06 x 0.83 inches; 1.33 Pounds", "UPC\n \u200f": "\u200e\n 735358234370", "Manufacturer\n \u200f": "\u200e\n Doori", "ASIN\n \u200f": "\u200e\n B07T3PZ3S9", "Best Sellers Rank": "#217,623 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#5,334 in Hair Shampoo", "#5,334 in Hair Shampoo": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Daeng Gi Meo Ri Store", "brand_url": "https://www.amazon.com/stores/DAENGGIMEORI/page/B0BD119A-2978-4E36-9528-E3B90E536693?ref_=ast_bln", "full_description": "", "pricing": "$32.00", "list_price": "", "availability_quantity": 9, "availability_status": "Only 9 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31g6yDZKVbL.jpg", "https://m.media-amazon.com/images/I/4197+JKA7fL.jpg", "https://m.media-amazon.com/images/I/51175JB6wML.jpg", "https://m.media-amazon.com/images/I/51gcn47g3FL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Shampoos", "average_rating": 4.4, "small_description": ["Active ingredient of herbal Uturn Complex and keratin protein prevent static electicity by providing moisture to frizzy and split hair, and keep hair elastic and shiny. ", "Active ingredient of Changpo(Acorus calamus Linne) water, which is known to be good for hair care traditionally, helps maintain hair's moisture and makes hair smooth and shiny ", "Minimize damage by preventing static hair. ", "How to Use : Apply an appropriate amount towet hair, gently massage the entire hair, leave it on for 1-2 minutes and wash off with lukewarm water. "], "total_reviews": 10, "total_answered_questions": "", "customization_options": {"Scent": null}, "seller_id": "A3ALPTRY6RTQ2P", "seller_name": "OFFICIALKBEAUTY", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07T3PZ3S9", "category": "beauty", "query": "Scalp Treatments", "page": 74, "small_description_old": "About this item Active ingredient of herbal Uturn Complex and keratin protein prevent static electicity by providing moisture to frizzy and split hair, and keep hair elastic and shiny. Active ingredient of Changpo(Acorus calamus Linne) water, which is known to be good for hair care traditionally, helps maintain hair's moisture and makes hair smooth and shiny Minimize damage by preventing static hair. How to Use : Apply an appropriate amount towet hair, gently massage the entire hair, leave it on for 1-2 minutes and wash off with lukewarm water."}, {"name": "Easy Works by Easy Street womens Leeza Clog, Black, 7.5 Wide US", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 12 x 6.9 x 4.5 inches; 1.4 Pounds", "Item model number\n \u200f": "\u200e\n 20-0281", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 10, 2019", "Manufacturer\n \u200f": "\u200e\n Easy Works by Easy Street", "ASIN\n \u200f": "\u200e\n B07MNW91JH", "Best Sellers Rank": "#3,254,855 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#6,113 in Women's Mules & Clogs", "#6,113 in Women's Mules & Clogs": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Easy Works by Easy Street", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Easy+Works+by+Easy+Street", "full_description": "The Easy Works \"Leeza\" works for you with its twin gore silhouette that ensures it will stay perfectly on your foot throughout your busy day. A padded topline effectively reduces the pressure on your heel and ankle. A soft tricot lining envelopes your foot in cushioned comfort. The orthotic insole is built with a supportive arch cookie, and impact absorbing innovation. Developed on a non-marking, slip-resistant outsole that is extremely lightweight making it good to wear for long periods of time.", "pricing": "$69.97", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41MCUY6lRQL.jpg", "https://m.media-amazon.com/images/I/317obXhdkUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Mules & Clogs", "average_rating": 3, "small_description": ["100% Synthetic ", "Imported ", "Synthetic sole ", "Slip Resistant Outsole ", "Easy Motion by Easy Street Pro Comfort System ", "Removable Footbed ", "Strap type: mary-jane "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "ABP7VDOH06O4W", "seller_name": "LS Outfitters", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07MNW91JH", "category": "fashion", "query": "Women's Mules & Clogs", "page": 105, "small_description_old": "100% Synthetic Imported Synthetic sole Heel measures approximately 2\" Slip Resistant Outsole Easy Motion by Easy Street Pro Comfort System Removable Footbed Strap type: mary-jane"}, {"name": "WENKOMG1 Men's Crewneck Goth Tee Shirts Skull Print Tops Spring/Summer Long Sleeve Sports T-Shirt Baggy Y2K Soft Streetwear", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 19.69 x 19.69 x 19.69 inches; 7.05 Ounces", "Item model number\n \u200f": "\u200e\n WENKOMG1-shirt-N0.2250", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 23, 2022", "Manufacturer\n \u200f": "\u200e\n WENKOMG1", "ASIN\n \u200f": "\u200e\n B09T712QVF", "": ""}, "brand": "Brand: WENKOMG1", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=WENKOMG1", "full_description": "Season:All seasonsGender:MenOccasion:Daily,CasualPattern Type: SolidStyle:CasualSleeve length: FullCollar: CrewneckFit:Fits ture to sizeThickness:StandardHow to wash:Hand wash Cold,Hang or Line DryWhat you get:1 X Shirt", "pricing": "$4.09$8.09", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41vSoiTGj-L.jpg", "https://m.media-amazon.com/images/I/41yXTv07IJL.jpg", "https://m.media-amazon.com/images/I/41D812K5fEL.jpg", "https://m.media-amazon.com/images/I/41X22B+LiCL.jpg", "https://m.media-amazon.com/images/I/51-IT8l2WBL.jpg", "https://m.media-amazon.com/images/I/51U1wSByjxL.jpg", "https://m.media-amazon.com/images/I/512VGIaPv0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a T-Shirts", "average_rating": "", "small_description": ["\ud83d\udc55\ud83d\udc56Logistics size\ud83d\udc55\ud83d\udc56Standard lead time:8-16 days.Expedited delivery:3-7 days.Shipped within 24 hours. Not US size, So I suggest you buy a size or two bigger. Or check the size chart to buy. ", "Imported ", "Polyester lining ", "\ud83d\udc55\ud83d\udc56Best Gifts\ud83d\udc55\ud83d\udc56Great for Father's Day,Valentine's Day, Halloween, Christmas, 4th of july, Daily, Lounge Wear, Party, Hang Out With Friends, Dating, School, Holiday, Travel, Vacation, Office, Work, Also Great Gifts For Families/Friends. closure ", "\ud83d\udc55\ud83d\udc56100% satisfied\ud83d\udc55\ud83d\udc56 We sell men's clothing. If you have any questions, you can ask us and we will serve you within 24 hours. Search the WENKOMG1 store on Amazon to get more of our products. ", "tee shirts womens t shirts graphic tees graphic tees for women tee shirts womens slim fit tee shirts for men long sleeve tee shirts white shirt long sleeve tee shirts for women tees t-shirts for women graphic tees short sleeve tee shirts for women funny tee shirts men's t-shirts & tanks tshirt white tee shirts for women womens tee shirts mens funny tee shirts polo tee shirts for men tee shirts for girls mens long sleeve tee shirts tee shirts for women loose fit mens shirts ", "short sleeve tops for women basic crop top women clothing tops cold shoulder tops for women long sleeve crop tops tunic tops to wear with leggings leopard print tops for women tank top women's summer tops tank tops men long sleeve tops for girls spring tops for women 2021 red tops for women going out tops christmas tops for women white crop top long sleeve crop top tunic tops ladies tops womens crop top womens tunic tops crop tops for teen girls workout tank tops for women , blazers for women fashion casual jackets for women blazer dress blazer women casual blazer long blazer blazer for women red blazer for women mens blazer blue blazer sequin blazer blazer women's blazers & suit jackets blazer for men black blazer for women blazer for kids sequin jackets for women mens sport coats and blazers casual blazer for women blazer dress for women blazer jacket for men womens blazers and jackets professional womens blazer womens jackets and blazers men blazer, Mens Draped Cardigans Long Sleeve with Hooded Pockets Long Shawl Ruffle Men's S-5X Short/Long Sleeve Fashion Athletic Hoodies Sport Sweatshirt Hip Hop Pullover Mens Slim Fit Long Sleeve Lightweight Cotton Blend Pullover Hoodie With Kanga Pocket Men's Casual Hooded T-Shirts - Fashion Short Sleeve Solid Color Pullover Top Summer Blouse Men's Pullover Hoodies Plaid Jacquard Long Sleeve Drawstring Hipster Casual Hooded Sweatshirts with Kanga Pockets Men's Casual Long Sleeve Round, Quick Dry Short Sleeves Polo Tee T-Shirt Tops Men\u2019s Big and Tall Advantage Performance Stretch Short Sleeve Solid Polo Shirt Mens Summer Slim Fit Contrast Color Stitching Stripe Short Sleeve Polo Casual T-Shirts Men's Big & Tall Short Sleeve Jersey Knit Polo Shirt Men's Short Sleeve Sparkle Sequins Polo 70s Disco Nightclub Party T-Shirts Men's Big and Tall Classic Fit Short Sleeve Solid Performance Deck Polo Shirt Men's Polo Shirt Casual Long Short Sleeve Classic Fashion"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09T712QVF"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09T734C68"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09T756KQ5"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09T73PLTG"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09T768BD6"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09T73B9B7"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B09T75KJBF"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B09T72XHV8"}], "Color": [{"is_selected": true, "url": null, "value": "A-bk1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41vSoiTGj-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T73TNL2/ref=twister_B09T73JSTF", "value": "A-bk2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fJXC+qKBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T72JNPX/ref=twister_B09T73JSTF", "value": "A-bk3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51nJCBdwLML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T734S3Q/ref=twister_B09T73JSTF", "value": "A-bk4", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41pemK7Gp+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T741D9S/ref=twister_B09T73JSTF", "value": "A-bk5", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4101PF3SxFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T738FNJ/ref=twister_B09T73JSTF", "value": "A-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gHUYkEjML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T75T2MR/ref=twister_B09T73JSTF", "value": "B-bk1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-9pWocmCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T74N92J/ref=twister_B09T73JSTF", "value": "B-bk2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41LgCuiUg-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T74HSWY/ref=twister_B09T73JSTF", "value": "B-bk3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41r1YD1vngL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T75C8XL/ref=twister_B09T73JSTF", "value": "B-bk4", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Gy1dQA3rL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T736VJ8/ref=twister_B09T73JSTF", "value": "B-bk5", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Rio4pyfnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T73N7F4/ref=twister_B09T73JSTF", "value": "B-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/413fD99xLnL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09T756KQ5", "category": "fashion", "query": "Men's Tuxedo Shirts", "page": 205, "small_description_old": "\ud83d\udc55\ud83d\udc56Logistics size\ud83d\udc55\ud83d\udc56Standard lead time:8-16 days.Expedited delivery:3-7 days.Shipped within 24 hours. Not US size, So I suggest you buy a size or two bigger. Or check the size chart to buy. Imported Polyester lining \ud83d\udc55\ud83d\udc56Best Gifts\ud83d\udc55\ud83d\udc56Great for Father's Day,Valentine's Day, Halloween, Christmas, 4th of july, Daily, Lounge Wear, Party, Hang Out With Friends, Dating, School, Holiday, Travel, Vacation, Office, Work, Also Great Gifts For Families/Friends. closure \ud83d\udc55\ud83d\udc56100% satisfied\ud83d\udc55\ud83d\udc56 We sell men's clothing. If you have any questions, you can ask us and we will serve you within 24 hours. Search the WENKOMG1 store on Amazon to get more of our products. tee shirts womens t shirts graphic tees graphic tees for women tee shirts womens slim fit tee shirts for men long sleeve tee shirts white shirt long sleeve tee shirts for women tees t-shirts for women graphic tees short sleeve tee shirts for women funny tee shirts men's t-shirts & tanks tshirt white tee shirts for women womens tee shirts mens funny tee shirts polo tee shirts for men tee shirts for girls mens long sleeve tee shirts tee shirts for women loose fit mens shirts short sleeve tops for women basic crop top women clothing tops cold shoulder tops for women long sleeve crop tops tunic tops to wear with leggings leopard print tops for women tank top women's summer tops tank tops men long sleeve tops for girls spring tops for women 2021 red tops for women going out tops christmas tops for women white crop top long sleeve crop top tunic tops ladies tops womens crop top womens tunic tops crop tops for teen girls workout tank tops for women \n blazers for women fashion casual jackets for women blazer dress blazer women casual blazer long blazer blazer for women red blazer for women mens blazer blue blazer sequin blazer blazer women's blazers & suit jackets blazer for men black blazer for women blazer for kids sequin jackets for women mens sport coats and blazers casual blazer for women blazer dress for women blazer jacket for men womens blazers and jackets professional womens blazer womens jackets and blazers men blazerMens Draped Cardigans Long Sleeve with Hooded Pockets Long Shawl Ruffle Men's S-5X Short/Long Sleeve Fashion Athletic Hoodies Sport Sweatshirt Hip Hop Pullover Mens Slim Fit Long Sleeve Lightweight Cotton Blend Pullover Hoodie With Kanga Pocket Men's Casual Hooded T-Shirts - Fashion Short Sleeve Solid Color Pullover Top Summer Blouse Men's Pullover Hoodies Plaid Jacquard Long Sleeve Drawstring Hipster Casual Hooded Sweatshirts with Kanga Pockets Men's Casual Long Sleeve RoundQuick Dry Short Sleeves Polo Tee T-Shirt Tops Men\u2019s Big and Tall Advantage Performance Stretch Short Sleeve Solid Polo Shirt Mens Summer Slim Fit Contrast Color Stitching Stripe Short Sleeve Polo Casual T-Shirts Men's Big & Tall Short Sleeve Jersey Knit Polo Shirt Men's Short Sleeve Sparkle Sequins Polo 70s Disco Nightclub Party T-Shirts Men's Big and Tall Classic Fit Short Sleeve Solid Performance Deck Polo Shirt Men's Polo Shirt Casual Long Short Sleeve Classic FashionShow more"}, {"name": "WYTong Women Dress Summer V Neck Swing Dress Fashion Solid Color Tie the knot Short sleeves Leisure Dress", "product_information": {"Item Weight\n \u200f": "\u200e\n 7.05 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n May 25, 2021", "Manufacturer\n \u200f": "\u200e\n WYTong Women Dress", "ASIN\n \u200f": "\u200e\n B095SYFBBC", "": ""}, "brand": "Brand: WYTong Hot Sale!", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=WYTong+Hot+Sale%21", "full_description": "=====\u2600\u2600\u2600 Features \u2600\u2600\u2600===== Fashion design,100% Brand New,high quality! Season:Summer Gender: Women Occasion:Casual Material:Polyester Pattern Type:Solid Thickness:Standard Package include:1 PC Blouse Please compare the detail sizes with yours before you buy!!! Colors may be slightly different depending on computer and monitor settings Please allow 1-3cm differs due to manual measurement, thanks (All measurement in cm and please note 1cm=0.39inch) =====\u2600\ufe0f\u2600\ufe0f\u2600\ufe0f Size chart \u2600\ufe0f\u2600\ufe0f\u2600\ufe0f======= \u2764Size: S US: 4 UK: 8 EU: 34 Bust: 94cm/37.01'' Sleeve: 19cm/7.48'' Length: 87cm/34.25'' == \u2764Size: M US: 6 UK: 10 EU: 36 Bust: 98cm/38.58'' Sleeve: 20cm/7.87'' Length: 88cm/34.65'' == \u2764Size: L US: 8 UK: 12 EU: 38 Bust: 102cm/40.16'' Sleeve: 21cm/8.27'' Length: 89cm/35.04'' == \u2764Size: XL US: 10 UK: 14 EU: 40 Bust: 106cm/41.73'' Sleeve: 22cm/8.66'' Length: 90cm/35.43'' == \u2764Size: XXL US: 12 UK: 16 EU: 42 Bust: 110cm/43.31'' Sleeve: 23cm/9.06'' Length: 91cm/35.83''", "pricing": "$9.99$11.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41UJTy2ViAL.jpg", "https://m.media-amazon.com/images/I/41BKYAMd3QL.jpg", "https://m.media-amazon.com/images/I/31Fi5ZKzOMS.jpg", "https://m.media-amazon.com/images/I/31Y0mep4NQS.jpg", "https://m.media-amazon.com/images/I/41qEicB8HdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Gardening & Lawn Care \u203a Pots, Planters & Container Accessories \u203a Plant Container Accessories \u203a Hooks & Hangers", "average_rating": "", "small_description": ["100% Polyester ", "Imported ", "Tie closure ", "[Material]Soft material, light and comfortable, very suitable for the upcoming summer! Super soft, comfortable, breathable, not see-through, quality assurance ", "[Features]The cute summer mini dress is a casual style and does not fit snugly.Fashionable and unique ladies mini dresses. ", "[Style]The cute summer mini dress is a casual style and doesn't fit snugly. This dress is accurate in size, folds and folds are layered design, it is very easy to transition from business to casual occasions, and when you need to quickly accurate. ", "[Match]This floral print dress can be worn with sandals, beach slippers or high-heeled sunglasses. , [Occasions]High-quality women's dress, suitable for summer vacation, leisure beach, party, work, night out, daily wear, holiday, wedding party, home, lounge. Perfect for summer, spring, autumn and winter! This summer mini dress is a refreshing change-home or home style., Fit type: Regular"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B095SYFBBC/ref=twister_B095SVD6SC", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Pxj9TbfuS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095ST7HCR/ref=twister_B095SVD6SC", "value": "Coffee", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gy0OoQRzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095STH12Q/ref=twister_B095SVD6SC", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MxnK1tRAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095SWK2DB/ref=twister_B095SVD6SC", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41YTWEhEndL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095STY3LH/ref=twister_B095SVD6SC", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41LsXRFXT7L.jpg"}, {"is_selected": true, "url": null, "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UJTy2ViAL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B095STZJ64"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B095SX6366"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B095SV1XK8"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B095SV1SD5"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B095SY4V3X"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B095SX6366", "category": "beauty", "query": "Denture Care", "page": 117, "small_description_old": "100% Polyester Imported Tie closure [Material]Soft material, light and comfortable, very suitable for the upcoming summer! Super soft, comfortable, breathable, not see-through, quality assurance [Features]The cute summer mini dress is a casual style and does not fit snugly.Fashionable and unique ladies mini dresses. [Style]The cute summer mini dress is a casual style and doesn't fit snugly. This dress is accurate in size, folds and folds are layered design, it is very easy to transition from business to casual occasions, and when you need to quickly accurate. [Match]This floral print dress can be worn with sandals, beach slippers or high-heeled sunglasses. \n [Occasions]High-quality women's dress, suitable for summer vacation, leisure beach, party, work, night out, daily wear, holiday, wedding party, home, lounge. Perfect for summer, spring, autumn and winter! This summer mini dress is a refreshing change-home or home style.Fit type: RegularShow more"}, {"name": "Kianna Heavy Duty Bed Frame, Overall Product Weight: 37 lb, Wedge-Lock Connections can Support Any Practical Weight", "product_information": {"Item Weight": "\u200e37 pounds", "ASIN": "B08X2FSR21", "Date First Available": "February 22, 2021"}, "brand": "Brand: MilanHome", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=MilanHome", "full_description": "AT A GLANCE 1. Heavy Duty: Heavy Duty / Squeak Resistant Whether you\u2019re refreshing the guest room or starting your own bedroom ensemble from scratch, this versatile bed frame is a fine foundation! Crafted from metal, this piece features six adjustable leg glides that allow you to elevate your mattress to the height you prefer. Universal brackets connect to a headboard and footboard, giving you the option to curate a look that you love, while a matte black finish helps this frame blend with existing decor. A box spring is required. OVERALL DIMENSION 1. Overall: 7.5'''' H FOOT-BOARD BRACKET INCLUDED 1. Can Attach to Footboard: Yes PRODUCT DETAILS 1. Box Spring Required: Yes 2. Number of Legs: 6 FEATURES 1. Wedge-lock connections can support any practical weight 2. Bed raisers can be used with this frame 3. Use as a standalone bed frame or in place of bed rails TWIN SIZE 1. Overall Width - Side to Side: 39'''' 2. Overall Product Weight: 33 lb. FULL SIZE 1. Overall Width - Side to Side: 54'''' 2. Overall Product Weight: 37 lb. QUEEN SIZE 1. Overall Width - Side to Side: 60'''' 2. Overall Product Weight: 34.5 lb. KING SIZE 1. Overall Product Weight: 41 lb. CALIFORNIA KING SIZE 1. Overall Width - Side to Side: 72'''' 2. Overall Product Weight: 40 lb. OTHER DIMENSIONS 1. Overall: 7.5'''' H 2. Clearance from Floor to Underside of Bed: 7'''' 3. Bottom of Inside of Frame to Top of Side Rail: 1.5'''' 4. Leg Height: 5'''' FEATURES 1. Product Type: Bed Frame 2. Material: Metal 3. Material Details: Steel 4. Color: Black Matte 5. Number of Legs: 6 (Central Support Leg) 6. Box Spring Required: Yes 7. Headb", "pricing": "$291.90", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/5126pBEQNDL.jpg", "https://m.media-amazon.com/images/I/41GP1-Ixs5L.jpg", "https://m.media-amazon.com/images/I/41+r0BWeg1L.jpg", "https://m.media-amazon.com/images/I/41HPgtsJg-L.jpg", "https://m.media-amazon.com/images/I/319sdVvYXFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Bed Frames", "average_rating": "", "small_description": ["Overall Product Weight: 37 lb., Wedge-lock connections can support any practical weight, Commercial Warranty: No, Box Spring Required: Yes, Level of Assembly: Partial Assembly, Overall Product Weight: 33 lb., Adult Assembly Required: Yes, Number of Legs: 6 (Central Support Leg), Installation Required: No, Leg Height: 5''''"], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A7V0UAVQWFJUV", "seller_name": "Nianbo", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08X2FSR21", "category": "garden", "query": "Bedframes", "page": 323, "small_description_old": "About this item Overall Product Weight: 37 lb., Wedge-lock connections can support any practical weight Commercial Warranty: No, Box Spring Required: Yes Level of Assembly: Partial Assembly, Overall Product Weight: 33 lb. Adult Assembly Required: Yes, Number of Legs: 6 (Central Support Leg) Installation Required: No, Leg Height: 5'''' \n \u203a See more product details"}, {"name": "Klik (party mix)", "product_information": {"UPC\n \u200f": "\u200e\n 084685000111", "ASIN\n \u200f": "\u200e\n B00GMQ4WRI", "Best Sellers Rank": "#263,279 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#720 in Chocolate Cookies", "#720 in Chocolate Cookies": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Klik", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Klik", "full_description": "Kosher - Dairy", "pricing": "$7.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51vepPxs5EL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cookies \u203a Chocolate", "average_rating": 4.8, "small_description": ["Kosher - Dairy "], "total_reviews": 18, "total_answered_questions": "", "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WSW/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "Cornflakes", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WVO/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "Kariot - Pillows", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WUA/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "Malt Balls", "price_string": "$7.95", "price": 7.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WWI/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "Vanilla 'n Fudge", "price_string": "$8.25", "price": 8.25, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WT6/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "cookie", "price_string": "$7.39", "price": 7.39, "image": null}, {"is_selected": true, "url": null, "value": "party mix", "price_string": "$7.99", "price": 7.99, "image": null}]}, "seller_id": "A3URQZVA0UB2E9", "seller_name": "scrubbypal", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00GMQ4WRI", "category": "grocery", "query": "Party Mix", "page": 42, "small_description_old": "About this item Kosher - Dairy"}, {"name": "OWYN - 100% Vegan Plant-Based Protein Shakes | Cold Brew Coffee, 12 Fl Oz | Dairy-Free, Gluten-Free, Soy-Free, Tree Nut-Free, Egg-Free, Allergy-Free, Vegetarian", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 1 x 1 x 1 inches; 1 Pounds", "Item model number\n \u200f": "\u200e\n OWYN4971", "Date First Available\n \u200f": "\u200e\n June 12, 2018", "Manufacturer\n \u200f": "\u200e\n Barg Engine", "ASIN\n \u200f": "\u200e\n B07FYPSNH8", "Country of Origin\n \u200f": "\u200e\n USA", "Domestic Shipping": "Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.", "International Shipping": "This item is not eligible for international shipping.Learn More", "Best Sellers Rank": "#148,788 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#397 in Protein Drinks", "#397 in Protein Drinks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the OWYN Only What You Need Store", "brand_url": "https://www.amazon.com/stores/OWYNOnlyWhatYouNeed/page/024760E6-810D-47C4-A149-CF90313AF29E?ref_=ast_bln", "full_description": "", "pricing": "$11.07", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41EFvqNqmwL.jpg", "https://m.media-amazon.com/images/I/511LPRBwXLL.jpg", "https://m.media-amazon.com/images/I/51hPpWPRZRL.jpg", "https://m.media-amazon.com/images/I/519-C-IqR3L.jpg", "https://m.media-amazon.com/images/I/51g5AU61oWL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Meal Replacement & Protein Drinks \u203a Protein Drinks", "average_rating": 4.2, "small_description": ["100% CERTIFIED VEGAN, GLUTEN-FREE: 100% plant-based protein shakes that provide superior health benefits & never compromises on taste. Delicious nutrition made for active & healthy people who care about what they put in their body. ", "CONTAINS 20 GRAMS OF PLANT PROTEIN: Delivers all 9 essential amino acids and naturally occurring BCAAs (Branched Chain Amino Acids) to enhance muscle recovery and promote optimal daily health. ", "CONTAINS CAFFEINE: Each shake contains the energy equivalent of 1 cup of coffee (148mg caffeine). Start your morning off with a breakfast shake or enjoy after a workout. ", "GLUTEN, DAIRY & SOY FREE: Peanut & tree nut free, egg-free, non-GMO project verified, kosher, free of all artificial colors, flavors & preservatives, lactose free, low sugar content (4G Organic Cane Sugar), no sugar alcohols or stevia. ", "18 MONTH SHELF LIFE: Shelf stable without the need for refrigeration, except after opening. Contains twelve Cold Brew, 12 fl oz (355 ml) bottles. "], "total_reviews": 295, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07FYPSNH8", "category": "grocery", "query": "Beverages", "page": 343, "small_description_old": "About this item 100% CERTIFIED VEGAN, GLUTEN-FREE: 100% plant-based protein shakes that provide superior health benefits & never compromises on taste. Delicious nutrition made for active & healthy people who care about what they put in their body. CONTAINS 20 GRAMS OF PLANT PROTEIN: Delivers all 9 essential amino acids and naturally occurring BCAAs (Branched Chain Amino Acids) to enhance muscle recovery and promote optimal daily health. CONTAINS CAFFEINE: Each shake contains the energy equivalent of 1 cup of coffee (148mg caffeine). Start your morning off with a breakfast shake or enjoy after a workout. GLUTEN, DAIRY & SOY FREE: Peanut & tree nut free, egg-free, non-GMO project verified, kosher, free of all artificial colors, flavors & preservatives, lactose free, low sugar content (4G Organic Cane Sugar), no sugar alcohols or stevia. 18 MONTH SHELF LIFE: Shelf stable without the need for refrigeration, except after opening. Contains twelve Cold Brew, 12 fl oz (355 ml) bottles."}, {"name": "Hair Tinsel Kit Strands With Tool 47 Inch 12 Colors 2100 Strands Fairy Hair Tinsel Kit Hair Extensions Sparkling Glitter Shiny Silk Tinsel (12 colors)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.24 x 8.74 x 0.67 inches; 6.38 Ounces", "UPC\n \u200f": "\u200e\n 783979960994", "Manufacturer\n \u200f": "\u200e\n hairtinsel", "ASIN\n \u200f": "\u200e\n B08ZKDQPZ3", "Best Sellers Rank": "#6,122 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#43 in Hair Extensions", "#43 in Hair Extensions": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: hairtinsel", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=hairtinsel", "full_description": "Hair Tinsel Kit Strands With Tool 47 Inch 12 Colors 2100 Strands Fairy Tinsel Hair Extensions Sparkling Glitter Shiny Bling Silk Tinsel 1)12 colors: Red, Purple, Pink, Rose, Sky Blue, Sapphire Blue, Green, Rainbow, Mixed Colors, Silver, Yellow and Champagne Gold . Can easy match your style, also can meet the girls and women fashion pursuit to highlight your elegant and confidence 2)Size & strands: 12 color hair tinsel length is 47 inch, per color has 175 strands, total about is 2100 strands. You can cut the length of hair tinsel to fit your hair length . 3)Easy to use: Tie a knot and fix tinsel hair on your hair (you can find free tool in the package). You can use or not use the tool when install, it depends on your needs 4)Material: Fairy hair are made of polyester fiber. Comfortable and fashion, sparkling and shiny strands hair tinsel is good for birthday party, daily hair beauty, Halloween, daily hairdressing, making you outstanding in the crowd. 5) Package: 12 colors in one set, each color is folded and packaged separately, a tool in one package, used for easy installation How to use 1. Fold the hair tinsel strands 2. Tie a slip knot, Knotted into a small circle 3. Fine the hair select 3 or 4 hairs, slide slip knot onto the hair 4. Tie the hairs and the tinsel together in a knot, make sure the knot is close to the hair shaft 5.Tie the hairs and the tinsel together in a knot 6. Tie a knot again", "pricing": "$13.96", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/61gIelmK8yL.jpg", "https://m.media-amazon.com/images/I/51pNS6MCNhL.jpg", "https://m.media-amazon.com/images/I/51GtYFkNUKL.jpg", "https://m.media-amazon.com/images/I/61DfltYfgbL.jpg", "https://m.media-amazon.com/images/I/51+2lzMUsNL.jpg", "https://m.media-amazon.com/images/I/51X4-va+LPL.jpg", "https://m.media-amazon.com/images/I/61c-76v8jJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Hair Extensions", "average_rating": 4.3, "small_description": ["\u301012 COLOR/SET\u3011Hair Tinsel Include Colors: Red, Purple, Pink, Rose, Sky Blue, Sapphire Blue, Green, Rainbow, Mixed Colors, Silver, Yellow and Champagne Gold . Can Easy Match Your Style, Also Can Meet The Girls And Women Fashion Pursuit To Highlight Your Elegant And Confidence ", "\u3010SIZE & STRANDS\u3011Fairy Hair Tinsel Extensions : 12 Color Hair Tinsel Length Is 47 Inch, Per Color Has 175 Strands, Total About Is 2100 Strands. You Can Cut The Length Of Hair Tinsel To Fit Your Hair Length . ", "\u3010EASY TO USE\u3011 Tie a Knot And Fix Tinsel Hair On Your Hair (You Can Find Free Tool In The Package). You Can Use Or Not Use The Tool When Install, It Depends On Your Needs ", "\u3010MATERIAL\u3011Fairy Hair Are Made Of Polyester Fiber. Comfortable And Fashion, Sparkling And Shiny Strands Hair Tinsel Is Good For Birthday Party, Daily Hair Beauty, Halloween, Daily Hairdressing, Making You Outstanding In The Crowd. ", "\u3010PACKAGE\u301112 Colors In One Set, Each Color Is Folded And Packaged Separately, a Tool In One Package, Used For Easy Installation "], "total_reviews": 569, "total_answered_questions": 14, "customization_options": {"Color": null}, "seller_id": "A3CNU2UO4O2AV1", "seller_name": "heli hair", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08ZKDQPZ3", "category": "beauty", "query": "Body Care", "page": 193, "small_description_old": "About this item \u301012 COLOR/SET\u3011Hair Tinsel Include Colors: Red, Purple, Pink, Rose, Sky Blue, Sapphire Blue, Green, Rainbow, Mixed Colors, Silver, Yellow and Champagne Gold . Can Easy Match Your Style, Also Can Meet The Girls And Women Fashion Pursuit To Highlight Your Elegant And Confidence \u3010SIZE & STRANDS\u3011Fairy Hair Tinsel Extensions : 12 Color Hair Tinsel Length Is 47 Inch, Per Color Has 175 Strands, Total About Is 2100 Strands. You Can Cut The Length Of Hair Tinsel To Fit Your Hair Length . \u3010EASY TO USE\u3011 Tie a Knot And Fix Tinsel Hair On Your Hair (You Can Find Free Tool In The Package). You Can Use Or Not Use The Tool When Install, It Depends On Your Needs \u3010MATERIAL\u3011Fairy Hair Are Made Of Polyester Fiber. Comfortable And Fashion, Sparkling And Shiny Strands Hair Tinsel Is Good For Birthday Party, Daily Hair Beauty, Halloween, Daily Hairdressing, Making You Outstanding In The Crowd. \u3010PACKAGE\u301112 Colors In One Set, Each Color Is Folded And Packaged Separately, a Tool In One Package, Used For Easy Installation"}, {"name": "BAYY 10 pcs Tattoo Piercing Needles Medical Tattoo Needle for Navel Nose Lip Ear Piercing (20G)", "product_information": {"Manufacturer\n \u200f": "\u200e\n BAYY", "ASIN\n \u200f": "\u200e\n B07SS8QC3G", "Best Sellers Rank": "#135,115 in Health & Household (See Top 100 in Health & Household)#44 in Body Piercing Needles", "#44 in Body Piercing Needles": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: BAYY", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=BAYY", "full_description": "This items is One-time", "pricing": "$2.67", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31WLMPyMlSL.jpg", "https://m.media-amazon.com/images/I/21CBFH3IMDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Piercing & Tattoo Supplies \u203a Piercing Supplies \u203a Piercing Needles", "average_rating": 4.4, "small_description": [""], "total_reviews": 96, "total_answered_questions": 5, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07SSBH864/ref=twister_B081NGH7H9?_encoding=UTF8&psc=1", "value": "12G", "price_string": "$2.67", "price": 2.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SRBWJRN/ref=twister_B081NGH7H9?_encoding=UTF8&psc=1", "value": "14G", "price_string": "$2.67", "price": 2.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SS8Y178/ref=twister_B081NGH7H9?_encoding=UTF8&psc=1", "value": "16G", "price_string": "$2.67", "price": 2.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SSBJB3P/ref=twister_B081NGH7H9?_encoding=UTF8&psc=1", "value": "18G", "price_string": "$2.67", "price": 2.67, "image": null}, {"is_selected": true, "url": null, "value": "20G", "price_string": "$2.67", "price": 2.67, "image": null}]}, "seller_id": "A1M7TC2W7EHWFA", "seller_name": "BAYY", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07SS8QC3G", "category": "beauty", "query": "Piercing & Tattoo Supplies", "page": 9, "small_description_old": ""}, {"name": "Kira Home Ainsley 21.5\" 3-Light Farmhouse Vanity/Bathroom Light + Clear Cylinder Glass Shades, Oil-Rubbed Bronze Finish", "product_information": {"Brand": "\u200eKira Home", "Manufacturer": "\u200eKira Home", "Part Number": "\u200eRV-WB4333-3-OB", "Item Weight": "\u200e4 pounds", "Product Dimensions": "\u200e21.5 x 6.25 x 8.25 inches", "Item model number": "\u200eRV-WB4333-3-OB", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Height": "\u200e8.25 inches", "Assembled Length": "\u200e21.5 inches", "Assembled Width": "\u200e6.25 inches", "Style": "\u200eFarmhouse", "Collection": "\u200eAinsley", "Color": "\u200eOil-rubbed Bronze", "Shape": "\u200eCylinder", "Material": "\u200eGlass, Metal", "Finish Types": "\u200ePainted", "Number of Lights": "\u200e3", "Voltage": "\u200e120 Volts", "Special Features": "\u200eDimmer Compatible", "Shade Color": "\u200eClear", "Shade Material": "\u200eGlass", "Light Direction": "\u200eUp/Down Light", "Power Source": "\u200eHardwired", "Switch Installation Type": "\u200eWall Mount", "Batteries Required?": "\u200eNo", "Certification": "\u200eETL Listed", "Type of Bulb": "\u200eIncandescent, LED, CFL", "Wattage": "\u200e60 watts", "ASIN": "B09J9Y9H95", "Best Sellers Rank": ["#672,608 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #3,187 in Vanity Lighting Fixtures"], "Date First Available": "October 12, 2021"}, "brand": "Visit the Kira Home Store", "brand_url": "https://www.amazon.com/stores/KiraHome/page/DE590770-7AEA-41E2-B4EA-F220121AC639?ref_=ast_bln", "full_description": "", "pricing": "$77.99", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31S93pAKR7L.jpg", "https://m.media-amazon.com/images/I/41ZrRe+dxAL.jpg", "https://m.media-amazon.com/images/I/41OzKt9FMZL.jpg", "https://m.media-amazon.com/images/I/41Q4B2CB2FL.jpg", "https://m.media-amazon.com/images/I/417xWd8qRiL.jpg", "https://m.media-amazon.com/images/I/51h5htWxm-L.jpg", "https://m.media-amazon.com/images/I/81WkJmmJ-FL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Vanity Lights", "average_rating": "", "small_description": ["MODERN FARMHOUSE DESIGN: Metal wall vanity light showcases an oil-rubbed bronze finish with complementing clear cylinder shades, fitting styles such as rustic and industrial. The linear bar adds that extra wow factor and allows for up/down installation ", "BRIGHTEN YOUR SPACE: Easily install this versatile, bathroom lighting fixture over mirrors and vanities, in a powder room or half bath or above a kitchen sink or bar area. Dress up hallways or mount in hospitality settings as well. Dimmer compatible ", "ETL LISTED FOR YOUR SAFETY: ETL listed for damp locations. Uses (3) LED, CFL or up to 60W traditional incandescent medium base bulb. Use with vintage style Edison bulbs to encompass that extra farmhouse vibe. Bulb sold separately ", "DIMENSIONS: Bathroom Light: 8.25\" (H) x 21.5\" (L) x 6.25\" Projection from wall, Backplate: 5\" (H) x 7\" (L) x 1\" (W), Glass Shades: 3.75\" (D) x 6.75\" (H) ", "UNMATCHED QUALITY AND CUSTOMER CARE: Designed and supported in California, we are a US based company with real local support. If you ever encounter any issues, feel free to reach out to us, as we provide a 1-year warranty. Shop with confidence! "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eRV-WB4333-3-OB", "customization_options": "", "seller_id": "A31AMCYJHIK9ZG", "seller_name": "Kira Home", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09J9Y9H95", "category": "garden", "query": "Vanities", "page": 173, "small_description_old": "About this item MODERN FARMHOUSE DESIGN: Metal wall vanity light showcases an oil-rubbed bronze finish with complementing clear cylinder shades, fitting styles such as rustic and industrial. The linear bar adds that extra wow factor and allows for up/down installation BRIGHTEN YOUR SPACE: Easily install this versatile, bathroom lighting fixture over mirrors and vanities, in a powder room or half bath or above a kitchen sink or bar area. Dress up hallways or mount in hospitality settings as well. Dimmer compatible ETL LISTED FOR YOUR SAFETY: ETL listed for damp locations. Uses (3) LED, CFL or up to 60W traditional incandescent medium base bulb. Use with vintage style Edison bulbs to encompass that extra farmhouse vibe. Bulb sold separately DIMENSIONS: Bathroom Light: 8.25\" (H) x 21.5\" (L) x 6.25\" Projection from wall, Backplate: 5\" (H) x 7\" (L) x 1\" (W), Glass Shades: 3.75\" (D) x 6.75\" (H) UNMATCHED QUALITY AND CUSTOMER CARE: Designed and supported in California, we are a US based company with real local support. If you ever encounter any issues, feel free to reach out to us, as we provide a 1-year warranty. Shop with confidence! \n \u203a See more product details"}, {"name": "Skechers Women's, Relaxed Fit: Arch Fit - Commute Clog Taupe 11 M", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 10 x 15 x 6 inches; 2 Pounds", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n February 3, 2022", "Manufacturer\n \u200f": "\u200e\n Skechers", "ASIN\n \u200f": "\u200e\n B09S6VN97V", "": ""}, "brand": "Visit the Skechers Store", "brand_url": "https://www.amazon.com/stores/Skechers/page/4B1ECBE0-2659-48D2-A5C3-A8252218356A?ref_=ast_bln", "full_description": "Women's Skechers, Relaxed Fit: Arch Fit - Commute Clog. Take on your day with cushioning and comfort with the Skechers Relaxed Fit: Arch Fit - Commute shoe This sporty, open-back slip-on features a soft quilted synthetic and mesh upper with an Arch Fit memory foam insole. Quilted synthetic mesh fabric upper Slip-on styling for easy on and off Arch Fit Contoured Footbed Patented Skechers Arch Fit insole system with podiatrist-certified arch support Relaxed Fit design for a roomier fit at the toes Shock-absorbing midsole Flexible rubber traction outsole", "pricing": "$74.95", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41uw+fICClL.jpg", "https://m.media-amazon.com/images/I/31GeQkJ7D3L.jpg", "https://m.media-amazon.com/images/I/31dUysD7TqL.jpg", "https://m.media-amazon.com/images/I/31H1bfMijmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Mules & Clogs", "average_rating": "", "small_description": ["Rubber sole ", "Quilted synthetic mesh fabric upper ", "Slip-on styling for easy on and off ", "Arch Fit Contoured Footbed ", "Patented Skechers Arch Fit insole system with podiatrist-certified arch support ", "Relaxed Fit design for a roomier fit at the toes "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1BNXE6U3W2NOH", "seller_name": "Peltz Shoes", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S6VN97V", "category": "fashion", "query": "Women's Mules & Clogs", "page": 112, "small_description_old": "Rubber sole Quilted synthetic mesh fabric upper Slip-on styling for easy on and off Arch Fit Contoured Footbed Patented Skechers Arch Fit insole system with podiatrist-certified arch support Relaxed Fit design for a roomier fit at the toes"}, {"name": "Skechers Originals Men's Retros OG 90 Fashion Sneaker", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.6 x 9.7 x 5.4 inches; 3 Pounds", "Item model number\n \u200f": "\u200e\n 52350", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n March 29, 2016", "ASIN\n \u200f": "\u200e\n B01DJGWDBA", "Best Sellers Rank": "#4,985,372 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#28,277 in Men's Fashion Sneakers #59,689 in Men's Shops", "#28,277 in Men's Fashion Sneakers": "", "#59,689 in Men's Shops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Skechers Store", "brand_url": "https://www.amazon.com/stores/Skechers/page/4B1ECBE0-2659-48D2-A5C3-A8252218356A?ref_=ast_bln", "full_description": "Suede jogger with air cooled memory foam", "pricing": "$51.96$55.00", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41M4zyqq4HL.jpg", "https://m.media-amazon.com/images/I/51O-IY3fOVL.jpg", "https://m.media-amazon.com/images/I/51u8yUXqpFL.jpg", "https://m.media-amazon.com/images/I/41bLKJdPA9L.jpg", "https://m.media-amazon.com/images/I/41G6WqIR6mL.jpg", "https://m.media-amazon.com/images/I/41E4SDj5rIL.jpg", "https://m.media-amazon.com/images/I/41wcUFJnr7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Fashion Sneakers", "average_rating": 4.4, "small_description": ["Soft suede and mesh fabric upper ", "Lace up sporty classic jogging sneaker design ", "Air-Cooled Memory Foam insole ", "Shock absorbing jogger-style midsole ", "Flexible rubber traction outsole "], "total_reviews": 57, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "9.5", "asin": "B014GT3FAW"}, {"is_selected": false, "is_available": false, "value": "10.5", "asin": "B01FMY0OR2"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B01DJGWDBA"}, {"is_selected": false, "is_available": false, "value": "12", "asin": "B014GT2TLS"}, {"is_selected": false, "is_available": false, "value": "13", "asin": "B014GT1OXW"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B014GT3FAW/ref=twister_B014GT0AJG", "value": "Black/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412X2G5K2aL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B014GT1I4W/ref=twister_B014GT0AJG", "value": "Burgundy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410famaZnJL.jpg"}, {"is_selected": true, "url": null, "value": "Gray/Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41M4zyqq4HL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01FMY0OR2/ref=twister_B014GT0AJG", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41XCdbrciUL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01DJGWDBA", "category": "fashion", "query": "Men's Fashion Sneakers", "page": 140, "small_description_old": "suede-and-fabric Rubber sole Soft suede and mesh fabric upper Lace up sporty classic jogging sneaker design Air-Cooled Memory Foam insole Shock absorbing jogger-style midsole Flexible rubber traction outsole"}, {"name": "Soft Plush Electric Heated Blanket Throw with Foot Pocket | Navy Blue 50 x 62 | 3 Heat Settings with 2 Hour Auto Shut Off, UL Certified | Machine Washable", "product_information": {"Package Dimensions": "15.51 x 12.32 x 5.08 inches", "Item Weight": "3.83 pounds", "Manufacturer": "Degrees of Comfort", "ASIN": "B09C1YWG8W", "Item model number": "DC54-0493", "Customer Reviews": {"ratings_count": 4390, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#35,589 in Home & Kitchen (See Top 100 in Home & Kitchen) #5 in Electric Throws #43 in Electric Blankets #255 in Bed Throws"], "Date First Available": "August 6, 2021"}, "brand": "Visit the Degrees of Comfort Store", "brand_url": "https://www.amazon.com/stores/DegreesofComfort/page/CD1BC65E-0953-40AB-AF75-5BFAD734E147?ref_=ast_bln", "full_description": "", "pricing": "$69.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/510NpO6zSdL.jpg", "https://m.media-amazon.com/images/I/31q6XGRJErL.jpg", "https://m.media-amazon.com/images/I/51KWGLoztwL.jpg", "https://m.media-amazon.com/images/I/51UPLmRIBSL.jpg", "https://m.media-amazon.com/images/I/41HwSsQINQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Blankets & Throws \u203a Throws", "average_rating": 4.2, "small_description": ["PROTECTED AND SAFE: We engineered our heating blankets to heat up while emitting the lowest possible EMF energy. UL Certified and guaranteed to give you peace of mind and the comfort of warmth. ", "LOWER YOUR ELECTRIC BILL \u2013 WHILE STAYING WARM ALL NIGHT: YOU GET TO CHOOSE how toasty warm you prefer to be when you sleep. Enjoy 3 different heating levels with our custom LED controller with also built in auto shut off. We know some of you LIKE IT HOT and you like to SAVE MONEY. Imagine this\u2026 turn off your homes heat at night and cuddle into our heated throw blanket. Then wake up to a reduced electric bill. ", "PERFECTLY POSITIONED CORD WON\u2019T POKE YOU AT NIGHT: 6FT LONG POWER CORD gives you plenty of reach to any nearby outlet whether you\u2019re in the bedroom, camping, RV, air mattress or carpet AND YOU WON\u2019T EVEN FEEL IT\u2019S THERE. The conveniently placed 3ft controller cord can easily be reached and tucked away as well. ", "SUPER SIMPLE TO WASH: Just disconnect the controller and power cables and simply throw the entire electric throw blanket into the wash. Use cold or lukewarm water and put it on a slow agitation cycle. Then toss it in the dryer on low heat or let it air dry. STAYS SILKY SOFT after many washes. ", "BUILT TO LAST: 5 YEAR WARRANTY \u2013 WE KNOW YOU\u2019RE TIRED OF buying inferior heated throws that stop working in only the first few uses. That\u2019s why we engineered our heated throw blanket to last in comfortable cozy conditions or even the most rugged adventurous settings. "], "total_reviews": 4390, "total_answered_questions": "", "model": "DC54-0493", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07W95NB13/ref=twister_B083G7ZWKH", "value": "Plush Throw 50x60\"", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Foot Throw 50x62\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08HVWG6SJ/ref=twister_B083G7ZWKH", "value": "Foot Throw 60x70\"", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07W95NB13/ref=twister_B083G7ZWKH", "value": "Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/211S-Lv2YQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07W6Y2TXS/ref=twister_B083G7ZWKH?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21CtChQ17AL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WC36H5N/ref=twister_B083G7ZWKH", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21t6KonM3bL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WC6H2DN/ref=twister_B083G7ZWKH", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21PUVF3lNKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C1X3BBG/ref=twister_B083G7ZWKH", "value": "Red Plaid", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51vu2K-2XVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WC46VQ2/ref=twister_B083G7ZWKH?_encoding=UTF8&psc=1", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21VOeM-hQEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C1ZPNBC/ref=twister_B083G7ZWKH?_encoding=UTF8&psc=1", "value": "Ivory", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01AueyUjchL.jpg"}, {"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01HengnxExL.jpg"}]}, "seller_id": "A5Z2YWU3O1IH2", "seller_name": "La Fiore", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09C1YWG8W", "category": "garden", "query": "Throw Blankets", "page": 12, "small_description_old": "About this item\n \nPROTECTED AND SAFE: We engineered our heating blankets to heat up while emitting the lowest possible EMF energy. UL Certified and guaranteed to give you peace of mind and the comfort of warmth. LOWER YOUR ELECTRIC BILL \u2013 WHILE STAYING WARM ALL NIGHT: YOU GET TO CHOOSE how toasty warm you prefer to be when you sleep. Enjoy 3 different heating levels with our custom LED controller with also built in auto shut off. We know some of you LIKE IT HOT and you like to SAVE MONEY. Imagine this\u2026 turn off your homes heat at night and cuddle into our heated throw blanket. Then wake up to a reduced electric bill. PERFECTLY POSITIONED CORD WON\u2019T POKE YOU AT NIGHT: 6FT LONG POWER CORD gives you plenty of reach to any nearby outlet whether you\u2019re in the bedroom, camping, RV, air mattress or carpet AND YOU WON\u2019T EVEN FEEL IT\u2019S THERE. The conveniently placed 3ft controller cord can easily be reached and tucked away as well. SUPER SIMPLE TO WASH: Just disconnect the controller and power cables and simply throw the entire electric throw blanket into the wash. Use cold or lukewarm water and put it on a slow agitation cycle. Then toss it in the dryer on low heat or let it air dry. STAYS SILKY SOFT after many washes. BUILT TO LAST: 5 YEAR WARRANTY \u2013 WE KNOW YOU\u2019RE TIRED OF buying inferior heated throws that stop working in only the first few uses. That\u2019s why we engineered our heated throw blanket to last in comfortable cozy conditions or even the most rugged adventurous settings."}, {"name": "YITAHOME 5 Tier Bookshelf, Open Freestanding 5 Shelf Bookcase 5 Tier Storage Shelf for Display and Collection, Industrial Decorative Shelf for Living Room, Home, Office, Retro Brown Bookshelf", "product_information": {"Item Weight": "\u200e55.1 pounds", "Product Dimensions": "\u200e11.8 x 47 x 70.8 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eFTOFBC-9000", "Assembled Height": "\u200e70.8 inches", "Assembled Width": "\u200e11.8 inches", "Assembled Length": "\u200e47 inches", "Weight": "\u200e55.12 Pounds", "ASIN": "B08PYQVNBQ", "Customer Reviews": {"ratings_count": 101, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#538,043 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,101 in Bookcases"], "Date First Available": "December 8, 2020"}, "brand": "Visit the YITAHOME Store", "brand_url": "https://www.amazon.com/stores/YITAHOME/page/48204C75-BB9D-461E-BC71-9CB13D8CF5F0?ref_=ast_bln", "full_description": "", "pricing": "$159.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51X-xLIkQoL.jpg", "https://m.media-amazon.com/images/I/51GQrohUyVS.jpg", "https://m.media-amazon.com/images/I/518b9R7nT5S.jpg", "https://m.media-amazon.com/images/I/51rzKieaFbL.jpg", "https://m.media-amazon.com/images/I/41yoyWr5r1S.jpg", "https://m.media-amazon.com/images/I/51dU8WX2LDS.jpg", "https://m.media-amazon.com/images/I/51eG-3KDQcL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": 4.7, "small_description": ["5-TIER LADDER BOOKSHELF- Compared to others, this freestanding bookshelf is equipped with 5 open shelves to provide ample space. Moreover, its stream-lined and multi-layer construction meet all your decorative and functional needs. ", "INDUSTRIAL & CHARMING STYLE- The optimal choice for people who want to invigorate home office. Enhance your work or study with the pleasure of compact organization and a clean-cut look to your room. ", "INNOVATIVE DETAILS- Rear X-shaped bracing enhances bookshelf stability so it doesn\u2019t wobble. The X-shaped side bar is used to prevent items from falling. The clear and comfortable finish increases coziness. ", "IMMENSE WEIGHT CAPACITY- Crafted from engineered particle board with fine finishing and a powerful metal frame. Each shelf can bear considerable weight and the adjustable foot pad keeps the product stable on uneven floors. Overall Size: 47\u201d x 11.8\u201d x 70.8\u201d (L\u00a0x\u00a0W\u00a0x\u00a0H) ", "WORRY-FREE ASSEMBLY- All necessary accessories, tools, and illustrated instruction are included. Please adjust the upper and lower connecting parts to make them level, and then tighten the screws. Remember to install the anti-tilting tool on the wall for better stability and less unexpected injuries. "], "total_reviews": 101, "total_answered_questions": "", "model": "\u200eFTOFBC-9000", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Retro Brown", "price_string": "$159.99", "price": 159.99, "image": "https://m.media-amazon.com/images/I/51X-xLIkQoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PYCWPV2/ref=twister_B08XXND197?_encoding=UTF8&psc=1", "value": "Rustic Brown", "price_string": "$166.35", "price": 166.35, "image": "https://m.media-amazon.com/images/I/51n4DU+q1DS.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08PYQVNBQ", "category": "garden", "query": "Book Cases", "page": 8, "small_description_old": "About this item 5-TIER LADDER BOOKSHELF- Compared to others, this freestanding bookshelf is equipped with 5 open shelves to provide ample space. Moreover, its stream-lined and multi-layer construction meet all your decorative and functional needs. INDUSTRIAL & CHARMING STYLE- The optimal choice for people who want to invigorate home office. Enhance your work or study with the pleasure of compact organization and a clean-cut look to your room. INNOVATIVE DETAILS- Rear X-shaped bracing enhances bookshelf stability so it doesn\u2019t wobble. The X-shaped side bar is used to prevent items from falling. The clear and comfortable finish increases coziness. IMMENSE WEIGHT CAPACITY- Crafted from engineered particle board with fine finishing and a powerful metal frame. Each shelf can bear considerable weight and the adjustable foot pad keeps the product stable on uneven floors. Overall Size: 47\u201d x 11.8\u201d x 70.8\u201d (L\u00a0x\u00a0W\u00a0x\u00a0H) WORRY-FREE ASSEMBLY- All necessary accessories, tools, and illustrated instruction are included. Please adjust the upper and lower connecting parts to make them level, and then tighten the screws. Remember to install the anti-tilting tool on the wall for better stability and less unexpected injuries. \n \u203a See more product details"}, {"name": "Hair Removal Pads 4 Piece Set (2-Pack)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 7.2 x 6.6 x 1.3 inches; 1.6 Ounces", "Item model number\n \u200f": "\u200e\n LEPUSBTNZ8030", "UPC\n \u200f": "\u200e\n 310151852381", "Manufacturer\n \u200f": "\u200e\n An American Company", "ASIN\n \u200f": "\u200e\n B00T9U3NA6", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#544,361 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#27,567 in Shaving & Hair Removal Products", "#27,567 in Shaving & Hair Removal Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the American Store", "brand_url": "https://www.amazon.com/stores/American/page/277BF71D-141F-43CD-B221-B0F2433DF6EB?ref_=ast_bln", "full_description": "The hair removal pads smooth away unwanted hair. Each pad is covered with superfine crystals that buff away hair leaving your skin soft and incredibly smooth. Pads gently exfoliate while removing hair. Safe for upper lips, sensitive areas such as underarms and anywhere you need to remove hair or exfoliate.", "pricing": "$4.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51kaUIUcDmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal", "average_rating": 2.9, "small_description": ["Each pack has 1 large size pad for facial areas, legs, arms and underarms ", "1 small size pad for hard to reach areas ", "2 backing pads (buffer pads attach to the backing pads) ", "Gently exfoliate and buff away unwanted hair without razors or chemicals ", "Safe for upper lip, sensitive areas such as underarms "], "total_reviews": 29, "total_answered_questions": "", "customization_options": "", "seller_id": "A161KJFXGMNJBI", "seller_name": "As Seen on TV Products", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00T9U3NA6", "category": "beauty", "query": "Shave & Hair Removal", "page": 60, "small_description_old": "Each pack has 1 large size pad for facial areas, legs, arms and underarms 1 small size pad for hard to reach areas 2 backing pads (buffer pads attach to the backing pads) Gently exfoliate and buff away unwanted hair without razors or chemicals Safe for upper lip, sensitive areas such as underarms"}, {"name": "4 Pack, Russell Stover Milk Chocolate Coconut Nests", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 4 x 3 x 1 inches; 1 Ounces", "ASIN\n \u200f": "\u200e\n B00UETYYV8", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Russell Stover Store", "brand_url": "https://www.amazon.com/stores/Russell+Stover/page/A90DB52A-A313-4281-849D-DD4DCB4D2445?ref_=ast_bln", "full_description": "Russel Stover Coconut Nest Covered in Milk Chocolate. Pack of 4 Individually Wrapped Coconut Nests 1oz each (Total of 4oz)", "pricing": "$12.99", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon. Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51hYYszcNlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.5, "small_description": ["Russell Stover Delicious Milk Chocolate Coconut Nests ", "4 Individually Wrapped Coconut Nests 1 oz each "], "total_reviews": 80, "total_answered_questions": "", "customization_options": "", "seller_id": "A2KAJZGO9TTJCT", "seller_name": "Sielca Sales LLC", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B00UETYYV8", "category": "grocery", "query": "Milks & Creams", "page": 197, "small_description_old": "About this item Russell Stover Delicious Milk Chocolate Coconut Nests 4 Individually Wrapped Coconut Nests 1 oz each"}, {"name": "Beaupretty 7Pcs Silicone Travel Bottles Set Empty Cosmetic Bottles Refillable Toiletry Containers Squeezable Travel Tube for Lotion Shampoo Toiletries", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 4.33 x 3.54 x 0.31 inches; 2.12 Ounces", "Item model number\n \u200f": "\u200e\n 0Y46144E9NOJOBRUOQR015RU", "UPC\n \u200f": "\u200e\n 738702094804", "Manufacturer\n \u200f": "\u200e\n Beaupretty", "ASIN\n \u200f": "\u200e\n B08532HWVM", "": ""}, "brand": "Brand: Beaupretty", "brand_url": "https://www.amazon.com/Beaupretty/b/ref=bl_dp_s_web_23453093011?ie=UTF8&node=23453093011&field-lbr_brands_browse-bin=Beaupretty", "full_description": "DescriptionThis is a set of 7 pieces travel bottles. Perfect for shampoo, conditioner, body wash, lotion and more. Large opening for easy refill with leak-proof cover. Compact size, easy to store and carry, you can take your preferred brands of shampoo, condition, gel or other toiletries to gym, beach, travel, hotel, etc.Features- Color: As shown.- Material: Silicone.- Size: 11x9x0.8cm.Package Including1 x set of 7Pcs Silicone Travel Bottles", "pricing": "$9.29", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/315TtSTAH+L.jpg", "https://m.media-amazon.com/images/I/41DjZt7cpxL.jpg", "https://m.media-amazon.com/images/I/31CZ1RK4NnL.jpg", "https://m.media-amazon.com/images/I/41bBSx+HM2L.jpg", "https://m.media-amazon.com/images/I/51TjCDw2hnL.jpg", "https://m.media-amazon.com/images/I/31tsgVAbXxL.jpg", "https://m.media-amazon.com/images/I/31zcwdGTrrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": "", "small_description": ["Bright color and fruit shape design. ", "Each bottle with the capacity of about 25ml-30ml. ", "Compact size, easy to store and carry, you can take your preferred brands of shampoo, condition, gel or other toiletries to gym, beach, travel, hotel, etc. ", "Large opening for easy refill with leak-proof cover. ", "Set of 7 travel bottles, perfect for shampoo, conditioner, body wash, lotion and more. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AT1XOP8MY9KKG", "seller_name": "Sharluue", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08532HWVM", "category": "beauty", "query": "Refillable Containers", "page": 184, "small_description_old": "Bright color and fruit shape design. Each bottle with the capacity of about 25ml-30ml. Compact size, easy to store and carry, you can take your preferred brands of shampoo, condition, gel or other toiletries to gym, beach, travel, hotel, etc. Large opening for easy refill with leak-proof cover. Set of 7 travel bottles, perfect for shampoo, conditioner, body wash, lotion and more."}, {"name": "Taali NEW Sweet and Savory Variety Popped Water Lily Pops (6 Resealable Bags) - Try 6 Flavors! | Sweet, Salty, Savory Assortment | Protein Boost | Snack on the Go (2 oz/2.3 oz. bags)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 14.57 x 6.3 x 9.84 inches; 1.59 Pounds", "UPC\n \u200f": "\u200e\n 811307030184", "Manufacturer\n \u200f": "\u200e\n Indspiration Foods Private Limited", "ASIN\n \u200f": "\u200e\n B085RRL27J", "Best Sellers Rank": "#35,309 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#108 in Puffed Snacks", "#108 in Puffed Snacks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Taali Store", "brand_url": "https://www.amazon.com/stores/Taali/page/2913B7C3-3C4F-4C6B-B964-CA7528984845?ref_=ast_bln", "full_description": "", "pricing": "$38.99", "list_price": "", "availability_quantity": 17, "availability_status": "Only 17 left in stock - order soon. Only 17 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51PyQPhMUOL.jpg", "https://m.media-amazon.com/images/I/51m8vnfGxDL.jpg", "https://m.media-amazon.com/images/I/51EaUs2gpUS.jpg", "https://m.media-amazon.com/images/I/51qbi32QhDL.jpg", "https://m.media-amazon.com/images/I/61tAhC6LFoL.jpg", "https://m.media-amazon.com/images/I/61+cosYt2dL.jpg", "https://m.media-amazon.com/images/I/61uhigWiDKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Puffed Snacks", "average_rating": 3.9, "small_description": ["6-FLAVOR VARIETY: Enjoy 6 share sized bags. Includes 1 Himalayan Pink Salt, 1 White Cheddar, 1 Tikka Masala, 1 Tangy Turmeric, 1 Cinnamon Vanilla and 1 Cookie Crunch. No need to choose between sweet and savory here! Indulge your cravings and try them all! ", "PLANT BASED PROTEIN: With 6-10 grams of vegetarian protein per bag, you will finally have a great answer to the dreaded question... \u201cbut where do you get your protein\u201d? ", "CLEAN EATING: Taali Water Lily Pops new sweet flavors fit into any healthy diet - they are gluten free, soy free, corn free, dairy free, certified non GMO, and do not contain artificial flavors or ingredients. Taali takes pride in using real ingredients that taste great! ", "POP. EAT. REPEAT: Rich in protein and antioxidants, Taali will leave you feeling satisfied with fewer calories. With 67% less fat & 20% less calories than the leading popcorn brand, you won\u2019t be able to get enough of this sweet guilt-free treat. ", "MORE OF WHAT YOU LOVE: With bigger bags than competitor products, there\u2019s more to love and more to share with Taali "], "total_reviews": 553, "total_answered_questions": 5, "customization_options": {"Flavor": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07PN7DXYV/ref=twister_B09HJPHM3F", "value": "3-Flavor Variety", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085RFK3CM/ref=twister_B09HJPHM3F", "value": "4-Flavor Variety", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Variety - Sweet & Savory", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07PN7DXYV/ref=twister_B09HJPHM3F", "value": "0.8 Ounce (Pack of 10)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085R8FRMX/ref=twister_B09HJPHM3F", "value": "0.8 Ounce (Pack of 20)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07RM57VTN/ref=twister_B09HJPHM3F", "value": "2.3 Ounce (Pack of 4)", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "2-2.3 Ounce (Pack of 6)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "AQXHLTLA9AEF3", "seller_name": "Taali Foods", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B085RRL27J", "category": "grocery", "query": "Wasabi Peas", "page": 10, "small_description_old": "6-FLAVOR VARIETY: Enjoy 6 share sized bags. Includes 1 Himalayan Pink Salt, 1 White Cheddar, 1 Tikka Masala, 1 Tangy Turmeric, 1 Cinnamon Vanilla and 1 Cookie Crunch. No need to choose between sweet and savory here! Indulge your cravings and try them all! PLANT BASED PROTEIN: With 6-10 grams of vegetarian protein per bag, you will finally have a great answer to the dreaded question... \u201cbut where do you get your protein\u201d? CLEAN EATING: Taali Water Lily Pops new sweet flavors fit into any healthy diet - they are gluten free, soy free, corn free, dairy free, certified non GMO, and do not contain artificial flavors or ingredients. Taali takes pride in using real ingredients that taste great! POP. EAT. REPEAT: Rich in protein and antioxidants, Taali will leave you feeling satisfied with fewer calories. With 67% less fat & 20% less calories than the leading popcorn brand, you won\u2019t be able to get enough of this sweet guilt-free treat. MORE OF WHAT YOU LOVE: With bigger bags than competitor products, there\u2019s more to love and more to share with Taali"}, {"name": "Tycon Systems POE-MSPLT-4824 POE Splitter - 24V DC 12W", "product_information": {"Product Dimensions": "1.77 x 2.56 x 1.02 inches", "Item Weight": "3.2 ounces", "ASIN": "B00PZ006U4", "Item model number": "POE-MSPLT-4824", "Best Sellers Rank": ["#1,995 in Surge Protectors"], "Is Discontinued By Manufacturer": "No", "Date First Available": "November 21, 2014", "Manufacturer": "Tycon Systems"}, "brand": "Brand: Tycon Power", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Tycon+Power", "full_description": "Features: Very Compact Size Converts an Active PoE Input to a DC output Various Output Voltages and USB Available Output Power Up To 15W Short Circuit, Over Current ProtectionPOE-MSPLT-4824 is a 10/100Mb splitter to power a non-POE device using POE. It has an 802.3af/at or 48VDC Passive PoE input. The 12W DC output is via a standard 5.5mm/2.1mm barrel connector on a 6in cable. Data output is thru a 6in CAT5 cable terminated with an RJ45 connector. These POE splitters are the perfect solution for running 24VDC devices like cameras, access points, switches and sensors from a 802.3af or 802.3at or 48VDC Passive POE source. Wide -25 to +50C temperature range enables outdoor applications when mounted in weatherproof enclosures.Inputs and outputs are isolated. They have protections for short circuit and over-current.Dimensions:65 x 45 x 26mm (2.6 x 1.8 x 1\u201d)Weight: 62g (2.2oz)", "pricing": "$46.50", "list_price": "", "availability_quantity": 12, "availability_status": "Only 12 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/416ro4Sq8gL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Power Strips & Surge Protectors \u203a Surge Protectors", "average_rating": "", "small_description": ["802.3af/at PoE Input ", "24VDC 12W out ", "10/100MB ", "Compact Size ", "Low Cost "], "total_reviews": "", "total_answered_questions": "", "model": "POE-MSPLT-4824", "customization_options": "", "seller_id": "A1MAXJIALWUXGM", "seller_name": "pcbay", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00PZ006U4", "category": "electronics", "query": "Power Protection", "page": 281, "small_description_old": "802.3af/at PoE Input 24VDC 12W out 10/100MB Compact Size Low Cost"}, {"name": "Finchberry Happy Birthday Gift Set", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13 x 4 x 4 inches; 5 Pounds", "UPC\n \u200f": "\u200e\n 850017147942", "Manufacturer\n \u200f": "\u200e\n FINCHBERRY", "ASIN\n \u200f": "\u200e\n B09RYN5ZS7", "": ""}, "brand": "Visit the FINCHBERRY Store", "brand_url": "https://www.amazon.com/stores/Finchberry/page/5F120F76-2FB4-4965-8EDB-E0AC63ACE34B?ref_=ast_bln", "full_description": "Finchberry Happy Birthday Gift Set, Gift Basket for Women, 3Pcs with Soap, Fizzy Salt Soak & Soap Dish, Home Spa Kit with Sustainably Sourced Ingredients", "pricing": "$35.00", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41pxYAJDlnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Cleansers \u203a Soaps", "average_rating": "", "small_description": ["GIFTING SENSATION - Elevate your gift-giving and brighten their special day with Finchberry's Happy Birthday Gift Set! Artfully curated and expertly handcrafted with sustainably sourced ingredients, this nourishing trio will be sure to leave a lasting impression. ", "WHAT'S INCLUDED - Each Happy Birthday Gift Set includes: a Main Squeeze Bar Soap, a Renegade Honey Fizzy Salt Soak and a Pink Silicone Flower Soap Dish ", "UNIQUE & DECADENT - Perfectly packaged and delightfully decorated. Each box is printed with a thoughful saying and ready to be gifted to anyone who enjoys \u201cme time\u201d. **PLEASE NOTE: The sayings printed on the inside of each gift set are random. We cannot guarantee which saying you will receive. ", "PRETTY PERFECTION - Beautifully layered in eye-catching color combinations and highlighted in a decorative glass container, our lovely soaks are the perfect addition to any bathroom. ", "HIGH QUALITY - Our flower soap dish is made of high quality flexible silicone, soft and durable. Size: 4.9\" x 4.9\" "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1S148Z3EF0UJP", "seller_name": "Finchberry", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09RYN5ZS7", "category": "beauty", "query": "Skin Care Sets & Kits", "page": 151, "small_description_old": "About this item GIFTING SENSATION - Elevate your gift-giving and brighten their special day with Finchberry's Happy Birthday Gift Set! Artfully curated and expertly handcrafted with sustainably sourced ingredients, this nourishing trio will be sure to leave a lasting impression. WHAT'S INCLUDED - Each Happy Birthday Gift Set includes: a Main Squeeze Bar Soap, a Renegade Honey Fizzy Salt Soak and a Pink Silicone Flower Soap Dish UNIQUE & DECADENT - Perfectly packaged and delightfully decorated. Each box is printed with a thoughful saying and ready to be gifted to anyone who enjoys \u201cme time\u201d. **PLEASE NOTE: The sayings printed on the inside of each gift set are random. We cannot guarantee which saying you will receive. PRETTY PERFECTION - Beautifully layered in eye-catching color combinations and highlighted in a decorative glass container, our lovely soaks are the perfect addition to any bathroom. HIGH QUALITY - Our flower soap dish is made of high quality flexible silicone, soft and durable. Size: 4.9\" x 4.9\""}, {"name": "Prepac Entryway Shoe Cubby Console, 60\", Drifted Gray", "product_information": {"Item Weight": "\u200e105 pounds", "Product Dimensions": "\u200e15.5 x 60 x 35 inches", "Country of Origin": "\u200eCanada", "Item model number": "\u200eDUSG-0014-1", "ASIN": "B08HN55NGW", "Customer Reviews": {"ratings_count": 27, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#265,719 in Home & Kitchen (See Top 100 in Home & Kitchen) #455 in Free Standing Shoe Racks"], "Date First Available": "March 22, 2021"}, "brand": "Visit the Prepac Store", "brand_url": "https://www.amazon.com/stores/PREPACRTASTORAGEFURNITURE/page/70700F36-DB66-4C54-BED6-325CCB481658?ref_=ast_bln", "full_description": "The Prepac 60\" Shoe Cubby Console is a great option for organizing an entryway, mudroom or family room. There are 32 shoe cubbies to keep shoes from cluttering your floors and four large top compartments to stow books, bags and catch-all baskets. Not just for shoes, the cubbies can also be used for scarves, gloves and other items. This versatile console could also be repurposed to hold yarn, fabric and craft supplies. At 35\" high, the large top surface is at an optimal height for setting down keys and other \"on the go\" items, or as a spot for your favorite lamp and decorative items. Constructed from non-toxic, CARB-2 compliant, laminated composite woods. Ships ready to assemble, includes an instruction booklet for easy assembly and has a 5-year manufacturer\u2019s limited parts warranty. Manufactured in Canada and meets all North American safety standards.", "pricing": "$280.99", "list_price": "", "availability_status": "Available to ship in 1-2 days.", "images": ["https://m.media-amazon.com/images/I/51994qN3ezL.jpg", "https://m.media-amazon.com/images/I/41pSnpuhppL.jpg", "https://m.media-amazon.com/images/I/41t5qQLRJuL.jpg", "https://m.media-amazon.com/images/I/31z+9qCOzgL.jpg", "https://m.media-amazon.com/images/I/414fB+BjzSL.jpg", "https://m.media-amazon.com/images/I/41iNrl7zsOL.jpg", "https://m.media-amazon.com/images/I/61q46ecPHIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Storage & Organization \u203a Clothing & Closet Storage \u203a Shoe Organizers \u203a Free Standing Shoe Racks", "average_rating": 4.5, "small_description": ["Thirty-two storage cubbies are spacious enough to hold a pair of size 13 men's shoes (6.875 in. W x 4.875 in. H x 14 in. D) ", "Four large upper cubbies for baskets, games, books (13.25 in. W x 7.25 in. H x 14 in. D) ", "Side and top moldings; Decorative kicker; 4\" high notch on each side to accommodate baseboards ", "No visible hardware with connecting rod and cam lock construction ", "Assembled Dimensions: 60 in. W x 35 in. H x 15.5 in. D; Weight Capacity: 200 lbs on top; 10 lbs per each top compartment "], "total_reviews": 27, "total_answered_questions": "", "model": "\u200eDUSG-0014-1", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08HN55NGW", "category": "garden", "query": "Cabinets", "page": 115, "small_description_old": "Thirty-two storage cubbies are spacious enough to hold a pair of size 13 men's shoes (6.875 in. W x 4.875 in. H x 14 in. D) Four large upper cubbies for baskets, games, books (13.25 in. W x 7.25 in. H x 14 in. D) Side and top moldings; Decorative kicker; 4\" high notch on each side to accommodate baseboards No visible hardware with connecting rod and cam lock construction Assembled Dimensions: 60 in. W x 35 in. H x 15.5 in. D; Weight Capacity: 200 lbs on top; 10 lbs per each top compartment \n \u203a See more product details"}, {"name": "Wrangler Men's Retro Slim Fit Straight Leg Jean, Black, 42W x 32L", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 18.7 x 14.9 x 2.2 inches; 1 Pounds", "Item model number\n \u200f": "\u200e\n 88MWZBK", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 18, 2017", "Manufacturer\n \u200f": "\u200e\n Wrangler Men's Sportswear", "ASIN\n \u200f": "\u200e\n B01MSP2B0I", "Country of Origin\n \u200f": "\u200e\n China", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Wrangler Store", "brand_url": "https://www.amazon.com/stores/THEOFFICIALWRANGLER%C2%AESTORE/page/447486A1-7264-4DFF-9C66-7F69EB4AA55B?ref_=ast_bln", "full_description": "Wrangler Men's Retro Slim Straight Jean. This Retro jean was designed with style in mind. An everyday staple built with a slim fit, this Retro jean is a classic that never goes out of style. Great for a night on the town or out to dinner, this jean keeps you looking buttoned-up no matter the occasion. FEATURES Slim Fit. Slim fit through the seat and thighs. Retro Style. \"\"W\"\" stitching on the back pockets, leather logo patch, 1947 rivet on the front pocket. Traditional 5-Pocket Jean. (2) embroidered hip pockets, (1) watch pocket, and (2) front pockets. Durable Comfort. Built with a durable cotton blend.", "pricing": "$63.05", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/312J3aUg8UL.jpg", "https://m.media-amazon.com/images/I/31uEjHWJWGL.jpg", "https://m.media-amazon.com/images/I/31yw1e3NkCL.jpg", "https://m.media-amazon.com/images/I/512m9mQazjL.jpg", "https://m.media-amazon.com/images/I/41B1WQkr1BL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Jeans", "average_rating": 5, "small_description": ["SLIM FIT. This slim fit straight leg jean is designed with fashion-forward style. Built with a slim fit through the seat and thigh, our Retro jean sits lower on the waist and leaves enough room to fit over your favorite pair of boots. ", "RETRO STYLING. Designed with Retro style in mind, this slim straight jean provides a vintage look for the modern man. Complete with our signature Retro finishes and slim fit, this jean will keep you looking good for any occasion. ", "QUALITY MATERIALS. Made from high-quality material, this slim fit straight jean is constructed for comfort, function, and style. Finished with a unique wash technique - whiskering, handsanding, distressing - each style varies in finishing. ", "ICONIC EMBELLISHMENTS. This premium slim jean is finished with our iconic Wrangler \u201cW\u201d stitching, leather Wrangler patch on the back pocket, and 1947 rivet on the front pocket. Maintain that effortless classic style with a touch of Retro. ", "FIVE POCKET STYLING. Constructed with our classic five-pocket jean styling, these straight leg jeans are made with (2) embroidered hip pockets, (1) watch pocket, and (2) front pockets. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01MSP2B0I", "category": "fashion", "query": "Men's Jeans", "page": 21, "small_description_old": "SLIM FIT. This slim fit straight leg jean is designed with fashion-forward style. Built with a slim fit through the seat and thigh, our Retro jean sits lower on the waist and leaves enough room to fit over your favorite pair of boots. RETRO STYLING. Designed with Retro style in mind, this slim straight jean provides a vintage look for the modern man. Complete with our signature Retro finishes and slim fit, this jean will keep you looking good for any occasion. QUALITY MATERIALS. Made from high-quality material, this slim fit straight jean is constructed for comfort, function, and style. Finished with a unique wash technique - whiskering, handsanding, distressing - each style varies in finishing. ICONIC EMBELLISHMENTS. This premium slim jean is finished with our iconic Wrangler \u201cW\u201d stitching, leather Wrangler patch on the back pocket, and 1947 rivet on the front pocket. Maintain that effortless classic style with a touch of Retro. FIVE POCKET STYLING. Constructed with our classic five-pocket jean styling, these straight leg jeans are made with (2) embroidered hip pockets, (1) watch pocket, and (2) front pockets."}, {"name": "Pepperidge Farm Goldfish Cheddar Crackers, 22 Snack Packs, 28g/1 oz. Each {Imported from Canada}", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 9.44 x 5.75 x 8 inches; 1.72 Pounds", "Item model number\n \u200f": "\u200e\n 200140024766", "UPC\n \u200f": "\u200e\n 014100247661", "ASIN\n \u200f": "\u200e\n B073WX1ZSK", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Pepperidge Farm", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Pepperidge+Farm", "full_description": "", "pricing": "$31.99", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51-iJBYhnmL.jpg", "https://m.media-amazon.com/images/I/51mDMdDtLXL.jpg", "https://m.media-amazon.com/images/I/51bvu0oVWsL.jpg", "https://m.media-amazon.com/images/I/51DlNbPpI+S.jpg", "https://m.media-amazon.com/images/I/51wPwl57csS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.7, "small_description": [""], "total_reviews": 2447, "total_answered_questions": "", "customization_options": "", "seller_id": "A3DEFW12560V8M", "seller_name": "MangaNaturals", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B073WX1ZSK", "category": "grocery", "query": "Snack Crackers", "page": 33, "small_description_old": ""}, {"name": "Fujifilm FinePix Z90 14 MP Digital Camera with Fujinon 5x Wide Angle Optical Zoom Lens and 3-Inch Touch-Screen LCD (Purple)", "product_information": {"Product Dimensions": "0.8 x 3.8 x 2.2 inches", "Item Weight": "4.8 ounces", "ASIN": "B004HO58MA", "Item model number": "Z90 Purple", "Batteries": "1 Lithium ion batteries required. (included)", "Customer Reviews": {"ratings_count": 138, "stars": "4.4 out of 5 stars"}, "Is Discontinued By Manufacturer": "No", "Date First Available": "January 1, 2011", "Manufacturer": "FUJIFILM"}, "brand": "Visit the Fujifilm Store", "brand_url": "https://www.amazon.com/stores/FUJIFILM/page/2528B9A9-8D24-443E-9D1B-EAFFFDE3CC60?ref_=ast_bln", "full_description": "The Fuji FinePix Z90 14MP Purple Digital Camera is packed full of fun and easy-to use features. It houses an innovative 3 inch wide LCD touch screen that automatically rotates the display to portrait or landscape view. This stylish compact body incorporates the award-winning Fujinon lens with 5x zoom, 14 megapixels and digital image stabilization. With the ability to capture both photos and movies in high-definition 16:9 format, the FinePix Z90 lets you discover the impact of full-screen HDTV image display. With Motion Panorama the camera automatically stitches together three consecutive shots creating a stunning wide-scale image. Plus it features image selection and editing functions that make it easier than ever to upload video clips or still photos to YouTube and Facebook sites. The FinePix Z90 is the perfect camera for a fashion conscious audience that is looking for a combination of quality and style. Z90 The FinePix Z90 digital camera is the latest addition to Fujifilm's sleek and stylish range of Z-series compact cameras, and features a large 3-inch resistive touch-screen LCD, a 14-megapixel CCD sensor, with a FUJINON 5x wide angle refractive optical zoom lens (28mm equivalent) for added range and flexibility. The FinePix Z90's impressive features also include one-touch 720p HD movie capture, an intuitive Dual Direction GUI that allows for easy navigating, and \"tap and shoot\" capabilities for images and videos. The Z90 also has tagging with automatic upload functions to YouTube and Facebook. Fujifilm FinePix Z90 Highlights Chic Design The FinePix Z90 features a slim metal chassis and a chic horizontal sliding lens barrier that makes it ultra-portable. It is available in a choice of five stylish colors: matte black, red, blue, pink and purple. The FinePix Z90 digital camera is the latest addition to Fujifilm's sleek and stylish range of Z-series compact cameras, and features a large 3-inch resistive touch-screen LCD, a 14-megapixel CCD sensor, with a FUJINON 5x wide angle refractive optical zoom lens (28mm equivalent) for added range and flexibility. The FinePix Z90's impressive features also include one-touch 720p HD movie capture, an intuitive Dual Direction GUI that allows for easy navigating, and \"tap and shoot\" capabilities for images and videos. The Z90 also has tagging with automatic upload functions to YouTube and Facebook. Fujifilm FinePix Z90 Highlights Chic Design The FinePix Z90 features a slim metal chassis and a chic horizontal sliding lens barrier that makes it ultra-portable. It is available in a choice of five stylish colors: matte black, red, blue, pink and purple.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51PVBF1I4ML.jpg", "https://m.media-amazon.com/images/I/41J07xMa0LL.jpg", "https://m.media-amazon.com/images/I/31fOp4ZvSTL.jpg", "https://m.media-amazon.com/images/I/41m5JEhq5tL.jpg", "https://m.media-amazon.com/images/I/61oJqm3cyiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a DSLR Cameras", "average_rating": 4.4, "small_description": ["14 million effective pixels; 1/2.3 inch CCD with primary color filter; 5x optical zoom lens plus approx 6.8x digital zoom ", "3.0 inch wide touch panel LCD; Auto rotation to portrait or landscape view; HD movie 720p with sound ", "6 scene SR auto; Motion Panorama mode with auto stitch; Touch and shoot; Touch and track; Multi Frame Playback; Image search ", "Digital image stabilization; Tracking auto focus ", "Approx. 38MB internal memory; USB 2.0 High-speed; Video output NTSC / PAL selectable; SD/SDHC/SDXC card compatible (card NOT included) ", "14-megapixel CCD sensor; 5x wide-angle optical zoom lens ", "3-inch resistive touch-screen LCD; Dual Direction GUI , 720p HD video capture; one-touch movie button, Easy Web upload to Facebook and YouTube, Capture images and video to SD/SDHC memory cards (not included)"], "total_reviews": 138, "total_answered_questions": 9, "model": "Z90 Purple", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B004HO58L6/ref=twister_B004YD2638?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51XbxKQqtBL.jpg"}, {"is_selected": true, "url": null, "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51PVBF1I4ML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B004HO58M0/ref=twister_B004YD2638?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$68.90", "price": 68.9, "image": "https://m.media-amazon.com/images/I/41+YXsd6PSL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B004HO58MA", "category": "electronics", "query": "Digital Cameras", "page": 119, "small_description_old": "About this item\n \n14 million effective pixels; 1/2.3 inch CCD with primary color filter; 5x optical zoom lens plus approx 6.8x digital zoom 3.0 inch wide touch panel LCD; Auto rotation to portrait or landscape view; HD movie 720p with sound 6 scene SR auto; Motion Panorama mode with auto stitch; Touch and shoot; Touch and track; Multi Frame Playback; Image search Digital image stabilization; Tracking auto focus Approx. 38MB internal memory; USB 2.0 High-speed; Video output NTSC / PAL selectable; SD/SDHC/SDXC card compatible (card NOT included) 14-megapixel CCD sensor; 5x wide-angle optical zoom lens 3-inch resistive touch-screen LCD; Dual Direction GUI \n 720p HD video capture; one-touch movie buttonEasy Web upload to Facebook and YouTubeCapture images and video to SD/SDHC memory cards (not included)Show more"}, {"name": "LFQCHRERT Hair Clipper Professional Beard Trimmer Adjustable Ceramic Blade Haircut Kit Mustache Shaving Clipper with 4 Comb", "product_information": {"Package Dimensions": "11.02 x 9.06 x 7.87 inches", "Item Weight": "2.2 pounds", "Department": "Unisex-adult", "Manufacturer": "jydql", "ASIN": "B09S2Z2GMJ", "Country of Origin": "China"}, "brand": "Brand: WPHPS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=WPHPS", "full_description": "Input Voltage: AC 110-240V Power: 3WOutput Voltage: DC 3V 300mACharging time: 8 hoursUsing time: 60 min.Color: BlackPlug: EUAdapter cable length: 1.8m1. Titanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation.2. Low vibration, exceptionally quiet, it is no problem to haircut even when baby fallen asleep.3. Have 0.8-2mm adjustable haircut limit comb design, and equipped with 4 limit combs(3mm / 6mm / 9mm / 12mm), you can freely control your hair length.4. Cordless and battery dual use, no longer to worry about no electricity, more convenient for use.5. After 8 hours fully charged, the power can be used for 60 minutes continuously.", "pricing": "", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/31R779ZkwbL.jpg", "https://m.media-amazon.com/images/I/41IjwghVOrL.jpg", "https://m.media-amazon.com/images/I/41LIGGd0+oL.jpg", "https://m.media-amazon.com/images/I/41EJnu8fsYL.jpg", "https://m.media-amazon.com/images/I/41cz3MaVZFL.jpg", "https://m.media-amazon.com/images/I/41F907R-cnL.jpg", "https://m.media-amazon.com/images/I/31srnMU8pYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Cutting Tools \u203a Hair Clippers & Accessories", "average_rating": "", "small_description": ["Titanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation. ", "Low vibration, exceptionally quiet, it is no problem to haircut even when baby fallen asleep. ", "Have 0.8-2mm adjustable haircut limit comb design, and equipped with 4 limit combs(3mm / 6mm / 9mm / 12mm), you can freely control your hair length. ", "Cordless and battery dual use, no longer to worry about no electricity, more convenient for use. ", "After 8 hours fully charged, the power can be used for 60 minutes continuously. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1T4UXOGYS2IKU", "seller_name": "maomaodedian", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S2Z2GMJ", "category": "beauty", "query": "Shave & Hair Removal", "page": 163, "small_description_old": "About this item\n \nTitanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation. Low vibration, exceptionally quiet, it is no problem to haircut even when baby fallen asleep. Have 0.8-2mm adjustable haircut limit comb design, and equipped with 4 limit combs(3mm / 6mm / 9mm / 12mm), you can freely control your hair length. Cordless and battery dual use, no longer to worry about no electricity, more convenient for use. After 8 hours fully charged, the power can be used for 60 minutes continuously."}, {"name": "SWEETTY Golf Art Classic Canvas Low Top Sneakers for Unisex Men Women Fashion Sports Shoes Black", "product_information": {"Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n January 11, 2022", "ASIN\n \u200f": "\u200e\n B09Q5J5HKG", "": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_sl_s_sh_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "DESCRIPTION:Rubber strong and soft outsoles for high top canvas shoes; soft canvas upper lining construction with EVA padded insolesComplete with aluminium eyelets and cotton laces up closure for a classic look; perfect for every season, wear them all year roundQualified fabric and well-made products help to ensure comfortable feeling during long time movementShipping Information: 14-28 business days. The processing time may be affected due to external factors such as pandemic or other natural disasters.\u00a0Returns and exchanges: I gladly accept returns, exchanges, and cancellations. Contact me within: a day of delivery. Ship items back within: a day of delivery. Request a cancellation within: 24 hours of purchase.Conditions of return:Buyers are responsible for return shipping costs. If the item is not returned in its original condition, the buyer is responsible for any loss in value.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41aLacVcJpL.jpg", "https://m.media-amazon.com/images/I/51DhavdZbLL.jpg", "https://m.media-amazon.com/images/I/414TW3xbv6L.jpg", "https://m.media-amazon.com/images/I/51iEgJ6XARL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Fashion Sneakers", "average_rating": "", "small_description": ["\u2764 Material: Canvas ", "\u2764 Sizes: Please refer to the size chart picture for your sizes. Remember to measure your feet length and compare our size chart for a perfect fit before ordering. ", "\u2764 This can be used for indoor or outdoor activities such as walking, running, athletic, training, exercise, workout, traveling. Various colors match with any stylish clothes. ", "\u2764 Our shoes are perfectly breathable, soft, durable, fashionable and cleanable. ", "\u2764 [Gift] Hot products festival gift; holiday gift St, mother\u2019s day, father's day, Thanksgiving day, Christmas, Graduation, Birthday, Easter, Wedding and Anniversary. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q5J5HKG", "category": "fashion", "query": "Women's Fashion Sneakers", "page": 89, "small_description_old": "\u2764 Material: Canvas \u2764 Sizes: Please refer to the size chart picture for your sizes. Remember to measure your feet length and compare our size chart for a perfect fit before ordering. \u2764 This can be used for indoor or outdoor activities such as walking, running, athletic, training, exercise, workout, traveling. Various colors match with any stylish clothes. \u2764 Our shoes are perfectly breathable, soft, durable, fashionable and cleanable. \u2764 [Gift] Hot products festival gift; holiday gift St, mother\u2019s day, father's day, Thanksgiving day, Christmas, Graduation, Birthday, Easter, Wedding and Anniversary."}, {"name": "Adidas Pure Game Anti-perspirant Roll On, 48h Protection, 50ml", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "UPC\n \u200f": "\u200e\n 888101022301", "Manufacturer\n \u200f": "\u200e\n Adidas", "ASIN\n \u200f": "\u200e\n B00HTXJLL0", "Best Sellers Rank": "#433,305 in Health & Household (See Top 100 in Health & Household)#3,685 in Deodorant", "#3,685 in Deodorant": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the adidas Store", "brand_url": "https://www.amazon.com/stores/adidas/page/5E398A61-45C7-46F9-A6C6-5B4797CC5063?ref_=ast_bln", "full_description": "48h Protection, 50ml", "pricing": "$7.99", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/21GSd-KXQLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Deodorant", "average_rating": 5, "small_description": [""], "total_reviews": 5, "total_answered_questions": "", "customization_options": "", "seller_id": "A2A61890XJTSHL", "seller_name": "fresh-store", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00HTXJLL0", "category": "beauty", "query": "Deodorants & Antiperspirants", "page": 52, "small_description_old": "About this item Adidas Pure Game Anti-perspirant Roll On"}, {"name": "Sunland Artisans Golfing Kokopelli Metal Wall Art - 18 inches Tall - Rust Finish - Crafted in USA", "product_information": {"Product Dimensions": "18 x 8 x 18 inches", "Item Weight": "3 pounds", "Manufacturer": "Sunland Artisans", "ASIN": "B07BKRV1QH", "Customer Reviews": {"ratings_count": 20, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#1,569,341 in Home & Kitchen (See Top 100 in Home & Kitchen) #8,011 in Wall Sculptures"], "Is Discontinued By Manufacturer": "No", "Batteries Required?": "No"}, "brand": "Brand: Sunland Artisans", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Sunland+Artisans", "full_description": "This rustic 18-inch medium Golfing Kokopelli 3D Metal Wall Art in a rich rust finish measures approximately 18in H x 7.75in W x 0.5in D. This unique Southwestern Decor wall art piece is meticulously plasma-cut from high quality steel that is expertly finished and clear coated to last a lifetime. A joy to own or give as a gift, this indoor/outdoor Southwestern hanging art piece is created in Arizona, USA for Sunland Artisans, a collaboration of nearby skilled artists. It includes a built-in sawtooth hook for easy mounting and adjusting. The metal is cut out into this original design, which gives a 3D effect when hung on the wall. It is then treated to give an amazing color and texture. Clear-coating makes this the perfect weather-resistant outdoor wall decoration. It is best displayed under the protection of and eave or overhang; perfect for patio. It will also weather rustically if displayed exposed to the elements (sun and rain). Proudly made in America. Contains the predominate color(s): Rust.", "pricing": "$46.99", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41co3IdeEiL.jpg", "https://m.media-amazon.com/images/I/41Ojpfp7W7L.jpg", "https://m.media-amazon.com/images/I/610c7hWTtTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Home D\u00e9cor Accents \u203a Sculptures \u203a Wall Sculptures", "average_rating": 4.8, "small_description": ["18-inches high x 7.75-inches wide x 0.5-inches deep ", "Indoor / Outdoor Decor ", "Made to order: Ships in 5-10 business days ", "Built in sawtooth hook for easy mounting "], "total_reviews": 20, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07BKQ7DZW/ref=twister_B07BKRTDKB?_encoding=UTF8&psc=1", "value": "12 in", "price_string": "$25.99", "price": 25.99, "image": null}, {"is_selected": true, "url": null, "value": "18 in", "price_string": "$46.99", "price": 46.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BKV41DX/ref=twister_B07BKRTDKB?_encoding=UTF8&psc=1", "value": "24 in", "price_string": "$84.99", "price": 84.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BKTKX23/ref=twister_B07BKRTDKB?_encoding=UTF8&psc=1", "value": "30 in", "price_string": "$160.99", "price": 160.99, "image": null}]}, "seller_id": "A31OQB6UPS5VR6", "seller_name": "Sunland Home Decor", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07BKRV1QH", "category": "garden", "query": "Wall art", "page": 132, "small_description_old": "About this item 18-inches high x 7.75-inches wide x 0.5-inches deep Indoor / Outdoor Decor Made to order: Ships in 5-10 business days Built in sawtooth hook for easy mounting"}, {"name": "ARM & HAMMER Peroxicare Toothpaste \u2013 Clean Mint- Fluoride Toothpaste , 6 Ounce (Pack of 6)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 9 x 8.5 x 1.9 inches; 2.6 Pounds", "Batteries\n \u200f": "\u200e\n 1 P76 batteries required.", "Manufacturer\n \u200f": "\u200e\n Arm & Hammer", "ASIN\n \u200f": "\u200e\n B001E77OCU", "Best Sellers Rank": "#149,431 in Health & Household (See Top 100 in Health & Household)#1,264 in Toothpaste", "#1,264 in Toothpaste": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Arm & Hammer Store", "brand_url": "https://www.amazon.com/stores/ARMHAMMER/page/EF600F7F-419B-43DE-93D2-E5BA7B742402?ref_=ast_bln", "full_description": "Arm & Hammer PeroxiCare Deep Clean Toothpaste is the ultimate deep cleaning formula that cleans and whitens safely, gently and effectively. The fluoride cavity protection and enamel strengthening formula removes more plaque in hard to reach places than a non-baking soda toothpaste. You get a deep clean that penetrates in between teeth and along the gum line to remove plaque and stains. It also includes a tartar control agent that helps keep tartar from forming. All that combined with the gentle power of Arm & Hammer Baking Soda to safely whiten gives you something to smile about. It\u2019s a low abrasion formula, so the enamel won\u2019t be damaged. The baking soda also neutralizes acids that weaken and erode enamel. Your teeth will look whiter and you\u2019ll know they\u2019re getting a deep clean. This formula includes peroxide, which gently targets tough set-in stains with extra whitening power. Plus, the Clean Mint flavor leaves your breath fresh. Includes one 6 oz. tube of Arm & Hammer PeroxiCare Deep Clean Toothpaste. For stronger, healthier teeth and gums*, choose Arm & Hammer Baking Soda toothpastes. Versatile and affordable. Gentle yet powerful. For generations of families, Arm & Hammer Baking Soda has been the standard of purity, and a trusted household staple in millions of cabinets and pantries. Our toothpastes and many of our personal care products are made with Arm & Hammer Baking Soda, delivering the quality you can count on, from the brand you trust. *when used as part of a complete brushing routine", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41-M-nTTsGL.jpg", "https://m.media-amazon.com/images/I/51TSmesEUQL.jpg", "https://m.media-amazon.com/images/I/51IIhmm1hrL.jpg", "https://m.media-amazon.com/images/I/41QLupQpRdL.jpg", "https://m.media-amazon.com/images/I/41h7NeKxc2L.jpg", "https://m.media-amazon.com/images/I/41+AlgaH5XL.jpg", "https://m.media-amazon.com/images/I/511L2b2D8uL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": 4.8, "small_description": ["GUM HEALTH: Clinically shown to help improve gum health, including reducing gum redness and bleeding, so you can maintain healthy gums. ", "REMOVES BACTERIA: Helps remove plaque bacteria and bacteria associated with gum health problems. ", "POWER OF BAKING SODA: ARM & HAMMER baking soda gently cleans and neutralizes acids that weaken and erode enamel ", "CAVITY PROTECTION: Fluoride toothpaste deep cleans and penetrates between the teeth and along the gum line to remove plaque and help prevent cavities ", "Six- 6 oz. tubes of Arm & Hammer Toothpaste "], "total_reviews": 538, "total_answered_questions": 8, "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B001E77OCU", "category": "beauty", "query": "Toothpaste", "page": 12, "small_description_old": "About this item GUM HEALTH: Clinically shown to help improve gum health, including reducing gum redness and bleeding, so you can maintain healthy gums. REMOVES BACTERIA: Helps remove plaque bacteria and bacteria associated with gum health problems. POWER OF BAKING SODA: ARM & HAMMER baking soda gently cleans and neutralizes acids that weaken and erode enamel CAVITY PROTECTION: Fluoride toothpaste deep cleans and penetrates between the teeth and along the gum line to remove plaque and help prevent cavities Six- 6 oz. tubes of Arm & Hammer Toothpaste"}, {"name": "Staoptics 15x60 UHD Binoculars,High Power Astronomy Binoculars for Stargazing and Long Distance Bird Watching Hunting-Fully Multi-Broadband Coated Lenses View Clear and Bright,Adapt to Tripod Black", "product_information": {"Product Dimensions": "6.38 x 3.03 x 8.94 inches", "Item Weight": "2.98 pounds", "ASIN": "B08YQKXLVG", "Item model number": "UHD1560", "Customer Reviews": {"ratings_count": 14, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#8,891 in Camera & Photo Products (See Top 100 in Camera & Photo Products) #1,454 in Binoculars"], "Date First Available": "March 22, 2021", "Manufacturer": "Shenzhen Youkehuwai Technology Co., Ltd", "Country of Origin": "China"}, "brand": "Visit the Staoptics Store", "brand_url": "https://www.amazon.com/stores/Staoptics/page/CD8B958A-D733-4838-A846-AE7BC4B9506C?ref_=ast_bln", "full_description": "Staoptics 15x60 UHD Binoculas,Advanced Fully Multi-Broadband Coated lenses 90% light transmission to bring optimum brightness and true color across the entire light spectrum.Please note: In order to facilitate the use, the adjustment of the eye mask is relatively loose, please do not buy it if you mind, thank you.", "pricing": "$159.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41gcxEcMSPL.jpg", "https://m.media-amazon.com/images/I/41ygZd4fZtL.jpg", "https://m.media-amazon.com/images/I/4185rwyfgxS.jpg", "https://m.media-amazon.com/images/I/410hlVHnlZL.jpg", "https://m.media-amazon.com/images/I/41tjFtSmtKL.jpg", "https://m.media-amazon.com/images/I/41Er84u5d6L.jpg", "https://m.media-amazon.com/images/I/61my5Yop7xL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Binoculars & Scopes \u203a Binoculars", "average_rating": 4, "small_description": ["\u3010SUPER OPTICAL COMPONENTS\u3011Staoptics 15x60 UHD Binoculars uses top quality optical glass to provide you with a crystal-like vision,ultra-low dispersion coated prisms provide super high-quality images with almost no chromatic aberration. ", "\u301090% light transmission\u3011Using the most advanced Fully Multi-broadband Coated technology,makes anti-reflection and brightening treatment to all visible light (wavelength 380-780nm),so the light transmission reach an astonishing rate at 90%,can provide excellent Resolution and high-clear image,bright field of view even in low light conditions. ", "\u3010FOR LONG RANGE DISTANCE VIEWING\u3011High power 15x magnification Porro prism Binoculars,can provide a large field of view of 219ft/1000yards,60mm large objective lens can provide the greatest image brightness,very suitable for long-range distance Bird watching,Hunting,Astronomy,Stargazing etc outdoor activities. ", "\u3010COMFORTABLE LONG EYE RELIEF\u301120mm Long Eye relief design,you can watch it comfortably no matter you wear glasses or not.Large center focusing pulley for easy focusing,rubber armor provides a secure,non-slip grip,and durable external protection. ", "\u3010WARRANNTY AND DELIVERY CHECKLIST\u3011Your purchase will receive Staoptics brand lifetime warranty service and unlimited technical support.Delivery checklist:Binoculars x1,Protective bag x1,Silicone air blaster x1,Objective lens cover x2,Eyepiece cover x1,Neck strap x1 ,Cleaning cloth x1,Starter manual x1. "], "total_reviews": 14, "total_answered_questions": "", "model": "UHD1560", "customization_options": {"Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08YCW88M9/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "10x50 HD Binoculars", "price_string": "$59.99", "price": 59.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YRLGPTS/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "10x50 UHD Binoculars", "price_string": "$79.99", "price": 79.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YD49FTK/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "15x60 HD Binoculars", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "15x60 UHD Binoculars", "price_string": "$159.99", "price": 159.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08Y6HFTJT/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "8x40 HD Binoculars", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YRSGF3H/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "8x40 UHD Binoculars", "price_string": "$69.99", "price": 69.99, "image": null}]}, "seller_id": "A1I11O8WTPIIU5", "seller_name": "Staoptics", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08YQKXLVG", "category": "electronics", "query": "Binoculars & Scopes", "page": 32, "small_description_old": "About this item\n \n\u3010SUPER OPTICAL COMPONENTS\u3011Staoptics 15x60 UHD Binoculars uses top quality optical glass to provide you with a crystal-like vision,ultra-low dispersion coated prisms provide super high-quality images with almost no chromatic aberration. \u301090% light transmission\u3011Using the most advanced Fully Multi-broadband Coated technology,makes anti-reflection and brightening treatment to all visible light (wavelength 380-780nm),so the light transmission reach an astonishing rate at 90%,can provide excellent Resolution and high-clear image,bright field of view even in low light conditions. \u3010FOR LONG RANGE DISTANCE VIEWING\u3011High power 15x magnification Porro prism Binoculars,can provide a large field of view of 219ft/1000yards,60mm large objective lens can provide the greatest image brightness,very suitable for long-range distance Bird watching,Hunting,Astronomy,Stargazing etc outdoor activities. \u3010COMFORTABLE LONG EYE RELIEF\u301120mm Long Eye relief design,you can watch it comfortably no matter you wear glasses or not.Large center focusing pulley for easy focusing,rubber armor provides a secure,non-slip grip,and durable external protection. \u3010WARRANNTY AND DELIVERY CHECKLIST\u3011Your purchase will receive Staoptics brand lifetime warranty service and unlimited technical support.Delivery checklist:Binoculars x1,Protective bag x1,Silicone air blaster x1,Objective lens cover x2,Eyepiece cover x1,Neck strap x1 ,Cleaning cloth x1,Starter manual x1."}, {"name": "Sunbeam Heated Electric Fleece Throw Comforter Blanket with Controller, Auto Off Setting, Thermofine Wiring, and 3 Heat Settings, Red Plaid", "product_information": {"Item Weight": "3.45 pounds", "Manufacturer": "Sunbeam", "ASIN": "B0836D6CW4", "Customer Reviews": {"ratings_count": 104, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#898,231 in Home & Kitchen (See Top 100 in Home & Kitchen) #64 in Electric Throws #7,767 in Bed Throws"], "Date First Available": "January 25, 2020"}, "brand": "Visit the Sunbeam Store", "brand_url": "https://www.amazon.com/stores/Sunbeam/page/9E7BBFBD-9C03-4548-894E-D6B8C0756CB7?ref_=ast_bln", "full_description": "Treat yourself to some warm, velvet bedding, and find time to relax with the Sunbeam Heated Electric Fleece Blanket. Don't let cold winter weather ruin your home movie nights. With this heated throw blanket, prioritize your comfort and add an extra layer of warmth to your bed or couch. This fleece throw covers an area of 50 inches wide and 60 inches long. With a 3-hour auto-off setting, rest easy and get the kind of deep sleep that you deserve. Let yourself be picky and customize your cozy experience with the included controller. With 3 heat settings and thermofine wiring, regulate the temperature exactly to your liking. To wash your heated blanket, simply disconnect the controller and toss your throw blanket into the washing machine. Make a day out of snuggling up in your bed and giving yourself time to relax. With the Sunbeam Cozy Feet Velvet Heated Blanket, stay warm and get cozy.", "pricing": "$45.99", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/416DVe6EAML.jpg", "https://m.media-amazon.com/images/I/41m80+fsKrL.jpg", "https://m.media-amazon.com/images/I/51+lRf+p8tL.jpg", "https://m.media-amazon.com/images/I/418pdMl-IpL.jpg", "https://m.media-amazon.com/images/I/41kG3+qS-2L.jpg", "https://m.media-amazon.com/images/I/51xLgwTdwbL.jpg", "https://m.media-amazon.com/images/I/51o36zKzLxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Blankets & Throws \u203a Throws", "average_rating": 4.3, "small_description": ["PLAID HEATED BLANKET: Heated throw blanket made for movie nights at home and snuggling up on the couch; 60 inches long and 50 inches wide ", "SUPER-SOFT FLEECE: Extra soft fleece keeps you warm and comfortable throughout the night or as you relax ", "CUSTOMIZABLE: Includes a controller with 3 heat settings designed to customize your relaxation session ", "CONSISTENT TEMPERATURE: Warming system regulates the heat for consistent warmth and some well-deserved sleep ", "NO-STRESS: 3 Hour auto-off gives you peace of mind as you drift comfortably to sleep; Machine washable for easy care; controller disconnects easily from the blanket "], "total_reviews": 104, "total_answered_questions": "", "customization_options": "", "seller_id": "AJT3PZQMTZYLG", "seller_name": "Rygistics", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0836D6CW4", "category": "garden", "query": "Throw Blankets", "page": 86, "small_description_old": "About this item\n \nPLAID HEATED BLANKET: Heated throw blanket made for movie nights at home and snuggling up on the couch; 60 inches long and 50 inches wide SUPER-SOFT FLEECE: Extra soft fleece keeps you warm and comfortable throughout the night or as you relax CUSTOMIZABLE: Includes a controller with 3 heat settings designed to customize your relaxation session CONSISTENT TEMPERATURE: Warming system regulates the heat for consistent warmth and some well-deserved sleep NO-STRESS: 3 Hour auto-off gives you peace of mind as you drift comfortably to sleep; Machine washable for easy care; controller disconnects easily from the blanket"}, {"name": "ATT 5G Phone Signal Booster Home Verizon Straight Talk 4G LTE Cell Phone Signal Booster 700MHz Band 13/12/17 FDD Mobile Signal Repeater Amplifier, up to 4500 SqFt Improve Data and Calls, FCC Approved", "product_information": {"Package Dimensions": "14 x 8.8 x 6.1 inches", "Item Weight": "5.59 pounds", "ASIN": "B0813C1C4J", "Best Sellers Rank": ["#518,675 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #1,050 in Cell Phone Signal Boosters"], "OS": "IOS, Android", "Other display features": "Wireless", "Colour": "Black", "Manufacturer": "aclogue", "Date First Available": "November 5, 2019"}, "brand": "Visit the aclogue Store", "brand_url": "https://www.amazon.com/stores/aclogue/page/950AD6EF-83F8-47E5-A90D-E91A69468954?ref_=ast_bln", "full_description": "", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41XwxfsqfML.jpg", "https://m.media-amazon.com/images/I/51EkH7R3tJL.jpg", "https://m.media-amazon.com/images/I/51sDOZ5SGhL.jpg", "https://m.media-amazon.com/images/I/51xhldU+SFL.jpg", "https://m.media-amazon.com/images/I/51GC+Xk5gDS.jpg", "https://m.media-amazon.com/images/I/51mq7TN3hnL.jpg", "https://m.media-amazon.com/images/I/51l6bOa6MKS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Signal Boosters", "average_rating": "", "small_description": ["\u3010FCC APPROVED\u3011The Home Cell Phone Signal Booster has been approved by FCC,and awarded the FCC authentication certificate. It will boost 5G N12 and 4G Lte band 13/12/17 signal from tower, works with Verion, AT&T, Straight Talk, U.S. Cellular. Compatible with iOS, Android, Windows Phone Systems, Pad (with SIM Card), WiFi hotpots (with SIM Card). Increase the signal strength, reduce dropped calls. No more buffering during Netflix or watching videos, don\u2019t have to go outside for a call any more ", "\u3010AMPLIFY VOICE AND 4G LTE DATA SIGNALS\u3011The Aclogue Home Cell Signal Repeater Booster will boosts 4g lte 5g data and calls, strong and stable signal coverage and internet connection improve your productivity, efficiency and safety by ensuring you are connected. Boosts 4g lte 5g data and calls. You will use your phone to surf the Internet, chat with your friends and get the latest news, enjoy high signal availability to accessing calls and digital data services ", "\u3010MORE GAIN ANTENNA KITS\u3011The highly directional LDPA antenna with more gain increases the performance of the signal booster and work better with low quality signal. The indoor ceiling antenna has more gain and will get you the better signal and larger coverage area. Enjoy Excellent Voice quality and Fast 4G LTE 5G internet connection, Supports multiple phones dimultaneously, fewer dropped calls, higher voice quality, Improve poor signal reception, faster 4G LTE 5G data speeds & streaming ", "\u3010A RELATIVELY LARGE COVERAGE AREA\u3011The Home Cell Phone Signal Booster could cover up to 4000-4500 sq.ft, you will get a more reliable signal anywhere in your house. If the outdoor signal is weak, it will cover a lot less area inside than stated 4000sq.ft. This phone signal booster will only work in US, won't work in other countries ", "\u3010EASY SETUP\u3011Nice heavy duty construction. Metal case ensures efficient heat dissipation and low Operating Temperature. It's widely used in Village, Living Room, Bedroom, Basement, Villa, Apartment, Office, Hotel, Restaurant and so on. It's easy to set up and instructions are easy to follow. Please read the instructions before you start the installation! Please contact us if you need any technical support "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B0813C1C4J", "category": "electronics", "query": "Signal Boosters", "page": 36, "small_description_old": "\u3010FCC APPROVED\u3011The Home Cell Phone Signal Booster has been approved by FCC,and awarded the FCC authentication certificate. It will boost 5G N12 and 4G Lte band 13/12/17 signal from tower, works with Verion, AT&T, Straight Talk, U.S. Cellular. Compatible with iOS, Android, Windows Phone Systems, Pad (with SIM Card), WiFi hotpots (with SIM Card). Increase the signal strength, reduce dropped calls. No more buffering during Netflix or watching videos, don\u2019t have to go outside for a call any more \u3010AMPLIFY VOICE AND 4G LTE DATA SIGNALS\u3011The Aclogue Home Cell Signal Repeater Booster will boosts 4g lte 5g data and calls, strong and stable signal coverage and internet connection improve your productivity, efficiency and safety by ensuring you are connected. Boosts 4g lte 5g data and calls. You will use your phone to surf the Internet, chat with your friends and get the latest news, enjoy high signal availability to accessing calls and digital data services \u3010MORE GAIN ANTENNA KITS\u3011The highly directional LDPA antenna with more gain increases the performance of the signal booster and work better with low quality signal. The indoor ceiling antenna has more gain and will get you the better signal and larger coverage area. Enjoy Excellent Voice quality and Fast 4G LTE 5G internet connection, Supports multiple phones dimultaneously, fewer dropped calls, higher voice quality, Improve poor signal reception, faster 4G LTE 5G data speeds & streaming \u3010A RELATIVELY LARGE COVERAGE AREA\u3011The Home Cell Phone Signal Booster could cover up to 4000-4500 sq.ft, you will get a more reliable signal anywhere in your house. If the outdoor signal is weak, it will cover a lot less area inside than stated 4000sq.ft. This phone signal booster will only work in US, won't work in other countries \u3010EASY SETUP\u3011Nice heavy duty construction. Metal case ensures efficient heat dissipation and low Operating Temperature. It's widely used in Village, Living Room, Bedroom, Basement, Villa, Apartment, Office, Hotel, Restaurant and so on. It's easy to set up and instructions are easy to follow. Please read the instructions before you start the installation! Please contact us if you need any technical support"}, {"name": "OTAO Privacy Screen Protector for iPhone 11 Pro Max/iPhone Xs Max 6.5 Inch True 28\u00b0Anti Spy Tempered Glass Full-Coverage (2-pack)", "product_information": {"Product Dimensions": "6.69 x 3.54 x 0.51 inches", "Item Weight": "3.35 ounces", "ASIN": "B07YCGBPRD", "Customer Reviews": {"ratings_count": 3602, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#5,744 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #819 in Cell Phone Screen Protectors"], "Is Discontinued By Manufacturer": "Yes", "Special Features": "Scratch Resistant", "Colour": "IPhone XS MAX/11 Pro MAX", "Manufacturer": "OTAO", "Date First Available": "September 25, 2019"}, "brand": "Visit the OTAO Store", "brand_url": "https://www.amazon.com/stores/otao/page/5CC84D7F-0D79-4028-9AD4-5D3B39E850D4?ref_=ast_bln", "full_description": "", "pricing": "$9.98", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/513+i7lK0gL.jpg", "https://m.media-amazon.com/images/I/51HoJNt1g4L.jpg", "https://m.media-amazon.com/images/I/51wXaEFDyiL.jpg", "https://m.media-amazon.com/images/I/51IL2UjIRXL.jpg", "https://m.media-amazon.com/images/I/51bq+fkf0hL.jpg", "https://m.media-amazon.com/images/I/51YMuktCXgL.jpg", "https://m.media-amazon.com/images/I/51TXLunrNhL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Maintenance, Upkeep & Repairs \u203a Screen Protectors", "average_rating": 4.5, "small_description": ["Privacy Screen Protector for iPhone 11 Pro Max/iPhone Xs Max (6.5 Inch).Contact us if you are not satisfied with it for any reason. ", "\u3010Privacy Feature\u3011True 28\u00b0 anti-spy iPhone 11 Pro Max/Xs Max tempered glass protects your personal privacy effectively.Great for elevator,bus,metro or other public occasions. ", "\u3010Case-friendly & Full-Coverage\u3011This Privacy screen compatible with most iPhone 11 Pro Max/ Xs Max case.Full coverage design offers a great protection to your phone. ", "\u3010Superior Quality\u3011Scratch resistant and durable.Save Battery,dust-free, fingerprint-free, bubble-free,ultra clear and easy install with guide. ", "\u3010What You Get\u30112*Privacy Screen Protector for iPhone 11 Pro Max/ Xs Max; 1* installation tray; 2*wet cloth; 2*dry cloth; 2*dust remover;1* installation manual. "], "total_reviews": 3602, "total_answered_questions": 19, "customization_options": "", "seller_id": "A2R33UHWJAKU6V", "seller_name": "Otaostore", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07YCGBPRD", "category": "electronics", "query": "Screen Protectors", "page": 28, "small_description_old": "About this item Privacy Screen Protector for iPhone 11 Pro Max/iPhone Xs Max (6.5 Inch).Contact us if you are not satisfied with it for any reason. \u3010Privacy Feature\u3011True 28\u00b0 anti-spy iPhone 11 Pro Max/Xs Max tempered glass protects your personal privacy effectively.Great for elevator,bus,metro or other public occasions. \u3010Case-friendly & Full-Coverage\u3011This Privacy screen compatible with most iPhone 11 Pro Max/ Xs Max case.Full coverage design offers a great protection to your phone. \u3010Superior Quality\u3011Scratch resistant and durable.Save Battery,dust-free, fingerprint-free, bubble-free,ultra clear and easy install with guide. \u3010What You Get\u30112*Privacy Screen Protector for iPhone 11 Pro Max/ Xs Max; 1* installation tray; 2*wet cloth; 2*dry cloth; 2*dust remover;1* installation manual."}, {"name": "Safavieh Home Collection Arlette Retro Glam Grey Velvet Accent Chair", "product_information": {"Item Weight": "\u200e33.9 pounds", "Product Dimensions": "\u200e33 x 32 x 31.5 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eFOX6257B", "ASIN": "B079LQTZNC", "Customer Reviews": {"ratings_count": 21, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#896,401 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,821 in Living Room Chairs"], "Date First Available": "February 5, 2018"}, "brand": "Visit the Safavieh Store", "brand_url": "https://www.amazon.com/stores/SAFAVIEH/page/7FD85B8C-8DE0-4E24-967A-3DA552DF3828?ref_=ast_bln", "full_description": "Inspired by retro collector\u2019s items found in one of new York's top design galleries, this mid-century accent chair brings a luxuriant touch to any room. Upholstered in plush grey velvet, its stylish curves and posh gold Cap legs make an instant statement.", "pricing": "$366.28", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41+4c37lQfL.jpg", "https://m.media-amazon.com/images/I/41giVqsPxPL.jpg", "https://m.media-amazon.com/images/I/41JLc0hkz6L.jpg", "https://m.media-amazon.com/images/I/410Vyoid3xL.jpg", "https://m.media-amazon.com/images/I/413YKTIqQ8L.jpg", "https://m.media-amazon.com/images/I/41DYEcUfObL.jpg", "https://m.media-amazon.com/images/I/41NuWwDuVAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Chairs", "average_rating": 4.1, "small_description": ["This accent chair will add a fresh look to any room. Seat Dimensions (W x D x H)-27.5 x 23 x 19 inches ", "This accent chair features a grey upholstery and a Black Finish ", "Crafted of wood and iron and upholstered in polyester ", "Perfect for a living room, Bedroom, family room, den, library, or study ", "For over 100 years, Safavieh has been crafting products of the highest Quality and unmatched style "], "total_reviews": 21, "total_answered_questions": "", "model": "\u200eFOX6257B", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Grey", "price_string": "$366.28", "price": 366.28, "image": "https://m.media-amazon.com/images/I/41+4c37lQfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079LPCMDJ/ref=twister_B08N1PTGTM?_encoding=UTF8&psc=1", "value": "Hazelwood", "price_string": "$366.28", "price": 366.28, "image": "https://m.media-amazon.com/images/I/41rnyAUlYyL.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B079LQTZNC", "category": "garden", "query": "Accent Chairs", "page": 76, "small_description_old": "About this item This accent chair will add a fresh look to any room. Seat Dimensions (W x D x H)-27.5 x 23 x 19 inches This accent chair features a grey upholstery and a Black Finish Crafted of wood and iron and upholstered in polyester Perfect for a living room, Bedroom, family room, den, library, or study For over 100 years, Safavieh has been crafting products of the highest Quality and unmatched style \n \u203a See more product details"}, {"name": "USB Wall Charger Bling 5V/2.4A 24W Dual Port Fast Charger Plug Cell Phone Block Adapter White for iPhone Android Samsung Pad Tablet etc", "product_information": "", "brand": "Brand: FEENM", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=FEENM", "full_description": "", "pricing": "$10.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51X52CAo2WL.jpg", "https://m.media-amazon.com/images/I/51LMiFzMB2L.jpg", "https://m.media-amazon.com/images/I/41A3uI7F1WL.jpg", "https://m.media-amazon.com/images/I/51q-kFjU4CL.jpg", "https://m.media-amazon.com/images/I/51ZsqJrA-9L.jpg", "https://m.media-amazon.com/images/I/41YZDpY7LBL.jpg", "https://m.media-amazon.com/images/I/51A-kxd+hKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Chargers & Power Adapters \u203a Wall Chargers", "average_rating": 4.7, "small_description": ["This wall charger adds more blings to your life as it has fashionable and sparkly design with selected premium rhinestones ,more bling than any others; it looks better in person. ", "[Powerful Chargers & Power Adapters]: 24W double port USB outlet plug with 5V/2.4A max output for charging two devices at the same time as possible fastest charging speed. ", "\u3010Safe Charging\u3011: Wall Charger Use PC fireproof material, Provide multiple protections, including: Output short circuit, built in over-current, over-voltage and over-heating protection etc. FEENM\u2019S USB Wall Charger has undergone 100% burn-in tests, extending the service life and charging more safety. Automatically stop charging when-the-battery is full. ", "\u3010Compatibility List\u3011: FEENM\u2019S USB Plug (Phone Chargers) Perfect fit for most Cell Phones, Tablets, MP4 players, Digital Cameras, PSP, and other USB devices, Such as iPhone; Pod-touch; Pad,Samsung, Google, Nexus, LG, BLU, Nokia, Sony, Blackberry, Moto, OnePlus, E-book Readers, Bluetooth speaker, MP3 Players and more. ", "[What You Get]: 1PACK mini 24W USB portable wall charger (2-Ports), 12 months warranty and friendly customer service.a great gift for your girl friend , mom etc. "], "total_reviews": 104, "total_answered_questions": "", "customization_options": "", "seller_id": "AB7DGX0ESP337", "seller_name": "FEENM", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B089GN6L6R", "category": "electronics", "query": "iPhone Accessories", "page": 74, "small_description_old": "About this item\n \nThis wall charger adds more blings to your life as it has fashionable and sparkly design with selected premium rhinestones ,more bling than any others; it looks better in person. [Powerful Chargers & Power Adapters]: 24W double port USB outlet plug with 5V/2.4A max output for charging two devices at the same time as possible fastest charging speed. \u3010Safe Charging\u3011: Wall Charger Use PC fireproof material, Provide multiple protections, including: Output short circuit, built in over-current, over-voltage and over-heating protection etc. FEENM\u2019S USB Wall Charger has undergone 100% burn-in tests, extending the service life and charging more safety. Automatically stop charging when-the-battery is full. \u3010Compatibility List\u3011: FEENM\u2019S USB Plug (Phone Chargers) Perfect fit for most Cell Phones, Tablets, MP4 players, Digital Cameras, PSP, and other USB devices, Such as iPhone; Pod-touch; Pad,Samsung, Google, Nexus, LG, BLU, Nokia, Sony, Blackberry, Moto, OnePlus, E-book Readers, Bluetooth speaker, MP3 Players and more. [What You Get]: 1PACK mini 24W USB portable wall charger (2-Ports), 12 months warranty and friendly customer service.a great gift for your girl friend , mom etc."}, {"name": "MorningStar Farms Veggie Breakfast Meatless Sausage Patties, Plant Based Protein, Frozen Breakfast, Maple Flavored, 8oz Bag (6 Patties)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 6.31 x 1.68 x 8 inches; 8 Ounces", "UPC\n \u200f": "\u200e\n 028989100924", "Manufacturer\n \u200f": "\u200e\n Kellogg Company", "ASIN\n \u200f": "\u200e\n B07VQJM594", "Best Sellers Rank": "#362,664 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#536 in Meat Substitutes", "#536 in Meat Substitutes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: MorningStar Farms", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=MorningStar+Farms", "full_description": "A delicious meat-free addition to any balanced breakfast, MorningStar Farms Maple-Flavored Sausage Patties are plant-based and seasoned with an inviting blend of aromatic herbs and spices to delight everyone in your family. With 77% less fat than cooked pork sausage*, MorningStar Farms Maple-Flavored Sausage Patties provide a good source of protein (9g per serving; 10% of daily value). Whether you\u2019re whipping up a breakfast scramble, a short stack of pancakes, or biscuits with veggie gravy, MorningStar Farms Maple-Flavored Sausage Patties are sure to please vegetarians and meat-lovers alike. These veggie sausage patties make a wonderful addition to breakfast sandwiches, too. MorningStar Farms makes it so easy to get your plant-based protein any time of the day; it\u2019s good for you and good for the planet. *Cooked pork sausage contains 16g total fat per serving (38g); MorningStar Farms Maple-Flavored Sausage Patties contain 3.5g total fat per serving (38g).", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51F4K++Bq-L.jpg", "https://m.media-amazon.com/images/I/51GrGJ1+y1L.jpg", "https://m.media-amazon.com/images/I/517UQ5ghfDL.jpg", "https://m.media-amazon.com/images/I/511XQxrgyPL.jpg", "https://m.media-amazon.com/images/I/51DAw+IomUL.jpg", "https://m.media-amazon.com/images/I/51mjOr4ygQL.jpg", "https://m.media-amazon.com/images/I/51efXAa-+8L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Meat Substitutes", "average_rating": 4.9, "small_description": ["Mouthwatering and meatless, MorningStar Farms plant-based Maple-Flavored Sausage Patties are a delicious, meat-free addition to any balanced breakfast ", "Savory veggie sausage patties seasoned with an inviting blend of aromatic herbs and spices; Enjoy with breakfast scrambles, waffles, pancakes, biscuits and veggie gravy, in a breakfast frittata, or even a veggie flatbread ", "100% vegan; A good source of protein (9g per serving; 10% of daily value); Kosher Dairy; Contains wheat and soy ingredients ", "A quick, convenient frozen breakfast side; To prepare, heat in the skillet (recommended), microwave or oven; Makes a tasty snack at work, afternoon pick-me-up, or late-night bite ", "Includes 1, 8-ounce resealable bag containing 6 frozen Maple-Flavored Sausage Patties; Store in the freezer; Packaged for great taste "], "total_reviews": 30, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07VQJM594", "category": "grocery", "query": "Meat Substitutes", "page": 64, "small_description_old": "Mouthwatering and meatless, MorningStar Farms plant-based Maple-Flavored Sausage Patties are a delicious, meat-free addition to any balanced breakfast Savory veggie sausage patties seasoned with an inviting blend of aromatic herbs and spices; Enjoy with breakfast scrambles, waffles, pancakes, biscuits and veggie gravy, in a breakfast frittata, or even a veggie flatbread 100% vegan; A good source of protein (9g per serving; 10% of daily value); Kosher Dairy; Contains wheat and soy ingredients A quick, convenient frozen breakfast side; To prepare, heat in the skillet (recommended), microwave or oven; Makes a tasty snack at work, afternoon pick-me-up, or late-night bite Includes 1, 8-ounce resealable bag containing 6 frozen Maple-Flavored Sausage Patties; Store in the freezer; Packaged for great taste"}, {"name": "Modern LED Floor Lamp PSK001L Silver and White Lighting for Living Room, Study Room, Bedroom, Teens and Kids Room", "product_information": {"Brand": "\u200eNoblespark", "Manufacturer": "\u200eNobleSpark", "Part Number": "\u200ePS-0531MF01", "Item Weight": "\u200e4.7 pounds", "Product Dimensions": "\u200e0.78 x 0.78 x 57 inches", "Item model number": "\u200ePSK001L", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Height": "\u200e57 inches", "Assembled Length": "\u200e0.78 inches", "Assembled Width": "\u200e0.78 inches", "Assembled Depth": "\u200e47 inches", "Assembled Diameter": "\u200e0.78 inches", "Style": "\u200eModern", "Collection": "\u200eModern floor lamp", "Color": "\u200eSilver", "Shape": "\u200eSpiral", "Material": "\u200eMetal, Acrylic", "Finish Types": "\u200eChrome", "Number of Lights": "\u200e1", "Included Components": "\u200eAll included", "Voltage": "\u200e120 Volts", "Specific Uses": "\u200eIndoor use only", "Special Features": "\u200eSource: 1200 lumens LED bulb, bulb included, Bulb not included, Not Dimmable, Shade included", "Shade Color": "\u200eWhite", "Shade Material": "\u200eAcrylic", "Diameter of Lampshade": "\u200e0.78 Inches", "Light Direction": "\u200eUp/Down Light", "Power Source": "\u200eCorded Electric", "Switch Style": "\u200ePush Button", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Type of Bulb": "\u200eLED", "Wattage": "\u200e60 watts", "ASIN": "B01FT2KXJG", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#1,545,893 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #7,254 in Floor Lamps"], "Date First Available": "May 17, 2016"}, "brand": "Brand: noblespark", "brand_url": "https://www.amazon.com/noblespark/b/ref=bl_dp_s_web_10343090011?ie=UTF8&node=10343090011&field-lbr_brands_browse-bin=noblespark", "full_description": "57 inch high, 0.78 inch wide,light resource is built inside, Spiral and thin design.It is great choice for home, for living room, bedroom, especially those cool style", "pricing": "$219.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51v5gF+Lf1L.jpg", "https://m.media-amazon.com/images/I/316Wv7wxfML.jpg", "https://m.media-amazon.com/images/I/41OVXdVuzrL.jpg", "https://m.media-amazon.com/images/I/21U3iLZ42VL.jpg", "https://m.media-amazon.com/images/I/51FwV6ev0yL.jpg", "https://m.media-amazon.com/images/I/31UHeNMShPL.jpg", "https://m.media-amazon.com/images/I/319uULTZMgL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Lamps & Shades \u203a Floor Lamps", "average_rating": 5, "small_description": ["modern contemporary style, art decor design for home improvement or gallery: living room, bedroom, teen or kids room ", "57 inch Spiral and ultra-thin lamp body, Silver Aluminum and white Acrylic, perfect combination of metal and light, easy to assemble , easy to clean ", "With its modern design thin size, it could be fitted in any style room easily, and you don't need to buy bulbs anymore! ", "on/off foot-step switch button, non-dimmable, easy to control, safe and convenient even for kids ", "US design, Japanese Quality, 1 year warranty from us, we will always make sure it works properly for you "], "total_reviews": 1, "total_answered_questions": 6, "model": "\u200ePSK001L", "customization_options": "", "seller_id": "A1OA6DEO9TKVXT", "seller_name": "californialighting", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01FT2KXJG", "category": "garden", "query": "Floor lamps", "page": 390, "small_description_old": "About this item modern contemporary style, art decor design for home improvement or gallery: living room, bedroom, teen or kids room 57 inch Spiral and ultra-thin lamp body, Silver Aluminum and white Acrylic, perfect combination of metal and light, easy to assemble , easy to clean With its modern design thin size, it could be fitted in any style room easily, and you don't need to buy bulbs anymore! on/off foot-step switch button, non-dimmable, easy to control, safe and convenient even for kids US design, Japanese Quality, 1 year warranty from us, we will always make sure it works properly for you \n \u203a See more product details"}, {"name": "Mayton 12-Inch King Size Mattress, Box Spring And Bed Frame - Foam Encased Soft Pillow Top Hybrid Contouring Comfort, No Assembly Required 78x79", "product_information": {"Item Weight": "\u200e55 pounds", "Product Dimensions": "\u200e79 x 78 x 20 inches", "Country of Origin": "\u200eUSA", "Item model number": "\u200e12-inch King Size", "ASIN": "B07SXLVPF3", "Date First Available": "June 6, 2019"}, "brand": "Visit the Mayton Store", "brand_url": "https://www.amazon.com/stores/Mayton/page/93999B4C-3674-4060-BE5D-663CEA6305F7?ref_=ast_bln", "full_description": "Mayton Hybrid mattress is the way to experience the pressure relieving benefits of memory foam while retaining the classic feel of an innerspring mattress. Gently cradles you in the individualized comfort and support. It conforms to your every curve reducing pressure points and delivering correct alignment for your neck and spine. The innerspring coils are situated between layers of foam,creating a sturdy core cushioned by soft, flexible padding for extra comfort. This mattress and box spring meets federal flammability standard 16 CFR 1633.", "pricing": "$884.03", "list_price": "", "availability_status": "Available to ship in 1-2 days.", "images": ["https://m.media-amazon.com/images/I/51IEzqXau0S.jpg", "https://m.media-amazon.com/images/I/31Ze5Eas9qS.jpg", "https://m.media-amazon.com/images/I/41RBBqm+BES.jpg", "https://m.media-amazon.com/images/I/41xFuPeEK+S.jpg", "https://m.media-amazon.com/images/I/41qKzN8k6aS.jpg", "https://m.media-amazon.com/images/I/41WaXky78yS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Mattresses & Box Springs \u203a Mattresses", "average_rating": "", "small_description": ["QUALITY YOU CAN FEEL : Only the best in raw materials are used to ensure durability and practicality. The high density foam used makes the mattress highly durable & long-lasting. The high number of coil counts gives the mattress the comfort level desired. ", "PILLOW TOP PLUSH LAYER : The pillow top provides superior softness and resiliency for unsurpassed comfort. The plush layer of the pillow top allows proper support for the spine while also contouring to the back, hips, and shoulders. ", "FOAM ENCASEMENT FOR SOLID EDGE SUPPORT : The foam encased edge support system in this spring air mattress is bordered with high density foam. With the foam encasement, the sleeping area is enlarged, as well as providing a solid sitting surface. ", "HYBRID MATTRESS AN IDEAL CHOICE : The hybrid mattress combines an innerspring system with memory foam to deliver the benefits of both technologies. Hybrids allow sleepers to enjoy the perfect blend of sturdy support and contouring comfort. ", "STRONG DURABLE BOX SPRING : This 8 inch wood box spring/ foundation supports all mattress types and actually increases the mattress's longevity by preventing sagging. No assembly is required it ships ready to use, just place the Mayton mattress on top and enjoy a restful sleep "], "total_reviews": "", "total_answered_questions": "", "model": "\u200e12-inch King Size", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07SVJTK85/ref=twister_B09N2FWBN2?_encoding=UTF8&psc=1", "value": "39x74", "price_string": "$486.94", "price": 486.94, "image": "https://m.media-amazon.com/images/I/51IEzqXau0S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SVJTW8T/ref=twister_B09N2FWBN2?_encoding=UTF8&psc=1", "value": "53x74", "price_string": "$577.40", "price": 577.4, "image": "https://m.media-amazon.com/images/I/51IEzqXau0S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SSCS5FD/ref=twister_B09N2FWBN2?_encoding=UTF8&psc=1", "value": "59x79", "price_string": "$598.95", "price": 598.95, "image": "https://m.media-amazon.com/images/I/51IEzqXau0S.jpg"}, {"is_selected": true, "url": null, "value": "78x79", "price_string": "$884.03", "price": 884.03, "image": "https://m.media-amazon.com/images/I/51IEzqXau0S.jpg"}], "Size": null}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07SXLVPF3", "category": "garden", "query": "Mattresses", "page": 313, "small_description_old": "About this item QUALITY YOU CAN FEEL : Only the best in raw materials are used to ensure durability and practicality. The high density foam used makes the mattress highly durable & long-lasting. The high number of coil counts gives the mattress the comfort level desired. PILLOW TOP PLUSH LAYER : The pillow top provides superior softness and resiliency for unsurpassed comfort. The plush layer of the pillow top allows proper support for the spine while also contouring to the back, hips, and shoulders. FOAM ENCASEMENT FOR SOLID EDGE SUPPORT : The foam encased edge support system in this spring air mattress is bordered with high density foam. With the foam encasement, the sleeping area is enlarged, as well as providing a solid sitting surface. HYBRID MATTRESS AN IDEAL CHOICE : The hybrid mattress combines an innerspring system with memory foam to deliver the benefits of both technologies. Hybrids allow sleepers to enjoy the perfect blend of sturdy support and contouring comfort. STRONG DURABLE BOX SPRING : This 8 inch wood box spring/ foundation supports all mattress types and actually increases the mattress's longevity by preventing sagging. No assembly is required it ships ready to use, just place the Mayton mattress on top and enjoy a restful sleep \n \u203a See more product details"}, {"name": "30pcs New Bondable Lingual Buttons Oval Base Dental Orthodontic Dental Materials Dentist Orthodontist", "product_information": {"Package Dimensions": "6.38 x 4.92 x 0.24 inches", "Item Weight": "0.317 ounces", "ASIN": "B01A0VZQHK", "Item model number": "ButtonsOval Base", "Customer Reviews": {"ratings_count": 13, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#244,971 in Health & Household (See Top 100 in Health & Household) #588 in Personal Orthodontic Supplies"], "Is Discontinued By Manufacturer": "No", "Date First Available": "December 30, 2015"}, "brand": "Brand: Smile Dental", "brand_url": "https://www.amazon.com/Smile-Dental/b/ref=bl_dp_s_web_10796578011?ie=UTF8&node=10796578011&field-lbr_brands_browse-bin=Smile+Dental", "full_description": "Description : 30pcs Dental Bondable Orthodontic Lingual Buttons Type : Oval Base Packing : 10pcs / bag, 3bags =1 lot Minimum order quantity : 1 lot = 3 bags = 30pcs. 80g round mesh base", "pricing": "$12.90", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31JBebTdBAL.jpg", "https://m.media-amazon.com/images/I/41jycnsOAVL.jpg", "https://m.media-amazon.com/images/I/41oG5QnPf1L.jpg", "https://m.media-amazon.com/images/I/310mwdDjmQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Orthodontic Supplies", "average_rating": 4.4, "small_description": ["Bondable Lingual Button 80g mesh oval base ", "Packing : 10pcs / bag, total 3 bags "], "total_reviews": 13, "total_answered_questions": "", "model": "ButtonsOval Base", "customization_options": "", "seller_id": "A1889FU0NYX1Q5", "seller_name": "DentalSmile", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B01A0VZQHK", "category": "beauty", "query": "Orthodontic Supplies", "page": 3, "small_description_old": "Bondable Lingual Button 80g mesh oval base dental materials orthodontics Packing : 10pcs / bag, total 3 bags"}, {"name": "Henn&Hart Mid-Century Modern Metal Table Lamp with Fabric Shade in Blackened Bronze (TL0483)", "product_information": {"Manufacturer": "\u200eHenn&Hart", "Part Number": "\u200eTL0483", "Item Weight": "\u200e4.63 pounds", "Product Dimensions": "\u200e14 x 14 x 27.25 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eTL0483", "Color": "\u200eBlackened Bronze", "Style": "\u200eMid Century Modern", "Material": "\u200eFabric", "Shape": "\u200eRound", "Power Source": "\u200eCorded Electric", "Wattage": "\u200e60 watts", "Installation Method": "\u200eCountertop", "Item Package Quantity": "\u200e1", "Number Of Pieces": "\u200e1", "Type of Bulb": "\u200eIncandescent", "Mounting Type": "\u200eTabletop", "Switch Style": "\u200eToggle", "Included Components": "\u200eLamp and Shade", "Batteries Required?": "\u200eNo", "Warranty Description": "\u200eNo warranty.", "ASIN": "B096G437B4", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#404,456 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #4,937 in Table Lamps"], "Date First Available": "June 2, 2021"}, "brand": "Visit the Henn&Hart Store", "brand_url": "https://www.amazon.com/stores/HennHart/page/D6B7BC7B-D72C-4A1A-BADE-006342C737A7?ref_=ast_bln", "full_description": "The sleek Art Deco-inspired lines of this table lamp call to mind a soaring city skyline, bringing a luxe touch of glamour to any room. Neutral metallic finishes blend seamlessly with many decor styles and color schemes. Equally at home in a contemporary or Mid-Centure Modern design theme, this lamp makes a bold style statement.", "pricing": "$71.30", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock (more on the way). Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41l7ZsSt4zS.jpg", "https://m.media-amazon.com/images/I/21fKQ5W-iFS.jpg", "https://m.media-amazon.com/images/I/21BjEDsoH6S.jpg", "https://m.media-amazon.com/images/I/51Dn-PpfADS.jpg", "https://m.media-amazon.com/images/I/31tI-mrKE6S.jpg", "https://m.media-amazon.com/images/I/415USvuKRZL.jpg", "https://m.media-amazon.com/images/I/51aaL7Q9eKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Lamps & Shades \u203a Table Lamps", "average_rating": 5, "small_description": ["Hand crafted blackened bronze finish is applied to the steel frame. ", "Featuring a drum shaped shade. ", "The shade is a crisp chiffon white color and is made of 100% linen with polystyrene lining for durability. ", "Rated for one 60W incandescent bulb; 9W LED bulb, 13W fluorescent (CFL) bulb, or 9W self-ballasted LED bulb. E26-base bulb. ", "Includes a 6 ft. cord. ", "14\"W x 14\"D x 27.25\"H "], "total_reviews": 1, "total_answered_questions": "", "model": "\u200eTL0483", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": "", "asin": "B096G437B4", "category": "garden", "query": "Table lamps", "page": 55, "small_description_old": "About this item\n \nHandcrafted blackened bronze finish is applied to the steel frame. Featuring a drum shaped shade. Includes a 6 ft. cord. Socket Rated for one 60W incandescent bulb; 9W LED bulb, 13W fluorescent (CFL) bulb, or 9W self-ballasted LED bulb. E26-base bulb. \n \u203a See more product details"}, {"name": "haoricu Womens Platform Sandals Summer Fashion Ladies Bow Tie Flats Rome Casual Basic Slipper", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n March 4, 2020", "Manufacturer\n \u200f": "\u200e\n haoricu_2357", "ASIN\n \u200f": "\u200e\n B085HG7X82", "Best Sellers Rank": "#236,440 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#603 in Women's Flat Sandals #64,004 in Women's Clothing", "#603 in Women's Flat Sandals": "", "#64,004 in Women's Clothing": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: haoricu", "brand_url": "https://www.amazon.com/haoricu/b/ref=bl_sl_s_ap_web_18203055011?ie=UTF8&node=18203055011&field-lbr_brands_browse-bin=haoricu", "full_description": "\ud83d\udc96Size: 35 US: 5.5 UK: 3.5 EU: 35 CN: 225 Foot Length: 22.5cm/8.9\" Foot wide: 8-8.5cm/3.2-3.4\" \ud83d\udc96Size: 36 US: 6 UK: 4 EU: 35.5 CN: 230 Foot Length: 23cm/9.1\" Foot wide: 8.5cm/3.4\" \ud83d\udc96Size: 37 US: 6.5-7 UK: 4.5 EU: 36 CN: 235 Foot Length: 23.5cm/9.3\" Foot wide: 8.5-9cm/3.4-3.5\" \ud83d\udc96Size: 38 US: 7.5 UK: 5 EU: 37 CN: 240 Foot Length: 24cm/9.5\" Foot wide: 9cm/3.5\" \ud83d\udc96Size: 39 US: 8 UK: 5.5 EU: 38 CN: 245 Foot Length: 24.5cm/9.7\" Foot wide: 9-9.5cm/3.5-3.7\" \ud83d\udc96Size: 40 US: 8.5 UK: 6 EU: 39 CN: 250 Foot Length: 25cm/9.8\" Foot wide: 9.5cm/3.7\" \ud83d\udc96Size: 41 US: 9 UK: 6.5 EU: 39.5 CN: 255 Foot Length: 25.5cm/10\" Foot wide: 9.5-10cm/3.7-3.9\" \ud83d\udc96Size: 42 US: 9.5-10 UK: 7 EU: 40 CN: 260 Foot Length: 26cm/10.2\" Foot wide: 10cm/3.9\" \ud83d\udc96Size: 43 US: 10.5 UK: 7.5 EU: 41 CN: 265 Foot Length: 26.5cm/10.4\" Foot wide: 10.5cm/4.1\"", "pricing": "$14.98$25.98", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41NVPyoBysL.jpg", "https://m.media-amazon.com/images/I/41ow5ZWTCHL.jpg", "https://m.media-amazon.com/images/I/51r6I7-6-OL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Frosting, Icing & Decorations \u203a Cupcake Toppers", "average_rating": 3.7, "small_description": ["\u2764\ufe0fCotton Blend ", "Imported ", "Polyester lining ", "Button closure ", "\u2764\ufe0fold full round top 3 cool beach country 5 soccer wear tank out cartoon concert 2x active novelty xl light large new in retro pride wine purple lace army blessed petite cross adult 3/4 mouse 3x jeep journey 100 sleep dollars yellow floral best tight custom sleeves xxl small i on 2018 scoop men yoga baggy nurse 4x sports gray bling jersey back hot slim polyester clearance relaxed style born high us packs 2xl super may prime sarcastic baseball 1979 jesus bride fun skull ", "\u2764\ufe0fMens shirts Clearance short sleeve casual clearance button down big and tall shirts hoodies sweatshirts sweaters jackets coats jeans pants shorts active swim suits sport underwear socks sleep lounge t-shirts tanks ", "\u2764\ufe0fGreat for home street camp hip hop sport exercise and daily wear mens sweatshirts hoodies men shirts long sleeve men shirts funny men shirts vintage mens t shirt hoodie sweatshirts for men young mens shirts mens t shirt design mens tops casual mens sweatshirts cotton mens sweatshirts hooded mens long sleeve t shirts cotton men sweatshirt sport mens jacket casual mens jacket cotton men blouse long sleeve blouse for men long mens sweatshirts graphic lightweight sweatshirt , \u2764\ufe0fwomen's half sleeves plain flowy shirts ruffles hem tunic tops blouses embroidered hoodie plaid crop top sweatshirt women v neck 3/4 bell sleeve casual lace patchwork plus size thermal open front cropped cardigan knit shrug basic lightweight pullover halloween pumpkin long sweatshirts color block loose fit tunics crew elbow patch camouflage print hooded button cowl crewneck button-up ruched short shirt round pocket t off shoulder slouchy oversized soft sweater outwear coat, \u2764\ufe0fWomens String Tie Flat Women's Mugara Ballet Flat Women's Glitter Shinny flat Flat Heel Oxford women Office Pointed toe Flats yoga socks for women lady Spring Autumn Shoe Square Heel Shoes pointed toe oxfords women outside shoes for women multi color flat shoes for women bowknot flats women Independence Day Member Day July 4th"], "total_reviews": 109, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41NVPyoBysL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085H93K4P/ref=twister_B088KB9TR6", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41AmftUHTtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085HNYF11/ref=twister_B088KB9TR6", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41D6AK7QzfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085H8VP1W/ref=twister_B088KB9TR6", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Ip1JPYaRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097ZLBQBW/ref=twister_B088KB9TR6", "value": "01-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41boFS46maL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097ZM1375/ref=twister_B088KB9TR6", "value": "01-brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51YvsSrQ23S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097ZM92Q7/ref=twister_B088KB9TR6", "value": "01-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51zOt7PlM1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097ZNKT6Y/ref=twister_B088KB9TR6", "value": "01-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51g6AxsmjBS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085HJJDKW/ref=twister_B088KB9TR6", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41kCuy2OfCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097ZNRC7V/ref=twister_B088KB9TR6", "value": "01-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51snID5vTdS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916YY5JQ/ref=twister_B088KB9TR6", "value": "Z Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IkQRwy-RL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916Z1NZ4/ref=twister_B088KB9TR6", "value": "Z Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rnpUQYFLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916YQBBK/ref=twister_B088KB9TR6", "value": "Z Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51CMqtPoQNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916ZF3GS/ref=twister_B088KB9TR6", "value": "Z Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sneyH0c6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916ZQ32K/ref=twister_B088KB9TR6", "value": "Z White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4115DmVL4bL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916XVW76/ref=twister_B088KB9TR6", "value": "Z Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41N-5ByxrcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0921WF96L/ref=twister_B088KB9TR6", "value": "Brown 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41cbA21f4fL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0922CHSC2/ref=twister_B088KB9TR6", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410ymiQPuRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0921VMH1T/ref=twister_B088KB9TR6", "value": "Orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41QtNG2ZNRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R1RH4KQ/ref=twister_B088KB9TR6", "value": "A-brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Mgd1joN4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R1Q4KD8/ref=twister_B088KB9TR6", "value": "A-pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Jul0ztlAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0921B45QW/ref=twister_B088KB9TR6", "value": "Light Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Nk2ErbQUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R1QF2XJ/ref=twister_B088KB9TR6", "value": "A-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/415DnKyTC6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R1S3J2G/ref=twister_B088KB9TR6", "value": "A-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Gj0btRH2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916N6DPG/ref=twister_B088KB9TR6", "value": "Z Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41cevtCNX1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916YMWHG/ref=twister_B088KB9TR6", "value": "Z Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41CiMg2yeSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0916YVTS1/ref=twister_B088KB9TR6", "value": "Z Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-2ydkvH4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0921X8SZ6/ref=twister_B088KB9TR6", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41R2ttJ0ZwL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "4.5", "asin": "B085HG7X82"}, {"is_selected": false, "is_available": true, "value": "5", "asin": "B085HS4DPM"}, {"is_selected": false, "is_available": false, "value": "5.5", "asin": "B097ZKNY7V"}, {"is_selected": false, "is_available": false, "value": "6", "asin": "B097ZLQSTF"}, {"is_selected": false, "is_available": false, "value": "6-6.5", "asin": "B0921RD1YY"}, {"is_selected": false, "is_available": true, "value": "6/6.5", "asin": "B085HF6K7T"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B085H9L7FG"}, {"is_selected": false, "is_available": false, "value": "7.5", "asin": "B097ZMM565"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B085HGD5Z3"}, {"is_selected": false, "is_available": false, "value": "8.5", "asin": "B097ZLS2DY"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B085HGM2SP"}, {"is_selected": false, "is_available": false, "value": "9.5-10", "asin": "B09171HG96"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B085H6S438"}, {"is_selected": false, "is_available": false, "value": "10.5", "asin": "B097ZLJFNM"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B085HF9TLX"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B085HKS13H"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B085HGD5Z3", "category": "beauty", "query": "Skin Care Maternity", "page": 13, "small_description_old": "\u2764\ufe0fCotton Blend Imported Polyester lining Button closure \u2764\ufe0fold full round top 3 cool beach country 5 soccer wear tank out cartoon concert 2x active novelty xl light large new in retro pride wine purple lace army blessed petite cross adult 3/4 mouse 3x jeep journey 100 sleep dollars yellow floral best tight custom sleeves xxl small i on 2018 scoop men yoga baggy nurse 4x sports gray bling jersey back hot slim polyester clearance relaxed style born high us packs 2xl super may prime sarcastic baseball 1979 jesus bride fun skull \u2764\ufe0fMens shirts Clearance short sleeve casual clearance button down big and tall shirts hoodies sweatshirts sweaters jackets coats jeans pants shorts active swim suits sport underwear socks sleep lounge t-shirts tanks \u2764\ufe0fGreat for home street camp hip hop sport exercise and daily wear mens sweatshirts hoodies men shirts long sleeve men shirts funny men shirts vintage mens t shirt hoodie sweatshirts for men young mens shirts mens t shirt design mens tops casual mens sweatshirts cotton mens sweatshirts hooded mens long sleeve t shirts cotton men sweatshirt sport mens jacket casual mens jacket cotton men blouse long sleeve blouse for men long mens sweatshirts graphic lightweight sweatshirt \n \u2764\ufe0fwomen's half sleeves plain flowy shirts ruffles hem tunic tops blouses embroidered hoodie plaid crop top sweatshirt women v neck 3/4 bell sleeve casual lace patchwork plus size thermal open front cropped cardigan knit shrug basic lightweight pullover halloween pumpkin long sweatshirts color block loose fit tunics crew elbow patch camouflage print hooded button cowl crewneck button-up ruched short shirt round pocket t off shoulder slouchy oversized soft sweater outwear coat\u2764\ufe0fWomens String Tie Flat Women's Mugara Ballet Flat Women's Glitter Shinny flat Flat Heel Oxford women Office Pointed toe Flats yoga socks for women lady Spring Autumn Shoe Square Heel Shoes pointed toe oxfords women outside shoes for women multi color flat shoes for women bowknot flats women Independence Day Member Day July 4thShow more"}, {"name": "Azzaro Wanted Girl Tonic Eau de Toilette", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.6 x 2.75 x 4.25 inches; 2.82 Ounces", "Item model number\n \u200f": "\u200e\n 10022867", "Manufacturer\n \u200f": "\u200e\n AmazonUs/PG52G", "ASIN\n \u200f": "\u200e\n B0851PC2TM", "Country of Origin\n \u200f": "\u200e\n France", "Best Sellers Rank": "#347,592 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,173 in Women's Eau de Toilette", "#2,173 in Women's Eau de Toilette": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$99.00", "list_price": "", "availability_quantity": 16, "availability_status": "Only 16 left in stock (more on the way). Only 16 left in stock (more on the way).", "images": ["https://m.media-amazon.com/images/I/31zfNoHsmWL.jpg", "https://m.media-amazon.com/images/I/41PqL1YVbGL.jpg", "https://m.media-amazon.com/images/I/41QiTpQVg9L.jpg", "https://m.media-amazon.com/images/I/41n55yGmh5L.jpg", "https://m.media-amazon.com/images/I/41jkAbQq+IL.jpg", "https://m.media-amazon.com/images/I/415vZa9Q4WL.jpg", "https://m.media-amazon.com/images/I/41WkJJfW6oL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Eau de Toilette", "average_rating": 3.4, "small_description": [""], "total_reviews": 8, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B089RSZFRK/ref=twister_B093YR1X6J?_encoding=UTF8&psc=1", "value": "1 Fl Oz", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31NrneneneL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0851Q2N5B/ref=twister_B093YR1X6J?_encoding=UTF8&psc=1", "value": "1.7 Fl Oz", "price_string": "$83.94", "price": 83.94, "image": "https://m.media-amazon.com/images/I/41XGie1A+ZL.jpg"}, {"is_selected": true, "url": null, "value": "2.7 Fl Oz", "price_string": "$99.00", "price": 99, "image": "https://m.media-amazon.com/images/I/31zfNoHsmWL.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0851PC2TM", "category": "beauty", "query": "Children's Fragrance", "page": 8, "small_description_old": ""}, {"name": "Matching Couple Hoodies Set Funny Hubby Wifey Hoodies Pullover Sweater Honeymoon", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n August 21, 2019", "ASIN\n \u200f": "\u200e\n B07WY3YFJJ", "Best Sellers Rank": "#4,163,395 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#71,968 in Women's Novelty Hoodies #2,537,265 in Women's Fashion", "#71,968 in Women's Novelty Hoodies": "", "#2,537,265 in Women's Fashion": ""}, "brand": "Brand: Soul Couple", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Soul+Couple", "full_description": "\ud83d\ude46Cleaning advice\ud83c\udf80: \ud83d\udc9f Please wash below 40 \u2103 water temperature. After that they dry naturally. Do not iron directly on graphics. Otherwise hoodies could be damaged. \ud83c\udf49Materials: 100% cotton \ud83c\udfa8Supporting Privat Design\ud83c\udfe9: \ud83d\udd06All our clothes (Couple clothing and Sister clothing) support privat design. You can send the number or your opinion via Amazon Email to us. We will change and print your super opinion on your shirts. Then we will send the T-Shirts from China for you! \ud83d\udc07Shop \u2665: \u2705We are a shop that focuses on couples and sister T-Shirt. We have many styles that you can choose. Our products are through strict selection. You can rely on it. \ud83d\udd05Logistic time\ud83c\udf3c: It takes 7-21 days for the courier to arrive. You need to wait patiently. If you need to arrive before a certain holiday, please remember to purchase in advance. \ud83c\udf44Customer Service\ud83d\udcde: \u2709Customer satisfaction is always our highest goal. If you have any questions, you can contact us at any time. We reply to you as fast as we can. Thank you for your patronage!", "pricing": "$23.99$37.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41puO0TMmvL.jpg", "https://m.media-amazon.com/images/I/51g-Lg8fbWL.jpg", "https://m.media-amazon.com/images/I/41QQcjdyKtL.jpg", "https://m.media-amazon.com/images/I/4155lxcXEGL.jpg", "https://m.media-amazon.com/images/I/51vDeDX-VeL.jpg", "https://m.media-amazon.com/images/I/51QmzySc2lL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Hoodies", "average_rating": "", "small_description": ["100% Cotton ", "\ud83d\ude0dHigh quality \ud83c\udf53: Made of 100% cotton. Extremely soft and pleasant. The fabric of these Hubby Wifey sweatshirts are thick and do not yellow. No shrinkage and not hard. If you put it on, you feel very comfortable. Perfekt for spring and autumn.\ud83d\udc95 ", "\ud83c\udf4b Important symbol of your love\ud83d\udc9a: Hubby Wifey Couple Pullover Set is a romantic symbol full of love for a couple. Hubby Wifey hoodies represent the sweet love and happiness of both of you. \ud83d\udc95 ", "\ud83d\udc6cGood gift\ud83c\udf32:Hubby Wifey Couple sweaters set can be used as a Christmas gift, birthday gift, valentines day gift, anniversary gift, wedding gift, anniversary gift for couple. Couple sweatshirt also as a gift for your parents. The partner look hoodies are for shopping, Disneyland and personality wedding photos. \ud83d\udc95 ", "\ud83d\udc78Modern technology\ud83d\udc83:Matching couple Sweartshirts set with imprint. Digital Screen Printing Technology. Made of environmentally friendly materials. Graphics are bright with vibrant colors without the chance to crack or fade. \ud83d\udc95 ", "\ud83d\udc12Satisfaction guarantee \ud83d\udcaf: The package contains two hoodies. US size. Please read the size chart before buying. We believe that you will like our Matching King and Queen hoodies pullover. If you are not 100% satisfied, you can return the sweaters unconditionally and we will refund the full purchase price. \ud83d\udc95 "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07WNYVG71/ref=twister_B07WRVKSXT", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Di39vs2fL.jpg"}, {"is_selected": true, "url": null, "value": "Gery", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41puO0TMmvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WNYY9N3/ref=twister_B07WRVKSXT", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qDHw-lRGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LLQY9DQ/ref=twister_B07WRVKSXT", "value": "Black-hubby", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41dBWo7pAaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LLW3PWN/ref=twister_B07WRVKSXT", "value": "Black-wifey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Yq6zEPFwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LLYPD9Q/ref=twister_B07WRVKSXT", "value": "Grey-hubby", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41LUDPwb6kL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LM1GX61/ref=twister_B07WRVKSXT", "value": "Grey-wifey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fNHt2ObxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LLPNF4R/ref=twister_B07WRVKSXT", "value": "White-hubby", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31eI1MZa5mL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LM1YD4J/ref=twister_B07WRVKSXT", "value": "White-wifey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31jUKByAmiL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Hubby-2XL+Wifey-S", "asin": "B07WV1BSH5"}, {"is_selected": false, "is_available": true, "value": "Hubby-L+Wifey-S", "asin": "B07WP1RRFL"}, {"is_selected": false, "is_available": true, "value": "Hubby-M+Wifey-S", "asin": "B07WRVY2DV"}, {"is_selected": false, "is_available": true, "value": "Hubby-S+Wifey-2XL", "asin": "B07WRTP654"}, {"is_selected": false, "is_available": true, "value": "Hubby-S+Wifey-L", "asin": "B07WSZQCX4"}, {"is_selected": false, "is_available": true, "value": "Hubby-S+Wifey-M", "asin": "B07WNZYRN1"}, {"is_selected": false, "is_available": true, "value": "Hubby-S+Wifey-S", "asin": "B07WX6JQ1Q"}, {"is_selected": false, "is_available": true, "value": "Hubby-S+Wifey-XL", "asin": "B07WX6WDSF"}, {"is_selected": false, "is_available": true, "value": "Hubby-XL+Wifey-S", "asin": "B07WNZ97JZ"}, {"is_selected": false, "is_available": false, "value": "Small", "asin": "B09LLQY9DQ"}, {"is_selected": false, "is_available": true, "value": "Hubby-2XL+Wifey-M", "asin": "B07WRVMK8N"}, {"is_selected": false, "is_available": true, "value": "Hubby-L+Wifey-M", "asin": "B07WTYL1SF"}, {"is_selected": false, "is_available": true, "value": "Hubby-M+Wifey-2XL", "asin": "B07WRV8CMP"}, {"is_selected": false, "is_available": true, "value": "Hubby-M+Wifey-L", "asin": "B07WNYY9N4"}, {"is_selected": false, "is_available": true, "value": "Hubby-M+Wifey-M", "asin": "B07WTZVS6X"}, {"is_selected": false, "is_available": true, "value": "Hubby-M+Wifey-XL", "asin": "B07WY53LYT"}, {"is_selected": false, "is_available": true, "value": "Hubby-XL+Wifey-M", "asin": "B07WX7ZTTH"}, {"is_selected": false, "is_available": false, "value": "Medium", "asin": "B09LLQB2YL"}, {"is_selected": false, "is_available": true, "value": "Hubby-2XL+Wifey-L", "asin": "B07WSZB8YL"}, {"is_selected": false, "is_available": true, "value": "Hubby-L+Wifey-2XL", "asin": "B07WNZ5K1V"}, {"is_selected": false, "is_available": true, "value": "Hubby-L+Wifey-L", "asin": "B07WY41B5F"}, {"is_selected": false, "is_available": true, "value": "Hubby-L+Wifey-XL", "asin": "B07WTZ3H82"}, {"is_selected": false, "is_available": true, "value": "Hubby-XL+Wifey-L", "asin": "B07WSZNWXJ"}, {"is_selected": false, "is_available": false, "value": "Large", "asin": "B09LLSH8P5"}, {"is_selected": false, "is_available": false, "value": "X-Large", "asin": "B09LLC5KQT"}, {"is_selected": false, "is_available": false, "value": "XX-Large", "asin": "B09LM7G28D"}, {"is_selected": false, "is_available": true, "value": "Hubby-2XL+Wifey-2XL", "asin": "B07WX8FPGG"}, {"is_selected": false, "is_available": true, "value": "Hubby-2XL+Wifey-XL", "asin": "B07WTZJYSP"}, {"is_selected": false, "is_available": true, "value": "Hubby-XL+Wifey-2XL", "asin": "B07WRW4B7H"}, {"is_selected": false, "is_available": true, "value": "Hubby-XL+Wifey-XL", "asin": "B07WNZ5K1W"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07WX8FPGG", "category": "fashion", "query": "Women's Fashion Hoodies & Sweatshirts", "page": 162, "small_description_old": "\ud83d\ude0dHigh quality \ud83c\udf53: Made of 100% cotton. Extremely soft and pleasant. The fabric of these Hubby Wifey sweatshirts are thick and do not yellow. No shrinkage and not hard. If you put it on, you feel very comfortable. Perfekt for spring and autumn.\ud83d\udc95 \ud83c\udf4b Important symbol of your love\ud83d\udc9a: Hubby Wifey Couple Pullover Set is a romantic symbol full of love for a couple. Hubby Wifey hoodies represent the sweet love and happiness of both of you. \ud83d\udc95 \ud83d\udc6cGood gift\ud83c\udf32:Hubby Wifey Couple sweaters set can be used as a Christmas gift, birthday gift, valentines day gift, anniversary gift, wedding gift, anniversary gift for couple. Couple sweatshirt also as a gift for your parents. The partner look hoodies are for shopping, Disneyland and personality wedding photos. \ud83d\udc95 \ud83d\udc78Modern technology\ud83d\udc83:Matching couple Sweartshirts set with imprint. Digital Screen Printing Technology. Made of environmentally friendly materials. Graphics are bright with vibrant colors without the chance to crack or fade. \ud83d\udc95 \ud83d\udc12Satisfaction guarantee \ud83d\udcaf: The package contains two hoodies. US size. Please read the size chart before buying. We believe that you will like our Matching King and Queen hoodies pullover. If you are not 100% satisfied, you can return the sweaters unconditionally and we will refund the full purchase price. \ud83d\udc95"}, {"name": "Laguna Floating Planting Bag, Aquatic Pond Planter", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 4 x 10.2 x 10.2 inches; 7.83 Ounces", "Item model number\n \u200f": "\u200e\n PT974", "Department\n \u200f": "\u200e\n Racks/Futons", "Date First Available\n \u200f": "\u200e\n October 15, 2006", "Manufacturer\n \u200f": "\u200e\n Rolf C. Hagen (USA) Corp.", "ASIN\n \u200f": "\u200e\n B000J3HZXS", "Country of Origin\n \u200f": "\u200e\n China", "Domestic Shipping": "Item can be shipped within U.S.", "International Shipping": "This item can be shipped to select countries outside of the U.S.Learn More", "Best Sellers Rank": "#77,791 in Patio, Lawn & Garden (See Top 100 in Patio, Lawn & Garden)#17 in Water Garden Kits #693 in Hanging Planters", "#17 in Water Garden Kits": "", "#693 in Hanging Planters": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Laguna", "brand_url": "https://www.amazon.com/Laguna/b/ref=bl_dp_s_web_3033343011?ie=UTF8&node=3033343011&field-lbr_brands_browse-bin=Laguna", "full_description": "Laguna floating plant baskets make planting and maintenance easy, especially for ponds that don't have adequate plant shelves. Made of finely-woven fabric, they provide excellent soil containment and protect plants from fish. The buoyant styrofoam float ensures that the baskets stay at the surface. The plant baskets also provide shade and protection for fish. Available in small size. Measures 10-inch diameter.", "pricing": "$19.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51GSWJ2p2lL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Gardening & Lawn Care \u203a Pots, Planters & Container Accessories \u203a Hanging Planters", "average_rating": 4.4, "small_description": ["Coat with faux fur trimmed hood 2011 fall and winter collection ", "Provide excellent soil containment and protect plants from fish ", "Made of finely woven fabric ", "The plant baskets also provide shade and protection for fish ", "Measures 10-inch diameter "], "total_reviews": 675, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "Small", "price_string": "$19.99", "price": 19.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B000J38Z7I/ref=twister_B08WFRSK6C?_encoding=UTF8&psc=1", "value": "Medium", "price_string": "$28.99", "price": 28.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B001VEQWQK/ref=twister_B08WFRSK6C?_encoding=UTF8&psc=1", "value": "Large", "price_string": "$36.60", "price": 36.6, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0032G901E/ref=twister_B08WFRSK6C?_encoding=UTF8&psc=1", "value": "Multi", "price_string": "$33.68", "price": 33.68, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B000J3HZXS", "category": "garden", "query": "Live Plants", "page": 15, "small_description_old": "About this item Coat with faux fur trimmed hood 2011 fall and winter collection Provide excellent soil containment and protect plants from fish Made of finely woven fabric The plant baskets also provide shade and protection for fish Measures 10-inch diameter"}, {"name": "QAZPL Hair Weaving Deep Curly, Virgin Human Hair, Wig For Women, 8-24 Inch 1B Natural Black, Grade 8A, Support Perm Or Hair Coloring, 1pcs (Size : 20 inch)", "product_information": {"Item Weight\n \u200f": "\u200e\n 1.1 Pounds", "Department\n \u200f": "\u200e\n Unisex-adult", "Manufacturer\n \u200f": "\u200e\n QAZPL", "ASIN\n \u200f": "\u200e\n B08X4YD5WH", "": ""}, "brand": "Brand: QAZPL", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=QAZPL", "full_description": "Expected Delivery dates:North America: about 20-25 daysEurope: about 20 daysJapan: about 10-15 daysMiddle East: about 20-25 daysProduct name: wigColor: 1B Natural BlackSpecification: 8-24 inchMaterial: 100% Virgin Human Hair (Cut from young girl donor)Hair Grade: 8ACan hair dye or perm: Yes, it's OK Quality: no shedding, no tanglePackage includes:Hair Weaving x 1Our hair per bundle / 3.5 ounces (95 grams to 105 grams), if you need to form a complete hair, usually you need to buy 3 bundles, but if you want to install longer hair, it is recommended to buy 4 bundles.How to identify wigs:Real hair: After burning it, pinch the hair with your hands to form a powder.Chemical fiber: After burning, pinch the hair with your hands, as if plastic is burned, all stick together.", "pricing": "$79.63", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41emSW6ReIL.jpg", "https://m.media-amazon.com/images/I/51SaT57P32L.jpg", "https://m.media-amazon.com/images/I/51K6N1M76QL.jpg", "https://m.media-amazon.com/images/I/51JONDpF5NL.jpg", "https://m.media-amazon.com/images/I/51Wc8KCRBjL.jpg", "https://m.media-amazon.com/images/I/51C3LSHiOcL.jpg", "https://m.media-amazon.com/images/I/51ujSZFrgvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Hair Extensions", "average_rating": "", "small_description": ["Our hair per bundle / 3.5 ounces (95 grams to 105 grams), if you need to form a complete hair, usually you need to buy 3 bundles, but if you want to install longer hair, it is recommended to buy 4 bundles. ", "Material: 100% Virgin Human Hair (Cut from young girl donor) ", "High-quality human hair wig: soft, no knots, no hair loss, no split ends, tangle free, can be perm dyed. ", "How to identify wigs: Real hair: After burning it, pinch the hair with your hands to form a powder. Chemical fiber: After burning, pinch the hair with your hands, as if plastic is burned, all stick together. ", "Package includes: Hair Weaving x 1 "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08X4VHM2V/ref=twister_B08X4X2Z86?_encoding=UTF8&psc=1", "value": "8 Inch", "price_string": "$47.05", "price": 47.05, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X4VZFXR/ref=twister_B08X4X2Z86?_encoding=UTF8&psc=1", "value": "10 Inch", "price_string": "$50.67", "price": 50.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X4VRZLD/ref=twister_B08X4X2Z86?_encoding=UTF8&psc=1", "value": "12 Inch", "price_string": "$54.29", "price": 54.29, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X4W7WZW/ref=twister_B08X4X2Z86?_encoding=UTF8&psc=1", "value": "14 Inch", "price_string": "$61.53", "price": 61.53, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X4W93N3/ref=twister_B08X4X2Z86?_encoding=UTF8&psc=1", "value": "16 Inch", "price_string": "$66.96", "price": 66.96, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X4VDGQQ/ref=twister_B08X4X2Z86?_encoding=UTF8&psc=1", "value": "18 Inch", "price_string": "$74.20", "price": 74.2, "image": null}, {"is_selected": true, "url": null, "value": "20 Inch", "price_string": "$79.63", "price": 79.63, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X4XCT9L/ref=twister_B08X4X2Z86?_encoding=UTF8&psc=1", "value": "22 Inch", "price_string": "$86.14", "price": 86.14, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X4XRPCC/ref=twister_B08X4X2Z86?_encoding=UTF8&psc=1", "value": "24 Inch", "price_string": "$101.34", "price": 101.34, "image": null}]}, "seller_id": "A2R32CWTC0BGD5", "seller_name": "WJKWJH shop", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08X4YD5WH", "category": "beauty", "query": "Hair Extensions, Wigs & Accessories", "page": 186, "small_description_old": "About this item Our hair per bundle / 3.5 ounces (95 grams to 105 grams), if you need to form a complete hair, usually you need to buy 3 bundles, but if you want to install longer hair, it is recommended to buy 4 bundles. Material: 100% Virgin Human Hair (Cut from young girl donor) High-quality human hair wig: soft, no knots, no hair loss, no split ends, tangle free, can be perm dyed. How to identify wigs: Real hair: After burning it, pinch the hair with your hands to form a powder. Chemical fiber: After burning, pinch the hair with your hands, as if plastic is burned, all stick together. Package includes: Hair Weaving x 1"}, {"name": "Silk Short Pajama Set for Women Womens Satin Pajamas Set Sexy Lingerie Sleepwear Cami Shorts Set Nightwear NOLYEC", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 14, 2021", "ASIN\n \u200f": "\u200e\n B09NMBV996", "": ""}, "brand": "Brand: NOLYEC", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=NOLYEC", "full_description": "Size: M Bust: 72-87cm/28.3-34.3\" Waist: 65-87cm/26.0-34.3\" Size: L Bust: 74-94cm/29.1-37.0\" Waist: 69-94cm/27.2-37.0\" Size: XL Bust: 76-101cm/29.9-39.8\" Waist: 73-101cm/28.7-39.8\" Size: XXL Bust: 78-108cm/31.0-42.5\" Waist: 77-108cm/30.3-42.5\"", "pricing": "$1.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41qUIdR9NKS.jpg", "https://m.media-amazon.com/images/I/51FjbrjBc3L.jpg", "https://m.media-amazon.com/images/I/41qhmX+Lg1L.jpg", "https://m.media-amazon.com/images/I/51ZuV6yZn7S.jpg", "https://m.media-amazon.com/images/I/41QPJQW7gcL.jpg", "https://m.media-amazon.com/images/I/41h03T1dj9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Sleep & Lounge \u203a Sets", "average_rating": "", "small_description": ["100% Polyester ", "\u2764\u2764Size Question:We are Asian Size,run smaller than US size,so i will suggest you choose one size or two size larger than you usual size , it will be more relax and comfortable.\ud83d\udc95Best Gifts for Women/Wife/Girlfriend/\ud83d\udc95Buy it Now\ud83d\udc95 Today's Deals Big Promotion\ud83d\udc95Buy 2 get 8% off Buy 3 get 12% off Buy 4 get 19% off,Buy 5 get 25% off. ", "baby shark pajamas flannel christmas pajamas friends pajamas for women stitch pajamas for women pajamas for boys size 14-16 toddler fleece pajamas christmas pajamas onesies for women lazy one pajamas men pajamas for toddler boys little sleepies baby pajamas cow pajamas frozen pajamas for girls woman's pajamas sets christmas pajamas for adults 3t christmas pajamas kids holiday pajamas 4t christmas pajamas cute pajamas super soft pajamas for women husband and wife matching christmas pajamas ", "gnome pajamas soft pajamas for women silk pajamas for men plaid pajamas family pajamas christmas womens christmas pajamas set womens pajamas pants set baby girl christmas pajamas couples pajamas satin pajamas petite pajamas for women plus size family christmas pajamas flannel pajamas christmas matching pajamas for family boys pajamas size 6 footie pajamas adult maternity christmas pajamas pajamas sets for women family christmas pajamas matching sets girl christmas pajamas women onesie pajamas ", "christmas pajamas toddler girl red satin pajamas for women sloth pajamas women christmas baby pajamas christmas pajamas pants for family pink pajamas 24 month pajamas boys ladies fleece pajamas pajamas for women fleece christmas pants pajamas sexy pajamas for women naughty for sex funny christmas pajamas for family toddler christmas pajamas girls cow pajamas women fleece footed pajamas baby snowflake pajamas plaid family christmas pajamas pajamas for cats women's pajamas set men's onesie pajamas ", "baby yoda pajamas fluffy pajamas for women pitbull pajamas infant christmas pajamas disney pajamas women kids pajamas boys reindeer pajamas kids matching christmas pajamas children pajamas christmas mens silk pajamas set toddler girl christmas pajamas dinosaur pajamas for boys postpartum pajamas girls pajamas size 6 girls pajamas size 7 womens silk pajamas set men's pajamas dog pajamas large size dog onesie pajamas for family ladies pajamas sets pokemon pajamas boy christmas pajamas ", "christmas pajamas for baby pajamas for girls 10-12 christmas pajamas for family onesies footie pajamas kids ugly christmas pajamas kids pajamas girls peanuts christmas pajamas comfy pajamas for women pajamagram pajamas women cat pajamas mens pajamas sets clearance kids onesie pajamas pajamas women christmas pajamas men womens plus size christmas pajamas teen pajamas toddler girl pajamas plaid pajamas for women boys pajamas size 7 plus size pajamas womens fleece pajamas onesie pajamas "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09NMBV996"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09NMBGYX6"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09NMB4P9D"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09NMBLTLF"}], "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NMBV996", "category": "fashion", "query": "Women's Lingerie, Sleep & Lounge", "page": 64, "small_description_old": "100% Polyester \u2764\u2764Size Question:We are Asian Size,run smaller than US size,so i will suggest you choose one size or two size larger than you usual size , it will be more relax and comfortable.\ud83d\udc95Best Gifts for Women/Wife/Girlfriend/\ud83d\udc95Buy it Now\ud83d\udc95 Today's Deals Big Promotion\ud83d\udc95Buy 2 get 8% off Buy 3 get 12% off Buy 4 get 19% off,Buy 5 get 25% off. baby shark pajamas flannel christmas pajamas friends pajamas for women stitch pajamas for women pajamas for boys size 14-16 toddler fleece pajamas christmas pajamas onesies for women lazy one pajamas men pajamas for toddler boys little sleepies baby pajamas cow pajamas frozen pajamas for girls woman's pajamas sets christmas pajamas for adults 3t christmas pajamas kids holiday pajamas 4t christmas pajamas cute pajamas super soft pajamas for women husband and wife matching christmas pajamas gnome pajamas soft pajamas for women silk pajamas for men plaid pajamas family pajamas christmas womens christmas pajamas set womens pajamas pants set baby girl christmas pajamas couples pajamas satin pajamas petite pajamas for women plus size family christmas pajamas flannel pajamas christmas matching pajamas for family boys pajamas size 6 footie pajamas adult maternity christmas pajamas pajamas sets for women family christmas pajamas matching sets girl christmas pajamas women onesie pajamas christmas pajamas toddler girl red satin pajamas for women sloth pajamas women christmas baby pajamas christmas pajamas pants for family pink pajamas 24 month pajamas boys ladies fleece pajamas pajamas for women fleece christmas pants pajamas sexy pajamas for women naughty for sex funny christmas pajamas for family toddler christmas pajamas girls cow pajamas women fleece footed pajamas baby snowflake pajamas plaid family christmas pajamas pajamas for cats women's pajamas set men's onesie pajamas baby yoda pajamas fluffy pajamas for women pitbull pajamas infant christmas pajamas disney pajamas women kids pajamas boys reindeer pajamas kids matching christmas pajamas children pajamas christmas mens silk pajamas set toddler girl christmas pajamas dinosaur pajamas for boys postpartum pajamas girls pajamas size 6 girls pajamas size 7 womens silk pajamas set men's pajamas dog pajamas large size dog onesie pajamas for family ladies pajamas sets pokemon pajamas boy christmas pajamas christmas pajamas for baby pajamas for girls 10-12 christmas pajamas for family onesies footie pajamas kids ugly christmas pajamas kids pajamas girls peanuts christmas pajamas comfy pajamas for women pajamagram pajamas women cat pajamas mens pajamas sets clearance kids onesie pajamas pajamas women christmas pajamas men womens plus size christmas pajamas teen pajamas toddler girl pajamas plaid pajamas for women boys pajamas size 7 plus size pajamas womens fleece pajamas onesie pajamas"}, {"name": "Coconut Toothpaste for Gentle Teeth Whitening Toothpaste, Organic Anti-Plaque Tooth Paste with Coconut Oil anti-plaque toothpaste 100g", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.3 x 1.97 x 1.57 inches; 4.73 Ounces", "Manufacturer\n \u200f": "\u200e\n Brrnoo", "ASIN\n \u200f": "\u200e\n B09GW3N8TF", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Brrnoo", "brand_url": "https://www.amazon.com/Brrnoo/b/ref=bl_dp_s_web_18251668011?ie=UTF8&node=18251668011&field-lbr_brands_browse-bin=Brrnoo", "full_description": "Feature: 1. ingredients are harmless to gums and tooth enamel and are suitable for daily use. 2. Strengthen tooth enamel, repair oral injury, clean and care for the oral cavity. 3. Keep your tone clean and comfortable for a long time and make you more confident. 4. Cleans oral plaque and other dirt, decomposes old tooth stains, and makes teeth look cleaner. 5. Decomposes pigments, eliminates dirt, helps improve bad breath and refreshes breath Specification: Item Type: Whitening Toothpaste Net Content: 100g/3.5oz Characteristics: Whiten teeth, protect gums and enamel, and keep mouth soft Package List: 1 x Toothpaste", "pricing": "$9.69", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41L36sTDQML.jpg", "https://m.media-amazon.com/images/I/413jFDMRliL.jpg", "https://m.media-amazon.com/images/I/41qM1ezO5vL.jpg", "https://m.media-amazon.com/images/I/41wBy+eVujL.jpg", "https://m.media-amazon.com/images/I/41E6UGsTseL.jpg", "https://m.media-amazon.com/images/I/31+SQ6fTw3L.jpg", "https://m.media-amazon.com/images/I/41s2l73WjpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": "", "small_description": ["ingredients are harmless to gums and tooth enamel and are suitable for daily use. ", "Strengthen tooth enamel, repair oral injury, clean and care for the oral cavity. ", "Keep your tone clean and comfortable for a long time and make you more confident. ", "Cleans oral plaque and other dirt, decomposes old tooth stains, and makes teeth look cleaner. ", "Decomposes pigments, eliminates dirt, helps improve bad breath and refreshes breath "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3LM08GTND6YIK", "seller_name": "Canyita", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GW3N8TF", "category": "beauty", "query": "Toothpaste", "page": 132, "small_description_old": "About this item ingredients are harmless to gums and tooth enamel and are suitable for daily use. Strengthen tooth enamel, repair oral injury, clean and care for the oral cavity. Keep your tone clean and comfortable for a long time and make you more confident. Cleans oral plaque and other dirt, decomposes old tooth stains, and makes teeth look cleaner. Decomposes pigments, eliminates dirt, helps improve bad breath and refreshes breath"}, {"name": "Holiday Secular Saint Candle - 8.5 Inch Glass Prayer Votive - Made in The USA", "product_information": {"Part Number": "\u200e4736", "Item Weight": "\u200e15.5 ounces", "Product Dimensions": "\u200e2.17 x 2.17 x 8.27 inches", "Item model number": "\u200e4736", "Is Discontinued By Manufacturer": "\u200eNo", "Material": "\u200eGlass", "Power Source": "\u200eFuel Powered", "Item Package Quantity": "\u200e1", "Usage": "\u200ePersonal, Decoration, Prayer", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B01M8HL69L", "Customer Reviews": {"ratings_count": 41, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#478,322 in Home & Kitchen (See Top 100 in Home & Kitchen) #210 in Votive Candles"], "Date First Available": "October 12, 2016"}, "brand": "Visit the The Unemployed Philosophers Guild Store", "brand_url": "https://www.amazon.com/stores/TheUnemployedPhilosophersGuild/page/C92D0D3A-B7A8-41C6-917F-610B0F6F4705?ref_=ast_bln", "full_description": "", "pricing": "$15.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Y-wFlv0qL.jpg", "https://m.media-amazon.com/images/I/41inbcewSUL.jpg", "https://m.media-amazon.com/images/I/41xkefrRPdL.jpg", "https://m.media-amazon.com/images/I/31D+GkwOFkL.jpg", "https://m.media-amazon.com/images/I/51zwqSUL5ZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Candles & Holders \u203a Candles \u203a Votive Candles", "average_rating": 4.8, "small_description": ["Show your devotion to St. Billie, the patron saint of torch singers. ", "The front of the devotional candle features Billie's image. The back shows her patronage, saint's day, and a unique prayer to inspire and enlighten. ", "Made in America. Measures 8.5\" tall, 2\" diameter. Unscented. Made of glass with a satisfying matte textured image and faux gold leaf accents. ", "Ours aren't like other celebrity vigil candles. We don't use generic church candle backgrounds, our designs are highly detailed and the prayers written with care (and humor). ", "Click the store link near the product title for more clever and funny novelty gifts. Christmas, birthday, any fun occasion! If you need trendy stocking stuffers or a gag gift that is unique and quirky, or smart and satirical UPG has presents of mind. "], "total_reviews": 41, "total_answered_questions": "", "model": "\u200e4736", "customization_options": "", "seller_id": "AI7ANHR1OQYKG", "seller_name": "The Unemployed Philosophers Guild", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01M8HL69L", "category": "garden", "query": "Candles", "page": 199, "small_description_old": ""}, {"name": "Women's Sexy Swimsuit One Piece High Neck Halter Bikini Floral Stiching See Through Monokini Tummy Control Beachwear", "product_information": {"Item Weight\n \u200f": "\u200e\n 3.17 Ounces", "Item model number\n \u200f": "\u200e\n amazon choice womens clothing", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 10, 2022", "Manufacturer\n \u200f": "\u200e\n HELLI amazon essentials", "ASIN\n \u200f": "\u200e\n B09Q371S91", "": ""}, "brand": "Brand: HELLI", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=HELLI", "full_description": "------------------------------------------------------------\ud83c\udf52\ud83c\udf52\u2764\u2764Welcome To HELLI Store(\u25d5\u1d17\u25d5\u273f)\u2764\u2764\ud83c\udf52\ud83c\udf52------------------------------------------------------------\ud83c\udf52\ud83c\udf52Wish you have a pleasant shopping experience in HELLI\uff01\ud83c\udf52\ud83c\udf52HELLI\u00a0is committed to providing high-quality women's clothing and accessories.\ud83c\udf52\ud83c\udf52Please Allow 0.5-2 Inch Differs Due to Manual Measurement, Thanks!Product Description: Season:four seasonGender:WomenOccasion:Christmas,sleeping,Club,party,ect.Material:PolyesterStyle:SexyHow to wash:Hand washwomen's stripe printing bikini set beach bathing suit v neck tankini criss cross back top with bottom two piece suits women pieces ruffled racerback high waisted mesh striped waist tassel trim halter straps swimsuit push up swimsuits padded swimwear lace bralette flower for flounce vintage ladies sets scoop tropical leaf knotted push-up bandage ruched bottoms plus size cover ups tummy control girls one coverups tops teen sexy flattering neckline fresh leaves elegant dance solid one-piece wrap floral orange white bowknot black print cutout micro bikinis underwear thong wax kit coverup mens swimming trunks swim shorts womens halloween costumes christmas decorations home decor fall winter clothing sleepwear outfit clothes t-shirt men youth boys baby cardigan sweaters sweatshirts pullover zip hoodies trainer summer casual dresses maxi party work formal overalls maternity lingerie tunic leggings slippers long sleeve shirts jacket denim gifts cardigans tees pajamas headbands sport jogger sweatpants parkas hip hop designs gaiter boots sneaker socks yoga mat pants jeans enfant graphic jumpsuits", "pricing": "$10.99$18.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41QWOwu-+OL.jpg", "https://m.media-amazon.com/images/I/41Pb+cV99sL.jpg", "https://m.media-amazon.com/images/I/41wbcgT8+rL.jpg", "https://m.media-amazon.com/images/I/41YKo0qyRnL.jpg", "https://m.media-amazon.com/images/I/41q9xMfEPJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Swimsuits & Cover Ups \u203a One-Pieces", "average_rating": "", "small_description": ["swimsuit coverup for women ", "Imported ", "\ud83c\udf52\u2764Tips: Sizes are smaller than average\uff01\uff01\uff01Please check the size chart before shopping\uff01\uff01\uff01Enjoy your shopping\uff01\uff01\uff01 ", "Tie closure ", "Machine Wash ", "women's summer swimsuit bikini beach swimwear cover up women's one piece swimsuits tummy control swimwear slimming monokini bathing suits for women backless v neck swimsuit women's floral print kimono sheer chiffon loose cardigan womens spaghetti strap tie knot front cutout high cut one piece swimsuit women's removable strap wrap pad cheeky high waist bikini set swimsuit beach swimsuit for women sleeve coverups bikini cover up women stripe printing padded push up 2 piece bikini sets swimsuits ", "swimming dress tankini high waisted swimsuits bathing suit for women tummy control period swimwear plus size high waisted bikini swimsuit women tummy control tankini plus size tropical bathing suit swim suit swimwear bathing suit tummy control plus size tankini tops women swimwear swim bottoms two high waisted swim suit womens bikini color block bandeau triangle bikini up pad swim top tankini two set bathing suit tribal splice thong bikini color block triangle floral , tops with bottom push up tummy control two piece bathing suits plus size women's retro one piece swimsuits printed v neck slimming bathing suits tummy control swimwear plus size women\u2019s one piece swimsuit tummy control padded athletic training swimwear v neck slimming bathing suit plus size bikini swimsuit for women sexy bikini for women bikini top bikinis for women bikini bottoms bikini tops for women bikini swimsuit for women plus size bikinis for women push up one piece, toddler swimdress women swimsuit cover up bandeau swimsuit top high waisted one piece swimsuit floral swimsuit tan through swimwear women tummy control one piece swimsuit one shoulder bikini swimsuit cover up for girls wrap bikini toddler swimdress black high waisted bikini bottoms high waisted bottoms swimwear swimsuit cover up for girls toddler swimdress toddler swimdress tan, one piece swimsuit sheer swimdress for women 2 piece swimdress with shorts womens swimsuit bottoms v neck swimdress women swimsuit cover up black high waisted bikini bottoms high neck swimsuit mesh bikini pineapple bikini swim suits women bikini bikini sets for women criss cross swimsuit maternity cover ups for swimwear plus size swimdress with underwire strapless one piece swimsuit slimming swimdress"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09Q371S91/ref=twister_B09Q3991KD", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41oNghj2DPL.jpg"}, {"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41QWOwu-+OL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q38ZP6M/ref=twister_B09Q3991KD", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41z3oBsSm5L.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09Q39P9SH"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09Q37JQZ6"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09Q37F935"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09Q36W46G"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09Q3874RL"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q37JQZ6", "category": "fashion", "query": "Women's Swimsuits & Cover Ups", "page": 92, "small_description_old": "swimsuit coverup for women Imported \ud83c\udf52\ud83c\udf52Please check the size chart before shopping ,thank you\uff01 Tie closure Machine Wash women's summer swimsuit bikini beach swimwear cover up women's one piece swimsuits tummy control swimwear slimming monokini bathing suits for women backless v neck swimsuit women's floral print kimono sheer chiffon loose cardigan womens spaghetti strap tie knot front cutout high cut one piece swimsuit women's removable strap wrap pad cheeky high waist bikini set swimsuit beach swimsuit for women sleeve coverups bikini cover up women stripe printing padded push up 2 piece bikini sets swimsuits swimming dress tankini high waisted swimsuits bathing suit for women tummy control period swimwear plus size high waisted bikini swimsuit women tummy control tankini plus size tropical bathing suit swim suit swimwear bathing suit tummy control plus size tankini tops women swimwear swim bottoms two high waisted swim suit womens bikini color block bandeau triangle bikini up pad swim top tankini two set bathing suit tribal splice thong bikini color block triangle floral \n tops with bottom push up tummy control two piece bathing suits plus size women's retro one piece swimsuits printed v neck slimming bathing suits tummy control swimwear plus size women\u2019s one piece swimsuit tummy control padded athletic training swimwear v neck slimming bathing suit plus size bikini swimsuit for women sexy bikini for women bikini top bikinis for women bikini bottoms bikini tops for women bikini swimsuit for women plus size bikinis for women push up one piecetoddler swimdress women swimsuit cover up bandeau swimsuit top high waisted one piece swimsuit floral swimsuit tan through swimwear women tummy control one piece swimsuit one shoulder bikini swimsuit cover up for girls wrap bikini toddler swimdress black high waisted bikini bottoms high waisted bottoms swimwear swimsuit cover up for girls toddler swimdress toddler swimdress tanone piece swimsuit sheer swimdress for women 2 piece swimdress with shorts womens swimsuit bottoms v neck swimdress women swimsuit cover up black high waisted bikini bottoms high neck swimsuit mesh bikini pineapple bikini swim suits women bikini bikini sets for women criss cross swimsuit maternity cover ups for swimwear plus size swimdress with underwire strapless one piece swimsuit slimming swimdressShow more"}, {"name": "I Tackled 100 Day Of School Football Boy 100th Day School T-Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 23, 2021", "ASIN\n \u200f": "\u200e\n B09P39QN2W", "Best Sellers Rank": "#662,226 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#29,683 in Boys' Novelty T-Shirts #30,962 in Girls' Novelty T-Shirts #52,152 in Women's Novelty T-Shirts", "#29,683 in Boys' Novelty T-Shirts": "", "#30,962 in Girls' Novelty T-Shirts": "", "#52,152 in Women's Novelty T-Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Unknown", "brand_url": "https://www.amazon.com/Unknown/b/ref=bl_sl_s_ap_web_23515638011?ie=UTF8&node=23515638011&field-lbr_brands_browse-bin=Unknown", "full_description": "", "pricing": "$16.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A13usaonutL.png", "https://m.media-amazon.com/images/I/417S+7cf-vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a T-Shirts", "average_rating": 5, "small_description": ["Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester ", "Imported ", "Machine wash cold with like colors, dry low heat ", "I Tackled 100 Day Of School Football Mask 100th Day School T shirt For Kids, Boys, Girls Who Love Football On 100th Day Of School ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07HPWDCG8", "value": "Women", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07537H5VB", "value": "Youth", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A13usaonutL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07537HQXD", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1WWMAfTfHS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B0752XJX9Q", "value": "Asphalt", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1rcXo55giL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07537HNQY", "value": "Cranberry", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1fs3pzGnVS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07537HNTD", "value": "Kelly Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1VMTBKtipS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B0752XJYTP", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1Ynn1-zR1S.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07535YCL2", "value": "Olive", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1pDnrUmaHS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07537PB8C", "value": "Dark Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1-CfijdgoS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07537YDVK", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1el7IZypsS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P39QN2W?_encoding=UTF8&customId=B07537NG8H", "value": "Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1EryObaEWS.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B0752XJYNL"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07535Y9T6"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07537P4T9"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07538GWNZ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07537PKB3"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B07535YF3H"}, {"is_selected": false, "is_available": false, "value": "2T", "asin": "B07HPZ61SY"}, {"is_selected": false, "is_available": false, "value": "3T", "asin": "B07HPXFRMS"}, {"is_selected": false, "is_available": false, "value": "4T", "asin": "B07537H5VB"}, {"is_selected": false, "is_available": false, "value": "X-Small", "asin": "B0752XJYQB"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P39QN2W", "category": "fashion", "query": "Men's Shirts", "page": 129, "small_description_old": "Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester Imported Machine wash cold with like colors, dry low heat I Tackled 100 Day Of School Football Mask 100th Day School T shirt For Kids, Boys, Girls Who Love Football On 100th Day Of School Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "Thin Red Line USA Flag Firefighter Men's Hoodie Sweatshirt", "product_information": {"Item model number\n \u200f": "\u200e\n THINREDLINE_HOODIE_S", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 7, 2017", "ASIN\n \u200f": "\u200e\n B072HT7GZR", "Best Sellers Rank": "#1,095,927 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#17,095 in Men's Novelty Hoodies #412,401 in Men's Fashion", "#17,095 in Men's Novelty Hoodies": "", "#412,401 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Fantastic Tees Store", "brand_url": "https://www.amazon.com/stores/FantasticTees/page/C858ADE8-8F8C-4B7E-B92F-7694E5A7BB92?ref_=ast_bln", "full_description": "", "pricing": "$44.95$47.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41J5D0sviUL.jpg", "https://m.media-amazon.com/images/I/41hi2Tc+ZQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Hoodies", "average_rating": 4.7, "small_description": ["Polyester,Cotton,Silk ", "Machine Wash ", "PATRIOTIC DESIGN - This lightweight men\u2019s American Flag Red Line pullover features a large American flag with red line design on the back. A smaller USA red line flag is located on the left chest. ", "LOYALTY TO THE AMERICAN CAUSE - Make sure your message is heard loud and proud. These USA Red Line sweatshirt for men have been designed for those that wish to showcase their patriotism. ", "ULTRA SOFT & DURABLE MATERIAL - These Red line hoodies for men are made from durable, soft, breathable cotton. For optimal care, please machine wash. ", "CASUAL & COMFORTABLE DESIGN - Our hoodie with American flag offers a stylish design and classic fit which ensures your men\u2019s patriotic sweatshirt will become a staple addition to your everyday rotation. ", "PROUDLY DESIGNED & PRINTED IN THE USA - All Fantastic Tees\u2019 T shirts are proudly designed and printed at our USA-based facility. "], "total_reviews": 79, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B072HT7GZR"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B0716PK643"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07143L37R"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B072BN11NG"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B071L6HJ67"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B072PCHZC3"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B07198WB7X"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B0716PK4XD"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B072PCHZC3", "category": "fashion", "query": "Men's Sweaters", "page": 99, "small_description_old": "50% Cotton, 50% Polyester. Silk screen printing. Men sizes S - 5XL. Hooded pullover sweatshirt. Screen printed. Machine washable."}, {"name": "Glammed Naturally Oil - Braid Oil, Braid Oil for Itchy Scalp and Dry Scalp, Braid Care Oil for Dandruff, Lice and Thinning Edges, 2 Oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "UPC\n \u200f": "\u200e\n 860254001013", "Manufacturer\n \u200f": "\u200e\n GlammedNaturallyOil", "ASIN\n \u200f": "\u200e\n B078FL4788", "Best Sellers Rank": "#195,809 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#61,789 in Hair Care Products", "#61,789 in Hair Care Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Glammed naturally oil Store", "brand_url": "https://www.amazon.com/stores/Glammed+Naturally+Oil/page/32254161-F7CE-4580-9EEA-93E0A7637CBA?ref_=ast_bln", "full_description": "", "pricing": "$23.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31gg1eVmShL.jpg", "https://m.media-amazon.com/images/I/518sIlPWl4L.jpg", "https://m.media-amazon.com/images/I/41e7e2f9L4L.jpg", "https://m.media-amazon.com/images/I/51EHaSZBvmL.jpg", "https://m.media-amazon.com/images/I/51c0JlAS01L.jpg", "https://m.media-amazon.com/images/I/51-rYEapiiL.jpg", "https://m.media-amazon.com/images/I/51c0JlAS01L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Scalp Treatments", "average_rating": 4.5, "small_description": ["Protects Your Edges from Thinning - Loaded with essential oils such as olive oil, castor oil, peppermint oil and jojoba oil, our oil for braids protects front hair loss. With regular use, it restores your edges hair growth and thickness within 2-8 weeks. ", "Alleviates Dry, Flaky, Itchy Scalp - Our hyper-nutritional hair oil for braids is a good treatment for itchy scalp. It restores your scalp\u2019s ph balance for a soothing and instant scalp itch relief while keeping dandruff at bay. ", "Supports Your Tightly Knitted Braids - More than a scalp oil for itchy scalp, it keeps your braid shinier and better-looking. Our scalp oil for braids nurtures your hair, protects your scalp, and deters lice. ", "For Men and Women of All Ages - Our itchy scalp oil supports hair health for any protective hairstyle via its nourishing ingredients. Safe and natural, our itchy scalp treatment for men and women works for all ages. ", "Applies Easily - Directly apply our anti itch oil for scalp and braid growth oil on your hair. It comes in a specially designed no-waste, spill-free scalp oil applicator bottle in 2, 4, and 8 oz volumes. "], "total_reviews": 44, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "2 Ounce", "price_string": "$23.99", "price": 23.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078FMM3Y5/ref=twister_B078FM12QX?_encoding=UTF8&psc=1", "value": "4 Fl Oz (Pack of 1)", "price_string": "$29.99", "price": 29.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078FNBKV9/ref=twister_B078FM12QX?_encoding=UTF8&psc=1", "value": "8 Ounce", "price_string": "$44.99", "price": 44.99, "image": null}]}, "seller_id": "A1EIOQUO652O5F", "seller_name": "GlammedNaturallyOil", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B078FL4788", "category": "beauty", "query": "Hair Treatment Oils", "page": 129, "small_description_old": "About this item Protects Your Edges from Thinning - Loaded with essential oils such as olive oil, castor oil, peppermint oil and jojoba oil, our oil for braids protects front hair loss. With regular use, it restores your edges hair growth and thickness within 2-8 weeks. Alleviates Dry, Flaky, Itchy Scalp - Our hyper-nutritional hair oil for braids is a good treatment for itchy scalp. It restores your scalp\u2019s ph balance for a soothing and instant scalp itch relief while keeping dandruff at bay. Supports Your Tightly Knitted Braids - More than a scalp oil for itchy scalp, it keeps your braid shinier and better-looking. Our scalp oil for braids nurtures your hair, protects your scalp, and deters lice. For Men and Women of All Ages - Our itchy scalp oil supports hair health for any protective hairstyle via its nourishing ingredients. Safe and natural, our itchy scalp treatment for men and women works for all ages. Applies Easily - Directly apply our anti itch oil for scalp and braid growth oil on your hair. It comes in a specially designed no-waste, spill-free scalp oil applicator bottle in 2, 4, and 8 oz volumes."}, {"name": "Magical Hair Treatment Mask 5 Seconds Repairs Damage Hair Advanced Molecular Hair deep Conditioner Roots Treatment Return Bouncy Restore Elasticity Hair Care Essence (60ML)", "product_information": {"Manufacturer\n \u200f": "\u200e\n Fausga", "ASIN\n \u200f": "\u200e\n B09R4RJSFP", "": ""}, "brand": "Brand: Fausga", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Fausga", "full_description": "Item Type:Hair & Scalp TreatmentMake hair soft and smoothBased on the study of more than hair situation of 10,000 consumers, develop this care products with high technology--- imported raw materials combined with fine molecular technology, Can make hair to restore soft, shiny!Wiping it on the hair after washing, do not touch the scalp, use pulp constantly massage hair to help hair faster absorb nutrition, you will find the hair instantly become softer, smoother!Recommended massage hair for 2-5 minutes, that will get the better results!1 PC hair mask", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41+wmqu0yFL.jpg", "https://m.media-amazon.com/images/I/61NcPhajZ0L.jpg", "https://m.media-amazon.com/images/I/51txrYOweRL.jpg", "https://m.media-amazon.com/images/I/41+wmqu0yFL.jpg", "https://m.media-amazon.com/images/I/41zAKaT-2WL.jpg", "https://m.media-amazon.com/images/I/51b5OkjUc4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Masks", "average_rating": "", "small_description": ["\u3010NATURAL HERBAL COMPLEX\u3011- This deep conditioning hair mask contains naturally-derived extracts designed to penetrate each layer of the hair strand, nursing your hair from the inside out. ", "\u3010HYDRATING HAIR MASK\u3011- The hydrating hair mask is specially formulated to treat extra-dry, damaged, over-processed and color-treated hair. Apply to wet hair after shampooing and leave on for 3 to 5 minutes for best results. ", "\u3010WORKING PRINCIPLE\u3011- Just like the skin, it needs to be supplemented with nutrients after the hair and scalp are cleaned. So that it has the foundation of luster. Supplement nutrition is necessary for hair maintenance and repair, you can do it once a week, making the hair active and elastic. ", "\u3010SUITABLE HAIR TYPE\u3011- dry and sensitive hair should use moisturizing hair care products with high protein. If it is extremely chaotic, dry hair, you can use the hair mask to deeply nourish the hair that is damaged and difficult to maintain, so that it can be shiny, and smooth, our hair mask is great for dry hair. ", "\u3010PROFESSIONAL\u3011\u2014\u2014 Professional Salon Treatment That Instantly Transforms The Texture of Your Hair Leaving it Soft, Silky, and Easier to Manage, Repairs and Strengthens Weak, Damaged, and Overprocessed Hair To Restore a Healthy Look While Promoting Natural Hair Growth. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09R4PS2K6/ref=twister_B09R4Q694N?_encoding=UTF8&psc=1", "value": "120ML", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zAKaT-2WL.jpg"}, {"is_selected": true, "url": null, "value": "60ML", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zAKaT-2WL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09R4RJSFP", "category": "beauty", "query": "Hair Masks", "page": 157, "small_description_old": "\u3010NATURAL HERBAL COMPLEX\u3011- This deep conditioning hair mask contains naturally-derived extracts designed to penetrate each layer of the hair strand, nursing your hair from the inside out. \u3010HYDRATING HAIR MASK\u3011- The hydrating hair mask is specially formulated to treat extra-dry, damaged, over-processed and color-treated hair. Apply to wet hair after shampooing and leave on for 3 to 5 minutes for best results. \u3010WORKING PRINCIPLE\u3011- Just like the skin, it needs to be supplemented with nutrients after the hair and scalp are cleaned. So that it has the foundation of luster. Supplement nutrition is necessary for hair maintenance and repair, you can do it once a week, making the hair active and elastic. \u3010SUITABLE HAIR TYPE\u3011- dry and sensitive hair should use moisturizing hair care products with high protein. If it is extremely chaotic, dry hair, you can use the hair mask to deeply nourish the hair that is damaged and difficult to maintain, so that it can be shiny, and smooth, our hair mask is great for dry hair. \u3010PROFESSIONAL\u3011\u2014\u2014 Professional Salon Treatment That Instantly Transforms The Texture of Your Hair Leaving it Soft, Silky, and Easier to Manage, Repairs and Strengthens Weak, Damaged, and Overprocessed Hair To Restore a Healthy Look While Promoting Natural Hair Growth."}, {"name": "Gortin Boho Headbands Leopard Hair Bands Knoted Turban Headband Stretch Twist Head Wraps Stripe Cloth Head Bands for Women and Girls 3 Pcs (Floral)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 5 x 4.8 x 1.7 inches; 3.03 Ounces", "Manufacturer\n \u200f": "\u200e\n Gortin", "ASIN\n \u200f": "\u200e\n B08936C8GH", "Best Sellers Rank": "#2,359 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#5 in Women's Fashion Headbands", "#5 in Women's Fashion Headbands": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the GORTIN Store", "brand_url": "https://www.amazon.com/stores/Gortin/page/6EEE7672-0D8B-4C96-ABB2-51DAD27E7852?ref_=ast_bln", "full_description": "", "pricing": "$11.66", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51FaWnE19YL.jpg", "https://m.media-amazon.com/images/I/51vg54XLAFL.jpg", "https://m.media-amazon.com/images/I/51SF4OVVilL.jpg", "https://m.media-amazon.com/images/I/41Og6fuP+7L.jpg", "https://m.media-amazon.com/images/I/51+yRz9xSxL.jpg", "https://m.media-amazon.com/images/I/41bhzePX+1L.jpg", "https://m.media-amazon.com/images/I/51OfOtvlZDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Accessories \u203a Headbands", "average_rating": 4.5, "small_description": ["Turban headbands for womenmade of soft and stretchy natural high-tech spandex fabric with great breathability, offers skin-friendly, sweat-absorbent and comfortable to wear, keep you cool without swelter. ", "Boho cloth headbands is about 9.4in/24cm*5.5in/14cm, are elastic, stretches well when pulled so it doesn't feel too tight on your head, it can also easily adjusted to suit your specific needs for its elastic. ", "Wide head bands are 3 Pcs design .It soft and comfortable, it can take care of bangs, act as an exercise sweat towel or as a fashion hair accessory. It is both stylish and durable, is an essential accessory for every woman. ", "Turban headband are really soft and stretchy, nicely matched with your daily look. Great for vacation beaches, world travel,lover dating, family party, listen to music, read books and enjoy leisure time or just only use them to style your cute look. ", "Twist head wraps are 100% handmade craft with high quality material to make sure its perfect .if you hane any question ,please flee free to contact us. "], "total_reviews": 3783, "total_answered_questions": 12, "customization_options": {"Pattern Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08BLNZKKN/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Boho", "price_string": "$9.96", "price": 9.96, "image": "https://m.media-amazon.com/images/I/61E4hmnS-5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08G4N3NCG/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Casual", "price_string": "$9.96", "price": 9.96, "image": "https://m.media-amazon.com/images/I/61gzMk7rx5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08K353DMJ/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Elegant", "price_string": "$11.96", "price": 11.96, "image": "https://m.media-amazon.com/images/I/51xfb39ks8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FNSYDH5/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Exquisite", "price_string": "$9.96", "price": 9.96, "image": "https://m.media-amazon.com/images/I/61liGunQKHL.jpg"}, {"is_selected": true, "url": null, "value": "Floral", "price_string": "$11.66", "price": 11.66, "image": "https://m.media-amazon.com/images/I/51FaWnE19YL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZHQN8F8/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Gorgeous", "price_string": "$13.66", "price": 13.66, "image": "https://m.media-amazon.com/images/I/512HalELcvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FP251VH/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Printing", "price_string": "$11.66", "price": 11.66, "image": "https://m.media-amazon.com/images/I/51GdZ1ZmtQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0928J9H36/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Stylish", "price_string": "$9.66", "price": 9.66, "image": "https://m.media-amazon.com/images/I/610q0BHJouL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FP1Y7MX/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Trendy", "price_string": "$11.66", "price": 11.66, "image": "https://m.media-amazon.com/images/I/610RKwX+mZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092DCL1K1/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Unique", "price_string": "$11.66", "price": 11.66, "image": "https://m.media-amazon.com/images/I/61xTjXWsHlS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095H3MSSY/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Vintage", "price_string": "$9.66", "price": 9.66, "image": "https://m.media-amazon.com/images/I/611719XRZbS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KZKF8HK/ref=twister_B08X13KMVD?_encoding=UTF8&psc=1", "value": "Wonderful", "price_string": "$9.66", "price": 9.66, "image": "https://m.media-amazon.com/images/I/516LJ+sLhtL.jpg"}]}, "seller_id": "ATRNA60GVHKKI", "seller_name": "Gortin", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08936C8GH", "category": "beauty", "query": "Children's Dental Care", "page": 39, "small_description_old": "About this item Turban headbands for womenmade of soft and stretchy natural high-tech spandex fabric with great breathability, offers skin-friendly, sweat-absorbent and comfortable to wear, keep you cool without swelter. Boho cloth headbands is about 9.4in/24cm*5.5in/14cm, are elastic, stretches well when pulled so it doesn't feel too tight on your head, it can also easily adjusted to suit your specific needs for its elastic. Wide head bands are 3 Pcs design .It soft and comfortable, it can take care of bangs, act as an exercise sweat towel or as a fashion hair accessory. It is both stylish and durable, is an essential accessory for every woman. Turban headband are really soft and stretchy, nicely matched with your daily look. Great for vacation beaches, world travel,lover dating, family party, listen to music, read books and enjoy leisure time or just only use them to style your cute look. Twist head wraps are 100% handmade craft with high quality material to make sure its perfect .if you hane any question ,please flee free to contact us."}, {"name": "Smart Watch for Women, RAIMI Fashion Fitness Watch with Heart Rate Blood Pressure Sleep Tracker Pedometer Multiple Sport Modes, Waterproof, Sport SmartWatch Sync with Google Fit, iOS & Android App", "product_information": {"Item Package Dimensions L x W x H": "\u200e6.61 x 2.72 x 1.5 inches", "Package Weight": "\u200e0.14 Kilograms", "Brand Name": "\u200eRAIMI", "Model Name": "\u200eK21B", "Color": "\u200eBlue", "Material": "\u200eStainless Steel", "Suggested Users": "\u200eWomens", "Manufacturer": "\u200eTOPUS", "Part Number": "\u200eK20B", "Style": "\u200eFashion", "Included Components": "\u200eBT 5.0", "Sport Type": "\u200eFitness", "ASIN": "B08TGMZX1F", "Customer Reviews": {"ratings_count": 90, "stars": "3.6 out of 5 stars"}, "Best Sellers Rank": ["#270,551 in Sports & Outdoors (See Top 100 in Sports & Outdoors) #640 in Activity & Fitness Trackers"], "Date First Available": "January 21, 2021"}, "brand": "Brand: RAIMI", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=RAIMI", "full_description": "RAIMI Fashional Smart Watch For Lady Women K20Features 1. Full Touch IPS Color Screen 2. 21 Watch Dials and DIY Dial 3. Activity Trackers (Pedometer, Distance, Calories) 4. Heart Rate Monitor and Blood Pressure Monitor 5. 8 Sport Modes, Camera Shutter 6. Sleep Tracker, Alarm, Sedentary Reminder 7. Message Notification (Call, SMS, Facebook, Twitter, Instagram ...) 8. Stopwatches, Countdown 9. Find your phone, sensitivity with wrist movementProduct Description \u25c6Display:1.09 inch full touch round display, 240*240 resolution \u25c6Controller: Realtek8762C, 512KB + Flash 64MB \u25c6Activity Sensor: 3 Axis Accelerometer \u25c6Heart Rhythm: HX3601 \u25c6Gravity sensor: G-sensor \u25c6Vibration Motor: Built in vibrating reminder \u25c6Bluetooth: BLE 5.0 \u25c6Casing Material: 304 Stainless steel, ABC+PC back case \u25c6Wrist material: 304 Stainless steel \u25c6Belt size: 18mm*240mm \u25c6Charge Mode: Magnetic USB Charge Cable \u25c6Charging time: 1-2 hours \u25c6Use time: about 7 days \u25c6Standby time: about 20 days \u25c6Water Resistance: IP67 Standard \u25c6APPLICATION: F Fit (can be downloaded from Google Play or APP Store) \u25c6Compatible: iOS 8.0/Android OS 4.4 or above and Bluetooth 2.0 or above (not compatible with iPad, PC or Tablet)Package content: 1 x Smart Watch 1 x User Guide 1 x USB Magnetic ChargerSedentary Reminder Put reminders for periods of inactivity, the connected watch vibrates to remind you to move if you stay in your seat for a long time.Find the Phone If you can not find your smartphone, simply press and hold the \"Find Phone\" icon on the bracelet. Your phone will vibrate and sound..", "pricing": "$59.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41QocgzQCaL.jpg", "https://m.media-amazon.com/images/I/510bVJ-1rgL.jpg", "https://m.media-amazon.com/images/I/51COTcuJgGL.jpg", "https://m.media-amazon.com/images/I/51iKU+CRlrL.jpg", "https://m.media-amazon.com/images/I/517yfvy4ToL.jpg", "https://m.media-amazon.com/images/I/51M6dUDV6aL.jpg", "https://m.media-amazon.com/images/I/512MsFKFLfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Sports & Outdoors \u203a Exercise & Fitness \u203a Fitness Technology \u203a Activity & Fitness Trackers", "average_rating": 3.6, "small_description": ["IPS touch screen ", "\u3010Fashion Smart Watch for Women\u3011Luxury and simple design for lady with metallic frame and beautiful wrist in IP67 Waterproof , with a 1.09 inch full touch IPS screen, 21 different clock face styles to choose, and DIY face function which allow you to set your family picture as clock face. Suitable for business and sports. The display screen will be lightened up automatically while lifting the wrist. ", "\u3010Call & Message Notifications\u3011This smart watch support Receiving and reading SMS messages and SNS notifications straightly from social App such as Facebook, Twitter, WhatsApp, LinkedIn and Instagram, etc. You can also hang up incoming phone calls straight from smart watch. Please note: this smart watch not support calling answer and dial out. ", "\u3010Accurate Health Monitor & 8 Sport Modes\u3011Built-in US low-power infrared body-sensing processor, automatically track your all-day steps calories, heart rate, blood pressure and sleep stage monitoring, and provide comprehensive analysis of your sleep(deep sleep,light sleep and wake up time), You can read them real-time directly on the watch, allowing you to better understand your physical condition. You can also set up to 8 sport modes to track your various exercises accordingly. ", "\u3010Magnetic Power Charging and Battery Strong Endurance\u3011USB cable come with a magnetic port which can connect smart watch easily and quickly for charging. With Bluetooth 5.0 version low power consumption design this smart watch offers longer battery endurance. Only 2 hours charging ensure you professional personal health consultants and data recording more than 7 days, standby time can reach more than 20 days. ", "\u3010Guarantee and After-Sales Service\u3011Buy without risk! After-sales service to assure your long-term enjoyment. If you have any question about RAIMI Brand Smart watch, please contact us directly by email. 7*24 hours quick reply, and solve all the problem for you. You have absolutely no trouble about getting a dud product as we promise to return your money if you are not happy with your purchase. "], "total_reviews": 90, "total_answered_questions": 21, "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Blue", "price_string": "$59.99", "price": 59.99, "image": "https://m.media-amazon.com/images/I/510bVJ-1rgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TGMYC8H/ref=twister_B08TGT72GW?_encoding=UTF8&psc=1", "value": "Golden", "price_string": "$59.99", "price": 59.99, "image": "https://m.media-amazon.com/images/I/51PBvs6p0QL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TGT3XCL/ref=twister_B08TGT72GW?_encoding=UTF8&psc=1", "value": "Silver", "price_string": "$59.99", "price": 59.99, "image": "https://m.media-amazon.com/images/I/41AuI47aQRL.jpg"}]}, "seller_id": "AO183GOOF5NTM", "seller_name": "TOPUS", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08TGMZX1F", "category": "electronics", "query": "Wearable Technology", "page": 43, "small_description_old": "About this item\n \nIPS touch screen \u3010Fashion Smart Watch for Women\u3011Luxury and simple design for lady with metallic frame and beautiful wrist in IP67 Waterproof , with a 1.09 inch full touch IPS screen, 21 different clock face styles to choose, and DIY face function which allow you to set your family picture as clock face. Suitable for business and sports. The display screen will be lightened up automatically while lifting the wrist. \u3010Call & Message Notifications\u3011This smart watch support Receiving and reading SMS messages and SNS notifications straightly from social App such as Facebook, Twitter, WhatsApp, LinkedIn and Instagram, etc. You can also hang up incoming phone calls straight from smart watch. Please note: this smart watch not support calling answer and dial out. \u3010Accurate Health Monitor & 8 Sport Modes\u3011Built-in US low-power infrared body-sensing processor, automatically track your all-day steps calories, heart rate, blood pressure and sleep stage monitoring, and provide comprehensive analysis of your sleep(deep sleep,light sleep and wake up time), You can read them real-time directly on the watch, allowing you to better understand your physical condition. You can also set up to 8 sport modes to track your various exercises accordingly. \u3010Magnetic Power Charging and Battery Strong Endurance\u3011USB cable come with a magnetic port which can connect smart watch easily and quickly for charging. With Bluetooth 5.0 version low power consumption design this smart watch offers longer battery endurance. Only 2 hours charging ensure you professional personal health consultants and data recording more than 7 days, standby time can reach more than 20 days. \u3010Guarantee and After-Sales Service\u3011Buy without risk! After-sales service to assure your long-term enjoyment. If you have any question about RAIMI Brand Smart watch, please contact us directly by email. 7*24 hours quick reply, and solve all the problem for you. You have absolutely no trouble about getting a dud product as we promise to return your money if you are not happy with your purchase."}, {"name": "Nair Hair Remover Sensitive Formula (Pack of 2)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5.75 x 2.25 x 1.25 inches; 5.01 Ounces", "Item model number\n \u200f": "\u200e\n 103306", "UPC\n \u200f": "\u200e\n 022600002208", "Manufacturer\n \u200f": "\u200e\n Nair", "ASIN\n \u200f": "\u200e\n B07B41K2VV", "Best Sellers Rank": "#57,363 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#85 in Face & Body Hair Depilatories", "#85 in Face & Body Hair Depilatories": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Nair Store", "brand_url": "https://www.amazon.com/stores/Nair/page/6FAA4901-5698-4976-98B7-5442C2CBF050?ref_=ast_bln", "full_description": "Nair Sensitive Formula Glides Away. Remove hair from those hard-to-reach areas with Nair Glides Away Sensitive. This Sensitive formula hair removal cream is infused with 100% Natural Coconut Oil and Vitamin E. It's a dye-free, paraben-free formula for gentler hair removal, and its unique application method offers an easy, touch-free alternative. Enjoy smooth skin for up to 6 days! For bikini, arm, and underarm areas.", "pricing": "$16.53", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41fTRkiAPAL.jpg", "https://m.media-amazon.com/images/I/41hzzll4qoL.jpg", "https://m.media-amazon.com/images/I/419bCHH7FWL.jpg", "https://m.media-amazon.com/images/I/419bCHH7FWL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Women's \u203a Depilatories", "average_rating": 4, "small_description": [""], "total_reviews": 197, "total_answered_questions": 3, "customization_options": "", "seller_id": "ASEVS99O6FS73", "seller_name": "Pharmapacks_", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07B41K2VV", "category": "beauty", "query": "Shave & Hair Removal", "page": 10, "small_description_old": ""}, {"name": "UPware 4-Piece Beach Sandals Hand Painted Resin Handle with Stainless Steel Blade Cheese Spreader/Butter Spreader Knife, Assorted", "product_information": {"Package Dimensions": "2 x 2 x 2 inches", "Item Weight": "2 pounds", "ASIN": "B08WR7WFGM", "Customer Reviews": {"ratings_count": 3, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#733,851 in Kitchen & Dining (See Top 100 in Kitchen & Dining) #591 in Cheese Spreaders"], "Date First Available": "February 17, 2021"}, "brand": "Visit the UP Store", "brand_url": "https://www.amazon.com/stores/UPware/page/60D0BAE8-85EF-4650-B6F3-18F216928A9E?ref_=ast_bln", "full_description": "Spread some ocean fun with beach sandals spreaders. Set makes an excellent gift for your favorite host or hostess. Perfect for entertaining, this set will be a fun addition to your nautical and beach party, or use daily to add a bit of joy to your everyday.", "pricing": "$15.95", "list_price": "", "availability_quantity": 2, "availability_status": "In Stock. Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41bcvOYAYnL.jpg", "https://m.media-amazon.com/images/I/31RITiJuHtL.jpg", "https://m.media-amazon.com/images/I/31wDfVQS49L.jpg", "https://m.media-amazon.com/images/I/310rPfncH7L.jpg", "https://m.media-amazon.com/images/I/31zeOPgoNFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Kitchen & Dining \u203a Kitchen Utensils & Gadgets \u203a Cheese Tools \u203a Spreaders", "average_rating": 5, "small_description": ["Size: 5\" L ", "Material: Hand Painted Resin, Stainless Steel ", "Care & Clean: Hand Wash Only ", "Includes: 4-PC ", "Striped, floral & polka-dotted flip flop sandals in vibrant colors, each handle also includes a small piece of sandy beach "], "total_reviews": 3, "total_answered_questions": "", "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "Beach Sandals", "price_string": "$15.95", "price": 15.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WS4NR2D/ref=twister_B08WRVYLYC?_encoding=UTF8&psc=1", "value": "Flip Flops", "price_string": "$19.95", "price": 19.95, "image": null}]}, "seller_id": "ANANHZHGC6GYL", "seller_name": "UPware Store", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B08WR7WFGM", "category": "grocery", "query": "Cheese & Charcuterie Gifts", "page": 28, "small_description_old": "Size: 5\" L Material: Hand Painted Resin, Stainless Steel Care & Clean: Hand Wash Only Includes: 4-PC Striped, floral & polka-dotted flip flop sandals in vibrant colors, each handle also includes a small piece of sandy beach"}, {"name": "1-Light Farmhouse Wall Sconces Black Bathroom Vanity Light with Glass Shade, Bathroom Light Fixture Over Mirror, Modern Indoor Wall Light for Bedroom Living Room Hallway Porch", "product_information": {"Brand": "\u200eTOULMJ", "Manufacturer": "\u200eTOULMJ", "Item Weight": "\u200e2.09 pounds", "Package Dimensions": "\u200e10.35 x 9.02 x 7.83 inches", "Style": "\u200eFarmhouse", "Color": "\u200eBlack-one Light", "Material": "\u200eGlass, Metal", "Finish Types": "\u200eMatte", "Number of Lights": "\u200e1", "Special Features": "\u200eDimmable", "Shade Material": "\u200eGlass", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Type of Bulb": "\u200eLED, Incandescent", "Wattage": "\u200e60 watts", "ASIN": "B095SWN6C3", "Customer Reviews": {"ratings_count": 15, "stars": "3.5 out of 5 stars"}, "Best Sellers Rank": ["#313,123 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #1,463 in Vanity Lighting Fixtures"], "Date First Available": "May 26, 2021"}, "brand": "Visit the TOULMJ Store", "brand_url": "https://www.amazon.com/stores/TOULMJ/page/74323FB6-DDA5-4164-A19A-2C7139AC0603?ref_=ast_bln", "full_description": "", "pricing": "$36.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41NZ0-TkZoS.jpg", "https://m.media-amazon.com/images/I/51D10f7bt4S.jpg", "https://m.media-amazon.com/images/I/51CHd6gIMGS.jpg", "https://m.media-amazon.com/images/I/41uL8PEuNoS.jpg", "https://m.media-amazon.com/images/I/51ZWLLSGxiS.jpg", "https://m.media-amazon.com/images/I/41FX4A+rHLL.jpg", "https://m.media-amazon.com/images/I/41IB+INBDhS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Vanity Lights", "average_rating": 3.5, "small_description": ["\u3010Vintage industrial design\u3011The farmhouse bathroom vanity light features a decorative gooseneck style, seeded glass shades & chrome finish. The unique enclosed jar shades emit a glow and ambiance to any home. ", "\u3010Suggested bulb type\u3011ST45 bulb. Compatible with incandescent bulbs with E26 socket and 60W Max (excluding bulbs), LED, CFL and halogen bulbs (dimmable): when used with dimmable bulbs and compatible dimmer switches, they are fully dimmable, creating The perfect atmosphere. ", "\u3010Dimmable\u3011This wall mount light is UL listed. Designed to be dimmable when used with a compatible dimmer switch, allowing you to adjust the light. ", "\u3010Easy installation\u3011This farmhouse Vanity Light is easy to install, including all installation hardware, which can be installed quickly and easily. This function is designed to connect directly to the reserved wire, No switch or cord on the lamp. Applicable to American junction box standard. ", "\u30101 Years Warranty\u3011 We provide 1 YEARS WARRANTY and FREE REPLACEMENT or REFUND within 30 days. Great after-sales service about our wall sconce, if you have any questions, please feel free to contact us. "], "total_reviews": 15, "total_answered_questions": "", "customization_options": "", "seller_id": "A1SY5IFXPB1567", "seller_name": "LiChi Lighting", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B095SWN6C3", "category": "garden", "query": "Sconces", "page": 103, "small_description_old": "About this item \u3010Vintage industrial design\u3011The farmhouse bathroom vanity light features a decorative gooseneck style, seeded glass shades & chrome finish. The unique enclosed jar shades emit a glow and ambiance to any home. \u3010Suggested bulb type\u3011ST45 bulb. Compatible with incandescent bulbs with E26 socket and 60W Max (excluding bulbs), LED, CFL and halogen bulbs (dimmable): when used with dimmable bulbs and compatible dimmer switches, they are fully dimmable, creating The perfect atmosphere. \u3010Dimmable\u3011This wall mount light is UL listed. Designed to be dimmable when used with a compatible dimmer switch, allowing you to adjust the light. \u3010Easy installation\u3011This farmhouse Vanity Light is easy to install, including all installation hardware, which can be installed quickly and easily. This function is designed to connect directly to the reserved wire, No switch or cord on the lamp. Applicable to American junction box standard. \u30101 Years Warranty\u3011 We provide 1 YEARS WARRANTY and FREE REPLACEMENT or REFUND within 30 days. Great after-sales service about our wall sconce, if you have any questions, please feel free to contact us. \n \u203a See more product details"}, {"name": "Itachishop Flannel Fleece Blanket with Pompom Fringe, Fuzzy Throw Blanket Bed Blanket for Couch Home Decor, 60x50in", "product_information": {"Product Dimensions": "60 x 50 x 0.01 inches", "Item Weight": "1.3 pounds", "ASIN": "B08FGWZZ8J", "Item model number": "blanket", "Customer Reviews": {"ratings_count": 10, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#555,416 in Home & Kitchen (See Top 100 in Home & Kitchen) #4,646 in Bed Throws"], "Date First Available": "August 9, 2020"}, "brand": "Brand: Itachishop", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Itachishop", "full_description": "Our FLANNEL FLEECE BLANKETSoft & Durable ConstructionOur high-quality bed throw blanket with plush microfiber flannel will bring you extra comfort. Unique stylish design offers you different kinds of softness with one side smooth and one side fuzzy.Premium SelectionNeat stitches enhance strong connections at seams and better strength with an integrated outlook.Multi-PurposePerfect to throw on your sofa bed or in your car superior durable and extra warm, suitable for the Sitting room, Bedroom, Dinning room, Comfort Carpet, Wrap up yourself when reading or watching TV. Great Housewarming Gift!100% Satisfaction GuaranteedWe are so confident with so many years experience in flannel fleece blanket manufacturing that you will fall in love with this product, If there is any problems or concerns, please feel free to reach out to us!", "pricing": "$28.80", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51X3TAHzFeL.jpg", "https://m.media-amazon.com/images/I/41SjF9f0BhL.jpg", "https://m.media-amazon.com/images/I/51Vs2dcF6WL.jpg", "https://m.media-amazon.com/images/I/51oneVr8lSL.jpg", "https://m.media-amazon.com/images/I/514jkIxIpLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Blankets & Throws \u203a Throws", "average_rating": 4.8, "small_description": ["[Premium Flannel Selection]: Soft blanket utilizes 100% pilling proof flannel fabric all layers to last for long use and provides fade resistance better than others like cotton blanket - Flannel blanket is NOT tend to bunch with time like cotton which has little elasticity to keep its shape - Save your time with quick drying and wrinkle resistant blanket. ", "[Size Design]: Full over 3D photo printing(Single-sided). Available in three sizes choose (L x W) - 50x40 inch, 60x50 inch, 80x60 inch. Suitable for Kids, Baby, Toddler, Boys, Girls, Children, Adults, Elderly, Parents and Grandparents and Everyone. ", "[Fleece Blanket Benefits]: Our throw blanket keeps you warm, but it\u2019s not thick to the point where it will overheat you, giving you the perfectly-balanced versatile throw blanket. It's non-shedding and prevents allergy. Ideal for those who are allergic and asthmatic! ", "[Versatility]: Luxury warm flannel fleece blankets is good for all seasons, and design for indoors and outdoors, bed, couch, camping and travelling occasion. Keeps you warm while provides you with a soft and gentle touch. Offers you great comfort in cold winter or AC room in summer. Ideal Christmas New Year gift option for friends and family. ", "[Care Instruction]: Easy wash by yourself. Machine wash, quick drying, easy care, durable, don't bleach, don't iron, hang dry recommended. "], "total_reviews": 10, "total_answered_questions": "", "model": "blanket", "customization_options": "", "seller_id": "A350R8AGK7KKWH", "seller_name": "money\u5c0f\u5c4b", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08FGWZZ8J", "category": "garden", "query": "Throw Blankets", "page": 217, "small_description_old": "About this item\n \n[Premium Flannel Selection]: Soft blanket utilizes 100% pilling proof flannel fabric all layers to last for long use and provides fade resistance better than others like cotton blanket - Flannel blanket is NOT tend to bunch with time like cotton which has little elasticity to keep its shape - Save your time with quick drying and wrinkle resistant blanket. [Size Design]: Full over 3D photo printing(Single-sided). Available in three sizes choose (L x W) - 50x40 inch, 60x50 inch, 80x60 inch. Suitable for Kids, Baby, Toddler, Boys, Girls, Children, Adults, Elderly, Parents and Grandparents and Everyone. [Fleece Blanket Benefits]: Our throw blanket keeps you warm, but it\u2019s not thick to the point where it will overheat you, giving you the perfectly-balanced versatile throw blanket. It's non-shedding and prevents allergy. Ideal for those who are allergic and asthmatic! [Versatility]: Luxury warm flannel fleece blankets is good for all seasons, and design for indoors and outdoors, bed, couch, camping and travelling occasion. Keeps you warm while provides you with a soft and gentle touch. Offers you great comfort in cold winter or AC room in summer. Ideal Christmas New Year gift option for friends and family. [Care Instruction]: Easy wash by yourself. Machine wash, quick drying, easy care, durable, don't bleach, don't iron, hang dry recommended."}, {"name": "Office Desk Pad, Writing Mat with Full Grip Fixation Lip, Non-Slip PU Leather Table Blotter Desk Protector Gaming Mat Laptop Keyboard Working Mat, Waterproof Table Protective Pad", "product_information": {"Manufacturer": "\u200eLINGXIYA", "Brand": "\u200eLINGXIYA", "Item Weight": "\u200e15.5 ounces", "Package Dimensions": "\u200e16.61 x 3.35 x 2.72 inches", "Color": "\u200eBlack", "Material Type": "\u200eFaux Leather, Polyurethane, Paper, Leather, Suede", "Number of Items": "\u200e1", "Size": "\u200e90X40cm", "Manufacturer Part Number": "\u200eDeskpad526", "ASIN": "B095KCTB3Y", "Customer Reviews": {"ratings_count": 16, "stars": "3.7 out of 5 stars"}, "Best Sellers Rank": ["#59,495 in Office Products (See Top 100 in Office Products) #121 in Desk Pads & Blotters #64,198 in Home D\u00e9cor Products"], "Date First Available": "May 21, 2021"}, "brand": "Brand: LINGXIYA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=LINGXIYA", "full_description": "Still worrying about the frequent movement of the mouse pad?Are you still fed up with the monotonous office environment that you experience every day?Still frustrated with desk scratches?Our large desk pad can solve all of these problems. Keep your desk tidy.1.Made of high quality PU leather with sturdy construction, the desk pad will last a long time.2.Edge protection lip protects your hand or clothes from scratches with the edge of the desk.3.Special leather cushion, thick material, good flexibility. Rectangular desk pad provides a great writing surface that won't nick, scratch or stain.4.This desk pad has enough space for your keyboard and mouse and enough space for a sketchbook or diary. Suitable for a wide variety of uses.5.Large enough to accommodate a laptop, mouse, and keyboard.6.Suitable for desk protection, desk pad and mouse padMaterial: PU leather.Size: 60 x 40 cm, 80 x 40 cm, 90 x 40 cm, 100 x 50 cm, 120 x 60 cm.Package Includes:1 x desk pad.Note:In order to facilitate transportation, this product is packaged in a rolled up package. It is normal that there will be slight ripples or wrinkles when the product is just opened. It will return to flat after 2-3 days with heavy objects such as books.", "pricing": "$34.99", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51Wk27E17kS.jpg", "https://m.media-amazon.com/images/I/41vXgGg1o8L.jpg", "https://m.media-amazon.com/images/I/41tztN0EoTL.jpg", "https://m.media-amazon.com/images/I/41-ImOHYkiL.jpg", "https://m.media-amazon.com/images/I/51m1-6J1BDL.jpg", "https://m.media-amazon.com/images/I/41KMgNL2qRL.jpg", "https://m.media-amazon.com/images/I/51jJsY+HabL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office & School Supplies \u203a Desk Accessories & Workspace Organizers \u203a Desk Pads & Blotters", "average_rating": 3.7, "small_description": ["PRODUCT SIZE: 60x40 cm, 80x40 cm, 90x40 cm, 100x50 cm, 120x60 cm. Suitable for desk protection, desk pad and mouse pad. ", "EDGE PROTECTUION: Office desk pad with curved angle lip wraps the edge of the desk, effectively buffers the friction between desk and body, and protects your clothes from scratches with desk edge, can also prevent the mat from moving. ", "DURABLE LEATHER: PU synthetic leather + non-slip suede underside. This soft leather desk pad is smooth and soft and fits perfectly on the office desk. (NOTE: The material is soft PU leather, not hard leather). ", "EASY TO CLEAN: Protect Your Desk: The hard-wearing desk pad is water-repellent and scratch-resistant. If you accidentally spill something on the table mat, it can simply be wiped off with paper or towels. ", "LARGE ENOUGH SURFACE: The desk pad is large enough to accommodate a keyboard, mouse, water cup, books and laptop and provide you with an alarm movement space. Acts like a mouse pad and records all laser and optical mouse traces. "], "total_reviews": 16, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B095KBRRQQ/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "60X40cm", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095KDJRQ9/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "80X40", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "90X40cm", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095KCW84N/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "100X50cm", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095KDB734/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "120X60cm", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Wk27E17kS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095KD85RJ/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ito72XbIS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095KFM57Y/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51XAGdJsIuS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095K9SY46/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41WCM6IOMES.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095KBZZ4W/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51SbolqsKeS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095K9KS2M/ref=twister_B095KC92WQ?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/414gy19IbdS.jpg"}]}, "seller_id": "AX5QQ9NY3CFLV", "seller_name": "LINGXIDIANZI", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B095KCTB3Y", "category": "garden", "query": "Computer Armoires", "page": 9, "small_description_old": "About this item\n \nPRODUCT SIZE: 60x40 cm, 80x40 cm, 90x40 cm, 100x50 cm, 120x60 cm. Suitable for desk protection, desk pad and mouse pad. EDGE PROTECTUION: Office desk pad with curved angle lip wraps the edge of the desk, effectively buffers the friction between desk and body, and protects your clothes from scratches with desk edge, can also prevent the mat from moving. DURABLE LEATHER: PU synthetic leather + non-slip suede underside. This soft leather desk pad is smooth and soft and fits perfectly on the office desk. (NOTE: The material is soft PU leather, not hard leather). EASY TO CLEAN: Protect Your Desk: The hard-wearing desk pad is water-repellent and scratch-resistant. If you accidentally spill something on the table mat, it can simply be wiped off with paper or towels. LARGE ENOUGH SURFACE: The desk pad is large enough to accommodate a keyboard, mouse, water cup, books and laptop and provide you with an alarm movement space. Acts like a mouse pad and records all laser and optical mouse traces."}, {"name": "Disney Castle 3D Window Decal Wall Sticker Home Decor Art Mural Kids J168, Regular", "product_information": {"ASIN": "B073P9Z1K9", "Country of Origin": "Israel", "Item model number": "J168", "Customer Reviews": {"ratings_count": 52, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#278,268 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #8,478 in Wall Stickers & Murals"]}, "brand": "Brand: Dizzy", "brand_url": "https://www.amazon.com/Dizzy/b/ref=bl_dp_s_web_20221216011?ie=UTF8&node=20221216011&field-lbr_brands_browse-bin=Dizzy", "full_description": "", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51Ju6FZEfjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Paint, Wall Treatments & Supplies \u203a Wall Stickers & Murals", "average_rating": 4.3, "small_description": ["Applying wall decals has never been easier - Just peel & Stick! ", "All of our decals are printed on a VERY HIGH CLASS VINYL, to make sure your wall stays perfect and safe. ", "Make sure to clean your wall with a dry cloth/towel right before applying, in order to make sure the wall is dust free. ", "Photos are for illustration purposes only, please check indicated size, or choose different sizes in the store ", "Some decals arrive in several parts, the indicated size refers to the assembled size "], "total_reviews": 52, "total_answered_questions": "", "model": "J168", "customization_options": {"Material Type": null, "Size": [{"is_selected": true, "url": null, "value": "42x28 cm (16.5\"x11\" Inches)", "price_string": "$11.99", "price": 11.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073PBLGXR/ref=twister_B0865TJWH3?_encoding=UTF8&psc=1", "value": "65x43\u00a0cm\u00a0(25.5\"x17\" Inches)", "price_string": "$16.99", "price": 16.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073PBFSN5/ref=twister_B0865TJWH3?_encoding=UTF8&psc=1", "value": "90x60 cm (35.5\"x23.5\" Inches)", "price_string": "$21.99", "price": 21.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073PBLGXV/ref=twister_B0865TJWH3?_encoding=UTF8&psc=1", "value": "125x80 cm (49\"x31.5\")", "price_string": "$31.99", "price": 31.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073PBT8S3/ref=twister_B0865TJWH3?_encoding=UTF8&psc=1", "value": "160x100\u00a0cm (65\"x39.5\")", "price_string": "$41.99", "price": 41.99, "image": null}]}, "seller_id": "A3MGXMMLP2K3IM", "seller_name": "Dizzy Decor", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B073P9Z1K9", "category": "garden", "query": "Window Coverings", "page": 274, "small_description_old": "About this item Applying wall decals has never been easier - Just peel & Stick! All of our decals are printed on a VERY HIGH CLASS VINYL, to make sure your wall stays perfect and safe. Make sure to clean your wall with a dry cloth/towel right before applying, in order to make sure the wall is dust free. Photos are for illustration purposes only, please check indicated size, or choose different sizes in the store Some decals arrive in several parts, the indicated size refers to the assembled size"}, {"name": "AmeriColor AmeriMist - Lemon Yellow Airbrush Food Color.65 oz.", "product_information": {"Manufacturer": "\u200eAmeriColor Corp.", "Is Discontinued By Manufacturer": "\u200eNo", "Color": "\u200eLemon Yellow", "Item Package Quantity": "\u200e1", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B00FBPHZKC", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#348,305 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food) #1,548 in Food Coloring"], "Date First Available": "February 13, 2010"}, "brand": "Brand: AmeriColor", "brand_url": "https://www.amazon.com/AmeriColor/b/ref=bl_dp_s_web_20592158011?ie=UTF8&node=20592158011&field-lbr_brands_browse-bin=AmeriColor", "full_description": "AmeriMist is a super-strength, highly concentrated spray-on air brush food color that is extremely effective\u2014even on hard to color non-dairy whipped toppings and icings. AmeriMist air brush colors prevent the need to over-spray, eliminating water spots and preventing icing from breaking down. AmeriMist is available in the same colors as AmeriColor Soft Gel Paste, with the same vibrant tones.", "pricing": "$6.25", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41p+jdUZTJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Food Coloring", "average_rating": 5, "small_description": ["One .65 oz bottle of AmeriMist airbrush food color ", "Super strong, highly concentrated color\u2014goes farther to save you money ", "Works beautifully when sprayed onto hard to color icings ", "Can be painted on with a brush or used in an airbrush unit ", "No need to dilute, cleans up easily with water "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A21TDI5ZXP2S9X", "seller_name": "AmeriColor Corp.", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00FBPHZKC", "category": "grocery", "query": "Whipped Toppings", "page": 57, "small_description_old": "About this item\n \nOne .65 oz bottle of AmeriMist airbrush food color Super strong, highly concentrated color\u2014goes farther to save you money Works beautifully when sprayed onto hard to color icings Can be painted on with a brush or used in an airbrush unit No need to dilute, cleans up easily with water \n \u203a See more product details"}, {"name": "Bathroom mirror Oval Frameless LED, Smart Anti-Fog Decorative Mirror, Household Wall-Mounted Vanity Mirror, 60 \u00d7 80cm", "product_information": {"Manufacturer": "BIAO BIAO US", "ASIN": "B0832YXLRK"}, "brand": "Brand: Bathroom mirror", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Bathroom+mirror", "full_description": "--Product parameters Product name: LED bathroom mirror Style: no switch + anti-fog Mirror material: 5mm silver mirror Product specifications: 60 \u00d7 80cm Light color: white light, warm light LED light source color temperature: 6000k white, 2700-3000k warm Input voltage: 12V Chip: Sanan chip Power: 3.6w / m Shape: oval Installation method: hook installation Maintenance: stains on the mirror surface can be wiped with toothpaste or 30% cleaning diluent --Precautions The pictures are taken in kind, because there will be a certain color difference when viewing the product under different light environments and monitors, whichever is the actual one received If the product is damaged after receiving it, just contact customer service to provide a photo to reissue or refund immediately", "pricing": "$216.64", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51HjqAdkLxL.jpg", "https://m.media-amazon.com/images/I/41EnCO-BuML.jpg", "https://m.media-amazon.com/images/I/41leZuJltcL.jpg", "https://m.media-amazon.com/images/I/41+0I2YEvPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Mirrors \u203a Wall-Mounted Mirrors", "average_rating": "", "small_description": ["Electronic anti-fog film, fast heating speed, good defogging effect, reject water stains, keep the mirror fresh ", "Copper-free silver mirror, high-quality float glass, strong oxidation resistance, clear imaging, environmental protection and health ", "12V safety light belt, built-in lighting on the mirror surface without shadows, instantly brightens the mirror surface, suitable for makeup ", "Computer delicate edging, frosted and transparent, unique edge sealing, not easy to oxidize, long life ", "Make sure the wall is a load-bearing wall during installation, which can bear the weight of the mirror "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Warm Light", "price_string": "$216.64", "price": 216.64, "image": "https://m.media-amazon.com/images/I/51HjqAdkLxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0832Y13PV/ref=twister_B0832Y5NDD?_encoding=UTF8&psc=1", "value": "White Light", "price_string": "$216.64", "price": 216.64, "image": "https://m.media-amazon.com/images/I/51EiDy-ZPfL.jpg"}]}, "seller_id": "A10J14OM85VC1K", "seller_name": "BIAO BIAO US", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0832YXLRK", "category": "garden", "query": "Decorative Mirrors", "page": 261, "small_description_old": "About this item Electronic anti-fog film, fast heating speed, good defogging effect, reject water stains, keep the mirror fresh Copper-free silver mirror, high-quality float glass, strong oxidation resistance, clear imaging, environmental protection and health 12V safety light belt, built-in lighting on the mirror surface without shadows, instantly brightens the mirror surface, suitable for makeup Computer delicate edging, frosted and transparent, unique edge sealing, not easy to oxidize, long life Make sure the wall is a load-bearing wall during installation, which can bear the weight of the mirror"}, {"name": "Epson C31CB10023 TM-T20 Readyprint Thermal Receipt Printer, Ethernet Interface, Without Cable, Dark Grey", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.3 x 9.2 x 7.6 inches; 5.1 Pounds", "Item model number\n \u200f": "\u200e\n C31CB10023", "Date First Available\n \u200f": "\u200e\n November 2, 2012", "Manufacturer\n \u200f": "\u200e\n Epson", "ASIN\n \u200f": "\u200e\n B00A0WG5KW", "Best Sellers Rank": "#798,269 in Office Products (See Top 100 in Office Products)#152,314 in Office Electronics Products", "#152,314 in Office Electronics Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Epson Store", "brand_url": "https://www.amazon.com/stores/Epson/page/938A6E01-68B6-4115-8369-91F0063B474B?ref_=ast_bln", "full_description": "For nearly 40 years, Epson has led the industry in developing innovative, reliable, high-performance products. From scanners to printers to 3D projectors, our award-winning technology brings your images to life. Epson Headquartered and established on the shore of Lake Suwa in Nagano, Japan.", "pricing": "$320.00", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/51BzGMyEVfL.jpg", "https://m.media-amazon.com/images/I/51dMEsQgLuL.jpg", "https://m.media-amazon.com/images/I/51nh9ejp86L.jpg", "https://m.media-amazon.com/images/I/51EBSJoQhIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Electronics", "average_rating": 4.1, "small_description": ["Dark gray color "], "total_reviews": 4, "total_answered_questions": 3, "customization_options": "", "seller_id": "AB1U6LPD7720R", "seller_name": "SourceLink Technologies", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00A0WG5KW", "category": "electronics", "query": "Printers & Scanners", "page": 207, "small_description_old": "About this item\n \nEthernet interface Dark gray color Without Cable"}, {"name": "20x50 High Power Binoculars for Adults with Low Light Night Vision, Compact Waterproof Binoculars for Bird Watching Hunting Travel Football Games Stargazing with Carrying Case and Strap", "product_information": {"Product Dimensions": "7.5 x 2.6 x 7 inches", "Item Weight": "1.76 pounds", "ASIN": "B08YWKVNLT", "Customer Reviews": {"ratings_count": 1173, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#91 in Camera & Photo Products (See Top 100 in Camera & Photo Products) #12 in Binoculars"], "Date First Available": "March 13, 2021", "Manufacturer": "UncleHu"}, "brand": "Visit the UncleHu Store", "brand_url": "https://www.amazon.com/stores/UncleHu/page/7BC235BC-377A-4077-ADC5-5F5890DB5B5D?ref_=ast_bln", "full_description": "", "pricing": "$46.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41mOzJeSQLL.jpg", "https://m.media-amazon.com/images/I/51SgzWxadSL.jpg", "https://m.media-amazon.com/images/I/51WUNyazrCL.jpg", "https://m.media-amazon.com/images/I/516np3RbyQL.jpg", "https://m.media-amazon.com/images/I/512wCVB6teL.jpg", "https://m.media-amazon.com/images/I/51OM5OIOVWL.jpg", "https://m.media-amazon.com/images/I/91k3xzLW4VL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Binoculars & Scopes \u203a Binoculars", "average_rating": 4.4, "small_description": ["\u3010Powerful Binoculars - 26mm Large Lens\u301126mm eye lens diameter and 50mm objective lens diameter, large field of view. 26mm eye lens collect more lights than others (e.g. 10x25, 12x25, 10x21 binoculars and ordinary 10x42, 12x42 binoculars), delivering clearer and brighter view. Perfect binoculars for adults bird watching, hunting, camping, hiking, sports and stargazing. ", "\u3010Clear Image\u3011Multiple layer coated aspherical lenses elements for light reflection and minimal distortion, better image brightness, contrast and quality, even in low light condition. The Bak-4 prism has a perfectly round exit pupil. You can see a bright, clear and razor-sharp view. ", "\u3010Sleek and Solid, Waterproof, Fog-proof\u3011Metal structure with 1.76lb (800g) is more stable. Rubber finish for shock resistance and a firm, comfortable grip, is durable. Waterproof, but can not be used in a heavy rain for a long time or soaked in the water. Anti-drop and fog-proof, too. ", "\u3010Easy to Use\u3011Focus by adjusting the right eyepiece focus wheel and center wheel. Super easy for anyone to use. This pair of binoculars can be used with a tripod. So it is very convenient when you are watching something for a long time. ", "\u3010Perfect Gifts & 100% Money Back Guarantee\u3011The perfect gifts for Christmas' Day, Birthdays, Father's Day, Children's Day and more. We provide 3 years replacement guarantee. If you have any issues with binoculars, simply contact us for a free replacement or a full refund. We are always by your side to serve you. Shop with confidence as we have joined Transparency Plan which enables you to verify authenticity! "], "total_reviews": 1173, "total_answered_questions": 47, "customization_options": "", "seller_id": "A17RCJL0XVJWWO", "seller_name": "UncleHu US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08YWKVNLT", "category": "electronics", "query": "Binoculars & Scopes", "page": 16, "small_description_old": "About this item\n \n\u3010Powerful Binoculars - 26mm Large Lens\u301126mm eye lens diameter and 50mm objective lens diameter, large field of view. 26mm eye lens collect more lights than others (e.g. 10x25, 12x25, 10x21 binoculars and ordinary 10x42, 12x42 binoculars), delivering clearer and brighter view. Perfect binoculars for adults bird watching, hunting, camping, hiking, sports and stargazing. \u3010Clear Image\u3011Multiple layer coated aspherical lenses elements for light reflection and minimal distortion, better image brightness, contrast and quality, even in low light condition. The Bak-4 prism has a perfectly round exit pupil. You can see a bright, clear and razor-sharp view. \u3010Sleek and Solid, Waterproof, Fog-proof\u3011Metal structure with 1.76lb (800g) is more stable. Rubber finish for shock resistance and a firm, comfortable grip, is durable. Waterproof, but can not be used in a heavy rain for a long time or soaked in the water. Anti-drop and fog-proof, too. \u3010Easy to Use\u3011Focus by adjusting the right eyepiece focus wheel and center wheel. Super easy for anyone to use. This pair of binoculars can be used with a tripod. So it is very convenient when you are watching something for a long time. \u3010Perfect Gifts & 100% Money Back Guarantee\u3011The perfect gifts for Christmas' Day, Birthdays, Father's Day, Children's Day and more. We provide 3 years replacement guarantee. If you have any issues with binoculars, simply contact us for a free replacement or a full refund. We are always by your side to serve you. Shop with confidence as we have joined Transparency Plan which enables you to verify authenticity!"}, {"name": "Reciprocating IPR Orthodontic Interproximal Stripping Head Kit (5pcs Automatic Strips 5 Kinds)", "product_information": {"Manufacturer": "\u200eDThand", "Material": "\u200eAluminum", "ASIN": "B083FBJVDY", "Best Sellers Rank": ["#963,292 in Health & Household (See Top 100 in Health & Household) #2,441 in Personal Orthodontic Supplies"], "Date First Available": "September 28, 2019"}, "brand": "Brand: DThand", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=DThand", "full_description": "Description: Autoclavable 5pcs strips Included 1x15HD 1x25HD 1x40HD 1x60HD 1x90HD Doulbe sided strips 90 Micron For use as a saw for opening contacts 60 Micron For reduction 40 Micron For contouring 25 Micron For finishing 15 Micron For per polishing>", "pricing": "$54.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41NjOREo7cL.jpg", "https://m.media-amazon.com/images/I/41CLYyVCKgL.jpg", "https://m.media-amazon.com/images/I/41P-YA9iGHL.jpg", "https://m.media-amazon.com/images/I/41oqd+68sRL.jpg", "https://m.media-amazon.com/images/I/41b+37ecE-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Orthodontic Supplies", "average_rating": "", "small_description": ["\u2764 A safe, precise and reliable method to achieve accurate interproximal stripping. ", "\u2764 More controllable and safer than diamond discs. ", "\u2764 Reciprocating Interproximal Stripping Contra Head ", "\u2764 Provides the flexibility that diamond and carbide burs can\u2019t. ", "\u2764 Faster and more comfortable than manual hand stripping. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ASPNLOU9OE5V2", "seller_name": "Regener. As", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B083FBJVDY", "category": "beauty", "query": "Orthodontic Supplies", "page": 61, "small_description_old": "\u2764 A safe, precise and reliable method to achieve accurate interproximal stripping. \u2764 More controllable and safer than diamond discs. \u2764 Reciprocating Interproximal Stripping Contra Head \u2764 Provides the flexibility that diamond and carbide burs can\u2019t. \u2764 Faster and more comfortable than manual hand stripping. \n \u203a See more product details"}, {"name": "ECOAND Natural Exfoliating Bath Spa Shower Scrub - Dual Side Sisal and Cotton Glove - Deep Exfoliation Wash Mitten (1)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 4 x 7 x 0.2 inches; 1.76 Ounces", "Date First Available\n \u200f": "\u200e\n February 13, 2021", "Manufacturer\n \u200f": "\u200e\n ECOAND", "ASIN\n \u200f": "\u200e\n B08WKMHTGH", "Best Sellers Rank": "#434,845 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#944 in Bath Sponges", "#944 in Bath Sponges": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: ECOAND", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ECOAND", "full_description": "\"Eco Friendly Flexible Dual side Sisal and Cotton Scrub Glove. Sustainable, Eco-friendly Fiber. Sisal Side for Body(Elbow, Heel etc.,) and Cotton Side for Soft Skin(Face or Baby Skin etc.,) Size : 11(entrance) x 18(Width) x 20(Height) cm\"", "pricing": "$5.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51PwSHXX+kS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath Sponges", "average_rating": 3.6, "small_description": ["Eco Friendly Flexible Dual side Sisal and Cotton Scrub Glove. Sustainable, Eco-friendly Fiber. ", "Sisal Side for Body(Elbow, Heel etc.,) and Cotton Side for Soft Skin(Face or Baby Skin etc.,) ", "Great shower and bath scrubber ", "Average size fits most "], "total_reviews": 22, "total_answered_questions": "", "customization_options": {"Item Package Quantity": null}, "seller_id": "AWF276J5MLQFH", "seller_name": "Super sun", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08WKMHTGH", "category": "beauty", "query": "Bath & Bathing Accessories", "page": 80, "small_description_old": "About this item ECOAND Natural Exfoliating Bath Spa Shower Scrub - Dual Side Sisal and Cotton Glove - Deep Exfoliation Wash mitten Eco Friendly Flexible Dual side Sisal and Cotton Scrub Glove. Sustainable, Eco-friendly Fiber. Sisal Side for Body(Elbow, Heel etc.,) and Cotton Side for Soft Skin(Face or Baby Skin etc.,) Great shower and bath scrubber Average size fits most"}, {"name": "Marvel Avengers: Endgame Captain America America's Language T-Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n September 9, 2019", "Manufacturer\n \u200f": "\u200e\n Marvel", "ASIN\n \u200f": "\u200e\n B07XPR3R7N", "Best Sellers Rank": "#2,049,560 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#231,058 in Women's Novelty T-Shirts #268,134 in Men's Novelty T-Shirts #790,484 in Men's Fashion", "#231,058 in Women's Novelty T-Shirts": "", "#268,134 in Men's Novelty T-Shirts": "", "#790,484 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Marvel", "brand_url": "https://www.amazon.com/Marvel/b/ref=bl_sl_s_ap_web_8160907011?ie=UTF8&node=8160907011&field-lbr_brands_browse-bin=Marvel", "full_description": "Team up with what is left of the Avengers to fix the damage that Thanos has caused to the universe. You'll find the perfect gear within this collection of Officially Licensed Marvel Avengers: Endgame tee shirts, sweatshirts, and hoodies!", "pricing": "$22.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A13usaonutL.png", "https://m.media-amazon.com/images/I/417S+7cf-vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a T-Shirts", "average_rating": 5, "small_description": ["Officially Licensed Marvel Apparel ", "19MARF00431A-001 ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XPR3R7N?_encoding=UTF8&customId=B07HPWDCG8", "value": "Women", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A13usaonutL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XPR3R7N?_encoding=UTF8&customId=B07537HQXD", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1vJUKBjc2L.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XPR3R7N?_encoding=UTF8&customId=B07537H64L", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1ntnF3PJOL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XPR3R7N?_encoding=UTF8&customId=B0753779F2", "value": "Silver", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1mefQ2BdaL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XPR3R7N?_encoding=UTF8&customId=B07537PB8C", "value": "Dark Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1MuEgxHlwS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XPR3R7N?_encoding=UTF8&customId=B07537TZ66", "value": "Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/C1xk9V1QWKS.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B0752XJYNL"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07535Y9T6"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07537P4T9"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07538GWNZ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07537PKB3"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B07535YF3H"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07XPR3R7N", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 40, "small_description_old": "Officially Licensed Marvel Apparel 19MARF00431A-001 Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "External Hard Drive1TB 2TB,Slim External Hard Drive Portable Storage Drive Compatible with PC, Laptop and Mac(2TB-A Red)", "product_information": {"Hard Drive": "\u200e2 TB Portable", "Brand": "\u200eLUOQI LGY", "Hardware Platform": "\u200ePC, Mac", "Color": "\u200eRed-A", "Flash Memory Size": "\u200e2 TB", "Hard Drive Interface": "\u200eUSB 1.1", "Manufacturer": "\u200eHanvioCR", "ASIN": "\u200eB09P3BXF1H", "Date First Available": "\u200eDecember 23, 2021", "Customer Reviews": {"ratings_count": null, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#368 in External Hard Drives"]}, "brand": "Brand: LUOQI LGY", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=LUOQI+LGY", "full_description": "External Hard Drive1TB 2TB,Slim External Hard Drive Portable Storage Drive Compatible with PC, Laptop and Mac Type: External hard drive Material: Aluminum Alloy, Matte, Chip Capability Available: 1TB 2TB USB 3.0 and 2.0 ultra-high-speed USB connection, can transfer data at 5Gbit/s speed, which is about 10 times faster than the standard USB 2.0 Colors Available: Black, Red, Blue, Silver, Golden Plug and play function, instant connection when plugging into PC. Advanced Type-C port allows blind insertion on both sides. Ultra slim pocket-sized body for easy transport. Large capability to back up massive amounts of data with ease. Improved metal shell with matte surface for unique touch and comfy hand feel. Auto sleep function to prevent body heat and cut consumption. More safety and more durability, a trustable guard for your important data. What\u2019s Included: 1x Aluminum Alloy Portable External Hard Drive 1x 1 x USB Type-C", "pricing": "$35.11", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41GDaaPX1zL.jpg", "https://m.media-amazon.com/images/I/41jKDjGtxQL.jpg", "https://m.media-amazon.com/images/I/51v6cDrdIzL.jpg", "https://m.media-amazon.com/images/I/41zK8FaIzXL.jpg", "https://m.media-amazon.com/images/I/31U9wWaTw+L.jpg", "https://m.media-amazon.com/images/I/51FxqCDfCnL.jpg", "https://m.media-amazon.com/images/I/41wcZB6acxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Data Storage \u203a External Hard Drives", "average_rating": 4, "small_description": ["This external hard drive is ready to go without software to install, just plug it in and go. ", "The large capacity of 1TB or 2TB and power saving function, it really is your perfect mobile database. ", "Portable hard drive external hdd, easily to be carried and lets you stress-free transfers ", "External hard drive, the transmission speed of which is up to 400MB/S, reading 5 times as fast as usual hard drives while writing 2 times as fast, very efficient and stable! ", "What You Get-- 1 x Portable Hard Drive,1 x USB Cable "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A3VBZJASHAS0FN", "seller_name": "CBACEGABCUQC CO.,LT", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P3BXF1H", "category": "electronics", "query": "Mac", "page": 247, "small_description_old": "About this item\n \nThis external hard drive is ready to go without software to install, just plug it in and go. The large capacity of 1TB or 2TB and power saving function, it really is your perfect mobile database. Portable hard drive external hdd, easily to be carried and lets you stress-free transfers External hard drive, the transmission speed of which is up to 400MB/S, reading 5 times as fast as usual hard drives while writing 2 times as fast, very efficient and stable! What You Get-- 1 x Portable Hard Drive,1 x USB Cable"}, {"name": "Lingerie for Women Sexy One Piece Lace Sleepwear Teddy Bodysuit Babydoll Backless Chemise Nightwear", "product_information": {"Item Weight\n \u200f": "\u200e\n 2.47 Ounces", "Item model number\n \u200f": "\u200e\n 4+ star styles", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 1, 2022", "Manufacturer\n \u200f": "\u200e\n Sinzelimin Amazon Essentials", "ASIN\n \u200f": "\u200e\n B09PJ6RXJ8", "Best Sellers Rank": "#2,473,840 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#3,729 in Women's Chemises & Negligees", "#3,729 in Women's Chemises & Negligees": ""}, "brand": "Brand: Sinzelimin", "brand_url": "https://www.amazon.com/Sinzelimin/b/ref=bl_sl_s_ap_web_19229697011?ie=UTF8&node=19229697011&field-lbr_brands_browse-bin=Sinzelimin", "full_description": "Hello, Dear Customer, (\u10da\u2579\u25e1\u2579\u10da) Welcome to \u261bSinzelimin\u261a Store ![Our Shop]:Normal delivery time: 10-15 Days,Expedited logistics: 5-10 days;Product InformationSeason: Spring,Summer,Autumn,WinterStyle: Sexy styleHow to wash:Hand wash ColdPlace: Honeymoon, Wedding night, lingerie Party, Chrismas sleepwear,Valentine's Day.Package: 1 Set Sexy lingerieDetail:If you want a more relaxed and comfortable feeling, you can buy a larger size.When you sleep at home, you can feel comfortable.2021 2022 Halloween,Thanksgiving,Christmas,Valentine's Day, Mother's Day, Discover Amazon Fashion/Women's Most-Loved Styles/New Arrivals/ 4+ Star Styles lingerie for women sexy lingerie plus size lingerie sexy lingerie sex lingerie sex play women's lingerie sleep & lounge lingerie set crotchless lingerie women lingerie crotchless teddy lingerie babydoll dress women babydoll lingerie women underwear lace bodyduit lingerie set halter chemise lace cups adjustable spaghetti straps a lace underbust band the bodysuit shape design brings you completely female hormones women lace lingerie set v neck chemise halter lingerie sexy lingerie women lace mesh lingerie sleepwear nightie transparent sheer lingerie night dress bridal lingerie bodysuit lingerie women sex lingerie set women sleepwear plus size babydoll lingerie set underwear nightwear women plus size bodysuit lingerie pajama plus size lingerie bodysuit crotchless womens sleepwear plus size babydoll lingerie women push up bra panty sets bodysuit crotchless nightwear women sex set two piece lingerie plus size", "pricing": "$3.99$10.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41erXBtz7QS.jpg", "https://m.media-amazon.com/images/I/414qj-BvttS.jpg", "https://m.media-amazon.com/images/I/51jnA70rLSS.jpg", "https://m.media-amazon.com/images/I/41ak9NOqxLS.jpg", "https://m.media-amazon.com/images/I/41Yv1ruK9bS.jpg", "https://m.media-amazon.com/images/I/41eTt2sZd2S.jpg", "https://m.media-amazon.com/images/I/41x301IB1MS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Lingerie \u203a Baby Dolls & Chemises", "average_rating": "", "small_description": ["lingerie ", "4+ star styles for you! Made in USA and Imported ", "\u2714\u2714About Size: Please Select The Size According To The Size Chart In The Product Picture! More size information please refer to the size chart in the image, recommend 1-2 size up. If you have any questions about the dress, please feel free to contact us. We will provide the best solution for you within 24 hours. ", "Snap closure ", "Hand Wash Only ", "ladies sexy lace eyelashes teddy bodysuit lingerie one-piece underwear jumpsuit temptation sleepwear womens floral lace scallop trim straps lingerie set bra and panty womens plus size floral lace cami top and satin shorts lingerie set womens 2 piece lingerie set lace cami top with shorts with panties sexy pajama set sleepwear womens lingerie sexy lace babydoll bra and panty two pieces lingerie set black women lingerie satin lace chemise nightgown sexy slip sleepwear ", "lingerie chest small lingerie chest support lingerie chest cherry lingerie chest espresso lingerie chest mirrored lingerie chest of drawers tall cherry lingerie chest of drawers tall black lingerie chest of drawers espresso lingerie chest of drawers narrow lingerie chest cherry wood slutty lingerie for sex crotchless slutty lingerie for sex one size slutty lingerie for sex maid slutty lingerie for sex costume slutty lingerie for sex white slutty lingerie for sex open crotch and cups , women lingerie naughty lingerie for women for sex play lace lingerie robe for women black teddy lingerie underwear sexy teddy lingerie for women open crotch women lingerie sexy sets plus size sexy teddy lingerie for women lace lingerie romper lace teddy lingerie for women plus white teddy lingerie pushup teddy lingerie crotchless for women lace teddy lingerie for women babydoll lingerie for women crotchless babydoll women lingerie sexy sets pink lace lingerie plus size top, womens lingerie sexy bodysuit womens lingerie sexy crotchless womens lingerie sexy for boudoir bra and panty sets for women sexy lingerie nightwear for women sexy nightwear for women 2 piece set nightwear for women winter womens nightwear sexy womens nightwear plus size womens nightwear pajama sets womens nightwear for sleeping bra and panty lingerie set bra and panty sets for women sexy plus size womens lingerie sexy teddy womens lingerie sexy panties, women lingerie lace babydoll strap chemise halter teddy v neck sleepwear women sexy lace lingerie set lace bra and panty set 2 piece babydoll bodysuit womens lace trim 2 piece v neck cami and shorts pajama set sexy sleepwear women lingerie lace babydoll strap chemise halter teddy v neck sleepwear women sexy lace lingerie set lace bra and panty set 2 piece babydoll bodysuit womens lace trim 2 piece v neck cami and shorts pajama set sexy sleepwear"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "X-Small", "asin": "B09PJ6RXJ8"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PJ5ZXGH"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PJ5W8V5"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PJ6W8C8"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PJ6JZ7H"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09PJ6TGH2"}, {"is_selected": false, "is_available": false, "value": "3X-Large", "asin": "B09PJ6FFF2"}, {"is_selected": false, "is_available": false, "value": "4X-Large", "asin": "B09PJ78TBB"}, {"is_selected": false, "is_available": false, "value": "5X-Large", "asin": "B09PJ76F1D"}, {"is_selected": false, "is_available": false, "value": "6X-Large", "asin": "B09PJ6P329"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ88TTQ/ref=twister_B09LXM6G27", "value": "1-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41joRxU-f3S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ84VGH/ref=twister_B09LXM6G27", "value": "1-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51VPiTP1GXS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6P6SN/ref=twister_B09LXM6G27", "value": "1-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/510YK-ARu2S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ72HH7/ref=twister_B09LXM6G27", "value": "2-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51C5H1DrhgS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6964M/ref=twister_B09LXM6G27", "value": "2-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sd9XexMMS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6M2KQ/ref=twister_B09LXM6G27", "value": "3-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rZUrqtfFS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ71MZC/ref=twister_B09LXM6G27", "value": "3-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41nc2edqp-S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6G52T/ref=twister_B09LXM6G27", "value": "4-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EcXvnmBkS.jpg"}, {"is_selected": true, "url": null, "value": "4-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41erXBtz7QS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ4LJ4N/ref=twister_B09LXM6G27", "value": "5-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51qBw3LDuQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ61BPG/ref=twister_B09LXM6G27", "value": "5-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wjA9CUbJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ7JVX6/ref=twister_B09LXM6G27", "value": "5-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51n49kDGpbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6X4M9/ref=twister_B09LXM6G27", "value": "5-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41scNEdKmIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6NXF7/ref=twister_B09LXM6G27", "value": "5-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ufZofWmrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ5ZPM4/ref=twister_B09LXM6G27", "value": "6-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Ra55beY3L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ7KJR4/ref=twister_B09LXM6G27", "value": "6-purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MFK+E+itL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ5TLQG/ref=twister_B09LXM6G27", "value": "7-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Geurd6EoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6P6SM/ref=twister_B09LXM6G27", "value": "91-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IwollayFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6R35D/ref=twister_B09LXM6G27", "value": "98-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yBsCBEZrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ5P54Q/ref=twister_B09LXM6G27", "value": "3-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41f45BQI8JS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6FHTG/ref=twister_B09LXM6G27", "value": "4-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41thxRzVVcS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ53TMS/ref=twister_B09LXM6G27", "value": "7-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oh7E7gNzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ5VCQC/ref=twister_B09LXM6G27", "value": "9-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51GgJZUaSoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ7BXPB/ref=twister_B09LXM6G27", "value": "94-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xtbc77-OL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ69MJ9/ref=twister_B09LXM6G27", "value": "95-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41uV5eJkeCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ725CN/ref=twister_B09LXM6G27", "value": "96-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41mJoHFHjwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ5SBKP/ref=twister_B09LXM6G27", "value": "97-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41VXh85Js7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ7FX2M/ref=twister_B09LXM6G27", "value": "99-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41WwcB8uG8S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ6X57T/ref=twister_B09LXM6G27", "value": "92-army Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41lcx96ZTyS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PJ7GL1Y/ref=twister_B09LXM6G27", "value": "93-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51NnjE7NgbS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LY2NF2W/ref=twister_B09LXM6G27", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GV1JZV6mL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LXVGSB9/ref=twister_B09LXM6G27", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41z4Jex2CbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PGX9MPV/ref=twister_B09LXM6G27", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41QyM5tRj+L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PJ5ZXGH", "category": "fashion", "query": "Women's Lingerie, Sleep & Lounge", "page": 4, "small_description_old": "lingerie 4+ star styles for you! Made in USA and Imported \u2714\u2714About Size: Please Select The Size According To The Size Chart In The Product Picture! More size information please refer to the size chart in the image, recommend 1-2 size up. If you have any questions about the dress, please feel free to contact us. We will provide the best solution for you within 24 hours. Snap closure Hand Wash Only ladies sexy lace eyelashes teddy bodysuit lingerie one-piece underwear jumpsuit temptation sleepwear womens floral lace scallop trim straps lingerie set bra and panty womens plus size floral lace cami top and satin shorts lingerie set womens 2 piece lingerie set lace cami top with shorts with panties sexy pajama set sleepwear womens lingerie sexy lace babydoll bra and panty two pieces lingerie set black women lingerie satin lace chemise nightgown sexy slip sleepwear lingerie chest small lingerie chest support lingerie chest cherry lingerie chest espresso lingerie chest mirrored lingerie chest of drawers tall cherry lingerie chest of drawers tall black lingerie chest of drawers espresso lingerie chest of drawers narrow lingerie chest cherry wood slutty lingerie for sex crotchless slutty lingerie for sex one size slutty lingerie for sex maid slutty lingerie for sex costume slutty lingerie for sex white slutty lingerie for sex open crotch and cups \n women lingerie naughty lingerie for women for sex play lace lingerie robe for women black teddy lingerie underwear sexy teddy lingerie for women open crotch women lingerie sexy sets plus size sexy teddy lingerie for women lace lingerie romper lace teddy lingerie for women plus white teddy lingerie pushup teddy lingerie crotchless for women lace teddy lingerie for women babydoll lingerie for women crotchless babydoll women lingerie sexy sets pink lace lingerie plus size topwomens lingerie sexy bodysuit womens lingerie sexy crotchless womens lingerie sexy for boudoir bra and panty sets for women sexy lingerie nightwear for women sexy nightwear for women 2 piece set nightwear for women winter womens nightwear sexy womens nightwear plus size womens nightwear pajama sets womens nightwear for sleeping bra and panty lingerie set bra and panty sets for women sexy plus size womens lingerie sexy teddy womens lingerie sexy pantieswomen lingerie lace babydoll strap chemise halter teddy v neck sleepwear women sexy lace lingerie set lace bra and panty set 2 piece babydoll bodysuit womens lace trim 2 piece v neck cami and shorts pajama set sexy sleepwear women lingerie lace babydoll strap chemise halter teddy v neck sleepwear women sexy lace lingerie set lace bra and panty set 2 piece babydoll bodysuit womens lace trim 2 piece v neck cami and shorts pajama set sexy sleepwearShow more"}, {"name": "Walkers Shortbread Saltire Shortbread Rounds Tin, Scottis, Cookies, Biscuits, Gift Box, 120 g", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 7.1 x 5 x 3.5 inches; 4.23 Ounces", "Item model number\n \u200f": "\u200e\n 1991", "UPC\n \u200f": "\u200e\n 039047019997", "ASIN\n \u200f": "\u200e\n B00EY177C0", "Best Sellers Rank": "#452,490 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#714 in Shortbread Cookies", "#714 in Shortbread Cookies": ""}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$18.95", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51aQ+1tS-QL.jpg", "https://m.media-amazon.com/images/I/51Bhr6EafHL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cookies \u203a Shortbread", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2RT9A30B947NZ", "seller_name": "Premier Life", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00EY177C0", "category": "grocery", "query": "Grocery Cookies", "page": 141, "small_description_old": ""}, {"name": "ERKOON Halloween Window Door Cover Decoration You are Next Sign Halloween Props Horror Backdrop Banner Gloomy Figure Bloody Handprints Blood Dripping of Horror for Halloween Supplies", "product_information": {"Product Dimensions": "4.72 x 3.94 x 0.79 inches", "Item Weight": "11.3 ounces", "Manufacturer": "ERKOON", "ASIN": "B08D3S1KK4", "Customer Reviews": {"ratings_count": 97, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#271,169 in Patio, Lawn & Garden (See Top 100 in Patio, Lawn & Garden) #3,901 in Outdoor Holiday Decorations"]}, "brand": "Visit the ERKOON Store", "brand_url": "https://www.amazon.com/stores/ERKOON/page/60BD1A92-D970-4665-A0B2-733BAA3B2FF3?ref_=ast_bln", "full_description": "", "pricing": "$11.99", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51titP8qbyL.jpg", "https://m.media-amazon.com/images/I/51RJigUnk-L.jpg", "https://m.media-amazon.com/images/I/61P1Dv79dDL.jpg", "https://m.media-amazon.com/images/I/511LgHlAQEL.jpg", "https://m.media-amazon.com/images/I/61bKaBwKxEL.jpg", "https://m.media-amazon.com/images/I/41mKOKbRaML.jpg", "https://m.media-amazon.com/images/I/612xilhTmBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Outdoor D\u00e9cor \u203a Outdoor Holiday Decorations", "average_rating": 4.5, "small_description": ["\u3010Scary Visual Effect Design\u3011Realistic ghost and bloody handprint 3D patterns creates a horrible atmosphere, and adds a strong Horror visual effect to your home ", "\u3010Easy to Set Up\u3011This Polyester Halloween window door cover comes with Four small holes and give away four hooks, easy to hang through the copper grommet, no need other tools( you can used of rope or tape) ; Providing an easy and quick way ", "\u3010Durable materials\u3011Different from others plastic material, this Halloween window door cover is made of durable polyester fabric, which is light weight, washable, tear-resistant and easy to carry ", "\u3010 Size of Perfect\u3011Halloween window door decorrations size 185 x 90 cm/ 73 x 35.4 inch, it's big enough for outdoor, indoor, window or door of your house ", "\u3010Wide Application\u3011This window door cover is Best for Halloween decorations, if you hang it in a house, garage, or school dormitory, it must be the most memorable entrance. Suitable for walking dead, haunted house, monster or Halloween theme parties "], "total_reviews": 97, "total_answered_questions": "", "customization_options": "", "seller_id": "A1K5GNOI3UW3AE", "seller_name": "AlcoonUS", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08D3S1KK4", "category": "garden", "query": "Window Coverings", "page": 242, "small_description_old": "\u3010Scary Visual Effect Design\u3011Realistic ghost and bloody handprint 3D patterns creates a horrible atmosphere, and adds a strong Horror visual effect to your home \u3010Easy to Set Up\u3011This Polyester Halloween window door cover comes with Four small holes and give away four hooks, easy to hang through the copper grommet, no need other tools( you can used of rope or tape) ; Providing an easy and quick way \u3010Durable materials\u3011Different from others plastic material, this Halloween window door cover is made of durable polyester fabric, which is light weight, washable, tear-resistant and easy to carry \u3010 Size of Perfect\u3011Halloween window door decorrations size 185 x 90 cm/ 73 x 35.4 inch, it's big enough for outdoor, indoor, window or door of your house \u3010Wide Application\u3011This window door cover is Best for Halloween decorations, if you hang it in a house, garage, or school dormitory, it must be the most memorable entrance. Suitable for walking dead, haunted house, monster or Halloween theme parties"}, {"name": "Cal Lighting CALBO-2450FL-DB Transitional Two Floor Lamp Lighting Accessories", "product_information": {"Manufacturer": "\u200eCal Lighting", "Part Number": "\u200eCALBO-2450FL-DB", "Item Weight": "\u200e9.4 pounds", "Product Dimensions": "\u200e17 x 17 x 59 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eCALBO-2450FL-DB", "Is Discontinued By Manufacturer": "\u200eNo", "Color": "\u200eBronze", "Style": "\u200eContemporary", "Finish": "\u200eBronze", "Material": "\u200eMetal", "Shape": "\u200eDrum", "Power Source": "\u200eCorded Electric", "Voltage": "\u200e120 Volts", "Wattage": "\u200e60 watts", "Installation Method": "\u200eFloor", "Item Package Quantity": "\u200e1", "Type of Bulb": "\u200eIncandescent", "Measurement System": "\u200eEnglish/Standard", "Mounting Type": "\u200eProtruding", "Plug Format": "\u200eA- US style", "Switch Style": "\u200ePull Chain", "Certification": "\u200eUL Listed", "Special Features": "\u200ePull_chain", "Usage": "\u200eCeiling fan", "Included Components": "\u200eNo Additional Item", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Warranty Description": "\u200e1 year.", "ASIN": "B00BL2YE2Q", "Customer Reviews": {"ratings_count": 3, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#857,598 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #4,511 in Floor Lamps"], "Domestic Shipping": "Item can be shipped within U.S.", "International Shipping": "This item can be shipped to select countries outside of the U.S. Learn More", "Date First Available": "February 25, 2013"}, "brand": "Brand: Cal", "brand_url": "https://www.amazon.com/Cal/b/ref=bl_dp_s_web_20051822011?ie=UTF8&node=20051822011&field-lbr_brands_browse-bin=Cal", "full_description": "Cal Lighting BO-2450FL-DB Transitional Two Light Floor Lamp from Calais collection in Bronze / Dark finish, 17.00 inches. Two Light Floor Lamp from the Calais collection. Transitional Two Light Floor Lamp from Calais collection in Dark Bronze finish , 17.00 inches, .", "pricing": "$157.15", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/21evD8u9acL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Lamps & Shades \u203a Floor Lamps", "average_rating": 4.8, "small_description": ["Two Light Floor Lamp from the Calais collection ", "Item Size: Length: 17.00 inches Height: 59.00 inches Width: 17.00 inches ", "Style: Transitional Light Type: Floor Lamp ", "Finish: Dark Bronze "], "total_reviews": 3, "total_answered_questions": "", "model": "\u200eCALBO-2450FL-DB", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00BL2YE2Q", "category": "garden", "query": "Floor lamps", "page": 135, "small_description_old": "About this item\n \nTwo Light Floor Lamp from the Calais collection Item Size: Length: 17.00 inches Height: 59.00 inches Width: 17.00 inches Finish: Dark Bronze \n \u203a See more product details"}, {"name": "Bamboo Cotton Swab 1000PCS Double Cotton Buds bamboo Cotton Bud Eco organic bamboo ear swab for Ear Skin Jewelry Art Pet Cleaning Craft Paper Packaging (5 PACKS OF 200 STICKS)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 9.5 x 4.5 x 3.7 inches; 14.89 Ounces", "Item model number\n \u200f": "\u200e\n AK01", "UPC\n \u200f": "\u200e\n 606314889463", "Manufacturer\n \u200f": "\u200e\n Coralov-US", "ASIN\n \u200f": "\u200e\n B07QXZL1K5", "Best Sellers Rank": "#22,325 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#70 in Cotton Swabs", "#70 in Cotton Swabs": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the MUIFA Store", "brand_url": "https://www.amazon.com/stores/MUIFA/page/37FEE786-DC07-4D13-8822-5FDF8D073DF9?ref_=ast_bln", "full_description": "", "pricing": "$13.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51qT7cXqAdL.jpg", "https://m.media-amazon.com/images/I/51r6vz6xCML.jpg", "https://m.media-amazon.com/images/I/61V4sw716eL.jpg", "https://m.media-amazon.com/images/I/51h6IrLMtYL.jpg", "https://m.media-amazon.com/images/I/51MatXoR-kL.jpg", "https://m.media-amazon.com/images/I/51H-xP-eudL.jpg", "https://m.media-amazon.com/images/I/51QEEG7VLyL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Cotton Balls & Swabs \u203a Cotton Swabs", "average_rating": 4.7, "small_description": ["5 PACK OF 1000 - The packaging contains 1000 Biodegradable cotton swab, enough for the whole family, so there's always plenty of Eco ear buds around when you need them. 200 bamboo cotton buds a pack, they use drawer packaging, easy to store and use. ", "ECO FRIENDLY AND COTTON BUDS - The Bamboo and Cotton for our organic cotton swabs are 100% biodegradable. Bamboo is a rapidly growing resource and is the sustainable solution to traditional plastic cotton swabs. Bamboo sticks instead of paper or plastic help to protect the environment and prevent plastic pollution in our oceans. ", "QUALITY COTTON SWAB - Bamboo is the perfect material for an ear bud because it copes well with water, it does not splinter. Our Bamboo cotton swabs are completely odourless and do not contain any perfumes, chemicals or plastics. They are made of natural raw materials which makes them safe to use and perfect for sensitive skin and gentle use. ", "VERSATILE USES - These organic swabs 2.87inch long, dual cotton head, natural pure cotton buds. Our eco friendly bamboo buds are suitable for a variety of cleaning tasks, cosmetic detailing, oral care, arts and crafts, cleaning keyboards, soft earwax extraction and pet care. Also fit for baby care, arts and crafts, household cleaning, pet care, painting, car detailing, model building, first aid and more. ", "BIODEGRADABLE PAPER PACKAGING - Our cotton buds are packed in compact craft paper boxes with no plastic film or excessive wording on them. All parts of packaging can be recycled and are 100% compo-stable and biodegradable. "], "total_reviews": 791, "total_answered_questions": 19, "customization_options": "", "seller_id": "A3N2KINWE4YQ6C", "seller_name": "Coralov-US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07QXZL1K5", "category": "beauty", "query": "Cotton Balls & Swabs", "page": 2, "small_description_old": "5 PACK OF 1000 - The packaging contains 1000 Biodegradable cotton swab, enough for the whole family, so there's always plenty of Eco ear buds around when you need them. 200 bamboo cotton buds a pack, they use drawer packaging, easy to store and use. ECO FRIENDLY AND COTTON BUDS - The Bamboo and Cotton for our organic cotton swabs are 100% biodegradable. Bamboo is a rapidly growing resource and is the sustainable solution to traditional plastic cotton swabs. Bamboo sticks instead of paper or plastic help to protect the environment and prevent plastic pollution in our oceans. QUALITY COTTON SWAB - Bamboo is the perfect material for an ear bud because it copes well with water, it does not splinter. Our Bamboo cotton swabs are completely odourless and do not contain any perfumes, chemicals or plastics. They are made of natural raw materials which makes them safe to use and perfect for sensitive skin and gentle use. VERSATILE USES - These organic swabs 2.87inch long, dual cotton head, natural pure cotton buds. Our eco friendly bamboo buds are suitable for a variety of cleaning tasks, cosmetic detailing, oral care, arts and crafts, cleaning keyboards, soft earwax extraction and pet care. Also fit for baby care, arts and crafts, household cleaning, pet care, painting, car detailing, model building, first aid and more. BIODEGRADABLE PAPER PACKAGING - Our cotton buds are packed in compact craft paper boxes with no plastic film or excessive wording on them. All parts of packaging can be recycled and are 100% compo-stable and biodegradable."}, {"name": "Michigan Peat 5540 Garden Magic Top Soil, 40-Pound", "product_information": {"Product Dimensions": "18 x 6 x 27 inches", "Item Weight": "40 pounds", "Manufacturer": "Michigan Peat", "ASIN": "B000GQ4KX6", "Item model number": "5540", "Customer Reviews": {"ratings_count": 1375, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#8,481 in Patio, Lawn & Garden (See Top 100 in Patio, Lawn & Garden) #183 in Garden Soil"], "Is Discontinued By Manufacturer": "No"}, "brand": "Brand: Michigan Peat", "brand_url": "https://www.amazon.com/Michigan-Peat/b/ref=bl_dp_s_web_9347069011?ie=UTF8&node=9347069011&field-lbr_brands_browse-bin=Michigan+Peat", "full_description": "Garden magic top soil often used as a top dressing and to fill holes in lawns and gardens. A blend of dark, reed sedge peat and sand. This product will also loosen heavy clay soils and enhance moisture retention in light soils. Available in 40-pound.", "pricing": "$27.62", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41liDOD7QmL.jpg", "https://m.media-amazon.com/images/I/41liDOD7QmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Gardening & Lawn Care \u203a Soils, Mulches & Planting Media \u203a Garden Soil", "average_rating": 4.5, "small_description": ["A blend of dark, reed sedge peat and sand ", "Used as a top dressing and to fill holes in lawns and gardens ", "Loosen heavy clay soils and enhance moisture retention in light soils ", "Available in 40-pound "], "total_reviews": 1375, "total_answered_questions": "", "model": "5540", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07KJVFHQW/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": ".2", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KJPDKP9/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": ".3", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KJN5NXR/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": ".4", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KJM9K59/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": ".5", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "40-Pound", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08HPMJD79/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": "40-Pound (2 Pack)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08HNDGBF5/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": "40-Pound (3 Pack)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WHHCQVR/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": "40-Pound (4 Pack)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098PG9RJ8/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": "40-Pound (8 Pack)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098PDQ96Z/ref=twister_B07KJQCCZ8?_encoding=UTF8&psc=1", "value": "40-Pound (10 Pack)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A2TI5WR4CT30H3", "seller_name": "Esbenshades Garden Center", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B000GQ4KX6", "category": "garden", "query": "Live Plants", "page": 203, "small_description_old": "A blend of dark, reed sedge peat and sand Used as a top dressing and to fill holes in lawns and gardens Loosen heavy clay soils and enhance moisture retention in light soils Available in 40-pound"}, {"name": "Sturdy 72\" Monopod Camera Stick with Quick Release for Sony Cyber-shot DSC-R1, DSC-RX1, DSC-RX10, DSC-RX10 II, DSC-RX10 III, RX10, RX100 II Pro Digital Cameras: Collapsible Mono pod, Mono-pod", "product_information": {"ASIN": "B01MTYK2T9", "Item model number": "MonopodKit", "Date First Available": "December 8, 2016", "Manufacturer": "ZEETECH"}, "brand": "Brand: ZeeTech", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ZeeTech", "full_description": "72\u201d Steady & Compact Quick Release, Rubber Tip Monopod Providing a stable & spin able base for sporting events, birthday parties, days at the zoo and many other scenarios, this monopod comes in very handy. Most cameras do not have adequate stabilization, and with a fraction the weight and size of a tripod, in addition to the stable range of motion afforded, this 72' Monopod is a versatile addition to any photographer\u2019s bag. Specs: Quick release head Fully padded handle grip Rubber leg tip with spike Rapid action locks 4 section aluminum alloy legs Lightweight and compact design 72\u201d height but it collapses to 21.5\u201d 21.5\u201d lowest height from the ground Universal camera mount Wrist strap 10 year limited warranty , This item is Brand new", "pricing": "$27.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41H4kijoMlL.jpg", "https://m.media-amazon.com/images/I/31QofwqXFmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Tripods & Monopods \u203a Monopods", "average_rating": "", "small_description": ["Quick release head\u00a0+ Wrist strap ", "Fully padded handle grip ", "Lightweight & compact design - 72\u201d height but it collapses to 21.5 inches! ", "Rapid action locks\u00a0+ 4 section aluminum alloy legs ", "Rubber leg tip with spike "], "total_reviews": "", "total_answered_questions": "", "model": "MonopodKit", "customization_options": "", "seller_id": "A2MNNVGSU2E9GQ", "seller_name": "BASE WIRELESS", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01MTYK2T9", "category": "electronics", "query": "Tripods & Monopods", "page": 382, "small_description_old": "About this item\n \nQuick release head\u00a0+ Wrist strap Fully padded handle grip Lightweight & compact design - 72\u201d height but it collapses to 21.5 inches! Rapid action locks\u00a0+ 4 section aluminum alloy legs Rubber leg tip with spike"}, {"name": "Cat Footwear Men's Carnaby Canvas Fashion Sneaker", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 14.1 x 9.1 x 4.8 inches; 12 Ounces", "Item model number\n \u200f": "\u200e\n P721210", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n November 18, 2016", "Manufacturer\n \u200f": "\u200e\n Caterpillar", "ASIN\n \u200f": "\u200e\n B01JJR8GJG", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Cat Footwear Store", "brand_url": "https://www.amazon.com/stores/CATFootwear/page/A5F582E2-55A4-4920-B889-29DA94C01B1B?ref_=ast_bln", "full_description": "Lightweight cushioned casual boot, ease cushioned midsole, ease cushion insole, very flexible, like a running shoe As the world's foremost manufacturer of heavy equipment, Cat earthmovers are known around the world as a symbol of honest work, strength and integrity. Cat Footwear makes boots and shoes based on these same principals. The brand has evolved from work boots into a range of industrial and casual footwear built with the sole purpose of staying true to their original goal--creating genuine, hard-working boots and shoes.", "pricing": "$79.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41EKXABKniL.jpg", "https://m.media-amazon.com/images/I/51AQmBpNQ8L.jpg", "https://m.media-amazon.com/images/I/41YNEV5DOxL.jpg", "https://m.media-amazon.com/images/I/31Ytsx0b1vL.jpg", "https://m.media-amazon.com/images/I/31U9ZftCdtL.jpg", "https://m.media-amazon.com/images/I/41pL2x51yLL.jpg", "https://m.media-amazon.com/images/I/417weQYp2GL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Fashion Sneakers", "average_rating": 4, "small_description": ["Lightweight cushioned casual boot, Ease cushioned midsole, Ease cushion insole, very flexible, like a running shoe "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "7.5", "asin": "B01JJR6ZN0"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B01JJR8GJG"}], "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01JJR8GJG", "category": "fashion", "query": "Men's Fashion Sneakers", "page": 171, "small_description_old": "70% Leather, 30% Canvas Imported Rubber sole Lightweight cushioned casual boot, Ease cushioned midsole, Ease cushion insole, very flexible, like a running shoe"}, {"name": "COOrun Women's UPF 50+ Sun Protection Shirts Quick Dry Long Sleeve Shirts Lightweight T-Shirt Outdoor Hiking Runing Fishing", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 0.39 x 0.39 x 0.39 inches; 3.53 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n April 14, 2021", "ASIN\n \u200f": "\u200e\n B092H8Z4DP", "Best Sellers Rank": "#75,458 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#103 in Women's Rash Guard Shirts #120 in Women's Activewear T-Shirts", "#103 in Women's Rash Guard Shirts": "", "#120 in Women's Activewear T-Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the COOrun Store", "brand_url": "https://www.amazon.com/stores/COOrun/page/A5B314E2-1FCE-44F0-B6DB-9A907290A36D?ref_=ast_bln", "full_description": "", "pricing": "$9.98$16.98", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/316p1KLaQwL.jpg", "https://m.media-amazon.com/images/I/51dFa-opq4L.jpg", "https://m.media-amazon.com/images/I/312-2UW+BKL.jpg", "https://m.media-amazon.com/images/I/31pqXpIRg8L.jpg", "https://m.media-amazon.com/images/I/31LkL7tRKlL.jpg", "https://m.media-amazon.com/images/I/41tNuhToHoL.jpg", "https://m.media-amazon.com/images/I/61UVOGx0M2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Shirts & Tees \u203a T-Shirts", "average_rating": 4.5, "small_description": ["\u3010Sun Protection\u3011\uff1aUPF 50+ fabric protects your skin effectively from the harmful UVA/UVB rays, keeping you cool while outdoors in the direct sunlight. ", "\u3010Cool & Dry\u3011\uff1aMade of quick-drying and moisture-wicking fabric, keep you cool and dry on running or workout. ", "\u3010Comfortable\u3011\uff1aRaglan sleeves, tagless neck and flat-seam construction ensure a full range of motion and help reduce chafing. 4-way stretch construction moves better in every direction. ", "\u3010Skin-friendly\u3011: The lightweight fabric is soft against the skin making the sun shirts feel light and forgiving on the skin. ", "\u3010Muti-Occasion\u3011\uff1aSuitable for all outdoor activities: running, fishing, hiking, swimming, rashguard, yoga, fitness, cycling travel, mountain climbing. "], "total_reviews": 564, "total_answered_questions": 14, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B092H8Z4DP/ref=twister_B08JCYG89Y", "value": "B-orange-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31W+PMs+IFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092HCGDHR/ref=twister_B08JCYG89Y", "value": "B-sky Blue-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31x9-vII9AL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MX4S4SN/ref=twister_B08JCYG89Y", "value": "C-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41II94ZGAnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MX6NK4C/ref=twister_B08JCYG89Y", "value": "C-grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IxHbVwhbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JCS4ZZL/ref=twister_B08JCYG89Y", "value": "A-white-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ivvKTlsXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MX45QQ2/ref=twister_B08JCYG89Y", "value": "B-green-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ly3m-f6EL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JCN77B8/ref=twister_B08JCYG89Y", "value": "C-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fsBZ91NpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092ZJB41T/ref=twister_B08JCYG89Y", "value": "C-navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/319XX6oa2BL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JC5MTGF/ref=twister_B08JCYG89Y", "value": "C-purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IO23IollL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092ZKJDP5/ref=twister_B08JCYG89Y", "value": "C-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31+2NcWYGjL.jpg"}, {"is_selected": true, "url": null, "value": "B-black-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31sppR4Zp8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08N5VJMTL/ref=twister_B08JCYG89Y", "value": "B-light Grey-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/312nZU8k3oL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092H1NF46/ref=twister_B08JCYG89Y", "value": "B-peach-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31mp-BTldxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JCGQBDL/ref=twister_B08JCYG89Y", "value": "C-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31C7ziyr9SL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JC9MR7Z/ref=twister_B08JCYG89Y", "value": "B-navy Blue-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31+hYmVLBhL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08N5VPDSM/ref=twister_B08JCYG89Y", "value": "B-purple-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zqbsidSZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MX5ZMZ8/ref=twister_B08JCYG89Y", "value": "B-grey-thumbhole", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Bg4Xl6IrL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B08JD14GJF"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08JCT7Y9S"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08JC9SDF4"}, {"is_selected": false, "is_available": false, "value": "X-Large", "asin": "B092HDFDXJ"}, {"is_selected": false, "is_available": false, "value": "XX-Large", "asin": "B092H1QWZW"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08JD14GJF", "category": "fashion", "query": "Women's Activewear", "page": 15, "small_description_old": "\u3010Sun Protection\u3011\uff1aUPF 50+ fabric protects your skin effectively from the harmful UVA/UVB rays, keeping you cool while outdoors in the direct sunlight. \u3010Cool & Dry\u3011\uff1aMade of quick-drying and moisture-wicking fabric, keep you cool and dry on running or workout. \u3010Comfortable\u3011\uff1aRaglan sleeves, tagless neck and flat-seam construction ensure a full range of motion and help reduce chafing. 4-way stretch construction moves better in every direction. \u3010Skin-friendly\u3011: The lightweight fabric is soft against the skin making the sun shirts feel light and forgiving on the skin. \u3010Muti-Occasion\u3011\uff1aSuitable for all outdoor activities: running, fishing, hiking, swimming, rashguard, yoga, fitness, cycling travel, mountain climbing."}, {"name": "Yummyearth Lolli Pop Cntr Bin 125pc Org", "product_information": {"Item Weight\n \u200f": "\u200e\n 2.77 Pounds", "UPC\n \u200f": "\u200e\n 890146001029", "Manufacturer\n \u200f": "\u200e\n Yummy Earth", "ASIN\n \u200f": "\u200e\n B00DGDBYQC", "Best Sellers Rank": "#672,965 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#3,897 in Suckers & Lollipops", "#3,897 in Suckers & Lollipops": ""}, "brand": "Brand: YummyEarth", "brand_url": "https://www.amazon.com/YummyEarth/b/ref=bl_dp_s_web_2604094011?ie=UTF8&node=2604094011&field-lbr_brands_browse-bin=YummyEarth", "full_description": "Yummy Earth Lollipop Counter Bin ( 1x150 CT)", "pricing": "$38.80", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/51EQET8BQVL.jpg", "https://m.media-amazon.com/images/I/51JI9sdR3RL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Candy & Chocolate \u203a Suckers & Lollipops", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3AFTPXK3AVV55", "seller_name": "Naturals N' More", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00DGDBYQC", "category": "grocery", "query": "Sour Creams", "page": 276, "small_description_old": ""}, {"name": "Blue by Betsey Johnson Women's SB Ever Ballet Flat", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 5 x 5 x 0.7 inches; 10.4 Ounces", "Item model number\n \u200f": "\u200e\n Sb-ever", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n June 4, 2014", "Manufacturer\n \u200f": "\u200e\n Blue by Betsey Johnson", "ASIN\n \u200f": "\u200e\n B00I3O38MW", "Best Sellers Rank": "#3,254,790 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#8,721 in Women's Flats", "#8,721 in Women's Flats": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Blue by Betsey Johnson", "brand_url": "https://www.amazon.com/Blue-by-Betsey-Johnson/b/ref=bl_sl_s_sh_web_20271827011?ie=UTF8&node=20271827011&field-lbr_brands_browse-bin=Blue+by+Betsey+Johnson", "full_description": "Easy slip-on wear. sleek satin upper with glittering bow at vamp. man-made lining. lightly cushioned man-made footbed. signature blue sole. imported. New York designer Betsey Johnson has built her long-standing career in fashion by following her own set of rules. Known for her celebration of the exuberant, the embelished, and the over the top, Betsey has been rocking the fashion industry with her unique and original designs since the 1960's. Betsey Johnson, both the woman and the label, is constantly moving forward and continues to keep a strong foothold in the fashion industry with no signs of letting up anytime soon. Her love of detail and design is evident in everything she does in life and in business. Her enthusiasm, creativity and boundless talent that have kept her at the forefront of fashion for the past 40 years will keep Betsey going for years to come.", "pricing": "$89.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41tEL4GOSDL.jpg", "https://m.media-amazon.com/images/I/51rCZspv2tL.jpg", "https://m.media-amazon.com/images/I/41U1GRg0xUL.jpg", "https://m.media-amazon.com/images/I/31IGMDpDwSL.jpg", "https://m.media-amazon.com/images/I/316mbFWubLL.jpg", "https://m.media-amazon.com/images/I/31LYHCfrxYL.jpg", "https://m.media-amazon.com/images/I/41etTLF-QxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Flats", "average_rating": 3.7, "small_description": ["100% Satin ", "Imported ", "synthetic sole ", "Ballet flat featuring large jewel-encrusted bow at round toe "], "total_reviews": 159, "total_answered_questions": 3, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "5.5", "asin": "B00I3O38MW"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B00I3O39FS"}, {"is_selected": false, "is_available": true, "value": "6.5", "asin": "B00I3O3A8O"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B00I3O3B56"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B00I3O3BSS"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B00I3O3CJ6"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B00I3O3DB8"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B00I3O3EDK"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B00I3O3GMO"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B00I3O3HEQ"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B00I3O3I2W"}], "Color": [{"is_selected": true, "url": null, "value": "Silver Metallic", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tEL4GOSDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0168AD25U/ref=twister_B00K7GEB34", "value": "Black Satin", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/313dGIbe0qL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00I3ODSXG/ref=twister_B00K7GEB34", "value": "Ivory Satin", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Fcm7IIMCL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00I3O3BSS", "category": "fashion", "query": "Women's Flats", "page": 57, "small_description_old": "100% Satin Imported synthetic sole Ballet flat featuring large jewel-encrusted bow at round toe"}, {"name": "LOT XI - Good Vibes Sugar Scrub - Rosemary & Jasmine - All Natural Organic Handcrafted Sugar Scrub for Reduced Redness, Cellular Hydration, and Gently Exfoliating Cleansing (8 oz)", "product_information": {"UPC\n \u200f": "\u200e\n 689481761930", "Manufacturer\n \u200f": "\u200e\n LOT XI", "ASIN\n \u200f": "\u200e\n B095TRCDXW", "Best Sellers Rank": "#729,189 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,865 in Body Scrubs #3,422 in Body Scrubs & Treatments", "#2,865 in Body Scrubs": "", "#3,422 in Body Scrubs & Treatments": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: LOT XI", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=LOT+XI", "full_description": "Rosemary x Jasmine (8 oz.) Our organic sugar scrubs will have your skin exfoliated and feeling refreshed.", "pricing": "$34.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41BFAJ8Rx7S.jpg", "https://m.media-amazon.com/images/I/41QzAzilLtS.jpg", "https://m.media-amazon.com/images/I/516kSDC5rfS.jpg", "https://m.media-amazon.com/images/I/518+8wpT5TS.jpg", "https://m.media-amazon.com/images/I/51pafFW-QeS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Body Scrubs", "average_rating": 5, "small_description": ["HANDCRAFTED ORGANIC SUGAR SCRUB - Harness the power of all natural, organic ingredients! We create our sugar scrubs by hand and craft them using only the freshest ingredients to ensure your skin cells feel healthy and hydrated without the use of any irritants or harsh chemicals. ", "HERBAL ROSEMARY and JASMINE SCENT - Spice things up! Invigorate your senses with the vibrant combination of herbal Rosemary essential oil and botanical Jasmine essential oil for an enticing boquet of floral notes that are as bright and fresh as a spring sunrise. ", "SHARING IS SWEET - What could be sweeter than sugar Sharing LOT XI's organic sugar scrubs with your friends and family of course! Your loved ones will absolutely adore receiving one of our handcrafted sugar scrubs on any occassion, effortlessly upgrading their skin care routine with ease. ", "COMMUNITY-CONSCIOUS URBAN APOTHECARY - Sew the seeds of positive change! LOT XI prides itself on giving back to the communities we benefit from and empowering our artisans to acheive more. We reinvest a portion of profits in Compton and Inglewood based organizations and community causes in an effort to improve the livlihood of not only our products makers, but their friends and families within their community as well. Visit our website's community page for more details! ", "100 percent SATISFACTION - Buy with confidence! We are here to answer any questions you may have, and work hard to ensure your experience with LOT XI exceeds your expectations from start to finish. If at any point in you experience dissatisfaction with your order, please contact us directly so that we can find a satisfactory resolution that is tailored to your specific issue, be it a refund, return, or replacement item. Sharing happiness and improving lives is our top priority! ", "Scent name: Rosemary,Jasmine "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "A3UYWRWDTCCWFK", "seller_name": "LOT XI Shop", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B095TRCDXW", "category": "beauty", "query": "Scrubs & Body Treatments", "page": 45, "small_description_old": "About this item HANDCRAFTED ORGANIC SUGAR SCRUB - Harness the power of all natural, organic ingredients! We create our sugar scrubs by hand and craft them using only the freshest ingredients to ensure your skin cells feel healthy and hydrated without the use of any irritants or harsh chemicals. HERBAL ROSEMARY and JASMINE SCENT - Spice things up! Invigorate your senses with the vibrant combination of herbal Rosemary essential oil and botanical Jasmine essential oil for an enticing boquet of floral notes that are as bright and fresh as a spring sunrise. SHARING IS SWEET - What could be sweeter than sugar Sharing LOT XI's organic sugar scrubs with your friends and family of course! Your loved ones will absolutely adore receiving one of our handcrafted sugar scrubs on any occassion, effortlessly upgrading their skin care routine with ease. COMMUNITY-CONSCIOUS URBAN APOTHECARY - Sew the seeds of positive change! LOT XI prides itself on giving back to the communities we benefit from and empowering our artisans to acheive more. We reinvest a portion of profits in Compton and Inglewood based organizations and community causes in an effort to improve the livlihood of not only our products makers, but their friends and families within their community as well. Visit our website's community page for more details! 100 percent SATISFACTION - Buy with confidence! We are here to answer any questions you may have, and work hard to ensure your experience with LOT XI exceeds your expectations from start to finish. If at any point in you experience dissatisfaction with your order, please contact us directly so that we can find a satisfactory resolution that is tailored to your specific issue, be it a refund, return, or replacement item. Sharing happiness and improving lives is our top priority! Scent name: Rosemary,Jasmine"}, {"name": "Tribesigns Kitchen Bakers Rack with Hutch, 5-Tier Kitchen Utility Storage Shelf with Drawer and 8 S-Hooks, Microwave Oven Stand Rack Floor Standing Spice Rack Organizer Workstation (White)", "product_information": {"Product Dimensions": "31.5 x 15.74 x 62.99 inches", "Manufacturer": "Tribesigns", "ASIN": "B099Z6YWL1", "Customer Reviews": {"ratings_count": 59, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#303,465 in Home & Kitchen (See Top 100 in Home & Kitchen) #115 in Standing Baker's Racks"], "Date First Available": "July 21, 2021"}, "brand": "Visit the Tribesigns Store", "brand_url": "https://www.amazon.com/stores/Tribesigns/page/89863E9F-B80B-4A3A-9B90-E7AB9DEE24F5?ref_=ast_bln", "full_description": "", "pricing": "$188.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51m4qjGHASL.jpg", "https://m.media-amazon.com/images/I/51ad8OKRYuL.jpg", "https://m.media-amazon.com/images/I/51fpPOgZibL.jpg", "https://m.media-amazon.com/images/I/51jnVjcb+oL.jpg", "https://m.media-amazon.com/images/I/51kea8rWNdL.jpg", "https://m.media-amazon.com/images/I/511mj11HS6L.jpg", "https://m.media-amazon.com/images/I/41ivAJfWP3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Kitchen Furniture \u203a Baker's Racks \u203a Standing Baker's Racks", "average_rating": 4.4, "small_description": ["BOTH DRAWER AND SHELF - This baker's rack merges display and storage into one unit\u2014A big drawer for out-of-sight storage to meet your various needs. 5 open shelves for a microwave, toaster, coffee machine, jars of spices, and canisters of dry goods, etc; 8 extra S-shaped hooks are perfect for hanging kitchen towels and cooking spoons. ", "BUILT TO LAST - Measures 62.99'' H x 31.5'' W x 15.74'' D. The utility storage shelf is crafted from thick chipboard and reinforced by a strong metal frame, this 5-tier microwave oven stands for the kitchen features superior solidity and stability to last for years. The vertical structures don\u2019t take up space and add more storage space. ", "VISUAL CHARISMA - Classic clean design and modern white finish with this tall shelf with storage. It has melding industrial beauty and urban styles together, it can serve as an accent piece and add depth to your living area. Give your kitchen a refresh that\u2019s as charming as it is practical. ", "NOT ONLY A KITCHEN BAKER RACK - This kitchen storage rack with shelves is not only for cooling down pies and cakes, but also an excellent storage rack for fruits, canned goods besides the dining table; also as an elegant bookcase, microwave stand, spice rack organizer, entryway storage shelf, bathroom cabinet, wine board, etc. ", "WORRY-FREE ASSEMBLY - You don\u2019t need to be an expert on the assembly of this kitchen shelf, as it comes with numbered parts and step-by-step instructions to make it easy-peasy. Pls contact us for any damage or replacement. Tribesigns provide 18 months warranty and friendly customer service "], "total_reviews": 59, "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A2R6OH3H4V44VA", "seller_name": "KLY Home", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B099Z6YWL1", "category": "garden", "query": "Baker's Racks", "page": 3, "small_description_old": "About this item\n \nBOTH DRAWER AND SHELF - This baker's rack merges display and storage into one unit\u2014A big drawer for out-of-sight storage to meet your various needs. 5 open shelves for a microwave, toaster, coffee machine, jars of spices, and canisters of dry goods, etc; 8 extra S-shaped hooks are perfect for hanging kitchen towels and cooking spoons. BUILT TO LAST - Measures 62.99'' H x 31.5'' W x 15.74'' D. The utility storage shelf is crafted from thick chipboard and reinforced by a strong metal frame, this 5-tier microwave oven stands for the kitchen features superior solidity and stability to last for years. The vertical structures don\u2019t take up space and add more storage space. VISUAL CHARISMA - Classic clean design and modern white finish with this tall shelf with storage. It has melding industrial beauty and urban styles together, it can serve as an accent piece and add depth to your living area. Give your kitchen a refresh that\u2019s as charming as it is practical. NOT ONLY A KITCHEN BAKER RACK - This kitchen storage rack with shelves is not only for cooling down pies and cakes, but also an excellent storage rack for fruits, canned goods besides the dining table; also as an elegant bookcase, microwave stand, spice rack organizer, entryway storage shelf, bathroom cabinet, wine board, etc. WORRY-FREE ASSEMBLY - You don\u2019t need to be an expert on the assembly of this kitchen shelf, as it comes with numbered parts and step-by-step instructions to make it easy-peasy. Pls contact us for any damage or replacement. Tribesigns provide 18 months warranty and friendly customer service"}, {"name": "Set of 12 Sparkle Gold or Silver Tinsel Cupcake Toppers, Valentine's Day, New Year Party Decorations, Wedding Decorations", "product_information": {"ASIN": "B09PNJC838", "Manufacturer recommended age": "24 months and up", "Manufacturer": "BelowBlink"}, "brand": "Brand: Planter", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Planter", "full_description": "", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51LKa0B1w0L.jpg", "https://m.media-amazon.com/images/I/41PxuFcavQL.jpg", "https://m.media-amazon.com/images/I/41ZwQvFcKsL.jpg", "https://m.media-amazon.com/images/I/51vbv7ilMDL.jpg", "https://m.media-amazon.com/images/I/51ErFPqTHxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Frosting, Icing & Decorations \u203a Cupcake Toppers", "average_rating": "", "small_description": ["Materials: Tinsel, Toothpicks ", "Great for weddings, baby shower, parties, holiday decorations or any other event that you are celebrating. ", "Set of 12 cupcake toppers. Size: 3\" tall "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PNJC838", "category": "grocery", "query": "Toothpicks", "page": 172, "small_description_old": "Materials: Tinsel, Toothpicks Great for weddings, baby shower, parties, holiday decorations or any other event that you are celebrating. Set of 12 cupcake toppers. Size: 3\" tall"}, {"name": "M&M's Peanut Butter Chocolate Fun Size Packs American Candy In A Variety Of Fun Colors Bulk Party Mix Packaged In Resealable Wholesale Pantry Bag 2 Lbs. (32 Oz)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.78 x 8.82 x 4.21 inches; 2 Pounds", "UPC\n \u200f": "\u200e\n 808887106552", "ASIN\n \u200f": "\u200e\n B09RLQR5NP", "": ""}, "brand": "Visit the Assortit Store", "brand_url": "https://www.amazon.com/stores/Assortit/page/03D06D3E-296E-4411-9129-8C26C51214F1?ref_=ast_bln", "full_description": "Whether You're A Student Teen Man Woman Girl Mom Kid Toddler Adult Boss Teacher Military Troops Or Soldiers Our Assorted Mm Penut Btter Choclates Seasonal Kits Are Best! Finest Peaunt Buttter Chocoloate Perfect Pretty Fun Colorful Nmn With Assortit Fresh Peanit Buttr Crunch Fancy Deluxe Crispie Chocolates Care Packages. M&m Snack For Fundraiser Childs Cake Baby Surprise Vending Machine Baking Special Caramels Gifting Goodies For Small Office Basket Xmas Thanksgiving Valentines Birthdays Advent Calendar Sampler Classroom Dorm Diabetes Celebrate Wedding Baskets Hanukkah Valentine Cards Pantry Pinata Good Advent Treats. Biggest Cane Sugar Free Kissables Hot In Sugarfree Simply Bagged Giftbaskets Shaped Diet Gifts. Can Include Semi Sweet Sugar Gourmet Flavors Better Variety Like Crispy Peaunut Mmm King Cups Honey Kiss Drops Red Cherries Swiss Crunchy Apple Crisps Salted Coconut Coffee Bars Sea Salt Bittersweet Cholate Cashew Almond Cinnamon Butterfinger Spice Signature Strawberry Nutty Pretzle Truffle Cherry Penute Caramel Chewy Peatur Creme Puffed Nutter Penaut Brownies Carmel Cordials Smores Pretzel Chacolate Bunny Rabbit Peanutt Cream Bite Bells Dairy Milk Biggest Marshmallow Caramelo Almond Peanutbutter Toffee Carmels Belgian Chocalate Square Candybars Miniature Twix Pieces Blueberry Jelly Minis Pure Vanilla Bean Peppermint Raspberry Almond Brown Buter Brittle Milky Crackle Minature M+m Cup Mint Choclate Butter Cacao Gingerbread Nougat Crispper Heart Miniatures Mix Fruit Chews Choco Nut Pumpkin Shape Patties Pecan Patty Half Dark Air Rice Mm's Truffles Chocoalte Hearts Flavored Little Peenut Chocolet Tree Organic Grocery Cheap Food Prime Giant Plenty Penutt Bulter Bundle. Single Mms Milk Crisp Funsize Coco Cocolate Collection Mega Favorites Jumbo Box Filled Size Pack Large Pouch Sized Boxes Solid Quality Brand. Delight Bliss Kisses European Classics Big Giant Cocoa Mnms Sticks Made Amazon Gift Case Cookie Jar Kit Individual Bulk Count Pound Whole Fall Holiday Sale!", "pricing": "$29.99", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51BT0AZa4lL.jpg", "https://m.media-amazon.com/images/I/41czbDqVxLL.jpg", "https://m.media-amazon.com/images/I/514cp+I6rwL.jpg", "https://m.media-amazon.com/images/I/41aZC0GgW0L.jpg", "https://m.media-amazon.com/images/I/51zEZwYseaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Chocolate \u203a Candy & Chocolate Assortments", "average_rating": "", "small_description": ["2 Full Pounds Of Peanut Butter M&M's Chocolate Coated Mini Candy Dipped Bites In Fun Sized Packs ", "This Colored Funsize Candy Assortment Is The Perfect Size To Take On The Go Or Pack As A Snack ", "Our New Original Assorted Snack Packs Are Conveniently Packed In Fun Size Portions and Shipped In A Resealable Pantry Bag ", "Bulk Fun Size Assortment Great For, Event And Party Favors, Birthday, Pi\u00f1ata Filler, Vending Machine, Kids Easter Egg Hunt, Parades Or Refill For Nearly Any Event! ", "Perfect For Christmas Stocking Stuffer, Children's Halloween Trick Or Treating Goodie Bags, Workplace Office Party Or School Snack For College Students. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AFRLD2PMX3F2I", "seller_name": "Prime Deals Group", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09RLQR5NP", "category": "grocery", "query": "Party Mix", "page": 24, "small_description_old": "About this item 2 Full Pounds Of Peanut Butter M&M's Chocolate Coated Mini Candy Dipped Bites In Fun Sized Packs This Colored Funsize Candy Assortment Is The Perfect Size To Take On The Go Or Pack As A Snack Our New Original Assorted Snack Packs Are Conveniently Packed In Fun Size Portions and Shipped In A Resealable Pantry Bag Bulk Fun Size Assortment Great For, Event And Party Favors, Birthday, Pi\u00f1ata Filler, Vending Machine, Kids Easter Egg Hunt, Parades Or Refill For Nearly Any Event! Perfect For Christmas Stocking Stuffer, Children's Halloween Trick Or Treating Goodie Bags, Workplace Office Party Or School Snack For College Students."}, {"name": "Patio Furniture Set of 3 Rocking Bistro Set Wicker Patio Furniture Sets Rattan Chair with Glass Coffee Table for Porch Yard Backyard or Bistro", "product_information": {"Item Weight": "\u200e47 pounds", "Product Dimensions": "\u200e27 x 25 x 28 inches", "Item model number": "\u200ePatio Furniture Set of 3", "Weight": "\u200e47 Pounds", "ASIN": "B09N8SLFRJ", "Best Sellers Rank": ["#1,003,448 in Patio, Lawn & Garden (See Top 100 in Patio, Lawn & Garden) #1,553 in Patio Bistro Sets"], "Date First Available": "December 8, 2021"}, "brand": "Brand: PayLessHere", "brand_url": "https://www.amazon.com/PayLessHere/b/ref=bl_dp_s_web_18768173011?ie=UTF8&node=18768173011&field-lbr_brands_browse-bin=PayLessHere", "full_description": "Features:Hand-woven rattan are strong and durable. The thickened steel frame ensures safety and stability. Thickened cushions provide more soft and comfort. Moveable and washable cushion cover for easy cleaning. Tempered glass table for long time outdoor using. Ship in one mail boxSpecifications:Frame: Steel Rattan Material: PE Rattan Color: Black Cushion Cover Color: Khaki Chair Dimensions: 27 inch(L) x 25 inch(W) x 28 inch(H) Table Dimensions:18 inch(L) x 18 inch(W) x 19 inch(H) Weight Capacity: 200 lbsProduct Instructions:When you try to install the furniture, try to line the hole together in all side, do not over tight one hole, then try to tight it slowly in each side. Manual measurement has been used, there may be some reasonable error. Please confirm the product size before purchasing, to make sure the size of our product is in line with your requirements. Our digital images are as accurate as possible, however, photo taking condition and different monitors may cause image color to vary slightly, and it is normal.", "pricing": "$149.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31QgDFmuNsL.jpg", "https://m.media-amazon.com/images/I/413czsWokwL.jpg", "https://m.media-amazon.com/images/I/41N7nQXHTsL.jpg", "https://m.media-amazon.com/images/I/41uCppnU2SL.jpg", "https://m.media-amazon.com/images/I/418PT4JxT2L.jpg", "https://m.media-amazon.com/images/I/51lvLuAx9zL.jpg", "https://m.media-amazon.com/images/I/B1lJ3EsWfTS.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Patio Furniture & Accessories \u203a Patio Furniture Sets \u203a Bistro Sets", "average_rating": "", "small_description": ["Swing Design: The outdoor 3-piece set of chairs adds a swing function, allowing yourself to swing to a relaxed state. ", "Widely Used: Patio furniture set of 3, including 2 rocking chairs and 1 tempered glass coffee table. This patio furniture set is designed to make better use of the porch, outdoor courtyard, garden and backyard space. Swing function design to create a beautiful and comfortable outdoor space for you and your guests.It is widely used in outdoor terraces, gardens, lawns, balconies and swimming pools. ", "Rugged and Durable: The rocking bistro set is made of powder-coated steel frame, and high-quality hand-woven weather-resistant wicker will not fade. It has weather resistance and UV resistance. Looks great in any environment. ", "Upgraded Comfort: wide and deep seats, with soft cushions, let you forget fatigue and enjoy leisure time. ", "Reminders and Suggestions: This patio furniture sets comes with all the hardware and necessary tools. Follow the instructions and you can assemble the patio sofa set easily and quickly. Note: When you try to install the patio furniture set, please try to align the holes on all sides, do not overtighten one hole, and then try to tighten it slowly on each side. If you are not using a chair, please keep the cushion indoors, because prolonged exposure to the sun or rain will damage the cushion. "], "total_reviews": "", "total_answered_questions": "", "model": "\u200ePatio Furniture Set of 3", "customization_options": "", "seller_id": "A3MXV3BRX5P67N", "seller_name": "Cavalier Store", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09N8SLFRJ", "category": "garden", "query": "Coffee Tables", "page": 388, "small_description_old": "About this item Swing Design: The outdoor 3-piece set of chairs adds a swing function, allowing yourself to swing to a relaxed state. Widely Used: Patio furniture set of 3, including 2 rocking chairs and 1 tempered glass coffee table. This patio furniture set is designed to make better use of the porch, outdoor courtyard, garden and backyard space. Swing function design to create a beautiful and comfortable outdoor space for you and your guests.It is widely used in outdoor terraces, gardens, lawns, balconies and swimming pools. Rugged and Durable: The rocking bistro set is made of powder-coated steel frame, and high-quality hand-woven weather-resistant wicker will not fade. It has weather resistance and UV resistance. Looks great in any environment. Upgraded Comfort: wide and deep seats, with soft cushions, let you forget fatigue and enjoy leisure time. Reminders and Suggestions: This patio furniture sets comes with all the hardware and necessary tools. Follow the instructions and you can assemble the patio sofa set easily and quickly. Note: When you try to install the patio furniture set, please try to align the holes on all sides, do not overtighten one hole, and then try to tighten it slowly on each side. If you are not using a chair, please keep the cushion indoors, because prolonged exposure to the sun or rain will damage the cushion. \n \u203a See more product details"}, {"name": "3D No Glue Window Privacy Film Static Window Clings Decorative Window Privacy Film Window Film Privacy Static Window Retro Tribal Folk Pattern W23.6 x H78.7 Inch", "product_information": {"Manufacturer": "LANQiAO", "ASIN": "B095Z2SDB9", "Date First Available": "May 30, 2021"}, "brand": "Brand: LANQiAO", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=LANQiAO", "full_description": "Package Included:1 x Frosted Window Sticker Glass FilmColor: As Picture ShowsPasting Way: Electrostatic adsorptionThickness: 0.3 mm\u00a0Features:Easily applied to the interior of the glass without adhesives and it is easy to tear offIt provides UV protection and allows light through at the same timeIdeal for smooth glass surfaces in the bathroom, kitchen, bathroom, bedroom, living room, office, etc.Not suitable for dirty or rough surface", "pricing": "$38.80", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/51xkVg9tmaS.jpg", "https://m.media-amazon.com/images/I/51wzmYOguMS.jpg", "https://m.media-amazon.com/images/I/61tn4wFO6eS.jpg", "https://m.media-amazon.com/images/I/61AVAdBuGeS.jpg", "https://m.media-amazon.com/images/I/51y-A1SboaS.jpg", "https://m.media-amazon.com/images/I/51w5gPagK8S.jpg", "https://m.media-amazon.com/images/I/51bFpm8gxUS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Window Treatments \u203a Window Stickers & Films \u203a Window Films", "average_rating": "", "small_description": ["STAINED GLASS FILM FOR GLASS DOORS SIZE: L 23.6 x H 78.7 Inch (60cmx200cm) ", "Privacy Glass Window Films: Instantly increases the privacy of your shower door and any window in the home, at the office. ", "Anti UV Heat Control Privacy Kitchen Curtains: block up to 95% of UV rays. ", "Adhesive-free, No Glue Window Films: Our window and door glass film contains no glue and no adhesive, helping to reduce chemical release in nature. ", "\u2605EASY INSTALL: Easily install yourself in minutes. Just cut to size and apply using soapy water and squeegee. Static Cling Window Films remove easily and cleanly when it is time to redecorate and can be used on any smooth, non-porous glass surface.Please note that before installation, please tear off the protective film on the smooth side, otherwise it will not stick firmly "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B095YZ6D5H/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "L17.7\" x H 23.6\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Z2JQMP/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "L23.6\" x H 35.4\"", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "L23.6\" x H 78.7\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Z1TDYS/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "L35.4\" x H 78.7\"", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B095Z2G3Y2/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03136", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51yO2adi9oS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Z1SQ9P/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03137", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61Ug74gcWHS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095YZVCY7/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03138", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/616gqFC-M2S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095YZH38F/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03139", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61N9jbWsN3S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095YYW8R1/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03140", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51PCDdEisZS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Z31DMG/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03141", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51BlQqbRlIS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Z19R34/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03142", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/510Z5C-mIeS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Z2D1HD/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03143", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61yS0bm5zVS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095YZZJV5/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03144", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51xxQtau4AS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Z1RYPF/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03145", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51497GDRKVS.jpg"}, {"is_selected": true, "url": null, "value": "Multi-03146", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61AVAdBuGeS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095YZX6F6/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03147", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61V5P3DXZRS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095YZQJQY/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03148", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61IJY2LXu7S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Z2TTRB/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03149", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61lEltTuEdS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095YZ3KFG/ref=twister_B0966YN5PH?_encoding=UTF8&psc=1", "value": "Multi-03150", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61WfNsDpIGS.jpg"}]}, "seller_id": "A3Q35P0C8KJ5S0", "seller_name": "Crazy&Kate", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B095Z2SDB9", "category": "garden", "query": "Window Coverings", "page": 333, "small_description_old": "About this item\n \nSTAINED GLASS FILM FOR GLASS DOORS SIZE: L 23.6 x H 78.7 Inch (60cmx200cm) Privacy Glass Window Films: Instantly increases the privacy of your shower door and any window in the home, at the office. Anti UV Heat Control Privacy Kitchen Curtains: block up to 95% of UV rays. Adhesive-free, No Glue Window Films: Our window and door glass film contains no glue and no adhesive, helping to reduce chemical release in nature. \u2605EASY INSTALL: Easily install yourself in minutes. Just cut to size and apply using soapy water and squeegee. Static Cling Window Films remove easily and cleanly when it is time to redecorate and can be used on any smooth, non-porous glass surface.Please note that before installation, please tear off the protective film on the smooth side, otherwise it will not stick firmly"}, {"name": "PUMA V1.08 Tricks Top Trainer Mens Soccer Sneakers/Boots-Grey-5.5", "product_information": {"Item model number\n \u200f": "\u200e\n 10164701", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 19, 2021", "Manufacturer\n \u200f": "\u200e\n Puma", "ASIN\n \u200f": "\u200e\n B01LXTLLVG", "Best Sellers Rank": "#1,671,725 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,011 in Men's Soccer Shoes", "#1,011 in Men's Soccer Shoes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the PUMA Store", "brand_url": "https://www.amazon.com/stores/PUMA/page/00F6067E-333B-41A4-AC3D-7B2FA69EA1AB?ref_=ast_bln", "full_description": "Puma V1.08 Tricks Top Trainer Mens Football Trainers / Boots - Ideal for synthetic grass surfaces, most commonly Astro Turf. Designed for enhanced traction, cushioning and comfort. Usually a solid, soft rubber outsole with multi 'stud' or lug configuration.", "pricing": "$55.50", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41mFGiRmT7L.jpg", "https://m.media-amazon.com/images/I/51uyi3eSArL.jpg", "https://m.media-amazon.com/images/I/41bCRlk-KOL.jpg", "https://m.media-amazon.com/images/I/41BKPLEph6L.jpg", "https://m.media-amazon.com/images/I/51ZTMC3Fm6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Athletic \u203a Team Sports \u203a Soccer", "average_rating": 5, "small_description": ["Suitable for Astro Turf ", "Suitable for 3G and 4G ", "Soccer shoes ", "Money back satisfaction guarantee "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A1NM52M1A4QVKG", "seller_name": "Galaxy Sports", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01LXTLLVG", "category": "fashion", "query": "Men's Fashion Sneakers", "page": 59, "small_description_old": "100% Synthetic Rubber sole Suitable for Astro Turf Suitable for 3G and 4G Soccer shoes Money back satisfaction guarantee"}, {"name": "External Hard Drive 1TB 2TB High Speed USB 3.1 Portable Hard Drive External HDD Portable External Hard Drive for Mac, PC, Laptop(2TB Red)", "product_information": {"Hard Drive": "\u200e2 TB Portable", "Hardware Platform": "\u200ePC, Mac", "Item Weight": "\u200e1.97 ounces", "Package Dimensions": "\u200e5.67 x 3.82 x 0.55 inches", "Color": "\u200eRed-A", "Flash Memory Size": "\u200e2 TB", "Hard Drive Interface": "\u200eUSB 1.1", "Manufacturer": "\u200eHanvioDIR", "ASIN": "\u200eB09NFG3XXY", "Date First Available": "\u200eDecember 11, 2021", "Best Sellers Rank": ["#2,119 in External Hard Drives"]}, "brand": "Brand: HanvioDIR", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=HanvioDIR", "full_description": "External Hard Drive 1TB 2TB High Speed USB 3.1 Portable Hard Drive External HDD Portable External Hard Drive for Mac, PC, Laptop Type: External hard drive Material: Aluminum Alloy, Matte, Chip Capability Available: 1TB 2TB USB 3.0 and 2.0 ultra-high-speed USB connection, can transfer data at 5Gbit/s speed, which is about 10 times faster than the standard USB 2.0 Colors Available: Black, Red, Blue, Silver, Golden Plug and play function, instant connection when plugging into PC. Advanced Type-C port allows blind insertion on both sides. Ultra slim pocket-sized body for easy transport. Large capability to back up massive amounts of data with ease. Improved metal shell with matte surface for unique touch and comfy hand feel. Auto sleep function to prevent body heat and cut consumption. More safety and more durability, a trustable guard for your important data. What\u2019s Included: 1x Aluminum Alloy Portable External Hard Drive 1x 1 x USB Type-C", "pricing": "$33.10", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/31q8-pkPRpL.jpg", "https://m.media-amazon.com/images/I/518ysHubV6L.jpg", "https://m.media-amazon.com/images/I/41P6UxviKVL.jpg", "https://m.media-amazon.com/images/I/51OaNe+j9CL.jpg", "https://m.media-amazon.com/images/I/41Fd-5vUEBL.jpg", "https://m.media-amazon.com/images/I/41-PcNaHRDL.jpg", "https://m.media-amazon.com/images/I/51XK2VjzpLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Data Storage \u203a External Hard Drives", "average_rating": "", "small_description": ["\u3010Plug and Play\u3011--This hard drive external is ready to go without software to install, just plug it in and go. ", "\u3010High Speed Type-C/USB3.1 External Hard Drive\u3011With super high transmission. 5 times as fast as usual hard drive when reading and more than 1 time faster when writing, sure to boost your work efficiency largely! ", "\u3010Sturdy & Durable\u3011Ultra slim external hard drive protected by sturdy and durable case, which is lightweight and handy, comfortably fits your palm or slip into pocket. ", "\u3010Superior Compatibility\u3011Its strong compatibility makes it workable with 99% of PC systems,including Microsoft Windows 10/ Windows 8.1/ Windows 8/ Windows 7/Android and more! ", "\u3010What You Get\u3011 1 x Portable Hard Drive,1 x USB3.1 Cable, 3 Years Warranty. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2VSRI065ZEX3Q", "seller_name": "MGBCIS CO.,LT", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NFG3XXY", "category": "electronics", "query": "Mac", "page": 231, "small_description_old": "About this item\n \n\u3010Plug and Play\u3011--This hard drive external is ready to go without software to install, just plug it in and go. \u3010High Speed Type-C/USB3.1 External Hard Drive\u3011With super high transmission. 5 times as fast as usual hard drive when reading and more than 1 time faster when writing, sure to boost your work efficiency largely! \u3010Sturdy & Durable\u3011Ultra slim external hard drive protected by sturdy and durable case, which is lightweight and handy, comfortably fits your palm or slip into pocket. \u3010Superior Compatibility\u3011Its strong compatibility makes it workable with 99% of PC systems,including Microsoft Windows 10/ Windows 8.1/ Windows 8/ Windows 7/Android and more! \u3010What You Get\u3011 1 x Portable Hard Drive,1 x USB3.1 Cable, 3 Years Warranty."}, {"name": "MagMod MagBox PRO 24\" Octa Softbox with Integrated Gel Slot and Storage Pocket for Fabric Diffuser - Compatible with Speedlight Flashes and Strobes", "product_information": {"Product Dimensions": "10.25 x 10.25 x 19.75 inches", "Item Weight": "3 pounds", "ASIN": "B09HMN26HY", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#849 in Lighting Soft Boxes"], "Date First Available": "October 1, 2021", "Manufacturer": "MagMod"}, "brand": "Visit the MagMod Store", "brand_url": "https://www.amazon.com/stores/MagMod/page/F4EA2D90-F4D7-4298-B80B-1773C0AEE9EE?ref_=ast_bln", "full_description": "MagMod MagBox PRO 24\" Octa SoftboxMagMod is all about making awesome photography easy for busy photographers and budding shutterbugs. The MagBox PRO 24\" Octa Softbox offers time-saving features that make setting up camera lighting a breeze. It features an integrated slot for MagBox Gels and a built-in storage pocket for the zip-on diffusion panel. You can easily and quickly set up or dismantle the MagBox PRO system in seconds. MagBox PRO's zip-on diffuser takes away the frustration photographers usually have with Velcro-type diffusion panels. No more second-guessing where to place the diffuser outsider of the softbox. Plus, you can quickly switch from the Fabric Diffuser to the FocusDiffuser or the Magnetic Grid. Use the softbox's side zipper to insert a polycarbonate MagBox Gel for instant color correction. The MagBox PRO's base features strong neodymium magnets that quickly attach to the MagRing or MagBox Speedring Adapter. It is designed to work with speed lights and strobes. MagMod re-engineered this 24-inch MagBox with a durable yet lightweight ripstop fabric shell. You can use it indoors, outdoors, commercial shoots, or large-scale wedding events.", "pricing": "$192.95", "list_price": "", "availability_quantity": 15, "availability_status": "Only 15 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41b6WQGMamL.jpg", "https://m.media-amazon.com/images/I/41w-HAzCXZL.jpg", "https://m.media-amazon.com/images/I/51UxYYfMQDL.jpg", "https://m.media-amazon.com/images/I/51u5qKqMuaL.jpg", "https://m.media-amazon.com/images/I/419RMZxmVFL.jpg", "https://m.media-amazon.com/images/I/41VFtpoLWSL.jpg", "https://m.media-amazon.com/images/I/51jZTvt1QWL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Lighting & Studio \u203a Lighting \u203a Lighting Controls & Modifiers \u203a Soft Boxes", "average_rating": 5, "small_description": ["OFFERS HASSLE-FREE SETUP AND TEAR DOWN - The one-piece MagMod MagBox PRO 24\" Octa Softbox features durable support rods that easily fold and spread and a magnetic base that attaches easily to a MagRing. It comes with a super-fast zip-on diffuser that's stored inside the integrated storage pocket. No need for small screws or tacky tapes when using a softbox. ", "DELIVERS POWERFUL YET SOFT LIGHT - The silver reflective interior and open obstruction-free center design emit brilliant light output and minimal to zero light loss. Use the built-in zip-on Fabric Diffuser to produce a wide area of soft light. ", "PUT LIGHT WHERE YOU WANT IT - The MagBox PRO 24\" Octa works attaches quickly into the FocusDiffuser* or the MagBox PRO Grid* thanks to the powerful magnets embedded on the ends. You can change the angle of the light from the Octa into a 40\u00b0 beam angle with these MagBox modifiers. ", "COLOR-CORRECT YOUR PHOTO - Slip one or two MagBox Gels* in the integrated gel slot to balance out your flash color or add a dynamic color effect. You can also swap gels during a shoot by simply using the side zipper. You don't need to take down the diffusion panel. ", "COMPATIBILITY - Thanks to MagBox PRO's unique bottom design, you can use two Speedlight flashes simultaneously. You can even attach Octa into a monolight strobe**. MagBox is compatible with Canon, Nikon, Sony, Bowens, Elinchrom, Profoto, and Paul Buff. (**Dedicated adapters for strobes are not included.) "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A34JWT04R7KMFW", "seller_name": "Quantum Networks", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09HMN26HY", "category": "electronics", "query": "Flashes", "page": 189, "small_description_old": "About this item\n \nOFFERS HASSLE-FREE SETUP AND TEAR DOWN - The one-piece MagMod MagBox PRO 24\" Octa Softbox features durable support rods that easily fold and spread and a magnetic base that attaches easily to a MagRing. It comes with a super-fast zip-on diffuser that's stored inside the integrated storage pocket. No need for small screws or tacky tapes when using a softbox. DELIVERS POWERFUL YET SOFT LIGHT - The silver reflective interior and open obstruction-free center design emit brilliant light output and minimal to zero light loss. Use the built-in zip-on Fabric Diffuser to produce a wide area of soft light. PUT LIGHT WHERE YOU WANT IT - The MagBox PRO 24\" Octa works attaches quickly into the FocusDiffuser* or the MagBox PRO Grid* thanks to the powerful magnets embedded on the ends. You can change the angle of the light from the Octa into a 40\u00b0 beam angle with these MagBox modifiers. COLOR-CORRECT YOUR PHOTO - Slip one or two MagBox Gels* in the integrated gel slot to balance out your flash color or add a dynamic color effect. You can also swap gels during a shoot by simply using the side zipper. You don't need to take down the diffusion panel. COMPATIBILITY - Thanks to MagBox PRO's unique bottom design, you can use two Speedlight flashes simultaneously. You can even attach Octa into a monolight strobe**. MagBox is compatible with Canon, Nikon, Sony, Bowens, Elinchrom, Profoto, and Paul Buff. (**Dedicated adapters for strobes are not included.)"}, {"name": "Anker 10W Max Wireless Charger, 2 Pack 313 Wireless Charger (Pad), Qi-Certified Wireless Charging 7.5W for iPhone 12/12 Pro/12 mini/12 Pro Max, 10W for Galaxy S10 S9 S8, S9 Plus (No AC Adapter)", "product_information": {"Product Dimensions": "3.94 x 3.94 x 0.44 inches", "Item Weight": "4.6 ounces", "ASIN": "B07THL8PP1", "Item model number": "B2503011", "Customer Reviews": {"ratings_count": 8861, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#8,142 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #132 in Cell Phone Wireless Chargers"], "Connectivity technologies": "Wireless", "Other display features": "Wireless", "Colour": "Black and Black", "Manufacturer": "Anker", "Date First Available": "July 3, 2019"}, "brand": "Visit the Anker Store", "brand_url": "https://www.amazon.com/stores/Anker/page/D24FDA17-DECF-46BB-AF47-AF4647D2B1F8?ref_=ast_bln", "full_description": "", "pricing": "$25.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/31UaSgPJKoL.jpg", "https://m.media-amazon.com/images/I/41SNMjPpIhL.jpg", "https://m.media-amazon.com/images/I/41KLi+QomTL.jpg", "https://m.media-amazon.com/images/I/41vxVa93sFL.jpg", "https://m.media-amazon.com/images/I/41ULJp4JQUL.jpg", "https://m.media-amazon.com/images/I/41XNpmJVbVL.jpg", "https://m.media-amazon.com/images/I/B1B9NB5ofKS.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Chargers & Power Adapters \u203a Wireless Chargers", "average_rating": 4.4, "small_description": ["Charging for Home and Office: Now you can experience wireless charging day and night with one PowerWave Pad at work and another at home. ", "Wide Compatibility: Support for all Qi-enabled devices including iPhone X, XS, XR, XS Max, 8, 8 Plus as well as Samsung Galaxy S10, S9, S8, Note 10, Note 9, Note 8. ", "The Need for Speed: A high-efficiency chipset provides 10W high-speed charging for Samsung Galaxy, while iPhones get a boosted 7.5W charge. For best results, use a Quick Charge 2.0 or 3.0 adapter (9V/2A) for Samsung Galaxy and iPhone charging. ", "Case Friendly: Don't fumble with your phone case. PowerWave charges directly through protective cases. Rubber/plastic/TPU cases less than 5 mm thick only. Magnetic and metal attachments or cards will prevent charging. ", "What You Get: 2\u00d7 313 Wireless Charger (Pad) / PowerWave Pad, 2\u00d7 Micro USB Cable (4 ft ), welcome guide, worry-free 18-month warranty, and friendly customer service. (AC adapter not included) "], "total_reviews": 8861, "total_answered_questions": 104, "model": "B2503011", "customization_options": "", "seller_id": "A294P4X9EWVXLJ", "seller_name": "AnkerDirect", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B07THL8PP1", "category": "electronics", "query": "Chargers", "page": 125, "small_description_old": "About this item Charging for Home and Office: Now you can experience wireless charging day and night with one PowerWave Pad at work and another at home. Wide Compatibility: Support for all Qi-enabled devices including iPhone X, XS, XR, XS Max, 8, 8 Plus as well as Samsung Galaxy S10, S9, S8, Note 10, Note 9, Note 8. The Need for Speed: A high-efficiency chipset provides 10W high-speed charging for Samsung Galaxy, while iPhones get a boosted 7.5W charge. For best results, use a Quick Charge 2.0 or 3.0 adapter (9V/2A) for Samsung Galaxy and iPhone charging. Case Friendly: Don't fumble with your phone case. PowerWave charges directly through protective cases. Rubber/plastic/TPU cases less than 5 mm thick only. Magnetic and metal attachments or cards will prevent charging. What You Get: 2\u00d7 313 Wireless Charger (Pad) / PowerWave Pad, 2\u00d7 Micro USB Cable (4 ft ), welcome guide, worry-free 18-month warranty, and friendly customer service. (AC adapter not included)"}, {"name": "HON 673LP 600 Series 30-Inch by 19-1/4-Inch 3-Drawer Lateral File, Black", "product_information": {"Item Weight": "\u200e162 pounds", "Product Dimensions": "\u200e21.31 x 32.13 x 44.95 inches", "Item model number": "\u200eH673.L.P", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Height": "\u200e40.87 inches", "Assembled Width": "\u200e30 inches", "Assembled Length": "\u200e19.25 inches", "Weight": "\u200e163 Pounds", "ASIN": "B00272NBN2", "Customer Reviews": {"ratings_count": 11, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#2,440,837 in Home & Kitchen (See Top 100 in Home & Kitchen) #374 in Home Office Cabinets"], "Date First Available": "November 18, 2004"}, "brand": "Visit the HON Store", "brand_url": "https://www.amazon.com/stores/HON/page/94543C01-5957-43BA-90D4-69B783DDB3FB?ref_=ast_bln", "full_description": "Well-engineered and incredibly strong, Brigade 600 Series laterals from HON are built for the demands of high-activity filing. This three-drawer, 30\"W model features a sturdy double-walled base to resist tampering and strengthen the case. It accepts letter or legal hanging file folders. Bright Aluminum handle coordinates with Brigade pedestals. Finish color is Black.", "pricing": "$758.97", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41cNNHLLqGL.jpg", "https://m.media-amazon.com/images/G/01/showroom/icon-lightbulb.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Cabinets", "average_rating": 4.5, "small_description": ["Three-part telescoping slide suspension ", "Mechanical interlock allows only one drawer to open at a time to inhibit tipping ", "Leveling glides adjust for uneven floors ", "MADE IN THE USA: When you buy HON, you\u2019re buying quality furniture that\u2019s more than a practical solution\u2013 you\u2019re buying proudly American-built office furniture, backed by a lifetime warranty and network of dealers. "], "total_reviews": 11, "total_answered_questions": "", "model": "\u200eH673.L.P", "customization_options": "", "seller_id": "A29PHU0KPCGV8S", "seller_name": "The Factory Depot", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00272NBN2", "category": "garden", "query": "File Cabinets", "page": 160, "small_description_old": "About this item Three-part telescoping slide suspension Mechanical interlock allows only one drawer to open at a time to inhibit tipping Leveling glides adjust for uneven floors MADE IN THE USA: When you buy HON, you\u2019re buying quality furniture that\u2019s more than a practical solution\u2013 you\u2019re buying proudly American-built office furniture, backed by a lifetime warranty and network of dealers. \n \u203a See more product details"}, {"name": "Wood TV Stand for 65 Inch TV, TV Cabinet with Farmhouse Barn Doors, TV Console Table with Adjustable Shelves, Industrial, Rustic Brown", "product_information": {"Product Dimensions": "\u200e58 x 15.6 x 28 inches", "ASIN": "B09BKPV8LR", "Customer Reviews": {"ratings_count": 2, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#3,820,246 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,883 in Television Stands"], "Date First Available": "July 31, 2021"}, "brand": "Brand: Itaar", "brand_url": "https://www.amazon.com/Itaar/b/ref=bl_dp_s_web_20384877011?ie=UTF8&node=20384877011&field-lbr_brands_browse-bin=Itaar", "full_description": "", "pricing": "$317.58", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51yACD3EfAL.jpg", "https://m.media-amazon.com/images/I/51R5FbM0blL.jpg", "https://m.media-amazon.com/images/I/51Gni32-HTL.jpg", "https://m.media-amazon.com/images/I/419Dd38LslL.jpg", "https://m.media-amazon.com/images/I/51AHe8CXrXS.jpg", "https://m.media-amazon.com/images/I/41wTPFBAzCL.jpg", "https://m.media-amazon.com/images/I/51+VwyKpwFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a TV & Media Furniture \u203a Television Stands & Entertainment Centers", "average_rating": 5, "small_description": [""], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A1QPG9I7PGKU8A", "seller_name": "AxxelStore", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09BKPV8LR", "category": "garden", "query": "TV Stands", "page": 94, "small_description_old": ""}, {"name": "Mini Projector,FUNTUSPIC-GOO DEE Portable Projector for iPhone, 1080p Supported Movie Projector, 2500lux Small Home Video LED Pico Pocket Phone Projector for Bedroom Laptop HD USB AV Interfaces", "product_information": {"Brand Name": "\u200eFUNTUSPIC", "Item Weight": "\u200e15.8 ounces", "Product Dimensions": "\u200e5.31 x 4.53 x 4.13 inches", "Item model number": "\u200e230", "Color Name": "\u200eA-Yellow", "ASIN": "B09KGN7XF4", "Customer Reviews": {"ratings_count": 26, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#25,779 in Office Products (See Top 100 in Office Products) #3 in Office Presentation Overhead Projectors"], "Date First Available": "October 27, 2021"}, "brand": "Visit the FUNTUSPIC Store", "brand_url": "https://www.amazon.com/stores/FUNTUSPIC/page/D7084E8C-51A1-4A23-A3CD-913D5FD78C1F?ref_=ast_bln", "full_description": "", "pricing": "$63.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41uHOgEwviS.jpg", "https://m.media-amazon.com/images/I/51gmozf7gkL.jpg", "https://m.media-amazon.com/images/I/511xgKAh5ZL.jpg", "https://m.media-amazon.com/images/I/51RyRKBY7NS.jpg", "https://m.media-amazon.com/images/I/51ma2ET+D3S.jpg", "https://m.media-amazon.com/images/I/51bVhGlnWpS.jpg", "https://m.media-amazon.com/images/I/51QJ3MmJT6S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Electronics \u203a Presentation Products \u203a Overhead Projectors", "average_rating": 4.5, "small_description": ["\u3010Unprecedented Mini Projector\u3011: This small projector supports 1080p and with 2400:1 Contrast and maximum 180\" projection(Recommend 70-110\"). It has a larger screen and 30% brighter than other little projectors. It's able to keep kids' eyes away from phones but still has a wonderful visual experience. The native resolution of it is 854*480p. ", "\u3010Ultra Portable Design\u3011: You may not imagine that the size is only 5.31*4.53*4.13 inch and 15.8 oz with a unique leather handle design. A portable projector with such small size even kids can carry it everywhere. Let children take it home and enjoy it! ", "\u3010Connect to Your Phones\u3011: It's a projector for phone. A USB/TYPE-C to HDMI adapter is needed for an Android phone. While A lighting to HDMI adapter is needed for an iPhone. With a suitable adapter, you can enjoy this phone projector. (NOTE: All adapters are not included in the package.\uff09 ", "\u3010Wonderful Gift for Children\u3011: Not only it is a small but handheld projector, also it is designed with a dainty appearance which appeals to Children. It's mainly designed for kids. They can use this small projector for watching cartoons with their little friends. It's one of the best gifts for kids. ", "\u3010Versatile Connectivity\u3011: YG230 small projector is equipped with multiple ports: HD, USB, Micro SD, AV, Micro USB, Audio(3.5mm) interfaces, etc. So you are able to easily connect it to smartphones ), tablets, TV stick, Chromecast, PC, external hard & flash drive, card reader, etc. If you met any problem about connection, please contact customer service. "], "total_reviews": 26, "total_answered_questions": 17, "model": "\u200e230", "customization_options": {"Color": null}, "seller_id": "A12D3OYC6QYWX", "seller_name": "FUNTUSPIC TECH", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09KGN7XF4", "category": "electronics", "query": "Projectors", "page": 13, "small_description_old": "About this item \u3010Unprecedented Mini Projector\u3011: This small projector supports 1080p and with 2400:1 Contrast and maximum 180\" projection(Recommend 70-110\"). It has a larger screen and 30% brighter than other little projectors. It's able to keep kids' eyes away from phones but still has a wonderful visual experience. The native resolution of it is 854*480p. \u3010Ultra Portable Design\u3011: You may not imagine that the size is only 5.31*4.53*4.13 inch and 15.8 oz with a unique leather handle design. A portable projector with such small size even kids can carry it everywhere. Let children take it home and enjoy it! \u3010Connect to Your Phones\u3011: It's a projector for phone. A USB/TYPE-C to HDMI adapter is needed for an Android phone. While A lighting to HDMI adapter is needed for an iPhone. With a suitable adapter, you can enjoy this phone projector. (NOTE: All adapters are not included in the package.\uff09 \u3010Wonderful Gift for Children\u3011: Not only it is a small but handheld projector, also it is designed with a dainty appearance which appeals to Children. It's mainly designed for kids. They can use this small projector for watching cartoons with their little friends. It's one of the best gifts for kids. \u3010Versatile Connectivity\u3011: YG230 small projector is equipped with multiple ports: HD, USB, Micro SD, AV, Micro USB, Audio(3.5mm) interfaces, etc. So you are able to easily connect it to smartphones ), tablets, TV stick, Chromecast, PC, external hard & flash drive, card reader, etc. If you met any problem about connection, please contact customer service. \n \u203a See more product details"}, {"name": "Aultra LED Desk LAMP Light - Touch Control Desk Lamp with Multiple Brightness Level - Lights for Bedroom, The Office Desk, Reading Lamps, Bedside Table and Standing Desk (White)", "product_information": {"Brand": "\u200eAULTRA", "Manufacturer": "\u200eAultra", "Item Weight": "\u200e1.89 pounds", "Package Dimensions": "\u200e19.57 x 3.15 x 2.48 inches", "Style": "\u200eModern", "Color": "\u200eWhite", "Special Features": "\u200eDimmable", "Switch Style": "\u200eTouch", "Type of Bulb": "\u200eLED", "Wattage": "\u200e7 watts", "ASIN": "B084Q7C6TX", "Customer Reviews": {"ratings_count": 59, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#129,207 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #687 in Desk Lamps"], "Date First Available": "February 11, 2020"}, "brand": "Visit the AULTRA Store", "brand_url": "https://www.amazon.com/stores/AULTRA/page/CF84AF5F-C491-4C32-8F12-D68455C612F4?ref_=ast_bln", "full_description": "", "pricing": "$26.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21GMh4HZj6L.jpg", "https://m.media-amazon.com/images/I/51r6JrSzLiL.jpg", "https://m.media-amazon.com/images/I/41bzGOZFniL.jpg", "https://m.media-amazon.com/images/I/51WRc4YFh1L.jpg", "https://m.media-amazon.com/images/I/415ZP1WOVIL.jpg", "https://m.media-amazon.com/images/I/41UquKBcIGL.jpg", "https://m.media-amazon.com/images/I/41Ep4TPdW9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Lamps & Shades \u203a Desk Lamps", "average_rating": 4.8, "small_description": ["\u2714\ufe0f LONG-LASTING BULBS - Our LED light bulbs are long-lasting so no need for bulb replacement. LED home and desk lights are energy efficient and help save on your electricity bill. This small and modern are great lamps for bedrooms and travel easy for dorm room essentials. ", "\u2714\ufe0f LED LIGHTING TECHNOLOGY - LED lights emit a soft, non-flickering light without the blue hue. These lights do not get hot like older lights. It's sleek design makes this light great for anywhere in your home; living room, home office desk, kitchen lighting, dorm room decor, and more. ", "\u2714\ufe0f MUTLI-BRIGHTNESS LEVEL - Our LED desk lamp has 3 brightness levels to allow this lamp to be used under different conditions. It can be used as a reading lamp on the highest output and a soft led night light on the lowest output. ", "\u2714\ufe0f TOUCH-SENSITIVE - This touch controlled led lamp comes without the wear and tear of traditional button tabs and switches. Our touch operated lamp makes the design easy and dependable to use. This tap light can be turned on and off with a simple tap on it's control panel. ", "\u2714\ufe0f TILT & ROTATABLE LAMP HEAD - Set it up on your table and then pack it for travel. The flexible lamp head and arm make it easy to take with you. The rotatable design allows you to get the perfect lighting angle freely. The foldable lamp arm can help save desk space and be used as a piano light. "], "total_reviews": 59, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B084Q6VGFB/ref=twister_B089VVNLF8?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/21W-BQwEkzL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/21GMh4HZj6L.jpg"}]}, "seller_id": "A3Q1H15U97ZYF2", "seller_name": "Aultra", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B084Q7C6TX", "category": "garden", "query": "Table lamps", "page": 209, "small_description_old": "About this item \u2714\ufe0f LONG-LASTING BULBS - Our LED light bulbs are long-lasting so no need for bulb replacement. LED home and desk lights are energy efficient and help save on your electricity bill. This small and modern are great lamps for bedrooms and travel easy for dorm room essentials. \u2714\ufe0f LED LIGHTING TECHNOLOGY - LED lights emit a soft, non-flickering light without the blue hue. These lights do not get hot like older lights. It's sleek design makes this light great for anywhere in your home; living room, home office desk, kitchen lighting, dorm room decor, and more. \u2714\ufe0f MUTLI-BRIGHTNESS LEVEL - Our LED desk lamp has 3 brightness levels to allow this lamp to be used under different conditions. It can be used as a reading lamp on the highest output and a soft led night light on the lowest output. \u2714\ufe0f TOUCH-SENSITIVE - This touch controlled led lamp comes without the wear and tear of traditional button tabs and switches. Our touch operated lamp makes the design easy and dependable to use. This tap light can be turned on and off with a simple tap on it's control panel. \u2714\ufe0f TILT & ROTATABLE LAMP HEAD - Set it up on your table and then pack it for travel. The flexible lamp head and arm make it easy to take with you. The rotatable design allows you to get the perfect lighting angle freely. The foldable lamp arm can help save desk space and be used as a piano light. \n \u203a See more product details"}, {"name": "AOBIO Shipping Label Printer, 4x6 Desktop Direct Thermal Label Printer for Shipping Packages Postage Home Small Business, Compatible with Etsy, Shopify, Ebay, Amazon, FedEx, UPS", "product_information": {"Package Dimensions": "10.83 x 6.02 x 4.61 inches", "Item Weight": "3.45 pounds", "ASIN": "B097PCJMP5", "Customer Reviews": {"ratings_count": 130, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#41,065 in Office Products (See Top 100 in Office Products) #81 in Desktop Label Printers"], "Date First Available": "June 22, 2021", "Manufacturer": "AOBIO"}, "brand": "Visit the AOBIO Store", "brand_url": "https://www.amazon.com/stores/AOBIO/page/DFEF02FB-68DA-41FF-AA41-106BFD0CE28A?ref_=ast_bln", "full_description": "", "pricing": "$99.90", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41DHcioD4RS.jpg", "https://m.media-amazon.com/images/I/41pTrwGcfiL.jpg", "https://m.media-amazon.com/images/I/41qyqTL-RvS.jpg", "https://m.media-amazon.com/images/I/41y9tcOwS9S.jpg", "https://m.media-amazon.com/images/I/41-vadeKvkS.jpg", "https://m.media-amazon.com/images/I/419oHBrjmtS.jpg", "https://m.media-amazon.com/images/I/61ApdbNR8mL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Electronics \u203a Printers & Accessories \u203a Printers \u203a Label Printers", "average_rating": 4.4, "small_description": ["[Upgrade] - Aobio D4 shipping label printer, combined with the team's years of research and production experience, has undergone a comprehensive upgrade in appearance and performance, with a more exquisite and compact appearance, and more excellent and stable performance. ", "[Easy to use] - One-key open cover design, easy to operate, you can install and set up the printer with our short operation video with ease. The label printer has added several rollers to make the process of printing labels smoother, without paper jam, and bring you a better experience. ", "[Support Multiple Label Sizes] - 4X6 thermal label printer, with printing speed up to 152mm/s and 203 dpi high print resolution, can print HD labels from 1.57\" to 4\" width at high speed, and there is no restriction on label height. Very suitable for 4\" x 6\" shipping labels, warehouse labels, barcodes, ID labels, bulk mailing labels, etc. ", "[Wide Compatibility] - Aobio label printer for small bussiness is compatible with both Mac OS (10.9 and higher) and Windows(XP and higher), which is widely used for shipping packages on multiple major E-commerce platforms such as Amazon, eBay, Shopify, Esty, PayPal, etc. \u26a0 Notice: This USPS shipping label printer is NOT compatible with Chromebooks, Tablets, Smartphones including Microsoft Surface Laptop, iPad, iPhone. ", "[Real-Time Tech Support] - Aobio Label Printer provides free and lifetime technical support, timely-updated driver version, digestible tutorials, and installation guides for quick reference, we strive to make everything easier for you. "], "total_reviews": 130, "total_answered_questions": 18, "customization_options": {"Size": null}, "seller_id": "A2HIXGDW4HQLF3", "seller_name": "AOBIO", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B097PCJMP5", "category": "electronics", "query": "Printers & Scanners", "page": 71, "small_description_old": "About this item\n \n[Upgrade] - Aobio D4 shipping label printer, combined with the team's years of research and production experience, has undergone a comprehensive upgrade in appearance and performance, with a more exquisite and compact appearance, and more excellent and stable performance. [Easy to use] - One-key open cover design, easy to operate, you can install and set up the printer with our short operation video with ease. The label printer has added several rollers to make the process of printing labels smoother, without paper jam, and bring you a better experience. [Support Multiple Label Sizes] - 4X6 thermal label printer, with printing speed up to 152mm/s and 203 dpi high print resolution, can print HD labels from 1.57\" to 4\" width at high speed, and there is no restriction on label height. Very suitable for 4\" x 6\" shipping labels, warehouse labels, barcodes, ID labels, bulk mailing labels, etc. [Wide Compatibility] - Aobio label printer for small bussiness is compatible with both Mac OS (10.9 and higher) and Windows(XP and higher), which is widely used for shipping packages on multiple major E-commerce platforms such as Amazon, eBay, Shopify, Esty, PayPal, etc. \u26a0 Notice: This USPS shipping label printer is NOT compatible with Chromebooks, Tablets, Smartphones including Microsoft Surface Laptop, iPad, iPhone. [Real-Time Tech Support] - Aobio Label Printer provides free and lifetime technical support, timely-updated driver version, digestible tutorials, and installation guides for quick reference, we strive to make everything easier for you."}, {"name": "4K HDMI Cables, Short Cord, 1ft [3 Pack] Braided Cord & Gold Connectors, 1ft High-Speed HDMI 2.0 with Ethernet, for Playstation PS5, PS4, PS3, Xbox, Roku, Apple TV, HDTV, Blu-ray, Laptop, PC, Monitor", "product_information": {"Package Dimensions": "8.31 x 6.97 x 1.85 inches", "Item Weight": "4.6 ounces", "ASIN": "B08QSNM69H", "Customer Reviews": {"ratings_count": 76, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#1,287 in HDMI Cables"], "Date First Available": "December 16, 2020", "Manufacturer": "Ritz Gear"}, "brand": "Visit the Ritz Gear Store", "brand_url": "https://www.amazon.com/stores/RitzGear/page/21FDCA0F-A1C4-4611-93FB-72716FE4A55A?ref_=ast_bln", "full_description": "Share Your Screen\u2019s DisplayCasting your computer screen on to another screen offers you immense benefits. From careful evaluation of data on a larger screen, heightened entertainment and even an alternative to a cracked screen. A reliable HDMI Cable is a must-have for anyone who owns a computer and would like to have multiple display options in their house or office. RitzGear exists to make this possible. Reliable SpeedsWe present to you the RitzGear 4K HDMI cable that offers you fast transfer speeds that ensure you can enjoy multi-screen display. With top speeds of up to 18Gbps in transmission, you can count on 4K quality display when you opt for our HDMI cable. Enjoy 4K display at 60Hz for the best quality multi-screen display. A Length You Can Count OnMeasuring 1ft in length, our RitzGear HDMI cable is your best partner when looking to transit data to any screen around your home or office. We secure this HDMI cable with our braided nylon covering that ensures it can last you longer without deteriorating in quality. Forget about the nuisance of broken cables when you need them most. Choose the RitzGear braided nylon HDMI cable. Multiple Cables In 1 PackAt RitzGear, our existence is a commitment to serving the growing populace that embraces technology and appreciates the importance of multi-screen display. Whether it is for work or entertainment, you can count on us to avail to you high quality 4K HDMI cables with gold connectors. Moreover, we offer you a Multi pack that ensures you have an abundant supply for all your screen sharing needs. Universal CompatibilityThe RitzGear HDMI 2.0 cable offers you the versatility of connecting with a host of electronic devices. Our cable is universally compatible with laptops, desktop computers, TVs, and gaming consoles to ensure high quality screen casting.", "pricing": "$15.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41BaU1hCJxL.jpg", "https://m.media-amazon.com/images/I/51mJmXirQcL.jpg", "https://m.media-amazon.com/images/I/51hQfapC3jL.jpg", "https://m.media-amazon.com/images/I/51LLqiq3lzL.jpg", "https://m.media-amazon.com/images/I/514CvnumNYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a HDMI Cables", "average_rating": 4.4, "small_description": ["THE ULTIMATE 4K HDMI CABLE | Premium HDMI 2.0 19 pin Gold Plated Connector Enables Seamless Video & Audio Transfer with Powerful 4K @ 60Hz Support Including UHD, 3D, 2160p, 1080p, ARC & Ethernet | Perfect for Sending Media to TV, Projector or Monitor from Laptop, Computer, Streaming Stick, Gaming Console, Blu-Ray/DVD Player & More ", "LIGHTNING-FAST PERFORMANCE | Ultra-Reliable High-Speed 18Gbps Transmission Elevates Your Entertainment Experience Whether You\u2019re Screening Movies, Playing Games, Streaming Shows or Presenting Projects | Breathtaking 4K Resolution, Vivid, True-to-Life Color, Accurate Contrast & Impeccable Uncompressed Audio & Music ", "CONVENIENT 1-FOOT CABLE | Practical and Ideal Cable Length for connecting a camera to a camera field monitor ", "HEAVY-DUTY CONSTRUCTION | Durable, Rugged, High-Resistance Parts Promise Many Years of Dependable Data Sharing | Flexible Braided Nylon Jacket Allows for Easy Bending Without Breakage or Fraying, While High-Quality 24K Gold-Plated Connectors Resist Corrosion, Minimize Signal Loss & Block Out External Interference ", "AMAZING 3-PACK BULK SAVINGS | Stock Up on Your Screening Supplies for Home, Office, School, Business & Beyond | Our Versatile Male-to-Male HDMI 2.0 Cables are Super Affordable & Compatible with All of Today\u2019s Most Popular Devices & HDMI Adapters Such as PS3, PS4, PS5, Xbox One, Fire TV, Apple TV 4K, Roku & Switch "], "total_reviews": 76, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B098C9BY1Z/ref=twister_B09DHW13K5?_encoding=UTF8&psc=1", "value": "1-Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "3-Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08QTV76MV/ref=twister_B09DHW13K5?_encoding=UTF8&psc=1", "value": "5-Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08QTLBL8L/ref=twister_B09DHW13K5?_encoding=UTF8&psc=1", "value": "10-Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08QTV6RWN/ref=twister_B09DHW13K5?_encoding=UTF8&psc=1", "value": "20-Pack", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JYHWHKC/ref=twister_B09DHW13K5?_encoding=UTF8&psc=1", "value": "Black Braided", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51eht+1FF0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JYFXVT7/ref=twister_B09DHW13K5?_encoding=UTF8&psc=1", "value": "Blue Braided", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4146q6cuHbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JYBW3Z7/ref=twister_B09DHW13K5?_encoding=UTF8&psc=1", "value": "Green Braided", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/516AYJrLkEL.jpg"}, {"is_selected": true, "url": null, "value": "Red Braided", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41BaU1hCJxL.jpg"}]}, "seller_id": "A1LD8YQ23K3G6J", "seller_name": "RitzCamera", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08QSNM69H", "category": "electronics", "query": "HDMI Cables", "page": 25, "small_description_old": "About this item\n \nTHE ULTIMATE 4K HDMI CABLE | Premium HDMI 2.0 19 pin Gold Plated Connector Enables Seamless Video & Audio Transfer with Powerful 4K @ 60Hz Support Including UHD, 3D, 2160p, 1080p, ARC & Ethernet | Perfect for Sending Media to TV, Projector or Monitor from Laptop, Computer, Streaming Stick, Gaming Console, Blu-Ray/DVD Player & More LIGHTNING-FAST PERFORMANCE | Ultra-Reliable High-Speed 18Gbps Transmission Elevates Your Entertainment Experience Whether You\u2019re Screening Movies, Playing Games, Streaming Shows or Presenting Projects | Breathtaking 4K Resolution, Vivid, True-to-Life Color, Accurate Contrast & Impeccable Uncompressed Audio & Music CONVENIENT 1-FOOT CABLE | Practical and Ideal Cable Length for connecting a camera to a camera field monitor HEAVY-DUTY CONSTRUCTION | Durable, Rugged, High-Resistance Parts Promise Many Years of Dependable Data Sharing | Flexible Braided Nylon Jacket Allows for Easy Bending Without Breakage or Fraying, While High-Quality 24K Gold-Plated Connectors Resist Corrosion, Minimize Signal Loss & Block Out External Interference AMAZING 3-PACK BULK SAVINGS | Stock Up on Your Screening Supplies for Home, Office, School, Business & Beyond | Our Versatile Male-to-Male HDMI 2.0 Cables are Super Affordable & Compatible with All of Today\u2019s Most Popular Devices & HDMI Adapters Such as PS3, PS4, PS5, Xbox One, Fire TV, Apple TV 4K, Roku & Switch"}, {"name": "Puresea, Brisling Sardines In BBQ Sauce, 3.75 Ounce", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4.2 x 3.05 x 0.85 inches; 3.68 Ounces", "UPC\n \u200f": "\u200e\n 854159006051", "Manufacturer\n \u200f": "\u200e\n Puresea", "ASIN\n \u200f": "\u200e\n B07BBQDRDR", "": ""}, "brand": "Brand: Puresea", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Puresea", "full_description": "Pure Sea Sardines - Brisling - Bbq 3.75 Oz Country of origin : Latvia Gluten Free : Yes Yeast Free : Yes Wheat Free : Yes Kosher : Yes", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41D+7Y1arOL.jpg", "https://m.media-amazon.com/images/I/41hgQm8DidL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Canned, Jarred & Packaged Foods \u203a Meat, Poultry & Seafood \u203a Seafood \u203a Sardines", "average_rating": "", "small_description": ["175 calories per serving ", "One 3.75 ounce can of pure sea brisling sardines in bbq sauce ", "Rich in vitamins ", "See nutrition facts panel for allergens ", "Wild caught, natural "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07BBQDRDR", "category": "grocery", "query": "Meat & Seafood", "page": 236, "small_description_old": "About this item 175 calories per serving One 3.75 ounce can of pure sea brisling sardines in bbq sauce Rich in vitamins See nutrition facts panel for allergens Wild caught, natural"}, {"name": "Long Sleeve Superhero T Shirt Tank Top Mens Compression Shirt Men Workout Fitness Gym Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.9 x 8.27 x 2.17 inches; 6.1 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n October 27, 2021", "ASIN\n \u200f": "\u200e\n B09KLQLLT2", "Best Sellers Rank": "#371,991 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#264 in Men's Activewear Tank Tops", "#264 in Men's Activewear Tank Tops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Guerrero", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Guerrero", "full_description": "", "pricing": "$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41ycMbIy5HL.jpg", "https://m.media-amazon.com/images/I/518j+X8Ce8L.jpg", "https://m.media-amazon.com/images/I/41Z73oF90vL.jpg", "https://m.media-amazon.com/images/I/51vIp6mTmqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Shirts & Tees \u203a Tank Tops", "average_rating": 4.4, "small_description": ["88% Polyester, 12% Spandex ", "Superhero shirt is great choice for family members who want to try cosplay in daily life. the shirt can make you fantastic and outstanding when you wear it to take part in activities. ", "Breathable, soft and moisture-wicking fabric keeps you dry and comfortable during your training ", "Perfect option during various indoor activities and outdoor excursion "], "total_reviews": 8, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black/Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ycMbIy5HL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLN43QG/ref=twister_B09NR9TK6N", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Lnl9u8VDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLPTNLX/ref=twister_B09NR9TK6N", "value": "Blue/Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/514Cs2HDy5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLPT9VY/ref=twister_B09NR9TK6N", "value": "Bronze", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41HOJNvH6cL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLM8X6D/ref=twister_B09NR9TK6N", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51tOBqliusL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLN66R9/ref=twister_B09NR9TK6N", "value": "Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51uRwYthrnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLPTLPT/ref=twister_B09NR9TK6N", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Y2zvOeoXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLSQT3T/ref=twister_B09NR9TK6N", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517Uco7PFRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLR47K8/ref=twister_B09NR9TK6N", "value": "Red/Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/514F2VmOmXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLNHMQZ/ref=twister_B09NR9TK6N", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41WCg0vksWL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KLPNK3V/ref=twister_B09NR9TK6N", "value": "Grey/Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51JCWxEgkpL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09KLQLLT2"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09KLS1YYM"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09KLQBP89"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09KLNL2Y8"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09KLPVKN4"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09KLQLLT2", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 24, "small_description_old": "Machine Wash 88% Polyester, 12% Spandex Machine Wash Superhero shirt is great choice for family members who want to try cosplay in daily life. the shirt can make you fantastic and outstanding when you wear it to take part in activities. Breathable, soft and moisture-wicking fabric keeps you dry and comfortable during your training Perfect option during various indoor activities and outdoor excursion"}, {"name": "Mulyyds Computer Desk with Drawers and Open Shelves, Modern Writing Desk Student Study Table Gaming Workstations PC Laptop Corner Desk for Small Spaces Home Office Dormitory (White, 43x19x27in)", "product_information": {"Manufacturer": "Mulyyds", "ASIN": "B09PTQFBNT", "Country of Origin": "China"}, "brand": "Brand: Mulyyds", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Mulyyds", "full_description": "\ud83c\udf10Welcome to Mulyyds's shop,wishing you have a pleasant shopping !\u00a0\ud83d\udc49 Mulyyds Study Computer Desk Laptop PC Table Workstation For Home Office Description:\u00a0\u00a0\u00a0\u00a0 Material: MDF And Metal\u00a0 \u00a0 Product Dimensions: 43x19x27inch\u00a0 \u00a0 This Modern Computer Desk With Bookshelves Is Perfect For Your Home Office, Study And Room.\u00a0 \u00a0 For Added Convenience, The Top Of The Table Has An Open Shelf That Serves As A Shelf For Books And Other Necessities, Leaving Plenty Of Surface Space For The Laptop.\u00a0 \u00a0 A Computer Desk For Reading, Studying And Working. The Simple Design Makes Your Learning Space Or Workspace More Personal, And Its Simple Style Can Be Integrated Into A Variety Of Home Styles To Make Reading And Learning Fun For You And Your Family.\u00a0 \u00a0 Mdf And Metal Frame Legs Make This Table Super Durable And Durable. The Legs At The Bottom Enhance Stability And Balance.\u00a0 \u00a0 Easy To Clean And Easy To Maintain, Only Need Daily Cleaning And Maintenance.\ud83d\udc49Package Included:\u00a0\u00a0 \u00a0 1x Desk\u00a0 \u00a0 1x Installation Manual\ud83d\udc49Note:\u00a0\ud83d\udce2 Compare the detail sizes with yours, please allow 1-3CM(1 inch=2.54cm) differs due to manual measurement.\u00a0\ud83d\udce2Pictures may slightly vary from actual item due to lighting and monitor.\u00a0\ud83d\udce8If you receive damaged items or your item have anything wrong, please email us we will try our best to solve it.", "pricing": "$159.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Ad+uyb+pL.jpg", "https://m.media-amazon.com/images/I/41zZpcgLkNL.jpg", "https://m.media-amazon.com/images/I/516iioFS-YL.jpg", "https://m.media-amazon.com/images/I/517jEvi8qWL.jpg", "https://m.media-amazon.com/images/I/51GOUZDxcBL.jpg", "https://m.media-amazon.com/images/I/41jTDUvolGL.jpg", "https://m.media-amazon.com/images/I/21TtCTp7uYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Desks", "average_rating": "", "small_description": ["\ud83d\udcccDurable & Stable: This Computer Desk Is Constructed Of Premium Metal Frame And Mdf Desktop, Fully Painted Square Metal Tube And Waterproof Desktop Ensure Long Service Life Of This Desk; Solid Desk Can Easily Hold Up 120 Kg Weight, Sturdy Enough For Your Daily Use. ", "\ud83d\udcccModern Style & Ample Storage Shelves: The Computer Writing Desk Perfectly Combines The Mdf Board And The Steel Frame, With A Modern Simple Style. The Exquisite Drawer Can Store More Items To Keep The Desk Tidy, Providing Extra Storage Space, Offering Perfect Workstation For Your Work Or Study, Maximize Your Space. ", "\ud83d\udccc Perfect For All Occasions: This Desk Combines Artistic Inspiration With Modern Design. It Easily Complements Almost Any Home Or Office Decor.This Tablecan Be Placed In Your Home Study, Bedroom And Office To Play Itspractical Use Such As Serving As A Computer Desk, Office Work Station,Study Stable Or Writing Desk. ", "\ud83d\udcccEasy Assemble: This Computer Desk Is Easy To Assemble For Most People With Instruction, If You Have Questions Or Need Any Help.Please Feel Free To Contact us. ", "\ud83d\udccc[After-sale service]: If you encountered any problems of product quality, please email us .We will try our best to resolve the issues in 24H. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PTJVGDW/ref=twister_B09PTR1HV8?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$159.99", "price": 159.99, "image": "https://m.media-amazon.com/images/I/41Aj4ZtjEbL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$159.99", "price": 159.99, "image": "https://m.media-amazon.com/images/I/41Ad+uyb+pL.jpg"}], "Size": null}, "seller_id": "A1EEJZQ1MKPZMA", "seller_name": "Mulyyds(7-15-DAY-DELIVERY)", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PTQFBNT", "category": "garden", "query": "Drafting Tables", "page": 81, "small_description_old": "About this item \ud83d\udcccDurable & Stable: This Computer Desk Is Constructed Of Premium Metal Frame And Mdf Desktop, Fully Painted Square Metal Tube And Waterproof Desktop Ensure Long Service Life Of This Desk; Solid Desk Can Easily Hold Up 120 Kg Weight, Sturdy Enough For Your Daily Use. \ud83d\udcccModern Style & Ample Storage Shelves: The Computer Writing Desk Perfectly Combines The Mdf Board And The Steel Frame, With A Modern Simple Style. The Exquisite Drawer Can Store More Items To Keep The Desk Tidy, Providing Extra Storage Space, Offering Perfect Workstation For Your Work Or Study, Maximize Your Space. \ud83d\udccc Perfect For All Occasions: This Desk Combines Artistic Inspiration With Modern Design. It Easily Complements Almost Any Home Or Office Decor.This Tablecan Be Placed In Your Home Study, Bedroom And Office To Play Itspractical Use Such As Serving As A Computer Desk, Office Work Station,Study Stable Or Writing Desk. \ud83d\udcccEasy Assemble: This Computer Desk Is Easy To Assemble For Most People With Instruction, If You Have Questions Or Need Any Help.Please Feel Free To Contact us. \ud83d\udccc[After-sale service]: If you encountered any problems of product quality, please email us .We will try our best to resolve the issues in 24H."}, {"name": "VINLUZ Farmhouse Chandeliers Rectangle Black 5 Light Dining Room Lighting Fixtures Hanging, Kitchen Island Cage Pendant Lights Contemporary Modern Ceiling Light with Glass Shade Adjustable Rods", "product_information": {"Brand": "\u200eVINLUZ", "Manufacturer": "\u200eVINLUZ", "Part Number": "\u200e1811-5-BL", "Item Weight": "\u200e18.21 pounds", "Package Dimensions": "\u200e41 x 10 x 9.4 inches", "Item model number": "\u200e1811-5-BL", "Is Discontinued By Manufacturer": "\u200eNo", "Style": "\u200eContemporary", "Color": "\u200eBlack", "Shape": "\u200eLinear", "Material": "\u200eMetal", "Finish Types": "\u200eBlack", "Number of Lights": "\u200e5", "Voltage": "\u200e120 Volts", "Specific Uses": "\u200eIndoor use only", "Special Features": "\u200eDimmable", "Shade Color": "\u200eClear", "Shade Material": "\u200eGlass", "Light Direction": "\u200eDownlight", "Power Source": "\u200eAC", "Switch Installation Type": "\u200eCeiling Mount", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Type of Bulb": "\u200eCFL/LED/Incandecent/Halogen", "Wattage": "\u200e60 watts", "ASIN": "B07ZBCF88X", "Customer Reviews": {"ratings_count": 823, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#26,706 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #3 in Island Lights"], "Date First Available": "November 21, 2019"}, "brand": "Visit the VINLUZ Store", "brand_url": "https://www.amazon.com/stores/VINLUZ/page/61D452DB-ED86-4A9E-A950-D4B853E1224D?ref_=ast_bln", "full_description": "", "pricing": "$199.99", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31lwZttSAuL.jpg", "https://m.media-amazon.com/images/I/51Y0KJwpOTL.jpg", "https://m.media-amazon.com/images/I/41CVX-t1KAL.jpg", "https://m.media-amazon.com/images/I/41YLSfmsXsL.jpg", "https://m.media-amazon.com/images/I/518J+yz1EJL.jpg", "https://m.media-amazon.com/images/I/51xGdWD5flL.jpg", "https://m.media-amazon.com/images/I/819z0gfswrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Island Lights", "average_rating": 4.7, "small_description": ["\u2600Contemporary Design: This simple linear island pendant lighting with clear glass shade, unique designed to illuminate the heart of your kitchen, dining room or farm styled places. ", "\u2600Height Adjustable Stem and Easy Installed: freely to adjust the rod's length as your required,includes all mounting hardware for easy installation ", "\u2600Quality Service: We providing free glass shade replacement for u, if your glass shade broken, you could click on LightingPlus and then click on \"Ask a question\" to contact us the original manufacture quickly, any quality and skill problems,we will help u soon, such as some replacement parts and more. ", "\u2600Dimmable: fully dimmable when used with a dimmable bulb and compatible dimmer switch ", "\u2600Bulb Type: Requires 5 x E26 base bulbs(Max.60W). Bulb not included "], "total_reviews": 823, "total_answered_questions": 50, "model": "\u200e1811-5-BL", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$199.99", "price": 199.99, "image": "https://m.media-amazon.com/images/I/31lwZttSAuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08LDHNVGG/ref=twister_B09SHK9RNV?_encoding=UTF8&psc=1", "value": "Black and Brass", "price_string": "$199.99", "price": 199.99, "image": "https://m.media-amazon.com/images/I/31goR6hhQtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B081YLTMR2/ref=twister_B09SHK9RNV?_encoding=UTF8&psc=1", "value": "Brushed Nickel", "price_string": "$219.99", "price": 219.99, "image": "https://m.media-amazon.com/images/I/31WgkkAAnHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B083NFLYRD/ref=twister_B09SHK9RNV?_encoding=UTF8&psc=1", "value": "Chrome", "price_string": "$219.99", "price": 219.99, "image": "https://m.media-amazon.com/images/I/3133tSxFpyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZCMT1XQ/ref=twister_B09SHK9RNV?_encoding=UTF8&psc=1", "value": "Oil-rubbed Bronze", "price_string": "$199.99", "price": 199.99, "image": "https://m.media-amazon.com/images/I/319Q4pafveL.jpg"}]}, "seller_id": "A37493FYKY9KSH", "seller_name": "LightingPlus", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B07ZBCF88X", "category": "garden", "query": "Dining Tables", "page": 51, "small_description_old": "About this item \u2600Contemporary Design: This simple linear island pendant lighting with clear glass shade, unique designed to illuminate the heart of your kitchen, dining room or farm styled places. \u2600Height Adjustable Stem and Easy Installed: freely to adjust the rod's length as your required,includes all mounting hardware for easy installation \u2600Quality Service: We providing free glass shade replacement for u, if your glass shade broken, you could click on LightingPlus and then click on \"Ask a question\" to contact us the original manufacture quickly, any quality and skill problems,we will help u soon, such as some replacement parts and more. \u2600Dimmable: fully dimmable when used with a dimmable bulb and compatible dimmer switch \u2600Bulb Type: Requires 5 x E26 base bulbs(Max.60W). Bulb not included \n \u203a See more product details"}, {"name": "Got2B Phenomenal Texturizing Clay 3.5 Ounce", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.38 x 2.38 x 3.75 inches; 3.53 Ounces", "Item model number\n \u200f": "\u200e\n 2399120", "UPC\n \u200f": "\u200e\n 052336919006", "Manufacturer\n \u200f": "\u200e\n Got 2B", "ASIN\n \u200f": "\u200e\n B07MVN1K94", "Best Sellers Rank": "#12,300 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#14 in Hair Styling Clays", "#14 in Hair Styling Clays": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: GOT 2B", "brand_url": "https://www.amazon.com/GOT-2B/b/ref=bl_dp_s_web_7297720011?ie=UTF8&node=7297720011&field-lbr_brands_browse-bin=GOT+2B", "full_description": "It provides the structured look you want with a matte finish and no stickiness.", "pricing": "$6.35", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/511zuLDiAGL.jpg", "https://m.media-amazon.com/images/I/51NglEsk3UL.jpg", "https://m.media-amazon.com/images/I/511m-fRrOsL.jpg", "https://m.media-amazon.com/images/I/516dxpco7+L.jpg", "https://m.media-amazon.com/images/I/51Z-3Cxy0NL.jpg", "https://m.media-amazon.com/images/I/51aKmBITGML.jpg", "https://m.media-amazon.com/images/I/51vEgfIoimL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Styling Products \u203a Clays", "average_rating": 4.5, "small_description": ["No stickiness. ", "Matte finish. ", "Hold level 5. "], "total_reviews": 266, "total_answered_questions": "", "customization_options": "", "seller_id": "A2Y1Q7Q2Q103JQ", "seller_name": "Beachbeautybar2", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07MVN1K94", "category": "beauty", "query": "Styling Products", "page": 18, "small_description_old": "About this item No stickiness. Matte finish. Hold level 5."}, {"name": "Reko Vanilla Pizzelle - 6 Pack", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 14.5 x 14 x 13.75 inches; 7 Ounces", "UPC\n \u200f": "\u200e\n 063054401124 653718330596 715785233856", "Manufacturer\n \u200f": "\u200e\n Reko", "ASIN\n \u200f": "\u200e\n B07PGQKDFD", "Best Sellers Rank": "#111,488 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#2,635 in Grocery Cookies", "#2,635 in Grocery Cookies": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Reko", "brand_url": "https://www.amazon.com/Reko/b/ref=bl_dp_s_web_19230431011?ie=UTF8&node=19230431011&field-lbr_brands_browse-bin=Reko", "full_description": "", "pricing": "$42.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51Z6P4gA6wL.jpg", "https://m.media-amazon.com/images/I/414TX1BQQmL.jpg", "https://m.media-amazon.com/images/I/517A-ftyP3L.jpg", "https://m.media-amazon.com/images/I/517HN+nCOZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cookies", "average_rating": 4.4, "small_description": ["Delicious Italian Stlye Pizzelle Cookies ", "Certified Kosher ", "7oz * Pack of 6 ", "No Preservatives & No Trans Fats ", "**NOTE** Pizzelles are extremely FRAGILE and subject to MINOR DAMAGES. We'll be packing with protective materials as much as possible but this does not guarantee 100% all cookies will be delivered in a perfect condition. "], "total_reviews": 29, "total_answered_questions": "", "customization_options": "", "seller_id": "A1XEZN6ZMRTDHI", "seller_name": "VIVIWOODS", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07PGQKDFD", "category": "grocery", "query": "Grocery Cookies", "page": 117, "small_description_old": "About this item Delicious Italian Stlye Pizzelle Cookies Certified Kosher 7oz * Pack of 6 No Preservatives & No Trans Fats **NOTE** Pizzelles are extremely FRAGILE and subject to MINOR DAMAGES. We'll be packing with protective materials as much as possible but this does not guarantee 100% all cookies will be delivered in a perfect condition."}, {"name": "Mendove Sexy Men's Smooth Bikini Briefs Airplane Underwear", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 6.9 x 6.8 x 0.6 inches; 1.59 Ounces", "Item model number\n \u200f": "\u200e\n MD06HJK-Army Green-M", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 31, 2017", "ASIN\n \u200f": "\u200e\n B074FFT2HZ", "Best Sellers Rank": "#447,813 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#50 in Men's Bikini Underwear", "#50 in Men's Bikini Underwear": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Mendove Store", "brand_url": "https://www.amazon.com/stores/Mendove/page/CD7456E9-7DD9-4571-83C2-3BFF7AEE44CB?ref_=ast_bln", "full_description": "Please refer to the size measurement before ordering.Thank you for your visit.We use the USPS Postal Service to ship your order.You can easily get estimated delivery date when you place the order.We believe you will worth it. So please wait for it patiently!If you have any question about item's material, size, style, delivery date, please feel free to contact us. We will do our best to serve you.", "pricing": "$13.59", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41EMdDJhV6L.jpg", "https://m.media-amazon.com/images/I/41WBDb8vj3L.jpg", "https://m.media-amazon.com/images/I/41TVwjx+ilL.jpg", "https://m.media-amazon.com/images/I/51LbXMD8BOL.jpg", "https://m.media-amazon.com/images/I/41udHbNQWqL.jpg", "https://m.media-amazon.com/images/I/41fsYFbon0L.jpg", "https://m.media-amazon.com/images/I/51+W5UEdlvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a Bikinis", "average_rating": 3.9, "small_description": ["88% Nylon, 12% Spandex ", "Machine Wash ", "Asian size is smaller than US/EU/UK size, for perfect fit, please choose the proper size. ", "Lightweight, quick-dry, soft and comfortable, breathable farbic. ", "Bulge pouch design, snug-fitting and charming. ", "Great and very comfortable fit, great for lounging around or wearing under everyday clothes. ", "Open sheath sleeve design, hot and sexy, show your male charming "], "total_reviews": 179, "total_answered_questions": 4, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B074FQV6RF"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B074FMTQNC"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B074FH8QFR"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B074FFT2HZ/ref=twister_B074FJBRF4", "value": "Army Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41b9JZr3aBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B074FNF9T4/ref=twister_B074FJBRF4", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41KGPZdWJVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B074FNY2WL/ref=twister_B074FJBRF4", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41iTKdmn4qL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B074FP2VW2/ref=twister_B074FJBRF4", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31uB-M6B-xL.jpg"}, {"is_selected": true, "url": null, "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EMdDJhV6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07GF8PVWY/ref=twister_B074FJBRF4", "value": "Nude", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IW2exHQ2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B074FC2KNG/ref=twister_B074FJBRF4", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31JymdUqWFL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B074FMTQNC", "category": "fashion", "query": "Men's Underwear", "page": 48, "small_description_old": "Asian size is smaller than US/EU/UK size, for perfect fit, please choose the proper size. Lightweight, quick-dry, soft and comfortable, breathable farbic. Bulge pouch design, snug-fitting and charming. Great and very comfortable fit, great for lounging around or wearing under everyday clothes. Open sheath sleeve design, hot and sexy, show your male charming"}, {"name": "14 Day Plain Black Candle", "product_information": {"Item Weight": "5 pounds", "Manufacturer": "The Original Candle Company", "ASIN": "B017L3XL54", "Customer Reviews": {"ratings_count": 2, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#2,898,792 in Home & Kitchen (See Top 100 in Home & Kitchen) #40,362 in Candles"]}, "brand": "Brand: The Original Candle Company", "brand_url": "https://www.amazon.com/The-Original-Candle-Company/b/ref=bl_dp_s_web_10548366011?ie=UTF8&node=10548366011&field-lbr_brands_browse-bin=The+Original+Candle+Company", "full_description": "Burn our 14 Day Plain Black candle for separation, to break a spell, or to banish evil.", "pricing": "$29.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41+eM2uqmeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Candles & Holders \u203a Candles", "average_rating": 5, "small_description": ["This candle will burn for approximately 240 hours ", "4\" Wide and 9\" Tall ", "100% Paraffin Wax "], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A3EKKMJAPENUME", "seller_name": "Original Products Botanica", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B017L3XL54", "category": "garden", "query": "Candles", "page": 381, "small_description_old": "About this item\n \nThis candle will burn for approximately 240 hours 4\" Wide and 9\" Tall 100% Paraffin Wax"}, {"name": "myhehthw Women's High Waisted Jeans for Women Distressed Ripped Jeans Slim Fit Butt Lifting Skinny Stretch Jeans Trousers", "product_information": {"Item model number\n \u200f": "\u200e\n women's jeans", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 28, 2021", "Manufacturer\n \u200f": "\u200e\n myhehthw", "ASIN\n \u200f": "\u200e\n B09PBNZLNT", "": ""}, "brand": "Visit the myhehthw Store", "brand_url": "https://www.amazon.com/stores/myhehthw/page/B4B40CE4-3538-40F3-AC61-F7153F02A2B3?ref_=ast_bln", "full_description": "\u2606Everyone is welcome to buy at Our shop, I wish you a happy shopping\u2606 Feature: \u27641. Made of soft and stretchy denim cotton fabric, breathable to wear.even after repeated wearing, this denim stays true to original form. \u27642. Matching: It match well with blouse, tank top, crop top, shirt, sweater, jackets, etc. It is comfortable and versatile to wear and suits for most occasions. \u27643. It is comfortable and versatile to wear and suits for most occasions such as casual, school, office, shopping, going out, vacation and so on. \u27644. You can wear these jeans to work for that business casual day at work and have a seamless transition to happy hour with your friends at night. Product information: \u2764Gender: Women/ Ladies/ Girls \u2764Seasons: autumn, winter, spring, summer \u2764Occasions: Perfect for casual daily, school, work, office, party, night out, club, dating, dinner, photo shoot, street, shopping, travel, outdoor, birthday, beach, friends matching outfits, gift, present for daughter/wife, Christmas, New Year, lounge. \u2764Material: Cotton, Polyester, Spandex \u2764Style: elegant, classic, casual, feminine and fashionable. \u2764Thickness: standard \u2764Washing care: machine washable, no bleaching/ironing, hanging or drying \u2606 Give you the best Blessings\u2606 Q: Size selection? A: Please choose according to the picture size table! If the size is not suitable, you can change it! If you are not sure, it is recommended that you buy a size one size larger than usual. Q: How about the model and quality? A: The pattern is printed clearly, and the product quality is comfortable and soft! Q: How long is the logistics time? A: Usually 2-3 weeks, it can be expedited! Q: Are there any additional benefits? A: You can consult the merchant, and the merchant will give you a satisfactory answer! So many advantages! Welcome to the clothing store!", "pricing": "$22.99$25.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31Qo5LzPPjL.jpg", "https://m.media-amazon.com/images/I/31kMUm+w4SL.jpg", "https://m.media-amazon.com/images/I/51gFYtPxmnL.jpg", "https://m.media-amazon.com/images/I/41yHt+Bdy8L.jpg", "https://m.media-amazon.com/images/I/31EYvWfDe+L.jpg", "https://m.media-amazon.com/images/I/31Mf1kqjVzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Jeans", "average_rating": "", "small_description": ["75% Cotton, 20% Polyester, 5% Spandex ", "Made in the USA or Imported ", "\u3010Material\u3011: 75%Cotton+20%Polyester+5%Spandex. Made of soft denim fabric, even after repeated wearing, this denim stays true to original form. carefully selects super elastic farbic so that you will feel free in all positions when sitting or squatting. ", "Button closure ", "\u3010Care Instructions\u3011: Hand wash or gentle machine wash in cold water / do not bleach / line dry.That will increase the durability of your clothes. ", "\u3010Occasions\u3011: The fashion jeans is perfect choice for your daily wear, outdoor activities, shopping, dates and any other occasions in spring, summer, fall and winter. ", "\u3010Size\u3011: Due to manual measurement, please allow a certain error in the size of the clothes. There maybe 0.4-0.8 inch deviation in different sizes, locations and stretch of fabrics. , \u3010Satisfaction Priority\u3011: We will do our best to ensure the interests of each customer shopping in this store. If you have any questions or needs, please feedback to us in time., ripped jeans for teen girls y2k jeans jeans for women stretch straight leg jeans for women fleece lined jeans women plus size jeans skinny jeans boyfriend jeans black ripped jeans girls jeans jeans women fleece lined jeans men black ripped jeans women plus size jeans for stretch jeans for women stretchy jeans for women distressed jeans for women white jeans women boot cut for women jeans high waisted jeans womens skinny jeans pull on jeans for women, women's ripped skinny jeans hight waisted stretch distressed denim jeans for women juniors girls pants women winter jeans high waist fleece lined thick skinny warm thermal fashion denim pants skinny jeans for women stretchy high waist ripped colored denim pants butt lift sexy slim leggings women's classic denim jeans wide leg elastic high waist drawstring pants with pockets plus size womens bootcut jeans | western regular fit stretch boot cut jean | stylish flare bell bottom slim bootcut jeans, wide leg jeans for women women's jeans bell bottom jeans womens belts for jeans jeans for women stretch straight leg jeans for women y2k jeans skinny jeans black ripped jeans women ripped jeans for teen girls plus size jeans for women distressed jeans for women boyfriend jeans fleece lined jeans women stretch jeans for women jeans women white jeans women black skinny jeans women stretchy jeans for women, high waisted skinny jeans for women plus size bell bottom jeans for women colored jeans for women bell bottom jeans for girls leather jeans for women womens fleece lined jeans black stretch jeans for women straight jeans for women cargo jeans for women ripped jeans for girls distressed jean jacket women mid rise jeans for women work jeans high waisted bell bottom jeans for women plus size maternity jeans jean jumpsuit women jeans high waist ripped black jeans for women, ripped baggy jeans winter jeans for women plus size skinny jeans for women ripped jeans for women high waist low rise skinny jeans for women high waist jeans high rise skinny jeans for women womens mom jeans flared jeans womens distressed jeanswomen skinny jeans low rise bootcut jeans for women black maternity jeans maternity skinny jeans wide leg jeans for women high waist white ripped jeans 90s jeans for women printed jeans women's belts for jeans women\u2019s jeans"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PBNZLNT"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PBNG478"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PBNT6WJ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PBP2QC7"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09PBPZ24Z"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PBPZ24Z", "category": "fashion", "query": "Women's Jeans", "page": 54, "small_description_old": "75% Cotton, 20% Polyester, 5% Spandex Made in the USA or Imported \u3010Material\u3011: 75%Cotton+20%Polyester+5%Spandex. Made of soft denim fabric, even after repeated wearing, this denim stays true to original form. carefully selects super elastic farbic so that you will feel free in all positions when sitting or squatting. Button closure \u3010Care Instructions\u3011: Hand wash or gentle machine wash in cold water / do not bleach / line dry.That will increase the durability of your clothes. \u3010Occasions\u3011: The fashion jeans is perfect choice for your daily wear, outdoor activities, shopping, dates and any other occasions in spring, summer, fall and winter. \u3010Size\u3011: Due to manual measurement, please allow a certain error in the size of the clothes. There maybe 0.4-0.8 inch deviation in different sizes, locations and stretch of fabrics. \n \u3010Satisfaction Priority\u3011: We will do our best to ensure the interests of each customer shopping in this store. If you have any questions or needs, please feedback to us in time.ripped jeans for teen girls y2k jeans jeans for women stretch straight leg jeans for women fleece lined jeans women plus size jeans skinny jeans boyfriend jeans black ripped jeans girls jeans jeans women fleece lined jeans men black ripped jeans women plus size jeans for stretch jeans for women stretchy jeans for women distressed jeans for women white jeans women boot cut for women jeans high waisted jeans womens skinny jeans pull on jeans for womenwomen's ripped skinny jeans hight waisted stretch distressed denim jeans for women juniors girls pants women winter jeans high waist fleece lined thick skinny warm thermal fashion denim pants skinny jeans for women stretchy high waist ripped colored denim pants butt lift sexy slim leggings women's classic denim jeans wide leg elastic high waist drawstring pants with pockets plus size womens bootcut jeans | western regular fit stretch boot cut jean | stylish flare bell bottom slim bootcut jeanswide leg jeans for women women's jeans bell bottom jeans womens belts for jeans jeans for women stretch straight leg jeans for women y2k jeans skinny jeans black ripped jeans women ripped jeans for teen girls plus size jeans for women distressed jeans for women boyfriend jeans fleece lined jeans women stretch jeans for women jeans women white jeans women black skinny jeans women stretchy jeans for womenhigh waisted skinny jeans for women plus size bell bottom jeans for women colored jeans for women bell bottom jeans for girls leather jeans for women womens fleece lined jeans black stretch jeans for women straight jeans for women cargo jeans for women ripped jeans for girls distressed jean jacket women mid rise jeans for women work jeans high waisted bell bottom jeans for women plus size maternity jeans jean jumpsuit women jeans high waist ripped black jeans for womenripped baggy jeans winter jeans for women plus size skinny jeans for women ripped jeans for women high waist low rise skinny jeans for women high waist jeans high rise skinny jeans for women womens mom jeans flared jeans womens distressed jeanswomen skinny jeans low rise bootcut jeans for women black maternity jeans maternity skinny jeans wide leg jeans for women high waist white ripped jeans 90s jeans for women printed jeans women's belts for jeans women\u2019s jeansShow more"}, {"name": "Hollywood Vanity Mirror with Lights, Lighted Makeup Mirror with 14 Led Bulbs Dimmable 3 Color Setting, Plug and Use Cosmetic Mirror for Vanity Top, Illuminated Light up Beauty Mirror White", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 1 x 19.6 x 16.5 inches; 10 Pounds", "Item model number\n \u200f": "\u200e\n JYD-HM-002", "UPC\n \u200f": "\u200e\n 663577429256", "Manufacturer\n \u200f": "\u200e\n FASCINATE", "ASIN\n \u200f": "\u200e\n B08DNGCK67", "Best Sellers Rank": "#448,361 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,036 in Personal Makeup Mirrors", "#2,036 in Personal Makeup Mirrors": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the FASCINATE Store", "brand_url": "https://www.amazon.com/stores/FASCINATE/page/C5444CFF-7CDC-49C3-B102-62C0B6FEE516?ref_=ast_bln", "full_description": "", "pricing": "$119.99", "list_price": "", "availability_quantity": 12, "availability_status": "Only 12 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41XEsRsgYbL.jpg", "https://m.media-amazon.com/images/I/51c7mzVM8TL.jpg", "https://m.media-amazon.com/images/I/51wz+kPWebL.jpg", "https://m.media-amazon.com/images/I/517bjVnu2QL.jpg", "https://m.media-amazon.com/images/I/41lDFOCAdML.jpg", "https://m.media-amazon.com/images/I/41nLmAwyeoL.jpg", "https://m.media-amazon.com/images/I/51ROkaZrKSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Mirrors \u203a Makeup Mirrors", "average_rating": 4.4, "small_description": ["[Large Hollywood style mirror] The whole size is 16.5 \u201cH * 19.6\u201d L (51 cm x 42cm). The makeup vanity mirror with 14 dimmable led bulbs, makes your everyday makeup application pleasing though in poor lit area. Lighted vanity mirror size is 15.7 H * 19.6 L. ", "[LED illuminated Mirror with 3 Color Lights] The vanity tabletop mirror offers bright white, natural lights and warm white. You can apply light or heavy makeup for all occasions perfectly, warm white for makeup of parties; natural lights for outdoor activities, bright white for your commute and work. Lighting matters to a perfect makeup. You won\u2019t regret with this 3 color Hollywood light up mirror. ", "[Plug and Use] The Hollywood lighted vanity mirror is installation free. All you need to do is plug it with included US plug and touch to turn on, you will enjoy the beautiful lights for your makeup on your vanity top. ", "[Touch Control Lighted Mirror] Smart touch middle button to turn on/off beauty mirror, tap left button to choose bright white, natural lights and warm white, hold the right button to adjust brightness. All 3 color temperatures are dimmable. ", "[Perfect Gift for Women on Special Days] The Hollywood style lighted vanity mirror is perfect for makeup and dressing. Idea gift for ladies on birthday, Valentines\u2019 day, Mothers\u2019 day, Christmas, Thanksgiving day. The mirror is fragile though we have packed it well. It is hard to control during transit. Please feel free to contact us if there is any problem. You will get response in 24 hours. "], "total_reviews": 36, "total_answered_questions": 22, "customization_options": "", "seller_id": "A1RQF4MTE46TO3", "seller_name": "Fascinate Mirror", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08DNGCK67", "category": "beauty", "query": "Mirrors", "page": 66, "small_description_old": "About this item [Large Hollywood style mirror] The whole size is 16.5 \u201cH * 19.6\u201d L (51 cm x 42cm). The makeup vanity mirror with 14 dimmable led bulbs, makes your everyday makeup application pleasing though in poor lit area. Lighted vanity mirror size is 15.7 H * 19.6 L. [LED illuminated Mirror with 3 Color Lights] The vanity tabletop mirror offers bright white, natural lights and warm white. You can apply light or heavy makeup for all occasions perfectly, warm white for makeup of parties; natural lights for outdoor activities, bright white for your commute and work. Lighting matters to a perfect makeup. You won\u2019t regret with this 3 color Hollywood light up mirror. [Plug and Use] The Hollywood lighted vanity mirror is installation free. All you need to do is plug it with included US plug and touch to turn on, you will enjoy the beautiful lights for your makeup on your vanity top. [Touch Control Lighted Mirror] Smart touch middle button to turn on/off beauty mirror, tap left button to choose bright white, natural lights and warm white, hold the right button to adjust brightness. All 3 color temperatures are dimmable. [Perfect Gift for Women on Special Days] The Hollywood style lighted vanity mirror is perfect for makeup and dressing. Idea gift for ladies on birthday, Valentines\u2019 day, Mothers\u2019 day, Christmas, Thanksgiving day. The mirror is fragile though we have packed it well. It is hard to control during transit. Please feel free to contact us if there is any problem. You will get response in 24 hours."}, {"name": "LAJA IMPORTS MOUSTACHE TRIMMER FOR MEN,NOSE HAIR SCISSORS,CURVED AND ROUNDED FACIAL HAIR SCISSORS - MOUSTACHE SCISSOR, BEARD TRIMMING SCISSORS BEARD EYEBROW TRIMMER SCISSORS STAINLESS STEEL SET", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Manufacturer\n \u200f": "\u200e\n LAJA IMPORTS\u00ae", "ASIN\n \u200f": "\u200e\n B07CYS9J9N", "Best Sellers Rank": "#1,066,802 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,454 in Nose & Ear Hair Trimmers", "#1,454 in Nose & Ear Hair Trimmers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: LAJA IMPORTS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=LAJA+IMPORTS", "full_description": "2 PACK NOSE HAIR SCISSORSTWO PAIRS OF SCISSORS FOR ALL YOUR FACIAL HAIR GROOMING NEEDS. PROFESSIONAL QUALITY SCISSORS FOR YOUR BEARD OR MUSTACHE, PLUS ROUND-TIPPED SCISSORS TO SAFELY TRIM EAR, NOSE AND EYEBROW HAIRS. KEEP YOURSELF LOOKING NEAT AND SHARP WITH THESE TOP-QUALITY PRECISION NOSE HAIR SCISSORS. NOSE HAIR SCISSORS BEARD EYEBROW TRIMMER SCISSORS STAINLESS STEEL SET", "pricing": "$8.29", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31zVu4Q8vSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Men's \u203a Nose & Ear Hair Trimmers", "average_rating": 5, "small_description": ["1 PAIRS OF SCISSORS FOR ALL YOUR FACIAL HAIR GROOMING NEEDS. PROFESSIONAL QUALITY SCISSORS FOR YOUR BEARD OR MUSTACHE, PLUS ROUND-TIPPED SCISSORS TO SAFELY TRIM EAR, NOSE AND EYEBROW HAIRS. KEEP YOURSELF LOOKING NEAT AND SHARP WITH THESE TOP-QUALITY PRECISION NOSE HAIR SCISSORS. ", "IT SIMPLE AND COMFORTABLE TO USE; AN EXCELLENT PAIR OF SCISSORS TO TRAVEL WITH ", "PRECISE AND STURDY, WITH FULL SHARP EDGE CONTACT, PRODUCED German GRADE STAINLESS STEEL THAT PREVENTS RUST AND STAIN ", "MADE BY LAJA IMPORTS ", "BUY THE BEST FROM LAJA IMPORTS "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A3O9OAH5BNTR3B", "seller_name": "LAJA IMPORTS", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07CYS9J9N", "category": "beauty", "query": "Foot, Hand & Nail Care", "page": 134, "small_description_old": "About this item 1 PAIRS OF SCISSORS FOR ALL YOUR FACIAL HAIR GROOMING NEEDS. PROFESSIONAL QUALITY SCISSORS FOR YOUR BEARD OR MUSTACHE, PLUS ROUND-TIPPED SCISSORS TO SAFELY TRIM EAR, NOSE AND EYEBROW HAIRS. KEEP YOURSELF LOOKING NEAT AND SHARP WITH THESE TOP-QUALITY PRECISION NOSE HAIR SCISSORS. IT SIMPLE AND COMFORTABLE TO USE; AN EXCELLENT PAIR OF SCISSORS TO TRAVEL WITH PRECISE AND STURDY, WITH FULL SHARP EDGE CONTACT, PRODUCED German GRADE STAINLESS STEEL THAT PREVENTS RUST AND STAIN MADE BY LAJA IMPORTS BUY THE BEST FROM LAJA IMPORTS"}, {"name": "SheIn Women's Sexy Cut Out One Shoulder Mini Bodycon Dress Drawstring Slip Dresses with Thong", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 14 x 10.5 x 0.5 inches; 5.93 Ounces", "Item model number\n \u200f": "\u200e\n 06-si2109081257556168-S", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 27, 2021", "ASIN\n \u200f": "\u200e\n B09N7164MD", "Best Sellers Rank": "#1,045,741 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#5,078 in Women's Club & Night Out Dresses", "#5,078 in Women's Club & Night Out Dresses": ""}, "brand": "Visit the SheIn Store", "brand_url": "https://www.amazon.com/stores/SheIn/page/D8D952E3-6804-4133-9EE2-F716733F2E2F?ref_=ast_bln", "full_description": "Size Chart: S: Top Length: 29.9\", Bottoms Length: 7.9\", Bust: 28.0\", Waist Size: 26.8-26-37.8\"/ M: Top Length: 30.7\", Bottoms Length: 8.3\", Bust: 29.5\", Waist Size: 28.3-27.6-39.4\"/ L: Top Length: 31.5\", Bottoms Length: 8.7\", Bust: 31.1\", Waist Size: 29.9-29.1-40.9\"/ XL: Top Length: 32.3\", Bottoms Length: 9.1\", Bust: 32.7\", Waist Size: 31.5-30.7-42.5\"/ XXL: Top Length: 33.1\", Bottoms Length: 9.4\", Bust: 34.3\", Waist Size: 33.1-32.3-44.1\"/", "pricing": "$20.99$23.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41w9HzqJ+NL.jpg", "https://m.media-amazon.com/images/I/315U9iuzXZL.jpg", "https://m.media-amazon.com/images/I/31VK0-8V+aL.jpg", "https://m.media-amazon.com/images/I/31IqM1c0mCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Dresses \u203a Club & Night Out", "average_rating": "", "small_description": ["85% Polyester, 15% Acrylic ", "Pull On closure ", "Made of soft and medium stretchy material, keeping you easeful while sleeping at night, that's smooth against the skin so you can enjoy superior comfort ", "The chemise babydoll dress features cutout design, one shoulder, drawstring side. Matching with sexy thong fully shows your charming body ", "This sexy nightgown is great for your girlfriend, wife as a birthday gift or anniversary gift, and she will surprise and love for it ", "Perfect for wedding night, lingerie party, honeymoon, Valentine's Days, anniversary, bedroom and every special moment ", "Please kindly refer to the Item Description below for Size Details "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09N7164MD"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09N6MQ5WB"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09N6Y4S4L"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09N6RYH8T"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09N6WLYY1"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41w9HzqJ+NL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NY53T1H/ref=twister_B09N722SFG", "value": "Pure Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41CW3kqx-rL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09N6WLYY1", "category": "fashion", "query": "Women's Dresses", "page": 111, "small_description_old": "Made of soft and medium stretchy material, keeping you easeful while sleeping at night, that's smooth against the skin so you can enjoy superior comfort The chemise babydoll dress features cutout design, one shoulder, drawstring side. Matching with sexy thong fully shows your charming body This sexy nightgown is great for your girlfriend, wife as a birthday gift or anniversary gift, and she will surprise and love for it Perfect for wedding night, lingerie party, honeymoon, Valentine's Days, anniversary, bedroom and every special moment Please kindly refer to the Item Description below for Size Details"}, {"name": "JYMYGS VR Headset, Universal Virtual Reality Goggles 3D VR Glasses for IMAX Movies&VR Games, for iPhone 12/11/X/XR, Samsung A71/A50/S20 FE/S10, Xiaomi, Huawei, etc.", "product_information": {"Package Dimensions": "7.48 x 5.91 x 3.94 inches", "Item Weight": "2.2 pounds", "ASIN": "B09DPDGYRK", "Date First Available": "August 26, 2021", "Department": "Unisex-adult", "Manufacturer": "JYMYGS"}, "brand": "Brand: JYMYGS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JYMYGS", "full_description": "Product weight: 415gApplicable age: over 6 years oldSuitable for myopia: below 600 degrees\u25c6 Tips:-Due to different lighting conditions and display methods, there may be color differences, please refer to the actual product.-The product size is manually measured, there may be a gap with the actual size, the error is about 0.5-1cm is normal.-If you encounter any problems, please contact us in time, when you provide it to us, we will provide customers with 24-hour quality service.", "pricing": "$54.90", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/413zUsA4wWL.jpg", "https://m.media-amazon.com/images/I/41oFG60etBL.jpg", "https://m.media-amazon.com/images/I/41TnC118AqL.jpg", "https://m.media-amazon.com/images/I/51k8--o7TUL.jpg", "https://m.media-amazon.com/images/I/5164wn9r7zL.jpg", "https://m.media-amazon.com/images/I/41p37bcXFLL.jpg", "https://m.media-amazon.com/images/I/41pIga2ngyL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Virtual Reality (VR) Headsets", "average_rating": "", "small_description": ["\u2663 HD goggles- We insist on using lenses with a light transmittance of 94% or more, and use anti-reflection and anti-blue light coated lenses to prevent eye fatigue when using headphones. ", "\u2663 Support wearing glasses - Suitable for the nearsighted people with myopia under 600 degree. Also we designed the pupil distance button with a larger range to optimize your visual experience. ", "\u2663 Strong compatibility - VR goggles are compatible with iPhone ios, X, XR, XS, 8, 8 plus, 9, 9 plus, 10, 7, 7 plus, 6, 6s, 6s plus, 6 plus, 6, 5, 5 plus, 5c, 5s, SE, etc. Also compatible with Samsung Android Galaxy s8, s7, j3, s7 edge, s6, s6 edge, note5, a8+, note 3, note 4, note 5, note 7, note 8, note 9, s5 s6, s7, s8, s8 plus, s9, s9 plus, s10, s10 plus. ", "\u2663 Ergonomic Design - This adjustable T-shaped strap is made of lightweight material, which can decrease the pressure around your eyes, face and on your head, providing you more comfortable feeling. ", "\u2663 Download 3D Video Apps -- Works with over 500+ iOS/Android virtual reality apps. This VR can't automatically transform images to 3D format, you need to download APPs with 3D format video or watch panorama videos on YouTube, QR code, Apple Store or Google Play. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3VLB8GUWHMAU0", "seller_name": "taiyuanshiyijiamaoyiyouxianzerengongsi", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09DPDGYRK", "category": "electronics", "query": "Virtual Reality", "page": 108, "small_description_old": "\u2663 HD goggles- We insist on using lenses with a light transmittance of 94% or more, and use anti-reflection and anti-blue light coated lenses to prevent eye fatigue when using headphones. \u2663 Support wearing glasses - Suitable for the nearsighted people with myopia under 600 degree. Also we designed the pupil distance button with a larger range to optimize your visual experience. \u2663 Strong compatibility - VR goggles are compatible with iPhone ios, X, XR, XS, 8, 8 plus, 9, 9 plus, 10, 7, 7 plus, 6, 6s, 6s plus, 6 plus, 6, 5, 5 plus, 5c, 5s, SE, etc. Also compatible with Samsung Android Galaxy s8, s7, j3, s7 edge, s6, s6 edge, note5, a8+, note 3, note 4, note 5, note 7, note 8, note 9, s5 s6, s7, s8, s8 plus, s9, s9 plus, s10, s10 plus. \u2663 Ergonomic Design - This adjustable T-shaped strap is made of lightweight material, which can decrease the pressure around your eyes, face and on your head, providing you more comfortable feeling. \u2663 Download 3D Video Apps -- Works with over 500+ iOS/Android virtual reality apps. This VR can't automatically transform images to 3D format, you need to download APPs with 3D format video or watch panorama videos on YouTube, QR code, Apple Store or Google Play."}, {"name": "Pidy 3.25\" Puff Pastry Quiche Shells - 8ct Pack", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.82 x 4.41 x 4.25 inches; 9.91 Ounces", "UPC\n \u200f": "\u200e\n 759170916405", "Manufacturer\n \u200f": "\u200e\n Pidy", "ASIN\n \u200f": "\u200e\n B07YL7L9BF", "Best Sellers Rank": "#168,670 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#10 in Pastry Shells & Crusts", "#10 in Pastry Shells & Crusts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Creative Gourmand", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Creative+Gourmand", "full_description": "", "pricing": "$17.75", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41S5jaEwbKL.jpg", "https://m.media-amazon.com/images/I/31QYS-f9sCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Pastry Shells & Crusts", "average_rating": 3.4, "small_description": ["Delicious Pidy 3.25\" Puff Pastry Quiche Shells! ", "The start to your creative ideas! ", "Professional product repackaged for use at home! "], "total_reviews": 26, "total_answered_questions": "", "customization_options": "", "seller_id": "A1QQFVQTVOLZFS", "seller_name": "Creative Gourmand LLC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07YL7L9BF", "category": "grocery", "query": "Frozen", "page": 321, "small_description_old": "About this item Delicious Pidy 3.25\" Puff Pastry Quiche Shells! The start to your creative ideas! Professional product repackaged for use at home!"}, {"name": "Messy Bun Scrunchie Hair Bun Extensions Wavy Curly Messy Donut Hairpieces Synthetic Donut Updo Hair Pieces for Women and Girls (black brown)", "product_information": {"Manufacturer\n \u200f": "\u200e\n Fausga", "ASIN\n \u200f": "\u200e\n B09QMJ5KQH", "": ""}, "brand": "Brand: Fausga", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Fausga", "full_description": "100% brand new and high qualityhigh temperature silkProperty: Stocked,\u00a0 Environmentally FriendlySize: 13cmUnique design with high qualityA small amount of hair loss is normal During Wearing Wig. There is 1 ~ 2cm error because munual measurement Posted by horizontal.Please kindly understand the color shading due to Shooting1Pc Hair Ring Bun", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51gLSOY480L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Hairpieces", "average_rating": "", "small_description": ["Occasions: 2022 Fashion wigs can be used all year round.designed for cosplay, costume party, carnival, halloween, fashion or just for fun.-----\ud83c\udf3b\ud83c\udf3b human hair synthetic lace front wigs full lace wigs short wigs for black women wigs for women human hair lace front wigs human hair with baby hair braided wigs curly wigs for black women lace wig wavy natural resistant long color air synthetic.Wigs lace front wigs human hair wigs for women wigs for black women full lace human hai ", "About Shipping: Shipped about 10-18 Days To Delivered----\ud83c\udf3b\ud83c\udf3bfashion wigs with free wig cap fashion glueless copper red long natural wavy free part lace front wigs heat resistant synthetic hair wig for women curly wigs for women's fashion hair extensions color wig curly hairstyle look same with human hair wig.Wigs cosplay long layered wigs 24 inches short wigs for women full hair wig natural with natural layers shoulder length looking wigs with wig cap blonde wigs for white w ", "A New You is Waiting------\ud83c\udf3b\ud83c\udf3bbaby hair long wave wigs long curly wigs human hair long curly wigs human hair middle part long wave wigs middle part long wave wigs middle part long wave wigs cosplay long wave wigs cosplay long wave wigs long wavy wigs for black women high density long wave wigs.Women lace wigs human hair short wigs human lace front wigs synthetic long wave wigs synthetic long wave wigs synthetic long wave wigs highlight long wave wigs girls long curly wigs lon ", "Daily Wear-----\ud83c\udf3b\ud83c\udf3bwomen 360 lace frontal wig lace front wig wigs for black women human hair wig grip bob wig human hair wig wig caps for women lace front wigs human hair with baby hair lace wigs bob wigs for black women short wig short wigs front lace wigs lace front.High quality long wave wigs high density long wave wigs soft long wave wigs ladies long curly hair wig long black wavy cosplay wig brown to blond hair wig wigs hair lace front wigs human hair wigs for women wig ", "Cosplay-----\ud83c\udf3b\ud83c\udf3bWigs for Women, Extensions Wigs Accessories Long Curly Wavy Hair Wig Cosplay Daily Party Wig Human Hair Wig Curly Wig for Women Girl Hair Replacement Wigs Curly Straight Full Hair Extensions Women Girls Short Curly Synthetic Wig Lace Front Wigs For Women Short Bob Hair Wig long body wave lace front wigs casual long wave wigs casual long wave wigs long wave wigs for white women long wave wigs for white women black women long wave wigs "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QMJYRVJ/ref=twister_B09QMJ8KBH?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51fJfn+ui2L.jpg"}, {"is_selected": true, "url": null, "value": "black brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gLSOY480L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QMHNQ8N/ref=twister_B09QMJ8KBH?_encoding=UTF8&psc=1", "value": "dark brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gj6y05pOL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QMJ5KQH", "category": "beauty", "query": "Hair Extensions, Wigs & Accessories", "page": 112, "small_description_old": "Occasions: 2022 Fashion wigs can be used all year round.designed for cosplay, costume party, carnival, halloween, fashion or just for fun.-----\ud83c\udf3b\ud83c\udf3b human hair synthetic lace front wigs full lace wigs short wigs for black women wigs for women human hair lace front wigs human hair with baby hair braided wigs curly wigs for black women lace wig wavy natural resistant long color air synthetic.Wigs lace front wigs human hair wigs for women wigs for black women full lace human hai About Shipping: Shipped about 10-18 Days To Delivered----\ud83c\udf3b\ud83c\udf3bfashion wigs with free wig cap fashion glueless copper red long natural wavy free part lace front wigs heat resistant synthetic hair wig for women curly wigs for women's fashion hair extensions color wig curly hairstyle look same with human hair wig.Wigs cosplay long layered wigs 24 inches short wigs for women full hair wig natural with natural layers shoulder length looking wigs with wig cap blonde wigs for white w A New You is Waiting------\ud83c\udf3b\ud83c\udf3bbaby hair long wave wigs long curly wigs human hair long curly wigs human hair middle part long wave wigs middle part long wave wigs middle part long wave wigs cosplay long wave wigs cosplay long wave wigs long wavy wigs for black women high density long wave wigs.Women lace wigs human hair short wigs human lace front wigs synthetic long wave wigs synthetic long wave wigs synthetic long wave wigs highlight long wave wigs girls long curly wigs lon Daily Wear-----\ud83c\udf3b\ud83c\udf3bwomen 360 lace frontal wig lace front wig wigs for black women human hair wig grip bob wig human hair wig wig caps for women lace front wigs human hair with baby hair lace wigs bob wigs for black women short wig short wigs front lace wigs lace front.High quality long wave wigs high density long wave wigs soft long wave wigs ladies long curly hair wig long black wavy cosplay wig brown to blond hair wig wigs hair lace front wigs human hair wigs for women wig Cosplay-----\ud83c\udf3b\ud83c\udf3bWigs for Women, Extensions Wigs Accessories Long Curly Wavy Hair Wig Cosplay Daily Party Wig Human Hair Wig Curly Wig for Women Girl Hair Replacement Wigs Curly Straight Full Hair Extensions Women Girls Short Curly Synthetic Wig Lace Front Wigs For Women Short Bob Hair Wig long body wave lace front wigs casual long wave wigs casual long wave wigs long wave wigs for white women long wave wigs for white women black women long wave wigs"}, {"name": "Organic Medjool Dates, 2 Pounds \u2013 Non-GMO, Whole Dried Dated with Pits, Large Size, Unsweetened, Unsulphured, Vegan, Sirtfood, Bulk. Good Source of Potassium, Magnesium, and Dietary Fiber. Perfect Dried Fruit Snack.", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2 x 4 x 6 inches; 1.85 Pounds", "UPC\n \u200f": "\u200e\n 637390644103", "Manufacturer\n \u200f": "\u200e\n Food to Live", "ASIN\n \u200f": "\u200e\n B015PWVRPO", "Best Sellers Rank": "#43,742 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#46 in Dried Dates", "#46 in Dried Dates": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Food to Live Store", "brand_url": "https://www.amazon.com/stores/FoodtoLive/page/F93881C5-2CDC-40CA-BAF2-2BCD9EAA5A14?ref_=ast_bln", "full_description": "", "pricing": "$25.49", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51ovpruPtfS.jpg", "https://m.media-amazon.com/images/I/51qwoPOcvTL.jpg", "https://m.media-amazon.com/images/I/51uR3aE2qOL.jpg", "https://m.media-amazon.com/images/I/51ew8AtZuGS.jpg", "https://m.media-amazon.com/images/I/51OWCHnJppL.jpg", "https://m.media-amazon.com/images/I/51gQDHYmNBL.jpg", "https://m.media-amazon.com/images/I/A1aZ7V+Q2zL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Produce \u203a Dried Fruits & Vegetables \u203a Dried Fruits \u203a Dried Dates", "average_rating": 4.5, "small_description": ["These are the finest quality organic Medjool dates grown in the Israel. They are handpicked to ensure that each date is perfect in size and color. ", "Medjool dates give you a boost of power. One ounce of them (28 grams) contains 21 grams of carbohydrates, which means that dates are powerhouse fruits. ", "Eating 2-4 dates a day provides you with one of the 5-a-day necessary servings of vitamins and minerals you need to consume to stay healthy. ", "Our organic Medjool dates are large, meaty, sweet, and deliciously juicy. They are the very best of the best. ", "Medjool dates are known as the \u201cfruit of kings\u201d and they used to be reserved exclusively for royalty. But today you can also enjoy the delicious, rich flavor of these fruits. "], "total_reviews": 431, "total_answered_questions": 17, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B015PWVROK/ref=twister_B08YXXBKZH?_encoding=UTF8&psc=1", "value": "1 Pound (Pack of 1)", "price_string": "$13.48", "price": 13.48, "image": null}, {"is_selected": true, "url": null, "value": "2 Pound (Pack of 1)", "price_string": "$25.49", "price": 25.49, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B015PWVRRW/ref=twister_B08YXXBKZH?_encoding=UTF8&psc=1", "value": "5 Pound (Pack of 1)", "price_string": "$46.98", "price": 46.98, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093Y1WKWG/ref=twister_B08YXXBKZH?_encoding=UTF8&psc=1", "value": "10 Pound", "price_string": "$70.99", "price": 70.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B015PWVRS6/ref=twister_B08YXXBKZH?_encoding=UTF8&psc=1", "value": "15 Pound (Pack of 1)", "price_string": "$97.49", "price": 97.49, "image": null}]}, "seller_id": "A6NL9JOZSRI4P", "seller_name": "Food To Live \u00ae", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B015PWVRPO", "category": "grocery", "query": "Dried Fruits & Raisins", "page": 12, "small_description_old": "About this item These are the finest quality organic Medjool dates grown in the Israel. They are handpicked to ensure that each date is perfect in size and color. Medjool dates give you a boost of power. One ounce of them (28 grams) contains 21 grams of carbohydrates, which means that dates are powerhouse fruits. Eating 2-4 dates a day provides you with one of the 5-a-day necessary servings of vitamins and minerals you need to consume to stay healthy. Our organic Medjool dates are large, meaty, sweet, and deliciously juicy. They are the very best of the best. Medjool dates are known as the \u201cfruit of kings\u201d and they used to be reserved exclusively for royalty. But today you can also enjoy the delicious, rich flavor of these fruits."}, {"name": "Mens Casual Cargo Pants Hi Vis Viz Reflective Overalls High Visibility Safe Work Pants Outdoor Hiking Trousers Big and Tall", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 9, 2021", "Manufacturer\n \u200f": "\u200e\n Burband", "ASIN\n \u200f": "\u200e\n B0991X76CZ", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Burband", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Burband", "full_description": "\u00b7Material: High-quality Cotton, Polyester,Spandex, Soft/ Lightweight/Breathable/Stretchy fabric, make you feel comfortable when wearing. \u00b7Features: The pants is a lifestyle that combines style, comfort, fit, and performance. The high quality active wear is affordable and accessible, perfect for fitness enthusiasts and everyday athleisure. \u00b7Occasion: Perfect for yoga, dance, school, vacation, beach, jogger, trousers, great for hot summer days, also suitable for wearing in the cool season. \u00b7Easy care, machine wash in cold water or hand wash.Summer shorts,beach shorts,Denim shorts,active shorts,plus size shorts,comfy shorts. \u00b7womens pants/pants for work/bell bottom jeans/flare jeans/summer shorts/denim shorts/womens linen pants/yoga pants/workout leggings. \u00b7womens pants jeans denim joggers capris shorts slacks/womens pants for work/high waist/relaxed fit/linen/plus size/loose fit/yoga pants/skinny jeans ripped. \u00b7Note: Please allow 0.5-1.0 inches measuring deviation due to manual measurement and different stretch of fabrics. \u00b7Note :Size runs small,Please check the size chart before purchase and choose 1-2 size up. \u00b7If you have any questions, please feel free to contact us,we will answer you in 24 hours. \u00b7Others:2121 summer pants cargo mens pants khaki joggers for men track chino pants ripped jeans dress pants tactical plaid waterproof snowboard linen pants jogger jeans slacks for men work pant suits yoga corduroy pajama skinny distressed jeans leather flat front sports running athletic cargo trousers capri lounge pants workout casual cropped pants fishing climbing suit pants skate cool ski bibs dress slacks casual short beach", "pricing": "$16.79", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41EtKhfNAQL.jpg", "https://m.media-amazon.com/images/I/31CWmEATfDL.jpg", "https://m.media-amazon.com/images/I/41JfGP7PhkL.jpg", "https://m.media-amazon.com/images/I/41KzmVzeuAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Sport Specific Clothing \u203a Running \u203a Men \u203a Pants", "average_rating": 3.3, "small_description": ["\u3010Occasion\u3011- These summer beach shorts are perfect for yoga, gym fitness, lounging at home, workouts or everyday wear, dating amd beach Etc. closure ", "Feature: - Summer beach loose pants, elastic waist, straight leg, loose fitting, elastic waist, drawstring, deep pockets, joggers chino for men, casual lounge pants, yoga pants, workout running pants, outdoor lounge pants, pajamas pants for mens, sleep night lounge pants, sporting pants, workout leggings, cargo shorts, denim shorts,flat front shorts, plaid pajama shorts, drawstring shorts, chino shorts, pleated short, workout shorts, swim trunks for men and women. ", "Feature: - Burband 2021 fashion mens pants, shorts, casual,jogger sweatpants,palazzo pajamas pants,bell bottoms,denim pants,linen pants,skinny jeans,track travel hiking pants,cargo pants, cargo shorts, flat front shorts, drawstring shorts, chino shorts, pleated shorts, active shorts, workout shorts, swimsuits, swim Trunks, board shorts, sleep bottoms design. ", "mens pants khaki mens dress pants hiking pajama work summer beach linen pants loose casual elastic waist drawstring yoga lounge pants baseball compression yoga golf pants workout lounge track pants casual white waterproof chinos jogger capri tactical pants mens harem pants mens slim fit dress pants running sleep motorcycle rain convertible black lightweight pants swim trunks summer beach yoga pants women cotton crapped shorts outdoor workout athletic gym shorts ", "2021 mens pants casual expandable elastic waist drawstring cotton beach yoga comfy lounge stretch trouser relaxed fit jeans denim shorts cargo camo motorcycle tactical workout khaki jogger biking control active swim trunks chino fit pleat flat front with liner jersey spandex mutil pockets straight fit golf big tall track sweatpants ripped dress shorts waterproof suits corduroy pajama skinny distressed leather capri lounge pants workout cropped pants fishing climbing suit skate cool slacks ", "tops for women graphic tees shirts for men blouse t shirt custom polo shirts t shirt design hawaiian shirts shirts & tops off the shoulder tops t shirts for men tie dye shirts flannel shirts long sleeve shirts disney shirts mens polo shirts christmas shirts plus size tops womens shirts t shirts for women tunic tops for women mens long sleeve shirts mens graphic tees workout tops women's tops and blouses plus size women slim fit t shirts ", "Special size type: big-tall , Rise style: Knee High, Fit type: Straight,Loose, Leg style: Bootcut"], "total_reviews": 5, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0991X76CZ/ref=twister_B0991XND6R", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31pxvaHrLLL.jpg"}, {"is_selected": true, "url": null, "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EtKhfNAQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0991W4T2S/ref=twister_B0991XND6R", "value": "Orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sj-Xyv6oL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QZQSJBJ/ref=twister_B0991XND6R", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31BBtaTV1TL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B0991XP2NK"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B0991XN7H5"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B0991TMF8H"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B0991XZ614"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B0991XDS7H"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B099231V35"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B099231V35", "category": "fashion", "query": "Men's Pants", "page": 36, "small_description_old": "\u3010Occasion\u3011- These summer beach shorts are perfect for yoga, gym fitness, lounging at home, workouts or everyday wear, dating amd beach Etc. closure Feature: - Summer beach loose pants, elastic waist, straight leg, loose fitting, elastic waist, drawstring, deep pockets, joggers chino for men, casual lounge pants, yoga pants, workout running pants, outdoor lounge pants, pajamas pants for mens, sleep night lounge pants, sporting pants, workout leggings, cargo shorts, denim shorts,flat front shorts, plaid pajama shorts, drawstring shorts, chino shorts, pleated short, workout shorts, swim trunks for men and women. Feature: - Burband 2021 fashion mens pants, shorts, casual,jogger sweatpants,palazzo pajamas pants,bell bottoms,denim pants,linen pants,skinny jeans,track travel hiking pants,cargo pants, cargo shorts, flat front shorts, drawstring shorts, chino shorts, pleated shorts, active shorts, workout shorts, swimsuits, swim Trunks, board shorts, sleep bottoms design. mens pants khaki mens dress pants hiking pajama work summer beach linen pants loose casual elastic waist drawstring yoga lounge pants baseball compression yoga golf pants workout lounge track pants casual white waterproof chinos jogger capri tactical pants mens harem pants mens slim fit dress pants running sleep motorcycle rain convertible black lightweight pants swim trunks summer beach yoga pants women cotton crapped shorts outdoor workout athletic gym shorts 2021 mens pants casual expandable elastic waist drawstring cotton beach yoga comfy lounge stretch trouser relaxed fit jeans denim shorts cargo camo motorcycle tactical workout khaki jogger biking control active swim trunks chino fit pleat flat front with liner jersey spandex mutil pockets straight fit golf big tall track sweatpants ripped dress shorts waterproof suits corduroy pajama skinny distressed leather capri lounge pants workout cropped pants fishing climbing suit skate cool slacks tops for women graphic tees shirts for men blouse t shirt custom polo shirts t shirt design hawaiian shirts shirts & tops off the shoulder tops t shirts for men tie dye shirts flannel shirts long sleeve shirts disney shirts mens polo shirts christmas shirts plus size tops womens shirts t shirts for women tunic tops for women mens long sleeve shirts mens graphic tees workout tops women's tops and blouses plus size women slim fit t shirts Special size type: big-tall \n Rise style: Knee HighFit type: Straight,LooseLeg style: BootcutShow more"}, {"name": "Compact Versatile Design X-Shaped Kitchen Baker's Rack Microwave Stand Utility Shelf with 6 Hooks Sturdy Durable Steel, Adjustable Foot Pad", "product_information": {"Manufacturer": "Caraya", "ASIN": "B08SHNQJBW", "Date First Available": "December 21, 2018"}, "brand": "Brand: Caraya", "brand_url": "https://www.amazon.com/Caraya/b/ref=bl_dp_s_web_20391165011?ie=UTF8&node=20391165011&field-lbr_brands_browse-bin=Caraya", "full_description": "Compact Versatile Design X-Shaped Kitchen Baker's Rack Microwave Stand Utility Shelf with 6 Hooks Sturdy Durable Steel, Adjustable Foot PadDescription:If you don't have a place for cutlery or a microwave oven, our kitchen baker\u2019s rack will be your perfect choice. Multiple shelves design ensures both small kitchen appliances and cooking utensils can be neatly stowed away. Constructed of durable steel, the stylish kitchen rack offers the best of both rugged reliability and modern appeal. Even more, adjustable leveling feet allow the shelving unit to be placed on uneven ground. Which also can be used as a microwave stand, the kitchen baker's rack is a useful addition to any living space or storage area!Features:6 small hooks make it easier to hang pots, pans, utensils, etcX-shaped steel pipe frame increase the firmnessAmple storage space to place multiple itemsComposed of engineered wood and steel tube, it can be used for a long timeAdjustable foot pad enables the rack to stand stably on the uneven floorPull out wire baskets can be used to store fruits and vegetablesIts vintage wood texture constitutes a unique decorative effectCompact and versatile design makes it a complement to any homeSpecifications:Color: As the picture showsMaterial: Engineered Wood, SteelProduct Size: 35.5\"x 16\" x 33.5\" (L x W x H)Net Weight: 33 lbsWeight Capacity: 176 lbsPackage Includes:1x Kitchen Baker's Rack1 x Instructions", "pricing": "$208.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/51Im4vPZNiL.jpg", "https://m.media-amazon.com/images/I/51SLS1K-PyL.jpg", "https://m.media-amazon.com/images/I/51QMW6AyyAL.jpg", "https://m.media-amazon.com/images/I/519qvDgAspL.jpg", "https://m.media-amazon.com/images/I/510Dx46a7EL.jpg", "https://m.media-amazon.com/images/I/51sjiXrrfwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Storage & Organization \u203a Racks, Shelves & Drawers \u203a Standing Shelf Units", "average_rating": "", "small_description": ["6 small hooks make it easier to hang pots, pans, utensils, etc ", "Ample storage space to place multiple items ", "Composed of engineered wood and steel tube, it can be used for a long time ", "Adjustable foot pad enables the rack to stand stably on the uneven floor ", "Adjustable foot pad enables the rack to stand stably on the uneven floor "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A39VJBVKZ9VZQG", "seller_name": "Caraya", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08SHNQJBW", "category": "garden", "query": "Baker's Racks", "page": 272, "small_description_old": "About this item\n \n6 small hooks make it easier to hang pots, pans, utensils, etc Ample storage space to place multiple items Composed of engineered wood and steel tube, it can be used for a long time Adjustable foot pad enables the rack to stand stably on the uneven floor Adjustable foot pad enables the rack to stand stably on the uneven floor"}, {"name": "ANSTAND 42.5 Inch Console Table 3 Tier Accent Entryway Table,Industrial Style X-Shaped Cross Metal Frame Sofa Side Table Hall Table Display Table for Home Office,Black", "product_information": {"Product Dimensions": "9.1 x 42.5 x 29.9 inches", "Manufacturer": "Anstand", "ASIN": "B09RX1PLP4", "Date First Available": "February 7, 2022"}, "brand": "Brand: Anstand", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Anstand", "full_description": "Features: 1. Solid & durable--- Made of smooth MDF board and Thickened metal frame 2. Versatile - Works great as a console table, entry way table, Hall table, display table, etc. This is a good table for behind the couch to keep your phone chargers, remotes, keys and other items you need close by or behind a corner bed to sit lamps on 3. Industrial vintage home decor --- this console sofa entryway table rustic and simplistic.Easy to compliment to your home decor and highlight taste 4. Easy to assemble --- All you need to do is assemble the screws. A few minutes later, your entryway table is completed. All tools,detailed instruction and floor protection's footpad included Specifications: 1. Product Dimension\uff1a(42.52 x 9.05 x 29.92)\" / (108 x 23 x 76)cm (L x W x H) 2. Color: Black Oak 4. Material\uff1aMDF Metal 5. Weight Capacity: 55 lb / 25 kg 6. Weight: 26.01 lb / 11.8 kg Package Includes: 1 x Hardware 1 x Allen Key 1 x Instruction Manual 1 x Table Notes: 1. When receiving the goods, please confirm the product according to the listing of instructions. Once you find less pieces, please provide relevant pictures to contact us. We will deal it in the time 2.It is recommended that the installation should not be too tight to adjust easily. After the structure is installed, firm the interface for more stability", "pricing": "$109.99", "list_price": "", "availability_quantity": 9, "availability_status": "Only 9 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41xiGkEh2CL.jpg", "https://m.media-amazon.com/images/I/3195TWa0otL.jpg", "https://m.media-amazon.com/images/I/413LyPvm1bL.jpg", "https://m.media-amazon.com/images/I/41mzQuUxFeL.jpg", "https://m.media-amazon.com/images/I/41kq5mqhYlL.jpg", "https://m.media-amazon.com/images/I/41+2pXGwjyL.jpg", "https://m.media-amazon.com/images/I/41THg6KSdfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": "", "small_description": ["Industrial Vintage Home Decor:This console sofa entryway table fashion and simplistic.Easy to compliment to your home decor and highlight taste. ", "Solid & Durable:Whole table is made of smooth MDF board and thickened metal frame,offers superb durability and stability for long-term use.Up to 55 pounds weight capacity of the shelf let you can store and display a lot of items on it with no problem.Adjustable feet ensure a more stable table and protect the floor from scratching. ", "Versatile Use:It works great as a console table, entry way table, Hall table, display table, etc. This is a good table for behind the couch to keep your phone chargers, remotes, keys and other items you need close by or behind a corner bed to sit lamps on. ", "Easy to Assemble:All you need to do is assemble the screws. A few minutes later, your entryway table is completed. All tools,detailed instruction and floor protection's footpad included. ", "Product Details:Overall Dimensions: 42.5\u201dLength x 9\u201dWidth x 30\u201dHeight.What\u2019s more, we have professional customer service, feel free to contact us if there is any product issue, any email will be replied within 24 hours. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3D034W2F1A3VY", "seller_name": "taiyuanshiwanbailinquchangyingbaihuodian", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RX1PLP4", "category": "garden", "query": "Console tables", "page": 239, "small_description_old": "About this item\n \nIndustrial Vintage Home Decor:This console sofa entryway table fashion and simplistic.Easy to compliment to your home decor and highlight taste. Solid & Durable:Whole table is made of smooth MDF board and thickened metal frame,offers superb durability and stability for long-term use.Up to 55 pounds weight capacity of the shelf let you can store and display a lot of items on it with no problem.Adjustable feet ensure a more stable table and protect the floor from scratching. Versatile Use:It works great as a console table, entry way table, Hall table, display table, etc. This is a good table for behind the couch to keep your phone chargers, remotes, keys and other items you need close by or behind a corner bed to sit lamps on. Easy to Assemble:All you need to do is assemble the screws. A few minutes later, your entryway table is completed. All tools,detailed instruction and floor protection's footpad included. Product Details:Overall Dimensions: 42.5\u201dLength x 9\u201dWidth x 30\u201dHeight.What\u2019s more, we have professional customer service, feel free to contact us if there is any product issue, any email will be replied within 24 hours."}, {"name": "Seacrest White Kitchen Cart by Linon", "product_information": {"Item Weight": "\u200e71.8 pounds", "Product Dimensions": "\u200e20 x 47.5 x 36.02 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eAMZN0478", "ASIN": "B07FDJYBVW", "Customer Reviews": {"ratings_count": 15, "stars": "3.8 out of 5 stars"}, "Best Sellers Rank": ["#1,029,164 in Home & Kitchen (See Top 100 in Home & Kitchen) #158 in Mobile Kitchen Storage Islands"], "Date First Available": "December 23, 2015"}, "brand": "Visit the Linon Store", "brand_url": "https://www.amazon.com/stores/Linon/page/A6A4FBE7-1F8A-4693-A84B-30467AFD76C4?ref_=ast_bln", "full_description": "Make a smart addition to your home! Simple lines, a clean, white finish and silver hardware help this farmhouse style kitchen cart blend into any interior. A food safe natural wood top offers serving space plus room for a compact microwave or coffee maker. You\u2019ll find ample storage space in two top drawers plus a large enclosed cabinet with sliding doors, two adjustable shelves and one produce basket. This appealing cart also includes a convenient towel rod, a side storage rack and casters for easy mobility.", "pricing": "$331.77", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31tdA+Q7t8L.jpg", "https://m.media-amazon.com/images/I/31VTwY5hkPL.jpg", "https://m.media-amazon.com/images/I/219O9lwJTNL.jpg", "https://m.media-amazon.com/images/I/2162HA1C6XL.jpg", "https://m.media-amazon.com/images/I/512EIPTsZ7L.jpg", "https://m.media-amazon.com/images/I/51kwIYNJ+SL.jpg", "https://m.media-amazon.com/images/I/41r89kdEKhL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Kitchen Furniture \u203a Storage Islands & Carts \u203a Mobile Storage Islands", "average_rating": 3.8, "small_description": ["Sturdy wood frame \u2013 Weight limit of 120 pounds. ", "Convenient towel rod and storage rack on one end. ", "Durable easy rolling wheels with two locking casters. ", "Clean design with a bright white finish and silver hardware. ", "Warm natural wooden top adds an eye-catching look to this kitchen cart. ", "Item is shipped in two separate boxes - Full assembly is required for this kitchen cart. ", "Great to be used for kitchen storage, or food preparation as the wooden top is food safe. , Abundant storage including two drawers and a large cabinet space with two sliding doors two shelves and a produce basket., Efficiently mobile for serving appetizers to guests, offering great prep space for delicious meals, and provides ample hidden mobile storage."], "total_reviews": 15, "total_answered_questions": "", "model": "\u200eAMZN0478", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07FDJYBVW", "category": "garden", "query": "Kitchen Islands", "page": 48, "small_description_old": "About this item Sturdy wood frame \u2013 Weight limit of 120 pounds. Convenient towel rod and storage rack on one end. Durable easy rolling wheels with two locking casters. Clean design with a bright white finish and silver hardware. Warm natural wooden top adds an eye-catching look to this kitchen cart. Item is shipped in two separate boxes - Full assembly is required for this kitchen cart. Great to be used for kitchen storage, or food preparation as the wooden top is food safe. \n Abundant storage including two drawers and a large cabinet space with two sliding doors two shelves and a produce basket.Efficiently mobile for serving appetizers to guests, offering great prep space for delicious meals, and provides ample hidden mobile storage.Show more"}, {"name": "Halfword Women's One Shoulder Bodycon Dress Sexy Cut Out Club Cocktail Wedding Mini Dress", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.69 x 10.55 x 2.4 inches; 9.14 Ounces", "Department\n \u200f": "\u200e\n Women", "Date First Available\n \u200f": "\u200e\n August 11, 2021", "Manufacturer\n \u200f": "\u200e\n Halfword", "ASIN\n \u200f": "\u200e\n B09CDL6GKQ", "Best Sellers Rank": "#1,334,984 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#6,171 in Women's Club & Night Out Dresses", "#6,171 in Women's Club & Night Out Dresses": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Halfword Store", "brand_url": "https://www.amazon.com/stores/Halfword/page/5B85E865-592D-4C8C-B285-C1AAF464B237?ref_=ast_bln", "full_description": "", "pricing": "$27.99$30.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31qPYYxjQtL.jpg", "https://m.media-amazon.com/images/I/41G4z4tHqNL.jpg", "https://m.media-amazon.com/images/I/41AD1EXcK7L.jpg", "https://m.media-amazon.com/images/I/51L37NgEmxL.jpg", "https://m.media-amazon.com/images/I/41Akj-RPO8L.jpg", "https://m.media-amazon.com/images/I/31NXip91h3L.jpg", "https://m.media-amazon.com/images/I/516rtkHw24L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Dresses", "average_rating": 1.9, "small_description": ["Fabric: High Quality Polyester, Not See Through. This One Shoulder Bodycon Dress is Soft, Comfortable, Breathable and Stretchy, One shoulder With Cut Out design Makes This Mini Dress Cute and Sexy. ", "Features: This Long Sleeve Bodycon Dress is Solid Color, Puff Sleeve, One Shoulder, Hollow out, Flattering Fit, Hugs Your Curves Perfectly, Makes You Look More Charming and Elegant. ", "Matching: This Sexy Mini Dress Can Easy to Handle Your Fashion Needs, You Can Match it With Hats, Necklace, Worn Down With Sandals or High Heels. When the Weather Turns Cool, It's Also a Good Match With Jackets or Other Coats. ", "Occasions: This Sexy Cut Out Dress is Good Coverage for Casual and Formal Occasions, Work, Party, Date, Meeting Friends, Prom, Cocktail, Holidays, Beach, Night Club, Bar, Streetwear. ", "Notes: Machine Wash or Hand Wash, Recommended With Low Temperature Water, No Bleach. Before Order, Please Carefully Read the Size Chart We Provided in The Pictures, Select the Size According it. "], "total_reviews": 3, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09CDL6GKQ/ref=twister_B09CDKMSLT", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31VoHw08gaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09CDKHM22/ref=twister_B09CDKMSLT", "value": "Blue Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41mHGLA7J1L.jpg"}, {"is_selected": true, "url": null, "value": "Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qPYYxjQtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09CDJWW9P/ref=twister_B09CDKMSLT", "value": "Orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wFvrwA+rL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09CDK9Q6Y"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09CDK3ZHZ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09CDLRL7L"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09CDL2N3T"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09CDK9Q6Y", "category": "fashion", "query": "Women's Dresses", "page": 81, "small_description_old": "Hand Wash Only Fabric: High Quality Polyester, Not See Through. This One Shoulder Bodycon Dress is Soft, Comfortable, Breathable and Stretchy, One shoulder With Cut Out design Makes This Mini Dress Cute and Sexy. Features: This Long Sleeve Bodycon Dress is Solid Color, Puff Sleeve, One Shoulder, Hollow out, Flattering Fit, Hugs Your Curves Perfectly, Makes You Look More Charming and Elegant. Matching: This Sexy Mini Dress Can Easy to Handle Your Fashion Needs, You Can Match it With Hats, Necklace, Worn Down With Sandals or High Heels. When the Weather Turns Cool, It's Also a Good Match With Jackets or Other Coats. Occasions: This Sexy Cut Out Dress is Good Coverage for Casual and Formal Occasions, Work, Party, Date, Meeting Friends, Prom, Cocktail, Holidays, Beach, Night Club, Bar, Streetwear. Notes: Machine Wash or Hand Wash, Recommended With Low Temperature Water, No Bleach. Before Order, Please Carefully Read the Size Chart We Provided in The Pictures, Select the Size According it."}, {"name": "WIWIQS Women's Sexy V Neck Bodycon Sleeveless Ruffle Dress Front Slit Bandage Plus Size Midi Club Dresses", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.03 x 9.61 x 2.48 inches; 14.07 Ounces", "Item model number\n \u200f": "\u200e\n VLINGJFQHY-Black-S", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n November 27, 2020", "ASIN\n \u200f": "\u200e\n B08NXK9HHK", "Best Sellers Rank": "#605,705 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#3,342 in Women's Club & Night Out Dresses", "#3,342 in Women's Club & Night Out Dresses": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the WIWIQS Store", "brand_url": "https://www.amazon.com/stores/WIWIQS/page/8C80CA4A-59C8-4F74-A54E-BACDA5D634F8?ref_=ast_bln", "full_description": "", "pricing": "$30.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31ooHqvwyCL.jpg", "https://m.media-amazon.com/images/I/31+IVC-DlaL.jpg", "https://m.media-amazon.com/images/I/31A+OHTJZ5L.jpg", "https://m.media-amazon.com/images/I/418j0qd3GaL.jpg", "https://m.media-amazon.com/images/I/51-c5PhDz1L.jpg", "https://m.media-amazon.com/images/I/41MCB6e54DL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Dresses \u203a Club & Night Out", "average_rating": 4.1, "small_description": ["100% Polyester ", "Elastic closure ", "\u2605Material:Adopts High Quality Cotton Blend Outer Fabric, Soft And Breathable\uff0cWill Offer You First-Class Comfort; With The Same Color Lining, Makes Sure Will Not See Through; The Comfy And Stretchy Material With Fashion And Solid Color Plain Dress Design Makes This Summer Mini Dress Suitable For Most Lady\u2019s Body Shape. ", "\u2605Design: Thanks To The Pull On Closure, This Short Dresses Can Be Dressed Up And Down Easily. The Elastic Material Hugs Your Figure Perfectly And The Bodycon Cut Creates A Seductive Silhouette. This Is One Side Ruched Shirt Dress With Irregular Hem Design To Modify Your Body Lines, The Above Knee Length And Wrap Front Look Makes You Look Slimmer And Prolonged The Legs Length. ", "\u2605Occasion:With Exquisite Accessories/Jewelry, A Clutch, High Heels, You're The Star At Every Event, Like Party, Cocktail, Clubwear, Night Out, Evening, Dinner, Romantic Date, Wedding, Cruise. ", "\u2605Please refer to the item description below for size details. Please check your measurements to make sure the item fits before ordering. ", "dress juniors modest,dress juniors maxi,dress juniors long sleeve,dress juniors long,dress juniors lace,dress juniors knee length,dress juniors formal knee,dress juniors formal,dress juniors floral,dress juniors cocktail "], "total_reviews": 144, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07HDK9QWF"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07HDJJLJ4"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07HDK7TPT"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07HDL12FP"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07HDJW8BV"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B08P1WFJH7"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08NXK9HHK/ref=twister_B07HDK6B4S", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31T79kSGLPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096QB5FDY/ref=twister_B07HDK6B4S", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/316778J5EOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HDKBV1G/ref=twister_B07HDK6B4S", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ubO5wVOkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HDJCSPB/ref=twister_B07HDK6B4S", "value": "Rose", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Qg1ieqecL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HDJV8JM/ref=twister_B07HDK6B4S", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31FpY5S59uL.jpg"}, {"is_selected": true, "url": null, "value": "Wine Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Q-bRdnV9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HDJW21K/ref=twister_B07HDK6B4S", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31eYWnOAfdL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07HDK7TPT", "category": "fashion", "query": "Women's Dresses", "page": 159, "small_description_old": "\u2605Material:Adopts High Quality Cotton Blend Outer Fabric, Soft And Breathable\uff0cWill Offer You First-Class Comfort; With The Same Color Lining, Makes Sure Will Not See Through; The Comfy And Stretchy Material With Fashion And Solid Color Plain Dress Design Makes This Summer Mini Dress Suitable For Most Lady\u2019s Body Shape. \u2605Design: Thanks To The Pull On Closure, This Short Dresses Can Be Dressed Up And Down Easily. The Elastic Material Hugs Your Figure Perfectly And The Bodycon Cut Creates A Seductive Silhouette. This Is One Side Ruched Shirt Dress With Irregular Hem Design To Modify Your Body Lines, The Above Knee Length And Wrap Front Look Makes You Look Slimmer And Prolonged The Legs Length. \u2605Occasion:With Exquisite Accessories/Jewelry, A Clutch, High Heels, You're The Star At Every Event, Like Party, Cocktail, Clubwear, Night Out, Evening, Dinner, Romantic Date, Wedding, Cruise. \u2605Please refer to the item description below for size details. Please check your measurements to make sure the item fits before ordering. dress juniors modest,dress juniors maxi,dress juniors long sleeve,dress juniors long,dress juniors lace,dress juniors knee length,dress juniors formal knee,dress juniors formal,dress juniors floral,dress juniors cocktail"}, {"name": "Manfrotto MVKBFRTC-LIVEUS Befree Live Carbon Fiber Video Tripod Kit with Fluid Head, M-Lock Twist Leg Locks, Black", "product_information": {"Product Dimensions": "17.9 x 5.2 x 4.9 inches", "Item Weight": "3.04 pounds", "ASIN": "B07DTWJYND", "Item model number": "MVKBFRTC-LIVEUS", "Customer Reviews": {"ratings_count": 305, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#1,038 in Complete Tripod Units"], "Date First Available": "May 30, 2018", "Manufacturer": "Manfrotto"}, "brand": "Visit the Manfrotto Store", "brand_url": "https://www.amazon.com/stores/Manfrotto/page/EF2301E0-1449-4F3F-A080-60348EFA384E?ref_=ast_bln", "full_description": "Manfrotto\u2019s be free live carbon is the most portable travel video tripod kit, dedicated to hobbyist videographers and vloggers who want extremely lightweight, high-end support that ensures maximum performance when they are on the go. Shooting astonishing outdoor videos becomes an easy and enjoyable job thanks to its compact size and minimal weight (just 1, 38kg/3.04lbs). The aim of be free live carbon is to fulfill an increasing demand from independent content creators for a lightweight, ergonomic travel tripod that is easy to carry for video recording with DSLRs, compact system cameras or small camcorders. it features a lightweight tripod spider developed to keep cameras perfectly stable on all types of terrain, including the most uneven ones, always keeping the camera completely steady and ready to capture amazing video footage.", "pricing": "$329.88", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31924UMIV0L.jpg", "https://m.media-amazon.com/images/I/31DgKS7Mu8L.jpg", "https://m.media-amazon.com/images/I/417ZXLvZBKL.jpg", "https://m.media-amazon.com/images/I/31N6CJMznkL.jpg", "https://m.media-amazon.com/images/I/41+AmxOn8GL.jpg", "https://m.media-amazon.com/images/I/31S-l7rwWoL.jpg", "https://m.media-amazon.com/images/I/61FBqd722CL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Tripods & Monopods \u203a Complete Tripods", "average_rating": 4.5, "small_description": ["Base Diameter: 1.57 inch "], "total_reviews": 305, "total_answered_questions": 43, "model": "MVKBFRTC-LIVEUS", "customization_options": {"Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08F9JRDSY/ref=twister_B08J8ZYXG2?_encoding=UTF8&psc=1", "value": "Befree 3-way Live - Hybrid Alumn", "price_string": "$269.88", "price": 269.88, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08F9VTRTJ/ref=twister_B08J8ZYXG2?_encoding=UTF8&psc=1", "value": "Befree 3-way Live - Hybrid Head", "price_string": "$118.30", "price": 118.3, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HQWGQTF/ref=twister_B08J8ZYXG2?_encoding=UTF8&psc=1", "value": "Befree Live - Alumn Lever", "price_string": "$267.88", "price": 267.88, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077J11CCW/ref=twister_B08J8ZYXG2?_encoding=UTF8&psc=1", "value": "Befree Live - Alumn Twist", "price_string": "$247.30", "price": 247.3, "image": null}, {"is_selected": true, "url": null, "value": "Befree Live - Carbon Twist", "price_string": "$329.88", "price": 329.88, "image": null}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": true, "asin": "B07DTWJYND", "category": "electronics", "query": "Tripods & Monopods", "page": 8, "small_description_old": "About this item\n \nBase Diameter: 1.57 inch"}, {"name": "Women's Ladies Sneakers,Limsea Fashion Classic Boots Ankle Short Leather Shoes", "product_information": {"Item model number\n \u200f": "\u200e\n LimseaWM", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 29, 2018", "Manufacturer\n \u200f": "\u200e\n Limsea", "ASIN\n \u200f": "\u200e\n B07JZ3HZYH", "Best Sellers Rank": "#1,808,278 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#11,357 in Women's Fashion Sneakers #11,501 in Women's Ankle Boots & Booties #28,614 in Women's Shops", "#11,357 in Women's Fashion Sneakers": "", "#11,501 in Women's Ankle Boots & Booties": "", "#28,614 in Women's Shops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Limsea Women Shoes", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Limsea+Women+Shoes", "full_description": "Size Chart: Size(CN):35 Foot Length:22-22.5cm/8.7-8.9\" Foot wide:8-8.5cm/3.1-3.3\" EU:36 UK:3 US:5.5 Size(CN):36 Foot Length:22.5-23cm/8.9-9.1\" Foot wide:8.5-9cm/3.3-3.5\" EU:36.5 UK:3.5 US:6 Size(CN):37 Foot Length:23-23.5cm/9.1-9.3\" Foot wide:9cm/3.5\" EU:37.5 UK:4 US:6.5 Size(CN):38 Foot Length:23.5-24cm/9.3-9.5\" Foot wide:9-9.5cm/3.5-3.7\" EU:38 UK:4.5 US:7 Size(CN):39 Foot Length:24-24.5cm/9.5-9.7\" Foot wide:9.5cm/3.7\" EU:38.5 UK:5 US:7.5 Size(CN):40 Foot Length:24.5-25cm/9.7-9.9\" Foot wide:9.5-10cm/3.7-3.9\" EU:39 UK:5.5 US:8 Size(CN):41 Foot Length:25-25.5cm/9.9-10.1\" Foot wide:10cm/3.9\" EU:40 UK:6 US:8.5 Size(CN):42 Foot Length:25.5-26cm/10.1-10.3\" Foot wide:10-10.5cm/3.9-4.1\" EU:40.5 UK:6.5 US:9 Product information: Gender: Women,Girl Upper Material:PU Sole Material:Rubber Scenes: Indoor&Outdoor,Fashion,Leisure Style: Princess,Casual,Simple, Toe Style:Round Toe Heel High Style:Square Closing Method:Slip on Shoes Heel High:4.5cm/1.8\" Platform Heigh:1cm/0.3\" Package:1 Pair Women Shoes(Not Including Shoebox) The Limsea store has been managing a variety of fashionable autumn and winter women's shoes, including long boots, high boots, booties, outdoor snow boots, windproof waterproof shoes, Limsea is committed to providing you with the latest styles and the best quality shoes, all of them can be well matched with your clothes,and they are perfect for a variety of occasions.This shoes are carefully selected for you by Limsea.", "pricing": "$6.63$8.37", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41fI7rGepGL.jpg", "https://m.media-amazon.com/images/I/51YepGmszNL.jpg", "https://m.media-amazon.com/images/I/41Bl9jsSSzL.jpg", "https://m.media-amazon.com/images/I/51Twwp0mqHL.jpg", "https://m.media-amazon.com/images/I/515+3U+JXDL.jpg", "https://m.media-amazon.com/images/I/41cjib8h2lL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Boots \u203a Ankle & Bootie", "average_rating": 4.2, "small_description": ["PU ", "Imported ", "Polyurethane sole ", "4 5 6 7 8 9 11 boots womens for women black thigh high over the knee ladies brown rain leather suede grey booties shoe tall long fashion online winter sale cute wedge red flat mid calf women's dress fall short tan female slouch buy casual shop gray blue ankle with top and new white purple studded combat heeled shoes fur size dark best genuine granny on stylish where to lace up ", "orange leather stiletto online loafers yellow burgundy suede brown nude very closed sale beige bone comfortable women taupe stylish purple slight dressy pointed slingbacks up tall classic buy ankle strap pretty mini stilettos heeled two slides three one sneakers princess champagne where to fashionable beautiful block neutral fancy trendy can i colorful coral bronze the 1.5 sparkly cut ", "string 0ver gold sock super going knees this laces female websites you cool wedges sells latest shopping price aldo overknees or how b who tights looking come websites exclusive you bootie little slim sells above multi order charcoal a affordable form some styles shopping near me price woman's wine or zamsh ", "leopard print width wedge booties thigh women rain white shoe cowboy mens combat fringe desert cold weather slouch snow womans biker ankle fur muk luks cowgirl girls muck lineman hats work ariat shearling walking mid ugg discount hunter logger boot stretcher franco dingo in comfortable length moccasin ostrich snake heeled winter red laredo navy double h motorcycle ", "1 2 3 4 5 6 7 8 9 11 12 20 30 43 100 2016 2018 2019 5803 martin shoes boots sale cheap clearance sandals outlet doctor black martens womens men pink brown low friday burgundy "], "total_reviews": 7, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "35 M EU", "asin": "B07JZ3HZYH"}, {"is_selected": false, "is_available": true, "value": "36 M EU", "asin": "B07JZ4M37H"}, {"is_selected": false, "is_available": true, "value": "37 M EU", "asin": "B07JZ4CQJK"}, {"is_selected": false, "is_available": true, "value": "38 M EU", "asin": "B07JZ39W3X"}, {"is_selected": false, "is_available": true, "value": "39 M EU", "asin": "B07JYS8VB3"}, {"is_selected": false, "is_available": true, "value": "40 M EU", "asin": "B07JZ3YWQS"}, {"is_selected": false, "is_available": true, "value": "41 M EU", "asin": "B07JZ3JCHC"}, {"is_selected": false, "is_available": true, "value": "42 M EU", "asin": "B07JZ5HVN6"}], "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07JZ5HVN6", "category": "fashion", "query": "Women's Fashion Sneakers", "page": 72, "small_description_old": "PU Imported Polyurethane sole 4 5 6 7 8 9 11 boots womens for women black thigh high over the knee ladies brown rain leather suede grey booties shoe tall long fashion online winter sale cute wedge red flat mid calf women's dress fall short tan female slouch buy casual shop gray blue ankle with top and new white purple studded combat heeled shoes fur size dark best genuine granny on stylish where to lace up orange leather stiletto online loafers yellow burgundy suede brown nude very closed sale beige bone comfortable women taupe stylish purple slight dressy pointed slingbacks up tall classic buy ankle strap pretty mini stilettos heeled two slides three one sneakers princess champagne where to fashionable beautiful block neutral fancy trendy can i colorful coral bronze the 1.5 sparkly cut string 0ver gold sock super going knees this laces female websites you cool wedges sells latest shopping price aldo overknees or how b who tights looking come websites exclusive you bootie little slim sells above multi order charcoal a affordable form some styles shopping near me price woman's wine or zamsh leopard print width wedge booties thigh women rain white shoe cowboy mens combat fringe desert cold weather slouch snow womans biker ankle fur muk luks cowgirl girls muck lineman hats work ariat shearling walking mid ugg discount hunter logger boot stretcher franco dingo in comfortable length moccasin ostrich snake heeled winter red laredo navy double h motorcycle 1 2 3 4 5 6 7 8 9 11 12 20 30 43 100 2016 2018 2019 5803 martin shoes boots sale cheap clearance sandals outlet doctor black martens womens men pink brown low friday burgundy"}, {"name": "XIAOQIAO Wall Mirror Decorative Antique Mirror, Wall Hanging Metal Frame Nordic Style Art, for Decor Hotel Hallway Mantel Living Room", "product_information": {"Item Weight": "17.6 pounds", "Manufacturer": "fairies hall", "ASIN": "B08QCL5SX5", "Finish Types": "Polished"}, "brand": "Brand: XIAOQIAO", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=XIAOQIAO", "full_description": "", "pricing": "$395.14", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51aXslowyFL.jpg", "https://m.media-amazon.com/images/I/51DWnmvgzQL.jpg", "https://m.media-amazon.com/images/I/51pU+xjFHXL.jpg", "https://m.media-amazon.com/images/I/61L2StyNcBL.jpg", "https://m.media-amazon.com/images/I/61Bp35OnkPL.jpg", "https://m.media-amazon.com/images/I/51aZbIz+g9L.jpg", "https://m.media-amazon.com/images/I/51FILO1dO5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Mirrors \u203a Wall-Mounted Mirrors", "average_rating": "", "small_description": ["High-quality Material: This decorative mirror frame is made of PU (polyurethane) material, environmentally friendly and lightweight, waterproof and moisture-proof, stable flame retardancy, not easy to be deformed by climate change; good gloss, comfortable hand, will bring you a better experience . ", "Exquisite Appearance: This stylish mirror features a unique metal geometric sunburst frame with an antique gold finish & beveled glass mirror with crystal clear reflection. ", "Fashionable and Beautiful: It could eliminate the reflection distortion usually found in low-end mirrors. Its smooth edges are hand polished, not only for safety but also to enhance their beauty. ", "Brighten Up Your Home: It having a large reflective surface that can project light around the room, making it easy to brighten your home and give a better sense of light and space. ", "Widely Used: This stylish and eye-catching decor piece is the perfect addition to your bathroom, living room, bedroom, office, and entryway. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08QC9M6TK/ref=twister_B08QDDV6YB?_encoding=UTF8&psc=1", "value": "Antique Gold", "price_string": "$395.14", "price": 395.14, "image": "https://m.media-amazon.com/images/I/51DDEeAcT+L.jpg"}, {"is_selected": true, "url": null, "value": "Champagne", "price_string": "$395.14", "price": 395.14, "image": "https://m.media-amazon.com/images/I/51aXslowyFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08QCKL5YQ/ref=twister_B08QDDV6YB?_encoding=UTF8&psc=1", "value": "Gold", "price_string": "$395.14", "price": 395.14, "image": "https://m.media-amazon.com/images/I/51m3u2L1n1L.jpg"}]}, "seller_id": "A391P7L990IM1X", "seller_name": "Worldwide transfer station", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08QCL5SX5", "category": "garden", "query": "Decorative Mirrors", "page": 364, "small_description_old": "About this item High-quality Material: This decorative mirror frame is made of PU (polyurethane) material, environmentally friendly and lightweight, waterproof and moisture-proof, stable flame retardancy, not easy to be deformed by climate change; good gloss, comfortable hand, will bring you a better experience . Exquisite Appearance: This stylish mirror features a unique metal geometric sunburst frame with an antique gold finish & beveled glass mirror with crystal clear reflection. Fashionable and Beautiful: It could eliminate the reflection distortion usually found in low-end mirrors. Its smooth edges are hand polished, not only for safety but also to enhance their beauty. Brighten Up Your Home: It having a large reflective surface that can project light around the room, making it easy to brighten your home and give a better sense of light and space. Widely Used: This stylish and eye-catching decor piece is the perfect addition to your bathroom, living room, bedroom, office, and entryway."}, {"name": "Upgraded Version Regrowth Organic Hair Serum Roller Set, Biotin Hair Growth Serum,Triple Roll-On Massager Hair Growth Essence,for Men Women of All Hair Types (5PCS)", "product_information": {"Manufacturer": "SGHD", "ASIN": "B09PY89B1S", "Best Sellers Rank": ["#837,927 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #3,331 in Hair Regrowth Treatments"]}, "brand": "Brand: SGHD", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SGHD", "full_description": "Product description Features: 1. Balancing oil secretion and repairing damaged scalp hair follicles, and rebuilding the barrier function of the scalp. 2. Restore scalp activity, reduce hair cross. 3. Nourish the scalp gently and promote the absorption of nutrients by hair follicles. 4. Improve nutrient supply, strengthen hair core, stabilize hair roots. 5. Essential oil anti-hair loss liquid, designed for people suffering from hair loss. Suitable for all types of hair loss. Specifications: Net content: 20 ml Size: 12cm* 3cm The package includes: 1/3/5* Upgraded Version\u00a0Regrowth Organic Hair Serum Roller Set Instructions: Apply twice a day for 5 minutes each. Slightly press the tube to eject serum and use the roller head to massage the prone area gently. Tips: 1. Due to the display and light, please focus on the actual product received. 2. Due to manual measurement, please allow an error of 1-2cm.", "pricing": "$21.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51S3V0attGL.jpg", "https://m.media-amazon.com/images/I/51q2dpqid0L.jpg", "https://m.media-amazon.com/images/I/51LCOlMzV8L.jpg", "https://m.media-amazon.com/images/I/51slo8qqgWL.jpg", "https://m.media-amazon.com/images/I/51H53E10ywL.jpg", "https://m.media-amazon.com/images/I/51e0+KUec9L.jpg", "https://m.media-amazon.com/images/I/510dHCLT-uL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Loss Products \u203a Hair Regrowth Treatments", "average_rating": "", "small_description": ["[Upgraded Version]: Upgraded Version The triple-roller structure allows quicker and fuller serum absorption along with gentle massage of the prone area to intensify the metabolism of the scalp. ", "[Organic & Natural Extracts]: The herbal complex works in synergy to stimulate the scalp and roots, as well as awaking blocked follicles to reactivate hair growth to deliver a visible result of increasing the cross-sectional area of each hair strand by 29% and the diameter by 17%. ", "[Prevent Hair Loss]: This powerful treatment protects and nourishes hair and reduces further hair loss and broken hair. It rejuvenates the scalp and hair follicles, prevents further thinning, and promotes new thick hair growth. ", "[Restore Hair Shine]: Provides full organic nutrition for hair roots, making the hair stronger, lustrous, soft. With regular use, you will notice visibly healthier, stronger, thicker hair strands. A beautiful hairstyle will improve your self confidence. ", "[100% Satisfaction Guarantee]: We are so confident that you will like our product. We provide the best customer experience possible. If you have any questions about our products, please feel free to contact us and we will provide you with the best service. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PY575P5/ref=twister_B09PYFZ1ST?_encoding=UTF8&psc=1", "value": "1PCS", "price_string": "$11.99", "price": 11.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PYDDX6B/ref=twister_B09PYFZ1ST?_encoding=UTF8&psc=1", "value": "3PCS", "price_string": "$16.99", "price": 16.99, "image": null}, {"is_selected": true, "url": null, "value": "5PCS", "price_string": "$21.99", "price": 21.99, "image": null}]}, "seller_id": "A33BTPMM33S0UH", "seller_name": "BlackMB", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PY89B1S", "category": "beauty", "query": "Hair Loss Products", "page": 142, "small_description_old": "[Upgraded Version]: Upgraded Version The triple-roller structure allows quicker and fuller serum absorption along with gentle massage of the prone area to intensify the metabolism of the scalp. [Organic & Natural Extracts]: The herbal complex works in synergy to stimulate the scalp and roots, as well as awaking blocked follicles to reactivate hair growth to deliver a visible result of increasing the cross-sectional area of each hair strand by 29% and the diameter by 17%. [Prevent Hair Loss]: This powerful treatment protects and nourishes hair and reduces further hair loss and broken hair. It rejuvenates the scalp and hair follicles, prevents further thinning, and promotes new thick hair growth. [Restore Hair Shine]: Provides full organic nutrition for hair roots, making the hair stronger, lustrous, soft. With regular use, you will notice visibly healthier, stronger, thicker hair strands. A beautiful hairstyle will improve your self confidence. [100% Satisfaction Guarantee]: We are so confident that you will like our product. We provide the best customer experience possible. If you have any questions about our products, please feel free to contact us and we will provide you with the best service."}, {"name": "EZM Deluxe Triple Monitor Mount Stand Free Standing with Grommet Mount Option Supports up to 3 28\" (002-0020)", "product_information": {"Product Dimensions": "33.1 x 15.3 x 5.2 inches", "Item Weight": "30 pounds", "ASIN": "B00SYVE3CI", "Item model number": "002-0020", "Customer Reviews": {"ratings_count": 727, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#848 in Computer Monitor Accessories"], "Is Discontinued By Manufacturer": "No", "Other display features": "Wireless", "Colour": "002-0020", "Manufacturer": "EasyMountLCD", "Date First Available": "December 8, 2011"}, "brand": "Brand: EasyMountLCD", "brand_url": "https://www.amazon.com/EasyMountLCD/b/ref=bl_dp_s_web_5745153011?ie=UTF8&node=5745153011&field-lbr_brands_browse-bin=EasyMountLCD", "full_description": "This sturdy, top-rated, high-quality ergonomic Deluxe Triple Monitor Stand Free Standing allows users to manage multiple programs, spreadsheets simultaneously to increase productivity. It offers users the flexibility to reposition their monitors for maximum comfort and optimum view ability. A perfect solution for limited space applications by removing clutter from the desktop to use work space effectively. This item can be either desktop free standing or bolted on the desktop. Dimensions: H x W x D = 18\" x 61\" x 15\" Main Features: - Supports most widescreen monitors including curved widescreens up to three (3) 27\"/28\"side by side - VESA 75 \u00d775mm or 100 \u00d7100 mm compatible - Monitor viewing height can be easily adjusted by moving the arms along the Pole. The height of each monitor can be adjusted individually - Mounting heads slide(In/Out) along the Curved Arms to facilitate different sizes of screens and easily angled towards the viewer to form a curved \"cockpit style\" effect for comfortable viewing - Features 360\u00b0 (Clockwise/Counter Clockwise) rotating mounting heads to accomodate landscape and portrait modes - Outside mounting heads tilt (Up/Down) 180\u00b0, swivel (Left/Right) 180\u00b0 and rotate (clockwise/counterclockwise) 360\u00b0 - Center mounting head tilts (Up/Down) 30\u00b0, swivels (Left/Right) 30\u00b0 and rotates (clockwise/counterclockwise) 360\u00b0 - The Diameter of the Pole is 1 7/8\" - With a heavy-weighted metal base, easy to install in minutes - Package contains all hardware necessary for mounting - The color of the item is black - Item weighs 31.0 lbs - Item does not include monitors - Item# 002-0020 - Buyer responsible to check the desired mounting surface is strong enough to support the combined weight of the stand and monitors.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31KX1ZEMCHL.jpg", "https://m.media-amazon.com/images/I/419J5j7XvdL.jpg", "https://m.media-amazon.com/images/I/41WK8DlFgvS.jpg", "https://m.media-amazon.com/images/I/41c9eXRNhRL.jpg", "https://m.media-amazon.com/images/I/41picxI6-qS.jpg", "https://m.media-amazon.com/images/I/513E+amapgL.jpg", "https://m.media-amazon.com/images/I/414gdxr5SBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Monitor Accessories", "average_rating": 4.3, "small_description": ["COMPATIBILITY - Holds most widescreen monitors including curved widescreens up to 3 28\" with VESA 75 x 75 mm or 100 x 100 mm Compatible.. Quick release mounting brackets for easy installation ", "THE SIZE OF THE POLE - The Diameter of the Pole is 1 7/8\". ", "ADJUSTIBILITY - Outside mounting heads slide(In/Out) along the Curved Arms to facilitate different sizes of screens and easily angled towards the viewer to form a curved \"cockpit style\" effect for comfortable viewing. Features 360\u00b0 (Clockwise/Counter Clockwise) rotating mounting heads to accomodate landscape and portrait modes. Outside mounting heads tilt (Up/Down) 180\u00b0, swivel (Left/Right) 180\u00b0. Center mounting head tilts (Up/Down) 30\u00b0, swivels (Left/Right) 30\u00b0 ", "MOUNTING OPTIONS - With A Heavy-Weighted Metal Base. Also Can Be Bolted through the desktop, Easy To Install ", "HEIGHT ADJUSTIBILITY - Monitor viewing height can be easily adjusted by moving the arms along the Pole with pre-drilled holes. The height of each monitor can be individually fine tuned +/- 0.5\" for a total approximately 1\" Up/Down "], "total_reviews": 727, "total_answered_questions": 256, "model": "002-0020", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00SYVE3CI", "category": "electronics", "query": "Mounts", "page": 73, "small_description_old": "COMPATIBILITY - Holds most widescreen monitors including curved widescreens up to 3 28\" with VESA 75 x 75 mm or 100 x 100 mm Compatible.. Quick release mounting brackets for easy installation THE SIZE OF THE POLE - The Diameter of the Pole is 1 7/8\". ADJUSTIBILITY - Outside mounting heads slide(In/Out) along the Curved Arms to facilitate different sizes of screens and easily angled towards the viewer to form a curved \"cockpit style\" effect for comfortable viewing. Features 360\u00b0 (Clockwise/Counter Clockwise) rotating mounting heads to accomodate landscape and portrait modes. Outside mounting heads tilt (Up/Down) 180\u00b0, swivel (Left/Right) 180\u00b0. Center mounting head tilts (Up/Down) 30\u00b0, swivels (Left/Right) 30\u00b0 MOUNTING OPTIONS - With A Heavy-Weighted Metal Base. Also Can Be Bolted through the desktop, Easy To Install HEIGHT ADJUSTIBILITY - Monitor viewing height can be easily adjusted by moving the arms along the Pole with pre-drilled holes. The height of each monitor can be individually fine tuned +/- 0.5\" for a total approximately 1\" Up/Down"}, {"name": "Parnevu Leave-In Conditioner For Extra Dry Hair, 16 oz", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 3.75 x 3.75 x 3.75 inches; 1.18 Pounds", "Date First Available\n \u200f": "\u200e\n July 11, 2016", "ASIN\n \u200f": "\u200e\n B00GUQZHJW", "Best Sellers Rank": "#184,258 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#3,718 in Hair Conditioner", "#3,718 in Hair Conditioner": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Parnevu", "brand_url": "https://www.amazon.com/Parnevu/b/ref=bl_dp_s_web_8412755011?ie=UTF8&node=8412755011&field-lbr_brands_browse-bin=Parnevu", "full_description": "Helps prevent split ends, hair breakage and brittleness.", "pricing": "$11.23", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31hZNZF6w9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Conditioners", "average_rating": 4.6, "small_description": [""], "total_reviews": 17, "total_answered_questions": "", "customization_options": "", "seller_id": "ASEVS99O6FS73", "seller_name": "Pharmapacks_", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00GUQZHJW", "category": "beauty", "query": "Hair Coloring Products", "page": 96, "small_description_old": ""}, {"name": "Mattress Solution, 13-Inch Soft Foam Encased Hybrid Eurotop Pillowtop Innerspring Mattress And Split Wood Traditional Box Spring/Foundation Set With Frame, Twin Size 74\" x 38\"", "product_information": {"Item Weight": "\u200e30 pounds", "Product Dimensions": "\u200e74 x 39 x 21 inches", "Country of Origin": "\u200eUSA", "Item model number": "\u200e9001zF-3/3-2S", "ASIN": "B078PKLZFB", "Date First Available": "January 2, 2018"}, "brand": "Brand: Mattress Solution", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Mattress+Solution", "full_description": "\"Would YOU LIKE A GOOD NIGHT SLEEP?\" does it seem like you spend more time tossing and turning than you do enjoying a good night's sleep? Do you wake up to back pain and stiffness that interfere with your day? You don't have to resign yourself to these problems! \"mattress solution\" Mattress and Box Spring with Frame is what you are looking for! This mattress is designed to help you get a perfect nights sleep, the luxurious innerspring mattress uses sophisticated innerspring coil technology to give you soft yet firm support. Foam filled spring pockets make you feel like your sleeping on air. This 13\" High mattress is finished with a Damask cotton pillow top for max comfort and beauty. Premium quilted pillow top mattress has fibers and layers of soft comfort foam in the pillow top for a healthier and luxurious sleeping surface. The inner spring pillow top is designed for use with a platform bed frame or other Centrally supported frame. Compressed and vacuum packed for shipment; can be easily re-located to any room upon arrival. You can improve your sleep and wake up feeling better every day. *will give you A BETTER NIGHT'S REST, 357 innerspring mattress reduces pressure points to help you fall asleep more quickly. *the perfect LEVEL OF SUPPORT, The right top mattress is firm but still has some give for your comfort. *shipped fully assembled AND READY TO use, Open the box and the mattress is ready to use! *our mattress has THE BEST QUALITY! They're made in the USA out of premium materials. *this mattress is ORTHOPEDIC, it reduces back pain by supporting every inch of your spine. *meets federal standards 1632 and 1633 fire code. *the box spring is 8 inches high. \"we IT AND SO DO OUR COSTUMERS. \" so what are you waiting for? Click on the Buy button to order your Mattress and Box Spring now! .", "pricing": "$520.00", "list_price": "", "availability_status": "Available to ship in 1-2 days.", "images": ["https://m.media-amazon.com/images/I/51d-3zqJcwL.jpg", "https://m.media-amazon.com/images/I/51Xngt8VHbL.jpg", "https://m.media-amazon.com/images/I/41xtplzZfbL.jpg", "https://m.media-amazon.com/images/I/51wuk+0HUpL.jpg", "https://m.media-amazon.com/images/I/410REX6r0nL.jpg", "https://m.media-amazon.com/images/I/316+81q5rDL.jpg", "https://m.media-amazon.com/images/I/31N2QKbupoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Mattresses & Box Springs \u203a Mattress & Box Spring Sets", "average_rating": "", "small_description": ["QUALITY YOU CAN FELL:Only the best in raw materials are used to ensure durability and practicality. The high density foam used makes the mattress highly durable & long-lasting. The high number of coil counts gives the mattress the comfort level desired. ", "EURO TOP POLLOW-LIKE LAYER : The Spring Air Euro top mattress tend to be softer then pillow tops and have more technical design for cushion-firm feel. Perfect for all sleeping positions. It's a combination of orthopedic support and comfort. ", "FOMEENCASEMENT FOR SOLID EDGE SUPPORT : The foam encased edge support system in this spring air mattress is bordered with high density foam. With the foam encasement, the sleeping area is enlarged, as well as providing a solid sitting surface. ", "QUILTED CUSHION TOP: The beautiful knit woven fabric stitched with tack and jump quilting creates a deep sumptuous look to your mattress. The fabric color may vary. The quilting layer adds breathability, temperature regulation and fire retardant to the mattress. ", "STORNG DURABLE BOX SPRING: This 8 inch wood box spring/ foundation supports all mattress types and actually increases the mattress's longevity by preventing sagging. No assembly is required it ships ready to use, just place the mattress on top and enjoy a restful sleep ", "AVAILABLE IN ALL SIZES-Twin: 74\u201d x 38\u201d, Twin Extra Long: 79\u201d x 38\u201d, Full: 74\u201d x 53\u201d, Full Extra Long: 79\u201d x 53\u201d, Queen: 79\u201d x 59\u201d, King: 79\u201d x 59\u201d, California King: 84\u201d x 72 "], "total_reviews": "", "total_answered_questions": "", "model": "\u200e9001zF-3/3-2S", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B078PKLZFB", "category": "garden", "query": "Mattresses", "page": 349, "small_description_old": "About this item QUALITY YOU CAN FELL:Only the best in raw materials are used to ensure durability and practicality. The high density foam used makes the mattress highly durable & long-lasting. The high number of coil counts gives the mattress the comfort level desired. EURO TOP POLLOW-LIKE LAYER : The Spring Air Euro top mattress tend to be softer then pillow tops and have more technical design for cushion-firm feel. Perfect for all sleeping positions. It's a combination of orthopedic support and comfort. FOMEENCASEMENT FOR SOLID EDGE SUPPORT : The foam encased edge support system in this spring air mattress is bordered with high density foam. With the foam encasement, the sleeping area is enlarged, as well as providing a solid sitting surface. QUILTED CUSHION TOP: The beautiful knit woven fabric stitched with tack and jump quilting creates a deep sumptuous look to your mattress. The fabric color may vary. The quilting layer adds breathability, temperature regulation and fire retardant to the mattress. STORNG DURABLE BOX SPRING: This 8 inch wood box spring/ foundation supports all mattress types and actually increases the mattress's longevity by preventing sagging. No assembly is required it ships ready to use, just place the mattress on top and enjoy a restful sleep AVAILABLE IN ALL SIZES-Twin: 74\u201d x 38\u201d, Twin Extra Long: 79\u201d x 38\u201d, Full: 74\u201d x 53\u201d, Full Extra Long: 79\u201d x 53\u201d, Queen: 79\u201d x 59\u201d, King: 79\u201d x 59\u201d, California King: 84\u201d x 72 \n \u203a See more product details"}, {"name": "DiySecurityCameraworld- Wireless Security Camera Outdoor 1080P PoE WiFi IP Camera 180 Degree Fisheye Panoramic Surveillance Video Camera Night Vision 60ft Waterproof", "product_information": {"Item Weight": "15 ounces", "ASIN": "B07GFS3MNT", "Item model number": "IPCX-HX-HC28391080ASP", "Customer Reviews": {"ratings_count": null, "stars": "3.0 out of 5 stars"}, "Best Sellers Rank": ["#18,700 in Camera & Photo Products (See Top 100 in Camera & Photo Products) #3,096 in Bullet Surveillance Cameras"], "Is Discontinued By Manufacturer": "No", "Date First Available": "July 12, 2018", "Manufacturer": "DiysecurityCameraWorld"}, "brand": "Brand: DIYSecuritycameraworld", "brand_url": "https://www.amazon.com/DIYSecuritycameraworld/b/ref=bl_dp_s_web_3024532011?ie=UTF8&node=3024532011&field-lbr_brands_browse-bin=DIYSecuritycameraworld", "full_description": "Item: IPCX-HX-HC28391080ASPOutdoor PoE WIFI IP Camera 1080P Fisheye Lens 180 Degrees View Security Bullet Day/Night View Home CCTV Surveillance CamerasFeatures :Remotely view the Camera from Multi-device: We provide the Mobile App and Windows PC and OS software to view the camera remotely (Doesn't support Mac) . Just download the mobile App \u201cCamHi\u201d and PC software then connect the camera to internet to get living stream. You can also view the camera via web browsersPacking List:", "pricing": "$80.95", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31RRNOG2BaS.jpg", "https://m.media-amazon.com/images/I/51vXPb-WsGL.jpg", "https://m.media-amazon.com/images/I/51r8jOwBzHL.jpg", "https://m.media-amazon.com/images/I/411pZAq6jeL.jpg", "https://m.media-amazon.com/images/I/51jHQxzgy3L.jpg", "https://m.media-amazon.com/images/I/41EGSWYrtwL.jpg", "https://m.media-amazon.com/images/I/51Rvkb0PJTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Video Surveillance \u203a Surveillance Cameras \u203a Bullet Cameras", "average_rating": 3, "small_description": ["FULL HD 1080P & GREAT NIGHT VISION: TRUE FULL HD 1080p Video Resolution(1920*1080), Built-in High-Resolution Lens & IR Cut filter, provides nice, clear & colorful image in the daytime, Built in 3 PCS Array LED, provides up to 60 ft great night vision. ", "QUICK & EASY SETUP: DHCP, 2.4Ghz WiFi, really easy to install and setup ", "MOTION DETECTION: Support Movement detection & capture. Real-time motion alert will be pushed to your phone & email simultaneously, email photo, ftp photo & ftp video could also be set, provides a great solution for security monitor. ", "1.25mm Fisheye Lens, Support Two Way Audio ", "Power Input: PoE/12VDC (power Adapter Not Included) "], "total_reviews": 1, "total_answered_questions": "", "model": "IPCX-HX-HC28391080ASP", "customization_options": "", "seller_id": "A39SEPFGJRWIH4", "seller_name": "DSC Technology", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07GFS3MNT", "category": "electronics", "query": "Video Surveillance", "page": 235, "small_description_old": "About this item\n \nFULL HD 1080P & GREAT NIGHT VISION: TRUE FULL HD 1080p Video Resolution(1920*1080), Built-in High-Resolution Lens & IR Cut filter, provides nice, clear & colorful image in the daytime, Built in 3 PCS Array LED, provides up to 60 ft great night vision. QUICK & EASY SETUP: DHCP, 2.4Ghz WiFi, really easy to install and setup MOTION DETECTION: Support Movement detection & capture. Real-time motion alert will be pushed to your phone & email simultaneously, email photo, ftp photo & ftp video could also be set, provides a great solution for security monitor. 1.25mm Fisheye Lens, Support Two Way Audio Power Input: PoE/12VDC (power Adapter Not Included)"}, {"name": "WFOM Levitating Floating Speaker Bluetooth Speaker Creative Magnetic Levitation Speaker 360 Degree Rotations Ubwoofer", "product_information": {"Manufacturer": "WFOM", "ASIN": "B09B265D1J"}, "brand": "Brand: WFOM", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=WFOM", "full_description": "\u2606 \u2606360 degree surround soundWhile playing while rotatingSuspended design, elegant appearanceThe top is a transparent ABS crystal ball, comes with a LED light feature that makes it look very cool when turned on in the dark. so that your speakers out of the ordinaryBuilt-in microphone, support mobile phone hands-free callsBluetooth transmission distance of 10m, compatible with Windows / Android / IOS system\u2606 \u2606Type : Bluetooth SpeakerConnection method : BluetoothInterface Type : USBPlay time: 8 hoursBluetooth protocol: 4.0Effective distance: 10 metersFunction: voice prompt, call functionPlay format: WAV, MP3, WMAMode of operation: buttonWhether to support APP: NoIs there a radio function: noneMaterial: ABSDimensions: 78x78mm (sphere,3.07inches) 180x180x50mm /7.09*7.09*1.97inches (base)\u2606 \u2606Package Included:1 x Levitation Bluetooth Speaker1 x power adapter1 x USB charging line1 x manual", "pricing": "$188.19", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41PF7bT51+L.jpg", "https://m.media-amazon.com/images/I/51nDDhawyhL.jpg", "https://m.media-amazon.com/images/I/41sD8lSM6fL.jpg", "https://m.media-amazon.com/images/I/41jv15fpa2L.jpg", "https://m.media-amazon.com/images/I/51RqZj2lxEL.jpg", "https://m.media-amazon.com/images/I/41RwlJ1giDL.jpg", "https://m.media-amazon.com/images/I/41Zyc-bZv9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Portable Audio & Video \u203a Portable Speakers & Docks \u203a Portable Bluetooth Speakers", "average_rating": "", "small_description": ["Special sound guide cone designed to increase surround Stereo.500mAh enables a breakthrough of 8 hours playtime, get ready for hours of non-stop fun! ", "Soft LED light design.Supports: Voice Guidance, touching keys, with 3014 led light, Hand-free phone call, Mobile Phone and PC use,The ABS material makes the whole speaker light and portable ", "The speaker orb is floating and spinning above a magnetic base without touching any other object, it works with zero-loss audio streaming and produces a better sound.The speaker Orb is portable for music on the go. ", "Thank you for visiting our store. We hope to bring you a happy shopping experience. We will serve you wholeheartedly. If you have any questions and dissatisfaction, we will reply to you as soon as possible. Expect new products to bring you new surprises. ", "The perfect accessory that completes any decor at your home and office, always enjoy vivid, full-bodied music, wherever your music adventure takes you. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2FBL43YGI64F2", "seller_name": "FGDFGDFAR", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09B265D1J", "category": "electronics", "query": "Bluetooth Speakers", "page": 372, "small_description_old": "Special sound guide cone designed to increase surround Stereo.500mAh enables a breakthrough of 8 hours playtime, get ready for hours of non-stop fun! Soft LED light design.Supports: Voice Guidance, touching keys, with 3014 led light, Hand-free phone call, Mobile Phone and PC use,The ABS material makes the whole speaker light and portable The speaker orb is floating and spinning above a magnetic base without touching any other object, it works with zero-loss audio streaming and produces a better sound.The speaker Orb is portable for music on the go. Thank you for visiting our store. We hope to bring you a happy shopping experience. We will serve you wholeheartedly. If you have any questions and dissatisfaction, we will reply to you as soon as possible. Expect new products to bring you new surprises. The perfect accessory that completes any decor at your home and office, always enjoy vivid, full-bodied music, wherever your music adventure takes you."}, {"name": "MAGCOMSEN Men's Gym Workout Shorts with Pockets Mesh Liner Quick Dry Running Shorts for Jogging, Hiking", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.07 x 7.5 x 1.89 inches; 3.28 Ounces", "Item model number\n \u200f": "\u200e\n MCSH19M004-148-Black Grey-M", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n June 13, 2019", "ASIN\n \u200f": "\u200e\n B07T2CYCZL", "Best Sellers Rank": "#596,518 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#593 in Men's Running Shorts #1,864 in Men's Athletic Shorts", "#593 in Men's Running Shorts": "", "#1,864 in Men's Athletic Shorts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$17.98$17.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41tba19g1CL.jpg", "https://m.media-amazon.com/images/I/31rHHluEiML.jpg", "https://m.media-amazon.com/images/I/41s0PKsKYIL.jpg", "https://m.media-amazon.com/images/I/41xxoAD0sdL.jpg", "https://m.media-amazon.com/images/I/41sBy2Z1N3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Shorts", "average_rating": 4.3, "small_description": ["Fabrics: 50 Denier, quick-dry, lightweight and stretchy fabric wicks sweat away and helps keep you dry and comfy ", "Mesh Liner: This Running Shorts with ultra soft mesh liner, provide a breathable, dry fit when exercising ", "Special Design: Stylish patchwork design, 4-way stretch fabrication allows greater mobility and maintains shape ", "Features: 2 side pockets for convenience, elastic waist with drawstring closure for better fit ", "Perfect for: Indoor and outdoor sports like running, workout, gym, hiking, camping, climbing "], "total_reviews": 244, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07T2CYCZL/ref=twister_B07T3DYPXD", "value": "#1 Black Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41X8dCwTtkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T2CQLY2/ref=twister_B07T3DYPXD", "value": "#1 Grey Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tKN6v6KaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B087RCQJSR/ref=twister_B07T3DYPXD", "value": "#1 Grey Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41HRmj+WReL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T2DCVLC/ref=twister_B07T3DYPXD", "value": "#1 Light Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41t0L09sSrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B087JMQXQQ/ref=twister_B07T3DYPXD", "value": "#1 Pure Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41KuE7Wsu+L.jpg"}, {"is_selected": true, "url": null, "value": "#2 Army Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tba19g1CL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WDHNY96/ref=twister_B07T3DYPXD", "value": "#2 Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41E7h0ZzXzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WDHPG1V/ref=twister_B07T3DYPXD", "value": "#2 Dark Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410iXts5DuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WDGZYNY/ref=twister_B07T3DYPXD", "value": "#2 Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/414763Xh2RL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WJSH39Q/ref=twister_B07T3DYPXD", "value": "#2 Light Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ACrzacXOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WDHMC9S/ref=twister_B07T3DYPXD", "value": "#2 Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IomeHANBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08B1LWKLX/ref=twister_B07T3DYPXD", "value": "#2 Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41QfWHYsWKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T2CPQBF/ref=twister_B07T3DYPXD", "value": "#1 Black Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41PD5YpxXwL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "30", "asin": "B07WDHH6JQ"}, {"is_selected": false, "is_available": true, "value": "32", "asin": "B07WDGRCNJ"}, {"is_selected": false, "is_available": true, "value": "34", "asin": "B07WDHTVHZ"}, {"is_selected": false, "is_available": true, "value": "36", "asin": "B07WMMYB6G"}, {"is_selected": false, "is_available": true, "value": "38", "asin": "B07WDHWYVY"}, {"is_selected": false, "is_available": true, "value": "40", "asin": "B07WFLP2X1"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07WMMYB6G", "category": "fashion", "query": "Men's Shorts", "page": 66, "small_description_old": "Fabrics: 50 Denier, quick-dry, lightweight and stretchy fabric wicks sweat away and helps keep you dry and comfy Mesh Liner: This Running Shorts with ultra soft mesh liner, provide a breathable, dry fit when exercising Special Design: Stylish patchwork design, 4-way stretch fabrication allows greater mobility and maintains shape Features: 2 side pockets for convenience, elastic waist with drawstring closure for better fit Perfect for: Indoor and outdoor sports like running, workout, gym, hiking, camping, climbing"}, {"name": "Mens Shorts Casual Printed Lace Up Pocket Beach Shorts Regular-fit Lightweight Lining Mens Sweatpants Hawaii Pants", "product_information": {"Item model number\n \u200f": "\u200e\n polo shirts for men", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 20, 2022", "Manufacturer\n \u200f": "\u200e\n men's t-shirts mens dress shirts", "ASIN\n \u200f": "\u200e\n B09QSQ76XS", "": ""}, "brand": "Brand: zuwimk", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=zuwimk", "full_description": "", "pricing": "$12.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/4194c3hEdwL.jpg", "https://m.media-amazon.com/images/I/513Zze1269L.jpg", "https://m.media-amazon.com/images/I/51x4qkMAOCL.jpg", "https://m.media-amazon.com/images/I/41tAZQzxAML.jpg", "https://m.media-amazon.com/images/I/51-MsHqHnDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shorts \u203a Flat Front", "average_rating": "", "small_description": ["Best Gifts for Men/Dad/Boyfriends\ud83c\udf1fNOT AMAZON SIZE\ud83c\udf1fPlease Refer to the IMAGE size chart before ordering! ", "\u3010ABOUT SHIPPING\u3011Expedited Shipping:3-5 Days.\ud83d\udc3e Standard shipping:10-15 Days.\ud83d\udc3e Within 24 Hours Shipping Out. ", "Clearance!Sale!Cheap! closure ", "tshirts shirts for men dress shirts for men hawaiian shirt for men mens t shirt funny t shirts ", "\ud83d\udc2c High-Quality Fabric: Mens Tshirt Experience A Better Workout,Combined with breathable and comfortable fabric, this mens tee shirts T-shirt polo shirts allows you to sweat and breathe better during most outdoor activities, keeping your body in good shape for the challenge of pushing your exercise limits. ", "\ud83c\udf3c Versatility: Breathable & Functional muscle tee shirt, comfortable exercise gym t-shirt, bodybuilding top, mens muscle fitness t-shirt breathable gym workout short sleeve slim fit bodybuilding tee shirt hipster shirts, mens short sleeve muscle tshirts fashion workout fitted bodybuilding tee top athletic gym plain shirts.Whether you're training, on the go or at home, this t-shirt is perfect for you, its breathability and comfort will give you a great experience for all-round movement. ", "mens gym workout hoodies bodybuilding muscle athletic short sleeve hooded workout tank top casual sleeveless shirt with pocket for gym sport and training gym workout hoodies bodybuilding muscle athletic short sleeve hooded 3 pack mens 3 pack workout tank top sleeveless muscle tee fitness bodybuilding gym t shirts polo shirts regular fit contrast color athletics sport workout polo men's floral fashion sleeveless tees all over print casual tank top shirts for men , men beach floral print shirts loose fit boho tropical flower shirts tee tops quick dry bodybuilding stringer tank top y-back gym workout shirts sleeveless training t shirt light grey mens floral hawaiian shirts short sleeve button down beach shirts mens flower shirt hawaiian sets casual button down short sleeve shirt mens luxury casual button down short sleeve hawaiian shirt suits summer romper stripe print short sleeve jumpsuit drawstring waist one piece shorts set casual coverall, men 2 piece outfit summer stylish casual hawaiian shirts graphic tees tank tops shorts set beach tracksuit pockets men's floral tracksuit summer 2 piece short sleeve shirt and shorts jogging sweatsuit men hooded tracksuit zipper jumpsuit casual contrast color short sleeve comfy playsuit shorts mens hawaiian short sleeve shirt suits flower print suits tropical 2pc sets button down shirts and shorts outfit workout tracksuit short sleeve bodybuilding"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4194c3hEdwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QSPPK98/ref=twister_B09QSQV6CY", "value": "Light Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wGX26I9HL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09QSQ76XS"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09QSQFZ1S"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09QSQY77L"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09QSQ8RT9"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09QSQ1FSM"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09QSQ8RT9", "category": "fashion", "query": "Men's Shorts", "page": 140, "small_description_old": "Best Gifts for Men/Dad/Boyfriends\ud83c\udf1fNOT AMAZON SIZE\ud83c\udf1fPlease Refer to the IMAGE size chart before ordering! \u3010ABOUT SHIPPING\u3011Expedited Shipping:3-5 Days.\ud83d\udc3e Standard shipping:10-15 Days.\ud83d\udc3e Within 24 Hours Shipping Out. Clearance!Sale!Cheap! closure tshirts shirts for men dress shirts for men hawaiian shirt for men mens t shirt funny t shirts \ud83d\udc2c High-Quality Fabric: Mens Tshirt Experience A Better Workout,Combined with breathable and comfortable fabric, this mens tee shirts T-shirt polo shirts allows you to sweat and breathe better during most outdoor activities, keeping your body in good shape for the challenge of pushing your exercise limits. \ud83c\udf3c Versatility: Breathable & Functional muscle tee shirt, comfortable exercise gym t-shirt, bodybuilding top, mens muscle fitness t-shirt breathable gym workout short sleeve slim fit bodybuilding tee shirt hipster shirts, mens short sleeve muscle tshirts fashion workout fitted bodybuilding tee top athletic gym plain shirts.Whether you're training, on the go or at home, this t-shirt is perfect for you, its breathability and comfort will give you a great experience for all-round movement. mens gym workout hoodies bodybuilding muscle athletic short sleeve hooded workout tank top casual sleeveless shirt with pocket for gym sport and training gym workout hoodies bodybuilding muscle athletic short sleeve hooded 3 pack mens 3 pack workout tank top sleeveless muscle tee fitness bodybuilding gym t shirts polo shirts regular fit contrast color athletics sport workout polo men's floral fashion sleeveless tees all over print casual tank top shirts for men \n men beach floral print shirts loose fit boho tropical flower shirts tee tops quick dry bodybuilding stringer tank top y-back gym workout shirts sleeveless training t shirt light grey mens floral hawaiian shirts short sleeve button down beach shirts mens flower shirt hawaiian sets casual button down short sleeve shirt mens luxury casual button down short sleeve hawaiian shirt suits summer romper stripe print short sleeve jumpsuit drawstring waist one piece shorts set casual coverallmen 2 piece outfit summer stylish casual hawaiian shirts graphic tees tank tops shorts set beach tracksuit pockets men's floral tracksuit summer 2 piece short sleeve shirt and shorts jogging sweatsuit men hooded tracksuit zipper jumpsuit casual contrast color short sleeve comfy playsuit shorts mens hawaiian short sleeve shirt suits flower print suits tropical 2pc sets button down shirts and shorts outfit workout tracksuit short sleeve bodybuildingShow more"}, {"name": "Bigen Semi-Permanent Haircolor #Bb1 Blue Black 3 Ounce (88ml) (2 Pack)", "product_information": {"Item Weight\n \u200f": "\u200e\n 7.68 Ounces", "UPC\n \u200f": "\u200e\n 033859020028 725410754984", "ASIN\n \u200f": "\u200e\n B00NFV6V3Q", "Best Sellers Rank": "#310,887 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#3,602 in Hair Color", "#3,602 in Hair Color": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Bigen Store", "brand_url": "https://www.amazon.com/stores/Bigen/page/2303EF53-EF1E-462C-A498-F48E4AD0975E?ref_=ast_bln", "full_description": "", "pricing": "$11.11", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41gZcLLQ+VL.jpg", "https://m.media-amazon.com/images/I/41DLGAwyu2L.jpg", "https://m.media-amazon.com/images/I/41gZcLLQ+VL.jpg", "https://m.media-amazon.com/images/I/41DLGAwyu2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Coloring Products \u203a Hair Color", "average_rating": 3.9, "small_description": [""], "total_reviews": 28, "total_answered_questions": "", "customization_options": "", "seller_id": "ASEVS99O6FS73", "seller_name": "Pharmapacks_", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00NFV6V3Q", "category": "beauty", "query": "Hair Coloring Products", "page": 52, "small_description_old": ""}, {"name": "Lotus78 Makeup Bag. Cosmetic Bag for Women. Elegant Toiletry Bag for Women. Make Up Bag with Brush Organizer. Travel Makeup Bag for Girls. Makeup Bag Organizer with Detachable Small Cosmetic Bag. (Pink)", "product_information": {"Package Dimensions": "10.64 x 8.9 x 2.4 inches", "Item Weight": "5.1 ounces", "Department": "Womens", "ASIN": "B09JJ5W1N4", "Country of Origin": "China", "Customer Reviews": {"ratings_count": 20, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#13,132 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #79 in Cosmetic Bags"]}, "brand": "Brand: LOTUS78", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=LOTUS78", "full_description": "", "pricing": "$9.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31GnwcWSW6L.jpg", "https://m.media-amazon.com/images/I/51OGtGNTLoL.jpg", "https://m.media-amazon.com/images/I/41tGsUW7iPL.jpg", "https://m.media-amazon.com/images/I/41PXdmMOTJL.jpg", "https://m.media-amazon.com/images/I/41IuASUJ1kL.jpg", "https://m.media-amazon.com/images/I/31uxkw4nzBL.jpg", "https://m.media-amazon.com/images/I/51VW9rdub5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Cosmetic Bags", "average_rating": 4.5, "small_description": ["[ MATERIAL ] : Our makeup case is made of waterproof high-quality fabric. Our travel toiletry bag for women is lightweight, well-stitched and portable with small cosmetic travel bag. Makeup organizer bag fits well in suitcase and easy to carry. ", "[ ULTIMATE DESIGN FOR BEST STORAGE ] : Lotus78 makeup travel bag is designed with spacious makeup box with elegant travel cosmetic bag detachable from inner side of large makeup case organizer. This makeup pouch is equipped with brush compartment protecting them from dust. ", "[ TRAVEL PARTNER & UTILITY ] : Our four eye catching variations of travel bags for women is perfect travel partner. Makeup bag large is storage for skin care products, nail accessories and cosmetics. Small cosmetic bags meant for small objects to carry. ", "[ EYE-CATHCING COLORS ] : Lotus78 travel makeup organizer comes with 4 variations of elegant eye-catching colors including light green, baby pink, baby blue and grey. Our travel bag for toiletries measures 6.0 x 6.2 x 3.1 inches. ", "[ MULTI-FUNCTIONAL USE ] : These toiletry bags for traveling women are handy to use in multiple occasions and travelling. Small detachable cosmetic bag may be used separately and fit well in women's purse. Our make up bags are best choice as gift. "], "total_reviews": 20, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JHXQ9DK/ref=twister_B09JHRP12Z?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$9.99", "price": 9.99, "image": "https://m.media-amazon.com/images/I/51qOIYcdskL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JJ2RHMV/ref=twister_B09JHRP12Z?_encoding=UTF8&psc=1", "value": "Green", "price_string": "$9.99", "price": 9.99, "image": "https://m.media-amazon.com/images/I/315mBDX-FuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JHZZV5Y/ref=twister_B09JHRP12Z?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "$9.99", "price": 9.99, "image": "https://m.media-amazon.com/images/I/51qOIYcdskL.jpg"}, {"is_selected": true, "url": null, "value": "Pink", "price_string": "$9.99", "price": 9.99, "image": "https://m.media-amazon.com/images/I/51qOIYcdskL.jpg"}]}, "seller_id": "A1PCLNGRR993AC", "seller_name": "Lotus78", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09JJ5W1N4", "category": "beauty", "query": "Bags & Cases", "page": 13, "small_description_old": "[ MATERIAL ] : Our makeup case is made of waterproof high-quality fabric. Our travel toiletry bag for women is lightweight, well-stitched and portable with small cosmetic travel bag. Makeup organizer bag fits well in suitcase and easy to carry. [ ULTIMATE DESIGN FOR BEST STORAGE ] : Lotus78 makeup travel bag is designed with spacious makeup box with elegant travel cosmetic bag detachable from inner side of large makeup case organizer. This makeup pouch is equipped with brush compartment protecting them from dust. [ TRAVEL PARTNER & UTILITY ] : Our four eye catching variations of travel bags for women is perfect travel partner. Makeup bag large is storage for skin care products, nail accessories and cosmetics. Small cosmetic bags meant for small objects to carry. [ EYE-CATHCING COLORS ] : Lotus78 travel makeup organizer comes with 4 variations of elegant eye-catching colors including light green, baby pink, baby blue and grey. Our travel bag for toiletries measures 6.0 x 6.2 x 3.1 inches. [ MULTI-FUNCTIONAL USE ] : These toiletry bags for traveling women are handy to use in multiple occasions and travelling. Small detachable cosmetic bag may be used separately and fit well in women's purse. Our make up bags are best choice as gift."}, {"name": "Stouffer's Party Size Lasagna with Meat Sauce Frozen Meal", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 13 x 10.6 x 2.6 inches; 5.9 Pounds", "Item model number\n \u200f": "\u200e\n 55131", "UPC\n \u200f": "\u200e\n 013800551313", "Manufacturer\n \u200f": "\u200e\n Nestle", "ASIN\n \u200f": "\u200e\n B000YG3DWC", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Stouffer's", "brand_url": "https://www.amazon.com/Stouffers/b/ref=bl_dp_s_web_20389794011?ie=UTF8&node=20389794011&field-lbr_brands_browse-bin=Stouffer%27s", "full_description": "Stouffer's Party Size Lasagna with Meat Sauce Frozen Meal offers an easy solution for lunch or dinner. This Party Size frozen meal includes freshly made pasta with 100% pure beef, herb seasoned tomato sauce, and real mozzarella cheese. This classic family meal is sure to satisfy every taste bud. This frozen dinner offers 17 grams of protein per serving and is made with no preservatives. Stouffer's Party Size meals are easy to prepare, making this frozen entree a great choice when you're looking to entertain without the hassle. Keep Stouffer's lasagna frozen meals in the freezer until you're ready to enjoy. Freshly made pasta layered between real ricotta cheese, seasoned meat and tomato sauce.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51z5EoQzMZL.jpg", "https://m.media-amazon.com/images/I/512x8PrgaLL.jpg", "https://m.media-amazon.com/images/I/31R6xDP1v2L.jpg", "https://m.media-amazon.com/images/I/41wrOm8dHrS.jpg", "https://m.media-amazon.com/images/I/51MLXTIWb0L.jpg", "https://m.media-amazon.com/images/I/41wrOm8dHrS.jpg", "https://m.media-amazon.com/images/I/51jE-cRok5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Frozen \u203a Meals & Entrees", "average_rating": 4.7, "small_description": ["One 90 oz box of Stouffer's Party Size Lasagna with Meat Sauce Frozen Meal. EBT item in eligible states ", "Family frozen dinner packed with quality ingredients and your favorite homemade flavor ", "This frozen lasagna includes freshly made pasta with 100% pure beef, herb seasoned tomato sauce, and real mozzarella cheese ", "This frozen meal offers 17 grams of protein per serving, and is made with no preservatives ", "This Stouffers lasagna is simple to prepare, ideal for an easy dinner "], "total_reviews": 1284, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B000YG3DWC", "category": "grocery", "query": "Meat Substitutes", "page": 80, "small_description_old": "About this item One 90 oz box of Stouffer's Party Size Lasagna with Meat Sauce Frozen Meal. EBT item in eligible states Family frozen dinner packed with quality ingredients and your favorite homemade flavor This frozen lasagna includes freshly made pasta with 100% pure beef, herb seasoned tomato sauce, and real mozzarella cheese This frozen meal offers 17 grams of protein per serving, and is made with no preservatives This Stouffers lasagna is simple to prepare, ideal for an easy dinner"}, {"name": "Ercadio 24 Pack Soccer Cupcake Toppers Black Glitter Football Cupcake Topper Sports Theme Soccer Party Baby Shower Cake Decoration", "product_information": {"Package Dimensions": "5.28 x 5.08 x 0.39 inches", "Item Weight": "2.11 ounces", "ASIN": "B07TVMCK3F", "Best Sellers Rank": ["#71,069 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food) #1,351 in Cupcake Toppers (Grocery & Gourmet Food)"], "Customer Reviews": {"ratings_count": 159, "stars": "4.6 out of 5 stars"}, "Manufacturer": "Ercadio"}, "brand": "Visit the Ercadio Store", "brand_url": "https://www.amazon.com/stores/Ercadio/page/84124BCC-3E69-47F6-A3F2-3A2A16593D0E?ref_=ast_bln", "full_description": "", "pricing": "$6.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41K3OcYOeOL.jpg", "https://m.media-amazon.com/images/I/51EUJhTkyWL.jpg", "https://m.media-amazon.com/images/I/51mZLLbyKCL.jpg", "https://m.media-amazon.com/images/I/51KOtdCKgtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Frosting, Icing & Decorations \u203a Cupcake Toppers", "average_rating": 4.6, "small_description": ["Special soccer sports theme cupcake toppers will make the cupcake more lovely and striking, increase the fun to your party. ", "Material: High quality 300g glitter cardboard with food grade toothpicks sticks.attractive and durable\uff01 ", "Package/Size\uff1aPack of 24 pcs,4pcs of each pattern .all our picks were assembled,Sturdy! Size:4.9*1.6 inch / 5*2.7 inch / 5.2*2.3 inch / 5.5*2 inch / 5*3.1 inch / 5.4*2.4 inch\uff08including stick\uff09 ", "Perfect for: soccer ball party,sports theme party,baby shower party,birthday party, wedding party cake decoration. It also can be used as cupcake picks,ice cream picks, appetizer picks, fruit picks, or party food picks. ", "Friendly Reminder:Designed for single-sided,another side is plain white.Only for decoration purposes, this is not edible and please do NOT use it in oven or microwave. "], "total_reviews": 159, "total_answered_questions": "", "customization_options": "", "seller_id": "AX50CHV1AAY8B", "seller_name": "Ercadio", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07TVMCK3F", "category": "grocery", "query": "Toothpicks", "page": 137, "small_description_old": "About this item\n \nSpecial soccer sports theme cupcake toppers will make the cupcake more lovely and striking, increase the fun to your party. Material: High quality 300g glitter cardboard with food grade toothpicks sticks.attractive and durable\uff01 Package/Size\uff1aPack of 24 pcs,4pcs of each pattern .all our picks were assembled,Sturdy! Size:4.9*1.6 inch / 5*2.7 inch / 5.2*2.3 inch / 5.5*2 inch / 5*3.1 inch / 5.4*2.4 inch\uff08including stick\uff09 Perfect for: soccer ball party,sports theme party,baby shower party,birthday party, wedding party cake decoration. It also can be used as cupcake picks,ice cream picks, appetizer picks, fruit picks, or party food picks. Friendly Reminder:Designed for single-sided,another side is plain white.Only for decoration purposes, this is not edible and please do NOT use it in oven or microwave."}, {"name": "MarieBelle Milk/Hazelnut Hot Chocolate 10 oz Tin - Easy to Prepare Full-Flavored Traditional Cr\u00e8me de Chocolat European Style Hot Chocolate Beverage Mix", "product_information": {"Item Weight\n \u200f": "\u200e\n 10 Ounces", "UPC\n \u200f": "\u200e\n 877708004544", "Manufacturer\n \u200f": "\u200e\n MarieBelle", "ASIN\n \u200f": "\u200e\n B088WFD1XQ", "Best Sellers Rank": "#249,807 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#421 in Baking Cocoa", "#421 in Baking Cocoa": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the MarieBelle Store", "brand_url": "https://www.amazon.com/stores/MarieBelle/page/778F6FC7-ED81-4BFB-A10C-06B777FE00B0?ref_=ast_bln", "full_description": "Thick and decadent, our 38% Milk Chocolate and Hazelnut Hot Chocolate contains rich, South American single-origin pure milk chocolate instead of cocoa powder. It's also remarkably versatile and easy to prepare. Mix with boiling water to create a full-flavored cup of European-style hot chocolate or with milk for a more traditional American-style drink. Refrigerate the European version to transform into a cr\u00e8me de chocolat.", "pricing": "$38.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51TDl-DuSBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Baking Chocolates, Carob & Cocoa \u203a Cocoa", "average_rating": 5, "small_description": ["38% Milk Chocolate and Hazelnut Hot Chocolate contains rich, South American single-origin pure milk chocolate instead of cocoa powder. ", "Remarkably versatile and easy to prepare. ", "Mix with boiling water to create a full-flavored cup of European-style hot chocolate or with milk for a more traditional American-style drink. ", "Can be transformed into a cr\u00e8me de chocolat with refrigeration. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A1KKEBBGWA0L46", "seller_name": "Mariebelle", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B088WFD1XQ", "category": "grocery", "query": "Beverages", "page": 255, "small_description_old": "38% Milk Chocolate and Hazelnut Hot Chocolate contains rich, South American single-origin pure milk chocolate instead of cocoa powder. Remarkably versatile and easy to prepare. Mix with boiling water to create a full-flavored cup of European-style hot chocolate or with milk for a more traditional American-style drink. Can be transformed into a cr\u00e8me de chocolat with refrigeration."}, {"name": "Champion Women's Reverse Weave Crew", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 15.16 x 11.61 x 2.36 inches; 1.76 Pounds", "Item model number\n \u200f": "\u200e\n GF850", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n November 15, 2019", "Manufacturer\n \u200f": "\u200e\n Champion", "ASIN\n \u200f": "\u200e\n B081KKCY2Z", "Best Sellers Rank": "#274,245 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#183 in Women's Sweatshirts", "#183 in Women's Sweatshirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Champion Store", "brand_url": "https://www.amazon.com/stores/Champion/page/9315F82B-8BDF-4711-8450-2428416D0F96?ref_=ast_bln", "full_description": "Think outside the gym! Champion Authentic Originals are athletic wear classics updated with the latest in fabric and fashion.", "pricing": "$35.00$117.47", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41wOCdsdsDL.jpg", "https://m.media-amazon.com/images/I/41DmNPYdc8L.jpg", "https://m.media-amazon.com/images/I/515x5cLydzL.jpg", "https://m.media-amazon.com/images/I/517s+bs-1LL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Sweatshirts", "average_rating": 4.3, "small_description": ["1.25 inch embroidered C logo ", "Heavyweight (12oz.) ", "Double needle construction for extra durability ", "Signature 1x1 rib side panels for increased range of motion ", "Women's fit; C logo patch on left sleeve; cut on the cross grain to reduce length shrinkage "], "total_reviews": 58, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B081KKHLGZ"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B081KJYSHC"}, {"is_selected": false, "is_available": false, "value": "Medium", "asin": "B081KJRFS5"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B081KJLMST"}, {"is_selected": false, "is_available": false, "value": "X-Large", "asin": "B081KJL7T2"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B081KKJ76J"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B081KKCY2Z/ref=twister_B08QS6VDDN", "value": "Black - Y06145", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31N9GPc5V6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B081KKJ75G/ref=twister_B08QS6VDDN", "value": "Gfs Silver Grey - Y06145", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31NP2fzgt9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B081KK7LXR/ref=twister_B08QS6VDDN", "value": "White - Y06145", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31lAIka9QVL.jpg"}, {"is_selected": true, "url": null, "value": "Scarlet -Y06145", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wOCdsdsDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B081KK198Q/ref=twister_B08QS6VDDN", "value": "Cornflower Teal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sGN+ZIaYL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B081KJLMST", "category": "fashion", "query": "Women's Fashion Hoodies & Sweatshirts", "page": 4, "small_description_old": "82% Cotton, 18% Polyester Imported No Closure closure Machine Wash 1.25 inch embroidered C logo Heavyweight (12oz.) Double needle construction for extra durability \n Signature 1x1 rib side panels for increased range of motionWomen's fit; C logo patch on left sleeve; cut on the cross grain to reduce length shrinkageShow more"}, {"name": "Owl Statue for Modern Home Decor Accents Living Room, Bedroom Figurines,TV Stand Resin Decorations,Kitchen for Shelf,Office Desktop,Book Shelves,Unique for Animal Lovers(2 PCS)", "product_information": {"Package Dimensions": "7.72 x 5.08 x 2.99 inches", "Item Weight": "5 ounces", "ASIN": "B09C896SN6", "Customer Reviews": {"ratings_count": 55, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#80,731 in Home & Kitchen (See Top 100 in Home & Kitchen) #58 in Statues"], "Date First Available": "August 10, 2021"}, "brand": "Brand: Garden 4 you", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Garden+4+you", "full_description": "", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51KobLGuL3L.jpg", "https://m.media-amazon.com/images/I/61MjXijSFiL.jpg", "https://m.media-amazon.com/images/I/519JlwHhwxL.jpg", "https://m.media-amazon.com/images/I/518wT0s+1SL.jpg", "https://m.media-amazon.com/images/I/51AaHzk54tL.jpg", "https://m.media-amazon.com/images/I/51Utwmp+yeL.jpg", "https://m.media-amazon.com/images/I/51WRrKDzIqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Home D\u00e9cor Accents \u203a Sculptures \u203a Statues", "average_rating": 4.4, "small_description": ["\u3010PRODUCT INFORMATION\u3011:There are two owls in a box. Resin material.Environmentally Protective, No Color Fading.Size:3.4*1.5*3.5 inch,Each Weighs: 5 oz. Cute Decor Owl Home Decor. ", "\u3010SMALL and EXQUISITE\u3011:The owl statue has bright eyes and exquisite workmanship. It symbolizes strength, stability and wisdom; it is a very cute statue, and its small and unique shape is the highlight of home decorations. ", "\u3010HOME DECORATION\u3011:A small object as a decoration, placed on the table in the living room decor, bedroom decor,bathroom decor,kitchen decor, office decor, house decor,indoor decor or on the cabinet, it is very suitable. ", "\u3010BEST GIFT\u3011:The creative handmade owl statue is the most suitable gift for your best friend or family member, bird animal lover, and sculpture lover. A unique birthday gift for an elder, a gift for a friend, a Valentine's Day gift for her. Mother's Day gift, teacher gift, friendship gift. Halloween decorations, Thanksgiving decorations. 2021 unique silver owl Christmas ornament Christmas decoration gift. ", "\u3010VARIETY of OPTIONS\u3011:We have three different styles for you to choose from, each of which is very delicate and beautiful and unique in shape. "], "total_reviews": 55, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "1pair", "price_string": "$11.99", "price": 11.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8J8S69/ref=twister_B09DCN6WN2?_encoding=UTF8&psc=1", "value": "2pcs", "price_string": "$15.99", "price": 15.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NR78Z2X/ref=twister_B09DCN6WN2?_encoding=UTF8&psc=1", "value": "2pcs-1", "price_string": "$12.99", "price": 12.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NR7J83T/ref=twister_B09DCN6WN2?_encoding=UTF8&psc=1", "value": "3pcs", "price_string": "$17.99", "price": 17.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8L4JKT/ref=twister_B09DCN6WN2?_encoding=UTF8&psc=1", "value": "4pcs", "price_string": "$19.99", "price": 19.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2T7RC8/ref=twister_B09DCN6WN2?_encoding=UTF8&psc=1", "value": "Green", "price_string": "$9.99", "price": 9.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2T2WQJ/ref=twister_B09DCN6WN2?_encoding=UTF8&psc=1", "value": "Ivory", "price_string": "$9.99", "price": 9.99, "image": null}]}, "seller_id": "A125YTPR4I2RP", "seller_name": "Garden 4 you", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09C896SN6", "category": "garden", "query": "TV Stands", "page": 278, "small_description_old": "About this item\n \n\u3010PRODUCT INFORMATION\u3011:There are two owls in a box. Resin material.Environmentally Protective, No Color Fading.Size:3.4*1.5*3.5 inch,Each Weighs: 5 oz. Cute Decor Owl Home Decor. \u3010SMALL and EXQUISITE\u3011:The owl statue has bright eyes and exquisite workmanship. It symbolizes strength, stability and wisdom; it is a very cute statue, and its small and unique shape is the highlight of home decorations. \u3010HOME DECORATION\u3011:A small object as a decoration, placed on the table in the living room decor, bedroom decor,bathroom decor,kitchen decor, office decor, house decor,indoor decor or on the cabinet, it is very suitable. \u3010BEST GIFT\u3011:The creative handmade owl statue is the most suitable gift for your best friend or family member, bird animal lover, and sculpture lover. A unique birthday gift for an elder, a gift for a friend, a Valentine's Day gift for her. Mother's Day gift, teacher gift, friendship gift. Halloween decorations, Thanksgiving decorations. 2021 unique silver owl Christmas ornament Christmas decoration gift. \u3010VARIETY of OPTIONS\u3011:We have three different styles for you to choose from, each of which is very delicate and beautiful and unique in shape."}, {"name": "Furniture of America Canopy, California King, Bronze", "product_information": {"Item Weight": "\u200e121.2 pounds", "Product Dimensions": "\u200e89.25 x 75.88 x 79.5 inches", "Item model number": "\u200eFA-CM7424BR-CK", "ASIN": "B07FFHJ8YL", "Customer Reviews": {"ratings_count": null, "stars": "1.0 out of 5 stars"}, "Best Sellers Rank": ["#3,452,042 in Home & Kitchen (See Top 100 in Home & Kitchen) #7,287 in Beds"], "Date First Available": "May 25, 2018"}, "brand": "Visit the Furniture of America Store", "brand_url": "https://www.amazon.com/stores/Furniture+of+America/page/F4906CC2-B454-4D40-82FA-82244D79FE3D?ref_=ast_bln", "full_description": "The Mallie Canopy Bed creates a stunning look with its distinguished canopy design and elegant ball finials along the top. Intricate curved panels highlight the headboard and footboard while the canopy supports define each corner. Crafted from sturdy metal, the Mallie Canopy is built to last.", "pricing": "$674.98", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41gyJsdRsJL.jpg", "https://m.media-amazon.com/images/I/51km5Bci5mL.jpg", "https://m.media-amazon.com/images/I/51i2MELQdxS.jpg", "https://m.media-amazon.com/images/I/51EoLuu4F8S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Beds", "average_rating": 1, "small_description": ["Bronze finish ", "Materials: metal ", "Transitional style ", "Stunning canopy design with ball finial decorations ", "Intricate curved panel headboard and footboard "], "total_reviews": 1, "total_answered_questions": "", "model": "\u200eFA-CM7424BR-CK", "customization_options": "", "seller_id": "A1QFM750CLWIW0", "seller_name": "Cymax", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07FFHJ8YL", "category": "garden", "query": "Bedframes", "page": 247, "small_description_old": "About this item Stunning canopy design with ball finial decorations Intricate curved panel headboard and footboard \n \u203a See more product details"}, {"name": "Alegria Women's Kourtney", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.1 x 7.9 x 4.6 inches; 2 Pounds", "Item model number\n \u200f": "\u200e\n KOU-974", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n July 27, 2018", "Manufacturer\n \u200f": "\u200e\n Pepper Gate Footwear Inc.", "ASIN\n \u200f": "\u200e\n B07FYH6X7N", "Best Sellers Rank": "#685,916 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,458 in Women's Mules & Clogs #1,923 in Women's Flats", "#1,458 in Women's Mules & Clogs": "", "#1,923 in Women's Flats": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Alegria by PG Lite", "brand_url": "https://www.amazon.com/Alegria-by-PG-Lite/b/ref=bl_sl_s_sh_web_3016539011?ie=UTF8&node=3016539011&field-lbr_brands_browse-bin=Alegria+by+PG+Lite", "full_description": "Alegria Footwear Size Guide The Alegria\u00ae Kourtney offers complete comfort with a fun and fashionable style. Stain-resistant leather uppers with a round toe. Lightly cushioned collar. Mary Jane strap feature a hook-and-loop fastener with a decorative buckle. Designed with an extra roomy fit to allow toes to splay. Soft and breathable leather linings. Removable and replaceable footbed combines cork, latex and memory foam to deliver personalized comfort and support. Slip-resistant polyurethane outsole offers a rocker bottom designed to reduce pressure on the central metatarsal and heel, absorbing shock and offering steady traction as you move. Imported. Click here to learn more about Alegria outsole technology. Measurements: Heel Height: 1 1\u20442 in Weight: 12 oz Product measurements were taken using size 39 (US Women's 9-9.5), width Regular. Please note that measurements may vary by size. Weight of footwear is based on a single item, not a pair.", "pricing": "$62.99$129.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41gxr+og3wL.jpg", "https://m.media-amazon.com/images/I/21481R5p4GL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Mules & Clogs", "average_rating": 4.4, "small_description": "Adjustable hook-and-loop strap with buckle ornament Leather upper and lining Stain-resistant upper Suede leather insole Slip-resistant outsole", "total_reviews": 521, "total_answered_questions": 30, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "5", "asin": "B06W51MMKY"}, {"is_selected": false, "is_available": false, "value": "5-5.5 Wide", "asin": "B07R4FTR6Q"}, {"is_selected": false, "is_available": false, "value": "12", "asin": "B07H6TLRPH"}, {"is_selected": false, "is_available": false, "value": "35 M EU", "asin": "B076HW981R"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07FYH6X7N/ref=twister_B073V7TBPF", "value": "Anise Baby Tumble", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xUsAg801L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07H6TLRPH/ref=twister_B073V7TBPF", "value": "Aura", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41PWTr0kUdL.jpg"}, {"is_selected": true, "url": null, "value": "Black Napa", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gxr+og3wL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B3Y411V/ref=twister_B073V7TBPF", "value": "Burgundy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tGb4QYaFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07R4FTR6Q/ref=twister_B073V7TBPF", "value": "Black Nappa", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41XD+DMmvjL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B076HW981R/ref=twister_B073V7TBPF", "value": "Slickery", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qQmi3FNeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075HZQ25W/ref=twister_B073V7TBPF", "value": "Glimmer Glam", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/511fUSuxjbL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B06W51MMKY", "category": "fashion", "query": "Women's Mules & Clogs", "page": 84, "small_description_old": "Adjustable hook-and-loop strap with buckle ornament Leather upper and lining Stain-resistant upper Suede leather insole Slip-resistant outsole"}, {"name": "Lurrose 10Pcs Travel Cream Jars Empty Refillable Mini Cream Container Cosmetic Makeup Container Samples Jars for Foundation 200ml", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.15 x 3.15 x 2.48 inches; 1.01 Pounds", "Item model number\n \u200f": "\u200e\n 1831D7K18E", "Manufacturer\n \u200f": "\u200e\n Lurrose", "ASIN\n \u200f": "\u200e\n B09KCF4KPT", "": ""}, "brand": "Visit the Lurrose Store", "brand_url": "https://www.amazon.com/stores/Lurrose/page/4CD32519-0F99-4F89-9BB9-7EFBF13048A8?ref_=ast_bln", "full_description": "Description This is a set of empty containers. Flat bottom design for stable placing, sealed performance is good enough, and durable for long time use. suitable for eyeshadow, creams, balms, ointments, lotions, powder, etc. Perfect choice for travel or home daily use. Features- Color: Transparent;- Material: PS, PP;- Size: 8. 00X8. 00X6. 30cm/ 3. 14X 3. 14X2. 48in;- Capacity: 200ml;- The box is made of high- class material, practical and durable for a long period of use.- The cosmetic jar for convenient use, a practical gift for your friends, families and so on.- Portable sizes and lightweight make it suitable for travel, trip, camping or just use at home.- Also perfect storage dispenser for your shampoo conditioner, lotion, cream, etc.- good PS and PP materials, smooth surface, making it convenient to clean.- Size: 8x8cm Package Including 10 x Boxes", "pricing": "$22.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21HpYDwklfL.jpg", "https://m.media-amazon.com/images/I/41o0GAfow-L.jpg", "https://m.media-amazon.com/images/I/41wwQOXO+eL.jpg", "https://m.media-amazon.com/images/I/31gQrOw0SOL.jpg", "https://m.media-amazon.com/images/I/31s9u0R2Z5L.jpg", "https://m.media-amazon.com/images/I/21eUrDB+ynL.jpg", "https://m.media-amazon.com/images/I/41dZmvfO--L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": "", "small_description": ["The box is made of high- class material, practical and durable for a long period of use. ", "The cosmetic jar for convenient use, a practical gift for your friends, families and so on. ", "Also perfect storage dispenser for your shampoo conditioner, lotion, cream, etc. ", "Portable sizes and lightweight make it suitable for travel, trip, camping or just use at home. ", "good PS and PP materials, smooth surface, making it convenient to clean. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09KCDCGQC/ref=twister_B09KCFPWT7", "value": "5.3x5.3cm", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "8x8cm", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09KCDLH1H/ref=twister_B09KCFPWT7?_encoding=UTF8&psc=1", "value": "Transparent", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21iBGpbjq6L.jpg"}, {"is_selected": true, "url": null, "value": "Transparent 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21HpYDwklfL.jpg"}]}, "seller_id": "A3R98EG4N1XEC", "seller_name": "Vestles", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09KCF4KPT", "category": "beauty", "query": "Refillable Containers", "page": 155, "small_description_old": "The box is made of high- class material, practical and durable for a long period of use. The cosmetic jar for convenient use, a practical gift for your friends, families and so on. Also perfect storage dispenser for your shampoo conditioner, lotion, cream, etc. Portable sizes and lightweight make it suitable for travel, trip, camping or just use at home. good PS and PP materials, smooth surface, making it convenient to clean."}, {"name": "ZHDD Tops for Mens, Men's Knight Punk Vintage Style Long Sleeve Asymmetric Hem Cowl Neck Teen Boys Gothic Pullover", "product_information": {"Item Weight\n \u200f": "\u200e\n 9.52 Ounces", "Item model number\n \u200f": "\u200e\n ZHDD-210929", "Department\n \u200f": "\u200e\n Men", "Date First Available\n \u200f": "\u200e\n September 29, 2021", "Manufacturer\n \u200f": "\u200e\n ZHDD", "ASIN\n \u200f": "\u200e\n B09HH27MPM", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: ZHDD", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=ZHDD", "full_description": "Hi! We've waited so long for you\uff0cWelcome to ZHDD Store.Sincerity, enthusiasm and professional are our service tenet, you can create your own fashion in our store. I believe you can be satisfied with this\u00a0experience!Gender: Mens / Teen BoysSeason: Fall / Summer / WinterOccasion: Daily, Sports, Workout, Holiday Vacation, Beach, Office, Casual, Party, Gym, StreetMaterial: Polyester, Cotton, SpandexStyle: Cool, Causal, Fashion, Outdoor LifeStyle, StylishFeatures:\u3010Material\u3011Material: 90% Polyester, 10% Cotton, super comfy, soft and skin friendly.\u3010Fashion Tops\u3011These trendy shirts hoodies are prefect with sports pants, shorts, jeans, sandals, sneakers for a trendy look;\u3010Occasions\u3011Fashion Halloween Hooded Sweatshirt Hoodies/Workout Athletic T-Shirt/Slim Fit Sport Zipper Tops, bring you men's athletic performance shirts that deliver more flexibility and a wider range of motions. Suitable for daily wear, Running, cycling,\u00a0gym training or yoga, boxing, casual, street. Perfect gifts for your boyfriend, son, husband.\u3010Size\u3011Size: Asian Size; Before ordering, please carefully check the size chart; Please allow 1-2cm differences due to manual measurementSize Chart:Size: S US/EU Size: S Bust: 98cm/38.6\" Shoulder: 44cm/17.3\" Sleeve: 64cm/25.2\" Length : 67cm/26.4\"\u00a0Size: M US/EU Size: M Bust: 103cm/40.6\" Shoulder: 45cm/17.7\" Sleeve: 65cm/25.6\" Length : 68cm/26.8\"\u00a0Size: L US/EU Size: M Bust: 108cm/42.5\" Shoulder: 46cm/18.1\" Sleeve: 66cm/26.0\" Length : 69cm/27.2\"\u00a0Size: XL US/EU Size: L Bust: 113cm/44.5\" Shoulder: 47cm/18.5\" Sleeve: 67cm/26.4\" Length : 70cm/27.6\"\u00a0Size: XXL US/EU Size: L Bust: 118cm/46.5\" Shoulder: 48cm/18.9\" Sleeve: 68cm/26.8\" Length : 71cm/28.0\"", "pricing": "$4.98$7.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41-hZxdOImL.jpg", "https://m.media-amazon.com/images/I/41-hZxdOImL.jpg", "https://m.media-amazon.com/images/I/41wuTYHuXKL.jpg", "https://m.media-amazon.com/images/I/41iS2br4QOL.jpg", "https://m.media-amazon.com/images/I/417PoYHKwoL.jpg", "https://m.media-amazon.com/images/I/41zYsPh5JaL.jpg", "https://m.media-amazon.com/images/I/41cjvCn+hdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 5, "small_description": ["\u3010Size Notice\u3011\uff1a Asian sizes, runs smaller 1-2 size than the US size.Please refer to the size chart in the picture.For example, if you are M size in US, we advise L or XL for our size. ", "\u3010Shipping\u3011\uff1aItems will arrive in 10-18 business days. ", "\u2714 Today's Big Promotion \u2714 Buy 1 get 5% off, Buy 2 get 15% off, Buy 3 get 20% off. ", "linen button shirts/graphic t-shirts/business casual tshirts/coats/jackets/sports sweatshirts pants tracksuits outfits sets for mens/juniors/male/teens closure ", "Mens Shirts T-shirts Tops Clearance Hot Sale ", "long sleeve tee mens,hooded long sleeve shirt,men's casual button down shirts,hawaiian shirts near me,navy blue button up shirt,vintage long sleeve shirts,long sleeve hawaiian shirt,red and white t shirt,athletic fit dress shirts,camo shirts for men,t shirt cotton,green collared shirt,camo long sleeve shirt,4x t shirts,woven shirt,mens waffle shirt,short sleeve work shirt,red and black flannel shirt,waffle thermal shirt,viscose shirt men,vertical striped shirt mens ", "flannel jackets mens,hooded flannels,white shirt with collar,tee s,button up shirts white,button down shirts white,shirts for men long sleeve,fall shirts for men,jeans shirt,check shirt,plain white t shirt,navy blue shirt,printed shirts for men,sports t shirts,long sleeve tops,red t shirt,branded shirts for men,plain black t shirt,button down,collar t shirt,crew neck t shirt,best shirts for men,olive green shirt,blue t shirt,light blue shirt,gym t shirt,sky blue shirt,half sleeve shirt , black graphic tees,mens rugby shirts,dashiki shirt,red shirt for men,merino t shirt,printed t shirts for men,charlie brown shirt,red long sleeve shirt,best flannel shirts,blue shirts,plain black shirt,brown t shirt,camouflage t shirt,mens oversized t shirt,slim fit shirts,cool shirts for men,striped long sleeve shirt,french cuff,mens shirts sale,white long sleeve,navy blue t shirt,merino wool t shirt,chinese collar shirts,vertical striped shirt,men's v neck t shirts,green shirt men,wool shirt, t shirts cotton long sleeve shirts white plain shirt tri blend t shirt mens longline t shirt striped long sleeve black and white graphic tee cool shirts plain tee shirts royal blue graphic tee no sleeve shirt muscle fit shirt t shirts mens type of shirt grey graphic tee green t shirt mens long tees vintage tees men grey shirt mens nirvana in utero shirt for men orange shirt mens style t shirt golf tee shirts black and red graphic tee white designer t shirt fish shirt 5x t shirts, button up t shirt black graphic t shirt 3xlt t shirts king shirt white designer shirt 6xl shirts black and white shirt graphic tees near me red white and blue shirts 6xl t shirts long sleeve hoodie black and yellow graphic tee black and white striped shirt mens orange t shirt mens crew shirts large tall t shirts 1776 t shirt mens mesh shirt green t shirts best graphic tees for men hooded t shirt mens mens green shirt white graphic t shirt navy blue long sleeve shirt men's"], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "157- Army Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-hZxdOImL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HGVJLLH/ref=twister_B09HH2NSSK", "value": "157- Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31t+uvIoXUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HGV13L2/ref=twister_B09HH2NSSK", "value": "157- Dark Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41j7Bkj2utL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HGPMQHL/ref=twister_B09HH2NSSK", "value": "158- Army Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41deQOLmDdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HGD8JQT/ref=twister_B09HH2NSSK", "value": "158- Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41R7d63ZE0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HGXWJ2J/ref=twister_B09HH2NSSK", "value": "158- White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31W3CMgo45L.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09HH27MPM"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09HGQN4HL"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09HGCGFD5"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09HGWK1R9"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09HGFV91W"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09HGFV91W", "category": "fashion", "query": "Men's Suits & Sport Coats", "page": 7, "small_description_old": "\u3010Size Notice\u3011\uff1a Asian sizes, runs smaller 1-2 size than the US size.Please refer to the size chart in the picture.For example, if you are M size in US, we advise L or XL for our size. \u3010Shipping\u3011\uff1aItems will arrive in 10-18 business days. \u2714 Today's Big Promotion \u2714 Buy 1 get 5% off, Buy 2 get 15% off, Buy 3 get 20% off. linen button shirts/graphic t-shirts/business casual tshirts/coats/jackets/sports sweatshirts pants tracksuits outfits sets for mens/juniors/male/teens closure Mens Shirts T-shirts Tops Clearance Hot Sale long sleeve tee mens,hooded long sleeve shirt,men's casual button down shirts,hawaiian shirts near me,navy blue button up shirt,vintage long sleeve shirts,long sleeve hawaiian shirt,red and white t shirt,athletic fit dress shirts,camo shirts for men,t shirt cotton,green collared shirt,camo long sleeve shirt,4x t shirts,woven shirt,mens waffle shirt,short sleeve work shirt,red and black flannel shirt,waffle thermal shirt,viscose shirt men,vertical striped shirt mens flannel jackets mens,hooded flannels,white shirt with collar,tee s,button up shirts white,button down shirts white,shirts for men long sleeve,fall shirts for men,jeans shirt,check shirt,plain white t shirt,navy blue shirt,printed shirts for men,sports t shirts,long sleeve tops,red t shirt,branded shirts for men,plain black t shirt,button down,collar t shirt,crew neck t shirt,best shirts for men,olive green shirt,blue t shirt,light blue shirt,gym t shirt,sky blue shirt,half sleeve shirt \n black graphic tees,mens rugby shirts,dashiki shirt,red shirt for men,merino t shirt,printed t shirts for men,charlie brown shirt,red long sleeve shirt,best flannel shirts,blue shirts,plain black shirt,brown t shirt,camouflage t shirt,mens oversized t shirt,slim fit shirts,cool shirts for men,striped long sleeve shirt,french cuff,mens shirts sale,white long sleeve,navy blue t shirt,merino wool t shirt,chinese collar shirts,vertical striped shirt,men's v neck t shirts,green shirt men,wool shirtt shirts cotton long sleeve shirts white plain shirt tri blend t shirt mens longline t shirt striped long sleeve black and white graphic tee cool shirts plain tee shirts royal blue graphic tee no sleeve shirt muscle fit shirt t shirts mens type of shirt grey graphic tee green t shirt mens long tees vintage tees men grey shirt mens nirvana in utero shirt for men orange shirt mens style t shirt golf tee shirts black and red graphic tee white designer t shirt fish shirt 5x t shirtsbutton up t shirt black graphic t shirt 3xlt t shirts king shirt white designer shirt 6xl shirts black and white shirt graphic tees near me red white and blue shirts 6xl t shirts long sleeve hoodie black and yellow graphic tee black and white striped shirt mens orange t shirt mens crew shirts large tall t shirts 1776 t shirt mens mesh shirt green t shirts best graphic tees for men hooded t shirt mens mens green shirt white graphic t shirt navy blue long sleeve shirt men'sShow more"}, {"name": "Naim Mu-so Qb V2 Multi-Room Wireless Music System (Black)", "product_information": {"Product Dimensions": "8.35 x 8.58 x 8.23 inches", "Item Weight": "15.95 pounds", "ASIN": "B07YN72RH4", "Item model number": "NAIMMU-SOQB-2ND", "Batteries": "1 CR2 batteries required. (included)", "Customer Reviews": {"ratings_count": 31, "stars": "3.9 out of 5 stars"}, "Best Sellers Rank": ["#3,065 in Portable Bluetooth Speakers #27,387 in MP3 & MP4 Player Accessories"], "Is Discontinued By Manufacturer": "No", "Date First Available": "October 11, 2019", "Manufacturer": "Naim"}, "brand": "Brand: Naim", "brand_url": "https://www.amazon.com/Naim/b/ref=bl_dp_s_web_9951141011?ie=UTF8&node=9951141011&field-lbr_brands_browse-bin=Naim", "full_description": "A streaming speaker for audiophiles Naim Audio has upped their wireless music game with the redesigned Mu-so Qb 2nd Generation. This compact, cube-shaped speaker offers intuitive wireless streaming with app-based control from your smartphone or tablet. And when connected to your network via an Ethernet cable, it can play even higher-resolution music files than the original Mu-so Qb. That includes downloads from HDtracks , TIDAL's high-res Masters tier, and other streaming services. Listening notes from Crutchfield writer Eric Angevine \"We recently set up a multi-zone system featuring Naim products in our Vendor Training Room, with the Mu-so Qb 2nd Generation as our featured Zone 1 player. Over the course of a week, Crutchfield employees were encouraged to test out the speaker's performance and ease of use, and I was there for some of the listening sessions. Several colleagues asked me 'Is it supposed to look like that?' as they examined the Qb's unique wrap-around grille. The answer is 'yes' - The Qb's attractive 3D 'wave' design is an intentional aesthetic choice, and one I rather like. First-time users were also rather enamored of the clever controls on top of the cube - the large round knob can be physically turned to raise or lower volume, and it's also a motion-sensitive touchscreen that displays more control buttons. But enough about the Qb's looks. It also sounds dynamite. The Qb was the smallest speaker we included in our demo, but it produced a rich, robust soundstage. If I were building a Naim multi-zone system at home, I'd probably use the Uniti Star in my living room, but the Qb would be ideal for placing in a bedroom or home office.\" - Eric Angevine, Crutchfield Copywriter Redesigned speakers for optimal performance The Mu-so Qb 2nd Generation features a pair of redesigned micro-fiber tweeters and midrange speakers. The speaker array is angled for full, spacious sound.", "pricing": "$1,199.00", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51502U9resL.jpg", "https://m.media-amazon.com/images/I/51tHP2ns8+L.jpg", "https://m.media-amazon.com/images/I/510r4gndopL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Portable Audio & Video \u203a Portable Speakers & Docks \u203a Portable Bluetooth Speakers", "average_rating": 3.9, "small_description": ["high-resolution playback up to 24-bit/384kHz resolution (48kHz over wireless network) ", "wired connections includea 3.5mm stereo analog, USB port, Ethernet, and optical digital ", "can be part of a Naim multi-room wireless audio system "], "total_reviews": 31, "total_answered_questions": 10, "model": "NAIMMU-SOQB-2ND", "customization_options": "", "seller_id": "A2LXBKOLL3J3K6", "seller_name": "Kellards", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07YN72RH4", "category": "electronics", "query": "Multiroom Wireless Systems", "page": 1, "small_description_old": "About this item\n \nhigh-resolution playback up to 24-bit/384kHz resolution (48kHz over wireless network) wired connections includea 3.5mm stereo analog, USB port, Ethernet, and optical digital can be part of a Naim multi-room wireless audio system"}, {"name": "BRST AC Power Cord Outlet Socket Cable Plug Lead for Panasonic SC-HT830V DVD/VCR Combo Home Theater System", "product_information": {"Manufacturer": "\u200eBRST", "Size": "\u200eSmall", "Color": "\u200eBlack", "ASIN": "B09GVF8WWY", "Date First Available": "September 22, 2021"}, "brand": "Brand: BRST", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=BRST", "full_description": "\ud83d\udcafSpecifications Input AC: 100-240V world use \ud83d\udcafAbout BRST The Amazon leading Laptop Charger Brand. Focus on laptop charger design and sales, committed to providing professional products and services. \ud83d\udcafBRST Laptop Charger / Cord / Cable All Power Adapters&Cables comply with top industry standards and include numerous safety mechanisms, including protection against short-circuiting, overvoltage, overcurrent, and internal overheating. All of our products are put through rigorous quality control procedures to ensure safe, reliable operation. \ud83d\udcafBRST ChargeSmart Technology Power adapter&cord made of high-temperature-resistant materials, safe and intelligent chip technology. It can charge quickly and stably at any time. \ud83d\udcafBRST Global Customer Care+ Customer needs are what we care about, we back them all with 36-month customer support and provide friendly, easy-to-reach technical support.", "pricing": "$9.93", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41-l4hcY7fS.jpg", "https://m.media-amazon.com/images/I/41RiSqA0OES.jpg", "https://m.media-amazon.com/images/I/41Ai08OTudS.jpg", "https://m.media-amazon.com/images/I/41ys4FOBpYS.jpg", "https://m.media-amazon.com/images/I/41BO0hj7ZOS.jpg", "https://m.media-amazon.com/images/I/41lqWtBAQwS.jpg", "https://m.media-amazon.com/images/I/41r8WIkFX+S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Power Cables", "average_rating": "", "small_description": ["\ud83d\udcaf\u3010Specifications\u3011: Laptop Charger / Adapter / Cable worldwide input voltage range: 100-240V 50/60HZ ", "\ud83d\udcaf\u3010Compatible With\u3011:Our product is the replacement.not orginal,but All Laptop Chargers&Cables have been 100% tested ensure it works with the models shown in th title. ", "\ud83d\udcaf\u3010Certified\u3011: All our products are CE FCC RoHS approved with over-voltage,over-current,over-load,short-circuit protection.Each product undergoes a 48-hour aging test. ", "\ud83d\udcaf\u3010Best Service\u3011: We offer a no-questions-asked full money back guarantee. Additionally, for 3 year from the date of purchase, we will exchange your product free of charge should it become defective. 24-hour customer service. ", "BRST AC Power Cord Outlet Socket Cable Plug Lead for Panasonic SC-HT830V DVD/VCR Combo Home Theater System "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2QAHKW0CW5L4K", "seller_name": "SFTC Power", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GVF8WWY", "category": "electronics", "query": "VCRs", "page": 185, "small_description_old": "\ud83d\udcaf\u3010Specifications\u3011: Laptop Charger / Adapter / Cable worldwide input voltage range: 100-240V 50/60HZ \ud83d\udcaf\u3010Compatible With\u3011:Our product is the replacement.not orginal,but All Laptop Chargers&Cables have been 100% tested ensure it works with the models shown in th title. \ud83d\udcaf\u3010Certified\u3011: All our products are CE FCC RoHS approved with over-voltage,over-current,over-load,short-circuit protection.Each product undergoes a 48-hour aging test. \ud83d\udcaf\u3010Best Service\u3011: We offer a no-questions-asked full money back guarantee. Additionally, for 3 year from the date of purchase, we will exchange your product free of charge should it become defective. 24-hour customer service. BRST AC Power Cord Outlet Socket Cable Plug Lead for Panasonic SC-HT830V DVD/VCR Combo Home Theater System \n \u203a See more product details"}, {"name": "Native Forest Mushroom Pieces and Stems, 4 oz", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 8.5 x 11.25 x 3 inches; 4 Ounces", "UPC\n \u200f": "\u200e\n 043182008716", "Manufacturer\n \u200f": "\u200e\n Native Forest", "ASIN\n \u200f": "\u200e\n B00CQ7PQYU", "Best Sellers Rank": "#291,804 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#141 in Canned & Jarred Mushrooms", "#141 in Canned & Jarred Mushrooms": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Native Forest", "brand_url": "https://www.amazon.com/Native-Forest/b/ref=bl_dp_s_web_2597122011?ie=UTF8&node=2597122011&field-lbr_brands_browse-bin=Native+Forest", "full_description": "Organic Mushrooms; Pieces and Stems.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51AULpYVouL.jpg", "https://m.media-amazon.com/images/I/51Uu97WerzL.jpg", "https://m.media-amazon.com/images/I/51JKxy6Id0L.jpg", "https://m.media-amazon.com/images/I/51pHKSl7B2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Canned, Jarred & Packaged Foods \u203a Vegetables \u203a Mushrooms", "average_rating": 4.6, "small_description": ["USDA Organic ", "Gluten Free ", "Kosher "], "total_reviews": 664, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00CQ7PQYU", "category": "grocery", "query": "Cream Cheeses", "page": 25, "small_description_old": "USDA Organic Gluten Free Kosher"}, {"name": "UANGELCARE 6 in 1 Vacuum suction blackhead water hydro dermabrasion facial sprayer beauty machine for skin care", "product_information": {"UPC\n \u200f": "\u200e\n 690770808137", "Manufacturer\n \u200f": "\u200e\n UANGELCARE", "ASIN\n \u200f": "\u200e\n B08FX48B6X", "Best Sellers Rank": "#823,439 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#17,225 in Skin Care Tools", "#17,225 in Skin Care Tools": ""}, "brand": "Brand: UANGELCARE", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=UANGELCARE", "full_description": "", "pricing": "$374.63", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41R13mqB5yL.jpg", "https://m.media-amazon.com/images/I/414km1CL9zL.jpg", "https://m.media-amazon.com/images/I/41bzY3q24vL.jpg", "https://m.media-amazon.com/images/I/51ag0W7ymiL.jpg", "https://m.media-amazon.com/images/I/51Ej1Re2yPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Skin Care Tools", "average_rating": "", "small_description": ["\u2605 \u3010INNOVATIVELY CLEANING TECHNOLOGY\u3011Get better skin cleaning effect than traditional small bubble beauty machine. Suitable for all skin types. Sensitive skin can also be used with confidence. Make the skin more delicate and smooth. ", "\u2605 \u3010ADVANTAGE\u3011Anti-aging beauty facial skin salon home SPA machine features 4 in 1 functional design, 4 functional heads to help you rejuvenate wrinkle moisturizing. This is a painless and comfortable skin care method that you need, safe and effective. Also equipped with a control screen for easy control of strength, time and mode. ", "\u2605 \u3010DEEP CLEANING\u3011Clear skin statum rheum, minimally invasive scar, and clearing blackhead, remove deep skin dirt,supply sufficient water molecules to skin while cleaning ", "\u2605 \u3010EASY TO OPERATE\u30116 Inches LCD screen,6 treatment handles equipped with a bracket for easy access and anti-wrap ", "\u2605 \u3010VIBRATION MASSAGE SKIN\u3011Used the skin care products easier to be absorbed by the skin,like wrinkle/pigmentation removal, skin whitening, eliminates wrinkles and tightens chin lines, reduce eye bags "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1HSGY0XH9L99", "seller_name": "MOGTOmusi", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08FX48B6X", "category": "beauty", "query": "Skin Care Tools", "page": 131, "small_description_old": "\u2605 \u3010INNOVATIVELY CLEANING TECHNOLOGY\u3011Get better skin cleaning effect than traditional small bubble beauty machine. Suitable for all skin types. Sensitive skin can also be used with confidence. Make the skin more delicate and smooth. \u2605 \u3010ADVANTAGE\u3011Anti-aging beauty facial skin salon home SPA machine features 4 in 1 functional design, 4 functional heads to help you rejuvenate wrinkle moisturizing. This is a painless and comfortable skin care method that you need, safe and effective. Also equipped with a control screen for easy control of strength, time and mode. \u2605 \u3010DEEP CLEANING\u3011Clear skin statum rheum, minimally invasive scar, and clearing blackhead, remove deep skin dirt,supply sufficient water molecules to skin while cleaning \u2605 \u3010EASY TO OPERATE\u30116 Inches LCD screen,6 treatment handles equipped with a bracket for easy access and anti-wrap \u2605 \u3010VIBRATION MASSAGE SKIN\u3011Used the skin care products easier to be absorbed by the skin,like wrinkle/pigmentation removal, skin whitening, eliminates wrinkles and tightens chin lines, reduce eye bags"}, {"name": "Hikvision USA DS-7204HUHI-F1/N Hikvision, Tribrid Dvr, 4 Channel, Analog, Auto-Detect, H.264+, 720P, Real-Time/1080P 15+2-4Mp IP Camera, No Hard Drive (Certified Refurbished)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.5 x 11.5 x 19.25 inches; 5 Pounds", "Date First Available\n \u200f": "\u200e\n March 28, 2019", "Manufacturer\n \u200f": "\u200e\n Hikvision Usa", "ASIN\n \u200f": "\u200e\n B07Q8JM1JZ", "Best Sellers Rank": "#3,883 in Surveillance DVR Kits"}, "brand": "Visit the Amazon Renewed Store", "brand_url": "https://www.amazon.com/Amazon-Renewed/b/ref=bl_dp_s_web_12653393011?ie=UTF8&node=12653393011&field-lbr_brands_browse-bin=Amazon+Renewed", "full_description": "This pre-owned or refurbished product has been professionally inspected and tested to work and look like new. How a product becomes part of Amazon Renewed, your destination for pre-owned, refurbished products: A customer buys a new product and returns it or trades it in for a newer or different model. That product is inspected and tested to work and look like new by Amazon-qualified suppliers. Then, the product is sold as an Amazon Renewed product on Amazon. If not satisfied with the purchase, renewed products are eligible for replacement or refund under the Amazon Renewed Guarantee.", "pricing": "$73.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31ZPKlM9S8L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Security & Surveillance \u203a Surveillance Video Equipment \u203a Surveillance DVR Kits", "average_rating": "", "small_description": ["4-ch analog BNC video inputs, HDTVI up to 3MP, CVBS up to 960H ", "2-ch IP video inputs, up to 4MP IP cameras supported ", "HDD is not included, 3.5 inch SATA drive is required for recording ", "Firmware upgradeable from US Hikvision website ", "US support, US warranty, and US Hikvision product "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3A7JEFRSDWEGH", "seller_name": "HIKVISION AUTHORIZED REFURB OUTLET", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07Q8JM1JZ", "category": "electronics", "query": "Analog-to-Digital (DTV) Converters", "page": 20, "small_description_old": "About this item\n \n4-ch analog BNC video inputs, HDTVI up to 3MP, CVBS up to 960H 2-ch IP video inputs, up to 4MP IP cameras supported HDD is not included, 3.5 inch SATA drive is required for recording Firmware upgradeable from US Hikvision website US support, US warranty, and US Hikvision product"}, {"name": "ZEFS--ESD Mini Projector for Movies D29 Native1920x1080 Full HD Projector Android OS (2G+16G) 5G WiFi DLP Proyector Support 4K 3D Zoom Video Game Beamer", "product_information": {"Item Weight": "4.41 pounds", "Department": "Unisex-adult", "Manufacturer": "usfenghezhan", "ASIN": "B09MHLS36W", "Country of Origin": "China"}, "brand": "Brand: ZEFS--ESD", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ZEFS--ESD", "full_description": "We will always provide you with our professional advice, as well as satisfactory and fast customer service.D29 Projector Outstanding Features:6. Support Mira-cast /airplay wireless connect with your smart phone for sharing play. Also Support PPT, Word, EXCEL Directly play.7. Build-inRAM 2G, ROM 16GHDMI Input / USB support HDD play8. 3D support: Yes,real Active Shutter 3D.Mini Size, Light weight. High Brightness, Ultra HD Picture quality.Our D29 projector support Many Kinds Languages, as Follow show,What's in the order package ?-- Below photo Clear show you all accessories in the Package......Model Number: D29Projector Technology : DLP (TI /Texas Instruments )DLP chip Type: 1080P DMD chipBrightness: LED 2000 Lumens (ANSI 600 lumens)Resolution: Native Full HD 1920x1080, support 4K 3DContrast Ratio: 5000:1Light Source: RGB LED lamp, over 50000hours life spanLens: Automatic FocusBuild-in Battery: 8000MAH( able for about 1.5hours playback under Eco Mode)Projection Ratio: 1.2:1 ( 38inches at 1m , 80inches at 2.2m)Projection Size: 40-300inchesProjection Distance : 1-8mProjection Ratio: 4:3/16:9/16:10Keystone: Auto keystone (+/-40 degree)3D types: Real 3D, Active shutter 3DBuild-in Speaker: stereo Speaker 4WInput/Output Ports: HDMI in / USB 2.0 x 2 (support HDD) / Earphone 3.5mm (support connect earphone/external Speaker) 195V 3A DC/ IRProjection Ways: Desk/ Ceiling Mount/Front Projection/Rear ProjectionRemote Control: Yes. IR remote control, 2.4Ghz wirelessProjector size: 93mm Diameter, 161mm HeightProjector Net Weight: 743gPower:50W (Normal) 23W (Eco Mode)Power Supply: DC 15V-3APower Adapter: AC100-240V, 50-60HzBuild-in OS System Spec Data:Operation System:Android 7.1.2Wifi: Dual wifi 2.5G/4G stable wifi signalBluetooth: Bluetooth 4.1CUP: RK3368GPU:Mali450MPCore: 8-core, Cortex A7 processor, Up", "pricing": "$967.76", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41lZNCHSs6L.jpg", "https://m.media-amazon.com/images/I/412PJo3ARVL.jpg", "https://m.media-amazon.com/images/I/41fcbrqdhjL.jpg", "https://m.media-amazon.com/images/I/41Q7kUxK+sL.jpg", "https://m.media-amazon.com/images/I/41blqydqVYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Video Projectors", "average_rating": "", "small_description": ["1.Native Resolution 1920*1080, Elegant Cola Can Design,Artwork level Multimedia Smart build-inAndroid 7.1.2Projector ", "2.Automatic FocusFunction. Change projection Distance,Detection CameraRGB LED lamp,long life as 50000hours ", "3.Dual 2.4G/5GWifi Bluetoothmore stable Wifi wireless signal, more high-speed transmission speed,to meet future high definition and large data wireless transmission needs ", "4. Strong RK3368 8-Core CPU Support4K,supportreal Active Shutter 3D( from USB mode).Not Support blue ray 3D DVD player. ", "5.Build-in 8000MAHPortable Size, 93mm diameter 161mm height.Convenient for Outdoor Use. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ASPXXMW9VK0TE", "seller_name": "usfenghezhan", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MHLS36W", "category": "electronics", "query": "Projectors", "page": 372, "small_description_old": "About this item\n \n1.Native Resolution 1920*1080, Elegant Cola Can Design,Artwork level Multimedia Smart build-inAndroid 7.1.2Projector 2.Automatic FocusFunction. Change projection Distance,Detection CameraRGB LED lamp,long life as 50000hours 3.Dual 2.4G/5GWifi Bluetoothmore stable Wifi wireless signal, more high-speed transmission speed,to meet future high definition and large data wireless transmission needs 4. Strong RK3368 8-Core CPU Support4K,supportreal Active Shutter 3D( from USB mode).Not Support blue ray 3D DVD player. 5.Build-in 8000MAHPortable Size, 93mm diameter 161mm height.Convenient for Outdoor Use."}, {"name": "ZSWWang Slip On Sneakers Flats Shoes for Women Walking Sock Shoes Lightweight Breathable Mesh Knit Yoga Sneakers Fashion Casual Comfortable Platform Wedge Work Outdoor Walking Sports Shoes", "product_information": {"Item Weight": "9.5 ounces", "Department": "Womens", "Manufacturer": "ZSWWang", "ASIN": "B09RPRRNVP", "Country of Origin": "China", "Import Designation": "Imported"}, "brand": "Brand: ZSWWang", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ZSWWang", "full_description": "\ud83c\udf39 WELCOME to ZSWWang we sincerely hope you have a relaxing and comfortable shopping experience. Have a good day! \ud83c\udf39 Description : Gender: Women/Girls Upper Material: Mesh Sole Material: Rubber Season: Spring/Summer/Autumn Closing Method: Slip-On Heel High Style: Flat Shoes Heel High: 3cm/1.18 inches Platform Heigh: 2cm/0.79 inches Package Includes:1 Pair Shoes(Not Including Shoebox) \u25b6 Size Chart \u25c0 \u2757\u2757 Please choose the size according to Our Size Chart on the Picture. Label Size:35 ==US:5.5 ==UK:3.5 ==Foot Length:22.5cm/8.9'' ==Foot wide:8-8.5cm/3.2-3.4'' Label Size:36 ==US:6 ==UK:4 ==Foot Length:23cm/9.1'' ==Foot wide:8.5cm/3.4\" Label Size:37 ==US:6.5 ==UK:4.5 ==Foot Length:23.5cm/9.3'' ==Foot wide:8.5-9cm/3.4-3.5\" Label Size:38 ==US:7 ==UK:5 ==Foot Length:24cm/9.5'' ==Foot wide:9cm/3.5\" Label Size:39 ==US:7.5 ==UK:5.5 ==Foot Length:24.5cm/9.7'' ==Foot wide:9-9.5cm/3.5-3.7\" Label Size:40 ==US:8 ==UK:6 ==Foot Length:25cm/9.8'' ==Foot wide:9.5cm/3.7\" Label Size:41 ==US:8.5 ==UK:6.5 ==Foot Length:25.5cm/10'' ==Foot wide:9.5-10cm/3.7-3.9\" Label Size:42 ==US:9 ==UK:7 ==Foot Length:26cm/10.2'' ==Foot wide:10cm/3.9\" Label Size:43 ==US:10 ==UK:7.5 ==Foot Length:26.5cm/10.4'' ==Foot wide:10.5cm/4.1\" Label Size:44 ==US:10.5 ==UK:8 ==Foot Length:27cm/10.6\" ==Foot wide:10.5-11cm/4.1-4.3\" Label Size:45 ==US:11 ==UK:8.5 ==Foot Length:27.5cm/10.8\" ==Foot wide:11cm/4.3\" NOTE: \u2757\u2757 Please choose the size according to Our Size Chart on the Picture. If you need to return the goods later due to size problems, the buyer will need to bear the freight. \u2757\u2757 Please allow 2-3cm errors due to the manual measurement. \u2757\u2757 Due to the different monitor and light effect, the actual color maybe a slight different from the picture color.", "pricing": "$15.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41fxbiPl6pL.jpg", "https://m.media-amazon.com/images/I/31Z+8L7hYZL.jpg", "https://m.media-amazon.com/images/I/41DW-bER2wL.jpg", "https://m.media-amazon.com/images/I/51e0oy7w5BL.jpg", "https://m.media-amazon.com/images/I/41Lemhjd59L.jpg", "https://m.media-amazon.com/images/I/51wPnGrCgKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Athletic \u203a Walking", "average_rating": "", "small_description": ["\u3010 NOTICE\u3011---------\u2757\u2757The size runs small, order 1-2 larger size please. Our size chart is different from amazon's size chart . please choose the right size according to our SIZE CHART before you purchase,thank you. \u2728\u2728 If you receive a damaged product, or any question, please feel free to contact us,we will reply within 24 hours and try our best to solve it. \ud83d\udc49\ud83d\udc49\ud83d\udc49Normal delivery time: 10-20 Days. ", "\u3010sandals for women\u3011black sandals women's sandals platform sandals sandals for toddler boys white sandals sandals for girls sandals for women sandals for women red sandals for women womens sandals sandals for boys sandals men sandals with pearls for women mens sandals size 10 sandals women slip-on sandals for women mens sandals women's sandals white sandals platform wedge sandals for women leopard sandals for women waterproof sandals for women rhinestone sandals for women toddler sandals boys ", "\u3010ballet flats\u3011ballet flats ankle strap for women ballet flats arch support for women ballet flats for girls heeled ballet flats house shoes women ballet flats socks square toe ballet flats tie up ballet flats wide width for women bow ballet flats with heel ballet flats with ribbon ballet flats with straps for women ballet flats women black ballet flats women memory foam ballet flats women comfortable black ballet flats pointed toe tie up knit ballet flats ", "\u3010womens sneakes/oxfords\u3011women sneakers arch support women sneakers high arch women sneakers high heel women sneakers high platform women sneakers high sole women sneakers high top women sneakers hiking women sneakers shoes women sneakers slip-on womens oxford heel shoes womens oxford heeled loafer shoes white womens oxford heels wide width womens oxford high heel shoes womens oxford t strap shoes tennis shoes womens oxfords and loafers womens oxfords brown womens oxfords with heel ", "\u3010women's loafers & slip-ons\u3011women's loafers & slip-ons women's loafers & slip-ons leather women's loafers and oxfords women's loafers and slip ons women's loafers arch support women's loafers black chunky heel women's loafers black platform women's loafers heel women's loafers lace up women's loafers leather black women's loafers everyday women's loafers leather shoes women's loafers shoes women's loafers slip resistant tassels women's loafers wide width women's loafers with chunky heel ", "[strappy flat sandals]snakeskin strap women's posh gladiator sandals summer casual sandals premium elegant flat heel back zipper sandals for women women cross strap chunky heel wedges sandal thick high-heeled flip flop open toe slipper women's open toe leopard print low stiletto heel pumps ankle strap roman shoes shallow slip on sandals wedges sandals for women slides sandals white sandals for women ", "[lace up sandals for women]womens platform sandals sport sandals for women memory foam sandals for women heeled sandals for women sandals with arch support for women sandals for women wide width sandals for women plus size platform sandals for women black sandals for women low heel dress sandals for women white sandals for women flat sandals for women gold sandals for women wedge flip flops for women white sandals for women sandals for women platform dress sandals for women , \u3010Slipper Shoes/Sandals\u3011sandals for women platform, sandals for women beach, sandals for women casual summer, sandals for women cute, sandals for women strappy, sandals for women flat, espadrilles for women wedge, espadrilles sandals for women flat, sandals for women wedge, \u3010girls sandals\u3011rhinestone sandals for women women sandals strappy sandals brown sandals toddler sandals boys sandal slippers for women womens sandals with arch support sandal men womens slide sandals black platform sandals heeled sandals wedge sandal women's heeled sandals knee sandals silver sandals women girls sandals heels shoes for women sandals with bows for women white platform sandals baby sandals silver sandal and shoes women sandals lace up sandals for women sandal and sport shoe, \u3010womens sandals\u3011slide sandals women dress sandals for women womens black sandals sandals for women dressy summer black sandals women sandals with heels walking sandals women white sandals women sandals for kids boys platform sandal womens sandals size 8 womens wedge sandals for women casual summer sandals men sandals for girls size 2 women's platform wedge sandals sandals with heels for women comfortable sandals for women sandals for women casual summer mens sandals sandals with gold chain"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09RPV21QT/ref=twister_B09RPW5ZZT?_encoding=UTF8&psc=1", "value": "6.5", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RPV5F84/ref=twister_B09RPW5ZZT?_encoding=UTF8&psc=1", "value": "7", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "7.5", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RPQV8SJ/ref=twister_B09RPW5ZZT?_encoding=UTF8&psc=1", "value": "8", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RPYHHCR/ref=twister_B09RPW5ZZT?_encoding=UTF8&psc=1", "value": "8.5", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RPVRJ17/ref=twister_B09RPW5ZZT?_encoding=UTF8&psc=1", "value": "9", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Z+8L7hYZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RPV6J5L/ref=twister_B09RPW5ZZT?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tsFuTr4PL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RPTHYYX/ref=twister_B09RPW5ZZT?_encoding=UTF8&psc=1", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/419fAIS9MWL.jpg"}]}, "seller_id": "A13QBMYQJHCV1B", "seller_name": "ZSWWang\u00ae (7-15 Business Days Delivered)", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RPRRNVP", "category": "fashion", "query": "Women's Work & Safety Footwear", "page": 72, "small_description_old": "\u3010 NOTICE\u3011---------\u2757\u2757The size runs small, order 1-2 larger size please. Our size chart is different from amazon's size chart . please choose the right size according to our SIZE CHART before you purchase,thank you. \u2728\u2728 If you receive a damaged product, or any question, please feel free to contact us,we will reply within 24 hours and try our best to solve it. \ud83d\udc49\ud83d\udc49\ud83d\udc49Normal delivery time: 10-20 Days. \u3010sandals for women\u3011black sandals women's sandals platform sandals sandals for toddler boys white sandals sandals for girls sandals for women sandals for women red sandals for women womens sandals sandals for boys sandals men sandals with pearls for women mens sandals size 10 sandals women slip-on sandals for women mens sandals women's sandals white sandals platform wedge sandals for women leopard sandals for women waterproof sandals for women rhinestone sandals for women toddler sandals boys \u3010ballet flats\u3011ballet flats ankle strap for women ballet flats arch support for women ballet flats for girls heeled ballet flats house shoes women ballet flats socks square toe ballet flats tie up ballet flats wide width for women bow ballet flats with heel ballet flats with ribbon ballet flats with straps for women ballet flats women black ballet flats women memory foam ballet flats women comfortable black ballet flats pointed toe tie up knit ballet flats \u3010womens sneakes/oxfords\u3011women sneakers arch support women sneakers high arch women sneakers high heel women sneakers high platform women sneakers high sole women sneakers high top women sneakers hiking women sneakers shoes women sneakers slip-on womens oxford heel shoes womens oxford heeled loafer shoes white womens oxford heels wide width womens oxford high heel shoes womens oxford t strap shoes tennis shoes womens oxfords and loafers womens oxfords brown womens oxfords with heel \u3010women's loafers & slip-ons\u3011women's loafers & slip-ons women's loafers & slip-ons leather women's loafers and oxfords women's loafers and slip ons women's loafers arch support women's loafers black chunky heel women's loafers black platform women's loafers heel women's loafers lace up women's loafers leather black women's loafers everyday women's loafers leather shoes women's loafers shoes women's loafers slip resistant tassels women's loafers wide width women's loafers with chunky heel [strappy flat sandals]snakeskin strap women's posh gladiator sandals summer casual sandals premium elegant flat heel back zipper sandals for women women cross strap chunky heel wedges sandal thick high-heeled flip flop open toe slipper women's open toe leopard print low stiletto heel pumps ankle strap roman shoes shallow slip on sandals wedges sandals for women slides sandals white sandals for women [lace up sandals for women]womens platform sandals sport sandals for women memory foam sandals for women heeled sandals for women sandals with arch support for women sandals for women wide width sandals for women plus size platform sandals for women black sandals for women low heel dress sandals for women white sandals for women flat sandals for women gold sandals for women wedge flip flops for women white sandals for women sandals for women platform dress sandals for women \n \u3010Slipper Shoes/Sandals\u3011sandals for women platform, sandals for women beach, sandals for women casual summer, sandals for women cute, sandals for women strappy, sandals for women flat, espadrilles for women wedge, espadrilles sandals for women flat, sandals for women wedge\u3010girls sandals\u3011rhinestone sandals for women women sandals strappy sandals brown sandals toddler sandals boys sandal slippers for women womens sandals with arch support sandal men womens slide sandals black platform sandals heeled sandals wedge sandal women's heeled sandals knee sandals silver sandals women girls sandals heels shoes for women sandals with bows for women white platform sandals baby sandals silver sandal and shoes women sandals lace up sandals for women sandal and sport shoe\u3010womens sandals\u3011slide sandals women dress sandals for women womens black sandals sandals for women dressy summer black sandals women sandals with heels walking sandals women white sandals women sandals for kids boys platform sandal womens sandals size 8 womens wedge sandals for women casual summer sandals men sandals for girls size 2 women's platform wedge sandals sandals with heels for women comfortable sandals for women sandals for women casual summer mens sandals sandals with gold chainShow more"}, {"name": "Valances etc. Majestic Blackout Room Darkening Lined Grommet Window Curtain Panel (Cream, 51\"x84\")", "product_information": "", "brand": "Brand: Valances etc.", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Valances+etc.", "full_description": "", "pricing": "$27.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41y991IzrfL.jpg", "https://m.media-amazon.com/images/I/413Kui1N66L.jpg", "https://m.media-amazon.com/images/I/41y1WKJeADL.jpg", "https://m.media-amazon.com/images/I/411O8SXQ+jL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Window Treatments \u203a Curtains & Drapes \u203a Panels", "average_rating": "", "small_description": ["Blackout Room darkening lining to block unwanted light ", "Inner lining helps save energy and reduce noise ", "Features a faux silk fabric and hangs with stylish grommets ", "100% Polyester (Exclusive of trim) ", "Dry Clean Only "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08WH2HCSW/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "Aubergine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41i9A8hGAnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YGQRNXD/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31v1vRzaY7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YHC6WN9/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "Champagne", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31bxLbBG+2L.jpg"}, {"is_selected": true, "url": null, "value": "Cream", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/413Kui1N66L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YHKJBTV/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "Espresso", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41nMbSaGIgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YH4D9LR/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "Mineral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410BAYPp4DL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WH6KX7J/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "Mink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41iy3ZD9VqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WJC78NG/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "Spruce", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41K8JP50m+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YGLQ5N8/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "Steel", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41jh7x53A4L.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08WHXHJQD/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "51\"x63\"", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "51\"x84\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WHRS7TK/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "51\"x95\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YGS8Q7L/ref=twister_B08XY6NZDM?_encoding=UTF8&psc=1", "value": "51\"x108\"", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A3795D5J4PGM2I", "seller_name": "Valances etc.", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08YH6Y6FQ", "category": "garden", "query": "Window Coverings", "page": 231, "small_description_old": "About this item\n \nBlackout Room darkening lining to block unwanted light Inner lining helps save energy and reduce noise Features a faux silk fabric and hangs with stylish grommets 100% Polyester (Exclusive of trim) Dry Clean Only"}, {"name": "The Urban Port Cube Shape Rosewood Side Table with Cutout Bottom, Brown", "product_information": {"Product Dimensions": "16 x 16 x 16 inches", "Item Weight": "30 pounds", "Manufacturer": "The Urban Port", "ASIN": "B015MSXCL8", "Item model number": "UPT-30350", "Customer Reviews": {"ratings_count": 47, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#435,142 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,313 in End Tables"], "Is Discontinued By Manufacturer": "No", "Assembly Required": "No", "Batteries Required?": "No", "Included Components": "Mahogany Wood"}, "brand": "Brand: The Urban Port", "brand_url": "https://www.amazon.com/The-Urban-Port/b/ref=bl_dp_s_web_13308737011?ie=UTF8&node=13308737011&field-lbr_brands_browse-bin=The+Urban+Port", "full_description": "This simple looking cube side table provides a striking edge to your settings It is made up of lasting Rosewood(sheesham) and features a natural wooden texture in brown color Use the smooth top for adorning purposes while the cutout bottom offers a great space for placing books and other items in an organized way The product weighs 29 94 pounds that provides a good stability on the ground wherever it is placed", "pricing": "$139.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41jfdQ7bW-L.jpg", "https://m.media-amazon.com/images/I/4105zTj0rpL.jpg", "https://m.media-amazon.com/images/I/4184MwN+5dL.jpg", "https://m.media-amazon.com/images/I/41-ZpcEgK5L.jpg", "https://m.media-amazon.com/images/I/41QkI6PjXaL.jpg", "https://m.media-amazon.com/images/I/51J5cgK-8BL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a End Tables", "average_rating": 4.4, "small_description": ["Sturdily built with rosewood (Sheesham) that adds strength and provides a durable usage ", "Features cubical cutout bottom that can be used for stowing books and other items ", "Overall Product Dimension 16 inches in Length x 16 inches in Width x 16 inches in Height ", "Use the smooth top for the placement of vases photo frames remotes etc "], "total_reviews": 47, "total_answered_questions": "", "model": "UPT-30350", "customization_options": "", "seller_id": "A392KKNP3SICX6", "seller_name": "Manhattan Lane", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B015MSXCL8", "category": "garden", "query": "End tables", "page": 112, "small_description_old": "About this item\n \nIncludes Cube shape side table. Sturdily built with rosewood (Sheesham) that adds strength and provides a durable usage. Features cubical cutout bottom that can be used for stowing books and other items. Overall Product Dimension: 16 inches in Length x 16 inches in Width x 16 inches in Height Use the smooth top for the placement of vases, photo frames, remotes, etc."}, {"name": "GRADO SR325x Stereo Headphones, Wired, Dynamic Drivers, Open Back Design", "product_information": {"Package Dimensions": "9.21 x 7.91 x 2.13 inches", "Item Weight": "12.7 ounces", "ASIN": "B091GHBJZ1", "Item model number": "SR325X", "Customer Reviews": {"ratings_count": 55, "stars": "4.5 out of 5 stars"}, "Is Discontinued By Manufacturer": "No", "Date First Available": "May 17, 2021", "Manufacturer": "Grado Labs"}, "brand": "Brand: GRADO", "brand_url": "https://www.amazon.com/GRADO/b/ref=bl_dp_s_web_20554744011?ie=UTF8&node=20554744011&field-lbr_brands_browse-bin=GRADO", "full_description": "", "pricing": "$295.00", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41fiXBccMyS.jpg", "https://m.media-amazon.com/images/I/41A9S-QKOWS.jpg", "https://m.media-amazon.com/images/I/510oHs8JDIS.jpg", "https://m.media-amazon.com/images/I/51PaagGlFcS.jpg", "https://m.media-amazon.com/images/I/41JvrJy76+S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.5, "small_description": ["4th generation Grado tuned 44mm drivers, easy to drive 38ohm ", "Upgraded braided cable eliminates twisting and kinking, 8 conductor super annealed copper wiring ", "Upgraded adjustable leather headband with contrasting stitching ", "4OurEars is the Exclusive Authorized US Amazon seller ", "1 year manufacturers warranty for sales within the United States "], "total_reviews": 55, "total_answered_questions": 3, "model": "SR325X", "customization_options": "", "seller_id": "A37X6SD97CS5LJ", "seller_name": "4OurEars - The Official Grado Store", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B091GHBJZ1", "category": "electronics", "query": "Headphones", "page": 45, "small_description_old": "About this item\n \n4th generation Grado tuned 44mm drivers, easy to drive 38ohm Upgraded braided cable eliminates twisting and kinking, 8 conductor super annealed copper wiring Upgraded adjustable leather headband with contrasting stitching 4OurEars is the Exclusive Authorized US Amazon seller 1 year manufacturers warranty for sales within the United States"}, {"name": "Jet-Puffed Strawberry Joy Snacking Marshmallows (7 oz Resealable Bag)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.25 x 7.5 x 9 inches; 7 Ounces", "Item model number\n \u200f": "\u200e\n 00600699004350", "UPC\n \u200f": "\u200e\n 600699004350", "Manufacturer\n \u200f": "\u200e\n Kraft US (0044710044602)", "ASIN\n \u200f": "\u200e\n B08W2XSDST", "Best Sellers Rank": "#48,854 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#115 in Marshmallows", "#115 in Marshmallows": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Jet-Puffed Baking & MM", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Jet-Puffed+Baking+%26+MM", "full_description": "We\u2019re puffing up the snack game with the innovative resealable Jet-Puffed Strawberry Joy Marshmallow Stand Up Bag. Keep your strawberry marshmallows soft and fluffy for on-the-go snacking with our new resealable pouch. With zero trans fat and zero total fat per serving, Jet Puffed Strawberry Joy Marshmallows make a delicious and fun snack for kids you can take with you anywhere. Our marshmallows also make a mouthwatering addition to your favorite dessert recipes. Use our fluffy marshmallows to prepare pink rice cereal treats, top off hot chocolate or make strawberry s\u2019mores. Each package of Jet-Puffed Strawberry Joy Marshmallows comes in a 7-ounce resealable bag for lasting freshness.", "pricing": "$9.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51JsBHBjoNS.jpg", "https://m.media-amazon.com/images/I/41fFRvlVkKS.jpg", "https://m.media-amazon.com/images/I/5158y2EkhCS.jpg", "https://m.media-amazon.com/images/I/51nTZGZr1mS.jpg", "https://m.media-amazon.com/images/I/51BoPeh7wxS.jpg", "https://m.media-amazon.com/images/I/51-nkUlT3WS.jpg", "https://m.media-amazon.com/images/I/51nuSq5IAhL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Marshmallows", "average_rating": 4.3, "small_description": ["Keep your strawberry marshmallows soft and fluffy with our new resealable pouch ", "Jet-Puffed Strawberry Joy Marshmallows are a delicious and versatile snack ", "Our strawberry marshmallows deliver the sweet taste and fluffy texture Jet-Puffed is famous for ", "Fat free snack contains 0 grams of trans fat and 0 grams of total fat per serving ", "Perfect marshmallows for hot chocolate, s\u2019mores and rice cereal treats ", "Our innovative resealable, stand-up bag design allows for easier storage and mess-free, on-the-go snacking "], "total_reviews": 135, "total_answered_questions": "", "customization_options": "", "seller_id": "A07784132U0ANOC4IDOHF", "seller_name": "Melody Art LLC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08W2XSDST", "category": "grocery", "query": "Puffed Snacks", "page": 30, "small_description_old": "About this item One 7 oz. resealable bag of Jet-Puffed Strawberry Joy Marshmallows Keep your strawberry marshmallows soft and fluffy with our new resealable pouch Jet-Puffed Strawberry Joy Marshmallows are a delicious and versatile snack Our strawberry marshmallows deliver the sweet taste and fluffy texture Jet-Puffed is famous for Fat free snack contains 0 grams of trans fat and 0 grams of total fat per serving Perfect marshmallows for hot chocolate, s\u2019mores and rice cereal treats Our innovative resealable, stand-up bag design allows for easier storage and mess-free, on-the-go snacking"}, {"name": "WEIDUOFUN Set of 2 Antique Rustic Plastic Pedestal Vase Classic Urn Planter\uff0cDetachable\uff0cLightweight- 7.09\u201d Diameter", "product_information": {"Product Dimensions": "4.72 x 4.72 x 8.27 inches", "Manufacturer": "WEIDUOFUN", "ASIN": "B07ZWVS584", "Customer Reviews": {"ratings_count": 21, "stars": "3.3 out of 5 stars"}, "Best Sellers Rank": ["#834,354 in Home & Kitchen (See Top 100 in Home & Kitchen) #3,235 in Vases"], "Fabric Type": "Plastic", "Number of Pieces": "1", "Batteries Required?": "No"}, "brand": "Visit the WEIDUOFUN Store", "brand_url": "https://www.amazon.com/stores/WEIDUOFUN/page/0B61D8F3-EDA5-47AF-9B9A-6787C4E58DB4?ref_=ast_bln", "full_description": "WEIDUOFUN Elegant White Rustic Metal Pedestal Vase Classic Urn Flower Vase Lightweight--8.46\u201dTall and 4.06\u201d Diameter Type: Pedestal Vase Finish: Same as picture Color: Same as picture Material: Metal Measure: Height 10.3\u201d(26 cm) , Base Diameter:4.06\u201d(10.3cm), Upper Diameter:5.43 \u201d(13.8 cm) PACKAGE CONTENT 1 X Pedestal Vase NOTE 1.Please allow 1-2cm differs due to manual measurement. 2.Due to the light and screen differences, the item's color may be slightly different from the pictures. AFTER SALE Please contact one of our sales representatives,if you have any questions regarding this or any other product we carry.Normally, you will get reply in 24 hours.Satisfied with the item ,please take a little time to leave a kind", "pricing": "$21.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41GI7bc7tVL.jpg", "https://m.media-amazon.com/images/I/51Sm0Z+olOL.jpg", "https://m.media-amazon.com/images/I/51u4AQ4K2gL.jpg", "https://m.media-amazon.com/images/I/418G9Z1ZJ0L.jpg", "https://m.media-amazon.com/images/I/61de1UPRRfL.jpg", "https://m.media-amazon.com/images/I/51Cf6ve6YZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Vases", "average_rating": 3.3, "small_description": ["Material: PP Plastic , Lightweight ", "Measurement: Height 8.46\u201d(21.5cm)/7.09\u201d(18cm) , Base Diameter:4.92\u201d(12 .5cm),Diameter:7.09 \u201d(18 cm) ", "Classic decorative centerpiece display in wedding fair, party, ceremony, suitable for various flower arrangement ", "Antique Rustic Design to Give Your Home the Perfect Look \u3002 ", "The size and pedestal on this urn make it an excellent choice as a centerpiece, but it also looks great on a bookshelf or side table "], "total_reviews": 21, "total_answered_questions": "", "customization_options": "", "seller_id": "A2SKXCE88TQN4D", "seller_name": "WEIDUOFUN", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07ZWVS584", "category": "garden", "query": "Planters", "page": 40, "small_description_old": "About this item\n \nMaterial: PP Plastic , Lightweight Measurement: Height 8.46\u201d(21.5cm)/7.09\u201d(18cm) , Base Diameter:4.92\u201d(12 .5cm),Diameter:7.09 \u201d(18 cm) Classic decorative centerpiece display in wedding fair, party, ceremony, suitable for various flower arrangement Antique Rustic Design to Give Your Home the Perfect Look \u3002 The size and pedestal on this urn make it an excellent choice as a centerpiece, but it also looks great on a bookshelf or side table"}, {"name": "Nikon D7500 DSLR Camera 2 Lens Kit with 18-55mm VR + 70-300mm Zoom Lens + Deluxe Starter Bundle Including 2 32GB Sandisk SD Memory Cards, Wide Angle and Telephoto Lens, Gadget Bag Plus More", "product_information": {"ASIN": "B08W874R8Z", "Item model number": "Nikon D7500 2 Lens Kit", "Best Sellers Rank": ["#684,893 in Electronics (See Top 100 in Electronics) #4,341 in DSLR Cameras"], "Date First Available": "February 8, 2021", "Manufacturer": "Nikon Intl."}, "brand": "Brand: Nikon Intl.", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Nikon+Intl.", "full_description": "Nikon D7500 2 Lens Kit OverviewDesigned as a true all-arounder, the Nikon D7500 is a DX-format DSLR offering a versatile feature-set to appeal to photographers and videographers alike. Based on a 20.9MP CMOS sensor and EXPEED 5 image processor, this multimedia maven avails an 8 fps continuous shooting rate for up to 100 consecutive JPEGS, a native sensitivity range to ISO 51,200 that can be expanded up to ISO 1,640,000, and 4K UHD video and time-lapse recording capabilities. Complementing the imaging capabilities is a 51-point Multi-CAM 3500FX II autofocus system, which features 15 cross-type points for fast performance and accurate subject tracking capabilities in a variety of lighting conditions.Whats Included?In the Nikon Box?In Deluxe Starter Bundle?", "pricing": "$1,579.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51mH5LUYxmL.jpg", "https://m.media-amazon.com/images/I/41VF+ceoysL.jpg", "https://m.media-amazon.com/images/I/31SZaPxonjL.jpg", "https://m.media-amazon.com/images/I/51Dd8tilDlL.jpg", "https://m.media-amazon.com/images/I/41gFJhvw9tL.jpg", "https://m.media-amazon.com/images/I/412hvqkQanL.jpg", "https://m.media-amazon.com/images/I/51WcZX6BqUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a DSLR Cameras", "average_rating": "", "small_description": ["This Nikon D7500 W/ 18-55mm and 70-300mm Lens Import Model Kit Includes all Manufacturer Supplied Accessories and a 1 Year Limited Seller Warranty ", "Class leading image quality, ISO range, image processing and metering equivalent to the award winning D500 ", "Large 3.2\u201d 922k dot, tilting Lcd screen with touch functionality. Temperature: 0 \u00b0c to 40 \u00b0c (+32 \u00b0f to 104 \u00b0f) humidity: 85 percentage or less (no condensation) ", "51 point AF system with 15 cross type sensors and group area AF paired with up to 8 fps continuous shooting capability ", "4k ultra hd and 1080p full hd video with stereo sound, power aperture control, auto ISO, 4k UHD time lapse and more "], "total_reviews": "", "total_answered_questions": "", "model": "Nikon D7500 2 Lens Kit", "customization_options": "", "seller_id": "A1AMSKMRFFSWYS", "seller_name": "Marketing Jungle", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08W874R8Z", "category": "electronics", "query": "Digital Cameras", "page": 280, "small_description_old": "About this item\n \nThis Nikon D7500 W/ 18-55mm and 70-300mm Lens Import Model Kit Includes all Manufacturer Supplied Accessories and a 1 Year Limited Seller Warranty Class leading image quality, ISO range, image processing and metering equivalent to the award winning D500 Large 3.2\u201d 922k dot, tilting Lcd screen with touch functionality. Temperature: 0 \u00b0c to 40 \u00b0c (+32 \u00b0f to 104 \u00b0f) humidity: 85 percentage or less (no condensation) 51 point AF system with 15 cross type sensors and group area AF paired with up to 8 fps continuous shooting capability 4k ultra hd and 1080p full hd video with stereo sound, power aperture control, auto ISO, 4k UHD time lapse and more"}, {"name": "Unipro Mens Jogger Pants 2 Pack Tech Fleece Sweatpants Lightweight Running Pant for Men", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.19 x 9.76 x 2.24 inches; 1.68 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n March 17, 2021", "ASIN\n \u200f": "\u200e\n B08ZC2448V", "Best Sellers Rank": "#409,042 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#623 in Men's Sweatpants", "#623 in Men's Sweatpants": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Unipro", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Unipro", "full_description": "UNIPRO Men\u2019s 2-Pack tech fleece Jogger Sweatpants with Pockets are Comfortable, Durable, Fashionable, breathable & perfect for all your active and athletic needs. Developed with the highest quality fabrics and materials our tech fleece sweatpants are designed to wick sweat away from your body and keep you cool, dry and comfortable throughout the day. A true all season clothing staple, these performance jogger pants keep you cool in the summer and warm in the winter. Available in multiple colors and sizes, this 2 pack pant is a great addition to any wardrobe. Contrasting details, colors & cut and sew inserts add the perfect twist to a classic look. These warmup training pants will help you standout and showcase your athletic style.", "pricing": "$22.99$24.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41s+9zEXilS.jpg", "https://m.media-amazon.com/images/I/41pntC3sijS.jpg", "https://m.media-amazon.com/images/I/41ucrhmm+lS.jpg", "https://m.media-amazon.com/images/I/41hC5PJZpoS.jpg", "https://m.media-amazon.com/images/I/41smCwwuC7S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Pants \u203a Sweatpants", "average_rating": 4.4, "small_description": ["Drawstring closure ", "Machine Wash ", "Multipack Convenience: Choose from a variety of colors and unique details, our 2 pack tech fleece jogger pants are perfect for maintaining your everyday style. Get 2 pants for 1 low price! ", "All Around Performance and Versatility: Great for anything from Running and playing basketball to just relaxing around the house, our soft fleece jogger sweatpants for men are a must have staple in any wardrobe. ", "Athletic Fit and Design: Finding the right size is always easy, Choose from our multiple options of mens athletic jogger pants in sizes S-XXL. Our adjustable Elastic waistband and drawstring form a perfect fit for almost any waist size and the 2 side pockets offer more than enough space to hold all your belongings. ", "Year Round Pant: our performance tech fleece Jogger pants are designed to keep you cool in the summer heat and warm through the cold winter and since they are manufactured by UNIPRO you can be confident your mens pants will be long-lasting, comfortable, and dependable. ", "Easy care with greater convenience: Since these styles are machine washable cleaning is always care free and easy. "], "total_reviews": 22, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08ZC2448V/ref=twister_B08ZC3VZ4H", "value": "Black-eclipse", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gr8-CrKrS.jpg"}, {"is_selected": true, "url": null, "value": "Green-charcoal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41s+9zEXilS.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B08ZB1MN8D"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08ZBR7X9C"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08ZBTKYBK"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B08ZBT1VQ9"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B08ZBVZJ9M"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08ZB1MN8D", "category": "fashion", "query": "Men's Pants", "page": 79, "small_description_old": "Multipack Convenience: Choose from a variety of colors and unique details, our 2 pack tech fleece jogger pants are perfect for maintaining your everyday style. Get 2 pants for 1 low price! All Around Performance and Versatility: Great for anything from Running and playing basketball to just relaxing around the house, our soft fleece jogger sweatpants for men are a must have staple in any wardrobe. Athletic Fit and Design: Finding the right size is always easy, Choose from our multiple options of mens athletic jogger pants in sizes S-XXL. Our adjustable Elastic waistband and drawstring form a perfect fit for almost any waist size and the 2 side pockets offer more than enough space to hold all your belongings. Year Round Pant: our performance tech fleece Jogger pants are designed to keep you cool in the summer heat and warm through the cold winter and since they are manufactured by UNIPRO you can be confident your mens pants will be long-lasting, comfortable, and dependable. Easy care with greater convenience: Since these styles are machine washable cleaning is always care free and easy."}, {"name": "Garnier Hair Care Fructis Style Pixie Play Crafting Cream, 2 Count, Texture, 4 Oz", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 2.82 x 2.82 x 2.68 inches; 6.6 Ounces", "Item model number\n \u200f": "\u200e\n 603084553952", "UPC\n \u200f": "\u200e\n 603084553952", "Manufacturer\n \u200f": "\u200e\n Garnier", "ASIN\n \u200f": "\u200e\n B07CBFM96F", "Country of Origin\n \u200f": "\u200e\n USA", "Domestic Shipping": "Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.", "International Shipping": "This item is not eligible for international shipping.Learn More", "Best Sellers Rank": "#12,204 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#33 in Hair Styling Pomades #207 in Hair Styling Gels", "#33 in Hair Styling Pomades": "", "#207 in Hair Styling Gels": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Garnier Store", "brand_url": "https://www.amazon.com/stores/Garnier/page/0B5229A4-14F7-47F2-A4E8-ED9162D257DB?ref_=ast_bln", "full_description": "Get crafty! Add texture to short hair and create piece or out-of-bed looks for all day de-constructed style that looks done-yet-undone. Get touchable control and a subtle, satin finish that is non-tacky, not stiff or too coated. HOW DOES IT WORK? Garner Fructose Style Pixie Play Crafting Cream, with Black Fig, is a unique texturizing hair styling cream for short hair that gives definition and control without clumping hair or leaving it too slick or too shiny.", "pricing": "$6.98", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41ZfdxluSuL.jpg", "https://m.media-amazon.com/images/I/41AoPirddOL.jpg", "https://m.media-amazon.com/images/I/31jmTxxfGlL.jpg", "https://m.media-amazon.com/images/I/411aQ7Wn8eL.jpg", "https://m.media-amazon.com/images/I/41YD+DiML3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Styling Products \u203a Pomades", "average_rating": 4.3, "small_description": ["Garner Fructose Style Pixie Play Crafting Cream is a unique silky, sheer-texturizing paste that gives short hair definition and control ", "Garner Fructose Style Pixie Play Crafting Cream is formulates with black fig that delivers hold without clumping hair or leaving it too slick or too shiny ", "Garner Fructose Style Pixie Play Crafting Cream adds texture and creates piece or out-of-bed looks for all day deconstructed style that looks done-yet-undone "], "total_reviews": 2690, "total_answered_questions": 25, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00ID1OAJU/ref=twister_B07DYW54NS?_encoding=UTF8&psc=1", "value": "2 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "4 Ounce (Pack of 2)", "price_string": "$6.98", "price": 6.98, "image": null}], "Color": null}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07CBFM96F", "category": "beauty", "query": "Styling Products", "page": 12, "small_description_old": "About this item Garner Fructose Style Pixie Play Crafting Cream is a unique silky, sheer-texturizing paste that gives short hair definition and control Garner Fructose Style Pixie Play Crafting Cream is formulates with black fig that delivers hold without clumping hair or leaving it too slick or too shiny Garner Fructose Style Pixie Play Crafting Cream adds texture and creates piece or out-of-bed looks for all day deconstructed style that looks done-yet-undone"}, {"name": "Field Day Organic Diced Pear, 4 Ounce - 4 per pack -- 6 packs per case.", "product_information": {"Manufacturer\n \u200f": "\u200e\n Field Day", "ASIN\n \u200f": "\u200e\n B08QTTR98M", "": ""}, "brand": "Brand: Field Day", "brand_url": "https://www.amazon.com/Field-Day/b/ref=bl_dp_s_web_7482435011?ie=UTF8&node=7482435011&field-lbr_brands_browse-bin=Field+Day", "full_description": "Ingredients: Organic pears, water, organic pear juice concentrate, ascorbic acid (vitamin C) to protect color, naturally derived citric acid.", "pricing": "$50.50", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/41509PrIeuL.jpg", "https://m.media-amazon.com/images/I/41sKCf9nHWL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Canned, Jarred & Packaged Foods \u203a Fruits \u203a Pears", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ACCN22VZS1CNE", "seller_name": "FoodserviceDirect Inc.", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08QTTR98M", "category": "grocery", "query": "Fruit Snacks", "page": 277, "small_description_old": ""}, {"name": "Concepts Sport Men's NFL Empire Flannel Boxers", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 8.52 x 7.21 x 1.73 inches; 6.4 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n August 4, 2021", "Manufacturer\n \u200f": "\u200e\n ROBINSON MANUFACTURING COMPANY INC", "ASIN\n \u200f": "\u200e\n B09BVXY5X5", "Best Sellers Rank": "#2,620,803 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,363 in Men's Boxer Shorts", "#1,363 in Men's Boxer Shorts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Concepts Sport", "brand_url": "https://www.amazon.com/Concepts-Sport/b/ref=bl_sl_s_ap_web_20161609011?ie=UTF8&node=20161609011&field-lbr_brands_browse-bin=Concepts+Sport", "full_description": "These team Empire Flannel Boxers are just what you need in your basics drawer. The plaid design and crisp embroidered graphics will make these Concepts Sport boxers your go-to for game days, ensuring you're a proud team fan from top to bottom.", "pricing": "$21.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/61s9E8kB73L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a Boxers", "average_rating": 5, "small_description": ["Imported ", "Brand: Concepts Sport ", "Elastic waist ", "Embroidered graphics ", "Imported ", "Material: 60% Cotton/40% Polyester "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09BVXY5X5"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09BVZJ8MX"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09BVYK2WL"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09BVYK2WL", "category": "fashion", "query": "Men's Underwear", "page": 50, "small_description_old": "Imported Brand: Concepts Sport Elastic waist Embroidered graphics Imported Material: 60% Cotton/40% Polyester"}, {"name": "KontrolFreek FPS Freek Inferno for Xbox One and Xbox Series X Controller | Performance Thumbsticks | 2 High-Rise Concave | Red", "product_information": {"Product Dimensions": "0.9 x 0.9 x 0.4 inches", "Item Weight": "0.705 ounces", "ASIN": "B01BCOAE7G", "Item model number": "2040-XB1", "Customer Reviews": {"ratings_count": 8486, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#297 in Video Games (See Top 100 in Video Games) #2 in Xbox One Thumb Grips #5 in Xbox One Gamepads & Standard Controllers #7 in Computer Headsets"], "Is Discontinued By Manufacturer": "No", "Date First Available": "February 1, 2016", "Manufacturer": "KONTROLFREEK"}, "brand": "Visit the KontrolFreek Store", "brand_url": "https://www.amazon.com/stores/KontrolFreek/page/D9E430A8-6E39-4C2F-8D81-E548BF2E76B5?ref_=ast_bln", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51TZNhKgdHL.jpg", "https://m.media-amazon.com/images/I/41z81eQ2ZTL.jpg", "https://m.media-amazon.com/images/I/41uxA11ASQL.jpg", "https://m.media-amazon.com/images/I/41AcAqpND7L.jpg", "https://m.media-amazon.com/images/I/41q2UQg9FnL.jpg", "https://m.media-amazon.com/images/I/41uFw2SCvyL.jpg", "https://m.media-amazon.com/images/I/31NQS9rjLpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Audio & Video Accessories \u203a Computer Headsets", "average_rating": 4.5, "small_description": ["INCREASED ACCURACY - Adds 9.9 mm of added height to increase arc distance, resulting in more precise in-game movements and faster target acquisition ", "ENHANCES GRIP - Non-slip, proprietary rubber compound offers exceptional grip with laser-etched detailing ", "INCREASED COMFORT - Requires less force which reduces wrist, hand and thumb fatigue ", "TWO HIGH-RISE (CONCAVE) THUMBSTICKS - Improves your shooting accuracy, particularly at mid-to-long ranges ", "DESIGNED - with a comfortable spiral pattern that adapts to the pressure you put on it, so the harder you play, the harder Inferno works to keep your thumbs from slipping *Packaging May Not Reflect Updated Compatibility "], "total_reviews": 8486, "total_answered_questions": 37, "model": "2040-XB1", "customization_options": "", "seller_id": "A1XOCBC637EZ46", "seller_name": "KontrolFreek", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01BCOAE7G", "category": "electronics", "query": "Television Accessories", "page": 92, "small_description_old": "About this item\n \nINCREASED ACCURACY - Adds 9.9 mm of added height to increase arc distance, resulting in more precise in-game movements and faster target acquisition ENHANCES GRIP - Non-slip, proprietary rubber compound offers exceptional grip with laser-etched detailing INCREASED COMFORT - Requires less force which reduces wrist, hand and thumb fatigue TWO HIGH-RISE (CONCAVE) THUMBSTICKS - Improves your shooting accuracy, particularly at mid-to-long ranges DESIGNED - with a comfortable spiral pattern that adapts to the pressure you put on it, so the harder you play, the harder Inferno works to keep your thumbs from slipping *Packaging May Not Reflect Updated Compatibility"}, {"name": "Crest 3D White Luxe Glamorous White Teeth Whitening Vibrant Mint Toothpaste, 4.1 Oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.94 x 1.63 x 6 inches; 4 Ounces", "Item model number\n \u200f": "\u200e\n 3700081280", "UPC\n \u200f": "\u200e\n 885222330605 640791724992 037000812807 885310387931", "Manufacturer\n \u200f": "\u200e\n Procter & Gamble - Pampers", "ASIN\n \u200f": "\u200e\n B007F4B69S", "Best Sellers Rank": "#107,521 in Health & Household (See Top 100 in Health & Household)#978 in Toothpaste", "#978 in Toothpaste": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Crest", "brand_url": "https://www.amazon.com/Crest/b/ref=bl_dp_s_web_2587846011?ie=UTF8&node=2587846011&field-lbr_brands_browse-bin=Crest", "full_description": "Crest.3D White Luxe\u2122.Removes up to 90% of surface stains in 5 days.Glamorous white.Fluoride anticavity toothpaste.Enamel safe whitening.Vibrant mint.", "pricing": "$14.81", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41zckvU8+dL.jpg", "https://m.media-amazon.com/images/I/412-hhhswwL.jpg", "https://m.media-amazon.com/images/I/41paB1LHOqL.jpg", "https://m.media-amazon.com/images/I/41tDjCqSKOL.jpg", "https://m.media-amazon.com/images/I/41OZ1UZig+L.jpg", "https://m.media-amazon.com/images/I/415Cpyp6c1L.jpg", "https://m.media-amazon.com/images/I/417XKXGJlyL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": 4.4, "small_description": ["Removes up to 90% of surface stains ", "Exclusive Whitelock Technology seals out future stains ", "Enamel safe fluoride toothpaste to help prevent cavities ", "Vibrant Mint flavor for fresh breath ", "Whitens smile in 2 days**Whitens teeth by removing surface stains when used with any Crest 3D White mouthwash and Oral-B 3D White Pro-Flex toothbrush ", "Removes 90% of surface stains in 7 days ", "Strengthens and rebuilds weakened enamel , Enamel safe whitening, Anticavity toothpaste"], "total_reviews": 694, "total_answered_questions": 15, "customization_options": {"Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B007K6LHAY/ref=twister_B01LVXLOYM?_encoding=UTF8&psc=1", "value": "Diamond Strong", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zZnB-BvGL.jpg"}, {"is_selected": true, "url": null, "value": "Glamorous White", "price_string": "$14.81", "price": 14.81, "image": "https://m.media-amazon.com/images/I/4123aLnDtRL.jpg"}], "Size": null}, "seller_id": "A33X0NQQ1HVLP5", "seller_name": "A Blend Above/ A Spice Above", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B007F4B69S", "category": "beauty", "query": "Toothpaste", "page": 44, "small_description_old": "About this item Removes up to 80% of surface stains"}, {"name": "De Wafelbakkers Pancake 18 Fluffy Buttermilk, 1.5 oz (Frozen)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5 x 9 x 4.5 inches; 1.5 Ounces", "UPC\n \u200f": "\u200e\n 679844104573", "Manufacturer\n \u200f": "\u200e\n De Wafelbakkers", "ASIN\n \u200f": "\u200e\n B01J5J2RPW", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: De Wafelbakkers", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=De+Wafelbakkers", "full_description": "De Wafel bakkers Pancake 18 Fluffy Buttermilk.", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/51OUdPshUxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Frozen \u203a Breakfast Foods \u203a Pancakes & French Toast \u203a Pancakes", "average_rating": 4.7, "small_description": ["Great for a fast breakfast "], "total_reviews": 387, "total_answered_questions": 8, "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01J5J2RPW", "category": "grocery", "query": "Frozen", "page": 2, "small_description_old": "About this item Great for a fast breakfast"}, {"name": "EATOP USB 3.0 512GB Flash Drive Photo Stick for iPhone (13/12/12 pro/12 pro max/11/11 Pro/XR/X/8/7/6) iPhone Memory Stick External Photo Storage Drive for iPhone iPad Android Computer (Purple)", "product_information": "", "brand": "Visit the EATOP Store", "brand_url": "https://www.amazon.com/stores/HOME/page/A4395C35-AF87-4D36-90D6-78DECFF7D7A1?ref_=ast_bln", "full_description": "", "pricing": "$29.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41dZisHS50L.jpg", "https://m.media-amazon.com/images/I/516M2ZjU4pL.jpg", "https://m.media-amazon.com/images/I/517EDNFbg9L.jpg", "https://m.media-amazon.com/images/I/51ZMos20nbL.jpg", "https://m.media-amazon.com/images/I/51qQWFH6KnL.jpg", "https://m.media-amazon.com/images/I/51lbWtrfKwL.jpg", "https://m.media-amazon.com/images/I/51whCD1K4tL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Data Storage \u203a USB Flash Drives", "average_rating": 4.1, "small_description": ["\u2714\u30104 IN 1 USB FLASH DRIVE\u3011Compared with the traditional single-plug flash drive, this 512G iPhone flash drive has multiple plug models and supports devices such as Android (with OTG Function) /iPhone/iPad/PC. And just with this compact thumb drive, you can freely transfer photos and videos between multiple devices! Note: Android phones must have OTG function to use this USB flash drive. ", "\u2714\u3010ONE-CLICK BACKUP\u3011Compatible with iPhone memory stick provides a simple and quick way to transfer photos and videos. Just plug the usb flash drive into moblie phone, install and open \"Y-DISK\" app, and you can easily backup all photos, videos and files with one click. No need for tedious selection, copying and pasting. Save your time and memory space with a thumb drive! ", "\u2714\u3010HIGH-SPEED TRANSFERS WITH USB 3.0\u3011Directly plugs into your mobile phone port and USB 3.0 port, experience up to 80 MB/s reading and 30 MB/s writing speed with USB port. Enjoy the whole relaxing trip with never stuttering or buffering video play on the go. Support videos formats: AVI, M4V, MKV, MOV, M P4, MPG, RM, RMVB, TS, WMV, FLV, 3GP; AUDIOS: FLAC, APE, AAC, AIF, M4A, MP3, WAV. ", "\u2714\u3010PRIORITY TO PRIVACY PROTECTION\u3011Compatible with iPhone photo stick to share files, photos and videos with colleagues and friends without worrying about personal privacy leaks. Because our iPhone thumb drive has file encryption function. You can choose to encrypt some files with Touch ID or a password, or you can choose to encrypt all files. The encrypted files will not be displayed on the computer, which will provide you with a more convenient and safer use experience. ", "\u2714\u3010FREE UP YOUR MEMORY SPACE\u3011Still get annoyed with the short-storage of mobile phone? You will no more have that bad feeling with our 512G flash drive! Store your favorite movies, music & images to our Memory Photo Stick for iPhone and iPad, and enjoy them when you are on a trip or trave. Or you can capture wonderful moments in life and save them into this iPhone photo storage device, and then upload them on your social media to share the joy with family and friends! "], "total_reviews": 1640, "total_answered_questions": 86, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09P724TSZ/ref=twister_B09PQRJ84F", "value": "256GB", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "512GB", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09P724TSZ/ref=twister_B09PQRJ84F", "value": "USB256-Dark Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41g1TLHt-xL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P73PBG5/ref=twister_B09PQRJ84F", "value": "USB256-Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ynvMoEj3L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P737RSY/ref=twister_B09PQRJ84F", "value": "USB256-Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41pBwt4KajL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P73D1GX/ref=twister_B09PQRJ84F", "value": "USB256-Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gb09o0oPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QMNNNG4/ref=twister_B09PQRJ84F?_encoding=UTF8&psc=1", "value": "EAUSB512-Dark Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41KU6vJ85AL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QMP49Z1/ref=twister_B09PQRJ84F?_encoding=UTF8&psc=1", "value": "EAUSB512-Rose gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-XrGEq1TL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QMPSG4J/ref=twister_B09PQRJ84F?_encoding=UTF8&psc=1", "value": "Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/416nMsBOWEL.jpg"}, {"is_selected": true, "url": null, "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41dZisHS50L.jpg"}]}, "seller_id": "A3PH90AI4BQAXT", "seller_name": "EATOP", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09QMPV75P", "category": "electronics", "query": "Flashes", "page": 16, "small_description_old": "About this item\n \n\u2714\u30104 IN 1 USB FLASH DRIVE\u3011Compared with the traditional single-plug flash drive, this 512G iPhone flash drive has multiple plug models and supports devices such as Android (with OTG Function) /iPhone/iPad/PC. And just with this compact thumb drive, you can freely transfer photos and videos between multiple devices! Note: Android phones must have OTG function to use this USB flash drive. \u2714\u3010ONE-CLICK BACKUP\u3011Compatible with iPhone memory stick provides a simple and quick way to transfer photos and videos. Just plug the usb flash drive into moblie phone, install and open \"Y-DISK\" app, and you can easily backup all photos, videos and files with one click. No need for tedious selection, copying and pasting. Save your time and memory space with a thumb drive! \u2714\u3010HIGH-SPEED TRANSFERS WITH USB 3.0\u3011Directly plugs into your mobile phone port and USB 3.0 port, experience up to 80 MB/s reading and 30 MB/s writing speed with USB port. Enjoy the whole relaxing trip with never stuttering or buffering video play on the go. Support videos formats: AVI, M4V, MKV, MOV, M P4, MPG, RM, RMVB, TS, WMV, FLV, 3GP; AUDIOS: FLAC, APE, AAC, AIF, M4A, MP3, WAV. \u2714\u3010PRIORITY TO PRIVACY PROTECTION\u3011Compatible with iPhone photo stick to share files, photos and videos with colleagues and friends without worrying about personal privacy leaks. Because our iPhone thumb drive has file encryption function. You can choose to encrypt some files with Touch ID or a password, or you can choose to encrypt all files. The encrypted files will not be displayed on the computer, which will provide you with a more convenient and safer use experience. \u2714\u3010FREE UP YOUR MEMORY SPACE\u3011Still get annoyed with the short-storage of mobile phone? You will no more have that bad feeling with our 512G flash drive! Store your favorite movies, music & images to our Memory Photo Stick for iPhone and iPad, and enjoy them when you are on a trip or trave. Or you can capture wonderful moments in life and save them into this iPhone photo storage device, and then upload them on your social media to share the joy with family and friends!"}, {"name": "BOCOMAL FR Pants for Men Cargo Flame Resistant Pants(2112&CAT2) 100% C 7.5oz Utility Fire Resistant Pants", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.4 x 11.7 x 2 inches; 1.75 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n October 21, 2020", "ASIN\n \u200f": "\u200e\n B08LKXSNYL", "Best Sellers Rank": "#73,844 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#101 in Men's Work Utility & Safety Pants", "#101 in Men's Work Utility & Safety Pants": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$45.99$49.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/317yUg75IQS.jpg", "https://m.media-amazon.com/images/I/31XQ+HRlBtS.jpg", "https://m.media-amazon.com/images/I/31ocKdsvZVS.jpg", "https://m.media-amazon.com/images/I/3161EF7iSrL.jpg", "https://m.media-amazon.com/images/I/31ZFbiNUzWS.jpg", "https://m.media-amazon.com/images/I/41dKgaZfl-L.jpg", "https://m.media-amazon.com/images/I/41xp2XfWsDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Uniforms, Work & Safety \u203a Clothing \u203a Work Utility & Safety \u203a Pants", "average_rating": 4.4, "small_description": ["FR MATRIALS\uff1a7.5OZ Cotton Twill FR Treated,FR Buttons,FR Sewing Threads!Clear FR Tag on Phone Pocket front.More FR info On Neck Tag About UL Certification.We Attached A Small Sample Inside Package For Cunstomers Simple FR Try ", "This FR Work Pant has 9 Pockets And Elstic waist band, Provides A Perfect And Comfortable Relaxed Fit. Also Soft And fashionable.We Did Prewash/ Preshrunk And Wrinkle-Free.Machine Wash No Shrink! Double needle stitching on outseam. Left and right cargo pockets at the thighs with flaps to keep items secure. ", "ENSURE SAFETY AT WORK :This garments meets or exceeds the standards for HRC2,Arc Rating Atpv 9.8 Calories/cm2 and the requirements of NFPA2112 Standard on Flame Resisant Garments for Protection of industrial Personnel Against Flash Fire,2012 Edition.Also NFPA70E ASTM F1506 AND CAT II Cerfied! ", "MULTI-USE:Made For Welders, Fitters, Ironworkers, Electricians, And Other Industrial Workers Even At Home. It Can Be Used For Any Kind Of Industrial And Construction works.More Durable Fabrics Pockets In Just The Right Places With So Many Features That Help You Get The Job Done. Our Workwear Pretect You Everyday And Help You Doing Heavy Works. ", "MORE USE TIME: UP TO 100 WASHES ,Our shirts has the appropriate level of protective gear and stays enforced up to numerous washes. You can wear and wash it over and over again for up to 100 times before FR still works.(NFPA2112,ASTM F1506,CAT II) "], "total_reviews": 337, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08LK7BDLY/ref=twister_B08LK8J644", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31nm18nV60S.jpg"}, {"is_selected": true, "url": null, "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/317yUg75IQS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098QBR8P4/ref=twister_B08LK8J644", "value": "Bottle Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/313R0bUfiPS.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "30W x 30L", "asin": "B08LKHKZV3"}, {"is_selected": false, "is_available": true, "value": "30W x 32L", "asin": "B08LK8TW6G"}, {"is_selected": false, "is_available": true, "value": "32W x 30L", "asin": "B08LKBPC4P"}, {"is_selected": false, "is_available": true, "value": "32W x 32L", "asin": "B08LKCTHZ5"}, {"is_selected": false, "is_available": true, "value": "34W x 30L", "asin": "B08LKHHGSJ"}, {"is_selected": false, "is_available": true, "value": "34W x 32L", "asin": "B08LKKSL8F"}, {"is_selected": false, "is_available": false, "value": "34W x 34L", "asin": "B09JFRQBPC"}, {"is_selected": false, "is_available": true, "value": "36W x 30L", "asin": "B08LKHN9S5"}, {"is_selected": false, "is_available": true, "value": "36W x 32L", "asin": "B08LKFNK6R"}, {"is_selected": false, "is_available": false, "value": "36W x 34L", "asin": "B09JFR7TV3"}, {"is_selected": false, "is_available": true, "value": "38W x 30L", "asin": "B08LKJ3XP5"}, {"is_selected": false, "is_available": true, "value": "38W x 32L", "asin": "B08LKR671D"}, {"is_selected": false, "is_available": false, "value": "38W x 34L", "asin": "B09JFJW235"}, {"is_selected": false, "is_available": true, "value": "40W x 30L", "asin": "B08LK8YDTG"}, {"is_selected": false, "is_available": true, "value": "40W x 32L", "asin": "B08LKKN8XQ"}, {"is_selected": false, "is_available": false, "value": "40W x 34L", "asin": "B09JFPPW85"}, {"is_selected": false, "is_available": true, "value": "42W x 30L", "asin": "B08LK58C6R"}, {"is_selected": false, "is_available": true, "value": "42W x 32L", "asin": "B08LK82SVN"}, {"is_selected": false, "is_available": false, "value": "42W x 34L", "asin": "B09JFSLXPD"}, {"is_selected": false, "is_available": true, "value": "44W x 30L", "asin": "B08LKJHFVL"}, {"is_selected": false, "is_available": true, "value": "44W x 32L", "asin": "B08LK8QYZ4"}, {"is_selected": false, "is_available": false, "value": "44W x 34L", "asin": "B09JFLYF7G"}, {"is_selected": false, "is_available": true, "value": "46W x 30L", "asin": "B08LKH15DH"}, {"is_selected": false, "is_available": true, "value": "46W x 32L", "asin": "B08LL1RBQB"}, {"is_selected": false, "is_available": true, "value": "48W x 30L", "asin": "B092VBHJ7K"}, {"is_selected": false, "is_available": true, "value": "48W x 32L", "asin": "B092VD2XGB"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08LKKSL8F", "category": "fashion", "query": "Men's Pants", "page": 27, "small_description_old": "FR MATRIALS\uff1a7.5OZ Cotton Twill FR Treated,FR Buttons,FR Sewing Threads!Clear FR Tag on Phone Pocket front.More FR info On Neck Tag About UL Certification.We Attached A Small Sample Inside Package For Cunstomers Simple FR Try This FR Work Pant has 9 Pockets And Elstic waist band, Provides A Perfect And Comfortable Relaxed Fit. Also Soft And fashionable.We Did Prewash/ Preshrunk And Wrinkle-Free.Machine Wash No Shrink! Double needle stitching on outseam. Left and right cargo pockets at the thighs with flaps to keep items secure. ENSURE SAFETY AT WORK :This garments meets or exceeds the standards for HRC2,Arc Rating Atpv 9.8 Calories/cm2 and the requirements of NFPA2112 Standard on Flame Resisant Garments for Protection of industrial Personnel Against Flash Fire,2012 Edition.Also NFPA70E ASTM F1506 AND CAT II Cerfied! MULTI-USE:Made For Welders, Fitters, Ironworkers, Electricians, And Other Industrial Workers Even At Home. It Can Be Used For Any Kind Of Industrial And Construction works.More Durable Fabrics Pockets In Just The Right Places With So Many Features That Help You Get The Job Done. Our Workwear Pretect You Everyday And Help You Doing Heavy Works. MORE USE TIME: UP TO 100 WASHES ,Our shirts has the appropriate level of protective gear and stays enforced up to numerous washes. You can wear and wash it over and over again for up to 100 times before FR still works.(NFPA2112,ASTM F1506,CAT II)"}, {"name": "Sykting Christmas Pillow Covers 18x18 Inch with Raised Embroidery Snowflakes Neutral Boho Throw Pillow Covers Decorative for Winter Holiday Grey Pack of 2", "product_information": {"Package Dimensions": "10.91 x 7.8 x 1.89 inches", "Item Weight": "10.8 ounces", "Manufacturer": "JWstyle1000", "ASIN": "B09DYFZM1X", "Customer Reviews": {"ratings_count": 275, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#571,127 in Home & Kitchen (See Top 100 in Home & Kitchen) #8,302 in Throw Pillow Covers"], "Specific Uses For Product": "Decorative", "Fabric Type": "Cotton", "Fill material Type": "Cotton", "material_composition": "Cotton canvas", "Material Care Instructions": "Machine wash cold on gentle cycle and tumble dry low.Do not bleach.Do not iron.", "Number of Pieces": "2", "Batteries Required?": "No"}, "brand": "Visit the sykting Store", "brand_url": "https://www.amazon.com/stores/Sykting/page/7FBA4BCF-A527-4B1B-929A-F9B01ACAC22C?ref_=ast_bln", "full_description": "", "pricing": "$19.99", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51Fd-BmnuBL.jpg", "https://m.media-amazon.com/images/I/51fdL0gdLdL.jpg", "https://m.media-amazon.com/images/I/51inmcLYjFL.jpg", "https://m.media-amazon.com/images/I/61W4Jub5UVL.jpg", "https://m.media-amazon.com/images/I/51VJhL9HsXL.jpg", "https://m.media-amazon.com/images/I/5101YRNCnnL.jpg", "https://m.media-amazon.com/images/I/41N1qEgso8L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": 4.8, "small_description": ["Cotton ", "The cute snowflakes are not printed,they are actually a beautiful embroidery with raised design and exquisite touch;The detailed embroidery makes for nice texture,and this has the embroidered pattern on one side,other is solid white ", "Simple,festive design makes these Christmas pillow covers perfect for holiday and winter decor.Bring the holiday spirit into your home with these adorable decorative pillow covers now,compliments abound!Holiday pillow covers to your friends,family and yourself ", "Durable high quality cotton canvas couch pillow covers,the fabric is soft,thick,sturdy and breathable,there's no see through.Machine wash in cold water,delicate cycle ", "Package:Pillow covers 18x18 inch set of 2,perfectly fit for 18x18 / 20x20 inch square pillow insert.Throw pillow cases only,NO Insert ", "Hidden zipper closure "], "total_reviews": 275, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09DYDT12M/ref=twister_B09DYHDB9H?_encoding=UTF8&psc=1", "value": "16\"x16\"", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "18 x 18-Inch", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Fd-BmnuBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DYFDFYJ/ref=twister_B09DYHDB9H?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gSwviAUdL.jpg"}]}, "seller_id": "A352GMR5N4BJM8", "seller_name": "JWstyle1000", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B09DYFZM1X", "category": "garden", "query": "Decorative Pillows", "page": 110, "small_description_old": "About this item The cute snowflakes are not printed,they are actually a beautiful embroidery with raised design and exquisite touch;The detailed embroidery makes for nice texture,and this has the embroidered pattern on one side,other is solid white Simple,festive design makes these Christmas pillow covers perfect for holiday and winter decor.Bring the holiday spirit into your home with these adorable decorative pillow covers now,compliments abound!Holiday pillow covers to your friends,family and yourself Durable high quality cotton canvas couch pillow covers,the fabric is soft,thick,sturdy and breathable,there's no see through.Machine wash in cold water,delicate cycle Package:Pillow covers 18x18 inch set of 2,perfectly fit for 18x18 / 20x20 inch square pillow insert.Throw pillow cases only,NO Insert Hidden zipper closure"}, {"name": "Set of 2 Mesh Laundry Bags Rainbow Leopard Seamless-1 Medium & 1 Small Bags Laundry,Blouse, Hosiery, Stocking, Underwear, Bra Lingerie, Travel Laundry Bag(8rp7j)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 24 x 20 x 0.2 inches", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n April 27, 2021", "Manufacturer\n \u200f": "\u200e\n Bolaz", "ASIN\n \u200f": "\u200e\n B093K5JK25", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Bolaz", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Bolaz", "full_description": "\u3010Printing\u3011One-sided full printing [Material] Polyester [Size] Two packs, one large and one small. M: 20x24in/50.8x60.96cm; S: 20x16in/50.8x40.46cm [Packing size] OPP bag, 24x28x1cm \u3010Product description\u3011Using polyester fabric, dense mesh, high-speed rotation in the washing machine, durable and avoid to be thrown; plastic pull and lock positions are sewn with protective elastic bands to make clothing avoid to be scratched and to be thrown out by the zipper . The use of laundry bags protects clothes to avoid entanglement, reduces deformation and wear, and protects clothes with metal zippers or buttons from damaging the inner wall of the washing machine. [Applicable scenarios] Washing machine, home storage, luggage storage, etc.", "pricing": "$15.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/5157-0H5EzS.jpg", "https://m.media-amazon.com/images/I/511VPCKrfiS.jpg", "https://m.media-amazon.com/images/I/51w8w17jTyS.jpg", "https://m.media-amazon.com/images/I/51JsnTrHtBS.jpg", "https://m.media-amazon.com/images/I/51QxkimQgXS.jpg", "https://m.media-amazon.com/images/I/61FBa+-2ItS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Accessories \u203a Wallets, Card Cases & Money Organizers \u203a Wallets", "average_rating": "", "small_description": ["Fiber ", "Imported ", "Set of 2 Mesh Laundry Bags-1 Medium & 1 Small for Laundry,Blouse, Hosiery, Stocking, Underwear, Bra and Lingerie, Travel Laundry Bag. ", "Durable and breathable polyester fibre material, healthy and clean. These Lingerie Bags for Laundry perform perfectly every time protecting your delicates, and keeping them like new. Use in the Dryer too. ", "You & your clothes will LOVE the premium, Strong mesh protecting your finest garments, it is the first choice to protect delicates, extend the life of lingerie, hosiery, intimates and more. ", "DELICATES LAUNDRY BAGS KEEP COLORS SEPARATE & SAFE ", "Multipurpose - Travel Organizer Bag: Ideal for packaging clothing. When you arecamping and traveling with friends, you can easily separate yours and yourfriends' clothes with travel laundry bag. When you share a washing machine with your roommate, you can easily identify your clothes with our DIY Printed laundry bags. It can be used for storage as well to sort your clothes in anorganised way in wardrobe. It is also a great helper for house moving. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1KITK4A5218C8", "seller_name": "SKYDA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B093K5JK25", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 207, "small_description_old": "About this item Fiber Imported Set of 2 Mesh Laundry Bags-1 Medium & 1 Small for Laundry,Blouse, Hosiery, Stocking, Underwear, Bra and Lingerie, Travel Laundry Bag. Durable and breathable polyester fibre material, healthy and clean. These Lingerie Bags for Laundry perform perfectly every time protecting your delicates, and keeping them like new. Use in the Dryer too. You & your clothes will LOVE the premium, Strong mesh protecting your finest garments, it is the first choice to protect delicates, extend the life of lingerie, hosiery, intimates and more. DELICATES LAUNDRY BAGS KEEP COLORS SEPARATE & SAFE Multipurpose - Travel Organizer Bag: Ideal for packaging clothing. When you arecamping and traveling with friends, you can easily separate yours and yourfriends' clothes with travel laundry bag. When you share a washing machine with your roommate, you can easily identify your clothes with our DIY Printed laundry bags. It can be used for storage as well to sort your clothes in anorganised way in wardrobe. It is also a great helper for house moving."}, {"name": "NIUTA 2 Pack Hair Towel Wrap, Microfiber Quick Drying Hair Towels, Super Absorbent Quick Dry Hair Towel, Wrapped Bath Cap (Pink+Light Blue)", "product_information": {"Item Weight": "6.7 ounces", "Manufacturer": "NIUTA", "ASIN": "B08G14B779", "Item model number": "YJ-YM101", "Customer Reviews": {"ratings_count": 191, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#214,306 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #356 in Hair Drying Towels"], "Fabric Type": "Superfine Fiber", "Number of Pieces": "2", "Batteries Required?": "No"}, "brand": "Brand: NIUTA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=NIUTA", "full_description": "Specification: Size:26\u201dx10\u201d/ 66 x 26 cm Material: Microfiber This microfiber hair-drying cap has super water-absorbent ability. Has button & loop for keeping it on securely. Quick drying and lightweight Gentle on hair and skin Absorbs wetness and dries hair faster than normal towels How to use? (3 Steps) 1. Bend to make your hair hang down, put hair towel on your head (the end with button); 2. Wrap your hair with the hanging part of the towel; 3. Pull up the secure loop across your head and fix it under the secure button. PACKAGE INCLUDES: 2 X Hair Towel Wrap(pink/Light blue)", "pricing": "$4.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41ePS5j3x8L.jpg", "https://m.media-amazon.com/images/I/41G50dr9ipL.jpg", "https://m.media-amazon.com/images/I/51T9naefj-L.jpg", "https://m.media-amazon.com/images/I/51VWBsP7CPL.jpg", "https://m.media-amazon.com/images/I/51GEhvyc0HL.jpg", "https://m.media-amazon.com/images/I/41gVDkis4ML.jpg", "https://m.media-amazon.com/images/I/41o-npC5DlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Accessories \u203a Hair Drying Towels", "average_rating": 4.6, "small_description": ["Superfine Fiber ", "Microfiber material: very absorbent and fast drying. Especially for people who wash hair every day and try to use hairdryer less often, this is a perfect product to help hair dry naturally and reduces frizz. ", "High Quality: Our towels are no fading. You can feel comfortable buying our hair towel! Size: 26 inch x 10 inch (66cm x 26cm) , Fits all hair types and lengths. ", "MULTIFUNCTION - Our magic hair turban towel are ideal for everyday use at home, at the gym and travel, it is a great assistant in facial, bath, makeup, face wash. You don't have to worry about your hair getting dirty. ", "NO SLIPPING, NO FALLS OFF: Hair towel equipped with button and loop which stops it from unraveling. You can bend your head forward and let your hair flow naturally. Then put on the magic hair drying Cap and twist of all hair, folding back the magic hair drying cap button up on the hair. it\u2019s a perfect gift for all women. ", "Keeps your hairline dry, Wear it right at your hairline, you don\u2019t need to worry about wet hair anymore when wash your face, face masks and putting on or removing makeup. Prefect for daily use and very convenient. "], "total_reviews": 191, "total_answered_questions": "", "model": "YJ-YM101", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08G146QD4/ref=twister_B08X8CP6VY", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/515aUq-siSL.jpg"}, {"is_selected": true, "url": null, "value": "Pink Light Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ePS5j3x8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FYMPXMN/ref=twister_B08X8CP6VY?_encoding=UTF8&psc=1", "value": "Pink Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51jmjWA-f8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08G163XKM/ref=twister_B08X8CP6VY?_encoding=UTF8&psc=1", "value": "Pink Rose", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/512CQrKh0GL.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08G146QD4/ref=twister_B08X8CP6VY", "value": "26 inch x 10 inch", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "26 Inch x 10 Inch", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A220Z5UVJH25WY", "seller_name": "VCOREV", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08G14B779", "category": "beauty", "query": "Bathing Accessories", "page": 203, "small_description_old": "About this item Superfine Fiber Microfiber material: very absorbent and fast drying. Especially for people who wash hair every day and try to use hairdryer less often, this is a perfect product to help hair dry naturally and reduces frizz. High Quality: Our towels are no fading. You can feel comfortable buying our hair towel! Size: 26 inch x 10 inch (66cm x 26cm) , Fits all hair types and lengths. MULTIFUNCTION - Our magic hair turban towel are ideal for everyday use at home, at the gym and travel, it is a great assistant in facial, bath, makeup, face wash. You don't have to worry about your hair getting dirty. NO SLIPPING, NO FALLS OFF: Hair towel equipped with button and loop which stops it from unraveling. You can bend your head forward and let your hair flow naturally. Then put on the magic hair drying Cap and twist of all hair, folding back the magic hair drying cap button up on the hair. it\u2019s a perfect gift for all women. Keeps your hairline dry, Wear it right at your hairline, you don\u2019t need to worry about wet hair anymore when wash your face, face masks and putting on or removing makeup. Prefect for daily use and very convenient."}, {"name": "Mingbao Sound Quality Hi-Fi Stereo Speaker Wireless Bluetooth Soundbar Home Theater TV Strong Bass Sound Bar + Remote Control", "product_information": {"Item Weight": "1.49 pounds", "ASIN": "B095C2ZMTX", "Date First Available": "May 19, 2021", "Manufacturer": "Mingbao"}, "brand": "Brand: Mingbao", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Mingbao", "full_description": "1. Upgraded version of luxury audio, 4 speakers, 3D stereo surround sound, the effect is absolutely stunning. 2. Support Bluetooth connection, fully compatible with most kinds of Bluetooth devices, wireless playback, please do whatever you want. 3. Support U disk playback. You can also play audio from your phone or other device over the audio cable. 4. Built-in DSP sound processor, clear and no noise. 5. Simple connection and easy operation. It also has a remote control for remote control and enjoys the perfect experience of sight and hearing. Watching TV at home is like watching a movie at a movie theater. It gives you a theatre-level sound experience. specification: Bluetooth version: V5.0 Speaker power: 25W* 4 Colour: Black Use transmission power: 1.49mW Transmission frequency: 2.48GHz Transmission distance: 8-10 meters Music playback time: about 2.5 hours Charging time: 2-3 hours Standby time: 240 hours Supported formats: A2DP, AVRCP, HSP and HF Battery: 18650, 3.7V / 2000mA Signal to noise ratio: -80db Frequency response: 20HZ-20KHZ Charging voltage: DC 5V / 1A-2A Charging socket: micro 5pin (V8) Support TF card audio input Support 3.5mm audio input Support U disk audio input With radio function. Size: 550mm* 50mm*50mm Weight: 675 grams Package Included: 1 speaker (for all TVs) 1 charging cable 1 x RCA line 1 remote control 1 x manual", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/21ZKYKWOwjS.jpg", "https://m.media-amazon.com/images/I/515Raz8q2eS.jpg", "https://m.media-amazon.com/images/I/51YSWqbe+ES.jpg", "https://m.media-amazon.com/images/I/41KtBTQcOkS.jpg", "https://m.media-amazon.com/images/I/51rB8gmOBzS.jpg", "https://m.media-amazon.com/images/I/41puzuJHcSS.jpg", "https://m.media-amazon.com/images/I/41wn+wbT4VS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Speakers \u203a Sound Bars", "average_rating": "", "small_description": ["Upgraded version of luxury audio, 4 speakers, 3D stereo surround sound, the effect is absolutely stunning. ", "Support Bluetooth connection, fully compatible with most kinds of Bluetooth devices, wireless playback, please do whatever you want. ", "Support U disk playback. You can also play audio from your phone or other device over the audio cable. ", "Built-in DSP sound processor, clear and no noise. ", "Simple connection and easy operation. It also has a remote control for remote control and enjoys the perfect experience of sight and hearing. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B095C2ZMTX", "category": "electronics", "query": "Soundbars", "page": 195, "small_description_old": "About this item\n \nUpgraded version of luxury audio, 4 speakers, 3D stereo surround sound, the effect is absolutely stunning. Support Bluetooth connection, fully compatible with most kinds of Bluetooth devices, wireless playback, please do whatever you want. Support U disk playback. You can also play audio from your phone or other device over the audio cable. Built-in DSP sound processor, clear and no noise. Simple connection and easy operation. It also has a remote control for remote control and enjoys the perfect experience of sight and hearing."}, {"name": "Vanknight Xbox One X Console Remote Controllers Skin Set Dragon Ball Vinyl Skin Decals Sticker Cover for Xbox One X(XB1 X) Console", "product_information": {"Product Dimensions": "11.81 x 12.99 x 0.39 inches", "Item Weight": "4.6 ounces", "ASIN": "B079R9H2KB", "Customer Reviews": {"ratings_count": 95, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#28,635 in Video Games (See Top 100 in Video Games) #260 in Xbox One Faceplates, Protectors & Skins"], "Date First Available": "July 10, 2018"}, "brand": "Brand: Vanknight", "brand_url": "https://www.amazon.com/Vanknight/b/ref=bl_dp_s_web_14033461011?ie=UTF8&node=14033461011&field-lbr_brands_browse-bin=Vanknight", "full_description": "These are vinyl skins sticker ONLY. Not a hard plastic cover or case! A good decal skin not only helps to protect your machine from dust and scratches, but also keep it in good look. Decal easy to install and remove, no scratch will be left when decal has been removed.", "pricing": "$13.80", "list_price": "", "availability_quantity": 11, "availability_status": "Only 11 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51qKFFWbelL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a Xbox One \u203a Accessories \u203a Faceplates, Protectors & Skins", "average_rating": 4.2, "small_description": ["This is a vinyl material decal for Xbox One X CONSOLE ONLY. NOT FOR Regular Xbox One or Xbox One S. ", "High quality vinyl material, easy to stick and remove, no scratches left. ", "Precision cut, easy access for buttons, controls, connectors ", "Protect your whole console and controllers from dust and scratches ", "Comes with 1 Xbox One S(Slim) console (front+back) sticker + 2 controllers skin. "], "total_reviews": 95, "total_answered_questions": "", "customization_options": "", "seller_id": "A2ZBHQPGIYPM36", "seller_name": "FunPlayOnly", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B079R9H2KB", "category": "electronics", "query": "Xbox", "page": 59, "small_description_old": "This is a vinyl material decal for Xbox One X CONSOLE ONLY. NOT FOR Regular Xbox One or Xbox One S. High quality vinyl material, easy to stick and remove, no scratches left. Precision cut, easy access for buttons, controls, connectors Protect your whole console and controllers from dust and scratches Comes with 1 Xbox One S(Slim) console (front+back) sticker + 2 controllers skin."}, {"name": "8' FT RCA Cable 3 RCA Males Each End Composite Audio Video Gold Shielded RG59 Coaxial Stereo A/V Dubbing Cable Heavy Duty Fully R/Y/W Triple A/V Stereo Digital Signal Hook-Up RG-59 Jumper with Plug Connectors", "product_information": {"Item Weight": "1 pounds", "Manufacturer": "DIRECTV", "ASIN": "B00UN9GR8W", "Item model number": "4330095453", "Customer Reviews": {"ratings_count": 2, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#4,934 in RCA Cables"], "Date First Available": "March 13, 2015"}, "brand": "Brand: NAC Wire and Cables", "brand_url": "https://www.amazon.com/NAC-Wire-and-Cables/b/ref=bl_dp_s_web_8415372011?ie=UTF8&node=8415372011&field-lbr_brands_browse-bin=NAC+Wire+and+Cables", "full_description": "Audio/Video 3-Wire Cable, 8' ft. Connects a VCR to a monitor for viewing or two VCRs for audio/video dubbing (in stereo). It is literally two kinds of cable molded together as one for neat, tangle free installation. Specially designed for one-step video recording and viewing. Color coded for flawless connections. Heavy-duty shielding for better performance", "pricing": "$11.51", "list_price": "", "availability_quantity": 12, "availability_status": "Only 12 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/412rIGCwZhL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Audio Cables \u203a RCA Cables", "average_rating": 4.5, "small_description": ["Audio/Video 3-Wire Cable, 8' ft. Connects a VCR to a monitor for viewing or two VCRs for audio/video dubbing (in stereo) ", "It is literally two kinds of cable molded together as one for neat, tangle free installation ", "Specially designed for one-step video recording and viewing ", "Color coded for flawless connections ", "Heavy-duty shielding for better performance "], "total_reviews": 2, "total_answered_questions": "", "model": "4330095453", "customization_options": "", "seller_id": "A28313T4QC2Y1U", "seller_name": "NAC Wire and Cables", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00UN9GR8W", "category": "electronics", "query": "VCRs", "page": 303, "small_description_old": "About this item Audio/Video 3-Wire Cable, 8' ft. Connects a VCR to a monitor for viewing or two VCRs for audio/video dubbing (in stereo) It is literally two kinds of cable molded together as one for neat, tangle free installation Specially designed for one-step video recording and viewing Color coded for flawless connections Heavy-duty shielding for better performance"}, {"name": "Stove Top Everyday Chicken Stuffing Mix (12 oz Box)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 3.9 x 3.9 x 8.1 inches; 8 Ounces", "Item model number\n \u200f": "\u200e\n dinirao", "UPC\n \u200f": "\u200e\n 043000285886 043000015568", "Manufacturer\n \u200f": "\u200e\n Sun Maid", "ASIN\n \u200f": "\u200e\n B000VDV2F8", "Best Sellers Rank": "#469,266 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#17,856 in Canned, Jarred & Packaged Foods", "#17,856 in Canned, Jarred & Packaged Foods": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Stop Top", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Stop+Top", "full_description": "Make any family dinner something to celebrate with Kraft Stove Top Everyday Stuffing Mix for Chicken. A blend of fresh baked bread crumbs with real chicken broth is the perfect pairing for a chicken dinner and brings a soft, fluffy texture in every forkful. Each can comes packed with a dry, pre-seasoned stuffing mix, and the resealable container means you can make as much or as little as needed. Simply add water and butter or margarine for a stuffing that tastes like it was made from scratch! Can easily be made in the microwave as well. Delicious served as is alongside your holiday dinner or in recipes such as chicken stuffing casserole-. Each 12 ounce resealable can of this easy stuffing can be enjoyed stuffed in your Thanksgiving turkey or as an addition to any meal year round.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51edmQDsnCL.jpg", "https://m.media-amazon.com/images/I/51Ffqi4MmFL.jpg", "https://m.media-amazon.com/images/I/51CVJHoD-SL.jpg", "https://m.media-amazon.com/images/I/41NDZvn88AL.jpg", "https://m.media-amazon.com/images/I/517A96EhH1L.jpg", "https://m.media-amazon.com/images/I/51YAgZLkqdL.jpg", "https://m.media-amazon.com/images/I/31-mGqIRu6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Canned, Jarred & Packaged Foods", "average_rating": 3.9, "small_description": ["One 12 oz. can of Kraft Stove Top Everyday Stuffing Mix for Chicken ", "Share the savory goodness of Kraft Stove Top Everyday Stuffing Mix for Chicken with your family ", "Each can includes a dry, fully seasoned chicken stuffing mix ", "Made with herbs, spices and real chicken broth ", "Use it for recipes such as chicken stuffing casserole "], "total_reviews": 12, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B000VDV2F8", "category": "grocery", "query": "Butter & Margarine", "page": 39, "small_description_old": "About this item One 12 oz. can of Kraft Stove Top Everyday Stuffing Mix for Chicken Share the savory goodness of Kraft Stove Top Everyday Stuffing Mix for Chicken with your family Each can includes a dry, fully seasoned chicken stuffing mix Made with herbs, spices and real chicken broth Use it for recipes such as chicken stuffing casserole"}, {"name": "Coralpearl Inflatable Hanger Travel X 4, White Round Shoulder, Portable Folding Clothes Drying Rack in Metal Hook,Space Saving Coat Storage Set Non Slip Foldable for Home Car Camping Indoor Outdoor", "product_information": {"Product Dimensions": "18.1 x 6.9 x 0.16 inches", "Item Weight": "4.4 ounces", "Manufacturer": "Coralpearlgroup", "ASIN": "B06XFZXXTC", "Country of Origin": "China", "Item model number": "1495-4", "Customer Reviews": {"ratings_count": 21, "stars": "3.7 out of 5 stars"}, "Best Sellers Rank": ["#757,303 in Home & Kitchen (See Top 100 in Home & Kitchen) #274 in Coat Hangers"], "Is Discontinued By Manufacturer": "No", "Number of Pieces": "4", "Batteries Required?": "No"}, "brand": "Visit the Coralpearl Store", "brand_url": "https://www.amazon.com/stores/Coralpearl/page/FE012F1B-3CAB-4E8D-B77B-CD2F60EB5093?ref_=ast_bln", "full_description": "Coralpearl Inflatable Hanger Travel X 4, White Round Shoulder, Portable Folding Clothes Drying Rack in Metal Hook,Space Saving Coat Storage Set Non Slip Foldable for Home Car Camping Indoor Outdoor: SIZE:18.1X6.9 inches Color: White -Hangers have a metal hook rust-proof in chrome plated for easy hanging. -A perfect travel NEAT accessory, taking very less space in your luggage when FLAT & FOLDED. HOW TO USE: NOTICE: A anti-leakage valve below the air blowing nozzle; 1. Open the hangers completely flat, not folded. 2. Press the air nozzle hard to make the connected anti-leakage valve inside LOOSE. 3. Blow the air until the hangers are inflated stronge enough. 4. LOOSE the nozzle to make the valve inside hold the hole to prevent the air leaking. 5. Cover the cap quickly for the strongest hanger for easy use.", "pricing": "$17.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41whW3BlQdL.jpg", "https://m.media-amazon.com/images/I/41+KX8wFq2L.jpg", "https://m.media-amazon.com/images/I/41ADJaAKG+L.jpg", "https://m.media-amazon.com/images/I/41t0B9cfVPL.jpg", "https://m.media-amazon.com/images/I/41-Zl3mlzYL.jpg", "https://m.media-amazon.com/images/I/41AfoAOjJvL.jpg", "https://m.media-amazon.com/images/I/51e78NQywzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Storage & Organization \u203a Clothing & Closet Storage \u203a Clothes Hangers \u203a Coat Hangers", "average_rating": 3.7, "small_description": ["Coralpearl Inflatable Hanger Travel X 4 pcs set in White\uff0cA must for hang-dry fabric Clothes! ", "With round edges that prevent 'hanger crease' at the shoulder of wet or dry garments; Folding Coat Rack in 360\u00b0Rotating Metal Hook for easy use; ", "Separates the front of the garment from the back, improving air-flow for faster clothing drying; ", "Portable, Non Slip, Foldable, Perfect travel accessories, fitting neatly in your luggage when deflated for Space Saving Storage, suitable for Home Car Camping Indoor Outdoor use; ", "Quality welding procedures to guarantee the Durable Welded Seals with anti-leakage valve. "], "total_reviews": 21, "total_answered_questions": "", "model": "1495-4", "customization_options": "", "seller_id": "AVD1DMCLWX7J4", "seller_name": "Coral Pearl Group Ltd.", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B06XFZXXTC", "category": "garden", "query": "Coat Racks", "page": 157, "small_description_old": "About this item\n \nCoralpearl Inflatable Hanger Travel X 4 pcs set in White\uff0cA must for hang-dry fabric Clothes! With round edges that prevent 'hanger crease' at the shoulder of wet or dry garments; Folding Coat Rack in 360\u00b0Rotating Metal Hook for easy use; Separates the front of the garment from the back, improving air-flow for faster clothing drying; Portable, Non Slip, Foldable, Perfect travel accessories, fitting neatly in your luggage when deflated for Space Saving Storage, suitable for Home Car Camping Indoor Outdoor use; Quality welding procedures to guarantee the Durable Welded Seals with anti-leakage valve."}, {"name": "EBTOOLS 12V Mini Audio Power Amplifier, Portable 20W+20W 47K Resolution Power Amplifier with Low Distortion Rate for Audio", "product_information": {"Product Dimensions": "0.39 x 0.39 x 0.39 inches", "Item Weight": "8.6 ounces", "ASIN": "B0932C11QQ", "Date First Available": "April 21, 2021", "Manufacturer": "EBTOOLS"}, "brand": "Brand: EBTOOLS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=EBTOOLS", "full_description": "Specification: Item Type: Power amplifier Model: AK170 Rated Power: 20W+20W Rated Frequency: 20-20KHZ Signal to Noise Ratio: 90db Resolution: 47K Rated Voltage: 12V Distortion Rate: 0.01 .w-e-text table td,.w-e-text table th,.wang-edit-text table td, .wang-edit-text table th{border: .5pt solid #000;};.w-e-text table,.wang-edit-text table{border: 1px solid #000 !important;} Package List: 1 x Amplifier\u00a0 1 x Instruction Manual", "pricing": "$17.77", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41g3odXpQWL.jpg", "https://m.media-amazon.com/images/I/41d+0lBGUjL.jpg", "https://m.media-amazon.com/images/I/415hm0jnVPL.jpg", "https://m.media-amazon.com/images/I/41WPirP-fuL.jpg", "https://m.media-amazon.com/images/I/41RGdT6iuxL.jpg", "https://m.media-amazon.com/images/I/51pXbzoYfAL.jpg", "https://m.media-amazon.com/images/I/41wkHBDTGZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Home Theater \u203a Receivers & Amplifiers \u203a Amplifiers", "average_rating": "", "small_description": ["As a multi-purpose power amplifier, it is slim and fashion with high-grade woven aluminum alloy process. ", "With high and low volume auxiliary adjustment, it can be adjusted according to their own needs. ", "Compatible with a variety of digital products, it can automaticly search and support FM radio frequency. ", "Being full-featured, it it easy to use, and it is entitled with simple and durable characteristics. ", "Promoting speaker to make sound, it plays an indispensable role in a good sound system. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A11O4ZQ8R1S7T3", "seller_name": "Lazmin", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0932C11QQ", "category": "electronics", "query": "Receivers & Amplifiers", "page": 148, "small_description_old": "As a multi-purpose power amplifier, it is slim and fashion with high-grade woven aluminum alloy process. With high and low volume auxiliary adjustment, it can be adjusted according to their own needs. Compatible with a variety of digital products, it can automaticly search and support FM radio frequency. Being full-featured, it it easy to use, and it is entitled with simple and durable characteristics. Promoting speaker to make sound, it plays an indispensable role in a good sound system."}, {"name": "Troentorp Women's Wright Clogs Cola Brown 38", "product_information": "", "brand": "Brand: Troentorp", "brand_url": "https://www.amazon.com/Troentorp/b/ref=bl_sl_s_sh_web_20047993011?ie=UTF8&node=20047993011&field-lbr_brands_browse-bin=Troentorp", "full_description": "", "pricing": "$125.00", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41W+F58jb0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Mules & Clogs", "average_rating": 3.6, "small_description": [""], "total_reviews": 4, "total_answered_questions": "", "customization_options": "", "seller_id": "A1RKPOJ3WS61Y7", "seller_name": "Ware To Work", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B077YSTCCT", "category": "fashion", "query": "Women's Mules & Clogs", "page": 168, "small_description_old": ""}, {"name": "CDQYA 10/14 Champagne Color New Makeup Brush Set Brushes Makeup Tools Foundation Brush Set Full Set of Beauty Tools Convenient (Color : 06)", "product_information": {"Item Weight": "0.035 ounces", "Department": "Unisex-adult", "Manufacturer": "nczt", "ASIN": "B09T33VS4Y", "Country of Origin": "China", "Date First Available": "February 22, 2022"}, "brand": "Brand: CDQYA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=CDQYA", "full_description": "Features:1. Function: Different shape brush, used in foundation, eyeshadow, eyehole, eyebrows, eyeliner, lip facial part make care!2. Profession Design of Burr: Suitable facial part different angles, effortless makeup!3. Material: Focus on different function, uses top grade of mixed fiber material.Description:Soft and comfortable! Or professional or beginner can get started effortlessly!Specifications:Bristle material: artificial fiberBrush handle material: wooden handleBrush handle specifications: long rodGross length specification: 4.5CMPackage Included:14/10 pcs/set * brush1 * bagOR14/10 pcs/set * brushNotes:1. Due to the difference between different monitors, the picture may not reflect the actual color of the item. We guarantee the style is the same as shown in the pictures.2. Please allow slight dimension difference due to different manual measurement.Due to manual measurement, please allow an error of 1-2cm.", "pricing": "$162.82", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41SRVcgMsbL.jpg", "https://m.media-amazon.com/images/I/41xgKngtuXL.jpg", "https://m.media-amazon.com/images/I/51NhsXyJxGL.jpg", "https://m.media-amazon.com/images/I/51Dkx8MyfpL.jpg", "https://m.media-amazon.com/images/I/41mFJKeRdjL.jpg", "https://m.media-amazon.com/images/I/41im1LOoDRL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Makeup Brushes & Tools \u203a Brush Sets", "average_rating": "", "small_description": ["Function: Different shape brush, used in foundation, eyeshadow, eyehole, eyebrows, eyeliner, lip facial part make care! ", "Profession Design of Burr: Suitable facial part different angles, effortless makeup! ", "Material: Focus on different function, uses top grade of mixed fiber material. ", "Soft and comfortable! Or professional or beginner can get started effortlessly! ", "Brush handle material: wooden handle. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09T2FVXNW/ref=twister_B09T33XZWF?_encoding=UTF8&psc=1", "value": "01", "price_string": "$173.44", "price": 173.44, "image": "https://m.media-amazon.com/images/I/41qV0Dyzc8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T2TGT48/ref=twister_B09T33XZWF?_encoding=UTF8&psc=1", "value": "02", "price_string": "$159.28", "price": 159.28, "image": "https://m.media-amazon.com/images/I/41Zc+1fLd8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T2M3D7C/ref=twister_B09T33XZWF?_encoding=UTF8&psc=1", "value": "03", "price_string": "$173.44", "price": 173.44, "image": "https://m.media-amazon.com/images/I/41nmTFBoEOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T2S5352/ref=twister_B09T33XZWF?_encoding=UTF8&psc=1", "value": "04", "price_string": "$166.36", "price": 166.36, "image": "https://m.media-amazon.com/images/I/51QCM4RxD9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T2Q2DKQ/ref=twister_B09T33XZWF?_encoding=UTF8&psc=1", "value": "05", "price_string": "$152.20", "price": 152.2, "image": "https://m.media-amazon.com/images/I/41fPkKCH14L.jpg"}, {"is_selected": true, "url": null, "value": "06", "price_string": "$162.82", "price": 162.82, "image": "https://m.media-amazon.com/images/I/41SRVcgMsbL.jpg"}]}, "seller_id": "A39JR9UI1KWXTV", "seller_name": "libodebeimeidian", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09T33VS4Y", "category": "beauty", "query": "Makeup Brushes & Tools", "page": 66, "small_description_old": "About this item\n \nFunction: Different shape brush, used in foundation, eyeshadow, eyehole, eyebrows, eyeliner, lip facial part make care! Profession Design of Burr: Suitable facial part different angles, effortless makeup! Material: Focus on different function, uses top grade of mixed fiber material. Soft and comfortable! Or professional or beginner can get started effortlessly! Brush handle material: wooden handle."}, {"name": "Rachel Zoe Women's Sofia Slipper", "product_information": "", "brand": "Visit the RACHEL ZOE Store", "brand_url": "https://www.amazon.com/stores/RachelZoe/page/5F2715E3-36F6-415B-83D1-5B81C503EC91?ref_=ast_bln", "full_description": "", "pricing": "$28.08$33.39", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/11Nc2VrF0NL.jpg", "https://m.media-amazon.com/images/I/118F7gSa4ML.jpg", "https://m.media-amazon.com/images/I/11yUluO53wL.jpg", "https://m.media-amazon.com/images/I/11NcHiR4GZL.jpg", "https://m.media-amazon.com/images/I/11nuhV+QhqL.jpg", "https://m.media-amazon.com/images/I/215JmCvkB9L.jpg", "https://m.media-amazon.com/images/I/21mpuZs7+FL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Flats", "average_rating": 4.7, "small_description": ["Plastic sole ", "Comfy and stlylish slip-ons. ", "Cute, soft, luxurious, plush faux fur slip-ons. ", "Cushion and support: Supportive, cushiony and comfortable footwear for all day wear. ", "Non-slip sole: Anti-slip soles preventing slipping for safe and secure steps. ", "The perfect pair for at home moments of relaxation and lounging. "], "total_reviews": 5, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B099FHKWFH"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B099FK9CNJ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B099FKK27G"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B099FHKWFF/ref=twister_B099G24Z25", "value": "Black Multi", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21FQnXGIBQL.jpg"}, {"is_selected": true, "url": null, "value": "Other White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11Nc2VrF0NL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B099FKK27G", "category": "fashion", "query": "Women's Slippers", "page": 76, "small_description_old": "Plastic sole Comfy and stlylish slip-ons. Cute, soft, luxurious, plush faux fur slip-ons. Cushion and support: Supportive, cushiony and comfortable footwear for all day wear. Non-slip sole: Anti-slip soles preventing slipping for safe and secure steps. The perfect pair for at home moments of relaxation and lounging."}, {"name": "Sandals For Women Gold Sandals Slippers Sandy From Grease Red Shoes Strap Platforms Golf Shoes Jeans Stretch Short Sleeve Shirts Midi Skirts Women Suede Pumps", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 18, 2022", "Manufacturer\n \u200f": "\u200e\n Women's Platform & Wedge Sandals", "ASIN\n \u200f": "\u200e\n B09QPX97VW", "": ""}, "brand": "Brand: NYFF", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=NYFF", "full_description": "black sneakers for women slip ons women yellow pumps for women summer slippers for women women flats gladiator sandals for women white sneakers women slip ons for women pumps for women pink house slippers for women flats for women sandals for women slip on sneakers women womens sandals wide slingback pumps shoes women work slippers for women flats for wide feet women sandals for women women kswiss sneakers red sneakers for women fiji buckle slide sandals snake print pumps for women women slippers indian flats shoes women papillio sandals women snake print pumps for women women slippers indian flats shoes women papillio sandals women camouflage sneakers women plastic bow sandals pumps for women wooden slippers for women wide fit flats for women black comfort sandals for women floral sneakers for women high heel pumps for women sleep on sneakers for women pink heel sandals for women suede pumps for women memory slippers for women dusty rose flats for women s sandals for women spring pumps for women massage slippers for women flats women women sandals white dance sneakers for women pumps for women black slippers for women womans flats for women spa sandals for women sneakers women style sneakers for women grey slippers for women net flats for women sparkle sneakers for women shoes open pumps shoes women slippers for women payless flats for women women sandals tenis women sneakers womens sparkly sandals gray dress pumps for women slippers for women women thong sandals flats closed sandals women sneakers for women high heel dress up shoes for girls women pumps slippers for women ivory lace flats for women easy street wedge sandals for women green flats shoes women", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31Ku6S6eLPL.jpg", "https://m.media-amazon.com/images/I/41cmbrABD9L.jpg", "https://m.media-amazon.com/images/I/41W8GwK0qnL.jpg", "https://m.media-amazon.com/images/I/41eHtcYStgL.jpg", "https://m.media-amazon.com/images/I/51aSRJD4iBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals", "average_rating": "", "small_description": ["COMFORTABLE ALL DAY --- When walking, especially on long journeys, the elasticity of the arch of the foot has a buffering effect on the rhythm of the body and the resilience of the ground. ", "\u3010FASHIONABLE DESIGN\u3011The stacked cork sole with jute ribbon makes these casual sandals a summer classic while providing support. ", "crepe sole ", "Heel measures approximately 4 inches\" ", "white sneakers for women slip ons for women black pumps for women slippers women ballet flats for women women sandals heesneakers for women sports slip ons for women black pumps for women 4 inch heel fashion slippers for women sparkle flats for women sandals women sneakers women women rope sandals shoes for women heels and pumps fish slippers for women silver flats for women for wedding born sandals women classic sneakers women ", "jeans sneakers for women womens slides women 2inch heels and pumps women bootie slippers laced flats shoes for women damara sandals for women women 2inch heels and pumps women bootie slippers laced flats shoes for women damara sandals for women women gym sneakers pink bow flip flops embroidered heels for women pumps house slippers for women flats with for women for sandals women shark sneakers for women strap sandals heel two tone pumps high heel for women ", "sneakers for women white pumps shoes for women heels and pumps slippers comfortable for women coral ballet flats for women wedge sandals for women comfort slip on sneakers for women block low heel women red pumps size 9 skid proof slippers for women elegant flats shoes women bare traps women's sandals baby pink sneakers women ankle wedges dress pumps for women medium heel slippers for women embroidered shoes for women flats black glitter sandals for women hidden wedge flats for women , sneakers women dress heels for women brown shoes women pumps women dog slippers nonslip flats for women reef rover catch sandals for women us women sneakers clear strap sandals for women colored pumps women slide slippers for women flats for women white summer sandals for women sneakers for women toe sling slide pumps for women pink women antil slip slippers flats for women rainbow sandals women medium cute white flats for women, walking fashion sneakers for women platform wedge the fix pumps for women wedge casual slippers for women ballets flats women sandals for women brown pumps for women jelly thong slippers for women trendy flats shoes women sandals for women women sneakers sandle pumps shoes women bootie slippers women large women summer flats iridescent sandals for women white sneakers for women narrow slip on sneakers for women metalic slippers for women pink flats for women size 9"], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QPX97VW", "category": "fashion", "query": "Women's Pumps", "page": 39, "small_description_old": "COMFORTABLE ALL DAY --- When walking, especially on long journeys, the elasticity of the arch of the foot has a buffering effect on the rhythm of the body and the resilience of the ground. \u3010FASHIONABLE DESIGN\u3011The stacked cork sole with jute ribbon makes these casual sandals a summer classic while providing support. crepe sole Heel measures approximately 4 inches\" white sneakers for women slip ons for women black pumps for women slippers women ballet flats for women women sandals heesneakers for women sports slip ons for women black pumps for women 4 inch heel fashion slippers for women sparkle flats for women sandals women sneakers women women rope sandals shoes for women heels and pumps fish slippers for women silver flats for women for wedding born sandals women classic sneakers women jeans sneakers for women womens slides women 2inch heels and pumps women bootie slippers laced flats shoes for women damara sandals for women women 2inch heels and pumps women bootie slippers laced flats shoes for women damara sandals for women women gym sneakers pink bow flip flops embroidered heels for women pumps house slippers for women flats with for women for sandals women shark sneakers for women strap sandals heel two tone pumps high heel for women sneakers for women white pumps shoes for women heels and pumps slippers comfortable for women coral ballet flats for women wedge sandals for women comfort slip on sneakers for women block low heel women red pumps size 9 skid proof slippers for women elegant flats shoes women bare traps women's sandals baby pink sneakers women ankle wedges dress pumps for women medium heel slippers for women embroidered shoes for women flats black glitter sandals for women hidden wedge flats for women \n sneakers women dress heels for women brown shoes women pumps women dog slippers nonslip flats for women reef rover catch sandals for women us women sneakers clear strap sandals for women colored pumps women slide slippers for women flats for women white summer sandals for women sneakers for women toe sling slide pumps for women pink women antil slip slippers flats for women rainbow sandals women medium cute white flats for womenwalking fashion sneakers for women platform wedge the fix pumps for women wedge casual slippers for women ballets flats women sandals for women brown pumps for women jelly thong slippers for women trendy flats shoes women sandals for women women sneakers sandle pumps shoes women bootie slippers women large women summer flats iridescent sandals for women white sneakers for women narrow slip on sneakers for women metalic slippers for women pink flats for women size 9Show more"}, {"name": "Face, Body Acne Spray with Benzoyl Peroxide - Body, Chest, Butt, Back Acne Treatment with Tea Tree Oil - Salicylic Acid Spray for Men, Women, Teens - Cystic Hormonal Acne Treatment - Acne Body Spray", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.31 x 2.01 x 1.97 inches; 8 Ounces", "Item model number\n \u200f": "\u200e\n Acne Spray", "UPC\n \u200f": "\u200e\n 739615330560", "Manufacturer\n \u200f": "\u200e\n Vie Naturelle", "ASIN\n \u200f": "\u200e\n B07DJJXGB5", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#10,654 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#158 in Facial Cleansing Washes", "#158 in Facial Cleansing Washes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Vie Naturelle Store", "brand_url": "https://www.amazon.com/stores/Vie+Naturelle/page/E80AC0DA-68A5-4D9C-9408-1BBD9881982F?ref_=ast_bln", "full_description": "", "pricing": "$19.97", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41p7mOgkSQL.jpg", "https://m.media-amazon.com/images/I/51XjtL2-BFL.jpg", "https://m.media-amazon.com/images/I/41ZXrgxVSTL.jpg", "https://m.media-amazon.com/images/I/51Tt16VxVUL.jpg", "https://m.media-amazon.com/images/I/51lvfAJWgxL.jpg", "https://m.media-amazon.com/images/I/41nonQgpsoL.jpg", "https://m.media-amazon.com/images/I/51QYgnjbydL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Cleansers \u203a Washes", "average_rating": 4.1, "small_description": ["SCIENCE & NATURE JUST HAD A BABY: What do you get when you combine the powerful medicinal properties of Benzoyl Peroxide and Salicylic Acid with skin soothing essential oils? One of the most effective treatments for acne ", "CLEARS EVERY TYPE OF BODY ACNE - Vie Naturelle\u2019s maximum strength acne body spray works for horminal and cystic acne and also perfect to eliminate acne from back, chest, shoulders, butt, and thighs and face. ", "PREVENTS FUTURE BREAKOUTS - Our body spray for acne is infused with vitamins and minerals to moisturize your skin to stay healthy and prevent future breakouts while calming redness and preventing future breakouts. ", "FOR EVERY TYPE OF SKIN - Our acne body mist was carefully crafted with the perfect blend of natural ingredients such as Eucalyptus Oil, Witch Hazel, and Tea Tree Oil to reduce pore size and soothe breakouts, blackheads, and bumpy skin without overdrying. ", "DERMATOLOGICALLY, CLINICALLY & ALLERGY TESTED & NON-IRRITATING TO KEEP YOUR SKIN AN ACNE-FREE ZONE - To provide maximum efficiency and safety for your skin we have tested the acne treatment so you can use it with confidence. These tests assure that it is safe and the finished product is well tolerated when applied on your skin. "], "total_reviews": 1734, "total_answered_questions": 23, "customization_options": {"Scent": [{"is_selected": true, "url": null, "value": "Acne Body Spray", "price_string": "$19.97", "price": 19.97, "image": "https://m.media-amazon.com/images/I/41p7mOgkSQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07YVKZ5Y8/ref=twister_B09CB7YR29?_encoding=UTF8&psc=1", "value": "Acne Face & Body Wash", "price_string": "$12.97", "price": 12.97, "image": "https://m.media-amazon.com/images/I/41PCa+y0vXL.jpg"}]}, "seller_id": "A2Y2F8CAZ4TIGO", "seller_name": "Vie Naturelle LLC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07DJJXGB5", "category": "beauty", "query": "Scrubs & Body Treatments", "page": 2, "small_description_old": "About this item SCIENCE & NATURE JUST HAD A BABY: What do you get when you combine the powerful medicinal properties of Benzoyl Peroxide and Salicylic Acid with skin soothing essential oils? One of the most effective treatments for acne CLEARS EVERY TYPE OF BODY ACNE - Vie Naturelle\u2019s maximum strength acne body spray works for horminal and cystic acne and also perfect to eliminate acne from back, chest, shoulders, butt, and thighs and face. PREVENTS FUTURE BREAKOUTS - Our body spray for acne is infused with vitamins and minerals to moisturize your skin to stay healthy and prevent future breakouts while calming redness and preventing future breakouts. FOR EVERY TYPE OF SKIN - Our acne body mist was carefully crafted with the perfect blend of natural ingredients such as Eucalyptus Oil, Witch Hazel, and Tea Tree Oil to reduce pore size and soothe breakouts, blackheads, and bumpy skin without overdrying. DERMATOLOGICALLY, CLINICALLY & ALLERGY TESTED & NON-IRRITATING TO KEEP YOUR SKIN AN ACNE-FREE ZONE - To provide maximum efficiency and safety for your skin we have tested the acne treatment so you can use it with confidence. These tests assure that it is safe and the finished product is well tolerated when applied on your skin."}, {"name": "Nearly Natural 4\u2019 Areca Palm Tree in Sand Colored Planter Artificial Plant, Green", "product_information": {"Product Dimensions": "30 x 27 x 48 inches", "Item Weight": "17 pounds", "Manufacturer": "Nearly Natural", "ASIN": "B07CJSNLNZ", "Country of Origin": "China", "Item model number": "5630", "Customer Reviews": {"ratings_count": 20, "stars": "3.3 out of 5 stars"}, "Best Sellers Rank": ["#1,583,834 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,831 in Artificial Trees"], "Fabric Type": "Nullify", "Assembly Required": "No", "Number of Pieces": "1", "Batteries Required?": "No", "Included Components": "Planter, Artificial Plant"}, "brand": "Visit the Nearly Natural Store", "brand_url": "https://www.amazon.com/stores/Nearly+Natural/page/DCE8E6B1-091B-4888-B3EB-294287CFD064?ref_=ast_bln", "full_description": "This areca artificial palm stands at 4-feet and it will complement any home or office space. With its striking appearance, vivid green leaves, and nice height, It'll make an eye-catching ornament to a bland setup. Stand it up against a bare wall or in the corners of a room to add vitality for a brilliant finish.", "pricing": "$127.26", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock (more on the way).", "images": ["https://m.media-amazon.com/images/I/515doUAGxRL.jpg", "https://m.media-amazon.com/images/I/91EzPrL7zbL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Artificial Plants & Flowers \u203a Artificial Trees", "average_rating": 3.3, "small_description": ["Nullify ", "Adds life to a bland corner in any room ", "Natural looking trunk ", "Uses quality handcrafted materials ", "Includes a sand colored planter ", "Recommended for indoor use only "], "total_reviews": 20, "total_answered_questions": "", "model": "5630", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07CJSNLNZ", "category": "garden", "query": "Planters", "page": 51, "small_description_old": "About this item\n \nNullify Adds life to a bland corner in any room Natural looking trunk Uses quality handcrafted materials Includes a sand colored planter Recommended for indoor use only"}, {"name": "MILK+T - Munchie Box | The Complete DIY Boba Tea Kit | Tapioca Pearls with Classic Black Boba Milk Tea | 5 Servings", "product_information": "", "brand": "Visit the Eat Munchie Box Store", "brand_url": "https://www.amazon.com/stores/EatMunchieBox/page/9A08F195-8339-4233-BC14-2CA735891C8D?ref_=ast_bln", "full_description": "", "pricing": "$29.97", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51IxrwaaKUL.jpg", "https://m.media-amazon.com/images/I/51loPZyc7gL.jpg", "https://m.media-amazon.com/images/I/51ulKA3LZRL.jpg", "https://m.media-amazon.com/images/I/51vzUJvvxCL.jpg", "https://m.media-amazon.com/images/I/51WENo9JnAL.jpg", "https://m.media-amazon.com/images/I/51VHkF-LqqL.jpg", "https://m.media-amazon.com/images/I/81heGmrIj-L.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bubble Tea \u203a Bubble Tea Kits", "average_rating": 4.3, "small_description": ["Authentic Ingredients: Enjoy brewing your tea fresh from Taiwanese black tea leaves! None of that cheap flavoring powder here. ", "Home-make it: Make the same quality of yummy boba milk tea from home as we sell at our stores in LA, Las Vegas, or Beverton Oregon! ", "What's Inside: 1 oz of black tea leaves, 1/2 lb of Grade A uncooked boba pearls, 2 cups of high quality brown sugar, 4 plastic straws ", "Easy fixings: To start, unleash your inner bobarista using our easy to follow instructions. Then slurp up your drink masterpiece! ", "A Delicious Gift: To gift friends, family, workmates, girlfriends and boyfriends. Great for road trips, vacations, housewarming gifts, parties and even treating yourself! Enjoy and share the love with those you care! "], "total_reviews": 92, "total_answered_questions": "", "customization_options": "", "seller_id": "A3O1C3ML3SXSGW", "seller_name": "GENBA", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08Z3PLHLL", "category": "grocery", "query": "Food & Beverage Gifts", "page": 86, "small_description_old": "About this item Authentic Ingredients: Enjoy brewing your tea fresh from Taiwanese black tea leaves! None of that cheap flavoring powder here. Home-make it: Make the same quality of yummy boba milk tea from home as we sell at our stores in LA, Las Vegas, or Beverton Oregon! What's Inside: 1 oz of black tea leaves, 1/2 lb of Grade A uncooked boba pearls, 2 cups of high quality brown sugar, 4 plastic straws Easy fixings: To start, unleash your inner bobarista using our easy to follow instructions. Then slurp up your drink masterpiece! A Delicious Gift - to gift friends, family, workmates, girlfriends and boyfriends. Great for road trips, vacations, housewarming gifts, parties and even treating yourself! Enjoy and share the love with those you care!"}, {"name": "Jentri Quinn - Eye Dream of Coffee (Caffeinated Eye Butter for Puffiness & Dark Circles)", "product_information": {"ASIN\n \u200f": "\u200e\n B099NJ5YRG", "Best Sellers Rank": "#287,874 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,463 in Eye Treatment Creams", "#1,463 in Eye Treatment Creams": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Jentri Quinn", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Jentri+Quinn", "full_description": "", "pricing": "$34.00", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51-vmXh5LvS.jpg", "https://m.media-amazon.com/images/I/51RC9g8DX6S.jpg", "https://m.media-amazon.com/images/I/41zm73j8UZS.jpg", "https://m.media-amazon.com/images/I/61C0Wt7vduL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Eyes \u203a Creams", "average_rating": 4, "small_description": ["Skin type: Combination "], "total_reviews": 9, "total_answered_questions": "", "customization_options": "", "seller_id": "AGYSULGK864U0", "seller_name": "Cotone Clothing + Beauty Bar", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B099NJ5YRG", "category": "beauty", "query": "Eyes Care", "page": 105, "small_description_old": "About this item Eye Butter For Puffy Eyes Skin type: Combination"}, {"name": "Hartley's Orange Jelly - 135g - Pack of 6 (135g x 6)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 13.78 x 3.94 x 3.94 inches; 2.09 Pounds", "Manufacturer\n \u200f": "\u200e\n Hartley's", "ASIN\n \u200f": "\u200e\n B014HKGM9Q", "Best Sellers Rank": "#372,622 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#787 in Gelatins", "#787 in Gelatins": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Hartley's Store", "brand_url": "https://www.amazon.com/stores/Hartley%27s+Brand/page/FCB434E0-10AE-44F2-9BF4-FEBFF42CAA9C?ref_=ast_bln", "full_description": "Hartley's orange flavour jelly. Easy to make jelly: 1) For best results separate into cubes and place into a jug or bowl. 2) Add 1/2 pint (285 ml) of boiling water and stir until dissolved. 3) Add 1/2 pint (285 ml) of cold water, stir then pour into mould/serving dish. 4) Allow to cool, then refrigerate to set. Pack of 6 - Delivery from the UK in 7-10 Days", "pricing": "$13.96", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/514Jj9FryoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Pudding & Gelatin \u203a Gelatin", "average_rating": 5, "small_description": ["Hartley's ", "Orange Jelly. Pack of 6 ", "Store in cool dry place ", "Delivery from the UK in 7-10 Days ", "Contains pork gelatine "], "total_reviews": 5, "total_answered_questions": "", "customization_options": "", "seller_id": "A27UF7UDTHOWPL", "seller_name": "EpicCo", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B014HKGM9Q", "category": "grocery", "query": "Snack Puddings & Gelatins", "page": 23, "small_description_old": "About this item Hartley's Orange Jelly. Pack of 6 Store in cool dry place Delivery from the UK in 7-10 Days Contains pork gelatine"}, {"name": "Home Dynamix Lyndhurst Rotana Modern Area Rug, Contemporary Blue/Gray/Ivory 5'2\"x7'4\"", "product_information": {"Product Dimensions": "88 x 62 x 0.3 inches", "Item Weight": "6 pounds", "Manufacturer": "Home Dynamix", "ASIN": "B07FKGQKZ1", "Country of Origin": "Turkey", "Item model number": "Lyndhurst", "Customer Reviews": {"ratings_count": 7237, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#6,617 in Home & Kitchen (See Top 100 in Home & Kitchen) #78 in Area Rugs"], "Manufacturer's Suggested Maximum Weight": "8 Pounds", "Assembly Required": "No", "Number of Pieces": "1", "Batteries Required?": "No", "Included Components": "Rug"}, "brand": "Visit the Home Dynamix Store", "brand_url": "https://www.amazon.com/stores/Home+Dynamix/page/94C71AAF-7C4C-42F5-947F-90BA03E8BF7E?ref_=ast_bln", "full_description": "Transform any living space with the Home Dynamix Premium Area Rug Collection. The versatile and durable Premium area rug collection by Home Dynamix offers style and beauty at an affordable price. Instantly elevate your d\u00e9cor to the next level with these designer inspired accent rugs. The striking patterns offer something for every decor. The Premium Accent Rug Collection offers an array of colors and designs to please any home decorating enthusiast. Place this decorative floor covering in your living room, dining room, bedroom, office or any other space that needs a fashionable refresh without breaking the bank. Persion inspired patterns come to life in an array of rich and home decorator friendly colors including reds, blues, golds, neutrals and grays. The durable construction and fade resistant yarns make Premium rugs perfect for high traffic areas in your home. Protect your floors or simply add these area rugs over your existing carpeting for visual interest and decorative flair. Made of strong polypropylene yarns, the cost-effective material is easy to clean and care for, offering not only beauty but also the best value for money. Enhanced with durable jute canvas backing for long lasting shape and beauty. Use with non-skid padding underneath is recommended (sold separately). Elegant Area Rug by Home Dynamix | Premium Collection 7542-500 | Indoor PolyPropylene Rug in Warm Blue Shades | Style on a Budget | Modern Design 5'2\" x 7'4\"", "pricing": "$44.99$33.98", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51yjihPCAeL.jpg", "https://m.media-amazon.com/images/I/611hZbU0KFL.jpg", "https://m.media-amazon.com/images/I/51k-2KniCIL.jpg", "https://m.media-amazon.com/images/I/51EPU29Dw3L.jpg", "https://m.media-amazon.com/images/I/61GuCZDl67L.jpg", "https://m.media-amazon.com/images/I/61phVGkt3QL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Rugs, Pads & Protectors \u203a Area Rugs", "average_rating": 4.3, "small_description": ["ADD ELEGANT STYLE: This mesmerizing area rug in beautiful shades of brown, is an elegant addition to your decor. ", "ENLIVEN ANY ROOM: With its warm colors, this area rug brings cozy feelings of relaxation that will spice up the entire space. ", "BEAUTY ON A BUDGET: This beautiful area rug will elevate your decor to the next level, while keeping up with your budget. ", "CHOOSE YOUR SIZE: Our wonderful Premium collection comes in a variety of sizes for you to choose from: 9'2\" X 12'5\", 5'2\" x 7'4\", 3'7\" x 5'2\", 1'9\" x 7'2\" or 21\" x 35\". ", "PLACE IT ANYWHERE IN YOUR HOME: Place this decorative floor covering in your living room, dining room, bedroom, office or any other space that needs a fashionable refresh without breaking the bank. "], "total_reviews": 7237, "total_answered_questions": "", "model": "Lyndhurst", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07FK66BNG/ref=twister_B08VTX8Z8T", "value": "1 ft 9 in x 7 ft 2 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FK76NHY/ref=twister_B08VTX8Z8T?_encoding=UTF8&psc=1", "value": "3 ft 7 in x 5 ft 2 in", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "5 ft 2 in x 7 ft 4 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L3XJ57D/ref=twister_B08VTX8Z8T", "value": "5 ft 3 in x 7 ft 5 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08T1R79TZ/ref=twister_B08VTX8Z8T", "value": "7 ft 8 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FMGYQBB/ref=twister_B08VTX8Z8T", "value": "7 ft 8 in x 10 ft 7 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L3YX483/ref=twister_B08VTX8Z8T", "value": "7 ft 9 in x 10 ft 8 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FKGNN34/ref=twister_B08VTX8Z8T", "value": "9 ft 2 in x 12 ft 5 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FK66XZF/ref=twister_B08VTX8Z8T?_encoding=UTF8&psc=1", "value": "21 in x 35 in", "price_string": "", "price": 0, "image": null}], "Item Shape": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07FK66BNG/ref=twister_B08VTX8Z8T", "value": "Runner", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Rectangular", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08T1R79TZ/ref=twister_B08VTX8Z8T", "value": "Round", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07FK5D2CD/ref=twister_B08VTX8Z8T?_encoding=UTF8&psc=1", "value": "Black-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/614rqdRX0YL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FKKLMVM/ref=twister_B08VTX8Z8T", "value": "Blue/Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51yjihPCAeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B003H8B98O/ref=twister_B08VTX8Z8T?_encoding=UTF8&psc=1", "value": "Brown/Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51bLd5yfxWL.jpg"}, {"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51yjihPCAeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L3XJ57D/ref=twister_B08VTX8Z8T", "value": "Navy/Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51nrPiS8NiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L413QKH/ref=twister_B08VTX8Z8T", "value": "Taupe/Orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WfM+d0PoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08BD73SW1/ref=twister_B08VTX8Z8T", "value": "Black/Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/614rqdRX0YL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08T1KXR53/ref=twister_B08VTX8Z8T", "value": "Brown/Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51udMmw5ySL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L3YX483/ref=twister_B08VTX8Z8T", "value": "Navy-multi", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51nrPiS8NiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L3YD66W/ref=twister_B08VTX8Z8T", "value": "Taupe", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WfM+d0PoL.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B07FKGQKZ1", "category": "garden", "query": "Home Office Furniture Sets", "page": 143, "small_description_old": "About this item ADD ELEGANT STYLE: This mesmerizing area rug in beautiful shades of brown, is an elegant addition to your decor. ENLIVEN ANY ROOM: With its warm colors, this area rug brings cozy feelings of relaxation that will spice up the entire space. BEAUTY ON A BUDGET: This beautiful area rug will elevate your decor to the next level, while keeping up with your budget. CHOOSE YOUR SIZE: Our wonderful Premium collection comes in a variety of sizes for you to choose from: 9'2\" X 12'5\", 5'2\" x 7'4\", 3'7\" x 5'2\", 1'9\" x 7'2\" or 21\" x 35\". PLACE IT ANYWHERE IN YOUR HOME: Place this decorative floor covering in your living room, dining room, bedroom, office or any other space that needs a fashionable refresh without breaking the bank."}, {"name": "150W Car Power Inverter Converter Plug Adapter w/ Dual USB Adapter Outlet Charger Car Adapter Car Travel Camping Outdoor Activity Necessity Suitable for Laptop Phone Camera DC 12V to 110V AC Inverter", "product_information": {"Package Dimensions": "7.64 x 4.06 x 2.05 inches", "Item Weight": "9.9 ounces", "ASIN": "B0912H5LHP", "Customer Reviews": {"ratings_count": 44, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#7,285 in Automotive (See Top 100 in Automotive) #38 in Power Inverters"], "Date First Available": "March 25, 2021", "Manufacturer": "HearGrow"}, "brand": "Brand: HearGrow", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=HearGrow", "full_description": "The 150W inverter comes with two built in standard household electrical outlet s and two very handy USB charging ports.as well as DC 5V / 2.1A + 1A dual USB ports for quick and easy charging.The power inverter great for Christmas gift, Christmas Light. Durable car power inverter for road trips, vacations, camping, outdoors, travel business,emergency kits and more for your vehicle.Gift for family.Thanksgiving Day. Christmas Day.Multi-ProtectionsFull-protection with short-circuit , low-voltage , over-charge,over-voltage, over-load,over-temperature protection,built-in fuse. The switch is just control AC outlets,you can also use USB port if not turning on the switch,Easy to use.Silent Cooling Fan:Smart cooling fan makes the car power inverter silent when operating, and it runs faster when it gets warmer.Utility Cord & Cigarette Lighter:Placed random, long cable with cigarette lighter plug since we can reach it to power a laptop in the rear seats.Car Power Inverter Specifications:Color:REDRated Power: 150WInput voltage: 12 VDCOutput voltage: 110V ~ 120V AC 60HZ+/-2Hz USB Output1-2: 5V 2.1A & 1A AUTOOutput waveform: modified sine wavePackage List:1 x 150W Power Inverter1 x User ManualNote:For DC 12V and Car ONLY, not applied for DC 24V and airplane usePlease do not leave the power inverter in the ON position while your car is off.The cooling fan remains on continuously. This means you'll only be able to use it in situations where the car is running.Please understand device wattage usage Caution! Do not use high power electric devices such as hair dryers, electric heaters, curling irons, etc.", "pricing": "$10.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51cycYVdbvL.jpg", "https://m.media-amazon.com/images/I/41HqHuXtK3L.jpg", "https://m.media-amazon.com/images/I/51ky5s-5bPS.jpg", "https://m.media-amazon.com/images/I/51FDJnmIT3L.jpg", "https://m.media-amazon.com/images/I/51CFMGDCW6L.jpg", "https://m.media-amazon.com/images/I/51R69R0viPS.jpg", "https://m.media-amazon.com/images/I/51dXe2PoWHS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Automotive \u203a Tools & Equipment \u203a Jump Starters, Battery Chargers & Portable Power \u203a Power Inverters", "average_rating": 4.2, "small_description": ["\u3010Premium 150W Power Inverter\u3011Provides 150 watts continuous DC to AC power. Great for charging string lights, laptop, breast pump, CPAP machine, nebulizer, game console, kindle, TV, DVD players, lights, iPad, and other electronic devices ", "\u3010Multi-Purpose Charging\u3011150W Car Inverter with Dual AC outlets for charging laptop, game console, kindle, TV, DVD players.and 2 USB charging ports (2.1A & 1A AUTO) Smart matching suitable current great for fast charging iPad, Smartphone. ", "\u3010Multi-Protection\u3011Built-in fuse to protect your device, safe charging design provides protection against, overheating, under and over voltage charging, short circuiting, overloads, and overcharging ", "\u3010More Conveniet\u3011 iPhone-sized design ideal for use on vacations, work trips, and camping. 24 inch cigarette lighter plug makes the power inverter can be plugged into almost any vehicle ", "\u3010Upgraded Cooling Effect\u3011Built-in very silent automatic temperature-controlled cooling fan helps reduce heat and prevent shortages. Durable metal housing provides advanced protection from drops and bumps. "], "total_reviews": 44, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "150W Power Inverter", "price_string": "$10.99", "price": 10.99, "image": "https://m.media-amazon.com/images/I/51cycYVdbvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0912Y1V87/ref=twister_B0978C4MV3?_encoding=UTF8&psc=1", "value": "150W Red Power Inverter", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gGBw6IyEL.jpg"}]}, "seller_id": "A2JN3ZKA6AMQDS", "seller_name": "HappyGrow", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0912H5LHP", "category": "electronics", "query": "Power Protection", "page": 278, "small_description_old": "About this item\n \n\u3010Premium 150W Power Inverter\u3011Provides 150 watts continuous DC to AC power. Great for charging string lights, laptop, breast pump, CPAP machine, nebulizer, game console, kindle, TV, DVD players, lights, iPad, and other electronic devices \u3010Multi-Purpose Charging\u3011150W Car Inverter with Dual AC outlets for charging laptop, game console, kindle, TV, DVD players.and 2 USB charging ports (2.1A & 1A AUTO) Smart matching suitable current great for fast charging iPad, Smartphone. \u3010Multi-Protection\u3011Built-in fuse to protect your device, safe charging design provides protection against, overheating, under and over voltage charging, short circuiting, overloads, and overcharging \u3010More Conveniet\u3011 iPhone-sized design ideal for use on vacations, work trips, and camping. 24 inch cigarette lighter plug makes the power inverter can be plugged into almost any vehicle \u3010Upgraded Cooling Effect\u3011Built-in very silent automatic temperature-controlled cooling fan helps reduce heat and prevent shortages. Durable metal housing provides advanced protection from drops and bumps."}, {"name": "DIANDIAN Sturdy Coat Rack Stand Hall Solid Wood Coat Tree with 9 Round Hook, for Clothing Hats, Hallway Entryway Office, Easy Assembly (Color : Beige)", "product_information": {"Item Weight": "\u200e16.53 pounds", "Package Dimensions": "\u200e70.47 x 16.54 x 16.54 inches", "Country of Origin": "\u200eChina", "ASIN": "B09NRF2QGD", "Date First Available": "December 17, 2021"}, "brand": "Brand: DIANDIAN", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=DIANDIAN", "full_description": "Product Name: Solid Wood Floor Coat RackHook: 9Color: Beige , BrownNeed to assemble: yesMaterial: Solid WoodSize: 42x179cm/16.5x70.5in (length x height)Whether to assemble: assemblyFurniture structure: bracket structure\u27a4 Please note that due to different monitors, slight color differences may occur, please forgive me.\u27a4 Please pay attention to the dimensions before purchasing, because manual measurement will cause slight errors, thank you for your understanding.\u27a4 Delivery time is 15-25 days, if you still cannot receive the order after 30 days, please contact us.\u27a4 Welcome your sharing and feedback so that we can provide you with better products and services.\u27a4 If you have any questions, please feel free to contact us via email and we will answer your questions.", "pricing": "$311.50", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21KxaqWLqLL.jpg", "https://m.media-amazon.com/images/I/31lbiZMSXYL.jpg", "https://m.media-amazon.com/images/I/41sLHrMUTvL.jpg", "https://m.media-amazon.com/images/I/41Oy4on3LdL.jpg", "https://m.media-amazon.com/images/I/41oAVWWqfrL.jpg", "https://m.media-amazon.com/images/I/41i9MfcKpUL.jpg", "https://m.media-amazon.com/images/I/41F5IktQYFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Entryway Furniture \u203a Coat Racks", "average_rating": "", "small_description": ["The coat rack makes the interior orderly. The classic branch element design is practical and also a good decoration for the home. It can put your necessities coming and going, and there is plenty of storage space. ", "This 179cm/70.5in height freestanding coat rack is made of solid wood and has good hardness. ", "9 hanging branches are enough to organize your clothes, hats, etc., even if you hang heavy bags and winter clothes, they will not fall off. The stylish and simple branch design is functional and artistic enough to decorate your room. ", "This chic tree frame is not bulky, you can put it in the hall, corridor, mud room, cloakroom, bedroom, living room and office without any help ", "Keep more things organized, while saving as much space in your home as possible! With a high level of artistic appearance, it is suitable for any family occasion. No matter where it is placed, it looks great "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Beige", "price_string": "$311.50", "price": 311.5, "image": "https://m.media-amazon.com/images/I/21KxaqWLqLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRDQY2N/ref=twister_B09NRDQN2T?_encoding=UTF8&psc=1", "value": "Brown", "price_string": "$311.50", "price": 311.5, "image": "https://m.media-amazon.com/images/I/21CuCtDBfrL.jpg"}]}, "seller_id": "A15YNW7JOQGFZ3", "seller_name": "WENKONGKONG", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NRF2QGD", "category": "garden", "query": "Hall Trees", "page": 246, "small_description_old": "About this item The coat rack makes the interior orderly. The classic branch element design is practical and also a good decoration for the home. It can put your necessities coming and going, and there is plenty of storage space. This 179cm/70.5in height freestanding coat rack is made of solid wood and has good hardness. 9 hanging branches are enough to organize your clothes, hats, etc., even if you hang heavy bags and winter clothes, they will not fall off. The stylish and simple branch design is functional and artistic enough to decorate your room. This chic tree frame is not bulky, you can put it in the hall, corridor, mud room, cloakroom, bedroom, living room and office without any help Keep more things organized, while saving as much space in your home as possible! With a high level of artistic appearance, it is suitable for any family occasion. No matter where it is placed, it looks great \n \u203a See more product details"}, {"name": "Walker Edison Mid Century Modern Faux Leather Backless Counter Bar Stool Indoor Kitchen Dining Chair Barstool, 26 Inch, Black", "product_information": {"Product Dimensions": "12 x 16 x 26 inches", "Item Weight": "11 pounds", "Manufacturer": "Walker Edison Furniture Company", "ASIN": "B01I5B1Q1M", "Country of Origin": "China", "Item model number": "AZHRM26BL", "Customer Reviews": {"ratings_count": 48, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#782,326 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,436 in Barstools"], "Is Discontinued By Manufacturer": "No", "Seat Height": "26 Inches", "Manufacturer's Suggested Maximum Weight": "250 Pounds", "Form Factor": "Upholstered", "Assembly Required": "Yes", "Warranty Description": "30 day limited manufacturer warranty.", "Batteries Required?": "No", "Included Components": "Hardware pack"}, "brand": "Visit the Walker Edison Store", "brand_url": "https://www.amazon.com/stores/WalkerEdison/page/D0D2A602-6790-40E0-91C5-CF992DB24FF4?ref_=ast_bln", "full_description": "With a retro modern vibe, this 26-inch counter height stool will make a great style addition to your kitchen. Crafted of a smooth synthetic leather seat, solid wood legs, powder coated steel framing and footrest, for a sturdy and mesmerizing mixed material design. Pull up next to your kitchen counter to enjoy your evening snacks on this comfortable, backless stool.", "pricing": "$89.00", "list_price": "", "availability_status": "Available to ship in 1-2 days.", "images": ["https://m.media-amazon.com/images/I/51rmheCgpsL.jpg", "https://m.media-amazon.com/images/I/51hJgSVbhZL.jpg", "https://m.media-amazon.com/images/I/41+HenlKCdL.jpg", "https://m.media-amazon.com/images/I/51TrNMtvw-L.jpg", "https://m.media-amazon.com/images/I/415PhV9R78L.jpg", "https://m.media-amazon.com/images/I/51xI2rFptQL.jpg", "https://m.media-amazon.com/images/G/01/showroom/icon-lightbulb.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Game & Recreation Room Furniture \u203a Home Bar Furniture \u203a Barstools", "average_rating": 4.4, "small_description": ["Dimensions: 26\" H x 16\" L x 12\" W ", "Includes 1 chair ", "Synthetic leather upholstery and solid wood legs ", "Easy to clean fabric ", "Each chair supports up to 250 lbs "], "total_reviews": 48, "total_answered_questions": "", "model": "AZHRM26BL", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01I5B1RF2/ref=twister_B06XDXDPJ9?_encoding=UTF8&psc=1", "value": "18\"", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "26 Inch", "price_string": "$89.00", "price": 89, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01I5B1OT6/ref=twister_B06XDXDPJ9?_encoding=UTF8&psc=1", "value": "30\"", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01I5B1Q1M", "category": "garden", "query": "Bar Stools", "page": 72, "small_description_old": "About this item Dimensions: 26\" H x 16\" L x 12\" W Includes 1 chair Synthetic leather upholstery and solid wood legs Easy to clean fabric Each chair supports up to 250 lbs"}, {"name": "J. Crew - Men's - Sutton Straight-Fit Flex Chino (Multiple Size/Color Options)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1 x 1 x 1 inches; 1 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n March 14, 2018", "ASIN\n \u200f": "\u200e\n B07G9Y6SP2", "Best Sellers Rank": "#1,022,608 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#2,317 in Men's Jeans", "#2,317 in Men's Jeans": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the J.Crew Store", "brand_url": "https://www.amazon.com/stores/J.Crew/page/216FC4A8-0FA3-4607-907C-AE51AF5B3FE2?ref_=ast_bln", "full_description": "J. Crew Men's straight leg chino with the benefit of the stretch or flex in the fabric for all day comfort. They have a great broken-in feel and fit a little looser through the leg than the Slim-Fit Driggs Chino. The fit is still very versatile and they wear well with dress shoes and a blazer or sneakers and a t-shirt. These will quickly become a favorite in your closet.", "pricing": "$59.50", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31pBzN95cPL.jpg", "https://m.media-amazon.com/images/I/41pQiLJ8EXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Jeans", "average_rating": 4.2, "small_description": ["Button closure ", "Machine Wash ", "Cotton/Elastane blend with a hint of stretch for extra comfort. Machine washable. ", "Straight fit. Sits below waist, straight through hip and thigh, with a narrow straight leg, vs the Driggs that tapers at the ankle. ", "Standard zip up fly. ", "Front pockets sit off-seam, with 2 back welt pockets. ", "These pants wear well in and out of the office. Cuff the hem and pair them with you favorite sneakers or add a button down to dress them up. "], "total_reviews": 22, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "32W x 30L", "asin": "B07GYWW3NY"}, {"is_selected": false, "is_available": true, "value": "32W x 32L", "asin": "B07GYNXW58"}, {"is_selected": false, "is_available": false, "value": "34W x 30L", "asin": "B07G9YJR1T"}, {"is_selected": false, "is_available": false, "value": "34W x 32L", "asin": "B07G9YSTYG"}, {"is_selected": false, "is_available": true, "value": "36W x 30L", "asin": "B07GZ3RNGC"}, {"is_selected": false, "is_available": false, "value": "36W x 32L", "asin": "B07BGT3WJC"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07G9Y6SP2/ref=twister_B07BGY9CJ4", "value": "Charcoal Dust", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31HKYzH64iL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BGY6NRH/ref=twister_B07BGY9CJ4", "value": "Coal Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21HCoHA++mL.jpg"}, {"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31pBzN95cPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07D98H7QH/ref=twister_B07BGY9CJ4", "value": "Overcast Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31BbDvMUQwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BGT3WJC/ref=twister_B07BGY9CJ4", "value": "Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31xO2q+95aL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07GYWW3NY", "category": "fashion", "query": "Men's Jeans", "page": 47, "small_description_old": "Cotton/Elastane blend with a hint of stretch for extra comfort. Machine washable. Straight fit. Sits below waist, straight through hip and thigh, with a narrow straight leg, vs the Driggs that tapers at the ankle. Standard zip up fly. Front pockets sit off-seam, with 2 back welt pockets. These pants wear well in and out of the office. Cuff the hem and pair them with you favorite sneakers or add a button down to dress them up."}, {"name": "Shea Moisture Coconut & Hibiscus Curl & Shine Shampoo, 19.5 Pound", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.68 x 2.68 x 8.52 inches; 1.22 Pounds", "Item model number\n \u200f": "\u200e\n 730158676979", "UPC\n \u200f": "\u200e\n 764302281153", "Manufacturer\n \u200f": "\u200e\n Atlas Ethnic", "ASIN\n \u200f": "\u200e\n B07CKTXS1J", "Best Sellers Rank": "#401,432 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#9,414 in Hair Shampoo", "#9,414 in Hair Shampoo": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: SHEA MOISTURE", "brand_url": "https://www.amazon.com/SHEA-MOISTURE/b/ref=bl_dp_s_web_2600418011?ie=UTF8&node=2600418011&field-lbr_brands_browse-bin=SHEA+MOISTURE", "full_description": "This super hydrating formula helps replenish your hair's natural oil balance and strengthens hair, making it easier to maintain shiny and curly styles. The coconut oil protects your hair from protein loss and helps restore its natural softness and texture. Hibiscus stimulates hair growth and prevents split-ends, leaving your hair stronger and better nourished. The blend with Neem Oil helps cleanse your follicles and gives your hair a long-lasting shine, and silk proteins keeps your hair soft and silky. Coconut Oil is a super effective formula for natural hair conditioning and toning, and helps restore dry and damaged hair to its natural softness and texture. The high content of Vitamins and essential fatty acids in coconut oil keeps your hair lock in the moisture and keeps split ends away. Organic Shea Butter has traditionally been used for conditioning hair and skin for centuries, and is an excellent emollient that prevents dry skin conditions. It also helps protect hair from the harshness of the sun and dryness. Hibiscus flower extracts is rich in amino acids that helps in restoring the strength of hair and stimulates regrowth. It is a natural protection against dandruff and other scalp infections, and with repeated use makes your hair softer and easily manageable.", "pricing": "$18.00", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/21YicIfK0BL.jpg", "https://m.media-amazon.com/images/I/21YicIfK0BL.jpg", "https://m.media-amazon.com/images/I/31dbs3rP-TL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Shampoos", "average_rating": 4.3, "small_description": ["DEEP CLEANSING: This Formula Is Powered By Hibiscus Flower Extract Which Is Ideal For Keeping Your Scalp Clean And Irritation-Free ", "SOFTENS: Packed With The Richness Of Natural Coconut Oil And Raw Shea Butter, This Is The Ideal Shampoo To Keep Your Hair Soft And Nourished ", "STRENGTHENS: Hibiscus Is Known For Being Rich In Vitamin C Which Helps Restore Collagen, Helping Your Hair Stay Strong And Grow Longer Without Breakage ", "CONDITIONS: Coconut Oil Is A Natural Conditioner, And Helps Your Hair Retain Moisture And Stay Conditioned For Longer "], "total_reviews": 14, "total_answered_questions": "", "customization_options": "", "seller_id": "A3EX7D3JPPK18X", "seller_name": "Lebgru", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07CKTXS1J", "category": "beauty", "query": "Shampoo & Conditioner", "page": 190, "small_description_old": "About this item DEEP CLEANSING: This Formula Is Powered By Hibiscus Flower Extract Which Is Ideal For Keeping Your Scalp Clean And Irritation-Free SOFTENS: Packed With The Richness Of Natural Coconut Oil And Raw Shea Butter, This Is The Ideal Shampoo To Keep Your Hair Soft And Nourished STRENGTHENS: Hibiscus Is Known For Being Rich In Vitamin C Which Helps Restore Collagen, Helping Your Hair Stay Strong And Grow Longer Without Breakage CONDITIONS: Coconut Oil Is A Natural Conditioner, And Helps Your Hair Retain Moisture And Stay Conditioned For Longer"}, {"name": "RUIXFLR Round End Table with Fabric Storage Basket, Marble Look Tray Side Table, Chic 2 Tier Coffee Table for Living Room Bedroom Office", "product_information": {"Manufacturer": "RUIXFLR", "ASIN": "B09JC84P1M", "Country of Origin": "China", "Assembly Required": "Yes"}, "brand": "Brand: RUIXFLR", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=RUIXFLR", "full_description": "-Need a piece of furniture to uplift your living space? -No matter where you place the round side table, it looks great. -This elegant table is easy to move around for your changing needs. Ideal for the living room, bedroom, kids' room, porch, office and small space. Specifications: Product name: Side table Diverse Usage: Pet Bed, Sofa Table, Corner Table, Nightstand Color: White+Grey+Gold Material: Wood + Metal + Canvas Fabric Shape: Round Package include: End table x 1 Note: Manual measurement, there will be 1-3cm error, please understand. If a slight odor is normal, it will disappear within two to three days. Due to light and personal differences in color understanding, there will be small color difference, in kind prevail.", "pricing": "$121.99", "list_price": "", "availability_quantity": 19, "availability_status": "Only 19 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41nGIv+IDTL.jpg", "https://m.media-amazon.com/images/I/51SC+EOb2vL.jpg", "https://m.media-amazon.com/images/I/41cqltjionL.jpg", "https://m.media-amazon.com/images/I/51kqvlVlQjL.jpg", "https://m.media-amazon.com/images/I/411v1WAORqL.jpg", "https://m.media-amazon.com/images/I/51+ZvlRTGaL.jpg", "https://m.media-amazon.com/images/I/41FvO8n5CBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a End Tables", "average_rating": "", "small_description": ["Premium Material: Made of solid MDF board, the anti-rust finish strong metal frame make this end table a nice piece of furniture for your home; the storage basket is made of durable linen cloth for durability and long lasting performance ", "Handy Storage: The table top with reinforced edge can hold books, remote, phone, photos etc, and it can also be removed and used for serving food and tea. The cloth basket offers extra storage for blankets, cushion, soft toys, magazines ", "Versatile To Use: The round table can be used as sofa table, nightstand, coffee table, snack table, bedside table, laptop desk, lamp table and more. It's an ideal choice for your living room, bedroom, hallway, or office ", "Chic & Stylish Style: Natural and fresh color enables the tea table to be compatible well with any decor of your room. With the fine workmanship and chic style, the round table is a perfect addition to your living room, bedroom, balcony, office and other places ", "Easy Assembly: All tools and accessories you need for this tall end table are included. Plus the clear manual, you could easily assemble them in 20 minutes "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AG6FD2ZNFDKUR", "seller_name": "XiNXZHG", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09JC84P1M", "category": "garden", "query": "Coffee Tables", "page": 321, "small_description_old": "Premium Material: Made of solid MDF board, the anti-rust finish strong metal frame make this end table a nice piece of furniture for your home; the storage basket is made of durable linen cloth for durability and long lasting performance Handy Storage: The table top with reinforced edge can hold books, remote, phone, photos etc, and it can also be removed and used for serving food and tea. The cloth basket offers extra storage for blankets, cushion, soft toys, magazines Versatile To Use: The round table can be used as sofa table, nightstand, coffee table, snack table, bedside table, laptop desk, lamp table and more. It's an ideal choice for your living room, bedroom, hallway, or office Chic & Stylish Style: Natural and fresh color enables the tea table to be compatible well with any decor of your room. With the fine workmanship and chic style, the round table is a perfect addition to your living room, bedroom, balcony, office and other places Easy Assembly: All tools and accessories you need for this tall end table are included. Plus the clear manual, you could easily assemble them in 20 minutes"}, {"name": "SWEETSHOPZ Irish Dance Shape Background Active Running Walking Sneakers Shoes for Women Men Unisex Kids Adults Fashion Sports Black", "product_information": {"Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n January 20, 2022", "ASIN\n \u200f": "\u200e\n B09QRV4YLR", "": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_sl_s_sh_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "DESCRIPTION:We have our own Size Chart, Please according to our size chart before order! If you're not sure of the correct size, please mail to us,Thanks.Product information:Material : Mesh Surface. Non-Slip Sole : EVA. Feature: Breathable, Massage, Lightweight. Let your feet dry, walking freely, more durable.Constructed using air mesh materials that are more durable than knit materials and provides better ventilation and breathability.Shipping Information: 14-28 business days. The processing time may be affected due to external factors such as pandemic or other natural disasters.\u00a0Returns and exchanges: I gladly accept returns, exchanges, and cancellations. Contact me within: a day of delivery. Ship items back within: a day of delivery. Request a cancellation within: 24 hours of purchase.Conditions of return:Buyers are responsible for return shipping costs. If the item is not returned in its original condition, the buyer is responsible for any loss in value.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41QX7VoiX7L.jpg", "https://m.media-amazon.com/images/I/51SZeKAHl3L.jpg", "https://m.media-amazon.com/images/I/513a-bEvgGL.jpg", "https://m.media-amazon.com/images/I/516u2nCABoL.jpg", "https://m.media-amazon.com/images/I/51Cm5LTqflL.jpg", "https://m.media-amazon.com/images/I/415wsD9EGfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Fashion Sneakers", "average_rating": "", "small_description": ["Ethylene Vinyl Acetate sole ", "\u2764 Material: Breathable Air Mesh Upper, Non-Slip Ethylene Vinyl Acetate sole (EVA sole). 3D shaped, lightweight & durable. ", "\u2764 This can be used for indoor or outdoor activities such as walking, running, athletic, training, exercise, workout, traveling. Various colors match with any stylish clothes. ", "\u2764 Our shoes are perfectly breathable, soft, durable, fashionable and cleanable. ", "\u2764 [Gift] Products festival gift; holiday gift St, mother\u2019s day, father's day, Thanksgiving day, Christmas, Graduation, Birthday, Easter, Wedding and Anniversary. ", "\u2764 Sizes: Please refer to the size chart picture for your sizes. Remember to measure your feet length and compare our size chart for a perfect fit before ordering. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QRV4YLR", "category": "fashion", "query": "Women's Fashion Sneakers", "page": 54, "small_description_old": "Ethylene Vinyl Acetate sole \u2764 Material: Breathable Air Mesh Upper, Non-Slip Ethylene Vinyl Acetate sole (EVA sole). 3D shaped, lightweight & durable. \u2764 This can be used for indoor or outdoor activities such as walking, running, athletic, training, exercise, workout, traveling. Various colors match with any stylish clothes. \u2764 Our shoes are perfectly breathable, soft, durable, fashionable and cleanable. \u2764 [Gift] Products festival gift; holiday gift St, mother\u2019s day, father's day, Thanksgiving day, Christmas, Graduation, Birthday, Easter, Wedding and Anniversary. \u2764 Sizes: Please refer to the size chart picture for your sizes. Remember to measure your feet length and compare our size chart for a perfect fit before ordering."}, {"name": "XTRONS 7 Inch Touch Screen Car Stereo for Jeep Wrangler Dodge Chrysler, Android 10 GPS Navigation for Car, Octa Core 4GB+64GB Car Radio Player, Built-in DSP Car Auto Play Android Auto Support 4G LTE", "product_information": {"Item Weight": "\u200e7.09 pounds", "Package Dimensions": "\u200e13.9 x 8.4 x 8.1 inches", "Item model number": "\u200eMA70WRJL", "Is Discontinued By Manufacturer": "\u200eNo", "Display Size": "\u200e6.2 Inches", "Voice command": "\u200eTouchscreen, Microphone, Buttons", "ASIN": "B07SRS3MXP", "Customer Reviews": {"ratings_count": 10, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#319,268 in Electronics (See Top 100 in Electronics) #3,385 in Car In-Dash Navigation GPS Units"], "Date First Available": "June 10, 2019"}, "brand": "Visit the XTRONS Store", "brand_url": "https://www.amazon.com/stores/XTRONS/page/8EE1F454-1060-4D1E-AEC9-A5D390083FBE?ref_=ast_bln", "full_description": "Applicable Models & Years:For Jeep Patriot (2009-2011), For Jeep Liberty (2008-2011)For Jeep Wrangler (2007-2012), For Jeep Compass (2009-2011)For Jeep Commander (2008-2011), For Jeep Grand Cherokee (2008-2011)For Dodge Caliber(2009-2011), For Dodge Journey(2009-2011)For Chrysler 300C (2008-2010), For Chrysler Sebring (2007-2010)Features:\u203b7\u201d with 1024*600 High DefinitionUpgrades your driving experience with supersized entertainment\u203b4G ConnectivityEasy network sharing; Independent and secure; Direct and accurate positioning.\u203bSmartphone ConnectivityBuilt-in Wired Car Auto Play; Built-in Wired Android Auto; Bluetooth Connection for calls and music.\u203bBuilt-in DSPTake your audio experience to a new level and rekindle your hearing experience.\u203bOptimized CANbus Decoding (SWC)Take control of your music or use the hands-free calling function for your safety to concentrate on the road ahead.\u203bPIP ModeSupport built-in Video Player only. You can click the Down Arrow on the screen to turn on PIP when playing a video.\u203bDual Band Wi-FiSupport both 2.4GHz and 5GHz bands and provide faster speed and flexibility.Stylish Smart UIThe user interface is very intuitive and is designed to perfectly integrate into your vehicle.GPS NavigationSupports Google Maps, Sygic, Waze and other navigation software that is compatible with Android OS.Optional Accessories:Need OBD Function? Please search ASIN: B015MU8UN6 / B08HQ9LQ9XNeed TPMS Function? Please search ASIN: B07WQFKV5GNeed Front / Reversing Camera? Please search ASIN: B07HMLYLJJ / B00GY3BVT6Need External DVR? Please search ASIN: B07MBYCG4C / B08MF1ZRJ3Accessories:2 \u00d7 ISO Wiring Harness1 \u00d7 RCA Cable1 \u00d7 Camera Cable2 \u00d7 USB Cable2 \u00d7 Radio Antenna Cable1 \u00d7 4G Antenna1 \u00d7 CANbus Box1 \u00d7 GPS Antenna1 \u00d7 User Manual", "pricing": "$329.89", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41ZT1hRJIbL.jpg", "https://m.media-amazon.com/images/I/51UwEiiFYxL.jpg", "https://m.media-amazon.com/images/I/41fccO5Qo1L.jpg", "https://m.media-amazon.com/images/I/51ZeLazhGxL.jpg", "https://m.media-amazon.com/images/I/51LQbP1YUzL.jpg", "https://m.media-amazon.com/images/I/519CWPUo3qL.jpg", "https://m.media-amazon.com/images/I/51+4ZDvIhTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Car Electronics \u203a Car Video \u203a In-Dash Navigation", "average_rating": 4.7, "small_description": ["FAST & RESPONSIVE \u2013 The latest Android 10.0 OS, upgraded from Android 9.0 Pie, the Octa Core CPU with 4GB RAM & 64GB ROM offer you a faster and smoother experience (Boot Time < 1s, First Boot Time < 40s). Snappy and responsive, just like on an IOS device. ", "INTEGRATED 4G SOLUTION \u2013 The new era of in-car 4G is coming! Now you can make your vehicle a mobile office, track your car\u2019s position (application needed) and keep your kids entertained on the rides with your mobile phone in your pocket. Besides, it supports 99% of carriers worldwide. ", "BUILT-IN WIRED CAR AUTO PLAY & Android Auto \u2013This Double Din car stereo keeps you up with useful features including an incredibly intuitive way to access calls, music, Google assistant, Siri. Make your driving easier and safer and turn every journey into a pleasant experience. ", "7-inch BACKLIT DIGITAL MULTI-TOUCH DISPLAY \u2013 Your high resolution 7\u201d touchscreen supports 1080P format video at 60fps. It allows easy visibility, displays all relevant music information and keeps all your favorite options within the reach of finger. ", "1 YEAR WARRANTY \u2013 XTRONS backs this unit with a 1-year warranty and provides professional technical support. Please do not hesitate to contact us via Amazon email, we will reply ASAP and ensure your rights and interests at all times. "], "total_reviews": 10, "total_answered_questions": 4, "model": "\u200eMA70WRJL", "customization_options": "", "seller_id": "A1MITD5Z5MU6OM", "seller_name": "Xtrons", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07SRS3MXP", "category": "electronics", "query": "CD Players & Recorders", "page": 252, "small_description_old": "About this item FAST & RESPONSIVE \u2013 The latest Android 10.0 OS, upgraded from Android 9.0 Pie, the Octa Core CPU with 4GB RAM & 64GB ROM offer you a faster and smoother experience (Boot Time < 1s, First Boot Time < 40s). Snappy and responsive, just like on an IOS device. INTEGRATED 4G SOLUTION \u2013 The new era of in-car 4G is coming! Now you can make your vehicle a mobile office, track your car\u2019s position (application needed) and keep your kids entertained on the rides with your mobile phone in your pocket. Besides, it supports 99% of carriers worldwide. BUILT-IN WIRED CAR AUTO PLAY & Android Auto \u2013This Double Din car stereo keeps you up with useful features including an incredibly intuitive way to access calls, music, Google assistant, Siri. Make your driving easier and safer and turn every journey into a pleasant experience. 7-inch BACKLIT DIGITAL MULTI-TOUCH DISPLAY \u2013 Your high resolution 7\u201d touchscreen supports 1080P format video at 60fps. It allows easy visibility, displays all relevant music information and keeps all your favorite options within the reach of finger. 1 YEAR WARRANTY \u2013 XTRONS backs this unit with a 1-year warranty and provides professional technical support. Please do not hesitate to contact us via Amazon email, we will reply ASAP and ensure your rights and interests at all times. \n \u203a See more product details"}, {"name": "WiFi Booster Indoor/Outdoor Repeater Signal Booster 1200Mbps WiFi Amplifier Long Range VG37", "product_information": {"Product Dimensions": "5.31 x 5.12 x 0.16 inches", "Item Weight": "0.469 ounces", "Manufacturer": "genetsy", "ASIN": "B09T6LTTCY", "Item model number": "TH9", "Date First Available": "February 23, 2022"}, "brand": "Brand: genetsy", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=genetsy", "full_description": "purchase more equipment", "pricing": "$80.00", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/415C6yZgmKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Networking Products \u203a Repeaters", "average_rating": "", "small_description": "About this item\n \nWireless Bridge and AP Modes", "total_reviews": "", "total_answered_questions": "", "model": "TH9", "customization_options": "", "seller_id": "A2KHE3Y041OIMP", "seller_name": "chenxianjia676", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09T6LTTCY", "category": "electronics", "query": "Signal Boosters", "page": 83, "small_description_old": "About this item\n \nWireless Bridge and AP Modes"}, {"name": "Clinique Pop Lip Colour 23 Blush Pop", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Language\n \u200f": "\u200e\n English", "Product Dimensions\n \u200f": "\u200e\n 3.94 x 1.57 x 1.57 inches; 0.01 Ounces", "Item model number\n \u200f": "\u200e\n 020714739485", "UPC\n \u200f": "\u200e\n 020714739485", "Manufacturer\n \u200f": "\u200e\n Clinique", "ASIN\n \u200f": "\u200e\n B015CSUKG8", "Best Sellers Rank": "#315,001 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#4,360 in Lipstick", "#4,360 in Lipstick": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Clinique", "brand_url": "https://www.amazon.com/Clinique/b/ref=bl_dp_s_web_2587405011?ie=UTF8&node=2587405011&field-lbr_brands_browse-bin=Clinique", "full_description": "An intensely moisturising lip colour that lavishes the lips in a creamy velvet finish and ensures lips stay hydrated for eight hours. its 2-in-1 lightweight formula brings intense colour and a smoothing primer together to care for and colour lips.", "pricing": "$32.46", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41+0ffeJgBL.jpg", "https://m.media-amazon.com/images/I/31n7UwU+HCL.jpg", "https://m.media-amazon.com/images/I/31mwMgp0E9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Lips \u203a Lipstick", "average_rating": 5, "small_description": ["Makeup "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "A2GF55U6ADLBQE", "seller_name": "UKPD", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B015CSUKG8", "category": "beauty", "query": "Lips Makeup", "page": 207, "small_description_old": "About this item Makeup"}, {"name": "Anniou Electric Heated Jacket Adjustable Temp USB Heated Coat Winter Hooded Jacket Men Women", "product_information": {"Item model number\n \u200f": "\u200e\n AN-HTJ008", "Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n September 3, 2021", "ASIN\n \u200f": "\u200e\n B09F94PNNX", "Best Sellers Rank": "#1,665,074 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#500 in Men's Skiing Jackets #11,124 in Men's Outerwear Jackets & Coats #338,398 in Women's Clothing", "#500 in Men's Skiing Jackets": "", "#11,124 in Men's Outerwear Jackets & Coats": "", "#338,398 in Women's Clothing": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: ANNIOU", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=ANNIOU", "full_description": "Specification: Gender: Unisex Fabrics: 4/8 heated areas: Nylon/Polyester + Down Cotton + Carbon Fiber Heating Sheet dual switch:Nylon/Polyester+Eco Cotton+Carbon Fiber Heating Sheet smart app:Nylon/Polyester+80% Duck Down+Carbon Fiber Heating Sheet Heatd panel: 3-levels Temper Adjustable Multi Heated Areas: front, back and neck Temp Range: 30\u00b0C - 50\u00b0C \u2714 Storage: battery is stored in one inside pocket and the battery pocket is in the left lower corner of heated vest. (no power bank included inside packing) \u2714 Washable: Hand wash or machine wash in a laundry bag, do not twist or wring, hang dry only. Battery can NOT be wash, please pull out the battery before washing. \u2714 Suitable: body warmer, outdoor sports, snowmobiling, motorcycling, camping, hiking, skiing, winter sports. How to use\uff1a Link to power bank, press button on jacket for 3 seconds to start working. Press botton to switch temp levels. Red Light: High Level (50\u00b0C) White Light: Middle Level (40\u00b0C) Blue Light: Low Level (30\u00b0C) Press button for 3 seconds to shut down. Packing List: Regular Suit 1 x Heated jacket 1 x User manual 10000mAh Battery Suit 1 x Heated jacket 1 x User manual 1 x 10000mAh Battery 1 x Cable Battery Specification: Battery Type: Rechargeable USB Power Bank USB Input: 5v / 2.1A USB Output: 5V / 2.4A Capacity: 10000 mAh Charging Period: Approximately 6 hours. Working Period: Up to 8 hours. Battery Cycle Life: 500 - 800 times Battery GrossWeight: 200g Fully charged before the first time usage.", "pricing": "$64.99$114.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41aNjScdGtL.jpg", "https://m.media-amazon.com/images/I/5127G0yEitL.jpg", "https://m.media-amazon.com/images/I/51IBWJGbdLL.jpg", "https://m.media-amazon.com/images/I/517ouAYD5DL.jpg", "https://m.media-amazon.com/images/I/61PpUihJm9L.jpg", "https://m.media-amazon.com/images/I/51k5dK8T5WL.jpg", "https://m.media-amazon.com/images/I/51+HdUSlQXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Sport Specific Clothing \u203a Skiing \u203a Men \u203a Jackets", "average_rating": 4.2, "small_description": ["Multi Area Heated Panel: 3 type for chosse, 4 heated areas, 5 heated areas and 8 heated areas, including front, back and neck, take full covered heat to your body. ", "Advance heating technology, warm up rapidly in extremely cold weather. Rechargeable battery makes the working period over 8 hours. ", "3 level temp switch, High Level: red color (45-55\u00b0C), Medium Level: white color (35\u00b0-45\u00b0C), Low Level: blue color\uff0825-35\u00b0C\uff09. ", "Premium fabrics, made of polyester, nylon and differert type of cotton(down cotton, 80% duck down), outter surface waterproof material. Easily help keeping warm, also alow prevent rain. ", "Continous heat promote blood circulation, relief pain of muscles, better suit for outdoor such as snowmobile, motorcycle, mountain, camping, hiking, skiing, fishing, hunting and so on "], "total_reviews": 9, "total_answered_questions": 5, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09F94PNNX/ref=twister_B09F94FJ6Z", "value": "4 Areas Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41+hvqQKrNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F94LY8L/ref=twister_B09F94FJ6Z", "value": "4 Areas Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UIMDjYBzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F94VK1H/ref=twister_B09F94FJ6Z", "value": "4 Areas Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412-XfQcbYL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F98T1SK/ref=twister_B09F94FJ6Z", "value": "8 Areas Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41PUQAt34DL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F96NTGZ/ref=twister_B09F94FJ6Z", "value": "8 Areas Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41N+Zg6MYNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F996CCF/ref=twister_B09F94FJ6Z", "value": "8 Areas Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tOWxlN0YL.jpg"}, {"is_selected": true, "url": null, "value": "Triple Switch 11 Areas Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41aNjScdGtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GLWG2ZW/ref=twister_B09F94FJ6Z", "value": "Triple Switch 11 Areas Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41L1Rfr5fyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GLW1LYQ/ref=twister_B09F94FJ6Z", "value": "Triple Switch 11 Areas Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41c7Gcv2cHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FL46D9T/ref=twister_B09F94FJ6Z", "value": "Dual Switch 5 Areas Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qMvP0NpqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FL4YYC4/ref=twister_B09F94FJ6Z", "value": "Dual Switch 5 Areas Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41PF7aD6uYL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FL4VDDS/ref=twister_B09F94FJ6Z", "value": "Dual Switch 5 Areas Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gE6e-AoZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FSCLDSH/ref=twister_B09F94FJ6Z", "value": "Smart App 5 Areas Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41JWCbtiKZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FRWGBNJ/ref=twister_B09F94FJ6Z", "value": "Smart App 5 Areas Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qHOVNML6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FSXCMFM/ref=twister_B09F94FJ6Z", "value": "Smart App 5 Areas Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ly6VQsWVL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B09GLV6NXP"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B09GLW4ZJJ"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09GLYG8V5"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09GLXT3K9"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09GLXB8FP"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09GLVMLMS"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GLVMLMS", "category": "fashion", "query": "Men's Jackets & Coats", "page": 67, "small_description_old": "Multi Area Heated Panel: 3 type for chosse, 4 heated areas, 5 heated areas and 8 heated areas, including front, back and neck, take full covered heat to your body. Advance heating technology, warm up rapidly in extremely cold weather. Rechargeable battery makes the working period over 8 hours. 3 level temp switch, High Level: red color (45-55\u00b0C), Medium Level: white color (35\u00b0-45\u00b0C), Low Level: blue color\uff0825-35\u00b0C\uff09. Premium fabrics, made of polyester, nylon and differert type of cotton(down cotton, 80% duck down), outter surface waterproof material. Easily help keeping warm, also alow prevent rain. Continous heat promote blood circulation, relief pain of muscles, better suit for outdoor such as snowmobile, motorcycle, mountain, camping, hiking, skiing, fishing, hunting and so on"}, {"name": "BOLSIUS Tea Lights Candles - Pack of 100 White Unscented Candle Lights with 8 Hour Burning Time - Tea Candles for Wedding, Home, Parties, and Special Occasions", "product_information": {"Brand": "\u200eBOLSIUS", "Manufacturer": "\u200eBOLSIUS", "Item Weight": "\u200e4.74 pounds", "Package Dimensions": "\u200e11.3 x 6.4 x 4.9 inches", "Style": "\u200e8 Hour", "Color": "\u200eWhite", "Specific Uses": "\u200eDecoration", "Special Features": "\u200eLong Burning, Clean Burn", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B07TNKTKF4", "Customer Reviews": {"ratings_count": 12515, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#66,160 in Home & Kitchen (See Top 100 in Home & Kitchen) #61 in Tea Lights"], "Date First Available": "June 26, 2019"}, "brand": "Visit the BOLSIUS Store", "brand_url": "https://www.amazon.com/stores/BOLSIUS/page/CD074B87-FD9C-4FD3-8B88-89A476BDD8FE?ref_=ast_bln", "full_description": "BOLSIUS Professional Tea lights candles - Set of 100 unscented candles for household decorationThe most tricky task is choosing the right d\u00e9cor accessories for occasions and home decor to welcome our guests. Beautifully crafted European Bolsius White Unscented Tealight Candles gives an enchanting appeal to any dull and otherwise boring environment. The metallic mini tealight candles are more than capable of stunning look when paired with the right decorative candle holder, unlike other candles they don\u2019t drip and ruin your expensive furniture when they burn. The disposable metal holder can go right into the trash, saving precious time on cleanup. Our eight hours long burning tealight candles will be a classic taste for making any occasion perfect.Our unscented tealights measures -\u25d8 1 and 1/2-inch in diameter\u25d8 1-inch in heightSince 1870, Bolsius has been offering various home decor and illumination accessories. We carry all types of tea light candles in multiple sizes such as 3, 4, 6, 8, 10, hours tea lights. Our catalog includes a full line of Pillar candles, Floating candles, Taper candles for parties, and weddings.", "pricing": "$24.98", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/518iXDx8iuL.jpg", "https://m.media-amazon.com/images/I/41ynGTIMRZL.jpg", "https://m.media-amazon.com/images/I/51TPwJrVtrL.jpg", "https://m.media-amazon.com/images/I/41U5XR6HSSL.jpg", "https://m.media-amazon.com/images/I/417HVF8-xcL.jpg", "https://m.media-amazon.com/images/I/513HLA55RXL.jpg", "https://m.media-amazon.com/images/I/41KjDLBHlaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Candles & Holders \u203a Candles \u203a Tea Lights", "average_rating": 4.8, "small_description": ["A CANDLE IS All YOU NEED FOR ENCHANTING DECOR - Bolsius tealight candles add a sudden accent lighting for a pleasant relaxed setting. Be it an indoor setting in the home and kitchen using tealight holders, or an outdoor evening, our tealights will make an impressive touch to the decor. ", "PERFECT SIZED RELIABLE TEACUP CANDLES - Our clean burning candles are extensively crafted in perfect size of 1 1/2 - inch of diameter and 1-inch of height; A perfect fit for standard size votive and tealight holders. Bolsius unscented tealight candles are metal lined for modern touch and safety of furniture. ", "SUPERIOR-QUALITY TEA CANDLES FOR CENTREPIECES - Prepared for the highly sophisticated and delicate placement, our white tealight candles are made up of high-grade wax and wick. The premium-quality candles are made and imported from Europe. ", "BULK PACK OF LONG LASTING CANDLE LIGHTS: Save more on a perfectly packaged bulk pack of 100 tealights. Our tealight candle lasts for up to 8 burning hours. Order our white tea lights candles now, to plan for any special occasion, wedding, or party decoration. ", "MULTI-FUNCTIONAL WAX TEA LIGHTS - Get creative with our set of 100 versatile unscented tealight candles. A soft, warm glow from these long-burning tealight candles can produce an eloquent effect for a romantic evening. Use with any scented oil for an aromatic effect,or as a teapot warmer. "], "total_reviews": 12515, "total_answered_questions": 18, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09MDP85P9/ref=twister_B09RB4SSJ6", "value": "1 Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "2 Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07TJB9KSX/ref=twister_B09RB4SSJ6?_encoding=UTF8&psc=1", "value": "3 Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B005EF23LU/ref=twister_B09RB4SSJ6?_encoding=UTF8&psc=1", "value": "7x18x32 cm", "price_string": "", "price": 0, "image": null}], "Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07TL17XZX/ref=twister_B09RB4SSJ6?_encoding=UTF8&psc=1", "value": "6 Hour", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "8 Hour", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A3KYVHQ5PYFEAN", "seller_name": "five stars deals", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07TNKTKF4", "category": "garden", "query": "Candles", "page": 175, "small_description_old": "About this item A CANDLE IS All YOU NEED FOR ENCHANTING DECOR - Bolsius tealight candles add a sudden accent lighting for a pleasant relaxed setting. Be it an indoor setting in the home and kitchen using tealight holders, or an outdoor evening, our tealights will make an impressive touch to the decor. PERFECT SIZED RELIABLE TEACUP CANDLES - Our clean burning candles are extensively crafted in perfect size of 1 1/2 - inch of diameter and 1-inch of height; A perfect fit for standard size votive and tealight holders. Bolsius unscented tealight candles are metal lined for modern touch and safety of furniture. SUPERIOR-QUALITY TEA CANDLES FOR CENTREPIECES - Prepared for the highly sophisticated and delicate placement, our white tealight candles are made up of high-grade wax and wick. The premium-quality candles are made and imported from Europe. BULK PACK OF LONG LASTING CANDLE LIGHTS: Save more on a perfectly packaged bulk pack of 100 tealights. Our tealight candle lasts for up to 8 burning hours. Order our white tea lights candles now, to plan for any special occasion, wedding, or party decoration. MULTI-FUNCTIONAL WAX TEA LIGHTS - Get creative with our set of 100 versatile unscented tealight candles. A soft, warm glow from these long-burning tealight candles can produce an eloquent effect for a romantic evening. Use with any scented oil for an aromatic effect,or as a teapot warmer. \n \u203a See more product details"}, {"name": "Gold Bond Medicated Advanced Healing Ointment, 7 oz., Hydrates and Protects Dry, Cracked Skin", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.56 x 3.56 x 2.84 inches; 7 Ounces", "Manufacturer\n \u200f": "\u200e\n Sanofi", "ASIN\n \u200f": "\u200e\n B09BWQZ68V", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#31,422 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#608 in Body Lotions", "#608 in Body Lotions": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Gold Bond Store", "brand_url": "https://www.amazon.com/stores/GoldBond/page/3219F1C9-31AD-4165-8152-8A24EEBC7C74?ref_=ast_bln", "full_description": "Hard work, cold, dry weather and demanding physical activity can be tough on skin. When your skin needs some extra care, try Gold Bond Medicated Advanced Healing Ointment. This medicated ointment hydrates, restores and protects dry, cracked skin. Fortified with a triple-action complex of shea butter, ceramides and white petrolatum, this multi-benefit formula provides healing relief* while restoring healthy skin. Gold Bond Medicated Advanced Healing Ointment is free of preservatives, fragrances and dyes, and it's dermatologist-tested. Best of all, this healing formula provides nourishing hydration for sensitive skin. Stock up on Gold Bond Medicated Advanced Healing Ointment to keep skin looking and feeling its best, especially in harsh conditions. *Refers to relief of chafed, chapped or cracked skin", "pricing": "$9.97", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41SmJMqrveL.jpg", "https://m.media-amazon.com/images/I/41mA9+WsHEL.jpg", "https://m.media-amazon.com/images/I/41F+qUYMJbL.jpg", "https://m.media-amazon.com/images/I/51I-mCKt0tL.jpg", "https://m.media-amazon.com/images/I/31KuJ-VlKfL.jpg", "https://m.media-amazon.com/images/I/51MdFrX26UL.jpg", "https://m.media-amazon.com/images/I/41w7NDWAZxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Moisturizers \u203a Lotions", "average_rating": 4.3, "small_description": ["Includes one (1) 7-ounce jar of Gold Bond Medicated Advanced Healing Ointment ", "Hydrates, restores and protects dry, cracked skin ", "Made with a triple-action complex of shea butter, ceramides and white petrolatum for nourishing hydration ", "This dermatologist-tested ointment is hypoallergenic and suitable for sensitive skin ", "Multi-benefit formula is made free from preservatives, fragrances and dyes "], "total_reviews": 55, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09BWQZ68V", "category": "beauty", "query": "Foot, Hand & Nail Care", "page": 52, "small_description_old": "About this item Includes one (1) 7-ounce jar of Gold Bond Medicated Advanced Healing Ointment Hydrates, restores and protects dry, cracked skin Made with a triple-action complex of shea butter, ceramides and white petrolatum for nourishing hydration This dermatologist-tested ointment is hypoallergenic and suitable for sensitive skin Multi-benefit formula is made free from preservatives, fragrances and dyes"}, {"name": "N\\C Mens Flip Flops Thong Sandals Yoga Foam Slippers 44 R011 Black", "product_information": {"Department": "Mens", "Manufacturer": "N\\C", "ASIN": "B0989VY7D8"}, "brand": "Brand: N\\C", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=N%5CC", "full_description": "Product category: Flip FlopColor: R005 black, R005 gray, R005 brown, R011 black, R011 brown, R011 blue, R003 black, R003 gray, R003 red, R003 blueUpper material: meshSize: 39, 40, 41, 42, 43, 44, 45Sole technology: sewing shoesGender: MaleInventory type: whole orderSole material: PVCApplicable age: AdultStyle: BeachStyle: open toeQuality inspection report: YesGross weight: 158g", "pricing": "$17.99", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/61vR1ZJ9u3S.jpg", "https://m.media-amazon.com/images/I/519CWh394NS.jpg", "https://m.media-amazon.com/images/I/51bRPzQzjFS.jpg", "https://m.media-amazon.com/images/I/61PaeIzLxWS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Sandals", "average_rating": "", "small_description": "Men's flip flops: the skin contact part is made of cloth so you can walk without friction or sharpness. Even if used for a long time, it will not cause blisters. [antiskid comfort] men's flip flop is easy to walk, with good spiral antiskid pattern at the bottom, so it won't slip. In addition, arch support can provide good walking stability and keep your feet comfortable. Men's flip flop: the use of advanced belt, highlight our pursuit of high quality. In addition, the metal logo on the laces makes them look more fashionable. Fashion style: color collision elements bring a trace of vitality to the original monotonous pure color. No matter what style you are looking for, low-key (black gray) or gorgeous (black red), you can find the most suitable style here. [soft men's flip flop in summer] this men's clip toe sandal is waterproof and suitable for all seasons. Especially in summer, when you go to the beach on holiday or around the pool at home.", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AL46F4EJRF3I5", "seller_name": "changqia'w", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0989VY7D8", "category": "fashion", "query": "Men's Sandals", "page": 185, "small_description_old": "Men's flip flops: the skin contact part is made of cloth so you can walk without friction or sharpness. Even if used for a long time, it will not cause blisters. [antiskid comfort] men's flip flop is easy to walk, with good spiral antiskid pattern at the bottom, so it won't slip. In addition, arch support can provide good walking stability and keep your feet comfortable. Men's flip flop: the use of advanced belt, highlight our pursuit of high quality. In addition, the metal logo on the laces makes them look more fashionable. Fashion style: color collision elements bring a trace of vitality to the original monotonous pure color. No matter what style you are looking for, low-key (black gray) or gorgeous (black red), you can find the most suitable style here. [soft men's flip flop in summer] this men's clip toe sandal is waterproof and suitable for all seasons. Especially in summer, when you go to the beach on holiday or around the pool at home."}, {"name": "Alfa Milano Evolution of the Color Permanent Hair Color, 2 oz (4.65 Medium Red Mahogany Brown)", "product_information": {"UPC\n \u200f": "\u200e\n 754003252132", "Manufacturer\n \u200f": "\u200e\n Kim Beauty", "ASIN\n \u200f": "\u200e\n B09FFV98FY", "Best Sellers Rank": "#1,133,687 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#14,475 in Hair Color", "#14,475 in Hair Color": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Kim Beauty", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Kim+Beauty", "full_description": "Alfa Milano Evolution of the Color Permanent Hair Color, 2 oz (4.65 Medium Red Mahogany Brown)", "pricing": "$10.50", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41MIrT4-xOS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Coloring Products \u203a Hair Color", "average_rating": 5, "small_description": ["Alfa Milano Evolution of the Color Permanent Hair Color, 2 oz (4.65 Medium Red Mahogany Brown) "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A30NTJ42JP57B3", "seller_name": "The beauty is", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09FFV98FY", "category": "beauty", "query": "Hair Coloring Products", "page": 144, "small_description_old": "Alfa Milano Evolution of the Color Permanent Hair Color, 2 oz (4.65 Medium Red Mahogany Brown)"}, {"name": "Char Crust Dry Rubs Roasted Garlic Peppercorn 4.0 OZ (Pack of 2)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 5.9 x 5.1 x 3.7 inches; 9.6 Ounces", "ASIN\n \u200f": "\u200e\n B00D4NQQ7G", "Best Sellers Rank": "#76,542 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#146 in Gourmet Rubs", "#146 in Gourmet Rubs": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Char Crust Store", "brand_url": "https://www.amazon.com/stores/CharCrust%C2%AE/page/5B342D65-DD79-481B-A98B-FBB93774A137?ref_=ast_bln", "full_description": "", "pricing": "$19.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/517L8T6EitL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Herbs, Spices & Seasonings \u203a Mixed Spices & Seasonings \u203a Gourmet Rubs", "average_rating": 5, "small_description": [""], "total_reviews": 24, "total_answered_questions": "", "customization_options": "", "seller_id": "ASX0V1L21K64F", "seller_name": "Cypress Lane", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00D4NQQ7G", "category": "grocery", "query": "Meat & Seafood", "page": 384, "small_description_old": ""}, {"name": "Avigers Luxury Decorative European Throw Pillow Cover 18 x 18 Inch Soft Floral Embroidered Cushion Case with Tassels for Couch Bedroom Car 45 x 45 cm, Beige Gold", "product_information": {"Package Dimensions": "11.18 x 7.52 x 1.73 inches", "Item Weight": "11.6 ounces", "Manufacturer": "Avigers", "ASIN": "B07T9LZKM7", "Customer Reviews": {"ratings_count": 436, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#94,870 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,234 in Throw Pillow Covers"], "Fabric Type": "High Precision Jacquard", "Number of Pieces": "1", "Batteries Required?": "No"}, "brand": "Visit the Avigers Store", "brand_url": "https://www.amazon.com/stores/Avigers/page/EC98A7A3-B4A0-43F9-B2C5-BE8081603431?ref_=ast_bln", "full_description": "\u2764Specification\u2714Square Pillow Case\uff08INSERT NOT INCLUDED\uff09\u2714Material: High Precision Jacquard \u2714Application: Indoors (living room, bedroom, office, etc.) and outdoors ( patio, car etc.) \u2714Size:18 x 18 Inches Pillow Case \u2764Warm Tips \u2714Little deviation is allowed, because of manual measurement. \u2714There may are slight difference between the picture and the real item caused by light brightness. \u2714Not included the pillow inserts. \u2714The design pattern is only on the front side.", "pricing": "$16.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51zZy8Cc0xL.jpg", "https://m.media-amazon.com/images/I/51gAdqsl0RL.jpg", "https://m.media-amazon.com/images/I/51efhVQ1pbL.jpg", "https://m.media-amazon.com/images/I/519ReSg98PL.jpg", "https://m.media-amazon.com/images/I/51q29cZfplL.jpg", "https://m.media-amazon.com/images/I/61+RcmoWshL.jpg", "https://m.media-amazon.com/images/I/51XasTvzB+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": 4.5, "small_description": ["Package Includes: 1 Pc Pillow Case. And pls notice: CUSHION COVER ONLY ( INSERT NOT INCLUDED), 18\" x 18\"(45cm x 45cm) (Pls allow 1-2cm measurement deviation) ", "The patterns are different between the front side and back side, Invisible zipper design, Brand design embroidered pattern of Avigers ", "The unique pattern of pillow case is designed by Avigers Brand Designer, Wonderful feeling when you touch. Comfortable, durable and environmentally, breathable, soft feeling, full, elastic, fluffy and elegant. ", "Perfect Decoration: Good choice for wedding favors, bridal shower favors or bohemian themed parties, BOHO wall decoration, kids bedroom, birthday gift, etc. ", "Washing Instruction: Machine Washable/ Dry Clean. Easy Maintenance. "], "total_reviews": 436, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51zZy8Cc0xL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T8HKFGV/ref=twister_B087M19MZD?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51qocoT4twL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07TBLX4CP/ref=twister_B087M19MZD?_encoding=UTF8&psc=1", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51NRcuYzPcL.jpg"}], "Size": [{"is_selected": true, "url": null, "value": "18 x 18-Inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T9LYLGD/ref=twister_B087M19MZD", "value": "20\" x 20\"", "price_string": "", "price": 0, "image": null}]}, "seller_id": "ABRLF9C7SRXA8", "seller_name": "Avigers", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07T9LZKM7", "category": "garden", "query": "Decorative Pillows", "page": 71, "small_description_old": "About this item High Precision Jacquard Package Includes: 1 Pc Pillow Case. And pls notice: CUSHION COVER ONLY ( INSERT NOT INCLUDED), 18\" x 18\"(45cm x 45cm) (Pls allow 1-2cm measurement deviation) The patterns are different between the front side and back side, Invisible zipper design, Brand design embroidered pattern of Avigers The unique pattern of pillow case is designed by Avigers Brand Designer, Wonderful feeling when you touch. Comfortable, durable and environmentally, breathable, soft feeling, full, elastic, fluffy and elegant. Perfect Decoration: Good choice for wedding favors, bridal shower favors or bohemian themed parties, BOHO wall decoration, kids bedroom, birthday gift, etc. Washing Instruction: Machine Washable/ Dry Clean. Easy Maintenance."}, {"name": "Empty Round Makeup Palette, Makeup Palette Sticker Kit 15 Pieces Adhesive Right Size for Eyeshadow Palette Set", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.3 x 2.76 x 0.39 inches; 1.76 Ounces", "Manufacturer\n \u200f": "\u200e\n Rosvola", "ASIN\n \u200f": "\u200e\n B09NRWND4H", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Visit the Rosvola Store", "brand_url": "https://www.amazon.com/stores/Rosvola/page/2F90678B-37ED-4B14-905F-EF236A699609?ref_=ast_bln", "full_description": "Feature:1. High Quality Material: Metal sticker is made of high quality permanent adhesive, has good adhesion, can be firmly pasted on most surfaces, and is not easy to fall off. It is very suitable for preserving existing cosmetics and creating your own palette.2. Easy To Use: Store eyeshadow, highlighter and lipstick products in the package with a stainless steel makeup spatula, use the pointed tip to enter the hard to corners of package, and use flat size to mix your favorite liquid, cream and powder products.3. Right Size: Size of empty palette metal sticker is about 17 x 14 mm / 0.67 x 0.55 inches, cosmetic deposit tool is about 15 cm / 5.90 inches, and the diameter of the round palette sticker is 25 mm / 0.98in.4. Package Content: You will receive 1 piece of makeup tools, 15 pieces of adhesive empty palette metal stickers and 15 pieces of round makeup palette stickers, enough to meet your different needs.5. Palette Stickers Are Not Magnets: They respond to magnets, and these are very suitable for any magnetic cosmetics empty palette or other magnetic palettes.Specification:Item Type: Metal Stickers for Eyeshadow PaletteMaterial:\u00a0MetalSize:Round Iron Sheet: Approx. 25 x 25mm/0.98 x 0.98inSquare Iron Sheet: Approx. 14 x 17mm/0.55 x 0.67in Package List:1 x Metal Stickers15 x Round Iron Sheets15 x Iron Sheets", "pricing": "$6.95", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31kaLshFzVL.jpg", "https://m.media-amazon.com/images/I/11MlZxbVzRL.jpg", "https://m.media-amazon.com/images/I/31ZxzWwTjfL.jpg", "https://m.media-amazon.com/images/I/31vA5Bn1TUL.jpg", "https://m.media-amazon.com/images/I/41lusSuVgzL.jpg", "https://m.media-amazon.com/images/I/41M1nUsLheL.jpg", "https://m.media-amazon.com/images/I/31n-0k1rQxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Makeup Palettes", "average_rating": "", "small_description": ["Easy To Use: Store eyeshadow, highlighter and lipstick products in the package with a stainless steel makeup spatula, use the pointed tip to enter the hard to corners of package, and use flat size to mix your favorite liquid, cream and powder products. ", "Palette Stickers Are Not Magnets: They respond to magnets, and these are very suitable for any magnetic cosmetics empty palette or other magnetic palettes. ", "Package Content: You will receive 1 piece of makeup tools, 15 pieces of adhesive empty palette metal stickers and 15 pieces of round makeup palette stickers, enough to meet your different needs. ", "Right Size: Size of empty palette metal sticker is about 17 x 14 mm / 0.67 x 0.55 inches, cosmetic deposit tool is about 15 cm / 5.90 inches, and the diameter of the round palette sticker is 25 mm / 0.98in. ", "High Quality Material: Metal sticker is made of high quality permanent adhesive, has good adhesion, can be firmly pasted on most surfaces, and is not easy to fall off. It is very suitable for preserving existing cosmetics and creating your own palette. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3DXG8UJC0RL9L", "seller_name": "Woriil", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NRWND4H", "category": "beauty", "query": "Makeup Palettes", "page": 135, "small_description_old": "Easy To Use: Store eyeshadow, highlighter and lipstick products in the package with a stainless steel makeup spatula, use the pointed tip to enter the hard to corners of package, and use flat size to mix your favorite liquid, cream and powder products. Palette Stickers Are Not Magnets: They respond to magnets, and these are very suitable for any magnetic cosmetics empty palette or other magnetic palettes. Package Content: You will receive 1 piece of makeup tools, 15 pieces of adhesive empty palette metal stickers and 15 pieces of round makeup palette stickers, enough to meet your different needs. Right Size: Size of empty palette metal sticker is about 17 x 14 mm / 0.67 x 0.55 inches, cosmetic deposit tool is about 15 cm / 5.90 inches, and the diameter of the round palette sticker is 25 mm / 0.98in. High Quality Material: Metal sticker is made of high quality permanent adhesive, has good adhesion, can be firmly pasted on most surfaces, and is not easy to fall off. It is very suitable for preserving existing cosmetics and creating your own palette."}, {"name": "Visual Land Prestige Elite 10\" Quad Core Tablet with KitKat 4.4, Google Play and Keyboard Bundle (Purple)", "product_information": {"Standing screen display size": "\u200e10 Inches", "Max Screen Resolution": "\u200e1024x600 Pixels", "Processor": "\u200e1.6 GHz apple_a6", "RAM": "\u200e1 GB DDR3", "Hard Drive": "\u200e8 GB", "Wireless Type": "\u200e802.11bgn", "Number of USB 2.0 Ports": "\u200e1", "Average Battery Life (in hours)": "\u200e8 Hours", "Brand": "\u200eVisual Land", "Series": "\u200ePresitige Elite", "Item model number": "\u200eME10Q8KCPRP", "Hardware Platform": "\u200eAndroid", "Operating System": "\u200eAndroid 4.4 KitKat", "Item Weight": "\u200e1.2 pounds", "Product Dimensions": "\u200e11.1 x 0.5 x 6.5 inches", "Item Dimensions LxWxH": "\u200e11.1 x 0.5 x 6.5 inches", "Color": "\u200ePurple", "Processor Brand": "\u200eIntel", "Processor Count": "\u200e4", "Flash Memory Size": "\u200e8 GB", "Power Source": "\u200eBattery Powered", "Batteries": "\u200e1 Lithium ion batteries required. (included)", "ASIN": "B00OFQR8D2", "Customer Reviews": {"ratings_count": 12, "stars": "3.5 out of 5 stars"}, "Best Sellers Rank": ["#648,079 in Electronics (See Top 100 in Electronics) #12,765 in Computer Tablets"], "Date First Available": "October 3, 2014"}, "brand": "Visit the Visual Land Store", "brand_url": "https://www.amazon.com/stores/Visual+Land/page/A4CF77F9-86AF-4E18-8FBA-AB71C7375510?ref_=ast_bln", "full_description": "Designed for the everyday user, this Quad Core, Google Certified, Kit Kat 10.1\" Tablet is portable, powerful and easy to carry anywhere life takes you. This tablet, offered in 5 different colors is loaded with premium features such as a front and rear facing camera, 8GB of internal memory and comes preloaded with the Google Suite as well as the most popular apps.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41mXYVzP77L.jpg", "https://m.media-amazon.com/images/I/51TfyjaAxBL.jpg", "https://m.media-amazon.com/images/I/41hb4xYR9UL.jpg", "https://m.media-amazon.com/images/I/41eDrkuB7VL.jpg", "https://m.media-amazon.com/images/I/51EaRGORvFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computers & Tablets \u203a Tablets", "average_rating": 3.5, "small_description": ["Android 4.4 KitKat, 10.0 inches Display ", "Intel A6 1.6 GHz ", "8.0 GB Flash Memory, 1.0 GB RAM Memory ", "8.0-hour battery life, 1.2 pounds "], "total_reviews": 12, "total_answered_questions": "", "model": "\u200eME10Q8KCPRP", "customization_options": {"Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00OFQR8D2", "category": "electronics", "query": "Tablets", "page": 90, "small_description_old": "About this item\n \nAndroid 4.4 KitKat, 10.0 inches Display Intel A6 1.6 GHz 8.0 GB Flash Memory, 1.0 GB RAM Memory 8.0-hour battery life, 1.2 pounds \n \u203a See more product details"}, {"name": "ZZF Bookshelf Sling Bookshelf Small Volume 3 Layers Desktop Bookcase Double Drawer Storage Box Creative Preservative Wood,4 Colors, 2 Styles (Color : A-a, Size : 60X17X48CM)", "product_information": {"Item Weight": "13.23 pounds", "Department": "Unisex-adult", "Manufacturer": "ZZF", "ASIN": "B09C8FZ9YS"}, "brand": "Brand: ZZF", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ZZF", "full_description": "Product Name: Sling Bookshelf / Desktop BookshelfColor: pink, white, light walnut, teakWeight: 4.2kgProduct Details:- Thick plate, good load bearing capacity- Small and exquisite- Multi-layer storage, practical and convenient- Thickened sheet, good toughness, strong load bearing, durable- Smooth and polished, not hurting your handsTips:1. We only sell bookshelves, not including the decorations and books displayed in the product photos.2. The children's bookshelf can be used not only as a bookcase, but also as a toy storage box.3. Books of all sizes and formats4. Reduce the confusion in the children's rooms and help them develop good habits5. Make reasonable use of your desktop space6. Place books, stationery, etc.The smooth rounded edges will not damage your textbooks, paper or table, and you can accidental injuries.Easy to assemble: Quick and easy home assembly, make your own desktop manager and enjoyApplicable scene: living room, children's room, study, bedroom, kindergarten, reading room, office, etc.\u25b6Because the product packaging is relatively large, it can cause bumps and damage during transportation. If the received goods bump, please don\u2019t worry, please contact us, we will solve the problem for you", "pricing": "$204.72", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41+LoSMlQuL.jpg", "https://m.media-amazon.com/images/I/41dkLyRpZLL.jpg", "https://m.media-amazon.com/images/I/51UN7QrMV-L.jpg", "https://m.media-amazon.com/images/I/41O8guCmTBL.jpg", "https://m.media-amazon.com/images/I/41Jnv4SspaL.jpg", "https://m.media-amazon.com/images/I/41d6osLKS3L.jpg", "https://m.media-amazon.com/images/I/412aVqOuj3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": "", "small_description": ["Material: MDF, -friction, corrosion-resistant, easy to clean, durable, strong load; applicable age: children over 6 years old ", "Size (length x width x height): 60X17X48CM; 1 inch = 2.45 cm ", "Ideal for storing office supplies, documents, storing books, organizing office supplies, and the compact size makes this bookcase ideal for any table, table or countertop. A big gift for children and students. ", "Features: Retractable, simple rack, smooth and polished, no hand injury, wide drawer, thick plate, stable, easy to clean ", "\u25b6Reminder: The estimated lead time of the product is 10-26 days. If you have any questions, please feel free to contact us. Your satisfaction is our greatest pursuit "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": null, "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09C8DKDB8/ref=twister_B09C8GMV9Y?_encoding=UTF8&psc=1", "value": "A", "price_string": "$185.27", "price": 185.27, "image": "https://m.media-amazon.com/images/I/41Ria1nOXkL.jpg"}, {"is_selected": true, "url": null, "value": "A-a", "price_string": "$204.72", "price": 204.72, "image": "https://m.media-amazon.com/images/I/41+LoSMlQuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8F5VV1/ref=twister_B09C8GMV9Y?_encoding=UTF8&psc=1", "value": "B", "price_string": "$185.27", "price": 185.27, "image": "https://m.media-amazon.com/images/I/41OYcy6uArL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8F7PY9/ref=twister_B09C8GMV9Y?_encoding=UTF8&psc=1", "value": "B-a", "price_string": "$204.72", "price": 204.72, "image": "https://m.media-amazon.com/images/I/412aVqOuj3L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8FSP7W/ref=twister_B09C8GMV9Y?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "$185.27", "price": 185.27, "image": "https://m.media-amazon.com/images/I/41b1704RUUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8GK67H/ref=twister_B09C8GMV9Y?_encoding=UTF8&psc=1", "value": "Pink-a", "price_string": "$204.72", "price": 204.72, "image": "https://m.media-amazon.com/images/I/41aiyU7dcPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8FS43V/ref=twister_B09C8GMV9Y?_encoding=UTF8&psc=1", "value": "White", "price_string": "$185.27", "price": 185.27, "image": "https://m.media-amazon.com/images/I/41-G41U7aBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8PDXH4/ref=twister_B09C8GMV9Y?_encoding=UTF8&psc=1", "value": "White-a", "price_string": "$204.72", "price": 204.72, "image": "https://m.media-amazon.com/images/I/41d6osLKS3L.jpg"}]}, "seller_id": "A3U7EC21HU8APO", "seller_name": "zhangzhanfeng", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09C8FZ9YS", "category": "garden", "query": "Book Cases", "page": 172, "small_description_old": "About this item Material: MDF, -friction, corrosion-resistant, easy to clean, durable, strong load; applicable age: children over 6 years old Size (length x width x height): 60X17X48CM; 1 inch = 2.45 cm Ideal for storing office supplies, documents, storing books, organizing office supplies, and the compact size makes this bookcase ideal for any table, table or countertop. A big gift for children and students. Features: Retractable, simple rack, smooth and polished, no hand injury, wide drawer, thick plate, stable, easy to clean \u25b6Reminder: The estimated lead time of the product is 10-26 days. If you have any questions, please feel free to contact us. Your satisfaction is our greatest pursuit"}, {"name": "Novia's Choice Men Shiny Metallic Shirt Blouse T-Shirt Tee for Nightclub", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 14.53 x 10.63 x 0.94 inches; 5.93 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n August 21, 2017", "ASIN\n \u200f": "\u200e\n B074Z62NYF", "Best Sellers Rank": "#287,852 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,965 in Men's T-Shirts #13,753 in Men's Novelty T-Shirts", "#1,965 in Men's T-Shirts": "", "#13,753 in Men's Novelty T-Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Novia's Choice Store", "brand_url": "https://www.amazon.com/stores/NoviasChoice/page/A5CDC7CD-9236-4C52-83C2-BEEE50C0587D?ref_=ast_bln", "full_description": "Welcome to Novia's Choice Store, and thanks for your business and trust!Wanner an unique outfit to express yourself?Come and look our New arrival Metallic T-shirt, really stylish and fashion.Material: metallic synthetic leather and Polyester fiber, stunning and sparkly.Casual tight fit top can highlight your figure, making you attractive in crowds.Perfect for any outfit, and can be a great Primer shirt for autumn and winter.Size: Short Sleeve: 2XL: Length: 27.5inches, Shoulder: 17.5inches, Sleeve: 8inches, Bust: 40inches, Hem: 40inches.XL: Length: 27inches, Shoulder: 16.5inches, Sleeve: 7.6inches, Bust: 37inches, Hem: 38inches.L: Length: 26.5inches, Shoulder: 16inches, Sleeve: 7.3inches, Bust: 36inches, Hem: 37inches.Long Sleeve: 2XL: Length: 27.8inches, Shoulder: 17.5inches, Sleeve: 25inches, Bust: 40inches, Hem: 38inches.XL: Length: 26.8inches, Shoulder: 16.5inches, Sleeve: 24.5inches, Bust: 38inches, Hem: 37inches.L: Length: 26.5inches, Shoulder: 16inches, Sleeve: 24inches, Bust: 37inches, Hem: 36inches.Note: Please do pay attention to the size, and please alllow 0-2cm differences due to manual measurement.Dear friends, if you're satisfied with our items, please give us a positive feedback. We will appreciate you very much.If for any reasons that you are not satisfied with our items or service, please feel free to contact us before you are leaving a negative feedback. We will try our best to solve the problem and offer the best service to you.Thank you very much! Have a wonderful day!", "pricing": "$18.99$25.43", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41DMTTOy1+L.jpg", "https://m.media-amazon.com/images/I/51pY71scWDL.jpg", "https://m.media-amazon.com/images/I/41L4n18h0ZL.jpg", "https://m.media-amazon.com/images/I/51f8ZylUaYL.jpg", "https://m.media-amazon.com/images/I/41Y8HXhvUOL.jpg", "https://m.media-amazon.com/images/I/51TYzYXUPrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a T-Shirts", "average_rating": 3.8, "small_description": ["100% Cotton ", "Pull On closure ", "Machine Wash ", "Machine wash ", "Crew neck, casual loose fit ", "Super soft, lightweight, skin-friendly, breathable and moisture wicking ", "Featuring taped neck and shoulders, double-needle collar, sleeves and hem for long-lasting comfort and durability ", "Size: Please kindly refer to the Second Size Chart Image for reference before order(NOT AMAZON'S SIZE) "], "total_reviews": 69, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Large", "asin": "B074Z315KK"}, {"is_selected": false, "is_available": false, "value": "X-Large", "asin": "B074Z6SLDG"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B074Z3ZMM2"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B074Z62NYF/ref=twister_B074Z6LC2G", "value": "Black 2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41s39kY87WL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B074Z4JFQR/ref=twister_B074Z6LC2G", "value": "Gold 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51SAt6ckGcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B074Z4LYVK/ref=twister_B074Z6LC2G", "value": "Silver 2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51czpYOgddL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B074Z5VHC8/ref=twister_B074Z6LC2G", "value": "Gold 2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51SRg8emc9L.jpg"}, {"is_selected": true, "url": null, "value": "Silver 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41DMTTOy1+L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B074Z315KK", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 18, "small_description_old": "Do not iron Material: Metallic synthetic leather and polyester fiber, stunning and sparkly Size: please refer to the Second Size Image for detailed size information(NOT AMAZON SIZE) Casual tight fit top can highlight your figure, making you attractive in crowds Perfect for nightclub, party, cosplay, disco and dailywear, and can be a great Primer shirt for autumn and winter Notice: Hand Wash Cold; Do Not Machine Wash; Do not iron or bleach"}, {"name": "Anniston Hairpiece Fashion Lady Golden Tone Short Curly Hair Style Wig COSPLAY Party Hairpiece Hair Scrunchies Updo Hair Bun Hair Accessories for Women - Golden", "product_information": {"Manufacturer\n \u200f": "\u200e\n Anniston", "ASIN\n \u200f": "\u200e\n B0816QM13S", "": ""}, "brand": "Brand: Anniston", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Anniston", "full_description": "Specifications: Short curly wig for women, gives you a stylish hairstyle in seconds. Perfect for party, COSPLAY and daily use. It can make you more charming and unique. Type: Wig Gender: Women's Theme: Beauty Style: Fashion Material: High Temperature Synthetic Fiber Hairnet Type: Rose Net Occasions: Party, Club, COSPLAY, Carnival, Halloween, Daily Life, etc Features: Heat Resistant, Curly, Full Wig, Golden Tone Length: 32cm/12.60\" (Approx.) Notes: Due to the light and screen setting difference, the item's color may be slightly different from the pictures. Please allow slight dimension difference due to different manual measurement. Package Includes: 1 x Wig", "pricing": "$6.67", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/511k7x16CcL.jpg", "https://m.media-amazon.com/images/I/51J0fvzXRgL.jpg", "https://m.media-amazon.com/images/I/51O8nWqkT4L.jpg", "https://m.media-amazon.com/images/I/51liw3trOZL.jpg", "https://m.media-amazon.com/images/I/518BlastfCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Wigs", "average_rating": "", "small_description": ["Short curly wig for women, gives you a stylish hairstyle in seconds. ", "Perfect for party, COSPLAY and daily use. ", "It can make you more charming and unique. ", "^-^ Messy Bun Hair Piece Thick Updo Scrunchies Hair Extensions Ponytail Hair Accessories for Girls Hair Bun Extensions Wavy Curly Messy Donut Chignons Hair Piece Wig Scrunchy Updo Wavy Straight Hair Bun Elastic Chignons Wrap Around Synthetic Ponytail Hairpiece Corn Wave Ponytail Extension Magic Paste Heat Resistant Wavy Synthetic Wrap Clip in Ponytail Extension Wrap Around Long Straight Pony Tail Hair "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A763K0B78ZHE3", "seller_name": "Anniston", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0816QM13S", "category": "beauty", "query": "Hair Extensions, Wigs & Accessories", "page": 168, "small_description_old": "About this item Short curly wig for women, gives you a stylish hairstyle in seconds. Perfect for party, COSPLAY and daily use. It can make you more charming and unique. ^-^ Messy Bun Hair Piece Thick Updo Scrunchies Hair Extensions Ponytail Hair Accessories for Girls Hair Bun Extensions Wavy Curly Messy Donut Chignons Hair Piece Wig Scrunchy Updo Wavy Straight Hair Bun Elastic Chignons Wrap Around Synthetic Ponytail Hairpiece Corn Wave Ponytail Extension Magic Paste Heat Resistant Wavy Synthetic Wrap Clip in Ponytail Extension Wrap Around Long Straight Pony Tail Hair"}, {"name": "Hair Color Bowl with Handle Hair Dye Mixing Bowls 4pcs Salon Hair Coloring Dyeing Tint Bowl for Home Barber Shop DIY Color Mixer", "product_information": {"Product Dimensions": "6.3 x 5.12 x 2.36 inches", "Item Weight": "7.1 ounces", "Manufacturer": "Beaupretty", "ASIN": "B09P7XL5RF", "Country of Origin": "China", "Item model number": "R0E1320943NYQL678", "Date First Available": "December 27, 2021"}, "brand": "Brand: Beaupretty", "brand_url": "https://www.amazon.com/Beaupretty/b/ref=bl_dp_s_web_23453093011?ie=UTF8&node=23453093011&field-lbr_brands_browse-bin=Beaupretty", "full_description": "Description Color Mixing Tint Bowl Multi- functional Hair Color Bowl Features- Material: Plastic- Color: Black- Size: About 16. 00X13. 00X6. 00cm 6. 29X5. 11X2. 36in Package Including 4 x Hair Color Bowl", "pricing": "$13.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31GTvdDit6S.jpg", "https://m.media-amazon.com/images/I/41ulBbxATTS.jpg", "https://m.media-amazon.com/images/I/2166nwIJHeS.jpg", "https://m.media-amazon.com/images/I/41yKZA0fZ1L.jpg", "https://m.media-amazon.com/images/I/41AsAuej0kL.jpg", "https://m.media-amazon.com/images/I/315Hzs6GbJL.jpg", "https://m.media-amazon.com/images/I/51K2Wa4GxgL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Coloring Products \u203a Coloring & Highlighting Tools \u203a Hair Color Mixing Bowls", "average_rating": "", "small_description": ["Hair Color Mixing Bowls Salon Color Bowls Hair Coloring Bowls Professional Dyeing Coloring Tool Kit for Hairdressing, Color Mixing Tint Bowl Set, Light Plastic Home DIY Mixer ", "Professional Durable Construction: made from the injected molded plastic for use and texture. ", "Easy to use when working with one hand, allows for easy mixing and application of your hair color. ", "Just need to put the hair dye in the bowl, then you can start your DIY work, More convenient to store hair dye and save your space with ease. ", "Hair Dye Bowl Plastic Hair Color Mixing Tools Applicator Bowl with Handle for Diy Color Treatments Salon Barbershop Hairdressers "], "total_reviews": "", "total_answered_questions": "", "model": "R0E1320943NYQL678", "customization_options": "", "seller_id": "A4EPCLNLR8WA6", "seller_name": "DealPe", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P7XL5RF", "category": "beauty", "query": "Hair Coloring Products", "page": 174, "small_description_old": "About this item\n \nHair Color Mixing Bowls Salon Color Bowls Hair Coloring Bowls Professional Dyeing Coloring Tool Kit for Hairdressing, Color Mixing Tint Bowl Set, Light Plastic Home DIY Mixer Professional Durable Construction: made from the injected molded plastic for use and texture. Easy to use when working with one hand, allows for easy mixing and application of your hair color. Just need to put the hair dye in the bowl, then you can start your DIY work, More convenient to store hair dye and save your space with ease. Hair Dye Bowl Plastic Hair Color Mixing Tools Applicator Bowl with Handle for Diy Color Treatments Salon Barbershop Hairdressers"}, {"name": "Goya Foods Chocolate & Vanilla Wafers, 4.9 Ounce (Pack of 24)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.04 x 9.65 x 7.87 inches; 4.9 Ounces", "Manufacturer\n \u200f": "\u200e\n Goya Foods, Inc.", "ASIN\n \u200f": "\u200e\n B079Z5V2WK", "Country of Origin\n \u200f": "\u200e\n Brazil", "Domestic Shipping": "Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.", "International Shipping": "This item can be shipped to select countries outside of the U.S.Learn More", "Best Sellers Rank": "#391,233 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#1,081 in Wafer Cookies", "#1,081 in Wafer Cookies": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Goya Foods Store", "brand_url": "https://www.amazon.com/stores/Goya/page/A77AE1AA-DC0C-4085-8C45-F76F342AA2F0?ref_=ast_bln", "full_description": "Goya Chocolate & Vanilla Wafers Duplex, 4.90 Ounce (Pack of 24) | For a Latino Snack or a scrumptious desert, look no further than GOYA Chocolate & Vanilla Wafers. Whether serving as a must-have sidekick for a bowl of ice cream or flying solo on their own, Goya's Chocolate & Vanilla Wafer cookies are the perfect treat. The perfect pairing of light and flaky vanilla wafer cookies sandwiched together with chocolate & vanilla creme \u2014 be sure to add this timeless classic to your grocery list! GOYA Chocolate & Vanilla Wafers are light, crisp wafer cookies filled with spectacular Chocolate & Vanilla Cream flavor. Great for dessert, lunchboxes and snacks. If it's Goya ... it has to be good!", "pricing": "$29.46", "list_price": "", "availability_status": "Usually ships within 9 days.", "images": ["https://m.media-amazon.com/images/I/51eCJfama6L.jpg", "https://m.media-amazon.com/images/I/515qEX3BgfL.jpg", "https://m.media-amazon.com/images/I/51y2zNMkhPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cookies \u203a Wafers", "average_rating": 4.2, "small_description": ["DELICIOUS GOYA WAFERS | For a Latino Snack or a scrumptious desert, look no further than GOYA Chocolate & Vanilla Wafers. Whether serving as a must-have sidekick for a bowl of ice cream or flying solo on their own, Goya's Chocolate & Vanilla Wafer cookies are the perfect treat. ", "AUTHENTIC GOYA | Goya's Chocolate & Vanilla Wafer cookies are the perfect treat. The perfect pairing of light and flaky vanilla wafer cookies sandwiched together with chocolate & vanilla creme \u2014 be sure to add this timeless classic to your grocery list! ", "VERSATILE | The perfect pairing of light and flaky vanilla wafer cookies sandwiched together with chocolate & vanilla creme \u2014 be sure to add this timeless classic to your grocery list! GOYA Chocolate & Vanilla Wafers are light, crisp wafer cookies filled with spectacular Chocolate & Vanilla Cream flavor. Great for dessert, lunchboxes and snacks. ", "PREMIUM QUALITY | If it's Goya... it has to be good! | \u00a1Si es Goya... tiene que ser bueno! ", "PACK OF 24: 4.90 OZ PACKS | Discover Goya's incredible variety of Wafers on Amazon Fresh, Amazon Retail and Prime Pantry "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B079Z5V2WK", "category": "grocery", "query": "Grocery Cookies", "page": 177, "small_description_old": "About this item DELICIOUS GOYA WAFERS | For a Latino Snack or a scrumptious desert, look no further than GOYA Chocolate & Vanilla Wafers. Whether serving as a must-have sidekick for a bowl of ice cream or flying solo on their own, Goya's Chocolate & Vanilla Wafer cookies are the perfect treat. AUTHENTIC GOYA | Goya's Chocolate & Vanilla Wafer cookies are the perfect treat. The perfect pairing of light and flaky vanilla wafer cookies sandwiched together with chocolate & vanilla creme \u2014 be sure to add this timeless classic to your grocery list! VERSATILE | The perfect pairing of light and flaky vanilla wafer cookies sandwiched together with chocolate & vanilla creme \u2014 be sure to add this timeless classic to your grocery list! GOYA Chocolate & Vanilla Wafers are light, crisp wafer cookies filled with spectacular Chocolate & Vanilla Cream flavor. Great for dessert, lunchboxes and snacks. PREMIUM QUALITY | If it's Goya... it has to be good! | \u00a1Si es Goya... tiene que ser bueno! PACK OF 24: 4.90 OZ PACKS | Discover Goya's incredible variety of Wafers on Amazon Fresh, Amazon Retail and Prime Pantry"}, {"name": "ASC Audio BlueTooth A2DP + USB Flash Drive Car Stereo Adapter Interface Compatible for Honda w/Navigation- Some Vehicles only- Compatible Vehicles Listed Below", "product_information": {"Product Dimensions": "4 x 4 x 2 inches", "Item Weight": "13.6 ounces", "ASIN": "B014C9KQLM", "Item model number": "5864134797", "Customer Reviews": {"ratings_count": 35, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#383 in Car Audio & Video Input Adapters"], "Is Discontinued By Manufacturer": "No", "Connectivity technologies": "Bluetooth, Auxiliary, USB", "Other display features": "Wireless", "Manufacturer": "DMC", "Date First Available": "August 23, 2015"}, "brand": "Brand: AudioBaxics", "brand_url": "https://www.amazon.com/AudioBaxics/b/ref=bl_dp_s_web_12703016011?ie=UTF8&node=12703016011&field-lbr_brands_browse-bin=AudioBaxics", "full_description": "BlueTooth Phone and Music Streaming Kit w/USB Flash Drive Audio Input BlueTooth hands free car kit. USB Flash Drive audio input. Integrated Bluetooth Car Interface adds Hands Free Calling and Wireless Audio to the original factory stereo of many cars. The system comes with built-in Bluetooth and microphone. Use your phone in the car hands free (HFP) or stream your music from your phone to the factory stereo via Bluetooth Audio playback (A2DP)). Bluetooth compatibility: all Bluetooth capable smartphones, including latest Galaxy S series and iPhone 5/6. Installation Notes: Connection is done at the back of the radio. Compatible with all radios- single and 6 disc. Compatibility Notes: BlueTooth only works when the radio is in the adapter's mode. Not compatible with factory XM/satellite radio- will have to be disabled. USB port is for USB flash drive only. What's Included: 1. Bluetooth adapter 2. Microphone 3. USB extension cable 4. 3.5mm aux input cable- use if Bluetooth conversation (mic) isn't needed This adapter works on the following vehicles: Made for: TL 2004-2012, MDX 2005-2012, TSX 2004-2012 (except Type S), RL 2005-2012, Honda Accord 2003-2012, Honda Civic 2006-2014, Honda CRV 2005-2014, Honda Fit 2006-2014, Honda Odyssey 2005-2012, Honda Pilot 2006-2014, Honda S2000 2005-2012,Honda Ridgeline 2006-2012", "pricing": "$84.95", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41H8c0ELBhL.jpg", "https://m.media-amazon.com/images/I/41H8c0ELBhL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Vehicle Electronics Accessories \u203a Audio & Video Accessories \u203a Auxiliary Input Adapters", "average_rating": 4.1, "small_description": ["BlueTooth Phone and Music Streaming Kit w/USB Flash Drive Audio Input BlueTooth hands free car kit. ", "Add Bluetooth Conversation and Music Streaming to the factory radio ", "USB connection input for USB flash drive use ", "BlueTooth only works when the radio is in the adapter's mode. Not compatible with factory XM/satellite radio- will have to be disabled. USB port is for USB flash drive only. ", "This adapter works on the following vehicles: Made for: TL 2004-2012, MDX 2005-2012, TSX 2004-2012 (except Type S), RL 2005-2012; Honda Accord 2003-2012, Honda Civic 2006-2014, Honda CRV 2005-2014, Honda Fit 2006-2014, Honda Odyssey 2005-2012, Honda Pilot 2006-2014, Honda S2000 2005-2012,Honda Ridgeline 2006-2012 "], "total_reviews": 35, "total_answered_questions": 21, "model": "5864134797", "customization_options": "", "seller_id": "A236UT9Z5WDWZA", "seller_name": "Audio Connections", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B014C9KQLM", "category": "electronics", "query": "Flashes", "page": 338, "small_description_old": "About this item BlueTooth Phone and Music Streaming Kit w/USB Flash Drive Audio Input BlueTooth hands free car kit. Add Bluetooth Conversation and Music Streaming to the factory radio USB connection input for USB flash drive use BlueTooth only works when the radio is in the adapter's mode. Not compatible with factory XM/satellite radio- will have to be disabled. USB port is for USB flash drive only. This adapter works on the following vehicles: Made for: TL 2004-2012, MDX 2005-2012, TSX 2004-2012 (except Type S), RL 2005-2012; Honda Accord 2003-2012, Honda Civic 2006-2014, Honda CRV 2005-2014, Honda Fit 2006-2014, Honda Odyssey 2005-2012, Honda Pilot 2006-2014, Honda S2000 2005-2012,Honda Ridgeline 2006-2012"}, {"name": "HAUKLIE Men's Sports Waffle Ribbed Polo Shirts Summer Short Sleeve Cotton Muscle Quarter-Zip Henley T-Shirt Tunics Tops", "product_information": {"Item model number\n \u200f": "\u200e\n henley button down shirt", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 19, 2022", "Manufacturer\n \u200f": "\u200e\n HAUKLIE-2022-Mens", "ASIN\n \u200f": "\u200e\n B09QQNBHZN", "Best Sellers Rank": "#997,846 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#799 in Men's Henley Shirts", "#799 in Men's Henley Shirts": ""}, "brand": "Brand: HAUKLIE", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=HAUKLIE", "full_description": "\u00b7Material: High-quality Cotton/Polyester ,Spandex, Soft/ Lightweight/Breathable/Stretchy fabric, make you feel comfortable when wearing.\u00b7Features: Mens casual short sleeve shirt /sleeveless/ short sleeve t shirt suits/workout tank tops/ string tanks/ summer tee/ t shirt/ polo t shirt/ tank tops/ button down up design.\u00b7Occasion: hirts for men casual / mens long sleeve white tshirts / short sleeve graphic tee / workout muscke tshirts / striped vintage shirts / plaid flannel shirts jackets / fashion stylish linen henley shirts / casual long sleeve work shirts / soft / big and tall / summer beach tops / loose fit / for spring summer fall winter fishing camping hiking running,parties,clubbing and dating.\u00b7This tops is so lightweight and comfortable. Diverse colors bring different moods for you every day. You can pair this tops with jackets, jeans,shorts and joggers\u00b7Note: Please allow 0.5-1.0 inches measuring deviation due to manual measurement and different stretch of fabrics.\u00b7Standard delivery:7-15 days.Expedited delivery:3-5 days.\u00b7Note :Size runs small,Please check the size chart before purchase and choose 1-2 size up. If you are not sure about the size, please send us a message.\u3010Search Term\u3011shirts for men polo t shirt hawaiian flannel mens dress shirts henley tuxedo shirts henley styles novelty 3d printed funny graphic tee shirts crew neck cuff designer custom plus size cool t shirts hoodie sweatshirt casual lightweight denim bomber jacket long sleeve shirts polo shirts white patriotic v neck button down workout camo funny plaid plus size hawaiian cotton linen oversized button up yoga shirts tye dye plain t shirts cute shirts work plain shirts casual shirts hoodies zip up pullover sweatshirt graphic plus size casual lightweight full-zip windbreaker rain jakcets waterproof winter spring autumn fleece lined sherpa fleece hooded oversized tie dye loose tee hoodie sweatshirts", "pricing": "$10.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41sNfAanjHL.jpg", "https://m.media-amazon.com/images/I/41u9Bqbmk7L.jpg", "https://m.media-amazon.com/images/I/41InXy0xlJL.jpg", "https://m.media-amazon.com/images/I/51p7AfMz0TL.jpg", "https://m.media-amazon.com/images/I/51Sixd7rRPL.jpg", "https://m.media-amazon.com/images/I/51F954Z8veL.jpg", "https://m.media-amazon.com/images/I/41j4i01x0SL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a Henleys", "average_rating": "", "small_description": ["Material: Polyester,Cotton.oft, breathable,comfortable to wear all day.This lightweight fabric make it a great option year-round and never goes out of style.Hand Wash or Machine Wash. ", "Made in USA or Imported.If you want the shirt top to be loose, please order 1-2 size up.To choose the right size, take a look at our last picture above to select the size that suits you best.Regular fit style make you feel good and conformtable when wearing. ", "This button-up casual shirt for daily life, beach,home, school, office , golf, work , hawaiian vacation and many other places. Good match with casual pants, jeans, jackets for a stylish look.Also good for Valentine's Day/St. Patrick's Day/Father's Day Gift. ", "Our men's polo shirts/Button Down/Hawaiian Shirts come in a wide range of color choices to help suit every individual\u2019s personal style and preference \u2013 whether you prefer a vibrant, bright, sober or a sporty color, we have it all.Whether you're at the gym or on the couch makes clothing that will withstand any activity or non activity. closure ", "Mens casual shirt/button down shirts /polo shirts for men/casual hawaiian shirt for men/lightweight large tall/snap button/western flannel shirt/graphic tees/cotton linen shirt/short sleeve/regular fit/floral oxford tropical shirts/crewneck sweatshirts/flannel shirt for men/under armour/valentines shirts for women mens/fashion hoodies sweatshirts/thermal shirts for men/white western dress graphic tee shirts/tropical beach shirts normally wear shirt fits/ floral hawaiian shirts /front pocket ", "Slim-fit short-sleeve waffle henley men's golf polo t-shirt poplin workwear short sleeve classic men's cowboy cut western two pocket long sleeve snap work shirt-firm finish tech cotton regular fit short sleeve casual hawaiian shirt for men 1/2 zip-up t-shirt men's buck camp flannel shirt long-sleeve flannel shirt t shirt muscle gym workout athletic cotton tee shirt top regular-fit quick-dry active crew neck t shirts athletic running gym workout short sleeve tee tops bulk button up shirt ", "mens hoodies jacket coats outwear dress suit halloween costumes gifts for men christmas fishing jackets gifts sweatshirts jackets for men big and tall graphic hoodies for men with designs womens tops shirts pajamas set fall clothes leggings coats , fishing shirts Flannel for men mens designer t shirts custom dress shirts collar shirt green t shirt blue white Flannel work shirts black Flannel pink Flannel shirt short sleeve dress shirts cool t shirts for men yellow Flannel shirt men's trendy clothing plaid shirt mens shirts orange olive green long sleeve graphic tees plain shirt mens summer clothes cotton shirt pocket t shirt cotton t shirt, 4th of july american flag mens rompers jumpsuits summer bib overalls denim shorts jean casual workout beach jumpsuit short sleeve shirts independence day retro tops polyester t couple's onesie romper jeans tops mens casual summer o-neck t-shirt gradient printed blouse short sleeve shirt tunic top cross neck fashion lace tee plus size color v-neck loose cute print crop funny graphic ladies blouses work 3/4 leggings pullover tees tshirts off shoulder"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sNfAanjHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QQMDMCY/ref=twister_B09QQNR9VG", "value": "Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51DoMeO5gIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QQLWV2V/ref=twister_B09QQNR9VG", "value": "Light Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41m6qF2BlZL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09QQNBHZN"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09QQQ2TKG"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09QQLVCMV"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09QQQ1H9Q"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09QQNRYLB"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09QQP3356"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QQP3356", "category": "fashion", "query": "Men's Tuxedo Shirts", "page": 68, "small_description_old": "Material: Polyester,Cotton.oft, breathable,comfortable to wear all day.This lightweight fabric make it a great option year-round and never goes out of style.Hand Wash or Machine Wash. Made in USA or Imported.If you want the shirt top to be loose, please order 1-2 size up.To choose the right size, take a look at our last picture above to select the size that suits you best.Regular fit style make you feel good and conformtable when wearing. This button-up casual shirt for daily life, beach,home, school, office , golf, work , hawaiian vacation and many other places. Good match with casual pants, jeans, jackets for a stylish look.Also good for Valentine's Day/St. Patrick's Day/Father's Day Gift. Our men's polo shirts/Button Down/Hawaiian Shirts come in a wide range of color choices to help suit every individual\u2019s personal style and preference \u2013 whether you prefer a vibrant, bright, sober or a sporty color, we have it all.Whether you're at the gym or on the couch makes clothing that will withstand any activity or non activity. closure Mens casual shirt/button down shirts /polo shirts for men/casual hawaiian shirt for men/lightweight large tall/snap button/western flannel shirt/graphic tees/cotton linen shirt/short sleeve/regular fit/floral oxford tropical shirts/crewneck sweatshirts/flannel shirt for men/under armour/valentines shirts for women mens/fashion hoodies sweatshirts/thermal shirts for men/white western dress graphic tee shirts/tropical beach shirts normally wear shirt fits/ floral hawaiian shirts /front pocket Slim-fit short-sleeve waffle henley men's golf polo t-shirt poplin workwear short sleeve classic men's cowboy cut western two pocket long sleeve snap work shirt-firm finish tech cotton regular fit short sleeve casual hawaiian shirt for men 1/2 zip-up t-shirt men's buck camp flannel shirt long-sleeve flannel shirt t shirt muscle gym workout athletic cotton tee shirt top regular-fit quick-dry active crew neck t shirts athletic running gym workout short sleeve tee tops bulk button up shirt mens hoodies jacket coats outwear dress suit halloween costumes gifts for men christmas fishing jackets gifts sweatshirts jackets for men big and tall graphic hoodies for men with designs womens tops shirts pajamas set fall clothes leggings coats \n fishing shirts Flannel for men mens designer t shirts custom dress shirts collar shirt green t shirt blue white Flannel work shirts black Flannel pink Flannel shirt short sleeve dress shirts cool t shirts for men yellow Flannel shirt men's trendy clothing plaid shirt mens shirts orange olive green long sleeve graphic tees plain shirt mens summer clothes cotton shirt pocket t shirt cotton t shirt4th of july american flag mens rompers jumpsuits summer bib overalls denim shorts jean casual workout beach jumpsuit short sleeve shirts independence day retro tops polyester t couple's onesie romper jeans tops mens casual summer o-neck t-shirt gradient printed blouse short sleeve shirt tunic top cross neck fashion lace tee plus size color v-neck loose cute print crop funny graphic ladies blouses work 3/4 leggings pullover tees tshirts off shoulderShow more"}, {"name": "Lillys Baking Company, Cookies Blue And Whites, 10 Ounce", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.15 x 6.4 x 2.5 inches; 12.96 Ounces", "UPC\n \u200f": "\u200e\n 760672113353", "Manufacturer\n \u200f": "\u200e\n Lillys Baking Company", "ASIN\n \u200f": "\u200e\n B07M5VGSW1", "": ""}, "brand": "Brand: Lillys Baking Company", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Lillys+Baking+Company", "full_description": "Bakery", "pricing": "$4.99", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41Gmg8yV2YL.jpg", "https://m.media-amazon.com/images/I/51PykT5WykL.jpg", "https://m.media-amazon.com/images/I/31Gas1uiMgL.jpg", "https://m.media-amazon.com/images/I/31nO0MHFhGL.jpg", "https://m.media-amazon.com/images/I/31UNZqGoU+L.jpg", "https://m.media-amazon.com/images/I/31VSdidOkAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cookies", "average_rating": "", "small_description": ["All artisanal breads, cakes, and cookies are baked with better ingredients, so you can feel good about what you're buying (and eating) ", "No hydrogenated fats or high-fructose corn syrup ", "No bleached or bromated flours allowed "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1RBBDXGDC86H5", "seller_name": "the OATMEAL", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07M5VGSW1", "category": "grocery", "query": "Breads & Bakery", "page": 284, "small_description_old": "About this item All artisanal breads, cakes, and cookies are baked with better ingredients, so you can feel good about what you're buying (and eating) No hydrogenated fats or high-fructose corn syrup No bleached or bromated flours allowed"}, {"name": "Stylish Women's Long Sleeve Sweatshirt Letters Printed Tops Casual Crewneck Solid Blouses Loose Fitting Soft Pullover", "product_information": {"Item model number\n \u200f": "\u200e\n anime tee shirts on sale", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 20, 2022", "Manufacturer\n \u200f": "\u200e\n grey sweatshirt on sale", "ASIN\n \u200f": "\u200e\n B09R19CKJ4", "": ""}, "brand": "Brand: LUNHUAN", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=LUNHUAN", "full_description": "-------------------------------------------\u30fd(\uff9f\u2200\uff9f)\uff92(\uff9f\u2200\uff9f)\uff89\u00a0Welcome to LUNHUAN Store\u2727\u207a\u2e1c(\u25cf\u02d9\u25be\u02d9\u25cf)\u2e1d\u207a\u2727\u00a0-------------------------------------------\u25c6\u00a0LUNHUAN is a store dedicated to providing beautiful, stylish and comfortable quality women's clothing and excellent service.We are constantly pursuing beauty, keeping up with trends, creating fashion, and improving our products to make us provide\u00a0 \u00a0 high quality clothing for women.\u25c6\u00a0Please check the size chart and other customers' size advice before you order.\u25c6\u00a0If you encounter any problems before or after your purchase, please contact us and we will actively solve the problem for you as soon as possible.\u25c6\u00a0We sincerely wish you a wonderful experience at LUNHUAN.Size.: Medium US: 6 UK: 10 EU: 36 Bust: 100cm/39.37'' Sleeve: 59cm/23.23'' Length: 61cm/24.02''\u00a0Size.: Large US: 8 UK: 12 EU: 38 Bust: 104cm/40.94'' Sleeve: 61cm/24.02'' Length: 63cm/24.80''\u00a0Size.: X-Large US: 10 UK: 14 EU: 40 Bust: 108cm/42.52'' Sleeve: 63cm/24.80'' Length: 65cm/25.59''\u00a0Size.: XX-Large US: 12 UK: 16 EU: 42 Bust: 112cm/44.09'' Sleeve: 65cm/25.59'' Length: 67cm/26.38''\u00a0Size.: 3X-Large US: 14 UK: 18 EU: 44 Bust: 116cm/45.67'' Sleeve: 67cm/26.38'' Length: 70cm/27.56''", "pricing": "$11.99$14.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/4145mYJy-6L.jpg", "https://m.media-amazon.com/images/I/51TaRgCS0XL.jpg", "https://m.media-amazon.com/images/I/51uwx5U9BzL.jpg", "https://m.media-amazon.com/images/I/31isngXrXxL.jpg", "https://m.media-amazon.com/images/I/51OWoESA0WL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Fashion Hoodies & Sweatshirts", "average_rating": "", "small_description": ["Clearance On Sale!! Buy 2 Get 8% Discount ", "cheap cat t shirt ", "Dear Queen, please check our size chart, we suggest buy One size Up. Thank you ", "gnome shirt clearance sale closure ", "corset shirts on sale ", "camisole tops for women chunky cardigan navy blue hoodie women women's peplum tops green tops white lace crop tops for women cropped puffer coat women plaid sweaters for women short sleeve blouses white silk long sleeve blouse red polo shirt tunic hoodie for women red sweater mock turtleneck sweater women chicken sweater indian tops for women tunic tops women womens thermal tops long sleeve quarter zip shirts black swimsuit tops for women plus size coat camo tops for women ladies ", "blank t shirts oversized plus size sweaters women shirts womens tops trendy white polo shirt women black cardigan sweaters for women sparkly tops sweater wrap long cardigan for women sweater midi dress womens blouses plus size women night shirt sexy womens tops blue cardigan for women red button down shirt women long sleeve cotton shirt sexy shorts and blazer outfit for women vest cardigan for women sweatshirt hoodie turtleneck shirts for women women summer clothes open back tops for women , for women vintage women parka winter coats cute graphic tees for women long sleeve tops for women casual 22s clothes for women rugby shirts womens long cardigan sweater open back long sleeve shirts for women football compression shirt oversized vintage sweatshirt blazer buttons gothic hoodies for women boho cardigans for women plus size boho tops for women sheer black blouse womens crop tops color block shirt safety orange hoodie polo shirt dress sweatshirts for women plus size rain, women frog zipper hoodie trendy sweaters for women comfy hoodie women's sweater women's black blouses cat sweater for cats linen tunic tops for women lace shirt spring plus size tops for women womens fitted tops nking tank tops for women sweatshirts for women oversized shirts women's t-shirts 2/2 sleeve tops for women plus size crop top swim tops for women womens tie dye tops fitted sweater dress long sleeve t shirts oversized zip up hoodie women elegant tops for women plain grey, women womens hoodie cute shirts for women sexy 222 hoodie gnome shirt black coat maternity shirt work out tank tops for women with built in bra double breasted blazer women cap sleeve tops pattern sweater womens check knit sweater cardigans y2k knitwear black v neck shirt women long sleeve for women tops womens blouses and tops casual brown long sleeve shirt women summer tees for women women's leopard sweater extra long tunic tops for leggings flannel shirt women workout tank"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09QSZJRNJ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09R1BRZLG"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09QT362K1"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09QT2369P"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09QT1YPLH"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09R19CKJ4/ref=twister_B09R1BCW71", "value": "D01blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41uoBh4UEmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QSZS67M/ref=twister_B09R1BCW71", "value": "D01green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UE9dEsQ4L.jpg"}, {"is_selected": true, "url": null, "value": "D01white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4145mYJy-6L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QT2369P", "category": "beauty", "query": "Skin Care Maternity", "page": 35, "small_description_old": "Clearance On Sale!! Buy 2 Get 8% Discount cheap cat t shirt Dear Queen, please check our size chart, we suggest buy One size Up. Thank you gnome shirt clearance sale closure corset shirts on sale camisole tops for women chunky cardigan navy blue hoodie women women's peplum tops green tops white lace crop tops for women cropped puffer coat women plaid sweaters for women short sleeve blouses white silk long sleeve blouse red polo shirt tunic hoodie for women red sweater mock turtleneck sweater women chicken sweater indian tops for women tunic tops women womens thermal tops long sleeve quarter zip shirts black swimsuit tops for women plus size coat camo tops for women ladies blank t shirts oversized plus size sweaters women shirts womens tops trendy white polo shirt women black cardigan sweaters for women sparkly tops sweater wrap long cardigan for women sweater midi dress womens blouses plus size women night shirt sexy womens tops blue cardigan for women red button down shirt women long sleeve cotton shirt sexy shorts and blazer outfit for women vest cardigan for women sweatshirt hoodie turtleneck shirts for women women summer clothes open back tops for women \n for women vintage women parka winter coats cute graphic tees for women long sleeve tops for women casual 22s clothes for women rugby shirts womens long cardigan sweater open back long sleeve shirts for women football compression shirt oversized vintage sweatshirt blazer buttons gothic hoodies for women boho cardigans for women plus size boho tops for women sheer black blouse womens crop tops color block shirt safety orange hoodie polo shirt dress sweatshirts for women plus size rainwomen frog zipper hoodie trendy sweaters for women comfy hoodie women's sweater women's black blouses cat sweater for cats linen tunic tops for women lace shirt spring plus size tops for women womens fitted tops nking tank tops for women sweatshirts for women oversized shirts women's t-shirts 2/2 sleeve tops for women plus size crop top swim tops for women womens tie dye tops fitted sweater dress long sleeve t shirts oversized zip up hoodie women elegant tops for women plain greywomen womens hoodie cute shirts for women sexy 222 hoodie gnome shirt black coat maternity shirt work out tank tops for women with built in bra double breasted blazer women cap sleeve tops pattern sweater womens check knit sweater cardigans y2k knitwear black v neck shirt women long sleeve for women tops womens blouses and tops casual brown long sleeve shirt women summer tees for women women's leopard sweater extra long tunic tops for leggings flannel shirt women workout tankShow more"}, {"name": "Children Toothbrush Creative Shape High Density Bristles Silicone Oral Care Cleaning Massage Toddler Brush for Home Children", "product_information": {"Item Weight": "1.76 ounces", "Manufacturer": "KOqwez33", "ASIN": "B09LQHW84R", "Item model number": "KOqwez33", "Date First Available": "November 11, 2021"}, "brand": "Brand: KOqwez33", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=KOqwez33", "full_description": "Description:Toothbrush that adopts vibrant color and lovely cartoon shape design, which can well attract kids attention to stimulate their interest in brushing teeth, and develop the good habit of brushing teeth on time.Unlike other similar products, the design of high toughness soft U-shaped brush head makes this toothbrush has the ability to 360 degrees deeply cleaning children's teeth stains, tart and plaque, as well as preventing gum bleeding effectively. This product is equipped with an ergonomic handle so that it is comfortable and convenient to grip during brushing their teeth.It is made of high-quality silicone and PP material.The length of this product is 11cm, width is 4.5cm and height is 4cm.It is suitable for kids from 2-12 years old.Item Name: Children ToothbrushMaterial: Silicone,PP(Polypropylene)Features: Eye-catching, Dental Care, Eco-friendlyUsing Type: ReusableSize Details: Size: 11cm x 4.5cm x 4cm/4.33\" x 1.77\" x 1.57\" (Approx.)Notes:Due to the light and screen setting difference, the item's color may be slightly different from the pictures.Please allow slight dimension difference due to different manual measurement.Package Includes:1 x Children Toothbrush", "pricing": "$4.40", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21pzfXYgbEL.jpg", "https://m.media-amazon.com/images/I/31pFkw+JNPL.jpg", "https://m.media-amazon.com/images/I/41IeRd9nXUL.jpg", "https://m.media-amazon.com/images/I/31GNOHBJ8bL.jpg", "https://m.media-amazon.com/images/I/31fedbI+ooL.jpg", "https://m.media-amazon.com/images/I/31KB6DJen+L.jpg", "https://m.media-amazon.com/images/I/21pzfXYgbEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothbrushes & Accessories \u203a Manual Toothbrushes", "average_rating": "", "small_description": ["It is made of high-quality silicone and PP material. ", "It is suitable for kids from 2-12 years old. ", "Unlike other similar products, the design of high toughness soft U-shaped brush head makes this toothbrush has the ability to 360 degrees deeply cleaning children's teeth stains, tart and plaque, as well as preventing gum bleeding effectively. This product is equipped with an ergonomic handle so that it is comfortable and convenient to grip during brushing their teeth. ", "The length of this product is 11cm, width is 4.5cm and height is 4cm. ", "Toothbrush that adopts vibrant color and lovely cartoon shape design, which can well attract kids attention to stimulate their interest in brushing teeth, and develop the good habit of brushing teeth on time. "], "total_reviews": "", "total_answered_questions": "", "model": "KOqwez33", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Blue", "price_string": "$4.40", "price": 4.4, "image": "https://m.media-amazon.com/images/I/21pzfXYgbEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LQQ619W/ref=twister_B09LMH18GY?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "$3.40", "price": 3.4, "image": "https://m.media-amazon.com/images/I/21t+L7aXC1L.jpg"}]}, "seller_id": "A2BOPW2K51V1LD", "seller_name": "KOqwez33", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09LQHW84R", "category": "beauty", "query": "Children's Dental Care", "page": 124, "small_description_old": "About this item\n \nIt is made of high-quality silicone and PP material. It is suitable for kids from 2-12 years old. Unlike other similar products, the design of high toughness soft U-shaped brush head makes this toothbrush has the ability to 360 degrees deeply cleaning children's teeth stains, tart and plaque, as well as preventing gum bleeding effectively. This product is equipped with an ergonomic handle so that it is comfortable and convenient to grip during brushing their teeth. The length of this product is 11cm, width is 4.5cm and height is 4cm. Toothbrush that adopts vibrant color and lovely cartoon shape design, which can well attract kids attention to stimulate their interest in brushing teeth, and develop the good habit of brushing teeth on time."}, {"name": "4-Tier Ladder Bookshelf Organizer,Iron Open Bookcase Organizer (Black)", "product_information": {"ASIN": "B088WSDHTW", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#3,158,848 in Home & Kitchen (See Top 100 in Home & Kitchen) #4,986 in Bookcases"], "Date First Available": "May 20, 2020"}, "brand": "Brand: Kcelarec", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Kcelarec", "full_description": "Introductions: If you are looking for a practical bookshelf, you can't miss this Widen 4 Tiers Bookshelf. This bookshelf is made of high quality material, which is stable, sturdy and durable. Its design of 4 tiers can hold a lot of books, and its strong bearing capacity can bear 44-88 lbs. You not only can put book in this bookshelf, but also it can place many other items like potting, decoration, etc. In addition, with its exquisite appearance and fine workmanship, this bookshelf also can be a decoration in your room. Don't hesitate, it's worth buying! Features: 1. Made of high quality iron 2. Stable, sturdy and durable 3. Practical, design of 4 tiers can hold a lot of items 4. 44-88 lbs strong bearing capacity 5. Exquisite appearance and fine workmanship 6. Easy to install Note: 1.When receiving the goods, please confirm the product according to the listing of instructions. Once you find Less pieces, please provide relevant pictures to contact us. We will deal it in the time. 2.Please install goods with the instruction manual. 3.It is recommended that the installation should not be too tight to adjust easily. After the structure is installed, firm the interface for more stability. Specifications: 1. Material: Iron 2. Color: Ivory White 3. Dimensions: (23.62 x 13.78 x 57.87)\" / (60 x 35 x 147)cm (L x W x H) 4. Weight: 8.82 lbs / 4.5 kg 5. Weight Capacity: 44-88 lbs Package Includes: 2 x L Tubes 2 x Front Tubes 2 x Rear Tubes 4 x Meshes 16 x Screws 4 x Foot Pads 1 x Manual", "pricing": "$36.94", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Tbj+f2soL.jpg", "https://m.media-amazon.com/images/I/41fupKm59xL.jpg", "https://m.media-amazon.com/images/I/41xDM2DimzL.jpg", "https://m.media-amazon.com/images/I/41xDFqI315L.jpg", "https://m.media-amazon.com/images/I/51BlifLFBdL.jpg", "https://m.media-amazon.com/images/I/314NrhCZHuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": 5, "small_description": ["Made of high quality iron ", "Stable, sturdy and durable ", "Practical, design of 4 tiers can hold a lot of items ", "44-88 lbs strong bearing capacity ", "Easy to install "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A3CGPX9Y3YN6SL", "seller_name": "Kcelarec", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B088WSDHTW", "category": "garden", "query": "Bookcases", "page": 193, "small_description_old": "About this item Made of high quality iron Stable, sturdy and durable Practical, design of 4 tiers can hold a lot of items 44-88 lbs strong bearing capacity Easy to install \n \u203a See more product details"}, {"name": "Women's Warm Fall Winter Tops, Thicken Padded Plus Size Outerwear Drawstring Long Sleeve Pockets Hooded Overcoats S-5XL", "product_information": {"Item Weight\n \u200f": "\u200e\n 4.23 Ounces", "Item model number\n \u200f": "\u200e\n Christmas Clothes clearance", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n November 15, 2021", "ASIN\n \u200f": "\u200e\n B09LVLWMKF", "": ""}, "brand": "Visit the ylioge Store", "brand_url": "https://www.amazon.com/stores/YLIOGE/page/4CBDAB8D-2F45-49C0-9596-A4A139F37DDA?ref_=ast_bln", "full_description": "\ud83c\udf08----Welcome to----QIUsujing----\ud83c\udf08\ud83c\udf08\ud83c\udf08\ud83c\udf08\ud83c\udf08\ud83c\udf08----QIUsujing is committed to designing fashion clothing that fits the body and allows you to move freely. We help you chase things that bring you happiness and enjoyment. We are always ready to work with you to provide you with an unparalleled shopping experience.1.CUSTOMER COMES FIRST.2. Women are welcomed to shine from the inside out.QIUsujing are here for you. Follow QIUsujing, find your own style.3.If you have any problem of our products,let us know,full-money-back and can be returned or free resent no questions asked.----Attention\u26a01. Due to manual measurement, please allow a measurement deviation of 1-2cm.2. To ensure you get the right size, please refer to our size chart before buying.----\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38\ud83c\udf38----Size chart:Label Size: Small US: 4 UK: 8 EU: 32 Bust: 118cm/46.46'' Length: 76cm/29.92'' Shoulder Width: 61cm/24.02'' Sleeve Length: 55.5cm/21.85' 'Neck: 58 cm/22.83 inchesLabel Size: Medium US: 6 UK: 10 EU: 34 Bust: 122cm/48.03'' Length: 77cm/30.31'' Shoulder Width: 62cm/24.41'' Sleeve Length: 56.5cm/22.24'' Neck \uff1a59cm/23.23''Label Size: Large US: 8 UK: 12 EU: 36 Bust: 126cm/49.61'' Length: 78cm/30.71'' Shoulder Width: 63cm/24.80'' Sleeve Length: 57.5cm/22.64'' Neck \uff1a60cm/23.62''Label Size: X-Large US: 10 UK: 14 EU: 38 Bust: 130cm/51.18'' Length: 79cm/31.10'' Shoulder Width: 64cm/25.20'' Sleeve Length: 58.5cm/23.03'cm Neck Department: 61 /24.02''Label size: XX-Great America: 12 UK: 16 EU: 40 Bust: 134cm/52.76'' Length: 80cm/31.50'' Shoulder Width: 65cm/25.59'' Sleeve Length: 59.5cm/23.43'cm Neck Department: 62 /24.136''", "pricing": "$71.99$79.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41Swm5f0VQL.jpg", "https://m.media-amazon.com/images/I/41Swm5f0VQL.jpg", "https://m.media-amazon.com/images/I/51RQuJY46yL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Gardening & Lawn Care \u203a Lawn & Mulch Paint \u203a Lawn Paint", "average_rating": "", "small_description": ["\u266bFast shipping.Standard: 7-14 Days./Expedited: 3-5 Days\u266b ", "\u266b\u266bClearance On Sale, Buy 2 save 12% on each; Buy 5 get 1 for free\u266b\u266b ", "\u266b\u266bSize runs Small. Please Order 1-2 size up\u266b\u266b ", "Black friday deals 2021,Cyber monday sale! closure ", "achine/Hand Wash in Cold Water, Line Dry. ", "closet tunes shirt skirts for women womens plus size tops sweatshirts for women hoodie pullover teal dress sweater weather plus size tops for women dressy brunch outfits for women dress cover up formal womens tank tops loose fit womens work tops purple dress for girls green silk dress plus size mini skirt white sweater dress cute tank tops for women long black skirt green tops for women pride shirt white dress women striped sweater women y2k top halter tops for women white pencil skirts ", "women's plus tops & tees white plus size jackets gauze dresses for women casual fall plus womens tops denim crop top for women white jean jacket short sleeve jean jacket jean jacket women denim jacket for women womens denim jacket women's denim jackets denim jacket womens jean jacket jeans jacket for women women jean jacket jean jacket for women long jean jacket for women distressed jean jacket women jean jackets for women , women rose jacket womens green jacket boys navy blazer colorful jackets for women dresses for women girls metallic skirt green suit women green womens jacket jacket women skirt metalic pink skirt metallic pink skirt navy blue vest women navy jacket women pink metalic skirt pink metallic skirt purple suit red body suits women red skirt tight women ready to wear jackets pants women jacket long sleeve dress what to wear with leggings in fall women's formal pants, plus size dressy tops, womens plus size summer tops, womens tops under 10 dollars, womens crop tops summer, women shirts and blouses sexy, summer tops women, womens summer crop tops, short sleeve tops for women summer, women's tops summer, summer blouses for women fashion 2021, womens summer top, womens blouses summer, sexy tops for women summer, sexy shirts for women summer, crop tops for women sexy casual, women shirts summer, womens tunic tops short sleeve,, cute graphic\u00a0hoodieswhite dress puffy sleeves fall loose tops for women shorts for women trendy dress with buttons in front lightweight womens cardigan tops for women sexy casual plus size cardigan for women spring black and white striped tank top women purple plaid shirts button down skirt vests for women long running for women tshirts shirts for women for women casual fall white long cardigans for women valentine hat jackets for women plus size workout tops for women"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09LVJKL37"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09LVL3MB1"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09LVK6ML8"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09LVJKG22"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09LVMQ1K6"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B09LVKJD7Q"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B09LVKVQ43"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09LVLWMKF/ref=twister_B09LVJYBLK", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31YsUZWGA2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVKNSMN/ref=twister_B09LVJYBLK", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ptHR4yEmL.jpg"}, {"is_selected": true, "url": null, "value": "Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Swm5f0VQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVMVKKZ/ref=twister_B09LVJYBLK", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41R8MCAD7zL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVJ4HYC/ref=twister_B09LVJYBLK", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wtifC3STL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVLC5L7/ref=twister_B09LVJYBLK", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/419cmM0bPRL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09LVMQ1K6", "category": "beauty", "query": "Oral Pain Relief", "page": 38, "small_description_old": "\u266bFast shipping.Standard: 7-14 Days./Expedited: 3-5 Days\u266b \u266b\u266bClearance On Sale, Buy 2 save 12% on each; Buy 5 get 1 for free\u266b\u266b \u266b\u266bSize runs Small. Please Order 1-2 size up\u266b\u266b Black friday deals 2021,Cyber monday sale! closure achine/Hand Wash in Cold Water, Line Dry. closet tunes shirt skirts for women womens plus size tops sweatshirts for women hoodie pullover teal dress sweater weather plus size tops for women dressy brunch outfits for women dress cover up formal womens tank tops loose fit womens work tops purple dress for girls green silk dress plus size mini skirt white sweater dress cute tank tops for women long black skirt green tops for women pride shirt white dress women striped sweater women y2k top halter tops for women white pencil skirts women's plus tops & tees white plus size jackets gauze dresses for women casual fall plus womens tops denim crop top for women white jean jacket short sleeve jean jacket jean jacket women denim jacket for women womens denim jacket women's denim jackets denim jacket womens jean jacket jeans jacket for women women jean jacket jean jacket for women long jean jacket for women distressed jean jacket women jean jackets for women \n women rose jacket womens green jacket boys navy blazer colorful jackets for women dresses for women girls metallic skirt green suit women green womens jacket jacket women skirt metalic pink skirt metallic pink skirt navy blue vest women navy jacket women pink metalic skirt pink metallic skirt purple suit red body suits women red skirt tight women ready to wear jackets pants women jacket long sleeve dress what to wear with leggings in fall women's formal pantsplus size dressy tops, womens plus size summer tops, womens tops under 10 dollars, womens crop tops summer, women shirts and blouses sexy, summer tops women, womens summer crop tops, short sleeve tops for women summer, women's tops summer, summer blouses for women fashion 2021, womens summer top, womens blouses summer, sexy tops for women summer, sexy shirts for women summer, crop tops for women sexy casual, women shirts summer, womens tunic tops short sleeve,cute graphic\u00a0hoodieswhite dress puffy sleeves fall loose tops for women shorts for women trendy dress with buttons in front lightweight womens cardigan tops for women sexy casual plus size cardigan for women spring black and white striped tank top women purple plaid shirts button down skirt vests for women long running for women tshirts shirts for women for women casual fall white long cardigans for women valentine hat jackets for women plus size workout tops for womenShow more"}, {"name": "Women's Heeled Sandals Sexy Minimalistic Cut out Rear Zipper Wedge Roman Sandals Casual Solid Stiletto Pump for Night Party Comfy Lightweight Summer Shoes", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 8, 2021", "Manufacturer\n \u200f": "\u200e\n pnroktd", "ASIN\n \u200f": "\u200e\n B09N9STC4Z", "": ""}, "brand": "Visit the pnroktd Store", "brand_url": "https://www.amazon.com/stores/pnroktd/page/E92A55CE-1096-4899-9DF9-9A0671ADA624?ref_=ast_bln", "full_description": "Welcome To pnroktd Store\u260e24 Hours Online: If you have any questions, please feel free to contact the Zkuisw service team, we will solve it for you.Size Chart(1Inch=2.54cm):Please Allow 0.5-859Inch Differs Due to Manual Measurement, Thanks!We are Asian Size,run smaller than US size,so i will suggest you choose one size or two size larger than you usual size , it will be more relax and comfortable.\u27a4 Size: 36 Foot Length: 23cm/9.06'' EU: 36 UK: 3.5 US: 5.5 \u27a4 Size: 37 Foot Length: 23.5cm/9.25'' EU: 37 UK: 4 US: 6 \u27a4 Size: 38 Foot Length: 24cm/9.45'' EU: 37.5 UK: 4.5 US: 6.5 \u27a4 Size: 39 Foot Length: 24.5cm/9.65'' EU: 38 UK: 5 US: 7 \u27a4 Size: 40 Foot Length: 25cm/9.84'' EU: 39 UK: 5.5 US: 7.5 \u27a4 Size: 41 Foot Length: 25.5cm/10.04'' EU: 40 UK: 6 US: 8 \u27a4 Size: 42 Foot Length: 26cm/10.24'' EU: 40.5 UK: 6.5 US: 8.5", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31RRTqFpZML.jpg", "https://m.media-amazon.com/images/I/41iNUOHoDaL.jpg", "https://m.media-amazon.com/images/I/31sWfuLw-2L.jpg", "https://m.media-amazon.com/images/I/41sDll1NPDL.jpg", "https://m.media-amazon.com/images/I/311EGHxwCGL.jpg", "https://m.media-amazon.com/images/I/31N+zZU8UpL.jpg", "https://m.media-amazon.com/images/I/41nFY05KpCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals \u203a Heeled Sandals", "average_rating": "", "small_description": ["\ud83d\udd25\ud83d\udd25Christmas Limited Time Offer\ud83d\udd25\ud83d\udd25 Save 10% on each participating item when you spend $150.00 or more on Qualifying items offered by LayLetmet. ", "\ud83d\udc62\u3010Delivery Time\u3011 about 7-15 days to arrive.Our sizes are DIFFERENT from Amazon Size Chart, please refer to the size chart on the product description page. ", "\u2764\ufe0f[pnroktd] pnroktd is committed to providing high-quality shoes, clothing and accessories.pnroktd has fashionable boots, dress, T-shirt, skirt, swimsuits, jackets, shirts, shoulder bags, messenger bags etc. ", "Rubber sole ", "Heel measures approximately 5 centimeters ", "women's block low mid heel open toe sparkling glitter rhinestone dress sandal slides slipper flip flop sandals hand beaded embroidered studded faux rhinestone mid heel open toe sandal slippers women's hand beaded flip flop sandals crystal rhinestone patterned handmade sandals platform wedge dress sandals slippers women's stiletto heels open toe ankle buckle strap platform high heel evening party dress casual pointed toe chunky ankle strap buckle high heels shoes ", "black flats shoes women flats for women flats shoes women black flats women shoes flats shoes women flat shoes for women women shoes women flat shoes black shoes for women women shoes women flats shoes for women women shoes bobs shoes women shoes black flats for women bobs sketcher shoes for women women shoes shoes for teen girls memory foam shoes for women ballet flats women's shoes black shoes wide shoes for women women house shoes ballet flats for women , women shiny heel shoes women party shoes ladies sandals women rose gold sandals women flower sandals women cross sandals women platform sandals suede shoes sequin shoes waterproof shoes non slip shoes athletic shoes roman shoes gym shoes brioche tennis shoes cloth shoes soft cloth shoes thick heels flip flops soft flip flops comfortable flip flops peep toe flip flops fish mouth flip flops couple slippers beach slippers wedges slippers, woman black flat shoes for women black canvas shoes for women black flat shoes travel essentials women flats wide flats for women ballet slippers women summer sandals shoe house shoes black flats women black flats shoes women wide width women shoes flats best selling flats for women flat black shoes women fall shoes flat women shoes black ballet shoes for women women shoes flats women house shoes black women flats flats women flat women shoes maternity clothes summer shoes, womens knee high gladiator sandals flat lace up strappy summer shoes flat sandals shoes,women's open toe strappy hollow out ankle strap buckle sandals low chunky heel pumps beach shoes women's casual peep toe flats shoes slip on shallow shoes slingback platform sandals flatform party dress sandals women casual bow tie flat platform sandals leopard print slipper beach shoes flat sandals women toe shallow shoes flat loafers buckle ankle strap slip on sandals"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "5.5", "asin": "B09N9STC4Z"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B09N9V2M9B"}, {"is_selected": false, "is_available": true, "value": "6.5", "asin": "B09N9T3F9Y"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B09N9SGVN7"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B09N9T673Q"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09N9RHLR7"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B09N9SX13C"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09N9T673Q", "category": "fashion", "query": "Women's Pumps", "page": 126, "small_description_old": "\ud83d\udd25\ud83d\udd25Christmas Limited Time Offer\ud83d\udd25\ud83d\udd25 Save 10% on each participating item when you spend $150.00 or more on Qualifying items offered by LayLetmet. \ud83d\udc62\u3010Delivery Time\u3011 about 7-15 days to arrive.Our sizes are DIFFERENT from Amazon Size Chart, please refer to the size chart on the product description page. \u2764\ufe0f[pnroktd] pnroktd is committed to providing high-quality shoes, clothing and accessories.pnroktd has fashionable boots, dress, T-shirt, skirt, swimsuits, jackets, shirts, shoulder bags, messenger bags etc. Rubber sole Heel measures approximately 5 centimeters women's block low mid heel open toe sparkling glitter rhinestone dress sandal slides slipper flip flop sandals hand beaded embroidered studded faux rhinestone mid heel open toe sandal slippers women's hand beaded flip flop sandals crystal rhinestone patterned handmade sandals platform wedge dress sandals slippers women's stiletto heels open toe ankle buckle strap platform high heel evening party dress casual pointed toe chunky ankle strap buckle high heels shoes black flats shoes women flats for women flats shoes women black flats women shoes flats shoes women flat shoes for women women shoes women flat shoes black shoes for women women shoes women flats shoes for women women shoes bobs shoes women shoes black flats for women bobs sketcher shoes for women women shoes shoes for teen girls memory foam shoes for women ballet flats women's shoes black shoes wide shoes for women women house shoes ballet flats for women \n women shiny heel shoes women party shoes ladies sandals women rose gold sandals women flower sandals women cross sandals women platform sandals suede shoes sequin shoes waterproof shoes non slip shoes athletic shoes roman shoes gym shoes brioche tennis shoes cloth shoes soft cloth shoes thick heels flip flops soft flip flops comfortable flip flops peep toe flip flops fish mouth flip flops couple slippers beach slippers wedges slipperswoman black flat shoes for women black canvas shoes for women black flat shoes travel essentials women flats wide flats for women ballet slippers women summer sandals shoe house shoes black flats women black flats shoes women wide width women shoes flats best selling flats for women flat black shoes women fall shoes flat women shoes black ballet shoes for women women shoes flats women house shoes black women flats flats women flat women shoes maternity clothes summer shoeswomens knee high gladiator sandals flat lace up strappy summer shoes flat sandals shoes,women's open toe strappy hollow out ankle strap buckle sandals low chunky heel pumps beach shoes women's casual peep toe flats shoes slip on shallow shoes slingback platform sandals flatform party dress sandals women casual bow tie flat platform sandals leopard print slipper beach shoes flat sandals women toe shallow shoes flat loafers buckle ankle strap slip on sandalsShow more"}, {"name": "AILUNSNIKA Womens Bikini Swimsuit Cover Up Beach Long Turkish Kaftan Dress", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n August 27, 2020", "ASIN\n \u200f": "\u200e\n B08QRHCHLZ", "Best Sellers Rank": "#1,037,919 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#3,704 in Women's Swimwear Cover Ups", "#3,704 in Women's Swimwear Cover Ups": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "Brand: Ailunsnika Style: Loose Pattern: Print/Stripe/Solid Occasion: Summer, Beach,Daily life Item Type: Swimwear Cover Up Package Contents: 1 X Piece There maybe 0.3-0.7 inch deviation in different sizes, locations and stretch of fabrics. Color may be lighter or darker due to the different PC display.", "pricing": "$26.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51t6fQJ-cdL.jpg", "https://m.media-amazon.com/images/I/519H+CqrcqL.jpg", "https://m.media-amazon.com/images/I/51WFyPFkCyL.jpg", "https://m.media-amazon.com/images/I/51HQKoWhp3L.jpg", "https://m.media-amazon.com/images/I/51hSkDfYYeL.jpg", "https://m.media-amazon.com/images/I/51+rzFOpCWL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Swimsuits & Cover Ups \u203a Cover-Ups", "average_rating": 4.5, "small_description": ["100% Rayon ", "Imported ", "One Size: Fit US Size ,S,M,L,XL,Bust:51.18\" Sleeve:10.24\" Length:49.21\" ", "Beach cover ups with beautiful print and overall design ", "V neck kaftan for women,can be dress over the bathing suit ", "The fabric and cut are very comfortable for lounging or stepping out ", "Occasion: maxi dress is a perfect for beachwear, resort wear, pool and daily wear "], "total_reviews": 13, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PB9LF7G/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "B-leopard Print 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41946pvBbLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PB7GCFZ/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "B-leopard Print 2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41+zGZ+pabL.jpg"}, {"is_selected": true, "url": null, "value": "C-ethnic Print 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51t6fQJ-cdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PB8FZ3D/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "C-ethnic Print 2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LbsSYs3oL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PB9Y982/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "C-ethnic Print 3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ulS1caV4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBB8J4Y/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "D-black Print", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51+bopq9x2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PB9GW1D/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "D-blue Print", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/411cM4pt-EL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBBH41K/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "D-brown Print", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41l3BIyP+tL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBBB6PW/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "D-green Print", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51xcSBxnOwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PB91JJT/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "D-light Green Print", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41NZ5mTA6ZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PB9N5XV/ref=twister_B08QRHCHLZ?_encoding=UTF8&psc=1", "value": "D-yellow Print", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/511qoJmVNsL.jpg"}]}, "seller_id": "A2N5L2FBJC8IDJ", "seller_name": "Ailunsnika", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09PB9MWKR", "category": "fashion", "query": "Women's Swimsuits & Cover Ups", "page": 51, "small_description_old": "One Size: Fit US Size ,S,M,L,XL,Bust:51.18\" Sleeve:10.24\" Length:49.21\" Beach cover ups with beautiful print and overall design V neck kaftan for women,can be dress over the bathing suit The fabric and cut are very comfortable for lounging or stepping out Occasion: maxi dress is a perfect for beachwear, resort wear, pool and daily wear"}, {"name": "Set of 2 Velvet Upholstered Dining Chairs Soft Padded Button Tufted Wingback Chairs with Nailhead Trim and Wooden Legs,Easy Assembly(Black)", "product_information": {"Product Dimensions": "17.3 x 19.7 x 37.5 inches", "Manufacturer": "GNIXUU", "ASIN": "B09GY58GDH", "Customer Reviews": {"ratings_count": 52, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#177,987 in Home & Kitchen (See Top 100 in Home & Kitchen) #149 in Kitchen & Dining Room Chairs"], "Date First Available": "August 27, 2021"}, "brand": "Visit the GNIXUU Store", "brand_url": "https://www.amazon.com/stores/GNIXUU/page/6CBA858F-F3E9-4FD9-B980-7D04D274880D?ref_=ast_bln", "full_description": "", "pricing": "$238.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/51XESmAjziL.jpg", "https://m.media-amazon.com/images/I/3100smDCw2L.jpg", "https://m.media-amazon.com/images/I/41NUXRPtJ0L.jpg", "https://m.media-amazon.com/images/I/31keuWnrbNL.jpg", "https://m.media-amazon.com/images/I/41XuLJdneTL.jpg", "https://m.media-amazon.com/images/I/51ipsmsbkhL.jpg", "https://m.media-amazon.com/images/I/51F5MeHKL9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Dining Room Furniture \u203a Chairs", "average_rating": 4.8, "small_description": ["Material of The Dining Chair :Upholstered in premium luxury velvet fabric and firmly supported by solid wood legs,this velvet dining chairs set featuring a very modern mid-century look. ", "Ergonomic High Back :This wingback dining chair set is equipped with high backrest for a strong comfortable back support. Deep tufted back and nailhead trim add a very contemporary touch into the dining chair set. ", "Soft and Comfortable Kitchen Chairs :Padded with soft high density sponge ,this cozy kitchen dining chair set offers a very comfy sitting experience.And brings a very warm atmosphere into dining room,sitting room and apartment. ", "Sturdy Upholstered Dining Chairs :Structured in a solid wood frame and supported by 4 natural solid rubber wood legs. These velvet dining chairs are very sturdy and durable . ", "Easy to assemble and contour shape: This fabric upholstered dining chair set has a unique contour shape design. When installing, you need to unzip pocket under the seat for the legs and take them out for simple assembly. All tools and hardware and instructions for use will be provided with the chair. "], "total_reviews": 52, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09GY77GMF/ref=twister_B09DPRQCS9?_encoding=UTF8&psc=1", "value": "Beige", "price_string": "$259.99", "price": 259.99, "image": "https://m.media-amazon.com/images/I/51XE0n9FZYL.jpg"}, {"is_selected": true, "url": null, "value": "Black", "price_string": "$238.99", "price": 238.99, "image": "https://m.media-amazon.com/images/I/51XESmAjziL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DPR1LRK/ref=twister_B09DPRQCS9?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$225.99", "price": 225.99, "image": "https://m.media-amazon.com/images/I/51Kk5zRKH2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MDXNZGV/ref=twister_B09DPRQCS9?_encoding=UTF8&psc=1", "value": "Green", "price_string": "$238.99", "price": 238.99, "image": "https://m.media-amazon.com/images/I/51z9NsntmcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DPSGH4R/ref=twister_B09DPRQCS9?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "$238.99", "price": 238.99, "image": "https://m.media-amazon.com/images/I/51knuL9KlkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09S5TZNHV/ref=twister_B09DPRQCS9?_encoding=UTF8&psc=1", "value": "Light Grey", "price_string": "$238.99", "price": 238.99, "image": "https://m.media-amazon.com/images/I/31oB0JJaH-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RZHK19L/ref=twister_B09DPRQCS9?_encoding=UTF8&psc=1", "value": "Teal", "price_string": "$238.99", "price": 238.99, "image": "https://m.media-amazon.com/images/I/51hsOco3gYL.jpg"}]}, "seller_id": "A3CNRKXRJJQ0GY", "seller_name": "JuLiangYu", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09GY58GDH", "category": "garden", "query": "Dining Sets", "page": 11, "small_description_old": "About this item\n \nMaterial of The Dining Chair :Upholstered in premium luxury velvet fabric and firmly supported by solid wood legs,this velvet dining chairs set featuring a very modern mid-century look. Ergonomic High Back :This wingback dining chair set is equipped with high backrest for a strong comfortable back support. Deep tufted back and nailhead trim add a very contemporary touch into the dining chair set. Soft and Comfortable Kitchen Chairs :Padded with soft high density sponge ,this cozy kitchen dining chair set offers a very comfy sitting experience.And brings a very warm atmosphere into dining room,sitting room and apartment. Sturdy Upholstered Dining Chairs :Structured in a solid wood frame and supported by 4 natural solid rubber wood legs. These velvet dining chairs are very sturdy and durable . Easy to assemble and contour shape: This fabric upholstered dining chair set has a unique contour shape design. When installing, you need to unzip pocket under the seat for the legs and take them out for simple assembly. All tools and hardware and instructions for use will be provided with the chair."}, {"name": "Organic Raw Sprouted Hi-Protein Whole Food Bars - Vanilla (12-pack)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 7 x 6 x 2.5 inches; 2.1 Pounds", "UPC\n \u200f": "\u200e\n 858264005152", "Manufacturer\n \u200f": "\u200e\n Healthy Truth", "ASIN\n \u200f": "\u200e\n B08LQZ5BRC", "Best Sellers Rank": "#237,427 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#467 in High Protein Bars", "#467 in High Protein Bars": ""}, "brand": "Visit the Healthy Truth Store", "brand_url": "https://www.amazon.com/stores/HealthyTruth/page/8E44341D-321C-4EAD-8021-42183DC83A81?ref_=ast_bln", "full_description": "Our Vanilla Protein Bar is made with the cleanest, finest ingredients. One of the only RAW bars on the market, they are plant-based, gluten-free, dairy-free and sprouted. Made with 19g of high quality pea and sacha inchi protein in a 2.6oz bar. Protein bars are not just for pre and post exercise anymore. They can fill the void as a healthy snack between meals, replace meals, or help provide your body the nutrition that it requires. When perusing the grocery store, convenience store, health food store, etc. it becomes apparent that the choices are numerous and unless you have an hour to read all the labels before you choose, it is not easy to know who to trust. Facts About Other Protein Bars: Whey is heavily processed and is assimilated just as well as plant-based protein. People with dairy allergies, intolerances, or other manifestations from dairy cannot tolerate whey Most protein bars on the market undergo high heat during the manufacturing process. Most protein bars contain refined sugars, corn syrup, sugar alcohols that create intestinal discomfort Most protein bars contain natural flavors (a red flag for sure). If it is so natural, tell us what it is. Most protein bars contain the following commonly found ingredients: palm kernel oil, maltitol, vegetable glycerin, calcium carbonate, disodium phosphate, gelatin, sucralose, brown rice syrup, calcium caseinate, etc. Facts about Healthy Truth Protein Bars: Healthy Truth protein bars are made from sprouted nuts and seeds for optimal digestibility and maximum assimilation of nutrients. Healthy Truth bars are never heated. They are formed and packaged raw with no processing. Healthy Truth bars contain all the essential amino acids and are a complete protein. Healthy Truth protein bars are made from whole foods. When feeding your body, the choice is clear. Healthy Truth. Live Better, Feel Better, Be Better. INGREDIENTS: Dates*, Coconut Nectar*, Pea Protein Powder*", "pricing": "$42.99", "list_price": "", "availability_quantity": 9, "availability_status": "Only 9 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41ABWCrEKsS.jpg", "https://m.media-amazon.com/images/I/31L5qRtIp0S.jpg", "https://m.media-amazon.com/images/I/41ntmsyV6kS.jpg", "https://m.media-amazon.com/images/I/41eUyEs1uWS.jpg", "https://m.media-amazon.com/images/I/51FbShHxNJS.jpg", "https://m.media-amazon.com/images/I/51YcZdxN-SS.jpg", "https://m.media-amazon.com/images/I/411L35E6hMS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Bars \u203a High Protein", "average_rating": "", "small_description": ["Our Vanilla Protein Bar is made with the cleanest, finest whole food ingredients. ", "One of the only RAW bars on the market. ", "Made with 19g of high quality pea and sacha inchi protein in a 2.6oz bar. ", "Healthy Truth protein bars contain all the essential amino acids and are a complete protein. ", "Raw, Organic, SPROUTED, Gluten-Free, Dairy-Free, Vegan, Plant-Based, and Clean Label! "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08LQYBFGT/ref=twister_B08SFMD2VT?_encoding=UTF8&psc=1", "value": "Chocolate (12-pack)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08LQZFMY4/ref=twister_B08SFMD2VT?_encoding=UTF8&psc=1", "value": "Mixed Berry Exercise Recovery (12-pack)", "price_string": "$42.99", "price": 42.99, "image": null}, {"is_selected": true, "url": null, "value": "Vanilla (12-pack)", "price_string": "$42.99", "price": 42.99, "image": null}]}, "seller_id": "A37GGA6X7DPCI3", "seller_name": "Healthy Truth, LLC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08LQZ5BRC", "category": "grocery", "query": "Breakfast Foods", "page": 139, "small_description_old": "About this item Our Vanilla Protein Bar is made with the cleanest, finest whole food ingredients. Our Vanilla Protein Bar is made with the cleanest, finest whole food ingredients. Our Vanilla Protein Bar is made with the cleanest, finest whole food ingredients. One of the only RAW bars on the market. Made with 19g of high quality pea and sacha inchi protein in a 2.6oz bar. Healthy Truth protein bars contain all the essential amino acids and are a complete protein. Raw, Organic, SPROUTED, Gluten-Free, Dairy-Free, Vegan, Plant-Based, and Clean Label!"}, {"name": "Fotodiox Lens Mount Adapter with Leica 6-Bit M-Coding - Canon EOS (EF/EF-S) D/SLR Lens to Leica M Mount Rangefinder Camera Body", "product_information": {"Product Dimensions": "1 x 1 x 1 inches", "Item Weight": "1.6 ounces", "ASIN": "B0073AC440", "Item model number": "EOS-LM", "Customer Reviews": {"ratings_count": 9, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#627 in Camera Lens Adapters & Converters"], "Is Discontinued By Manufacturer": "No", "Date First Available": "January 30, 2012", "Manufacturer": "Fotodiox Inc.", "Country of Origin": "USA"}, "brand": "Visit the Fotodiox Store", "brand_url": "https://www.amazon.com/stores/Fotodiox+Inc./page/6DCBAB1A-49E0-42F0-87E7-D9E76AB67C47?ref_=ast_bln", "full_description": "If you have a SLR or DSLR camera and other maker/mount lenses, the Fotodiox Mount Adapters allow you to use your lenses on the film/digital camera body. Sharing lenses has some distinct advantages. Certain prime lens just can't be replaced, and you save the cost of purchase on new lenses. Fotodiox offers a range of adapter from large format to smaller format digital adapters. Adapting larger format lens to smaller format sensors (i.e: large format to medium format, medium format to 35mm, 35mm to micro 4/3) provides excellent edge-to-edge sharpness. The smaller image field helps minimize the effects of lens distortion and aberration by using the 'sweet spot' or center of the larger lens image circle.This Fotodiox lens mount adapter is made with high standard precision. This adapter allows all Canon EOS Mount Lenses (EF & EF-S) to fit on all Leica M mount camera bodies.Although the lens will fit physically, automatic diaphragm, auto-focusing, or any other functions will not operate correctly while using this adapter. In this case \"stop-down mode\" will need to be used when metering since the lens does not have the ability to have its aperture controlled by the camera body. You can shoot with manual mode or aperture priority mode. Infinity focusing is allowed.Compatible Cameras (including, but not limited to): Leica M3, M2, M1, M4, M5, CL, M6, MP, M7, M8, M9, Hexar RF Epson R-D1, 35mm Bessa, Cosina Voigtl\u00e4nder, Minolta CLE, Rollei 35 RF, Zeiss Ikon, Ricoh GXR A12 M-Mount ModuleActual product packaging and contents may differ from image shown due to packaging or product updates by manufacturer.", "pricing": "$29.95", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41M7WTWjAIL.jpg", "https://m.media-amazon.com/images/I/41GdjT-s+3L.jpg", "https://m.media-amazon.com/images/I/41tOHMHw28L.jpg", "https://m.media-amazon.com/images/I/51sZF1BuHoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Lens Accessories \u203a Adapters & Converters", "average_rating": 4.4, "small_description": ["Smooth surface for effortless mount with 6-Bit M-Coding ", "High-tolerance precision craftsmanship; infinity focus or beyond allowed ", "All-metal design; hardened anodized aluminum construction ", "24 Month Manufacture Warranty "], "total_reviews": 9, "total_answered_questions": 6, "model": "EOS-LM", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0073AC440", "category": "electronics", "query": "Lenses", "page": 224, "small_description_old": "About this item\n \nSmooth surface for effortless mount with 6-Bit M-Coding High-tolerance precision craftsmanship; infinity focus or beyond allowed All-metal design; hardened anodized aluminum construction 24 Month Manufacture Warranty"}, {"name": "ORT Bodycon Lingeries for Women,2 Piece 2 pc Sleepwear for Women,Sexy Printed Ugly Valentine Nightdress Loungewear Lingeries Rompers Clubwear", "product_information": {"Item model number\n \u200f": "\u200e\n women's exotic lingerie sets plus", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n February 5, 2022", "Manufacturer\n \u200f": "\u200e\n lingerie crotchless crotchless", "ASIN\n \u200f": "\u200e\n B09RV4TXKJ", "": ""}, "brand": "Brand: ORT", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=ORT", "full_description": "Women Lingerie Set Sexy Bra And Panty Jumpsuit Lingerie Sets New Sexy Fashion Lace Lingerie Underwear Sleepwear Pajamas Garter \u00a0 Features: 1.Put your body in a totally relaxed status, high elasticity belt. 2.Ultra smooth feeling, every diligent design consideration. 3.Focuses on a perfect underwear for you, not only inimitably sexy. 4.Make you super sexy and seductive. 5.Serve as a nightwear and also a stimulative sex kit for sexual life of couples. Product information: Season: All Gender: Women\u00a0 Occasion: Sexy Material: 90%\u00a0 Spandex Pattern Type: Solid Style: Casual,Sexy Sleeve length: Sleeveless How to wash: Hand wash Cold What you get: 2 PC Underwears", "pricing": "$13.08", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/41Vepu3uNZL.jpg", "https://m.media-amazon.com/images/I/51TEdYSO33L.jpg", "https://m.media-amazon.com/images/I/316z+OFQVHL.jpg", "https://m.media-amazon.com/images/I/41N8rTfUsWL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Sleep & Lounge \u203a Sets", "average_rating": "", "small_description": ["crotchless lingerie for women for sex ", "sexy lingerie for women naughty for sex ", "\ud83c\udf38About Size:Our products are in Asian sizes ,Please check our size chart carefully before orders, Recommend 1-2 size up. Thanks!\ud83c\udf38 ", "Snap closure ", "Hand Wash ", "women lingerie bodysuit lace teddy sleepwear one piece lingerie babydoll strappy chemise v neck nightwear plus size babydoll womens snap crotch lingerie v neck lace nighty mesh sleepwear women sexy sleepwear lace chemise nightgown full slip babydoll sleepwear sexy lingerie set for women high waist bra and panty sets lace floral babydoll 2 piece underwear sets v-neck see through lingerie floral lace babydoll sexy lingerie for women one piece bodysuit ", "lingerie set for women lace lingerie set sexy bra and panty set strappy 2 piece outfits women's floral embroidered mesh underwire bra and panty sexy lingerie set sexy bow choker halter floral lace sheer lingerie set for women see through bra and panty 2 piece lingerie set for women 3 pieces halter top and mini skirt with g-string pant black women lingerie with stockings and gloves, sexy garter belt lingerie set , lingerie set for women sexy lace bra and panty set two piece babydoll underwear embroidered applique lace lingerie,underwire mesh sheer honeymoon matching 3 piece lingerie set womens sexy lace lingerie set with garter belt 3 piece bralette panty garter women pu metallic leather halter bikini tank crop top vest bra underwear lingerie women lace lingerie set 2 pieces bralette bra and panty strappy lingerie set mesh underwear negligee, lingerie set for women push up for sex crotchless plus size with stockings women's lingerie for sexy sex camisoles & tanks naughty plus size bodysuit crotchless set bra and panty set sexy red lingerie for women plus size for sex sexy valentines day red lingerie for women plus push up set one piece with stockings crotchless babydoll lingerie for women plus size sexy hot for sex with push up bra plus white 3 pieces womens lingerie sexy for sex plus size costume set crotchless panties 2 piece set, lingerie set plus size lingerie for women red women's exotic lingerie sets plus size lingerie for women with underwire womens lingerie babydoll lingerie for women pink womens lingerie plus size lingerie with underwire women's lingerie plus size women's lingerie set for women black womens lingerie set sexy lingerie for women 2 piece set women's lingerie, sleep & lounge sexy lingerie for women naughty blue babydoll lingerie for women sexy hot lingerie for women 2 piece set women's lingerie set"], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2VK689BVEZM0V", "seller_name": "Emmalte(Delivery Time 10-25 Days)", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RV4TXKJ", "category": "fashion", "query": "Women's Lingerie, Sleep & Lounge", "page": 51, "small_description_old": "crotchless lingerie for women for sex sexy lingerie for women naughty for sex \ud83c\udf38About Size:Our products are in Asian sizes ,Please check our size chart carefully before orders, Recommend 1-2 size up. Thanks!\ud83c\udf38 women lingerie bodysuit lace teddy sleepwear one piece lingerie babydoll strappy chemise v neck nightwear plus size babydoll womens snap crotch lingerie v neck lace nighty mesh sleepwear women sexy sleepwear lace chemise nightgown full slip babydoll sleepwear sexy lingerie set for women high waist bra and panty sets lace floral babydoll 2 piece underwear sets v-neck see through lingerie floral lace babydoll sexy lingerie for women one piece bodysuit lingerie set for women lace lingerie set sexy bra and panty set strappy 2 piece outfits women's floral embroidered mesh underwire bra and panty sexy lingerie set sexy bow choker halter floral lace sheer lingerie set for women see through bra and panty 2 piece lingerie set for women 3 pieces halter top and mini skirt with g-string pant black women lingerie with stockings and gloves, sexy garter belt lingerie set lingerie set for women sexy lace bra and panty set two piece babydoll underwear embroidered applique lace lingerie,underwire mesh sheer honeymoon matching 3 piece lingerie set womens sexy lace lingerie set with garter belt 3 piece bralette panty garter women pu metallic leather halter bikini tank crop top vest bra underwear lingerie women lace lingerie set 2 pieces bralette bra and panty strappy lingerie set mesh underwear negligee lingerie set for women push up for sex crotchless plus size with stockings women's lingerie for sexy sex camisoles & tanks naughty plus size bodysuit crotchless set bra and panty set sexy red lingerie for women plus size for sex sexy valentines day red lingerie for women plus push up set one piece with stockings crotchless babydoll lingerie for women plus size sexy hot for sex with push up bra plus white 3 pieces womens lingerie sexy for sex plus size costume set crotchless panties 2 piece set lingerie set plus size lingerie for women red women's exotic lingerie sets plus size lingerie for women with underwire womens lingerie babydoll lingerie for women pink womens lingerie plus size lingerie with underwire women's lingerie plus size women's lingerie set for women black womens lingerie set sexy lingerie for women 2 piece set women's lingerie, sleep & lounge sexy lingerie for women naughty blue babydoll lingerie for women sexy hot lingerie for women 2 piece set women's lingerie set"}, {"name": "Computer & Tablet Y12 4G Phone Call Tablet PC, 10.1 inch, 2GB+32GB, Android 7.0 MTK6753 Octa-core up to 1.6GHz, WiFi, Bluetooth, OTG, GPS(Gold) (Color : Rose Gold)", "product_information": {"Package Dimensions": "11.81 x 8.66 x 2.36 inches", "Item Weight": "2.45 pounds", "Manufacturer": "Dongdexiu", "ASIN": "B0871VQT3Q", "Date First Available": "April 13, 2020"}, "brand": "Brand: Dongdexiu", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Dongdexiu", "full_description": "Good useSuitable price1. MTK6753 octa-core up to 1.6GHz CPU2. 10.1 inch capacitive touch screen with 1920*1200 pixel resolution, MIPI interface.3. 2GB RAM + 32GB ROM, 32GB external memory card, the card is not included.4. Powered by 5500mAh battery, the battery will make the tablet last for several days in normal use.5. Support WiFi, Play Store, MSN, search by voice, GTalk, Contact Sync, Calendar Sync, Document to go, Youtube, QQ, MP3 Player, etc..", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51YaTwoG47L.jpg", "https://m.media-amazon.com/images/I/51YaTwoG47L.jpg", "https://m.media-amazon.com/images/I/31bvgs8VjpL.jpg", "https://m.media-amazon.com/images/I/41iKHt7C6FL.jpg", "https://m.media-amazon.com/images/I/41JYvHhJvsL.jpg", "https://m.media-amazon.com/images/I/51cuim47aPL.jpg", "https://m.media-amazon.com/images/I/51C6dIIZkOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computers & Tablets \u203a Tablets", "average_rating": "", "small_description": ["Tablet PC ", "Android Tablet PC ", "Y12 4G Phone Call Tablet PC, 10.1 inch, 2GB+32GB, Android 7.0 MTK6753 Octa-core up to 1.6GHz, WiFi, Bluetooth, OTG, GPS(Gold) "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0871VQT3Q", "category": "electronics", "query": "Tablets", "page": 252, "small_description_old": "About this item\n \nTablet PC Android Tablet PC Y12 4G Phone Call Tablet PC, 10.1 inch, 2GB+32GB, Android 7.0 MTK6753 Octa-core up to 1.6GHz, WiFi, Bluetooth, OTG, GPS(Gold)"}, {"name": "BFWood Wooden Paddle Hair Brush \u2013 Black Walnut Hairbrush for Massaging Scalp", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.33 x 3.19 x 1.93 inches; 4.23 Ounces", "Manufacturer\n \u200f": "\u200e\n BFWood", "ASIN\n \u200f": "\u200e\n B083TZ4JSR", "Best Sellers Rank": "#54,641 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#758 in Hair Brushes", "#758 in Hair Brushes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the BFWood Store", "brand_url": "https://www.amazon.com/stores/BFWood/page/A6534B3D-E80C-4FB6-85F2-735F65A8A287?ref_=ast_bln", "full_description": "", "pricing": "$6.48", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51bE06+44SL.jpg", "https://m.media-amazon.com/images/I/51Jh3-cXONL.jpg", "https://m.media-amazon.com/images/I/41Py3dXsJbL.jpg", "https://m.media-amazon.com/images/I/410X94NjaQL.jpg", "https://m.media-amazon.com/images/I/51LRNGDKm6L.jpg", "https://m.media-amazon.com/images/I/41nlCvjhkfL.jpg", "https://m.media-amazon.com/images/I/A1oddGPWogL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Styling Tools & Appliances \u203a Hair Brushes", "average_rating": 4.5, "small_description": ["BFWood hair brush bristles are made of natural beech; They make your hair silky and shiny by distributing oil from your scalp throughout the whole length of your hair. ", "RELAXATION AND COMFORT: The cushioned base has an air hole which allows compression when you brush; The beech bristles massage your scalp and give you a comfortable hair brushing experience. ", "SUITABLE FOR ALL HAIR TYPES: Whether you have thin or thick hair, this hair brush is perfect for you. Designed with soft tips and wide gaps, the bristles will help to detangle and smooth your hair without causing hair loss or breakage. ", "NEW DESIGN GRIP: We designed a black walnut handle with curved sides, also adding thickness and curve to the grip; the ergonomic design allows the brush to fit comfortably in your hand. ", "IDEAL GIFT: The package comes with a black walnut wooden brush and a canvas bag. It's a great gift for Valentine\u2019s Day, a birthday, or any special occasion. "], "total_reviews": 1652, "total_answered_questions": 8, "customization_options": "", "seller_id": "A1AUWQ3MV4CVFM", "seller_name": "BFWood", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B083TZ4JSR", "category": "beauty", "query": "Hair Loss Products", "page": 182, "small_description_old": "About this item BFWood hair brush bristles are made of natural beech; They make your hair silky and shiny by distributing oil from your scalp throughout the whole length of your hair. RELAXATION AND COMFORT: The cushioned base has an air hole which allows compression when you brush; The beech bristles massage your scalp and give you a comfortable hair brushing experience. SUITABLE FOR ALL HAIR TYPES: Whether you have thin or thick hair, this hair brush is perfect for you. Designed with soft tips and wide gaps, the bristles will help to detangle and smooth your hair without causing hair loss or breakage. NEW DESIGN GRIP: We designed a black walnut handle with curved sides, also adding thickness and curve to the grip; the ergonomic design allows the brush to fit comfortably in your hand. IDEAL GIFT: The package comes with a black walnut wooden brush and a canvas bag. It's a great gift for Valentine\u2019s Day, a birthday, or any special occasion."}, {"name": "ZINUS 10 Inch Cooling Copper ADAPTIVE Pocket Spring Hybrid Mattress / Moisture Wicking Cover / Cooling Foam / Pocket Innersprings for Motion Isolation / Mattress-in-a-Box, Full", "product_information": {"Item Weight": "\u200e69.1 pounds", "Product Dimensions": "\u200e75 x 54 x 10 inches", "Country of Origin": "\u200eIndonesia", "Item model number": "\u200eMSHPHB-10F", "ASIN": "B089KGBJGW", "Customer Reviews": {"ratings_count": 1122, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#80,448 in Home & Kitchen (See Top 100 in Home & Kitchen) #196 in Mattresses"], "Date First Available": "June 2, 2020"}, "brand": "Visit the Zinus Store", "brand_url": "https://www.amazon.com/stores/ZinusInc/page/D15FE033-64D1-4ED7-B733-0058DA3BD71C?ref_=ast_bln", "full_description": "The search for an innovative, premium mattress at a not-so-premium price ends here. The Cooling Copper ADAPTIVE Hybrid Mattress has been expertly developed to offer you a multitude of sleep enhancing technologies at a price that\u2019s worth shouting from the rooftops. It all begins with a poly jacquard cover treated with ADAPTIVE technology. This remarkable fabric uses your excess body heat and moisture to trigger evaporation as you sleep, so you no longer wake up from overheating. And the cooling action doesn\u2019t stop there. Just beneath this cover is thermoregulating copper-infused memory foam, a layer that effortlessly dispels unwanted heat. In addition to keeping you perfectly temperature-regulated, this memory foam boasts one more secret ingredient \u2013 pure and natural green tea. When paired together, copper and green tea keep your bed feeling fresh for countless nights to come. It\u2019s all situated on top of an Independent Coil System base layer that resists motion transfer from a partner and provides cradling support of your joints and spine. And for those who like to live (and sleep) on the edge, we\u2019ve added a perimeter layer of superior Foam Edge Support. Like all our mattresses, the Cooling Copper ADAPTIVE Mattress is expertly rolled and packed with a 10-year warranty into one convenient box that ships right to your door. And presto! This mattress proves that reasonably priced and luxurious actually do go hand in hand. Who knew?", "pricing": "$289.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51aGDvDft+L.jpg", "https://m.media-amazon.com/images/I/51AZg-MaOES.jpg", "https://m.media-amazon.com/images/I/5149QwWdd1L.jpg", "https://m.media-amazon.com/images/I/51z1cgoaZjL.jpg", "https://m.media-amazon.com/images/I/41XZe8J3MoL.jpg", "https://m.media-amazon.com/images/I/51QATtYfhIL.jpg", "https://m.media-amazon.com/images/I/51V07ILLsZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Mattresses & Box Springs \u203a Mattresses", "average_rating": 4.4, "small_description": ["PERKS WITHOUT THE ADDED PRICE \u2013 With a moisture wicking ADAPTIVE cover, CertiPUR-US Certified cooling copper memory foam, motion-isolating coils, and superior edge support, this innovative design delivers premium mattress features at an affordable price ", "THE COOLEST SLEEP YET - Unique ADAPTIVE fabric cover cools as it triggers evaporation of excess moisture, while copper-infused memory foam eliminates excess heat, delivering a one-two punch of cooling for sleep that\u2019s sound, easy and no sweat ", "CLEAN & MOISTURE-FREE \u2013 A top layer of memory foam is infused with copper and natural green tea which eliminates excess moisture ", "PRESSURE RELIEF & MOTION ISOLATION \u2013 An Independent Coil System base layer encased with Foam Edge Support resists motion transfer from a sleeping partner and promotes customized spinal alignment and joint pain relief ", "EXPERTLY PACKAGED \u2013 This mattress is efficiently compressed into a box that\u2019s shipped right to your door; simply unbox, unroll and the mattress does the rest, expanding to its original shape within 72 hours; worry-free 10 year limited warranty included "], "total_reviews": 1122, "total_answered_questions": "", "model": "\u200eMSHPHB-10F", "customization_options": {"Color": null, "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B089KFLHXF/ref=twister_B09MDQJ94S?_encoding=UTF8&psc=1", "value": "Twin", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Full", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089KJ2DWQ/ref=twister_B09MDQJ94S?_encoding=UTF8&psc=1", "value": "Queen", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089KH3WVW/ref=twister_B09MDQJ94S?_encoding=UTF8&psc=1", "value": "King", "price_string": "", "price": 0, "image": null}], "Style": [{"is_selected": true, "url": null, "value": "10 Inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089KG1S6D/ref=twister_B09MDQJ94S?_encoding=UTF8&psc=1", "value": "12 Inch", "price_string": "", "price": 0, "image": null}], "Pattern Name": [{"is_selected": true, "url": null, "value": "Mattress", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R2BZL4B/ref=twister_B09MDQJ94S", "value": "Mattress + Mattress, Dark Grey", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R28NWZB/ref=twister_B09MDQJ94S", "value": "Mattress + Mattress, Wood Slat Support", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B089KGBJGW", "category": "garden", "query": "Mattresses", "page": 8, "small_description_old": "About this item PERKS WITHOUT THE ADDED PRICE \u2013 With a moisture wicking ADAPTIVE cover, CertiPUR-US Certified cooling copper memory foam, motion-isolating coils, and superior edge support, this innovative design delivers premium mattress features at an affordable price THE COOLEST SLEEP YET - Unique ADAPTIVE fabric cover cools as it triggers evaporation of excess moisture, while copper-infused memory foam eliminates excess heat, delivering a one-two punch of cooling for sleep that\u2019s sound, easy and no sweat CLEAN & MOISTURE-FREE \u2013 A top layer of memory foam is infused with copper and natural green tea which eliminates excess moisture PRESSURE RELIEF & MOTION ISOLATION \u2013 An Independent Coil System base layer encased with Foam Edge Support resists motion transfer from a sleeping partner and promotes customized spinal alignment and joint pain relief EXPERTLY PACKAGED \u2013 This mattress is efficiently compressed into a box that\u2019s shipped right to your door; simply unbox, unroll and the mattress does the rest, expanding to its original shape within 72 hours; worry-free 10 year limited warranty included \n \u203a See more product details"}, {"name": "Herbal Hair Regrowth Spray, Hair-growth Essence Spray, Herbal Hair Growth Essence Spray, Hair Growth Treatement Germinal Oil, Hair Growth Maximizer Spray for Prevent Postpartum Hair Loss Men Women (10ml 4PC)", "product_information": {"UPC\n \u200f": "\u200e\n 725286546515", "ASIN\n \u200f": "\u200e\n B09SHRV5JW", "Best Sellers Rank": "#560,957 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,465 in Hair Regrowth Treatments", "#2,465 in Hair Regrowth Treatments": ""}, "brand": "Brand: Tiwnviccnny", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Tiwnviccnny", "full_description": "Natural ginger hair care essence nutrient solution deoiling care 50ML Description: Chinese herbal medicine to prevent hair growth, fix hair, nutrition, baldness, postpartum hair loss, hair loss nutrient solution 30ml and 50ml Ginger King and other plants can promote the growth and development of hair, and are suitable for various types of hair loss, effectively helping to solve the problems of fat, baldness, postpartum hair loss, congenital hair loss, hair discoloration and hair loss, and other hair loss problems. Promote nutrient absorption of the scalp, nourish and repair the scalp, quickly help hair re-growth, improve dryness, make the hair dense and effectively inhibit dandruff. Solve the problem of hair loss This product can make the hair grow 2-3 times faster than the normal growth rate, thus making the hair smooth and healthy. Usage: Add 3ml of hair growth essence to 100ml of shampoo and stir evenly. Specification: 30ml/bottle 50ml/bottle How to use: Wash your hair before use, until the hair is half dry, the product will fall on the hair or need to grow, put it on the scalp as much as possible, and then massage with your fingers for 2-3 minutes until it is absorbed (No need to shampoo after use) Better effect every day, 2-3 times each time Package Contents: 1PC hair growth liquid", "pricing": "$16.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/61t4b8A+IhL.jpg", "https://m.media-amazon.com/images/I/51FjYzZIIBL.jpg", "https://m.media-amazon.com/images/I/5145qLeZ5wL.jpg", "https://m.media-amazon.com/images/I/51IAzv7JL-L.jpg", "https://m.media-amazon.com/images/I/51695zKjxHL.jpg", "https://m.media-amazon.com/images/I/51JNHOo7kjL.jpg", "https://m.media-amazon.com/images/I/511tnS+tCoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Loss Products \u203a Hair Regrowth Treatments", "average_rating": "", "small_description": ["\ud83d\udc68\u200d\ud83d\udcbc King of ginger 7 days hair growth - Effectively Promote Hair Growth - Function: fast hair growth Capacity: 10/30/50ml Usage: add 3ml hair growth essence into 100ml shampoo and stir evenly 100% brand new and high quality,effectively nourish the scalp, promote hair growth and improve hair loss. ", "\ud83d\udc68\u200d\ud83d\udcbcGinger oil for hair growth - regrow hair for men women - Keep Hair Health - Nourish hair roots, awaken hair follicles and stimulate hair follicles to grow more healthy hair. Oil control to prevent clogging of pores, leaving hair fresh and supple.Ingredients: ginger, ginseng, loca festival, fleece-flower root, grape seed oil ", "\ud83d\udc68\u200d\ud83d\udcbcRegrow hair for men women - essential oils for hair growth -Description: *Chinese herbal formula prevent hair growth hair hair hair solid hair nutrition fat bald postpartum hair loss hair hair nutrition liquid 10/30/50ml ", "\ud83d\udc68\u200d\ud83d\udcbcHair growth oil for hair loss - essential oils for hair loss- *The main effect: extract old ginger King and other plants to prevent development and development of hair cream, apply to a variety of hair loss types, effectively help solve the problem such as fat bald, post-partum hair loss, congenital hair loss, hair dyeing and hair loss and other hair loss problems. ", "\ud83d\udc68\u200d\ud83d\udcbcEssential oils for hair loss- hair growth oil for hair loss - Prevent Hair Loss - Hair growth solution using herbal ingredients can effectively strong hair and prevent hair loss. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09SHPDK3Q/ref=twister_B09SHMY24Q?_encoding=UTF8&psc=1", "value": "10ml", "price_string": "$10.99", "price": 10.99, "image": null}, {"is_selected": true, "url": null, "value": "10ml 4PC", "price_string": "$16.99", "price": 16.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SHMG1C7/ref=twister_B09SHMY24Q?_encoding=UTF8&psc=1", "value": "30ml", "price_string": "$12.99", "price": 12.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SKVT26B/ref=twister_B09SHMY24Q?_encoding=UTF8&psc=1", "value": "30ml 01", "price_string": "$13.99", "price": 13.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SHMDQ5L/ref=twister_B09SHMY24Q?_encoding=UTF8&psc=1", "value": "50ml", "price_string": "$13.99", "price": 13.99, "image": null}]}, "seller_id": "A2DGK34UQC190S", "seller_name": "Guzcy US", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09SHRV5JW", "category": "beauty", "query": "Hair Loss Products", "page": 62, "small_description_old": "\ud83d\udc68\u200d\ud83d\udcbc King of ginger 7 days hair growth - Effectively Promote Hair Growth - Function: fast hair growth Capacity: 10/30/50ml Usage: add 3ml hair growth essence into 100ml shampoo and stir evenly 100% brand new and high quality,effectively nourish the scalp, promote hair growth and improve hair loss. \ud83d\udc68\u200d\ud83d\udcbcGinger oil for hair growth - regrow hair for men women - Keep Hair Health - Nourish hair roots, awaken hair follicles and stimulate hair follicles to grow more healthy hair. Oil control to prevent clogging of pores, leaving hair fresh and supple.Ingredients: ginger, ginseng, loca festival, fleece-flower root, grape seed oil \ud83d\udc68\u200d\ud83d\udcbcRegrow hair for men women - essential oils for hair growth -Description: *Chinese herbal formula prevent hair growth hair hair hair solid hair nutrition fat bald postpartum hair loss hair hair nutrition liquid 10/30/50ml \ud83d\udc68\u200d\ud83d\udcbcHair growth oil for hair loss - essential oils for hair loss- *The main effect: extract old ginger King and other plants to prevent development and development of hair cream, apply to a variety of hair loss types, effectively help solve the problem such as fat bald, post-partum hair loss, congenital hair loss, hair dyeing and hair loss and other hair loss problems. \ud83d\udc68\u200d\ud83d\udcbcEssential oils for hair loss- hair growth oil for hair loss - Prevent Hair Loss - Hair growth solution using herbal ingredients can effectively strong hair and prevent hair loss."}, {"name": "Yheakne Metal Hair Slide Clip Barrette Geometric Hair Holder Clip Pin Vintage Hair Slide Pin Bun Holder Alloy Hair Clip Decorative Hair Accessories for Women and Girls (Gold)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4.33 x 2.01 x 0.79 inches; 0.32 Ounces", "UPC\n \u200f": "\u200e\n 658161805936", "Manufacturer\n \u200f": "\u200e\n Yheakne", "ASIN\n \u200f": "\u200e\n B09LLRSWF4", "Best Sellers Rank": "#324,981 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#5,913 in Hair Clips", "#5,913 in Hair Clips": ""}, "brand": "Brand: Yheakne", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Yheakne", "full_description": "-Gold Minimal Hair Clip Hairpins French Hair Accessories bridesmaids gifts -Superior quality,tested well before shipping. Elastic -Color and Size:Shown as pictures.Handmade item,great workmanship.Choose as a cute gift for yourself or your special one.If you have any questions such as product description, return policy and shipping instructions, email me for details.", "pricing": "$8.50", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41CFnzFZydL.jpg", "https://m.media-amazon.com/images/I/51f8eJ1IhcL.jpg", "https://m.media-amazon.com/images/I/41qS8zJfsmL.jpg", "https://m.media-amazon.com/images/I/31xQTj3vVcL.jpg", "https://m.media-amazon.com/images/I/41-bBDINCmL.jpg", "https://m.media-amazon.com/images/I/21zNAAMGjvL.jpg", "https://m.media-amazon.com/images/I/51q-gEi8SAS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Accessories \u203a Clips & Barrettes \u203a Clips", "average_rating": "", "small_description": ["Metal Hair Clip barrette made from high quality alloy,easy to wear and match clothes. ", "Gold circle hair slide barrette as pictures shown,around 2.59*0.71inch.Keep color and not fade. ", "Minimalist Hollow Hair Stick Clips in gold and silver,suit for teen girls and women. ", "Vintage Hair Pin Clip suit for daily wear or party wedding prom nightclub or any special occasions. ", "If there are any problems after receiving the product, please contact us in time and keep the RETURN & CHANGE label. We will do our best to provide you with an excellent shopping experience. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "AMDTOHJDNDF7V", "seller_name": "Yheakne", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09LLRSWF4", "category": "beauty", "query": "Hair Accessories", "page": 113, "small_description_old": "About this item Metal Hair Clip barrette made from high quality alloy,easy to wear and match clothes. Gold circle hair slide barrette as pictures shown,around 2.59*0.71inch.Keep color and not fade. Minimalist Hollow Hair Stick Clips in gold and silver,suit for teen girls and women. Vintage Hair Pin Clip suit for daily wear or party wedding prom nightclub or any special occasions. If there are any problems after receiving the product, please contact us in time and keep the RETURN & CHANGE label. We will do our best to provide you with an excellent shopping experience."}, {"name": "zxb-shop Exfoliating Washcloths Bath Shower Silicone Strip for Body Brush Bathing Back Exfoliating Washcloth Accessories Baths Belt Scrubber Sponge Exfoliating Towel for Body (Color : B)", "product_information": {"Item Weight": "0.035 ounces", "Department": "Unisex-adult", "Manufacturer": "mjyshop", "ASIN": "B08SH37R9Z"}, "brand": "Brand: zxb-shop", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=zxb-shop", "full_description": "Great for Circulation and Achieving Healthy Glowing Soft Skin.Product name:Exfoliating towelMaterial: SiliconeUse: CleaningSize: 60*11cmWeight: 172gprompt:1. Please check the size before buying. Due to manual measurement, there will be an error of about 0-3cm, please understand2. The product photos do not contain items other than the product3. Please note that due to different monitors, there may be slight color difference, please understand.4. The above data is for reference only, the size is manually measured, each variable may be different, please refer to the actual product, thank you.5. If you find any problems with our products, please feel free to contact us by email, we will solve the problem as soon as possible.6. Welcome your sharing and feedback so that we can provide you with better products and services.7. Thank you for visiting my store, click to enter my store, there will be a lot of products for your reference, logistics, generally we will ship within 1-3 days, and the estimated arrival time is 9-15 days.", "pricing": "$33.64", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41b540MtE1L.jpg", "https://m.media-amazon.com/images/I/51TiX3VhwZL.jpg", "https://m.media-amazon.com/images/I/41ksdd5+O5L.jpg", "https://m.media-amazon.com/images/I/51h4-uaDriL.jpg", "https://m.media-amazon.com/images/I/41b540MtE1L.jpg", "https://m.media-amazon.com/images/I/418pqqMwAOL.jpg", "https://m.media-amazon.com/images/I/51PZmz01dqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath & Body Brushes", "average_rating": "", "small_description": ["Well suited to exfoliating all over body, good scrub and lathers any soap or shower gel, soften skin, stimulate circulation, help cellulite rinse easily ", "Texture Material For Massage: Creates rich lather while stimulating skin and blood circulation, great for cellulite massage, back scrubber for shower for men and women. ", "Wide Applications: The exfoliating bath towels are suitable for each family member, can be applied to wash face and body, grease dead skin cells,beautify your skin. ", "Remove Dead Skin, Unclog pores, Bacne, and Impurities from your Skin.Great for Men, Women, Elderly, etc.. ", "wash cloth is made ideal for full-body cleansing, and leaves your skin soft and smooth. It removes dead skin, dirt and oil with rich lather with little soap. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08SFZRGGJ/ref=twister_B08SG4QDK6?_encoding=UTF8&psc=1", "value": "A", "price_string": "$33.64", "price": 33.64, "image": "https://m.media-amazon.com/images/I/412siDhvNrL.jpg"}, {"is_selected": true, "url": null, "value": "B", "price_string": "$33.64", "price": 33.64, "image": "https://m.media-amazon.com/images/I/41b540MtE1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SG2ZXDJ/ref=twister_B08SG4QDK6?_encoding=UTF8&psc=1", "value": "C", "price_string": "$33.64", "price": 33.64, "image": "https://m.media-amazon.com/images/I/41LnxjaB8eL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SGF22W6/ref=twister_B08SG4QDK6?_encoding=UTF8&psc=1", "value": "D", "price_string": "$33.64", "price": 33.64, "image": "https://m.media-amazon.com/images/I/417QwwbxYaL.jpg"}]}, "seller_id": "AV09PFKNKDXZQ", "seller_name": "oumingmeiguo", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08SH37R9Z", "category": "beauty", "query": "Bath & Bathing Accessories", "page": 20, "small_description_old": "Well suited to exfoliating all over body, good scrub and lathers any soap or shower gel, soften skin, stimulate circulation, help cellulite rinse easily Texture Material For Massage: Creates rich lather while stimulating skin and blood circulation, great for cellulite massage, back scrubber for shower for men and women. Wide Applications: The exfoliating bath towels are suitable for each family member, can be applied to wash face and body, grease dead skin cells,beautify your skin. Remove Dead Skin, Unclog pores, Bacne, and Impurities from your Skin.Great for Men, Women, Elderly, etc.. wash cloth is made ideal for full-body cleansing, and leaves your skin soft and smooth. It removes dead skin, dirt and oil with rich lather with little soap."}, {"name": "NOBPEINT Contemporary Chrome Air Lift Adjustable Swivel Bar Stool, Set of 2, Black", "product_information": {"Product Dimensions": "\u200e15.6 x 15.2 x 21.7 inches", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Seat Height": "\u200e21.7 Inches", "ASIN": "B07PX22S9F", "Customer Reviews": {"ratings_count": 136, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#723,594 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,315 in Barstools"], "Date First Available": "April 10, 2018"}, "brand": "Visit the NOBPEINT Store", "brand_url": "https://www.amazon.com/stores/NOBPEINT/page/06721234-CEE6-4699-9D9E-4724AF1AB5F1?ref_=ast_bln", "full_description": "", "pricing": "$59.99", "list_price": "", "availability_quantity": 16, "availability_status": "Only 16 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/416ViQzADQL.jpg", "https://m.media-amazon.com/images/I/41wa61zALLL.jpg", "https://m.media-amazon.com/images/I/31AnAr5MtdL.jpg", "https://m.media-amazon.com/images/I/3180rd3UD4L.jpg", "https://m.media-amazon.com/images/I/51t8ZsttXSL.jpg", "https://m.media-amazon.com/images/I/31SwWCrOZPL.jpg", "https://m.media-amazon.com/images/I/51RQyd-V4+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Game & Recreation Room Furniture \u203a Home Bar Furniture \u203a Barstools", "average_rating": 4.5, "small_description": ["360-degree swivel for seat and footrest,adjustable seat height ", "A wide selection of products include pieces for the living room, dining room, bar, office. ", "High-quality and innovative design ", "Dimensions:15.2\"W*15.6\"D*21.7\"~29.5\"H;Seat:15.2W\"*15.6D\". Chrome base diameter:15.2\" ", "Photo May Slightly Different From Actual Item in Terms of Color Due to the Lighting During Photo Shooting or the Monitor's Display "], "total_reviews": 136, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$59.99", "price": 59.99, "image": "https://m.media-amazon.com/images/I/416ViQzADQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HX4S3PX/ref=twister_B084JPRJXD?_encoding=UTF8&psc=1", "value": "White", "price_string": "$69.99", "price": 69.99, "image": "https://m.media-amazon.com/images/I/31GW+yGlRNL.jpg"}]}, "seller_id": "A1EI9Y6Y2JDWY", "seller_name": "NOBPEINT", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07PX22S9F", "category": "garden", "query": "Bar Stools", "page": 107, "small_description_old": "About this item 360-degree swivel for seat and footrest,adjustable seat height A wide selection of products include pieces for the living room, dining room, bar, office. High-quality and innovative design Dimensions:15.2\"W*15.6\"D*21.7\"~29.5\"H;Seat:15.2W\"*15.6D\". Chrome base diameter:15.2\" Photo May Slightly Different From Actual Item in Terms of Color Due to the Lighting During Photo Shooting or the Monitor's Display \n \u203a See more product details"}, {"name": "1000ft BLACK MADE IN USA RG-11 COMMSCOPE F1177TSEF DIRECT BURIAL TRISHIELD COAXIAL DROP CABLE 14AWG GEL COATED BRAIDS PE JACKET BURIED FLOODED UNDERGROUND COAX CABLE REEL (LOWER SIGNAL LOSS OVER RG6)", "product_information": {"Manufacturer": "\u200eCommscope", "Part Number": "\u200eF--1177TSEF", "Item Weight": "\u200e1 pounds", "Size": "\u200e1000ft", "Color": "\u200eCOMMSCOPE RG11 F1177TSEF DIRECT BURIAL", "ASIN": "B07B9QWJW9", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#1,981 in F-Pin-Coaxial Tip Cables"], "Date First Available": "March 8, 2018"}, "brand": "Brand: PHAT SATELLITE INTL", "brand_url": "https://www.amazon.com/PHAT-SATELLITE-INTL/b/ref=bl_dp_s_web_10322686011?ie=UTF8&node=10322686011&field-lbr_brands_browse-bin=PHAT+SATELLITE+INTL", "full_description": "***SHIPPING IS NOT AVAILABLE TO: AP, APO, AE, AFO, MP, GU, HI, AK, VI, PR AND OTHER USA TERRITORY OUTSIDE OF THE IMMEDIATE 48 MAINLAND STATES***TRI Shield Underground Direct Burial RG-11 Coaxial CableIdeal for cable tv, satellite tv, audio/video applications, security/surveillance cameras and more", "pricing": "$330.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51dNdhBtwcL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a F-Pin-Coaxial Tip", "average_rating": 5, "small_description": ["***SHIPPING IS NOT AVAILABLE TO: AP, APO, AE, AFO, MP, GU, HI, AK, VI, PR AND OTHER USA TERRITORY OUTSIDE OF THE IMMEDIATE 48 MAINLAND STATES*** ", "CABLE SPECIFICATION: Made in USA - Commscope. Direct Burial Underground RG-11 Coaxial Cable. Solid Core Conductor 14AWG 75 Ohms. TRI Shield 60% Braided, 100% Foil Shield. Moisture and Soil Acidity Tolerance. GEL Coated Braids. ", "Gel Coated RG-11 Coaxial Cable for Direct Burial Application with Digital Cable TV, Satellite TV, Ham Radio Antenna, Cellular Signal Booster Transmission Cable. RG11 is highly recommended for coaxial cables that exceeds over 150ft. This combination is highly recommended and fully approved for use with most satellite and digital CATV and HDTV systems. These cables can also be used with standard cable TV and antennas for the best signal transfer with minimum loss. ", "USAGE: HD OVER THE AIR ANTENNA. DirecTV/ Dish Network, and Other Satellite . Ham Radio, Short Wave Antenna usage. Cable Modem Internet. HD Digital Cable TV. Cellular Boost Antenna. TV/Video Applications. Security and Surveillance Video Camera Systems. ", "PLEASE SEE ALL AVAILABLE PROFESSIONAL GRADE CABLES WITH VARIOUS SPECIFICATIONS by PHAT SATELLITE INTL. SEARCH ON AMAZON FOR PHAT SATELLITE INTL "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A380AQVAFE6T5Y", "seller_name": "Phat Satellite", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07B9QWJW9", "category": "electronics", "query": "Signal Boosters", "page": 298, "small_description_old": "About this item\n \n***SHIPPING IS NOT AVAILABLE TO: AP, APO, AE, AFO, MP, GU, HI, AK, VI, PR AND OTHER USA TERRITORY OUTSIDE OF THE IMMEDIATE 48 MAINLAND STATES*** CABLE SPECIFICATION: Made in USA - Commscope. Direct Burial Underground RG-11 Coaxial Cable. Solid Core Conductor 14AWG 75 Ohms. TRI Shield 60% Braided, 100% Foil Shield. Moisture and Soil Acidity Tolerance. GEL Coated Braids. Gel Coated RG-11 Coaxial Cable for Direct Burial Application with Digital Cable TV, Satellite TV, Ham Radio Antenna, Cellular Signal Booster Transmission Cable. RG11 is highly recommended for coaxial cables that exceeds over 150ft. This combination is highly recommended and fully approved for use with most satellite and digital CATV and HDTV systems. These cables can also be used with standard cable TV and antennas for the best signal transfer with minimum loss. USAGE: HD OVER THE AIR ANTENNA. DirecTV/ Dish Network, and Other Satellite . Ham Radio, Short Wave Antenna usage. Cable Modem Internet. HD Digital Cable TV. Cellular Boost Antenna. TV/Video Applications. Security and Surveillance Video Camera Systems. PLEASE SEE ALL AVAILABLE PROFESSIONAL GRADE CABLES WITH VARIOUS SPECIFICATIONS by PHAT SATELLITE INTL. SEARCH ON AMAZON FOR PHAT SATELLITE INTL \n \u203a See more product details"}, {"name": "GAOMU IPX6 Waterproof Bluetooth Earbuds, True Wireless Earbuds, 20H Cyclic Playtime Headphones with Charging Case and mic for Android, in-Ear Stereo Earphones Headset for Sport Black", "product_information": {"Package Dimensions": "5.2 x 3.31 x 1.38 inches", "Item Weight": "2.25 ounces", "ASIN": "B092W6WNH4", "Batteries": "1 Lithium ion batteries required. (included)", "Customer Reviews": {"ratings_count": 31, "stars": "3.6 out of 5 stars"}, "Best Sellers Rank": ["#2,070 in Earbud & In-Ear Headphones"], "Date First Available": "April 19, 2021", "Manufacturer": "GAOMU"}, "brand": "Brand: GAOMU", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=GAOMU", "full_description": "2022 New Bluetooth 5.0 3D Stereo EarphonesWhy do You Choose Our Bluetooth Headphones?\u25cf The most advanced chipThe chip we useis the Qualcomm QCC3020. It\u2019s the most advanced TWS (True Wireless Stereo) Earbuds chip there is. Support Apt-X audio tech and CVC 8.0 noise reduction technology; bring you the lossless, authentic, deep bass audio.\u25cf\u00a0 Smart Noise Canceling Technology and Bluetooth 5.0Aristokool Wireless earphones use the latest Bluetooth V5.0 chip set to ensure a stable and seamless connection with Bluetooth 5.0 and high-sensitivity devices up to 10 meters away. Smart Noise Canceling technology intelligently filters the noise of the environment.Wireless Bluetooth Earphones can play music last up to 4 hours of music playback time and 20 hours of battery life.The charging box supports fast charging, and it can be used for one hours after charging for 15 minutes.\u25cf\u00a0 Touch-controlled Wireless Earphones, One-Step ConnectingAristokool wireless headphones are compatible with any smartphones. Just one click on the multifunction button can play music, change songs, adjust volume, answer calls, reject calls, divert calls and Siri.Specification:\u25cf Product Name: Y30\u25cf Bluetooth Version: 5.0\u25cf Bluetooth Transmission Range: 15m{50feet}\u25cf Weight: 90 g\u25cf Earbuds Battery Capacity: 65mAh *2\u25cf Input: 5 V / 1A\u25cf Transmission Frequency: (2400-2483.5) MHz\u3010PACKAGE INCLUDING\u3011\u25b2 Battery Box x 1\u25b2USB charging cable* 1\u25b2 User Manual x 1\u25b2 Bluetooth Headphones x 1 pair\u00a0The two charging contacts of the earphones are pasted with a blue anti-static film,remove it and you can use the earphones,Charge and open the connection", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41DOOAWIP+L.jpg", "https://m.media-amazon.com/images/I/41PIjFXLLdL.jpg", "https://m.media-amazon.com/images/I/51DkYJXXkGL.jpg", "https://m.media-amazon.com/images/I/51AeMoPcD7L.jpg", "https://m.media-amazon.com/images/I/41gx7xBTKrL.jpg", "https://m.media-amazon.com/images/I/51oJOt2U6iL.jpg", "https://m.media-amazon.com/images/I/51muP9FokxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Headphones \u203a Earbud Headphones", "average_rating": 3.6, "small_description": ["\u266c\u3010Bluetooth 5.0 & One-Step Pairing \u3011The latest Bluetooth 5.0 with TWS technology on both bluetooth earbuds, provides faster pairing, stable connection and signal transmission (50ft no-obstacle range). Only need to take out two earbuds or any single earbud after you open Bluetooth function, they will open and connect automatically. Powerful Bluetooth 5.0 chip that perfectly matches tablets, laptops, iOS, and Android smartphones! ", "\u266c\u3010Easy Touch Control\u3011Features with touch control sensors, can largely minimize the pressure to your ears when you touch the button for various functions. The touch program adopts a special software, single-touch [non-function], double-touch to play/pause music, which effectively reduce touch by mistakes or inaccurate touch. ", "\u266c\u3010Secure Fit & IPX6 Waterproof\u3011Mini and Ultra Lightweight in-ear design guarantees stability and comfortable. The sealed shell and interior Nano coating can easily repel sweat and rain, Ideal for workout, running, jogging, hiking, biking, gym, doing yoga, travelling etc. ", "\u266a\u3010Superior Sound Quality\u3011: Experience crisp, high-fidelity sound while Bluetooth 5.0 provides faster pairing and a stable, efficient wireless connection.The two charging contacts of the earphones are pasted with a blue anti-static film,remove it and you can use the earphones,Charge and open the connection ", "\u266a\u3010Pairing in one step\u3011Remove 2 headsets from the charging box. They are automatically connected to each other. In just one step, you can enter your phone's Bluetooth settings to pair the earphones. "], "total_reviews": 31, "total_answered_questions": "", "customization_options": "", "seller_id": "AOALUQKQ5LFCK", "seller_name": "yumou", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B092W6WNH4", "category": "electronics", "query": "Bluetooth Headsets", "page": 75, "small_description_old": "About this item\n \n\u266c\u3010Bluetooth 5.0 & One-Step Pairing \u3011The latest Bluetooth 5.0 with TWS technology on both bluetooth earbuds, provides faster pairing, stable connection and signal transmission (50ft no-obstacle range). Only need to take out two earbuds or any single earbud after you open Bluetooth function, they will open and connect automatically. Powerful Bluetooth 5.0 chip that perfectly matches tablets, laptops, iOS, and Android smartphones! \u266c\u3010Easy Touch Control\u3011Features with touch control sensors, can largely minimize the pressure to your ears when you touch the button for various functions. The touch program adopts a special software, single-touch [non-function], double-touch to play/pause music, which effectively reduce touch by mistakes or inaccurate touch. \u266c\u3010Secure Fit & IPX6 Waterproof\u3011Mini and Ultra Lightweight in-ear design guarantees stability and comfortable. The sealed shell and interior Nano coating can easily repel sweat and rain, Ideal for workout, running, jogging, hiking, biking, gym, doing yoga, travelling etc. \u266a\u3010Superior Sound Quality\u3011: Experience crisp, high-fidelity sound while Bluetooth 5.0 provides faster pairing and a stable, efficient wireless connection.The two charging contacts of the earphones are pasted with a blue anti-static film,remove it and you can use the earphones,Charge and open the connection \u266a\u3010Pairing in one step\u3011Remove 2 headsets from the charging box. They are automatically connected to each other. In just one step, you can enter your phone's Bluetooth settings to pair the earphones."}, {"name": "GSPY Lavender Scented Candles - I Miss You Gifts, Thinking of You Gifts for Women, Her, Girlfriend, Boyfriend, Friends - A Hug in a Jar, Sending Hugs - Divorce, Get Well, Mothers Day, Sympathy Gifts", "product_information": {"Package Dimensions": "4.72 x 3.82 x 3.82 inches", "Item Weight": "9 ounces", "Manufacturer": "GSPY", "ASIN": "B08KY1G31G", "Customer Reviews": {"ratings_count": 171, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#29,129 in Home & Kitchen (See Top 100 in Home & Kitchen) #150 in Jar Candles"], "Specific Uses For Product": "Decoration", "Scent": "Lavender", "Batteries Required?": "No"}, "brand": "Visit the GSPY Store", "brand_url": "https://www.amazon.com/stores/GSPY/page/CBB5BBD6-2A79-43E5-B6D8-E3249E1F7095?ref_=ast_bln", "full_description": "", "pricing": "$22.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51yw6DEVWvL.jpg", "https://m.media-amazon.com/images/I/41VB53YRpDL.jpg", "https://m.media-amazon.com/images/I/51+U2mECQFL.jpg", "https://m.media-amazon.com/images/I/51495BQKMWL.jpg", "https://m.media-amazon.com/images/I/51bQmoGS1xL.jpg", "https://m.media-amazon.com/images/I/41tpfprvEfL.jpg", "https://m.media-amazon.com/images/I/51d68PSaE1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Candles & Holders \u203a Candles \u203a Jar Candles", "average_rating": 4.7, "small_description": ["Thoughtful gifts for women; Characterized by its saying \u201cA hug in a jar\u201d, this candle makes a great present for any woman who needs a hug right now; When we can\u2019t give hugs in person, this is a thoughtful gift for her; Lovely little gifts for best friend, bff, bestie, female friend, mom, mother in law, wife, girlfriend, aunt, daughter, daughter in law, sister, sister in law, granddaughter, grandma, cousin, niece, coworker ", "A huge hit at many occasions; Gifting this candle is a unique way to cheer her up during isolation and let her know you are thinking of her; Anyone who is going through a hard time needs this sentiment; Perfect for quarantine, lockdown, miss you gift, thinking of you gift, get well gift, get well soon gift, birthday, chemotherapy, lost loved one, cancer treatment gift, breakup, divorce, miscarriage, condolence, bereavement, surgery recovery gift ", "50 hours burning time; Poured in a reusable glass jar, 9oz cotton wick scented candle will burn for approximately 50 hours in typical conditions ", "100% natural soy wax; Scented soy candle is made from natural soy wax; Soy wax provides a slower and cleaner burn than paraffin, which is better for environment, burns more sufficiently and longer ", "Lavender fragrance; Infused with premium lavender fragrances, this candle is great for sleep-promoting and relief from anxiety, depression, and stress; A perfect addition to bathroom, bedroom, kitchen, living room, office etc "], "total_reviews": 171, "total_answered_questions": "", "customization_options": "", "seller_id": "AW5SA6TSQ79NC", "seller_name": "GSPY", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08KY1G31G", "category": "garden", "query": "Candles", "page": 188, "small_description_old": "About this item\n \nThoughtful gifts for women; Characterized by its saying \u201cA hug in a jar\u201d, this candle makes a great present for any woman who needs a hug right now; When we can\u2019t give hugs in person, this is a thoughtful gift for her; Lovely little gifts for best friend, bff, bestie, female friend, mom, mother in law, wife, girlfriend, aunt, daughter, daughter in law, sister, sister in law, granddaughter, grandma, cousin, niece, coworker A huge hit at many occasions; Gifting this candle is a unique way to cheer her up during isolation and let her know you are thinking of her; Anyone who is going through a hard time needs this sentiment; Perfect for quarantine, lockdown, miss you gift, thinking of you gift, get well gift, get well soon gift, birthday, chemotherapy, lost loved one, cancer treatment gift, breakup, divorce, miscarriage, condolence, bereavement, surgery recovery gift 50 hours burning time; Poured in a reusable glass jar, 9oz cotton wick scented candle will burn for approximately 50 hours in typical conditions 100% natural soy wax; Scented soy candle is made from natural soy wax; Soy wax provides a slower and cleaner burn than paraffin, which is better for environment, burns more sufficiently and longer Lavender fragrance; Infused with premium lavender fragrances, this candle is great for sleep-promoting and relief from anxiety, depression, and stress; A perfect addition to bathroom, bedroom, kitchen, living room, office etc"}, {"name": "JVC HR-XVC38BU Hi-Fi Stereo DVD with Video Cassette Recorder HDMI", "product_information": {"Brand Name": "\u200eJVC", "Item Weight": "\u200e8.28 pounds", "Package Dimensions": "\u200e20 x 14.02 x 7.01 inches", "Is Discontinued By Manufacturer": "\u200eNo", "ASIN": "B00LT8T9F4", "Customer Reviews": {"ratings_count": 2, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#522,033 in Electronics (See Top 100 in Electronics) #228 in DVD Recorders"], "Date First Available": "July 14, 2014"}, "brand": "Visit the JVC Store", "brand_url": "https://www.amazon.com/stores/JVC/page/BB973CF3-61F3-46DE-8DF6-7B85A2857491?ref_=ast_bln", "full_description": "The HR-XVC38B features into a slim, low profile package, standing just 3.1 inches high. For enhanced convenience, this deck offers a six-digit display with a real-time counter. The HR-XVC38B offers coaxial PCM-audio and component video outputs, multi-session CD playback, 5.1 channel Dolby Digital/DTS output, 14-bit/108MHz video digital-to-analog converter (DAC), and 24-bit/96kHz audio DAC.", "pricing": "", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon. Only 2 left in stock - order soon. Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/314ixpgjPOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a DVD Players & Recorders \u203a DVD Recorders", "average_rating": 4.2, "small_description": [""], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A1MUOEP0HRBHSB", "seller_name": "Family Fun Store", "fulfilled_by_amazon": true, "fast_track_message": " \n \n \n \n \n \n", "aplus_present": "", "asin": "B00LT8T9F4", "category": "electronics", "query": "Blu-ray Players & Recorders", "page": 17, "small_description_old": ""}, {"name": "KAANAS Women's Sagrantino Pointy Heeled Mule Shoe", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5 x 5 x 0.7 inches; 10.4 Ounces", "Item model number\n \u200f": "\u200e\n B00020N", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n April 25, 2019", "Manufacturer\n \u200f": "\u200e\n KAANAS", "ASIN\n \u200f": "\u200e\n B07R444XLK", "Best Sellers Rank": "#2,926,246 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#5,445 in Women's Mules & Clogs", "#5,445 in Women's Mules & Clogs": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the KAANAS Store", "brand_url": "https://www.amazon.com/stores/KAANAS/page/0FAEEB39-47DF-4A04-A26A-C3CA3DDC3EAF?ref_=ast_bln", "full_description": "KAANAS is a culture conscious footwear brand that strives to create ethically Responsible products that marry playful, feminine design to classic silhouettes. Unexpected modernity, bold prints, and quality craftsmanship are the signature elements that define every collection. KAANAS originates from the word used by the wayuu tribe; acenturies-\u00ad\u00adold matriarchal society from the guajira peninsulain colombia, for the intricate application of their signature weaves. While on a trip to laguajira in 2013, sisters Liliana and natalia acevedo were so moved by the beauty of the wayuu\u2019s textiles they set out to establish a company that would offer footwear designs featuring unique textiles sourced from around the globe. Each shoe bearing KAANAS\u2019 golden script logo is still handcrafted by master artisans.", "pricing": "$75.58$161.39", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/411sSZ8lmlL.jpg", "https://m.media-amazon.com/images/I/51PYM3A2gDL.jpg", "https://m.media-amazon.com/images/I/41aNhmI4ygL.jpg", "https://m.media-amazon.com/images/I/31feBdBzuCL.jpg", "https://m.media-amazon.com/images/I/41xghUwp6VL.jpg", "https://m.media-amazon.com/images/I/419FlY08jML.jpg", "https://m.media-amazon.com/images/I/41jBP0FTT4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Mules & Clogs", "average_rating": 5, "small_description": ["Imported ", "Synthetic sole ", "Shaft measures approximately low-top from arch ", "Regular: true to size ", "Half sizes should size up if regular-wide width or size down if narrow width "], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "5", "asin": "B07R63CQJD"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B07R444XLF"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B07R8B1R2R"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B07R54PMHD"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B07R8B3JJJ"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B07R764L1M"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B07R54PMHB"}, {"is_selected": false, "is_available": false, "value": "7 Regular US", "asin": "B07RBGBXB8"}, {"is_selected": false, "is_available": false, "value": "10 Regular US", "asin": "B07R54NQRT"}, {"is_selected": false, "is_available": false, "value": "11 Regular US", "asin": "B07R8B1R2C"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07R63CFVV/ref=twister_B093X1ZHBS", "value": "Black Snake", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ak9bHcOXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07R765FVX/ref=twister_B093X1ZHBS", "value": "Grey Snake", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41HeBCXrDvL.jpg"}, {"is_selected": true, "url": null, "value": "Leopard", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/411sSZ8lmlL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07R54PMHD", "category": "fashion", "query": "Women's Mules & Clogs", "page": 44, "small_description_old": "Imported Synthetic sole Shaft measures approximately low-top from arch Regular: true to size Half sizes should size up if regular-wide width or size down if narrow width"}, {"name": "Sunflower Wall Art Painting Decor- Yellow Floral Flower Canvas Picture Black and White Posters Prints Nature Bee Rustic Farmhouse Artwork Living Room Bathroom Kitchen Decoration unframed 12x16 inch", "product_information": {"Product Dimensions": "16 x 12 x 0.05 inches", "Item Weight": "6.4 ounces", "Manufacturer": "HZSYF", "ASIN": "B08CHHHB46", "Customer Reviews": {"ratings_count": 509, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#179,767 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,866 in Posters & Prints"], "Number of Pieces": "3", "Batteries Required?": "No"}, "brand": "Brand: HZSYF", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=HZSYF", "full_description": "Sunflower Painting Wall Decor Bee Prints Wall Art Contemporary Picture Art Piece 3 Set Abstract Landscape Photo Canvas Home Office Decorations Nursery Bedroom Flower Plants Paintings 12''x 16'' Vivid Color Yellow Flower Painting Wall Decor Add a sunflower canvas pictures to your office to give you the temporary relax when you need it. Nature flower plant canvas art,animal bee pictures,perfect wall pictures for hotel,restaurant,studio,farm,dorm,teens room,girls room,kids room,yellow bedroom decorations,salon,spa,hallway,waiting rooms,studio,laundry,passageway,study,etc. Black White Sunflower Painting Nice Gift Sunflower wall art 3 piece,each panels is 12\u201dx 16\u201d, total 3 panels.Amazing scenery painting picture,sunflower photo bee prints on waterproof sunfast canvas material.Good present express your love for your family and friends.Giving him/her a gift on a special occasion, holiday and gift ideal like Valentine's Day,all saint's Day, Christmas, New Year, Mother's Day, Father's Day, Birthday and others. About canvas poster Canvas picture print art is a modern way to decor house,bringing some color back in subtly for plain wall,full of vitality in room.We put our best efforts into the pursuit of high-quality products and services that satisfy our customers.We are a art factory and have all kind of canvas prints picture,such as abstract modern,animals,seascape,scenery,movie hero,inspirational quotes.If you have any questions about our canvas art, please free contact our store. PLEASE NOTE: Canvas poster only, frame isn't included It is canvas prints,not hand-painted painting,there is not difference in the product itself,but colors may appear slightly different to each user due to individual monitors.", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51spr5yizCL.jpg", "https://m.media-amazon.com/images/I/51fGLDZ81uL.jpg", "https://m.media-amazon.com/images/I/41SZHBBqC0L.jpg", "https://m.media-amazon.com/images/I/51lc8mf4-IL.jpg", "https://m.media-amazon.com/images/I/51EyNm5yZ9L.jpg", "https://m.media-amazon.com/images/I/512rj37DHtL.jpg", "https://m.media-amazon.com/images/I/51kDZe9m9VL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": 4, "small_description": ["Sunflower Decor Painting: Brilliant flowers in bloom,bee coming,perfect wall decor create a kind of vitality to your home.Black white sunflower canvas art pictures with modern and nordic appearance,it can enhance the beauty of your spce room,make the plain wall looks nice. Sunflower pictures wall decoration good for bathroom,kitchen,bedroom,living room,gust room,dinning room,cafe,cuadros,bar and so on. ", "Sunflower Wall Decor: Sunflower decor for bathroom bedroom kitchen living room,make the room has a nature flower feeling. These black and white wall art sunflower pictures wall decor are full pastoral and country,abstract and fashion.Beautiful country yellow flower wall art picture painting and perfect gift,suitable for teens,girls,kids,friends,men and women on festival and some celebrate days,such as Birthday,Christmas,Mother's Day,Valentine,Easter,Black Friday,Cyber Monday. ", "3 Picture Set Giclee Print Art Size: Giclee prints modern poster,nature bee sunflower picture posters photo printed on premium canvas,waterproof, UV resistant, fading resistant indoor.Each wall panel art size is 12x16inchx3pcs (30x40cmx3pcs). Sunflower painting wall decor are packed in cute tube. ", "No Frame Black White Sunflower Posters Prints: The sunflower canvas wall art are unframed,canvas only,and we reserved white border,so they can be fixed on wooden bar,you can choose your favourite style framed to frame it.If you don't need the white border,you can cut them off and hanging on wall directly without frame. ", "More about canvas print: Canvas picture art prints wall decor perfect for any contemporary, modern, vintage or retro decor indoor wall art.We have rich experience in canvas printing field,many themes for your home,office,salon,such as landscape,nature,animal,fashion,spa,movie,beach,quotes and sayings etc.We are committed to quality canvas painting with appropriate price.If you are not satisfied with the product, please contact our store.. "], "total_reviews": 509, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08CHGD5LK/ref=twister_B09NLPNCS5", "value": "Sunflower-b", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51S9Ohq43wL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08CHH7CMM/ref=twister_B09NLPNCS5", "value": "Sunflower-d", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51vUZk-tCuL.jpg"}, {"is_selected": true, "url": null, "value": "Sunflower-c", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51spr5yizCL.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08CHGD5LK/ref=twister_B09NLPNCS5", "value": "12 x 16 in", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "12 x 16 in No Framed", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A1MSOUMOIS7I37", "seller_name": "Pujidao-US", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08CHHHB46", "category": "garden", "query": "Wall art", "page": 320, "small_description_old": "About this item Sunflower Decor Painting: Brilliant flowers in bloom,bee coming,perfect wall decor create a kind of vitality to your home.Black white sunflower canvas art pictures with modern and nordic appearance,it can enhance the beauty of your spce room,make the plain wall looks nice. Sunflower pictures wall decoration good for bathroom,kitchen,bedroom,living room,gust room,dinning room,cafe,cuadros,bar and so on. Sunflower Wall Decor: Sunflower decor for bathroom bedroom kitchen living room,make the room has a nature flower feeling. These black and white wall art sunflower pictures wall decor are full pastoral and country,abstract and fashion.Beautiful country yellow flower wall art picture painting and perfect gift,suitable for teens,girls,kids,friends,men and women on festival and some celebrate days,such as Birthday,Christmas,Mother's Day,Valentine,Easter,Black Friday,Cyber Monday. 3 Picture Set Giclee Print Art Size: Giclee prints modern poster,nature bee sunflower picture posters photo printed on premium canvas,waterproof, UV resistant, fading resistant indoor.Each wall panel art size is 12x16inchx3pcs (30x40cmx3pcs). Sunflower painting wall decor are packed in cute tube. No Frame Black White Sunflower Posters Prints: The sunflower canvas wall art are unframed,canvas only,and we reserved white border,so they can be fixed on wooden bar,you can choose your favourite style framed to frame it.If you don't need the white border,you can cut them off and hanging on wall directly without frame. More about canvas print: Canvas picture art prints wall decor perfect for any contemporary, modern, vintage or retro decor indoor wall art.We have rich experience in canvas printing field,many themes for your home,office,salon,such as landscape,nature,animal,fashion,spa,movie,beach,quotes and sayings etc.We are committed to quality canvas painting with appropriate price.If you are not satisfied with the product, please contact our store.."}, {"name": "Wii U Microphone", "product_information": {"ASIN": "B009AFLXZM", "Release date": "November 18, 2012", "Customer Reviews": {"ratings_count": 328, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#25,922 in Video Games (See Top 100 in Video Games) #76 in Wii U Controllers"], "Pricing": "The strikethrough price is the List Price. Savings represents a discount off the List Price.", "Product Dimensions": "3.54 x 2.56 x 10.24 inches; 8.16 Ounces", "Binding": "Video Game", "Rated": "Rating Pending", "Item model number": "WUPAMWKA", "Is Discontinued By Manufacturer": "No", "Item Weight": "8.2 ounces", "Manufacturer": "Nintendo", "Date First Available": "September 14, 2012"}, "brand": "Visit the Nintendo Store", "brand_url": "https://www.amazon.com/stores/Nintendo/page/BE0EB5D0-0AD6-4564-8BC5-4A129A3A9CFD?ref_=ast_bln", "full_description": "Let your voice ring out. Sing, talk, or have a party-the Wii U Microphone gives you a voice. Specially designed for use with Wii U, the microphone easily connects to the Wii U console and can be used with any Wii U Microphone compatible game. Look on the back of Wii U game packaging to see which games use the Wii U Microphone. Not compatible with the Wii system or games.", "pricing": "$26.95", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41CqcUMrAIL.jpg", "https://m.media-amazon.com/images/I/41MEa-wGFmL.jpg", "https://m.media-amazon.com/images/I/31xRWrGUDbL.jpg", "https://m.media-amazon.com/images/I/31+3AskHs4L.jpg", "https://m.media-amazon.com/images/I/31yCicW35XL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a Legacy Systems \u203a Nintendo Systems \u203a Wii U \u203a Accessories \u203a Controllers", "average_rating": 4.5, "small_description": ["Brand New in box. The product ships with all relevant accessories "], "total_reviews": 328, "total_answered_questions": "", "model": "WUPAMWKA", "customization_options": "", "seller_id": "A5W45QDYAHWB2", "seller_name": "Direct Distributor", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B009AFLXZM", "category": "electronics", "query": "Nintendo Switch", "page": 12, "small_description_old": "About this item Brand New in box. The product ships with all relevant accessories"}, {"name": "Hanes Womens Silk Reflections Sheer Knee Highs 2-Pack_Jet_One Size", "product_information": {"Item Weight\n \u200f": "\u200e\n 1.28 Ounces", "Item model number\n \u200f": "\u200e\n 00725", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 9, 2015", "ASIN\n \u200f": "\u200e\n B015H77AF8", "Best Sellers Rank": "#4,955,304 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#3,501 in Women's Sheers", "#3,501 in Women's Sheers": ""}, "brand": "Visit the Hanes Store", "brand_url": "https://www.amazon.com/stores/Hanes/page/F83022EC-A709-4B2F-BCB7-7BBFA1896AB0?ref_=ast_bln", "full_description": "Are you partial to pants? Or do you prefer to live in long skirts? Either way we have your legwear solution.Our knee highs are silky sheer and provide a sleek fit and sensuous feel.Wide top band stays up without binding for all day comfort.Perfect for open toe shoes.One size fits most.", "pricing": "$7.92", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41ZfG-lYnUL.jpg", "https://m.media-amazon.com/images/I/41ZfG-lYnUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Socks & Hosiery \u203a Sheers", "average_rating": "", "small_description": ["Spandex,Nylon ", "Nylon/spandex ", "Our knee highs are silky sheer and provide a sleek fit and sensuous feel. ", "Wide top band stays up without binding for all day comfort. ", "Perfect for open toe shoes. ", "One size fits most. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2EDR7YR1BSPTD", "seller_name": "Under Moments", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B015H77AF8", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 30, "small_description_old": "Spandex,Nylon Nylon/spandex Our knee highs are silky sheer and provide a sleek fit and sensuous feel. Wide top band stays up without binding for all day comfort. Perfect for open toe shoes. One size fits most."}, {"name": "Mens Linen Shirt,Men's Striped Shirts Casual Short Sleeve Button Down Shirts Regular Fit Hawaiian Shirts Beach Tees Tops", "product_information": {"Item model number\n \u200f": "\u200e\n \u200e Clearance!Hot!Cheap!", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 9, 2022", "Manufacturer\n \u200f": "\u200e\n mens polo shirts slim fit henley shirts for men", "ASIN\n \u200f": "\u200e\n B09S3H2X6N", "": ""}, "brand": "Brand: Hosamtel", "brand_url": "https://www.amazon.com/Hosamtel/b/ref=bl_sl_s_ap_web_15069747011?ie=UTF8&node=15069747011&field-lbr_brands_browse-bin=Hosamtel", "full_description": "\ud83d\udc93 Welcome to Hosamtel Store \ud83d\udc93 \ud83d\udc96 About Big and Tall Hoodies for Men \ud83d\udc96 \ud83d\udc9c\u3010Gender\u3011Men\ud83d\udc9c\u3010Season\u3011Autumn,Winter \ud83d\udc9c\u3010Style\u3011Casual\ud83d\udc9c\u3010Sleeve Type\u3011Long Sleeve \ud83d\udc9c\u3010Occasion\u3011Daily Wear, Casual, Leisure Activities, Work, Sports, Golfing, Tennis, Running, Meeting, Wedding, Dating ,Travel, Business,Evening out, Outdoor activities or Formal Place etc. \ud83d\udc9b If you receive a damaged or wrong item, please contact us and attach a picture, we will provide you with a satisfactory solution within 24 hours!!!\u2764\ufe0f Fashion Mens Hoodies Sweatshirts \u2764\ufe0fmen's hoodies drawstring athletic mens sweatshirts long sleeve gym pullover crewneck sweatshirts tops men's hoodies drawstring pocket men's square athletic pullover long sleeve hooded sweatshirt gym tops mens hoodies fleece winter warm thick coats jackets for men sherpa lined zip pullover hooded sweatershirt mens hoodies long sleeve athletic hooded sweatshirts drawstring pocket gym pullover men hoodies tops mens hoodies,drawstring pocket athletic sweatshirt long sleeve gym pullover men's simple hooded tops hoodies for men long sleeve athletic hooded sweatshirts drawstring pocket gym pullover men hoodies tops mens hoodies casual long sleeve mens athletic sweatshirt gym hoodies drawstring sport pullover with pocket tops hoodies for men blockcolor fashion athletic hoodies sport hooded sweatshirt fleece pullover tops with pocket ripped distressed destroyed jogger jeans teen boys washed slim fit leg denim pants men's button down shirt long sleeve dress shirt turndown-collar casual solid color shirt top blouse with pocket men's paisley print dress shirt long sleeve button down blouse casual lapel loose slim fit casual tops mens hoodies pullover graphic,2021 fall fashion geometric print button lightweight sweatshirts pocket hooded tops mens casual zip up hoodies jacket novelty color block slim lightweight zipper pockets workout hooded sweatshirt", "pricing": "$3.78$11.38", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/412AX6VrkyL.jpg", "https://m.media-amazon.com/images/I/310D2T0Ui-L.jpg", "https://m.media-amazon.com/images/I/518o8lUCYYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Shirts & Tees \u203a Button-Down Shirts", "average_rating": "", "small_description": ["men graphic tees big and tall funny graphic tees for men ", "\ud83d\udd25\ud83d\udd25 Best Gifts for Men /Husband / Fathers/ Boyfriends. Today's Deals Hallowen Christmas Mens Sweatshirts Hoodies Sweaters Big Promotion Buy 2 get 8% off Buy 3 get 12% off Buy 4 get 18% off,Buy 5 get 20% off \ud83d\udd25\ud83d\udd25 ", "\ud83c\udf80 \u3010About shipping\u3011Expedited Shipping: 3-5 Days. \ud83c\udf80 Standard shipping:10-18 Days. \ud83c\udf80 Within 24 Hours Shipping Out. \ud83c\udf80 ", "\ud83d\udc97\u3010Note\u3011 Size runs small, Please check the size chart before purchase and choose 1-2 size up. If you are not sure about the size, please send us a message. \ud83d\udc97 ", "\ud83d\udc97 Material: Made from premium and super soft polyester, good quality mens casual tops, casual t-shirt is breathable fabric, long sleeve pullover shirt, graphic funny tees tops blouses great for all summer, spring, autumn and winter days. ", "\ud83d\udc97 Occasions: Suitable for Casual Daily/Beach/ Travel/ Home/ Vacation/ Shopping/ Street/ Party/ Outdoor/ Club to Wear. You must have in your Wardrobe. ", "\ud83d\udc97 men's comfy soft short sleeve t-shirts fashion casual street printed crew neck shirt muscle tee shirts top classic polo shirts for men short sleeve zipper casual basic twill printed t-shirts workout gym golf tee tops men's golf polo shirts summer fashion star chain bronzing print short sleeve lapel soft quick dry regular fit men's short sleeve muscle athletic gradient t-shirts casual big & tall slim fit crewneck top blouse , \ud83d\udc97 dry fit polo shirts for men short sleeve jersey tech golf stripe shirt with pockets regular-fit t shirts mens summer beach lapel shirts cotton linen hawaiian print cool casual poplin short sleeve button down tops men's casual ethnic printed regular fit short sleeve hawaiian shirts button down up holiday polo blouse t-shirt mens shirts casual short sleeve summer 3d digital printing independence day graphic t-shirt short sleeve blouse, \ud83d\udc97 long sleeve tee shirts for men big and tall tee shirts for men loose fit plus size polo shirts for men with pocket long sleeve slim fit denim shirt for men classic slim fit long sleeve button up snap work shirts casual western cowboy jean jackets long sleeve tee shirts for men graphic funny vintage polo shirts for men dry fit shirts for men fashion long sleeve slim fit mens long sleeve t-shirt hip hop graphic printing slim-fit crew neck casual tops fall pullover tie dye tee shirts blouse"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09S3H2X6N"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09S3BHZ9X"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09S3BN15C"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09S3C73DB"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09S3D9JYY"}], "Color": [{"is_selected": true, "url": null, "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412AX6VrkyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09S3JPMGT/ref=twister_B09S3JNYWK", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IkOA+X-uL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S3BN15C", "category": "fashion", "query": "Men's Henleys", "page": 155, "small_description_old": "men graphic tees big and tall funny graphic tees for men \ud83d\udd25\ud83d\udd25 Best Gifts for Men /Husband / Fathers/ Boyfriends. Today's Deals Hallowen Christmas Mens Sweatshirts Hoodies Sweaters Big Promotion Buy 2 get 8% off Buy 3 get 12% off Buy 4 get 18% off,Buy 5 get 20% off \ud83d\udd25\ud83d\udd25 \ud83c\udf80 \u3010About shipping\u3011Expedited Shipping: 3-5 Days. \ud83c\udf80 Standard shipping:10-18 Days. \ud83c\udf80 Within 24 Hours Shipping Out. \ud83c\udf80 \ud83d\udc97\u3010Note\u3011 Size runs small, Please check the size chart before purchase and choose 1-2 size up. If you are not sure about the size, please send us a message. \ud83d\udc97 \ud83d\udc97 Material: Made from premium and super soft polyester, good quality mens casual tops, casual t-shirt is breathable fabric, long sleeve pullover shirt, graphic funny tees tops blouses great for all summer, spring, autumn and winter days. \ud83d\udc97 Occasions: Suitable for Casual Daily/Beach/ Travel/ Home/ Vacation/ Shopping/ Street/ Party/ Outdoor/ Club to Wear. You must have in your Wardrobe. \ud83d\udc97 men's comfy soft short sleeve t-shirts fashion casual street printed crew neck shirt muscle tee shirts top classic polo shirts for men short sleeve zipper casual basic twill printed t-shirts workout gym golf tee tops men's golf polo shirts summer fashion star chain bronzing print short sleeve lapel soft quick dry regular fit men's short sleeve muscle athletic gradient t-shirts casual big & tall slim fit crewneck top blouse \n \ud83d\udc97 dry fit polo shirts for men short sleeve jersey tech golf stripe shirt with pockets regular-fit t shirts mens summer beach lapel shirts cotton linen hawaiian print cool casual poplin short sleeve button down tops men's casual ethnic printed regular fit short sleeve hawaiian shirts button down up holiday polo blouse t-shirt mens shirts casual short sleeve summer 3d digital printing independence day graphic t-shirt short sleeve blouse\ud83d\udc97 long sleeve tee shirts for men big and tall tee shirts for men loose fit plus size polo shirts for men with pocket long sleeve slim fit denim shirt for men classic slim fit long sleeve button up snap work shirts casual western cowboy jean jackets long sleeve tee shirts for men graphic funny vintage polo shirts for men dry fit shirts for men fashion long sleeve slim fit mens long sleeve t-shirt hip hop graphic printing slim-fit crew neck casual tops fall pullover tie dye tee shirts blouseShow more"}, {"name": "Fanyate Antique Industrial Wall Sconce, 2-Light Bathroom Light Fixture Oil Rubbed Bronze Vanity Light with Clear Glass Shade Suitable for Bathroom Living Room Hallway ORB, 2 Pack", "product_information": {"Brand": "\u200eFanyate", "Manufacturer": "\u200eFanyate", "Item Weight": "\u200e8.23 pounds", "Package Dimensions": "\u200e17.87 x 14.48 x 13.86 inches", "Color": "\u200e2-light", "Material": "\u200eMetal", "Finish Types": "\u200eAntique, Oil Rubbed", "Number of Lights": "\u200e2", "Voltage": "\u200e120 Volts", "Shade Material": "\u200eGlass", "Switch Installation Type": "\u200eWall Mount", "Batteries Required?": "\u200eNo", "ASIN": "B0928LGTVF", "Customer Reviews": {"ratings_count": 55, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#105,514 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #449 in Vanity Lighting Fixtures #523 in Wall Sconces"], "Date First Available": "April 12, 2021"}, "brand": "Visit the Fanyate Store", "brand_url": "https://www.amazon.com/stores/FANYATE/page/3FEECA21-8CA6-4BD5-87ED-D8109FA3BBB1?ref_=ast_bln", "full_description": "", "pricing": "$113.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41icQciKVIS.jpg", "https://m.media-amazon.com/images/I/51FdgLiXwYL.jpg", "https://m.media-amazon.com/images/I/41h973-HHqL.jpg", "https://m.media-amazon.com/images/I/41WqMTw0ylL.jpg", "https://m.media-amazon.com/images/I/41ERLF-S49S.jpg", "https://m.media-amazon.com/images/I/51p9SHK7fuS.jpg", "https://m.media-amazon.com/images/I/51es5xvX8zS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Wall Lamps & Sconces", "average_rating": 4.7, "small_description": ["\u3010ANTIQUE INDUSTRIAL STYLE\u3011Unique Oil Rubbed Bronze painting finished metal lamp body mated with clear glass shade, adding more antique and industrial atmosphere and bringing a quiet and comfortable feeling to your life. ", "\u3010PRODUCT INSPECTION\u3011The width of this light is 13.8'', the depth is 6.6,'' and the height is 9.8''. Compatible with E26 base bulb. The max wattage of the bulb is 60W. (Bulb is not included.) ", "\u3010EASY INSTALLATION\u3011Easy installation to save your time. The installation instruction and mounting screws are included in the package for your quick installation. ", "\u3010APPLICABLE SPACE\u3011These wall lights are suitable for any space you want to decorate. Not only suitable for bathroom, also living room, study, porch, kitchen, dining room, cafe, bar, bedroom, shop, lounge decoration. ", "\u3010GORGEOUS SHOPPING EXPERIENCE\u3011You can get not only good value from this lamp but also our services and a 1-year warranty that will guarantee your complete satisfaction with your purchase. "], "total_reviews": 55, "total_answered_questions": 5, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0928K612B/ref=twister_B096ZB8LX8?_encoding=UTF8&psc=1", "value": "1-light", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/411CDA4TOqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09G6JK316/ref=twister_B096ZB8LX8", "value": "1-light-gd", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wSnG8QgBL.jpg"}, {"is_selected": true, "url": null, "value": "2-light", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41icQciKVIS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GB7145B/ref=twister_B096ZB8LX8?_encoding=UTF8&psc=1", "value": "2-light-gd", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41NpLeINXmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09G6JF618/ref=twister_B096ZB8LX8", "value": "3-light-gd", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41kdLR2uyjL.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08Q3G5NQF/ref=twister_B096ZB8LX8?_encoding=UTF8&psc=1", "value": "1-pack", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "2-pack", "price_string": "", "price": 0, "image": null}]}, "seller_id": "AFODNMJ70CPS3", "seller_name": "Fanyate", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0928LGTVF", "category": "garden", "query": "Sconces", "page": 53, "small_description_old": "About this item \u3010ANTIQUE INDUSTRIAL STYLE\u3011Unique Oil Rubbed Bronze painting finished metal lamp body mated with clear glass shade, adding more antique and industrial atmosphere and bringing a quiet and comfortable feeling to your life. \u3010PRODUCT INSPECTION\u3011The width of this light is 13.8'', the depth is 6.6,'' and the height is 9.8''. Compatible with E26 base bulb. The max wattage of the bulb is 60W. (Bulb is not included.) \u3010EASY INSTALLATION\u3011Easy installation to save your time. The installation instruction and mounting screws are included in the package for your quick installation. \u3010APPLICABLE SPACE\u3011These wall lights are suitable for any space you want to decorate. Not only suitable for bathroom, also living room, study, porch, kitchen, dining room, cafe, bar, bedroom, shop, lounge decoration. \u3010GORGEOUS SHOPPING EXPERIENCE\u3011You can get not only good value from this lamp but also our services and a 1-year warranty that will guarantee your complete satisfaction with your purchase. \n \u203a See more product details"}, {"name": "Ortofon Stylus D 25M Replacement Stylus (Black)", "product_information": {"Item Weight": "0.353 ounces", "Package Dimensions": "1.5 x 1.42 x 1.34 inches", "ASIN": "B001IGMS28", "Item model number": "0020101", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#74,294 in Musical Instruments (See Top 100 in Musical Instruments) #731 in DJ Turntable Cartridges #27,443 in Music Recording Equipment"], "Is Discontinued By Manufacturer": "No", "Date First Available": "August 24, 2017"}, "brand": "Brand: Ortofon", "brand_url": "https://www.amazon.com/Ortofon/b/ref=bl_dp_s_web_2597938011?ie=UTF8&node=2597938011&field-lbr_brands_browse-bin=Ortofon", "full_description": "Stylus D 25M Replacement Stylus What's in the Box: Stylus D 25M Replacement Stylus Specifications Frequency range: 20 - 22000Hz Frequency response: 20 - 18000Hz 2/-3dB Tracking ability at 315Hz at recommended tracking force: 70 m Compliance dynamic lateral: 7m/mN Stylus type: Spherical Stylus tip radius: R 25m Equivalent stylus tip mass: 0.5mg Tracking force range: 2.0 - 3.0g (20 - 30mN) Tracking force recommended: 2.5g (25mN) Tracking angle: 20 Recommended for the following cartridges All super OM OM OMP TM Concorde cartridges for playing micro-groove records", "pricing": "$75.00", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41QeGxua+LL.jpg", "https://m.media-amazon.com/images/I/41sI6fQf0xL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Musical Instruments \u203a Electronic Music, DJ & Karaoke \u203a DJ Equipment \u203a Accessories \u203a Turntable Cartridges", "average_rating": 5, "small_description": [""], "total_reviews": 1, "total_answered_questions": "", "model": "0020101", "customization_options": "", "seller_id": "AKR88PAWTQVN2", "seller_name": "WORLD WIDE STEREO", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B001IGMS28", "category": "electronics", "query": "Turntables", "page": 50, "small_description_old": "Replacement Stylus for Ortofon D 25M Recommended for the following cartridges: all Super OM OM OMP TM Concorde cartridges for palying mico-groove records Features a Spherical stylus Recommended tracking force 2.5g"}, {"name": "Soft Headband Wireless Headphones for Sleep, Wireless Sleep Earbuds, Comfortable Headphones for Sleeping with Thin HD Stereo Speakers, Sleeping Headsets for Workout, Insomnia, Travel, Yoga, Sport\u2026", "product_information": {"Package Dimensions": "11.38 x 4.21 x 0.75 inches", "Item Weight": "4.6 ounces", "ASIN": "B09FYXV44L", "Item model number": "1", "Customer Reviews": {"ratings_count": 232, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#215 in Over-Ear Headphones #548 in Earbud & In-Ear Headphones"], "Date First Available": "September 14, 2021", "Manufacturer": "KAVECY"}, "brand": "Brand: KAVECY", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=KAVECY", "full_description": "", "pricing": "$18.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51Rov62dclL.jpg", "https://m.media-amazon.com/images/I/51IFahV4w3L.jpg", "https://m.media-amazon.com/images/I/51uYdetFkHL.jpg", "https://m.media-amazon.com/images/I/51Yp-0wnAEL.jpg", "https://m.media-amazon.com/images/I/51VgYEwU6mL.jpg", "https://m.media-amazon.com/images/I/518iMhHCSlL.jpg", "https://m.media-amazon.com/images/I/713F1DxXm-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Headphones \u203a Earbud Headphones", "average_rating": 4.3, "small_description": ["\u3010Headphones Wireless Headband for Sleep\u3011Headphones Wireless for Sleeping & Sports Headband 2 in 1. Wireless Headband features a soft headband design that allows you to listen to music without having to wear additional headphones, and protects you from being disturbed by your mess hair, and sweat. Built-in microphone to let you won't miss any callings. Perfect suitable for gym, workout, yoga, and other outdoor activities. Wireless headband is the cool tech gift for men/ women/ family/ teens. ", "\u3010Super Soft and Breathable Headband\u3011Sports Headband Music headphone is extremely soft and lightweight, which is made of durable braided cord and offer a breathable mesh lining, extremely stretchable, will easily stretch to fit all head sizes, also incredibly soft. Headphones are comfortable and breathable material washable, simply remove the speakers and clean the band. Wearing a headband to shading when sleeping is good for deep sleep. ", "\u3010Thin Speakers Music Headphones for Sleeping\u3011Fall Asleep with Your Selected Tunes. Built-in 2 ultra-thin speakers, devices control module is in the middle of headband, no press the ears. The headphones will let you surround yourself with an ultimate sound experience without disturbing. They can block environmental noise and help you drift off with your favorite music or audiobook. Compatible with Android and Ios or any other smartphones, iPad, Tablets. ", "\u3010Longer Service Time and Premium Audio\u3011Headphones with Wireless 5.0 HiFi advanced sound technology wireless headphones offer an upgraded rechargeable lithium battery, charge about 2-2.5 hours provide more than 10 hours of playing time. Fast paring speed, less power consuming. Quality chipsets ensure clear sound and lossless music even during sports. Built-in microphone and volume control buttons enable users to answer hands-free phone calls and use other functions. ", "\u3010Improved Quality After-sales service\u3011 Headphones Wireless headband creates a private space, not only make your sleep better but also enjoy your Hi-Fi music time, enjoy your life. We offer a warranty and technical services and will provide you with a solution within 12 hours. "], "total_reviews": 232, "total_answered_questions": 36, "model": "1", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09FYX9ZN7/ref=twister_B09JJSRXRK?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$18.99", "price": 18.99, "image": "https://m.media-amazon.com/images/I/41SbYXYDLTL.jpg"}, {"is_selected": true, "url": null, "value": "Gray", "price_string": "$18.99", "price": 18.99, "image": "https://m.media-amazon.com/images/I/51Rov62dclL.jpg"}]}, "seller_id": "A5W52DKU52SIS", "seller_name": "Xsadz Tec", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09FYXV44L", "category": "electronics", "query": "Headphones", "page": 23, "small_description_old": "About this item\n \n\u3010Headphones Wireless Headband for Sleep\u3011Headphones Wireless for Sleeping & Sports Headband 2 in 1. Wireless Headband features a soft headband design that allows you to listen to music without having to wear additional headphones, and protects you from being disturbed by your mess hair, and sweat. Built-in microphone to let you won't miss any callings. Perfect suitable for gym, workout, yoga, and other outdoor activities. Wireless headband is the cool tech gift for men/ women/ family/ teens. \u3010Super Soft and Breathable Headband\u3011Sports Headband Music headphone is extremely soft and lightweight, which is made of durable braided cord and offer a breathable mesh lining, extremely stretchable, will easily stretch to fit all head sizes, also incredibly soft. Headphones are comfortable and breathable material washable, simply remove the speakers and clean the band. Wearing a headband to shading when sleeping is good for deep sleep. \u3010Thin Speakers Music Headphones for Sleeping\u3011Fall Asleep with Your Selected Tunes. Built-in 2 ultra-thin speakers, devices control module is in the middle of headband, no press the ears. The headphones will let you surround yourself with an ultimate sound experience without disturbing. They can block environmental noise and help you drift off with your favorite music or audiobook. Compatible with Android and Ios or any other smartphones, iPad, Tablets. \u3010Longer Service Time and Premium Audio\u3011Headphones with Wireless 5.0 HiFi advanced sound technology wireless headphones offer an upgraded rechargeable lithium battery, charge about 2-2.5 hours provide more than 10 hours of playing time. Fast paring speed, less power consuming. Quality chipsets ensure clear sound and lossless music even during sports. Built-in microphone and volume control buttons enable users to answer hands-free phone calls and use other functions. \u3010Improved Quality After-sales service\u3011 Headphones Wireless headband creates a private space, not only make your sleep better but also enjoy your Hi-Fi music time, enjoy your life. We offer a warranty and technical services and will provide you with a solution within 12 hours."}, {"name": "ARC 575, 23\" Heavy Duty Stainless Steel Concave Comal Discada Disc Cooker Cazo Griddle Fryer Cookware, Great Comal para Tacos Tortillas Maker, Griddle Cooking Camping (Comal)", "product_information": {"Manufacturer": "ARC USA", "ASIN": "B0851Y9BDC", "Customer Reviews": {"ratings_count": 200, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#76,539 in Kitchen & Dining (See Top 100 in Kitchen & Dining) #156 in Griddles"]}, "brand": "Visit the ARC Advanced Royal Champion Store", "brand_url": "https://www.amazon.com/stores/ARCUSA/page/47660BA0-5083-4776-AB20-E5D3D1162795?ref_=ast_bln", "full_description": "", "pricing": "$63.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31OngiNHALS.jpg", "https://m.media-amazon.com/images/I/21duHP5HcIS.jpg", "https://m.media-amazon.com/images/I/41007z-UrHS.jpg", "https://m.media-amazon.com/images/I/317SD4pdo8S.jpg", "https://m.media-amazon.com/images/I/31lwLyVgYrS.jpg", "https://m.media-amazon.com/images/I/51dfNe0TuRS.jpg", "https://m.media-amazon.com/images/I/61Z0uAAkYlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Kitchen & Dining \u203a Cookware \u203a Griddles", "average_rating": 4.5, "small_description": ["Comal is made from high-quality NSF Stainless Steel. High-Quality Stainless Steel with Stay Cool Handles for Easy Grip. ", "Our decade disc cooker is a stainless steel Convex comal, Convex grilling area is perfect to stir heavy fry items like tacos, quesadillas, gorditas, fajitas, and much more! ", "The Stainless steel Convex comal is a very popular cooking utensil used among food vendors on the streets and in restaurants all over Mexico. ", "It used to cook different types of food like toast tortillas, fry fish, heating and cooking a wide variety of your favorite foods, and searing juices in the meat, great for tacos, quesadillas, gorditas, fajitas, and pambazos. ", "Usable on a Variety of Cooking Equipment or Cooking Assignments. Large cooking surface & Fits on most portable gas burner stove. "], "total_reviews": 200, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B087DVHZQ8/ref=twister_B08545Y4D1?_encoding=UTF8&psc=1", "value": "15.7'' X 1.25''", "price_string": "$41.99", "price": 41.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B087FC5XGD/ref=twister_B08545Y4D1?_encoding=UTF8&psc=1", "value": "15.7'' X 3.5''", "price_string": "$42.95", "price": 42.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B087F15639/ref=twister_B08545Y4D1?_encoding=UTF8&psc=1", "value": "21.25'' X 2.12''", "price_string": "$49.89", "price": 49.89, "image": null}, {"is_selected": true, "url": null, "value": "23'' X 5''", "price_string": "$63.95", "price": 63.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07V28RNX1/ref=twister_B08545Y4D1?_encoding=UTF8&psc=1", "value": "23'' X 5'' SET", "price_string": "$78.95", "price": 78.95, "image": null}]}, "seller_id": "AUCHE16YK7YRW", "seller_name": "ARC IMPORT CORP", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B0851Y9BDC", "category": "garden", "query": "China Cabinets", "page": 348, "small_description_old": "[HIGH QUALITY STAINLESS STEEL]: ARC concave comal is made from high quality NSF stainless steel. It is very thick and heavy duty stainless. [COOL ROLLED HANDLES]: The discada comal has two riveted handles which keep cool for easy to grip. [MANY KIND OF FOOD]: It suit for food like tortillas, tacos, discada, meat, quesadillas, gorditas, fajitas and pambazos, carne asada and so on. Excellent discada dis cooker and comal para tacos. [FRY AND SIMMER]: Tortillas, carne asada, meat or vegetable can be fried or simmered in the centre, while the taco can be warmed around the comal side. [USE WITH PORTABLE GAS STOVE]: Usable on a Variety of Cooking Equipment or Cooking Assignments. Large cooking surface & Fits on most portable gas burner stove."}, {"name": "Superbox S3 Pro Dual Band Wi-Fi 2.4Ghz 5Ghz Supports 6K Video", "product_information": {"Brand Name": "\u200eBRAATV", "Item Weight": "\u200e1 pounds", "Package Dimensions": "\u200e7.6 x 5.12 x 3.03 inches", "Item model number": "\u200eSuperbox S3 Pro", "ASIN": "B09LSKQF8C", "Customer Reviews": {"ratings_count": 23, "stars": "3.7 out of 5 stars"}, "Best Sellers Rank": ["#37,802 in Electronics (See Top 100 in Electronics) #334 in Streaming Media Players"], "Date First Available": "November 13, 2021"}, "brand": "Brand: BRAATV", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=BRAATV", "full_description": "The newest SuperBox S3 Pro is an advanced voice control IPTV box, with a brand new Bluetooth remote and built-in artificial intelligence system, you can easily speak to control your TV box. The box has 2GB of RAM and 32GB of storage, utilizes a quad-core ARM Cortex-A53 processor, supports Android 9.0 OS. The new model has a new flat rectangular shape of design with an additional led display and new interface, the SuperBox S3 Pro has also added more features. It adopts 2T2R WiFi technology makes our streaming device 60% faster and more stable. In conclusion, the SuperBox S3 Pro is really the game-changer in streamer, it is by far the most powerful and most user-friendly TV Box on the market.", "pricing": "$329.00", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31yObqoMbgL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Streaming Media Players", "average_rating": 3.7, "small_description": ["Built-in Voice Control System ", "Android 9.0 OS ", "Quad-core ARM Cortex-A53 Processor ", "2T2R( 2 Transmitter, 2 receivers) antenna and 2.4G/5G Dual Band WiFi ", "2GB DDR3 Memory ", "32GB eMMC Internal Storage ", "Support 4K@60fps "], "total_reviews": 23, "total_answered_questions": 31, "model": "\u200eSuperbox S3 Pro", "customization_options": "", "seller_id": "A24JUJCA2CASVL", "seller_name": "RcTechDistro", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09LSKQF8C", "category": "electronics", "query": "Streaming Media Players", "page": 15, "small_description_old": "About this item Built-in Voice Control System Android 9.0 OS Quad-core ARM Cortex-A53 Processor 2T2R( 2 Transmitter, 2 receivers) antenna and 2.4G/5G Dual Band WiFi 2GB DDR3 Memory 32GB eMMC Internal Storage Support 4K@60fps \n \u203a See more product details"}, {"name": "Sea Gull Lighting 85200-12 Wynfield One-Light Outdoor Wall Lantern with Clear Beveled Glass Panels, Black Finish", "product_information": {"Manufacturer": "\u200eSea Gull Lighting", "Part Number": "\u200e85200-12", "Item Weight": "\u200e8 ounces", "Product Dimensions": "\u200e9.75 x 6 x 9.75 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200e85200-12", "Is Discontinued By Manufacturer": "\u200eNo", "Size": "\u200eOne - Light", "Color": "\u200eBlack", "Style": "\u200eTraditional", "Finish": "\u200eClear", "Material": "\u200eGlass", "Shape": "\u200eA19", "Power Source": "\u200eWired Electric", "Voltage": "\u200e120 Volts", "Wattage": "\u200e100 watts", "Item Package Quantity": "\u200e1", "Number Of Pieces": "\u200e1", "Type of Bulb": "\u200eIncandescent - Medium Base A-19", "Measurement System": "\u200eEnglish/Standard", "Mounting Type": "\u200eProtruding", "Plug Format": "\u200eA- US style", "Switch Style": "\u200eToggle", "Special Features": "\u200eDimmable", "Usage": "\u200eCeiling fan", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Warranty Description": "\u200eAll products purchased have a 30-day replacement parts policy to ensure a fully working item. All products are covered under a 1-year warranty when purchased on amazon. The warranty period begins on the day the product is originally shipped. The warranty covers all of the items and conditions identified in the original manufacturers warranty. Some of the items specifically not covered by the warranty are loss and theft, water damage, customer abuse, and finish detoriation due to uv or coastal exposure.", "ASIN": "B003HBR86S", "Customer Reviews": {"ratings_count": 11, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#563,924 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #3,041 in Patio Wall Light Fixture"], "Domestic Shipping": "Item can be shipped within U.S.", "International Shipping": "This item can be shipped to select countries outside of the U.S. Learn More", "Date First Available": "April 15, 2010"}, "brand": "Visit the Sea Gull Lighting Store", "brand_url": "https://www.amazon.com/stores/Generation+Lighting+Sea+Gull+Collection/page/CE45CBF2-F073-4374-9C84-3577DA294243?ref_=ast_bln", "full_description": "The Sea Gull Lighting Wynfield one light outdoor wall fixture in black enhances the beauty of your property, makes your home safer and more secure, and increases the number of pleasurable hours you spend outdoors. The Wynfield collection by Sea Gull Lighting complements classical home designs with its soft curves and colonial accents. A Black Powdercoat finish over a durable cast aluminum body adds dependable quality to an enduring style. Either Frosted glass or Clear Beveled glass give the fixtures distinct appeal. The assortment includes small, medium and large one-light outdoor wall lanterns, a two-light outdoor wall lantern, a two-light, outdoor post lantern and a two-light outdoor ceiling flush mount. The fixtures with Frosted glass are also available in an ENERGY STAR-qualified fluorescent version, and the one-light fixtures with Clear Beveled glass can easily convert to LED by purchasing LED replacement lamps sold separately.", "pricing": "$61.17", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51c3GuGWaSL.jpg", "https://m.media-amazon.com/images/I/414pcxK8d7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Outdoor Lighting \u203a Porch & Patio Lights \u203a Wall Lights", "average_rating": 4.4, "small_description": ["Dimensions- width: 6'' height: 9 3/4'' extends: 6 3/4''; backplate dimensions- depth: 3/4'' width: 5'' height: 5'' ", "Supplied with 6.5\" of wire ", "Clear bulb recommended for this fixture ", "Easily converts to LED with optional replacement lamps ", "Requires 1 A19 medium light bulb, 100-watt max (sold separately) ", "This fixture is dimmable with a dimmable bulb (not included) ", "UL listed for wet locations ", "Featured in the decorative Wynfield collection "], "total_reviews": 11, "total_answered_questions": "", "model": "\u200e85200-12", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B003HBR86S", "category": "garden", "query": "Sconces", "page": 184, "small_description_old": "About this item\n \nDimensions- width: 6'' height: 9 3/4'' extends: 6 3/4''; backplate dimensions- depth: 3/4'' width: 5'' height: 5'' Supplied with 6.5\" of wire Clear bulb recommended for this fixture Easily converts to LED with optional replacement lamps Requires 1 A19 medium light bulb, 100-watt max (sold separately) This fixture is dimmable with a dimmable bulb (not included) UL listed for wet locations Featured in the decorative Wynfield collection \n \u203a See more product details"}, {"name": "Handcrafted Oval Mosaic Wall Mirror, Decorative Mosaic Mirror Wall Art, Wood Framed Mirror Fitted with Small Glass Mosaic Pieces, Rainbow Blue Large Wall Mirror, 32 x 24, by Home Gift Warehouse", "product_information": {"Item Weight": "10 pounds", "Manufacturer": "Home Gift Warehouse", "ASIN": "B09Q3NSH3D", "Country of Origin": "China", "Item model number": "Oval Mirror", "Customer Reviews": {"ratings_count": null, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#1,038,767 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,761 in Wall-Mounted Mirrors"], "Date First Available": "January 10, 2022"}, "brand": "Brand: Home Gift Warehouse", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Home+Gift+Warehouse", "full_description": "Home Gift Warehouse offers the best Mosaic wall mirror which can work best in all the places. It is a set of exquisite accents for all the walls in your place. From fancy wall mirrors to decorative oval wall mirrors, you can look for all at a lower cost. They must have because of its handmade design which offers high quality support. These mirrors are made from the fine mosaic glass art surrounded with a number of small glasses together. These Decorative oval mirrors for the wall help in placing a good look in your room. It gives the eye a spotlight which is best for your decoration. Green wall mirrors help in getting all the spotlight in a way that the wall looks very attractive all the time. It can come out as an excellent gift in case one is looking for an attractive piece. Measurement of these mirrors are 32\" H X 24\" W X .6\" D inches. Shop for your decorative oval mirror from Home Gift Warehouse online and get the best striking deals.", "pricing": "$159.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41ytzsK1ViL.jpg", "https://m.media-amazon.com/images/I/41no-NRwrqL.jpg", "https://m.media-amazon.com/images/I/51-ROVkBaVL.jpg", "https://m.media-amazon.com/images/I/41a95udYC8L.jpg", "https://m.media-amazon.com/images/I/41LGgkjrc2L.jpg", "https://m.media-amazon.com/images/I/41F8Xqh19UL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Mirrors \u203a Wall-Mounted Mirrors", "average_rating": 4, "small_description": ["MOSAIC STYLE: This astonishing piece of Turquoise, Blue Oval Wall Mirror is delicately designed with the mosaic material. The placement of mirrors right above the MDF Wooden base is eye-opening. This mosaic mirror is the true verse of beauty that dilutes the image in mind. ", "OVAL SHAPED: This fabulous decorative oval mirror masterpiece, the designer vision of a different masterpiece. It has an artistic shape which is rare to find. It brings a trembling accent with the right flow of color to the place it is kept in. ", "SIZE: Glass Mosaic mirror is bold (32\" H X 24\" W X .6\" D) which brings your eye in notice all the time. Designed with the reflection of class and symmetry of small mirror makes is your perfect room decoration piece. ", "PLACEMENT: Being a fancy wall mirror, it is easy to locate it at any place. Blue wall mirrors being different in color and style, they must opt for. Right from bedroom to bathroom mirror, Hallway, Bedroom, Bathroom & Living Room. It is your decision to place it anywhere. ", "BEST CHOICE GUARANTEED: By any luck, your mind slightly towards the decision of not keeping the Home Gift Warehouse Mirrors will be glad to either replace or refund your complete order. Oval mirrors for walls if they fail to please you, then you need to just get in touch with us and will do the best for you. "], "total_reviews": 1, "total_answered_questions": "", "model": "Oval Mirror", "customization_options": "", "seller_id": "APF3054GQKQN5", "seller_name": "HOME GIFT WAREHOUSE", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q3NSH3D", "category": "garden", "query": "Decorative Mirrors", "page": 15, "small_description_old": "About this item\n \nMOSAIC STYLE: This astonishing piece of Turquoise, Blue Oval Wall Mirror is delicately designed with the mosaic material. The placement of mirrors right above the MDF Wooden base is eye-opening. This mosaic mirror is the true verse of beauty that dilutes the image in mind. OVAL SHAPED: This fabulous decorative oval mirror masterpiece, the designer vision of a different masterpiece. It has an artistic shape which is rare to find. It brings a trembling accent with the right flow of color to the place it is kept in. SIZE: Glass Mosaic mirror is bold (32\" H X 24\" W X .6\" D) which brings your eye in notice all the time. Designed with the reflection of class and symmetry of small mirror makes is your perfect room decoration piece. PLACEMENT: Being a fancy wall mirror, it is easy to locate it at any place. Blue wall mirrors being different in color and style, they must opt for. Right from bedroom to bathroom mirror, Hallway, Bedroom, Bathroom & Living Room. It is your decision to place it anywhere. BEST CHOICE GUARANTEED: By any luck, your mind slightly towards the decision of not keeping the Home Gift Warehouse Mirrors will be glad to either replace or refund your complete order. Oval mirrors for walls if they fail to please you, then you need to just get in touch with us and will do the best for you."}, {"name": "Signature Soy Bali Sunrise Large Jar, 15.2 oz. Candle", "product_information": {"Product Dimensions": "4 x 4 x 4.25 inches", "Item Weight": "15.2 ounces", "Manufacturer": "Signature Soy", "ASIN": "B07QNLY8KV", "Country of Origin": "USA", "Item model number": "16289203000", "Customer Reviews": {"ratings_count": 22, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#502,198 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,301 in Jar Candles"], "Assembly Required": "No", "Number of Pieces": "1", "Warranty Description": "None.", "Batteries Required?": "No"}, "brand": "Visit the Signature Soy Store", "brand_url": "https://www.amazon.com/stores/Signature+Soy/page/DFAAC0F4-62E4-4D57-ACE6-36532C544FE7?ref_=ast_bln", "full_description": "Pineapple, papaya, guava, and passionfruit", "pricing": "$15.46", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41TEZSpclrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Candles & Holders \u203a Candles \u203a Jar Candles", "average_rating": 4.3, "small_description": ["Lidded jar candle makes a lovely gift or a wonderful addition to your table display ", "Pineapple, papaya, guava, and passionfruit ", "Scented candle fills the room with a subtle aroma ", "Provides hours of ambient lighting to any room. "], "total_reviews": 22, "total_answered_questions": "", "model": "16289203000", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07QNLY8KV", "category": "garden", "query": "Candles", "page": 37, "small_description_old": "About this item\n \nLidded jar candle makes a lovely gift or a wonderful addition to your table display Pineapple, papaya, guava, and passionfruit Scented candle fills the room with a subtle aroma Provides hours of ambient lighting to any room."}, {"name": "VanciLin Mens Casual Leather Fashion Slip-on Loafers", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.9 x 6.3 x 4.1 inches; 1.45 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n May 17, 2019", "ASIN\n \u200f": "\u200e\n B07RX63QJ2", "Best Sellers Rank": "#206,715 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#661 in Men's Loafers & Slip-Ons", "#661 in Men's Loafers & Slip-Ons": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: VanciLin", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=VanciLin", "full_description": "", "pricing": "$33.99$35.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51SvIs1I3BL.jpg", "https://m.media-amazon.com/images/I/4147381MXUL.jpg", "https://m.media-amazon.com/images/I/41Zc6wAMxHL.jpg", "https://m.media-amazon.com/images/I/41+3p+c1jKL.jpg", "https://m.media-amazon.com/images/I/51i9LLVU4hL.jpg", "https://m.media-amazon.com/images/I/51m9TWWnWFL.jpg", "https://m.media-amazon.com/images/I/51ZNk9GqlEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Loafers & Slip-Ons", "average_rating": 4.1, "small_description": ["Lightweight&Comfortable:leather upper makes men loafer shoes lightweight, pliable and elastic.Driving moccasins shoes are hand-stitched to be extremely flexible,easy to band and comfy for walking and driving ", "Slip-on Design:Allowing for quick and easy on and off,the slip-on loafers are lined with soft and skin-friendly flocking, allowing for bare foot wear ", "Non-Slip Outsole:Lightweight Rubber outsole with lugs provides added slip-resistance and gives your secure footing,slip-resistant,offering a better grip even on wet deck and reducing foot fatigue ", "Soft Footbed:EVA footbed with excellent softness and elasticity fits your feet well.Also,it brings strong impact resistance and pressure resistance ", "Design For:The modern, fashion, durable, flexible loafers slip on shoes, suitable for long-distance driving, business.dating, formal dress, wedding, work, casual or party "], "total_reviews": 873, "total_answered_questions": 8, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "6.5", "asin": "B082PK43CF"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B082PKK4CM"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B0732MHW6X"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B0732MDQRJ"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B082PJS3BR"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B0732KJJL1"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B07FND43FY"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B082PJDVG8"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B0732JT5T4"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B082PHS453"}, {"is_selected": false, "is_available": false, "value": "12", "asin": "B07RX5DLPK"}, {"is_selected": false, "is_available": true, "value": "13", "asin": "B07S7HDC88"}, {"is_selected": false, "is_available": true, "value": "14", "asin": "B07SBLDW7Q"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07RX5DLPK/ref=twister_B0891ZBY6T", "value": "1877black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41DCYRjdweL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SPS1VPD/ref=twister_B0891ZBY6T", "value": "1877blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/413a9Z3FOWL.jpg"}, {"is_selected": true, "url": null, "value": "228black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51SvIs1I3BL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B071K8QY6X/ref=twister_B0891ZBY6T", "value": "Black137", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51jfpm8FD+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B072N31NY5/ref=twister_B0891ZBY6T", "value": "Blue137", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51sWxSzhOHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B072KH97M7/ref=twister_B0891ZBY6T", "value": "L.brown137", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51hVCfCTRUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B071GNPNBC/ref=twister_B0891ZBY6T", "value": "R.brown137", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41pXGeroFCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SL32QDT/ref=twister_B0891ZBY6T", "value": "1877r.brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41db09K0X0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079K7XWN5/ref=twister_B0891ZBY6T", "value": "228blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4115TCCx+0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DCKBS2G/ref=twister_B0891ZBY6T", "value": "R.brown-hole228", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51eMQbS-XtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SK1378F/ref=twister_B0891ZBY6T", "value": "1877brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41FRQQYfyuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07GVFT1DC/ref=twister_B0891ZBY6T", "value": "228r.brown-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WNfroVDeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DCHYCHP/ref=twister_B0891ZBY6T", "value": "Y.brown-hole228", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51xQkYAqM3L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DCJZ6CJ/ref=twister_B0891ZBY6T", "value": "Black-hole228", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/516G-pfIPyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0732LB339/ref=twister_B0891ZBY6T", "value": "228l.brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51tNvkQ+dGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06XZJBYZG/ref=twister_B0891ZBY6T", "value": "R.brown2070", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41n1r+NXePL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0732M5ZSQ/ref=twister_B0891ZBY6T", "value": "228r.brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WNfroVDeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06XZXLCKX/ref=twister_B0891ZBY6T", "value": "Black2070", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UkUoArjEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0721MTX6B/ref=twister_B0891ZBY6T", "value": "R.brown2626", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oPuH2yGQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B071X6THWC/ref=twister_B0891ZBY6T", "value": "R.brown-hole1887", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41dl--ShehL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0721MVDRR/ref=twister_B0891ZBY6T", "value": "Black2626", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hIZijT1dL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07MY2QWCC/ref=twister_B0891ZBY6T", "value": "Black1901", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41pqN+kb-fL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0721MVMBJ/ref=twister_B0891ZBY6T", "value": "R.brown2060", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Jy7UHpzqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B071X6TV1W/ref=twister_B0891ZBY6T", "value": "L.brown2060", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51IVJzfE7yL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07S7HDC88", "category": "fashion", "query": "Men's Loafers & Slip-Ons", "page": 67, "small_description_old": "Rubber sole Lightweight&Comfortable:leather upper makes men loafer shoes lightweight, pliable and elastic.Driving moccasins shoes are hand-stitched to be extremely flexible,easy to band and comfy for walking and driving Slip-on Design:Allowing for quick and easy on and off,the slip-on loafers are lined with soft and skin-friendly flocking, allowing for bare foot wear Non-Slip Outsole:Lightweight Rubber outsole with lugs provides added slip-resistance and gives your secure footing,slip-resistant,offering a better grip even on wet deck and reducing foot fatigue Soft Footbed:EVA footbed with excellent softness and elasticity fits your feet well.Also,it brings strong impact resistance and pressure resistance Design For:The modern, fashion, durable, flexible loafers slip on shoes, suitable for long-distance driving, business.dating, formal dress, wedding, work, casual or party"}, {"name": "African American Wall Art Get Naked Fashion Black Girl And Bathtub Canvas Prints Gray Pink Painting Picture Modern Artwork For Bathroom Living Room Home Wall Decor Framed Ready To Hang 16x24 Inch", "product_information": {"Package Dimensions": "22.9 x 15.3 x 0.4 inches", "Item Weight": "16 ounces", "Manufacturer": "familypers", "ASIN": "B099WH1RTM", "Customer Reviews": {"ratings_count": 59, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#87,018 in Home & Kitchen (See Top 100 in Home & Kitchen) #841 in Posters & Prints"], "Date First Available": "July 20, 2021"}, "brand": "Brand: familypers", "brand_url": "https://www.amazon.com/familypers/b/ref=bl_dp_s_web_23546945011?ie=UTF8&node=23546945011&field-lbr_brands_browse-bin=familypers", "full_description": "Feature:The Canvas Print Is Already Perfectly Stretched On Wooden Frame With Hooks Mounted On Each Panel For Easy Hanging Out Of Box. The Side Margins Are Also Printed To Create A Particularly Decorative Effect. Canvas Wall Art And Canvas Paintings Are The Modern Way To Brighten The Walls Of Your Home, And Relax You After Work. It Is Sure To Captivate Wherever It Is Hung.", "pricing": "$39.99", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41zH6QPRA4L.jpg", "https://m.media-amazon.com/images/I/51T0yGlNVxL.jpg", "https://m.media-amazon.com/images/I/41DcsQqG8BL.jpg", "https://m.media-amazon.com/images/I/41RwLbWVVVL.jpg", "https://m.media-amazon.com/images/I/41IqfhLoFFL.jpg", "https://m.media-amazon.com/images/I/51OXA2uHEUL.jpg", "https://m.media-amazon.com/images/I/41R5+5WCYdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": 4.7, "small_description": ["Glam Decor For Wall Giclee Matte Canvas Prints Framed Wall Art, Our Canvas Art Is Bright And Colorful. Framed Wall Decor Will Add A Stunning And Creative Aesthetic With A Modern Touch To Your Office Or Cubicle. ", "Pink Bathroom Pictures Canvas Is Made Of Linen, Solid Wood Inner Frame, Bevel Treatment, Without Any Wood Eyes. High-Definition Matte Printing, Artistic Micro-Sprayed Canvas Stretched And Framed, Packaged With Hard Plastic Corners. Each Main Frame Is Equipped With A Metal Hook On The Back. ", "Black Woman Bedroom Decor Giclee Canvas Use High Quality Ink, Suitable For Bedroom, Living Room, Kitchen, Office, Restaurant, Apartment, Hotel, Bathroom, Bar, Entrance And Aisle, Etc Wall Decor. ", "Pink Glam Decor Move Or Replace Your Old Wall Decor On Valentine'S Day, Christmas, Anniversary, New Home. It Is The Best Gift For Family, Brother, Guys, Friends Or Colleagues. ", "Fashion Black Girl Wall Art The Pictures And Actual Items Seen Through The Display Are Slightly Different In Color. If It Is Damaged For Some Reason Or You Are Not Satisfied With The Canvas Painting, Please Send Us An Email And You Will Get Our Help In The First Time. "], "total_reviews": 59, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Fashion Black Girl", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/414y7xGE5cL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FF8D97R/ref=twister_B099WHCGNJ?_encoding=UTF8&psc=1", "value": "Fashion Black Girl01", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41+DIl9Y2PL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8KLHYM/ref=twister_B099WHCGNJ?_encoding=UTF8&psc=1", "value": "Fashion Black Girl02", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sco9wxvML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WFJV3N/ref=twister_B099WHCGNJ?_encoding=UTF8&psc=1", "value": "Fashion Black Woman", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/417tZ6tCfhL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WH244G/ref=twister_B099WHCGNJ", "value": "Turtles And African American Couple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/414jawlXClL.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B099VX6B1X/ref=twister_B099WHCGNJ?_encoding=UTF8&psc=1", "value": "8x10 Inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WL71L9/ref=twister_B099WHCGNJ", "value": "12x16 Inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WMVHXN/ref=twister_B099WHCGNJ?_encoding=UTF8&psc=1", "value": "12x18 Inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FF6QG5B/ref=twister_B099WHCGNJ", "value": "12x18 inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WDYG6Z/ref=twister_B099WHCGNJ", "value": "16x20 Inch", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "16x24 Inch", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A3NNF59HG1LTYK", "seller_name": "HHTang-Shops", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B099WH1RTM", "category": "garden", "query": "Wall art", "page": 4, "small_description_old": "About this item\n \nGlam Decor For Wall Giclee Matte Canvas Prints Framed Wall Art, Our Canvas Art Is Bright And Colorful. Framed Wall Decor Will Add A Stunning And Creative Aesthetic With A Modern Touch To Your Office Or Cubicle. Pink Bathroom Pictures Canvas Is Made Of Linen, Solid Wood Inner Frame, Bevel Treatment, Without Any Wood Eyes. High-Definition Matte Printing, Artistic Micro-Sprayed Canvas Stretched And Framed, Packaged With Hard Plastic Corners. Each Main Frame Is Equipped With A Metal Hook On The Back. Black Woman Bedroom Decor Giclee Canvas Use High Quality Ink, Suitable For Bedroom, Living Room, Kitchen, Office, Restaurant, Apartment, Hotel, Bathroom, Bar, Entrance And Aisle, Etc Wall Decor. Pink Glam Decor Move Or Replace Your Old Wall Decor On Valentine'S Day, Christmas, Anniversary, New Home. It Is The Best Gift For Family, Brother, Guys, Friends Or Colleagues. Fashion Black Girl Wall Art The Pictures And Actual Items Seen Through The Display Are Slightly Different In Color. If It Is Damaged For Some Reason Or You Are Not Satisfied With The Canvas Painting, Please Send Us An Email And You Will Get Our Help In The First Time."}, {"name": "America's Finest Apparel Tennessee Shield - Hoodie", "product_information": {"Item model number\n \u200f": "\u200e\n AFATENFSHMGM", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n November 10, 2016", "Manufacturer\n \u200f": "\u200e\n America's Finest Apparel", "ASIN\n \u200f": "\u200e\n B07Z9LLXHR", "Best Sellers Rank": "#1,572,451 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#5,419 in Men's Fashion Hoodies & Sweatshirts #11,931 in Men's Yoga Clothing #23,167 in Men's Shops", "#5,419 in Men's Fashion Hoodies & Sweatshirts": "", "#11,931 in Men's Yoga Clothing": "", "#23,167 in Men's Shops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the America's Finest Apparel Store", "brand_url": "https://www.amazon.com/stores/America%27s+Finest+Apparel/page/6A990331-2AAC-46AC-9BDC-6AA6E37367D9?ref_=ast_bln", "full_description": "", "pricing": "$45.00$50.00", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41f-K3b8WoL.jpg", "https://m.media-amazon.com/images/I/41jkgvQp3DL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men", "average_rating": 4.5, "small_description": ["Designed and Printed in the USA ", "Mid-weight hoodie - 50/50 Cotton/poly blend ", "Casual fashion hoodie ", "Preshrunk ", "4\" AFA logo on the back "], "total_reviews": 15, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "Medium", "asin": "B07Z9LLXHR"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07Z9M6KH1"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07Z9LDNQL"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07Z9MYQRZ"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B07Z9MN6JR"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07Z9LLXHR/ref=twister_B07Z9LMJVN", "value": "Military Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41660TS6U7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07Z9LFYQH/ref=twister_B07Z9LMJVN", "value": "Navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41DnFs2h5sL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07Z9MJLP5/ref=twister_B07Z9LMJVN", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UEp-IgW0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07Z9MHMGB/ref=twister_B07Z9LMJVN", "value": "Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Wv4IJM0sL.jpg"}, {"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41f-K3b8WoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07Z9M7HBD/ref=twister_B07Z9LMJVN", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ENbg-pb1L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07Z9M6KH1", "category": "fashion", "query": "Men's Fashion Hoodies & Sweatshirts", "page": 159, "small_description_old": "Designed and Printed in the USA Mid-weight hoodie - 50/50 Cotton/poly blend Casual fashion hoodie Preshrunk 4\" AFA logo on the back"}, {"name": "RM-ADU101 RM-ADU138 Replacement Remote Control Commander fit for Sony Home Theater System HBD-TZ140 DAV-TZ135 HBD-TZ130 DAV-TZ130 DAV-TZ140 HBDTZ140 DAVTZ135 HBDTZ130 DAVTZ130 DAVTZ140", "product_information": {"Product Dimensions": "6 x 2 x 0.5 inches", "Item Weight": "1.76 ounces", "ASIN": "B09H6G6PT9", "Date First Available": "September 27, 2021", "Manufacturer": "ZdalaMit Factory", "Country of Origin": "China"}, "brand": "Brand: ZdalaMit", "brand_url": "https://www.amazon.com/ZdalaMit/b/ref=bl_dp_s_web_16336912011?ie=UTF8&node=16336912011&field-lbr_brands_browse-bin=ZdalaMit", "full_description": "RM-ADU101 RM-ADU138 Replacement Remote Control Commander fit for Sony Home Theater System No programming is required. Insert new alkaline batteries and works. Work for below Sony Home Theater System models: HBD-TZ140 DAV-TZ135 HBD-TZ130 DAV-TZ130 DAV-TZ140 HBDTZ140 DAVTZ135 HBDTZ130 DAVTZ130 DAVTZ140 This remote control use 2 x AA size alkaline batteries. Package Content: 1X Remote Control(Battery not included)", "pricing": "$7.28", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41OqTvDW9QL.jpg", "https://m.media-amazon.com/images/I/41wDXtf4WBL.jpg", "https://m.media-amazon.com/images/I/41nfef35heL.jpg", "https://m.media-amazon.com/images/I/41OqTvDW9QL.jpg", "https://m.media-amazon.com/images/I/41wDXtf4WBL.jpg", "https://m.media-amazon.com/images/I/41nfef35heL.jpg", "https://m.media-amazon.com/images/I/41OqTvDW9QL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": "", "small_description": ["RM-ADU101 RM-ADU138 Replacement Remote Control Commander fit for Sony Home Theater System HBD-TZ140 DAV-TZ135 HBD-TZ130 DAV-TZ130 DAV-TZ140 HBDTZ140 DAVTZ135 HBDTZ130 DAVTZ130 DAVTZ140 ", "No programming is required. Insert new alkaline batteries and works. ", "This remote control use 2 x AA size alkaline batteries. Battery not included. ", "Should you have any questions, please don't hesitate to contact us. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1W0OKF45JEFNK", "seller_name": "qianhui trading", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09H6G6PT9", "category": "electronics", "query": "Home Theater Systems", "page": 176, "small_description_old": "About this item\n \nRM-ADU101 RM-ADU138 Replacement Remote Control Commander fit for Sony Home Theater System HBD-TZ140 DAV-TZ135 HBD-TZ130 DAV-TZ130 DAV-TZ140 HBDTZ140 DAVTZ135 HBDTZ130 DAVTZ130 DAVTZ140 No programming is required. Insert new alkaline batteries and works. This remote control use 2 x AA size alkaline batteries. Battery not included. Should you have any questions, please don't hesitate to contact us."}, {"name": "Clarks Womens Suede Leather Slipper with Gore and Bungee JMH2213 - Warm Plush Faux Fur Lining - Indoor Outdoor House Slippers For Women", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.13 x 7.36 x 4.8 inches; 1.21 Pounds", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n August 10, 2021", "ASIN\n \u200f": "\u200e\n B09C8YQ8TD", "Best Sellers Rank": "#228,895 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,548 in Women's Slippers", "#1,548 in Women's Slippers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Clarks Store", "brand_url": "https://www.amazon.com/stores/Clarks/page/6E7F4396-6004-497C-B702-21B18368E819?ref_=ast_bln", "full_description": "", "pricing": "$44.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/3132OhXlziL.jpg", "https://m.media-amazon.com/images/I/31gDBHtDmvL.jpg", "https://m.media-amazon.com/images/I/41PN57hvYcL.jpg", "https://m.media-amazon.com/images/I/412Z1VcbzoL.jpg", "https://m.media-amazon.com/images/I/41hYGcEq7CL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes", "average_rating": 4.6, "small_description": ["Suede sole ", "GENUINE LEATHER UPPER: The genuine suede upper is comfortable and durable. ", "INDOOR / OUTDOOR USE: The rubber textured sole allows for moderate outdoor use, in addition to being a fully functional indoor slipper. ", "SOFT AND COMFORTABLE: Ultra soft faux fur lining keeps your feet warm and comfy. ", "EASE OF USE: The side gore allows you to put on the slippers with ease. ", "THESE SLIPPERS RUN SMALL: We recommend ordering a size up, especially if you are a half size or have wider feet. "], "total_reviews": 123, "total_answered_questions": 5, "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "6", "asin": "B09C8ZSJ7J"}, {"is_selected": false, "is_available": false, "value": "7", "asin": "B09C8YQ8TD"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09C93HQWJ"}, {"is_selected": false, "is_available": false, "value": "9", "asin": "B09C93LQKJ"}, {"is_selected": false, "is_available": false, "value": "11", "asin": "B09C9267HK"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09C8YQ8TD/ref=twister_B09C94LZ42", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31NNNvGohwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C8ZSJ7J/ref=twister_B09C94LZ42", "value": "Cognac", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MvlIQr6OL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C9196RQ/ref=twister_B09C94LZ42", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/318EWjyodlL.jpg"}, {"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/3132OhXlziL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09C8YNWWB", "category": "fashion", "query": "Women's Outdoor Shoes", "page": 5, "small_description_old": "Suede sole GENUINE LEATHER UPPER: The genuine suede upper is comfortable and durable. INDOOR / OUTDOOR USE: The rubber textured sole allows for moderate outdoor use, in addition to being a fully functional indoor slipper. SOFT AND COMFORTABLE: Ultra soft faux fur lining keeps your feet warm and comfy. EASE OF USE: The side gore allows you to put on the slippers with ease. THESE SLIPPERS RUN SMALL: We recommend ordering a size up, especially if you are a half size or have wider feet."}, {"name": "Lift Top Coffee Tables for Living Room Coffee Table with Storage, Lift Cable Coffee Table, Dining Table with Hidden Storage Compartment Chestnut", "product_information": {"Product Dimensions": "39 x 19.3 x 16.3 inches", "Item Weight": "43 pounds", "Manufacturer": "Bellemavema", "ASIN": "B09LHM4WQS", "Item model number": "Lift Top Coffee Tables", "Customer Reviews": {"ratings_count": 2, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#3,540,516 in Home & Kitchen (See Top 100 in Home & Kitchen) #5,177 in Coffee Tables"], "Date First Available": "November 10, 2021"}, "brand": "Visit the Bellemave Store", "brand_url": "https://www.amazon.com/stores/Bellemave/page/6B039B8A-DF6B-4565-A4E7-42D41B2A2E7C?ref_=ast_bln", "full_description": "Advantages 1. Hot Style. 2. We produce this item in a big factory which has a low damage and defective rate. 3. Compared with the same quality, the price is competitive. Weights & Dimensions Coffee Table: 39''x19.3''x16.3'' Inside space: 34.2''x17.3''x8.5'' Bottom to floor: 7.2\u2019\u2019 Extended height: 14'' Overall Product Weight: 43 lb. Specifications Table Material: MDF Table Top Weight Capacity: 66 Pounds Storage Space Weight Capacity: 110 Pounds Assembly Needed: Yes Country of Origin: China Package Size: 48.82\"Lx23.23\"Wx4.72\"H,44.53lbs", "pricing": "$82.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/51O37kGay0L.jpg", "https://m.media-amazon.com/images/I/51QDawPr6ML.jpg", "https://m.media-amazon.com/images/I/31OgZF2WnzL.jpg", "https://m.media-amazon.com/images/I/41VXN9T4SUL.jpg", "https://m.media-amazon.com/images/I/3199VT1XUKL.jpg", "https://m.media-amazon.com/images/I/41+s+idSz0L.jpg", "https://m.media-amazon.com/images/I/31nnM7GZtdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Coffee Tables", "average_rating": 5, "small_description": ["\u3010Lift Top Design\u3011-This coffee table has an extending top that lifts up to provide a floating raised work surface, perfectly matches your needs, ideal for working, dining and extra storage in living room or office. ", "\u3010Lift Up Storage Space\u3011-Large hidden compartment beneath the tabletop is enough to store your often-used items like laptop, chess, and remotes,magazines,\u00a0paperwork,\u00a0blankets\u00a0and other\u00a0daily-use essentials ", "\u3010Stable Lift System\u3011-High quality lift top mechanism enables the tabletop to be lifted up or lowered down effortlessly and noiselessly. And the gas spring could make the tabletop more stable when lifting and lowering without sudden bounces or drops. ", "\u3010Sturdy Structure\u3011This lift top coffee table is constructed of high grade MDF with water resistant surface and stable steel frame to ensure years of use. ", "\u3010 Size for Lift Up Coffee Table\u3011-Overall Dimension: 39''x19.3''x16.3''H; Lift height: 14''. Load capacity up to 110 lbs. Note: Please lift the table to move the position instead of dragging to avoid damage to the table legs . "], "total_reviews": 2, "total_answered_questions": "", "model": "Lift Top Coffee Tables", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08HYT93JW/ref=twister_B09LHJ15H6", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/515z7W4HRVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LHLCRMG/ref=twister_B09LHJ15H6?_encoding=UTF8&psc=1", "value": "Cherry", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51dazri7oNL.jpg"}, {"is_selected": true, "url": null, "value": "Chestnut", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51O37kGay0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LHM43NY/ref=twister_B09LHJ15H6?_encoding=UTF8&psc=1", "value": "Oak", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51sOeufSWUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LHM3CKR/ref=twister_B09LHJ15H6", "value": "Rustic Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51uffn1AD0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LHL6NHQ/ref=twister_B09LHJ15H6?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ordjO6R9L.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08HYT93JW/ref=twister_B09LHJ15H6", "value": "With Shelf", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "No Shelf", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A1A6C3E32PB46N", "seller_name": "Orien Life", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09LHM4WQS", "category": "garden", "query": "Coffee Tables", "page": 89, "small_description_old": "About this item\n \n\u3010Lift Top Design\u3011-This coffee table has an extending top that lifts up to provide a floating raised work surface, perfectly matches your needs, ideal for working, dining and extra storage in living room or office. \u3010Lift Up Storage Space\u3011-Large hidden compartment beneath the tabletop is enough to store your often-used items like laptop, chess, and remotes,magazines,\u00a0paperwork,\u00a0blankets\u00a0and other\u00a0daily-use essentials \u3010Stable Lift System\u3011-High quality lift top mechanism enables the tabletop to be lifted up or lowered down effortlessly and noiselessly. And the gas spring could make the tabletop more stable when lifting and lowering without sudden bounces or drops. \u3010Sturdy Structure\u3011This lift top coffee table is constructed of high grade MDF with water resistant surface and stable steel frame to ensure years of use. \u3010 Size for Lift Up Coffee Table\u3011-Overall Dimension: 39''x19.3''x16.3''H; Lift height: 14''. Load capacity up to 110 lbs. Note: Please lift the table to move the position instead of dragging to avoid damage to the table legs ."}, {"name": "PEEL Ultra Thin iPhone 12 Pro Max Case, Black - Minimalist Design | Branding Free | Protects and Showcases Your Apple iPhone 12 Pro Max", "product_information": {"Product Dimensions": "6.46 x 3.23 x 0.2 inches", "Item Weight": "2.89 ounces", "ASIN": "B08MBG3421", "Customer Reviews": {"ratings_count": 361, "stars": "3.5 out of 5 stars"}, "Best Sellers Rank": ["#8,784 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #3,443 in Cell Phone Basic Cases"], "Special Features": "Screen Protector", "Other display features": "Wireless", "Form Factor": "Case", "Colour": "Black", "Manufacturer": "PEEL", "Country of Origin": "China", "Date First Available": "October 30, 2020"}, "brand": "Visit the PEEL Store", "brand_url": "https://www.amazon.com/stores/PEEL/page/A6A2AA71-6E3D-494F-BBA2-A12A54D1D9E8?ref_=ast_bln", "full_description": "", "pricing": "$29.00", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31bHRiVrNgL.jpg", "https://m.media-amazon.com/images/I/41AXhkRwSPL.jpg", "https://m.media-amazon.com/images/I/41CL66Xuq3L.jpg", "https://m.media-amazon.com/images/I/41aA9GEBBYL.jpg", "https://m.media-amazon.com/images/I/41MHnWp8FOL.jpg", "https://m.media-amazon.com/images/I/41qelycP5nL.jpg", "https://m.media-amazon.com/images/I/51GNc2ZLzzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Cases, Holsters & Sleeves \u203a Basic Cases", "average_rating": 3.5, "small_description": ["ULTRA THIN: PEEL is the creator of the original super thin case design measuring at just 0.01 inches thin. It maintains the original beauty of your iPhone 12 Pro Max while adding the everyday protection you need. ", "PERFECTLY FORMED MINIMALIST DESIGN: Free of any PEEL logos or branding, our case wraps seamlessly around your phone. You'll forget you have a case on your iPhone 12 Pro Max. ", "EVERYDAY PROTECTION: Keep your phone protected and looking brand new. PEEL cases have been designed to prevent scratches, dents, and more! A subtle lip protects your camera lens. Pair with a PEEL screen protector for maximum edge to edge protection. ", "DESIGNED SPECIFICALLY FOR APPLE IPHONE 12 PRO MAX: Each PEEL case has been engineered to fit your iPhone perfectly. ", "SATISFACTION GUARANTEED: PEEL is based here in the USA and our customers are #1. Every PEEL case comes with a 2 year guarantee so please contact us directly for any questions or issues related to your product. "], "total_reviews": 361, "total_answered_questions": 12, "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$29.00", "price": 29, "image": "https://m.media-amazon.com/images/I/31bHRiVrNgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MBFTY5Y/ref=twister_B09237F39W?_encoding=UTF8&psc=1", "value": "Blackout", "price_string": "$29.00", "price": 29, "image": "https://m.media-amazon.com/images/I/31v3bRIjexL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WQ24GYQ/ref=twister_B09237F39W?_encoding=UTF8&psc=1", "value": "Clear Hard", "price_string": "$29.00", "price": 29, "image": "https://m.media-amazon.com/images/I/31KtxkVyGhL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WQ3SH17/ref=twister_B09237F39W?_encoding=UTF8&psc=1", "value": "Clear Soft", "price_string": "$29.00", "price": 29, "image": "https://m.media-amazon.com/images/I/31DvljFvT7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WPXM87T/ref=twister_B09237F39W?_encoding=UTF8&psc=1", "value": "Jet Black", "price_string": "$29.00", "price": 29, "image": "https://m.media-amazon.com/images/I/31PzcUur0bL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WLJSDJL/ref=twister_B09237F39W?_encoding=UTF8&psc=1", "value": "Jet White", "price_string": "$29.00", "price": 29, "image": "https://m.media-amazon.com/images/I/31pN1MeQVtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WPRBTLD/ref=twister_B09237F39W?_encoding=UTF8&psc=1", "value": "Midnight Green", "price_string": "$29.00", "price": 29, "image": "https://m.media-amazon.com/images/I/31rEZIsQdgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WPJD22F/ref=twister_B09237F39W?_encoding=UTF8&psc=1", "value": "Navy", "price_string": "$29.00", "price": 29, "image": "https://m.media-amazon.com/images/I/31BnwU1RyCL.jpg"}]}, "seller_id": "A3SGSEGHN8BZJ1", "seller_name": "PEEL", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B08MBG3421", "category": "electronics", "query": "iPhone Accessories", "page": 363, "small_description_old": "About this item ULTRA THIN: PEEL is the creator of the original super thin case design measuring at just 0.01 inches thin. It maintains the original beauty of your iPhone 12 Pro Max while adding the everyday protection you need. PERFECTLY FORMED MINIMALIST DESIGN: Free of any PEEL logos or branding, our case wraps seamlessly around your phone. You'll forget you have a case on your iPhone 12 Pro Max. EVERYDAY PROTECTION: Keep your phone protected and looking brand new. PEEL cases have been designed to prevent scratches, dents, and more! A subtle lip protects your camera lens. Pair with a PEEL screen protector for maximum edge to edge protection. DESIGNED SPECIFICALLY FOR APPLE IPHONE 12 PRO MAX: Each PEEL case has been engineered to fit your iPhone perfectly. SATISFACTION GUARANTEED: PEEL is based here in the USA and our customers are #1. Every PEEL case comes with a 2 year guarantee so please contact us directly for any questions or issues related to your product."}, {"name": "SOCKS'NBULK Mens Cotton Crew Neck Short Sleeve T-Shirts Mix Colors Bulk", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 16.5 x 9.4 x 4 inches; 2.04 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 20, 2018", "ASIN\n \u200f": "\u200e\n B07M93G822", "Best Sellers Rank": "#17,397 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#57 in Men's Undershirts #143 in Men's Athletic Shirts & Tees #345 in Men's Shops", "#57 in Men's Undershirts": "", "#143 in Men's Athletic Shirts & Tees": "", "#345 in Men's Shops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the SOCKS'NBULK Store", "brand_url": "https://www.amazon.com/stores/YACHTSMITH/page/581CF6DC-556D-4B5F-A5B6-E35453C0639E?ref_=ast_bln", "full_description": "Different packs of men\u2019s cotton t-shirts in assorted colors. Made with 100% pre-shrunk cotton for extra softness. Pre-shrunk cotton tee\u2019s are perfect for layering or wearing alone. Lightweight fabric keeps you cool and dry so you can look great and feel great all day. Affordable, casual and cool, these tee\u2019s are your new wardrobe staple.", "pricing": "$38.79$172.80", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41xQ6gRZyqL.jpg", "https://m.media-amazon.com/images/I/41VmlE5wpCS.jpg", "https://m.media-amazon.com/images/I/41DpQAILWDS.jpg", "https://m.media-amazon.com/images/I/41DF5woMQCS.jpg", "https://m.media-amazon.com/images/I/31cvpnqSkLL.jpg", "https://m.media-amazon.com/images/I/31+BQxSfwIL.jpg", "https://m.media-amazon.com/images/I/41blKK8EPpS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a Undershirts", "average_rating": 4.2, "small_description": ["100% Cotton ", "Tumble dry low ", "12 PACK OF ASSORTED COLOR T-SHIRTS - SIZE SMALL: Get comfortable with men\u2019s premium cotton crew neck t-shirts in assorted colors. Made of 100% soft cotton for a smooth, breathable fit. Pre-shrunk cotton tee\u2019s are perfect for layering or wearing alone. You may receive a duplicate of some colors as it is a random mixed assortment. You will receive at least 7 different colors. ", "GREAT FIT: The perfect tee shirt for a modern casual look . Not too long so you can wear these untucked with a pair of jeans or chinos. Looks great under a casual blazer and jeans for a relaxed friday style. Stylish and versatile men\u2019s everyday crew neck tees are a wardrobe staple. Men\u2019s basic T-shirts has been a staple of the classic American wardrobe for decades. ", "ACTIVEWEAR: Hit the gym in a sporty crew neck tee shirt that moves with you. Perfect for running, cycling and sports. Breathable cotton let you keep cool through your entire work out. Classic solid colors go with anything. Reinforced seams and durable construction make this the ultimate upgrade in athletic wear. ", "SUMMER TEE SHIRT: The quintessential beach necessity, lightweight, breathable and stylish. Wear with coordinating board shorts for a cool surfer style or with a classic pair of linen shorts for a more classic look. 100% cotton wicks moisture keeping you cool and comfortable all day. ", "EASY TO WASH: Machine washable preshrunk cotton, tumble dry low. These tees won\u2019t fade in the wash so you can wear them over and over and they still look like new. "], "total_reviews": 4135, "total_answered_questions": 40, "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "12 Pack Mix", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xQ6gRZyqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KMJF1SC/ref=twister_B092ZZD9L1", "value": "12 Pack Tank Top Undershirts", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Yv9CPauBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07MHYCZ7T/ref=twister_B092ZZD9L1", "value": "36 Pack Mix", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41DF5woMQCS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08V4GM7SY/ref=twister_B092ZZD9L1", "value": "9 Pack Pocket Tee Slub", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tQFRKRo0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J7B283L/ref=twister_B092ZZD9L1", "value": "12 Pack Mix Short Sleeve", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zUJf05DPL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07M93G822"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07M8D9JT8"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07N7TDKXQ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09J6ZF3F9"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07M8YCCFM"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B07M8YCBRZ"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B095DVR5WB"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B095DXYKJL"}, {"is_selected": false, "is_available": true, "value": "6X-Large", "asin": "B095RCTR5Q"}, {"is_selected": false, "is_available": true, "value": "7X-Large", "asin": "B095R4P9R3"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07N7TDKXQ", "category": "fashion", "query": "Men's T-Shirts", "page": 34, "small_description_old": "100% Cotton Tumble dry low 12 PACK OF ASSORTED COLOR T-SHIRTS - SIZE SMALL: Get comfortable with men\u2019s premium cotton crew neck t-shirts in assorted colors. Made of 100% soft cotton for a smooth, breathable fit. Pre-shrunk cotton tee\u2019s are perfect for layering or wearing alone. You may receive a duplicate of some colors as it is a random mixed assortment. You will receive at least 7 different colors. GREAT FIT: The perfect tee shirt for a modern casual look . Not too long so you can wear these untucked with a pair of jeans or chinos. Looks great under a casual blazer and jeans for a relaxed friday style. Stylish and versatile men\u2019s everyday crew neck tees are a wardrobe staple. Men\u2019s basic T-shirts has been a staple of the classic American wardrobe for decades. ACTIVEWEAR: Hit the gym in a sporty crew neck tee shirt that moves with you. Perfect for running, cycling and sports. Breathable cotton let you keep cool through your entire work out. Classic solid colors go with anything. Reinforced seams and durable construction make this the ultimate upgrade in athletic wear. SUMMER TEE SHIRT: The quintessential beach necessity, lightweight, breathable and stylish. Wear with coordinating board shorts for a cool surfer style or with a classic pair of linen shorts for a more classic look. 100% cotton wicks moisture keeping you cool and comfortable all day. EASY TO WASH: Machine washable preshrunk cotton, tumble dry low. These tees won\u2019t fade in the wash so you can wear them over and over and they still look like new."}, {"name": "Buffet Sideboard Kitchen Break Room Lunch Coffee Kitchenette Model 8004 BREAKTIME 2 pc Espresso \u2013 Factory Assembled (Furniture Items Purchase ONLY)", "product_information": {"Product Dimensions": "24 x 72 x 36 inches", "Item Weight": "400 pounds", "Manufacturer": "BREAKTIME", "ASIN": "B09RQ22QJY", "Country of Origin": "USA", "Item model number": "8004", "Best Sellers Rank": ["#2,358,669 in Home & Kitchen (See Top 100 in Home & Kitchen) #812 in Buffets & Sideboards"], "Is Discontinued By Manufacturer": "No", "Date First Available": "January 1, 2022"}, "brand": "Visit the Breaktime Store", "brand_url": "https://www.amazon.com/stores/BREAKtimeAssembledFurniture/page/DBE319C3-DB83-4EBC-AFEC-0CC0C37D8387?ref_=ast_bln", "full_description": "Buffet Sideboard Kitchen Break Room Lunch Coffee Kitchenette Model 8004 BREAKTIME 2 pc Espresso \u2013 Factory Assembled (Furniture Items purchase ONLY). INSTANTLY create your new Buffet Sideboard Kitchen Break Room Lunch Coffee Kitchenette area. Colors emulate European trends for modern businesses. Each piece is commercial grade, with thermally-fused commercial melamine lamination for high use areas. XTRA-thick tops and high impact edges are made to withstand bumps and dings, the finished edges front, back and bottom providing protection from damage. The solid back panels create perfectly square and rigid furniture with easy to attach 4\u201dH back splashes on all base cabinets. The hinges and hardware are European adjustable quality with full extension ball bearing slides and quality soft-close hinges. Your Coffee Lunch Break Room Furniture Buffet Kitchenette cabinets are shipped on secure pallets to arrive safely to your street address door or loading dock. NOTE \u2026 does NOT include inside delivery, setup or debris removal . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . DIMENSIONS (note: the group you select may use one or more of these items) . . . Fridge Buffet (110lbs) measures 36\u201dW x 26\u201dH x 24\u201dD and has a bar mini-fridge opening measuring 20\u201dW x 33.5\u201dH x 20\u201dD / Appliance Hutch (70lbs) measures 39\u201dH x 36\u201dW x 17\u201dD and has a microwave opening measuring 35\u201dW x 17\u201dH x 15\u201dD) / 2Door+2Drawer Buffet (140lbs) measures 36\u201dW x 36\u201dH x 24\u201dD / Trash Buffet (64lbs) measures 18\u201dW x 36\u201dH x 24\u201dD and includes an internal trash container, you add the plastic bag / 3Drawer Buffet (95lbs) measures 18\u201dW x 36\u201dH x 24\u201dD / Combo Buffet (140lbs) measures 48\u201dW x 36\u201dH x 24\u201dD and has a bar mini-fridge opening measuring 20\u201dW x 33.5\u201dH x 20\u201dD / Upper 2Door Wall Cabinet (45lbs) measures 36\u201dW x 17\u201dH x 14\u201dD. Dimensions may vary slightly.", "pricing": "$1,997.50", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/414m-dxBRBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Dining Room Furniture \u203a Buffets & Sideboards", "average_rating": "", "small_description": ["Buffet Sideboard Kitchen Break Room Lunch Coffee Kitchenette Model 8004 BREAKTIME 2 pc Espresso \u2013 Factory Assembled (Furniture Items purchase ONLY) ", "Commercial grade Thermally-Fused Melamine fully assembled furniture for use in busy companies ", "Waste no valuable business time, just order, unpack, set in place and ENJOY YOUR BREAK!! ", "Your complete Coffee Break Lunch Room Furniture Buffet Kitchenette group ships on secure pallets for safe arrival to your address. ", "Purchase does NOT include inside delivery, setup or debris removal "], "total_reviews": "", "total_answered_questions": "", "model": "8004", "customization_options": "", "seller_id": "A31TCTKY0OQWAY", "seller_name": "TITAN eFurniture Industries Inc", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RQ22QJY", "category": "garden", "query": "Buffets & Sideboards", "page": 58, "small_description_old": "About this item\n \nCommercial grade Thermally-Fused Melamine fully assembled furniture for use in busy companies Waste no valuable business time, just order, unpack, set in place and ENJOY YOUR BREAK!! Your complete Coffee Break Lunch Room Furniture Buffet Kitchenette group ships on secure pallets for safe arrival to your address. Purchase does NOT include inside delivery, setup or debris removal"}, {"name": "Smof 5808 Home Stereo Wireless Receiver& Transmitter, apt-X HD/LL Support LCD Visual Screen Display Audio Receiver Adapter for TV, Speakers,Home Theater,Headset,Headphone", "product_information": {"Package Dimensions": "5.94 x 4.84 x 2.2 inches", "Item Weight": "8.6 ounces", "ASIN": "B08Q3FW68R", "Customer Reviews": {"ratings_count": 6, "stars": "3.1 out of 5 stars"}, "Best Sellers Rank": ["#258,513 in Electronics (See Top 100 in Electronics) #480 in Audio Component Receivers"], "Date First Available": "December 9, 2020", "Manufacturer": "Smof", "Country of Origin": "China"}, "brand": "Visit the Smof Store", "brand_url": "https://www.amazon.com/stores/Smof/page/4F621903-AAFD-48A8-9CB2-7109867D4C88?ref_=ast_bln", "full_description": "", "pricing": "$69.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41afXOL2QEL.jpg", "https://m.media-amazon.com/images/I/51baqWx533L.jpg", "https://m.media-amazon.com/images/I/41qejyngBAL.jpg", "https://m.media-amazon.com/images/I/51PvRUNVhaL.jpg", "https://m.media-amazon.com/images/I/419J+ld9l1L.jpg", "https://m.media-amazon.com/images/I/51Vyw+UEWrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Home Theater \u203a Receivers & Amplifiers \u203a Receivers", "average_rating": 3.1, "small_description": ["\u3010Transmit and receive 2 in 1\u3011 TX mode: Make wired devices (TV, home audio system, PC) wireless, enjoy entertainment without disturbing others. Receiving mode: Make the wired speaker become wireless. Reuse outdated classic wired speakers to keep up with the trend. Bypass mode: 2 audio devices will be directly connected together through bypass mode, without having to unplug the cable every time. ", "\u3010LED visual display\u3011 The Smof audio receiver for home stereo will visually display the pairing status. It is more humane than the traditional operation panel, making the operation easier. After the first pairing is successful, the receiver will automatically remember the connection record. Automatic connection, no need to repeat connection. ", "\u3010Apt-X HD 24 bit 48KHz\u3011 Apt-X HD and LL decoding functions bring you a lower signal-to-noise ratio, less sound distortion and higher transmission rate, while eliminating audio delay. This receiver and transmitter can be paired with two devices when watching TV, movies or games without delay, and both players will enjoy super fast audio streaming. Note: To get AptX LL / HD sound effects, your receiving device must also support AptX LL / HD. ", "\u3010Super signal range\u3011 The dual antenna design makes the signal of the audio receiver more stable and accurate. The transmission distance in RX mode can reach 98 feet, and the transmission distance in TX mode can reach 164 feet. You can use wireless headphones to move freely within this range. ", "\u3010Please pay attention\u3011 Please make sure that the connection mode on the screen matches the cable plugged into the socket (RX/TX). Before using the product, please read the instruction manual carefully. The product has a one-year warranty. For non-artificial quality problems, the product can be refunded or resent within one year. "], "total_reviews": 6, "total_answered_questions": 7, "customization_options": {"Color": null}, "seller_id": "AVL8S28QMSDES", "seller_name": "Smof", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08Q3FW68R", "category": "electronics", "query": "Home Theater Systems", "page": 122, "small_description_old": "About this item\n \n\u3010Transmit and receive 2 in 1\u3011 TX mode: Make wired devices (TV, home audio system, PC) wireless, enjoy entertainment without disturbing others. Receiving mode: Make the wired speaker become wireless. Reuse outdated classic wired speakers to keep up with the trend. Bypass mode: 2 audio devices will be directly connected together through bypass mode, without having to unplug the cable every time. \u3010LED visual display\u3011 The Smof audio receiver for home stereo will visually display the pairing status. It is more humane than the traditional operation panel, making the operation easier. After the first pairing is successful, the receiver will automatically remember the connection record. Automatic connection, no need to repeat connection. \u3010Apt-X HD 24 bit 48KHz\u3011 Apt-X HD and LL decoding functions bring you a lower signal-to-noise ratio, less sound distortion and higher transmission rate, while eliminating audio delay. This receiver and transmitter can be paired with two devices when watching TV, movies or games without delay, and both players will enjoy super fast audio streaming. Note: To get AptX LL / HD sound effects, your receiving device must also support AptX LL / HD. \u3010Super signal range\u3011 The dual antenna design makes the signal of the audio receiver more stable and accurate. The transmission distance in RX mode can reach 98 feet, and the transmission distance in TX mode can reach 164 feet. You can use wireless headphones to move freely within this range. \u3010Please pay attention\u3011 Please make sure that the connection mode on the screen matches the cable plugged into the socket (RX/TX). Before using the product, please read the instruction manual carefully. The product has a one-year warranty. For non-artificial quality problems, the product can be refunded or resent within one year."}, {"name": "1PCS 15ml/15g Refillable Round Air Cushion Puff Box Makeup Case with Mirror Powder Puff and Sponge BB CC Cream Dispenser Liquid Foundation Holder Cosmetic Containers Organizer", "product_information": {"Product Dimensions": "0.39 x 0.39 x 0.39 inches", "Item Weight": "0.035 ounces", "Department": "Unisex-adult", "Manufacturer": "Bamboopack", "ASIN": "B09B1M51SK", "Item model number": "WTTU47608", "Best Sellers Rank": ["#646,938 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #12,487 in Refillable Cosmetic Containers #29,079 in Makeup Bags & Cases"]}, "brand": "Brand: Bamboopack", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Bamboopack", "full_description": "1 pcs for each order;Capacity:15ml/0.5oz;Color:As the picture shows;Size:Approx 78mm x 32mm/3inch x 1.3inch(Diameter x Height).Made of food grade premium plastic, no harm to human body, can be used securely.Ideal containers for BB cream, CC cream, liquid foundation.Great for DIY.Come with makeup mirror. After receiving it, tear off the protective film of the makeup mirror and use it.Delicate and lightweight, wearable and durable, it doesn't take up space, easy to use and convenient to carry.Suitable for travel, business trip, daily life, etc.", "pricing": "$8.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31AzkJuGzIL.jpg", "https://m.media-amazon.com/images/I/41PAp9cZkgL.jpg", "https://m.media-amazon.com/images/I/312a0D8TeDL.jpg", "https://m.media-amazon.com/images/I/41bUhcWLOTL.jpg", "https://m.media-amazon.com/images/I/41jvvvg2pTL.jpg", "https://m.media-amazon.com/images/I/317GhhXdLgL.jpg", "https://m.media-amazon.com/images/I/41SSjeqSanL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": "", "small_description": ["1 pcs for each order;Capacity:15ml/0.5oz;Color:As the picture shows;Size:Approx 78mm x 32mm/3inch x 1.3inch(Diameter x Height). ", "Made of food grade premium plastic, no harm to human body, can be used securely. ", "Ideal containers for BB cream, CC cream, liquid foundation.Great for DIY. ", "Come with makeup mirror. After receiving it, tear off the protective film of the makeup mirror and use it. ", "Delicate and lightweight, wearable and durable, it doesnt take up space, easy to use and convenient to carry.Suitable for travel, business trip, daily life, etc. "], "total_reviews": "", "total_answered_questions": "", "model": "WTTU47608", "customization_options": "", "seller_id": "A1FB70LQJJBZ26", "seller_name": "Eliafng-us", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09B1M51SK", "category": "beauty", "query": "Refillable Containers", "page": 138, "small_description_old": "1 pcs for each order;Capacity:15ml/0.5oz;Color:As the picture shows;Size:Approx 78mm x 32mm/3inch x 1.3inch(Diameter x Height). Made of food grade premium plastic, no harm to human body, can be used securely. Ideal containers for BB cream, CC cream, liquid foundation.Great for DIY. Come with makeup mirror. After receiving it, tear off the protective film of the makeup mirror and use it. Delicate and lightweight, wearable and durable, it doesnt take up space, easy to use and convenient to carry.Suitable for travel, business trip, daily life, etc."}, {"name": "Women's One Piece Swimsuit Halter Plunge Neck Tummy Control Bathing Suits Push Up Tankini Sets Plus Size Beachwear", "product_information": {"Item model number\n \u200f": "\u200e\n Gift for girlfriend", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 3, 2022", "Manufacturer\n \u200f": "\u200e\n SSYUNO", "ASIN\n \u200f": "\u200e\n B09PL5W9PD", "": ""}, "brand": "Brand: SSYUNO", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=SSYUNO", "full_description": "Item specifics Gender: Women Season: Summer Occasion: Daily,Swimming pool ,Sea Material: 85% Polyester 15% Spandex Decoration: None Clothing Length: Regular Pattern Type: Print Sleeve Style: Regular Style: Sexy,Casual Package include: 1 Set Swimwear (Containing Chest Pad) swimsuit coverup for women/plus size swimsuit for women/womens one piece swimsuits/tankini bathing suits for women/womens tankini bathing suits/cover ups for swimwear women/tankini bathing suits for women/womens bathing suits/bathing suits for women/bathing suits for girls/high waisted bathing suits for women/high waisted bikini/bikini sets for women/bikini underwear for women/women's bikini swimsuits/swimsuit coverup for women", "pricing": "$7.80", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41g9n1A4jUL.jpg", "https://m.media-amazon.com/images/I/41g9n1A4jUL.jpg", "https://m.media-amazon.com/images/I/51FIPiRFTnL.jpg", "https://m.media-amazon.com/images/I/51chKOfoSXL.jpg", "https://m.media-amazon.com/images/I/41EKT9N+emL.jpg", "https://m.media-amazon.com/images/I/41Ya3l6ZWiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Swimsuits & Cover Ups \u203a One-Pieces", "average_rating": "", "small_description": ["\ud83d\udd25 Spring Big Promotion \ud83d\udd25\u2600Today's Deals Big Promotion\u2714Buy 2 get 8% off Buy 3 get 10% off Buy 4 get 12% off Buy 4 get 12% off. Offered by SSYUNO\ud83d\udd25\uff087-15day Delivery\uff09 ", "\u3010ABOUT SHIPPING\u3011Expedited Shipping:3-5 Days.\ud83d\udc3e Standard shipping:7-18 Days.\ud83d\udc3e Within 24 Hours Shipping Out. ", "Drawstring closure ", "Machine Wash ", "Welcome to the SSYUNO store, we offer flexible free Returns and Exchanges. If You have any questions, please feel free to contact us by email. We will give you a satisfactory response within 24 Hours. ", "2 Pieces Sets for Men: Both tops and sweatpants have 2 side pockets as well as a pocket in the back of the pants , convenient for storing small items like phone, keys, cards etc\uff1bFit for light sport men's body close-fitting design with good stitching,maintain high performance in sports. ", "Sweat hoodies: Featured with fashion colors, adjustable hood, elastic ribbed cuffs and , stretchy tops bottom allow maximum motion, zipper closure\uff0cmakes it easy to put on and take it off. Sweatpants: Drawstring closure,relaxed leg, elastic waistband and ribbed hem, seal in warmth. , Men's Hooded Suitable for vacation, work, party, wedding, club, homecong, shopping,cocktail, evening,beach or casual wear.Overall Zip up Playsuit Pair it with your favorite high heels,flat shoes,sandals,Sports shoes, walking shoes, ankle boots will be a good choice, NOTICE: Please read the size chart provided by us carefully before placing an order, and choose the size according to the picture (it is recommended to buy one size larger). The size chart is not ours, please do not use it! ! !"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PL5W9PD"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PL64JPQ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PL581TR"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PL4KKW3"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09PL4M97T"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09PL69JJ5"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41g9n1A4jUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PL5KZ4S/ref=twister_B09PL5BNSQ", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yC6GHCkPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PL5CJYS/ref=twister_B09PL5BNSQ", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Rv+9643vL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PL5W9PD", "category": "fashion", "query": "Women's Swimsuits & Cover Ups", "page": 127, "small_description_old": "\ud83d\udd25 Spring Big Promotion \ud83d\udd25\u2600Today's Deals Big Promotion\u2714Buy 2 get 8% off Buy 3 get 10% off Buy 4 get 12% off Buy 4 get 12% off. Offered by SSYUNO\ud83d\udd25\uff087-15day Delivery\uff09 \u3010ABOUT SHIPPING\u3011Expedited Shipping:3-5 Days.\ud83d\udc3e Standard shipping:7-18 Days.\ud83d\udc3e Within 24 Hours Shipping Out. Drawstring closure Machine Wash Welcome to the SSYUNO store, we offer flexible free Returns and Exchanges. If You have any questions, please feel free to contact us by email. We will give you a satisfactory response within 24 Hours. 2 Pieces Sets for Men: Both tops and sweatpants have 2 side pockets as well as a pocket in the back of the pants , convenient for storing small items like phone, keys, cards etc\uff1bFit for light sport men's body close-fitting design with good stitching,maintain high performance in sports. Sweat hoodies: Featured with fashion colors, adjustable hood, elastic ribbed cuffs and , stretchy tops bottom allow maximum motion, zipper closure\uff0cmakes it easy to put on and take it off. Sweatpants: Drawstring closure,relaxed leg, elastic waistband and ribbed hem, seal in warmth. \n Men's Hooded Suitable for vacation, work, party, wedding, club, homecong, shopping,cocktail, evening,beach or casual wear.Overall Zip up Playsuit Pair it with your favorite high heels,flat shoes,sandals,Sports shoes, walking shoes, ankle boots will be a good choiceNOTICE: Please read the size chart provided by us carefully before placing an order, and choose the size according to the picture (it is recommended to buy one size larger). The size chart is not ours, please do not use it! ! !Show more"}, {"name": "OUOU USB A Male to 12V Car Cigarette Lighter Socket Female Step Up Cable Inverter Converter Car Cigarette Lighters Compatible Driving Recorder GPS E-Dog Etc-Black (0.3m/0.98ft)", "product_information": {"Item Weight": "\u200e1.58 ounces", "Package Dimensions": "\u200e4 x 2.3 x 0.4 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200e8523748853", "Is Discontinued By Manufacturer": "\u200eNo", "ASIN": "B07H179NY3", "Customer Reviews": {"ratings_count": 526, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#42,109 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #1,019 in Antitheft Products #2,166 in Cell Phone Automobile Accessories"], "Date First Available": "August 31, 2018"}, "brand": "Brand: OUOU", "brand_url": "https://www.amazon.com/OUOU/b/ref=bl_dp_s_web_10618830011?ie=UTF8&node=10618830011&field-lbr_brands_browse-bin=OUOU", "full_description": "Product Description:Color: Black Name:USB to Cigarette Lighter Adapter. USB Input: 5V 2A, make sure USB power supply enough 2A with full power. Cigarette Lighter Socket Output:12V 8W Max, depends on the power from your USB port. Length: 30cm/0.98ft. Use for: Convert power from USB port to 12V car cigarette lighter socket. Feature: This USB step up cable have a range wide of application in car. Convert power from USB port to 12V car cigarette lighter socket. Fit for many 12v devices, such as: Driving recorder, electronic dog, dash cam, GPS, radar detector, solar panel, heated seat, led lining strip, Rino 650, tire inflator, led lights, Garmin or other GPS FM traffic receiver, fan, VA supplied health equipment that uses a cigarette port for the charger, ect. You get: 1X USB to Cigarette Lighter Adapter, 12-month warranty and our friendly after-sales service.", "pricing": "$7.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31tWqAtA8bL.jpg", "https://m.media-amazon.com/images/I/317DXAz1ynL.jpg", "https://m.media-amazon.com/images/I/41nDFVvttLL.jpg", "https://m.media-amazon.com/images/I/4115sHsS84L.jpg", "https://m.media-amazon.com/images/I/41STf3Bym0L.jpg", "https://m.media-amazon.com/images/I/41X970W9EpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Automotive \u203a Interior Accessories \u203a Anti-Theft", "average_rating": 4.2, "small_description": ["Product Specification:Length:30cm/0.98ft, USB Input: 5V 2A, Cigarette Lighter Socket Output: 12V 8W Max, depends on the power from your USB port.\uff08Please check the rate power of the device you are going to use with this cable!\uff09 ", "Multiple intelligent safety protection, boost module comes with over-voltage, short circuit and other multiple protection. Omni-directional protection of power supply equipment and electrical equipment safety. ", "USB Port to Car Cigarette Lighter Female Socket Step up cable Power Converter, convert power from USB port to 12V car cigarette lighter socket. ", "The use of, for example: 1. After the car stopped using the mobile power to drive tachographs, purifiers and other equipment power supply .2 tachograph, purifier and other car equipment to bring home use .3. Car emergency power supply 12V DC output to drive recorder, electronic dog and other equipment. ", "[Warranty Policy] :We have a 12 month warranty policy. If your product has any quality problems, please contact us as soon as possible and we will give you a satisfactory answer. "], "total_reviews": 526, "total_answered_questions": 17, "model": "\u200e8523748853", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "0.3m/0.98ft", "price_string": "$7.99", "price": 7.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07H19J2JW/ref=twister_B07R4P17CG?_encoding=UTF8&psc=1", "value": "0.6m/1.96ft", "price_string": "$8.99", "price": 8.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07H196N7M/ref=twister_B07R4P17CG?_encoding=UTF8&psc=1", "value": "1.2m/3.9ft", "price_string": "$8.99", "price": 8.99, "image": null}]}, "seller_id": "A18KNWOBTYX8EL", "seller_name": "Jiyunyuan", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07H179NY3", "category": "electronics", "query": "Car Accessories", "page": 56, "small_description_old": "Product Specification:Length:30cm/0.98ft, USB Input: 5V 2A, Cigarette Lighter Socket Output: 12V 8W Max, depends on the power from your USB port.\uff08Please check the rate power of the device you are going to use with this cable!\uff09 Multiple intelligent safety protection, boost module comes with over-voltage, short circuit and other multiple protection. Omni-directional protection of power supply equipment and electrical equipment safety. USB Port to Car Cigarette Lighter Female Socket Step up cable Power Converter, convert power from USB port to 12V car cigarette lighter socket. The use of, for example: 1. After the car stopped using the mobile power to drive tachographs, purifiers and other equipment power supply .2 tachograph, purifier and other car equipment to bring home use .3. Car emergency power supply 12V DC output to drive recorder, electronic dog and other equipment. [Warranty Policy] :We have a 12 month warranty policy. If your product has any quality problems, please contact us as soon as possible and we will give you a satisfactory answer. \n \u203a See more product details"}, {"name": "100% PURE Argan Oil, Cold-Pressed, Natural Moisturizer for Skin, Hair & Nails, Facial Serum, Hair Detangler, Cuticle Oil, Makeup Remover - 1.52 Fl Oz", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 4.72 x 1.38 x 1.38 inches; 8 Ounces", "Department\n \u200f": "\u200e\n 16 Face Moisturizer", "UPC\n \u200f": "\u200e\n 899738007487 899738007593", "Manufacturer\n \u200f": "\u200e\n Cutting Edge International, LLC", "ASIN\n \u200f": "\u200e\n B008QA6YOC", "Best Sellers Rank": "#131,647 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,375 in Amazon Launchpad Beauty & Health #2,742 in Face Moisturizers", "#1,375 in Amazon Launchpad Beauty & Health": "", "#2,742 in Face Moisturizers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the 100% PURE Store", "brand_url": "https://www.amazon.com/stores/100%25+Pure/page/64C2D37E-66DA-4BAE-BB1E-B292EA197869?ref_=ast_bln", "full_description": "100% Pure Organic argan oil rich with vitamin E, phenols, carotenes, squalene and essential fatty acids.", "pricing": "$34.00", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31p5c5MZFqL.jpg", "https://m.media-amazon.com/images/I/315ge8F2JRL.jpg", "https://m.media-amazon.com/images/I/41JStJiOYYL.jpg", "https://m.media-amazon.com/images/I/41e8IMMyfaL.jpg", "https://m.media-amazon.com/images/I/51pY00IGXgL.jpg", "https://m.media-amazon.com/images/I/410hie00yYL.jpg", "https://m.media-amazon.com/images/I/41WRqe0NLFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Creams & Moisturizers \u203a Face Moisturizers", "average_rating": 4, "small_description": ["MAKEUP REMOVER -- Tackle stubborn eye makeup with argan oil, which easily dissolves makeup without leaving skin greasy. ", "DEEPLY MOISTURIZE -- Argan oil is naturally rich in Vitamin E and essential fatty acids that deeply moisturize while helping restore your skin\u2019s moisture barrier. ", "SKIN COMPATIBLE -- Thanks to its similar composition to your skin's lipids, argan oil is lightweight and fast-absorbing to use, and won\u2019t leave skin feeling greasy. ", "TAME FRIZZ - Apply argan oil onto dry, frizzy hair to smooth, gloss, and detangle. ", "CARRIER OIL -- Argan oil makes a great carrier oil for essential oils, thanks to its compatibility with skin and soothing properties. "], "total_reviews": 4, "total_answered_questions": "", "customization_options": "", "seller_id": "A161OT36SON0IZ", "seller_name": "100% PURE", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B008QA6YOC", "category": "beauty", "query": "Makeup Remover", "page": 84, "small_description_old": "About this item MAKEUP REMOVER -- Tackle stubborn eye makeup with argan oil, which easily dissolves makeup without leaving skin greasy. DEEPLY MOISTURIZE -- Argan oil is naturally rich in Vitamin E and essential fatty acids that deeply moisturize while helping restore your skin\u2019s moisture barrier. SKIN COMPATIBLE -- Thanks to its similar composition to your skin's lipids, argan oil is lightweight and fast-absorbing to use, and won\u2019t leave skin feeling greasy. TAME FRIZZ - Apply argan oil onto dry, frizzy hair to smooth, gloss, and detangle. CARRIER OIL -- Argan oil makes a great carrier oil for essential oils, thanks to its compatibility with skin and soothing properties."}, {"name": "Amanti Art Door Mirror (55.50 x 21.50 in.), Ballroom Bronze Frame - Full Length Mirror, Full Body Mirror, Wall Mirror - Bronze", "product_information": {"Product Dimensions": "1.25 x 21.5 x 55.5 inches", "Item Weight": "14.88 pounds", "Manufacturer": "Amanti Art", "ASIN": "B07S2Z9KGP", "Country of Origin": "USA", "Item model number": "DSW4593726", "Customer Reviews": {"ratings_count": 11, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#1,049,600 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,775 in Wall-Mounted Mirrors"], "Is Discontinued By Manufacturer": "No", "Assembly Required": "No", "Number of Pieces": "1", "Batteries Required?": "No", "Import Designation": "Made in USA and Imported"}, "brand": "Visit the Amanti Art Store", "brand_url": "https://www.amazon.com/stores/AmantiArt/page/EA140E82-2235-47AB-8A68-3FE418265DD4?ref_=ast_bln", "full_description": "PRODUCT: On The Door Full Length Door Mirror, Ballroom Bronze; FRAME: Ballroom Bronze 4\"; FRAME STYLE: Traditional; FRAME FINISH: Bronze Finish; FRAME COLOR: Brown; OUTER SIZE: 21.50 x 55.50 inches. The Ballroom Bronze frame features a contemporary, wide burnished bronze frame with a wide face that slopes up to an inner lip. The outer edge is finished in smooth, matte black. This high-quality, full-length mirror complements your decor without the need for unsightly \"over the door\" brackets. Our On The Door Mirror comes with two hooks to hang directly on your door without additional anchors or brackets. Amanti Art is headquartered in Madison, WI and provides high quality, handmade framed art, mirrors and organization boards for your home improvement projects. Our home decor products are made using traditional custom framing techniques that give you the kind of quality you'd expect from your local frame shop. Because of our focus on workmanship, our products are used by architects, developers, interior designers and homeowners alike to create beautiful functional living spaces.", "pricing": "$147.42", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31le2N4Wi4L.jpg", "https://m.media-amazon.com/images/I/41dWTxjsWwL.jpg", "https://m.media-amazon.com/images/I/31jukqkqtyL.jpg", "https://m.media-amazon.com/images/I/410UxjbVTxL.jpg", "https://m.media-amazon.com/images/I/41XA-xSBH6L.jpg", "https://m.media-amazon.com/images/I/51yCCUhJ4wL.jpg", "https://m.media-amazon.com/images/I/712smp6wGOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Mirrors \u203a Wall-Mounted Mirrors", "average_rating": 4.6, "small_description": ["DIMENSIONS: The overall size of this full-length mirror measures 21.50 x 55.50 inches, including the frame. Its reflective area measures 14.00 x 48.00 inches. The mirror works perfectly as a door mirror, full size mirror or large mirror on the wall. The mirror itself is not beveled, for full use of the reflective area. ", "QUALITY FRAMING: You can not mistake the quality of handmade mirrors for your wall decor. The Ballroom Bronze frame is a contemporary, burnished bronze frame with a wide face that slopes up to an inner lip. The outer edge is finished in smooth, matte black. The frame measures 4.06 x 1.31 inches. All Amanti Art wall mirrors are finished with a paper backing to prevent moisture and dust buildup. ", "ON THE DOOR PLACEMENT: We make it very easy for you to hang this full-length mirror on any door without unsightly over the door brackets. Each mirror has durable D rings attached to the back along with 2 hanging hooks and nails to tap directly into your door or wall. The D rings hang easily on each hook without additional anchors or brackets. Our nail/hook combination works well on traditional walls, solid doors, and even hollow core doors. ", "ASSEMBLED IN THE USA: Amanti Art custom frames decorative mirrors and assembles each piece to order in Madison, WI. Because our focus is on workmanship, our products are used by architects, developers, designers, and homeowners alike to create beautiful living spaces. ", "GREAT WAYS TO USE A DOOR MIRROR: A tall mirror is perfect for full-body viewing. It can be hung on the back of a closet, bathroom, or bedroom door as an easy and space-saving way to see your entire reflection. In a foyer or living room, it works not only for image viewing but also makes your space appear larger and more inviting if placed to reflect other home decor elements or light. "], "total_reviews": 11, "total_answered_questions": "", "model": "DSW4593726", "customization_options": {"Size": null, "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07S43GXG2/ref=twister_B09DRPQQLV?_encoding=UTF8&psc=1", "value": "Accent Bronze", "price_string": "$143.41", "price": 143.41, "image": "https://m.media-amazon.com/images/I/01ydE0dmMvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07S2ZMLDD/ref=twister_B09DRPQQLV?_encoding=UTF8&psc=1", "value": "Accent Bronze Narrow", "price_string": "$128.49", "price": 128.49, "image": "https://m.media-amazon.com/images/I/016fTqWqF+L.jpg"}, {"is_selected": true, "url": null, "value": "Ballroom Bronze", "price_string": "$147.42", "price": 147.42, "image": "https://m.media-amazon.com/images/I/01ERo+SF0WL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MTMRZ5C/ref=twister_B09DRPQQLV?_encoding=UTF8&psc=1", "value": "Herra Brushed Bronze", "price_string": "$122.49", "price": 122.49, "image": "https://m.media-amazon.com/images/I/01AtY3B7LRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07S2ZW62F/ref=twister_B09DRPQQLV?_encoding=UTF8&psc=1", "value": "Ridge Bronze", "price_string": "$131.53", "price": 131.53, "image": "https://m.media-amazon.com/images/I/01BmwCF3dRL.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07S2Z9KGP", "category": "garden", "query": "Decorative Mirrors", "page": 49, "small_description_old": "About this item DIMENSIONS: The overall size of this full-length mirror measures 21.50 x 55.50 inches, including the frame. Its reflective area measures 14.00 x 48.00 inches. The mirror works perfectly as a door mirror, full size mirror or large mirror on the wall. The mirror itself is not beveled, for full use of the reflective area. QUALITY FRAMING: You can not mistake the quality of handmade mirrors for your wall decor. The Ballroom Bronze frame is a contemporary, burnished bronze frame with a wide face that slopes up to an inner lip. The outer edge is finished in smooth, matte black. The frame measures 4.06 x 1.31 inches. All Amanti Art wall mirrors are finished with a paper backing to prevent moisture and dust buildup. ON THE DOOR PLACEMENT: We make it very easy for you to hang this full-length mirror on any door without unsightly over the door brackets. Each mirror has durable D rings attached to the back along with 2 hanging hooks and nails to tap directly into your door or wall. The D rings hang easily on each hook without additional anchors or brackets. Our nail/hook combination works well on traditional walls, solid doors, and even hollow core doors. ASSEMBLED IN THE USA: Amanti Art custom frames decorative mirrors and assembles each piece to order in Madison, WI. Because our focus is on workmanship, our products are used by architects, developers, designers, and homeowners alike to create beautiful living spaces. GREAT WAYS TO USE A DOOR MIRROR: A tall mirror is perfect for full-body viewing. It can be hung on the back of a closet, bathroom, or bedroom door as an easy and space-saving way to see your entire reflection. In a foyer or living room, it works not only for image viewing but also makes your space appear larger and more inviting if placed to reflect other home decor elements or light."}, {"name": "Med-Choice Special Pack Of 5 Q-Tips Swabs 170 Per Pack by Med-Choice", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Manufacturer\n \u200f": "\u200e\n Med-Choice", "ASIN\n \u200f": "\u200e\n B01GR1ABDG", "": ""}, "brand": "Visit the Med-Choice Store", "brand_url": "https://www.amazon.com/stores/MedChoice/page/C51FE131-1D2A-4D28-B13B-A30DA6A36D55?ref_=ast_bln", "full_description": "Perfect For Use On Even The Most Sensitive Areas For First Aid, Baby Care & Other Household Uses Made From 100% Pure Cotton", "pricing": "$21.15", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51UhWlycfBL.jpg", "https://m.media-amazon.com/images/I/41iQU2lrlkL.jpg", "https://m.media-amazon.com/images/I/51ao51HPLXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Cotton Balls & Swabs \u203a Cotton Swabs", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A82MLX8CMW8NO", "seller_name": "Mr. Medical", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01GR1ABDG", "category": "beauty", "query": "Cotton Balls & Swabs", "page": 33, "small_description_old": ""}, {"name": "01 Video Projector, LED Projector Outdoor 1080P HD White Multipurpose with Speaker for Home Theater for Movie for Game(U.S. regulations, Transl)", "product_information": {"Package Dimensions": "11.02 x 7.48 x 4.33 inches", "Item Weight": "3.28 pounds", "ASIN": "B09D42HCTN", "Date First Available": "August 19, 2021", "Manufacturer": "01"}, "brand": "Brand: 01", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=01", "full_description": "Features: The dual vortex fan system is powered by high-efficiency heat dissipation, and the turbine circulates the airflow to conceal the heat dissipation design. The system fully optimizes the air duct curve and enhances the heat dissipation effect to ensure stable and smooth system operation. High-definition image processing reduces jaggedness, smooth and clear images, and superior detail. Diffuse reflex imaging protects the health of the eyes. Even if you watch it for a long time, you will not feel eyesight fatigue. It is suitable for the whole family and young people. Rich expansion interface, support for access to game consoles, support for dual USB, HDMI, YGA/headphone interface, AV, KTV equipment, audio equipment, etc., to meet the fans of the projector. Built-in composite diaphragm large volume speaker for a wide range of listening sound effects. Specification:Material: ABSStandard: US, EU, UK, AU(optional)Physical Resolution: 1280x720Luminance: 1500Contrast Ratio: 1000:1Screen Proportion: 4:3/16:9Throw Ratio: 1.4:1Projection Technology: LCDResolution: 1080P(Max)Color Quantity: 16770KProjection Size: 32-150inchProjection Distance: Approx. 0.8-3.8m/2.62-12.47ftOptimum Projection Distance: Approx. 1.2-2m/47.24-78.74inchKeystone Correction: \u00b115\u00b0(Manual)Bulb Life: \uff1e30000h3D: Support Red&Blue 3DOperator Schema: Manual and remote controlInput Interface: AV input, USB input, Secure Digital Memory Card or TF card read input, HDMI input, VGA inputOutput Interface: Speaker, Stereo headphone outputAudio File: Support MP3/WMA/AAC, Seven sound effects + SRSImage File: Support common formats (such as JPEG, BMP, PNG, etc.), Support im", "pricing": "$138.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Nr8qjEsWL.jpg", "https://m.media-amazon.com/images/I/51LClFMiSwL.jpg", "https://m.media-amazon.com/images/I/51g1EVvJm-L.jpg", "https://m.media-amazon.com/images/I/51KHQqRXpkL.jpg", "https://m.media-amazon.com/images/I/51kL0fL5AaL.jpg", "https://m.media-amazon.com/images/I/512g2ZiPQJL.jpg", "https://m.media-amazon.com/images/I/51kyL37ZahL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Video Projectors", "average_rating": "", "small_description": ["The dual vortex fan system is powered by high-efficiency heat dissipation, and the turbine circulates the airflow to conceal the heat dissipation design. The system fully optimizes the air duct curve and enhances the heat dissipation effect to ensure sta ", "High-definition image processing reduces jaggedness, smooth and clear images, and superior detail. ", "Diffuse reflex imaging protects the health of the eyes. Even if you watch it for a long time, you will not feel eyesight fatigue. It is suitable for the whole family and young people. ", "Rich expansion interface, support for access to game consoles, support for dual USB, HDMI, YGA/headphone interface, AV, KTV equipment, audio equipment, etc., to meet the fans of the projector. ", "Built-in composite diaphragm large volume speaker for a wide range of listening sound effects. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "AHI9AGATNKEKQ", "seller_name": "Yencoly", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09D42HCTN", "category": "electronics", "query": "Projectors", "page": 377, "small_description_old": "The dual vortex fan system is powered by high-efficiency heat dissipation, and the turbine circulates the airflow to conceal the heat dissipation design. The system fully optimizes the air duct curve and enhances the heat dissipation effect to ensure sta High-definition image processing reduces jaggedness, smooth and clear images, and superior detail. Diffuse reflex imaging protects the health of the eyes. Even if you watch it for a long time, you will not feel eyesight fatigue. It is suitable for the whole family and young people. Rich expansion interface, support for access to game consoles, support for dual USB, HDMI, YGA/headphone interface, AV, KTV equipment, audio equipment, etc., to meet the fans of the projector. Built-in composite diaphragm large volume speaker for a wide range of listening sound effects."}, {"name": "Canon EOS Rebel T7i DSLR Camera with 18-55mm Lens (US Model)", "product_information": {"Product Dimensions": "2.05 x 1.54 x 1.18 inches", "Item Weight": "3.21 pounds", "ASIN": "B07JMMM1B5", "Item model number": "EOS Rebel T7i", "Batteries": "1 Lithium ion batteries required. (included)", "Customer Reviews": {"ratings_count": 2, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#370,002 in Electronics (See Top 100 in Electronics) #2,275 in DSLR Cameras"], "Is Discontinued By Manufacturer": "No", "Date First Available": "October 22, 2018", "Manufacturer": "Canon"}, "brand": "Visit the Canon Store", "brand_url": "https://www.amazon.com/stores/Canon/page/5FDDA83E-27A1-472F-8444-4828B50C4243?ref_=ast_bln", "full_description": "Canon Rebel T7i Specs", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/61K6ZVXBqoL.jpg", "https://m.media-amazon.com/images/I/51dCA8rWYGL.jpg", "https://m.media-amazon.com/images/I/41UiLOeoHdL.jpg", "https://m.media-amazon.com/images/I/518gr+Ihv5L.jpg", "https://m.media-amazon.com/images/I/51EENht1RBL.jpg", "https://m.media-amazon.com/images/I/51x4EDQUCbL.jpg", "https://m.media-amazon.com/images/I/41Prz9KswiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a DSLR Cameras", "average_rating": 5, "small_description": ["24.2MP APS-C CMOS Sensor;DIGIC 7 Image Processor; 3.0\" 1.04m-Dot Vari-Angle Touchscreen ", "Full HD 1080p Video Recording at 60 fps;45-Point All Cross-Type Phase-Detect AF ", "Dual Pixel CMOS AF;Up to 6 fps Shooting and ISO 51200; Built-In Wi-Fi with NFC, Bluetooth ", "HDR Movie and Time-Lapse Movie; EF-S 18-55mm f/4-5.6 IS STM Lens ", "US model with Canon warranty, not grey market "], "total_reviews": 2, "total_answered_questions": "", "model": "EOS Rebel T7i", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07JMMM1B5", "category": "electronics", "query": "Digital Cameras", "page": 111, "small_description_old": "About this item\n \n24.2MP APS-C CMOS Sensor;DIGIC 7 Image Processor; 3.0\" 1.04m-Dot Vari-Angle Touchscreen Full HD 1080p Video Recording at 60 fps;45-Point All Cross-Type Phase-Detect AF Dual Pixel CMOS AF;Up to 6 fps Shooting and ISO 51200; Built-In Wi-Fi with NFC, Bluetooth HDR Movie and Time-Lapse Movie; EF-S 18-55mm f/4-5.6 IS STM Lens US model with Canon warranty, not grey market"}, {"name": "Phomemo M02 Pocket Printer- Mini Bluetooth Thermal Printer with 3 Rolls White Sticker Paper, Compatible with iOS + Android for Learning Assistance, Study Notes, Journal, Fun, Work", "product_information": {"ASIN": "B086DK24K2", "Customer Reviews": {"ratings_count": 64, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#77,745 in Office Products (See Top 100 in Office Products) #96 in Receipt Printers #807 in Computer Printers"], "Date First Available": "March 26, 2020"}, "brand": "Visit the Phomemo Store", "brand_url": "https://www.amazon.com/stores/Phomemo/page/C9AB8D84-9B78-4C81-81E0-1889717073B5?ref_=ast_bln", "full_description": "", "pricing": "$59.39", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31hJb3+WsIL.jpg", "https://m.media-amazon.com/images/I/41mirnUoCAL.jpg", "https://m.media-amazon.com/images/I/51Q0HwT6MDL.jpg", "https://m.media-amazon.com/images/I/51JdpFN23pL.jpg", "https://m.media-amazon.com/images/I/51tFAUyt7pL.jpg", "https://m.media-amazon.com/images/I/41QD1QykubL.jpg", "https://m.media-amazon.com/images/I/61s9c+DxlhL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Electronics \u203a Printers & Accessories \u203a Printers", "average_rating": 4.6, "small_description": ["Connection- Bluetooth 4.0 connection. Phomemo M02 mini printer connected to the Phomemo APP through Bluetooth, wireless printer. System: for android 4.0, for IOS8.0 or above. ", "Portable Size and Fashion Design- Pocket Printer simple stylish shape, mini size slips neatly into your pocket., Built-in 1000mAh battery that lets you take it anywhere. It's ideal for Halloween, Thanksgiving day, Christmas and holiday presnet to child,family and friends. ", "With 3 Rolls White Sricker Paper: Clear Printing Image- Bright white clear quality photo paper with direct thermal printing. ", "Multifunctional: One-click printing, saving time and effort, can print text and photos instantly, phomemo app offers variety of fonts, filter effects and themes, make your black and white photo more stylish. Phomemo M02 mini printer is a funny printer, but not a Camera. "], "total_reviews": 64, "total_answered_questions": 5, "customization_options": "", "seller_id": "A2GRH7SRQVR45X", "seller_name": "Phomemo", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B086DK24K2", "category": "electronics", "query": "Printers & Scanners", "page": 67, "small_description_old": "About this item\n \nConnection- Bluetooth 4.0 connection. Phomemo M02 mini printer connected to the Phomemo APP through Bluetooth, wireless printer. System: for android 4.0, for IOS8.0 or above. Portable Size and Fashion Design- Pocket Printer simple stylish shape, mini size slips neatly into your pocket., Built-in 1000mAh battery that lets you take it anywhere. It's ideal for Halloween, Thanksgiving day, Christmas and holiday presnet to child,family and friends. With 3 Rolls White Sricker Paper: Clear Printing Image- Bright white clear quality photo paper with direct thermal printing. Multifunctional: One-click printing, saving time and effort, can print text and photos instantly, phomemo app offers variety of fonts, filter effects and themes, make your black and white photo more stylish. Phomemo M02 mini printer is a funny printer, but not a Camera."}, {"name": "Slip Silk Sleep Mask, Hollywood Hills (One Size) - 100% Pure Mulberry 22 Momme Silk Eye Mask - Comfortable Sleeping Mask with Elastic Band + Pure Silk Filler and Internal Liner", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.41 x 4.37 x 1.1 inches; 7.2 Ounces", "Date First Available\n \u200f": "\u200e\n March 5, 2020", "Manufacturer\n \u200f": "\u200e\n Slipsilk", "ASIN\n \u200f": "\u200e\n B085GLK7X4", "Best Sellers Rank": "#22,771 in Health & Household (See Top 100 in Health & Household)#61 in Eye Masks #69 in Sleep Masks", "#61 in Eye Masks": "", "#69 in Sleep Masks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the SLIP Store", "brand_url": "https://www.amazon.com/stores/SLIP/page/0FE7F180-A0DE-4D9B-B0EB-F50DCA458D2B?ref_=ast_bln", "full_description": "", "pricing": "$89.99", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41M4GsbXoJL.jpg", "https://m.media-amazon.com/images/I/31NNkKsiD8L.jpg", "https://m.media-amazon.com/images/I/41qj6ak65KL.jpg", "https://m.media-amazon.com/images/I/51L0VEDFIYS.jpg", "https://m.media-amazon.com/images/I/41z8jG2KcjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Eyes \u203a Masks", "average_rating": 4.7, "small_description": ["Sleep with Slip - Whether you're on a long-haul flight or treating yourself to some much-needed beauty sleep, this luxurious Slipsilk sleep mask will have you dreaming in no time. ", "Silk fibers are less absorbent than other fibers, so they can help keep expensive face and hair products where they belong. So what could be better than sleeping on a Slipsilk pillowcase? Wearing a luxurious Slipsilk sleep mask at the same time. ", "The Slipsilk difference - Slip pure silk products are made using Slipsilk. Specially-commissioned and made to our exacting standards, Slipsilk has been developed and refined for over ten years to provide the ultimate combination of shine, thickness, softness, and durability. "], "total_reviews": 562, "total_answered_questions": 8, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08F2VB1SS/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Apres Ski", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Lim-BbuXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01JZX0Y3A/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/211kycta5kL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078NXVV1F/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Bridesmaid - Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fuR4tp1FL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085GLPC7Z/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Cali Nights", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41byW2Z+rUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01JZX0Y26/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Caramel", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21qU6TaOOkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01JZX0Y2Q/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Charcoal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21QcvD+VbFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WR95ZDQ/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Desert Rose", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31j1kiaYf8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08F2X2H81/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Feathers", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ZwjSuLW4S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078P5FT9Z/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21zOJ+IB74L.jpg"}, {"is_selected": true, "url": null, "value": "Hollywood Hills", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41M4GsbXoJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HFWLRY4/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Leopard Black/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41w7opNno4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08F2YRLR2/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Lipstick Queen", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ztUT6zIXS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WR6WRSW/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Love is Love", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/415sEMM34UL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07PP9VLNK/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Marble", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31lCzHwJATL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078P3RFY9/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Mr - Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31hhu0NMXtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078P4R4LD/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Mrs - White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31LJ9epL6DL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078P46RTV/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21IkQ7H8aSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WRR3PZV/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Out of Office", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41X4QkdB+lL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01JZX0Y3U/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21FE9XsGq9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BX3LTZM/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Pink - Holiday Edition", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31wwxh2lY2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SH1GS8G/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Pink Kisses", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31lLG0rfDaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WHZQYMC/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Pink Marble", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31JOIWAJwaS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WPQ9HRQ/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Rose All Day", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Kn6RhtwAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08F2X44HD/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Rose Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/210D0Og0RcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078P6HJS9/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "Silver", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21Q8Pr1JXfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01JZX0Y5S/ref=twister_B078P3D45T?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21Q6Us3BX0L.jpg"}]}, "seller_id": "A17GP5YGUX23W7", "seller_name": "blee15", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B085GLK7X4", "category": "beauty", "query": "Hair Masks", "page": 151, "small_description_old": "About this item Sleep with Slip - Whether you're on a long-haul flight or treating yourself to some much-needed beauty sleep, this luxurious Slipsilk sleep mask will have you dreaming in no time. Silk fibers are less absorbent than other fibers, so they can help keep expensive face and hair products where they belong. So what could be better than sleeping on a Slipsilk pillowcase? Wearing a luxurious Slipsilk sleep mask at the same time. The Slipsilk difference - Slip pure silk products are made using Slipsilk. Specially-commissioned and made to our exacting standards, Slipsilk has been developed and refined for over ten years to provide the ultimate combination of shine, thickness, softness, and durability."}, {"name": "ShareJ Home Sweet Home Decorative Throw Pillow Covers Cotton Linen Inspirational Warm Quotes Home Decor Cushion Covers 18 x 18 inch,Set of 4", "product_information": {"Package Dimensions": "8.82 x 5.98 x 1.65 inches", "Item Weight": "8.8 ounces", "Manufacturer": "ShareJ", "ASIN": "B07P24ZMXK", "Customer Reviews": {"ratings_count": 235, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#518,436 in Home & Kitchen (See Top 100 in Home & Kitchen) #7,627 in Throw Pillow Covers"], "Number of Pieces": "4", "Batteries Required?": "No"}, "brand": "Brand: ShareJ", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ShareJ", "full_description": "Specification:ShareJ pillowcase 100% brand new and high quality, HD printingColor and pattern: HomeMaterial: Cotton blend linenSize: 18 X 18 InchesShape: SquarePackage includes: 1 X Pillow cover (WITHOUTpillow insert)Feature: 1.Made of safe, durable, breathable, dirt-resistant, non-fading and environmentally friendly cotton blend linen materials.2.ShareJ pillowcase exquisite workmanship, over-stitching, hidden zipper design, high-definition printing.3.ShareJ pillowcase can be washed and tumble dried in cold water.4.This pillowcase brings convenience to your life and adds color to your life.5.Perfect for car, sofa, bed, office, coffee shop, book store, hotel, club, party etc. super gift for your family and friends, suit for each holiday, such as birthday, valentine's day, mother\u2019s day, father\u2019s day, christmas, anniversary and so on.Note:1.This is hand-made item, please allow slight deviation for the color and measurement! please understand, thanks!2.The hidden zipper can be opened about 34-36 cm, the pillow core is folded in half and inserted into the pillowcase to spring open, and the pillow will be naturally filled.3.If there is anything we can help you, please feel free to contact us at any time and we\u2019ll continually provide full support.4.Please rest assured that we\u2019ll value every customer highly and we\u2019ll do our utmost to serve you.--------Thanks visit our shop, have a nice shopping time! --------", "pricing": "$19.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51QYtfUL5YL.jpg", "https://m.media-amazon.com/images/I/51OuiaZ624L.jpg", "https://m.media-amazon.com/images/I/51oy3rNNGdL.jpg", "https://m.media-amazon.com/images/I/51rtVczfD6L.jpg", "https://m.media-amazon.com/images/I/51caWdJcWFL.jpg", "https://m.media-amazon.com/images/I/41Si+7zVmIL.jpg", "https://m.media-amazon.com/images/I/512urDd-inS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": 4.5, "small_description": ["Material: Made of durable cotton blend linen fabric ", "Size: 18 x 18 Inches/45 cm x 45 cm(\u00b11-2cm deviation) ", "Printing: Pattern available only on the front, and the back is plain linen color without printing ", "Design: Pillow cover ONLY!(insert are not included) /soft, durable, hidden zipper design and allows easy insertion and removal of pillow inser ", "Application: Perfect for car, sofa, bed, office, coffee shop, book store, hotel, club, party etc. super gift for your family and friends, suit for each holiday, such as birthday, valentine's day, mother\u2019s day, father\u2019s day, christmas, anniversary and so on "], "total_reviews": 235, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08YR4H35B/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Ink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51d6yikHJzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0911V12L4/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51iGGzpWEyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TQGZLB4/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Adorable Bunny", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/514dfwHvaiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07V4QXJYP/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Black Farmhouse", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51t-ab121vL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07RXHDLC9/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Bluebird", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51UPFsXQDgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07RP7QFQ9/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Bs", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517uh9AXDiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PXYF9KS/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Bunny", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51BC8SyrZQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08Y5L6K73/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "China", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61V90RFM7QL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085DHJZGK/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Dandelion Theme", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412u41n9n1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085RKJVZ8/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Flamingo Set", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51B7eNulQTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YR5YT16/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Fr", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51wH2zufVwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07V5TJSYH/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Grassland", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51vcnY3fQgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085VD2SLN/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Happy Easter Day", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51N4fedNdKL.jpg"}, {"is_selected": true, "url": null, "value": "Home", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51QYtfUL5YL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PV91B7G/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Lemonade", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51iH7q8FqwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08K39PYXG/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Letters Words", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51q2v-aYK+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07S3T5354/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "London Artwork", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517XGn2YziL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085ZV8QDY/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Mom Gifts", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51PKjEQv+jL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TQ6KD7Y/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Multicolor Bonsai", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517k8Z4g6ZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085DFZP6V/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Music Theme", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Spt5DJyoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08761739G/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Nautical Pillowcase", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/614d4ybtFSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07V7VKHZK/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Red Farmhouse", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51zMvXoCmGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07V3QW36W/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Rural", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51fD-deX5TL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085T3X4BH/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Spring Pillow Cover", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Pv3-gurTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YJ571CJ/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Summer Fruit", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51x8eJ8cSvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07V6WPNXT/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Tenement", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51VttrlHvJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZHMRZTN/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Usa Flag", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51cybZ33pyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TQVRB2G/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Usa Map", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51mtK4oDi7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08CD93HYX/ref=twister_B07NYVQLLF?_encoding=UTF8&psc=1", "value": "Yum Pumpkin", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51rsGmnWPrL.jpg"}]}, "seller_id": "A3W4Y9OY04D1ZY", "seller_name": "Doitely", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07P24ZMXK", "category": "garden", "query": "Decorative Pillows", "page": 56, "small_description_old": "Material: Made of durable cotton blend linen fabric Size: 18 x 18 Inches/45 cm x 45 cm(\u00b11-2cm deviation) Printing: Pattern available only on the front, and the back is plain linen color without printing Design: Pillow cover ONLY!(insert are not included) /soft, durable, hidden zipper design and allows easy insertion and removal of pillow inser Application: Perfect for car, sofa, bed, office, coffee shop, book store, hotel, club, party etc. super gift for your family and friends, suit for each holiday, such as birthday, valentine's day, mother\u2019s day, father\u2019s day, christmas, anniversary and so on"}, {"name": "Sencillez Canvas Wall Art Abstract Regalite Turquoise Marble Mixed Colors Blue Teal Gold Foil Digital Art Modern Art Bohemian Colorful Multicolor Ultra for Living Room Bedroom Office (20x30 inches)", "product_information": {"Product Dimensions": "20 x 1.2 x 30 inches", "Item Weight": "2.94 pounds", "ASIN": "B092QQBW4Y", "Customer Reviews": {"ratings_count": 11, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#568,723 in Home & Kitchen (See Top 100 in Home & Kitchen) #20,160 in Posters & Prints"], "Date First Available": "April 16, 2021"}, "brand": "Brand: Sencillez", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Sencillez", "full_description": "This wall art is calming and abstract. Strokes of blue and teal are energized with goldtone leaf embellishment. This ready to hang, gallery-wrapped art piece features a streak of gold stretching across a blue and green watercolor background", "pricing": "$59.99", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/414IpiPyd7L.jpg", "https://m.media-amazon.com/images/I/316FmdXZfVL.jpg", "https://m.media-amazon.com/images/I/51dNoE127uS.jpg", "https://m.media-amazon.com/images/I/41+PxXkjdkS.jpg", "https://m.media-amazon.com/images/I/51+an-jeeDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": 4.7, "small_description": ["[Premium Quality Materials] High definition modern artwork printed onto industrial grade framed canvas. ", "[Wide Application] Perfect decorative choice for any setting: bedroom, living room, bathroom, hotel, kitchen, bar ", "[Easy to Hang] This art piece is well stretched on pinewood bars, and with D-rings at the back, it is easy to hang on your wall. ", "[Note] Due to monitor display issues, actual colors may be different from online listing. "], "total_reviews": 11, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B092QQFD21/ref=twister_B08FR56BLP?_encoding=UTF8&psc=1", "value": "16 in x 24 in", "price_string": "$35.99", "price": 35.99, "image": null}, {"is_selected": true, "url": null, "value": "20 in x 30 in", "price_string": "$59.99", "price": 59.99, "image": null}]}, "seller_id": "ALD8BT2ZWHNLI", "seller_name": "Sencillez Home", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B092QQBW4Y", "category": "garden", "query": "Wall art", "page": 56, "small_description_old": "About this item\n \nAbstract Canvas Wall Art Size: 20 x 30 x 1.18 inches overall Abstract Canvas Wall Art Painting: High quality printing on 100% cotton canvas with thick hand painting, color gel and hand made gold foil. Perfect Art for Your Home: Mixed colors of blue, teal and gold foil demonstrate the spirit of regalite and turquoise looking. It is a great gift to refresh your home. Easy to Hang: This art piece is well stretched on pinewood bars, and with D-rings at the back, it is easy to hang on your wall. Please Note: Due to different scales, the actual product color may be a little different from the images on our store. Please always feel free to contact us if you have any question."}, {"name": "DuoLide for Huawei Y9 2019 / Enjoy 9 Plus Case with Tempered Glass Screen Protector,Hybrid Heavy Duty Dual Layer Anti-Scratch Shockproof Defender Kickstand Armor Case Cover, Red", "product_information": {"Product Dimensions": "5.91 x 3.94 x 0.39 inches", "Item Weight": "3.53 ounces", "ASIN": "B083HXHG75", "Customer Reviews": {"ratings_count": 154, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#74,046 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #35,154 in Cell Phone Basic Cases"], "Special Features": "Kickstand, Magnetic, Shock-Absorbent", "Other display features": "Wireless", "Form Factor": "Case", "Colour": "Red", "Included Components": "Kickstand", "Manufacturer": "DuoLide", "Date First Available": "January 5, 2020"}, "brand": "Brand: DuoLide", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=DuoLide", "full_description": "p>Please note: This case is fit for Huawei Y9 2019 / Enjoy 9 Plus.High quality materials: Made of high quality hard and durable plastic + silicone material.Features: 1. Two-part construction of shock-absorbing TPU and durable hard polycarbonate. 2. Slim Fit Ensures Your Phone Does Not Look or Feel Bulky. 3. A innovative kickstand provides ultimate flexibility and convenience,it can liberate your hands while video watching or chatting. 4. It can work with magnetic car mountand rubberized inner gel material, fits comfortably around your phone and protects it from dust, dirt, scratches and prevent from falling. 5. Precise Cutouts Reserve Full Access to Speaker, Ports, Camera and Control ButtonsWarranty: Our products offer warranty within 30 days. If you received any defective units from us,please email us for replacement or refund.No matter if you have any questions,please contact us via Amazon message system,we will be happy to serve you.", "pricing": "$9.29", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51uogVOfHZL.jpg", "https://m.media-amazon.com/images/I/41aEjX1yFhL.jpg", "https://m.media-amazon.com/images/I/51ZvcCGYgVL.jpg", "https://m.media-amazon.com/images/I/51dBqZla3vL.jpg", "https://m.media-amazon.com/images/I/51HaZWzS7lL.jpg", "https://m.media-amazon.com/images/I/51t38UU-c3L.jpg", "https://m.media-amazon.com/images/I/51ZxRww4N+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Cases, Holsters & Sleeves \u203a Basic Cases", "average_rating": 4.1, "small_description": ["Special design compatible with: Huawei Y9 2019 / Enjoy 9 Plus . ", "Ring Bracket Holder: The hidden 360\u00b0ring rotate grip kickstand feature design full of artistic sense which can liberate your hands while video watching or chatting,which can work with magnetic car mountand rubberized inner gel material, fits comfortably around your phone and protects it from dust, dirt, scratches and prevent from falling. ", "Dual Layer protection: Two-part construction of shock-absorbing soft TPU and durable hard polycarbonate (2in1 Combo Back Case).Soft shockproof silcone inner combined with hard UV matt oil PC cover just to all-round protection your phone from scratches, dust, dirt, fingerprints, and other daily wear. ", "Tempered glass screen: With a clear tempered glass screen protect film,which is 0.3mm thickness and 9H hardness tempered glass screen protector protects against drops Drops, Shocks, Bumps, Scratches, Bruises, scuffs, dirt, dust. ", "Easy to access: Precise Cutouts Reserve Full Access to Speaker, Ports, Camera and Control Buttons, Highly Acclaimed Moulded Edge Technology Strengthens the Durability at its most fragile points. "], "total_reviews": 154, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B083HXF8F5/ref=twister_B083HX5X1X?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$9.97", "price": 9.97, "image": "https://m.media-amazon.com/images/I/51PKU2hWIvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B083HX8TYV/ref=twister_B083HX5X1X?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$9.99", "price": 9.99, "image": "https://m.media-amazon.com/images/I/51fYYDkR9WL.jpg"}, {"is_selected": true, "url": null, "value": "Red", "price_string": "$9.29", "price": 9.29, "image": "https://m.media-amazon.com/images/I/51uogVOfHZL.jpg"}]}, "seller_id": "AWXLYH5C2UD3U", "seller_name": "DuoLide", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B083HXHG75", "category": "electronics", "query": "Video Glasses", "page": 171, "small_description_old": "About this item Special design compatible with: Huawei Y9 2019 / Enjoy 9 Plus . Ring Bracket Holder: The hidden 360\u00b0ring rotate grip kickstand feature design full of artistic sense which can liberate your hands while video watching or chatting,which can work with magnetic car mountand rubberized inner gel material, fits comfortably around your phone and protects it from dust, dirt, scratches and prevent from falling. Dual Layer protection: Two-part construction of shock-absorbing soft TPU and durable hard polycarbonate (2in1 Combo Back Case).Soft shockproof silcone inner combined with hard UV matt oil PC cover just to all-round protection your phone from scratches, dust, dirt, fingerprints, and other daily wear. Tempered glass screen: With a clear tempered glass screen protect film,which is 0.3mm thickness and 9H hardness tempered glass screen protector protects against drops Drops, Shocks, Bumps, Scratches, Bruises, scuffs, dirt, dust. Easy to access: Precise Cutouts Reserve Full Access to Speaker, Ports, Camera and Control Buttons, Highly Acclaimed Moulded Edge Technology Strengthens the Durability at its most fragile points."}, {"name": "Replaced Remote Control Compatible for Samsung UN85S9VF UN46F6300AF UN40F6300AF UN85S9VFXZA UN32F6300AF UN46F5500AF TV", "product_information": {"Product Dimensions": "8 x 2 x 0.5 inches", "Item Weight": "2.72 ounces", "Manufacturer": "JustFine", "ASIN": "B01LYSBBX5", "Item model number": "LYSB01LYSBBX5-ELECTRNCS", "Customer Reviews": {"ratings_count": 47, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#11,188 in Remote Controls (Electronics)"], "Is Discontinued By Manufacturer": "No", "Date First Available": "September 12, 2016"}, "brand": "Brand: JustFine", "brand_url": "https://www.amazon.com/JustFine/b/ref=bl_dp_s_web_15610993011?ie=UTF8&node=15610993011&field-lbr_brands_browse-bin=JustFine", "full_description": "This is a high quality, new replacement remote. It compatibles for Samsung UN85S9VF UN46F6300AF UN40F6300AF UN85S9VFXZA UN32F6300AF UN46F5500AF LED HDTV TV, put your batteries in to work( Batteries and Manual are not included). It sold with money-back guarantee, Hassle-Free return, 30 days quality warranty. Any problem, please kindly email us.", "pricing": "$11.98", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41-nnlbOJCL.jpg", "https://m.media-amazon.com/images/I/313X-x-mLoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": 4.4, "small_description": ["High quality, brand new replacement remote for Samsung LED HDTV ", "Check before shipping, Hassle-Free Return, 30 days quality warranty, refund unconditionally ", "Pre-programmed, No programming needed ( can't be programmed again) ", "Package contain: 1 remote Only, batteries and instruction are Not included ", "Standard shipping, almost 6 - 16 days to arrive ( if not received over 25 please kindly contact us) "], "total_reviews": 47, "total_answered_questions": "", "model": "LYSB01LYSBBX5-ELECTRNCS", "customization_options": "", "seller_id": "A23SYZU9KXD386", "seller_name": "JustFine", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B01LYSBBX5", "category": "electronics", "query": "Remotes", "page": 216, "small_description_old": "High quality, brand new replacement remote for Samsung LED HDTV Check before shipping, Hassle-Free Return, 30 days quality warranty, refund unconditionally Pre-programmed, No programming needed ( can't be programmed again) Package contain: 1 remote Only, batteries and instruction are Not included Standard shipping, almost 6 - 16 days to arrive ( if not received over 25 please kindly contact us)"}, {"name": "Digital Alarm Clocks with Bluetooth Speaker for Children, Rechargeable Kids Bedroom Smart Clock with LED Display Screens, SUupports FM/Wireless Music Function (White)", "product_information": {"Package Dimensions": "3.94 x 3.94 x 1.97 inches", "Item Weight": "6.2 ounces", "ASIN": "B09KG58GWJ", "Date First Available": "October 27, 2021", "Manufacturer": "Dilwe"}, "brand": "Visit the Dilwe Store", "brand_url": "https://www.amazon.com/stores/Dilwe/page/4CC1109D-4F29-4308-AD00-F625D4E1E804?ref_=ast_bln", "full_description": "How to Use: Power\u00a0on,\u00a0connect\u00a0to\u00a0bluetooth\u00a0to\u00a0use. Mode\u00a0switch,\u00a0default\u00a0clock\u00a0mode\u00a0when\u00a0power\u00a0on;\u00a0short\u00a0press\u00a0to\u00a0switch,\u00a0long\u00a0press\u00a0to\u00a0set\u00a0time. Short\u00a0press\u00a0the\u00a0previous\u00a0song\u00a0or\u00a0the\u00a0previous\u00a0station,\u00a0long\u00a0press\u00a0the\u00a0volume\u00a0to\u00a0decrease. Short\u00a0press\u00a0one\u00a0song\u00a0or\u00a0next\u00a0station,\u00a0long\u00a0press\u00a0to\u00a0increase\u00a0the\u00a0volume. Long\u00a0press\u00a0on/off,\u00a0short\u00a0press\u00a0to\u00a0play/pause,\u00a0short\u00a0press\u00a0in\u00a0radio\u00a0mode\u00a0to\u00a0automatically\u00a0search\u00a0for\u00a0channels. Specification: Item Type: Bluetooth Clock Speaker Material: ABS Model: P1 Bluetooth Version: 5.0 Bluetooth Distance: 10m/32.8ft Output Power: 3W Frequency Response: 150Hz-20KHz Signal to Noise Ratio: 75dB Distortion: 2% Audio Input: Bluetooth/Memory Card Speaker Unit: 4\u03a9 3W Battery Type: 3.7V 18650 Lithium Battery Battery Capacity: Built-in 1200mAh Lithium Battery FM Radio Frequency: 87.5MHz-108MHz Compatible: Bedroom, School, Living Room, Office, etc. Package List: 1 x Bluetooth Speaker 1 x Charging Cable", "pricing": "$15.79", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31Cqcd3JSQL.jpg", "https://m.media-amazon.com/images/I/31EF8j63WcL.jpg", "https://m.media-amazon.com/images/I/31efTojUSYL.jpg", "https://m.media-amazon.com/images/I/41aL-wWr80L.jpg", "https://m.media-amazon.com/images/I/41Nkh6iFfDL.jpg", "https://m.media-amazon.com/images/I/515PRVKEsfL.jpg", "https://m.media-amazon.com/images/I/51CBKl0XeSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Power Accessories \u203a Power Converters", "average_rating": "", "small_description": ["It is never easy for parents to teach their young children to have regular sleep wake habits, therefore, kids clock was born to save parents' sleep time, kids will get to know it is time to get up from bed, if you have a memory card (less than 32G), it can be an MP3 player. ", "The soft light gives a tender companion to your little ones especially when they learn to sleep alone, 5 ringtones to choose from, kids can choose their favorite ringtone for each alarm clock, which allows them to enjoy setting their own. ", "The cute cat ear shape design makes it an elegant decoration even if you don't need to use it, the kid alarm clock with safe ABS material, ideal for bedroom, kids night light, relaxing, outdoor camping, it is especially ideal as holiday or birthday gift. ", "Not only a cut smart clock, but also a bluetooth 5.0 speaker, also support memory card playing, you can connect this speaker clock to your smart phone or just plug in a memory card to enjoy wireless music, the FM function is perfect for daily use. ", "With LED screen and big white digital mirror display, which makes it easier to read day or night, soft light will not hinder going to sleep in night, the kids alarm clock uses a 1200mA high capacity lithium battery, which can be charged through the USB port, once full charge can keep working up to 12 hours. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AET9B0FNKDKRC", "seller_name": "Bewinner", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09KG58GWJ", "category": "electronics", "query": "Clock Radios", "page": 140, "small_description_old": "It is never easy for parents to teach their young children to have regular sleep wake habits, therefore, kids clock was born to save parents' sleep time, kids will get to know it is time to get up from bed, if you have a memory card (less than 32G), it can be an MP3 player. The soft light gives a tender companion to your little ones especially when they learn to sleep alone, 5 ringtones to choose from, kids can choose their favorite ringtone for each alarm clock, which allows them to enjoy setting their own. The cute cat ear shape design makes it an elegant decoration even if you don't need to use it, the kid alarm clock with safe ABS material, ideal for bedroom, kids night light, relaxing, outdoor camping, it is especially ideal as holiday or birthday gift. Not only a cut smart clock, but also a bluetooth 5.0 speaker, also support memory card playing, you can connect this speaker clock to your smart phone or just plug in a memory card to enjoy wireless music, the FM function is perfect for daily use. With LED screen and big white digital mirror display, which makes it easier to read day or night, soft light will not hinder going to sleep in night, the kids alarm clock uses a 1200mA high capacity lithium battery, which can be charged through the USB port, once full charge can keep working up to 12 hours."}, {"name": "Goldweather Women Winter Leggings Printed Warm Fleece Lined Yoga Pants Trousers Thermal High Waist Thicken Cashmere Tights (Navy, L)", "product_information": {"Department\n \u200f": "\u200e\n Womens", "UPC\n \u200f": "\u200e\n 753099374858", "Manufacturer\n \u200f": "\u200e\n Goldweather", "ASIN\n \u200f": "\u200e\n B09MSZ4VS8", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Goldweather", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Goldweather", "full_description": "\u260e Welcome to \u265a Goldweather \u265a , I wish you a happy shopping, We provide various kinds of great products to you, you are trustworthy, Get anything you want!!Women Winter Fleece Lined Leggings - Be ready for colder weather!\u2605\u2605 Fashion Features \u27a4\u27a4\u3010Item Type\u3011Cashmere lined leggings is a versatile piece without any restrictive condition, can be as yoga leggings, jogger sweatpants, lounge pants.\u3010HIGH MATERIAL\u3011Our fleece thermal leggings are designed with sherpa lined to keep your warm and cozy when temperature drops.\u3010Casual Style \u3011Stylish and fashion make you more attractive. Cute and soft cozy super thick cashmere leggings for women, it's perfect for autumn & winter workout wear/casual wear.\u3010EASY TO MATCH\u3011Easy to match with winter coats, hoodies, sweater shirts, tunic tops, skirts, etc. Keep you warm or for a stylish look all the winter.\u3010FASHION DESIGNS\u3011High waisted design, simple version but still fashion, let your legs looks more slender. It is a wardrobe essential winter leggings for ladies.\u3010WIDELY OCCASIONS\u3011Super elastic high waisted leggings allows you to move freely and perfect for running, hiking, cycling, travel, skiing, camping, strolling and ice skating, or other winter outdoor activities.\u2605\u2605 Item Specifics \u27a4\u27a4\u2764Season:Spring/Fall/Winter\u2764Gender: Women /Girls\u2764Package include:1PC Womens Fleece Lined Leggings\u2764High waisted fleece lined leggings, every girl shoudl have a thicker and wram leggings in the winter.\u2764Please check the Size Chart before order. If you are not sure the size, please send message to us.", "pricing": "$20.99", "list_price": "", "availability_quantity": 19, "availability_status": "Only 19 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/417qAowkc5L.jpg", "https://m.media-amazon.com/images/I/51DHVmbdmBL.jpg", "https://m.media-amazon.com/images/I/419btPFeiaL.jpg", "https://m.media-amazon.com/images/I/41LZ1aCwYFL.jpg", "https://m.media-amazon.com/images/I/51YwpTGUwOL.jpg", "https://m.media-amazon.com/images/I/410cHQW0HmL.jpg", "https://m.media-amazon.com/images/I/51sRkzB1quL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath Pillows", "average_rating": "", "small_description": ["\u2605\u2605 [Related Search] fleece lined leggings for women plus size thermal winter leggings fleece lined leggings with pockets high waisted winter yoga pants thermal pants for women fleece lined leggings thermal underwear bottoms thermal underwear pants long john leggings fleecewear stretch thermal leggings heated pants fleece jogger pants warm fleece sweatpants thermal underwear leggings seamless leggings winter clothes. ", "\u2605\u2605 [Related Search] thermal fleece lined leggings women high waisted tummy control winter warm yoga pants thermal legging pant thermal bottoms fleece lined compression pants leggings winter sherpa fleece lined thermal leggings high waisted cashmere leggings cold weather warm pants winter warm fleece sweatpants sherpa lined thermal pants thick cashmere wool tights thermal trousers winter fleece lined leggings warm thermal pants. ", "\u2605\u2605 [Related Search] thermal pants for women cold weather winter warm fleece lined leggings winter pants for women thick cashmere tights tummy control leggings ladies winter warm pants high waist yoga pants sherpa lined leggings high waist stretchy thick thermal pants thicken cashmere tights christmas leggings winter jogger pants fleece lined sweatpants with pockets winter thermal trousers high waisted harem pants hiking running pants. ", "\u2605\u2605 [Related Search] thermal underwear for women winter leggings plus size warm fleece lined leggings thick cashmere wool tights thickened fleece lined sweatpants high waisted yoga pants winter thermal trousers winter jeans thick skinny pants fleece lined yoga leggings winter denim pants winter fleece lined jeans fleece lined jeggings winter sherpa fleece lined leggings plush warm thermal jeans plus leggings for women sweatpants jogger fleece pants. ", "\u2605\u2605 [Related Search] women winter pants fleece lined leggings with pockets high waisted yoga pants outdoor waterproof windproof fleece snow ski hiking pants high waist thermal winter tights yoga pants with pockets fleece lined sweatpants jogger fleece pants thick cashmere tights slim stretch warm jeggings snow pants snow trousers high waisted yoga leggings tummy control yoga hiking running tights winter sherpa fleece lined leggings plush warm thermal pants. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09MSXDTQL/ref=twister_B09MS3R9KL?_encoding=UTF8&psc=1", "value": "Medium", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Large", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MSYMW1C/ref=twister_B09MS3R9KL?_encoding=UTF8&psc=1", "value": "X-Large", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MSX85FY/ref=twister_B09MS3R9KL?_encoding=UTF8&psc=1", "value": "XX-Large", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MSYDDF3/ref=twister_B09MS3R9KL?_encoding=UTF8&psc=1", "value": "3X-Large", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09MSXHQH2/ref=twister_B09MS3R9KL?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51OvSoZxw2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MSYC3GV/ref=twister_B09MS3R9KL?_encoding=UTF8&psc=1", "value": "Dark Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zxa2DNE-L.jpg"}, {"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/417qAowkc5L.jpg"}]}, "seller_id": "A3EE68PW1EKOJ6", "seller_name": "Goldweather", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MSZ4VS8", "category": "beauty", "query": "Bathing Accessories", "page": 198, "small_description_old": "\u2605\u2605 [Related Search] fleece lined leggings for women plus size thermal winter leggings fleece lined leggings with pockets high waisted winter yoga pants thermal pants for women fleece lined leggings thermal underwear bottoms thermal underwear pants long john leggings fleecewear stretch thermal leggings heated pants fleece jogger pants warm fleece sweatpants thermal underwear leggings seamless leggings winter clothes. \u2605\u2605 [Related Search] thermal fleece lined leggings women high waisted tummy control winter warm yoga pants thermal legging pant thermal bottoms fleece lined compression pants leggings winter sherpa fleece lined thermal leggings high waisted cashmere leggings cold weather warm pants winter warm fleece sweatpants sherpa lined thermal pants thick cashmere wool tights thermal trousers winter fleece lined leggings warm thermal pants. \u2605\u2605 [Related Search] thermal pants for women cold weather winter warm fleece lined leggings winter pants for women thick cashmere tights tummy control leggings ladies winter warm pants high waist yoga pants sherpa lined leggings high waist stretchy thick thermal pants thicken cashmere tights christmas leggings winter jogger pants fleece lined sweatpants with pockets winter thermal trousers high waisted harem pants hiking running pants. \u2605\u2605 [Related Search] thermal underwear for women winter leggings plus size warm fleece lined leggings thick cashmere wool tights thickened fleece lined sweatpants high waisted yoga pants winter thermal trousers winter jeans thick skinny pants fleece lined yoga leggings winter denim pants winter fleece lined jeans fleece lined jeggings winter sherpa fleece lined leggings plush warm thermal jeans plus leggings for women sweatpants jogger fleece pants. \u2605\u2605 [Related Search] women winter pants fleece lined leggings with pockets high waisted yoga pants outdoor waterproof windproof fleece snow ski hiking pants high waist thermal winter tights yoga pants with pockets fleece lined sweatpants jogger fleece pants thick cashmere tights slim stretch warm jeggings snow pants snow trousers high waisted yoga leggings tummy control yoga hiking running tights winter sherpa fleece lined leggings plush warm thermal pants."}, {"name": "Maxim 32478SWSBRBP Finn Mid-Century Modern Satin White Glass Ball Bath Vanity Wall Mount, 5-Light 200 Total Watts, 7\"H x 44\"W, Satin Brass/Brushed Platinum", "product_information": {"Manufacturer": "\u200eMaxim Lighting", "Part Number": "\u200e32478SWSBRBP", "Item Weight": "\u200e16 pounds", "Product Dimensions": "\u200e8 x 8 x 7 inches", "Item model number": "\u200e32478SWSBRBP", "Is Discontinued By Manufacturer": "\u200eNo", "Size": "\u200e5-Light", "Color": "\u200eSatin Brass/Brushed Platinum", "Finish": "\u200eFinished", "Material": "\u200eMaterial: Other", "Power Source": "\u200eCorded-electric", "Voltage": "\u200e120 Volts", "Wattage": "\u200e60 watts", "Item Package Quantity": "\u200e1", "Type of Bulb": "\u200eIncandescent", "Measurement System": "\u200eEnglish/Standard", "Mounting Type": "\u200eProtruding", "Plug Format": "\u200eA- US style", "Special Features": "\u200eAdjustable", "Usage": "\u200eCeiling fan", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Warranty Description": "\u200eAll products purchased have a 30-day replacement parts policy to ensure a fully working item. All products are covered under a 1-year warranty when purchased on amazon. The warranty period begins on the day the product is originally shipped. The warranty covers all of the items and conditions identified in the original manufacturers warranty. Some of the items specifically not covered by the warranty are loss and theft, water damage, customer abuse, and finish detoriation due to uv or coastal exposure.", "ASIN": "B07TN3Y9H1", "Best Sellers Rank": ["#2,156,427 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #13,234 in Vanity Lighting Fixtures"], "Date First Available": "June 28, 2019"}, "brand": "Visit the Maxim Store", "brand_url": "https://www.amazon.com/stores/MAXIM/page/6C200771-C35A-4CB9-A365-0495090EB64E?ref_=ast_bln", "full_description": "A homage to Mid-Century Modern design, the Finn collection features large Satin White opal glass shades on a contemporary finish combination of Satin Brass and Brushed Platinum. The glass shades are embraced by laser cut fins to create a clean, yet dramatic look.", "pricing": "$219.99", "list_price": "", "availability_quantity": 17, "availability_status": "Only 17 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/21xb9BFCVLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Vanity Lights", "average_rating": "", "small_description": ["FINN VANITY LIGHT DIMENSIONS: 6.5\" High x 43.5\" Wide x 7.5\" Deep, Weight: 15.98 lbs., Backplate: 43.5\" W x 6.5\" H, HCO: 3.25\" ", "LIGHTING: 5-40 Watt E12 Candelabra Base Incandescent Bulbs, Does Not Include Bulb(s), 200 Total Watts, Lighting Direction: Omni ", "INSTALLATION: 6\" Wire and Hardware to Mount Fixture to an Existing Junction Box Included (Junction Box Not Included) ", "Approved for DAMP Locations ", "DETAILS: Constructed of Steel with Satin Brass/Brushed Platinum Finish and Satin White Glass Shade "], "total_reviews": "", "total_answered_questions": "", "model": "\u200e32478SWSBRBP", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07TN3T7LW/ref=twister_B08NLDWJ4D?_encoding=UTF8&psc=1", "value": "3-Light", "price_string": "$119.99", "price": 119.99, "image": null}, {"is_selected": true, "url": null, "value": "5-Light", "price_string": "$219.99", "price": 219.99, "image": null}]}, "seller_id": "A1VSYUSBHJXBF", "seller_name": "Haus Appeal", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07TN3Y9H1", "category": "garden", "query": "Vanities", "page": 358, "small_description_old": "About this item\n \nFINN VANITY LIGHT DIMENSIONS: 6.5\" High x 43.5\" Wide x 7.5\" Deep, Weight: 15.98 lbs., Backplate: 43.5\" W x 6.5\" H, HCO: 3.25\" LIGHTING: 5-40 Watt E12 Candelabra Base Incandescent Bulbs, Does Not Include Bulb(s), 200 Total Watts, Lighting Direction: Omni INSTALLATION: 6\" Wire and Hardware to Mount Fixture to an Existing Junction Box Included (Junction Box Not Included) Approved for DAMP Locations DETAILS: Constructed of Steel with Satin Brass/Brushed Platinum Finish and Satin White Glass Shade \n \u203a See more product details"}, {"name": "Crunchmaster Gourmet Toasted Sesame Rice Cracker, 3.5-Ounce (Pack of 12)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.84 x 3.74 x 1.81 inches; 3.5 Ounces", "UPC\n \u200f": "\u200e\n 853358000457", "Manufacturer\n \u200f": "\u200e\n Crunchmaster", "ASIN\n \u200f": "\u200e\n B002C56QX6", "Best Sellers Rank": "#491,507 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#653 in Rice Crackers", "#653 in Rice Crackers": ""}, "brand": "Visit the Crunchmaster Store", "brand_url": "https://www.amazon.com/stores/Crunchmaster/page/9E165B38-5794-4912-A36C-F105FB956EDB?ref_=ast_bln", "full_description": "Crunchmaster Baked Rice Crackers are probably the crispiest, tastiest crackers you will ever eat. A gluten free alternative to traditional processed wheat crackers, Crunchmaster products are packed with pure, U.S. grown rice, sesame, quinoa, flax and amaranth seeds and other simple ingredients \u2013 all baked to a light, crispy perfection! Enjoy them as part of a healthy lifestyle \u2013 right from the bag or box. Or, add a little imagination and pair them with your favorite dips, spreads and toppings to create a unique, tasty treat for your friends and family.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/417Wjkgn9IL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Rice Cakes, Chips & Crackers \u203a Crackers", "average_rating": "", "small_description": ["Certified Gluten Free ", "100% Whole Grain ", "Low Saturated Fat ", "Cholesterol Free, 0g Trans Fat ", "Baked to a light, crispy perfection! "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B002C56QX6", "category": "grocery", "query": "Snack Crackers", "page": 395, "small_description_old": "About this item Certified Gluten Free 100% Whole Grain Low Saturated Fat Cholesterol Free, 0g Trans Fat Baked to a light, crispy perfection!"}, {"name": "Brief INSANTIY Boxer Briefs for Men and Women | Bourbon Wine Print Boxer Shorts - Comfy, Casual Underwear (XX-Large)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.69 x 8.86 x 1.38 inches; 5.61 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 1, 2019", "ASIN\n \u200f": "\u200e\n B09HY9XB8P", "": ""}, "brand": "Visit the BRIEF INSANITY Store", "brand_url": "https://www.amazon.com/stores/BRIEFINSANITY/page/46E8FC8E-A5B5-45D9-9175-09B0B91BD4E4?ref_=ast_bln", "full_description": "BRIEF INSANITY Boxer's are made for both men and women. Check out the size chart below to see what size is best for you.", "pricing": "$19.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51-8zhRLbEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a Boxer Briefs", "average_rating": "", "small_description": ["\u2714 FABRIC & CARE: 90% Polyester 10% Spandex | The synthetic silk Soft knit fabric makes sure you don\u2019t have any pinching, pulling, or restriction while wearing these novelty boxers. These comfy undies are machine wash & dry friendly! ", "\u2714 FEATURES: Lightweight high performance fabric with fly front moves with you for added comfort. The bourbon drink images are sublimated into the fabric so they won\u2019t crack, fade or peel over time! ", "\u2714 MULTIPLE USE: Versatile design lets you wear them as underwear, shorts or sleepwear! Relax and make yourself a drink while wearing these boxer shorts by Brief Insanity! Ideal for people that love their cocktails, alcoholic beverages, and whiskey. ", "\u2714 UNISEX STYLE SIZING: BRIEF INSANITY apparel is designed for both women & men. We support plus size and have larger sizes in stock. Please refer to our size chart in the product description to decide which size will work best for you. ", "\u2714 SATISFACTION GUARANTEED: Your satisfaction is important to us. If you are not completely pleased with your purchase, contact us. We'll do everything we can to make it right, including a full refund, no questions asked. Buy Now! "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A28Q6F76BMF3UG", "seller_name": "BRIEF INSANITY", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09HY9XB8P", "category": "fashion", "query": "Men's Underwear", "page": 123, "small_description_old": "Machine Wash \u2714 FABRIC & CARE: 90% Polyester 10% Spandex | The synthetic silk Soft knit fabric makes sure you don\u2019t have any pinching, pulling, or restriction while wearing these novelty boxers. These comfy undies are machine wash & dry friendly! \u2714 FEATURES: Lightweight high performance fabric with fly front moves with you for added comfort. The bourbon drink images are sublimated into the fabric so they won\u2019t crack, fade or peel over time! \u2714 MULTIPLE USE: Versatile design lets you wear them as underwear, shorts or sleepwear! Relax and make yourself a drink while wearing these boxer shorts by Brief Insanity! Ideal for people that love their cocktails, alcoholic beverages, and whiskey. \u2714 UNISEX STYLE SIZING: BRIEF INSANITY apparel is designed for both women & men. We support plus size and have larger sizes in stock. Please refer to our size chart in the product description to decide which size will work best for you. \u2714 SATISFACTION GUARANTEED: Your satisfaction is important to us. If you are not completely pleased with your purchase, contact us. We'll do everything we can to make it right, including a full refund, no questions asked. Buy Now!"}, {"name": "SQF 5 Arm Arch Floor Lamp - BK/Gold/SILVEL (Silver)", "product_information": {"Brand": "\u200eSQUARE FURNITURE", "Item model number": "\u200e6962BK/G/SN", "Style": "\u200eModern", "Color": "\u200eSilver", "Material": "\u200eMetal", "Finish Types": "\u200ePainted", "Special Features": "\u200e5 Arm Arch Floor Lamp, FLOOR LAMP", "Shade Color": "\u200eSILVER", "Shade Material": "\u200eMetal", "Light Direction": "\u200eAdjustable", "Power Source": "\u200eCorded Electric", "Switch Style": "\u200eDimmer", "Wattage": "\u200e100 watts", "ASIN": "B0101Q3V7Q", "Customer Reviews": {"ratings_count": 57, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#462,381 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #2,560 in Floor Lamps"], "Date First Available": "June 20, 2015"}, "brand": "Brand: SQUARE FURNITURE", "brand_url": "https://www.amazon.com/SQUARE-FURNITURE/b/ref=bl_dp_s_web_9544321011?ie=UTF8&node=9544321011&field-lbr_brands_browse-bin=SQUARE+FURNITURE", "full_description": "", "pricing": "$165.00", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/311NDDliR9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Lamps & Shades \u203a Floor Lamps", "average_rating": 4.1, "small_description": ["60 x 60 x 84 \" ", "Adjustable Arms on all 5 All Metal Construction ", "Dimmer switch "], "total_reviews": 57, "total_answered_questions": 8, "model": "\u200e6962BK/G/SN", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0101Q3VI0/ref=twister_B0101Q3V2G?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$168.00", "price": 168, "image": "https://m.media-amazon.com/images/I/31dhqwqKFZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0101Q3VFS/ref=twister_B0101Q3V2G?_encoding=UTF8&psc=1", "value": "Gold", "price_string": "$178.00", "price": 178, "image": "https://m.media-amazon.com/images/I/31N1AAawdCL.jpg"}, {"is_selected": true, "url": null, "value": "Silver", "price_string": "$165.00", "price": 165, "image": "https://m.media-amazon.com/images/I/311NDDliR9L.jpg"}]}, "seller_id": "AGFGXKK7IRH2H", "seller_name": "Square Furniture", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0101Q3V7Q", "category": "garden", "query": "Floor lamps", "page": 68, "small_description_old": "About this item 60 x 60 x 84 \" Adjustable Arms on all 5 All Metal Construction Dimmer switch \n \u203a See more product details"}, {"name": "[2+2 Pack] UniqueMe Compatible with iPad Pro 11 inch 2020 and 2021 (4th / 5th gen), Tempered Glass Screen Protector and Camera Lens Protector,Compatible with Face ID & Apple Pencil, [Alignment Frame]", "product_information": {"Package Dimensions": "12.1 x 9.8 x 0.6 inches", "Item Weight": "8 ounces", "ASIN": "B088LZPNG6", "Item model number": "iPad Pro 2020 11\"", "Customer Reviews": {"ratings_count": 794, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#948 in Tablet Screen Protectors"], "Special Features": "Bubble Proof", "Colour": "Clear", "Manufacturer": "UniqueMe", "Date First Available": "May 14, 2020"}, "brand": "Visit the UniqueMe Store", "brand_url": "https://www.amazon.com/stores/UniqueMe/page/C59866DE-25EF-415D-AF31-34305D8D92B4?ref_=ast_bln", "full_description": "", "pricing": "$15.99", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51Sw3IizAHS.jpg", "https://m.media-amazon.com/images/I/51FGKhIB95S.jpg", "https://m.media-amazon.com/images/I/51EUDDyc6rS.jpg", "https://m.media-amazon.com/images/I/61nD37xeFvL.jpg", "https://m.media-amazon.com/images/I/511guToEiGS.jpg", "https://m.media-amazon.com/images/I/51IgMji4aiS.jpg", "https://m.media-amazon.com/images/I/71WMEQBaQJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Tablet Accessories \u203a Screen Protectors", "average_rating": 4.5, "small_description": ["[Compatible Model] These Protectors specially designed for iPad Pro 11-inch (2020 / 2021), including 2 packs lens protectors and 2 packs screen protectcor. ", "[9H Quality] Super anti-fall,scratch resistant tempered glass material keeping your iPad Pro 11-inch (2020 / 2021) rear camera and screen from scratches. ", "[Excellent Protection] The protector with oleophobic layer prevents water, oil,dust. Keep the iPad Pro 11-inch (2020) tablet lens in HD transparent and clean all the time. ", "[Highly Clear] 99.99% transparency preserves the original screen or picture brightness.Not Disturbing the picture quality. ", "Protected by UniqueMe No-Hassle Lifetime Replacement Warranty.[Comprehensive after-sales service]If you have any questions, please feel free to contact us. We will reply within 24 hours! "], "total_reviews": 794, "total_answered_questions": 3, "model": "iPad Pro 2020 11\"", "customization_options": "", "seller_id": "A3AEZ3BPFHSMS2", "seller_name": "INGLE", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B088LZPNG6", "category": "electronics", "query": "Screen Protectors", "page": 276, "small_description_old": "About this item [Compatible Model] These Protectors specially designed for iPad Pro 11-inch (2020 / 2021), including 2 packs lens protectors and 2 packs screen protectcor. [9H Quality] Super anti-fall,scratch resistant tempered glass material keeping your iPad Pro 11-inch (2020 / 2021) rear camera and screen from scratches. [Excellent Protection] The protector with oleophobic layer prevents water, oil,dust. Keep the iPad Pro 11-inch (2020) tablet lens in HD transparent and clean all the time. [Highly Clear] 99.99% transparency preserves the original screen or picture brightness.Not Disturbing the picture quality. Protected by UniqueMe No-Hassle Lifetime Replacement Warranty.[Comprehensive after-sales service]If you have any questions, please feel free to contact us. We will reply within 24 hours!"}, {"name": "Hot Sauce Gift Set: Includes 5 Keto Hot Sauces & 1 Tasting Journal | Hot Sauce Collection Assortment | Very Hot Sauce Sampler Gift Set | Birthday Gifts for Men and Women | Comes in a Wooden Gift Crate", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 12.6 x 9.6 x 6.8 inches; 6.15 Pounds", "Manufacturer\n \u200f": "\u200e\n Broquet", "ASIN\n \u200f": "\u200e\n B01LXP39SN", "Best Sellers Rank": "#384,809 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#266 in Sauce, Gravy & Marinade Gifts", "#266 in Sauce, Gravy & Marinade Gifts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Broquet Store", "brand_url": "https://www.amazon.com/stores/GuyCommerce/page/93E6D578-38F0-4A55-9BB7-04DB4DE34847?ref_=ast_bln", "full_description": "", "pricing": "$81.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/61kRt6mGE4L.jpg", "https://m.media-amazon.com/images/I/515YHmyUizL.jpg", "https://m.media-amazon.com/images/I/51tZhUsuNcL.jpg", "https://m.media-amazon.com/images/I/41u5iMx2nEL.jpg", "https://m.media-amazon.com/images/I/61sdS0DdFzL.jpg", "https://m.media-amazon.com/images/I/51DiIE7cYTL.jpg", "https://m.media-amazon.com/images/I/51LwcSgslmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Food & Beverage Gifts \u203a Sauce, Gravy & Marinade Gifts", "average_rating": 4.3, "small_description": ["GIFTS FOR HIM OR HER: Whatever the occasion, our hot sauce variety pack is perfect for loved ones! ", "FOR FANS OF EXOTIC SNACKS: Elevate favorite dishes with our hot sauce set! Can you handle the heat? ", "HOME ESSENTIALS: Ideal for your breakfast burrito, hot dogs, hot fries, steak meat, meat & seafood! ", "THE HOTTEST HOT SAUCE: This wood crate's really hot sauce is perfect for a spice challenge! ", "GIFT BASKETS, JUST HOTTER: Do you love spicy food? Add our sauce to any dish and get fired up! "], "total_reviews": 21, "total_answered_questions": "", "customization_options": "", "seller_id": "A3JGF4GAKW9XGR", "seller_name": "Guy Commerce USA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B01LXP39SN", "category": "grocery", "query": "Meat & Seafood", "page": 324, "small_description_old": "About this item GIFTS FOR HIM OR HER: Whatever the occasion, our hot sauce variety pack is perfect for loved ones! FOR FANS OF EXOTIC SNACKS: Elevate favorite dishes with our hot sauce set! Can you handle the heat? HOME ESSENTIALS: Ideal for your breakfast burrito, hot dogs, hot fries, steak meat, meat & seafood! THE HOTTEST HOT SAUCE: This wood crate's really hot sauce is perfect for a spice challenge! GIFT BASKETS, JUST HOTTER: Do you love spicy food? Add our sauce to any dish and get fired up!"}, {"name": "Portable Case Orthodontic Care Kit Orthodontic Toothbrush Kit for Braces for Orthodontic Patient Travel Oral Care Kit Dental Travel Kit Interdental Brush Dental Wax Dental Floss (8 Pcs/Pack)-Red", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.83 x 2.36 x 2.32 inches; 3.53 Ounces", "UPC\n \u200f": "\u200e\n 782947578827", "Manufacturer\n \u200f": "\u200e\n YOUYA DENTAL", "ASIN\n \u200f": "\u200e\n B08GXD5MDG", "Best Sellers Rank": "#146,851 in Health & Household (See Top 100 in Health & Household)#327 in Personal Orthodontic Supplies", "#327 in Personal Orthodontic Supplies": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the YOUYA DENTAL Store", "brand_url": "https://www.amazon.com/stores/YOUYA+DENTAL/page/46D4314A-8BF2-4825-ABA0-80DD210C64C0?ref_=ast_bln", "full_description": "Description: Troubles during orthodontics Improper cleaning during orthodontics can easily cause a variety of oral problems Our orthodontic care kit: All tools required during orthodontics are available, a set to solve the problem of oral cleaning during orthodontics. Color:Red, green, blue, purple(as picture shows) Quantity\uff1a8Pcs/Set Orthodontic Care Kit contains(Random Color): 1xorthodontic soft toothbrush 1xorthodontic travel sleeve soft toothbrush 1xbox of orthodontic care wax 1xbox of orthodontic clean dental floss 1xpack of dental floss threaders 1xdental mouth mirror 1xHourglass timer 1xorthodontic interdental brush!", "pricing": "$14.59", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41uWD46L3KL.jpg", "https://m.media-amazon.com/images/I/51nn8JPUxTL.jpg", "https://m.media-amazon.com/images/I/41BBxt1TJIL.jpg", "https://m.media-amazon.com/images/I/41FT1Hd2YEL.jpg", "https://m.media-amazon.com/images/I/41W2oi7W9fL.jpg", "https://m.media-amazon.com/images/I/4197osiAvSL.jpg", "https://m.media-amazon.com/images/I/41Pz9QU65DL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Orthodontic Supplies", "average_rating": 4.4, "small_description": ["\u27a4Oral care for orthodontics :This kit addresses the specific oral care needs of orthodontic patients with everything you need. ", "\u27a4Scientific Nursing: Hourglass helps you to science spending 3 minutes brushing your teeth, the dental mirror can pay attention to and care for your oral health in time without waiting for the dentist to see you. ", "\u27a4Orthodontic toothbrush:Specially designed for orthodontic patients in the middle of the toothbrush in the middle of the design of various shapes of grooves, so that when brushing the teeth will not be because the brackets do not clean the teeth;Interdental brush and dental floss can go deep into the teeth, clean the hard-to-reach areas of the toothbrush, and clean the food debris in the teeth. ", "\u27a4Portable and hygienic: shopping and traveling, anytime, anywhere, health, no longer worry about the inconvenience of carrying orthodontic nursing tools. ", "\u27a4What you get :1 x Orthodontic care Kit ,Kit contains \uff1a1*Orthodontic toothbrush, 1*Travel toothbrush, 1*dental floss, 1*dental mouth mirror, 1 *orthodontic wax, 1*Interdental brush,1* Hourglass timer,1*dental floss threaders(Random Color) "], "total_reviews": 20, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08GWS5P2P/ref=twister_B08GX3W9ND?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$14.59", "price": 14.59, "image": "https://m.media-amazon.com/images/I/41mFBP4IH2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08GWW621V/ref=twister_B08GX3W9ND?_encoding=UTF8&psc=1", "value": "Green", "price_string": "$14.59", "price": 14.59, "image": "https://m.media-amazon.com/images/I/41tpXcID-eL.jpg"}, {"is_selected": true, "url": null, "value": "Red", "price_string": "$14.59", "price": 14.59, "image": "https://m.media-amazon.com/images/I/41uWD46L3KL.jpg"}]}, "seller_id": "A20KNB0G5F1KAT", "seller_name": "XinLi-Direct", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08GXD5MDG", "category": "beauty", "query": "Dental Floss & Picks", "page": 40, "small_description_old": "About this item \u27a4Oral care for orthodontics :This kit addresses the specific oral care needs of orthodontic patients with everything you need. \u27a4Scientific Nursing: Hourglass helps you to science spending 3 minutes brushing your teeth, the dental mirror can pay attention to and care for your oral health in time without waiting for the dentist to see you. \u27a4Orthodontic toothbrush:Specially designed for orthodontic patients in the middle of the toothbrush in the middle of the design of various shapes of grooves, so that when brushing the teeth will not be because the brackets do not clean the teeth;Interdental brush and dental floss can go deep into the teeth, clean the hard-to-reach areas of the toothbrush, and clean the food debris in the teeth. \u27a4Portable and hygienic: shopping and traveling, anytime, anywhere, health, no longer worry about the inconvenience of carrying orthodontic nursing tools. \u27a4What you get :1 x Orthodontic care Kit ,Kit contains \uff1a1*Orthodontic toothbrush, 1*Travel toothbrush, 1*dental floss, 1*dental mouth mirror, 1 *orthodontic wax, 1*Interdental brush,1* Hourglass timer,1*dental floss threaders(Random Color)"}, {"name": "Firefly Oral Care Travel Kit Suction Cup Toothbrush for Children with Kids Crest Toothpaste and 4 Flossers", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.21 x 3.82 x 1.14 inches; 2.47 Ounces", "UPC\n \u200f": "\u200e\n 672935807131", "Manufacturer\n \u200f": "\u200e\n Firefly", "ASIN\n \u200f": "\u200e\n B07ZKCYT47", "Best Sellers Rank": "#650,769 in Health & Household (See Top 100 in Health & Household)#1,441 in Children's Dental Care Products", "#1,441 in Children's Dental Care Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the FIREFLY Store", "brand_url": "https://www.amazon.com/stores/FIREFLY/page/8465DC48-5059-4291-8E15-E3228E985463?ref_=ast_bln", "full_description": "Oral Care Travel Kit includes: Star War character suction cup Toothbrush, Cool Holographic Brush Cover, 0.85 oz Kids Crest Toothpaste, 4 Flossers, and Clear portable Bag.", "pricing": "$11.58", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51si5SDdjFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Children's Dental Care", "average_rating": 3, "small_description": ["Oral Care Travel Kit includes: Star War suction cup Toothbrush, Holographic Brush Cover, 0.85 oz Kids Crest Toothpaste ", "4 Flossers and Clear portable Bag ", "Perfect for Boys +3 years old ", "Toothbrush designed for a child's mouth and has Soft bristles ", "Helps protect against cavities "], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "AXVUVXYKXOBM4", "seller_name": "Zaham Discount", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07ZKCYT47", "category": "beauty", "query": "Toothbrushes & Accessories", "page": 32, "small_description_old": "About this item Oral Care Travel Kit includes: Star War suction cup Toothbrush, Holographic Brush Cover, 0.85 oz Kids Crest Toothpaste 4 Flossers and Clear portable Bag Perfect for Boys +3 years old Toothbrush designed for a child's mouth and has Soft bristles Helps protect against cavities"}, {"name": "Rustic Luxe Large Wooden Sofa Table, Gray", "product_information": {"Product Dimensions": "10 x 58.5 x 37 inches", "Manufacturer": "Generic", "ASIN": "B09P65MG4G", "Best Sellers Rank": ["#2,485,344 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,682 in Sofa Tables"], "Date First Available": "December 25, 2021"}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_dp_s_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "This Woven Paths Large Rustic Luxe Wooden Sofa Table is full of character with our real wood design. Made to easily tie in with your unique style, this table is the perfect stage for your photos and decor. Dress it up or dress it down, the luxe tones and clean lines make for a great centerpiece in your living room, dining room, or entryway. Blends rustic farmhouse style with bohemian accents perfect for any season. This collection makes it easy and affordable to brighten up any room with cozy, vibrant, quality pieces.", "pricing": "$134.00", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/314urdmDR5L.jpg", "https://m.media-amazon.com/images/I/41AtBUkJWrL.jpg", "https://m.media-amazon.com/images/I/41AEJc4Wl-L.jpg", "https://m.media-amazon.com/images/I/41y9ZwAwitL.jpg", "https://m.media-amazon.com/images/I/31LrB3wsjVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": "", "small_description": ["Sturdy construction adds rustic contemporary style ", "Fully assembled and ready to enjoy ", "Simple rustic design ", "Knots and imperfections in wood for character ", "Made in Texas, USA "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A27PQ49GMJ4JTB", "seller_name": "gulbakhargap", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P65MG4G", "category": "garden", "query": "Sofa Tables", "page": 67, "small_description_old": "About this item\n \nSturdy construction adds rustic contemporary style Fully assembled and ready to enjoy Simple rustic design Knots and imperfections in wood for character Made in Texas, USA"}, {"name": "Sleepwear Womens Chemise Nightgown Full Slip Lace Lounge Dress with Briefs Mesh Chemise V Neck Soft Pajama Dress Nightdress", "product_information": {"Item Weight\n \u200f": "\u200e\n 2.65 Ounces", "Item model number\n \u200f": "\u200e\n Sexy Lingerie for Women", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n February 10, 2022", "Manufacturer\n \u200f": "\u200e\n lingerie for women", "ASIN\n \u200f": "\u200e\n B09S5R7SSY", "": ""}, "brand": "Brand: CofeeMO", "brand_url": "https://www.amazon.com/CofeeMO/b/ref=bl_sl_s_ap_web_23452762011?ie=UTF8&node=23452762011&field-lbr_brands_browse-bin=CofeeMO", "full_description": "\u2764Dear customer, (\u10e6\u25d0\u25e1\u25d0\u10e6),welcome to \u261b\u3010Cgeolhni\u3011\u261aSize: S Size: Small ----US: 4 ----UK: 8 ----EU: 34 ----Bust: 68~98cm/26.8\"-38.6\" ----Waist: 64-84cm/25.2-33.1\" Size: M Size: Medium ----US: 6 ----UK: 10 ----EU: 36 ----Bust: 72~102cm/28.3\"-40.2\" ----Waist: 68-88cm/26.8-34.6\" Size: L Size: Large ----US: 8 ----UK: 12 ----EU: 38 ----Bust: 76~106cm/29.9\"-41.7\" ----Waist: 72-92cm/28.3-36.2\" Size: XL Size: X-Large ----US: 10 ----UK: 14 ----EU: 40 ----Bust: 80~110cm/31.5\"-43.3\" ----Waist: 76-96cm/29.9-37.8\" \u2764Sports Bras for Women lingerie for women lingerie for women sexy lingerie for women lingerie lingerie for women for sex naughty plus size lingerie women's lingerie, sleep & lounge sexy lingerie for women naughty for sex lingerie for women for sex play crotchless lingerie for women womens lingerie plus size lingerie for women lingerie for women plus size lingerie set sexy lingerie womens snow boots womens sweaters snow boots for women gifts for women womens high Waist body shaper trainer bodysuit underwear lifter hip shapewear tummy control teddy corset teddy babydoll lingerie workout Sets for women,Joggers for women,leggings for women,waist Trainer for women,workout leggings for Women Halloween Thanksgiving Day Black friday Cyber monday lingerie for women sexy lingerie plus size lingerie sexy lingerie sex lingerie sex play women's lingerie sleep & lounge lingerie set crotchless lingerie women lingerie crotchless teddy lingerie babydoll dress women babydoll lingerie women underwear lace bodyduit lingerie set halter chemise lace cups adjustable spaghetti straps a lace underbust band the bodysuit shape design brings you completely female hormones", "pricing": "$11.99$14.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41sa8I-Rp6L.jpg", "https://m.media-amazon.com/images/I/51jLNJ0A3vL.jpg", "https://m.media-amazon.com/images/I/41FISsSBEuL.jpg", "https://m.media-amazon.com/images/I/41i4XabgwFL.jpg", "https://m.media-amazon.com/images/I/41L4ZSMYjYL.jpg", "https://m.media-amazon.com/images/I/411vHmOsY8L.jpg", "https://m.media-amazon.com/images/I/41jAQXb8PDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Sleep & Lounge \u203a Sets", "average_rating": "", "small_description": ["sexy lingerie for women for sex naughty play ", "\u2764\u3010Welcome to the Cgeolhni store\u3011Dear Queen, We are a professional sexy lingerie store.More size information please refer to the size chart in the image, We suggest buy one size larger. Have a nice day. ", "Made in The USA, When you touching it on your lover's body, you will feel very sensitive Sexy Lingerie Adjustable Style,Delicate Transparent Fun Pajamas for a flirtatious manner Honeymoon Lingerie Romantic. The Appearance feels So Sexy Added to the Romantic ", "sexy lingerie for women closure ", "Hand wash is recommended ", "Stockings bodysuit open belt robe big tall fleece shirt strapless nursing fit training adjustable straps breathable underwire support small armour petite sleep post breast wireless underbust torso underdress tutu slimmer cage hoop skirt camisole play crotch bags laundry bag extra crystal drawstring clearance cup valentines cupless slutty control thongs underware cut urban websites exquisite bridal nightgown pants velvet sleepwear ", "Lingerie For Women Plus Size Red Sex Lace Dress Sexy Set Teddy Snap Crotch White With Garter Nightwear Open Bodysuit Black PuUp Clearance Sets Crotchless Satin NightgownV Neck Babydoll Set Halter Chemise Spaghetti Strap Sleepwear Wonderful Gift Yourself Or Friends As Sleepwear Nightwear Pajamas Baby Doll Bra Corset Womens Thong Underwear Mens Ladies Lingere Body Stocking Panties G String Hot Men Bustier Store Clothes Teddies Pink Valentines , Sexy Lingerie Women Plus Size Crotchless Stockings Plus Size Plus Set Nightwear Underwear Sleepwear Fishnet Baby Dolls Lace Dress String Lace Bodydoll Tops Nighties Nightgown Tops Blouses Lingerie Set Womens Lingerie Sexy Sex Exotic Womens Lingerie Sexy Crotchless Corset Blue Sexy Crotchless Corset Blue Exotic Red Corset Blue Nurse, plus size crotchless womens pajama bottoms naughty lingerie for women toddler pajamas girls lingerie plus size women womens pajama sets summer school girl outfit lingerie women pajama sets lingerie plus size women naughty kinky womens pajama tops lace lingerie for women cooling pajamas for women lingerie plus size naughty womens pajama sets dominatrixs lingerie for women womens pajamas set lingerie plus size set womens pajama dress teddy lingerie for women halloween pajamas, bodysuit lingerie for women for sex bodysuit lingerie for women plus size bodysuit lingerie for women crotchless womens bodysuit womens bodysuit lingerie two piece lingerie set for women two piece lingerie plus size Two Piece Lingerie for women two piece lingerie for women two piece lingerie for women sexy sleepwear for women sleepwear for women pajama set sleepwear for women shorts sleepwear for women sexy set sleepwear for women sexy lingerie"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09S5R7SSY"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09S632DT3"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09S5R7SSX"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09S5L5XVM"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S632DT3", "category": "fashion", "query": "Women's Lingerie, Sleep & Lounge", "page": 25, "small_description_old": "sexy lingerie for women for sex naughty play \u2764\u3010Welcome to the Cgeolhni store\u3011Dear Queen, We are a professional sexy lingerie store.More size information please refer to the size chart in the image, We suggest buy one size larger. Have a nice day. Made in The USA, When you touching it on your lover's body, you will feel very sensitive Sexy Lingerie Adjustable Style,Delicate Transparent Fun Pajamas for a flirtatious manner Honeymoon Lingerie Romantic. The Appearance feels So Sexy Added to the Romantic sexy lingerie for women closure Hand wash is recommended Stockings bodysuit open belt robe big tall fleece shirt strapless nursing fit training adjustable straps breathable underwire support small armour petite sleep post breast wireless underbust torso underdress tutu slimmer cage hoop skirt camisole play crotch bags laundry bag extra crystal drawstring clearance cup valentines cupless slutty control thongs underware cut urban websites exquisite bridal nightgown pants velvet sleepwear Lingerie For Women Plus Size Red Sex Lace Dress Sexy Set Teddy Snap Crotch White With Garter Nightwear Open Bodysuit Black PuUp Clearance Sets Crotchless Satin NightgownV Neck Babydoll Set Halter Chemise Spaghetti Strap Sleepwear Wonderful Gift Yourself Or Friends As Sleepwear Nightwear Pajamas Baby Doll Bra Corset Womens Thong Underwear Mens Ladies Lingere Body Stocking Panties G String Hot Men Bustier Store Clothes Teddies Pink Valentines \n Sexy Lingerie Women Plus Size Crotchless Stockings Plus Size Plus Set Nightwear Underwear Sleepwear Fishnet Baby Dolls Lace Dress String Lace Bodydoll Tops Nighties Nightgown Tops Blouses Lingerie Set Womens Lingerie Sexy Sex Exotic Womens Lingerie Sexy Crotchless Corset Blue Sexy Crotchless Corset Blue Exotic Red Corset Blue Nurseplus size crotchless womens pajama bottoms naughty lingerie for women toddler pajamas girls lingerie plus size women womens pajama sets summer school girl outfit lingerie women pajama sets lingerie plus size women naughty kinky womens pajama tops lace lingerie for women cooling pajamas for women lingerie plus size naughty womens pajama sets dominatrixs lingerie for women womens pajamas set lingerie plus size set womens pajama dress teddy lingerie for women halloween pajamasbodysuit lingerie for women for sex bodysuit lingerie for women plus size bodysuit lingerie for women crotchless womens bodysuit womens bodysuit lingerie two piece lingerie set for women two piece lingerie plus size Two Piece Lingerie for women two piece lingerie for women two piece lingerie for women sexy sleepwear for women sleepwear for women pajama set sleepwear for women shorts sleepwear for women sexy set sleepwear for women sexy lingerieShow more"}, {"name": "Gatco Beveled Easy Mount Mirror, 24\" H x 19.5\" W, Silver", "product_information": {"Manufacturer": "\u200eGatco", "Part Number": "\u200e1803", "Item Weight": "\u200e10 pounds", "Product Dimensions": "\u200e0.2 x 19.5 x 24 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200e1803", "Is Discontinued By Manufacturer": "\u200eNo", "Size": "\u200e24\" H x 19.5\" W", "Color": "\u200eSilver", "Style": "\u200eRectangle", "Finish": "\u200eFrameless", "Material": "\u200eGlass", "Shape": "\u200eRectangular", "Item Package Quantity": "\u200e1", "Number Of Pieces": "\u200e1", "Mounting Type": "\u200eWall Mount", "Included Components": "\u200eMirror, mounting bracket, bubble level, screws", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Warranty Description": "\u200eLimited lifetime.", "ASIN": "B07234S5G1", "Customer Reviews": {"ratings_count": 178, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#109,015 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #515 in Personal Makeup Mirrors"], "Date First Available": "May 17, 2017"}, "brand": "Visit the Gatco Store", "brand_url": "https://www.amazon.com/stores/Gatco/page/4DA53625-0572-48C4-B985-1FFC605AC1AC?ref_=ast_bln", "full_description": "Move toward a designer interior by incorporating Gatco\u2019s flush mount mirror into your next remodel. Composed of the finest handcrafted float glass, this mirror makes no compromises when it comes to contemporary aesthetic. Features an elegant beveled edge and smooth rounded border. Complements any room, no matter how large or small. An excellent addition to your bathroom, shower room, bedroom, living room, guest room, entryway, hallway, or wherever a mirror may be convenient. Use this mirror for makeup, shaving, and going about your morning routine. Available in a variety of sizes with both oval and rectangle variations.. Since 1977, Gatco has been a leader in designing and manufacturing premium luxury bathware. Backed by our lifetime warranty, you can trust our products to always exceed your expectations and live up to their name. We proudly stand by our TRUE DESIGN and COMMITMENT TO EXCELLENCE.", "pricing": "$74.85", "list_price": "", "availability_quantity": 3, "availability_status": "In Stock. Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41oZ9uA04nL.jpg", "https://m.media-amazon.com/images/I/51MBCuGnfzL.jpg", "https://m.media-amazon.com/images/I/41YdEO3YW6L.jpg", "https://m.media-amazon.com/images/I/2172qPnjlnL.jpg", "https://m.media-amazon.com/images/I/41G4dD28h1L.jpg", "https://m.media-amazon.com/images/I/4131QuZNU5L.jpg", "https://m.media-amazon.com/images/I/71sACL3EIuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Mirrors \u203a Makeup Mirrors", "average_rating": 4.6, "small_description": ["Enjoy a harmonious reflection with Gatco\u2019s minimalist flush mount mirror. ", "An elegant approach to modern design, incorporating a smooth beveled edge and frameless construction. ", "Artisan Quality: Handcrafted and polished for timeless beauty and lasting sheen. ", "Features rounded diamond cut float glass ensuring longevity, durability, and dependability. ", "Includes the patented Hang-It Heavy Duty wall mounting system with built in level, for effortless installation in less than 10 minutes. ", "Easily mount this product in portrait or landscape on a variety of surfaces including tile, wood, and drywall. ", "Available in multiple size variations and shapes, including oval and rectangular. "], "total_reviews": 178, "total_answered_questions": "", "model": "\u200e1803", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B07234S5G1", "category": "beauty", "query": "Mirrors", "page": 4, "small_description_old": "About this item\n \nEnjoy a harmonious reflection with Gatco\u2019s minimalist flush mount mirror. An elegant approach to modern design, incorporating a smooth beveled edge and frameless construction. Artisan Quality: Handcrafted and polished for timeless beauty and lasting sheen. Features rounded diamond cut float glass ensuring longevity, durability, and dependability. Includes the patented Hang-It Heavy Duty wall mounting system with built in level, for effortless installation in less than 10 minutes. Easily mount this product in portrait or landscape on a variety of surfaces including tile, wood, and drywall. Available in multiple size variations and shapes, including oval and rectangular. \n \u203a See more product details"}, {"name": "Epson Home Cinema 2250 3LCD Full HD 1080p Projector with Android TV, Streaming Projector, Home Theater Projector, 10W Speaker, Image Enhancement, Frame Interpolation, 70,000:1 contrast ratio, HDMI", "product_information": {"Product Dimensions": "14 x 16 x 7 inches", "Item Weight": "10.98 pounds", "ASIN": "B08GL4GB2M", "Item model number": "Donter", "Customer Reviews": {"ratings_count": 363, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#382 in Video Projectors"], "Date First Available": "October 26, 2020", "Manufacturer": "Epson"}, "brand": "Visit the Epson Store", "brand_url": "https://www.amazon.com/stores/Epson/page/938A6E01-68B6-4115-8369-91F0063B474B?ref_=ast_bln", "full_description": "Enjoy accurate color and smart TV functionality with the Epson Home Cinema 2250 2700-Lumen Full HD 3LCD Smart Projector. It has the Android TV operating system onboard with the Google Assistant, enabling a host of functions for streaming and casting your favorite content. The Google Assistant allows voice control of the projector and any compatible device on the same Wi-Fi network.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31-CoSgAvlL.jpg", "https://m.media-amazon.com/images/I/41+aAafrVkL.jpg", "https://m.media-amazon.com/images/I/41MQNM8d4yL.jpg", "https://m.media-amazon.com/images/I/51L-ApXkz1L.jpg", "https://m.media-amazon.com/images/I/51tOVnXM1fL.jpg", "https://m.media-amazon.com/images/I/418I+IRb0lL.jpg", "https://m.media-amazon.com/images/I/41LaNUTeTvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Video Projectors", "average_rating": 4.6, "small_description": ["Stunning picture quality \u2014 delivers an immersive viewing experience for TV shows, sporting events, gaming and movies for an amazing Full HD picture ", "Smooth, crisp images \u2014 with Image Enhancement and Frame Interpolation ", "Built-in Android TV (2) \u2014 latest Android TV interface with a simple-to-use remote \u2013 including voice search with built-in Google Assistant. Watch all your favorite streaming channels including Hulu, HBO, YouTube and more (3) without an external streaming media player ", "Best-in-Class Color Brightness (1) \u2014 advanced 3LCD technology displays 100% of the RGB color signal for every frame. This allows for outstanding color accuracy while maintaining excellent color brightness, without any distracting \u201crainbowing\u201d or \u201ccolor brightness\u201d issues seen with other projection technologies ", "Ultra bright picture \u2014 2,700 lumens of color and white brightness (4) ", "Easy setup \u2014 built-in 10 W speaker and easy setup for HD entertainment right out of the box ", "Built-in vertical lens shift \u2014 change the position of the image without moving the projector up or down , Amazing dynamic contrast ratio \u2014 up to 70,000:1 for rich detail in dark scenes, Versatile connectivity \u2014 features an HDMI port, so you can connect your cable/satellite box, Blu-ray Disc player, gaming console or streaming device, Award-winning service and support \u2014 standard 2-year limited warranty, full-unit replacement, along with free technical phone support for the life of the product"], "total_reviews": 363, "total_answered_questions": 65, "model": "Donter", "customization_options": {"Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08GL2MCZV/ref=twister_B09J8ZZ2VX?_encoding=UTF8&psc=1", "value": "Home Cinema 2200 - New", "price_string": "$899.99", "price": 899.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2B2D5N/ref=twister_B09J8ZZ2VX?_encoding=UTF8&psc=1", "value": "Home Cinema 2200 - Renewed", "price_string": "$799.99", "price": 799.99, "image": null}, {"is_selected": true, "url": null, "value": "Home Cinema 2250 - New", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0991CPQZY/ref=twister_B09J8ZZ2VX?_encoding=UTF8&psc=1", "value": "Home Cinema 2250 - Renewed", "price_string": "$749.99", "price": 749.99, "image": null}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08GL4GB2M", "category": "electronics", "query": "Projectors", "page": 12, "small_description_old": "About this item\n \nStunning picture quality \u2014 delivers an immersive viewing experience for TV shows, sporting events, gaming and movies by accepting content up to 4K \u2013 for an amazing Full HD picture Smooth, crisp images \u2014 with Image Enhancement and Frame Interpolation Built-in Android TV (2) \u2014 latest Android TV interface with a simple-to-use remote \u2013 including voice search with built-in Google Assistant. Watch all your favorite streaming channels including Hulu, HBO, YouTube and more (3) without an external streaming media player Best-in-Class Color Brightness (1) \u2014 advanced 3LCD technology displays 100% of the RGB color signal for every frame. This allows for outstanding color accuracy while maintaining excellent color brightness, without any distracting \u201crainbowing\u201d or \u201ccolor brightness\u201d issues seen with other projection technologies Ultra bright picture \u2014 2,700 lumens of color and white brightness (4) Easy setup \u2014 built-in 10 W speaker and easy setup for HD entertainment right out of the box Built-in vertical lens shift \u2014 change the position of the image without moving the projector up or down \n Amazing dynamic contrast ratio \u2014 up to 70,000:1 for rich detail in dark scenesVersatile connectivity \u2014 features an HDMI port, so you can connect your cable/satellite box, Blu-ray Disc player, gaming console or streaming deviceAward-winning service and support \u2014 standard 2-year limited warranty, full-unit replacement, along with free technical phone support for the life of the productShow more"}, {"name": "CandyMan Lace Pajama and Lounge Pants for Men", "product_information": {"Item Weight\n \u200f": "\u200e\n 1.52 Pounds", "Item model number\n \u200f": "\u200e\n CandyMan_99234_Black_S", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 17, 2017", "Manufacturer\n \u200f": "\u200e\n CandyMan", "ASIN\n \u200f": "\u200e\n B01MUBQS18", "Best Sellers Rank": "#4,478,686 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#3,768 in Men's Exotic Apparel #1,813,298 in Men's Fashion", "#3,768 in Men's Exotic Apparel": "", "#1,813,298 in Men's Fashion": ""}, "brand": "Brand: CandyMan", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=CandyMan", "full_description": "With the CandyMan Fashion Pajama Pants you will look both chic and comfortable in these lace lounge pants! Allover lace pants feature an elastic logo waistband. Long length and low rise will give you a sexy and romantic look every time you put on these babies. Hand made in Colombia - South America with USA and Colombian fabrics. Please refer to size chart to ensure you choose the correct size. Smooth microfiber provides support and comfort exactly where needed. Lace fabric, see through. Wide comfortable legs.", "pricing": "$31.00$69.00", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31xaEX8jA0L.jpg", "https://m.media-amazon.com/images/I/41YbglZkNmL.jpg", "https://m.media-amazon.com/images/I/31ZwPajJH9L.jpg", "https://m.media-amazon.com/images/I/41vPxWjhZIL.jpg", "https://m.media-amazon.com/images/I/51kXzhColXL.jpg", "https://m.media-amazon.com/images/I/31jrfIxyfNL.jpg", "https://m.media-amazon.com/images/I/31h+SOV2UNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Exotic Apparel \u203a Men", "average_rating": "", "small_description": ["Imported ", "Hand made in Colombia - South America with USA and Colombian fabrics. Please refer to size chart to ensure you choose the correct size. ", "Allover lace pants feature an elastic logo waistband. ", "Long length and low rise will give you a sexy and romantic look every time you put on these babies. ", "Smooth microfiber provides support and comfort exactly where needed. ", "Lace fabric, see through. Wide comfortable legs. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "Small", "asin": "B01MUBQS18"}, {"is_selected": false, "is_available": true, "value": "Small-Medium", "asin": "B09QW2HQRK"}, {"is_selected": false, "is_available": false, "value": "Medium", "asin": "B01MUBQTRY"}, {"is_selected": false, "is_available": false, "value": "Large", "asin": "B01N4P2V9F"}, {"is_selected": false, "is_available": true, "value": "Large-X-Large", "asin": "B09QV7SMVH"}, {"is_selected": false, "is_available": false, "value": "X-Large", "asin": "B01MTA3O72"}, {"is_selected": false, "is_available": true, "value": "1-2XL", "asin": "B09QW4MFSN"}, {"is_selected": false, "is_available": true, "value": "2-3XL", "asin": "B09QW2C8X1"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01MUBQS18/ref=twister_B01N5QDRPO", "value": "Black_style_99234", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/416gtnrUg9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08H5VCFF5/ref=twister_B01N5QDRPO", "value": "Black_style_99497", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ZmFNKx4eL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08H5TGSMV/ref=twister_B01N5QDRPO", "value": "Black_style_99496", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31yL0vr0SPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01N7T893S/ref=twister_B01N5QDRPO", "value": "Red_style_99234", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51OogRCBpML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QVSFTZY/ref=twister_B01N5QDRPO", "value": "Black_style_99601", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51M88+9UtHL.jpg"}, {"is_selected": true, "url": null, "value": "Navy_style_99602", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31xaEX8jA0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B088CSBCGL/ref=twister_B01N5QDRPO", "value": "Black_style_99445", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41nUt7SjBRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QW3DWNV/ref=twister_B01N5QDRPO", "value": "Navy_style_99603", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31onosO6DhL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QVVTT91/ref=twister_B01N5QDRPO", "value": "Navy_style_99609", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41esZkk+klL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08H5V2BHR/ref=twister_B01N5QDRPO", "value": "Black_style_99464", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51sdMlAOvpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08H5Y3QL2/ref=twister_B01N5QDRPO", "value": "Black_style_99496x", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31DDVy-iptL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QW2NCCM/ref=twister_B01N5QDRPO", "value": "Navy_style_99603x", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31zSlJmuaJL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QW2HQRK", "category": "fashion", "query": "Men's Shorts", "page": 154, "small_description_old": "Imported Hand made in Colombia - South America with USA and Colombian fabrics. Please refer to size chart to ensure you choose the correct size. Allover lace pants feature an elastic logo waistband. Long length and low rise will give you a sexy and romantic look every time you put on these babies. Smooth microfiber provides support and comfort exactly where needed. Lace fabric, see through. Wide comfortable legs."}, {"name": "Propper Men's Pack 3 t-Shirt", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 9.5 x 2 x 10 inches; 12.31 Ounces", "Item model number\n \u200f": "\u200e\n F53060U248XS", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 2, 2020", "Manufacturer\n \u200f": "\u200e\n Propper", "ASIN\n \u200f": "\u200e\n B08PG3J3DZ", "Best Sellers Rank": "#194,282 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#304 in Men's Undershirts", "#304 in Men's Undershirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Propper Store", "brand_url": "https://www.amazon.com/stores/PROPPER/page/1FAD8756-D310-4EC7-8D46-50106A5A7A7B?ref_=ast_bln", "full_description": "It all starts with the basics. The Propper pack 3 t-shirt - crew neck made of 60% ring-spun cotton/40% polyester combed jersey fabric always holds its shape, giving you a professional look with all of the comfort you'd expect from combed jersey fabric. It's packed in threes, so you'll always have one on hand, right when you need it.", "pricing": "$13.37$47.74", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41s518zaRCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a Undershirts", "average_rating": 4.6, "small_description": ["60% Cotton, 40% Polyester ", "Imported ", "Button closure ", "Hand Wash Only ", "Product Type: SHIRT ", "Package quantity: 1 ", "No batteries required ", "Package weight: 1.0 lb "], "total_reviews": 261, "total_answered_questions": 3, "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "X-Small", "asin": "B08PG3J3DZ"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B00ED8OI5I"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B00ED8OHJA"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B00ED8OH2C"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B00ED8OIPI"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B00ED8OGK0"}, {"is_selected": false, "is_available": false, "value": "3X-Large", "asin": "B00HMN6KWU"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B00HMN6NKE"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08PG3J3DZ/ref=twister_B078GWWWVJ", "value": "Desert Sand", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31EVkrPIUSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PG3M2CY/ref=twister_B078GWWWVJ", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31oy+fWQgML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PG4L7GY/ref=twister_B078GWWWVJ", "value": "Lapd Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sfyUkmatL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PG4FPVM/ref=twister_B078GWWWVJ", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/311EI24A5KL.jpg"}, {"is_selected": true, "url": null, "value": "Olive Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41s518zaRCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PG29BDP/ref=twister_B078GWWWVJ", "value": "Tan", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/311N1eSp97L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PG4YNTK/ref=twister_B078GWWWVJ", "value": "Olive", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Ypiu1ocnL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B00ED8OH2C", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 28, "small_description_old": "Package quantity: 1 No batteries required Package weight: 1.0 lb"}, {"name": "Spy Camera Wireless Hidden JLRKENG Full HD 4K USB Nanny Cam-Suitable for Home and Office Security Cameras-with Motion Detection-Support Android/iOS", "product_information": {"Product Dimensions": "6.26 x 3.11 x 0.39 inches", "Item Weight": "0.64 ounces", "ASIN": "B08D8726MN", "Customer Reviews": {"ratings_count": 151, "stars": "3.0 out of 5 stars"}, "Best Sellers Rank": ["#6,055 in Camera & Photo Products (See Top 100 in Camera & Photo Products) #1,266 in Hidden Cameras"], "Date First Available": "May 11, 2020", "Manufacturer": "JLRKENG"}, "brand": "Brand: JLRKENG", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JLRKENG", "full_description": "Warning: \u2705 Compatible only with 2.4GHz Wifi \u2705 This camera does not have a night vision function, so if you use it at night, please provide it with a little lighting. product detailed information: \u2714\ufe0f 2 in 1 spy USB camera \u2714\ufe0f Capture super clear 4K videos and pictures \u2714\ufe0f Compatible with IOS and Android \u2714\ufe0f100 \u00b0 wide angle shooting \u2714\ufe0fWIFI remote live broadcast \u2714\ufe0f Sensory motion sensor \u2714\ufe0f 24/7 customer support \u2714\ufe0f There are multiple cameras in one app and multiple users in one camera \u2714\ufe0f Camera app no monthly fee \u2714\ufe0f iOS and Android \u2714\ufe0f Maximum 128GB Micro SD card loop recording (not included in the package) Get this camera to protect yourself and your family! Add to cart!", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41qVpt2SdxL.jpg", "https://m.media-amazon.com/images/I/41FIUhaJxyL.jpg", "https://m.media-amazon.com/images/I/51PnTawTMQL.jpg", "https://m.media-amazon.com/images/I/51yCzPN+iHL.jpg", "https://m.media-amazon.com/images/I/51iyiaNygVL.jpg", "https://m.media-amazon.com/images/I/41tWLZ1wbyL.jpg", "https://m.media-amazon.com/images/I/41zoCBe+-0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Video Surveillance \u203a Surveillance Cameras \u203a Hidden Cameras", "average_rating": 3, "small_description": ["\u2714\ufe0f[5-layer USB charging port] The camera looks like a standard USB hub charger. You can connect multiple charging ports to charge the device at the same time. In addition, the camera will not attract anyone's attention during the recording process. ", "\u2714\ufe0f[WIFI remote real-time streaming] -After the new upgrade, this USB spy camera is easier to configure. You only need to connect the camera's own WIFI- to the APP to configure the camera as an indoor 2.4G wifi network. Turn on live streaming. The unique HD lens is ready to capture video at any time to catch the thief! ", "\u2714\ufe0f[Motion sensor 2.0]: USB hidden camera is equipped with advanced high-tech motion sensor. Once motion is detected, the camera will automatically take three photos and send them to your phone (you can also set up email push). ", "\u2714\ufe0fThe spy hidden camera configuration is newly upgraded with a full HD 4K pixel back-illuminated sensor. The shape of the realistic charging base design, no one will notice that a camera similar to a USB charger is watching everything. ", "\u2714\ufe0f[After-sales guarantee and emergency response] -After getting the camera, you will enjoy a worry-free return service within one year, and enjoy a dedicated customer service emergency for 10 hours online to solve the problem. We support solving any of your problems via email, phone, whatAPP, etc. "], "total_reviews": 151, "total_answered_questions": 27, "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08D8726MN", "category": "electronics", "query": "Video Surveillance", "page": 324, "small_description_old": "About this item\n \n\u2714\ufe0f[5-layer USB charging port] The camera looks like a standard USB hub charger. You can connect multiple charging ports to charge the device at the same time. In addition, the camera will not attract anyone's attention during the recording process. \u2714\ufe0f[WIFI remote real-time streaming] -After the new upgrade, this USB spy camera is easier to configure. You only need to connect the camera's own WIFI- to the APP to configure the camera as an indoor 2.4G wifi network. Turn on live streaming. The unique HD lens is ready to capture video at any time to catch the thief! \u2714\ufe0f[Motion sensor 2.0]: USB hidden camera is equipped with advanced high-tech motion sensor. Once motion is detected, the camera will automatically take three photos and send them to your phone (you can also set up email push). \u2714\ufe0fThe spy hidden camera configuration is newly upgraded with a full HD 4K pixel back-illuminated sensor. The shape of the realistic charging base design, no one will notice that a camera similar to a USB charger is watching everything. \u2714\ufe0f[After-sales guarantee and emergency response] -After getting the camera, you will enjoy a worry-free return service within one year, and enjoy a dedicated customer service emergency for 10 hours online to solve the problem. We support solving any of your problems via email, phone, whatAPP, etc."}, {"name": "Bestar Pur Collection, Queen Murphy Bed kit (101\u201c)", "product_information": {"Item Weight": "\u200e623 pounds", "Product Dimensions": "\u200e20.3 x 100.3 x 89.1 inches", "ASIN": "B018A8MPJ2", "Customer Reviews": {"ratings_count": 12, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#1,161,121 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,212 in Beds"], "Date First Available": "November 21, 2015"}, "brand": "Visit the Bestar Store", "brand_url": "https://www.amazon.com/stores/Bestar/page/C148808F-ADF2-4EAA-B2A2-82043E7F002D?ref_=ast_bln", "full_description": "", "pricing": "$2,418.74", "list_price": "", "availability_status": "Usually ships within 1 to 3 weeks.", "images": ["https://m.media-amazon.com/images/I/415y3f+6RZL.jpg", "https://m.media-amazon.com/images/I/41WEfDiej5L.jpg", "https://m.media-amazon.com/images/I/51xSRT8AjWL.jpg", "https://m.media-amazon.com/images/I/41ryZuKgfeL.jpg", "https://m.media-amazon.com/images/I/41e4+9qekBL.jpg", "https://m.media-amazon.com/images/I/31NUDxJKMML.jpg", "https://m.media-amazon.com/images/I/41iEdQtE4GL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Beds", "average_rating": 4, "small_description": ["NOTE: For installation and to avoid risk of injury, use only a professional or qualified person with knowledge of the wall structure, studs, and components. Bed may be attached to wood studs, metal studs, or masonry wall structures; masonry requires use of concrete screws (not provided). ", "The collection brings multi functionality to a single room. ", "The kit comprises a queen size wall bed and a 36“ storage unit with 3-Drawer set. ", "The mechanism provides simplified assembly of the Wall Bed. ", "Increased comfort due to Euroslat mattress support system. "], "total_reviews": 12, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01MRY4BT3/ref=twister_B07K6XQGQQ?_encoding=UTF8&psc=1", "value": "Bark Grey", "price_string": "$2,356.08", "price": 2356.08, "image": "https://m.media-amazon.com/images/I/419FKZ7m7sL.jpg"}, {"is_selected": true, "url": null, "value": "Chocolate", "price_string": "$2,418.74", "price": 2418.74, "image": "https://m.media-amazon.com/images/I/415y3f+6RZL.jpg"}]}, "seller_id": "A2G88111572J8M", "seller_name": "BisonOffice", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B018A8MPJ2", "category": "garden", "query": "Beds", "page": 62, "small_description_old": "About this item NOTE: For installation and to avoid risk of injury, use only a professional or qualified person with knowledge of the wall structure, studs, and components. Bed may be attached to wood studs, metal studs, or masonry wall structures; masonry requires use of concrete screws (not provided). The collection brings multi functionality to a single room. The kit comprises a queen size wall bed and a 36“ storage unit with 3-Drawer set. The mechanism provides simplified assembly of the Wall Bed. Increased comfort due to Euroslat mattress support system. \n \u203a See more product details"}, {"name": "MADISON & PARK Office Desk Chair Leather Computer Executive Conference Task Study Chair Adjustable Swivel Chair with Adjustable Arms (CAPPUCCINO)", "product_information": {"Item Weight": "\u200e42 pounds", "Package Dimensions": "\u200e30.25 x 25.25 x 16 inches", "Item model number": "\u200eOF-HAI-CUCHR-11803-CPO", "Is Discontinued By Manufacturer": "\u200eNo", "ASIN": "B01N4QB5WP", "Customer Reviews": {"ratings_count": 3, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#315,849 in Office Products (See Top 100 in Office Products) #827 in Managerial Chairs & Executive Chairs"], "Date First Available": "January 20, 2017"}, "brand": "Visit the Madison Park Store", "brand_url": "https://www.amazon.com/stores/MAYAKOBA/page/13DCD856-ED2D-400C-91C2-F0B741673631?ref_=ast_bln", "full_description": "Built completely for comfort, the AVION Office Chair offers great back and leg support and easily reclines according to your comfort. The extra padding and sleek vinyl leather provides cozy seating while offering a fresh style for any type of office or conference room setting. The buttery-smooth, vinyl-leather combined with the chrome 5-star base and armrest supports, make for one very eye-popping piece! Nip-and-tuck designing on the seat and back in addition to double rows of contrasting, decorative stitchery creates an office chair that could be considered a work of art, in its own right! If an exclusive, upscale impression is the look you want to achieve for your office, reception, home office, conference room or any official setting, the AVION Office chair is the perfect fit.Colors Available: Cappuccino, Black, Burgundy", "pricing": "$249.00", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/412aYZY4hCL.jpg", "https://m.media-amazon.com/images/I/41FUsLBlI8L.jpg", "https://m.media-amazon.com/images/I/41zi8ajlnnL.jpg", "https://m.media-amazon.com/images/I/31rFpjghxHL.jpg", "https://m.media-amazon.com/images/I/319KGNOKrfL.jpg", "https://m.media-amazon.com/images/I/41oXxzzeaGL.jpg", "https://m.media-amazon.com/images/I/31bEPMCg14L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Furniture & Lighting \u203a Chairs & Sofas \u203a Managerial & Executive Chairs", "average_rating": 5, "small_description": ["Soft Comfort and Stylish Color ", "Arm-to-arm (outside): 28\" x Arm-to-arm (inside): 20\" ", "Back Height: 28\" ", "Seat Width: 19.5\" Seat Depth: 20.5\" Adjust Height: 3\" ", "Chair Height (from ground to the back top): 46\" ~ 49\" 5-star-base width: 28\" "], "total_reviews": 3, "total_answered_questions": "", "model": "\u200eOF-HAI-CUCHR-11803-CPO", "customization_options": "", "seller_id": "A2LFYZPCDM2C5A", "seller_name": "Madison & Park", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01N4QB5WP", "category": "garden", "query": "Home Office Chairs", "page": 118, "small_description_old": "About this item Soft Comfort and Stylish Color Arm-to-arm (outside): 28\" x Arm-to-arm (inside): 20\" Back Height: 28\" Seat Width: 19.5\" Seat Depth: 20.5\" Adjust Height: 3\" Chair Height (from ground to the back top): 46\" ~ 49\" 5-star-base width: 28\" \n \u203a See more product details"}, {"name": "Dell Dual VESA Mount Stand with adaptor box for Micro Chassis - Customer Install - stand for monitor / mini PC - mounting interface: VESA", "product_information": {"Product Dimensions": "2 x 4 x 8 inches", "Item Weight": "1.55 pounds", "ASIN": "B07PXMFDQ3", "Item model number": "8541751172", "Customer Reviews": {"ratings_count": 4, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#1,511 in TV Mounts #2,693 in Electronics Mounts"], "Date First Available": "March 21, 2019", "Manufacturer": "Dell Computers"}, "brand": "Visit the Dell Store", "brand_url": "https://www.amazon.com/stores/Dell/page/9B75DD0E-9F42-4B9B-ACAA-F329B23ADE7D?ref_=ast_bln", "full_description": "Manufacturer: Dell Technologies. Brand Name: Dell. Product Name: Mounting Bracket. Product Type: Mounting Bracket. [Product Information] Device Supported: Desktop Computer. Flat Panel Display. [Physical Characteristics] Color: Black. [Miscellaneous] Compatibility: Dell OptiPlex Micro PC: 3020 9020 .", "pricing": "$45.50", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/415MQE5qoxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Television Accessories \u203a TV Mounts, Stands & Turntables \u203a TV Ceiling & Wall Mounts", "average_rating": 4.7, "small_description": ["Device Supported: Desktop Computer ", "Device Supported: Flat Panel Display ", "Color: Black ", "Compatibility: Dell OptiPlex Micro PC: 3020 9020 "], "total_reviews": 4, "total_answered_questions": "", "model": "8541751172", "customization_options": "", "seller_id": "A3LGJ9ZB5RSN9T", "seller_name": "MegaRetailStore", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07PXMFDQ3", "category": "electronics", "query": "Television Accessories", "page": 316, "small_description_old": "Device Supported: Desktop Computer Device Supported: Flat Panel Display Color: Black Compatibility: Dell OptiPlex Micro PC: 3020 9020"}, {"name": "Quorum 5094-6-186 Traditional Transitional Six Light Vanity, Oiled Bronze", "product_information": {"Manufacturer": "\u200eQuorum", "Part Number": "\u200e5094-6-186", "Item Weight": "\u200e1.5 pounds", "Product Dimensions": "\u200e48.93 x 8.31 x 9.03 inches", "Item model number": "\u200e5094-6-186", "Is Discontinued By Manufacturer": "\u200eNo", "Color": "\u200eOiled Bronze", "Style": "\u200eTraditional", "Finish": "\u200eBronze", "Material": "\u200ePlastic", "Shape": "\u200eCircular", "Power Source": "\u200eAC", "Voltage": "\u200e120 Volts", "Wattage": "\u200e100.00", "Item Package Quantity": "\u200e1", "Number Of Pieces": "\u200e1", "Type of Bulb": "\u200eIncandescent", "Measurement System": "\u200eEnglish/Standard", "Mounting Type": "\u200eProtruding", "Plug Format": "\u200eA- US style", "Switch Style": "\u200eToggle", "Special Features": "\u200eDimmable", "Usage": "\u200eGeneral Purpose", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Warranty Description": "\u200eN/a.", "ASIN": "B00IMMU4G8", "Customer Reviews": {"ratings_count": 128, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#223,199 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #989 in Vanity Lighting Fixtures"], "Date First Available": "February 18, 2014"}, "brand": "Visit the Quorum Store", "brand_url": "https://www.amazon.com/stores/Quorum+International/page/692E8CC7-ED77-4672-A831-1ED91FDEA1A6?ref_=ast_bln", "full_description": "Quorum 5094-6-186 Transitional Six Light Vanity from Vanity collection in Bronze / Dark finish . Six Light Vanity from the Vanity collection. Height: 8.00 inches Width: 48.00 inches. Style: Transitional Light Type: Vanity Finish: Oiled Bronze w/ Faux Alabaster. Safety Rating: Damp and Safety Listing: Damp.", "pricing": "$112.00", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31jqMdW1A8L.jpg", "https://m.media-amazon.com/images/I/416TSxe1rvL.jpg", "https://m.media-amazon.com/images/I/41h44M4fxEL.jpg", "https://m.media-amazon.com/images/I/31uE58mJsiL.jpg", "https://m.media-amazon.com/images/I/319xT-j8daL.jpg", "https://m.media-amazon.com/images/I/410cNgZheeL.jpg", "https://m.media-amazon.com/images/I/41EmfDrt+RL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Vanity Lights", "average_rating": 4.4, "small_description": ["Six Light Vanity from the Vanity collection ", "Height: 8.00 inches Width: 48.00 inches ", "Style: Transitional Light Type: Vanity ", "Finish: Oiled Bronze w/ Faux Alabaster ", "Safety Rating: Damp and Safety Listing: Damp ", "Finish - oiled bronze with faux Alabaster^Quorum item Number - 5094-6-186^From the Quorum vanity line "], "total_reviews": 128, "total_answered_questions": "", "model": "\u200e5094-6-186", "customization_options": "", "seller_id": "A3FXLCMUZ5EJPB", "seller_name": "Lighting Supply Group", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00IMMU4G8", "category": "garden", "query": "Vanities", "page": 43, "small_description_old": "About this item\n \nSix Light Vanity from the Vanity collection Height: 8.00 inches Width: 48.00 inches Finish: Oiled Bronze w/ Faux Alabaster Safety Rating: Damp and Safety Listing: Damp Finish - oiled bronze with faux Alabaster^Quorum item Number - 5094-6-186^From the Quorum vanity line \n \u203a See more product details"}, {"name": "MJL Furniture MAX Button Tufted Upholstered Square Blue Ottoman Black", "product_information": {"ASIN": "B073KYWX93", "Best Sellers Rank": ["#7,880,993 in Home & Kitchen (See Top 100 in Home & Kitchen) #10,622 in Ottomans"], "Date First Available": "June 30, 2017"}, "brand": "Brand: MJL Furniture", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=MJL+Furniture", "full_description": "This sleek square ottoman from MJL Furniture will bring a stylish, modern accent to your home that is also a useful piece of furniture. Perfect as a footrest, this upholstered ottoman can also provide some extra seating when needed. This button-tufted ottoman is available with white, turquoise, sea-mist, or black buttons, so you can choose whichever color best matches your preference and decor style.Features:Fabric upholstered square ottomanMade of polyester, wood, and fire-retardant foam fill100-percent polyester upholsterySea-mist blue colorSolid patternBlack underside liningContemporary/ casual styleAssembly required4 screw-on legs with espresso finishButton-tufted designAvailable with white, turquoise, sea-mist, or black buttonsDimensions:Overall: 34 inches long x 34 inches wide x 19 inches highInner: 31.5 inches long. x 31.5 inches wide x 7.25 inches highPlease note: Some options listed or pictured may be currently out of stock. Please see option drop down for all in-stock options.", "pricing": "$268.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/319KBtp2hjL.jpg", "https://m.media-amazon.com/images/I/31v4GtG+1uL.jpg", "https://m.media-amazon.com/images/I/31BU-SbeO4L.jpg", "https://m.media-amazon.com/images/I/31YLtFO3WfL.jpg", "https://m.media-amazon.com/images/I/31Efsa8WxJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Accent Furniture \u203a Ottomans", "average_rating": "", "small_description": ["Fabric upholstered square ottoman ", "Made of polyester, wood, and fire-retardant foam fill ", "100-percent polyester upholstery "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$268.99", "price": 268.99, "image": "https://m.media-amazon.com/images/I/319KBtp2hjL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073L3ZNK3/ref=twister_B087N9G72W?_encoding=UTF8&psc=1", "value": "Sea Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Hss5ZZQ+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073KPT66W/ref=twister_B087N9G72W?_encoding=UTF8&psc=1", "value": "Turquoise", "price_string": "$268.99", "price": 268.99, "image": "https://m.media-amazon.com/images/I/31vqRZVZpnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073KWX6DT/ref=twister_B087N9G72W?_encoding=UTF8&psc=1", "value": "White", "price_string": "$268.99", "price": 268.99, "image": "https://m.media-amazon.com/images/I/31OM6uC6EfL.jpg"}]}, "seller_id": "A11OO2OHZG4UKY", "seller_name": "Overstock", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B073KYWX93", "category": "garden", "query": "Ottomans", "page": 91, "small_description_old": "About this item Made of polyester, wood, and fire-retardant foam fill 100-percent polyester upholstery \n \u203a See more product details"}, {"name": "Parsley Organic Seasoning Spice - Perfect As Garnish - Petroselinum Crispum 100g", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 10.47 x 7.09 x 2.13 inches; 3.53 Ounces", "Manufacturer\n \u200f": "\u200e\n Valley of Tea", "ASIN\n \u200f": "\u200e\n B07D21HNGZ", "Country of Origin\n \u200f": "\u200e\n Belgium", "Best Sellers Rank": "#438,952 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#104 in Parsley", "#104 in Parsley": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Valley of Tea Store", "brand_url": "https://www.amazon.com/stores/Valley+of+Tea/page/C2C3F350-2190-48B3-B25A-5FCCC806B6E1?ref_=ast_bln", "full_description": "", "pricing": "$14.96", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/619EualfTRL.jpg", "https://m.media-amazon.com/images/I/31pzHJ6F60L.jpg", "https://m.media-amazon.com/images/I/41cLr9RtESL.jpg", "https://m.media-amazon.com/images/I/51ifMEEMsyL.jpg", "https://m.media-amazon.com/images/I/51qX5BQMoHL.jpg", "https://m.media-amazon.com/images/I/41K+VXvWAaL.jpg", "https://m.media-amazon.com/images/I/51BI-lnmG4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Herbs, Spices & Seasonings \u203a Single Herbs & Spices \u203a Parsley", "average_rating": 4.3, "small_description": ["A staple seasoning with a bright green color and a mild fresh flavour, this herb is perfect for elevating dishes. ", "This organic whole parsley has been grown and dried using artisan methods to ensure an unmistakeable flavour and colour. ", "Unlike many herbs, parsley doesn't lose nutrients during the drying process. In fact, research shows that drying parsley concentrates the nutrients in the dried herb. ", "With a bright green color and a mild, fresh flavor, parsley is a must-have for any pantry. Use it to flavour soups, vegetables, sauces, dressings, eggs and any potato dishes. ", "This herb has been carefully selected, packaged and transported to deliver the best possible quality and freshness "], "total_reviews": 23, "total_answered_questions": "", "customization_options": "", "seller_id": "A33XBRO0EJBRN3", "seller_name": "ValleyofTea", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07D21HNGZ", "category": "grocery", "query": "Pantry Staples", "page": 211, "small_description_old": "About this item A staple seasoning with a bright green color and a mild fresh flavour, this herb is perfect for elevating dishes. This organic whole parsley has been grown and dried using artisan methods to ensure an unmistakeable flavour and colour. Unlike many herbs, parsley doesn't lose nutrients during the drying process. In fact, research shows that drying parsley concentrates the nutrients in the dried herb. With a bright green color and a mild, fresh flavor, parsley is a must-have for any pantry. Use it to flavour soups, vegetables, sauces, dressings, eggs and any potato dishes. This herb has been carefully selected, packaged and transported to deliver the best possible quality and freshness"}, {"name": "Pure-aid 100% Pure Cotton Balls | Lint Free | Soft and Gentle | Hypoallergenic 100% Pure Cotton Balls | Bargain Finds | Various Uses | 300 count each | 2 Pack (2 Pack (200 Count))", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 9.5 x 8 x 1 inches; 3.99 Ounces", "Manufacturer\n \u200f": "\u200e\n Kareway", "ASIN\n \u200f": "\u200e\n B089T9S33Y", "Best Sellers Rank": "#6,514 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,805 in Skin Care Products", "#1,805 in Skin Care Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Pure-Aid Store", "brand_url": "https://www.amazon.com/stores/Pure-Aid/page/0933E1E1-928D-4183-8690-B56A8833A19A?ref_=ast_bln", "full_description": "", "pricing": "$4.49", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41DEKvUvMqL.jpg", "https://m.media-amazon.com/images/I/4132ZmydMXL.jpg", "https://m.media-amazon.com/images/I/41vWeuL2jEL.jpg", "https://m.media-amazon.com/images/I/41Qid05ms3L.jpg", "https://m.media-amazon.com/images/I/51U8HxxZg5L.jpg", "https://m.media-amazon.com/images/I/41y15T6T2lL.jpg", "https://m.media-amazon.com/images/I/414uEM9g+3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care", "average_rating": 4.2, "small_description": ["GENTLE: Soft & Gentle, made of 100% pure cotton. Perfect to use for applying astringents, removing makeup, applying lotions and creams. ", "HYPOALLERGENIC: Super absorbent cotton balls that are safe to use on a baby's delicate skin ", "LINT FREE: Ideal for cleaning and applying lotion, oil, powders and first aid ointments ", "HOME USE: Multi-purpose for household needs like polishing silver and brass, furniture and shoes, or for crafts and hobbies ", "2 Pack (300 cotton balls in each bag) "], "total_reviews": 104, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08TG6MFPX/ref=twister_B08TDXGFVL?_encoding=UTF8&psc=1", "value": "2 Pack (600 Count)", "price_string": "$5.25", "price": 5.25, "image": null}, {"is_selected": true, "url": null, "value": "300 Count (Pack of 2)", "price_string": "$4.49", "price": 4.49, "image": null}]}, "seller_id": "A1HSAWRD3O0I4V", "seller_name": "Kareway", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B089T9S33Y", "category": "beauty", "query": "Cotton Balls & Swabs", "page": 5, "small_description_old": "About this item GENTLE: Soft & Gentle, made of 100% pure cotton. Perfect to use for applying astringents, removing makeup, applying lotions and creams. HYPOALLERGENIC: Super absorbent cotton balls that are safe to use on a baby's delicate skin LINT FREE: Ideal for cleaning and applying lotion, oil, powders and first aid ointments HOME USE: Multi-purpose for household needs like polishing silver and brass, furniture and shoes, or for crafts and hobbies 2 Pack (300 cotton balls in each bag)"}, {"name": "Gloaiidjonh Novelty Harajuku Women Crew Socks Solid Color Sweet Heart Print Cotton Hosiery", "product_information": {"Department": "Womens", "Manufacturer": "Gloaiidjonh", "ASIN": "B09LVGYL1Z"}, "brand": "Brand: Gloaiidjonh", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Gloaiidjonh", "full_description": "100% brand new and high quality Features: Japanese preppy style, ribbed knitted cuffs, vintage yellow socks, sweet 3D jacquard embossed floral patterns. Made of high quality cotton, soft, elasticity, anti-skidding, breathability and comfortability, good for all year wear. Long enough to cover your ankles. Elastic and enhanced cuffs hold socks comfortably in place; they will not dig into your shins. Suitable for many occasions: casual, daily, home, work, sports, party, school, office, outdoor, indoor, etc. Perfect matching for all your low cut shoes, boat shoes, loafers, sneakers, and so on. Great gift idea. 1 pair of socks only, other accessories demo in the picture are not included! Specification: Material: Cotton Color: Yellow Recommended Foot Size: 36-43 Optional Pattern: 1, 2, 3, 4, 5 Quantity: 1 pair(2pcs) Warm prompt: 1.Asian people size is 1 or 2 sizes smaller than European and American. 2.Please note that low temperature washed,do not bleach and place under the blazing sun for quite a long time. 3.As different measuring methods,it will occur 1-3 cm deviation about the items,please ensure that it is okay for you before ordering. 4.Because of different monitors and lamplight,the picture may not reflect the actual color of the item,really thank you for your kind understanding! Package includes: 1 pair(2pcs) x Socks(without retail package)", "pricing": "$4.93", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41MkZj4jr5L.jpg", "https://m.media-amazon.com/images/I/51dMd-Vp95L.jpg", "https://m.media-amazon.com/images/I/41oZ3MIBCDL.jpg", "https://m.media-amazon.com/images/I/41ZQeuLxr2L.jpg", "https://m.media-amazon.com/images/I/41PBgCoGC2L.jpg", "https://m.media-amazon.com/images/I/51Gkw9nVoXL.jpg", "https://m.media-amazon.com/images/I/419Kq-1uTrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Athletic Socks", "average_rating": "", "small_description": ["Japanese preppy style, ribbed knitted cuffs, vintage yellow socks, sweet 3D jacquard embossed floral patterns. ", "Made of high quality cotton, soft, elasticity, anti-skidding, breathability and comfortability, good for all year wear. ", "Long enough to cover your ankles. Elastic and enhanced cuffs hold socks comfortably in place; they will not dig into your shins. ", "Suitable for many occasions: casual, daily, home, work, sports, party, school, office, outdoor, indoor, etc. ", "Perfect matching for all your low cut shoes, boat shoes, loafers, sneakers, and so on. Great gift idea. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09LVFM7VH/ref=twister_B09LVG4KNC?_encoding=UTF8&psc=1", "value": "1", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/51D+8JgFUjL.jpg"}, {"is_selected": true, "url": null, "value": "2", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/41MkZj4jr5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVFVVZD/ref=twister_B09LVG4KNC?_encoding=UTF8&psc=1", "value": "3", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/41NjsRvzyFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVG52QN/ref=twister_B09LVG4KNC?_encoding=UTF8&psc=1", "value": "4", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/41XuZpYxAPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVD4Q33/ref=twister_B09LVG4KNC?_encoding=UTF8&psc=1", "value": "5", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/41EYki6P-zL.jpg"}]}, "seller_id": "AB8XOSH3SMY7V", "seller_name": "xloaer33frln", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09LVGYL1Z", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 55, "small_description_old": "Japanese preppy style, ribbed knitted cuffs, vintage yellow socks, sweet 3D jacquard embossed floral patterns. Made of high quality cotton, soft, elasticity, anti-skidding, breathability and comfortability, good for all year wear. Long enough to cover your ankles. Elastic and enhanced cuffs hold socks comfortably in place; they will not dig into your shins. Suitable for many occasions: casual, daily, home, work, sports, party, school, office, outdoor, indoor, etc. Perfect matching for all your low cut shoes, boat shoes, loafers, sneakers, and so on. Great gift idea."}, {"name": "JASON 6\" Men's Micro-serrated Mustache and Beard Trimming Scissors, Sharp and Precise Facial, Nose, Eyebrow and Hair Cutting Shears with Safety Flat Tips, Japanese 440C Stainless Steel", "product_information": {"Manufacturer": "\u200eJASON", "Part Number": "\u200eHuzi09-YS-Z.J", "Item Weight": "\u200e1.6 ounces", "Package Dimensions": "\u200e7.5 x 3.5 x 0.9 inches", "Size": "\u200e6 Inches", "Color": "\u200eSilver", "Style": "\u200eJapanese", "Material": "\u200eStainless Steel", "Blade Edge": "\u200eSerrated", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B0895PSD5P", "Customer Reviews": {"ratings_count": 15, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#379,330 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #74 in Mustache Scissors"], "Date First Available": "May 26, 2020"}, "brand": "Visit the JASON Store", "brand_url": "https://www.amazon.com/stores/JASONSCISSORS/page/28EF923A-2B5B-4363-AB05-81D549B39C8E?ref_=ast_bln", "full_description": "", "pricing": "$25.99", "list_price": "", "availability_quantity": 8, "availability_status": "Only 8 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31-cX31UvJL.jpg", "https://m.media-amazon.com/images/I/5108hAsRqjL.jpg", "https://m.media-amazon.com/images/I/51qAkGwv5JL.jpg", "https://m.media-amazon.com/images/I/51C-rES+PCL.jpg", "https://m.media-amazon.com/images/I/51bw72Z8P6L.jpg", "https://m.media-amazon.com/images/I/51UXt04jrlL.jpg", "https://m.media-amazon.com/images/I/412mp58u8NL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Men's \u203a Beard & Mustache Care \u203a Mustache Scissors", "average_rating": 4.1, "small_description": ["1 Year Worry-free product after sale service for JASON Beard Scissors. Just Contact Us If You Are Not Satisfied and We Will Offer 100% Satisfaction Solution for You.Buy with Confidence. Currently, this product comes with a huge discounted! ", "These beard scissors are made specifically for the beard and mustache. Traditional facial hair trimmer scissors have a hard time cutting coarse hair because the flat blades just push the hair out of the scissors. These blades are micro-serrated, meaning they are designed for coarser hair found in the beard and mustache. These sharp precision blades hold and cut hair with great ease ", "These superbly sharp, ergonomically designed hair/beard/mustache trimming scissors are made of japanese 440C stainless steel with hardness Rating reaching 60\u201362 for ultimate sharpness and durability ", "Superbly comfortable offset handles with slightly bent thumb, correctly balanced with an permanent rest, this mustache scissors helps provide maximum comfort to barber and bearded men. The hair beard trimmer can be used widely from hair cutting to mustache/beard grooming ", "PRECISE CUTTING: The only barber scissors designed as a perfect tool for precise cutting of mustache, beard, nose and facial hair. Take control over your facial hairs and wear the look you want. These scissors are a must have for every beardsman and mustache lover "], "total_reviews": 15, "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A3OMNCTV98OEBR", "seller_name": "JASON SCISSORS", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0895PSD5P", "category": "beauty", "query": "Hair Cutting Tools", "page": 77, "small_description_old": "About this item\n \n1 Year Worry-free product after sale service for JASON Beard Scissors. Just Contact Us If You Are Not Satisfied and We Will Offer 100% Satisfaction Solution for You.Buy with Confidence. Currently, this product comes with a huge discounted! These beard scissors are made specifically for the beard and mustache. Traditional facial hair trimmer scissors have a hard time cutting coarse hair because the flat blades just push the hair out of the scissors. These blades are micro-serrated, meaning they are designed for coarser hair found in the beard and mustache. These sharp precision blades hold and cut hair with great ease These superbly sharp, ergonomically designed hair/beard/mustache trimming scissors are made of japanese 440C stainless steel with hardness Rating reaching 60\u201362 for ultimate sharpness and durability Superbly comfortable offset handles with slightly bent thumb, correctly balanced with an permanent rest, this mustache scissors helps provide maximum comfort to barber and bearded men. The hair beard trimmer can be used widely from hair cutting to mustache/beard grooming PRECISE CUTTING: The only barber scissors designed as a perfect tool for precise cutting of mustache, beard, nose and facial hair. Take control over your facial hairs and wear the look you want. These scissors are a must have for every beardsman and mustache lover \n \u203a See more product details"}, {"name": "Foamma 3\" x 24\" x 72\" Mattress for RV with Water Resistant Organic Cotton Cover, Firm High Density Foam, USA Made, CertiPUR-US Certified Foam", "product_information": {"Product Dimensions": "72 x 24 x 3 inches", "Manufacturer": "KRJE Distributions, Inc.", "ASIN": "B09H3N5P74", "Best Sellers Rank": ["#1,617,899 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,280 in Mattresses"], "Date First Available": "September 25, 2021"}, "brand": "Visit the Foamma Store", "brand_url": "https://www.amazon.com/stores/Foamma/page/14145C77-FE5B-44F1-BC9E-2719ECA29E1E?ref_=ast_bln", "full_description": "Our High Density Mattress will ensure a fantastic night\u2019s sleep. We ensure that you can get the specific size you need for any bed. When ordering, make sure you combine the height of your bed frame, foundation, or adjustable bed base with the height of your mattress to know how tall your sleep system will be. Your Foamma High Densty Mattress will last for 7 to 10 years. Your Foamma High Densty Mattress will arrive to you compressed and rolled in a box. Once the package is received open immediately to ensure the foam retains its original size and form. Do not let the package remain unopened for longer than a week, as the foam could lose its shape. When opening use a ball point pen or a pencil, NOT a box cutter. Start with a small incision and break the seal from there. Please contact us before returning an item, as a 50% restocking fee may occur for all returned items. Items that are damaged, missing parts, not in the original condition, or have obvious signs of use for reasons not due to us will result in a 99% restocking fee.", "pricing": "$149.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41Sy7UkfNzL.jpg", "https://m.media-amazon.com/images/I/51l+P3IdibL.jpg", "https://m.media-amazon.com/images/I/51kyd1ZBoUL.jpg", "https://m.media-amazon.com/images/I/41mBotAxbpL.jpg", "https://m.media-amazon.com/images/I/31oaCyNb3DL.jpg", "https://m.media-amazon.com/images/I/512gRAgrVoL.jpg", "https://m.media-amazon.com/images/I/41lWlnYA8GL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Mattresses & Box Springs \u203a Mattresses", "average_rating": "", "small_description": ["Made in America: All our products are proudly made in the USA! ", "Luxuriously Comfortable: Our high density mattresses are made with an 3 inches of high density foam. This foam is firm and will provide you with firm support throughout the night. ", "Easy to Wash: The organic cotton cover is easy to remove and wash! Simply unzip your cover to remove it and wash it in your washing machine. ", "Custom Sizes: Don\u2019t see the size you need? Contact us and we can create a custom mattress to fit your needs! We offer a wide variety of foams and can work with you to get you the exact product you need. ", "CertiPUR-US Certified: Made without ozone depleting substances, mercury, lead, and other heavy metals; made without phthalates regulated by the Consumer Product Safety Commission; low VOC (Volatile Organic Compound) emissions for indoor air quality (less than 0.5 parts per million) "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "3\" Thick", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3M6X46/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "4\" Thick", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3MMB44/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "5\" Thick", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3MS5GG/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "6\" Thick", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3N4FLR/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "7\" Thick", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": true, "url": null, "value": "24\" x 72\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3M9HGW/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "28\" x 72\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3MC2DZ/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "28\" x 75\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3N7FZ9/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "30\" x 72\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3MPK2L/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "30\" x 75\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3M8NV5/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "34\" x 75\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3NCYZ3/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "36\" x 72\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3LZ4TQ/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "38\" x 75\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3LKHDV/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "48\" x 75\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H3MGFX7/ref=twister_B09H3M6XWD?_encoding=UTF8&psc=1", "value": "48\" x 80\"", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A2X01DMF6YHZON", "seller_name": "Foamma", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09H3N5P74", "category": "garden", "query": "Mattresses", "page": 229, "small_description_old": "About this item\n \nMade in America: All our products are proudly made in the USA! Luxuriously Comfortable: Our high density mattresses are made with an 3 inches of high density foam. This foam is firm and will provide you with firm support throughout the night. Easy to Wash: The organic cotton cover is easy to remove and wash! Simply unzip your cover to remove it and wash it in your washing machine. Custom Sizes: Don\u2019t see the size you need? Contact us and we can create a custom mattress to fit your needs! We offer a wide variety of foams and can work with you to get you the exact product you need. CertiPUR-US Certified: Made without ozone depleting substances, mercury, lead, and other heavy metals; made without phthalates regulated by the Consumer Product Safety Commission; low VOC (Volatile Organic Compound) emissions for indoor air quality (less than 0.5 parts per million)"}, {"name": "Vostoktech", "product_information": {"Brand": "\u200eVostoktech", "Manufacturer": "\u200eVostoktech", "ASIN": "\u200eB09S2ZQ49B", "Date First Available": "\u200eFebruary 9, 2022"}, "brand": "Brand: Vostoktech", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Vostoktech", "full_description": "Compatible: Passive Pencil P01 / Drawing tablet Xp-pen Star G640 / Deco 01 V2 / Deco Fun Number of pen tips: 20 pieces Easy to replace, the tip changer is not necessary. You can use tweezers or pliers or anything like that, and simply pull the tip directly outward, then tap it on the desk to loosen any residue and slide the new tip into place. Note: DO NOT press the pen too hard against or abuse the tablet so that the tips last longer. Unless crushed or frayed, no need to change it.", "pricing": "$15.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41tAy8X8ZtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computers & Tablets \u203a Tablets", "average_rating": "", "small_description": ["Compatible: Passive Pencil P01/ Drawing Tablet Xp-pen Star G640 / Deco 01 V2 / Deco Fun ", "Number of pen tips: 20 pieces ", "Easy to replace, the tip changer is not necessary. You can use tweezers or pliers or anything like that, and simply pull the tip directly outward, then tap it on the desk to loosen any residue and slide the new tip into place. ", "Note: DO NOT press the pen too hard against or abuse the tablet so that the tips last longer. Unless crushed or frayed, no need to change it. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2DHBOIXCHPHWG", "seller_name": "Vostoktech", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S2ZQ49B", "category": "electronics", "query": "Tablets", "page": 278, "small_description_old": "Compatible: Passive Pencil P01/ Drawing Tablet Xp-pen Star G640 / Deco 01 V2 / Deco Fun Number of pen tips: 20 pieces Easy to replace, the tip changer is not necessary. You can use tweezers or pliers or anything like that, and simply pull the tip directly outward, then tap it on the desk to loosen any residue and slide the new tip into place. Note: DO NOT press the pen too hard against or abuse the tablet so that the tips last longer. Unless crushed or frayed, no need to change it."}, {"name": "RACHEL Rachel Roy Jacquard Textured Oversized Throw - Silky Soft and Cozy Flannel Fleece, Blanket for Bed and Couch - Oversized Throw 60\" X 70\", Coconut Milk", "product_information": {"Product Dimensions": "15.6 x 10.6 x 5.9 inches", "Item Weight": "2.18 pounds", "Manufacturer": "JBL Trading LLC", "ASIN": "B08SKH3LTM", "Country of Origin": "China", "Item model number": "RRJAQ1B-110608ECO", "Customer Reviews": {"ratings_count": 14, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#746,691 in Home & Kitchen (See Top 100 in Home & Kitchen) #6,463 in Bed Throws"], "Fabric Type": "Microfiber", "Material Care Instructions": "Machine Wash", "Number of Pieces": "1", "Warranty Description": "30 Day Warranty Against Manufacturer Defects", "Batteries Required?": "No"}, "brand": "Visit the RACHEL Rachel Roy Store", "brand_url": "https://www.amazon.com/stores/RACHEL+Rachel+Roy/page/4A395058-A556-48F2-A4E2-F816F5B83C81?ref_=ast_bln", "full_description": "Jacquared textured pattern, velvety soft", "pricing": "$26.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41D2u8+8dvS.jpg", "https://m.media-amazon.com/images/I/51AB9MG3qRL.jpg", "https://m.media-amazon.com/images/I/41A3WnS0iRL.jpg", "https://m.media-amazon.com/images/I/41lSgLMzFaL.jpg", "https://m.media-amazon.com/images/I/51a1T2j1zRL.jpg", "https://m.media-amazon.com/images/I/51wf4Mg6WuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Blankets & Throws \u203a Throws", "average_rating": 4.5, "small_description": ["Reversible - velvet plush on both sides ", "LUXURIOUS TO THE TOUCH - This is an extra warm, cozy, and super soft blanket. Made using 100% polyester fleece fabric, leaving you with a happy, warm, and fuzzy feeling inside that you carry with you for the rest of the day. ", "MADE FOR ROYALTY - This extra soft and luxurious micro-plush fluffy blanket is beautiful and vibrant. It's lightweight and adds a velvet touch to your room decor. The warm blanket is also generously sized and easily fits a king-sized bed. ", "ATTENTION TO DETAIL - A lot of thoughtful care and attention goes into making our fluffy blankets. Each fuzzy blanket is made with no piping knife-edge finish on the side seams, so there is a clean, more streamlined feel when you touch them. "], "total_reviews": 14, "total_answered_questions": "", "model": "RRJAQ1B-110608ECO", "customization_options": {"Size": null, "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08SKF5TVQ/ref=twister_B094X5Q8M6?_encoding=UTF8&psc=1", "value": "Blush", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/41kNuqSjCyS.jpg"}, {"is_selected": true, "url": null, "value": "Coconut Milk", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/41D2u8+8dvS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SKD8LQ5/ref=twister_B094X5Q8M6?_encoding=UTF8&psc=1", "value": "Dark Lavender", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/51yMqXAhivL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SKHH5L5/ref=twister_B094X5Q8M6?_encoding=UTF8&psc=1", "value": "Flint Stone", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/41LG2DZPZIS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SKF5TVT/ref=twister_B094X5Q8M6?_encoding=UTF8&psc=1", "value": "Mineral", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/41FlKk0IDkS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SKHH5L6/ref=twister_B094X5Q8M6?_encoding=UTF8&psc=1", "value": "Nimbus Cloud", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/41qneWaNkYS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SKF3YWK/ref=twister_B094X5Q8M6?_encoding=UTF8&psc=1", "value": "White Sand", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/41cP+Nxk-6S.jpg"}]}, "seller_id": "A3E8ZQ3HMT7ONT", "seller_name": "Style Basics", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08SKH3LTM", "category": "garden", "query": "Throw Blankets", "page": 394, "small_description_old": "About this item Microfiber Reversible - velvet plush on both sides LUXURIOUS TO THE TOUCH - This is an extra warm, cozy, and super soft blanket. Made using 100% polyester fleece fabric, leaving you with a happy, warm, and fuzzy feeling inside that you carry with you for the rest of the day. MADE FOR ROYALTY - This extra soft and luxurious micro-plush fluffy blanket is beautiful and vibrant. It's lightweight and adds a velvet touch to your room decor. The warm blanket is also generously sized and easily fits a king-sized bed. ATTENTION TO DETAIL - A lot of thoughtful care and attention goes into making our fluffy blankets. Each fuzzy blanket is made with no piping knife-edge finish on the side seams, so there is a clean, more streamlined feel when you touch them."}, {"name": "C2G/Cables to Go 01851 Twinaxial Coupler", "product_information": {"Item Weight": "1.44 ounces", "Domestic Shipping": "Item can be shipped within U.S.", "International Shipping": "This item can be shipped to select countries outside of the U.S. Learn More", "ASIN": "B0002J1HOC", "Item model number": "01851", "Is Discontinued By Manufacturer": "No", "Date First Available": "October 2, 2005", "Manufacturer": "C2G", "Country of Origin": "Taiwan"}, "brand": "Visit the C2G Store", "brand_url": "https://www.amazon.com/stores/Cables+To+Go/page/FBDBB225-6542-460E-88A9-C318F7201E19?ref_=ast_bln", "full_description": "Attention AS/400 and System 3X shops! Whether it's Twinax male/female connectors, cable matchers, T-connectors, bulkheads or terminators, we have it. We also carry baluns, twinaxial cable assemblies and System 3X UTP star hubs.", "pricing": "$5.01", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41Z27tM6LaL.jpg", "https://m.media-amazon.com/images/I/51pC1iQsjVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Cables & Accessories \u203a Cables & Interconnects \u203a VGA Cables", "average_rating": "", "small_description": ["Use to extend a twinaxial connection. ", "Attention AS/400 and System 3X shops! Whether it's Twinax male/female connectors, cable matchers, T-connectors, bulkheads or terminators, we have it. We also carry baluns, twinaxial cable assemblies and System 3X UTP star hubs. "], "total_reviews": "", "total_answered_questions": "", "model": "01851", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0002J1HOC", "category": "electronics", "query": "HDMI Cables", "page": 358, "small_description_old": "About this item\n \nUse to extend a twinaxial connection. Attention AS/400 and System 3X shops! Whether it's Twinax male/female connectors, cable matchers, T-connectors, bulkheads or terminators, we have it. We also carry baluns, twinaxial cable assemblies and System 3X UTP star hubs."}, {"name": "Body Scrubber", "product_information": {"Manufacturer\n \u200f": "\u200e\n Lumin", "ASIN\n \u200f": "\u200e\n B091DMZNR4", "Best Sellers Rank": "#1,024,897 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#4,322 in Body Scrubs #5,187 in Body Scrubs & Treatments", "#4,322 in Body Scrubs": "", "#5,187 in Body Scrubs & Treatments": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Lumin Store", "brand_url": "https://www.amazon.com/stores/Premium+Mens+Skincare/page/F9E7E997-7246-49F6-8054-2D3DCE7F4F4E?ref_=ast_bln", "full_description": "Help wipe of the grime of the day by using this body scrubber after long, active days. The silicone will help remove dirt, oil, and pollutant build up and provide and extra boost to your body routine.", "pricing": "$16.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41d1Y9a9YfS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Body Scrubs", "average_rating": 5, "small_description": ["Helps with - dirt & oil buildup, deep cleansing, dead skin "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A2YWS7F246NXNA", "seller_name": "Lumin Skin", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B091DMZNR4", "category": "beauty", "query": "Scrubs & Body Treatments", "page": 35, "small_description_old": "Helps with - dirt & oil buildup, deep cleansing, dead skin"}, {"name": "LotFancy 70ml 2.4Oz Travel Bottles with Keychain,15pc Empty Plastic Carabiner Bottle, Clear Bottle, Squeeze Container for Hand Sanitizer, Lotion, Cosmetics, Leakproof, Refillable, 15 labels Included", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.12 x 8.07 x 2.95 inches; 8.82 Ounces", "Manufacturer\n \u200f": "\u200e\n LotFancy", "ASIN\n \u200f": "\u200e\n B08J3WFRBT", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#45,366 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#16 in Refillable Squeeze Bottles", "#16 in Refillable Squeeze Bottles": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the LotFancy Store", "brand_url": "https://www.amazon.com/stores/LotFancy/page/C620250B-7D00-492F-A301-ED6A8C772041?ref_=ast_bln", "full_description": "", "pricing": "$11.96", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41vLc57IEwL.jpg", "https://m.media-amazon.com/images/I/41Qd2tfV9SL.jpg", "https://m.media-amazon.com/images/I/41ZMAWT33eL.jpg", "https://m.media-amazon.com/images/I/41EV8M32vlL.jpg", "https://m.media-amazon.com/images/I/51eBS0fYtrL.jpg", "https://m.media-amazon.com/images/I/51rp7cbEwlL.jpg", "https://m.media-amazon.com/images/I/51jXqWqfOCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Refillable Containers \u203a Squeeze Bottles", "average_rating": 4.3, "small_description": ["PET MATERIAL: LotFancy Travel Bottles with Keychain are made of high-grade BPA Free transparent PET material, odorless, lightweight, durable, reusable, easy to squeeze and fill. ", "2.4OZ CAPACITY BOTTLES: 70ml bottle measure: 4.7 x 1.8\u201d, 2.4 oz capacity for your daily and travel needs. Convenient portable size. ", "LEAKPROOF DESIGN: Screw-on lid fits snugly to prevent contents from leaking. Leak-proof flip cap design for easy and clean dispensing. ", "WIDE APPLICATIONS:LotFancy Refillable Bottles can be used for hand sanitizer, toiletries, liquid or cream cosmetics, food condiments, sunscreen, shampoo, face wash, lotion. Suitable for travel, school, business trips, sports, outdoor activities. Use buckle carabiner to easily attach bottles to your keys, purse, bag and more. "], "total_reviews": 122, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08J3KWN41/ref=twister_B08J4DVBY1?_encoding=UTF8&psc=1", "value": "5 Packs", "price_string": "$6.88", "price": 6.88, "image": null}, {"is_selected": true, "url": null, "value": "15 Packs", "price_string": "$11.96", "price": 11.96, "image": null}]}, "seller_id": "A1XLIDN9XQ0PZA", "seller_name": "LotFancy", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08J3WFRBT", "category": "beauty", "query": "Refillable Containers", "page": 4, "small_description_old": "About this item PET MATERIAL: LotFancy Travel Bottles with Keychain are made of high-grade BPA Free transparent PET material, odorless, lightweight, durable, reusable, easy to squeeze and fill. 2.4OZ CAPACITY BOTTLES: 70ml bottle measure: 4.7 x 1.8\u201d, 2.4 oz capacity for your daily and travel needs. Convenient portable size. LABELS INCLUDED: Package includes 15 bottles, 15 carabiners and 15 labels. LEAKPROOF DESIGN: Screw-on lid fits snugly to prevent contents from leaking. Leak-proof flip cap design for easy and clean dispensing. WIDE APPLICATIONS:LotFancy Refillable Bottles can be used for hand sanitizer, toiletries, liquid or cream cosmetics, food condiments, sunscreen, shampoo, face wash, lotion. Suitable for travel, school, business trips, sports, outdoor activities. Use buckle carabiner to easily attach bottles to your keys, purse, bag and more."}, {"name": "Pediasure Grow & Gain with Immune Support, Kids Protein Shake, 27 Vitamins and Minerals, 7g Protein, Helps Kids Catch Up On Growth, Non-GMO, Gluten-Free, Chocolate, 8 Fl Oz, 16 Count", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 9.75 x 9.63 x 6.13 inches; 10.1 Pounds", "Manufacturer recommended age\n \u200f": "\u200e\n 0 - 1 years", "Item model number\n \u200f": "\u200e\n 67295", "Date First Available\n \u200f": "\u200e\n June 30, 2020", "Manufacturer\n \u200f": "\u200e\n AmazonUs/ABBN7", "ASIN\n \u200f": "\u200e\n B08BPTT8MX", "Best Sellers Rank": "#32,120 in Baby (See Top 100 in Baby)#64 in Baby & Toddler Nutritional Shakes", "#64 in Baby & Toddler Nutritional Shakes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Pediasure Store", "brand_url": "https://www.amazon.com/stores/PediaSure/page/9834766B-69A7-4456-A463-56DDA985B28E?ref_=ast_bln", "full_description": "PediaSure Grow & Gain with Immune Support* kids nutritional shakes are clinically proven\u2020 to help kids grow. Each shake has 7 key nutrients for immune support,* 27 essential vitamins and minerals, 7g of protein to help build muscles, and 32mg of DHA omega-3 for brain & eye development. PediaSure Grow & Gain is non-GMO,\u2021 gluten-free, has no artificial growth hormones,\u00a7 and is suitable for lactose intolerance. It\u2019s great for breakfast, in a lunch box, and as a snack. From the #1 pediatrician recommended brand. Not for children with galactosemia. * Nutrients include protein, vitamins A & D, zinc, and antioxidants (vitamins C & E and selenium). \u2020 Studied in children at risk for malnutrition. \u2021 Ingredients not genetically engineered. \u00a7 No significant difference has been shown between milk derived from rbST-treated and non-rbST-treated cows. \u2016In children ages 3-4 at nutritional risk (5th-25th weight-for-height percentiles), when given 2 servings per day and dietary counseling.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/513xQed-L7L.jpg", "https://m.media-amazon.com/images/I/51MivP-c9iL.jpg", "https://m.media-amazon.com/images/I/51bCUJf1+cL.jpg", "https://m.media-amazon.com/images/I/51eudaYGk1L.jpg", "https://m.media-amazon.com/images/I/51Ui3kBdW4L.jpg", "https://m.media-amazon.com/images/I/61gFNUBl4cL.jpg", "https://m.media-amazon.com/images/I/516tyig8YNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Baby Products \u203a Feeding \u203a Baby Foods \u203a Beverages \u203a Nutritional Shakes", "average_rating": 4.8, "small_description": ["KIDS NUTRITIONAL SHAKES FOR GROWTH: Designed to complement a diet for kids who are behind on growth and need to gain weight ", "7 KEY NUTRIENTS FOR IMMUNE SUPPORT: Nutrition to help support kids\u2019 immune systems with protein, zinc, vitamins A & D, and antioxidants (vitamins C & E and selenium) ", "COMPLETE, BALANCED NUTRITION: A kids nutritional shake with 27 essential vitamins & minerals, 7g protein; it\u2019s also non-GMO, gluten-free, has no artificial growth hormones and has 32mg of DHA omega-3 ", "CLINICALLY PROVEN GROWTH: PediaSure Grow & Gain helps kids catch up on growth in just 8 weeks ", "Provides a good source of protein and has vitamins and minerals for children ages 2-13 ", "TASTY KIDS SNACK: PediaSure Grow & Gain is great for breakfast, in a lunch box, and as an after-school or anytime snack "], "total_reviews": 888, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08BPTT8MX", "category": "grocery", "query": "Food & Beverage Gifts", "page": 190, "small_description_old": "About this item KIDS NUTRITIONAL SHAKES FOR GROWTH: Designed to complement a diet for kids who are behind on growth and need to gain weight 7 KEY NUTRIENTS FOR IMMUNE SUPPORT: Nutrition to help support kids\u2019 immune systems with protein, zinc, vitamins A & D, and antioxidants (vitamins C & E and selenium) COMPLETE, BALANCED NUTRITION: A kids nutritional shake with 27 essential vitamins & minerals, 7g protein; it\u2019s also non-GMO, gluten-free, has no artificial growth hormones and has 32mg of DHA omega-3 CLINICALLY PROVEN GROWTH: PediaSure Grow & Gain helps kids catch up on growth in just 8 weeks Provides a good source of protein and has vitamins and minerals for children ages 2-13 TASTY KIDS SNACK: PediaSure Grow & Gain is great for breakfast, in a lunch box, and as an after-school or anytime snack"}, {"name": "Full Protection Silicone Cover VR Headset for Quest 2 VR Premium Silicone Front Cover Controller Cover Grips Accessories Anti-Throw Sweatproof (White)", "product_information": {"Package Dimensions": "6.97 x 6.93 x 2.56 inches", "Item Weight": "5.3 ounces", "ASIN": "B091YV7CRB", "Customer Reviews": {"ratings_count": 8, "stars": "1.8 out of 5 stars"}, "Best Sellers Rank": ["#138,405 in Video Games (See Top 100 in Video Games) #2,054 in PC Virtual Reality Headsets"], "Date First Available": "April 7, 2021", "Manufacturer": "VRUIVR"}, "brand": "Brand: VRUIVR", "brand_url": "https://www.amazon.com/VRUIVR/b/ref=bl_dp_s_web_23590993011?ie=UTF8&node=23590993011&field-lbr_brands_browse-bin=VRUIVR", "full_description": "Full Protection Silicone Cover VR Headset for Quest 2 VR Premium Silicone Front Cover Controller Cover Grips Accessories Anti-Throw Sweat-proof", "pricing": "$16.99", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/317jS8qw7vL.jpg", "https://m.media-amazon.com/images/I/316c7MtYqkL.jpg", "https://m.media-amazon.com/images/I/31N+J22SKOL.jpg", "https://m.media-amazon.com/images/I/31uXhbAxZsL.jpg", "https://m.media-amazon.com/images/I/31FkG5JpREL.jpg", "https://m.media-amazon.com/images/I/316c7MtYqkL.jpg", "https://m.media-amazon.com/images/I/31bD6-lruDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a PC \u203a Virtual Reality \u203a Headsets", "average_rating": 1.8, "small_description": ["Specially designed this touch controller grip cover face cover mask for Quest 2, Larger area of non-slip design increases friction, increases airflow, and effectively removes sweat. ", "Made of Soft Silicone,Anti-sweat, increase the experience and won't have sweat residue left .Keeps your Oculus Quest 2 Accessories sweat-proof, making your long VR sessions much more comfortable and more sanitary to share with family or friends. ", "Provide full protection for your Oculus Quest 2 controllers from impacting, scratching, and soiling. The knuckle strap is made of durable PU Leather which prevents the controllers from being thrown out while playing games. ", "Keep your VR headset clean and resistant to friction, no longer worry about your favorite Oculus Quest 2 headset being scratched and soiled by other objects, ", "Package Include: Touch Controller Grip Cover*1pair, Knuckle Strap*1pair, Joy sticker cover*1pair. "], "total_reviews": 8, "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A3NZUNA7QJJ1FI", "seller_name": "VRUIVR", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B091YV7CRB", "category": "electronics", "query": "Virtual Reality", "page": 331, "small_description_old": "About this item\n \nSpecially designed this touch controller grip cover face cover mask for Quest 2, Larger area of non-slip design increases friction, increases airflow, and effectively removes sweat. Made of Soft Silicone,Anti-sweat, increase the experience and won't have sweat residue left .Keeps your Oculus Quest 2 Accessories sweat-proof, making your long VR sessions much more comfortable and more sanitary to share with family or friends. Provide full protection for your Oculus Quest 2 controllers from impacting, scratching, and soiling. The knuckle strap is made of durable PU Leather which prevents the controllers from being thrown out while playing games. Keep your VR headset clean and resistant to friction, no longer worry about your favorite Oculus Quest 2 headset being scratched and soiled by other objects, Package Include: Touch Controller Grip Cover*1pair, Knuckle Strap*1pair, Joy sticker cover*1pair."}, {"name": "Shaving Mirror with 10X Magnification, LED Bathroom Mirrors Wall Mounted, 360\u00b0Swivel and Extendable, Chrome, Double Source, 7inch", "product_information": {"Manufacturer": "Mirror-MRJ", "ASIN": "B08DK9WBQL", "Best Sellers Rank": ["#1,195,745 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #5,087 in Personal Makeup Mirrors"], "Date First Available": "July 24, 2020"}, "brand": "Brand: Mirror-MRJ", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Mirror-MRJ", "full_description": "Our aim is to provide you with quality products and satisfactory service.. this double-sided bathroom magnifying mirror is portable, convenience, and wide applicability. For men to shave, for women to makeup.You deserve better yourself! 7\" LED Touch Screen Adjustable Light Wall Mounted Makeup Mirror This vanity mirror with lights uses LED lighting to provide a clear look at your skin and make-up Vanity mirror is built in 18 pcs Leds ,long press adjust lights brightness,allow you to makeup in the dark or poorly light areas. The high definition, contributing natural and soft, bright but not dazzling to protect your eyes. 10X magnification mirror can zoom in your facial features ,helping you to see clearly your facial features. Material: Chrome + Glass Item Weight: 0.9 Kg/1.98 lbs Package size: 35.5*23.5*8.5cm(L\u00d7W\u00d7H)/13.77*9.25*3.35 inch Package Contents: 1 x LED Make Up Mirror 1 x USB Cable 1 x Pack of Fixing Screws 1 x Manual 1 x Dishcloth 360\u00b0 Rotation and Folding Design No dead ends,all-around rotation,exquisite beauty.Perfect for anyone tight on vanity counter space, this mirror is designed with an extending arm that you can smoothly extend and fold. Spin the mirror to obtain the best angle for different makeup needs. Help You Make Better Use Of Vanity Mirror 1.Please use the 10 X mirror within a distance of 4\" (10 cm) to avoid distortion. 2.There is a cleaning cloth in the package (the color is not fixed) 3.It is recommended that you use a rechargeable battery,This product does not include batteries. It USES 3 units of size AAA batteries", "pricing": "$69.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/412gZk2banL.jpg", "https://m.media-amazon.com/images/I/51WK8vKpFBL.jpg", "https://m.media-amazon.com/images/I/515uwAIbjHL.jpg", "https://m.media-amazon.com/images/I/51o-RkVIOUL.jpg", "https://m.media-amazon.com/images/I/419TlIRCiDL.jpg", "https://m.media-amazon.com/images/I/51K6JhOdbXL.jpg", "https://m.media-amazon.com/images/I/51tLIvaBElL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Mirrors \u203a Makeup Mirrors", "average_rating": "", "small_description": ["\u25b6\u3010Touch Sensor LED Mirror\u3011Led lights on/off controlled by the touch sensor switch and long press can adjust lights brightness.Our Vanity mirror is built in 18 pcs Leds,allow you makeup in the dark or poorly lit areas. Ideal for applying in makeup such as wearing contact lenses, eyebrow tweezing, make-ups, haircut, and shaving, etc ", "\u25b6\u30101X/10X Magnification Double Side Mirror\u30111X / 10X magnification mirror can zoom in your facial features ,helping you to see clearly your facial features and tiniest details. This mirror is specially suitable for eye makeup, such as eyeliner, eyebrows. It helps make-up to perfection with each detail taken care of. ", "\u25b6\u3010360\u00b0 Swivel Extendable makeup mirror\u3011Perfect for anyone tight on vanity counter space, this mirror is designed with an extending arm that you can smoothly extend and fold. Spin the mirror to obtain the best angle for different makeup needs. ", "\u25b6\u3010Broad Function Vanity cosmetic mirror\u3011Chrome finish, rustless, anticorrosive, smooth bright and durable with aesthetic feeling fits any d\u00e9cor, would be suitable for home, hotel, spas and bathroom, etc. The optimal used distance with 10X wall mirror not exceeding 4 inch. ", "\u25b6\u3010Dual Power Supply Mode magnifying mirror\u3011Operated by USB cable supply or 3* AAA batteries.( battery not included, USB cable included, pls noted the mirror can't store power by itself).(After inserting the rechargeable battery, you can use the USB cable to charge). "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A14WBF8BZTCH3Z", "seller_name": "Mirror-MRJ", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08DK9WBQL", "category": "beauty", "query": "Mirrors", "page": 178, "small_description_old": "About this item\n \n\u25b6\u3010Touch Sensor LED Mirror\u3011Led lights on/off controlled by the touch sensor switch and long press can adjust lights brightness.Our Vanity mirror is built in 18 pcs Leds,allow you makeup in the dark or poorly lit areas. Ideal for applying in makeup such as wearing contact lenses, eyebrow tweezing, make-ups, haircut, and shaving, etc \u25b6\u30101X/10X Magnification Double Side Mirror\u30111X / 10X magnification mirror can zoom in your facial features ,helping you to see clearly your facial features and tiniest details. This mirror is specially suitable for eye makeup, such as eyeliner, eyebrows. It helps make-up to perfection with each detail taken care of. \u25b6\u3010360\u00b0 Swivel Extendable makeup mirror\u3011Perfect for anyone tight on vanity counter space, this mirror is designed with an extending arm that you can smoothly extend and fold. Spin the mirror to obtain the best angle for different makeup needs. \u25b6\u3010Broad Function Vanity cosmetic mirror\u3011Chrome finish, rustless, anticorrosive, smooth bright and durable with aesthetic feeling fits any d\u00e9cor, would be suitable for home, hotel, spas and bathroom, etc. The optimal used distance with 10X wall mirror not exceeding 4 inch. \u25b6\u3010Dual Power Supply Mode magnifying mirror\u3011Operated by USB cable supply or 3* AAA batteries.( battery not included, USB cable included, pls noted the mirror can't store power by itself).(After inserting the rechargeable battery, you can use the USB cable to charge)."}, {"name": "JIMITI Breathable Dots Thin Shallow Mouth Trendy Short Socks Flower Mesh Boat Socks Hosiery(B)", "product_information": {"Department": "Womens", "Manufacturer": "JIMITI", "ASIN": "B09682D2T6", "Fabric Type": "Polyester,Cotton,Mesh"}, "brand": "Brand: JIMITI", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JIMITI", "full_description": "Gender: WomenType: SockPackage: 1pairs socksMaterial: polyester cottonColor: Purple/white", "pricing": "$6.39", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41cxzeCMTgS.jpg", "https://m.media-amazon.com/images/I/41hcrBNeJ6S.jpg", "https://m.media-amazon.com/images/I/51JAiVd12HS.jpg", "https://m.media-amazon.com/images/I/415jYPlP+WS.jpg", "https://m.media-amazon.com/images/I/41XFm3CGfYS.jpg", "https://m.media-amazon.com/images/I/51y2HnUGCaS.jpg", "https://m.media-amazon.com/images/I/410ZWiiP7nS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Socks & Hosiery \u203a Socks \u203a No Show & Liner Socks", "average_rating": "", "small_description": ["Polyester,Cotton,Mesh ", "Type: Sock ", "Material: polyester cotton ", "Color: Purple/white ", "Gender: Women ", "Package: 1pairs socks "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09681CL69/ref=twister_B0967YV7QY?_encoding=UTF8&psc=1", "value": "A", "price_string": "$6.39", "price": 6.39, "image": null}, {"is_selected": true, "url": null, "value": "B", "price_string": "$6.39", "price": 6.39, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096812H67/ref=twister_B0967YV7QY?_encoding=UTF8&psc=1", "value": "C", "price_string": "$6.39", "price": 6.39, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0967ZSBZW/ref=twister_B0967YV7QY?_encoding=UTF8&psc=1", "value": "D", "price_string": "$6.39", "price": 6.39, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0967Z9711/ref=twister_B0967YV7QY?_encoding=UTF8&psc=1", "value": "E", "price_string": "$6.39", "price": 6.39, "image": null}]}, "seller_id": "A2C1XARGINQ58S", "seller_name": "GuangZhouDuShaoMaoYiYouXianGong", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09682D2T6", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 62, "small_description_old": "Polyester,Cotton,Mesh Type: Sock Material: polyester cotton Color: Purple/white Gender: Women Package: 1pairs socks"}, {"name": "Fun Costumes Peppermint Candy Ugly Christmas Sweater", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 14.49 x 11 x 1 inches; 11.99 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 17, 2020", "Manufacturer\n \u200f": "\u200e\n Fun Costumes", "ASIN\n \u200f": "\u200e\n B08L9V6VRP", "Best Sellers Rank": "#2,529,684 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#151 in Women's Novelty Sweaters #1,519,259 in Women's Fashion", "#151 in Women's Novelty Sweaters": "", "#1,519,259 in Women's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Fun Costumes Store", "brand_url": "https://www.amazon.com/stores/FunCostumes/page/8CFF703B-5B5B-4644-A824-226B9A89307B?ref_=ast_bln", "full_description": "This is a\u00a0Peppermint Candy Ugly Christmas Sweater. - Sweater", "pricing": "$39.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/4155eBdBUaL.jpg", "https://m.media-amazon.com/images/I/51HX1hF36IS.jpg", "https://m.media-amazon.com/images/I/41NvhMTdVMS.jpg", "https://m.media-amazon.com/images/I/41cKK9eeGMS.jpg", "https://m.media-amazon.com/images/I/41XK-WLLuSS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men", "average_rating": 5, "small_description": ["Size: X-Small ", "55% cotton, 45% acrylic ", "Rib-knit sleeve cuffs, neck band & waistband ", "Knitted-in graphics ", "Exclusive "], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B08L9V6VRP"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B08L9VG1Q4"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B08L9SFBXV"}, {"is_selected": false, "is_available": true, "value": "2X", "asin": "B08L9S4T2F"}, {"is_selected": false, "is_available": true, "value": "3X", "asin": "B08L9XDS3D"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08L9SFBXV", "category": "fashion", "query": "Men's Sweaters", "page": 174, "small_description_old": "Size: X-Small 55% cotton, 45% acrylic Rib-knit sleeve cuffs, neck band & waistband Knitted-in graphics Exclusive"}, {"name": "Xiaoyztan 10Pcs 1W 8Ohm Round Internal Magnet Mini Loudspeaker MP3 MP4 Player Speaker", "product_information": {"Package Dimensions": "5 x 4 x 0.7 inches", "Item Weight": "0.212 ounces", "ASIN": "B07FMR5JGX", "Item model number": "6543881668", "Customer Reviews": {"ratings_count": 147, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#25 in Speaker Repair Products"], "Is Discontinued By Manufacturer": "No", "Date First Available": "July 16, 2018", "Manufacturer": "Yootop"}, "brand": "Visit the Xiaoyztan Store", "brand_url": "https://www.amazon.com/stores/Xiaoyztan/page/19B0931C-CB10-4AC3-A085-3B0E73C27C5E?ref_=ast_bln", "full_description": "", "pricing": "$10.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51lBI-n5y4L.jpg", "https://m.media-amazon.com/images/I/3193cshebML.jpg", "https://m.media-amazon.com/images/I/41FarTx0KZL.jpg", "https://m.media-amazon.com/images/I/41UAcuN06SL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Speaker Repair", "average_rating": 4.4, "small_description": ["\u2776PACKAGE - 10 x 8Ohm Mini Round Internal Magnet Loudspeaker, 28mm Dia. ", "\u2777MATERIAL - With iron shell, single paper cone and ferrite magnets. ", "\u2778CONSTRUCTION - Mini Loudspeaker is designed with internal magnetic type, easy to install. ", "\u2779APPLICATION - Suit for any small audio project where you need an 8 \u03a9 impedance and will be using 1W. ", "\u277aNOTICE - We are gradually changing the product brand name to \"Xiaoyztan\", due to different shipment batches, you may receive our old brand labels. Please don't worry and just identify the seller \"Brisky Top\". "], "total_reviews": 147, "total_answered_questions": "", "model": "6543881668", "customization_options": "", "seller_id": "A3UAIR0DYVQQPY", "seller_name": "Brisky Top", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07FMR5JGX", "category": "electronics", "query": "Speaker", "page": 60, "small_description_old": "About this item\n \n\u2776PACKAGE - 10 x 8Ohm Mini Round Internal Magnet Loudspeaker, 28mm Dia. \u2777MATERIAL - With iron shell, single paper cone and ferrite magnets. \u2778CONSTRUCTION - Mini Loudspeaker is designed with internal magnetic type, easy to install. \u2779APPLICATION - Suit for any small audio project where you need an 8 \u03a9 impedance and will be using 1W. \u277aNOTICE - We are gradually changing the product brand name to \"Xiaoyztan\", due to different shipment batches, you may receive our old brand labels. Please don't worry and just identify the seller \"Brisky Top\"."}, {"name": "Banana Boat Deep Tanning Spray with Coconut Oil SPF 4, 8 Ounces each (Value Pack of 5)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 7.13 x 2.5 x 1.88 inches; 2.63 Pounds", "Item model number\n \u200f": "\u200e\n 079656000252-5a", "Date First Available\n \u200f": "\u200e\n July 11, 2016", "Manufacturer\n \u200f": "\u200e\n Banana Boat", "ASIN\n \u200f": "\u200e\n B00IG0RDNI", "Best Sellers Rank": "#163,153 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#221 in Tanning Oils & Lotions", "#221 in Tanning Oils & Lotions": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Banana Boat", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Banana+Boat", "full_description": "Banana Boat Deep Tanning Spray SPF 4, 8 Ounces each (Value Pack of 5). Apply generously before worshipping the sun for skin so rich, dark and silky you can\u2019t help showing it off.", "pricing": "$38.14", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41JKp1rxCmL.jpg", "https://m.media-amazon.com/images/I/41JKp1rxCmL.jpg", "https://m.media-amazon.com/images/I/31wThWamcGL.jpg", "https://m.media-amazon.com/images/I/41G2Ydqkc2S.jpg", "https://m.media-amazon.com/images/I/31wuzJ4mZ1L.jpg", "https://m.media-amazon.com/images/I/316JLd3G4AL.jpg", "https://m.media-amazon.com/images/I/31NMpQPbfbL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Sunscreens & Tanning Products \u203a Tanning Oils & Lotions", "average_rating": 4.8, "small_description": ["Banana Boat Deep Tanning Spray SPF 4, 8 Ounces each (Value Pack of 5) "], "total_reviews": 82, "total_answered_questions": "", "customization_options": "", "seller_id": "ASEVS99O6FS73", "seller_name": "Pharmapacks_", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00IG0RDNI", "category": "beauty", "query": "Sunscreens & Tanning Products", "page": 4, "small_description_old": "About this item Banana Boat Deep Tanning Spray SPF 4, 8 Ounces each (Value Pack of 5)"}, {"name": "THANN Aromatic Wood Aromatherapy Shampoo and Conditioner with Organic Olive Oil, Organic Grape Oil and Coix Extract, Organic Jojoba Oil, Organic Corn Silk Extract and Wheat Protein - Set B.", "product_information": {"Manufacturer\n \u200f": "\u200e\n THANN", "ASIN\n \u200f": "\u200e\n B08Q42DTN1", "Best Sellers Rank": "#528,636 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#4,352 in Shampoo & Conditioner Sets", "#4,352 in Shampoo & Conditioner Sets": ""}, "brand": "Brand: THANN", "brand_url": "https://www.amazon.com/THANN/b/ref=bl_dp_s_web_20687117011?ie=UTF8&node=20687117011&field-lbr_brands_browse-bin=THANN", "full_description": "THANN Aromatic Wood Aromatherapy Shampoo Detoxifying Formula: Enriches with nutrients from plant extracts and essential oils to detoxify hair and scalp leaving them revitalised and thoroughly cleansed. Organic olive oil nourishes and protects against heat damage. Organic grape oil contains emollients, antioxidants and nutrients that are essential to the growth of healthy hair. Coix extract helps restore strength and shine. THANN Aromatic Wood Aromatherapy Conditioner: A precious blend of plant-based conditioner helps to repair, restore and strengthen hair. Organic olive and organic jojoba oils provide nourishment for smooth and frizz free hair. Organic corn silk extract and wheat protein strengthen hair shaft leaving hair soft and shiny. Sandalwood and nutmeg essential oils clarify the hair and have antiseptic property.", "pricing": "$155.70", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41fxT4xLXAL.jpg", "https://m.media-amazon.com/images/I/41fxT4xLXAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Shampoo & Conditioner Sets", "average_rating": "", "small_description": ["Set consists of: THANN Aromatic Wood Aromatherapy Shampoo Detoxifying Formula 250 ml x 2. THANN Aromatic Wood Aromatherapy Conditioner 200 g x 2. ", "THANN Aromatic Wood Aromatherapy Shampoo Detoxifying Formula: Enriches with nutrients from plant extracts and essential oils to detoxify hair and scalp leaving them revitalised and thoroughly cleansed. Organic olive oil nourishes and protects against heat damage. Organic grape oil contains emollients, antioxidants and nutrients that are essential to the growth of healthy hair. Coix extract helps restore strength and shine. ", "THANN Aromatic Wood Aromatherapy Conditioner: A precious blend of plant-based conditioner helps to repair, restore and strengthen hair. Organic olive and organic jojoba oils provide nourishment for smooth and frizz free hair. Organic corn silk extract and wheat protein strengthen hair shaft leaving hair soft and shiny. Sandalwood and nutmeg essential oils clarify the hair and have antiseptic property. ", "Dermatologically tested, No artificial colour, Paraben free, Mineral oil free. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3TOTVX97MK87T", "seller_name": "2SKY Shop", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08Q42DTN1", "category": "beauty", "query": "Shampoo & Conditioner", "page": 200, "small_description_old": "About this item Set consists of: THANN Aromatic Wood Aromatherapy Shampoo Detoxifying Formula 250 ml x 2. THANN Aromatic Wood Aromatherapy Conditioner 200 g x 2. THANN Aromatic Wood Aromatherapy Shampoo Detoxifying Formula: Enriches with nutrients from plant extracts and essential oils to detoxify hair and scalp leaving them revitalised and thoroughly cleansed. Organic olive oil nourishes and protects against heat damage. Organic grape oil contains emollients, antioxidants and nutrients that are essential to the growth of healthy hair. Coix extract helps restore strength and shine. THANN Aromatic Wood Aromatherapy Conditioner: A precious blend of plant-based conditioner helps to repair, restore and strengthen hair. Organic olive and organic jojoba oils provide nourishment for smooth and frizz free hair. Organic corn silk extract and wheat protein strengthen hair shaft leaving hair soft and shiny. Sandalwood and nutmeg essential oils clarify the hair and have antiseptic property. Dermatologically tested, No artificial colour, Paraben free, Mineral oil free."}, {"name": "Tidewater Men's Dockside Sandals 10", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.9 x 8.7 x 2.1 inches; 7.2 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n June 28, 2019", "ASIN\n \u200f": "\u200e\n B07N7XBN4S", "Best Sellers Rank": "#4,328,001 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#7,946 in Men's Sandals", "#7,946 in Men's Sandals": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Tidewater Store", "brand_url": "https://www.amazon.com/stores/Keystone+Holiday+Decor+-+Official+Store/page/BDB7CA8E-0C8E-4E8B-ABC8-30A1F8741244?ref_=ast_bln", "full_description": "", "pricing": "$25.00", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41T0dRd2c1L.jpg", "https://m.media-amazon.com/images/I/41O2FZVUb0L.jpg", "https://m.media-amazon.com/images/I/31V7sP-W1fL.jpg", "https://m.media-amazon.com/images/I/41LgJrmNidL.jpg", "https://m.media-amazon.com/images/I/31fuF8wdheL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Sandals", "average_rating": 5, "small_description": [""], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "ALZBVV6I6RM96", "seller_name": "Jasper's Gift Store", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07N7XBN4S", "category": "fashion", "query": "Men's Sandals", "page": 115, "small_description_old": ""}, {"name": "Charme Princesse Wireless Rotary Permanent Makeup Pen with 10pcs 1R/1P Needles Digital Screen Tattoo Machine For Eyebrows, Eyeliners, Lips and Small Tattoo", "product_information": {"ASIN\n \u200f": "\u200e\n B08CV24121", "Best Sellers Rank": "#412,363 in Health & Household (See Top 100 in Health & Household)#614 in Tattoo Machines", "#614 in Tattoo Machines": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Charme Princesse Store", "brand_url": "https://www.amazon.com/stores/PermanentMakeupSupplies/page/B3767B51-0A3A-4323-BB65-C1B824889289?ref_=ast_bln", "full_description": "Feature: 1.New design, easy to control and cooperation 2.Low noise,strong and stable to work 3.3 Levels Speed adjustment Micropigmentation machine , needle length can be adjustable too. 4.Can wireless using Specifications: Material:Aluminium Alloy Color: Rose red Adapter voltage: AC: 100V/240V,DC: 4.3V 1A Speed: 25000-35000 rpm Pen Length(appr.): 14.5cm Function: Eyebrow, Eyeliner, Lip,hairline,MTS and small-size Tattoo Package Includes: 1 x Tattoo Permanent Makeup Machine Pen 1 X Adapter 1 x Black Package Box10 x 1R/1P Cartridge Needles", "pricing": "$50.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41hiamFZSsL.jpg", "https://m.media-amazon.com/images/I/41xWWp-2ORL.jpg", "https://m.media-amazon.com/images/I/319YfOtvxJL.jpg", "https://m.media-amazon.com/images/I/31LR-HHUXAL.jpg", "https://m.media-amazon.com/images/I/31YYYSU4gIL.jpg", "https://m.media-amazon.com/images/I/41hZUtwojHL.jpg", "https://m.media-amazon.com/images/I/51S9RKhGSrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Piercing & Tattoo Supplies \u203a Tattoo Supplies \u203a Tattoo Machines", "average_rating": 4.8, "small_description": ["Multi-Functions: This permanent makeup pen provides different functions, such as eyebrow, eyeliner, lip, MTS,even small tattoo. ", "Digital Display: Permanent Makeup Machine Pen Device with digital screen. The operation speed level can be showed on the screen,3 Levels Speed can adjustable. ", "Individual Package: Each permanent makeup needles adopt individual packed and Pre-sterilized to keep the needles clean to avoid infection. ", "EN51 Neeldes: Includes 10psc 1R/1P Tattoo Needles ", "100% Satisfaction Guarantee: If you have any questions about our products, please feel free to contact us. We will do our best to meet your requirements and solve your problem quickly and efficiently. "], "total_reviews": 6, "total_answered_questions": "", "customization_options": "", "seller_id": "A22KYQL8ZANKOJ", "seller_name": "Charme Princesse", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08CV24121", "category": "beauty", "query": "Lips Makeup", "page": 167, "small_description_old": "Multi-Functions: This permanent makeup pen provides different functions, such as eyebrow, eyeliner, lip, MTS,even small tattoo. Digital Display: Permanent Makeup Machine Pen Device with digital screen. The operation speed level can be showed on the screen,3 Levels Speed can adjustable. Individual Package: Each permanent makeup needles adopt individual packed and Pre-sterilized to keep the needles clean to avoid infection. EN51 Neeldes: Includes 10psc 1R/1P Tattoo Needles 100% Satisfaction Guarantee: If you have any questions about our products, please feel free to contact us. We will do our best to meet your requirements and solve your problem quickly and efficiently."}, {"name": "Johnny\u2019s Parmesan Garlic Seasoning 5oz (Pack of 6)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 5.5 x 4.2 x 7.1 inches; 1.88 Pounds", "UPC\n \u200f": "\u200e\n 070381100606", "Manufacturer\n \u200f": "\u200e\n Johnny's", "ASIN\n \u200f": "\u200e\n B000V53HHC", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#131,060 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#272 in Garlic Powder & Seasonings", "#272 in Garlic Powder & Seasonings": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Johnny's Store", "brand_url": "https://www.amazon.com/stores/JohnnysFineFoods/page/E7440058-11C3-4567-AC63-4E007D24D3AA?ref_=ast_bln", "full_description": "Johnny's great caesar, garlic spread and seasoning, 5-ounce bottles (pack of 6) lets you make garlic bread, dressings, dip. Shake over meat, poultry, pasta, spaghetti, pizza, seafood and salad. Use on your favorite dish to add a wonderful garlic flavor.", "pricing": "$36.06", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41j9us2G5gL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Herbs, Spices & Seasonings \u203a Single Herbs & Spices \u203a Garlic", "average_rating": 4.8, "small_description": ["Pack of six, 5-ounce bottles (total of 30-ounces) ", "Shake over meat, poultry, pasta, spaghetti, pizza, seafood and salad ", "Use on your favorite dish to add a wonderful garlic flavor ", "Lets you make garlic bread, dressings, dip "], "total_reviews": 17, "total_answered_questions": "", "customization_options": "", "seller_id": "A2RGFKXCRD8KRQ", "seller_name": "Sue's Herbs And Spices LLC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B000V53HHC", "category": "grocery", "query": "Meat & Seafood", "page": 369, "small_description_old": "About this item Pack of six, 5-ounce bottles (total of 30-ounces) Shake over meat, poultry, pasta, spaghetti, pizza, seafood and salad Use on your favorite dish to add a wonderful garlic flavor Lets you make garlic bread, dressings, dip"}, {"name": "WENKOMG1 Men's Long Sleeve Undershirt with Mask Turtleneck Hooded T-Shirt Solid Color Workout Tops Zipper Side Slit Shirts Slim Fit Sweatshirt Spring/Summer Tee Shirts(Gray,)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 19.69 x 19.69 x 19.69 inches; 11.29 Ounces", "Item model number\n \u200f": "\u200e\n WENKOMG1-shirt-N0.1807", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 14, 2022", "Manufacturer\n \u200f": "\u200e\n WENKOMG1", "ASIN\n \u200f": "\u200e\n B09QGK5XHZ", "Country of Origin\n \u200f": "\u200e\n USA", "": ""}, "brand": "Brand: WENKOMG1", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=WENKOMG1", "full_description": "undershirts mens tshirts mens tee shirts tees long sleeve tee shirts for women men's t-shirts tee shirts mens graphic tees for women band tees for women white undershirts men girls' tops, tees & blouses tee shirt dress for women t-shirts big and tall shirts for men tshirts white tee shirts for women golf tees mens big and tall shirts mens shirts true classic tees men gilden tee shirts mens womens graphic tees golf glove womens long sleeve tee shirt white shirts for men t shirts for men pack t shirts for men tshirt men t shirts tee shirts mens v neck undershirts mens men's t-shirts lingerie for men mens tank tops undershirt mens t shirt mens tshirts men's undershirts mens underwear briefs under shirt for men long sleeve undershirt for women v neck t shirts men undershirts for men pack mens undershirts mens t shirts tshirts t shirt t-shirts t shirts t-shirts for men white undershirts men shirts for men christmas jumper baby jumper jumper for baby jumper jumpers for women womens blouses women\u2019s fashion blouses 2018 black blouses for women girls' tops, tees & blouses christmas blouses for women blouses for women fashion 2018 white blouses for women dressy womens tops and blouses blouses for women fashion 2021 blouses for women fashion 2019 blouses for women fashion 2017 short sleeve blouses for women women business blouses womens summer tops and blouses spring blouses for women 2021 blouses for women fashion 2016 plus size blouses for women blouses womens tops and blouses under 20 white blouse for women women\u00a1\u00afs fashion blouses 2019 womens blouses for work professional elegant woman blouses fall blouses for women 2021 white blouse womans blouses/short sleeved womens blouses and tops dressy blouses for women womens shirts and blouses womens tops and blouses for work blouses for women 2020 women\u2019s fashion blouses 2019 blouses for women business casual blouses & button-down shirts black blouse ladies tops and blouses womens blouse blouses for women", "pricing": "$8.39", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41zNdnc-QwL.jpg", "https://m.media-amazon.com/images/I/41zNdnc-QwL.jpg", "https://m.media-amazon.com/images/I/41ohRBkUgkL.jpg", "https://m.media-amazon.com/images/I/41rqA9eRhOL.jpg", "https://m.media-amazon.com/images/I/41rpuWaJYIL.jpg", "https://m.media-amazon.com/images/I/41Az3r+KFuL.jpg", "https://m.media-amazon.com/images/I/41tm2A2J6fL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Shirts & Tees", "average_rating": "", "small_description": ["\ud83d\udc55\ud83d\udc56Logistics size\ud83d\udc55\ud83d\udc56 Standard lead time: 8-16 days. Expedited delivery: 3-7 days. Shipped within 24 hours. You can refer to the size chart in the picture. It is recommended to buy a larger size. ", "Imported ", "Nylon lining ", "\ud83d\udc55\ud83d\udc56Best Gifts\ud83d\udc55\ud83d\udc56Great for Father's Day,Valentine's Day, Halloween, Christmas, 4th of july, Daily, Lounge Wear, Party, Hang Out With Friends, Dating, School, Holiday, Travel, Vacation, Office, Work, Also Great Gifts For Families/Friends. closure ", "\ud83d\udc55\ud83d\udc56100% satisfied\ud83d\udc55\ud83d\udc56 We sell men's clothing. If you have any questions, you can ask us and we will serve you within 24 hours. Search the WENKOMG1 store on Amazon to get more of our products. WENKOMG1 hopes to spend an unforgettable Christmas and a wonderful holiday with you. ", "st. patricks day shirts for women christmas maternity shirts shirts for men womens flannel shirt womens christmas shirts mens t shirts long shirts for leggings for women womens t shirts breast cancer awareness shirts white t shirts for women white shirt white shirts for women saint patricks day shirts for women women's t-shirts breastfeeding shirts for women feminist t shirt st pattys day shirt shirts long sleeve shirts for women 2020 graduation shirts hawaiian shirt for men ", "hoodies & sweatshirts boys hoodies 8-20 men's fashion hoodies & sweatshirts womens hoodie pullover hoodies for women mens zip up hoodies grey zip up hoodie cool hoodies frog hoodie boys hoodies cat hoodie black hoodie men y2k pants techwear y2k fashion y2k clothes for men pastel goth cyberpunk mens clothes goth clothes gothic clothes y2k aesthetic streetwear tactical pants punk clothes goth clothes for women graphic tees y2k room decor y2k clothes y2k dress cyber y2k tactical , boys' outerwear jackets & coats fringe jacket jackets for girls rain jackets for men waterproof mens rain jacket women's blazers & suit jackets womens rain jackets black leather jacket women denim jacket for women windbreaker jacket women blazer jackets for women puffer jacket men womens contrast leopard denim jacket boys rain jacket yellow jacket trap kids rain jacket welding jacket black jacket women life jacket black jacket flannel jacket women varsity jacket men mens, Basic Tops Knitted Thermal Turtleneck Pullover Sweater Men's All Cotton Flannel Shirt, Long Sleeve Casual Button Up Plaid Shirt, Brushed Soft Outdoor Shirts Men's Casual Dress Shirt Button Down Shirts Long-Sleeve Denim Work Shirt Men's Casual Long Sleeve Stretch Dress Shirt Wrinkle-Free Regular Fit Button Down Shirts Men's Long Sleeve Dress Shirt Solid Slim Fit Casual Business Formal Button Up Shirts with Pocket Men's Flannel Plaid Shirts Long Sleeve Regular Fit Button Down, Men's Sweatshirt Hipster Gym Long Sleeve Drawstring Hooded Plaid Jacquard Pullover Hoodies Heavyweight Sherpa Hoodies for Men, Thick Fleece Lined Full Zip Up Winter Warm Sweatshirts Work Jackets Men's Novelty Color Block Pullover Fleece Hoodie Long Sleeve Casual Sweatshirt with Pocket Men's Plaid Hooded Shirts Casual Long Sleeve Lightweight Shirt Jackets Mens Fuzzy Sherpa Pullover Hoodie Sweatshirts Long Sleeve Sport Front Pocket Fall Outwear Winter Hooded Heavyweight Sherpa"], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A221G3YZMUV09Q", "seller_name": "WENKOMG1\u27088-16 DELIVERY \ud83d\udc55\ud83d\udc56Up to 50% off", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QGK5XHZ", "category": "fashion", "query": "Men's Tuxedo Shirts", "page": 176, "small_description_old": "\ud83d\udc55\ud83d\udc56Logistics size\ud83d\udc55\ud83d\udc56 Standard lead time: 8-16 days. Expedited delivery: 3-7 days. Shipped within 24 hours. You can refer to the size chart in the picture. It is recommended to buy a larger size. Imported Cotton lining \ud83d\udc55\ud83d\udc56Best Gifts\ud83d\udc55\ud83d\udc56Great for Father's Day,Valentine's Day, Halloween, Christmas, 4th of july, Daily, Lounge Wear, Party, Hang Out With Friends, Dating, School, Holiday, Travel, Vacation, Office, Work, Also Great Gifts For Families/Friends. closure \ud83d\udc55\ud83d\udc56100% satisfied\ud83d\udc55\ud83d\udc56 We sell men's clothing. If you have any questions, you can ask us and we will serve you within 24 hours. Search the WENKOMG1 store on Amazon to get more of our products. WENKOMG1 hopes to spend an unforgettable Christmas and a wonderful holiday with you. boys 4th of july shirt dad shirts for father's day girls st patricks day shirt girls christmas shirt long sleeve workout shirts for women st patricks day shirt mens american flag t shirt men christmas tee shirts for women white t shirts for men black long sleeve shirt women saint patricks day shirts for men mens christmas t shirts christmas t shirts men hawaiian shirts flannel shirt for men girls valentines day shirt work out shirts woman funny t shirts for men mens st patricks day true classic tees men gilden tee shirts mens womens graphic tees golf glove womens long sleeve tee shirt white shirts for men t shirts for men pack t shirts for men tshirt men t shirts tee shirts mens v neck undershirts mens men's t-shirts lingerie for men mens tank tops undershirt mens t shirt mens tshirts men's undershirts mens underwear briefs under shirt for men long sleeve undershirt for women v neck t shirts men undershirts for men pack mens undershirts mens t shirts \n flannel jackets for men rain jacket women jacket bomber jacket women womens flannel jacket boys jacket denim jacket winter jackets for men toddler jacket shirt jacket women heated jacket jackets girls' outerwear jackets & coats girls rain jacket sherpa jacket women men's varsity jackets faux leather jacket women jackets for women scrub jackets for women leather jacket lab coat men's sport coats & blazers winter coats for women trench coats for women coat rack freestanding coatSuit Vest Business Formal Dress Waistcoat Vest with 3 Pockets for Suit or Tuxedo Mens Floral Tuxedo Jacket Paisley Shawl Lapel Suit Blazer Jacket for Dinner,Prom,Wedding Men\u2019s Slim Fit Suit One Button 3-Piece Blazer Dress Business Wedding Party Jacket Vest & Pant Mens Formal Fashion Vest Layered Waistcoat Business Dress Suit Vests for Wedding Men's African 2 Piece Set Long Sleeve Gold Print Dashiki and Pants Outfit Traditional Suit Men's Slim Fit 2 Button 3 Piece Suit Set,Contrast Raglan Long-Sleeve Pullover Blend Fleece Hoodie with Kanga Pocket Mens Urban Hip Hop Premium Fleece Hoodie - Modern Pullover NYC Street Fashion Urbanwear Hooded Sweatshirt Unisex 3D Print Hoodies Graphic Space Pullover Hooded Sweatshirts for Men Women Casual Graphic Unisex hooded sweatshirt,Black Pullover Hoodie For Mens, Lightweight Fleece Adult Pull Mens Fuzzy Pullover Hoodie, Unisex Sherpa Lined Sweatshirt, Long Sleeve Fleece Fashion Winter Outwear Men's HoodedShow more"}, {"name": "C-DECOR Uniqueness Style Middle Coffee Table Wooden and Tempered Glass, Cocktail Table, Sofa Table for Living Room, Walnut Finish", "product_information": {"Item Weight": "\u200e55 pounds", "Product Dimensions": "\u200e53 x 27 x 16 inches", "Assembled Height": "\u200e16 inches", "Assembled Width": "\u200e27 inches", "Assembled Length": "\u200e53 inches", "Weight": "\u200e25 Kilograms", "ASIN": "B08CV7M1HV", "Customer Reviews": {"ratings_count": null, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#3,378,467 in Home & Kitchen (See Top 100 in Home & Kitchen) #4,900 in Coffee Tables"], "Date First Available": "July 13, 2020"}, "brand": "Visit the C-DECOR Store", "brand_url": "https://www.amazon.com/stores/C-DECOR/page/B5DAA991-B87B-4392-8D30-094AC79D2231?ref_=ast_bln", "full_description": "Bring uniqueness to your decor with the C-DECOR Coffee Table. This coffee table has a sleek design that adds to its beauty. It is spacious and makes a perfect addition for any home. This contemporary table is sturdy and durable. The spacious top can hold drinks, snacks and a small showpiece efficiently. The table has tapered frame that provide with stability. You can easily take care of this piece by wiping it clean with a dry cloth. PRODUCT DIMENSIONS Length:135 cm (53') Width:68 cm (27\u2033) Height: 40 cm (16\")", "pricing": "$1,200.00", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31Ht8zMR-aL.jpg", "https://m.media-amazon.com/images/I/41msye2HIpL.jpg", "https://m.media-amazon.com/images/I/41UQQmGApZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Coffee Tables", "average_rating": 4, "small_description": ["A sleek design stunning example of mid century modernism design end table brings great look to your living room. ", "Eye-catching design, top oval shaped with tempered glass and frame ship shaped. ", "Surface is produced with tempered glass and base is made of pressed solid wood, assembly: Easy assembly, drill is required. ", "Maintenance: You can clean your furniture by wiping with a damp cloth. Protect from direct sunlight, avoid prolonged contact of hot surfaces and water. ", "C-Decor provides professional customer service before and after purchase; we always respond within few hours; don't wait any longer and enjoy it now. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A2FWGH4F9YI8LR", "seller_name": "C-Decor", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08CV7M1HV", "category": "garden", "query": "Coffee Tables", "page": 117, "small_description_old": "About this item A sleek design stunning example of mid century modernism design end table brings great look to your living room. Eye-catching design, top oval shaped with tempered glass and frame ship shaped. Surface is produced with tempered glass and base is made of pressed solid wood, assembly: Easy assembly, drill is required. Maintenance: You can clean your furniture by wiping with a damp cloth. Protect from direct sunlight, avoid prolonged contact of hot surfaces and water. C-Decor provides professional customer service before and after purchase; we always respond within few hours; don't wait any longer and enjoy it now. \n \u203a See more product details"}, {"name": "Tuxedo Cat 4th of July Hat Patriotic Gift Adults Kids Raglan Baseball Tee", "product_information": "", "brand": "Brand: 4th July Tuxedo Cat TShirts Gifts", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=4th+July+Tuxedo+Cat+TShirts+Gifts", "full_description": "", "pricing": "$23.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A1Rz2T5IgLL.png", "https://m.media-amazon.com/images/I/41CfQANfBjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a T-Shirts", "average_rating": "", "small_description": ["Solid Colors: 100% Cotton; Heather Grey Body: 90% Cotton, 10% Polyester; Dark Heather Sleeves: 50% Cotton, 50% Polyester ", "Imported ", "Machine Wash ", "July 4th wear this cute America Tuxedo Cat shirt with USA stars stripes . ", "Wear to a cookout, party, fireworks show, or parade! Nice gift for war heros and veterans. Funny Manatee tee shirt makes nice birthday or holiday gift for adults, boys and girls.. ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T3VMGDG?_encoding=UTF8&customId=B07N71NGPW", "value": "Women", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1Rz2T5IgLL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T3VMGDG?_encoding=UTF8&customId=B07N71X6F2", "value": "Dark Heather/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1O1NuQg5ZS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T3VMGDG?_encoding=UTF8&customId=B07N72YW6V", "value": "Navy/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1NccXwUOxS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T3VMGDG?_encoding=UTF8&customId=B07N73941X", "value": "Royal Blue/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1csF7qb3bL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T3VMGDG?_encoding=UTF8&customId=B07N72L32R", "value": "Red/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A11eEwyGF2L.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T3VMGDG?_encoding=UTF8&customId=B07N71TLBG", "value": "Black/Athletic Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1rBj5jPLRS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T3VMGDG?_encoding=UTF8&customId=B07N6ZP23Q", "value": "Navy/Athletic Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1Vlfyj6v5S.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07N721TBH"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07N6ZHFPJ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07N739416"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07N6ZHFPM"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07N73941C"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07T3VMGDG", "category": "fashion", "query": "Men's Tuxedo Shirts", "page": 31, "small_description_old": "Solid Colors: 100% Cotton; Heather Grey Body: 90% Cotton, 10% Polyester; Dark Heather Sleeves: 50% Cotton, 50% Polyester Imported Machine Wash July 4th wear this cute America Tuxedo Cat shirt with USA stars stripes . Wear to a cookout, party, fireworks show, or parade! Nice gift for war heros and veterans. Funny Manatee tee shirt makes nice birthday or holiday gift for adults, boys and girls.. Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "Mountain Dew Soda, 12 Fl Oz (pack of 24)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 10.2 x 7.5 x 9 inches; 12.48 Ounces", "Item model number\n \u200f": "\u200e\n 16791", "UPC\n \u200f": "\u200e\n 012000000881", "Manufacturer\n \u200f": "\u200e\n Pepsi", "ASIN\n \u200f": "\u200e\n B003QB1A72", "Best Sellers Rank": "#143,062 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#1,549 in Soda Soft Drinks", "#1,549 in Soda Soft Drinks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Mountain Dew Store", "brand_url": "https://www.amazon.com/stores/MTNDEWGAMEFUEL/page/3354FEF4-FEE9-4D2B-A4D6-5FAC3A4CFBFE?ref_=ast_bln", "full_description": "Carbonated Soft Drink", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/61WZ5sSlmiL.jpg", "https://m.media-amazon.com/images/I/41pc6mAwjcL.jpg", "https://m.media-amazon.com/images/I/61i5VHm6vcL.jpg", "https://m.media-amazon.com/images/I/51yOr3hMPkL.jpg", "https://m.media-amazon.com/images/I/31eGgM+GG-L.jpg", "https://m.media-amazon.com/images/I/51FKHKEktGL.jpg", "https://m.media-amazon.com/images/I/61MoldDsyIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Soft Drinks", "average_rating": 4.9, "small_description": ["Pack of 24, 12 ounces.cans ", "170 calories per can ", "Mountain Dew, the original instigator, refreshes with its one of a kind great taste "], "total_reviews": 3526, "total_answered_questions": 4, "customization_options": {"Flavor Name": null, "Size": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B003QB1A72", "category": "grocery", "query": "Beverages", "page": 209, "small_description_old": "About this item Pack of 24, 12 ounces.cans 170 calories per can Mountain Dew, the original instigator, refreshes with its one of a kind great taste Do the Dew"}, {"name": "FEEE-ZC 60X60 Telescopic Long Distance 3 Kilometers Binoculars Telescope Green Membrane Spy Spotting Scope Heavy Duty High Definition for Concert Hiking", "product_information": {"Brand Name": "\u200eFEEE-ZC", "Material": "\u200eObjective, Metal", "Manufacturer": "\u200eEricZZ", "ASIN": "B08YNRQSBL", "Best Sellers Rank": ["#30,688 in Camera & Photo Products (See Top 100 in Camera & Photo Products) #4,820 in Binoculars"], "Date First Available": "March 11, 2021"}, "brand": "Brand: FEEE-ZC", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=FEEE-ZC", "full_description": "Specifications:Magnification: 60XEyepiece diameter: 23.95mmObjective lens diameter; 35mmExit pupil diameter: 7mmField of view range: 342ft/100ydsPrism system: BAK4 prismWaterproof function: nitrogen-filled waterproofOptical coating: FMC anti-reflection green filmMirror body material: metal + environmental protection rubberEye cup type: Folding eye maskClose focus distance: about 4 metersExit pupil distance: 15mmLength/width/height: 180\u00d760\u00d7140mmPackage Include:1x High Powered Binocular1x Backpack1x Strap1x Lens Cap1x Eyepiece cap1x Lens Cloth1x Packaging BoxesHow to care for your binocular?1.Cover the lens for not use.2.Use soft lintless cloth to wipe lens.3.To remove any remaining dirt or smudges,add one or two drops of is opropyl alcohol to the cloth.4.Suggest store binoculars at moisture-free place.Note:Please do not look at the sun through a binocular.", "pricing": "$88.51", "list_price": "", "availability_quantity": 19, "availability_status": "Only 19 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41jYTcW75nL.jpg", "https://m.media-amazon.com/images/I/41jA14uYDqL.jpg", "https://m.media-amazon.com/images/I/41vRvjS4zwL.jpg", "https://m.media-amazon.com/images/I/41zQpD+CZUL.jpg", "https://m.media-amazon.com/images/I/41d8QQCldUL.jpg", "https://m.media-amazon.com/images/I/41lR4Tp5k0L.jpg", "https://m.media-amazon.com/images/I/41zeqiKXRNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Binoculars & Scopes \u203a Binoculars", "average_rating": "", "small_description": ["PROFESSIONAL POWERFUL BINOCULARS -Designed with 60X power magnification, 60mm large objective lens and 342ft/100yds large field of view good for fast moving subject, are ideal for bird watching, hunting, driving, sports events. ", "WEAK LIGHT VISION WITH QUALITY OPTICS -Design of Aspherical lenses and multi-layer coating guarantee excellent light transmission and well improve image brightness, contrast and quality. It can be used at night, but not in complete darkness. Suitable for concerts, opera, sightseeing and astronomical viewing. ", "DURABLE, SOLID AND ANTI-SLIP GRIP-Durable structure with odorless rubber armor for shock-resistance and Anti-slip grip, making it not only in decent appearance of more wear-resistant and moisture-proof, but also perfect for outdoor activities such as climbing, hiking, travelling, watching wildlife and scenery. ", "EASY TO FOCUS-Corrective optical coating are good for color fidelity and minimize distortion. Diopter System adjusting the imbalance vision of both eyes. The smooth and large center focus knob makes it simple to operate and easy to focus. ", "ADJUSTABLE EYE CUPS-The rubber covered eyepiece can be twisted up and down for different people adjusting a proper eye relief. The eyeglass wearers can adjust the eye relief through rising eye cups and feel more comfortable "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1P7OH19WP2MWN", "seller_name": "YoHey", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08YNRQSBL", "category": "electronics", "query": "Binoculars & Scopes", "page": 53, "small_description_old": "About this item\n \nPROFESSIONAL POWERFUL BINOCULARS -Designed with 60X power magnification, 60mm large objective lens and 342ft/100yds large field of view good for fast moving subject, are ideal for bird watching, hunting, driving, sports events. WEAK LIGHT VISION WITH QUALITY OPTICS -Design of Aspherical lenses and multi-layer coating guarantee excellent light transmission and well improve image brightness, contrast and quality. It can be used at night, but not in complete darkness. Suitable for concerts, opera, sightseeing and astronomical viewing. DURABLE, SOLID AND ANTI-SLIP GRIP-Durable structure with odorless rubber armor for shock-resistance and Anti-slip grip, making it not only in decent appearance of more wear-resistant and moisture-proof, but also perfect for outdoor activities such as climbing, hiking, travelling, watching wildlife and scenery. EASY TO FOCUS-Corrective optical coating are good for color fidelity and minimize distortion. Diopter System adjusting the imbalance vision of both eyes. The smooth and large center focus knob makes it simple to operate and easy to focus. ADJUSTABLE EYE CUPS-The rubber covered eyepiece can be twisted up and down for different people adjusting a proper eye relief. The eyeglass wearers can adjust the eye relief through rising eye cups and feel more comfortable"}, {"name": "Australian Arnott's Lemon Crisp Biscuits 250g", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 0.39 x 7.87 x 7.87 inches; 0.35 Ounces", "Manufacturer\n \u200f": "\u200e\n Arnott's", "ASIN\n \u200f": "\u200e\n B00390ALA2", "Best Sellers Rank": "#162,567 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#3,930 in Grocery Cookies", "#3,930 in Grocery Cookies": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Arnott's", "brand_url": "https://www.amazon.com/Arnotts/b/ref=bl_dp_s_web_2582449011?ie=UTF8&node=2582449011&field-lbr_brands_browse-bin=Arnott%27s", "full_description": "Arnott's Lemon Crisp Biscuits 250g. Delicious Rich Lemon Cream Filled Biscuits. Lemon Crisps are a delightful biscuit with a creamy lemon filling. Made using an Arnott family traditional recipe, Lemon Crisp was first sold from the family's bakery. Arnott's has taken two delicious sugar cookies, sprinkled them very lightly with salt, and then sandwiched a fantastic lemon cream in between them!", "pricing": "$9.38", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41dI1m69J-L.jpg", "https://m.media-amazon.com/images/I/41dI1m69J-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cookies", "average_rating": 4.2, "small_description": ["Made in Australia ", "A light and crispy biscuit filled with lemon cream and a delightful sprinkling of salt flakes on top ", "Uniquely sweet and savory ", "250 grams ", "Imported by Australian Products Co. "], "total_reviews": 66, "total_answered_questions": "", "customization_options": "", "seller_id": "A1CZVB50VV536K", "seller_name": "The Good stuff", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00390ALA2", "category": "grocery", "query": "Grocery Cookies", "page": 258, "small_description_old": "About this item Made in Australia A light and crispy biscuit filled with lemon cream and a delightful sprinkling of salt flakes on top Uniquely sweet and savory 250 grams Imported by Australian Products Co."}, {"name": "Real Techniques Makeup Brushes, For Foundation, Eye Shadow & Blush, Set of 3, Purple, 3 pc. (RLT-1400)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n Yes", "Product Dimensions\n \u200f": "\u200e\n 8 x 4 x 1.7 inches; 4.68 Ounces", "Item model number\n \u200f": "\u200e\n RLT-1400", "Department\n \u200f": "\u200e\n Female", "Batteries\n \u200f": "\u200e\n 1 A batteries required.", "UPC\n \u200f": "\u200e\n 079625014006 079625014303", "Manufacturer\n \u200f": "\u200e\n Paris Presents Incorporated", "ASIN\n \u200f": "\u200e\n B004TSFEBY", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#141,997 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#640 in Makeup Brush Sets & Kits", "#640 in Makeup Brush Sets & Kits": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Real Techniques Store", "brand_url": "https://www.amazon.com/stores/RealTechniques/page/AA5A682A-3505-4B43-9493-233DF930B8DE?ref_=ast_bln", "full_description": "The Real Techniques Travel Essentials Set is a kit that contains the essential tools to create a complete makeup look. All the brushes have synthetic bristles and are easy to clean as well as easy to use. This set has you completely covered start to finish and includes 4 brushes to do it all: blush, bronzer, highlighter, concealer and shadows. Real Techniques is one of the first brands to bring prestige quality, award-winning, and innovative tools at a great value to the beauty obsessed around the world. Since 2011, we have been creating tools and accessories to help make the most of your favorite makeup. With a beauty community of over 5 million, Real Techniques strives to inspire, educate, and empower our fans to make the most of their favorite products. Whether you\u2019re striving for your best no-makeup look or about to make your runway debut, Real Techniques has the perfect tool for you. Our Brushes Take your look to the next level with our individual brushes and brush sets. From foundation to eye shadow and from cream blush to setting powder, accentuate your favorite features. Our lightweight, prestige quality, easy to use, and easy to clean brushes help you create defined contours, build coverage, and layer on your best makeup looks. Our Sponges Optimize your beauty routine with our versatile makeup sponges, designed with a revolutionary latex-free foam technology to evenly blend makeup for a smooth, enhanced finish. Our miracle sponges can be used damp or dry. As the makers of the #1 Makeup Sponge*, the Miracle Complexion Sponge\u00ae, we bring you the perfect sponges to help you: build coverage with liquid foundation, smooth on seamless powder, blend body makeup, and much more!", "pricing": "$13.05", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31-7RMjzBkL.jpg", "https://m.media-amazon.com/images/I/31Ov-FrP3QL.jpg", "https://m.media-amazon.com/images/I/51Vgp6RN6fL.jpg", "https://m.media-amazon.com/images/I/416pwWtaHZL.jpg", "https://m.media-amazon.com/images/I/41PhgyySchL.jpg", "https://m.media-amazon.com/images/I/416XsVQNCnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Makeup Brushes & Tools \u203a Brush Sets", "average_rating": 4.6, "small_description": ["THE REAL TECHNIQUES EVERYDAY ESSENTIALS 2.0 set has you completely covered start to finish and includes 4 brushes to do it all: blush, bronzer, highlighter, concealer and shadows. ", "A MAKEUP BAG ESSENTIAL: Stock your makeup case with Real Technique brushes to layer on color, blend beautifully and let you define your look. Try our beauty sponges, beauty blenders or eyeshadow brushes. ", "PROFESSIONAL MAKEUP BRUSHES: From foundation to liner our brushes & beauty sponges flawlessly apply primer, concealer, eyeshadow & more. Keep your brushes germ free & clean with our makeup brush & sponge cleansers. ", "QUALITY MAKEUP APPLICATORS: We provide brushes for primer, concealer, foundation, color correction, highlight, contour & more. Look for some of our makeup brushes & sponges that're ideal for liquids, creams & powder. ", "REAL TECHNIQUES: Launching in 2011, Real Techniques created cruelty free makeup brushes with you in mind. Goodbye basic eyeshadow applicators & fingers - hello high quality makeup brushes. "], "total_reviews": 1458, "total_answered_questions": 23, "customization_options": {"Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B075RY3Y6Q/ref=twister_B07QZ4HT43?_encoding=UTF8&psc=1", "value": "Color Correcting", "price_string": "$30.95", "price": 30.95, "image": "https://m.media-amazon.com/images/I/41OSv+iVUqL.jpg"}, {"is_selected": true, "url": null, "value": "Technique Essentials", "price_string": "$13.05", "price": 13.05, "image": "https://m.media-amazon.com/images/I/31-7RMjzBkL.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B004TSFEBY", "category": "beauty", "query": "Makeup Brushes & Tools", "page": 38, "small_description_old": "About this item THE REAL TECHNIQUES EVERYDAY ESSENTIALS 2.0 set has you completely covered start to finish and includes 4 brushes to do it all: blush, bronzer, highlighter, concealer and shadows. A MAKEUP BAG ESSENTIAL: Stock your makeup case with Real Technique brushes to layer on color, blend beautifully and let you define your look. Try our beauty sponges, beauty blenders or eyeshadow brushes. PROFESSIONAL MAKEUP BRUSHES: From foundation to liner our brushes & beauty sponges flawlessly apply primer, concealer, eyeshadow & more. Keep your brushes germ free & clean with our makeup brush & sponge cleansers. QUALITY MAKEUP APPLICATORS: We provide brushes for primer, concealer, foundation, color correction, highlight, contour & more. Look for some of our makeup brushes & sponges that're ideal for liquids, creams & powder. REAL TECHNIQUES: Launching in 2011, Real Techniques created cruelty free makeup brushes with you in mind. Goodbye basic eyeshadow applicators & fingers - hello high quality makeup brushes."}, {"name": "Replacement Remote Control for Samsung AK59-00156A DVD-E360 DVD-E360/ZA DVD VCR Combo Player - ( Compatible model: AK59-00061B )", "product_information": {"ASIN": "B08HWG1NFW", "Date First Available": "July 13, 2021", "Manufacturer": "Foxwook"}, "brand": "Brand: Foxwook", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Foxwook", "full_description": "Replacement Remote Control for Samsung AK59-00156A DVD-E360 DVD-E360/ZA DVD VCR Combo Player - ( Compatible model: AK59-00061B )", "pricing": "$29.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/21rZOArefBL.jpg", "https://m.media-amazon.com/images/I/21usrPZJ66L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": "", "small_description": ["PLEASE NOTE - Replacement or Universal item may not work with all functions as original ", "This is compatible item, high quality remotes controller ", "Item tested before delivery to make sure it's working perfect! ", "This unit is in PLASTIC WRAPPING ONLY ", "Package Content: 1 x Remote control without battery "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1HDAQI4ZNNDN8", "seller_name": "Atfon", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08HWG1NFW", "category": "electronics", "query": "VCRs", "page": 233, "small_description_old": "PLEASE NOTE - Replacement or Universal item may not work with all functions as original This is compatible item, high quality remotes controller Item tested before delivery to make sure it's working perfect! This unit is in PLASTIC WRAPPING ONLY Package Content: 1 x Remote control without battery"}, {"name": "Merry Christmas Snowflake Pattern Women Chiffon Short Scarf Lightweight and Compact, Easy to Carry. Beach Sarong Cover Wrap Skirt Bikini Swimwear Cover Ups Black", "product_information": {"Item Weight\n \u200f": "\u200e\n 2.33 Ounces", "Item model number\n \u200f": "\u200e\n ZJHFSGMY", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 8, 2021", "Manufacturer\n \u200f": "\u200e\n ZJHFSGMY", "ASIN\n \u200f": "\u200e\n B09N974RWN", "": ""}, "brand": "Brand: ZJHFSGMY", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=ZJHFSGMY", "full_description": "Perfect Cover Up This Is Beautiful!!! This Was The Perfect Cover Up Since I Liked My Bathing Suit, So It Covered My Legs My Bathing Suit Could Still Be Seen. I Received Many Compliments On The Beach, Someone Saying I Looked Like I Was In Greece!", "pricing": "$9.99", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/41ZffAKQrHL.jpg", "https://m.media-amazon.com/images/I/41G9-UmEHjL.jpg", "https://m.media-amazon.com/images/I/41wmsA8BnbL.jpg", "https://m.media-amazon.com/images/I/41eO7JGVPML.jpg", "https://m.media-amazon.com/images/I/41JX5dvRqdL.jpg", "https://m.media-amazon.com/images/I/5191+RvtknL.jpg", "https://m.media-amazon.com/images/I/51qiUXhADLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Swimsuits & Cover Ups \u203a Cover-Ups", "average_rating": "", "small_description": ["Chiffon ", "Machine Wash ", "Made Of 100% Polyester Chiffon With A Crinkled Surface, Silky Soft, Breathes Well, Lightweight, Quick Drying And Stays Cool On The Skin. This Elegant And Luxurious Semi-Sheer Chiffon Crinkled Fabric Has Soft Hand Finish, And A Beautiful Flowing That Feels Lovely Against The Skin, Good Drape ", "Short And Falls Above The Knee, Ties On As A High Slit Skirt, Super Sexy And Drape On A Women'S Body In A Most Elegant And Flattering Way. Split Skirt Design Allow You To Cover Up And Show Some Leg At The Same Time, You Can Tie Your Sarong Wrap Up High Around Your Waist Or Wear It Lower Down On Your Hip To Show Your Beautiful Silhouette And Sexy Slinky Figures. ", "Provides Enough Transparency To Show Your Beautiful Silhouette And Sexy Slinky Figures, Protects You From Sun, Very Light And Easy To Pack And Carry\uff0cThe Chiffon Blouse Is Designed With Extra Knotting Length, Which Makes Knotting Very Easy. ", "Can Be Worn As Beach Cover Up, Short Sarong, Pareo, Slit Skirts, Bathing Suits, Swimming Bikini, Swimsuit Wrap Around, Sarong Dress, Beach Shawl, Party Wear, Resort Wear, Tie Top, Bandana, Scarf, Ect,\u2026Perfect For Swimming, Beach, Poolside, Lake, Cruise, Vacation, Park, Leisure, Party, Etc,... All-Match With Your Swimwear. ", "Please Contact Us Immediately If You Have Any Questions After Receiving The Goods. We Are Glad To Receive Your Real-Time Feedback And Are Committed To Solving Your Problems And Meeting Your Requirements. Your Satisfaction Is Always Our Biggest Pursuit. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1VOT4UZPX15VH", "seller_name": "\u8386\u7530\u5e02\u6db5\u6c5f\u533a\u8bda\u5b87\u552f\u5929\u65e5\u7528\u54c1\u5e97", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09N974RWN", "category": "fashion", "query": "Women's Swimsuits & Cover Ups", "page": 150, "small_description_old": "Chiffon Machine Wash Made Of 100% Polyester Chiffon With A Crinkled Surface, Silky Soft, Breathes Well, Lightweight, Quick Drying And Stays Cool On The Skin. This Elegant And Luxurious Semi-Sheer Chiffon Crinkled Fabric Has Soft Hand Finish, And A Beautiful Flowing That Feels Lovely Against The Skin, Good Drape Short And Falls Above The Knee, Ties On As A High Slit Skirt, Super Sexy And Drape On A Women'S Body In A Most Elegant And Flattering Way. Split Skirt Design Allow You To Cover Up And Show Some Leg At The Same Time, You Can Tie Your Sarong Wrap Up High Around Your Waist Or Wear It Lower Down On Your Hip To Show Your Beautiful Silhouette And Sexy Slinky Figures. Provides Enough Transparency To Show Your Beautiful Silhouette And Sexy Slinky Figures, Protects You From Sun, Very Light And Easy To Pack And Carry\uff0cThe Chiffon Blouse Is Designed With Extra Knotting Length, Which Makes Knotting Very Easy. Can Be Worn As Beach Cover Up, Short Sarong, Pareo, Slit Skirts, Bathing Suits, Swimming Bikini, Swimsuit Wrap Around, Sarong Dress, Beach Shawl, Party Wear, Resort Wear, Tie Top, Bandana, Scarf, Ect,\u2026Perfect For Swimming, Beach, Poolside, Lake, Cruise, Vacation, Park, Leisure, Party, Etc,... All-Match With Your Swimwear. Please Contact Us Immediately If You Have Any Questions After Receiving The Goods. We Are Glad To Receive Your Real-Time Feedback And Are Committed To Solving Your Problems And Meeting Your Requirements. Your Satisfaction Is Always Our Biggest Pursuit."}, {"name": "Amazon Essentials Men's Slim-fit Long-Sleeve Solid Pocket Oxford Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.99 x 9.33 x 1.65 inches; 14.46 Ounces", "Item model number\n \u200f": "\u200e\n AE1813194", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 9, 2018", "Manufacturer\n \u200f": "\u200e\n Amazon Essentials", "ASIN\n \u200f": "\u200e\n B07F2G93D4", "Best Sellers Rank": "#16,363 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#144 in Men's Casual Button-Down Shirts", "#144 in Men's Casual Button-Down Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "An Amazon brand - This slim-fit oxford shirt provides a classic, versatile look with box-pleated back yoke for everyday use", "pricing": "$18.50", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41WHLfg59AL.jpg", "https://m.media-amazon.com/images/I/41LN2kTzpAL.jpg", "https://m.media-amazon.com/images/I/41Adgy9OeJL.jpg", "https://m.media-amazon.com/images/I/41lufBYd31L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a Casual Button-Down Shirts", "average_rating": 4.4, "small_description": ["This slim-fit oxford shirt provides a classic, versatile look with box-pleated back yoke for everyday use ", "Features a button-down collar, patch chest pocket, rounded hem and barrel cuffs ", "Work made better: we listen to customer feedback and fine-tune every detail to ensure quality, fit, and comfort "], "total_reviews": 1577, "total_answered_questions": 13, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B07F2JYL7G"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B07F22HC39"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07F2G93BJ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07F22HHXX"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07F2G93DR"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07F258GZ9"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07F22HN39/ref=twister_B08M2VVWDT", "value": "Aqua Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41o3nH99nAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F25KZCQ/ref=twister_B08M2VVWDT", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41o-zknjagL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F27B13G/ref=twister_B08M2VVWDT", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IJBbfD2aL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F22LFTN/ref=twister_B08M2VVWDT", "value": "Lavender", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/419CgrF5lkL.jpg"}, {"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41WHLfg59AL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F258BVG/ref=twister_B08M2VVWDT", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-s-Hl8-5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F27B36N/ref=twister_B08M2VVWDT", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41F7CuItBPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F22HGD6/ref=twister_B08M2VVWDT", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41c9H7D07JL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07F2G93BJ", "category": "fashion", "query": "Men's Casual Button-Down Shirts", "page": 2, "small_description_old": "100% Cotton Imported Button closure Machine Wash This slim-fit oxford shirt provides a classic, versatile look with box-pleated back yoke for everyday use Features a button-down collar, patch chest pocket, rounded hem and barrel cuffs Work made better: we listen to customer feedback and fine-tune every detail to ensure quality, fit, and comfort"}, {"name": "Cordless Endo USB Ultra Activator Irrigator with 6pcs Titanium Tips", "product_information": {"Manufacturer\n \u200f": "\u200e\n ARIES OUTLETS", "ASIN\n \u200f": "\u200e\n B092CKF9YF", "": ""}, "brand": "Brand: ARIES OUTLETS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ARIES+OUTLETS", "full_description": "", "pricing": "$205.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31tGhX+3OUL.jpg", "https://m.media-amazon.com/images/I/31LZeaxT-+L.jpg", "https://m.media-amazon.com/images/I/319OXZrn+3L.jpg", "https://m.media-amazon.com/images/I/31Cov-IfzHL.jpg", "https://m.media-amazon.com/images/I/31j6LYQf8iL.jpg", "https://m.media-amazon.com/images/I/417IOhp11+L.jpg", "https://m.media-amazon.com/images/I/41HgA4dfmxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Dental Floss & Picks \u203a Power Dental Flossers", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2997CTETR9P5Y", "seller_name": "Aries Outlets", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B092CKF9YF", "category": "beauty", "query": "Dental Floss & Picks", "page": 111, "small_description_old": ""}, {"name": "BOWERY HILL Traditional 84\" Tall 12-Shelf Double Wide Wood Bookcase in Espresso", "product_information": {"Manufacturer": "\u200eBowery Hill", "Brand": "\u200eBOWERY HILL", "Item Weight": "\u200e156 pounds", "Product Dimensions": "\u200e10.63 x 48 x 84 inches", "Color": "\u200eEspresso", "Shape": "\u200eTrapezoid", "Material Type": "\u200eWood", "Number of Items": "\u200e1", "Manufacturer Part Number": "\u200eBH-4752-2141706", "ASIN": "B099YQ75WT", "Best Sellers Rank": ["#2,057,393 in Home & Kitchen (See Top 100 in Home & Kitchen) #3,424 in Bookcases"], "Date First Available": "July 20, 2021"}, "brand": "Visit the BOWERY HILL Store", "brand_url": "https://www.amazon.com/stores/BOWERYHILL/page/E6BF1641-15F3-42AA-8C2B-037E1F8BFCC7?ref_=ast_bln", "full_description": "The Bowery Hill 10 shelf double wide Bookcase has a beautiful 10 step finish on wood veneer that really sets this bookshelf apart from the rest and utilizes an environmentally friendly zero VOC emissions finish process. This is a piece of furniture using solid wood trim pieces and wood veneer panels versus all the paper laminate varieties out there. Very durable with 70lb. weight capacity per shelf. 10 adjustable shelves allow you to customize the storage space to accommodate a variety of book sizes and 2 fixed shelves provide structural reinforcement. A dowel and cam lock assembly design ensures a strong durable bookcase. Wood elements are sourced in the USA and assembled in Mexico. This versatile storage bookcase is ideal for home or office use, laundry, bedroom, kitchen, garage or any other room. Ready for assembly.Features :- Materials: Genuine wood veneers and solid wood molding- 10 step polyurethane espresso finish- 10 adjustable shelves and 2 fixed shelves to accommodate large and small items- Quick, simple assembly with dowels, camlocks and an engineered wood back panel that is more durable than the cardboard on most ready to assemble bookcases- Materials are imported from the U.S. and manufactured in Mexico- Create a wall of bookcases, designed to be stacked next to each other as your storage needs grow.Specifications :- Product Dimensions : 84\"H x 48\"W x 10.63\"D- Product Weight : 156 lbs- Shelf Weight Capacity : 70 lbs per shelf for superior durability- Number of Shelves : 10 (Adjustable), 2 (Fixed)- Warranty : 2 years- Assembly Required : Yes.", "pricing": "$596.71", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/31NgxPM8+JL.jpg", "https://m.media-amazon.com/images/I/41IgF7BTA1L.jpg", "https://m.media-amazon.com/images/I/31hUeve8p3L.jpg", "https://m.media-amazon.com/images/I/216dLDYJH7L.jpg", "https://m.media-amazon.com/images/I/41pyHV-9kdL.jpg", "https://m.media-amazon.com/images/I/41mChbhXixL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": "", "small_description": ["Materials: Genuine wood veneers and solid wood molding ", "10 step polyurethane espresso finish ", "10 adjustable shelves and 2 fixed shelves to accommodate large and small items ", "Quick, simple assembly with dowels, camlocks and an engineered wood back panel that is more durable than the cardboard on most ready to assemble bookcases ", "Materials are imported from the U.S. and manufactured in Mexico "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A1QFM750CLWIW0", "seller_name": "Cymax", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B099YQ75WT", "category": "garden", "query": "Bookcases", "page": 184, "small_description_old": "About this item\n \nMaterials: Genuine wood veneers and solid wood molding 10 step polyurethane espresso finish 10 adjustable shelves and 2 fixed shelves to accommodate large and small items Quick, simple assembly with dowels, camlocks and an engineered wood back panel that is more durable than the cardboard on most ready to assemble bookcases Materials are imported from the U.S. and manufactured in Mexico"}, {"name": "Type-C to HDMI Cable for Smartphone and Laptops with Type-C (White)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 5.9 x 3.2 x 1 inches; 2.88 Ounces", "Date First Available\n \u200f": "\u200e\n January 19, 2022", "Manufacturer\n \u200f": "\u200e\n HLC", "ASIN\n \u200f": "\u200e\n B09QQWRW2M", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_dp_s_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "Product Information: USB-C to HDMI Cable lets you use the usb Type-C port on your computer or smartphone to directly deliver visuals on your HDMI-equipped monitor/TV without the need for more accessories. - For: Newer laptop with USB Type - C ports and Smartphone with USB-C ports. - Out resolution up to 4096 x 2160P for LG G5. - 6FT Type-C to HDMI Cable for Smartphone and Laptops with Type-C - Black", "pricing": "$15.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/21ek2EPgDgL.jpg", "https://m.media-amazon.com/images/I/21dMy+-4GyL.jpg", "https://m.media-amazon.com/images/I/21YQ8s2e1yL.jpg", "https://m.media-amazon.com/images/I/21qxN63epRL.jpg", "https://m.media-amazon.com/images/I/41-RiHpl0IL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a HDMI Cables", "average_rating": "", "small_description": ["Product Information: USB-C to HDMI Cable lets you use the usb Type-C port on your computer or smartphone to directly deliver visuals on your HDMI-equipped monitor/TV without the need for more accessories. - For: Newer laptop with USB Type - C ports and Smartphone with USB-C ports. - Out resolution up to 4096 x 2160P for LG G5. - 6FT Type-C to HDMI Cable for Smartphone and Laptops with Type-C - Black "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QRK72MB/ref=twister_B09QRLRP6K?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/211lw4fkVdL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/21ek2EPgDgL.jpg"}]}, "seller_id": "AKQPWG8SCD332", "seller_name": "HLC WHOLESALES INC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09QQWRW2M", "category": "electronics", "query": "HDMI Cables", "page": 204, "small_description_old": "About this item\n \nProduct Information: USB-C to HDMI Cable lets you use the usb Type-C port on your computer or smartphone to directly deliver visuals on your HDMI-equipped monitor/TV without the need for more accessories. - For: Newer laptop with USB Type - C ports and Smartphone with USB-C ports. - Out resolution up to 4096 x 2160P for LG G5. - 6FT Type-C to HDMI Cable for Smartphone and Laptops with Type-C - Black"}, {"name": "Butterkist Salted Popcorn 80g X 4 Pack", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "ASIN\n \u200f": "\u200e\n B00DL08RWY", "": ""}, "brand": "Brand: Butterkist", "brand_url": "https://www.amazon.com/Butterkist/b/ref=bl_dp_s_web_19933728011?ie=UTF8&node=19933728011&field-lbr_brands_browse-bin=Butterkist", "full_description": "Butterkist Salted Popcorn 80g X 4 Pack", "pricing": "$38.91", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days. In Stock.", "images": ["https://m.media-amazon.com/images/I/31jidtUssPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Popcorn \u203a Popped", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AV1LV4G53VFKQ", "seller_name": "Zorba Online", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B00DL08RWY", "category": "grocery", "query": "Popcorn", "page": 149, "small_description_old": ""}, {"name": "patient 7 Chakra Quotes Sign Poster Yoga Zen Meditation Wall Art Painting Canvas Print Motivational Spiritual Room Bathroom Bedroom Living Decor (16\u00d724 inch)", "product_information": {"Package Dimensions": "17.36 x 0.98 x 0.94 inches", "Item Weight": "5.6 ounces", "Manufacturer": "patient", "ASIN": "B097TTL54K", "Customer Reviews": {"ratings_count": 95, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#95,644 in Home & Kitchen (See Top 100 in Home & Kitchen) #983 in Posters & Prints"], "Date First Available": "June 24, 2021"}, "brand": "Brand: patient", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=patient", "full_description": "Unique picture16x24 inches ,Within the human energy field, the chakras are specifically organized to express attributes of human consciousness. The Flower of Life Sacred Geometry Chakra Poster is an energy activation and healing meditation. It is designed to awaken the observer to a deeper level of awareness. Simply stand in front of the poster,gazing softly at each symbol and the geometry. Allow the image to be absorbed into your energy field. By accessing the underlying energetic structure of our chakras, we strengthen ourselves on all levels of our Being. Sizing: This poster is 16inches by 24 inches (Width x Height). Printing: We print in high quality CMYK using a 300 DPI source for the best quality possible. This poster comes in a matte finish. Frame: This poster does not come with a frame. All of our posters come in standard size formats so finding a poster frame isn't difficult. About This Poster This poster is a classic. Suitable for best choice for gifts to family, friends, and colleagues. It is also a perfect gift for birthdays, weddings, anniversaries, holidays, Valentine's Day, and Christmas. Options to Hang a Poster There are many options when deciding on how to display a poster. You can mount a poster in an appropriate picture frame, hang the poster directly on to the wall using double sided tape, or mount it on to poster board and hang it on the wall directly for a three dimensional look.", "pricing": "$18.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41+R8SvjNoS.jpg", "https://m.media-amazon.com/images/I/41dCzTd9PzS.jpg", "https://m.media-amazon.com/images/I/51L1g5VvsiS.jpg", "https://m.media-amazon.com/images/I/41asutxGpIS.jpg", "https://m.media-amazon.com/images/I/4155DbirBKS.jpg", "https://m.media-amazon.com/images/I/51njcf-U3jS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": 4.4, "small_description": ["PERFECT ARTWORK: This 7 chakra quotes poster can make your room full of religion artistic atmosphere.The it is sure to captivate wherever it is hung.Size is 16x24inch unframed. ", "INSTALLATION INSTRUCTIONS: Your print will arrive Unframed Our prints fit standard frame sizes. Simply find the frame that best suits your style. This 7 Chakra Sign Poster can be hung on the wall using mounts, clips, push pins, or thumb tacks. ", "MATERIAL AND PRINTGING: This 7 chakra sign poster the production material is the top brand premium canvas.Adopting professionally printed with fade resistant technology and premium inks makes the printed poster more colorful and three-dimensional,ensure the posters has high clarity,all poster prints are carefully rolled and packed.To ensure they reach your hands intact. ", "SURPRISE GIFT: It's perfect for chakra quotes collection & gift,great for home, office,birthday, holidays, kids bedroom, home & office decoration, thanksgiving, christmas, children day, party favors, office wall decorations. ", "AFTER-SALES GUARANTEE: We are proud of our work and stand behind our product 100%. This 7 chakra sign poster is worth collecting,if you do not meet your expectations after receiving the goods, you can contact us, we will help you to get a satisfactory result. "], "total_reviews": 95, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09B9VKZSS/ref=twister_B097TT9DRX?_encoding=UTF8&psc=1", "value": "08 x 12 in", "price_string": "$6.99", "price": 6.99, "image": null}, {"is_selected": true, "url": null, "value": "16 x 24 in", "price_string": "$18.99", "price": 18.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09S5M3C2P/ref=twister_B097TT9DRX?_encoding=UTF8&psc=1", "value": "16\u00d724inch-Framed", "price_string": "$48.00", "price": 48, "image": null}]}, "seller_id": "A26H84W4GOG1YA", "seller_name": "WJFART", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B097TTL54K", "category": "garden", "query": "Wall art", "page": 167, "small_description_old": "About this item\n \nPERFECT ARTWORK: This 7 chakra quotes poster can make your room full of religion artistic atmosphere.The it is sure to captivate wherever it is hung.Size is 16x24inch unframed. INSTALLATION INSTRUCTIONS: Your print will arrive Unframed Our prints fit standard frame sizes. Simply find the frame that best suits your style. This 7 Chakra Sign Poster can be hung on the wall using mounts, clips, push pins, or thumb tacks. MATERIAL AND PRINTGING: This 7 chakra sign poster the production material is the top brand premium canvas.Adopting professionally printed with fade resistant technology and premium inks makes the printed poster more colorful and three-dimensional,ensure the posters has high clarity,all poster prints are carefully rolled and packed.To ensure they reach your hands intact. SURPRISE GIFT: It's perfect for chakra quotes collection & gift,great for home, office,birthday, holidays, kids bedroom, home & office decoration, thanksgiving, christmas, children day, party favors, office wall decorations. AFTER-SALES GUARANTEE: We are proud of our work and stand behind our product 100%. This 7 chakra sign poster is worth collecting,if you do not meet your expectations after receiving the goods, you can contact us, we will help you to get a satisfactory result."}, {"name": "Barbican Lemon Flavor Malt Beverage \" Non Alcoholic \" Drink - Pack of 6 Glass Bottles 330ML !", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.91 x 10.51 x 5.12 inches; 7.12 Pounds", "UPC\n \u200f": "\u200e\n 074265000341", "Manufacturer\n \u200f": "\u200e\n Barbican", "ASIN\n \u200f": "\u200e\n B0874Y2KJR", "Best Sellers Rank": "#62,299 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#649 in Fruit Juice Beverages #795 in Amazon Launchpad Grocery", "#649 in Fruit Juice Beverages": "", "#795 in Amazon Launchpad Grocery": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Barbican", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Barbican", "full_description": "", "pricing": "$29.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51SfaPdn3PL.jpg", "https://m.media-amazon.com/images/I/31hnuL4QyWL.jpg", "https://m.media-amazon.com/images/I/41LaMT9SQLL.jpg", "https://m.media-amazon.com/images/I/41bCSh25hLL.jpg", "https://m.media-amazon.com/images/I/51U3ST4OpKL.jpg", "https://m.media-amazon.com/images/I/51NNz9ITexL.jpg", "https://m.media-amazon.com/images/I/51QUmE8dyfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Juices \u203a Fruit Juice", "average_rating": 4, "small_description": [""], "total_reviews": 95, "total_answered_questions": "", "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0874Y5RXQ/ref=twister_B08C8PGYKY?_encoding=UTF8&psc=1", "value": "Apple", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Lemon", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0874YBW8H/ref=twister_B08C8PGYKY?_encoding=UTF8&psc=1", "value": "Malt", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0874YHHBJ/ref=twister_B08C8PGYKY?_encoding=UTF8&psc=1", "value": "Peach", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0874XC6DW/ref=twister_B08C8PGYKY?_encoding=UTF8&psc=1", "value": "Pineapple", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0874XS5L6/ref=twister_B08C8PGYKY?_encoding=UTF8&psc=1", "value": "Raspberry", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0874YZ99W/ref=twister_B08C8PGYKY?_encoding=UTF8&psc=1", "value": "Strawberry", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TP9WM9H/ref=twister_B08C8PGYKY", "value": "Pomegranate", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": true, "url": null, "value": "11.1 Fl Oz (Pack of 6)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TP36L7C/ref=twister_B08C8PGYKY?_encoding=UTF8&psc=1", "value": "11.1 Fl Oz (Pack of 24)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A2R4B1L3A6K3AY", "seller_name": "Ziyad International", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0874Y2KJR", "category": "grocery", "query": "Alcoholic Beverages", "page": 3, "small_description_old": ""}, {"name": "Custom Brands Group, Alta, Hunter Douglas Platinum Technology 2.0 Battery Wand", "product_information": {"Package Dimensions": "13.5 x 1.26 x 0.75 inches", "Item Weight": "1.58 ounces", "Manufacturer": "Alta & Hunter Douglas Window Coverings", "ASIN": "B010CBCDGK", "Customer Reviews": {"ratings_count": 28, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#623,892 in Home & Kitchen (See Top 100 in Home & Kitchen) #9,695 in Window Treatments"], "Is Discontinued By Manufacturer": "No", "Batteries Required?": "No"}, "brand": "Brand: Custom Brands Group", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Custom+Brands+Group", "full_description": "You will receive Hunter Douglas newest upgrade. Their are several part numbers that this battery wand will replace. Hunter Douglas changes the part number with every little upgrade. This will replaces all other 2.0 battery wands Powers all Platinum Technology 2.0 and 2.1 18V DC products. A label on top of the headrail will tell you if your blind is a Platinum Technology 2.0 and 2.1. This battery wand snaps onto mounting bracket located on the back side of the blind. Returns are subject to a 15% or more restocking fee depending on return condition.", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/21izvgwWYrL.jpg", "https://m.media-amazon.com/images/I/11HHoBkbhlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Window Treatments", "average_rating": 4, "small_description": ["For Hunter Douglas and Alta Duette Honeycomb Shades ", "Measures 13 1/2\" long x 1 1/4\" wide ", "18V DC Holds 12 AA alkallne Batterys ", "Cables and Batterys Not Included "], "total_reviews": 28, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B010CBCDGK", "category": "garden", "query": "Window Coverings", "page": 175, "small_description_old": "About this item\n \nFor Hunter Douglas and Alta Duette Honeycomb Shades Measures 13 1/2\" long x 1 1/4\" wide 18V DC Holds 12 AA alkallne Batterys Cables and Batterys Not Included"}, {"name": "SEGESTANA Compatible with Apple Watch Band Genuine Leather Strap for Women Men 44mm 42mm 40mm 38mm Watches Bands Sport Series SE 7 6 5 4 3 2 1 iwatch Bands B004-44", "product_information": {"Date First Available\n \u200f": "\u200e\n October 12, 2021", "ASIN\n \u200f": "\u200e\n B09J89KFHQ", "Best Sellers Rank": "#925,122 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories)#36,514 in Smartwatch Bands", "#36,514 in Smartwatch Bands": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: SEGESTANA", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=SEGESTANA", "full_description": "", "pricing": "$15.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/4162oMgM4UL.jpg", "https://m.media-amazon.com/images/I/41bcrSPAijL.jpg", "https://m.media-amazon.com/images/I/310O5sb58FL.jpg", "https://m.media-amazon.com/images/I/31Vgj1JcoyL.jpg", "https://m.media-amazon.com/images/I/31pWqO94lEL.jpg", "https://m.media-amazon.com/images/I/31iA2srTo9L.jpg", "https://m.media-amazon.com/images/I/31e8MX-TJYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Smartwatch Accessories \u203a Smartwatch Bands", "average_rating": 5, "small_description": [""], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A115M7D9WE1I6Y", "seller_name": "Segestana", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09J89KFHQ", "category": "electronics", "query": "Wearable Technology", "page": 143, "small_description_old": ""}, {"name": "Calvas Remote Control For Sony HBD-E3100 HBD-E2100 HBD-E4100 HBD-E6100 Blu-ray Home Theater System", "product_information": {"Manufacturer": "\u200eFetcus", "Part Number": "\u200eGMX-603E9625558AB630977956FC024283D7", "Material": "\u200eOther", "Item Package Quantity": "\u200e1", "ASIN": "B07W92ZTVW", "Date First Available": "August 9, 2019"}, "brand": "Brand: Fetcus", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Fetcus", "full_description": "Remote Control For Sony\u00a0 HBD-E3100\u00a0 \u00a0 HBD-E2100\u00a0 \u00a0HBD-E4100\u00a0 \u00a0HBD-E6100\u00a0 Blu-ray Home Theater SystemThis is High Quality remotes ControlCondition: NEW! We test it before delivery to make sure it's working perfect!3 Months WarrantyPackage Contents: 1X remote control\u00a0 (Batteries are not Included.)Item specifics:Use: Audio / Video PlayersWireless communication: RFModel number: HBD-E2100 HBD-E4100Package: YesChannel: 2Frequency: 433 MHzSupport app: No", "pricing": "$17.24", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/411nx14mm2L.jpg", "https://m.media-amazon.com/images/I/41mIeQPESCL.jpg", "https://m.media-amazon.com/images/I/412EQAjdBtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": "", "small_description": ["Use: Audio / Video Players ", "Wireless communication: RF ", "Model number: HBD-E2100 HBD-E4100 ", "Package: Yes ", "Channel: 2 "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AD40IG9UA51Q8", "seller_name": "goodgoodshere", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07W92ZTVW", "category": "electronics", "query": "Home Theater Systems", "page": 374, "small_description_old": "Use: Audio / Video Players Wireless communication: RF Model number: HBD-E2100 HBD-E4100 Package: Yes Channel: 2 \n \u203a See more product details"}, {"name": "LowProfile Comfortable Seamless Underpanty Lingerie for Women Sexy Ice Silk Breathable Briefs Panties Workout Sleepwear, n8", "product_information": {"Item model number\n \u200f": "\u200e\n Lowprofile Sexy Lingerie", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 28, 2021", "Manufacturer\n \u200f": "\u200e\n Lowprofile", "ASIN\n \u200f": "\u200e\n B09PBDBQ8D", "": ""}, "brand": "Brand: LowProfile", "brand_url": "https://www.amazon.com/LowProfile/b/ref=bl_sl_s_ap_web_19616108011?ie=UTF8&node=19616108011&field-lbr_brands_browse-bin=LowProfile", "full_description": "\u2764\ufe0fLowprofile--New Arrivals Everyday!\u2764\ufe0fo(*\uffe3\ufe36\uffe3*)o\u2764\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u3010Feature\u3011\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2600\ufe0fMost Novelty, Fashion, Beautiful, Special and Comfortable Lingerie styles, inspire the interest of you and your lover!\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u3010Size\u3011\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2764\ufe0fRuns Small, we suggest you choose 1 or 2 larger size.\u2764\ufe0fSize: S --US: 4 --UK: 8 --EU: 34 --Waist: 57-81cm/22.44-31.89'' --Hip: 76-86cm/29.92-33.86'' --Weight: 39-51kg/85.98-112.44lb \u2764\ufe0fSize: M --US: 6 --UK: 10 --EU: 36 --Waist: 62-89cm/24.41-35.04'' --Hip: 86-102cm/33.86-40.16'' --Weight: 52-61kg/114.64-134.48lb \u2764\ufe0fSize: L --US: 8 --UK: 12 --EU: 38 --Waist: 65-97cm/25.60-38.19'' --Hip: 102-117cm/40.16-46.06'' --Weight: 62-66kg/136.69-145.51lb \u2764\ufe0fSize: XL --US: 10 --UK: 14 --EU: 40 --Waist: 71-105cm/27.95-41.34'' --Hip: 117-128cm/46.06-50.39'' --Weight: 67-76kg/147.71-167.55lb \u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u3010Attention\u3011\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\u2600\ufe0f-More detail, please contact us and we promise to help you to Answer and Resolve the problem ASAP.", "pricing": "$9.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41wtNQOyDeL.jpg", "https://m.media-amazon.com/images/I/31PQ9-VAvxL.jpg", "https://m.media-amazon.com/images/I/31711xNwh9L.jpg", "https://m.media-amazon.com/images/I/41Q2HZvLyJL.jpg", "https://m.media-amazon.com/images/I/31VG1IDpNcL.jpg", "https://m.media-amazon.com/images/I/41SfsAvniOL.jpg", "https://m.media-amazon.com/images/I/41SfsAvniOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Lingerie \u203a Panties \u203a Briefs", "average_rating": "", "small_description": "\u2764\ufe0f Runs Small, we suggest you choose 1 or 2 larger size. Before order plz refer to our Size Chart at left picture or in description. \u2764\ufe0f Valentine's Day Deals\ud83d\udd25 Buy 5 Save 20%\ud83d\udd25 Buy 4 Save 15% \ud83d\udd25 Buy 3 Save 12%\ud83d\udd25 Buy 2 Save 8% \u2764\ufe0f The sexy lingerie set for women naughty sex play design makes you look even more glamorous. sexy and seductive to draw your lover's attention, wonderful choice for your hot night. This is the best Valentines Day gifts for her & him. \u2764\ufe0f Soft materials make you comfortable to wear and keep your body in a state of complete relaxation, high exhilarate. It gives you a soft touch and enjoys a dreamy romantic night with him. \u2764\ufe0f Suitable for Valentine's Day, Dating, Wedding Honeymoon for Bride, Anniversary, Christmas Halloween Holiday, Role Playing and Cosplay Party. This is the best gifts for her&him! \u2764\ufe0f We have in our shop a Wide Variety of Womens & Mens Clothing Styles, Sleep & Lounge Wear, Pajamas, Fishnet Stockings, Role Playing Costume, Sweatpants, Leggings, Thermal Underwear, Trousers, Babydoll Lingerie, Thongs, Panties Etc. sexy lingerie set for women for sex naughty plus size sleep & lounge play crotchless womens exotic black babydoll red mens white school girl latex cosplay anime stockings teddy bridal dress \u2764\ufe0f Sexy lingerie set for women for sex naughty play crotchless plus size womens exotic babydoll school girl corset black slutty bodysuit fishnet leather bow bondaged maid outfit holiday teddy white strappy garter stockings lace role playing push up schoolgirl exotic robe camisoles tanks baby doll one piece open crotch latex skirt goth nurse cupless sleepwear underwear lencer\u00eda sexo.", "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PBDBQ8D/ref=twister_B09PBF7JWC", "value": "1#yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41T-jDlXVfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBF4N6H/ref=twister_B09PBF7JWC", "value": "Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41mFS8sdcnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBDKHVZ/ref=twister_B09PBF7JWC", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41y6TSwHldL.jpg"}, {"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wtNQOyDeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBDYV4X/ref=twister_B09PBF7JWC", "value": "Hot Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41J27B31ynL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBDJCWS/ref=twister_B09PBF7JWC", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41f2xpBhTbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBCT8SB/ref=twister_B09PBF7JWC", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MR7rHwTfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBC5DHT/ref=twister_B09PBF7JWC", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41V+MnA7dqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PBDG57T/ref=twister_B09PBF7JWC", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41BpTrN74aL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PBC85DS"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PBG3GYB"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PBDFZCH"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PBFQZS5"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PBG3GYB", "category": "fashion", "query": "Women's Lingerie, Sleep & Lounge", "page": 150, "small_description_old": "\u2764\ufe0f Runs Small, we suggest you choose 1 or 2 larger size. Before order plz refer to our Size Chart at left picture or in description. \u2764\ufe0f Valentine's Day Deals\ud83d\udd25 Buy 5 Save 20%\ud83d\udd25 Buy 4 Save 15% \ud83d\udd25 Buy 3 Save 12%\ud83d\udd25 Buy 2 Save 8% \u2764\ufe0f The sexy lingerie set for women naughty sex play design makes you look even more glamorous. sexy and seductive to draw your lover's attention, wonderful choice for your hot night. This is the best Valentines Day gifts for her & him. \u2764\ufe0f Soft materials make you comfortable to wear and keep your body in a state of complete relaxation, high exhilarate. It gives you a soft touch and enjoys a dreamy romantic night with him. \u2764\ufe0f Suitable for Valentine's Day, Dating, Wedding Honeymoon for Bride, Anniversary, Christmas Halloween Holiday, Role Playing and Cosplay Party. This is the best gifts for her&him! \u2764\ufe0f We have in our shop a Wide Variety of Womens & Mens Clothing Styles, Sleep & Lounge Wear, Pajamas, Fishnet Stockings, Role Playing Costume, Sweatpants, Leggings, Thermal Underwear, Trousers, Babydoll Lingerie, Thongs, Panties Etc. sexy lingerie set for women for sex naughty plus size sleep & lounge play crotchless womens exotic black babydoll red mens white school girl latex cosplay anime stockings teddy bridal dress \u2764\ufe0f Sexy lingerie set for women for sex naughty play crotchless plus size womens exotic babydoll school girl corset black slutty bodysuit fishnet leather bow bondaged maid outfit holiday teddy white strappy garter stockings lace role playing push up schoolgirl exotic robe camisoles tanks baby doll one piece open crotch latex skirt goth nurse cupless sleepwear underwear lencer\u00eda sexo."}, {"name": "JETech Screen Protector for iPad Air 3 (10.5 Inch 2019 Model) and iPad Pro 10.5 (2017), Tempered Glass Film, 2-Pack", "product_information": {"Standing screen display size": "\u200e10.5 Inches", "Brand": "\u200eJETech", "Item model number": "\u200e0904A", "Item Weight": "\u200e1.48 ounces", "Product Dimensions": "\u200e8.4 x 0.01 x 6.31 inches", "Item Dimensions LxWxH": "\u200e8.4 x 0.01 x 6.31 inches", "Color": "\u200eTransparent", "Manufacturer": "\u200eJETech", "ASIN": "\u200eB07JMXLXNY", "Is Discontinued By Manufacturer": "\u200eNo", "Date First Available": "\u200eOctober 23, 2018", "Customer Reviews": {"ratings_count": 2403, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#677 in Tablet Screen Protectors"]}, "brand": "Visit the JETech Store", "brand_url": "https://www.amazon.com/stores/JETech/page/17F77063-7173-42D7-AB5B-CF7E552FDF47?ref_=ast_bln", "full_description": "", "pricing": "$11.98", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51KAO6POnVL.jpg", "https://m.media-amazon.com/images/I/411PF2j6PFL.jpg", "https://m.media-amazon.com/images/I/51W7g+f47kL.jpg", "https://m.media-amazon.com/images/I/51fTyhzpXbL.jpg", "https://m.media-amazon.com/images/I/41Aaz4iT0dL.jpg", "https://m.media-amazon.com/images/I/410ZYMDtZQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Tablet Accessories \u203a Screen Protectors", "average_rating": 4.7, "small_description": ["Exclusively For iPad Air 10.5 (2019) and iPad Pro 10.5 (2017). Fit for iPad models: A1701/A1709/A2123/A2152/A2153 ", "Extremely high hardness: resists scratches up to 9H (harder than a knife) ", "Made with high quality 0.33mm thick premium tempered glass with rounded edges. High-response and high-transparency ", "Dust-free, fingerprint-free, one-push super easy installation, bubble free ", "Retail package includes: 2-Pack tempered glass screen protector, cleaning cloth, dust removal stick, guide stick, instructions, customer service card "], "total_reviews": 2403, "total_answered_questions": 4, "model": "\u200e0904A", "customization_options": "", "seller_id": "A3INX5OKDTYMZX", "seller_name": "PCAccessory_JETech_Authorized", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07JMXLXNY", "category": "electronics", "query": "Screen Protectors", "page": 106, "small_description_old": "About this item\n \nExclusively For iPad Air 10.5 (2019) and iPad Pro 10.5 (2017). Fit for iPad models: A1701/A1709/A2123/A2152/A2153 Extremely high hardness: resists scratches up to 9H (harder than a knife) Made with high quality 0.33mm thick premium tempered glass with rounded edges. High-response and high-transparency Dust-free, fingerprint-free, one-push super easy installation, bubble free Retail package includes: 2-Pack tempered glass screen protector, cleaning cloth, dust removal stick, guide stick, instructions, customer service card"}, {"name": "Rhomtree 36\u201d Wood Console Table Sideboard Hall Table with 2 Drawers, 1 Cabinet and 1 Shelf Modern Sofa Table for Hallway, Entryway, Living Room, Kitchen (Green with Brown Top)", "product_information": {"Product Dimensions": "36.2 x 13.97 x 34.3 inches", "Item Weight": "52 pounds", "Manufacturer": "Rhomtree", "ASIN": "B09B77K9YQ", "Country of Origin": "Vietnam", "Item model number": "WF281041", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#5,222,636 in Home & Kitchen (See Top 100 in Home & Kitchen) #5,730 in Sofa Tables"], "Date First Available": "July 26, 2021"}, "brand": "Brand: Rhomtree", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Rhomtree", "full_description": "Effortlessly fill in that blank space in your home with this console table, designed to fit all of your needs and more. Crafted with a classic vintage appearance, this table comes complete with two front facing cabinet doors that open to reveal a spacious interior, perfect for stowing away your larger necessities and keeping them out of sight. The 2 drawers minimize clutter, offering plenty of space to hold smaller items such as keys or mails while the spacious bottom shelf is the perfect place for storage baskets, shoes and more. Crafted with thick Pine and MDF wood slabs and accented with quality iron handles, this piece is manufactured for quality and exudes a high-end appeal that will leave your guests talking. Weights & Dimensions: \u2611Overall :36''x13.9''x34.3'' \u2611Shelf :36''x13.3\u2019\u2019x4.5\u2019\u2019 \u2611Clearance to Floor: 4.5'' Specifications: \u27a1Table Material :Solid + Manufactured Wood \u27a1Table Base Material :Solid Wood \u27a1Base Material Details :Pine \u27a1Drawers :Yes \u27a1Number of Drawers : 2 \u27a1Shelves Included: Yes \u27a1Number of Shelves :1 \u27a1Weight Capacity :140 Pounds \u27a1Supplier Intended and Approved Use :Residential UseNumbers of package:1 Package Size: \u25b6Package 1: 39.76 * 17.52 * 22.05 inches 52.91lbs", "pricing": "$309.90", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51nhFXOj3aS.jpg", "https://m.media-amazon.com/images/I/51UYBOEZ8xS.jpg", "https://m.media-amazon.com/images/I/41KUQEWQuYS.jpg", "https://m.media-amazon.com/images/I/41ubfuO44MS.jpg", "https://m.media-amazon.com/images/I/41NkTmOSrqS.jpg", "https://m.media-amazon.com/images/I/41NFGdvntES.jpg", "https://m.media-amazon.com/images/I/41e55+1yfzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": 5, "small_description": ["\ud83d\udc4d\u3010Eye-catching Versatility\u3011Crafted for versatility, this piece can enhance a variety of spaces and surrounding decors acting as the perfect piece to bring life into any area of your home that needs it most. Great for entry hallways, dining rooms, bedrooms and more. ", "\ud83d\udc4d\u3010High Storage Capacity\u3011 With built in shelving ranging from the front double doors to the 2 drawers, users will have plenty of space to store their belongings and avoid letting clutter accumulate on the console table. ", "\ud83d\udc4d\u3010Manufactured for Quality\u3011 Thick slabs of Pine and MDF wood are expertly crafted for a quality build with solid base legs. Features a veneer reinforced upper surface to prevent wear after prolonged usage. ", "\ud83d\udc4d\u3010Modern Vintage Design\u3011Aspects of both modern and vintage come together to create this unique piece, featuring farmhouse inspired wood frame detailing on the outer drawers with contrast from the iron handles for heightened appeal. ", "\ud83d\udc4d\u3010Easy Assembly\u3011 Manufactured for easy assembly, a single person can quickly put this console table with the straightforward step by step instructions with tools included. Large cabinet weight capacity: 60 lbs, table surface weight capacity: 140lbs, Accent drawer weight capacity: 13lbs. "], "total_reviews": 1, "total_answered_questions": "", "model": "WF281041", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09B763N62/ref=twister_B09B74NHVF?_encoding=UTF8&psc=1", "value": "Green", "price_string": "$259.90", "price": 259.9, "image": "https://m.media-amazon.com/images/I/41qkCqGgiHS.jpg"}, {"is_selected": true, "url": null, "value": "Green With Brown Top", "price_string": "$309.90", "price": 309.9, "image": "https://m.media-amazon.com/images/I/51nhFXOj3aS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09B77BZZ1/ref=twister_B09B74NHVF?_encoding=UTF8&psc=1", "value": "Navy", "price_string": "$309.90", "price": 309.9, "image": "https://m.media-amazon.com/images/I/5191q3wYYRS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09B78NJKP/ref=twister_B09B74NHVF?_encoding=UTF8&psc=1", "value": "White", "price_string": "$259.90", "price": 259.9, "image": "https://m.media-amazon.com/images/I/419WbGp1nvS.jpg"}]}, "seller_id": "A2CL0PYNAJTXU4", "seller_name": "Younie", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09B77K9YQ", "category": "garden", "query": "Console tables", "page": 134, "small_description_old": "About this item\n \n\ud83d\udc4d\u3010Eye-catching Versatility\u3011Crafted for versatility, this piece can enhance a variety of spaces and surrounding decors acting as the perfect piece to bring life into any area of your home that needs it most. Great for entry hallways, dining rooms, bedrooms and more. \ud83d\udc4d\u3010High Storage Capacity\u3011 With built in shelving ranging from the front double doors to the 2 drawers, users will have plenty of space to store their belongings and avoid letting clutter accumulate on the console table. \ud83d\udc4d\u3010Manufactured for Quality\u3011 Thick slabs of Pine and MDF wood are expertly crafted for a quality build with solid base legs. Features a veneer reinforced upper surface to prevent wear after prolonged usage. \ud83d\udc4d\u3010Modern Vintage Design\u3011Aspects of both modern and vintage come together to create this unique piece, featuring farmhouse inspired wood frame detailing on the outer drawers with contrast from the iron handles for heightened appeal. \ud83d\udc4d\u3010Easy Assembly\u3011 Manufactured for easy assembly, a single person can quickly put this console table with the straightforward step by step instructions with tools included. Large cabinet weight capacity: 60 lbs, table surface weight capacity: 140lbs, Accent drawer weight capacity: 13lbs."}, {"name": "NAUTICA H120 Bluetooth Headphones, On-Ear Wireless Headphones with Built-in Microphone Bluetooth v5.0 Wireless and Wired Stereo Headset with Deep Bass, Foldable Over-Ear Headphones (White Nude)", "product_information": {"Package Dimensions": "9.06 x 8.58 x 4.17 inches", "Item Weight": "1.12 pounds", "ASIN": "B09J2QLPR1", "Customer Reviews": {"ratings_count": 2, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#1,370 in On-Ear Headphones #2,743 in Over-Ear Headphones"], "Date First Available": "October 7, 2021", "Manufacturer": "Technofashion"}, "brand": "Visit the Nautica Store", "brand_url": "https://www.amazon.com/stores/Nautica/page/AE6F8A7E-6EEF-4FB0-8A5D-0ACDEA2E0DE4?ref_=ast_bln", "full_description": "", "pricing": "$49.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31QG3Hrzh+L.jpg", "https://m.media-amazon.com/images/I/41Ftx8xxf9L.jpg", "https://m.media-amazon.com/images/I/41ppn4dL60L.jpg", "https://m.media-amazon.com/images/I/51XFETFbsqL.jpg", "https://m.media-amazon.com/images/I/41W+X6JluTL.jpg", "https://m.media-amazon.com/images/I/411cmP+b5tL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Headphones \u203a Over-Ear Headphones", "average_rating": 4, "small_description": ["ASTONISHING SOUND QUALITY: Nautica H120 Sport Bluetooth headphones are equipped with 1.57 in / 40 mm speaker drivers, which provide the headphones powerful bass, clear vocal, and energizing high tones with perfect balanced sound. Wireless Bluetooth headset can be used for making hands-free calls within 33ft/10m wireless range. ", "WIDE COMPATIBILITY: Nautica H120 Bluetooth headphones fit most Bluetooth devices, like pc, cellphone, tablets & tv. Nautica H120 wireless headphones are a good companion for leisure, working, studying, running, and travel. Stunning design and superb performance are going to be an ideal surprising gift on any special holidays or birthdays. ", "SEAMLESS BLUETOOTH CONNECTION: H120 Bluetooth headphones built to supply a fast and stable Bluetooth v5.0 connection. When powered on, the headphones will automatically connect to the latest successfully paired device. You can also receive calls and have hands-free communication through Nautica H120 wireless headphones. ", "LONG BATTERY LIFE & DUAL MOD: The over ear headphones are Rechargeable, 500 mAh battery provides up to 20 hours of play time. The headphones will come with a 4 feet long aux cable. You do not need to worry about low battery problems for the long trip. You can switch to wired mode and enjoy your music NON-STOP. ", "COMFORTABLE & CONVENIENT: H120 On-Ear wireless Headphones, ultra-soft foldable design, not only saves space but also makes it portable. You can easily fold up and carry Nautica H120 with the complimentary storage pouch. while the lightweight build ensures they sit comfortably during listening sessions "], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09J2SDYHZ/ref=twister_B09J2QDWVZ?_encoding=UTF8&psc=1", "value": "BLACK BLACK", "price_string": "$49.99", "price": 49.99, "image": "https://m.media-amazon.com/images/I/31n9x9Bu2dL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J2PRXR8/ref=twister_B09J2QDWVZ?_encoding=UTF8&psc=1", "value": "NAVY NAVY", "price_string": "$49.99", "price": 49.99, "image": "https://m.media-amazon.com/images/I/31w+bmaHt9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J2QNJ19/ref=twister_B09J2QDWVZ?_encoding=UTF8&psc=1", "value": "NAVY RED", "price_string": "$49.99", "price": 49.99, "image": "https://m.media-amazon.com/images/I/31P-4VzLJUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HZ5C3QY/ref=twister_B09J2QDWVZ?_encoding=UTF8&psc=1", "value": "NAVY YELLOW", "price_string": "$49.99", "price": 49.99, "image": "https://m.media-amazon.com/images/I/31awp7HjZML.jpg"}, {"is_selected": true, "url": null, "value": "WHITE NUDE", "price_string": "$49.99", "price": 49.99, "image": "https://m.media-amazon.com/images/I/31QG3Hrzh+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J2S4CXF/ref=twister_B09J2QDWVZ?_encoding=UTF8&psc=1", "value": "WHITE OFF WHITE", "price_string": "$49.99", "price": 49.99, "image": "https://m.media-amazon.com/images/I/31kvb3k8jlL.jpg"}]}, "seller_id": "AZVXERY0YAKRU", "seller_name": "TECHNOFASHION", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09J2QLPR1", "category": "electronics", "query": "Headphones", "page": 257, "small_description_old": "About this item\n \nASTONISHING SOUND QUALITY: Nautica H120 Sport Bluetooth headphones are equipped with 1.57 in / 40 mm speaker drivers, which provide the headphones powerful bass, clear vocal, and energizing high tones with perfect balanced sound. Wireless Bluetooth headset can be used for making hands-free calls within 33ft/10m wireless range. WIDE COMPATIBILITY: Nautica H120 Bluetooth headphones fit most Bluetooth devices, like pc, cellphone, tablets & tv. Nautica H120 wireless headphones are a good companion for leisure, working, studying, running, and travel. Stunning design and superb performance are going to be an ideal surprising gift on any special holidays or birthdays. SEAMLESS BLUETOOTH CONNECTION: H120 Bluetooth headphones built to supply a fast and stable Bluetooth v5.0 connection. When powered on, the headphones will automatically connect to the latest successfully paired device. You can also receive calls and have hands-free communication through Nautica H120 wireless headphones. LONG BATTERY LIFE & DUAL MOD: The over ear headphones are Rechargeable, 500 mAh battery provides up to 20 hours of play time. The headphones will come with a 4 feet long aux cable. You do not need to worry about low battery problems for the long trip. You can switch to wired mode and enjoy your music NON-STOP. COMFORTABLE & CONVENIENT: H120 On-Ear wireless Headphones, ultra-soft foldable design, not only saves space but also makes it portable. You can easily fold up and carry Nautica H120 with the complimentary storage pouch. while the lightweight build ensures they sit comfortably during listening sessions"}, {"name": "Adjustable Cell Phone Stand, Lamicall Desk Phone Holder, Cradle, Dock, Compatible with All 4-8'' Phones, Office Accessories, All Android Smartphone - Black", "product_information": {"Product Dimensions": "3 x 3 x 4 inches", "Item Weight": "4.2 ounces", "ASIN": "B01M7U6F8T", "Item model number": "A-Stand B", "Customer Reviews": {"ratings_count": 30214, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#477 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #14 in Cell Phone Stands"], "Is Discontinued By Manufacturer": "No", "Special Features": "Watch videos / Make Face-time Calls", "Other display features": "Wireless", "Form Factor": "Cell phone stand holder", "Colour": "Black", "Department": "PHONE STAND", "Manufacturer": "Lamicall", "Date First Available": "October 25, 2016"}, "brand": "Visit the Lamicall Store", "brand_url": "https://www.amazon.com/stores/Lamicall/page/9C2768A2-32AA-4A9D-BED9-4EB7FC80F23E?ref_=ast_bln", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41ysLf9rlXL.jpg", "https://m.media-amazon.com/images/I/41EHnRqPs1L.jpg", "https://m.media-amazon.com/images/I/516OXtOO0eL.jpg", "https://m.media-amazon.com/images/I/41TbgZVviOL.jpg", "https://m.media-amazon.com/images/I/418Y6fF0C7L.jpg", "https://m.media-amazon.com/images/I/418VfpBIDgL.jpg", "https://m.media-amazon.com/images/I/51sTyjEP3AL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Stands", "average_rating": 4.8, "small_description": ["\u3010Universal Compatibility\u3011Lamicall cell phone stand can work with all smartphones from 4-8 inches, like Apple iPhone 13 Mini, iPhone 13, iPhone 13 Pro, iPhone 13 Pro Max, 12 Mini, 12, 12 Pro, 12 Pro Max, 11 Pro, 11, 11 Pro Max, SE 2020, XS, XS Max, XR, X, 8 7 6 Plus, Switch, Galaxy S21 Ultra, S20, S10, S9, S9 Plus, A71, A51, A11, Edge, Note 20 ultra Google Pixel,LG, LG,Nexus, HTC, Google Pixel, Huawei Mate Pro, Xiaomi Redmi, even with a case on. ", "\u3010Desktop Partner\u3011Great desk accessories for office and home. A smartphone stand with perfect viewing angle for making phone calls, watching movies, viewing recipes and using facetime. ", "\u3010Sleek and Elegant\u3011Made of high-quality aluminum alloy, this desk phone holder has a smooth edge, a nice finish and beautiful metallic luster. It looks sleek and elegant on your desktop. ", "\u3010Stable and Protective\u3011This phone dock with a low gravity center can hold your phone stably. Besides, its rubber cushions protect the phone from scratches and sliding. ", "\u3010Warm Tips\u3011The hook width of the mobile phone stand is 14mm, please make sure the thickness of your device is no more than 14mm (0.55 in). For a cell phone larger than 6 inches, kindly set it in landscape mode for more stability. "], "total_reviews": 30214, "total_answered_questions": 211, "model": "A-Stand B", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$12.99", "price": 12.99, "image": "https://m.media-amazon.com/images/I/41ysLf9rlXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B072MZB2TW/ref=twister_B07KN3H32F?_encoding=UTF8&psc=1", "value": "Gray", "price_string": "$13.99", "price": 13.99, "image": "https://m.media-amazon.com/images/I/41mrovKfd6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B071CTBNND/ref=twister_B07KN3H32F?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$13.99", "price": 13.99, "image": "https://m.media-amazon.com/images/I/413x1dwKKmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08C9JPNVF/ref=twister_B07KN3H32F?_encoding=UTF8&psc=1", "value": "Rose Gold", "price_string": "$13.99", "price": 13.99, "image": "https://m.media-amazon.com/images/I/414jhF27+DL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01M4NOUMB/ref=twister_B07KN3H32F?_encoding=UTF8&psc=1", "value": "Silver", "price_string": "$12.99", "price": 12.99, "image": "https://m.media-amazon.com/images/I/41otg0+E0xL.jpg"}]}, "seller_id": "A2D7ZWM1V15W1N", "seller_name": "LamicallDirect", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01M7U6F8T", "category": "electronics", "query": "Cell Phones", "page": 9, "small_description_old": "About this item \u3010Universal Compatibility\u3011Lamicall cell phone stand can work with all smartphones from 4-8 inches, like Apple iPhone 13 Mini, iPhone 13, iPhone 13 Pro, iPhone 13 Pro Max, 12 Mini, 12, 12 Pro, 12 Pro Max, 11 Pro, 11, 11 Pro Max, SE 2020, XS, XS Max, XR, X, 8 7 6 Plus, Switch, Galaxy S21 Ultra, S20, S10, S9, S9 Plus, A71, A51, A11, Edge, Note 20 ultra Google Pixel,LG, LG,Nexus, HTC, Google Pixel, Huawei Mate Pro, Xiaomi Redmi, even with a case on. \u3010Desktop Partner\u3011Great desk accessories for office and home. A smartphone stand with perfect viewing angle for making phone calls, watching movies, viewing recipes and using facetime. \u3010Sleek and Elegant\u3011Made of high-quality aluminum alloy, this desk phone holder has a smooth edge, a nice finish and beautiful metallic luster. It looks sleek and elegant on your desktop. \u3010Stable and Protective\u3011This phone dock with a low gravity center can hold your phone stably. Besides, its rubber cushions protect the phone from scratches and sliding. \u3010Warm Tips\u3011The hook width of the mobile phone stand is 14mm, please make sure the thickness of your device is no more than 14mm (0.55 in). For a cell phone larger than 6 inches, kindly set it in landscape mode for more stability."}, {"name": "Latitude 7212 Rugged 11.6 FHD Tablet w/ i7-8650U / 8GB RAM / 256GB SSD/Windows 10 Pro - Single Battery (Renewed)", "product_information": {"Standing screen display size": "\u200e11.6 Inches", "RAM": "\u200e8 GB", "Hard Drive": "\u200e256 GB", "Brand": "\u200eGenuine", "Series": "\u200eLatitude", "Hardware Platform": "\u200eWindows", "Operating System": "\u200eWindows 10 Professional", "Flash Memory Size": "\u200e256 GB", "ASIN": "B08LWWRDCB", "Date First Available": "October 26, 2020"}, "brand": "Brand: Amazon Renewed", "brand_url": "https://www.amazon.com/Amazon-Renewed/b/ref=bl_dp_s_web_12653393011?ie=UTF8&node=12653393011&field-lbr_brands_browse-bin=Amazon+Renewed", "full_description": "This pre-owned or refurbished product has been professionally inspected and tested to work and look like new. How a product becomes part of Amazon Renewed, your destination for pre-owned, refurbished products: A customer buys a new product and returns it or trades it in for a newer or different model. That product is inspected and tested to work and look like new by Amazon-qualified suppliers. Then, the product is sold as an Amazon Renewed product on Amazon. If not satisfied with the purchase, renewed products are eligible for replacement or refund under the Amazon Renewed Guarantee.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51CPzT1kAsL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computers & Tablets \u203a Tablets", "average_rating": "", "small_description": ["Dell Latitude 7212 Rugged 11.6\" FHD Tablet w/ i7-8650U / 8GB RAM / 256GB SSD / Windows 10 Pro - SINGLE BATTERY ", "Tablet comes with ONE battery "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08LWWRDCB", "category": "electronics", "query": "Tablets", "page": 218, "small_description_old": "About this item\n \nDell Latitude 7212 Rugged 11.6\" FHD Tablet w/ i7-8650U / 8GB RAM / 256GB SSD / Windows 10 Pro - SINGLE BATTERY Tablet comes with ONE battery \n \u203a See more product details"}, {"name": "Spa Headbands, Coral Fleece Makeup Headband Cosmetic Headband, Lovely Face Washing Headband Shower Headbands Headwraps, Soft Bowknot Spa Hair Band Spa Birthday Party Supplies (9 Colors)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.65 x 8.66 x 3.19 inches; 11.36 Ounces", "UPC\n \u200f": "\u200e\n 730718217123", "Manufacturer\n \u200f": "\u200e\n M&C Music Color", "ASIN\n \u200f": "\u200e\n B083YVHBXH", "Best Sellers Rank": "#33,567 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#612 in Women's Fashion Headbands", "#612 in Women's Fashion Headbands": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the M&C Music Color Store", "brand_url": "https://www.amazon.com/stores/MCMusicColor/page/FBFAF17D-17A5-472B-BF9C-C1078457BAC2?ref_=ast_bln", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51CiPQLLiFL.jpg", "https://m.media-amazon.com/images/I/51T63HrEYqL.jpg", "https://m.media-amazon.com/images/I/41UU917k7SL.jpg", "https://m.media-amazon.com/images/I/41kxVkZh0gL.jpg", "https://m.media-amazon.com/images/I/41ctfUyJ+uL.jpg", "https://m.media-amazon.com/images/I/51ke5V8z4iL.jpg", "https://m.media-amazon.com/images/I/51vsVvXy9AL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Accessories \u203a Headbands", "average_rating": 4.8, "small_description": ["\u3010INTERESTING STYLING\u3011Cute bow shape, sexy and 9 sweet colors assorted, (keeping the hairstyle, no longer affecting the mood because of the hair), the practical and distinctive spa hair wrap is worth having. ", "\u3010SOFT & DURABLE MATERIALS\u3011The cosmetic hairband is 100% Elastic Microfiber Fleece, Double-layered high-quality coral velvet, extremely soft, cushy, adorable, intimate for your skin. ", "\u3010SUPER QUALITY & PERFECT SIZE\u3011Elastic, thick, can be stretched to 11.8\", keep in place well, whether it is a child or an adult, it is suitable and comfortable to wear. ", "\u3010VARIOUS CHOICES\u3011Face wash headband\u2019s bowknot shaped on the top of headband, makes you look so extraordinary and sweet. Include 9 Pieces different stylish headbands (as the picture show) meeting your different needs, also a good choice to be the gift for your friends. ", "\u3010WIDE APPLICATION\u3011Our facial headband works great to keep your hair out of your face when brushing teeth, washing face or any time you. It applies to all styles and lengths of hair, covering your ear and holding back your hair to middle of your head "], "total_reviews": 609, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B081VWG2TR/ref=twister_B083Z1L5XD?_encoding=UTF8&psc=1", "value": "12 Colors", "price_string": "$16.99", "price": 16.99, "image": "https://m.media-amazon.com/images/I/51FoGACUDqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YDNJHVF/ref=twister_B083Z1L5XD?_encoding=UTF8&psc=1", "value": "12PCS Bow Hair Band", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/51xmAqh7oVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0858Z9FCH/ref=twister_B083Z1L5XD?_encoding=UTF8&psc=1", "value": "6 Pack", "price_string": "$12.99", "price": 12.99, "image": "https://m.media-amazon.com/images/I/51nf89kCBOL.jpg"}, {"is_selected": true, "url": null, "value": "9 Colors", "price_string": "$12.99", "price": 12.99, "image": "https://m.media-amazon.com/images/I/51CiPQLLiFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N36W9T7/ref=twister_B083Z1L5XD?_encoding=UTF8&psc=1", "value": "Multicolor 9", "price_string": "$12.99", "price": 12.99, "image": "https://m.media-amazon.com/images/I/415b4wQyPVL.jpg"}]}, "seller_id": "A70HQPF0KQ23T", "seller_name": "M&C Music Color", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B083YVHBXH", "category": "beauty", "query": "Hair Masks", "page": 65, "small_description_old": "About this item \u3010INTERESTING STYLING\u3011Cute bow shape, sexy and 9 sweet colors assorted, (keeping the hairstyle, no longer affecting the mood because of the hair), the practical and distinctive spa hair wrap is worth having. \u3010SOFT & DURABLE MATERIALS\u3011The cosmetic hairband is 100% Elastic Microfiber Fleece, Double-layered high-quality coral velvet, extremely soft, cushy, adorable, intimate for your skin. \u3010SUPER QUALITY & PERFECT SIZE\u3011Elastic, thick, can be stretched to 11.8\", keep in place well, whether it is a child or an adult, it is suitable and comfortable to wear. \u3010VARIOUS CHOICES\u3011Face wash headband\u2019s bowknot shaped on the top of headband, makes you look so extraordinary and sweet. Include 9 Pieces different stylish headbands (as the picture show) meeting your different needs, also a good choice to be the gift for your friends. \u3010WIDE APPLICATION\u3011Our facial headband works great to keep your hair out of your face when brushing teeth, washing face or any time you. It applies to all styles and lengths of hair, covering your ear and holding back your hair to middle of your head"}, {"name": "Mens Running Tennis Blade Shoes Lightweight Casual Walking Sneakers Mesh Breathable Sport Sneakers Sheet Shoes", "product_information": {"Item Weight\n \u200f": "\u200e\n 7.05 Ounces", "Item model number\n \u200f": "\u200e\n Shoe for Women", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n May 12, 2021", "Manufacturer\n \u200f": "\u200e\n Shoe for Women", "ASIN\n \u200f": "\u200e\n B094R8NPKK", "Best Sellers Rank": "#6,421,291 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#39,482 in Women's Fashion Sneakers", "#39,482 in Women's Fashion Sneakers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: PMUYBHF", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=PMUYBHF", "full_description": "Are you looking for outstanding and comfortable running shoes? We always insists on using the best technologies and highest quality materials to produce the series of running shoes, providing you innovative, functional and stylish products. If you have any complaint or suggestion about our products or service, please send the email to us for anytime. We will give your a satisfying reply as soon as possible. Men Women's Walking Shoes Slip On Athletic Running Sneakers Knit Mesh Comfortable Work Shoe Women's Lace-up Active Sneaker - Ladies Walking Sneakers with Concealed Orthotic Arch Support Women's Brisk Slip-on Walking Shoes - Ladies Active Sneakers with Concealed Orthotic Arch Support Women's Walking Shoes Athletic Slip on Comfort Breathable Memory Foam Lightweight Casual Woven Sneakers Flats Womens Diabetic Walking Shoes Air Cushion Breathable Mesh Adjustable Outdoor Sneakers Recovery Easy On Off Strap Slip-On Slippers Comfort for Elderly Swollen Feet, Edema, Foot Pain Women's Walking Shoes Sock Sneakers - Mesh Slip On Air Cushion Lady Girls Modern Jazz Dance Easy Shoes Platform Loafers", "pricing": "$27.00", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51-wTh9LzaL.jpg", "https://m.media-amazon.com/images/I/515tmsaWSEL.jpg", "https://m.media-amazon.com/images/I/51POnRvJ3gL.jpg", "https://m.media-amazon.com/images/I/51c8gmmacvL.jpg", "https://m.media-amazon.com/images/I/518d+oWPHsL.jpg", "https://m.media-amazon.com/images/I/51TUeGbV73L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes", "average_rating": 4, "small_description": ["Shoe for Women ", "Shoe for Women ", "Rubber sole ", "Heel measures approximately Shoe for Women\" ", "Rubber material of sole possesses high durability for prolonging the wearing time of our shoes. ", "Breathable mesh upper sport shoes, expand with your foot when you run and they more comfortable closely fit to help you reduce irritation. ", "Knit upper material make it possible that your feet free breath when you run or walk. It's soft and protective to cushion your every step. , Breathable,durable,lightweight,soft,deodorant.After you walk through the day's work with these shoes, you can keep the shoes dry and comfortable. This is a great feeling., Fits for long time standing work,walking,casual,floor shoes,plantar fasciitis,nursing,fishing,gardening,dress,shopping,travel,driving,jazz,tap dance,street jazz,ballet,folk dance,zumba,athletic,workout.Women Men Sock Walking Shoes Elevator Hippy Nursing Maternity Shoes Casual Flat Slip On Loafers Sneakers Workout Gym Yellow Red Purple Mesh Standing Work Shoes"], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "8 Narrow", "asin": "B094RDG97T"}, {"is_selected": false, "is_available": true, "value": "8.5 Narrow", "asin": "B094RBX7QF"}, {"is_selected": false, "is_available": true, "value": "9 Narrow", "asin": "B094RBNS2K"}, {"is_selected": false, "is_available": true, "value": "9.5 Narrow", "asin": "B094RDL8V8"}, {"is_selected": false, "is_available": true, "value": "10.5 Narrow", "asin": "B094RBX5DY"}, {"is_selected": false, "is_available": true, "value": "11 Narrow", "asin": "B094RDZZX6"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B094R8NPKK/ref=twister_B094R9P7XJ", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hhwFvmdXL.jpg"}, {"is_selected": true, "url": null, "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51-wTh9LzaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B094RCKPJC/ref=twister_B094R9P7XJ", "value": "Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41bOL8OmXaL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B094RBNS2K", "category": "fashion", "query": "Women's Work & Safety Footwear", "page": 30, "small_description_old": "Shoe for Women Shoe for Women Rubber sole Heel measures approximately Shoe for Women\" Rubber material of sole possesses high durability for prolonging the wearing time of our shoes. Breathable mesh upper sport shoes, expand with your foot when you run and they more comfortable closely fit to help you reduce irritation. Knit upper material make it possible that your feet free breath when you run or walk. It's soft and protective to cushion your every step. \n Breathable,durable,lightweight,soft,deodorant.After you walk through the day's work with these shoes, you can keep the shoes dry and comfortable. This is a great feeling.Fits for long time standing work,walking,casual,floor shoes,plantar fasciitis,nursing,fishing,gardening,dress,shopping,travel,driving,jazz,tap dance,street jazz,ballet,folk dance,zumba,athletic,workout.Women Men Sock Walking Shoes Elevator Hippy Nursing Maternity Shoes Casual Flat Slip On Loafers Sneakers Workout Gym Yellow Red Purple Mesh Standing Work ShoesShow more"}, {"name": "OUAI Curl Cr\u00e8me, The Universal Cr\u00e8me for All Curl Types, Fragrance-Free, 8 Fluid Ounces", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.95 x 2.8 x 1.93 inches; 9.52 Ounces", "UPC\n \u200f": "\u200e\n 815402023362", "Manufacturer\n \u200f": "\u200e\n OUAI", "ASIN\n \u200f": "\u200e\n B08WG7VLQF", "Best Sellers Rank": "#15,964 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#284 in Hair Styling Gels", "#284 in Hair Styling Gels": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the OUAI Store", "brand_url": "https://www.amazon.com/stores/OUAI/page/51BFC18E-6EF2-4D38-9DBB-86B9D8B41EF7?ref_=ast_bln", "full_description": "", "pricing": "$32.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21vNlWvprCL.jpg", "https://m.media-amazon.com/images/I/21Y-TZ1vuVL.jpg", "https://m.media-amazon.com/images/I/31ayxy6-LUL.jpg", "https://m.media-amazon.com/images/I/410N5jxtSwL.jpg", "https://m.media-amazon.com/images/I/51Mse6A+skL.jpg", "https://m.media-amazon.com/images/I/51FrZLnyC3S.jpg", "https://m.media-amazon.com/images/I/51WzdMH8KWS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Styling Products \u203a Gels", "average_rating": 4.4, "small_description": ["Let\u2019s Hear It For the Curls! Dreamed up by you, made by OUAI. After working with 150 community members over one full year of testing, we created a do-it-all curl cr\u00e8me for all curl types\u2014from curly to coily and fine to thick. OUAI Curl Cr\u00e8me defines curls, reduces frizz, and adds shine. Plus, the fragrance-free formula is ready to use as a mixer in your next curl cocktail. ", "This Is What Cremes Are Made Of. Want soft, bouncy curls? OUAI Curl Cr\u00e8me adds just the right amount of moisture and definition to every curl. Use it on wet or dry hair in any routine, from twist-outs to wash-n-go\u2019s, for soft and defined curls. Its unique texture starts out thick like your favorite ice cream, and melts into your hair like an oil. No residue, sticky fingers or crunchy curls. ", "OUAI Means Yes. In that casual Parisian way. OUAI is about being better IRL than on Instagram. It\u2019s about having honest conversations with our community. It\u2019s about letting go of unrealistic expectations and embracing your imperfections. ", "Ingredients That Get The Job Done. All OUAI products are carefully crafted to cut styling time and nourish your hair health. We put the good stuff in and leave the bad stuff out, without ever sacrificing quality. We are always trying to do better for the planet. ", "For Real Life, For Real People. Celebrity stylist Jen Atkin had used every product on the market but couldn\u2019t find a brand she or her friends could relate to. OUAI offers luxury products at affordable prices that are user friendly- no glam squad needed. "], "total_reviews": 146, "total_answered_questions": "", "customization_options": {"Scent": [{"is_selected": true, "url": null, "value": "Fragrance Free", "price_string": "$32.00", "price": 32, "image": "https://m.media-amazon.com/images/I/21vNlWvprCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WG4CVSH/ref=twister_B08Y56TCW2?_encoding=UTF8&psc=1", "value": "North Bondi Scented", "price_string": "$32.00", "price": 32, "image": "https://m.media-amazon.com/images/I/21m212Upk7L.jpg"}]}, "seller_id": "A37ZSWO6PFG1ND", "seller_name": "Quiverr", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08WG7VLQF", "category": "beauty", "query": "Styling Products", "page": 29, "small_description_old": "About this item Let\u2019s Hear It For the Curls! Dreamed up by you, made by OUAI. After working with 150 community members over one full year of testing, we created a do-it-all curl cr\u00e8me for all curl types\u2014from curly to coily and fine to thick. OUAI Curl Cr\u00e8me defines curls, reduces frizz, and adds shine. Plus, the fragrance-free formula is ready to use as a mixer in your next curl cocktail. This Is What Cremes Are Made Of. Want soft, bouncy curls? OUAI Curl Cr\u00e8me adds just the right amount of moisture and definition to every curl. Use it on wet or dry hair in any routine, from twist-outs to wash-n-go\u2019s, for soft and defined curls. Its unique texture starts out thick like your favorite ice cream, and melts into your hair like an oil. No residue, sticky fingers or crunchy curls. OUAI Means Yes. In that casual Parisian way. OUAI is about being better IRL than on Instagram. It\u2019s about having honest conversations with our community. It\u2019s about letting go of unrealistic expectations and embracing your imperfections. Ingredients That Get The Job Done. All OUAI products are carefully crafted to cut styling time and nourish your hair health. We put the good stuff in and leave the bad stuff out, without ever sacrificing quality. We are always trying to do better for the planet. For Real Life, For Real People. Celebrity stylist Jen Atkin had used every product on the market but couldn\u2019t find a brand she or her friends could relate to. OUAI offers luxury products at affordable prices that are user friendly- no glam squad needed."}, {"name": "Russell Athletic mens Hoodie", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 13 x 8 x 1 inches; 1.29 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 22, 2020", "ASIN\n \u200f": "\u200e\n B08R7SXHQZ", "Best Sellers Rank": "#1,034,801 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,198 in Men's Sweatshirts", "#1,198 in Men's Sweatshirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Russell Athletic", "brand_url": "https://www.amazon.com/Russell-Athletic/b/ref=bl_sl_s_ap_web_2599924011?ie=UTF8&node=2599924011&field-lbr_brands_browse-bin=Russell+Athletic", "full_description": "", "pricing": "$21.00$44.08", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31z26GnAS7L.jpg", "https://m.media-amazon.com/images/I/31rtpo4H0oL.jpg", "https://m.media-amazon.com/images/I/41V-beXMfBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Hoodies", "average_rating": 5, "small_description": ["2-ply hood with grommets ", "Matching drawcord ", "Ribbed knit cuffs and waistband ", "Front pouch pocket R\" Russell Athletic logo tab on left hem ", "Russell Athletic knows sweatshirts. Theyve been making them for more than 80 years. The Russell Athletic Mens Dri-Power Fleece Hoodie features moisture-wicking fabric, front muff pocket, ribbed cuffs and waistband, three-end fleece, and a knit drawcord. Stay dry as you sweat. "], "total_reviews": 3, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B08R7SXHQZ"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08R7STMBS"}, {"is_selected": false, "is_available": false, "value": "Large", "asin": "B08R7T7WJK"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B08R7VGZZG"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B08R7V3F98"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B08R7S867J"}], "Color": [{"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31z26GnAS7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08R7SYB1W/ref=twister_B09TJWQJTX", "value": "Oxford", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31SFhsyUlpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08R7TQ5BF/ref=twister_B09TJWQJTX", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31RwxS7HYdL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08R7STMBS", "category": "fashion", "query": "Men's Fashion Hoodies & Sweatshirts", "page": 35, "small_description_old": "2-ply hood with grommets Matching drawcord Ribbed knit cuffs and waistband Front pouch pocket R\" Russell Athletic logo tab on left hem Russell Athletic knows sweatshirts. Theyve been making them for more than 80 years. The Russell Athletic Mens Dri-Power Fleece Hoodie features moisture-wicking fabric, front muff pocket, ribbed cuffs and waistband, three-end fleece, and a knit drawcord. Stay dry as you sweat."}, {"name": "Replacement Remote Control for NB820UD - Magnavox HDD/DVD Recorder", "product_information": {"Package Dimensions": "7.83 x 2.17 x 1.02 inches", "Item Weight": "2.78 ounces", "ASIN": "B07CZPMFQ2", "Item model number": "8541715031", "Customer Reviews": {"ratings_count": 41, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#10,317 in Remote Controls (Electronics)"], "Is Discontinued By Manufacturer": "No", "Date First Available": "May 10, 2018", "Manufacturer": "PURE remote"}, "brand": "Brand: PURE PLANT HOME", "brand_url": "https://www.amazon.com/PURE-PLANT-HOME/b/ref=bl_dp_s_web_4649587011?ie=UTF8&node=4649587011&field-lbr_brands_browse-bin=PURE+PLANT+HOME", "full_description": "Replacement remote control for Magnavox NB820UD For model numbers: H2160MW9 H2160MW9A MDR513H MDR513H/F7 MDR513HF7", "pricing": "$12.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41hudZud0CL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": 4.6, "small_description": ["For model numbers: H2160MW9 H2160MW9A MDR513H MDR513H/F7 MDR513HF7 ", "Brand New Unit "], "total_reviews": 41, "total_answered_questions": 4, "model": "8541715031", "customization_options": "", "seller_id": "AP651I47YQC66", "seller_name": "New Remotes Inc", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07CZPMFQ2", "category": "electronics", "query": "DVD Players & Recorders", "page": 5, "small_description_old": "Replacement remote control for Magnavox NB820UD For model numbers: H2160MW9 H2160MW9A MDR513H MDR513H/F7 MDR513HF7 Brand New Unit"}, {"name": "Wood Beaded Chandelier Farmhouse Flush Mount Ceiling Light 3-Light Boho Chandelier for Bedroom,Hallway,Entryway,Lounge and Foyer", "product_information": {"Brand": "\u200eAxamate", "Manufacturer": "\u200eAxamate", "Item Weight": "\u200e4.5 pounds", "Product Dimensions": "\u200e11.8 x 11.8 x 9 inches", "Item model number": "\u200eFBA-MZC3032", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Height": "\u200e9 inches", "Assembled Length": "\u200e11.8 inches", "Assembled Width": "\u200e11.8 inches", "Assembled Depth": "\u200e12.6 inches", "Assembled Diameter": "\u200e12.6 inches", "Item Package Quantity": "\u200e1", "Style": "\u200eModern", "Color": "\u200ePendant", "Shape": "\u200eDrum", "Material": "\u200eIron", "Number of Lights": "\u200e3", "Specific Uses": "\u200eIndoor use only", "Special Features": "\u200eNot Dimmable", "Shade Material": "\u200eMetal, Wood, Iron", "Power Source": "\u200eCorded-electric", "Switch Installation Type": "\u200eCeiling Mount", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Certification": "\u200eNo", "Type of Bulb": "\u200eIncandescent, LED, CFL, halogen", "Wattage": "\u200e240 watts", "ASIN": "B091CNTBNS", "Customer Reviews": {"ratings_count": 39, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#341,973 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #2,336 in Chandeliers"], "Date First Available": "March 29, 2021"}, "brand": "Visit the Axamate Store", "brand_url": "https://www.amazon.com/stores/AXAMATE/page/07305612-7646-4AC0-9CD4-A0EEFFC24D0F?ref_=ast_bln", "full_description": "In the fashion industry nowadays, the bohemian style has become the inevitable fashion element. More and more young people are attracted to it, whilst we were inspired to bring you this wood-beaded chandelier. SPECIFICATION : Light body: L11.8\" x W11.8\" x H9\" Style: Farmhouse/Bohemian style Ceiling Canopy Diameter: 4.7\" Material: Wood + Metal Number of Bulbs: 3 Bulb Base: E12 Wattage per Bulb: Max 60 W Bulbs Included or Not: Not included Type of Bulb: dimmable bulb, LED, halogen, incandescent, CFL Input: AC 110V - 120V Assembly Required: Yes, easy to assemble Warranty: One year warranty", "pricing": "$55.19", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/516DWfz22ZL.jpg", "https://m.media-amazon.com/images/I/51-NidHHzTL.jpg", "https://m.media-amazon.com/images/I/41ZIjFbvgUL.jpg", "https://m.media-amazon.com/images/I/51VRVF6p9zL.jpg", "https://m.media-amazon.com/images/I/512Sgrh5zlL.jpg", "https://m.media-amazon.com/images/I/512PrUC-GjL.jpg", "https://m.media-amazon.com/images/I/51osO20mm0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Chandeliers", "average_rating": 4.7, "small_description": ["\u3010Boho Design\u3011This beaded light fixture combine with oak-wood finished hardware and nature wood beaded creating a boho yet modern atmosphere, adding a classic bohemian style. The mount bracket of this chandelier is made of iron and processed of wood-like handpainted, which is anti-corrosive and rust-proof, durable, and easy to clean. ", "\u3010Wide Application\u3011Mini light body size: D11.8\" x H9\". Ceiling canopy diameter 4.7\". This farmhouse ceiling fan is ideal for bedroom, entryway, hallway, girl's room. ", "\u3010Bulb and Source Type\u30113 x E12 x Max 60 Watts, Bulb is NOT included. Compatible with incandescent, LED, CFL, halogen or dimmable bulbs. Hollowed wood beaded design give off enough light to light up your room. It's good for relaxing and winding down in the evening ", "\u3010Easy installation\u3011 We have strung the beads together, just hang them on the lamp. It will be worth it when lamp is fitted up. ", "\u3010Worry-Free Guarante\u3011The bulb base and wires of this flush mount ceiling light fixture are UL LISTED. We provide 30 days free exchange or refund, and 1-years warranty (can mail replacement or partially refund). If you have any questions, please contact us. "], "total_reviews": 39, "total_answered_questions": 8, "model": "\u200eFBA-MZC3032", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Pendant", "price_string": "$55.19", "price": 55.19, "image": "https://m.media-amazon.com/images/I/41GKXfGMkrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PCYVQ9X/ref=twister_B097B8H8HL?_encoding=UTF8&psc=1", "value": "Semi Flush Mount", "price_string": "$59.99", "price": 59.99, "image": "https://m.media-amazon.com/images/I/41IqN5oE+ML.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B091CNTBNS", "category": "garden", "query": "Pendants and Chandeliers", "page": 109, "small_description_old": "About this item \u3010Boho Design\u3011This beaded light fixture combine with oak-wood finished hardware and nature wood beaded creating a boho yet modern atmosphere, adding a classic bohemian style. The mount bracket of this chandelier is made of iron and processed of wood-like handpainted, which is anti-corrosive and rust-proof, durable, and easy to clean. \u3010Wide Application\u3011Mini light body size: D11.8\" x H9\". Ceiling canopy diameter 4.7\". This farmhouse ceiling fan is ideal for bedroom, entryway, hallway, girl's room. \u3010Bulb and Source Type\u30113 x E12 x Max 60 Watts, Bulb is NOT included. Compatible with incandescent, LED, CFL, halogen or dimmable bulbs. Hollowed wood beaded design give off enough light to light up your room. It's good for relaxing and winding down in the evening \u3010Easy installation\u3011 We have strung the beads together, just hang them on the lamp. It will be worth it when lamp is fitted up. \u3010Worry-Free Guarante\u3011The bulb base and wires of this flush mount ceiling light fixture are UL LISTED. We provide 30 days free exchange or refund, and 1-years warranty (can mail replacement or partially refund). If you have any questions, please contact us. \n \u203a See more product details"}, {"name": "YONGNUO American Standard Adapter Power Switching Charger DC for Yongnuo LED Video Light YN600L Series,YN300III,YN168,YN216,YN1410,YN300Air,YN160III,YN360.", "product_information": {"Package Dimensions": "6.38 x 4.02 x 2.32 inches", "Item Weight": "15.8 ounces", "ASIN": "B00OHHTTVS", "Item model number": "American Standard Adapter", "Customer Reviews": {"ratings_count": 295, "stars": "4.6 out of 5 stars"}, "Is Discontinued By Manufacturer": "No", "Date First Available": "June 28, 2014", "Manufacturer": "Yongnuo"}, "brand": "Visit the YONGNUO Store", "brand_url": "https://www.amazon.com/stores/YONGNUO/page/4FB2E214-124D-4C29-A906-2CBBC3D7A702?ref_=ast_bln", "full_description": "Description: Use this AC power adapter charger for Yongnuo LED Video Light YN-600 AC Input Detail: 1) AC Input Voltage Range: 100-240V 2) AC Input Current: 1500mA 3) Input Frequency Range: 47-63Hz 4) No Load Power Consumption: <0.5W 6) Hold Up Time: 5ms Min.at100Vac input and output Max .Load. 7) Rise Time: 30 ms Max 8) Line Regulation: \u00b12% 9) Leakage Current: < 0.25mA DC Output Detail: 1) DC Voltage Range: 3-24V 2) DC Current Range: 100-4000mA 3) Total Regulation: 4) Ripple & Noise: 100 m Vp-p 5) Working Efficiency: 80% 6) Protections: Short Circuit Protection, Over Voltage Protection, Over Current Protection, Open Circuit Protection Specification: Reliability: 1) MTBF( Mean Time Between Failures): 50000 Hours ( Based on MIL-STD-217F) Hi-pot Test: Primary-Secondary: 3750Vac/ 5mA/ 60s Primary-Case : 500Vac/ 5mA/ 60s Burn-In Test: Full Load with 4 hours at 40 degree Regulatory Agency Certification: 1) RFI/EMI: EMC Standard: EN55022/ EN55024/ EN55013/ EN55020 2) Safety Standard: EN60065, EN60950 Note: 1\uff1a AC Rated Voltage Input: 100-240V 2\uff1a AC Max Voltage Input: 90-264V 3\uff1a AC Input Current: 1500mA 4\uff1a DC Voltage output Range: 3-24V 5\uff1a DC Current output Range: 100-4000mA 6\uff1a Approval & Safety: UL,CE,PSE,EK,SAA,C-tick, S-mark, BS,GS,CB,FCC,CEC Including: 1 x AC Apater Power Charger", "pricing": "$20.15", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/415viYggy4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Power Accessories \u203a AC Adapters", "average_rating": 4.6, "small_description": ["YONGNUO American Standard Adapter Power Switching Charger DC for Yongnuo LED Video Light YN-600 YN600 "], "total_reviews": 295, "total_answered_questions": 32, "model": "American Standard Adapter", "customization_options": "", "seller_id": "AOJMQ6NJNAID8", "seller_name": "RC-STORE", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00OHHTTVS", "category": "electronics", "query": "Video Glasses", "page": 94, "small_description_old": "About this item\n \nYONGNUO American Standard Adapter Power Switching Charger DC for Yongnuo LED Video Light YN-600 YN600"}, {"name": "Christopher Knight Home Omry Velvet Ottoman, Dark Teal", "product_information": {"Item Weight": "\u200e18.96 pounds", "Product Dimensions": "\u200e30.5 x 30.5 x 17 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200e299920", "Is Discontinued By Manufacturer": "\u200eNo", "ASIN": "B01N4JDM7G", "Customer Reviews": {"ratings_count": 124, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#635,913 in Home & Kitchen (See Top 100 in Home & Kitchen) #962 in Ottomans"], "Date First Available": "December 29, 2016"}, "brand": "Visit the Christopher Knight Home Store", "brand_url": "https://www.amazon.com/stores/Christopher+Knight+Home/page/355CA0FB-66C1-4A81-8D38-9D7E3533B8D7?ref_=ast_bln", "full_description": "This mid-century ottoman is a great addition to any living room. This ottoman can double as a seat when the need arises, and is exceedingly comfortable, as both a seat and as an ottoman. Enjoy this beautiful ottoman in your home today. Includes: One (1) Ottoman Material: New Velvet New Velvet Composition: 100% Polyester Leg Material: Birch Color: Teal Leg Finish: Natural Light Assembly Required Dimensions: 30.50\u201d D x 30.50\u201d W x 17.00\u201d H", "pricing": "$151.70", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock (more on the way).", "images": ["https://m.media-amazon.com/images/I/31zhzG7FZnL.jpg", "https://m.media-amazon.com/images/I/4176-gs1NAL.jpg", "https://m.media-amazon.com/images/I/41MQQb-X6WL.jpg", "https://m.media-amazon.com/images/I/41IP-Kv5Y+L.jpg", "https://m.media-amazon.com/images/I/31UQn+EG3jL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Accent Furniture \u203a Ottomans", "average_rating": 4.6, "small_description": ["Includes: One (1) Ottoman ", "Dimensions: 30.50\u201d D x 30.50\u201d W x 17.00\u201d H ", "This mid-century ottoman is a great addition to any living room. This ottoman can double as a seat when the need arises, and is exceedingly comfortable, as both a seat and as an ottoman. Enjoy this beautiful ottoman in your home today. "], "total_reviews": 124, "total_answered_questions": "", "model": "\u200e299920", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01N4JDM7G", "category": "garden", "query": "Ottomans", "page": 21, "small_description_old": "About this item Includes: One (1) Ottoman Dimensions: 30.50\u201d D x 30.50\u201d W x 17.00\u201d H This mid-century ottoman is a great addition to any living room. This ottoman can double as a seat when the need arises, and is exceedingly comfortable, as both a seat and as an ottoman. Enjoy this beautiful ottoman in your home today. \n \u203a See more product details"}, {"name": "QAZPL Drawstring Ponytail Hair, Afro Kinky Curly, Human Hair, Wig For Women, 8-20 Inch #1B Natural Black, Support Perm Or Dye (Size : 8 inch)", "product_information": {"Item Weight\n \u200f": "\u200e\n 1.1 Pounds", "Department\n \u200f": "\u200e\n Unisex-adult", "Manufacturer\n \u200f": "\u200e\n QAZPL", "ASIN\n \u200f": "\u200e\n B093HFSQ3B", "": ""}, "brand": "Brand: QAZPL", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=QAZPL", "full_description": "Global Delivery dates: about 20-25 days.Product name: Drawstring Ponytail HairColor: #1B Natural BlackHair length: 8-20 inchesMaterial: 100% Virgin Human Hair (Cut from young girl donor)Hair style: afro kinky curlyCan hair dye or perm: Yes, it's OKQuality: no shedding, no tanglePackage content: Drawstring Ponytail hair x 1How to identify wigs:Human hair: After burning it, pinch the hair with your hands to form a powder.Synthetic fiber: After burning, pinch the hair with your hands, as if plastic is burned, all stick together.", "pricing": "$47.78", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51quwxXZPnS.jpg", "https://m.media-amazon.com/images/I/51iCndFEO0S.jpg", "https://m.media-amazon.com/images/I/51NPOssfG0S.jpg", "https://m.media-amazon.com/images/I/51y2SsLjXjS.jpg", "https://m.media-amazon.com/images/I/51pdV2mXYtS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Hair Extensions", "average_rating": "", "small_description": ["Material: 100% Virgin Human Hair (Cut from young girl donor) ", "High-quality human hair wig: soft, no knots, no hair loss, no split ends, tangle free, can be perm dyed. ", "How to identify wigs: Human Hair: After burning it, pinch the hair with your hands to form a powder. Chemical fiber: After burning, pinch the hair with your hands, as if plastic is burned, all stick together. ", "Package content: Drawstring Ponytail Hair x 1 ", "Excellent after-sales service: If you have any questions about our products or have any after-sales problems after purchase, please contact us by email, we will reply you within 24 hours and deal with the problem in time. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "8 Inch", "price_string": "$47.78", "price": 47.78, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093H9FTVH/ref=twister_B093HCWTS7?_encoding=UTF8&psc=1", "value": "10 Inch", "price_string": "$52.48", "price": 52.48, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093HCW7S2/ref=twister_B093HCWTS7?_encoding=UTF8&psc=1", "value": "12 Inch", "price_string": "$56.10", "price": 56.1, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093HCYCRN/ref=twister_B093HCWTS7?_encoding=UTF8&psc=1", "value": "14 Inch", "price_string": "$63.34", "price": 63.34, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093HC67NK/ref=twister_B093HCWTS7?_encoding=UTF8&psc=1", "value": "16 Inch", "price_string": "$68.77", "price": 68.77, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093HFH5N2/ref=twister_B093HCWTS7?_encoding=UTF8&psc=1", "value": "18 Inch", "price_string": "$76.01", "price": 76.01, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093H97M88/ref=twister_B093HCWTS7?_encoding=UTF8&psc=1", "value": "20 Inch", "price_string": "$83.24", "price": 83.24, "image": null}]}, "seller_id": "A2R32CWTC0BGD5", "seller_name": "WJKWJH shop", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B093HFSQ3B", "category": "beauty", "query": "Hair Extensions, Wigs & Accessories", "page": 119, "small_description_old": "About this item Material: 100% Virgin Human Hair (Cut from young girl donor) High-quality human hair wig: soft, no knots, no hair loss, no split ends, tangle free, can be perm dyed. How to identify wigs: Human Hair: After burning it, pinch the hair with your hands to form a powder. Chemical fiber: After burning, pinch the hair with your hands, as if plastic is burned, all stick together. Package content: Drawstring Ponytail Hair x 1 Excellent after-sales service: If you have any questions about our products or have any after-sales problems after purchase, please contact us by email, we will reply you within 24 hours and deal with the problem in time."}, {"name": "Ottoman Footstools Folding Storage Box with Lid, Large Storage Seat Faux Leather Footstool Toy Storage Box, Yellow, 40x40x40cm (Color : Yellow, Size : 40X40X40cm)", "product_information": {"Item Weight": "\u200e3.31 pounds", "Package Dimensions": "\u200e123.23 x 15.75 x 15.75 inches", "Country of Origin": "\u200eChina", "ASIN": "B09NTCCVGX", "Date First Available": "December 19, 2021"}, "brand": "Brand: WREHLYDKM", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=WREHLYDKM", "full_description": "This exquisite and versatile footstool perfectly matches your furniture in any room. High fashion and multifunctional design, suitable for sitting and resting your feet or legs.The storage ottoman bench is covered with premium faux leather and perfect for your any room.It is used as storage chest,bed end bench,entryway shoe bench,coffee table and puppy step etc.Features:Waterproof and dirt-resistant PU, can be washed repeatedly.High-density sponge, say goodbye to hard seat.High-quality leather, comfortable and breathable.High density board, good load bearing performance.Large storage space to store books, shoes, socks and sundries.Specification:Product name: Multifunctional storage stoolProduct material: leatherStool column material: fiberboardProduct Size: 40x40x40cm , 60x40x40cm , 80x40x40cm , 90x40x40cm , 100x40x40cm , 110x40x40cm , 120x40x40cmProduct color: YellowProduct weight: 300kg/661lbsShape: rectangularUses: can be stored, sitting, restingApplicable people: adultsStyle: Nordic styleApplicable places: entrance/bedside stool/shopping mall/coffee shopPackage Contents:1 x Folding Storage OttomanNote:1. Due to the light and screen difference, the item's color may be slightly different from the pictures.2. Please allow 0.5-2 cm differences due to manual measurement.3. If you have any questions or obstacles during the purchase process, please contact us by email. We will respond to you within 24 hours.", "pricing": "$149.97", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31x2jozzltL.jpg", "https://m.media-amazon.com/images/I/41iVz4McZDL.jpg", "https://m.media-amazon.com/images/I/41foNGa5sCL.jpg", "https://m.media-amazon.com/images/I/41HpjBc4mbL.jpg", "https://m.media-amazon.com/images/I/41-MHGX+hdL.jpg", "https://m.media-amazon.com/images/I/31796AFfv9L.jpg", "https://m.media-amazon.com/images/I/51uEBuef+mL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Accent Furniture \u203a Ottomans", "average_rating": "", "small_description": ["\u2605WATERPROOF AND WEAR-RESISTANT: Selected leather fabric, soft and comfortable, wear-resistant and breathable, good water resistance, keep warm in winter, not sultry in summer. ", "\u2605CLEAR LINES: Fine workmanship, neat wiring, and metal hinges., the fashion is durable. ", "\u2605STURDY AND RELIABLE: Comfortable sitting, strong pressure resistance, wear-resistant plastic round bottom corners, protect the floor, wear-resistant and non-slip, high safety. ", "\u2605 EASY TO INSTALL: You need a few seconds to convert the flat parts of the seat into a sturdy and sturdy seat. When you need a spare chair, the foldable Ottoman can be easily folded for storage in the closet, garage and under the bed. ", "\u2605MULTI-FUNCTION FOLDING: Can be used as storage box, footstool, bed stool, extra seat, coffee table, even as a shoe bench in the corridor; elegant design screaming style, blending into any decoration "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "40X40X40cm", "price_string": "$149.97", "price": 149.97, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NTCMYNV/ref=twister_B09NTCPJ96?_encoding=UTF8&psc=1", "value": "60X40X40cm", "price_string": "$183.43", "price": 183.43, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NTDS3RP/ref=twister_B09NTCPJ96?_encoding=UTF8&psc=1", "value": "80x40x40cm", "price_string": "$259.07", "price": 259.07, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NTDJPQQ/ref=twister_B09NTCPJ96?_encoding=UTF8&psc=1", "value": "90X40X40cm", "price_string": "$282.77", "price": 282.77, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NTD1ZC3/ref=twister_B09NTCPJ96?_encoding=UTF8&psc=1", "value": "100X40X40cm", "price_string": "$325.99", "price": 325.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NTCT7TP/ref=twister_B09NTCPJ96?_encoding=UTF8&psc=1", "value": "110X40X40cm", "price_string": "$345.86", "price": 345.86, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NTCP676/ref=twister_B09NTCPJ96?_encoding=UTF8&psc=1", "value": "120X40X40cm", "price_string": "$408.24", "price": 408.24, "image": null}], "Color": null}, "seller_id": "A2RCFR0QBR7FVW", "seller_name": "Wang Lihua Store", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NTCCVGX", "category": "garden", "query": "Ottomans", "page": 134, "small_description_old": "About this item \u2605WATERPROOF AND WEAR-RESISTANT: Selected leather fabric, soft and comfortable, wear-resistant and breathable, good water resistance, keep warm in winter, not sultry in summer. \u2605CLEAR LINES: Fine workmanship, neat wiring, and metal hinges., the fashion is durable. \u2605STURDY AND RELIABLE: Comfortable sitting, strong pressure resistance, wear-resistant plastic round bottom corners, protect the floor, wear-resistant and non-slip, high safety. \u2605 EASY TO INSTALL: You need a few seconds to convert the flat parts of the seat into a sturdy and sturdy seat. When you need a spare chair, the foldable Ottoman can be easily folded for storage in the closet, garage and under the bed. \u2605MULTI-FUNCTION FOLDING: Can be used as storage box, footstool, bed stool, extra seat, coffee table, even as a shoe bench in the corridor; elegant design screaming style, blending into any decoration \n \u203a See more product details"}, {"name": "NOURIA Intimate After Shave Protection Moisturizer By Coochy Plus - FRAGRANCE FREE: Delicate MOISTURIZING PLUS Soothing Mist For The Pubic Area & Armpits \u2013 For Razor Burns, Itchiness & Ingrown Hairs", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.94 x 3.94 x 3.94 inches; 6 Ounces", "UPC\n \u200f": "\u200e\n 850013300396", "Manufacturer\n \u200f": "\u200e\n IntiMD", "ASIN\n \u200f": "\u200e\n B0936C6MBM", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#135,121 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#88 in Women's Shaving Creams", "#88 in Women's Shaving Creams": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the IntiMD Store", "brand_url": "https://www.amazon.com/stores/IntiMD/page/3BBAA533-AFD1-49A2-9142-94088E17E0FB?ref_=ast_bln", "full_description": "", "pricing": "$12.95", "list_price": "", "availability_quantity": 13, "availability_status": "Only 13 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41uaVqwzzFS.jpg", "https://m.media-amazon.com/images/I/31gtJb-hFaS.jpg", "https://m.media-amazon.com/images/I/41zBcsp4MvS.jpg", "https://m.media-amazon.com/images/I/417B92UKIOS.jpg", "https://m.media-amazon.com/images/I/41pwW5FP2TS.jpg", "https://m.media-amazon.com/images/I/41tUQYKWITS.jpg", "https://m.media-amazon.com/images/I/41l2LEEphmS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Women's \u203a Shaving Creams, Lotions & Gels \u203a Shaving Creams", "average_rating": 4.1, "small_description": ["You, like all living beings, flourishes with nutrients and proper care. Your natural and intimate beauty demands nourishments. ", "Formulated with a consonance of highly effective botanical and organic extracs and marries them with real-world proven technologies, such as NanoPlex extraction process and HydroLock moisture retention complex, developed by IntiMD. ", "Apply after shaving or waxing, the protection moisturizer forms an invisible shield on your sensitive skin to boost nourishment, rejuvenation and continuous protection. For your intimate area, arm, underarm, leg, or any other area. ", "Effectively helps with razor bumps, in-grown hairs, razor burn, or rash and common irritations caused by shaving. Results you can feel. ", "Trusted for over 30+ years. Lab tested and time proven. NOURIA Protection Moisturizer is HRIPT Tested to be safe for all skin types. pH balanced for intimate use. "], "total_reviews": 4, "total_answered_questions": "", "customization_options": "", "seller_id": "A3FTZHTD80EGOV", "seller_name": "Oui Lab", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0936C6MBM", "category": "beauty", "query": "Women's Fragrance", "page": 109, "small_description_old": "About this item You, like all living beings, flourishes with nutrients and proper care. Your natural and intimate beauty demands nourishments. Formulated with a consonance of highly effective botanical and organic extracs and marries them with real-world proven technologies, such as NanoPlex extraction process and HydroLock moisture retention complex, developed by IntiMD. Apply after shaving or waxing, the protection moisturizer forms an invisible shield on your sensitive skin to boost nourishment, rejuvenation and continuous protection. For your intimate area, arm, underarm, leg, or any other area. Effectively helps with razor bumps, in-grown hairs, razor burn, or rash and common irritations caused by shaving. Results you can feel. Trusted for over 30+ years. Lab tested and time proven. NOURIA Protection Moisturizer is HRIPT Tested to be safe for all skin types. pH balanced for intimate use."}, {"name": "Dream Solutions USA Brand Two-Sided PillowTop Gentle Plush King Mattress Only with Mattress Cover Protector Included - Fully Assembled, Good for Your Back, Orthopedic, Long Lasting Comfort", "product_information": {"Product Dimensions": "80 x 76 x 12 inches", "Item Weight": "145 pounds", "Manufacturer": "Dream Solutions USA", "ASIN": "B07PM8MJKZ", "Customer Reviews": {"ratings_count": null, "stars": "3.0 out of 5 stars"}, "Is Discontinued By Manufacturer": "No", "Date First Available": "September 18, 2017"}, "brand": "Brand: Dream Solutions USA", "brand_url": "https://www.amazon.com/Dream-Solutions-USA/b/ref=bl_dp_s_web_14425650011?ie=UTF8&node=14425650011&field-lbr_brands_browse-bin=Dream+Solutions+USA", "full_description": "Looking for a more restful night\u2019s sleep? Choose a Dream Solutions Brand King Size Mattress Only with Mattress Cover Protector included and enjoy true relaxation.After a long day\u2019s work, you want to crawl into bed and let your worries, stress and aches drift away as the dreams come in. But when you have an uncomfortable mattress, it\u2019s hard to let go and relax. That\u2019s why you need the Dream Solutions PillowTop Mattress Only; a double-sided pillowtop mattress that offers better support and comfort for better sleep.Complete Bed SetEach order comes with a pillow top mattress that offers gentle plus support with a cool, silky fabric. And with nearly 500 innerspring coils, you can stop tossing and turning and start waking up refreshed and feeling better every day.Product Details:Order Includes:NOTE: Bed Frame and Box Spring NOT included. Click \u2018Add to Cart\u2019 now and get a Dream Solutions Brand King Size Deluxe PillowTop Mattress Only with Mattress Cover Protector included for your bed and start getting better, deeper sleep.", "pricing": "$704.00", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/41OWWqI0SpL.jpg", "https://m.media-amazon.com/images/I/51NtJgNLJLL.jpg", "https://m.media-amazon.com/images/I/21RcBxae0fL.jpg", "https://m.media-amazon.com/images/I/51bEJMmc5zL.jpg", "https://m.media-amazon.com/images/I/51OfAURy23L.jpg", "https://m.media-amazon.com/images/I/51-SXC12xIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Mattresses & Box Springs \u203a Mattresses", "average_rating": 3, "small_description": ["Enhanced Comfort \u2013 Each King Mattress (76W x 80L x 12H) features a gentle plush comfort level double-sided pillow top that offers longer-lasting, reversible sleep support for years to come. ", "Quilted Softness \u2013 Along with nearly 500 innerspring coils that provide better stability and quiet support, each \u201cpillow\u201d provides approximately 2.5\u201d of plush, relaxing comfort. ", "Durable Edge Guards \u2013 Each mattress is lined with high-quality stitching and double edges to reduce wear and tear while keeping the pillows firm. ", "Sleep Quality Matters \u2013 Ensuring a better night\u2019s sleep is our priority, which is why our 12\u201d mattress comes with deluxe pillow top. ", "Every Dream Solutions Brand Double-Sided Gentle Plush King Mattress Only with Mattress Cover Protector included is backed by superior customer service. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A12PKH3V4KOC79", "seller_name": "Dream Solutions", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07PM8MJKZ", "category": "garden", "query": "Mattresses", "page": 79, "small_description_old": "About this item\n \nEnhanced Comfort \u2013 Each King Mattress (76W x 80L x 12H) features a gentle plush comfort level double-sided pillow top that offers longer-lasting, reversible sleep support for years to come. Quilted Softness \u2013 Along with nearly 500 innerspring coils that provide better stability and quiet support, each \u201cpillow\u201d provides approximately 2.5\u201d of plush, relaxing comfort. Durable Edge Guards \u2013 Each mattress is lined with high-quality stitching and double edges to reduce wear and tear while keeping the pillows firm. Sleep Quality Matters \u2013 Ensuring a better night\u2019s sleep is our priority, which is why our 12\u201d mattress comes with deluxe pillow top. Every Dream Solutions Brand Double-Sided Gentle Plush King Mattress Only with Mattress Cover Protector included is backed by superior customer service."}, {"name": "Womens Winter Plus Velvet Thick Lamb Velvet Leggings Trousers High-Waisted Leggings Warm Pants", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 9, 2020", "Manufacturer\n \u200f": "\u200e\n KoLan", "ASIN\n \u200f": "\u200e\n B08Q46XHLB", "Best Sellers Rank": "#3,222,164 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#497 in Women's Novelty Leggings #1,949,279 in Women's Fashion", "#497 in Women's Novelty Leggings": "", "#1,949,279 in Women's Fashion": ""}, "brand": "Brand: KoLan", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=KoLan", "full_description": "\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\u00a0\u00a0\u00a0\u00a0 KoLan Shop\u00a0\u00a0\u00a0 \ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a", "pricing": "$19.43$22.31", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41UeBNxi9SL.jpg", "https://m.media-amazon.com/images/I/41DisLk3cIL.jpg", "https://m.media-amazon.com/images/I/41F6gnaisxL.jpg", "https://m.media-amazon.com/images/I/41Rdc3sIlnL.jpg", "https://m.media-amazon.com/images/I/51ISwJRD4YL.jpg", "https://m.media-amazon.com/images/I/41LeE6GVpxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Leggings", "average_rating": "", "small_description": ["Cotton,Polyester ", "Please note :that Asian sizes, please increase one or two size when purchasing ", "It is recommended to increase by one size closure ", "\u273fSweatpants for women mens sweatpants sweatpants for men yoga pants for women sweatpant womens sweatpants yoga pants mens pajama pants women's pants men's pants pants for women pajama pants for women cargo pants for men cargo pants for women pants for men christmas pajama pants panties for women sweat pants pajama pants for men panties mens pants cargo pants pajama pants womens pajama pants snow pants womens lounge pants ", "\u273fLeather pants women plaid pants for women womens snow pants yoga pants with pockets for women sweatpants snow pants men dress pants for women sweatpants for teen girls mens lounge pants women's panties period panties mens cargo pants plaid pants plaid pajama pants black pants for women jogger pants work pants flannel pajama pants womens panties womens lounge pant fleece lined leggings women ", "\u273fGifts for women slippers for women uggs boots for women womens sweaters sweaters for women womens slippers leggings for women ugly christmas sweater for women womens pajamas set womens boots leggings for women pajamas for women christmas gifts for women lingerie for women womens tops hoodies for women waist trainer for women socks for women christmas pajamas for women purses for women earrings for women ", "\u273fWomen's slippers christmas sweaters for women necklaces for women socks for women perfumes for women sweatpants for women shoes for women long sleeve shirts for women hey dudes for women sweatshirts for women sweater dresses for women sexy lingerie for women christmas shirts for women womens socks snow boots for women cardigans for women rings for women christmas dresses for women joggers for women winter boots for women ", "\u273fWallets for women fleece lined leggings women sports bras for women small gifts for women womens long sleeve tops best friend gifts for women bracelets for women bras for women house slippers for women scarfs for women candles gifts for women watches for women womens sweatpants winter coats for women roller skates for women yoga pants for women womens shoes crossbody bags for women womens hoodies robe for women headbands for women "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08Q46XHLB/ref=twister_B08Q41MCG9", "value": "Dark Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Ir7AjWuBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08Q42C15H/ref=twister_B08Q41MCG9", "value": "Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rwviMJbML.jpg"}, {"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UeBNxi9SL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B08Q41LX4G"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08Q43LJKJ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08Q44H7TF"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B08Q46Y8VN"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B08Q46C2JC"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B08Q46SF1H"}, {"is_selected": false, "is_available": false, "value": "X-Large", "asin": "B08Q42FF9J"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08Q43LJKJ", "category": "fashion", "query": "Women's Pants", "page": 177, "small_description_old": "Cotton,Polyester Please note :that Asian sizes, please increase one or two size when purchasing It is recommended to increase by one size closure \u273fSweatpants for women mens sweatpants sweatpants for men yoga pants for women sweatpant womens sweatpants yoga pants mens pajama pants women's pants men's pants pants for women pajama pants for women cargo pants for men cargo pants for women pants for men christmas pajama pants panties for women sweat pants pajama pants for men panties mens pants cargo pants pajama pants womens pajama pants snow pants womens lounge pants \u273fLeather pants women plaid pants for women womens snow pants yoga pants with pockets for women sweatpants snow pants men dress pants for women sweatpants for teen girls mens lounge pants women's panties period panties mens cargo pants plaid pants plaid pajama pants black pants for women jogger pants work pants flannel pajama pants womens panties womens lounge pant fleece lined leggings women \u273fGifts for women slippers for women uggs boots for women womens sweaters sweaters for women womens slippers leggings for women ugly christmas sweater for women womens pajamas set womens boots leggings for women pajamas for women christmas gifts for women lingerie for women womens tops hoodies for women waist trainer for women socks for women christmas pajamas for women purses for women earrings for women \u273fWomen's slippers christmas sweaters for women necklaces for women socks for women perfumes for women sweatpants for women shoes for women long sleeve shirts for women hey dudes for women sweatshirts for women sweater dresses for women sexy lingerie for women christmas shirts for women womens socks snow boots for women cardigans for women rings for women christmas dresses for women joggers for women winter boots for women \u273fWallets for women fleece lined leggings women sports bras for women small gifts for women womens long sleeve tops best friend gifts for women bracelets for women bras for women house slippers for women scarfs for women candles gifts for women watches for women womens sweatpants winter coats for women roller skates for women yoga pants for women womens shoes crossbody bags for women womens hoodies robe for women headbands for women"}, {"name": "Estink File Cabinet, Grey Metal Moveable Hanging File Cabinet Nightstand Storage Cabinets with 5 Drawers Storage Filing Office Home Use,28 x 41 x 68.5 cm", "product_information": {"Item Weight": "24.6 pounds", "Manufacturer": "Estink", "ASIN": "B08R5Z7S2K"}, "brand": "Visit the Estink Store", "brand_url": "https://www.amazon.com/stores/Estink/page/1B5C3FE3-D1EF-4C27-A377-591D5F47D8A2?ref_=ast_bln", "full_description": "Features:This metal filing cabinet, with a simple yet stylish design, will be ideal for storing different papers and office stationary, but will also make a great decorative addition to your office.\u00a0With 5 drawers, this filing cabinet has ample storage space for organising different files.\u00a0The castors at the bottom of this unit make it easy to move around.\u00a0This drawer unit will suit any office decor thanks to its classic design.\u00a0As it is made of high-quality metal, it is not only sturdy, but also easy to clean and maintain.\u00a0Assembly is very easy as the necessary accessories are included in delivery.Specification:Item Type: Hanging File CabinetColour: GreyMaterial: SteelDimensions: 28 x 41 x 68.5 cm (W x D x H)With 4 small drawers and 1 big drawerMaximum load capacity per drawer: 10 kgWeight: Approx. 28143gPackage list:1 x Hanging File Cabinet", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/3163J-h6fqL.jpg", "https://m.media-amazon.com/images/I/31I-hgHdSlL.jpg", "https://m.media-amazon.com/images/I/31To2D0NxnL.jpg", "https://m.media-amazon.com/images/I/31YA+pfzyXL.jpg", "https://m.media-amazon.com/images/I/31bxktcJSFL.jpg", "https://m.media-amazon.com/images/I/31BgAhL8ZaL.jpg", "https://m.media-amazon.com/images/I/21zg7d86CLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Furniture & Lighting \u203a Cabinets, Racks & Shelves \u203a File Cabinets \u203a Mobile File Cabinets", "average_rating": "", "small_description": ["\u3010Large Capacity\u3011 With 5 drawers, this filing cabinet has ample storage space for organising different files ", "\u3010Large Capacity\u3011 With 5 drawers, this filing cabinet has ample storage space for organising different files ", "\u3010With Moveable Castors\u3011The castors at the bottom of this unit make it easy to move around ", "\u3010Stylish Storage Cabinet \u3011 This metal filing cabinet, with a simple yet stylish design, will be ideal for storing different papers and office stationary, but will also make a great decorative addition to your office ", "\u3010Premium Steel Cabinet\u3011As it is made of high-quality metal, it is not only sturdy, but also easy to clean and maintain,this drawer unit will suit any office decor thanks to its classic design ", "\u3010Easy To Assemble\u3011Assembly is very easy as the necessary accessories are included in delivery "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08R5Z7S2K", "category": "garden", "query": "File Cabinets", "page": 124, "small_description_old": "\u3010Large Capacity\u3011 With 5 drawers, this filing cabinet has ample storage space for organising different files \u3010Large Capacity\u3011 With 5 drawers, this filing cabinet has ample storage space for organising different files \u3010With Moveable Castors\u3011The castors at the bottom of this unit make it easy to move around \u3010Stylish Storage Cabinet \u3011 This metal filing cabinet, with a simple yet stylish design, will be ideal for storing different papers and office stationary, but will also make a great decorative addition to your office \u3010Premium Steel Cabinet\u3011As it is made of high-quality metal, it is not only sturdy, but also easy to clean and maintain,this drawer unit will suit any office decor thanks to its classic design \u3010Easy To Assemble\u3011Assembly is very easy as the necessary accessories are included in delivery"}, {"name": "Primeda-tronic 2 Ports RJ11 Telephone and 10/100Mbps Ethernet Over Fiber Converters Extenders - PCM Voice Over Fiber Optic,Universal Single Mode 20Km and Multimode 500m", "product_information": {"Package Dimensions": "10.31 x 6.85 x 2.76 inches", "Item Weight": "1.61 pounds", "Manufacturer": "Primeda-tronic", "ASIN": "B07WGHWNSB", "Item model number": "HM-PCM2CH", "Customer Reviews": {"ratings_count": 2, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#1,261 in Computer Networking Transceivers"], "Date First Available": "August 13, 2019"}, "brand": "Brand: Primeda-tronic", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Primeda-tronic", "full_description": "Phone RJ11 port specifications: 1.Voice coding: PCM coding, 64Kbps per voice 2.Crosstalk attenuation: \u226565dB 3.Balanced noise: \u226463.7dBmop 4.Insertion loss: -3 \u00b1 0.75dB 5.Frequency characteristics: 300 to 3400 Hz (-0.6 to +3 dB) 6.Relay port (FXO): connected to the switch 7.Two-wire AC input impedance: 200+680//0.1 \u03a9 (three components) 8.Ringing voltage: 35 ~ 150V 9.Ringing frequency: 17~60HZ 10.Return loss: 20 db 11.User Interface (FXS): Connect to the user's telephone 12.Two-wire AC input impedance: 200+680//0.1 \u03a9 (three components) 13.User line loop resistance: less than 1K\u03a9 (including phone) 14.Ringing voltage peak-to-peak value: 110~150V 15.Ringing frequency: 22~28HZ 16.Feed voltage: 28V 17.Feed current: 20~50mA; 18.Return loss: 20 db 19.Bell flow: AC90 plus or minus 15V Ethernet RJ45 port specifications: 1. Rate: 10M/100Mbps, full duplex, half duplex fully adaptive 2. Actual transmission bandwidth: 50Mbps per network port 3. Protocol: Support IEEE 802.3, IEEE 802.1Q (VLAN) 4. Physical interface: RJ45, support AUTO-MDIX (cross line straight line adaptive) Power supply: 1.Working voltage AC100~240V, DC5V/2A. 2.US power supply adapter. Package include: 1x Telephone Transmitter 1x Telephone Receiver 1x 3M SC/SC singlemode fiber patch cord. 2 x US power supply adapters 1 x Manual", "pricing": "$115.00", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41ezgs828yL.jpg", "https://m.media-amazon.com/images/I/41gstUHaGAL.jpg", "https://m.media-amazon.com/images/I/31feg4VnTvL.jpg", "https://m.media-amazon.com/images/I/4197opnjMML.jpg", "https://m.media-amazon.com/images/I/41xR0GO-V0L.jpg", "https://m.media-amazon.com/images/I/41+rdM-yX6S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Networking Products \u203a Network Transceivers", "average_rating": 5, "small_description": ["Universal for Both Fiber Types: Same media converters can supports Single-mode fiber for a long distance up to 20 km(12miles) and Multimode fiber for a distance up to 500m(0.31miles), wavelength 1310/1550 nm ", "Extend your Phones and Network: 2 Independent telephone lines + 1 Fast Ethernet (10/100 Mbit/s) port over same Single mode or Multimode fiber cable ", "Simple to Install,Plug and Play,No setup or configuration needed, SC connector for fiber optical port, RJ-11 connector for telephone ports and RJ-45 for Ethernet ", "No Delay Transmission and Protocol Support: Unlike VoIP products - these converters transmit signals directly over fiber cables, thus offering NO DELAYS, plus support for fax & legacy applications that is not supported by VoIP lines "], "total_reviews": 2, "total_answered_questions": 5, "model": "HM-PCM2CH", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "2 channels", "price_string": "$115.00", "price": 115, "image": "https://m.media-amazon.com/images/I/41ezgs828yL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08B1TV9CN/ref=twister_B08B3H3JD6?_encoding=UTF8&psc=1", "value": "4 channels", "price_string": "$149.00", "price": 149, "image": "https://m.media-amazon.com/images/I/41jwE2--wHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08B1SNQPN/ref=twister_B08B3H3JD6?_encoding=UTF8&psc=1", "value": "8 channels", "price_string": "$182.00", "price": 182, "image": "https://m.media-amazon.com/images/I/41Lxc6fdKmL.jpg"}]}, "seller_id": "A24JLTT6RFEOSN", "seller_name": "Primeda-tronic", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07WGHWNSB", "category": "electronics", "query": "Legacy Systems", "page": 47, "small_description_old": "Universal for Both Fiber Types: Same media converters can supports Single-mode fiber for a long distance up to 20 km(12miles) and Multimode fiber for a distance up to 500m(0.31miles), wavelength 1310/1550 nm Extend your Phones and Network: 2 Independent telephone lines + 1 Fast Ethernet (10/100 Mbit/s) port over same Single mode or Multimode fiber cable Simple to Install,Plug and Play,No setup or configuration needed, SC connector for fiber optical port, RJ-11 connector for telephone ports and RJ-45 for Ethernet No Delay Transmission and Protocol Support: Unlike VoIP products - these converters transmit signals directly over fiber cables, thus offering NO DELAYS, plus support for fax & legacy applications that is not supported by VoIP lines"}, {"name": "Ruffles Ridged Potato Chips, Cheddar Sour Cream, 2.5 Oz", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 6.5 x 2.17 x 9.5 inches; 2.56 Ounces", "UPC\n \u200f": "\u200e\n 028400324427", "Manufacturer\n \u200f": "\u200e\n Ruffles", "ASIN\n \u200f": "\u200e\n B07Z4G8253", "Best Sellers Rank": "#526,223 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#4,390 in Potato Chips & Crisps", "#4,390 in Potato Chips & Crisps": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Ruffles", "brand_url": "https://www.amazon.com/Ruffles/b/ref=bl_dp_s_web_20700060011?ie=UTF8&node=20700060011&field-lbr_brands_browse-bin=Ruffles", "full_description": "Ruffles ridged potato chips, cheddar sour cream, 2.625 oz", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51A6HAw1WpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Chips & Crisps \u203a Potato", "average_rating": 4.7, "small_description": ["Ruffles ridged potato chips, Cheddar sour cream, 2.625 oz ", "Country of origin is United States ", "Number of items: 1 ", "Each unit count: 2.5 "], "total_reviews": 62, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07Z4G8253", "category": "grocery", "query": "Sour Creams", "page": 8, "small_description_old": "About this item Ruffles ridged potato chips, Cheddar sour cream, 2.625 oz Country of origin is United States Number of items: 1 Each unit count: 2.5"}, {"name": "Nobsound DC 19V 4.74A 90W Power Supply Power Adapter Charger Universal 100-240V 50/60Hz AC Input for Amplifier Laptop DAC", "product_information": {"Package Dimensions": "6 x 6 x 2.5 inches", "Item Weight": "8.8 ounces", "ASIN": "B074J81XRB", "Item model number": "NS-01G-9019", "Customer Reviews": {"ratings_count": 185, "stars": "4.6 out of 5 stars"}, "Is Discontinued By Manufacturer": "No", "Date First Available": "August 3, 2017", "Manufacturer": "Nobsound"}, "brand": "Visit the Nobsound Store", "brand_url": "https://www.amazon.com/stores/DoukAudioNobsound/page/BF750DA6-DED6-4CD9-89C1-1A442DDADDD7?ref_=ast_bln", "full_description": "", "pricing": "$17.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41XaB86qPTL.jpg", "https://m.media-amazon.com/images/I/51Gc5AmD1JL.jpg", "https://m.media-amazon.com/images/I/31vy-U12b1L.jpg", "https://m.media-amazon.com/images/I/51kgUVoksyL.jpg", "https://m.media-amazon.com/images/I/41sK9TYVJ3L.jpg", "https://m.media-amazon.com/images/I/41YnKVkX4zL.jpg", "https://m.media-amazon.com/images/I/51oEZsX8HoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Power Accessories \u203a AC Adapters", "average_rating": 4.6, "small_description": ["[UPGRADE] High-quality 19V@4.74A power supply, the power cord is made of pure copper, while other brands may use aluminum or copper-plated wire. With UL, FCC, CE, ROHS certification to ensure its safety and quality. ", "Support 2.1~2.5mm plug socket. Universal wide voltage of 100V-240V 50/60Hz, specially designed for Douk Audio / Nobsound amplifier or other audio devices for HiFi sound, with good adaptability and can provide enough power. ", "Automatic overload cut-off, over-voltage cut-off, automatic thermal cut-off, short circuit protection and fuse to ensure electric safety. ", "Wide Application: digital power amplifier, laptop, LED Strip, wireless router, ADSL Cats, HUB, switches, security cameras, Audio / Video Power Supply and Other Electronic Devices. ", "Prompt and courteous customer service. For any questions, please feel free to contact us on Amazon. "], "total_reviews": 185, "total_answered_questions": "", "model": "NS-01G-9019", "customization_options": "", "seller_id": "ADPE7GPX91ORE", "seller_name": "DoukAudio", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B074J81XRB", "category": "electronics", "query": "Power Protection", "page": 126, "small_description_old": "About this item\n \n[UPGRADE] High-quality 19V@4.74A power supply, the power cord is made of pure copper, while other brands may use aluminum or copper-plated wire. With UL, FCC, CE, ROHS certification to ensure its safety and quality. Support 2.1~2.5mm plug socket. Universal wide voltage of 100V-240V 50/60Hz, specially designed for Douk Audio / Nobsound amplifier or other audio devices for HiFi sound, with good adaptability and can provide enough power. Automatic overload cut-off, over-voltage cut-off, automatic thermal cut-off, short circuit protection and fuse to ensure electric safety. Wide Application: digital power amplifier, laptop, LED Strip, wireless router, ADSL Cats, HUB, switches, security cameras, Audio / Video Power Supply and Other Electronic Devices. Prompt and courteous customer service. For any questions, please feel free to contact us on Amazon."}, {"name": "Sayersbrook Bison Ranch - Bison Burgers - 5.33 oz patties x 30 - 10 lbs total", "product_information": {"Item Weight\n \u200f": "\u200e\n 5.33 Ounces", "UPC\n \u200f": "\u200e\n 746092652085", "Manufacturer\n \u200f": "\u200e\n Sayersbrook Bison Ranch", "ASIN\n \u200f": "\u200e\n B08SFMB8YZ", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#505,953 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#159 in Wild Game & Fowl Meat", "#159 in Wild Game & Fowl Meat": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Sayersbrook Bison Ranch", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Sayersbrook+Bison+Ranch", "full_description": "FIRE Up the Grill! These Bison Burgers are quick, easy, delicious AND good for you! Prepared Bison Burgers are ready for the grill, stove or oven. These burgers are made from the same meat as our bison steaks and bison roasts and the flavor is terrific. Just cook up your burgers and add your favorite condiments to build a meal that you'll never forget. We use NO steroids, NO antibiotics and NO additives or chemicals of any kind in our bison.", "pricing": "$179.95", "list_price": "", "availability_quantity": 16, "availability_status": "Only 16 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51VVkuRaKWL.jpg", "https://m.media-amazon.com/images/I/515pK9AtYZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Meat & Seafood \u203a Wild Game & Fowl", "average_rating": 5, "small_description": ["These are thirty (30), 5.33 oz patties, packed 3 pieces to a pack = 10 lbs. ", "Prepared Bison Burgers are ready for the grill, stove or oven ", "Our burgers are made from the same meat as our bison steaks and bison roasts and the flavor is terrific! ", "We use NO steroids, NO antibiotics and NO additives or chemicals of any kind in our bison ", "Family Value Size - Great to stock up the freezer for easy healthy meals "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A1COF8CXOYXU46", "seller_name": "Sayersbrook Bison Ranch", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08SFMB8YZ", "category": "grocery", "query": "Frozen", "page": 357, "small_description_old": "These are thirty (30), 5.33 oz patties, packed 3 pieces to a pack = 10 lbs. Prepared Bison Burgers are ready for the grill, stove or oven Our burgers are made from the same meat as our bison steaks and bison roasts and the flavor is terrific! We use NO steroids, NO antibiotics and NO additives or chemicals of any kind in our bison Family Value Size - Great to stock up the freezer for easy healthy meals"}, {"name": "Nargar 2 Pieces Children\u2019s U-Shape Toothbrush, 360 Degree Toothbrush for Kids Cute Teeth Whitening Gums Massage Tooth Brush for 2-6 Years Old Toddlers Kids (F)", "product_information": {"Department": "Unisex-adult", "Manufacturer": "Nargar_US", "ASIN": "B09Q55JLCS", "Country of Origin": "China", "Best Sellers Rank": ["#813,768 in Health & Household (See Top 100 in Health & Household) #4,061 in Manual Toothbrushes"]}, "brand": "Brand: Nargar_US", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Nargar_US", "full_description": "Nargar 2 Pieces Children\u2019s U-shape Toothbrush, 360 Degree Toothbrush for Kids Cute Teeth Whitening Gums Massage Tooth Brush for 2-6 Years Old Toddlers Kids\u00a0HOW TO USE:\u00a0 \u00a0 Shake the toothpaste before use to ensure squeezing even toothpaste.\u00a0 \u00a0 toothpaste to the front and back sides.\u00a0 \u00a0 Shake the U-shape toothbrush to the left and right.\u00a0 \u00a0 Just rinse the toothbrush after use.SPECIFICATIONS:\u00a0 \u00a0 Material: Silicone + PP\u00a0\u00a0 \u00a0 Disinfection Method: Wash in warm water\u00a0 \u00a0 Heat-resisting Temperature: 100\u00b0C\u00a0\u00a0 \u00a0 Applicable Age\uff1a0-12 years oldPACKAGE INCLUDED:2PC U-shape Toothbrush", "pricing": "$34.63", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/415izB2pCKL.jpg", "https://m.media-amazon.com/images/I/51GPCVjKdbL.jpg", "https://m.media-amazon.com/images/I/41Z9AiOHBxL.jpg", "https://m.media-amazon.com/images/I/41QYmb6c4qL.jpg", "https://m.media-amazon.com/images/I/41dH1VrKWoL.jpg", "https://m.media-amazon.com/images/I/41dcx658giL.jpg", "https://m.media-amazon.com/images/I/31JsPYynxQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothbrushes & Accessories \u203a Manual Toothbrushes", "average_rating": "", "small_description": "About this item \u273f\u3010Premium Materials\u3011Food Grade Soft Silicone Tooth Brush is Made of food grade silicone. Safe material, no special smell, baby use more Hea-lthy. The silicone brush head is re-sistant to high temperature and can be disinfected at ordinary times. \u273f\u3010Special U-shaped Design\u3011Different from the traditional toothbrush, we use a unique U-shaped brush head design to fit the teeth better. U-shaped design, more fit the mouth, so that the baby can accept. The baby can brush teeth while playing. \u273f\u3010Healthier Care\u3011U-shaped brush head design, 360 \u00b0Clean your baby's teeth. It's easier for baby to clean teeth. It can clean teeth from all angles and make oral cavity healthier. \u273f\u3010Make Baby Love Brushing\u3011Children\u2019s U-shape Toothbrush is easy to use. the toothpaste and shake it in your mouth to clean teeth. Brush head can clean to all angles, so that brushing teeth becomes a simple thing. \u273f\u3010Cute Cartoon Design\u3011The lovely appearance of soft toothbrush attractive all kids baby toddlers infant and small toothbrush handle is comfortable for them to grip firmly while brushing. Lovely baby toothbrush can stimulate kids baby toddlers infant interests in brushing teeth, help them form healthy brushing habits", "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09Q59X4BB/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "A", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41693h-BbpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q5F2724/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "B", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zzO5-JdeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q55QV6Z/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "C", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41DlFkbDVfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q5W8T4Z/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "D", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tiqh5WH-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q4ZXP29/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "E", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31P+Forjr5L.jpg"}, {"is_selected": true, "url": null, "value": "F", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/415izB2pCKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q5SQZC2/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "G", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41693h-BbpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q5QY1CW/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "H", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zzO5-JdeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q5W1FHR/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "I", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41DlFkbDVfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q5QSBSJ/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "J", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tiqh5WH-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q576Q4C/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "K", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31P+Forjr5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q5SHJ34/ref=twister_B09Q5CJMBD?_encoding=UTF8&psc=1", "value": "L", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/415izB2pCKL.jpg"}]}, "seller_id": "A20DA1YYMPGCGL", "seller_name": "Nargar", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q55JLCS", "category": "beauty", "query": "Children's Dental Care", "page": 71, "small_description_old": "About this item \u273f\u3010Premium Materials\u3011Food Grade Soft Silicone Tooth Brush is Made of food grade silicone. Safe material, no special smell, baby use more Hea-lthy. The silicone brush head is re-sistant to high temperature and can be disinfected at ordinary times. \u273f\u3010Special U-shaped Design\u3011Different from the traditional toothbrush, we use a unique U-shaped brush head design to fit the teeth better. U-shaped design, more fit the mouth, so that the baby can accept. The baby can brush teeth while playing. \u273f\u3010Healthier Care\u3011U-shaped brush head design, 360 \u00b0Clean your baby's teeth. It's easier for baby to clean teeth. It can clean teeth from all angles and make oral cavity healthier. \u273f\u3010Make Baby Love Brushing\u3011Children\u2019s U-shape Toothbrush is easy to use. the toothpaste and shake it in your mouth to clean teeth. Brush head can clean to all angles, so that brushing teeth becomes a simple thing. \u273f\u3010Cute Cartoon Design\u3011The lovely appearance of soft toothbrush attractive all kids baby toddlers infant and small toothbrush handle is comfortable for them to grip firmly while brushing. Lovely baby toothbrush can stimulate kids baby toddlers infant interests in brushing teeth, help them form healthy brushing habits"}, {"name": "Asian Surprise Snack Box Assortment 25 Pieces With 3 Full Size Items Boba Drink, Instant ramen, Sweet and Savory Snacks Candy", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 14.76 x 9.06 x 4.17 inches; 4.28 Pounds", "UPC\n \u200f": "\u200e\n 755003869191", "Manufacturer\n \u200f": "\u200e\n InfiniteeShop", "ASIN\n \u200f": "\u200e\n B08QRKJWW9", "Best Sellers Rank": "#444,290 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#1,877 in Snack Food Gifts", "#1,877 in Snack Food Gifts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: InfiniteeShop", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=InfiniteeShop", "full_description": "Our boxes offer the chance to try many different authentic flavors and textures which are not commonly found in life outside of Asia. May contain wheat, soy, dairy and peanuts.", "pricing": "$30.99", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51pOfYiv41L.jpg", "https://m.media-amazon.com/images/I/611rFQqY1CL.jpg", "https://m.media-amazon.com/images/I/51MLwFftwcL.jpg", "https://m.media-amazon.com/images/I/51YqvmPEWEL.jpg", "https://m.media-amazon.com/images/I/61c43HUz0ZL.jpg", "https://m.media-amazon.com/images/I/51STu6AEmUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Food & Beverage Gifts \u203a Snack Gifts", "average_rating": 3.9, "small_description": ["\ud83c\udf6c 25 Packs including Haitai, Lotte, Orion, Tao Kei Noi and more favorite snack brands ", "\ud83c\udf6c Asian snacks, pastries, dagashi, cookies, waffles, chips, jellies, sodas, ramen, gummies, crackers, pies, rolls, candies and so much more! ", "\ud83c\udf6c This Yummy Asian snack box is a great gift idea for birthday presents, anniversary gifts, care packages for your loved ones who are far from home, office break room snacks, or to keep all to yourself! They are great for all occasions \u2764\ufe0f ", "\ud83c\udf6c While it's a mystery box, you may write in personalization section who this SnackPot is going to, so we can make arrangements in contents. "], "total_reviews": 5, "total_answered_questions": "", "customization_options": "", "seller_id": "A21RPTJE3RHZXK", "seller_name": "InfiniteeShop", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08QRKJWW9", "category": "grocery", "query": "Food & Beverage Gifts", "page": 74, "small_description_old": "\ud83c\udf6c 25 Packs including Haitai, Lotte, Orion, Tao Kei Noi and more favorite snack brands \ud83c\udf6c Asian snacks, pastries, dagashi, cookies, waffles, chips, jellies, sodas, ramen, gummies, crackers, pies, rolls, candies and so much more! \ud83c\udf6c This Yummy Asian snack box is a great gift idea for birthday presents, anniversary gifts, care packages for your loved ones who are far from home, office break room snacks, or to keep all to yourself! They are great for all occasions \u2764\ufe0f \ud83c\udf6c While it's a mystery box, you may write in personalization section who this SnackPot is going to, so we can make arrangements in contents."}, {"name": "FIN86 Men's Elastic High Waisted Shorts,Men's Summer Printed Casual Shorts Loose Tether Pocket Board Shorts", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 7, 2022", "Manufacturer\n \u200f": "\u200e\n FINEWAY869", "ASIN\n \u200f": "\u200e\n B09PYSKD7H", "": ""}, "brand": "Brand: FIN86", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=FIN86", "full_description": "Size: S ===Waist: 72-104cm/28.35-40.94'' ===Length: 39cm/15.35'' ===Hip: 108cm/42.52'' Size: M ===Waist: 76-108cm/29.92-42.52'' ===Length: 40.5cm/15.94'' ===Hip: 112cm/44.09'' Size: L ===Waist: 80-112cm/31.50-44.09'' ===Length: 42cm/16.54'' ===Hip: 116cm/45.67'' Size: XL ===Waist: 84-116cm/33.07-45.67'' ===Length: 43.5cm/17.13'' ===Hip: 120cm/47.24'' Size: XXL ===Waist: 88-120cm/34.65-47.24'' ===Length: 45cm/17.72'' ===Hip: 124cm/48.82''", "pricing": "$9.98$12.98", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51lU4zYUcyL.jpg", "https://m.media-amazon.com/images/I/51rMSSGlUDL.jpg", "https://m.media-amazon.com/images/I/51yxf1+xM0L.jpg", "https://m.media-amazon.com/images/I/51KfxU1MypL.jpg", "https://m.media-amazon.com/images/I/41Yer5ZKySL.jpg", "https://m.media-amazon.com/images/I/41QYcLAnKtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": "", "small_description": ["100% Spandex ", "\u2764Imported ", "\u2764OCCASION: Running Shorts perfect fit workout, gym, running, fitness, training, basketball, jogging, exercise, cycling or other outdoor activities etc--Men's Classic Fit Casual Fleece Jogger Gym Workout Short Pants with Elastic Waist Men's Lightweight Workout Running Athletic Shorts with Pockets Men's Bodybuilding Gym Running Workout Shorts Active Training Shorts Men's Cotton Casual shorts Jogger Capri Pants Breathable Below Knee Short Pants with Three Pockets Mens Casual Shorts Workout. ", "\u2764Material:High quality soft fabric skin-friendly, breathable and sweat-absorbent, keep you cool and relaxed all the time--mens khaki pants chinos for men flat front joggers sports running athletic cargo trousers denim jeans ripped destroied designer capri lounge pants workout casual cropped pants fishing climbing suit pants skate cool ski bibs dress slacks Men's Big and Tall Basic Basketball Mesh Shorts Men\u2019s Compression Shorts Base Layer Athletic Underwear for Cycling Men's Cycling Shorts. ", "\u2764DESIGN: You'll quickly realize why our workout shorts are preferred among fit men of all ages. The running shorts with pockets are stylish--Comfy Shorts Summer Breathable Loose Shorts Men's Quick Dry Swim Trunks Colorful Stripe Beach Shorts with Mesh Lining Men's Bodybuilding Lifting Gym Workout Sweat Shorts Men's Big and Tall Basic Basketball Mesh Shorts Men\u2019s Compression Shorts Base Layer Athletic Underwear for Cycling Men's Cycling Shorts Padded Biking Bicycle Road Bike Tights Biker Pockets. ", "\u2764Great gifts:You can use this as a Christmas gift, Halloween gift, Thanksgiving gift, New Year gift, birthday gift, to your family, friends, classmates, colleagues, neighbors and employees. gym shorts for men men shorts mens shorts shorts shorts for men basketball shorts for men gym shorts for men basketball shorts workout shorts men mens shorts casual mens basketball shorts gym shorts mens gym shorts mens shorts clearance shorts for men athletic mens short shorts shorts men. ", "\u2764Warm tips :To Make sure you get the right size,please refer to our size chart before buying!!! If you dont sure choose which size, please choose larger size than you before,thanks.--mens tshirts mens white t shir t shirts for men tee shirts mens mens tee shirts mens shirts shirts for men tshirts for mens mens shirts clearance white shirt men shirts t shirts for men mens shirt tee shirts mens mens short sleeve shirts white shirts for men sweatshirts for men mens hoodie. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51lU4zYUcyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PYFGHBR/ref=twister_B09PY9PWQP", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51SOVa9pacL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PYSKD7H"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PXVPR1M"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PY287B6"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PY37VDT"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09PXYWPFD"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PYSKD7H", "category": "fashion", "query": "Men's Shorts", "page": 123, "small_description_old": "100% Spandex \u2764Imported \u2764OCCASION: Running Shorts perfect fit workout, gym, running, fitness, training, basketball, jogging, exercise, cycling or other outdoor activities etc--Men's Classic Fit Casual Fleece Jogger Gym Workout Short Pants with Elastic Waist Men's Lightweight Workout Running Athletic Shorts with Pockets Men's Bodybuilding Gym Running Workout Shorts Active Training Shorts Men's Cotton Casual shorts Jogger Capri Pants Breathable Below Knee Short Pants with Three Pockets Mens Casual Shorts Workout. \u2764Material:High quality soft fabric skin-friendly, breathable and sweat-absorbent, keep you cool and relaxed all the time--mens khaki pants chinos for men flat front joggers sports running athletic cargo trousers denim jeans ripped destroied designer capri lounge pants workout casual cropped pants fishing climbing suit pants skate cool ski bibs dress slacks Men's Big and Tall Basic Basketball Mesh Shorts Men\u2019s Compression Shorts Base Layer Athletic Underwear for Cycling Men's Cycling Shorts. \u2764DESIGN: You'll quickly realize why our workout shorts are preferred among fit men of all ages. The running shorts with pockets are stylish--Comfy Shorts Summer Breathable Loose Shorts Men's Quick Dry Swim Trunks Colorful Stripe Beach Shorts with Mesh Lining Men's Bodybuilding Lifting Gym Workout Sweat Shorts Men's Big and Tall Basic Basketball Mesh Shorts Men\u2019s Compression Shorts Base Layer Athletic Underwear for Cycling Men's Cycling Shorts Padded Biking Bicycle Road Bike Tights Biker Pockets. \u2764Great gifts:You can use this as a Christmas gift, Halloween gift, Thanksgiving gift, New Year gift, birthday gift, to your family, friends, classmates, colleagues, neighbors and employees. gym shorts for men men shorts mens shorts shorts shorts for men basketball shorts for men gym shorts for men basketball shorts workout shorts men mens shorts casual mens basketball shorts gym shorts mens gym shorts mens shorts clearance shorts for men athletic mens short shorts shorts men. \u2764Warm tips :To Make sure you get the right size,please refer to our size chart before buying!!! If you dont sure choose which size, please choose larger size than you before,thanks.--mens tshirts mens white t shir t shirts for men tee shirts mens mens tee shirts mens shirts shirts for men tshirts for mens mens shirts clearance white shirt men shirts t shirts for men mens shirt tee shirts mens mens short sleeve shirts white shirts for men sweatshirts for men mens hoodie."}, {"name": "Arcen Mini Close Up Color Colorful Lens Filter Set Compatible for Fujifilm Instax Mini 8/8+/ 9 Instant Film Camera, 6 Piece", "product_information": {"Product Dimensions": "2.8 x 2.4 x 0.4 inches", "Item Weight": "1.8 ounces", "ASIN": "B077KY1X93", "Customer Reviews": {"ratings_count": 64, "stars": "3.7 out of 5 stars"}, "Best Sellers Rank": ["#132,486 in Electronics (See Top 100 in Electronics) #1,640 in Film Cameras"], "Is Discontinued By Manufacturer": "No", "Date First Available": "November 18, 2017", "Manufacturer": "Arcen"}, "brand": "Brand: Arcen", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Arcen", "full_description": "Specifications\uff1a Name: Colorful Close-Up Lens Filter Material: plastic Diameter: 4.95cm a piece Package: 14.8*15cm Color: blue, orange, green, red Installation: 1. Open lens of the camera in order to mount the filter to it. 2. Press the filter down until you hear a click. 3. The camera is now ready to take pictures with it. 4. Finish, after you end shooting pictures, the lens should be removed. Using a little strength to removing lens in order to avoid damaging the camera. Package Included: 6 x Colorful lens", "pricing": "$9.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51RszvN+B-L.jpg", "https://m.media-amazon.com/images/I/51PA4HJ6YEL.jpg", "https://m.media-amazon.com/images/I/51KDW0xeXnL.jpg", "https://m.media-amazon.com/images/I/41VTyGt9epL.jpg", "https://m.media-amazon.com/images/I/41xB3YQ0nRL.jpg", "https://m.media-amazon.com/images/I/41L1an4a33L.jpg", "https://m.media-amazon.com/images/I/51eHdFpM+qL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Film Photography \u203a Film Cameras", "average_rating": 3.7, "small_description": ["Design for fujifilm instax mini 8/ 8+/ 7S/ 9 camera ", "4 colors to choose, blue, orange, green, and red ", "Easy to install, convenient to use ", "You can change the photo with different colors you like, perfect for changing the mood of a picture ", "Fashion and cute appearance design, fit for daily use for good photographic effect, or as a gift "], "total_reviews": 64, "total_answered_questions": 4, "customization_options": "", "seller_id": "A13WDLTIPF7C7W", "seller_name": "Arcen", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B077KY1X93", "category": "electronics", "query": "Film Photography", "page": 333, "small_description_old": "About this item\n \nDesign for fujifilm instax mini 8/ 8+/ 7S/ 9 camera 4 colors to choose, blue, orange, green, and red Easy to install, convenient to use You can change the photo with different colors you like, perfect for changing the mood of a picture Fashion and cute appearance design, fit for daily use for good photographic effect, or as a gift"}, {"name": "VERDUGO GIFT 10016180 Free As A Bird Stool, Multicolor", "product_information": {"Item Weight": "\u200e8.6 pounds", "Product Dimensions": "\u200e17 x 17 x 20 inches", "Item model number": "\u200e1006180", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Height": "\u200e20.2 inches", "Assembled Width": "\u200e18.1 inches", "Assembled Length": "\u200e18 inches", "ASIN": "B00QFWWZMI", "Customer Reviews": {"ratings_count": 51, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#217,840 in Patio, Lawn & Garden (See Top 100 in Patio, Lawn & Garden) #181 in Patio Stools & Bar Chairs"], "Date First Available": "December 1, 2014"}, "brand": "Visit the VERDUGO GIFT Store", "brand_url": "https://www.amazon.com/stores/AccentPlus/page/122D155A-63F4-484B-9454-5EBD3F8DD95F?ref_=ast_bln", "full_description": "Give this adorable stool a permanent home and delight as the compliments flock to you. This metal-framed stool features three colorful bird statuettes and the top cushion is covered with a fascinating linen patterned fabric that is the perfect finishing touch. Spot clean only. Size: 17\" x 17\" x 20\", material(s) iron, linen, sponge.", "pricing": "$85.43", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41vbedXhcYS.jpg", "https://m.media-amazon.com/images/I/61yxoKq2UdS.jpg", "https://m.media-amazon.com/images/I/51gB6RgtHyS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Patio Furniture & Accessories \u203a Patio Seating \u203a Chairs \u203a Stools & Bar Chairs", "average_rating": 4.6, "small_description": ["Give this adorable stool a permanent home and delight as the compliments flock to you ", "Material(s): iron, linen, sponge ", "Spot clean only "], "total_reviews": 51, "total_answered_questions": "", "model": "\u200e1006180", "customization_options": {"Color": null}, "seller_id": "A3JWP49KME64V3", "seller_name": "Sunshine Megastore", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00QFWWZMI", "category": "garden", "query": "Vanities", "page": 250, "small_description_old": "About this item Give this adorable stool a permanent home and delight as the compliments flock to you Dimensions: 17\" x 17\" x 20\" Material(s): iron, linen, sponge Spot clean only \n \u203a See more product details"}, {"name": "RUIGPRO 360\u00b0Motorcycle Bike Camera Holder Handlebar Mount Bracket 1/4 Metal Stand for GoPro Hero10/9/8/7/6/5/4 Action Cameras Accessory(Cool Ballhead Arm Super Clamp Mount Multi)", "product_information": {"Package Dimensions": "4.57 x 2.87 x 2.64 inches", "Item Weight": "8.5 ounces", "ASIN": "B08GKZNTHK", "Customer Reviews": {"ratings_count": 312, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#161 in Camera Mounts & Clamps"], "Date First Available": "August 24, 2020", "Manufacturer": "RUIGPRO"}, "brand": "Visit the RUIGPRO Store", "brand_url": "https://www.amazon.com/stores/RUIGPRO/page/3A7AF01B-A7D6-40F5-951E-0DC23274B573?ref_=ast_bln", "full_description": "", "pricing": "$24.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41dFgL3KktL.jpg", "https://m.media-amazon.com/images/I/41DfjOfAEkL.jpg", "https://m.media-amazon.com/images/I/419SZi4fsRL.jpg", "https://m.media-amazon.com/images/I/41K7aRRBLwL.jpg", "https://m.media-amazon.com/images/I/31oL4WofecL.jpg", "https://m.media-amazon.com/images/I/51j2J+XR5-L.jpg", "https://m.media-amazon.com/images/I/41v9LVDw99L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Tripod & Monopod Accessories \u203a Camera Mounts & Clamps", "average_rating": 4.6, "small_description": ["RUIGPRO Multi-function Double Ballhead is a multifunctional double ball head with a clamp at the bottom and a 1/4\" screw on the top. ", "100% new quality, firm and stable, aluminum alloy arm ", "The film is non-slip and shockproof, stable shooting, no jitter ", "Ball sleeve structure, you can adjust various angles at will ", "With standard 1/4 inch screw, suitable for most cameras such as card digital camera, micro single camera, SLR camera, GoPro motion camera, CONTOUR motion camera, etc. "], "total_reviews": 312, "total_answered_questions": 8, "customization_options": "", "seller_id": "A1KIWE1BFW5GMI", "seller_name": "KUUBEN", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08GKZNTHK", "category": "electronics", "query": "Mounts", "page": 33, "small_description_old": "About this item\n \nRUIGPRO Multi-function Double Ballhead is a multifunctional double ball head with a clamp at the bottom and a 1/4\" screw on the top. 100% new quality, firm and stable, aluminum alloy arm The film is non-slip and shockproof, stable shooting, no jitter Ball sleeve structure, you can adjust various angles at will With standard 1/4 inch screw, suitable for most cameras such as card digital camera, micro single camera, SLR camera, GoPro motion camera, CONTOUR motion camera, etc."}, {"name": "MekedeTech 10.25'' Android 10 8 Core 4+64G Car Radio Multimedia Player GPS Navigation for Mercedes Benz S W221 W216 CL 2010-2013 S-Class Head Unit (NTG 3.5)", "product_information": {"Item Weight": "\u200e5.19 pounds", "Package Dimensions": "\u200e15.47 x 9.06 x 6.85 inches", "Display Size": "\u200e10.25 Inches", "Display resolution": "\u200e1920x720", "ASIN": "B08M5BYQN9", "Customer Reviews": {"ratings_count": 10, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#162,945 in Electronics (See Top 100 in Electronics) #1,796 in Car In-Dash Navigation GPS Units"], "Date First Available": "October 29, 2020"}, "brand": "Brand: MekedeTech", "brand_url": "https://www.amazon.com/MekedeTech/b/ref=bl_dp_s_web_20642020011?ie=UTF8&node=20642020011&field-lbr_brands_browse-bin=MekedeTech", "full_description": "", "pricing": "$599.00", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/4168iiSF6wL.jpg", "https://m.media-amazon.com/images/I/51yiRewIVJL.jpg", "https://m.media-amazon.com/images/I/51h-UD4ImNL.jpg", "https://m.media-amazon.com/images/I/41CjSkSboxL.jpg", "https://m.media-amazon.com/images/I/51IWO1dCVpL.jpg", "https://m.media-amazon.com/images/I/51qqg8HNvZL.jpg", "https://m.media-amazon.com/images/I/51832Z-tdxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Car Electronics \u203a Car Video \u203a In-Dash Navigation", "average_rating": 4.7, "small_description": ["\u3010Retain Original Radio System\u3011keep all of OEM function,such as original car radio, amplifier function, joystick control, rear view camera and reverse trajectory and etc. all operation are the same as your OEM one ", "\u3010Qualcomm Android 10 with Built in Wireless Carplay\u3011With the newest Qualcomm Android 10, respond faster and senstive. Built in Wireless Carplay, there is no need to buy a carplay dongle extra. Support factory and aftermarket camera, DVR\uff1bSupport Google Play and multiple languages.Support Bluetooth Music and Bluetooth Call; ", "\u3010High Configuration-Split Screen\u3011With the newest round corner designed\uff0cstylish and beautiful look, 1920*720 resolution, IPS high-definition picture quality, image and video display effect more clear and confortable. You can also enjoy faster running with 8 Core CPU 4GB RAM 64GB ROM for downloading more favorite APPs to obtain richer car experience. Multitasking run 2 apps at the same time share the screen with your family while you drive with navigation ", "\u3010Non-destructive Installation&Easy to Install\u3011The Package will come with all wires for installation. no break the original car line.just replace the screen, plug and play. ", "\u3010Customized System for S Class W221: 2005-2013 Left Hand Driver Car\u3011:Such as S250 S280 S320 S350 S400 S500 S600 S63 SG5 AMG 2005-2013 year NTG 3.5, please check your car info carefully before purchasing or you can contact us for help. "], "total_reviews": 10, "total_answered_questions": 62, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08M5Y1KWT/ref=twister_B08M6JRWLV?_encoding=UTF8&psc=1", "value": "NTG 3.0", "price_string": "$559.00", "price": 559, "image": "https://m.media-amazon.com/images/I/4168iiSF6wL.jpg"}, {"is_selected": true, "url": null, "value": "NTG 3.5", "price_string": "$599.00", "price": 599, "image": "https://m.media-amazon.com/images/I/4168iiSF6wL.jpg"}]}, "seller_id": "ASG4KND3JH8W7", "seller_name": "Mekedetech", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08M5BYQN9", "category": "electronics", "query": "Car Accessories", "page": 104, "small_description_old": "About this item \u3010Retain Original Radio System\u3011keep all of OEM function,such as original car radio, amplifier function, joystick control, rear view camera and reverse trajectory and etc. all operation are the same as your OEM one \u3010Qualcomm Android 10 with Built in Wireless Carplay\u3011With the newest Qualcomm Android 10, respond faster and senstive. Built in Wireless Carplay, there is no need to buy a carplay dongle extra. Support factory and aftermarket camera, DVR\uff1bSupport Google Play and multiple languages.Support Bluetooth Music and Bluetooth Call; \u3010High Configuration-Split Screen\u3011With the newest round corner designed\uff0cstylish and beautiful look, 1920*720 resolution, IPS high-definition picture quality, image and video display effect more clear and confortable. You can also enjoy faster running with 8 Core CPU 4GB RAM 64GB ROM for downloading more favorite APPs to obtain richer car experience. Multitasking run 2 apps at the same time share the screen with your family while you drive with navigation \u3010Non-destructive Installation&Easy to Install\u3011The Package will come with all wires for installation. no break the original car line.just replace the screen, plug and play. \u3010Customized System for S Class W221: 2005-2013 Left Hand Driver Car\u3011:Such as S250 S280 S320 S350 S400 S500 S600 S63 SG5 AMG 2005-2013 year NTG 3.5, please check your car info carefully before purchasing or you can contact us for help. \n \u203a See more product details"}, {"name": "HDMI to SVideo Converter, HDMI to RCA Converter with Svideo Cable Audio Video Adapter Converter Support 720P/1080p for PC Laptop Xbox PS3 TV STB VHS VCR Blue-Ray DVD", "product_information": {"Package Dimensions": "6.1 x 5.94 x 0.71 inches", "Item Weight": "5.9 ounces", "ASIN": "B09BKMRMDV", "Customer Reviews": {"ratings_count": 63, "stars": "3.8 out of 5 stars"}, "Best Sellers Rank": ["#205 in Video Converters"], "Date First Available": "December 26, 2020", "Manufacturer": "TaiHuai"}, "brand": "Brand: TaiHuai", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=TaiHuai", "full_description": "HDMI to SVideo Converter: Convert HDMI signal to Svideo analog video and L/ R audio(SVideo is a female port), Available for TV, VHS VCR, DVD recorders, etc.", "pricing": "$16.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41-3Hl6ybPL.jpg", "https://m.media-amazon.com/images/I/51IURYztFVL.jpg", "https://m.media-amazon.com/images/I/41lykg3yXYL.jpg", "https://m.media-amazon.com/images/I/51FuqZj0SPS.jpg", "https://m.media-amazon.com/images/I/41zBp8oDroL.jpg", "https://m.media-amazon.com/images/I/417jMltAL0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Video Converters", "average_rating": 3.8, "small_description": ["HDMI to SVideo Converter: Convert HDMI signal to RCA/Svideo analog video (SVideo is a female port), Available for TV, VHS VCR, DVD recorders, etc. ", "HDMI to SVideo: support two formats of PAL and NTSC output with a selecting switch, usually NTSC for America, PAL for other Countries. Note: If your TV shows black and white, Please change RCA format NTSC to PAL or PAL to NTSC by the N/P switch. ", "Esay to use : Plug and play without any drivers,portable and flexible. Please hook up the USB power cable (included) to 5V power source during use\uff08no included\uff09. ", "HDMI 1.3 Input: Support HDMI input from 480i to 1080P, does not support 3D. It can work properly for TV Stick (such as Roku, Apple TV, PC, Laptop, Xbox, HDTV, DVD).But do not support with mobile phones and iPad series. ", "Compatible: Converter Suitable for TV Stick, Roku, Blu-Ray, DVD player, Xbox 360, Wii, PC, HD camera and more. Then connect the RCA end into any display with RCA inputs such as Monitor/ TV/ HDTV/ Projector and more. "], "total_reviews": 63, "total_answered_questions": "", "customization_options": {"Style": null}, "seller_id": "A21QH4IWHPEJKX", "seller_name": "TaiHuai", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09BKMRMDV", "category": "electronics", "query": "HDMI Cables", "page": 53, "small_description_old": "About this item\n \nHDMI to SVideo Converter: Convert HDMI signal to RCA/Svideo analog video (SVideo is a female port), Available for TV, VHS VCR, DVD recorders, etc. HDMI to SVideo: support two formats of PAL and NTSC output with a selecting switch, usually NTSC for America, PAL for other Countries. Note: If your TV shows black and white, Please change RCA format NTSC to PAL or PAL to NTSC by the N/P switch. Esay to use : Plug and play without any drivers,portable and flexible. Please hook up the USB power cable (included) to 5V power source during use\uff08no included\uff09. HDMI 1.3 Input: Support HDMI input from 480i to 1080P, does not support 3D. It can work properly for TV Stick (such as Roku, Apple TV, PC, Laptop, Xbox, HDTV, DVD).But do not support with mobile phones and iPad series. Compatible: Converter Suitable for TV Stick, Roku, Blu-Ray, DVD player, Xbox 360, Wii, PC, HD camera and more. Then connect the RCA end into any display with RCA inputs such as Monitor/ TV/ HDTV/ Projector and more."}, {"name": "Leupold, Tripod, Carbon Fiber Kit", "product_information": {"Item Package Dimensions L x W x H": "\u200e27.6 x 6.2 x 5.1 inches", "Package Weight": "\u200e2.25 Kilograms", "Item Dimensions LxWxH": "\u200e28 x 6 x 5 inches", "Item Weight": "\u200e4.9 Pounds", "Brand Name": "\u200eLeupold", "Warranty Description": "\u200eSee manufacturer", "Model Name": "\u200e170600", "Color": "\u200eBlack", "Material": "\u200eCarbon Fiber", "Suggested Users": "\u200eUnisex-adult", "Number of Items": "\u200e1", "Manufacturer": "\u200eLeupold", "Part Number": "\u200e170600", "Included Components": "\u200eTripod Carbon Fiber Kit", "ASIN": "B01F3JGOWA", "Customer Reviews": {"ratings_count": 3, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#3,324 in Complete Tripod Units"], "Date First Available": "May 3, 2016"}, "brand": "Visit the Leupold Store", "brand_url": "https://www.amazon.com/stores/Leupold/page/F88C843B-351A-419B-A07B-FC1819A26FE5?ref_=ast_bln", "full_description": "Created to be great for nearly any shooter, the Leupold Carbon Fiber Tripod Kit will improve the quality of your already awesome scope. An effective bit of riflescope gear will make an amazing addition for the scopes of shooters, and because of the Leupold Carbon Fiber Tripod Kit, receiving a top quality piece of scope equipment hasn't ever been simpler. These Riflescope Accessories from Leupold are created with all the long lasting and dependable components you expect to see from this remarkable company. Leupold has been producing high quality gear for your scope for a long time, and the Leupold Carbon Fiber Tripod Kit is the result of their initiatives to be certain you have a great accessory for your riflescope. For an ideally suited solution to make sure your already remarkable scope is that much better, purchase the Leupold Carbon Fiber Tripod Kit.", "pricing": "$349.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21CFooHCXJL.jpg", "https://m.media-amazon.com/images/I/21CFooHCXJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Tripods & Monopods \u203a Complete Tripods", "average_rating": 4.1, "small_description": ["Created to be great for nearly any shooter "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "A30DGGRQPDAP9Y", "seller_name": "OpticsPlanet, Inc", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01F3JGOWA", "category": "electronics", "query": "Binoculars & Scopes", "page": 61, "small_description_old": "About this item\n \nCreated to be great for nearly any shooter"}, {"name": "Callaway Women's Performance Flat Front 9.5\" Inseam Short", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13 x 12 x 1 inches; 8.78 Ounces", "Item model number\n \u200f": "\u200e\n fauxCGBF9020", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n March 1, 2021", "Manufacturer\n \u200f": "\u200e\n Callaway Golf by Perry Ellis", "ASIN\n \u200f": "\u200e\n B07GYNXYKK", "Best Sellers Rank": "#469,920 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,952 in Women's Athletic Shorts #5,772 in Women's Golf Clothing", "#1,952 in Women's Athletic Shorts": "", "#5,772 in Women's Golf Clothing": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Callaway Store", "brand_url": "https://www.amazon.com/stores/Callaway/page/74629508-5297-4F4C-A75A-9600E6FC63AA?ref_=ast_bln", "full_description": "", "pricing": "$60.00$117.18", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31uXPEfog9L.jpg", "https://m.media-amazon.com/images/I/31hO5xUoH1L.jpg", "https://m.media-amazon.com/images/I/31VGrdt2k5L.jpg", "https://m.media-amazon.com/images/I/31VGrdt2k5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Shorts", "average_rating": 4.3, "small_description": ["Package Dimensions: 2.54 L x 33.02 H x 30.48 W (centimeters) ", "Product possess high durability ", "Made Of High Quality Materials "], "total_reviews": 28, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07GYPSGRQ/ref=twister_B07N6Z1FDW", "value": "Solid Brilliant White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31zHaJ5q5QL.jpg"}, {"is_selected": true, "url": null, "value": "Solid Caviar", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31uXPEfog9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07GYVRDPW/ref=twister_B07N6Z1FDW", "value": "Solid Peacoat", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/3173G3znZFL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B07GYVZ3QY"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B07GYR5J51"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07GYTHLGV"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07GYSLFLG"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07GYV7P3Q"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07GYPQZXK"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07GYTHLGV", "category": "fashion", "query": "Women's Shorts", "page": 9, "small_description_old": "Package Dimensions: 2.54 L x 33.02 H x 30.48 W (centimeters) Product possess high durability Made Of High Quality Materials"}, {"name": "Leupold RX-1400i TBR/W with DNA Black TOLED", "product_information": {"Item Package Dimensions L x W x H": "\u200e5.63 x 4.72 x 3.15 inches", "Package Weight": "\u200e0.29 Kilograms", "Brand Name": "\u200eLeupold", "Warranty Description": "\u200eLifetime Guarantee", "Model Name": "\u200eRX-1400i TBR/W with DNA Black TOLED", "Color": "\u200eMatte", "Material": "\u200eAluminum", "Suggested Users": "\u200eUnisex-adult", "Number of Items": "\u200e1", "Manufacturer": "\u200eLeupold", "Part Number": "\u200e179640", "Model Year": "\u200e2020", "Included Components": "\u200eRangefinder", "Sport Type": "\u200eHunting", "ASIN": "B088KSY32D", "Customer Reviews": {"ratings_count": 186, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#25,200 in Sports & Outdoors (See Top 100 in Sports & Outdoors) #9 in Laser Rangefinders"], "Date First Available": "May 13, 2020"}, "brand": "Visit the Leupold Store", "brand_url": "https://www.amazon.com/stores/Leupold/page/F88C843B-351A-419B-A07B-FC1819A26FE5?ref_=ast_bln", "full_description": "The Leupold RX-1400i TBR/W with DNA Laser Rangefinder enters the market as the most versatile, feature-rich rangefinder in its class. Equipped with our proprietary ranging engine for lightning-fast accuracy, and an exceptionally bright red display, this rangefinder will take your hunting and shooting to the next level. Ballistically calculated ranges keep you on target even for the most extreme uphill and downhill shots. All of this functionality comes wrapped up in an incredibly rugged, lightweight polymer housing, making the RX-1400i TBR/W the perfect choice for your next big adventure.", "pricing": "$199.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51gsK+6WavL.jpg", "https://m.media-amazon.com/images/I/51V8I0Jtn6L.jpg", "https://m.media-amazon.com/images/I/418DiZRejwL.jpg", "https://m.media-amazon.com/images/I/41U93XFJPlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Sports & Outdoors \u203a Hunting & Fishing \u203a Shooting \u203a Optics \u203a Laser Rangefinders", "average_rating": 4.7, "small_description": ["Model #179640 - RX-1400i TBR/W with DNA Black TOLED "], "total_reviews": 186, "total_answered_questions": 24, "customization_options": "", "seller_id": "A2G3IE5A14HC2W", "seller_name": "Eurooptic LTD", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B088KSY32D", "category": "electronics", "query": "Film Photography", "page": 63, "small_description_old": "Model #179640 - RX-1400i TBR/W with DNA Black TOLED"}, {"name": "Wrington Storage Platform Bed, Frame Material: Solid Wood, Eco-Friendly Solid Hardwood with Non-Toxic Finish", "product_information": {"Item Weight": "172 pounds", "Manufacturer": "MilanHome", "ASIN": "B09BNCFGLY", "Date First Available": "August 6, 2021"}, "brand": "Brand: MilanHome", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=MilanHome", "full_description": "AT A GLANCE 1. Box Spring Not Required 2. Storage Included 3. Solid Wood 4. Warranty Length: 1 Year 5. Wood Species: Rubberwood This Storage Platform Bed has a fashionable taste of its own. Symmetrical curvature with an accommodating inset bevel gives this bed the Metropolitan sophistication. Complete with two under bed storage drawers so you never have to sacrifice style for functionality. PRODUCT DETAILS 1. Frame Material: Solid Wood 2. Box Spring Required: No 3. Adult Assembly Required: Yes 4. Compatible with Adjustable Bed: No FEATURES 1. Flat Panel Footboard enhances class 2. Eco-friendly Solid Hardwood with Non-Toxic Finish 3. Designed for Lasting Durability 4. Includes two large drawers for ample underbed storage that slides easily on wheels 5. Supported by hardwood slat kit, foundation not required, mattress sold separately 6. Drawers can be placed on either side of the bed 7. Accommodates up to four drawers (additional sets sold separately) 8. Additional Intended Use For Child QUEEN SIZE 1. Overall: 50'''' H x 82.5'''' L 2. Headboard Height - Top to Bed Frame: 28.25'''' OTHER DIMENSIONS 1. Drawer Interior: 7.75'''' H x 35'''' W x 18'''' D 2. Clearance from Floor to Underside of Bed: 11.5'''' 3. Overall Product Weight: 172 lb. FEATURES 1. Frame Material: Solid Wood 2. Wood Species: Rubberwood 3. Wood Species: Rubberwood 4. Additional Frame Material Details: Solid Hardwood 5. Box Spring Required: No 6. Number of Slats Included: 14 7. Distance between the Slats: 3 8. Center Support Legs (Twin Size): No 9. Center Support Legs (Full Size): Yes 10. Number of Center Support Legs (Full Size): 2 11. Center Support Legs (Queen Size): Yes 12. Number of Center Support Legs (Queen", "pricing": "$1,514.48", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/51fzh9m3UWL.jpg", "https://m.media-amazon.com/images/I/41Vwtj80IIL.jpg", "https://m.media-amazon.com/images/I/51uJTX3F2nL.jpg", "https://m.media-amazon.com/images/I/51797noRnSL.jpg", "https://m.media-amazon.com/images/I/51XEt1rudML.jpg", "https://m.media-amazon.com/images/I/41s6q9G4i9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Bed Frames", "average_rating": "", "small_description": ["Frame Material: Solid Wood, Eco-friendly Solid Hardwood with Non-Toxic Finish ", "Additional Intended Use For Child, Flat Panel Footboard enhances class ", "Additional Tools Required: Screw Driver; Allen Wrench/ Key, Headboard Height - Top to Bed Frame: 28.25'''' ", "Accommodates up to four drawers (additional sets sold separately), Center Support Legs (Twin Size): No ", "Product Warranty: Yes, Wood Species: Rubberwood "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A9B91MNWC3Y2A", "seller_name": "Minyane", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09BNCFGLY", "category": "garden", "query": "Bedframes", "page": 323, "small_description_old": "About this item\n \nAdditional Intended Use For Child, Flat Panel Footboard enhances class Additional Tools Required: Screw Driver; Allen Wrench/ Key, Headboard Height - Top to Bed Frame: 28.25'''' Accommodates up to four drawers (additional sets sold separately), Center Support Legs (Twin Size): No Product Warranty: Yes, Wood Species: Rubberwood"}, {"name": "Bxwjg Metal Filing Cabinet, 5-Layer File Storage Cabinet, with Lock and Index Label, Aluminum Alloy, for Business", "product_information": {"Item Weight": "11.02 pounds", "Manufacturer": "bxwjg", "ASIN": "B089B1K9LJ"}, "brand": "Brand: Bxwjg", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Bxwjg", "full_description": "This file cabinet can make your office table clean and tidyName: 5-layer lock type desktop cabinetSpecifications: 300*360*305mm(12in*14.4in*12.2in)Color: SilverMaterial: Aluminum alloy\uff0cMDFWeight: 4kgProduct Description:\u2606 Large-capacity storage space, small size, space saving, very suitable for household goods and office supplies.\u2606 The edge of the cabinet is sealed along the edge of the heat seal, smooth, not cut, seamlessly wrapped, safer and more durable.\u2606 Locked desktop storage cabinet can better protect important information.\u2606 Exquisite hardware key, smooth opening, high hardness, not easy to break, each cabinet is equipped with a different key, very safe.\u2606 All with silent slide rails, can be easily slid, no noise, the bracket is not easy to fall off.\u2606 The desktop drawer organizer compact mini size is an ideal fit for most shelf space or desks.Welcome to the shop to buy, hope to visit next time.", "pricing": "$146.52", "list_price": "", "availability_quantity": 20, "availability_status": "Only 20 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/417ugB9dZLL.jpg", "https://m.media-amazon.com/images/I/41nWq+drX+L.jpg", "https://m.media-amazon.com/images/I/31ocI6t7aRL.jpg", "https://m.media-amazon.com/images/I/41HuP1hsjiL.jpg", "https://m.media-amazon.com/images/I/412vaW6j0eL.jpg", "https://m.media-amazon.com/images/I/41hpQdNYUyL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Furniture & Lighting \u203a Cabinets, Racks & Shelves \u203a File Cabinets \u203a Flat File Cabinets", "average_rating": "", "small_description": ["1. Made of high-hardness aluminum alloy, it effectively functions as anti-collision and anti-wear, and is embedded in the landslide track drawer to make your office more fashionable. ", "2. With a lock can protect your private documents, important information or personal belongings. ", "3. 5 layers of independent storage to meet your needs, easy to sort different file box items, improve work efficiency. ", "4. An index label is attached for easy classification. When there are many files, it is inevitable to forget which layer of the file you want. The label helps you quickly find the file you want. ", "5. The file storage drawer collects smoothly, no card slot, can hold A4 size paper, effectively save the daily required data files. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2KM440J8SHLIN", "seller_name": "full of personality", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B089B1K9LJ", "category": "garden", "query": "File Cabinets", "page": 109, "small_description_old": "About this item\n \n1. Made of high-hardness aluminum alloy, it effectively functions as anti-collision and anti-wear, and is embedded in the landslide track drawer to make your office more fashionable. 2. With a lock can protect your private documents, important information or personal belongings. 3. 5 layers of independent storage to meet your needs, easy to sort different file box items, improve work efficiency. 4. An index label is attached for easy classification. When there are many files, it is inevitable to forget which layer of the file you want. The label helps you quickly find the file you want. 5. The file storage drawer collects smoothly, no card slot, can hold A4 size paper, effectively save the daily required data files."}, {"name": "CSU Cleveland State University Vikings Property Fleece Drawstring Shorts Heather Charcoal", "product_information": {"Item Weight\n \u200f": "\u200e\n 6.5 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n October 7, 2021", "Manufacturer\n \u200f": "\u200e\n W Republic", "ASIN\n \u200f": "\u200e\n B09HX5CD2D", "": ""}, "brand": "", "brand_url": "", "full_description": "CSU Cleveland State University Vikings Property Fleece Drawstring Shorts Heather Charcoal The College Fleece Shorts feature a classic logo imprint of your college. They are soft and durable with an elastic waistband with drawstrings for a secure fit and side-angled pockets. Be sure to show off your school pride and team spirit!These comfortable shorts are great to wear around campus or even to bed! Keep you warm during the cold seasons, but cool enough to wear to class, when you are out and about, or just playing ball on the court! Every leg is a slam dunk, thanks to our stylish college fleece shorts.They come in cool colors such as heather grey, charcoal, and navy, depending on the school. While they are sized for men, they are unisex and women can wear them too! Just pick your size.You know what they say, \"if you can't beat 'em, join 'em.\" Now even if your squad didn't win the championship parade last weekend, at least you can still represent your school's spirit with these awesome fleece shorts!Look like your favorite team at home with these comfortable fleece shorts. One of the most sought-after styles around, they will surely impress!Great NCAA Clothing and Apparel Gift Idea for students, grads, college sports fans, alumni, teams and teammates, coaches, parents, mom, dad, friends, fraternity, sorority, club, group, and family! Great to give as a gift for occasions like Christmas, back to school, open house, gym, practice, daily wear, or to celebrate graduation, father's day, holidays, birthdays, and more.", "pricing": "$39.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/415H07lYJQL.jpg", "https://m.media-amazon.com/images/I/413p4BMicyL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": "", "small_description": ["Made in USA and Imported ", "Drawstring closure ", "Machine Wash ", "Sizing: Men's Size but can be unisex. See Size Chart in image gallery and pick from Small, Medium, Large, XL, XXL. ", "Assorted Colors Based on Colleges - Choose from favorites like Heather Grey, Heather Charcoal, and Navy. You will want to get them all! ", "Elastic Waistband wiith Drawstrings and side-angled pockets make for a perfect fit! ", "Material: 65% Cotton / 35% Polyester is extremely soft, comfortable, with a stylish look. ", "College Logo Digitally Printed in USA and Officially Licensed by W Republic Apparel - Wear your school spirit with pride! "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Heather Charcoal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01tfv8Di9dL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HX2ZWWD/ref=twister_B09HX1B9GS", "value": "Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01m5R8-xh0L.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09HX5CD2D"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09HWYMYT3"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09HX1DYQ2"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09HX1BF4K"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09HX35XLM"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09HX5CD2D", "category": "fashion", "query": "Men's Shorts", "page": 73, "small_description_old": "Made in USA and Imported Drawstring closure Machine Wash Sizing: Men's Size but can be unisex. See Size Chart in image gallery and pick from Small, Medium, Large, XL, XXL. Assorted Colors Based on Colleges - Choose from favorites like Heather Grey, Heather Charcoal, and Navy. You will want to get them all! Elastic Waistband wiith Drawstrings and side-angled pockets make for a perfect fit! Material: 65% Cotton / 35% Polyester is extremely soft, comfortable, with a stylish look. College Logo Digitally Printed in USA and Officially Licensed by W Republic Apparel - Wear your school spirit with pride!"}, {"name": "Ice Roller For Face, Beauty Care Tool Acne kit Roller Suitable For Face Eyes and Neck Shrink Pores Reduce Acne Moisturize The Skin and Enhance The Natural Luster of The Skin(pink)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5 x 2.8 x 2.1 inches; 5 Ounces", "UPC\n \u200f": "\u200e\n 797823315816", "Manufacturer\n \u200f": "\u200e\n SMKYOKKZHI", "ASIN\n \u200f": "\u200e\n B09L1G6H5Z", "Best Sellers Rank": "#562,173 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,018 in Facial Skin Care Sets & Kits", "#2,018 in Facial Skin Care Sets & Kits": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: SMKYOKKZHI", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SMKYOKKZHI", "full_description": "", "pricing": "$14.99", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31X5LhN0ypL.jpg", "https://m.media-amazon.com/images/I/41N18zW2qmL.jpg", "https://m.media-amazon.com/images/I/41jfmpVD3VL.jpg", "https://m.media-amazon.com/images/I/41heTjXwjrL.jpg", "https://m.media-amazon.com/images/I/41KF8UXR83L.jpg", "https://m.media-amazon.com/images/I/415HNR8wl+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Sets & Kits", "average_rating": 5, "small_description": ["[Facial care]: Suitable for all skin types, improve skin problems, body massage care. It has multiple functions such as beauty and cleaning. ", "[Health and Safety]: This ice roller is made of high-quality silicone material, does not contain bisphenol A, is non-toxic, has a light fragrance, and is safe and durable. It can be reused. ", "[Easy to use]: The ergonomic hand design is easy to grasp and fill the cube with water. Freeze once, apply ice cubes to the skin in a circular motion within 30 seconds. For best results, please use daily. ", "[Multi-function]: You can be creative according to your skin needs, freeze and reserve cube recipes, such as lemon, rose water, cucumber, aloe vera and green tea. ", "\u2764\u3010Perfect Gift\u3011\u2764It can be used as a holiday gift for your family and friends. Give yourself or your love an immortal gift. "], "total_reviews": 3, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09L1GCB56/ref=twister_B09NK6LB57?_encoding=UTF8&psc=1", "value": "blue", "price_string": "$13.99", "price": 13.99, "image": "https://m.media-amazon.com/images/I/31Gidf316xL.jpg"}, {"is_selected": true, "url": null, "value": "pink", "price_string": "$14.99", "price": 14.99, "image": "https://m.media-amazon.com/images/I/31X5LhN0ypL.jpg"}]}, "seller_id": "A2GVD38MW4CV0W", "seller_name": "Constant Di", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09L1G6H5Z", "category": "beauty", "query": "Skin Care Tools", "page": 83, "small_description_old": "[Facial care]: Suitable for all skin types, improve skin problems, body massage care. It has multiple functions such as beauty and cleaning. [Health and Safety]: This ice roller is made of high-quality silicone material, does not contain bisphenol A, is non-toxic, has a light fragrance, and is safe and durable. It can be reused. [Easy to use]: The ergonomic hand design is easy to grasp and fill the cube with water. Freeze once, apply ice cubes to the skin in a circular motion within 30 seconds. For best results, please use daily. [Multi-function]: You can be creative according to your skin needs, freeze and reserve cube recipes, such as lemon, rose water, cucumber, aloe vera and green tea. \u2764\u3010Perfect Gift\u3011\u2764It can be used as a holiday gift for your family and friends. Give yourself or your love an immortal gift."}, {"name": "CTS AIR PLANTS Assorted Tillandsia Air Plants 6 Pack", "product_information": {"Manufacturer": "CTS Air Plants", "ASIN": "B00IB6AW4Y", "Customer Reviews": {"ratings_count": 25, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#372,635 in Patio, Lawn & Garden (See Top 100 in Patio, Lawn & Garden) #1,213 in Cacti & Succulent Plants"], "Is Discontinued By Manufacturer": "No"}, "brand": "Visit the CTS Air Plants Store", "brand_url": "https://www.amazon.com/stores/CTS+AIR+PLANTS/page/3E7A1C26-B725-48EB-A96D-92BAEA68C40D?ref_=ast_bln", "full_description": "6 Pack Assorted Tillandsia Medium Size A nice variety of medium sized air plants. Great size for Orbs. CARE:Great pack for orbs! These varieties are very hardy. Keep them in a sunny window and soak for 8 hours once every 1-2 weeks and that's it. COLOR: most are shades of green, some may have red/pink when in blush/bloom. Plants received may or may not be in bloom SIZE: These are medium size tillandsia. Plants received will range in size from 3\" to 6\" or larger depending on availability. Best quality you can find. Natural products-sizes, shapes, and colors may vary from photo. Comes with care instructions by CTS Air Plants. ** For shipping to areas with temps below freezing select expedited shipping option or plants not guaranteed against freezingCOLD WEATHER SHIPPING USE EXPEDITED SHIPPING OPTION", "pricing": "$19.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41uOobZY8QL.jpg", "https://m.media-amazon.com/images/I/41tsyGAIxlL.jpg", "https://m.media-amazon.com/images/I/31a12l7nYmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Gardening & Lawn Care \u203a Plants, Seeds & Bulbs \u203a Cacti & Succulents", "average_rating": 4.7, "small_description": ["6 medium size air plants Approximately 3\"-6\" ", "6 different air plant varieties ", "Fast Shipping ", "Comes with care instructions by CTS Air Plants ", "Make great gifts "], "total_reviews": 25, "total_answered_questions": "", "customization_options": "", "seller_id": "A188OOAS9MIC8N", "seller_name": "CTS Air Plants", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00IB6AW4Y", "category": "grocery", "query": "Fresh Flowers & Live Indoor Plants", "page": 9, "small_description_old": "6 medium size air plants Approximately 3\"-6\" 6 different air plant varieties Fast Shipping Comes with care instructions by CTS Air Plants Make great gifts"}, {"name": "Victoria secret 2 piece bombshell gift set- (new packaging)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 7.95 x 7.95 x 3.6 inches; 11.2 Ounces", "UPC\n \u200f": "\u200e\n 667534099247", "Manufacturer\n \u200f": "\u200e\n Victoria secret", "ASIN\n \u200f": "\u200e\n B01NB94BQO", "Best Sellers Rank": "#561,712 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,288 in Women's Fragrance Sets", "#1,288 in Women's Fragrance Sets": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Victoria's Secret", "brand_url": "https://www.amazon.com/Victorias-Secret/b/ref=bl_dp_s_web_2603249011?ie=UTF8&node=2603249011&field-lbr_brands_browse-bin=Victoria%27s+Secret", "full_description": "The perfect duo to gift or keep, in our award-winning blend of purple passion fruit, Shangri-La peony and vanilla orchid. 2 piece: Bombshell lotion (3.4 fl oz) , bombshell body mist (2.5 fl oz) 100% authentic product by victoria secret", "pricing": "$29.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51WGIGXVoVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Sets", "average_rating": 4.5, "small_description": ["Victoria secret bombshell gift set ", "2 piece: Bombshell lotion (3.4 fl oz) , bombshell body mist (2.5 fl oz) ", "MADE in USA by victoria secret ", "The perfect duo to gift or keep, in our award-winning blend of purple passion fruit, Shangri-La peony and vanilla orchid. "], "total_reviews": 18, "total_answered_questions": "", "customization_options": "", "seller_id": "A1PLLSDVESNQK6", "seller_name": "BEST BUY DISTRIBUTION LLC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01NB94BQO", "category": "beauty", "query": "Sets Fragrance", "page": 145, "small_description_old": "About this item Victoria secret bombshell gift set 2 piece: Bombshell lotion (3.4 fl oz) , bombshell body mist (2.5 fl oz) MADE in USA by victoria secret The perfect duo to gift or keep, in our award-winning blend of purple passion fruit, Shangri-La peony and vanilla orchid."}, {"name": "Professional Pedicure Tools Kit, 20/23 in 1 Stainless Steel Foot Spa Care Set Foot Rasp Dead Skin Callus Remover Foot File Foot Scrubber for Women Men Salon or Home Use", "product_information": {"Manufacturer\n \u200f": "\u200e\n ChYoung", "ASIN\n \u200f": "\u200e\n B09B9QLDKD", "Best Sellers Rank": "#822,692 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,375 in Foot Files", "#2,375 in Foot Files": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: ChYoung", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ChYoung", "full_description": "Material:Stainless SteelErgonomic Design: Each pedicure tool is designed for special needs, with small and lightweight design, holding comfortably,non-slip designQuickly Removes Rough Skin: The sharp foot pedicure kit can effectively dead skin on feet, callus, hard skin, corn, cuticle etc.and thick nails in seconds.Save Time and Money: The pedicure kit allows you to do foot care at home without going to a salon. It is recommended to use 1-2 times a week, regular use of feet pedicure kits, it can also restore your original smooth skin. Pedicure Kit:Coming with different pedicure tools,Including foot rasp callus remover, cuticle remover, foot peel, foot clipper, scraper, callus remover, foot file, nail file, cuticle remover, nail and toenail clipper etc.Great Foot Care kit: Foot file kit are suitable for spa, foot bath and your personal foot care.Steps:Step 1: Soak your feet. We recommend that you soak your feet in warm water for 10-15 minutes to soften the skin.Step 2: step: stainless steel rough file or fine file: first with rough steel grinding, preliminary clean dead skin.Step 3: Stainless steel callus scraper: for more fine grinding of the bottom of the foot calluses.Step 4: The back of the rough file or smooth file: After trimming the foot again, sand the foot with the back of the sandpaper.Step 5: Callus razor: Use a razor blade to scrape away dead skin and calluses from the soles of your feet.Step 6: Two-in-one nail file and dead fork: Sanding the edges of the manicured nails,Use a fork to peel off the dead skin and use your fingernails to edge your feet.Step 7: Push the cuticle: Scrub the surface of the nail to make the foot or nail surface smoother.Step 8: The cuticle fork: For trimming dead skin around your nails.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51WDtj2vXhS.jpg", "https://m.media-amazon.com/images/I/41k1VDNT8VS.jpg", "https://m.media-amazon.com/images/I/51tVhWhRcpS.jpg", "https://m.media-amazon.com/images/I/51LB+sdjrFS.jpg", "https://m.media-amazon.com/images/I/51IZCLr50sS.jpg", "https://m.media-amazon.com/images/I/51AXU-pMv3S.jpg", "https://m.media-amazon.com/images/I/51e5Vt5DitS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Foot, Hand & Nail Care \u203a Tools & Accessories \u203a Foot Files", "average_rating": 3.5, "small_description": ["\u3010Valued 23/20-IN-1 Pedicure Kit\u3011This stainless steel and ABS material professional pedicure set include all the common tools, to meet your different needs. Easy to clean, rust resistance and wear resistance, which will offer you a comfortable experience. Fast shipped from US. ", "\u3010Professional Pedicure Tools\u3011Coming with 20/23 different pedicure tools, to meet your different needs.Including foot rasp callus remover, cuticle remover, foot peel, foot clipper, scraper, callus remover, foot file, nail file, cuticle remover, nail and toenail clipper etc.Each pedicure tool is designed for special needs, with small and lightweight design, holding comfortably. ", "\u3010Quickly Removes Rough Skin\u3011The sharp foot pedicure kit can effectively remove corn, dead skin, stubborn callus and thick nails in seconds. Best suggestion: Soak your feet in warm water for 10-15 minutes to soften rough skin to get a better pedicure result. ", "\u3010Wide Applications\u3011Coming with a free storage box for quick store and use, you can take pedicure tools wherever you go, great for travel and daily life. Pedicure foot file which is a special gift for your family and friends, especially valentines day gifts for him/her. ", "\u3010Great Foot Care kit\u3011The pedicure kit allows you to do foot care spa, foot bath at home without going to a salon, saving cost time and money. It is recommended to use 1-2 times a week, regular use of feet pedicure kits, it can also restore your original smooth skin. "], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09B9QJB69/ref=twister_B09B9N38B5?_encoding=UTF8&psc=1", "value": "20 Pack", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51JJopIpOtS.jpg"}, {"is_selected": true, "url": null, "value": "23 Pack", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WDtj2vXhS.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09B9QLDKD", "category": "beauty", "query": "Skin Care Sets & Kits", "page": 67, "small_description_old": "About this item \u3010Valued 23/20-IN-1 Pedicure Kit\u3011This stainless steel and ABS material professional pedicure set include all the common tools, to meet your different needs. Easy to clean, rust resistance and wear resistance, which will offer you a comfortable experience. Fast shipped from US. \u3010Professional Pedicure Tools\u3011Coming with 20/23 different pedicure tools, to meet your different needs.Including foot rasp callus remover, cuticle remover, foot peel, foot clipper, scraper, callus remover, foot file, nail file, cuticle remover, nail and toenail clipper etc.Each pedicure tool is designed for special needs, with small and lightweight design, holding comfortably. \u3010Quickly Removes Rough Skin\u3011The sharp foot pedicure kit can effectively remove corn, dead skin, stubborn callus and thick nails in seconds. Best suggestion: Soak your feet in warm water for 10-15 minutes to soften rough skin to get a better pedicure result. \u3010Wide Applications\u3011Coming with a free storage box for quick store and use, you can take pedicure tools wherever you go, great for travel and daily life. Pedicure foot file which is a special gift for your family and friends, especially valentines day gifts for him/her. \u3010Great Foot Care kit\u3011The pedicure kit allows you to do foot care spa, foot bath at home without going to a salon, saving cost time and money. It is recommended to use 1-2 times a week, regular use of feet pedicure kits, it can also restore your original smooth skin."}, {"name": "Rude - NoFilter 3D Face Palette - Stars", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5.31 x 2.36 x 0.63 inches; 1.06 Ounces", "Item model number\n \u200f": "\u200e\n 88065", "UPC\n \u200f": "\u200e\n 602989880651", "Manufacturer\n \u200f": "\u200e\n Rude Cosmetics", "ASIN\n \u200f": "\u200e\n B08329Z669", "Best Sellers Rank": "#632,656 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,724 in Makeup Palettes", "#1,724 in Makeup Palettes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the RUDE Store", "brand_url": "https://www.amazon.com/stores/RUDE/page/57E17DFF-2390-470F-B68F-EFD058CB24D0?ref_=ast_bln", "full_description": "", "pricing": "$13.20", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51sl56p6k7S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Makeup Palettes", "average_rating": 4.3, "small_description": ["3D face palette will help you sculpt, Highlight, and achieve a look that is anything but Flat ", "Cruelty free ", "This is a vegan product "], "total_reviews": 19, "total_answered_questions": "", "customization_options": "", "seller_id": "A2SOU0HYON68YU", "seller_name": "BeautyJoint", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08329Z669", "category": "beauty", "query": "Makeup Palettes", "page": 70, "small_description_old": "3D face palette will help you sculpt, Highlight, and achieve a look that is anything but Flat Cruelty free This is a vegan product"}, {"name": "Merrell Men's Primer Mid LTR Fashion Boot", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.7 x 9.2 x 4.9 inches; 2.15 Pounds", "Item model number\n \u200f": "\u200e\n J16671", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 3, 2019", "Manufacturer\n \u200f": "\u200e\n Merrell", "ASIN\n \u200f": "\u200e\n B07L6SKK2W", "Best Sellers Rank": "#1,329,728 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,143 in Men's Hiking Boots", "#1,143 in Men's Hiking Boots": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Merrell Store", "brand_url": "https://www.amazon.com/stores/Merrell/page/8EB91A58-EE97-4FE3-8892-99D4449E8B33?ref_=ast_bln", "full_description": "Secure status on the streets with this high-performance sneaker. The Primer Mid Leather provides all-day protection and comfort.", "pricing": "$112.91$134.33", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41z0-xgDz9L.jpg", "https://m.media-amazon.com/images/I/31usSkyPmnL.jpg", "https://m.media-amazon.com/images/I/31IFpTcEDRL.jpg", "https://m.media-amazon.com/images/I/41tjXVFrUaL.jpg", "https://m.media-amazon.com/images/I/31CcI+tRQiL.jpg", "https://m.media-amazon.com/images/I/31B3fMLGmOL.jpg", "https://m.media-amazon.com/images/I/41HaXkW-9FL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Outdoor \u203a Hiking & Trekking \u203a Hiking Boots", "average_rating": 4.6, "small_description": ["100% Leather ", "Imported ", "Rubber sole ", "Shaft measures approximately ankle-high from arch ", "Waxy leather upper ", "Traditional lace closure ", "Kinetic Fit Base removable contoured insole for flexible support ", "Lightweight EVA midsole with rubber outsole "], "total_reviews": 29, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "7", "asin": "B07L6SCC1H"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B07L6Q59MQ"}, {"is_selected": false, "is_available": false, "value": "9", "asin": "B07L6NTXL1"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B07L6QHPW8"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B07L6DV555"}, {"is_selected": false, "is_available": false, "value": "10.5", "asin": "B07L6Q59P5"}, {"is_selected": false, "is_available": false, "value": "11", "asin": "B07L6NQ923"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B00D5DU4C8"}, {"is_selected": false, "is_available": true, "value": "12", "asin": "B07L6Q59NV"}, {"is_selected": false, "is_available": true, "value": "14", "asin": "B07L6Q5ZM9"}, {"is_selected": false, "is_available": false, "value": "15", "asin": "B07L6DYL64"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07L6SKK2W/ref=twister_B07M98F79Z", "value": "Boulder", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4121ERvVqpL.jpg"}, {"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41z0-xgDz9L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07L6DV555", "category": "fashion", "query": "Men's Boots", "page": 71, "small_description_old": "100% Leather Imported Rubber sole Shaft measures approximately ankle-high from arch Waxy leather upper Traditional lace closure Kinetic Fit Base removable contoured insole for flexible support Lightweight EVA midsole with rubber outsole"}, {"name": "Electric Shower Brush Set,Deep Cleaning Bath Shower Wash Brush with Long Handle,5 in 1 Spin SPA Brush Back Scrubber Set for Helps Promote Healthier Younger Looking Skin Soothes Tired Muscles", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.81 x 7.87 x 3.14 inches; 0.02 Ounces", "Date First Available\n \u200f": "\u200e\n September 14, 2021", "Manufacturer\n \u200f": "\u200e\n UDSMFU", "ASIN\n \u200f": "\u200e\n B09GF68QPJ", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#207,959 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#769 in Bath & Body Brushes", "#769 in Bath & Body Brushes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: UDSMFU", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=UDSMFU", "full_description": "The new multi-functional electric bath wipe, which integrates bath ball/bath wipe/massage/foot wipe/bath liquid leakage. Product size: the total length of the long handle is 36 cm, the diameter of the brush head is 7.5 cm, and the length of the brush is 1.5 cmProduct material: ABS+silicone+motorSingle weight: 580 gramsColor box size: 30.5*8*20.5cmProduct brush head: 5Power supply: 3 AA dry batteries need to be placed Use time: about 60 minutes (affected by the quality of the battery)", "pricing": "$26.99", "list_price": "", "availability_quantity": 20, "availability_status": "Only 20 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41FNcnhBaEL.jpg", "https://m.media-amazon.com/images/I/51o5nYXlXNL.jpg", "https://m.media-amazon.com/images/I/514-HKvgWXL.jpg", "https://m.media-amazon.com/images/I/41wAb2iP7kL.jpg", "https://m.media-amazon.com/images/I/41-HjVO-RBL.jpg", "https://m.media-amazon.com/images/I/51yNrOf1LTL.jpg", "https://m.media-amazon.com/images/I/31WXLmse1DL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath & Body Brushes", "average_rating": 2.9, "small_description": ["\u3010Advanced Cleansing System\u3011A perfect all-in-one body care system,360\u00b0 Spin It will rotate automatically when start it,Unique comfort bristles and massage function, leave your body relaxed,this spin cleansing system technology system cleans better than vibration and it removes dirt, oil and and soften your dead skin. ", "\u3010 Multipurpose\u3011This facial cleansing brush set comes with 5 different heads to meet all your different needs, 2 deep cleaning brush for deep scrubbing and cleansing, 1 mesh sponge brush for gentle exfoliation, 1 massager head for improving circulation, 1 microdermabrasion brush for daily deep cleansing. ", "\u3010Design with long handle\u3011You can easily use this shower brush to clean any part of your body easily. This brush can also play a massage on the foot points, accelerate the microcirculation, adjust blood pressure, improve sleep, relieve fatigue and promote the metabolism of human body. ", "\u3010IPX6 waterproof and cordless structure\u3011: easy to use for both face and body cleansing; convenient and safe to use in the shower or bath without any worry about immersion in water; body brush with an extended handle for cleansing hard-to-reach body areas to avoid skin problems ", "\u3010Two Speeds\u3011: Adjustable speeds for your different selections and powered by 3AA batteries(not included).the total length of the long handle is 36 cm, the diameter of the brush head is 7.5 cm, and the length of the brush is 1.5 cm "], "total_reviews": 7, "total_answered_questions": "", "customization_options": "", "seller_id": "A1IDY607SNU2HM", "seller_name": "GuoDaXia", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GF68QPJ", "category": "beauty", "query": "Bathing Accessories", "page": 105, "small_description_old": "About this item \u3010Advanced Cleansing System\u3011A perfect all-in-one body care system,360\u00b0 Spin It will rotate automatically when start it,Unique comfort bristles and massage function, leave your body relaxed,this spin cleansing system technology system cleans better than vibration and it removes dirt, oil and and soften your dead skin. \u3010 Multipurpose\u3011This facial cleansing brush set comes with 5 different heads to meet all your different needs, 2 deep cleaning brush for deep scrubbing and cleansing, 1 mesh sponge brush for gentle exfoliation, 1 massager head for improving circulation, 1 microdermabrasion brush for daily deep cleansing. \u3010Design with long handle\u3011You can easily use this shower brush to clean any part of your body easily. This brush can also play a massage on the foot points, accelerate the microcirculation, adjust blood pressure, improve sleep, relieve fatigue and promote the metabolism of human body. \u3010IPX6 waterproof and cordless structure\u3011: easy to use for both face and body cleansing; convenient and safe to use in the shower or bath without any worry about immersion in water; body brush with an extended handle for cleansing hard-to-reach body areas to avoid skin problems \u3010Two Speeds\u3011: Adjustable speeds for your different selections and powered by 3AA batteries(not included).the total length of the long handle is 36 cm, the diameter of the brush head is 7.5 cm, and the length of the brush is 1.5 cm"}, {"name": "Berkemann Women's Clogs and Mules, 5 UK", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.73 x 6.77 x 4.17 inches; 1.1 Pounds", "Item model number\n \u200f": "\u200e\n 1105", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n June 15, 2019", "Manufacturer\n \u200f": "\u200e\n Berkemann", "ASIN\n \u200f": "\u200e\n B002RRUOUA", "Best Sellers Rank": "#5,872,214 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#10,720 in Women's Mules & Clogs", "#10,720 in Women's Mules & Clogs": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Berkemann", "brand_url": "https://www.amazon.com/Berkemann/b/ref=bl_sl_s_sh_web_20692740011?ie=UTF8&node=20692740011&field-lbr_brands_browse-bin=Berkemann", "full_description": "The comfortable and active shoe models from Berkemann are characterised by a variety of product and material properties. For example, Berkemann uses only particularly soft leather from European suppliers, solvent-free adhesives, as well as particularly light poplar wood from Central European forestry - all in terms of holistic well-being.", "pricing": "$78.42$94.90", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41sXBNVyGzL.jpg", "https://m.media-amazon.com/images/I/516ccgLuyoL.jpg", "https://m.media-amazon.com/images/I/41lgMh+XQLL.jpg", "https://m.media-amazon.com/images/I/31DTv7mzO0L.jpg", "https://m.media-amazon.com/images/I/413S+yNnTCL.jpg", "https://m.media-amazon.com/images/I/41URj8LtvQL.jpg", "https://m.media-amazon.com/images/I/41xwnMRf04L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Mules & Clogs", "average_rating": 4.5, "small_description": ["Rubber sole ", "style: Clogs and Mules ", "outer material: Calfskin ", "closure type: Slip-On "], "total_reviews": 109, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "5 Big Kid", "asin": "B002RRUOUA"}, {"is_selected": false, "is_available": true, "value": "5", "asin": "B002RRT0X2"}, {"is_selected": false, "is_available": true, "value": "5.5", "asin": "B002RRP9UA"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B002RRT0SW"}, {"is_selected": false, "is_available": true, "value": "6.5", "asin": "B002RRUNX8"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B002RRY62M"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B002RRY640"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B002RRRCS2"}, {"is_selected": false, "is_available": false, "value": "8.5", "asin": "B002RRPA5E"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B002RRRCT6"}, {"is_selected": false, "is_available": false, "value": "9.5", "asin": "B002RRPA6I"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B002RRWLVU"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B002RRY6AO"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B002RRT0NM"}, {"is_selected": false, "is_available": false, "value": "4.5 M UK", "asin": "B002RRT0YQ"}, {"is_selected": false, "is_available": false, "value": "6 M UK", "asin": "B002RRY6JU"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B002RRY6JU/ref=twister_B00JLB4RJE", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31RGuZqLJ3L.jpg"}, {"is_selected": true, "url": null, "value": "Black Schwarz", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sXBNVyGzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0039Z9FA4/ref=twister_B00JLB4RJE", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41iKuYvTYpL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B002RRT0NM", "category": "fashion", "query": "Women's Mules & Clogs", "page": 40, "small_description_old": "Rubber sole style: Clogs and Mules outer material: Calfskin closure type: Slip-On"}, {"name": "Brilliant Sunshine Gray Heart Love Patchwork Large Recliner Protector for Seat Width up to 28\", Slip Resistant Furniture Slipcover, 2\" Strap, Reclining Chair Cover for Pets, Kids, Dogs, Recliner, Gray", "product_information": {"Product Dimensions": "11.2 x 11.2 x 3.3 inches", "Item Weight": "1.85 pounds", "Manufacturer": "Brilliant Sunshine", "ASIN": "B07PHQZ4WT", "Customer Reviews": {"ratings_count": 1490, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#55,269 in Home & Kitchen (See Top 100 in Home & Kitchen) #204 in Sofa Slipcovers"], "Fabric Type": "Faux Cotton Soft Microfiber Triple Layers", "Material Care Instructions": "Machine Wash, Tumble Dry", "Batteries Required?": "No"}, "brand": "Visit the Brilliant Sunshine Store", "brand_url": "https://www.amazon.com/stores/Brilliant+Sunshine/page/60B33F1F-0A2D-4C24-AD37-EFC1C46A7C48?ref_=ast_bln", "full_description": "", "pricing": "$32.99", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51KmRplXjiL.jpg", "https://m.media-amazon.com/images/I/51rPw4E8kwL.jpg", "https://m.media-amazon.com/images/I/41eOaz9-S5L.jpg", "https://m.media-amazon.com/images/I/51PdQz-r+RL.jpg", "https://m.media-amazon.com/images/I/51JXtLEhtcL.jpg", "https://m.media-amazon.com/images/I/41PqR-thKnL.jpg", "https://m.media-amazon.com/images/I/51Scl1UWA9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Slipcovers \u203a Sofa Slipcovers", "average_rating": 4.3, "small_description": ["Faux Cotton Soft Microfiber Triple Layers ", "PROTECT WITH UNIQUE DESIGN: Gray heart love patchwork patterns, with double diamond quilting, classic, elegant, and unique. Keep your sofa and furniture fresh and protect them against mess. Reverse to an upgraded silicon puppy paw dots pattern, slip resistant. Pets friendly. Made to enhance decor. ", "DURABLE AND COMFORTABLE: Premium quality of microfiber and extra soft fill, made to last. This design is finished upgrading of slip resistant reverse side. Please kindly notice. ", "PERFECT FIT: Fit most large sofa up to 70\" seat width. Multiple options are available: X-Large Oversized Sofa (78\" seat width), Loveseat (54\" seat width), Oversized Recliner (28\" seat width), Chair (23\" seat width). Please see our Measuring Guide for more instructions. And please measure before purchasing. Matching decorative ruffle pillow shams, organizers and quilt sets are available for additional purchase. ", "STAYS IN PLACE: Each slipcover includes one 2\u201d wide strap with matching color tone, high quality. Both length and hooking positions are adjustable. The silicon slip resistant back is suitable for both fabric and leather sofa. ", "EASY CARE: Machine wash cold and tumble dry low, do not bleach. BUY WITH CONFIDENCE and Worry Free Warranty. You can contact us for any question and we will respond very quickly. Your satisfaction is our utmost importance! "], "total_reviews": 1490, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07PHR8TWF/ref=twister_B08NSL9MQ4?_encoding=UTF8&psc=1", "value": "Gray Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51fMlZRQNML.jpg"}, {"is_selected": true, "url": null, "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51PAfkXH2hL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07PJQWPHX/ref=twister_B08NSL9MQ4", "value": "Latte Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ImbKfSdcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07PDKXGWH/ref=twister_B08NSL9MQ4", "value": "Pink Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51y0QS1xrgL.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07PJT3WWB/ref=twister_B08NSL9MQ4", "value": "23\" Chair Cover", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "28\" Oversized Recliner Cover", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07PHPP7TZ/ref=twister_B08NSL9MQ4?_encoding=UTF8&psc=1", "value": "54\" Love Seat Cover", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07PJRQYG5/ref=twister_B08NSL9MQ4", "value": "70\" Sofa Cover", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07VCRS5SG/ref=twister_B08NSL9MQ4", "value": "78\" Sofa Cover Oversized", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A1M3WFQHIY37ZJ", "seller_name": "PamperPet", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07PDKXJSK", "category": "garden", "query": "Furniture Sets", "page": 158, "small_description_old": "About this item PROTECT WITH UNIQUE DESIGN: Gray heart love patchwork patterns, with double diamond quilting, classic, elegant, and unique. Keep your sofa and furniture fresh and protect them against mess. Reverse to an upgraded silicon puppy paw dots pattern, slip resistant. Pets friendly. Made to enhance decor. DURABLE AND COMFORTABLE: Premium quality of microfiber and extra soft fill, made to last. This design is finished upgrading of slip resistant reverse side. Please kindly notice. PERFECT FIT: Fit most large recliner up to 28\" seat width. Multiple options are available: X-Large Oversized Sofa (78\" seat width), Large Sofa (70\" seat width), Oversized Loveseat (54\" seat width), Chair (23\" seat width). Please see our Measuring Guide for more instructions. And please measure before purchasing. Matching decorative ruffle pillow shams, organizers and quilt sets are available for additional purchase. STAYS IN PLACE: Each slipcover includes one 2\u201d wide strap with matching color tone, high quality. Both length and hooking positions are adjustable. The silicon slip resistant back is suitable for both fabric and leather sofa. EASY CARE: Machine wash cold and tumble dry low, do not bleach. BUY WITH CONFIDENCE and Worry Free Warranty. You can contact us for any question and we will respond very quickly. Your satisfaction is our utmost importance!"}, {"name": "ULTRAIDEAS Women's Comfy Lightweight Slippers Non-Slip House Shoes for Indoor & Outdoor", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.51 x 8.39 x 3.46 inches; 9.59 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n June 6, 2019", "ASIN\n \u200f": "\u200e\n B07RTX8B7R", "Best Sellers Rank": "#27,771 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#250 in Women's Slippers", "#250 in Women's Slippers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$19.99$21.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41tgTFNeH3L.jpg", "https://m.media-amazon.com/images/I/41SBUuN9gmL.jpg", "https://m.media-amazon.com/images/I/41yZJATeiJL.jpg", "https://m.media-amazon.com/images/I/41KyuOxQTXL.jpg", "https://m.media-amazon.com/images/I/51Syi5wdwTL.jpg", "https://m.media-amazon.com/images/I/A1jWN0uxG-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Slippers", "average_rating": 4.4, "small_description": ["Rubber sole ", "Super soft: The vamp is made of delicate ultra-soft material, smooth and breathable. Suitable for all seasons. You will like the feel of this material. ", "Lightweight: Light weight design lets you move freely whether you are at home or outside. These portable slippers are also a great choice for travel, you can relax your feet at any time. ", "Cloud like cushion: High-density memory foam offers lasting comfort, which will enable you the feeling of walking on the cloud. ", "Two-tone design: Constructed with color-contrast design, these slippers are more fresh and stylish, simple slippers can also bring color to your life. ", "Suitable for most occasions: Anti-skid rubber sole are sturdy enough for indoor relaxing or baking. You can also wear them outside of the house running errands. Size tips: Please order ONE SIZE UP if you are half size or prefer to wear socks. "], "total_reviews": 4108, "total_answered_questions": 24, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "5-6", "asin": "B07RTX8B7R"}, {"is_selected": false, "is_available": true, "value": "6.5-7.5", "asin": "B07RRP3KBQ"}, {"is_selected": false, "is_available": true, "value": "8-9", "asin": "B07RPMCNKD"}, {"is_selected": false, "is_available": true, "value": "9.5-10.5", "asin": "B07RPMB6LH"}, {"is_selected": false, "is_available": true, "value": "11-12", "asin": "B07RVLRCT5"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Y01+H+OmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07RRP1GH6/ref=twister_B07WFMLN9J", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41cUlZOl1rL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07RQKRT12/ref=twister_B07WFMLN9J", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/417KBBbOX0L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07RPMCNKD", "category": "fashion", "query": "Women's Outdoor Shoes", "page": 6, "small_description_old": "Rubber sole Super soft: The vamp is made of delicate ultra-soft material, smooth and breathable. Suitable for all seasons. You will like the feel of this material. Lightweight: Light weight design lets you move freely whether you are at home or outside. These portable slippers are also a great choice for travel, you can relax your feet at any time. Cloud like cushion: High-density memory foam offers lasting comfort, which will enable you the feeling of walking on the cloud. Two-tone design: Constructed with color-contrast design, these slippers are more fresh and stylish, simple slippers can also bring color to your life. Suitable for most occasions: Anti-skid rubber sole are sturdy enough for indoor relaxing or baking. You can also wear them outside of the house running errands. Size tips: Please order ONE SIZE UP if you are half size or prefer to wear socks."}, {"name": "DEVAISE 2-Drawer Wood Lateral File Cabinet with Lock for Office Home, Black", "product_information": {"Manufacturer": "\u200eDEVAISE", "Brand": "\u200eDEVAISE", "Item Weight": "\u200e64.9 pounds", "Product Dimensions": "\u200e23.6 x 15.7 x 29.3 inches", "Color": "\u200eBlack", "Shape": "\u200eRectangular", "Material Type": "\u200eWood", "Number of Drawers": "\u200e2", "Size": "\u200e23.6\"W x 15.7\"D x 29.3\"H", "Manufacturer Part Number": "\u200eAWJG005", "ASIN": "B08MFGNXW3", "Customer Reviews": {"ratings_count": 124, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#13,534 in Office Products (See Top 100 in Office Products) #9 in Office Lateral File Cabinets"], "Date First Available": "November 2, 2020"}, "brand": "Visit the DEVAISE Store", "brand_url": "https://www.amazon.com/stores/DEVAISE/page/D4212D26-8ECF-48F1-9D9C-5C3F73CB61F5?ref_=ast_bln", "full_description": "", "pricing": "$169.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/4136zUdrB9L.jpg", "https://m.media-amazon.com/images/I/51nQdo7q5tL.jpg", "https://m.media-amazon.com/images/I/51nD8P02xeL.jpg", "https://m.media-amazon.com/images/I/51es0sJMSSL.jpg", "https://m.media-amazon.com/images/I/410rONfCg+L.jpg", "https://m.media-amazon.com/images/I/41LN8TNQFnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Furniture & Lighting \u203a Cabinets, Racks & Shelves \u203a File Cabinets \u203a Lateral File Cabinets", "average_rating": 4.3, "small_description": ["FUNCTIONAL: Lateral filing cabinet with contemporary look that can be the little extra you needed in your office space. The filing cabinet can be used as storage cabinet, printer stand which large enough to put printer and scanner on. ", "ANTI-TILT Mechanism: It's vital that only 1 drawer at a time can be opened, this wood file cabinet provides maximum flexibility and anti-tilt. ", "FULL-EXTENSION DRAWERS WITH LOCK: 2 large drawers with removable divider accommodates letter, legal, A4, legal size hanging file folders. With high quality full-extension slides, these filing cabinet drawers move fluidly with ease and open completely. It is easy to access the contents in the back of the drawers. Single lock system secures top 1 drawers, keeps your life private. ", "HEAVY-DUTY DESIGN: Stable construction and reinforced structure ensure years to use. Made of Eco-friendly board, it's water-resistant, scratch-resistant and easy to clean. ", "INSTALL & SERVICE: Over Dimension: 23.6\"W x 15.7\"D x 29.3\"H . Assembly required with instruction. If you have quality problems, just contact us. "], "total_reviews": 124, "total_answered_questions": 17, "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "23.6\"W x 15.7\"D x 29.3\"H", "price_string": "$169.99", "price": 169.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MFHLDML/ref=twister_B08NXH7M9N?_encoding=UTF8&psc=1", "value": "35.4\"W x 15.7\"D x 29.3\"H", "price_string": "$224.99", "price": 224.99, "image": null}]}, "seller_id": "A9GW4LUCH1KK8", "seller_name": "DEVAISE", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08MFGNXW3", "category": "garden", "query": "File Cabinets", "page": 3, "small_description_old": "About this item\n \nFUNCTIONAL: Lateral filing cabinet with contemporary look that can be the little extra you needed in your office space. The filing cabinet can be used as storage cabinet, printer stand which large enough to put printer and scanner on. ANTI-TILT Mechanism: It's vital that only 1 drawer at a time can be opened, this wood file cabinet provides maximum flexibility and anti-tilt. FULL-EXTENSION DRAWERS WITH LOCK: 2 large drawers with removable divider accommodates letter, legal, A4, legal size hanging file folders. With high quality full-extension slides, these filing cabinet drawers move fluidly with ease and open completely. It is easy to access the contents in the back of the drawers. Single lock system secures top 1 drawers, keeps your life private. HEAVY-DUTY DESIGN: Stable construction and reinforced structure ensure years to use. Made of Eco-friendly board, it's water-resistant, scratch-resistant and easy to clean. INSTALL & SERVICE: Over Dimension: 23.6\"W x 15.7\"D x 29.3\"H . Assembly required with instruction. If you have quality problems, just contact us."}, {"name": "Orthodontic Elastics, Safe Orthodontic Rubber Band Pet Grooming Eco Friendly for Men Women for Dental Hospital for Home for Dentist", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 3.94 x 3.15 x 2.36 inches; 8.4 Ounces", "Manufacturer\n \u200f": "\u200e\n Shanrya", "ASIN\n \u200f": "\u200e\n B09MYFGDY5", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Shanrya", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Shanrya", "full_description": "Feature:1. Sealed Package: The packaging is tightly sealed to avoid external dust and dirt, healthy and sanitary, convenient for use.2. Excellent Material: Made of high quality rubber material, has good elasticity, safe and eco friendly, and flexible for use.3. Multiple Uses: Can be used for orthodontics and pet grooming, etc. Simple and easy to use, suitable for dental hospitals and clinics.4. Compact And Portable: Light weight, small size, easy to store and carry, can be easily put into your pocket, perfect for travel use.5. 5000pcs Of Rubber Band: 5000pcs rubber band are available, enough to satisfy your use needs, perfect for home and professional use.Specification:Item Type: Orthodontic Rubber BandMaterial: RubberUses: Dental Beauty Rubber Band Package List:5000 x Rubber Band", "pricing": "$24.35", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41WNNSou14L.jpg", "https://m.media-amazon.com/images/I/41VR7Z5QwTL.jpg", "https://m.media-amazon.com/images/I/31SjL-vD8oL.jpg", "https://m.media-amazon.com/images/I/41TShpAE0+L.jpg", "https://m.media-amazon.com/images/I/41Iv1g-qSRL.jpg", "https://m.media-amazon.com/images/I/31VU7atCxtL.jpg", "https://m.media-amazon.com/images/I/51f0OgDkpTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Orthodontic Supplies", "average_rating": "", "small_description": "Excellent Material: Made of high quality rubber material, has good elasticity, safe and eco friendly, and flexible for use. Compact And Portable: Light weight, small size, easy to store and carry, can be easily put into your pocket, perfect for travel use. Sealed Package: The packaging is tightly sealed to avoid external dust and dirt, healthy and sanitary, convenient for use. Multiple Uses: Can be used for orthodontics and pet grooming, etc. Simple and easy to use, suitable for dental hospitals and clinics. 5000pcs Of Rubber Band: 5000pcs rubber band are available, enough to satisfy your use needs, perfect for home and professional use.", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1K260ZHD4FYMH", "seller_name": "Taiddad", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MYFGDY5", "category": "beauty", "query": "Orthodontic Supplies", "page": 81, "small_description_old": "Excellent Material: Made of high quality rubber material, has good elasticity, safe and eco friendly, and flexible for use. Compact And Portable: Light weight, small size, easy to store and carry, can be easily put into your pocket, perfect for travel use. Sealed Package: The packaging is tightly sealed to avoid external dust and dirt, healthy and sanitary, convenient for use. Multiple Uses: Can be used for orthodontics and pet grooming, etc. Simple and easy to use, suitable for dental hospitals and clinics. 5000pcs Of Rubber Band: 5000pcs rubber band are available, enough to satisfy your use needs, perfect for home and professional use."}, {"name": "Cole Haan Women's Originalgrand Stitchlite Wingtip Oxford", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 14.76 x 8.58 x 5.31 inches; 1.81 Pounds", "Item model number\n \u200f": "\u200e\n C33610", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n July 21, 2020", "Manufacturer\n \u200f": "\u200e\n Cole Haan", "ASIN\n \u200f": "\u200e\n B08DF5MMRM", "Best Sellers Rank": "#2,567,562 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,198 in Women's Oxfords", "#1,198 in Women's Oxfords": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Cole Haan Store", "brand_url": "https://www.amazon.com/stores/ColeHaan/page/978534DF-B574-4321-A5BB-2786EE0A9E13?ref_=ast_bln", "full_description": "Cole Haan original grand stitch lite wingtip oxford. All over knit oxford upper. Fully padded sock lining for ultimate comfort. Eva midsole cushioned with our signature Grand/OS technology, with rubber outsole. With nearly 80 years in the business and hundreds of points of distribution in the U.S., Cole Haan is one of America's premier luxury brands. Founded in 1928 as a collaboration between Trafton Cole and Eddie Haan, Cole Haan epitomized artisan quality and impeccable craftsmanship during a time when style was everything. Originally, Cole Haan was a men's footwear label that captured the essence of the 20s spirit with beautifully-designed and well-made shoes for the dapper gentleman. Today, Cole Haan brings that heritage to all of its products, including men's and women's dress and casual footwear, belts, hosiery, handbags, small leather goods, outerwear and sunglasses.", "pricing": "$109.94$228.57", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41hPjjhkReL.jpg", "https://m.media-amazon.com/images/I/41ImQQ7BRUL.jpg", "https://m.media-amazon.com/images/I/41dBCW5eN-L.jpg", "https://m.media-amazon.com/images/I/21eYgW9n1jL.jpg", "https://m.media-amazon.com/images/I/31XjsZOLyCL.jpg", "https://m.media-amazon.com/images/I/41c1JU++LGL.jpg", "https://m.media-amazon.com/images/I/41J0S+xbIyL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Oxfords", "average_rating": 4.8, "small_description": ["Proprietary Stitchlite knit breathable upper with wing detailing ", "\u200bEVA midsole for comfort and cushioning ", "\u200bWelt detailing for added craft elements ", "\u200bForefoot and heel rubber pods for added traction and durability "], "total_reviews": 8, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "11", "asin": "B08DF5MMRM"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B08DFPHCN6"}, {"is_selected": false, "is_available": false, "value": "16", "asin": "B07N73NMN5"}], "Color": [{"is_selected": true, "url": null, "value": "Cement Twisted Knit/Optic White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hPjjhkReL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07N73NMN5/ref=twister_B09MC8X7NM", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41NbgXzSNML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089RQLJY4/ref=twister_B09MC8X7NM", "value": "Ch Java Multi Knit/Lemon Welt/Ivory", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41nyE4hJTQL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08DF5MMRM", "category": "fashion", "query": "Women's Oxfords", "page": 24, "small_description_old": "Rubber sole Proprietary Stitchlite knit breathable upper with wing detailing \u200bEVA midsole for comfort and cushioning \u200bWelt detailing for added craft elements \u200bForefoot and heel rubber pods for added traction and durability"}, {"name": "Scented Candles Gift Set for Women, Aromatherapy Candles Gifts for Women, 4x3.5oz Long Lasting Candles for Home Scented Bath Yoga, 100% Natural Soy Candles, Unique Mothers Day Gifts for Mom Birthday", "product_information": {"Brand": "\u200eBODY & EARTH # LOVE", "Manufacturer": "\u200eBODY & EARTH # LOVE", "Part Number": "\u200eBEL-SC-04", "Item Weight": "\u200e2.5 pounds", "Product Dimensions": "\u200e8.39 x 7.95 x 2.76 inches", "Country of Origin": "\u200eChina", "Assembled Height": "\u200e2.76 inches", "Assembled Length": "\u200e8.39 inches", "Assembled Width": "\u200e7.95 inches", "Material": "\u200eSoy Wax", "Specific Uses": "\u200eAromatherapy", "Special Features": "\u200eLong Burning, Lightweight, Non Toxic", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B08JQ5TLQV", "Customer Reviews": {"ratings_count": 134, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#26,368 in Health & Household (See Top 100 in Health & Household) #44 in Aromatherapy Candles"], "Date First Available": "September 22, 2020"}, "brand": "Visit the BODY & EARTH # LOVE Store", "brand_url": "https://www.amazon.com/stores/BODYEARTHLOVE/page/E2EC016B-E93E-4791-935B-ABA9EAE17088?ref_=ast_bln", "full_description": "", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51aJR8ul+NL.jpg", "https://m.media-amazon.com/images/I/41BVMqZeJmL.jpg", "https://m.media-amazon.com/images/I/41WVbwO1wXL.jpg", "https://m.media-amazon.com/images/I/414IL1J11pL.jpg", "https://m.media-amazon.com/images/I/41ffrg3pu0L.jpg", "https://m.media-amazon.com/images/I/518KzOyGvGS.jpg", "https://m.media-amazon.com/images/I/919VEULvqTL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Health & Household \u203a Health Care \u203a Alternative Medicine \u203a Aromatherapy \u203a Candles", "average_rating": 4.3, "small_description": ["\u30104 Fragrance Scents\u3011:This Scented candles gift set includes 4 calming fragrances- pink sugar, rose, cottoncandy and cherry. No girls will say no to this candle gift set on Christmas or birthday. ", "\u3010Natural Soy Wax\u3011: Our scented candles with 100% natural soy wax. The candle wick is made of lead-free cotton. Our candles are non-toxic and environment friendly. All the fragrances come from pure plant essential oils. These candles are safe for pregnant women, families and babies. ", "\u3010Long Lasting Time\u3011: Each Jar candle contains 3.5 oz soy wax and can be burning for 25 hours. Trimming the wick to increase time. Totally using time for 4 tins is about 100 hours. ", "\u3010Perfect Scented Gift Set\u3011: This candle set will come with a beautiful gift box, suitable for any holiday or meaningful days, such as Birthday, Valentine\u2019s Day, Mother\u2019s Day, Father\u2019s Day, Thanksgiving Day, Christmas Day. Give a Surprise for your family, lover or friends. ", "\u3010Portable Travel Tin Jar Candles\u3011: Great Look and lightweight, easy to carry, great for staying at home or travel. Ideal for reading, sleeping, bathing, doing yoga, etc. The empty jar can store something of value after the soy wax used up, such as earrings, rings, headphones or necklaces. "], "total_reviews": 134, "total_answered_questions": "", "customization_options": "", "seller_id": "A2RTFPIG90JRJ4", "seller_name": "Body & Earth Love", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08JQ5TLQV", "category": "garden", "query": "Candles", "page": 31, "small_description_old": "About this item \u30104 Fragrance Scents\u3011:This Scented candles gift set includes 4 calming fragrances- pink sugar, rose, cottoncandy and cherry. No girls will say no to this candle gift set on Christmas or birthday. \u3010Natural Soy Wax\u3011: Our scented candles with 100% natural soy wax. The candle wick is made of lead-free cotton. Our candles are non-toxic and environment friendly. All the fragrances come from pure plant essential oils. These candles are safe for pregnant women, families and babies. \u3010Long Lasting Time\u3011: Each Jar candle contains 3.5 oz soy wax and can be burning for 25 hours. Trimming the wick to increase time. Totally using time for 4 tins is about 100 hours. \u3010Perfect Scented Gift Set\u3011: This candle set will come with a beautiful gift box, suitable for any holiday or meaningful days, such as Birthday, Valentine\u2019s Day, Mother\u2019s Day, Father\u2019s Day, Thanksgiving Day, Christmas Day. Give a Surprise for your family, lover or friends. \u3010Portable Travel Tin Jar Candles\u3011: Great Look and lightweight, easy to carry, great for staying at home or travel. Ideal for reading, sleeping, bathing, doing yoga, etc. The empty jar can store something of value after the soy wax used up, such as earrings, rings, headphones or necklaces. \n \u203a See more product details"}, {"name": "Hillsdale Furniture Hillsdale Cole Frame Queen Bed, Black twinkle", "product_information": {"Item Weight": "\u200e61.2 pounds", "Product Dimensions": "\u200e87 x 62 x 53.5 inches", "Country of Origin": "\u200eMalaysia", "Item model number": "\u200e1601BQR", "Assembled Height": "\u200e52 inches", "Assembled Width": "\u200e78 inches", "Assembled Length": "\u200e83.5 inches", "Weight": "\u200e61 Pounds", "ASIN": "B004A9L7ZO", "Customer Reviews": {"ratings_count": 14, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#2,311,763 in Home & Kitchen (See Top 100 in Home & Kitchen) #4,546 in Beds"], "Date First Available": "October 5, 2010"}, "brand": "Visit the Hillsdale Store", "brand_url": "https://www.amazon.com/stores/Hillsdale+Furniture/page/E747DF61-6C0E-4186-AA6F-DA2132FC3154?ref_=ast_bln", "full_description": "The cole bed set with rails enhances a traditional silhouette with its unique and whimsical accents. classic ball finials are accentuated by sweeping scrollwork and intricate castings.\u00a0the black twinkle finish offers a great base, intensifying your decor and color scheme. all of these wonderful details culminate with the sturdy steel construction.\u00a0some assembly required. available in black twinkle color and queen size. this set includes one headboard and one footboard. headboard measures 52-inch height by 62-inch width by 2-inch depth and footboard measures 32-inch height by 62-inch width by 2-inch depth.", "pricing": "$226.20", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41Bw9FRPu8L.jpg", "https://m.media-amazon.com/images/I/51ZkhUnc-cL.jpg", "https://m.media-amazon.com/images/I/41cxJKWT2pL.jpg", "https://m.media-amazon.com/images/I/51+vKrwrXkL.jpg", "https://m.media-amazon.com/images/I/41Bw9FRPu8L.jpg", "https://m.media-amazon.com/images/I/61CzPe6B9EL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Beds", "average_rating": 4.5, "small_description": ["Elegant transitional metal queen bed with a classic double arch design and sweeping metal scrollwork ", "The Black Twinkle finish adds a soft accent to a simple frame ", "Includes headboard, footboard and bed frame; mattress and box spring required, not included ", "Overall Dimensions: 53.50H x 62W x 4D; Footboard Height: 32.5H ", "Assembly required ", "Forged from heavy gauge tubular steel with foundry-poured aluminum castings ", "Item will ship in two boxes; which may arrive separately , The touch of a clean, dry cloth is the only care your furniture will ever need, Residential Use Only, Recommended Weight Limit: 500lbs"], "total_reviews": 14, "total_answered_questions": "", "model": "\u200e1601BQR", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B004A9L7ZO", "category": "garden", "query": "Bedframes", "page": 256, "small_description_old": "About this item Elegant transitional metal queen bed with a classic double arch design and sweeping metal scrollwork The Black Twinkle finish adds a soft accent to a simple frame Includes headboard, footboard and bed frame; mattress and box spring required, not included Overall Dimensions: 53.50H x 62W x 4D; Footboard Height: 32.5H Assembly required Forged from heavy gauge tubular steel with foundry-poured aluminum castings Item will ship in two boxes; which may arrive separately \n The touch of a clean, dry cloth is the only care your furniture will ever needResidential Use OnlyRecommended Weight Limit: 500lbsShow more"}, {"name": "Eminence Cinnamon Paprika Body Lotion, 8.4 Ounce", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.8 x 2.8 x 2.8 inches; 8 Ounces", "Item model number\n \u200f": "\u200e\n EM-845", "UPC\n \u200f": "\u200e\n 608866336716", "Manufacturer\n \u200f": "\u200e\n Eminence", "ASIN\n \u200f": "\u200e\n B004VMVLLU", "Best Sellers Rank": "#31,044 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#600 in Body Lotions", "#600 in Body Lotions": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Eminence", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Eminence", "full_description": "This unique combination of sweet and spicy is designed to firm and sculpt the skin youve always desired. With Calendula, Paprika, and Cinnamon to stimulate, rejuvenate, and revitalize, your skin will have an ageless perfection", "pricing": "$39.94", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41-4rfop0fL.jpg", "https://m.media-amazon.com/images/I/41Vnr19T0eL.jpg", "https://m.media-amazon.com/images/I/31lZ3idXPJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Moisturizers \u203a Lotions", "average_rating": 4.6, "small_description": ["Improves elasticity in connective tissue ", "Improves cellulite conditions ", "100% naturally organic "], "total_reviews": 437, "total_answered_questions": 13, "customization_options": {"Scent": [{"is_selected": true, "url": null, "value": "Cinnamon Paprika", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-4rfop0fL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B007XN9HLK/ref=twister_B08S3NZC98", "value": "Coconut", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31fah1sA3fL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075GSQXCT/ref=twister_B08S3NZC98", "value": "Honeydew", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41QvjZtJvAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B001CL6QKO/ref=twister_B08S3NZC98", "value": "Stone Crop", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/414LAQblLiL.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B075GSQXCT/ref=twister_B08S3NZC98", "value": "8 Ounce", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "8.4 Ounce / 250 ml", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B007XN9HLK/ref=twister_B08S3NZC98", "value": "8.4 Fl Oz (Pack of 1)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A2ZV1MJM7PVOJ2", "seller_name": "Open Seasons", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B004VMVLLU", "category": "beauty", "query": "Body Care", "page": 5, "small_description_old": "About this item Improves elasticity in connective tissue Improves cellulite conditions 100% naturally organic"}, {"name": "Giantex Faux Fur Vanity Stool Chair, Round Footstool Ottoman with Metal Legs for Living Room, Fluffy Chair with Furry Padded Seat, Makeup Stool for Bedroom, Decorative Furniture Footrest White", "product_information": {"Product Dimensions": "14 x 14 x 18 inches", "Item Weight": "8 pounds", "Manufacturer": "Giantex", "ASIN": "B0957XW92M", "Item model number": "GT67639WH-HW", "Best Sellers Rank": ["#2,118,042 in Home & Kitchen (See Top 100 in Home & Kitchen) #3,031 in Ottomans"], "Date First Available": "May 18, 2021"}, "brand": "Visit the Giantex Store", "brand_url": "https://www.amazon.com/stores/Giantex/page/5CAD1B16-908A-413E-8AEB-967B2F140721?ref_=ast_bln", "full_description": "", "pricing": "$52.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41JKaj6mh8S.jpg", "https://m.media-amazon.com/images/I/51A9Tf+rf0S.jpg", "https://m.media-amazon.com/images/I/41ANZcAgpkS.jpg", "https://m.media-amazon.com/images/I/512udCkgG5S.jpg", "https://m.media-amazon.com/images/I/41hjFnvJMRS.jpg", "https://m.media-amazon.com/images/I/411nD3xArZS.jpg", "https://m.media-amazon.com/images/I/51f1JXbnouS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Accent Furniture \u203a Ottomans", "average_rating": "", "small_description": ["\u3010Soft & Comfortable Material\u3011The surface of the stool cushion is covered with a high-quality faux fur, which is smooth and soft. In addition, the lining is made of high density sponge, which makes the whole cushion super elastic and provides you with the most comfortable experience. ", "\u3010Stable & Sturdy Structure\u3011The foundation of the stool is supported by four solid metal bars bent into inverted triangles, which ensures the overall stability of the stool. Additionally, the arc-shaped bottom of legs plus anti-slip foot mats makes it stable and prevents any wobble. ", "\u3010Modern & Elegant Appearance\u3011Our faux fur stool can add an elegant atmosphere to your home. The furry design and clean and bright colors make it look more advanced and textured. In addition, the four legs of the stool in rose gold color make it more harmonious and concise. ", "\u3010Wide Range of Application\u3011Our soft stool with the flavor of modern art can become a beautiful ornament wherever it is placed. Thus, you can put it in front of the bedroom dresser, in the cloakroom or in the living room. Seeing it, you will have the good mood of the day. ", "\u3010Easy Assembly & Move\u3011Our faux fur stool comes with a clear and brief instruction and few accessories so that you just need to spend few time on assembly. Moreover, due to the 8lbs light weight and 14\u201d x 14\u201d x 18\u201d compact size, you can easily take our stool to any place. "], "total_reviews": "", "total_answered_questions": "", "model": "GT67639WH-HW", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0957WVXNF/ref=twister_B0957V666G?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "$54.99", "price": 54.99, "image": "https://m.media-amazon.com/images/I/41+nO69tvMS.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$52.99", "price": 52.99, "image": "https://m.media-amazon.com/images/I/41JKaj6mh8S.jpg"}]}, "seller_id": "A1KP5NGF2WM32D", "seller_name": "Giantex", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B0957XW92M", "category": "garden", "query": "Vanities", "page": 261, "small_description_old": "About this item\n \n\u3010Soft & Comfortable Material\u3011The surface of the stool cushion is covered with a high-quality faux fur, which is smooth and soft. In addition, the lining is made of high density sponge, which makes the whole cushion super elastic and provides you with the most comfortable experience. \u3010Stable & Sturdy Structure\u3011The foundation of the stool is supported by four solid metal bars bent into inverted triangles, which ensures the overall stability of the stool. Additionally, the arc-shaped bottom of legs plus anti-slip foot mats makes it stable and prevents any wobble. \u3010Modern & Elegant Appearance\u3011Our faux fur stool can add an elegant atmosphere to your home. The furry design and clean and bright colors make it look more advanced and textured. In addition, the four legs of the stool in rose gold color make it more harmonious and concise. \u3010Wide Range of Application\u3011Our soft stool with the flavor of modern art can become a beautiful ornament wherever it is placed. Thus, you can put it in front of the bedroom dresser, in the cloakroom or in the living room. Seeing it, you will have the good mood of the day. \u3010Easy Assembly & Move\u3011Our faux fur stool comes with a clear and brief instruction and few accessories so that you just need to spend few time on assembly. Moreover, due to the 8lbs light weight and 14\u201d x 14\u201d x 18\u201d compact size, you can easily take our stool to any place."}, {"name": "A Blend Above Garlic Lover's 5 Pack", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4.72 x 4.29 x 1.26 inches; 4.66 Ounces", "UPC\n \u200f": "\u200e\n 850027471938", "Manufacturer\n \u200f": "\u200e\n A Blend Above", "ASIN\n \u200f": "\u200e\n B09R8RN6S5", "Country of Origin\n \u200f": "\u200e\n USA", "": ""}, "brand": "Visit the A Blend Above Gourmet Food Products Store", "brand_url": "https://www.amazon.com/stores/ABlendAbove/page/F97C1F16-4E3C-4699-8420-93283471A17D?ref_=ast_bln", "full_description": "This A Blend Above Best Sellers Dip Mix bundle includes (1) Roasted Garlic Parmesan, (1) Spicy Garlic, (1) Roasted Garlic Butter, (1) Asiago Roasted Garlic, and (1) Garlic Bacon Ranch. Each packet contains a perfect blend of seasoning to create delicious appetizers for dipping chips, veggies, meat, bread, etc.! A great option for serving guests at parties, holidays, events, game day get togethers, and more. These dips are amongst the most popular of A Blend Above dip mixes. Our decadent dips are outstanding as a bread spread, topping, salad dressing, and pairs perfectly with vegetables and chips. These are favorites for a reason! All Natural and Low in Carbs! No MSG, No Preservatives, and No Gluten. Combine 1 cup of Sour Cream, 1 cup of Mayonnaise, and 1 package of Dip Mix. Mix all ingredients together and chill 1-2 hours or overnight. Serve and Enjoy! You\u2019ll love this 5 pack variety of dips that are packed with flavor, versatile, and delicious. Guaranteed to be a hit at your next party!. Easy to make. Eager to eat!", "pricing": "$24.95", "list_price": "", "availability_quantity": 20, "availability_status": "Only 20 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41h-62JPp2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Food & Beverage Gifts \u203a Herb, Spice & Seasoning Gifts", "average_rating": "", "small_description": ["5 PACK: This A Blend Above Best Sellers Dip Mix bundle includes (1) Roasted Garlic Parmesan, (1) Spicy Garlic, (1) Roasted Garlic Butter, (1) Asiago Roasted Garlic, and (1) Garlic Bacon Ranch. Each packet contains a perfect blend of seasoning to create delicious appetizers for dipping chips, veggies, meat, bread, etc.! A great option for serving guests at parties, holidays, events, game day get togethers, and more. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A33X0NQQ1HVLP5", "seller_name": "A Blend Above/ A Spice Above", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09R8RN6S5", "category": "grocery", "query": "Sour Creams", "page": 106, "small_description_old": "About this item 5 PACK: This A Blend Above Best Sellers Dip Mix bundle includes (1) Roasted Garlic Parmesan, (1) Spicy Garlic, (1) Roasted Garlic Butter, (1) Asiago Roasted Garlic, and (1) Garlic Bacon Ranch. Each packet contains a perfect blend of seasoning to create delicious appetizers for dipping chips, veggies, meat, bread, etc.! A great option for serving guests at parties, holidays, events, game day get togethers, and more."}, {"name": "RJSP 50 PCS 3 Row 16 Needle Permanent Makeup Eyebrow Tattoo Blade Microblading Needles for 3D Embroidery Manual Tattoo Pen Machine (Color : White)", "product_information": {"Item Weight": "0.035 ounces", "ASIN": "B09NSJX1WC", "Date First Available": "December 18, 2021", "Department": "Unisex-adult", "Manufacturer": "RJSP", "Country of Origin": "China"}, "brand": "Brand: RURU", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=RURU", "full_description": "Description:Quantity:50pcsType: 3 Row 16 NeedlesModel: 16 pinsFeature:Well packed with individual bags.Safe and durable.Needles are sharp and elastic, make the eyebrow line beautiful.Material: 316L Stainless Steel.100% brand new and high qualityWe also have other size for 7/9/11/12/14 flex needles,and 12/14/16/18/21U needles,if you need these sizes, welcome to contatc us anytime, thanks very much.Package: 50 pcs x 16 Pins Needles", "pricing": "$21.60", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/31TdYLTggIL.jpg", "https://m.media-amazon.com/images/I/4120dy0nGBL.jpg", "https://m.media-amazon.com/images/I/41jGX1GY8BL.jpg", "https://m.media-amazon.com/images/I/41MzHQuuhfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Piercing & Tattoo Supplies \u203a Tattoo Supplies \u203a Tattoo Needles", "average_rating": "", "small_description": "Well packed with individual bags. Safe and durable. Needles are sharp and elastic, make the eyebrow line beautiful. Material: 316L Stainless Steel. 100% brand new and high quality", "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A2S3IO7T2RB60V", "seller_name": "REnJIEGO", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NSJX1WC", "category": "beauty", "query": "Piercing & Tattoo Supplies", "page": 80, "small_description_old": "Well packed with individual bags. Safe and durable. Needles are sharp and elastic, make the eyebrow line beautiful. Material: 316L Stainless Steel. 100% brand new and high quality"}, {"name": "SINGOVE Whitening & Sensitive Toothpaste for Adults Kids, Clean & Fresh, Intensive Stain Removal Teeth Reduce Yellowing (B)", "product_information": {"Department": "Womens", "Manufacturer": "SINGOVE", "ASIN": "B09S3NVLCV", "Country of Origin": "China"}, "brand": "Brand: SINGOVE", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SINGOVE", "full_description": "Tooth Cleaning Toothpaste Tooth Whitening Enamel Care Toothpaste Stain, V34 Color Corrector Tooth Whitening Sensitive Tooth Toothpaste 30ml

Features:
  • Enamel care: more effective than traditional toothpaste, helps replenish lost minerals and reduces sensitivity.
  • Tooth whitening: it helps to decompose the pigmentation on the surface of teeth, prevents pigmentation, reduce yellow tooth , and make your teeth no longer yellow teeth.
  • Natural ingredients: it contains blueberry, passion fruit, xylitol, glycerol and other plant ingredients. It is very safe and can be used safely. Fresh breath and bad breath, care for white teeth.
  • Fresh breath: brings lasting freshness to your teeth and gums. Promote strong enamel, whiten teeth and prevents halitosis. Brush your teeth in the morning, noon and evening.
  • 1. Tooth cleaning toothpaste - effectively help whiten your teeth and make your smile more beautiful.
  • 2. Blueberry bright tooth toothpaste --- helps to decompose the pigmentation on the surface of teeth, prevents pigmentation, reduce yellow tooth , and make the teeth no longer yellow teeth.
  • 3. Blueberry bright tooth toothpaste --- fresh breath and halitosis, take care of white teeth.
  • 4. Passion fruit tooth repair toothpaste - more effective than traditional toothpaste, helping to replenish lost minerals and reduce sensitivity.
  • 5. Passion fruit tooth repair toothpaste - let you enjoy all kinds of ice or hot things.

    include:
  • A tube of toothpaste", "pricing": "$4.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41zJLUa4RkL.jpg", "https://m.media-amazon.com/images/I/41nlPRcgHeL.jpg", "https://m.media-amazon.com/images/I/516gC+wun2L.jpg", "https://m.media-amazon.com/images/I/51IwzKYlihL.jpg", "https://m.media-amazon.com/images/I/51s9cmslbzL.jpg", "https://m.media-amazon.com/images/I/51h3mD122VL.jpg", "https://m.media-amazon.com/images/I/51-yBvYAltL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": "", "small_description": ["\u3010Gentle Cleansing Toothpaste\u3011: Powerful enamel toothpaste can improve your overall enamel health. Sensitive toothpaste is specially designed for gentle stain removal. A specially formulated sensitive enamel toothpaste restores the natural whiteness of teeth. ", "More effective than traditional toothpaste]: For sensitive teeth, fluoride toothpaste helps prevent tooth decay and strengthen tooth enamel. More effective than traditional toothpaste, it can help replenish lost minerals and reduce sensitivity. Let you freely enjoy a variety of ice cubes or hot food. This formula can completely remove stains and prevent tooth decay, while keeping the mouth clean. -toothpaste kids toothpaste whitening toothpaste baby toothpaste toddler toothp ", "\u3010Natural Ingredients\u3011: It contains blueberry, passion fruit, xylitol, glycerol and other plant ingredients. It is very safe and can be used safely. Fresh breath and bad breath, care for white teeth. ", "\u3010Fresh breath\u3011: The flavor is fresh and lasting, leaving teeth and gums healthy. Promote strong tooth enamel, whiten teeth and fight bad breath. Brushing your teeth in the morning and evening can effectively help your teeth whiter and make your smile more beautiful. ", "\u3010Purple & Orange\u3011: Help decompose the pigmentation on the surface of the teeth, block the pigmentation, reduce yellow tooth stains, and make your teeth no longer yellow. Fresh breath and bad breath, care for whiter teeth. It is more effective than traditional toothpaste and can help replenish lost minerals and reduce sensitivity. Let you enjoy all kinds of ice or hot things freely. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09S3PZ5G4/ref=twister_B09S3R2BPK?_encoding=UTF8&psc=1", "value": "A", "price_string": "$4.99", "price": 4.99, "image": "https://m.media-amazon.com/images/I/41BFKJltPkL.jpg"}, {"is_selected": true, "url": null, "value": "B", "price_string": "$4.99", "price": 4.99, "image": "https://m.media-amazon.com/images/I/41zJLUa4RkL.jpg"}]}, "seller_id": "A2UI1S5BOH7FH9", "seller_name": "Beauty Seller\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S3NVLCV", "category": "beauty", "query": "Toothpaste", "page": 97, "small_description_old": "\u3010Gentle Cleansing Toothpaste\u3011: Powerful enamel toothpaste can improve your overall enamel health. Sensitive toothpaste is specially designed for gentle stain removal. A specially formulated sensitive enamel toothpaste restores the natural whiteness of teeth. More effective than traditional toothpaste]: For sensitive teeth, fluoride toothpaste helps prevent tooth decay and strengthen tooth enamel. More effective than traditional toothpaste, it can help replenish lost minerals and reduce sensitivity. Let you freely enjoy a variety of ice cubes or hot food. This formula can completely remove stains and prevent tooth decay, while keeping the mouth clean. -toothpaste kids toothpaste whitening toothpaste baby toothpaste toddler toothp \u3010Natural Ingredients\u3011: It contains blueberry, passion fruit, xylitol, glycerol and other plant ingredients. It is very safe and can be used safely. Fresh breath and bad breath, care for white teeth. \u3010Fresh breath\u3011: The flavor is fresh and lasting, leaving teeth and gums healthy. Promote strong tooth enamel, whiten teeth and fight bad breath. Brushing your teeth in the morning and evening can effectively help your teeth whiter and make your smile more beautiful. \u3010Purple & Orange\u3011: Help decompose the pigmentation on the surface of the teeth, block the pigmentation, reduce yellow tooth stains, and make your teeth no longer yellow. Fresh breath and bad breath, care for whiter teeth. It is more effective than traditional toothpaste and can help replenish lost minerals and reduce sensitivity. Let you enjoy all kinds of ice or hot things freely."}, {"name": "Generic Floss Pick, Floss Stick, Clean Flossers High Toughness with Portable Cases Hotel Travel - Blue 100Pcs", "product_information": {"Date First Available\n \u200f": "\u200e\n September 15, 2021", "Manufacturer\n \u200f": "\u200e\n Generic", "ASIN\n \u200f": "\u200e\n B09HPMWHM4", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_dp_s_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "Description: - Multiple functions: floss is -fine polymer and does not expand the gap between teeth. The head can be shaved with moss, and there is no need to open a big mouth to clean big teeth. The tail curved handle is designed to clean big teeth and stubborn residues. Super classic anti slip stripe design on the handle. - High quality, safety and health: floss is made of food grade polymer, with high toughness and strong tensile force. The round line is smooth and does not hurt teeth. It is not easy to break and resistant to bending. The floss handle is made of polystyrene and is very durable. - Protect and clean teeth: floss sticks can pick out unwanted residues, remove plaque out of the reach of the toothbrush, help fight tooth decay and keep teeth clean. It can be used as an interdental brush or toothpick to deeply clean between teeth and gums. - Anti slip handle design: the handle design is located at the golden point of floss, and the middle part adopts convex design to enhance hand feeling, save labor and protect teeth. - Easy to carry: small size, can be put into wallet, briefcase, car, pocket or bag. Wherever you go, you can easily carry floss and use it at any timeSpecification: - Size: Approx 8cm/3.14inch Length - Material: PlasticPackage Includes:1 Box Floss", "pricing": "$10.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/4132+Y29bbL.jpg", "https://m.media-amazon.com/images/I/41dwVpQ71ZL.jpg", "https://m.media-amazon.com/images/I/41dxaRRR9vL.jpg", "https://m.media-amazon.com/images/I/31J5vzFOyKL.jpg", "https://m.media-amazon.com/images/I/41W8dRRCgkL.jpg", "https://m.media-amazon.com/images/I/41W8dRRCgkL.jpg", "https://m.media-amazon.com/images/I/41p1rM0d6WL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Dental Floss & Picks \u203a Dental Floss", "average_rating": "", "small_description": ["Anti slip handle design: the handle design is located at the golden point of floss, and the middle part adopts convex design to enhance hand feeling, save labor and protect teeth. ", "Easy to carry: small size, can be put into wallet, briefcase, car, pocket or bag. Wherever you go, you can easily carry floss and use it at any time ", "Multiple functions: floss is -fine polymer and does not expand the gap between teeth. The head can be shaved with moss, and there is no need to open a big mouth to clean big teeth. The tail curved handle is designed to clean big teeth and stubborn residues. Super classic anti slip stripe design on the handle. ", "Protect and clean teeth: floss sticks can pick out unwanted residues, remove plaque out of the reach of the toothbrush, help fight tooth decay and keep teeth clean. It can be used as an interdental brush or toothpick to deeply clean between teeth and gums. ", "High quality, safety and health: floss is made of food grade polymer, with high toughness and strong tensile force. The round line is smooth and does not hurt teeth. It is not easy to break and resistant to bending. The floss handle is made of polystyrene and is very durable. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A1PKRB7GK9L15A", "seller_name": "shenzhen qiaohua maoyi youxian gongsi", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09HPMWHM4", "category": "beauty", "query": "Dental Floss & Picks", "page": 81, "small_description_old": "About this item Anti slip handle design: the handle design is located at the golden point of floss, and the middle part adopts convex design to enhance hand feeling, save labor and protect teeth. Easy to carry: small size, can be put into wallet, briefcase, car, pocket or bag. Wherever you go, you can easily carry floss and use it at any time Multiple functions: floss is -fine polymer and does not expand the gap between teeth. The head can be shaved with moss, and there is no need to open a big mouth to clean big teeth. The tail curved handle is designed to clean big teeth and stubborn residues. Super classic anti slip stripe design on the handle. Protect and clean teeth: floss sticks can pick out unwanted residues, remove plaque out of the reach of the toothbrush, help fight tooth decay and keep teeth clean. It can be used as an interdental brush or toothpick to deeply clean between teeth and gums. High quality, safety and health: floss is made of food grade polymer, with high toughness and strong tensile force. The round line is smooth and does not hurt teeth. It is not easy to break and resistant to bending. The floss handle is made of polystyrene and is very durable."}, {"name": "Hanging Travel Size Toiletry Bag Compact Makeup Organizer Bathroom and Shower Organizer Kit with Elastic Band Holders for Toiletries Water-Proof Travel Bag for Travel Essentials Skincare Cosmetics", "product_information": {"Package Dimensions": "14.25 x 4.57 x 1.34 inches", "Item Weight": "5.3 ounces", "Department": "Unisex-adult", "Manufacturer": "WEIZHONG", "ASIN": "B09CV5GPJ2", "Country of Origin": "China", "Customer Reviews": {"ratings_count": 10, "stars": "3.9 out of 5 stars"}, "Best Sellers Rank": ["#339,584 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #1,031 in Toiletry Bags"]}, "brand": "Brand: WEIZHONG", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=WEIZHONG", "full_description": "", "pricing": "$28.98", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41vJbctYxmL.jpg", "https://m.media-amazon.com/images/I/51V4PrSoB5L.jpg", "https://m.media-amazon.com/images/I/51sMrFQiwJL.jpg", "https://m.media-amazon.com/images/I/51To5u-OF2L.jpg", "https://m.media-amazon.com/images/I/51+s3tmzwKL.jpg", "https://m.media-amazon.com/images/I/517o2Mx5SkL.jpg", "https://m.media-amazon.com/images/I/51BEu6kEYLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Toiletry Bags", "average_rating": 3.9, "small_description": ["Perfect design: Designed to be compact, easy to roll it up; Multiple hooks to pack it big or go small; Aluminum G-hook, hanging it anywhere; Portable and lightweight, TSA-SAFE. ", "Functional toiletry bag: Lays flat for easy access: Skincare, Cosmetics, Makeup brush, Shampoo and more; Multiple size elastic mesh pockets and premium elastic band, holds your travel essentials safely; With edc pocket, all your travel essentials organized. ", "Quality material: Water proof; Qualified material without smell or chemicals, durable zipper with smoothly gliding even when the bag is full; ", "Wide application: Perfect gift for you and your family or you friends; It loves outdoor, just roll it up tight and carry it or hang anywhere, vacations, travel, camping, backpacking, mountaineering and more. ", "Custer service: We are dedicating to design and manufacture high quality toiletry bags over many years, we set our mission of \u201cyour satisfaction is our first purpose\u201d . We serve all customers with honesty and loyalty for its best purchasing experience and satisfaction, so you can buy it at 100% confidence. "], "total_reviews": 10, "total_answered_questions": "", "customization_options": "", "seller_id": "A3IYOOY123SGM7", "seller_name": "SHENZHEN WEIZHONG TECHNOLOGY LTD", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09CV5GPJ2", "category": "beauty", "query": "Skin Care Sets & Kits", "page": 188, "small_description_old": "Perfect design: Designed to be compact, easy to roll it up; Multiple hooks to pack it big or go small; Aluminum G-hook, hanging it anywhere; Portable and lightweight, TSA-SAFE. Functional toiletry bag: Lays flat for easy access: Skincare, Cosmetics, Makeup brush, Shampoo and more; Multiple size elastic mesh pockets and premium elastic band, holds your travel essentials safely; With edc pocket, all your travel essentials organized. Quality material: Water proof; Qualified material without smell or chemicals, durable zipper with smoothly gliding even when the bag is full; Wide application: Perfect gift for you and your family or you friends; It loves outdoor, just roll it up tight and carry it or hang anywhere, vacations, travel, camping, backpacking, mountaineering and more. Custer service: We are dedicating to design and manufacture high quality toiletry bags over many years, we set our mission of \u201cyour satisfaction is our first purpose\u201d . We serve all customers with honesty and loyalty for its best purchasing experience and satisfaction, so you can buy it at 100% confidence."}, {"name": "Velvet Desk Chair Home Office Chairs Swivel Vanity Chair with Wheels Tufted Accent Armchair Adjustable Computer Task Chair for Bedroom Living Room Study Room (Pink)", "product_information": {"Product Dimensions": "16.93 x 21.26 x 34.65 inches", "Item Weight": "22 pounds", "Department": "Unisex Adult", "Manufacturer": "ElinkHome", "ASIN": "B09L44298X", "Customer Reviews": {"ratings_count": 7, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#324,636 in Home & Kitchen (See Top 100 in Home & Kitchen) #745 in Home Office Desk Chairs"], "Date First Available": "November 5, 2021"}, "brand": "Brand: freemax", "brand_url": "https://www.amazon.com/freemax/b/ref=bl_dp_s_web_23604476011?ie=UTF8&node=23604476011&field-lbr_brands_browse-bin=freemax", "full_description": "", "pricing": "$170.99", "list_price": "", "availability_quantity": 16, "availability_status": "Only 16 left in stock - order soon. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31cB0dnh7aL.jpg", "https://m.media-amazon.com/images/I/41CYkZEMrrL.jpg", "https://m.media-amazon.com/images/I/41Fh+XIn8WL.jpg", "https://m.media-amazon.com/images/I/31GRWAe6oSL.jpg", "https://m.media-amazon.com/images/I/31qKbhsr3rL.jpg", "https://m.media-amazon.com/images/I/41q-KtTG6iL.jpg", "https://m.media-amazon.com/images/I/31-kVVxYHCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Chairs \u203a Home Office Desk Chairs", "average_rating": 4.1, "small_description": ["Premium Material: This accent chair is made of premium velvet fabric and stainless steel base, which bring the soft touch and nice modern look. Metal frame and MDF board ensure the good shape and stability of this velvet office chair. ", "Ergonomic Design: Our home office desk chair adopts the ergonomic design sloped backrest, which can reduce the pressure on your back when you lean on it. 110\u00b0golden angle reconciles your work time and leisure life. Curved edges makes this cute desk chair looks more cute and comfortable. ", "Versatile Swivel Chair: The upholstered swivel chair seat height is adjustable from 15\" to 17\", to fit for different desks and people. 360 swivel rolling wheels for smooth movement and maintain a fast working rhythm. Silent nonslip nylon casters will protect your carpet and floor from scratching. ", "Fit Any Room: We have five colors for you to choose: retro green, elegant blue, cute pink, vivid yellow, and classic gray. Suitable for bedroom, living room, reading room, office. Whether you are looking for a office chair/ task chair for your study room/ bedroom, or a vanity chair for your bedroom, you can find the proper one here. Perfect for adults, teens, especially for women and girls. Nice gift for your family and friends. ", "Quality Service: The velvet vanity chair comes with all the parts and necessory tool. With the detailed instruction, it's easy to finish the installation. We take resposiblity for all the quality problem/damage in transit, please feel free to contact us if there is any problem. "], "total_reviews": 7, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09L42R48X/ref=twister_B09L3VD1CM?_encoding=UTF8&psc=1", "value": "Classic Grey", "price_string": "$169.98", "price": 169.98, "image": "https://m.media-amazon.com/images/I/31tw-wEtEoL.jpg"}, {"is_selected": true, "url": null, "value": "Cute Pink", "price_string": "$170.99", "price": 170.99, "image": "https://m.media-amazon.com/images/I/31cB0dnh7aL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09L4FPLPK/ref=twister_B09L3VD1CM?_encoding=UTF8&psc=1", "value": "Elegant Blue", "price_string": "$167.99", "price": 167.99, "image": "https://m.media-amazon.com/images/I/31AJBTlY5DL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09L42BFMT/ref=twister_B09L3VD1CM?_encoding=UTF8&psc=1", "value": "Retro Green", "price_string": "$169.99", "price": 169.99, "image": "https://m.media-amazon.com/images/I/31S+6GMVTdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09L4G2LSD/ref=twister_B09L3VD1CM?_encoding=UTF8&psc=1", "value": "Vivid Yellow", "price_string": "$166.98", "price": 166.98, "image": "https://m.media-amazon.com/images/I/31FeR8N3aNL.jpg"}]}, "seller_id": "A37J6ZISCG1274", "seller_name": "ElinkHome", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B09L44298X", "category": "garden", "query": "Home Office Chairs", "page": 7, "small_description_old": "About this item\n \nPremium Material: This accent chair is made of premium velvet fabric and stainless steel base, which bring the soft touch and nice modern look. Metal frame and MDF board ensure the good shape and stability of this velvet office chair. Ergonomic Design: Our home office desk chair adopts the ergonomic design sloped backrest, which can reduce the pressure on your back when you lean on it. 110\u00b0golden angle reconciles your work time and leisure life. Curved edges makes this cute desk chair looks more cute and comfortable. Versatile Swivel Chair: The upholstered swivel chair seat height is adjustable from 15\" to 17\", to fit for different desks and people. 360 swivel rolling wheels for smooth movement and maintain a fast working rhythm. Silent nonslip nylon casters will protect your carpet and floor from scratching. Fit Any Room: We have five colors for you to choose: retro green, elegant blue, cute pink, vivid yellow, and classic gray. Suitable for bedroom, living room, reading room, office. Whether you are looking for a office chair/ task chair for your study room/ bedroom, or a vanity chair for your bedroom, you can find the proper one here. Perfect for adults, teens, especially for women and girls. Nice gift for your family and friends. Quality Service: The velvet vanity chair comes with all the parts and necessory tool. With the detailed instruction, it's easy to finish the installation. We take resposiblity for all the quality problem/damage in transit, please feel free to contact us if there is any problem."}, {"name": "YyuX-qff Retro Decorative Mirror, Creativity Polygon Wall-Mounted Mirror Coffee Shop Library High Definition Full-Length Mirror Handmade Bathroom Mirrors (Size : 5050CM)", "product_information": {"Item Weight": "0.035 ounces", "Manufacturer": "YANYUXIANG", "ASIN": "B094QQ7X9T"}, "brand": "Brand: Home - mirror", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Home+-+mirror", "full_description": "Our make-up mirror is soft and natural, and the makeup is suitable for you.\u2605 Type: Decorative mirror\u2605 Product material: wood\u2605 Color: Picture color\u2605 Size: 50*50CM\u2605 This product does not contain other accessories\u2605 Life is the source of creativity, creativity comes from culture, creativity comes from oneself, do not seek the prosperity of the gorgeous, but seek a quiet and comfortable Qingning II\u2605 Made of imported agate vines, ash wood, healthy and environmentally friendly, let family members use it more at ease\u2605 The beauty of the details, simple from the inside out but not simple, exudes charming elegance\u2605 Applicable scenarios: living room, bedroom, bathroom, office, dressing table, dressing room, gallery, bookstore, coffee shop, shopping mall, etc.\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2665 Since the mirror is fragile, if the product is damaged during transportation, as long as you provide us with a photo, we can help you solve the problem.\u2665 We have a variety of styles of mirrors, welcome to browse and buy, look forward to your visit!\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u25b6\u25b6 Tip: Since we are using international logistics, successful delivery usually takes 15-25 days, more than 30 days, please contact us in time.\u25b6\u25b6 Tip: Due to different measurement tools, 1-2CM errors may occur. A slight chromatic aberration may occur due to the angle of shooting and light. This is normal, please understandMy shop has various styles of makeup mirrors, welcome to buy!", "pricing": "$196.03", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31qhu8rHUWL.jpg", "https://m.media-amazon.com/images/I/316+YZm8riL.jpg", "https://m.media-amazon.com/images/I/41Jjy+tLJEL.jpg", "https://m.media-amazon.com/images/I/4168Q8DxynL.jpg", "https://m.media-amazon.com/images/I/41iB8FXwffL.jpg", "https://m.media-amazon.com/images/I/51FGcXBp8SL.jpg", "https://m.media-amazon.com/images/I/51mGX2NSTvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bath \u203a Bathroom Accessories \u203a Bathroom Mirrors \u203a Wall-Mounted Vanity Mirrors", "average_rating": "", "small_description": ["\u25b6: After high temperature electrostatic baking paint, anti-oxidation treatment, waterproof and moisture-proof, non-rusting, the frame is made of iron art, hand-welded and polished, strong and durable without deformation ", "\u25b6: Applicable occasions: bathrooms, hotels, offices, living rooms, apartments, classrooms, clubs, coffee shops and other public places. ", "\u25b6: Perfect birthday gift, Valentine's Day gift, Christmas gift for family, wife, husband, boyfriend or girlfriend or other special day gift ", "\u25b6: Suitable for makeup, wearing contact lenses and eyebrow tweezers, shaving, styling hair, facial care. Can be installed on any smooth, flat, clean surface ", "\u25b6: Tip: The mirror is very fragile. If the product is damaged during transportation, it can be replaced for free. We have perfect after-sales service. 24 hours online to solve your problems "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": null}, "seller_id": "A2AVU0OGLT0OBL", "seller_name": "JiaHuiQin", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B094QQ7X9T", "category": "garden", "query": "Decorative Mirrors", "page": 309, "small_description_old": "About this item \u25b6: After high temperature electrostatic baking paint, anti-oxidation treatment, waterproof and moisture-proof, non-rusting, the frame is made of iron art, hand-welded and polished, strong and durable without deformation \u25b6: Applicable occasions: bathrooms, hotels, offices, living rooms, apartments, classrooms, clubs, coffee shops and other public places. \u25b6: Perfect birthday gift, Valentine's Day gift, Christmas gift for family, wife, husband, boyfriend or girlfriend or other special day gift \u25b6: Suitable for makeup, wearing contact lenses and eyebrow tweezers, shaving, styling hair, facial care. Can be installed on any smooth, flat, clean surface \u25b6: Tip: The mirror is very fragile. If the product is damaged during transportation, it can be replaced for free. We have perfect after-sales service. 24 hours online to solve your problems"}, {"name": "iPad Case Fit 2018/2017 iPad 9.7 6th/5th Generation - 360 Degree Rotating iPad Air Case Cover with Auto Wake/Sleep Compatible with Apple iPad 9.7 Inch 2018/2017 (National Wind)", "product_information": {"Standing screen display size": "\u200e9.7 Inches", "Brand": "\u200eCenYouful", "Item model number": "\u200e9.7National wind", "Item Weight": "\u200e8.4 ounces", "Package Dimensions": "\u200e9.61 x 7.44 x 0.98 inches", "Color": "\u200eNational wind", "Manufacturer": "\u200eCenYouful", "ASIN": "\u200eB07VVVDRCX", "Date First Available": "\u200eMarch 30, 2019", "Customer Reviews": {"ratings_count": 9687, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#135 in Tablet Cases"]}, "brand": "Brand: CenYouful", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=CenYouful", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/61H0+QvhTHL.jpg", "https://m.media-amazon.com/images/I/51pWSXJcg3L.jpg", "https://m.media-amazon.com/images/I/61oR6cw-ACL.jpg", "https://m.media-amazon.com/images/I/41TO8i+F6CL.jpg", "https://m.media-amazon.com/images/I/41qtKSoU7TL.jpg", "https://m.media-amazon.com/images/I/31CaUa7u25L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Tablet Accessories \u203a Bags, Cases & Sleeves \u203a Cases", "average_rating": 4.5, "small_description": ["\u3010Compatible Models\u3011 Specially designed for Apple New iPad 9.7 inch 2018 6th Gen (A1893/A1954), iPad 9.7 Inch 2017 5th Gen (A1822/A1823) ", "\u3010Auto Wake/ Sleep\u3011Sensitive Auto wake/sleep, save energy. Convenient built in hand strap, holds the iPad case closed, don't worry about loss while on the go. ", "\u3010Forceful Protection\u3011 Premium synthetic PU leather and flexible TPU case cover can effectively prevent fall, shock and water. ", "\u3010Multiple View Angles\u3011 Unique 360 degrees rotating with 3 anti-slip grooves design make it flexible for landscape and portrait viewing. Free your hands and perfect for watching movies, playing games and online chatting. ", "\u3010After-Sale Service \u3011: If you have any questions, please feel free to contact us and we will give you a reply within 24 hours. We are always committed to providing you with the best service. Buy this ipad 9.7 case shell for yourself now, or give it to your friends as a thoughtful gift. You will surely win their praise! "], "total_reviews": 9687, "total_answered_questions": 47, "model": "\u200e9.7National wind", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07VD6L2BV/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Butterfly", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51l7Q448vAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07Q6WDN4V/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Cambridge Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Uqc3L9onL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07TWD86MR/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Coconut trees", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51UIb7KN9sL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07VVV8D2Z/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Coffee letter", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ZIxj1H-OL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08KY3N241/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51tMu0g5E3L.jpg"}, {"is_selected": true, "url": null, "value": "National wind", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61H0+QvhTHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WKTRKMD/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Ostrich", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51M3atfa-RL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07VZ3YC9J/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Pear flower", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51lFnueMJ4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07TDXN4NW/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51qfv5rx+LL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MZG51PW/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Pink flowers", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61Zc9cFr8hL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X1SMV6N/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41k1K8PgiDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08DLHYHYT/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Red Mandala", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/6117uZGN4HL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B088HFFDX4/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Red-3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Kq7zxUaHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07NX6B4SV/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Rose", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51N5IBO1XIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07VB3W4LK/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "Sunset", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/516kLDi79zL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JD8Q5YM/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "coast coconut trees", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Djws1eBzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07VY1QPZK/ref=twister_B07W42V3CY?_encoding=UTF8&psc=1", "value": "peach blossom", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Dp+OqQzpL.jpg"}]}, "seller_id": "A1O5OFUY3VFQV3", "seller_name": "CenYouful", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07VVVDRCX", "category": "electronics", "query": "Online Game Services", "page": 39, "small_description_old": "About this item\n \n\u3010Compatible Models\u3011 Specially designed for Apple New iPad 9.7 inch 2018 6th Gen (A1893/A1954), iPad 9.7 Inch 2017 5th Gen (A1822/A1823) \u3010Auto Wake/ Sleep\u3011Sensitive Auto wake/sleep, save energy. Convenient built in hand strap, holds the iPad case closed, don't worry about loss while on the go. \u3010Forceful Protection\u3011 Premium synthetic PU leather and flexible TPU case cover can effectively prevent fall, shock and water. \u3010Multiple View Angles\u3011 Unique 360 degrees rotating with 3 anti-slip grooves design make it flexible for landscape and portrait viewing. Free your hands and perfect for watching movies, playing games and online chatting. \u3010After-Sale Service \u3011: If you have any questions, please feel free to contact us and we will give you a reply within 24 hours. We are always committed to providing you with the best service. Buy this ipad 9.7 case shell for yourself now, or give it to your friends as a thoughtful gift. You will surely win their praise!"}, {"name": "Makeup brushes 8 pieces and a high quality leather bag, easy for you to carry out,Makeup Brushes Premium Synthetic Liquid foundation , loose powder , blush , eyelash , nose shadow , eye shadow , eyebrow powder , lip brush. (apricot)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.5 x 1.9 x 0.78 inches; 2.72 Ounces", "UPC\n \u200f": "\u200e\n 657036933965", "Manufacturer\n \u200f": "\u200e\n XX-UV", "ASIN\n \u200f": "\u200e\n B0927BXC6B", "Best Sellers Rank": "#254,506 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,115 in Makeup Brush Sets & Kits", "#1,115 in Makeup Brush Sets & Kits": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: XX-UV", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=XX-UV", "full_description": "", "pricing": "$5.99", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41XcrILGbBS.jpg", "https://m.media-amazon.com/images/I/41JZSVakynS.jpg", "https://m.media-amazon.com/images/I/51VfxljXVgS.jpg", "https://m.media-amazon.com/images/I/51mOquLVW6S.jpg", "https://m.media-amazon.com/images/I/41uUjh1iBbS.jpg", "https://m.media-amazon.com/images/I/31G-ClSxrjS.jpg", "https://m.media-amazon.com/images/I/51rC6Df5ieS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Makeup Brushes & Tools \u203a Brush Sets", "average_rating": 3.2, "small_description": ["\u25c6Mini size with bag for daily or travel use. The makeup brushes are lightweight for easier to grip and use. You may use them at home or take it out in your bag every day or when travelling. ", "\u25cfPremium and Soft Bristles: The bristles are well made of premium fiber wool, ensured for long time use. Provide you with soft and comfortable touch feeling and super ability to hold. ", "\u25cfHigh Quality and Solid Handle: The handles of premium makeup brushes are made of wood material and aluminum tube, finely polished and painted, no fade. ", "\u25cf8pcs different kinds of brochas de maquillaje included. It contains face foundation brush, blush brush, eye shadow brush, nasal shadow brush, eyebrow brush, lip brush and eyelash brush for a simple and flawless makeup. ", "\u25cfPerfect for beglnners and professlonals. No matter you are beginners or professionals, this best makeup brushes will be a good option or addition to your makeup set. "], "total_reviews": 4, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09272XLHB/ref=twister_B0926XMYHT?_encoding=UTF8&psc=1", "value": "Dark blue", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/41H77tVZd0S.jpg"}, {"is_selected": true, "url": null, "value": "apricot", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/51z08ZSK4BS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0927DFS5Z/ref=twister_B0926XMYHT?_encoding=UTF8&psc=1", "value": "light blue", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/41Ajkn0oOJS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092789Q1Y/ref=twister_B0926XMYHT?_encoding=UTF8&psc=1", "value": "pink", "price_string": "$7.89", "price": 7.89, "image": "https://m.media-amazon.com/images/I/51I35+5XS5S.jpg"}]}, "seller_id": "A163UADU5GYTQP", "seller_name": "XX-UV", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0927BXC6B", "category": "beauty", "query": "Eyes Makeup", "page": 198, "small_description_old": "About this item \u25c6Mini size with bag for daily or travel use. The makeup brushes are lightweight for easier to grip and use. You may use them at home or take it out in your bag every day or when travelling. \u25cfPremium and Soft Bristles: The bristles are well made of premium fiber wool, ensured for long time use. Provide you with soft and comfortable touch feeling and super ability to hold. \u25cfHigh Quality and Solid Handle: The handles of premium makeup brushes are made of wood material and aluminum tube, finely polished and painted, no fade. \u25cf8pcs different kinds of brochas de maquillaje included. It contains face foundation brush, blush brush, eye shadow brush, nasal shadow brush, eyebrow brush, lip brush and eyelash brush for a simple and flawless makeup. \u25cfPerfect for beglnners and professlonals. No matter you are beginners or professionals, this best makeup brushes will be a good option or addition to your makeup set."}, {"name": "Haneye 8 oz Clear Round Glass Jars, Pack of 12 with Black Lids, Cosmetics Containers for Face Cream Lotion, Powder, Candle, Body Butter", "product_information": "", "brand": "Brand: Haneye", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Haneye", "full_description": "", "pricing": "$17.44", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41qrOyamkFS.jpg", "https://m.media-amazon.com/images/I/41nw9gA+pwS.jpg", "https://m.media-amazon.com/images/I/41WopNhwGfS.jpg", "https://m.media-amazon.com/images/I/51AVSCwpRvS.jpg", "https://m.media-amazon.com/images/I/41Yb0oFHEnS.jpg", "https://m.media-amazon.com/images/I/41BWdHBENuS.jpg", "https://m.media-amazon.com/images/I/51dauzoKySS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": 4.8, "small_description": ["Package - 12 pack 8 oz Clear galss jars with black lids, 4 small cosmetic spatulas and 12 labels. ", "Application - These Round Jars are absolutely perfect for storing your cosmetics, body or face cream lotion. ", "Convenience - Easy to put all kinds of your creams into different jars, and convenient to carry them while you are traveling or outside. ", "Material - Made of high quality and sturdy clear glass, the clear color are great for you see the contents you put in it clearly. The black lids are plastic and smooth. ", "Reusable - You can easily clean both inside and outside if you want to replace the contents or put another cosmetics and creams into the jars. "], "total_reviews": 48, "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B091HFPLPW", "category": "beauty", "query": "Body Makeup", "page": 51, "small_description_old": "About this item\n \nPackage - 12 pack 8 oz Clear galss jars with black lids, 4 small cosmetic spatulas and 12 labels. Application - These Round Jars are absolutely perfect for storing your cosmetics, body or face cream lotion. Convenience - Easy to put all kinds of your creams into different jars, and convenient to carry them while you are traveling or outside. Material - Made of high quality and sturdy clear glass, the clear color are great for you see the contents you put in it clearly. The black lids are plastic and smooth. Reusable - You can easily clean both inside and outside if you want to replace the contents or put another cosmetics and creams into the jars."}, {"name": "GXP Solid Reclaimed Wood Bedside Cabinet w/3 Drawers Nightstand Side Table", "product_information": {"Item Weight": "0.035 ounces", "Department": "Unisex-adult", "Manufacturer": "GXP", "ASIN": "B09HXDPKJF"}, "brand": "Brand: gxp", "brand_url": "https://www.amazon.com/gxp/b/ref=bl_dp_s_web_12084794011?ie=UTF8&node=12084794011&field-lbr_brands_browse-bin=gxp", "full_description": "You can treat it as a bathroom cabinet or cupboard,or just as an elegant storage cabinet in bedroom,powder room,entryway,corridor and office,dining room and living areasProduct Specifications:Material:Solid reclaimed woodDimensions:18.9\"x 13.8\"x 25.2\"(W x D x H)With 3 drawersHandmade", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/4131WEAzw1S.jpg", "https://m.media-amazon.com/images/I/41CBpAFSYES.jpg", "https://m.media-amazon.com/images/I/510stbAcnkS.jpg", "https://m.media-amazon.com/images/I/41vKYdlFIWS.jpg", "https://m.media-amazon.com/images/I/41Aj7WigT1S.jpg", "https://m.media-amazon.com/images/I/41GHd31OKxS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Nightstands", "average_rating": "", "small_description": ["Storage cabinet makes it suitable for various room,modern elegant design allows it to easily complement your homes and office decor.make your space organized and comfortable ", "This antique-style wooden nightstand in an elegant design will add a sophisticated touch to your bedroom. ", "The bedside cabinet is made of solid reclaimed wood,which has the characteristics of different woods like mahogany,teak,mango wood,acacia,etc.You may find cavities left by nails,screws,or bolts,along with other imperfections,underlying the authenticity of the material.These imperfections disclose a rich history and are never intentionally made. ", "Signs of wear and the craftsmanship of this fully-handmade nightstand give each piece a unique look and add to its spectacular vintage style. ", "This side cabinet has 3 drawers with ample space for storing various items. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09HXDPKJF", "category": "garden", "query": "Nightstands", "page": 315, "small_description_old": "About this item\n \nStorage cabinet makes it suitable for various room,modern elegant design allows it to easily complement your homes and office decor.make your space organized and comfortable This antique-style wooden nightstand in an elegant design will add a sophisticated touch to your bedroom. The bedside cabinet is made of solid reclaimed wood,which has the characteristics of different woods like mahogany,teak,mango wood,acacia,etc.You may find cavities left by nails,screws,or bolts,along with other imperfections,underlying the authenticity of the material.These imperfections disclose a rich history and are never intentionally made. Signs of wear and the craftsmanship of this fully-handmade nightstand give each piece a unique look and add to its spectacular vintage style. This side cabinet has 3 drawers with ample space for storing various items."}, {"name": "Projector NGF-TY-22 1080P Projector, 5G WiFi 9500L Movie Projector for Outdoor Screen Mirror, Support 4K & 300\u201d Display, HiFi Speaker, Home Video Projector for Phone/TV Stick/Laptop/PS4/Xbox", "product_information": {"Brand Name": "\u200eU\\C", "ASIN": "B09SJ5YGMZ", "Date First Available": "February 15, 2022"}, "brand": "Brand: U\\C", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=U%5CC", "full_description": "Contrast Ratio: 10000:1 Resolution: 1920*1080PDiaplay Size: 27\"-300\" Projection Distance: 3.6 - 19.7 FT Keystone Correction: Manual \u00b1 15 \u00b0 Aspect Ratio: 16:9/ 4:3 Projection Mode: Front / Rear Ceiling Lamp Life: 100,000 Hours WiFi Mirorring Projector Ultra 5G/2.4G WiFi Technology hd projector has the lasted 5G/2.4G WiFi technology, enhancing performance in signal propagation between walls or obstacles, and effectively greater coverage brings lag-free video performance. Supports iOS & Android Win10 devices screen mirroring, meets all your requirements for a high-end home video projector! innovative cooling system tech, bringing you low noise immersive watching experience and effectively extend the lifetime of the projector.projector adopts a single mounting hole dual-use design, compatible with the standard tripod and 1/4 inch screw projector tripod stand. NO NEED TO BUY EXTRA CABLES, one-time connection and lifetime enjoy!Small and portable size, would be the best option for a gift!", "pricing": "$199.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41Wj-M8UbmL.jpg", "https://m.media-amazon.com/images/I/517+s-wudfL.jpg", "https://m.media-amazon.com/images/I/51Kb0lgi1ML.jpg", "https://m.media-amazon.com/images/I/41Wj-M8UbmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Video Projectors", "average_rating": "", "small_description": ["\u3010Plug & Play Projector\u3011 WiFi projector enables synchronized smartphone screen by 5G/2.4G WiFi. The Ultra-fast 5G WiFi brings you a lag-free streaming-watching experience. The wireless screen sharing function offers great convenience to gaming online or watching the video by streaming from iOS/Android devices. Due to app copyright, watch the movie on Netflix, Prime Video, Hulu, only via connect a laptop, fire tv stick, Roku, or Chromecast. ", "\u3010 1080P Resolution\u3011 1080P video projector provides all-digital projection display, offering superior picture quality in terms of resolution brightness contrast and color fidelity. Delivering a large-screen and up to 32-bit true-color support, extremely impressed with the tonal rendition and accuracy of colors. Supports 4k video when connecting a laptop or TV stick to the projector via HDMI port, the diffuse reflection technology maximum protects your eyes against direct light harm. ", "\u3010HiFi Speaker & Zero-noise\u3011The smart projector built-in speaker that uses the newest noise reduction technology, provide the original audio fidelity, this outdoor projector restored every detail sound effect and fills your room with impressive, overwhelming sound, enhancing your immersion in the movie experience. The two front and rear cooling systems bring a zero-noise, comprehensive immersive experience to the projector. ", "\u3010300\u201d Big Projection Size\u3011The movie projector is designed for office PowerPoint presentations and widescreen home entertainment, this outdoor/indoor wifi projector up to 300\" projection size brings you a brilliant and widescreen visual experience accessible. creating an IMAX private cinema for you! [Include a free projector screen] supported ceiling, wall, table, stand projection. The portable projector meets all of your needs whatever indoor or outdoor! ", "\u3010Compatible Devices & Professional Tech Support\u3011Versatile and portable video projector quipped with VGA/USB/HDMI/AV/Audio/Wireless Connect, compatible with Roku Stick, Fire-TV, Chromecast, External Speakers, USB Disk, PS4/PS5/Switch/XBOX, Laptop/PC, DVD Player, Mobile Phone/iPad. And possess CE, FCC, RoHS, PSE certificates, has a professional after-sales customers team, we will bring you and 6 months of free return 6 years of free warranty. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3MYG6LFV1ZBRL", "seller_name": "Nagufeng", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09SJ5YGMZ", "category": "electronics", "query": "Projectors", "page": 212, "small_description_old": "\u3010Plug & Play Projector\u3011 WiFi projector enables synchronized smartphone screen by 5G/2.4G WiFi. The Ultra-fast 5G WiFi brings you a lag-free streaming-watching experience. The wireless screen sharing function offers great convenience to gaming online or watching the video by streaming from iOS/Android devices. Due to app copyright, watch the movie on Netflix, Prime Video, Hulu, only via connect a laptop, fire tv stick, Roku, or Chromecast. \u3010 1080P Resolution\u3011 1080P video projector provides all-digital projection display, offering superior picture quality in terms of resolution brightness contrast and color fidelity. Delivering a large-screen and up to 32-bit true-color support, extremely impressed with the tonal rendition and accuracy of colors. Supports 4k video when connecting a laptop or TV stick to the projector via HDMI port, the diffuse reflection technology maximum protects your eyes against direct light harm. \u3010HiFi Speaker & Zero-noise\u3011The smart projector built-in speaker that uses the newest noise reduction technology, provide the original audio fidelity, this outdoor projector restored every detail sound effect and fills your room with impressive, overwhelming sound, enhancing your immersion in the movie experience. The two front and rear cooling systems bring a zero-noise, comprehensive immersive experience to the projector. \u3010300\u201d Big Projection Size\u3011The movie projector is designed for office PowerPoint presentations and widescreen home entertainment, this outdoor/indoor wifi projector up to 300\" projection size brings you a brilliant and widescreen visual experience accessible. creating an IMAX private cinema for you! [Include a free projector screen] supported ceiling, wall, table, stand projection. The portable projector meets all of your needs whatever indoor or outdoor! \u3010Compatible Devices & Professional Tech Support\u3011Versatile and portable video projector quipped with VGA/USB/HDMI/AV/Audio/Wireless Connect, compatible with Roku Stick, Fire-TV, Chromecast, External Speakers, USB Disk, PS4/PS5/Switch/XBOX, Laptop/PC, DVD Player, Mobile Phone/iPad. And possess CE, FCC, RoHS, PSE certificates, has a professional after-sales customers team, we will bring you and 6 months of free return 6 years of free warranty. \n \u203a See more product details"}, {"name": "Magic Line Creme Bouquet Flavoring Oil for Baking - Replaces Vanilla Flavor Extracts (32 Ounces)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.69 x 3.43 x 3.43 inches; 1.96 Pounds", "UPC\n \u200f": "\u200e\n 682962526332", "Manufacturer\n \u200f": "\u200e\n Parrish Magic Line", "ASIN\n \u200f": "\u200e\n B0198VF30I", "Best Sellers Rank": "#21,364 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#26 in Dessert Flavoring Syrups", "#26 in Dessert Flavoring Syrups": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Parrish Magic Line", "brand_url": "https://www.amazon.com/Parrish-Magic-Line/b/ref=bl_dp_s_web_2598199011?ie=UTF8&node=2598199011&field-lbr_brands_browse-bin=Parrish+Magic+Line", "full_description": "Are you looking for a stronger flavoring extract? Introducing Parrish Magic Line Creme Bouquet, a flavoring oil used by professional & home bakers for several decades! It features a light butter citrus flavor that upgrades any recipe. Add a small amount to baked goods, such as cookies, cakes, bars, and cheesecakes! It\u2019s also an excellent addition to icings and pastries, including muffins, rolls, and buns. Impress your guests and customers with the heavenly aroma of this birthday cake flavor! A little goes a long way, making this 32oz bottle excellent for large parties, events, & gatherings! Bake mouthwatering desserts for the whole family using Magic Line Creme Bouquet! Plus, it mixes well with water and oil-based recipes, allowing you to use the extract for various pastries! A stronger substitute for vanilla extract, this food flavoring also tolerates high temperatures. As a result, the finished product retains the delightful scent of vanilla! Parrish Magic Line Professional Strength Artificial Flavor in Creme Bouquet: Adding extra flavor & aroma to your creations", "pricing": "$49.97", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/31oBDhH0xtS.jpg", "https://m.media-amazon.com/images/I/51+UHAIG+fS.jpg", "https://m.media-amazon.com/images/I/514N+yXRePS.jpg", "https://m.media-amazon.com/images/I/51n2AMb7RPS.jpg", "https://m.media-amazon.com/images/I/51SG24OMP7S.jpg", "https://m.media-amazon.com/images/I/51-ytztaLVS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Dessert Syrups & Sauces \u203a Flavoring Syrup", "average_rating": 4.6, "small_description": ["Irresistible Flavor & Aroma - Enhance recipes & upgrade your baking skills with this flavoring oil! ", "Substitute For Vanilla - Our flavor extracts offer a stronger flavor than the usual vanilla extract. ", "Flavoring Extract For Baking - Add the Creme Bouquet flavoring to baked goods, icings, & pastries. ", "Heat-Tolerant Food Flavoring - Use cake flavoring extracts that retain the delightful vanilla taste. ", "For Large Batches - A 32oz bottle of artificial vanilla flavor is more than enough for large parties "], "total_reviews": 355, "total_answered_questions": 18, "customization_options": "", "seller_id": "A3VDBPE82S43CG", "seller_name": "NG, Inc.", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0198VF30I", "category": "grocery", "query": "Party Mix", "page": 259, "small_description_old": "Irresistible Flavor & Aroma - Enhance recipes & upgrade your baking skills with this flavoring oil! Substitute For Vanilla - Our flavor extracts offer a stronger flavor than the usual vanilla extract. Flavoring Extract For Baking - Add the Creme Bouquet flavoring to baked goods, icings, & pastries. Heat-Tolerant Food Flavoring - Use cake flavoring extracts that retain the delightful vanilla taste. For Large Batches - A 32oz bottle of artificial vanilla flavor is more than enough for large parties"}, {"name": "Cyber Acoustics Surround Powered Speaker System Bookshelf Home Speaker, Set of 2, Black (CA-2027)", "product_information": {"Product Dimensions": "9.3 x 8.7 x 4.1 inches", "Item Weight": "0.32 ounces", "Manufacturer": "Cyber Acoustics", "ASIN": "B019IHR5LW", "Item model number": "CA-2027", "Customer Reviews": {"ratings_count": 10, "stars": "3.4 out of 5 stars"}, "Best Sellers Rank": ["#308,937 in Electronics (See Top 100 in Electronics) #642 in Bookshelf Speakers"], "Is Discontinued By Manufacturer": "No", "Date First Available": "December 18, 2015"}, "brand": "Visit the Cyber Acoustics Store", "brand_url": "https://www.amazon.com/stores/CyberAcoustics/page/DF80F835-21E5-47DE-8FE1-64E286F63EF9?ref_=ast_bln", "full_description": "The CA-2027 gives you a solid audio experience and only takes up a small amount of desk space. Features headphone output and auxiliary input.", "pricing": "$40.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41osuRTuflL.jpg", "https://m.media-amazon.com/images/I/41JJQNEpV3L.jpg", "https://m.media-amazon.com/images/I/41vZ64+2QOL.jpg", "https://m.media-amazon.com/images/I/51k0GV-iafL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Speakers \u203a Bookshelf Speakers", "average_rating": 3.4, "small_description": ["Convenient desktop controls ", "Low distortion, high powered amplifier ", "High excursion, high efficiency drivers ", "Magnetically-shielded satellite speakers ", "Headphone output "], "total_reviews": 10, "total_answered_questions": 9, "model": "CA-2027", "customization_options": "", "seller_id": "A1BR1JVUON8T1H", "seller_name": "Zully store", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B019IHR5LW", "category": "electronics", "query": "Surround Sound Systems", "page": 214, "small_description_old": "About this item Convenient desktop controls Low distortion, high powered amplifier High excursion, high efficiency drivers Magnetically-shielded satellite speakers Headphone output"}, {"name": "Birds Eye Steamfresh Family Size Mixed Vegetables, Keto Friendly Frozen Vegetables, 19 OZ", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 1.83 x 7.5 x 7.5 inches; 1.1 Pounds", "Item model number\n \u200f": "\u200e\n 01409", "UPC\n \u200f": "\u200e\n 014500014092", "Manufacturer\n \u200f": "\u200e\n Pinnacle", "ASIN\n \u200f": "\u200e\n B00N6Y8ORI", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: BIRDS EYE", "brand_url": "https://www.amazon.com/BIRDS-EYE/b/ref=bl_dp_s_web_19393355011?ie=UTF8&node=19393355011&field-lbr_brands_browse-bin=BIRDS+EYE", "full_description": "Birds Eye Steamfresh Mixed Vegetables give your family a delicious vegetable side dish with less work. Flash frozen for fresh flavor, these mixed veggies contain corn, carrots, green beans and peas for a classic vegetable mix. These frozen mixed vegetables are made without artificial flavors, colors or preservatives to give you only the best. Enjoy the steamable vegetables as an easy side, or add them to casseroles. Preparation is easy; just microwave the frozen vegetables in the bag for up to 10 minutes or cook on the stove in under 15 minutes. Keep the family size 19 ounce bag in the freezer until you're ready to cook it. It\u2019s good to eat vegetables, so Birds Eye makes vegetables good to eat.", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/51EXdda2NJL.jpg", "https://m.media-amazon.com/images/I/51UONF8WYKL.jpg", "https://m.media-amazon.com/images/I/41GYiU9KMcL.jpg", "https://m.media-amazon.com/images/I/41z7b3CkH7L.jpg", "https://m.media-amazon.com/images/I/61tYqA8+o0L.jpg", "https://m.media-amazon.com/images/I/51QVtydMdlL.jpg", "https://m.media-amazon.com/images/I/51GnzJNDysL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Frozen \u203a Vegetables \u203a Mixed Vegetables", "average_rating": 4.8, "small_description": ["One 19 oz bag of Birds Eye Steamfresh Mixed Vegetables Frozen Vegetables ", "Easy to prepare frozen mixed vegetables ", "Mixed veggies contain corn, carrots, green beans and peas for a versatile vegetable mix ", "Steamable vegetables are made with no artificial flavors, colors or preservatives ", "Microwave in the bag or heat on the stove ", "Stock your freezer with frozen meals 365 days a year ", "Fits a Keto Friendly and Low Carb Lifestyle - 2g of Protein, 8g Net Carbs (10g Total Carbs minus 2g Dietary Fiber), and 0g Added Sugar per serving "], "total_reviews": 940, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B00N6Y8ORI", "category": "grocery", "query": "Frozen", "page": 41, "small_description_old": "About this item One 19 oz bag of Birds Eye Steamfresh Mixed Vegetables Frozen Vegetables Easy to prepare frozen mixed vegetables Mixed veggies contain corn, carrots, green beans and peas for a versatile vegetable mix Steamable vegetables are made with no artificial flavors, colors or preservatives Microwave in the bag or heat on the stove Stock your freezer with frozen meals 365 days a year Fits a Keto Friendly and Low Carb Lifestyle - 2g of Protein, 8g Net Carbs (10g Total Carbs minus 2g Dietary Fiber), and 0g Added Sugar per serving"}, {"name": "Make Your Own Gummy Bears Mix, 3 Pack, with mold, made in Germany", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 10.55 x 8.78 x 5.79 inches; 2.69 Pounds", "UPC\n \u200f": "\u200e\n 040232640728", "Manufacturer\n \u200f": "\u200e\n Kathi", "ASIN\n \u200f": "\u200e\n B076R28M2M", "Best Sellers Rank": "#192,666 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#2,741 in Gummy Candies", "#2,741 in Gummy Candies": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: My Candy Baker", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=My+Candy+Baker", "full_description": "The Box contains: 3 pouches with Lemon, Strawberry, Apple mixes Natural colors and flavors Silicone mold for 40+ gummy bears per flavor Add any other ingredient of your choice (for example liquor, if you're over 21 years of age)", "pricing": "$32.95", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/51zBzTMaNcL.jpg", "https://m.media-amazon.com/images/I/5116c8MKZOL.jpg", "https://m.media-amazon.com/images/I/51lY57-q4QL.jpg", "https://m.media-amazon.com/images/I/41lglO7scDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Candy & Chocolate \u203a Gummy Candy", "average_rating": 4.3, "small_description": ["A great activity for parents, children and young adults: make your own gummy bears, in any shape and size you like ", "Simply heat mix in water, pour syrup into mold (included), chill and enjoy tes. Just add water ", "Great for birthday parties, bachelor parties and as holiday gift ", "I box makes about 140 gummy bears "], "total_reviews": 11, "total_answered_questions": 3, "customization_options": "", "seller_id": "A1Z58NPUE8ASHH", "seller_name": "The Taste of Germany", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B076R28M2M", "category": "grocery", "query": "Party Mix", "page": 175, "small_description_old": "About this item A great activity for parents, children and young adults: make your own gummy bears, in any shape and size you like Simply heat mix in water, pour syrup into mold (included), chill and enjoy tes. Just add water Great for birthday parties, bachelor parties and as holiday gift I box makes about 140 gummy bears"}, {"name": "NavePoint HDMI 1.4 Male to Male Cable Black 30 Ft Woven Black Blue", "product_information": {"Product Dimensions": "7 x 7 x 2 inches", "Item Weight": "1.05 pounds", "ASIN": "B00YZ5KT98", "Item model number": "4330575082", "Best Sellers Rank": ["#10,655 in HDMI Cables"], "Date First Available": "June 5, 2015", "Manufacturer": "NavePoint"}, "brand": "Visit the NavePoint Store", "brand_url": "https://www.amazon.com/stores/NavePoint/page/9D39388D-911F-44B7-8978-F9E49EDB43BA?ref_=ast_bln", "full_description": "Enhance your home theater experience with NavePoint\u00c6s line of high quality, certified HDMI Cables provide clear, crisp and realistic HD picture. These HDMI cables combine audio and video into one convenient cable. They offer the newest technology in the 1.4 HDMI for your 3D applications but are backwards compatible and can also be used for your X-Box 360, Playstation 3, HD Cable Box, PC or any Blu-Ray player, Xbox 360, PlayStation 3, HD Cable Box, Personal Computer or any other HDMI (High Definition Multimedia Interface) device with an HDMI output. Available in a variety of lengths.", "pricing": "$10.80", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41RLQKUsvmL.jpg", "https://m.media-amazon.com/images/I/51uh3Swz1tL.jpg", "https://m.media-amazon.com/images/I/51u+fBGc-ZL.jpg", "https://m.media-amazon.com/images/I/51nCxDm0PVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a HDMI Cables", "average_rating": "", "small_description": ["Quality Construction includes stylish blue/black cotton jacket, gold-plated PVC connectors, full metal shielding throughout the 28AWG cable and within connectors for durability and interference protection. ", "Supports 3D Content, Ethernet and Audio Return Channel. Guaranteed to support 4Kx2K 1440p, 1080p, 1080i, 720p, 480p, 2160p and 480i Resolutions with digital transfer rates up to 340Mhz or 10.2gbps ", "Supports Highest Refresh Rates Available ", "Supports True HD Dolby 7.1 and DTS-HD Master Audio ", "HDCP Compliant "], "total_reviews": "", "total_answered_questions": "", "model": "4330575082", "customization_options": "", "seller_id": "A3FG64J8IOS59V", "seller_name": "NavePoint, LLC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00YZ5KT98", "category": "electronics", "query": "HDMI Cables", "page": 212, "small_description_old": "About this item\n \nQuality Construction includes stylish blue/black cotton jacket, gold-plated PVC connectors, full metal shielding throughout the 28AWG cable and within connectors for durability and interference protection. Supports 3D Content, Ethernet and Audio Return Channel. Guaranteed to support 4Kx2K 1440p, 1080p, 1080i, 720p, 480p, 2160p and 480i Resolutions with digital transfer rates up to 340Mhz or 10.2gbps Supports Highest Refresh Rates Available Supports True HD Dolby 7.1 and DTS-HD Master Audio HDCP Compliant"}, {"name": "Water Flosser Portable Dental Oral Irrigator with 3 Modes, 4 Replaceable Jet Tips, Rechargeable Waterproof Teeth Cleaner for Home and Travel -220ml Detachable Reservoir", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.88 x 4.84 x 2.48 inches; 12.7 Ounces", "Date First Available\n \u200f": "\u200e\n September 2, 2021", "Manufacturer\n \u200f": "\u200e\n Kiyaosoka", "ASIN\n \u200f": "\u200e\n B09F9DZFKL", "Best Sellers Rank": "#396,832 in Health & Household (See Top 100 in Health & Household)#925 in Power Dental Flossers", "#925 in Power Dental Flossers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Kiyaosoka", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Kiyaosoka", "full_description": "", "pricing": "$22.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41AZ-KJOHfL.jpg", "https://m.media-amazon.com/images/I/51gXhzWqanL.jpg", "https://m.media-amazon.com/images/I/51H7AmRYd+L.jpg", "https://m.media-amazon.com/images/I/413dSnFdNtL.jpg", "https://m.media-amazon.com/images/I/51KQFLa64oL.jpg", "https://m.media-amazon.com/images/I/41A9Aha-p0L.jpg", "https://m.media-amazon.com/images/I/41L5GLI+LqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Dental Floss & Picks \u203a Power Dental Flossers", "average_rating": 2, "small_description": ["\u3010220ml Detachable& Cleanable Water Tank\u3011220ml water reservoir perfect for enough and uninterrupted oral dental water flosser without filling in the water again and again. The upgraded removable full-opening water tank allows you to thoroughly clean the limescale and dental plaque, which is impossible for common oral irrigators. ", "\u30103 Modes & Rotatable Nozzles\u3011Normal, Gentle, and Pulse modes to meet various oral care needs. The 360\u00b0 rotatable nozzle design allows you to clean the areas that are difficult to reach easily and prevents tooth decay, dental plaque, dental calculus, and dental hypersensitivity. ", "\u3010Long Battery Lifetime & Portable Design\u3011With the portable size and lightweight, the Powerful Lithium Battery can be used Continuously for 30 days once fully charged in just 4 hours. It brings great convenience to your travels. And the long battery life is supported by USB charging. ", "\u3010Compact & Portable\u3011Cordless and lightweight, these water teeth cleaner picks are ideal for travel, with 4 interchangeable jet tips (1 classic jet tip+1 tongue scraping tip+1 Periodontal tip+1 orthodontic tip\uff09included for your whole family. ", "\u3010Quality Assurance\u3011100% refund guarantee within 30 days and replacement guarantee within 12 months to ensure your 100% satisfaction. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A2L7TLR7YNMSII", "seller_name": "smalltrees", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09F9DZFKL", "category": "beauty", "query": "Dental Floss & Picks", "page": 74, "small_description_old": "About this item \u3010220ml Detachable& Cleanable Water Tank\u3011220ml water reservoir perfect for enough and uninterrupted oral dental water flosser without filling in the water again and again. The upgraded removable full-opening water tank allows you to thoroughly clean the limescale and dental plaque, which is impossible for common oral irrigators. \u30103 Modes & Rotatable Nozzles\u3011Normal, Gentle, and Pulse modes to meet various oral care needs. The 360\u00b0 rotatable nozzle design allows you to clean the areas that are difficult to reach easily and prevents tooth decay, dental plaque, dental calculus, and dental hypersensitivity. \u3010Long Battery Lifetime & Portable Design\u3011With the portable size and lightweight, the Powerful Lithium Battery can be used Continuously for 30 days once fully charged in just 4 hours. It brings great convenience to your travels. And the long battery life is supported by USB charging. \u3010Compact & Portable\u3011Cordless and lightweight, these water teeth cleaner picks are ideal for travel, with 4 interchangeable jet tips (1 classic jet tip+1 tongue scraping tip+1 Periodontal tip+1 orthodontic tip\uff09included for your whole family. \u3010Quality Assurance\u3011100% refund guarantee within 30 days and replacement guarantee within 12 months to ensure your 100% satisfaction."}, {"name": "Signature Design by Ashley Herringbone Jute Pouf, 20 x 20 In, Brown & Black", "product_information": {"Product Dimensions": "20 x 20 x 16.75 inches", "Item Weight": "4 pounds", "Department": "Ottomans", "Manufacturer": "Ashley Furniture", "ASIN": "B0166POJEU", "Item model number": "A1000438", "Customer Reviews": {"ratings_count": 315, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#944,305 in Home & Kitchen (See Top 100 in Home & Kitchen) #273 in Poufs"], "Is Discontinued By Manufacturer": "No", "Fabric Type": "Jute,polystyrene", "Finish Types": "Natural", "Material Care Instructions": "Spot clean", "Assembly Required": "Yes", "Batteries Required?": "No", "Included Components": "Item As Described"}, "brand": "Visit the Signature Design by Ashley Store", "brand_url": "https://www.amazon.com/stores/AshleyFurniture/page/9BD0FF61-A3F9-4233-B198-ED21F0E0B1AF?ref_=ast_bln", "full_description": "Versatile pouf is a seat, table and footrest in one. Herringbone-woven chevron pattern has timeless appeal. Arrange several around a coffee table for casual seating and impromptu meals.", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/61ikRl8cTcL.jpg", "https://m.media-amazon.com/images/I/51kyYpuBRAL.jpg", "https://m.media-amazon.com/images/I/51F2S5FozOL.jpg", "https://m.media-amazon.com/images/I/515OUOsl5xL.jpg", "https://m.media-amazon.com/images/I/31wEfl-2AxL.jpg", "https://m.media-amazon.com/images/I/61rCEdarPYL.jpg", "https://m.media-amazon.com/images/I/61lwMteKwoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Accent Furniture \u203a Poufs", "average_rating": 4.5, "small_description": ["CONTEMPORARY POUF OTTOMAN: Like a cross between a bean bag and traditional ottoman, this rectangular pouf is sensationally stylish, cozy and versatile ", "STURDY AND STRUCTURED: Dense polystyrene fill is supportive and holds its shape ", "NEUTRAL WOVEN JUTE: Add texture, charm and comfort to any space with this pouf's Herringbone-woven chevron pattern. This pouf has a zipper cover closure ", "GREAT FOR SMALLER SPACES: Great for dorm rooms and beyond, pouf measures 20\" W x 20\" D x 16.75\" H. May include false zipper. ", "INSTANT STYLE: Add a plush pouf and poof, you've instantly transformed your space ", "DIRECT FROM THE MANUFACTURER: Ashley Furniture goes the extra mile to package, protect and deliver your purchase in a timely manner ", "BUY WITH CONFIDENCE: Designed and manufactured by Ashley Furniture Industries. The trusted source for stylish furniture, lighting, rugs, accessories and mattresses. For every taste and budget "], "total_reviews": 315, "total_answered_questions": "", "model": "A1000438", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B06XG4K12M/ref=twister_B088TGKGPZ?_encoding=UTF8&psc=1", "value": "Abstract", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61IKoTegdbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0166POG48/ref=twister_B088TGKGPZ?_encoding=UTF8&psc=1", "value": "Charcoal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51hM83htaZL.jpg"}, {"is_selected": true, "url": null, "value": "Chevron", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61ikRl8cTcL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B0166POJEU", "category": "garden", "query": "Ottomans", "page": 207, "small_description_old": "About this item CONTEMPORARY POUF OTTOMAN: Like a cross between a bean bag and traditional ottoman, this rectangular pouf is sensationally stylish, cozy and versatile STURDY AND STRUCTURED: Dense polystyrene fill is supportive and holds its shape NEUTRAL WOVEN JUTE: Add texture, charm and comfort to any space with this pouf's Herringbone-woven chevron pattern. This pouf has a zipper cover closure GREAT FOR SMALLER SPACES: Great for dorm rooms and beyond, pouf measures 20\" W x 20\" D x 16.75\" H. May include false zipper. INSTANT STYLE: Add a plush pouf and poof, you've instantly transformed your space DIRECT FROM THE MANUFACTURER: Ashley Furniture goes the extra mile to package, protect and deliver your purchase in a timely manner BUY WITH CONFIDENCE: Designed and manufactured by Ashley Furniture Industries. The trusted source for stylish furniture, lighting, rugs, accessories and mattresses. For every taste and budget"}, {"name": "Epson Hd Base Transmitter Forg6Xxx Series Projectors", "product_information": {"Manufacturer": "\u200eEpson", "Brand": "\u200eEpson", "Item Weight": "\u200e1.9 pounds", "Product Dimensions": "\u200e13 x 6.25 x 3.5 inches", "Item model number": "\u200eV12H547020", "Is Discontinued By Manufacturer": "\u200eNo", "Number of Items": "\u200e1", "Manufacturer Part Number": "\u200eV12H547020", "ASIN": "B00JIKV6E2", "Best Sellers Rank": ["#3,867 in Video Projectors"], "Date First Available": "March 13, 2014"}, "brand": "Visit the Epson Store", "brand_url": "https://www.amazon.com/stores/Epson/page/938A6E01-68B6-4115-8369-91F0063B474B?ref_=ast_bln", "full_description": "The Epson HD BaseT Transmitter for Pro G 6xxx series projectors allows you to increase the reach of your projector controls over a longer distance. The Epson V12H547020 HD BaseT transmitter box is a companion piece to the Pro G 6xxx series. It features HDMI, LAN and RS-232 to output into a CAT-5/6 cable for easy installation. HD base transmitter for projector for all projection environments. Dimensions: 13\"H x 6.4\"W x 3.1\"D. Comes in black color. Pro G 6xxx series projector for quality presentation. Interfaces/ports: 1 x HDBaseT- RJ-45, 1 x RS-232, 1 x HDMI- 19 pin HDMI type A. External form factor enables greater outdoor applications. Wired connectivity technology for optimum usage. Three inputs featured for easy installation- HDMI, LAN, and RS-232 to output into a CAT-5/6 cable.", "pricing": "$448.72", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31axK8Es+5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Video Projectors", "average_rating": "", "small_description": ["Package Quantity: 1 ", "Excellent Quality. ", "Great Gift Idea. ", "Produced With The Highest Grade Materials "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eV12H547020", "customization_options": "", "seller_id": "AANSFONOCR8T3", "seller_name": "PCNation", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00JIKV6E2", "category": "electronics", "query": "Projectors", "page": 81, "small_description_old": "About this item\n \nPackage Quantity: 1 Excellent Quality. Great Gift Idea. Produced With The Highest Grade Materials"}, {"name": "Pez Candy, Inc. Pez Christmas Holiday Candy Dispenser: Polar Bear", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.77 x 2.44 x 1.65 inches; 1.45 Ounces", "UPC\n \u200f": "\u200e\n 659436691261", "Manufacturer\n \u200f": "\u200e\n Pez Candy, Inc.", "ASIN\n \u200f": "\u200e\n B09DXD6LLB", "Best Sellers Rank": "#317,336 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#5,413 in Hard Candy", "#5,413 in Hard Candy": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Pez Candy, Inc.", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Pez+Candy%2C+Inc.", "full_description": "", "pricing": "$6.79", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21BFR5Z53NL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Candy & Chocolate \u203a Hard Candy", "average_rating": 4.3, "small_description": ["unit_count_type Count ", "High Quality ", "High selling product "], "total_reviews": 7, "total_answered_questions": "", "customization_options": "", "seller_id": "A3HI707NKP05VS", "seller_name": "Page74Sales", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09DXD6LLB", "category": "grocery", "query": "Frozen", "page": 348, "small_description_old": "About this item Pez Christmas Holiday Candy Dispenser: Polar unit_count_type Count High Quality High selling product"}, {"name": "Flamingo Pink waterbird costume Gift Premium T-Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n September 3, 2020", "Manufacturer\n \u200f": "\u200e\n Funny Easy Lazy Last Minute Costumes", "ASIN\n \u200f": "\u200e\n B08HF132PN", "Best Sellers Rank": "#4,716,112 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#365,253 in Boys' Novelty T-Shirts #371,615 in Girls' Novelty T-Shirts #621,114 in Boys' Fashion", "#365,253 in Boys' Novelty T-Shirts": "", "#371,615 in Girls' Novelty T-Shirts": "", "#621,114 in Boys' Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Funny Easy Lazy Last Minute Costumes", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Funny+Easy+Lazy+Last+Minute+Costumes", "full_description": "Flamingo Pink waterbird costume Gift for women men kids boys girls youth This Flamingo Pink waterbird costume Gift item is designed by Funny Easy Lazy Last Minute Costumes.", "pricing": "$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A1rfiWsscnL.png", "https://m.media-amazon.com/images/I/41jI-nJp3RL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a T-Shirts", "average_rating": 5, "small_description": ["Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 58% Cotton, 42% Polyester ", "Imported ", "Machine Wash ", "Flamingo Pink waterbird costume Gift for women men kids boys girls youth ", "This premium t-shirt is made of lightweight fine jersey fabric ", "Fit: Men\u2019s fit runs small, size up for a looser fit. Women\u2019s fit is true to size, order usual size. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08HF132PN?_encoding=UTF8&customId=B07538P3S4", "value": "Women", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08HF132PN?_encoding=UTF8&customId=B0752XQS5X", "value": "Youth", "price_string": "", "price": 0, "image": null}], "Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B0752XQS4Q"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B0753667SC"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07536582B"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B0752XQW5B"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B0752XQTD8"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B0752XQW5Q"}, {"is_selected": false, "is_available": false, "value": "2T", "asin": "B07HPXJRB8"}, {"is_selected": false, "is_available": false, "value": "3T", "asin": "B07HPXFRNY"}, {"is_selected": false, "is_available": false, "value": "4T", "asin": "B0752XQS5X"}, {"is_selected": false, "is_available": false, "value": "X-Small", "asin": "B07537SGVT"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08HF132PN", "category": "fashion", "query": "Men's Dress Shirts", "page": 155, "small_description_old": "Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 58% Cotton, 42% Polyester Imported Machine Wash Flamingo Pink waterbird costume Gift for women men kids boys girls youth This premium t-shirt is made of lightweight fine jersey fabric Fit: Men\u2019s fit runs small, size up for a looser fit. Women\u2019s fit is true to size, order usual size."}, {"name": "DORCEV 5x4ft Under The Sea World Photography Backdrop Underwater World Theme Birthday Party Summer Holiday Party Background Underwater Coral Nature Reef Sunlight Wallpaper Sea Photo Studio Props", "product_information": {"Package Dimensions": "9 x 8 x 0.4 inches", "Item Weight": "8 ounces", "ASIN": "B07TB37SG5", "Item model number": "15x12NWH06289", "Date First Available": "June 19, 2019", "Manufacturer": "DORCEV", "Country of Origin": "China"}, "brand": "Brand: DORCEV", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=DORCEV", "full_description": "Size:5x4ft/1.5x1.2m ,the width is 1.5m, the length is 1.2m.Product material:This item using a series of high-tech digital production equipment carefully made digital pictures and inkjet printing.It is enough light, at least five years fastness and bright in colour. It\u2019s almost as thin as a pice of paper. It can fold , easy to carry. Usage:It\u2019s perfect for wedding, party, newborn, children, pet and product photography, as well as for television, video production and digital photography. Our these items also can used for housing decoration , you can sticker it on wall as a wallpaper ,it well let your room looks much nice and great .Special tips: Please understand that every computer screen is different, therefore, colors may vary slightly. We have done our best to give a color description of each material.All of pictures are taken from real items, but the color of them maybe slightly different from the pictures due to light conditions and shadow or brightness of your monitor.Different lighting will have different shooting effect,you can try to adjust the lights to make your photos better! Warm tips:According to rule of post office, length of item cannot be more than 1.2m.Items will be sent folded the package. If the product have creases we have three solutions. 1.Roll it up tightly\u00a0with\u00a0a\u00a0cylinder\u00a0for\u00a03-4\u00a0days,\u00a0then it\u00a0will\u00a0be\u00a0ok2.Heat\u00a0it\u00a0with\u00a0a\u00a0steam\u00a0iron\u00a0on\u00a0the\u00a0back,\u00a0then\u00a0it\u00a0will\u00a0be\u00a0smooth\u00a0again3.Stretch it and clamp it to a back drop stand for 3-4 days ,it also works.Dear customers:If you have any questions about our products, please feel free to contact us and I will do our best help you.Wish you have a good shopping!Thank you!", "pricing": "$15.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41oAXSSwdaL.jpg", "https://m.media-amazon.com/images/I/51y2Gg4PfPL.jpg", "https://m.media-amazon.com/images/I/51eIm6RuzYL.jpg", "https://m.media-amazon.com/images/I/41BRd4jFHNL.jpg", "https://m.media-amazon.com/images/I/613xx8epNtL.jpg", "https://m.media-amazon.com/images/I/51RUcNQWs7L.jpg", "https://m.media-amazon.com/images/I/51wgIHeUfTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Lighting & Studio \u203a Photo Studio \u203a Backgrounds", "average_rating": "", "small_description": ["Size:5x4ft/1.5x1.2m.If you want customized other size ,we can made it. ", "Material:High quality vinyl,It can fold, easy to carry,light-weight and portable,durable.high resolution, strong articulation ", "Usage: It\u2019s perfect for wedding, party, newborn, children, pet and still life photography, as well as for video production and digital photography. Also can make room wallpaper,wall decoration ", "Package:According\u00a0to\u00a0rule\u00a0of\u00a0post\u00a0office,\u00a0length\u00a0of\u00a0item\u00a0cannot\u00a0be\u00a0more\u00a0than\u00a01.2m.\u00a0Items\u00a0will\u00a0 be\u00a0sent\u00a0folded. We will fold it carefully,put it in a dust-free bag first, and then pack it in a bubble bag.Our packing is shockproof,compressive and waterproof. ", "Tips:We always put the customer as god as our purpose. If you have any needs and questions, please feel free to cantact us, we will give yoy a satisfactory answer as soon as possible. "], "total_reviews": "", "total_answered_questions": "", "model": "15x12NWH06289", "customization_options": "", "seller_id": "A150VF07F8ETL0", "seller_name": "leyiyidianzishangwu", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07TB37SG5", "category": "electronics", "query": "Underwater Photography", "page": 181, "small_description_old": "About this item\n \nSize:5x4ft/1.5x1.2m.If you want customized other size ,we can made it. Material:High quality vinyl,It can fold, easy to carry,light-weight and portable,durable.high resolution, strong articulation Usage: It\u2019s perfect for wedding, party, newborn, children, pet and still life photography, as well as for video production and digital photography. Also can make room wallpaper,wall decoration Package:According\u00a0to\u00a0rule\u00a0of\u00a0post\u00a0office,\u00a0length\u00a0of\u00a0item\u00a0cannot\u00a0be\u00a0more\u00a0than\u00a01.2m.\u00a0Items\u00a0will\u00a0 be\u00a0sent\u00a0folded. We will fold it carefully,put it in a dust-free bag first, and then pack it in a bubble bag.Our packing is shockproof,compressive and waterproof. Tips:We always put the customer as god as our purpose. If you have any needs and questions, please feel free to cantact us, we will give yoy a satisfactory answer as soon as possible."}, {"name": "Nike Women's Free Rn 5.0 2020 Running Shoes", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 9, 2020", "ASIN\n \u200f": "\u200e\n B08Q3VG8BY", "Best Sellers Rank": "#1,199,865 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#2,041 in Women's Road Running Shoes", "#2,041 in Women's Road Running Shoes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Nike", "brand_url": "https://www.amazon.com/Nike/b/ref=bl_sl_s_sh_web_2530006011?ie=UTF8&node=2530006011&field-lbr_brands_browse-bin=Nike", "full_description": "Nike Women's Free Rn 5.0 2020 Running Shoes", "pricing": "$109.99$144.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41hN9CkcBTL.jpg", "https://m.media-amazon.com/images/I/412zEzSFmbL.jpg", "https://m.media-amazon.com/images/I/41inQGoIjCL.jpg", "https://m.media-amazon.com/images/I/41hlbzGgTrL.jpg", "https://m.media-amazon.com/images/I/31+AUbU6MEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Athletic \u203a Running \u203a Road Running", "average_rating": 4.6, "small_description": [""], "total_reviews": 18, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "5", "asin": "B08Q3VG8BY"}, {"is_selected": false, "is_available": true, "value": "5.5", "asin": "B07Y85C8JZ"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B07Y856K3K"}, {"is_selected": false, "is_available": true, "value": "6.5", "asin": "B08MFFYTRC"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B08MFDHB6T"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B08MFDPNTW"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B08MFFGK5C"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B08MFD2GDZ"}], "Color": [{"is_selected": true, "url": null, "value": "Fire Pink Black Magic Ember 601", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hN9CkcBTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092ZX9TGJ/ref=twister_B08J7TXNSR", "value": "Multicolour (Champagne/Pink Glaze-barely Rose 600)", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/3144noB8yXS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07Y85L8PT/ref=twister_B08J7TXNSR", "value": "Black White Anthracite 001", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01pYgOepu-L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08MFFGK5C", "category": "fashion", "query": "Women's Fashion Sneakers", "page": 58, "small_description_old": ""}, {"name": "OLD SPICE High Endurance Antiperspirant Invisible Solid, Fresh, 3 Oz (Pack of 3)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 6 x 6 x 10 inches; 8.96 Ounces", "Manufacturer\n \u200f": "\u200e\n Procter & Gamble", "ASIN\n \u200f": "\u200e\n B006Y3IDMO", "Best Sellers Rank": "#54,651 in Health & Household (See Top 100 in Health & Household)#370 in Antiperspirant Deodorant", "#370 in Antiperspirant Deodorant": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Old Spice Store", "brand_url": "https://www.amazon.com/stores/OldSpice/page/341D1CE1-03AB-400B-A278-A262E2CE1E1E?ref_=ast_bln", "full_description": "Old Spice Invisible Solid Men's Antiperspirant and Deodorant reduces armpit sweat, goes on invisible, and stays feeling dry. High Endurance collection boosts your man-smell and prepares you for success.", "pricing": "$15.30", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41F-Bt0xeFL.jpg", "https://m.media-amazon.com/images/I/41BPhMiS68L.jpg", "https://m.media-amazon.com/images/I/31ZyR96gmeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Antiperspirant Deodorant", "average_rating": 4.7, "small_description": ["Old Spice Invisible Solid Men's Antiperspirant and Deodorant reduces armpit sweat, goes on invisible, and stays feeling dry ", "So easy to use you might accidentally put it on and only later realize your man-nificence ", "The masculine, citrus scent of success "], "total_reviews": 442, "total_answered_questions": 3, "customization_options": "", "seller_id": "A3P519DM70Q7JX", "seller_name": "Premium Household", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B006Y3IDMO", "category": "beauty", "query": "Deodorants & Antiperspirants", "page": 9, "small_description_old": "About this item Old Spice Invisible Solid Men's Antiperspirant and Deodorant reduces armpit sweat, goes on invisible, and stays feeling dry So easy to use you might accidentally put it on and only later realize your man-nificence The masculine, citrus scent of success"}, {"name": "Van Eli Laren Women's Oxford 10 C/D US White", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 13.2 x 8.1 x 5.1 inches; 1.9 Pounds", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 24, 2019", "ASIN\n \u200f": "\u200e\n B07N325S5H", "": ""}, "brand": "Brand: VANELi", "brand_url": "https://www.amazon.com/VANELi/b/ref=bl_sl_s_sh_web_2603116011?ie=UTF8&node=2603116011&field-lbr_brands_browse-bin=VANELi", "full_description": "*This sporty lace-up adds style-right flair to your everyday look with its rows of scalloped cutouts *Leather upper with contrasting underlay behind the cutouts *Removable cushioned footbed for generous comfort *Flexible molded rubber sole *1\" heel height", "pricing": "$64.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41OEbKpQYJL.jpg", "https://m.media-amazon.com/images/I/41saTq6TnfL.jpg", "https://m.media-amazon.com/images/I/31g2fWo1QuL.jpg", "https://m.media-amazon.com/images/I/41m22ZkdxLL.jpg", "https://m.media-amazon.com/images/I/41n9nBZgmHL.jpg", "https://m.media-amazon.com/images/I/41gJrgJWW9L.jpg", "https://m.media-amazon.com/images/I/41gJrgJWW9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Oxfords", "average_rating": "", "small_description": ["100% Leather ", "Rubber sole ", "This sporty lace-up adds style-right flair to your everyday look with its rows of scalloped cutouts ", "Leather upper with contrasting underlay behind the cutouts ", "Removable cushioned footbed for generous comfort ", "Flexible molded rubber sole ", "1\" heel height "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1LEM297LNF1FK", "seller_name": "ShoeMall", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07N325S5H", "category": "fashion", "query": "Women's Oxfords", "page": 29, "small_description_old": "100% Leather Rubber sole This sporty lace-up adds style-right flair to your everyday look with its rows of scalloped cutouts Leather upper with contrasting underlay behind the cutouts Removable cushioned footbed for generous comfort Flexible molded rubber sole 1\" heel height"}, {"name": "Toms of Maine Propolis and Myrrh Toothpaste Fennel - 5.5 oz - Case of 6", "product_information": {"Product Dimensions": "7.3 x 1.4 x 2.2 inches", "Item Weight": "6.4 ounces", "ASIN": "B00IKXU4OQ", "Item model number": "077326830741", "Customer Reviews": {"ratings_count": 5, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#599,612 in Health & Household (See Top 100 in Health & Household) #25,511 in Oral Care Products"], "Is Discontinued By Manufacturer": "No", "Other display features": "Wireless", "Manufacturer": "Tom s of Maine", "Date First Available": "July 1, 2013"}, "brand": "Visit the Tom's of Maine Store", "brand_url": "https://www.amazon.com/stores/TomsofMaine/page/61F44ACF-7090-4E49-9330-1C9076594552?ref_=ast_bln", "full_description": "Tom s of Maine Propolis and Myrrh Toothpaste Fennel Description:Propolis and myrrh leave your mouth naturally fresh!Propolis and myrrh are herbal resins we ve found promote a naturally clean, healthy-mouth feeling. Propolis and Myrrh toothpaste fights plaque with regular brushing, and we ve added xylitol for great taste!Fluoride-free formula: Some people do not want fluoride in their toothpaste. We produce this toothpaste without fluoride because we respect our customers diverse needs and interests.Helps prevent plaque buildup with regular brushing.", "pricing": "$53.56", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41fiAsXsU6L.jpg", "https://m.media-amazon.com/images/I/41UuK3floVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care", "average_rating": 5, "small_description": ["TP,PROP&MYRRH,FF,FENNEL "], "total_reviews": 5, "total_answered_questions": "", "model": "077326830741", "customization_options": "", "seller_id": "A3S3UA1JLT4HN5", "seller_name": "Heartland Mart", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00IKXU4OQ", "category": "beauty", "query": "Toothpaste", "page": 74, "small_description_old": "About this item TP,PROP&MYRRH,FF,FENNEL"}, {"name": "DenTek Kids Fun Flossers Wild Fruit | 75-Count Floss Picks", "product_information": {"Item Package Dimensions L x W x H": "\u200e6.1 x 5.5 x 2 inches", "Package Weight": "\u200e0.14 Kilograms", "Item Dimensions LxWxH": "\u200e6 x 7.7 x 0.7 inches", "Item Weight": "\u200e0.3 Pounds", "Brand Name": "\u200eDenTek", "Model Name": "\u200eDenTek Kids Fun Flossers", "Number of Items": "\u200e1", "Manufacturer": "\u200eDenTek", "Part Number": "\u200ePPAX1320880", "Size": "\u200e75 Count (Pack of 2)", "ASIN": "B01IADZ9LI", "Customer Reviews": {"ratings_count": 184, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#83,540 in Health & Household (See Top 100 in Health & Household) #350 in Dental Floss"], "Date First Available": "July 11, 2016"}, "brand": "Visit the DenTek Store", "brand_url": "https://www.amazon.com/stores/DenTek/page/310277E1-CB60-477B-9935-EACAC41D9125?ref_=ast_bln", "full_description": "", "pricing": "$16.20", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51y6khmZqhL.jpg", "https://m.media-amazon.com/images/I/51s0efk-vcL.jpg", "https://m.media-amazon.com/images/I/51PCGMiz9TL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Dental Floss & Picks \u203a Dental Floss", "average_rating": 4.8, "small_description": ["75-Count per pack. 2-Packs total DenTek helps you encourage flossing at an early age. ", "Small flosser head fits children\u2019s mouths just right. ", "Easy-to-grip handle tailored for child-size hands ", "Wild fruit flavor kids love. Advanced fluoride coating. "], "total_reviews": 184, "total_answered_questions": "", "customization_options": {"Size": null}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B01IADZ9LI", "category": "beauty", "query": "Dental Floss & Picks", "page": 7, "small_description_old": "About this item\n \n75-Count per pack. 2-Packs total DenTek helps you encourage flossing at an early age. Small flosser head fits children\u2019s mouths just right. Easy-to-grip handle tailored for child-size hands Wild fruit flavor kids love. Advanced fluoride coating."}, {"name": "LWLW High Waist Yoga Shorts for Women,Tummy Control Biker Shorts Exercise Workout Butt Lifting Tights Women's Short Pants", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 13, 2022", "Manufacturer\n \u200f": "\u200e\n LWLW", "ASIN\n \u200f": "\u200e\n B09QCNQ93T", "": ""}, "brand": "Brand: LWLW", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=LWLW", "full_description": "Shape your body:Multiple stretch and opaque fabrics allow for greater stretch to conform to the shape of your body. Sexy butt lift push up high waisted textured leggings and super cute creases give you a natural butt lift and make your butt look so pretty and juicy.Versatile Occasion:Soft, Silky,lightweight,super stretchy,dry fast. Breathable and Lightweight fabric. Perfect for workout, outdoor, yoga, running, fitness training, jogging, activities or just hanging out.It is designed to improve the female yoga fitness experience!Squat Proof:When you're doing exercise, these pants provide Max Comfort and Mobility, boosting your experience and efficiency.Sexy peach design:Heart-shaped design on the centerline of the buttocks, effectively lifting the buttocks to make the buttocks three-dimensional and full, and the beautiful buttocks are more sexy, creating your own peach buttocks\uff01The Sexy Scrunch Textured Bubble Booty Shaping leggings will accentuate the booty areas. Textured fabric hides cellulite and gives women a flattering look and feeling. With a high waisted elastic waistband,the butt push up scrunch pants have the function of tummy control.The compression pants can give you a slimming fit effect and give your butt a streamlined look like a Juicy peach. the legging contours your curves and streamlines the natural shape of your waist.The butt lifting compression pants are perfect fit extremely flattering,quick drying, moisture wicking, non-see-through, squat-proof, super stretchy, non-pilling and very comfortable and soft. It offer pretty comfy and confident feeling for women in the gym.", "pricing": "$13.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41zEYriIUmL.jpg", "https://m.media-amazon.com/images/I/41Mzt3ptdoL.jpg", "https://m.media-amazon.com/images/I/51f0KIJGiJL.jpg", "https://m.media-amazon.com/images/I/31jSbApm4RL.jpg", "https://m.media-amazon.com/images/I/312I1uJCGxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Leggings", "average_rating": "", "small_description": ["Made in USA or Imported ", "butt lifting leggings tik tok butt lift yoga pants fast delivery on 7-16days closure ", "\u3010Size Notice\u3011- Please kindly refer to the size chart showed in our image to ensure the body slimming fit. ", "\u3010Comfortable Fabrics\u3011- Our high waist yoga pants use 4-way stretch and opaque fabric, provide comfortable elastic support and completely cover the belly cellulite, suitable for various sports postures.light weight, super elasticity, abrasion-resistant and no pilling, no fading, squat resistant. ", "\u3010Butt Lift Leggings\u3011Womens sexy booty scrunch leggings,butt popping leggings,lifting yoga pants,workout running gym pants.With scrunch butt back,the butt lift textured leggings are designed to accentuate brazilian cheeky booty/buttock,offering better push up effect. ", "\u3010Style\u3011Brazilian Booty Enhance-Sexy butt lift push up high waisted leggings for women, lifting yoga pants,Textured Activewear ; gym shapewear tights, workout running pants, skinny pants booty scrunch leggings. cheeky buttocks, hips lifting athletic lined versital pants for ladies. ", "\u3010Stretchy\u3011the stretchy material can prevent it from ripping easily when doing squats,allow you to move freely and maximize the comfy during exercise.Helps you sweat more and accelerate calorie burning,firm cincher your thighs but not stick to your body.Pair it with sports suits make you more attractive in the gym and outdoor activities. ", "\u3010Suitable Occasion\u3011- Sports leggings are perfect for all kinds occasions, from yoga, pilates,zumba, ballet, to a barre or spin class, sport, gym, trainning, dalily exercise (climbing, runing, jogging, cycling, hiking,boxing), fitness, any type of workout,or everyday use\uff01 "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QCNQ93T/ref=twister_B09QCLRTJD", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Bao429rML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCNBDS5/ref=twister_B09QCLRTJD", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ktmkxsk1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCNGKLF/ref=twister_B09QCLRTJD", "value": "Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41150W6MplL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCP1VW5/ref=twister_B09QCLRTJD", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41h0Rf+mqVL.jpg"}, {"is_selected": true, "url": null, "value": "Wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zEYriIUmL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09QCP4579"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09QCNTDRM"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09QCMXRWF"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09QCNY5H9"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09QCMX468"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09QCMV1HJ"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QCP4579", "category": "fashion", "query": "Women's Shorts", "page": 155, "small_description_old": "Made in USA or Imported butt lifting leggings tik tok butt lift yoga pants fast delivery on 7-16days closure \u3010Size Notice\u3011- Please kindly refer to the size chart showed in our image to ensure the body slimming fit. \u3010Comfortable Fabrics\u3011- Our high waist yoga pants use 4-way stretch and opaque fabric, provide comfortable elastic support and completely cover the belly cellulite, suitable for various sports postures.light weight, super elasticity, abrasion-resistant and no pilling, no fading, squat resistant. \u3010Butt Lift Leggings\u3011Womens sexy booty scrunch leggings,butt popping leggings,lifting yoga pants,workout running gym pants.With scrunch butt back,the butt lift textured leggings are designed to accentuate brazilian cheeky booty/buttock,offering better push up effect. \u3010Style\u3011Brazilian Booty Enhance-Sexy butt lift push up high waisted leggings for women, lifting yoga pants,Textured Activewear ; gym shapewear tights, workout running pants, skinny pants booty scrunch leggings. cheeky buttocks, hips lifting athletic lined versital pants for ladies. \u3010Stretchy\u3011the stretchy material can prevent it from ripping easily when doing squats,allow you to move freely and maximize the comfy during exercise.Helps you sweat more and accelerate calorie burning,firm cincher your thighs but not stick to your body.Pair it with sports suits make you more attractive in the gym and outdoor activities. \u3010Suitable Occasion\u3011- Sports leggings are perfect for all kinds occasions, from yoga, pilates,zumba, ballet, to a barre or spin class, sport, gym, trainning, dalily exercise (climbing, runing, jogging, cycling, hiking,boxing), fitness, any type of workout,or everyday use\uff01"}, {"name": "Cain 48\" Round Breakroom Table- Grey", "product_information": {"Item Weight": "\u200e76 pounds", "Product Dimensions": "\u200e48 x 48 x 30 inches", "Item model number": "\u200eTB48RNDGY", "ASIN": "B00D43URUS", "Customer Reviews": {"ratings_count": 2, "stars": "3.9 out of 5 stars"}, "Best Sellers Rank": ["#359,581 in Home & Kitchen (See Top 100 in Home & Kitchen) #149 in Kitchen & Dining Room Tables"], "Date First Available": "August 27, 2014"}, "brand": "Visit the Regency Store", "brand_url": "https://www.amazon.com/stores/Regency/page/06C1BD29-E7D0-4A31-BB9E-88726BEF13D5?ref_=ast_bln", "full_description": "The 48\" round table top is constructed of thermal fused melamine that protects against stains, burns, bumps and bruises. A black PVC edge adds extra protection. The Cain x-base is constructed of a black tubular steel post and solid steel legs with a textured powder coat finish. The table feet feature hidden adjustable glides that make this table ideal for training rooms, lunch rooms, restaurants, cafes, or small conference rooms.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31qm5vqMXeL.jpg", "https://m.media-amazon.com/images/I/41CaYL8SE1L.jpg", "https://m.media-amazon.com/images/I/31EQkeYo8wL.jpg", "https://m.media-amazon.com/images/I/A1DwDx5qPDL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Dining Room Furniture \u203a Tables", "average_rating": 3.9, "small_description": ["Table top is constructed of 1\" thick thermal fused melamine ", "Table top finished with a black t-mold edge band ", "Cast metal x-base "], "total_reviews": 2, "total_answered_questions": "", "model": "\u200eTB48RNDGY", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B00D43URUS", "category": "garden", "query": "Dining Tables", "page": 37, "small_description_old": "About this item Table top is constructed of 1\" thick thermal fused melamine Table top finished with a black t-mold edge band Cast metal x-base \n \u203a See more product details"}, {"name": "Lilly Pulitzer PJ Knit Shorts Multi Seaside Carnivale Knit MD", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.69 x 9.57 x 1.22 inches; 4.16 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n September 21, 2021", "ASIN\n \u200f": "\u200e\n B09GRCNRHH", "": ""}, "brand": "Visit the Lilly Pulitzer Store", "brand_url": "https://www.amazon.com/stores/LillyPulitzer/page/A6E50AF2-EE1F-4AF3-B889-8D5A8C2C4400?ref_=ast_bln", "full_description": "", "pricing": "$48.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31PF1-9jlxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Sleep & Lounge \u203a Bottoms", "average_rating": "", "small_description": ["Made in the USA or Imported "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Zappos", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09GRCNRHH", "category": "fashion", "query": "Women's Shorts", "page": 78, "small_description_old": "Made in the USA or Imported"}, {"name": "Supersmile Extra White Professional Teeth Whitening Toothpaste - Clinically Proven to Remove Stains & Whiten Teeth Up to 9 Shades - No Sensitivity (Triple Mint, 7 Oz), 7 oz.", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3 x 2 x 7 inches; 7.83 Ounces", "Item model number\n \u200f": "\u200e\n ede1-f846", "UPC\n \u200f": "\u200e\n 036179004297", "Manufacturer\n \u200f": "\u200e\n AmazonUs/ROCQK", "ASIN\n \u200f": "\u200e\n B08DZ2593Y", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#113,867 in Health & Household (See Top 100 in Health & Household)#1,018 in Toothpaste", "#1,018 in Toothpaste": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$55.00", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31llFRyqLCL.jpg", "https://m.media-amazon.com/images/I/4183cjDFtGL.jpg", "https://m.media-amazon.com/images/I/41P79GCDO1L.jpg", "https://m.media-amazon.com/images/I/41G4qjrkb2L.jpg", "https://m.media-amazon.com/images/I/41ufQmjPSTL.jpg", "https://m.media-amazon.com/images/I/41BDyAeet0L.jpg", "https://m.media-amazon.com/images/I/913BeZapqdL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": 4.3, "small_description": [""], "total_reviews": 179, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08DZ2593Y", "category": "beauty", "query": "Toothpaste", "page": 51, "small_description_old": ""}, {"name": "7pcs Hair Conditioner For Damaged Dry Hair, Hair Mask Repairing Hair Deep Conditioner Conditioning Treatment for Damaged Hair", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.69 x 2.76 x 2.36 inches; 0.4 Ounces", "Manufacturer\n \u200f": "\u200e\n Yinhing", "ASIN\n \u200f": "\u200e\n B09FYBZNQL", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Visit the Yinhing Store", "brand_url": "https://www.amazon.com/stores/Yinhing/page/25509F85-CA75-451A-B0DA-C2DED4DA4161?ref_=ast_bln", "full_description": "How to Use: Step1:\u00a0After\u00a0shampooing,\u00a0wipe\u00a0off\u00a0the\u00a0water\u00a0and\u00a0apply\u00a0the\u00a0hair\u00a0mask\u00a0evenly\u00a0on\u00a0the\u00a0middle\u00a0of\u00a0hair\u00a0to\u00a0tips\u00a0of\u00a0the\u00a0hair.\u00a0It\u00a0can\u00a0be\u00a0applied\u00a0to\u00a0dry\u00a0and\u00a0frizzy\u00a0areas\u00a0repeatedly; Step2:\u00a0No\u00a0need\u00a0to\u00a0stay\u00a0and\u00a0wait,\u00a0just\u00a0rinse\u00a0with\u00a0water\u00a0directly; TIPS:\u00a0can\u00a0be\u00a0used\u00a02\u20113\u00a0times\u00a0a\u00a0week\u00a0(each\u00a0tablet\u00a0can\u00a0be\u00a0used\u00a02\u00a0times) Specification: Item Type: Hair Care Serum Shelf Life: 3 Years Net Content: 12g/0.4oz x 7pcs Package List: 7 x Hair Care Mask", "pricing": "$11.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41FxoGc4XrL.jpg", "https://m.media-amazon.com/images/I/4168xlXA3oL.jpg", "https://m.media-amazon.com/images/I/313H9hXt9qL.jpg", "https://m.media-amazon.com/images/I/21l1l+-QR5L.jpg", "https://m.media-amazon.com/images/I/41q8cHNWkAL.jpg", "https://m.media-amazon.com/images/I/31mLZUXoVJL.jpg", "https://m.media-amazon.com/images/I/41uCHf3maxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care", "average_rating": "", "small_description": ["HAIR: Instantly straightens, repairs, conditions, and strengthens the hair using an intense conditioning remedy which restores vitality by repairing the hair. The amazing results will leave hair elastic, flexible, and soft ", "SIMPLE & EFFECTIVE- Compared with other haircare prducts or going to Salon which spend a long time,our keratin care will improve your hair's condition effectively just in 3 minutes.With a rarely cost,make you have silky, reliable,healthy and instant luxury Salon perfect hair ", "DEEP MOISTURIZING: Nourishing, make your hair no longer dry and yellow. Perfect for repairing dyeing and perming, strengthen hair toughness and elasticity. Reduce the fluffiness of hair ", "FOR YOUR BEAUTY- Make you have a flawless hair, that is our of struggle.Get instant results after use! Do not hesitate to contact us if you have any questions,we will answer as soon as possible, and do our best to help you ", "Convenient And Quick Hair Care : Repair damaged hair to make it soft, no need to steam, can be washed directly, more convenient to use quickly. Damaged hair treatment repairing provides restoration and lasting protection from drying out, leaving hair fabulously healthy and easy to manage. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A33C71AULLNI2I", "seller_name": "Semme", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09FYBZNQL", "category": "beauty", "query": "Hair Masks", "page": 166, "small_description_old": "About this item HAIR: Instantly straightens, repairs, conditions, and strengthens the hair using an intense conditioning remedy which restores vitality by repairing the hair. The amazing results will leave hair elastic, flexible, and soft SIMPLE & EFFECTIVE- Compared with other haircare prducts or going to Salon which spend a long time,our keratin care will improve your hair's condition effectively just in 3 minutes.With a rarely cost,make you have silky, reliable,healthy and instant luxury Salon perfect hair DEEP MOISTURIZING: Nourishing, make your hair no longer dry and yellow. Perfect for repairing dyeing and perming, strengthen hair toughness and elasticity. Reduce the fluffiness of hair FOR YOUR BEAUTY- Make you have a flawless hair, that is our of struggle.Get instant results after use! Do not hesitate to contact us if you have any questions,we will answer as soon as possible, and do our best to help you Convenient And Quick Hair Care : Repair damaged hair to make it soft, no need to steam, can be washed directly, more convenient to use quickly. Damaged hair treatment repairing provides restoration and lasting protection from drying out, leaving hair fabulously healthy and easy to manage."}, {"name": "CLARKS Privo Mens Riker, Black Suede, Size", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n August 21, 2020", "ASIN\n \u200f": "\u200e\n B08GGJH8V1", "": ""}, "brand": "Visit the Clarks Store", "brand_url": "https://www.amazon.com/stores/Clarks/page/6E7F4396-6004-497C-B702-21B18368E819?ref_=ast_bln", "full_description": "", "pricing": "$99.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/11yf4WPkqfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Loafers & Slip-Ons", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": null, "Color": null}, "seller_id": "A3ORKDS26DU9YX", "seller_name": "Sole Comfort Footwear", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B005B75PDO", "category": "fashion", "query": "Men's Loafers & Slip-Ons", "page": 66, "small_description_old": "Suede sole"}, {"name": "Fishouflage Ladies Hoodie - Women's Fishing Sweatshirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.98 x 10.91 x 2.44 inches; 1.12 Pounds", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 28, 2021", "ASIN\n \u200f": "\u200e\n B09JX2HJDS", "Best Sellers Rank": "#786,285 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#2,651 in Women's Cricket Clothing #5,405 in Women's Fashion Hoodies & Sweatshirts #5,941 in Women's Volleyball Clothing", "#2,651 in Women's Cricket Clothing": "", "#5,405 in Women's Fashion Hoodies & Sweatshirts": "", "#5,941 in Women's Volleyball Clothing": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Fishouflage Store", "brand_url": "https://www.amazon.com/stores/Fishouflage/page/7608EC7F-08B7-4FF1-8473-09305D654BFA?ref_=ast_bln", "full_description": "Our Best Performance Hoodie ever. From morning coffee to last cast, our perfect-weight, 100% performance interlock fleece is super comfortable. Brushed interior for softness. Relaxed fit with a slight, figure-flattering taper while still feeling roomy. Easy-wearing, 3-piece drawstring hood. Double-needle tailoring. Self-cuff and waistband. Satisfaction guaranteed.", "pricing": "$69.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51hoVt5XmRL.jpg", "https://m.media-amazon.com/images/I/51xu8p3agwL.jpg", "https://m.media-amazon.com/images/I/61SghJSkd3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Hoodies", "average_rating": 5, "small_description": ["Comfortable 100% Performance Interlock Fleece Fishing Hoodie with Brushed Interior (Perfect for on and off the water) ", "Relaxed, Easy-Wearing Casual Fit (With Slight, Figure Flattering Taper) ", "3-piece Hood, Double-Needle Tailoring, and popular Self Cuff and Waistband ", "Advanced Moisture-Wicking (Keeps You Dry), UPF 40+ Sun Protection (Keeps You Safe) ", "Our Most Popular Ladies Bass Fishing Gift - they'll love this Pullover Hoodie! "], "total_reviews": 4, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09KM7X1G4"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09KMBH727"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09KM8V9L2"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09KMBH4V4"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JX2HJDS/ref=twister_B09QK3GVKK", "value": "Bass Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51fzCFjpA4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KMD8N15/ref=twister_B09QK3GVKK", "value": "Trout Melon", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51s9GKUNEtL.jpg"}, {"is_selected": true, "url": null, "value": "Walleye Melon", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51hoVt5XmRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KMDFN84/ref=twister_B09QK3GVKK", "value": "Crappie Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/518sr-pAXuL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09KM7X1G4", "category": "fashion", "query": "Women's Fashion Hoodies & Sweatshirts", "page": 153, "small_description_old": "Comfortable 100% Performance Interlock Fleece Fishing Hoodie with Brushed Interior (Perfect for on and off the water) Relaxed, Easy-Wearing Casual Fit (With Slight, Figure Flattering Taper) 3-piece Hood, Double-Needle Tailoring, and popular Self Cuff and Waistband Advanced Moisture-Wicking (Keeps You Dry), UPF 40+ Sun Protection (Keeps You Safe) Our Most Popular Ladies Bass Fishing Gift - they'll love this Pullover Hoodie!"}, {"name": "Obagi Medical 360 System, 3 Piece Kit. Includes: Exfoliating Face Cleanser, HydraFactor Broad Spectrum SPF 30 Sunscreen, Retinol Moisturizer Cream for Face. Pack of 1", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.7 x 6.6 x 6.75 inches; 11.99 Ounces", "Item model number\n \u200f": "\u200e\n SG_B01LWI2TLG_US", "UPC\n \u200f": "\u200e\n 362032580883", "Manufacturer\n \u200f": "\u200e\n Obagi Medical", "ASIN\n \u200f": "\u200e\n B01LWI2TLG", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#163,385 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,753 in Facial Cleansing Washes", "#1,753 in Facial Cleansing Washes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$153.00", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/31Trp4dR0bS.jpg", "https://m.media-amazon.com/images/I/41BmfY96WlS.jpg", "https://m.media-amazon.com/images/I/31XA3+-YtcS.jpg", "https://m.media-amazon.com/images/I/51TTa-MCliS.jpg", "https://m.media-amazon.com/images/I/51351DrPGBS.jpg", "https://m.media-amazon.com/images/I/41HXLJXgpWS.jpg", "https://m.media-amazon.com/images/I/41B9T3Nc-BL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Cleansers \u203a Washes", "average_rating": 4.5, "small_description": [""], "total_reviews": 140, "total_answered_questions": 9, "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01LWI2TLG", "category": "beauty", "query": "Skin Care Sets & Kits", "page": 6, "small_description_old": ""}, {"name": "Wahson Cute Faux Fur Task Chair with Wheels, Comfy Sherpa Fuzzy Swivel Desk Chair Armless, for Adults and Kids, Living Room, Bedroom, Vanity, Home Office, Grey", "product_information": {"Product Dimensions": "24.4 x 21.7 x 31.9 inches", "Manufacturer": "wahson", "ASIN": "B08MQF4FV1", "Country of Origin": "China", "Customer Reviews": {"ratings_count": 104, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#550,592 in Home & Kitchen (See Top 100 in Home & Kitchen) #94 in Kids' Desk Chairs"], "Date First Available": "November 4, 2020"}, "brand": "Visit the Wahson Store", "brand_url": "https://www.amazon.com/stores/Wahson/page/2C01D99E-8F2B-4AEB-A48F-2FB0ABDC86F5?ref_=ast_bln", "full_description": "", "pricing": "$139.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41x44ytxRyL.jpg", "https://m.media-amazon.com/images/I/41VjVAIQVGL.jpg", "https://m.media-amazon.com/images/I/41h4HEJlmHL.jpg", "https://m.media-amazon.com/images/I/41VDxudt6fL.jpg", "https://m.media-amazon.com/images/I/41+n4A71pvL.jpg", "https://m.media-amazon.com/images/I/41Ru7VoEZtL.jpg", "https://m.media-amazon.com/images/I/41WfWOFJxKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Kids' Furniture \u203a Chairs & Seats \u203a Desk Chairs", "average_rating": 4.6, "small_description": ["This Comfy desk chair with wheels and low back support, is great for adults, teenagers and kids (Age 6+), as a great home office chair, vanity chair or study chair. ", "SEPCS: Seat dimensions: 25.6\u201c W X 17.3 \u201c D. Adjustable seat height ranges from 18.1\u2019\u2019 to 2.8\u2019\u2019. 360-degree swivel. Rolls smoothly. ", "COMPONENTS: Soft to touch faux fur fabric upholstery. Sturdy metal pneumatic and white base. ", "SAFTEY ASSURED: 22 \u2018\u2019 large base and stable gas lift ensures no risk of tipping over even at highest position. ", "Furniture upholstered with long faux fur fabric sheds a bit. Use a damp cloth, a soft brush, or a vacuum cleaner (in gentle mode), to remove long hairs before use. "], "total_reviews": 104, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "3018 White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41x44ytxRyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08WYGQXJW/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "8196 Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41F0ZAKsVKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08P7LDSGK/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "Bunny Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Mz0W7rMmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08P7PPMV8/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "Flamingo Whtie", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41prWGuDCvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08MQ8STP8/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41kFJbpXI-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08P7MNJSL/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "Kitty Leopard", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tqvKG+sTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08P7MH21Y/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "Kitty Lilac", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41lCG3vSGAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B091TQSHXJ/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "Pastel, Chrome Base", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41C4RTWJvLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B091TNNG9H/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "Pastel, White Base", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41s8enBX2AL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089Y1NDM1/ref=twister_B08MPP8R95?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31R92D7YkhL.jpg"}]}, "seller_id": "AAMJXZOGOCTT7", "seller_name": "Wahson", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08MQF4FV1", "category": "garden", "query": "Vanities", "page": 129, "small_description_old": "About this item\n \nThis Comfy desk chair with wheels and low back support, is great for adults, teenagers and kids (Age 6+), as a great home office chair, vanity chair or study chair. SEPCS: Seat dimensions: 25.6\u201c W X 17.3 \u201c D. Adjustable seat height ranges from 18.1\u2019\u2019 to 2.8\u2019\u2019. 360-degree swivel. Rolls smoothly. COMPONENTS: Soft to touch faux fur fabric upholstery. Sturdy metal pneumatic and white base. SAFTEY ASSURED: 22 \u2018\u2019 large base and stable gas lift ensures no risk of tipping over even at highest position. Furniture upholstered with long faux fur fabric sheds a bit. Use a damp cloth, a soft brush, or a vacuum cleaner (in gentle mode), to remove long hairs before use."}, {"name": "Wood USB C Headphones Hi-Fi Stereo Bass Headphones Wired with Mic Volume Control in-Ear Earbuds for Samsung Galaxy S22 Ultra Z Flip 3 Fold 2 S21 S20 FE,OnePlus 10 Pro,iPad Mini Pro Air,Pixel 6 Pro 5G", "product_information": {"Product Dimensions": "0.39 x 0.24 x 3.78 inches", "Item Weight": "1.5 ounces", "ASIN": "B0973XVPCD", "Item model number": "Jelanry00530", "Customer Reviews": {"ratings_count": 20, "stars": "2.7 out of 5 stars"}, "Best Sellers Rank": ["#12,705 in Earbud & In-Ear Headphones"], "Date First Available": "June 17, 2021", "Department": "Unisex-adult", "Manufacturer": "Jelanry"}, "brand": "Visit the Jelanry Store", "brand_url": "https://www.amazon.com/stores/Jelanry/page/790B6088-EC99-4164-9410-3770D251AF0F?ref_=ast_bln", "full_description": "", "pricing": "$10.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/519wJWhyxpS.jpg", "https://m.media-amazon.com/images/I/51a+locnxgS.jpg", "https://m.media-amazon.com/images/I/41y7MH+TY5S.jpg", "https://m.media-amazon.com/images/I/41yfnTx7zCS.jpg", "https://m.media-amazon.com/images/I/51QXDz-aXUS.jpg", "https://m.media-amazon.com/images/I/51--+8-c+BS.jpg", "https://m.media-amazon.com/images/I/51LiP5Ly0yS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Headphones \u203a Earbud Headphones", "average_rating": 2.7, "small_description": ["\u3010USB C Harphone Wide Compatibility\u3011Perfect for USB Type C Smartphone, Compatible with Samsung S22/S22+/S22 Ultra/S21 FE/Z Flip 3/Fold 3/S21+/S21 Ultra/Note10/Note20/S20/S20 FE/Galaxy Tab, Oneplus 10 Pro/9 Pro/9/8/8T/8 Pro/7T Pro/7T/7 Pro/6T/Nord, Google Pixel 6/6 Pro/5/4/4XL/3/3 XL/2/2 XL,Huawei P30 Pro/Mate 20,for iPad mini 2021/ iPad Pro (2nd gen)/ iPad Pro (3/4th gen)/ iPad Air 4th gen, for MacBook Pro 2021,Mac,Laptops, LG, HTC, Moto Z etc. ", "\u3010Excellent Sound Quality & Comfortable\u3011Jelanry USB C Earbuds Noise Isolating Design.Complete with innovative sound isolation technology, these in ear headphones have been carefully crafted to keep unwanted surrounding noise to a minimum. Eliminating distraction, this earphone provide a truly immersive experience ", "\u3010With Remote Control & Mic\u3011 Allow you to play/pause songs, skip next/previous song without picking up your phone, easily access to volume control during usage; The high-quality microphone which can hand free calling, allow you to easily answer/end calls calls ", "\u3010Quality USB C Earphone\u3011Unique wooden earphone shell; Metal-plated connectors, this greatly reduce the phenomenon of poor contact, Stretch resistant, long-lasting; USB C Earbuds 1.2 meters length, got through 5000+ bend bears test, which is durable for daily usage. ", "\u3010What You Get\u30111 x USB C Headphone; 1 x Portable Storage Box; 2 Pairs Earphone Extra Replacement Tips. Jelanry provide 100% Satisfied Customer Service, 6 months worry-free new replacement. Buy it NOW! "], "total_reviews": 20, "total_answered_questions": 5, "model": "Jelanry00530", "customization_options": "", "seller_id": "AW8IJ6WKKXIYT", "seller_name": "JELANRY", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0973XVPCD", "category": "electronics", "query": "Headphones", "page": 370, "small_description_old": "About this item\n \n\u3010USB C Harphone Wide Compatibility\u3011Perfect for USB Type C Smartphone, Compatible with Samsung S22/S22+/S22 Ultra/S21 FE/Z Flip 3/Fold 3/S21+/S21 Ultra/Note10/Note20/S20/S20 FE/Galaxy Tab, Oneplus 10 Pro/9 Pro/9/8/8T/8 Pro/7T Pro/7T/7 Pro/6T/Nord, Google Pixel 6/6 Pro/5/4/4XL/3/3 XL/2/2 XL,Huawei P30 Pro/Mate 20,for iPad mini 2021/ iPad Pro (2nd gen)/ iPad Pro (3/4th gen)/ iPad Air 4th gen, for MacBook Pro 2021,Mac,Laptops, LG, HTC, Moto Z etc. \u3010Excellent Sound Quality & Comfortable\u3011Jelanry USB C Earbuds Noise Isolating Design.Complete with innovative sound isolation technology, these in ear headphones have been carefully crafted to keep unwanted surrounding noise to a minimum. Eliminating distraction, this earphone provide a truly immersive experience \u3010With Remote Control & Mic\u3011 Allow you to play/pause songs, skip next/previous song without picking up your phone, easily access to volume control during usage; The high-quality microphone which can hand free calling, allow you to easily answer/end calls calls \u3010Quality USB C Earphone\u3011Unique wooden earphone shell; Metal-plated connectors, this greatly reduce the phenomenon of poor contact, Stretch resistant, long-lasting; USB C Earbuds 1.2 meters length, got through 5000+ bend bears test, which is durable for daily usage. \u3010What You Get\u30111 x USB C Headphone; 1 x Portable Storage Box; 2 Pairs Earphone Extra Replacement Tips. Jelanry provide 100% Satisfied Customer Service, 6 months worry-free new replacement. Buy it NOW!"}, {"name": "BONEW Te~ETH WHI~tening System Ble~Aching Light Lamp Mobile Digital Display Te~ETH Ble~Aching WHI~tening Machine MD887", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 26.3 x 18 x 7.5 inches; 17.02 Pounds", "Date First Available\n \u200f": "\u200e\n November 13, 2018", "Manufacturer\n \u200f": "\u200e\n BONEW", "ASIN\n \u200f": "\u200e\n B07KHWY7YT", "Best Sellers Rank": "#258,737 in Health & Household (See Top 100 in Health & Household)#59 in Teeth Whitening LED Accelerator Lights", "#59 in Teeth Whitening LED Accelerator Lights": ""}, "brand": "Brand: BONEW", "brand_url": "https://www.amazon.com/BONEW/b/ref=bl_dp_s_web_14484850011?ie=UTF8&node=14484850011&field-lbr_brands_browse-bin=BONEW", "full_description": "Sepcitifcations: * Broad Spectrum: 430nm~490nm (Blue Light\uff09& 620nm~640nm(Red Light) 380nm~400nm(Purple Light\uff09 * Voltage: AC 100V~240V * Light source: 4~5W/pc(Purple Light\uff09\uff1b2~3W/pc(Red Light); 1W/pc(Purple Light). * Gross Weight: 4.9kgs. * Total Arm Length: 90cm. * Total Height: 120cm. accessories: * Host x 1 pc * Feet x 1 set * Goggle x 2 pcs * Touch pen x 1 pc * Sheath x 20 pcs * Power cable x 1 pc * User manual x 1 pc * Install Tool x 1 set", "pricing": "$285.88", "list_price": "", "availability_quantity": 11, "availability_status": "Only 11 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31szND3QY-L.jpg", "https://m.media-amazon.com/images/I/41KRUrOo9eL.jpg", "https://m.media-amazon.com/images/I/41I4ASX4SxL.jpg", "https://m.media-amazon.com/images/I/310eK8M4LEL.jpg", "https://m.media-amazon.com/images/I/51O+Flc-jdL.jpg", "https://m.media-amazon.com/images/I/41PefwJXFrL.jpg", "https://m.media-amazon.com/images/I/41hVqUywmaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Teeth Whitening \u203a LED Accelerator Lights", "average_rating": "", "small_description": ["Four light source output selection: blue, red, blue + red, blue + purple. ", "High efficiency wall conjoined sliding structural design, adjust angle freely and convenient to use. ", "The user can select needed time according to desired treatment, time adjustment range from1 to 30 minutes.. ", "Work time counting function, comes with electronic lock, work time could clear by that lock for user . ", "In the case of not working, the machine will go to sleep automatically after 60 se~conds. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A30DRPMWBZ1ESY", "seller_name": "BoNew", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07KHWY7YT", "category": "beauty", "query": "Teeth Whitening", "page": 9, "small_description_old": "About this item\n \nFour light source output selection: blue, red, blue + red, blue + purple. High efficiency wall conjoined sliding structural design, adjust angle freely and convenient to use. The user can select needed time according to desired treatment, time adjustment range from1 to 30 minutes.. Work time counting function, comes with electronic lock, work time could clear by that lock for user . In the case of not working, the machine will go to sleep automatically after 60 se~conds."}, {"name": "KKG Kappa Kappa Gamma Pink Letter Sorority Crewneck Sweatshirt", "product_information": {"Item model number\n \u200f": "\u200e\n 3kappakappagamma18000whiteS", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n September 11, 2020", "Manufacturer\n \u200f": "\u200e\n Generic", "ASIN\n \u200f": "\u200e\n B08HW24C55", "Best Sellers Rank": "#3,925,333 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#12,984 in Women's Cricket Clothing #23,809 in Women's Volleyball Clothing #27,233 in Women's Fashion Hoodies & Sweatshirts", "#12,984 in Women's Cricket Clothing": "", "#23,809 in Women's Volleyball Clothing": "", "#27,233 in Women's Fashion Hoodies & Sweatshirts": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_sl_s_ap_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "", "pricing": "$29.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/314FAh-8exL.jpg", "https://m.media-amazon.com/images/I/41Wz7RLJdiL.jpg", "https://m.media-amazon.com/images/I/3145vdNjk7L.jpg", "https://m.media-amazon.com/images/I/61+fyX50y5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Fashion Hoodies & Sweatshirts", "average_rating": "", "small_description": ["Our Award-Winning Kite and Crest threads are 100% designed, printed, pressed, and shipped (next business day!) to you from our Kansas City boutique. ", "This Kappa Kappa Gamma sweatshirt is printed on a Gildan 125/125 blend pre-shrunk crewneck. Our crewnecks are a soft wash blend with double needle stitching at the shoulder, armhole, neck, waistband, and cuff to provide a comfy and relaxed fit. Our sorority sweatshirts run true to size but size up for a slouchier fit. ", "We print all our threads with 100% eco-friendly water based ink. This means our ink is PVC free, safer to wear, and more sustainable for the environment. When printed, the ink becomes part of the fabric and the print feels as soft as the thread it's printed on. This makes all our garments both incredibly breathable and super long lasting! ", "All our Kappa apparel is made to order and ships same or next business day. We ship USPS and delivery time is typically 1-4 business days. ", "Kite and Crest is an officially licensed vendor for sorority and fraternity apparel. We are licensed to print Kappa Kappa Gamma shirts, Kappa sweatshirts, Kappa Kappa Gamma long sleeve shirts, KKG tee's and other Kappa Kappa Gamma apparel. We are also licensed to print gear for over 125 other greek organizations such as sorority shirts, sorority sweatshirts, sorority crewnecks, sorority long sleeve shirts, sorority tee's and other sorority apparel. This makes a great Kappa Kappa Gamma gift and "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1WTYFYCWDB5T", "seller_name": "Kite and Crest", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08HW24C55", "category": "fashion", "query": "Women's Fashion Hoodies & Sweatshirts", "page": 100, "small_description_old": "Our Award-Winning Kite and Crest threads are 100% designed, printed, pressed, and shipped (next business day!) to you from our Kansas City boutique. This Kappa Kappa Gamma sweatshirt is printed on a Gildan 125/125 blend pre-shrunk crewneck. Our crewnecks are a soft wash blend with double needle stitching at the shoulder, armhole, neck, waistband, and cuff to provide a comfy and relaxed fit. Our sorority sweatshirts run true to size but size up for a slouchier fit. We print all our threads with 100% eco-friendly water based ink. This means our ink is PVC free, safer to wear, and more sustainable for the environment. When printed, the ink becomes part of the fabric and the print feels as soft as the thread it's printed on. This makes all our garments both incredibly breathable and super long lasting! All our Kappa apparel is made to order and ships same or next business day. We ship USPS and delivery time is typically 1-4 business days. Kite and Crest is an officially licensed vendor for sorority and fraternity apparel. We are licensed to print Kappa Kappa Gamma shirts, Kappa sweatshirts, Kappa Kappa Gamma long sleeve shirts, KKG tee's and other Kappa Kappa Gamma apparel. We are also licensed to print gear for over 125 other greek organizations such as sorority shirts, sorority sweatshirts, sorority crewnecks, sorority long sleeve shirts, sorority tee's and other sorority apparel. This makes a great Kappa Kappa Gamma gift and"}, {"name": "Polder Styling Station, White", "product_information": {"Product Dimensions": "8 x 6 x 8.75 inches", "Item Weight": "1.2 pounds", "Manufacturer": "Polder Products, LLC", "ASIN": "B00FR4V65M", "Item model number": "BTH-7025P-90R", "Customer Reviews": {"ratings_count": 724, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#67,656 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #239 in Bathroom Trays, Holders, & Organizers #257 in Hair Dryers"], "Is Discontinued By Manufacturer": "No", "Assembly Required": "No", "Batteries Required?": "No"}, "brand": "Visit the Polder Store", "brand_url": "https://www.amazon.com/stores/PolderProductsLLC/page/7C6F00F9-31A1-4BEF-8C92-82B007D8CACA?ref_=ast_bln", "full_description": "Polder has been offering everyday products with extraordinary design since its launch. The company was established in 1976, delivering better quality European-styled housewares to the U.S. market. Polder found early in success in ironing and storage and also launched the industry's first line of digital in-oven thermometers, equipped with a long cord so consumers could digitally monitor food without removing it from the oven. Through the years, Polder has built an eclectic collection of core home categories, including kitchen timers and thermometers, laundry and ironing products, kitchen scales and a variety of other storage solutions. Polder products are tested and certified for their consistent high quality by independent standards labs.", "pricing": "$21.54", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41xZZaIYliL.jpg", "https://m.media-amazon.com/images/I/41GMAwY1bSL.jpg", "https://m.media-amazon.com/images/I/41578NUar5L.jpg", "https://m.media-amazon.com/images/I/41IR63bDojL.jpg", "https://m.media-amazon.com/images/I/41PT+rfaL8L.jpg", "https://m.media-amazon.com/images/I/51RKz7RRDAL.jpg", "https://m.media-amazon.com/images/I/517oIBYLaRL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Styling Tools & Appliances \u203a Hair Dryers & Accessories", "average_rating": 4.5, "small_description": ["Rugged stainless steel and plastic ", "Stainless steel mesh for air flow and high heat silicon inner base pad ", "Rear bin has three split compartments to individually store cords ", "Works as free-standing storage on the counter, also hangs on towel bars or hooks ", "Measures 9.75\" (L) x 5.75\" (W) x 9.5\" (H) "], "total_reviews": 724, "total_answered_questions": "", "model": "BTH-7025P-90R", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00EE0YT5Y/ref=twister_B076FM3YV1?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$22.99", "price": 22.99, "image": "https://m.media-amazon.com/images/I/516zqPtmhkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08618M78B/ref=twister_B076FM3YV1?_encoding=UTF8&psc=1", "value": "Rose Gold, White", "price_string": "$18.00", "price": 18, "image": "https://m.media-amazon.com/images/I/51vvsMgUuTL.jpg"}, {"is_selected": true, "url": null, "value": "White/Silver", "price_string": "$21.54", "price": 21.54, "image": "https://m.media-amazon.com/images/I/41xZZaIYliL.jpg"}]}, "seller_id": "A2FP3WC79CXYXU", "seller_name": "MMP Living", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00FR4V65M", "category": "beauty", "query": "Styling Tools & Appliances", "page": 2, "small_description_old": "About this item Rugged stainless steel and plastic Stainless steel mesh for air flow and high heat silicon inner base pad Rear bin has three split compartments to individually store cords Works as free-standing storage on the counter, also hangs on towel bars or hooks Measures 9.75\" (L) x 5.75\" (W) x 9.5\" (H)"}, {"name": "HEALLILY 2pcs Shower Loofah Sponges Bathing Skin Poufs Exfoliating Shower Back Scrubber Women Men Skin Cleaning Bath Wrap Bathing Skin Massage Cleaner", "product_information": "", "brand": "Brand: HEALLILY", "brand_url": "https://www.amazon.com/HEALLILY/b/ref=bl_dp_s_web_23453354011?ie=UTF8&node=23453354011&field-lbr_brands_browse-bin=HEALLILY", "full_description": "", "pricing": "$11.89", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31-1vnFrqeS.jpg", "https://m.media-amazon.com/images/I/41yK+sJ5TjS.jpg", "https://m.media-amazon.com/images/I/417EbWGM95S.jpg", "https://m.media-amazon.com/images/I/21FinFzAEjS.jpg", "https://m.media-amazon.com/images/I/415rAJ-LGuS.jpg", "https://m.media-amazon.com/images/I/41qZkgzorjS.jpg", "https://m.media-amazon.com/images/I/41Ya7OojWCS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath Sponges", "average_rating": "", "small_description": ["The sponges work great on elbows and knees. ", "Made of loofah sponge and cotton cloth materials, the bath sponges are durable to use. ", "Fine workmanship ensures you a long service life and delicate details. ", "A for you to take a shower, it can make your skin shine and help to deep clean your skin. ", "Well- made, the loofah sponges are not easy to damage. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A23RE371JKLUB9", "seller_name": "TATASUN", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B099F89JTZ", "category": "beauty", "query": "Bath & Bathing Accessories", "page": 150, "small_description_old": "About this item The sponges work great on elbows and knees. Made of loofah sponge and cotton cloth materials, the bath sponges are durable to use. Fine workmanship ensures you a long service life and delicate details. A for you to take a shower, it can make your skin shine and help to deep clean your skin. Well- made, the loofah sponges are not easy to damage."}, {"name": "Lunarable Oriental Storage Toy Bag Chair, Eastern Bohem Detail Ottoman Tile Work Inspired Flowers, Stuffed Animal Organizer Washable Bag, Small Size, Turquoise Marigold", "product_information": {"Item Weight": "\u200e14.1 ounces", "Product Dimensions": "\u200e23.2 x 21.2 x 15.1 inches", "Item model number": "\u200ectb_33077_s", "Assembled Height": "\u200e15.1 inches", "Assembled Width": "\u200e21.2 inches", "Assembled Length": "\u200e23.2 inches", "ASIN": "B07XTK3P89", "Best Sellers Rank": ["#6,028,632 in Home & Kitchen (See Top 100 in Home & Kitchen) #719 in Kids' Bean Bag Chairs"], "Date First Available": "September 12, 2019"}, "brand": "Visit the Lunarable Store", "brand_url": "https://www.amazon.com/stores/Lunarable/page/2A472AD0-775F-4290-90D1-F4AC319F101C?ref_=ast_bln", "full_description": "Small size - You can stock over 50 plush toys in bean bag. Measurements: 22\" W X 15\" H when full.Made from - High-quality, soft %100 polyester fabric. Machine washable and durable. Stuff and sit.Features - Zipper closure. Easy to carry with large sturdy handle. Effective space saver. Practical.High capacity - Can store your stuffed toys blankets pillows nets hammocks seasonal clothes & more.Printed - With state of the art digital printing technology. Only case, insert is not included.Fill and have fun with our space saver bean bag for storage. It's a soft and cuddly way to store all your stuffed animals and soft toys; you can also stock extra pillows, blankets, sheets, nets, hammocks, towels, comforters, sleeping bags, or even seasonal clothes. It'll be your helper with its high capacity. It's also decorative; after you replace all the mess you can sit on and enjoy yourself. A perfect solution to open up some room to spare. It's suitable for anyone with thousands of different patterns. Can be a birthday or Christmas present for your loved ones. 2 different size options available: small and large. Easy to care for and easy to clean. Machine washable on cold delicate cycle, tumble dry on low. Read, snuggle, lounge, flop, and play on besides organizing stuff. Decorate your kids' room, playroom, or family room with this useful storage bean bag. The bag itself is lightweight and portable when empty. Has a large handle so you can easily carry it around, put it in your room, garden, or any place you want it to be. Due to manual measurement, please kindly allow a 1-2 cm discrepancy. The digital images we display have the most accurate color possible but due to differences in pc monitors, we can't be responsible for variations in color between the actual product and your screen. Only case, insert is not included.", "pricing": "$39.99", "list_price": "", "availability_status": "Usually ships within 1 to 3 weeks.", "images": ["https://m.media-amazon.com/images/I/51qX8RM+KfL.jpg", "https://m.media-amazon.com/images/I/51RRWBY4++L.jpg", "https://m.media-amazon.com/images/I/5156d+OY1XL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Kids' Furniture \u203a Chairs & Seats \u203a Bean Bags", "average_rating": "", "small_description": ["Small size - You can stock over 50 plush toys in bean bag. Measurements: 22\" W X 15\" H when full. ", "Made from - High-quality, soft %100 polyester fabric. Machine washable and durable. Stuff and sit. ", "Features - Zipper closure. Easy to carry with large sturdy handle. Effective space saver. Practical. ", "High capacity - Can store your stuffed toys blankets pillows nets hammocks seasonal clothes & more. ", "Printed - With state of the art digital printing technology. "], "total_reviews": "", "total_answered_questions": "", "model": "\u200ectb_33077_s", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07XTN1LFV/ref=twister_B07XLN9P34?_encoding=UTF8&psc=1", "value": "Large Size", "price_string": "$49.99", "price": 49.99, "image": null}, {"is_selected": true, "url": null, "value": "Small Size", "price_string": "$39.99", "price": 39.99, "image": null}], "Color": null}, "seller_id": "A2ROIXFFE3ASS9", "seller_name": "Ambesonne", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07XTK3P89", "category": "garden", "query": "Ottomans", "page": 264, "small_description_old": "Small size - You can stock over 50 plush toys in bean bag. Measurements: 22\" W X 15\" H when full. Made from - High-quality, soft %100 polyester fabric. Machine washable and durable. Stuff and sit. Features - Zipper closure. Easy to carry with large sturdy handle. Effective space saver. Practical. High capacity - Can store your stuffed toys blankets pillows nets hammocks seasonal clothes & more. Printed - With state of the art digital printing technology. \n \u203a See more product details"}, {"name": "Italian Herb Nuts - Vegan, Kosher, Gluten-free, GMO-free - 12oz (PACK OF 3 BAGS), Satisfaction Guarantee", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5 x 2 x 8 inches; 13.72 Ounces", "UPC\n \u200f": "\u200e\n 850014477295", "Manufacturer\n \u200f": "\u200e\n Nuts on the Run", "ASIN\n \u200f": "\u200e\n B09DBYG4XD", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#197,667 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#637 in Snack Food Gifts", "#637 in Snack Food Gifts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Nuts on the Run Store", "brand_url": "https://www.amazon.com/stores/NutsOnTheRun/page/12C6AE5F-768B-47D9-A4F9-3AEACBB5127B?ref_=ast_bln", "full_description": "Our Italian Herb Nuts are gently roasted with a flavorful blend of Italian herbs, almonds, cashews, and pecans. They're toasted with a touch of extra virgin olive oil resulting in a tasty snack that you can enjoy and share with loved ones.", "pricing": "$17.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51Uf4cRMrNL.jpg", "https://m.media-amazon.com/images/I/41D+EueJuqL.jpg", "https://m.media-amazon.com/images/I/51h-xTrHnsL.jpg", "https://m.media-amazon.com/images/I/41aIYVYrZvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Food & Beverage Gifts \u203a Snack Gifts", "average_rating": 4.7, "small_description": ["A DELICIOUS CRUNCH: Our combination of Italian herbs, cashews, almonds, and pecans are oven roasted on low heat in small batches with a touch of extra virgin olive oil to ensure freshness! ", "A PREMIUM CHOICE: Crafted with the highest standards, 100% all natural, Kosher certified, non-GMO, gluten free, vegan, and peanut free. ", "GREAT SOURCE OF ENERGY: Whether you're enjoying time off or working through a busy day, our Italian Herb nuts are sure to provide you with a tasty boost of energy! ", "ADVENTURE AND DISCOVER: If you have not yet tried Nuts On The Run's snacks and gifts, you're missing out on a treat that will pleasantly surprise. Whether you add our nuts to your culinary experience or share them with friends and family, you'll be back for more! ", "GIVE A GIFT MADE WITH LOVE: Whether it be birthday celebrations or holidays, our tasty snacks will satisfy gift-giving in any occasion. "], "total_reviews": 32, "total_answered_questions": "", "customization_options": "", "seller_id": "A2WFQ5NULQ36U3", "seller_name": "Nuts On the Run", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09DBYG4XD", "category": "grocery", "query": "Snack Food Gifts", "page": 301, "small_description_old": "About this item A DELICIOUS CRUNCH: Our combination of Italian herbs, cashews, almonds, and pecans are oven roasted on low heat in small batches with a touch of extra virgin olive oil to ensure freshness! A PREMIUM CHOICE: Crafted with the highest standards, 100% all natural, Kosher certified, non-GMO, gluten free, vegan, and peanut free. GREAT SOURCE OF ENERGY: Whether you're enjoying time off or working through a busy day, our Italian Herb nuts are sure to provide you with a tasty boost of energy! ADVENTURE AND DISCOVER: If you have not yet tried Nuts On The Run's snacks and gifts, you're missing out on a treat that will pleasantly surprise. Whether you add our nuts to your culinary experience or share them with friends and family, you'll be back for more! GIVE A GIFT MADE WITH LOVE: Whether it be birthday celebrations or holidays, our tasty snacks will satisfy gift-giving in any occasion."}, {"name": "Motions Nourish & Care Indulgent Oil Hair Spray for Hair & Scalp, 4 Oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.5 x 1.5 x 6.3 inches; 4 Ounces", "UPC\n \u200f": "\u200e\n 802535322042", "Manufacturer\n \u200f": "\u200e\n Motions", "ASIN\n \u200f": "\u200e\n B07144YPN6", "Best Sellers Rank": "#362,373 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#110,810 in Hair Care Products", "#110,810 in Hair Care Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Motions Store", "brand_url": "https://www.amazon.com/stores/Motions/page/137D9FA8-D8CC-4C58-8BA5-0DBCC6A0869D?ref_=ast_bln", "full_description": "", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31oyq3u-aeL.jpg", "https://m.media-amazon.com/images/I/31QNMdJOHTL.jpg", "https://m.media-amazon.com/images/I/41uTGFr9iPL.jpg", "https://m.media-amazon.com/images/I/51ZYz+nduvL.jpg", "https://m.media-amazon.com/images/I/41JPBouiBYL.jpg", "https://m.media-amazon.com/images/I/51epaLioREL.jpg", "https://m.media-amazon.com/images/I/512Kp+1W26L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care", "average_rating": 4.5, "small_description": ["The trusted choice of professionals. ", "Replenish hair and scalp with this ultra-light. ", "Shea and Argan oils, enriched with Vitamin E. "], "total_reviews": 106, "total_answered_questions": "", "customization_options": {"Size": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07144YPN6", "category": "beauty", "query": "Hair Treatment Oils", "page": 98, "small_description_old": "About this item The trusted choice of professionals. Replenish hair and scalp with this ultra-light. Shea and Argan oils, enriched with Vitamin E."}, {"name": "Canon - Ef 40Mm F/2.8 STM Lens Product Description: Canon - Ef 40Mm F/2.8.", "product_information": {"Product Dimensions": "9 x 7 x 5 inches", "Item Weight": "9.3 ounces", "ASIN": "B00O19GGSG", "Best Sellers Rank": ["#628 in Camera Lens Hoods"], "Date First Available": "July 24, 2014", "Manufacturer": "Canon"}, "brand": "Brand: DDMA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=DDMA", "full_description": "This EF 40mm f/2.8 STM Lens from Canon is a welcome addition to Canon's line-up of EF lenses--a light, inconspicuous \"normal\" lens. At a featherweight 4.6 oz, this is one of the lightest lenses in the EF family. It's less than one inch long, so it will never draw unwelcome attention to you when you're shooting in public. A bright f/2.8 maximum aperture allows you to shoot under pretty much any lighting conditions, and the sophisticated lens configuration, including one aspherical element, guarantees high image quality from the center to the edge of the frame. The optimized coatings used in constructing the lens greatly reduce ghosting and flare, and deliver superb color balance.STM functionality provides quiet, smooth and continuous autofocus during video operation (continuous video autofocus only when used with the Canon EOS 70D, Rebel T4i and T5i). The circular aperture formed by 7 diaphragm blades combined with the wide aperture can give you beautiful bokeh--the out-of-focus background areas of your images. This 40mm lens will give you a view equivalent to 64mm when used on a camera with an APS-C sensor, and is able to focus as close as 11.81\".", "pricing": "$325.99", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41NVrj2JfWL.jpg", "https://m.media-amazon.com/images/I/41NVrj2JfWL.jpg", "https://m.media-amazon.com/images/I/41Fs6s25GpL.jpg", "https://m.media-amazon.com/images/I/41h47nPIJNL.jpg", "https://m.media-amazon.com/images/I/41h47nPIJNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Lens Accessories \u203a Lens Hoods", "average_rating": "", "small_description": ["Aperture Range: f/2.8-22 ", "64mm Equivalent on APS-C Cameras "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1ONXNZCOVO2I6", "seller_name": "Fast Ship Direct", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00O19GGSG", "category": "electronics", "query": "Lenses", "page": 31, "small_description_old": "About this item\n \nEF Mount Lens Aperture Range: f/2.8-22 64mm Equivalent on APS-C Cameras"}, {"name": "The Meatless Farm Co., Plant Based Sausage Patties, 8.46 Ounce", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.75 x 4.9 x 1.55 inches; 8.48 Ounces", "UPC\n \u200f": "\u200e\n 860001533651", "Manufacturer\n \u200f": "\u200e\n The Meatless Farm Co.", "ASIN\n \u200f": "\u200e\n B084GWS59P", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: The Meatless Farm Co.", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=The+Meatless+Farm+Co.", "full_description": "Grocery Dairy", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41ybMBb2QSL.jpg", "https://m.media-amazon.com/images/I/51yMc80xruL.jpg", "https://m.media-amazon.com/images/I/416UKXzzYcL.jpg", "https://m.media-amazon.com/images/I/31UPz6WHB-L.jpg", "https://m.media-amazon.com/images/I/41lsoDdol+L.jpg", "https://m.media-amazon.com/images/I/41NBs08ELtL.jpg", "https://m.media-amazon.com/images/I/31mh+SkGFbL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Meat Substitutes \u203a Hot Dogs, Links & Sausages", "average_rating": 3.7, "small_description": ["High in protein ", "Good source of fiber ", "Gluten-free ", "Plant-based, 100% vegan ", "Made with the best non-GMO ingredients "], "total_reviews": 198, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B084GWS59P", "category": "grocery", "query": "Meat Substitutes", "page": 119, "small_description_old": "High in protein Good source of fiber Gluten-free Plant-based, 100% vegan Made with the best non-GMO ingredients"}, {"name": "BRIEF INSANITY Hot Rod Boxer Briefs for Men and Women | Vintage Car Print Boxer Shorts - Funny, Humorous, Novelty Underwear", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 1, 2019", "ASIN\n \u200f": "\u200e\n B07PW1PNGX", "Best Sellers Rank": "#2,142,333 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#14,738 in Men's Underwear", "#14,738 in Men's Underwear": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the BRIEF INSANITY Store", "brand_url": "https://www.amazon.com/stores/BRIEFINSANITY/page/46E8FC8E-A5B5-45D9-9175-09B0B91BD4E4?ref_=ast_bln", "full_description": "BRIEF INSANITY Boxer's are made for both men and women. Check out the size chart below to see what size is best for you.", "pricing": "$19.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/515uy5-x7SL.jpg", "https://m.media-amazon.com/images/I/41pYhtaF0aL.jpg", "https://m.media-amazon.com/images/I/41jGi8SUtNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a Boxers", "average_rating": 4.5, "small_description": ["Machine Wash ", "\u2714 FABRIC & CARE: 90% Polyester 10% Spandex | The synthetic silk Soft knit fabric makes sure you don\u2019t have any pinching, pulling, or restriction while wearing these novelty boxers. These comfy undies are machine wash & dry friendly! ", "\u2714 FEATURES: Lightweight high performance fabric with fly front moves with you for added comfort. The vintage car images are sublimated into the fabric so they won\u2019t crack, fade or peel over time! ", "\u2714 MULTIPLE USE: Versatile design lets you wear them as underwear, shorts or sleepwear! Features vintage classic car designs for those who love timeless automobiles. ", "\u2714 UNISEX STYLE SIZING: BRIEF INSANITY apparel is designed for both women & men. We support plus size and have larger sizes in stock. Please refer to our size chart in the product description to decide which size will work best for you. ", "\u2714 SATISFACTION GUARANTEED: Your satisfaction is important to us. If you are not completely pleased with your purchase, contact us. We'll do everything we can to make it right, including a full refund, no questions asked. Buy Now! "], "total_reviews": 14, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07PW1PNGX"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07PV49D9Q"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07PVZPS58"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07PV55P33"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07PVZSFCF"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07PVZPS58", "category": "fashion", "query": "Men's Underwear", "page": 72, "small_description_old": "Machine Wash \u2714 FABRIC & CARE: 90% Polyester 10% Spandex | The synthetic silk Soft knit fabric makes sure you don\u2019t have any pinching, pulling, or restriction while wearing these novelty boxers. These comfy undies are machine wash & dry friendly! \u2714 FEATURES: Lightweight high performance fabric with fly front moves with you for added comfort. The vintage car images are sublimated into the fabric so they won\u2019t crack, fade or peel over time! \u2714 MULTIPLE USE: Versatile design lets you wear them as underwear, shorts or sleepwear! Features vintage classic car designs for those who love timeless automobiles. \u2714 UNISEX STYLE SIZING: BRIEF INSANITY apparel is designed for both women & men. We support plus size and have larger sizes in stock. Please refer to our size chart in the product description to decide which size will work best for you. \u2714 SATISFACTION GUARANTEED: Your satisfaction is important to us. If you are not completely pleased with your purchase, contact us. We'll do everything we can to make it right, including a full refund, no questions asked. Buy Now!"}, {"name": "HPNIUB Unframed Watercolor Words Inspirational Quote Minimalist Typography Art Print Set of 3 (12\u201dX16\u201d) Canvas Painting\uff0cMotivational Phrases Wall Art Poster for Kids Room Home Decor\uff0cNo Frame", "product_information": {"Package Dimensions": "12.36 x 1.54 x 1.34 inches", "Item Weight": "2.82 ounces", "Manufacturer": "HPNIUB", "ASIN": "B089Q6FS79", "Customer Reviews": {"ratings_count": 967, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#93,492 in Home & Kitchen (See Top 100 in Home & Kitchen) #946 in Posters & Prints"], "Number of Pieces": "3", "Batteries Required?": "No"}, "brand": "Visit the HPNIUB Store", "brand_url": "https://www.amazon.com/stores/HPNIUB/page/A1520D90-4D84-41BD-B7EF-A81C1EE52427?ref_=ast_bln", "full_description": "", "pricing": "$15.68", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41EAziibimL.jpg", "https://m.media-amazon.com/images/I/51Eydw3OO0L.jpg", "https://m.media-amazon.com/images/I/51oypjfgdrL.jpg", "https://m.media-amazon.com/images/I/51i5OMo7UFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": 4.6, "small_description": ["\u221a\u3010BRIGHTEN UP YOUR ROOM WITH UNIQUE COLOR\u3011: With inspirational wall art to decorate your home is an amazing and affordable way. Combined unique, abstract watercolors lettering, it immediately became interesting and the focus of the family, darkening the decorations around it ", "\u221a\u3010READY FRAME AND HANGED ON THE WALL / TABLE\u3011\uff1aPrepare your favorite frame, our paintings are perfect with 12\u201d x 16\u201d frame.It\u2019s easy to take our art prints into the picture frame.It takes only a few minutes to decorate your home perfectly ", "\u221a\u3010AS A GIFT OR FOR HOME DECORATION\u3011\uff1aA unique gift for your kids and students,which can decorate the classroom, Bedroom, Nursery Room..Secondly\uff0cseeing our motivational art painting can always let your children know that they should be a kind person since childhood, have their own little dream, and bravely believe in themselves and doing your own thing better ", "\u221a\u3010ABOUT THE MATERIAL\u3011\uff1aAbout our watercolor words typography print are 100% high quality canvas printing poster and made of environment-friendly canvas painting that totally compliant with the standard ", "\u221a\u3010ABSTRACT PRINT SIZE\u3011: The canvas print is 12\u201d X 16\u201d (30cm x 40cm), total 3 pcs, No Frame "], "total_reviews": 967, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07JVJQ96S/ref=twister_B08P2QNQ7Q", "value": "Colorful Lettering 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41mLgCENAoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08NJ7MPJG/ref=twister_B08P2QNQ7Q", "value": "Colorful Lettering 3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/5175R+dG9mL.jpg"}, {"is_selected": true, "url": null, "value": "Colorful Lettering 2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EAziibimL.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07JVJQ96S/ref=twister_B08P2QNQ7Q", "value": "8x10inch*3", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08NJ7MPJG/ref=twister_B08P2QNQ7Q", "value": "8x10inch*9", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "12x16inch*3", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A1C7PUC8TSD65Q", "seller_name": "HPNIUB", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B089Q6FS79", "category": "garden", "query": "Wall art", "page": 166, "small_description_old": "About this item \u221a\u3010BRIGHTEN UP YOUR ROOM WITH UNIQUE COLOR\u3011: With inspirational wall art to decorate your home is an amazing and affordable way. Combined unique, abstract watercolors lettering, it immediately became interesting and the focus of the family, darkening the decorations around it \u221a\u3010READY FRAME AND HANGED ON THE WALL / TABLE\u3011\uff1aPrepare your favorite frame, our paintings are perfect with 12\u201d x 16\u201d frame.It\u2019s easy to take our art prints into the picture frame.It takes only a few minutes to decorate your home perfectly \u221a\u3010AS A GIFT OR FOR HOME DECORATION\u3011\uff1aA unique gift for your kids and students,which can decorate the classroom, Bedroom, Nursery Room..Secondly\uff0cseeing our motivational art painting can always let your children know that they should be a kind person since childhood, have their own little dream, and bravely believe in themselves and doing your own thing better \u221a\u3010ABOUT THE MATERIAL\u3011\uff1aAbout our watercolor words typography print are 100% high quality canvas printing poster and made of environment-friendly canvas painting that totally compliant with the standard \u221a\u3010ABSTRACT PRINT SIZE\u3011: The canvas print is 12\u201d X 16\u201d (30cm x 40cm), total 3 pcs, No Frame"}, {"name": "VDSOIUTYHFV Infrared Digital Night Vision Device, High-Definition Day and Night Dual-use, Outdoor Photos and Videos are All Black, for Adults Bird Watching, Traveling, Hiking", "product_information": {"Manufacturer": "VDSOIUTYHFV", "ASIN": "B09P1HJ32G", "Country of Origin": "China"}, "brand": "Brand: VDSOIUTYHFV", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=VDSOIUTYHFV", "full_description": "Product Type: Infrared Night Vision Magnification: 4X-16X Photo resolution: 3072*1728 Snap ring size: 45MM Eyepiece resolution: 1280*960 Video resolution: 1920*1080 Effective viewing distance: 200m Working voltage: 3.7V Infrared range: 200M Voltage: 3.7V Product size: 108*100*51MM Weight: 1kg Our product contains 1 product. You can also purchase multiple products at once. If you want to buy more than two products at once, you can contact us first. We will provide you with the best price. WhatsApp / LINE: + 86 18834195171 \u2605After-sales instructions: If you have any questions, please contact us in time, we will reply within 24 hours.", "pricing": "$840.99", "list_price": "", "availability_quantity": 20, "availability_status": "Only 20 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41BtUzHwHEL.jpg", "https://m.media-amazon.com/images/I/413yZ7vy0mL.jpg", "https://m.media-amazon.com/images/I/419tKKrL-HL.jpg", "https://m.media-amazon.com/images/I/415HA+-6JJL.jpg", "https://m.media-amazon.com/images/I/41nXL0EUXbL.jpg", "https://m.media-amazon.com/images/I/41Wwpqkl9NL.jpg", "https://m.media-amazon.com/images/I/31qb-8ovwOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Security & Surveillance \u203a Home Security Systems", "average_rating": "", "small_description": ["\u25b6Digital night vision device: make the night like daylight, take photos and videos, multi-language, WiFi function. ", "\u25b6Product features: The eyepieces and goggles are made of high-quality soft rubber materials, so you no longer worry about light leakage during night observation; the main keyboard and multi-function buttons are easy to operate. ", "\u25b6Magnification: 4-16 times magnification can be seen more clearly, the night is like daylight, and the observation is easier. ", "\u25b6The anti-drop design is more durable: high-strength anti-seismic, anti-seismic 9,000 J; rainproof, high reliability, and strong structure. ", "\u25b6Wide application: very suitable for reconnaissance, camping, adventure, outdoor adventure and night navigation, fishing and wildlife observation. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3UKNEZ048JUUV", "seller_name": "CFTY liy", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P1HJ32G", "category": "electronics", "query": "Binoculars & Scopes", "page": 337, "small_description_old": "\u25b6Digital night vision device: make the night like daylight, take photos and videos, multi-language, WiFi function. \u25b6Product features: The eyepieces and goggles are made of high-quality soft rubber materials, so you no longer worry about light leakage during night observation; the main keyboard and multi-function buttons are easy to operate. \u25b6Magnification: 4-16 times magnification can be seen more clearly, the night is like daylight, and the observation is easier. \u25b6The anti-drop design is more durable: high-strength anti-seismic, anti-seismic 9,000 J; rainproof, high reliability, and strong structure. \u25b6Wide application: very suitable for reconnaissance, camping, adventure, outdoor adventure and night navigation, fishing and wildlife observation."}, {"name": "LJP Nightstand Iron Mesh Nightstand, 3 Layer Portable Narrow Side Table can Bearing 50Kg, Sofa End Table Can Be Used as a Small Bookshelf Bedside Table (Color : Black)", "product_information": {"Item Weight": "\u200e0.035 ounces", "Country of Origin": "\u200eChina", "ASIN": "B09M6VXD6W", "Date First Available": "November 18, 2021"}, "brand": "Brand: LJP", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=LJP", "full_description": "Suitable for homes, offices, dormitories-suitable for compact spaces, bedrooms, guest rooms, closets, nurseries, entrance passages, small apartment solutions, etc.-can be used as bedside storage bedside tables, dressing tables, lockers, sofas, coffee tables, coffee Tables, plant racks, office supply storage rooms, children\u2019s bedside tables or baby nurseries \u2014 complement most decorations, whether traditional, rustic or modern \u2014 the entire installation is portable, lightweight and easy to relocate to different spaces.Product DescriptionProduct name: Iron mesh side table/nightstand; 3-layer 4-leg narrow coffee table; portable bedside table with handle designProduct size: 23*32*70cm (9'' x12.6''x27.5'')Product color: gold, pink, blue, black, whiteProduct material: metal ironThe side table can bear weight: 50KgLayered storage: tidy storageNeed to assemble: no need to assembleWrought iron mesh frame design: convenient to take and store itemsYou can set a side table like that: store books, desk lamps, alarm clocks, vases, etc.Multi-purpose: as a decoration table; as a bedside table; as a tea table, etc.Create your small space: display your favorite things, such as a beautiful bowl, a piece of coral, a special small decoration or a tray, you can create a space of your own.Please pay attention to the following information:1. We only sell side tables, other items are just photography props and are not included in the merchandise.2. The product pictures are all real pictures, but due to factors such as the shooting technology, light, display parameters, etc.,The color of the actual product received may be different from the picture, please refer to the actual product.3. Due to the different measurement tools and methods, there will be an error value (1-3cm) in the size of the furniture product, which belongs to the normal range, and the actual product shall prevail.4. Wish you a happ", "pricing": "$179.82", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41fdRyrFxVL.jpg", "https://m.media-amazon.com/images/I/41VVtP3nV8L.jpg", "https://m.media-amazon.com/images/I/511RQZ3II1L.jpg", "https://m.media-amazon.com/images/I/41iLc8xKGRL.jpg", "https://m.media-amazon.com/images/I/51Yu35voMiL.jpg", "https://m.media-amazon.com/images/I/51yUsLx8oYL.jpg", "https://m.media-amazon.com/images/I/41ueRjkYQwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Nightstands", "average_rating": "", "small_description": ["Display and organize \u2014 can place lights, alarm clocks, books, glasses, charging stations, etc., as well as sundries, accessories, toiletries, blankets, sheets, cosmetics, hairdressing/beauty products, paperwork, toys, knitting supplies, etc. ", "Decorative small table: Even if the side table is arranged in a small corner, it is worth spending time to decorate! Quickly dress up your various decorations and create your own item display platform. ", "Nightstand side table or end table, this kind of flexible furniture not only provides space for the family to place things, but also plays a role in rendering and enhancing the texture of the space. ", "Spacious table top, plenty of space: 3-layer 23*32*70cm (9\" x12.6\"x27.5'') coffee table can meet the needs of different scenes. It is a perfect side table, near the sofa, comfortable recliner or bed, and you can reach what you want. ", "Side table structure: portable handle design, iron frame bedside table. 3-layer design (decorations, books, small flower pots, etc.). The coffee table is waterproof, scratch-resistant and easy to clean. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$179.82", "price": 179.82, "image": "https://m.media-amazon.com/images/I/41fdRyrFxVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6TK55S/ref=twister_B09M6TZ58Y?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$179.82", "price": 179.82, "image": "https://m.media-amazon.com/images/I/41N5enZmpfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6V1BWX/ref=twister_B09M6TZ58Y?_encoding=UTF8&psc=1", "value": "Gold", "price_string": "$179.82", "price": 179.82, "image": "https://m.media-amazon.com/images/I/414lqtR6g0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6TMH6Y/ref=twister_B09M6TZ58Y?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "$179.82", "price": 179.82, "image": "https://m.media-amazon.com/images/I/41eKEfhupwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6VSXHX/ref=twister_B09M6TZ58Y?_encoding=UTF8&psc=1", "value": "White", "price_string": "$179.82", "price": 179.82, "image": "https://m.media-amazon.com/images/I/31f93BKnMQL.jpg"}]}, "seller_id": "A10ZE4F5MS1DKF", "seller_name": "AIaioljp", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09M6VXD6W", "category": "garden", "query": "Nightstands", "page": 413, "small_description_old": "About this item Display and organize \u2014 can place lights, alarm clocks, books, glasses, charging stations, etc., as well as sundries, accessories, toiletries, blankets, sheets, cosmetics, hairdressing/beauty products, paperwork, toys, knitting supplies, etc. Decorative small table: Even if the side table is arranged in a small corner, it is worth spending time to decorate! Quickly dress up your various decorations and create your own item display platform. Nightstand side table or end table, this kind of flexible furniture not only provides space for the family to place things, but also plays a role in rendering and enhancing the texture of the space. Spacious table top, plenty of space: 3-layer 23*32*70cm (9\" x12.6\"x27.5'') coffee table can meet the needs of different scenes. It is a perfect side table, near the sofa, comfortable recliner or bed, and you can reach what you want. Side table structure: portable handle design, iron frame bedside table. 3-layer design (decorations, books, small flower pots, etc.). The coffee table is waterproof, scratch-resistant and easy to clean. \n \u203a See more product details"}, {"name": "MCICI Mens Loafers Moccasin Driving Shoes Premium Genuine Leather Casual Slip On Flats Fashion Slipper Breathable Big Size", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 12.05 x 5.35 x 2.67 inches; 14.46 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n May 18, 2018", "ASIN\n \u200f": "\u200e\n B07D559YQH", "Best Sellers Rank": "#140,571 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#451 in Men's Loafers & Slip-Ons", "#451 in Men's Loafers & Slip-Ons": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: MCICI", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=MCICI", "full_description": "Men's soft leather loafers are made from the first layer of cowhide fabric. The non-slip,wear-resistant rubber soles are always balanced and have a soft touch. So you can easily drive and walk easily. The Loafers There are two ways to wear,no matter what the occasion with all appropriate. One,can be used as a leisure or formal business occasion. Tow,when you do not want to wear shoe,you can also wear slippers,which is convenient and stylish. you will love this lightweight Loafers. You need a pair of stylish casual shoes. Size chart EU38= US6 =foot length 24.0CM=9.44inch EU39= US6.5 =foot length 24.5 CM=9.65inch EU40= US7 =foot length 25 CM=9.84inch EU41= US8 =foot length 25.5 CM=10.03inch EU42= US8.5 =foot length 26 CM=10.24inch EU43= US9.5 =foot length 26.5 CM=10.43inch EU44= US10 =foot length 27 CM=10.63inch EU45= US10.5 =foot length 27.5 CM=10.83inch EU46= US11 =foot length 28 CM=11.02inch EU47= US11.5 =foot length 28.5 CM=11.22inch EU48= US12 =foot length 29.0 CM=11.42inch A well-fitting multifunctional Loafers can bring more enjoy to your life,so please choose the correct size according your own actual foot length. As the shape of the foot different from each other,so there may be some differences in size,so please understand.", "pricing": "$15.99$32.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41PBBUE4lNL.jpg", "https://m.media-amazon.com/images/I/41orjGGmVkL.jpg", "https://m.media-amazon.com/images/I/41uJP10uF9L.jpg", "https://m.media-amazon.com/images/I/51SABvsXP1L.jpg", "https://m.media-amazon.com/images/I/61LvL2LWejL.jpg", "https://m.media-amazon.com/images/I/51mAxeB7ixL.jpg", "https://m.media-amazon.com/images/I/41YDWnf9UXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Loafers & Slip-Ons", "average_rating": 4, "small_description": ["Premium genuine leather upper fashion and breathable,Pure handmade ", "Slip-on design allows for quick and easy on and off ", "Durable rubber outsole delivers traction on a variety of surfaces ", "Lightweight, Flexible and Comfort Casual Loafers.There are two ways to wear. ", "Superior styling and comfort,perfect for work,driving,and casual occasions "], "total_reviews": 479, "total_answered_questions": 12, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "6.5", "asin": "B07HP4MQW7"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B0832F2C2T"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B07HP6LVRS"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B07HP5PQGB"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B07HP5SPQQ"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B07HP6MBQL"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B07HP6BWCL"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B07HP6DY1L"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B07LBLFJQ4"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07D559YQH/ref=twister_B07D5B6QV4", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41PDYSS-GRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07D52WJ5W/ref=twister_B07D5B6QV4", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gPcvMLy2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B088ZWPBTW/ref=twister_B07D5B6QV4", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/416DPpZktwL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wOcYcXlhL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07D55BDV4/ref=twister_B07D5B6QV4", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hUm-8y-ML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HP5B9V3/ref=twister_B07D5B6QV4", "value": "Black-b", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hzBlJof1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07GCGL8W6/ref=twister_B07D5B6QV4", "value": "Blue-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41tsb2kcpaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07GCH6YMQ/ref=twister_B07D5B6QV4", "value": "Yellow-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41P7-h+m-cL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07HP6LVRS", "category": "fashion", "query": "Men's Loafers & Slip-Ons", "page": 29, "small_description_old": "100% Leather Rubber sole Premium genuine leather upper fashion and breathable,Pure handmade Slip-on design allows for quick and easy on and off Durable rubber outsole delivers traction on a variety of surfaces Lightweight, Flexible and Comfort Casual Loafers.There are two ways to wear. Superior styling and comfort,perfect for work,driving,and casual occasions"}, {"name": "Gym Shorts For Men Quick Dry Lightweight Training Running Jogger Drawstring Pockets Solid Zipper Shorts", "product_information": "", "brand": "Visit the iYYVV Store", "brand_url": "https://www.amazon.com/stores/iYYVV/page/3F984B19-339B-4A45-8155-7C0727D466E6?ref_=ast_bln", "full_description": "", "pricing": "$8.29$10.79", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41GwiHhyCHS.jpg", "https://m.media-amazon.com/images/I/41H91lR4G6S.jpg", "https://m.media-amazon.com/images/I/61cZNci6SOS.jpg", "https://m.media-amazon.com/images/I/51JYpHo5UpS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": "", "small_description": ["100% Cotton ", "\u2764\ufe0f Size: The size is Chinese size,not amazon size.Please check our size chart of the last picture.If you do not know how to select the size please purchase it in one or two size larger than your usual size.Machine washable, hand wash better. Feel free to contact us if you have any other question. ", "\u2764\ufe0f Boost Performance: We use soft fabric to bring you sports shorts for men that offer just the right balance of softness, breathability, and stretchiness to keep you comfortable throughout your workouts ", "Pull On closure ", "\u2764\ufe0f Occasion: Whether you\u2019re working out at the gym or running on the track, our men's gym shorts have you covered. They are suitable for all your sports and workout activities including gym, cycling, running, basketball, football, tennis and more ", "\u2764\ufe0f Pockets On Both Sides: Thanks to the hand pockets, you can easily carry your wallet, smartphone, and other small accessories when working out or traveling. These mens athletic shorts can be paired up with other clothing to create your own look ", "\u2764\ufe0f Get The Right Fit: Our men\u2019s workout shorts feature an encased elastic waistband which coupled with the inner drawcord makes sure you get the perfect fit every time. Our shorts stay comfortably in place whether running or training without sliding up or down , fahion shorts dance shorts yogs shorts men plaid shorts run shorts for men red dance shorts men training shorts girls running shorts plus yoga shorts lounge shorts long swim shorts for men boys white shorts short sleeve blouse pink shorts high rise denim shorts men tennis shorts boy denim shorts toddler boy shorts denim cargo shorts for men apandex shorts men xl shorts men exercise shorts s jean shorts shorts girls sexy yoga shorts sweat shorts camo mens shorts, amphibian shorts hym shorts boys rash guard short sleeve 9 workout shorts men high waisted denim shorts womanes shorts bicycycle shorts mens shirts short sleeve shorts boys 36w shorts mens knit shorts wordmark shorts shorts 4t porkchop shorts jeand shorts 1x short sleeve mencompression shorts 7 khaki shorts for men joggee shorts mens distressed shorts linerless shorts denmin shorts men 9 athletic shorts men black shorts for men carpart shorts short heels 40, booty shorts tie waist shorts jean shorts plus denim bermuda shorts drawstring, ruched booty shorts yoga shorts ruched blue scrunch shorts patchwork jeans white shorts girls swim shorts high waisted shorts long athletic build distressed jean shorts butt lifting shorts purple blue jean short booty jean shorts leopard booty shorts flowy shorts denim short shorts pink booty shorts textured scrunch butt shorts kids jean shorts scrunch booty shorts butt lifting"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GwiHhyCHS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RK6JWH3/ref=twister_B09RK7VH2X", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/511qNrgPnkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RK7768W/ref=twister_B09RK7VH2X", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31KZ1Hw0joS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RKQSZKW/ref=twister_B09RK7VH2X", "value": "Dark Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41mqS7Z7ZyS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RK52X8N/ref=twister_B09RK7VH2X", "value": "Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41stF7By8nS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RK5WWNG/ref=twister_B09RK7VH2X", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41bgTq+gZmS.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09RK77R3V"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09RK7T39F"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09RK7F526"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09RK6SW33"}, {"is_selected": false, "is_available": false, "value": "3X", "asin": "B09RK7DKGD"}, {"is_selected": false, "is_available": true, "value": "4X", "asin": "B09RK5X418"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RK77R3V", "category": "fashion", "query": "Men's Shorts", "page": 128, "small_description_old": "100% Cotton \u2764\ufe0f Size: The size is Chinese size,not amazon size.Please check our size chart of the last picture.If you do not know how to select the size please purchase it in one or two size larger than your usual size.Machine washable, hand wash better. Feel free to contact us if you have any other question. \u2764\ufe0f Boost Performance: We use soft fabric to bring you sports shorts for men that offer just the right balance of softness, breathability, and stretchiness to keep you comfortable throughout your workouts Pull On closure \u2764\ufe0f Occasion: Whether you\u2019re working out at the gym or running on the track, our men's gym shorts have you covered. They are suitable for all your sports and workout activities including gym, cycling, running, basketball, football, tennis and more \u2764\ufe0f Pockets On Both Sides: Thanks to the hand pockets, you can easily carry your wallet, smartphone, and other small accessories when working out or traveling. These mens athletic shorts can be paired up with other clothing to create your own look \u2764\ufe0f Get The Right Fit: Our men\u2019s workout shorts feature an encased elastic waistband which coupled with the inner drawcord makes sure you get the perfect fit every time. Our shorts stay comfortably in place whether running or training without sliding up or down \n fahion shorts dance shorts yogs shorts men plaid shorts run shorts for men red dance shorts men training shorts girls running shorts plus yoga shorts lounge shorts long swim shorts for men boys white shorts short sleeve blouse pink shorts high rise denim shorts men tennis shorts boy denim shorts toddler boy shorts denim cargo shorts for men apandex shorts men xl shorts men exercise shorts s jean shorts shorts girls sexy yoga shorts sweat shorts camo mens shortsamphibian shorts hym shorts boys rash guard short sleeve 9 workout shorts men high waisted denim shorts womanes shorts bicycycle shorts mens shirts short sleeve shorts boys 36w shorts mens knit shorts wordmark shorts shorts 4t porkchop shorts jeand shorts 1x short sleeve mencompression shorts 7 khaki shorts for men joggee shorts mens distressed shorts linerless shorts denmin shorts men 9 athletic shorts men black shorts for men carpart shorts short heels 40booty shorts tie waist shorts jean shorts plus denim bermuda shorts drawstring, ruched booty shorts yoga shorts ruched blue scrunch shorts patchwork jeans white shorts girls swim shorts high waisted shorts long athletic build distressed jean shorts butt lifting shorts purple blue jean short booty jean shorts leopard booty shorts flowy shorts denim short shorts pink booty shorts textured scrunch butt shorts kids jean shorts scrunch booty shorts butt liftingShow more"}, {"name": "Tiamu File Cabinet - Vertical Filing Cabinet - Office Cabinet with Open Storage Shelf and Drawer - Letter Size Large Modern Storage Cabinet Printer Stand, for Office, Study, Living Room", "product_information": {"Product Dimensions": "15.74 x 29.52 x 62 inches", "Department": "Unisex-adult", "Manufacturer": "Tiamu", "ASIN": "B09P8D2Q1Q", "Customer Reviews": {"ratings_count": null, "stars": "1.0 out of 5 stars"}, "Best Sellers Rank": ["#307,966 in Office Products (See Top 100 in Office Products) #454 in Office Vertical Files"], "Date First Available": "December 29, 2021"}, "brand": "Brand: Tiamu", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Tiamu", "full_description": "[Large capacity] This office cabinet not only has two drawers for storing important documents, but also a four-layer open bookcase for easy storage and display. Simple and practical, an elegant choice to systematize your books, documents and office supplies. [Two drawers with locks] The top drawer is used to store spare office supplies, and the bottom is equipped with locks and file hanging rods for storing important documents of traditional letter size. [Ultra-sturdy structure] It is made of tubular black polished steel frame and base and high-quality medium density fiberboard. Large-sized works are durable. [Adjustable leg pads] Adjustable foot pads increase the height of the file cabinet, which can maintain stability even on uneven ground and prevent the floor from being scratched. [Easy to install] Follow the detailed instructions to assemble the products easily double drawer vertical file cabinet with lock and bookshelf, letter/law size large modern file cabinet printer stand with open storage shelf, suitable for home office, vintage brown Colour:Black embossed surface Material:E1-PB+ metal frame Size: 65x40x170cm The size between the drawer rod and the rod, the internal size is: 228+328mm Package Contents: 1 x file cabinet Only the above package content, other products are not included. Note: Light shooting and different displays may cause the color of the item in the picture a little different from the real thing. The measurement allowed error is +/- 1-3cm.", "pricing": "$174.99", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/517bR8ntHuL.jpg", "https://m.media-amazon.com/images/I/414VevIq9nL.jpg", "https://m.media-amazon.com/images/I/41F4MMR6lEL.jpg", "https://m.media-amazon.com/images/I/41sMLzkHmvL.jpg", "https://m.media-amazon.com/images/I/51f2WdWOP5L.jpg", "https://m.media-amazon.com/images/I/41Vodo1sYFL.jpg", "https://m.media-amazon.com/images/I/41Me3kesmIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Furniture & Lighting \u203a Cabinets, Racks & Shelves \u203a File Cabinets \u203a Vertical File Cabinets", "average_rating": 1, "small_description": ["\u3010File Cabinets 2 Drawer\u3011 This file cabinet come with 2 drawer and open storage shelves which can meet different needs. This file cabinet can adapt to various needs and has multiple uses. ", "\u3010Ample Storage Space\u3011 29.5\" L x 15.74\"W x 62\"H file cabinet is perfect for home office using. Shelf high file cabinet provides enough room to hold bookshelf, printer, photocopier, etc. And file cabinets 2 drawer fits Letter/Legal Size. Open storage can as a bookshelf to place your books, file and etc. The size between the drawer rod and the rod, the internal size is: 228+328mm. ", "\u3010Multi Using\u3011This storage cabinet can be used as a file cabinets, bookcase, filing cabinet, display shelf or printer stand for your home office. Adjustable shelf design can meet you place printer or other home office tall decor. If you are looking for storage cabinet, this file cabinet is a good choice. ", "\u3010Gentle Color and Lustre\u3011The color of the rustic black is retro and classic, which is suitable for any home decoration style. Black metal frame and rustic black MDF board keep the filing cabinet sturdy and durable. ", "\u3010After-sales Service\u3011Thank you for your support and trust for our file cabinet. We have a professional after-sales customer service team. If your file cabinet arrives damaged, scratched or missing part, please feel free to contact us. Our customer support team will address your concerns within 24 hours. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A3R2HN042WC0PH", "seller_name": "ycjmingUS", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P8D2Q1Q", "category": "garden", "query": "Home Office Cabinets", "page": 37, "small_description_old": "About this item\n \n\u3010File Cabinets 2 Drawer\u3011 This file cabinet come with 2 drawer and open storage shelves which can meet different needs. This file cabinet can adapt to various needs and has multiple uses. \u3010Ample Storage Space\u3011 29.5\" L x 15.74\"W x 62\"H file cabinet is perfect for home office using. Shelf high file cabinet provides enough room to hold bookshelf, printer, photocopier, etc. And file cabinets 2 drawer fits Letter/Legal Size. Open storage can as a bookshelf to place your books, file and etc. The size between the drawer rod and the rod, the internal size is: 228+328mm. \u3010Multi Using\u3011This storage cabinet can be used as a file cabinets, bookcase, filing cabinet, display shelf or printer stand for your home office. Adjustable shelf design can meet you place printer or other home office tall decor. If you are looking for storage cabinet, this file cabinet is a good choice. \u3010Gentle Color and Lustre\u3011The color of the rustic black is retro and classic, which is suitable for any home decoration style. Black metal frame and rustic black MDF board keep the filing cabinet sturdy and durable. \u3010After-sales Service\u3011Thank you for your support and trust for our file cabinet. We have a professional after-sales customer service team. If your file cabinet arrives damaged, scratched or missing part, please feel free to contact us. Our customer support team will address your concerns within 24 hours."}, {"name": "Sony 49mm Front Lens Cap ALCF49S,Black", "product_information": {"Product Dimensions": "3.5 x 0.32 x 5 inches", "Item Weight": "0.608 ounces", "ASIN": "B007PCP2OU", "Item model number": "ALCF49S", "Customer Reviews": {"ratings_count": 1216, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#20 in Camera Lens Caps"], "Is Discontinued By Manufacturer": "No", "Date First Available": "March 26, 2012", "Manufacturer": "Sony", "Country of Origin": "China"}, "brand": "Visit the Sony Store", "brand_url": "https://www.amazon.com/stores/Sony/page/AEA5D08A-7FC6-45D4-B121-C8A6FA25219F?ref_=ast_bln", "full_description": "Keep your lens safe from unwanted dust and scratches using this high-quality 49mm lens cap", "pricing": "$6.96", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51Y6UctLoYL.jpg", "https://m.media-amazon.com/images/I/51HNX8I3tSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Lens Accessories \u203a Lens Caps", "average_rating": 4.8, "small_description": [""], "total_reviews": 1216, "total_answered_questions": 122, "model": "ALCF49S", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B007PCP2OU", "category": "electronics", "query": "Lenses", "page": 41, "small_description_old": "49mm Front Lens Cap 49mm Front Lens Cap 49mm Front Lens Cap"}, {"name": "Afeax Compatible Volume Button Silent Power Switch Flex Cable Replacement for iPhone 8 Plus (5.5 inch)", "product_information": {"Package Dimensions": "3 x 2 x 0.3 inches", "Item Weight": "0.317 ounces", "ASIN": "B07DGXZJ1K", "Item model number": "4351593698", "Customer Reviews": {"ratings_count": 34, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#233,021 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #9,854 in Cell Phone Replacement Parts"], "Is Discontinued By Manufacturer": "No", "Other display features": "Wireless", "Colour": "IPhone 8 Plus", "Manufacturer": "Afeax", "Date First Available": "June 2, 2018"}, "brand": "Brand: Afeax", "brand_url": "https://www.amazon.com/Afeax/b/ref=bl_dp_s_web_19537436011?ie=UTF8&node=19537436011&field-lbr_brands_browse-bin=Afeax", "full_description": "", "pricing": "$8.90", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31l1xJfdnYL.jpg", "https://m.media-amazon.com/images/I/419zmJvmBAL.jpg", "https://m.media-amazon.com/images/I/41ee9FobRbL.jpg", "https://m.media-amazon.com/images/I/41rkBbc4FnL.jpg", "https://m.media-amazon.com/images/I/41sSgcew3BL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Maintenance, Upkeep & Repairs \u203a Replacement Parts", "average_rating": 4.1, "small_description": ["It is used to fix not working/unusable power button, volume buttons or Flash Light. ", "Easy to be installed in phone, remember to search instruction video on youtube ", "We provide one year warranty,email us anytime if you meet any problem "], "total_reviews": 34, "total_answered_questions": "", "model": "4351593698", "customization_options": "", "seller_id": "A1472MYOGV6LO", "seller_name": "Afeax", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07DGXZJ1K", "category": "electronics", "query": "Flashes", "page": 229, "small_description_old": "Compatible with iPhone 8 plus (5.5'') It is used to fix not working/unusable power button, volume buttons or Flash Light. Easy to be installed in phone, remember to search instruction video on youtube We provide one year warranty,email us anytime if you meet any problem"}, {"name": "Cuifati 4.1 Decoding Module Circuit Board with Infrared Remote Control Micro USB 5V Decoding Module WAV+APE+FLAC+MP3 Lossless Decoding", "product_information": {"Product Dimensions": "1.97 x 1.57 x 0.39 inches", "Item Weight": "0.91 ounces", "ASIN": "B08ZMR6MCR", "Date First Available": "March 22, 2021", "Manufacturer": "Cuifati"}, "brand": "Visit the Cuifati Store", "brand_url": "https://www.amazon.com/stores/Cuifati/page/092BE1D7-D029-428E-9855-7943182E7680?ref_=ast_bln", "full_description": "Features: 1. Multi-functional: Support Bluetooth 4.1., support automatic back connection, WAV+APE+FLAC+MP3 lossless decoding. 2. Exquisite workmanship: precise cut and interface ensuring perfect applicability, suitable for installation location and easy installation. 3. Reliable material: made of high-quality materials, which can effectively avoid corrosion and wear as well as durable. 4. Professional chip sets provide excellent performance in the system. 5. Easy to operate, anti-aging and can extend the service life. 6. Lossless decoding, stereo output, board stereo 2W amplifier. 7. Support USB Audio function, with U disk and TF card playback. 8. Support infrared remote control. Specifications: Condition: 100% Brand New Micro USB power supply: Micro USB 5V power supply USB Audio: connect the computer with USB data cable and use it as an external sound card LED indicator: blue light in Bluetooth mode is constant on, and blue light in music mode flashes Infrared remote control: support infrared remote control operation Bluetooth decoding IC: Main control chip of the decoding board 3.5mm stereo output: standard 3.5mm interface, output stereo audio source, can insert headphones, connecting to power amplifier and other devices If the U disk plays, it is recommended to use USB 5V power supply (3.7v lithium battery power supply is not recommended) because the early U disk does not support 3.7v voltage. POWER interface must be used when using mobile power supply or computer power supply. USB Audio interface is not allowed, otherwise music on U disk cannot be played. USB flash drive", "pricing": "$8.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51EsUvNZY2L.jpg", "https://m.media-amazon.com/images/I/51m9PaFAImL.jpg", "https://m.media-amazon.com/images/I/51xKJKcd7YL.jpg", "https://m.media-amazon.com/images/I/51DmRwQ83rL.jpg", "https://m.media-amazon.com/images/I/51ts5T9afiL.jpg", "https://m.media-amazon.com/images/I/51IYMbsgYNL.jpg", "https://m.media-amazon.com/images/I/51VPMULh-JL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Portable Audio & Video \u203a MP3 & MP4 Player Accessories \u203a Bluetooth & FM Transmitters \u203a FM Transmitters", "average_rating": "", "small_description": ["Multi-functional: Support Bluetooth 4.1., support automatic back connection, WAV+APE+FLAC+MP3 lossless decoding. ", "Lossless decoding, stereo output, board stereo 2W amplifier. ", "Reliable material: made of high-quality materials, which can effectively avoid corrosion and wear as well as durable. ", "Exquisite workmanship: precise cut and interface ensuring perfect applicability, suitable for installation location and easy installation. ", "Professional chip sets provide excellent performance in the system. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AZIWKB4RUNANS", "seller_name": "Yoidesu", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08ZMR6MCR", "category": "electronics", "query": "Receivers & Amplifiers", "page": 205, "small_description_old": "Multi-functional: Support Bluetooth 4.1., support automatic back connection, WAV+APE+FLAC+MP3 lossless decoding. Lossless decoding, stereo output, board stereo 2W amplifier. Reliable material: made of high-quality materials, which can effectively avoid corrosion and wear as well as durable. Exquisite workmanship: precise cut and interface ensuring perfect applicability, suitable for installation location and easy installation. Professional chip sets provide excellent performance in the system."}, {"name": "Colour Me Pink - Fragrance for Women - 3.4oz Eau de Parfum, by Milton-Lloyd (Pack of 3, 3 x 3.4oz)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.2 x 7.01 x 2.83 inches; 3.4 Ounces", "Item model number\n \u200f": "\u200e\n 01E3PPPA", "UPC\n \u200f": "\u200e\n 025929207736", "Manufacturer\n \u200f": "\u200e\n Milton-Lloyd Limited", "ASIN\n \u200f": "\u200e\n B09L4WSCBS", "Country of Origin\n \u200f": "\u200e\n United Kingdom", "Best Sellers Rank": "#330,538 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#4,927 in Women's Eau de Parfum", "#4,927 in Women's Eau de Parfum": ""}, "brand": "Visit the COLOUR ME Store", "brand_url": "https://www.amazon.com/stores/Colour+Me/page/FB936561-8276-464E-9934-055233BC1510?ref_=ast_bln", "full_description": "", "pricing": "$58.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51BOX9VZ5VL.jpg", "https://m.media-amazon.com/images/I/31b2HFuwB5L.jpg", "https://m.media-amazon.com/images/I/41zejMrAKvL.jpg", "https://m.media-amazon.com/images/I/51y3aCl1K3L.jpg", "https://m.media-amazon.com/images/I/31vORg0hBxL.jpg", "https://m.media-amazon.com/images/I/4190DzC-RTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Eau de Parfum", "average_rating": "", "small_description": ["LUXURY FRAGRANCE - Since 1975, Milton-Lloyd have earned an unshakeable reputation for award-winning, luxury fragrances without the luxury price tag ", "FLORAL, WARM AND ROMANTIC - White rose petals and almond blossom nestle around a joyous bouquet of geranium, heliotrope and lilies, with enveloping base notes of warm musks and vanilla ", "LONG LASTING - Colour Me Pink comes with a 6 hour minimum guarantee. It is the luxury oils, blended at high concentrations that promises outstanding quality and long-lasting performance ", "THE COLOUR ME COLLECTION - A trending collection of luxury fragrances and aftershaves by Milton-Lloyd ", "GENUINE MILTON-LLOYD PRODUCT \u2013 Milton-Lloyd works with the world\u2019s leading perfumers, using the finest oils, blended at high concentrations to create sophisticated, long lasting, luxury fragrances. Their commitment to prioritising perfumery over packaging and advertising is what gives you incredible quality at affordable prices. Every year, millions of people fall in love with Milton-Lloyd fragrances "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09L4RSPT7/ref=twister_B09DGJGHFV?_encoding=UTF8&psc=1", "value": "(Pack of 2 x 3.4 Ounce)", "price_string": "$44.00", "price": 44, "image": null}, {"is_selected": true, "url": null, "value": "(Pack of 3 x 3.4 Ounce)", "price_string": "$58.00", "price": 58, "image": null}]}, "seller_id": "A24UTE6RF5B35E", "seller_name": "Milton-Lloyd Inc", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09L4WSCBS", "category": "beauty", "query": "Women's Fragrance", "page": 126, "small_description_old": "About this item LUXURY FRAGRANCE - Since 1975, Milton-Lloyd have earned an unshakeable reputation for award-winning, luxury fragrances without the luxury price tag FLORAL, WARM AND ROMANTIC - White rose petals and almond blossom nestle around a joyous bouquet of geranium, heliotrope and lilies, with enveloping base notes of warm musks and vanilla LONG LASTING - Colour Me Pink comes with a 6 hour minimum guarantee. It is the luxury oils, blended at high concentrations that promises outstanding quality and long-lasting performance THE COLOUR ME COLLECTION - A trending collection of luxury fragrances and aftershaves by Milton-Lloyd GENUINE MILTON-LLOYD PRODUCT \u2013 Milton-Lloyd works with the world\u2019s leading perfumers, using the finest oils, blended at high concentrations to create sophisticated, long lasting, luxury fragrances. Their commitment to prioritising perfumery over packaging and advertising is what gives you incredible quality at affordable prices. Every year, millions of people fall in love with Milton-Lloyd fragrances"}, {"name": "12 Bundles Artificial Lavender Flowers Outdoor Fake Flowers for Decoration UV Resistant No Fade Faux Plastic Plants Garden Porch Window Box D\u00e9cor (Blue)", "product_information": {"Package Dimensions": "12.76 x 8.82 x 2.8 inches", "Item Weight": "13 ounces", "Manufacturer": "YISNUO", "ASIN": "B092D51DYS", "Customer Reviews": {"ratings_count": 84, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#73,602 in Home & Kitchen (See Top 100 in Home & Kitchen) #809 in Artificial Flowers"], "Date First Available": "April 13, 2021"}, "brand": "Brand: AITISOR", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=AITISOR", "full_description": "", "pricing": "$16.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/61hQi4NaCsS.jpg", "https://m.media-amazon.com/images/I/51mC5XciMaS.jpg", "https://m.media-amazon.com/images/I/51eaPWrn70S.jpg", "https://m.media-amazon.com/images/I/51j8uxDHZaS.jpg", "https://m.media-amazon.com/images/I/61208re0y3S.jpg", "https://m.media-amazon.com/images/I/61BoQlR-ZMS.jpg", "https://m.media-amazon.com/images/I/41n6+6dBnNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Artificial Plants & Flowers \u203a Artificial Flowers", "average_rating": 4.4, "small_description": ["\ud83c\udf33\u3010 Realistic Look \u3011- Each bundle of lavender gives the appearance of a real, natural flower. Artificial flowers are a practical alternative to real florals and will remain fresh-looking and beautiful year after year. ", "\ud83c\udf33\u3010 Wonderful Decor \u3011- This artificial plants lavender is designed for outdoor indoors decoration. These lifelike lavenders lend gorgeous charm to your front porch, walkway, patio, and garden; faux lavenders are perfect for everyday decoration, birthdays, holidays, weddings, memorial sites, DIY projects, etc ", "\ud83c\udf33\u3010 UV Resistant \u3011- Plastic plants is uv resistant and never fade, Upscale look Artificial flowers are perfect for any landscaping project or decor style. This silk bushes will never die off and easy take care of it can against Fierce wind Rainstorm and insolation. ", "\ud83c\udf33\u3010 Feature \u3011- Pack of 12 bunches .Each measures 15.1\" high x 6.6\" Wide. Each bunch has 7 flexible stems and dense leaves. ", "\ud83c\udf33\u3010Warm Atmosphere \u3011- The lifelike artificial lavender flowers creates a cozy ambiance, Fake Faux greenery plants are perfect home, hotels, terrace, office, guesthouses, garden, Christmas or other indoor outside place decoration. "], "total_reviews": 84, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Blue", "price_string": "$16.99", "price": 16.99, "image": "https://m.media-amazon.com/images/I/61hQi4NaCsS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092D474ZK/ref=twister_B092D4W776?_encoding=UTF8&psc=1", "value": "Orange", "price_string": "$16.99", "price": 16.99, "image": "https://m.media-amazon.com/images/I/61zrBk6AmuS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092D3734V/ref=twister_B092D4W776?_encoding=UTF8&psc=1", "value": "Purple", "price_string": "$16.99", "price": 16.99, "image": "https://m.media-amazon.com/images/I/61qY6QOYKQS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092D4YTCP/ref=twister_B092D4W776?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$16.99", "price": 16.99, "image": "https://m.media-amazon.com/images/I/61MvVPTS+TS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092D4LG9J/ref=twister_B092D4W776?_encoding=UTF8&psc=1", "value": "White", "price_string": "$16.99", "price": 16.99, "image": "https://m.media-amazon.com/images/I/615+jMJjDeS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092D4ND1S/ref=twister_B092D4W776?_encoding=UTF8&psc=1", "value": "Yellow", "price_string": "$16.99", "price": 16.99, "image": "https://m.media-amazon.com/images/I/61Qg7JetwqS.jpg"}]}, "seller_id": "A26129PRSB1OFR", "seller_name": "YISNUO", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B092D51DYS", "category": "garden", "query": "Live Plants", "page": 118, "small_description_old": "About this item\n \n\ud83c\udf33\u3010 Realistic Look \u3011- Each bundle of lavender gives the appearance of a real, natural flower. Artificial flowers are a practical alternative to real florals and will remain fresh-looking and beautiful year after year. \ud83c\udf33\u3010 Wonderful Decor \u3011- This artificial plants lavender is designed for outdoor indoors decoration. These lifelike lavenders lend gorgeous charm to your front porch, walkway, patio, and garden; faux lavenders are perfect for everyday decoration, birthdays, holidays, weddings, memorial sites, DIY projects, etc \ud83c\udf33\u3010 UV Resistant \u3011- Plastic plants is uv resistant and never fade, Upscale look Artificial flowers are perfect for any landscaping project or decor style. This silk bushes will never die off and easy take care of it can against Fierce wind Rainstorm and insolation. \ud83c\udf33\u3010 Feature \u3011- Pack of 12 bunches .Each measures 15.1\" high x 6.6\" Wide. Each bunch has 7 flexible stems and dense leaves. \ud83c\udf33\u3010Warm Atmosphere \u3011- The lifelike artificial lavender flowers creates a cozy ambiance, Fake Faux greenery plants are perfect home, hotels, terrace, office, guesthouses, garden, Christmas or other indoor outside place decoration."}, {"name": "120pcs Makeup Remover Cotton Pads Double Sided Cotton Practical Facial Puff Cleansing Wipes Cosmetic Care Tool", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 2.36 x 1.97 x 0.08 inches; 4.94 Ounces", "Manufacturer\n \u200f": "\u200e\n SOLUSTRE", "ASIN\n \u200f": "\u200e\n B08N16XC83", "": ""}, "brand": "Brand: SOLUSTRE", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SOLUSTRE", "full_description": "Description\u00a0The item is made of premium cotton material, soft and comfortable, gentle and non stimulating, clean and sanitary. With super soft touch feeling, It's easy to use with proper size. Nice cotton pads for daily makeup, makeup removal, skin care or other applications.\u00a0Features\u00a0- Color: white.- Material: cotton.- Size: Approx. 6x5x0.2 cm.- Nice cotton pads for daily makeup, makeup removal, skin care or other wet applications.- You can use the makeup pads for face, makeup removing, care and more.- It is effective to cleanse skin pores, remove excess oil.- Disposable and easy to use.- It is lightweight for portable carry.\u00a0Package Including120 x Cotton Pads", "pricing": "$15.61", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/316evCpEO4L.jpg", "https://m.media-amazon.com/images/I/31vbafQbVtL.jpg", "https://m.media-amazon.com/images/I/31TLccDO8oL.jpg", "https://m.media-amazon.com/images/I/31HA8jjDIQL.jpg", "https://m.media-amazon.com/images/I/31oQ1vv89eL.jpg", "https://m.media-amazon.com/images/I/31EMrR08ObL.jpg", "https://m.media-amazon.com/images/I/314ZnV83R+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Cotton Balls & Swabs \u203a Cotton Pads & Rounds", "average_rating": "", "small_description": ["You can use the makeup pads for face, makeup removing, care and more. ", "Disposable and easy to use. ", "It is lightweight for portable carry. ", "Nice cotton pads for daily makeup, makeup removal, skin care or other wet applications. ", "It is effective to cleanse skin pores, remove excess oil. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AN9LBA48FE83R", "seller_name": "Joysoul", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08N16XC83", "category": "beauty", "query": "Makeup Remover", "page": 104, "small_description_old": "About this item You can use the makeup pads for face, makeup removing, care and more. Disposable and easy to use. It is lightweight for portable carry. Nice cotton pads for daily makeup, makeup removal, skin care or other wet applications. It is effective to cleanse skin pores, remove excess oil."}, {"name": "Amazon Brand - Happy Belly Garlic, Granulated, 3.9 Ounces", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 1.88 x 1.88 x 4.94 inches; 3.9 Ounces", "UPC\n \u200f": "\u200e\n 842379155833", "Manufacturer\n \u200f": "\u200e\n Amazon.com Services, Inc.", "ASIN\n \u200f": "\u200e\n B07VVGKHLH", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#3,388 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#6 in Garlic Powder & Seasonings", "#6 in Garlic Powder & Seasonings": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Happy Belly Store", "brand_url": "https://www.amazon.com/stores/HappyBelly/page/35E92FB8-2CD1-4FDA-87AE-5122F4A1A0F9?ref_=ast_bln", "full_description": "Happy Belly Granulated Garlic has a coarser texture than garlic powder which is finely ground. Rehydrate a small amount in water and substitute it for chopped fresh garlic in recipes. Use in stews, roasts, gravies, soups and sauces, pizza and pasta.", "pricing": "$3.22", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41zSGBDurtL.jpg", "https://m.media-amazon.com/images/I/415++g30-AL.jpg", "https://m.media-amazon.com/images/I/41zVRglJErL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Herbs, Spices & Seasonings \u203a Single Herbs & Spices \u203a Garlic", "average_rating": 4.7, "small_description": ["Has a coarser texture than garlic powder which is finely ground ", "Rehydrate a small amount in water and substitute it for chopped fresh garlic in recipes ", "1/4 tsp = 1 clove fresh garlic ", "Use in stews, roasts, gravies, soups and sauces, pizza and pasta ", "Pairs well with basil, chili, coriander, dill, ginger, italian herbs, parsley, and turmeric ", "Kosher certified ", "Satisfaction Guarantee: We're proud of our products. If you aren't satisfied, we'll refund you for any reason within a year of purchase. 1-877-485-0385 "], "total_reviews": 4210, "total_answered_questions": 7, "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07VVGKHLH", "category": "grocery", "query": "Meat Substitutes", "page": 80, "small_description_old": "About this item 3.9-ounces of Happy Belly Granulated Garlic Has a coarser texture than garlic powder which is finely ground Rehydrate a small amount in water and substitute it for chopped fresh garlic in recipes 1/4 tsp = 1 clove fresh garlic Use in stews, roasts, gravies, soups and sauces, pizza and pasta Pairs well with basil, chili, coriander, dill, ginger, italian herbs, parsley, and turmeric Kosher certified \n Satisfaction Guarantee: We're proud of our products. If you aren't satisfied, we'll refund you for any reason within a year of purchase. 1-877-485-0385An Amazon brandShow more"}, {"name": "PUMA Men's Amplified Hooded Fleece Jacket", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n October 15, 2019", "Manufacturer\n \u200f": "\u200e\n PUMA", "ASIN\n \u200f": "\u200e\n B07Z5Q6CS9", "Best Sellers Rank": "#1,153,207 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#307 in Men's Denim Jackets", "#307 in Men's Denim Jackets": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the PUMA Store", "brand_url": "https://www.amazon.com/stores/PUMA/page/00F6067E-333B-41A4-AC3D-7B2FA69EA1AB?ref_=ast_bln", "full_description": "No.1 logo rubber print; Printed tape on the sleeves with repeated no. 1 logo; jersey lined two panel hood with drawcord for an adjustable fit; full zip closure; kangaroo pocket for storage solutions; self fabric cuffs & waistband; Regular Fit; made with cotton from better cotton initiative;", "pricing": "$55.00", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41bcJ84l60L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Jackets & Coats \u203a Lightweight Jackets \u203a Denim", "average_rating": 4.7, "small_description": ["Zipper closure ", "Amplified hooded jacket fly "], "total_reviews": 98, "total_answered_questions": "", "customization_options": {"Size": null, "Color": null}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07V3WXX85", "category": "fashion", "query": "Men's Jackets & Coats", "page": 76, "small_description_old": "66% Cotton, 34% Polyester Imported Zipper closure Machine Wash Amplified hooded jacket fly Fleece"}, {"name": "TV Stand for 70 Inch TV Entertainment Center Stand TV Stand with Storage for TV Console Cabinet Media Cable Box Gaming 70 inch TV Stands for Bedroom Living Room", "product_information": {"ASIN": "B09S6S7LG1", "Best Sellers Rank": ["#2,287,721 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,991 in Television Stands"], "Date First Available": "February 10, 2022"}, "brand": "Brand: Kennkari", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Kennkari", "full_description": "Product Information Item Code\u00a0\u00a0 \u00a0W33136070 Product Type\u00a0\u00a0 \u00a0General Item Product Name\u00a0\u00a0 \u00a0TV stand Modern Design For Living Room Main Color\u00a0\u00a0 \u00a0Walnut Main Material\u00a0\u00a0 \u00a0MDF Product Dimensions Assembled Length (in.)\u00a0\u00a0 \u00a063.00 Assembled Width (in.)\u00a0\u00a0 \u00a015.75 Assembled Height (in.)\u00a0\u00a0 \u00a013.78 Weight (lbs)\u00a0\u00a0 \u00a056.88 Package Size Length (in.)\u00a0\u00a0 \u00a067.72 Width (in.)\u00a0\u00a0 \u00a019.88 Height (in.)\u00a0\u00a0 \u00a05.32 Weight (lbs)\u00a0\u00a0 \u00a061.30", "pricing": "$169.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41yVbifjURL.jpg", "https://m.media-amazon.com/images/I/31-uRVifMXL.jpg", "https://m.media-amazon.com/images/I/41NlGFfAQ2L.jpg", "https://m.media-amazon.com/images/I/31FoFpj9FVL.jpg", "https://m.media-amazon.com/images/I/31OLmNwLd+L.jpg", "https://m.media-amazon.com/images/I/41digZYWykL.jpg", "https://m.media-amazon.com/images/I/51NrIsLhO3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a TV & Media Furniture \u203a Television Stands & Entertainment Centers", "average_rating": "", "small_description": ["\ud83d\udcfa Up to 70 Inch TV Screen - Universal TV stand for 70 inch, 65+ inch, 65 inch, 60 inch tv stand. Wood tv stand can be suitable for all types of televisions such as wall-mounted or vertical type. Dimensions: 63\" W x 15.8\" D x13.8\" H. ", "\ud83d\udc4c Easy Cord Management - Crafted with 3 holes at the back of the cupboard for an easy cord management. ", "\ud83c\udfe0 Large Storage Space - Gaming TV stand with large storage and open shelves can be used to store game consoles, media, computer consoles, magazines, secretaries, daily necessities, remote controls and decorative ornaments. Make full use of the space, keep your living room clean and tidy, and prevent you from missing items. ", "\ud83d\udcaa High-Gloss & Rugged & Durable - TV entertainment stand is made of High quality P2 grade particleboard, Mirrored tv stand is scratch proof and waterproof, also easy to maintain. The modern high-gloss and minimalist structure also provides great stability and fashion, with up to 110 pounds bearing capacity. ", "\ud83d\udd28 Worry-Free Assembly - Comes with all necessary hardware and an illustrated instruction manual to help you set up this nightstand quickly and without difficulties. Please feel free to contact us if you encounter any problems during the assembly process. We will provide the best solution online 24 hours all day. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09S6RKJHD/ref=twister_B09S6SY9PG?_encoding=UTF8&psc=1", "value": "Black Tv Stand for 70 Inch Tv", "price_string": "$169.99", "price": 169.99, "image": "https://m.media-amazon.com/images/I/41qJb8zLBeL.jpg"}, {"is_selected": true, "url": null, "value": "Walnut Tv Stand for 70 Inch Tv", "price_string": "$169.99", "price": 169.99, "image": "https://m.media-amazon.com/images/I/41yVbifjURL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T79Y2ST/ref=twister_B09S6SY9PG?_encoding=UTF8&psc=1", "value": "Wood Grains Tv Stand for 70 Inch Tv", "price_string": "$169.99", "price": 169.99, "image": "https://m.media-amazon.com/images/I/41K9sEx8MAL.jpg"}]}, "seller_id": "A2XJILK0MB2JTH", "seller_name": "winbangfreestyle", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S6S7LG1", "category": "garden", "query": "TV Stands", "page": 175, "small_description_old": "About this item \ud83d\udcfa Up to 70 Inch TV Screen - Universal TV stand for 70 inch, 65+ inch, 65 inch, 60 inch tv stand. Wood tv stand can be suitable for all types of televisions such as wall-mounted or vertical type. Dimensions: 63\" W x 15.8\" D x13.8\" H. \ud83d\udc4c Easy Cord Management - Crafted with 3 holes at the back of the cupboard for an easy cord management. \ud83c\udfe0 Large Storage Space - Gaming TV stand with large storage and open shelves can be used to store game consoles, media, computer consoles, magazines, secretaries, daily necessities, remote controls and decorative ornaments. Make full use of the space, keep your living room clean and tidy, and prevent you from missing items. \ud83d\udcaa High-Gloss & Rugged & Durable - TV entertainment stand is made of High quality P2 grade particleboard, Mirrored tv stand is scratch proof and waterproof, also easy to maintain. The modern high-gloss and minimalist structure also provides great stability and fashion, with up to 110 pounds bearing capacity. \ud83d\udd28 Worry-Free Assembly - Comes with all necessary hardware and an illustrated instruction manual to help you set up this nightstand quickly and without difficulties. Please feel free to contact us if you encounter any problems during the assembly process. We will provide the best solution online 24 hours all day. \n \u203a See more product details"}, {"name": "Hot DIY Parts Consumer Electronics Phone Signal Enhancement Stickers 3G 4G 5G Antenna Booster Stickers Mobile Phone(Style F)", "product_information": {"ASIN": "B09T2MW12R", "Item model number": "AM8BX0B5RJUS", "Date First Available": "February 22, 2022", "Manufacturer": "yrui", "Country of Origin": "China"}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_dp_s_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "Weight: 18gHuge impacts - like having a 4 foot antenna on your cell phone.Model: 12 StyleImproves reception, reduce static in boats, elevators, cars, buildings, tunnels, and mountains.Type: signal enhancementWorks on any analog, digital, and tri-band phones.Eliminate dropped calls.Easy to install, simply peel and stick to the inside of your battery compartment.Package Includes:1 PC signal enhancement", "pricing": "$1.24", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21WMmgjYoML.jpg", "https://m.media-amazon.com/images/I/51hOsWOsgML.jpg", "https://m.media-amazon.com/images/I/51y1ayZD3KL.jpg", "https://m.media-amazon.com/images/I/51hGwVhvKWL.jpg", "https://m.media-amazon.com/images/I/51VyTz9-OzL.jpg", "https://m.media-amazon.com/images/I/51CPGrfdBqL.jpg", "https://m.media-amazon.com/images/I/51pMisR9K7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Signal Boosters", "average_rating": "", "small_description": ["Huge impacts - like having a 4 foot antenna on your cell phone. ", "Improves reception, reduce static in boats, elevators, cars, buildings, tunnels, and mountains. ", "Works on any analog, digital, and tri-band phones. ", "Eliminate dropped calls. ", "Easy to install, simply peel and stick to the inside of your battery compartment. "], "total_reviews": "", "total_answered_questions": "", "model": "AM8BX0B5RJUS", "customization_options": {"Size": null}, "seller_id": "A3J1XLUKYHSX0I", "seller_name": "zhengyulai", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09T2MW12R", "category": "electronics", "query": "Signal Boosters", "page": 291, "small_description_old": "Huge impacts - like having a 4 foot antenna on your cell phone. Improves reception, reduce static in boats, elevators, cars, buildings, tunnels, and mountains. Works on any analog, digital, and tri-band phones. Eliminate dropped calls. Easy to install, simply peel and stick to the inside of your battery compartment."}, {"name": "Encased Heavy Duty Moto G Power Case (2020 Rebel Armor) Military Grade Full Body Rugged Cover (Motorola G Power) Black", "product_information": {"Product Dimensions": "3 x 0.5 x 6.5 inches", "Item Weight": "0.81 ounces", "ASIN": "B089ZJ7H1N", "Item model number": "RB119BK", "Customer Reviews": {"ratings_count": 568, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#91,425 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #43,450 in Cell Phone Basic Cases"], "OS": "Motorola", "Special Features": "Wireless Charging Compatible", "Other display features": "Wireless", "Form Factor": "Drop in", "Colour": "Black", "Manufacturer": "Encased for Moto G Power 2020", "Date First Available": "June 10, 2020"}, "brand": "Visit the Encased Store", "brand_url": "https://www.amazon.com/stores/Encased/page/C99301C1-7FAB-4FB8-A16E-505D346A863B?ref_=ast_bln", "full_description": "Rebel Series - Designed for Moto G Power 2020 Engineered to protect at all costs.The Rebel is built to exceed tough military impact standards, the Rebel case has been 10FT impact testedto provide you peace of mind when you need it most.Ergonomic DesignWe designed the Rebel Series with a reasonably slim profile to retain the phone's slim shape making it both comfortable and easy to hold.Installation is a quick and easy affair thanks to it's simple drop-in design. Flaunt great style and military protection with theRebel Series case for your new Moto G Power.Meet EncasedWe stand for practical functionality, and quality. At Encased we are committed to bring our customers a great experience with every product.Our products are proudly trusted by the Dept of Defense, NASA, the US Marines, Army, Navy and hundreds of state and local Policeand Fire departments. Invest in quality and trust with confidence.KEY FEATURES:- Wireless charging compatible, will not interfere with charging pads and stands- Tough-as-hell, Rebel cases proudly features a 10FT impact rating- Easy installation with a drop-in design- Responsive easy-press buttons retain the original tactile click & button feel- Fully bonded 2 layer structure for extreme durabilityInvest with confidence in protection that comes backed by our Lifetime Guarantee..", "pricing": "$17.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/418C1Nu9uAL.jpg", "https://m.media-amazon.com/images/I/51BMySwRM-L.jpg", "https://m.media-amazon.com/images/I/41d4B5SEk-L.jpg", "https://m.media-amazon.com/images/I/4124xiCkScL.jpg", "https://m.media-amazon.com/images/I/516diF3fWLL.jpg", "https://m.media-amazon.com/images/I/41XcNmV6CjL.jpg", "https://m.media-amazon.com/images/I/31LNAURhp3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Cases, Holsters & Sleeves \u203a Basic Cases", "average_rating": 4.6, "small_description": ["Engineered to protect your Moto G Power 2020 at all costs The Rebel Series is the case you want when protection is your #1 priority (Designed for\u00a0MOTO G Power 2020 Model only Will NOT fit Moto G Power 2021 Model) ", "The robust 10ft impact rating surpasses well known brands charging 3x the price ", "Enjoy responsive buttons and a slim overall design - guaranteed not to interfere with your phone's wireless charging features ", "Installation is easy with a simple drop-in design ", "Encased cases are proudly trusted by the Dept of Defense, NASA, US Marines, Navy, and hundreds of state and federal departments Invest in quality - backed by our Lifetime Guarantee "], "total_reviews": 568, "total_answered_questions": 14, "model": "RB119BK", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$17.99", "price": 17.99, "image": "https://m.media-amazon.com/images/I/418C1Nu9uAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089YXYMFD/ref=twister_B08QZXZVYR?_encoding=UTF8&psc=1", "value": "Purple", "price_string": "$17.74", "price": 17.74, "image": "https://m.media-amazon.com/images/I/41WkjxCNiNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089ZQXWCN/ref=twister_B08QZXZVYR?_encoding=UTF8&psc=1", "value": "White", "price_string": "$17.99", "price": 17.99, "image": "https://m.media-amazon.com/images/I/41MclpehWvL.jpg"}]}, "seller_id": "A3JIA99F8YWL7D", "seller_name": "Encased", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B089ZJ7H1N", "category": "electronics", "query": "Power Protection", "page": 47, "small_description_old": "About this item Engineered to protect your Moto G Power 2020 at all costs The Rebel Series is the case you want when protection is your #1 priority (Designed for\u00a0MOTO G Power 2020 Model only Will NOT fit Moto G Power 2021 Model) The robust 10ft impact rating surpasses well known brands charging 3x the price Enjoy responsive buttons and a slim overall design - guaranteed not to interfere with your phone's wireless charging features Installation is easy with a simple drop-in design Encased cases are proudly trusted by the Dept of Defense, NASA, US Marines, Navy, and hundreds of state and federal departments Invest in quality - backed by our Lifetime Guarantee"}, {"name": "EttelLut Joggers Exercise Yoga Light Sweatpants Pajama Activewear Pockets Pants with Drawstring", "product_information": {"Item model number\n \u200f": "\u200e\n SG3253", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n February 28, 2020", "ASIN\n \u200f": "\u200e\n B0859PH412", "Best Sellers Rank": "#1,025,450 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,405 in Women's Sweatpants", "#1,405 in Women's Sweatpants": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the EttelLut Store", "brand_url": "https://www.amazon.com/stores/EttelLut/page/3600BB8D-A8FE-40BB-AF42-411F17740493?ref_=ast_bln", "full_description": "", "pricing": "$16.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31Ht5UFMoRL.jpg", "https://m.media-amazon.com/images/I/31A7yzlOUbL.jpg", "https://m.media-amazon.com/images/I/31b8YECHfJL.jpg", "https://m.media-amazon.com/images/I/31FVjRQQ1VL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Pants \u203a Sweatpants", "average_rating": 4.5, "small_description": ["Imported ", "Pull On closure ", "Comfortable And Stylish. Unlike other pants, these Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring are Mid/High-rise stretchy fit, side pockets, and adjustable waist drawstring offers added comfort. You can wear them on your daily workout or other purposes. It's suitable for the beach, lounge, exercise, and regular occasions. ", "Fashionable Outfit. These fabulous Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring are easy to care and wash. Make your daily workout outfit more appealing with these comfy pants. You can also mix and match them with your favorite shirt and shoes, and you are all set. ", "Made From High Quality Materials. These pants are a good fit for daily usage because our Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring are ready with premium quality material of 62% Cotton 33% Polyester 5% Spandex. Be extra fashionable while doing your daily routine exercise with these high quality pants. ", "Comes In Different Colors. If you are looking for a specific color, these Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring are available in solid basic shades of Black, Navy, H Gray, Charcoal, Red, Orange and Lime. You can easily match this to any of your outfits. ", "Fits Any Sizes. These Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring come in the sizes of S, M, L, and XL. To help you get the best fit size, please take a look at our SIZE CHART below \"Product Description\" before you purchase. These joggers feature a mid-rise with plenty of slouch, making them great for sleeping or lounging around the house. "], "total_reviews": 164, "total_answered_questions": "", "customization_options": {"Size": null, "Color": null}, "seller_id": "AM4EO8RJFZGA2", "seller_name": "EttelLut", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0859PP21L", "category": "fashion", "query": "Women's Activewear", "page": 184, "small_description_old": "Comfortable And Stylish. Unlike other pants, these Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring are Mid/High-rise stretchy fit, side pockets, and adjustable waist drawstring offers added comfort. You can wear them on your daily workout or other purposes. It's suitable for the beach, lounge, exercise, and regular occasions. Fashionable Outfit. These fabulous Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring are easy to care and wash. Make your daily workout outfit more appealing with these comfy pants. You can also mix and match them with your favorite shirt and shoes, and you are all set. Made From High Quality Materials. These pants are a good fit for daily usage because our Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring are ready with premium quality material of 62% Cotton 33% Polyester 5% Spandex. Be extra fashionable while doing your daily routine exercise with these high quality pants. Comes In Different Colors. If you are looking for a specific color, these Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring are available in solid basic shades of Black, Navy, H Gray, Charcoal, Red, Orange and Lime. You can easily match this to any of your outfits. Fits Any Sizes. These Joggers Exercise Yoga Sweatpants Pajama Activewear Pockets Pants with Drawstring come in the sizes of S, M, L, and XL. To help you get the best fit size, please take a look at our SIZE CHART below \"Product Description\" before you purchase. These joggers feature a mid-rise with plenty of slouch, making them great for sleeping or lounging around the house."}, {"name": "SHISEIDO Professional - The Hair Care Adenovital - Scalp Treatment - Thinning Hair - 130g x 2", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 7.95 x 6.85 x 1.81 inches; 1.46 Pounds", "Manufacturer\n \u200f": "\u200e\n Shiseido", "ASIN\n \u200f": "\u200e\n B00ECNSAXU", "Best Sellers Rank": "#868,157 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#269,904 in Hair Care Products", "#269,904 in Hair Care Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Shiseido", "brand_url": "https://www.amazon.com/Shiseido/b/ref=bl_dp_s_web_2600454011?ie=UTF8&node=2600454011&field-lbr_brands_browse-bin=Shiseido", "full_description": "Shiseido Adenovital Scalp Treatment (Thinning Hair) has the following features:Contains Shiseido's original ingredient, Adenosine, and also Ononis Extract, Japanese pepper extract, Ashitaba extract and Lingzhi extract.Replenishes the scalp with moisture to optimize the scalp condition for Scalp Essence V to follow. Adenosine works directly on the hair papilla, producing \u201cgrowth factors\u201d that are essential to preventing hair loss. Lingzhi extract helps reactivate color of cells and prevent white hair.", "pricing": "$59.90", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41c468BdvvL.jpg", "https://m.media-amazon.com/images/I/31XRlsoahrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care", "average_rating": 3.8, "small_description": [""], "total_reviews": 54, "total_answered_questions": "", "customization_options": "", "seller_id": "A6BYMP170943O", "seller_name": "Tokyo-Japan Shop", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00ECNSAXU", "category": "beauty", "query": "Scalp Treatments", "page": 33, "small_description_old": ""}, {"name": "Mineral-Rich Magnetic Face Mask,Pore Cleansing Removes Skin Impurities with Iron Based Skin Revitalising Magnetic Age-Defier Formula 50ml", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 3 x 2 x 6 inches; 9.14 Ounces", "UPC\n \u200f": "\u200e\n 705300765962 705300766044", "ASIN\n \u200f": "\u200e\n B06ZYJ4JHT", "Best Sellers Rank": "#132,147 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,069 in Facial Masks", "#2,069 in Facial Masks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: AL'IVER", "brand_url": "https://www.amazon.com/ALIVER/b/ref=bl_dp_s_web_16598374011?ie=UTF8&node=16598374011&field-lbr_brands_browse-bin=AL%27IVER", "full_description": "", "pricing": "$15.52", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41hc1i5FBFL.jpg", "https://m.media-amazon.com/images/I/51E7KgKq2RL.jpg", "https://m.media-amazon.com/images/I/412RpiMW1TL.jpg", "https://m.media-amazon.com/images/I/41HNnhGG7ZL.jpg", "https://m.media-amazon.com/images/I/51CMCgW81lL.jpg", "https://m.media-amazon.com/images/I/51YI1RxEs6L.jpg", "https://m.media-amazon.com/images/I/5156RKpujuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Treatments & Masks \u203a Masks", "average_rating": 4.3, "small_description": [""], "total_reviews": 2111, "total_answered_questions": 7, "customization_options": "", "seller_id": "A1MFRJCMIHC4LM", "seller_name": "sefudun", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B06ZYJ4JHT", "category": "beauty", "query": "Face Care", "page": 71, "small_description_old": ""}, {"name": "Marvel Infinity War Thanos Streetwear Poster Graphic Hoodie", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12 x 12 x 5 inches; 1.3 Pounds", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n April 5, 2018", "Manufacturer\n \u200f": "\u200e\n Marvel", "ASIN\n \u200f": "\u200e\n B07Q48JVT8", "": ""}, "brand": "Brand: Marvel", "brand_url": "https://www.amazon.com/Marvel/b/ref=bl_sl_s_ap_web_8160907011?ie=UTF8&node=8160907011&field-lbr_brands_browse-bin=Marvel", "full_description": "Team up and suit up to take on Thanos and his minions. You'll find the perfect gear within this collection of Officially Licensed Avengers: Infinity War tee shirts, sweatshirts, and hoodies from Marvel.", "pricing": "$47.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/B1i3u9-Q-KS.png", "https://m.media-amazon.com/images/I/318ERPG8FUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Hoodies", "average_rating": "", "small_description": ["Solid colors: 80% Cotton, 20% Polyester; Heather Grey: 78% Cotton, 22% Poly; Dark Heather: 50% Cotton, 50% Polyester ", "Imported ", "Machine wash cold with like colors, dry low heat ", "Officially Licensed Marvel Apparel ", "18MARF00088A ", "8.5 oz, Classic fit, Twill-taped neck "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Fit Type": null, "Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Unisex Small", "asin": "B078RXQC7K"}, {"is_selected": false, "is_available": true, "value": "Unisex Medium", "asin": "B078RX4FQ4"}, {"is_selected": false, "is_available": true, "value": "Unisex Large", "asin": "B078RV2JNJ"}, {"is_selected": false, "is_available": true, "value": "Unisex XL", "asin": "B078RXL85P"}, {"is_selected": false, "is_available": true, "value": "Unisex 2XL", "asin": "B078RYQ4ZY"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07Q48JVT8", "category": "fashion", "query": "Women's Fashion Hoodies & Sweatshirts", "page": 126, "small_description_old": "Solid colors: 80% Cotton, 20% Polyester; Heather Grey: 78% Cotton, 22% Poly; Dark Heather: 50% Cotton, 50% Polyester Imported Machine wash cold with like colors, dry low heat Officially Licensed Marvel Apparel 18MARF00088A 8.5 oz, Classic fit, Twill-taped neck"}, {"name": "Nexera Liber-T 3 Piece Office Set in White with Desk Panel", "product_information": {"Item Weight": "\u200e152 pounds", "ASIN": "B00V0OCMXS", "Customer Reviews": {"ratings_count": 16, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#2,237,163 in Home & Kitchen (See Top 100 in Home & Kitchen) #7,979 in Home Office Desks"], "Date First Available": "March 21, 2015"}, "brand": "Brand: Nexera", "brand_url": "https://www.amazon.com/Nexera/b/ref=bl_dp_s_web_3036787011?ie=UTF8&node=3036787011&field-lbr_brands_browse-bin=Nexera", "full_description": "", "pricing": "$490.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/51HN3iH76ZL.jpg", "https://m.media-amazon.com/images/I/51HN3iH76ZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Desks", "average_rating": 4, "small_description": ["2 catch-all drawers on metal slides ", "1 legal size filing drawer on heavy duty full extension slides giving full access to files at the back ", "Can be paired with Liber-T Reversible Desk Panel to create a desk set ", "Designed and made in Canada with CARB II/FSC Certified particle board and MDF materials. Ships in 24-48H from order date. Assembly required.. "], "total_reviews": 16, "total_answered_questions": "", "customization_options": "", "seller_id": "A1QFM750CLWIW0", "seller_name": "Cymax", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00V0OCMXS", "category": "garden", "query": "Desks", "page": 207, "small_description_old": "About this item 2 catch-all drawers on metal slides 1 legal size filing drawer on heavy duty full extension slides giving full access to files at the back Can be paired with Liber-T Reversible Desk Panel to create a desk set Designed and made in Canada with CARB II/FSC Certified particle board and MDF materials. Ships in 24-48H from order date. Assembly required.. \n \u203a See more product details"}, {"name": "goodland 160 LED Closet Lights Motion Sensor Under Cabinet Lights Indoor Wireless Lighting 3600mAh Battery Powered Light Bar Dimmable Rechargeable Closet Light for Kitchen, Wardrobe, Stairs(2 Pack)", "product_information": {"Manufacturer": "\u200eGoodland", "Item Weight": "\u200e1.06 pounds", "Product Dimensions": "\u200e15.35 x 1.38 x 0.43 inches", "Batteries": "\u200e2 Lithium Polymer batteries required. (included)", "Size": "\u200e2 Pack", "Color": "\u200eSilver", "Style": "\u200eClassic", "Material": "\u200eAluminum, Polycarbonate", "Shape": "\u200eStraight", "Power Source": "\u200e3600mAh battery-powered", "Voltage": "\u200e5 Volts", "Wattage": "\u200e3 watts", "Installation Method": "\u200eMagnetic", "Type of Bulb": "\u200eLED", "Luminous Flux": "\u200e330 Lumen", "Mounting Type": "\u200eMagnets", "Switch Style": "\u200eMagnetic, Touch", "Special Features": "\u200eWireless, Motion sensor, Dimmable, USB Rechargeable, Magnetic, Stepless Dimming, 3600mAh Battery Powered, 3 Color Temperatures, 4 Switch Modes", "Usage": "\u200eLED under cabinet lighting, closet lighting, Wardrobe lighting, stair lighting, corridor lighting, reading lighting, garage lighting, camping lighting, etc.", "Batteries Included?": "\u200eYes", "Batteries Required?": "\u200eYes", "Battery Cell Type": "\u200eLithium Ion", "ASIN": "B08XWT6RND", "Customer Reviews": {"ratings_count": 308, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#12,093 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #109 in Under-Counter Light Fixtures"], "Date First Available": "March 3, 2021"}, "brand": "Visit the goodland Store", "brand_url": "https://www.amazon.com/stores/goodland/page/CFC57165-422F-47F1-81E6-F5D61003E879?ref_=ast_bln", "full_description": "", "pricing": "$37.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41i7TKTR5tL.jpg", "https://m.media-amazon.com/images/I/51mv9BE02TL.jpg", "https://m.media-amazon.com/images/I/51NYFGmR2jL.jpg", "https://m.media-amazon.com/images/I/51Wb-ZCweOL.jpg", "https://m.media-amazon.com/images/I/51-zMzSiT-L.jpg", "https://m.media-amazon.com/images/I/517QGSXsqmL.jpg", "https://m.media-amazon.com/images/I/51ncD-cO2TL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Under-Cabinet Lights", "average_rating": 4.4, "small_description": ["\u3010 BRIGHT & DIMMABLE \u3011-- Equipped with 160 energy saving LEDs, led closet lights provide 3 color temperatures ( cool white, warm white, natural white) to illuminate your home. You can adjust the intensity of the closet light arbitrarily through the stepless dimming function. ", "\u3010 4 SWITCH MODES \u3011-- MODE 1: Always On Mode, MODE 2: All Day Sensing Mode ( Red indicator light flash 6s), MODE 3: Night Sensing Mode ( Green indicator light flash 6s), MODE 4: OFF. Click the S2 button to change the mode and long press the S2 button to control on/off. ", "\u3010 EASY TO INSTALL\u3011-- Paste the magnetic strip to the place you want to fix, magnetically absorb the led closet light motion activated, and you are done. Couldn't be easier to install and remove. Equipped with 3600mAh rechargeable battery, rechargeable closet light can be charged and reused many times, which is more efficient and environmentally friendly. ", "\u3010 MULTIPLE APPLICATIONS\u3011 -- Under cabinet lights are suitable for various occasions, such as under cabinet lighting, closet lighting, under counter lighting, pantry lighting, corridor lighting, wardrobe lighting, staircase lighting, basement lighting, loft lighting, garage lighting, etc. ", "\u3010 HASSLE FREE SERVICE \u3011-- We promise each closet led motion sensor light was strictly quality checked before shipping. We provide you with 24 month warranty and free replacement service. Please feel free to contact us via amazon if there are any product issue. "], "total_reviews": 308, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09H4G2K5Q/ref=twister_B08XWPHLCQ?_encoding=UTF8&psc=1", "value": "1 Pack", "price_string": "$26.99", "price": 26.99, "image": null}, {"is_selected": true, "url": null, "value": "2 Pack", "price_string": "$37.99", "price": 37.99, "image": null}]}, "seller_id": "ALK0Y4WB9PEWC", "seller_name": "Goodland Tec Co.,Ltd", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08XWT6RND", "category": "garden", "query": "Cabinets", "page": 279, "small_description_old": "About this item\n \n\u3010 BRIGHT & DIMMABLE \u3011-- Equipped with 160 energy saving LEDs, led closet lights provide 3 color temperatures ( cool white, warm white, natural white) to illuminate your home. You can adjust the intensity of the closet light arbitrarily through the stepless dimming function. \u3010 4 SWITCH MODES \u3011-- MODE 1: Always On Mode, MODE 2: All Day Sensing Mode ( Red indicator light flash 6s), MODE 3: Night Sensing Mode ( Green indicator light flash 6s), MODE 4: OFF. Click the S2 button to change the mode and long press the S2 button to control on/off. \u3010 EASY TO INSTALL\u3011-- Paste the magnetic strip to the place you want to fix, magnetically absorb the led closet light motion activated, and you are done. Couldn't be easier to install and remove. Equipped with 3600mAh rechargeable battery, rechargeable closet light can be charged and reused many times, which is more efficient and environmentally friendly. \u3010 MULTIPLE APPLICATIONS\u3011 -- Under cabinet lights are suitable for various occasions, such as under cabinet lighting, closet lighting, under counter lighting, pantry lighting, corridor lighting, wardrobe lighting, staircase lighting, basement lighting, loft lighting, garage lighting, etc. \u3010 HASSLE FREE SERVICE \u3011-- We promise each closet led motion sensor light was strictly quality checked before shipping. We provide you with 24 month warranty and free replacement service. Please feel free to contact us via amazon if there are any product issue. \n \u203a See more product details"}, {"name": "Guy Harvey Ladies Fishing Short", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.24 x 5.2 x 1.81 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n April 10, 2018", "ASIN\n \u200f": "\u200e\n B005WXS61A", "Best Sellers Rank": "#1,834,310 in Sports & Outdoors (See Top 100 in Sports & Outdoors)#269,579 in Camping & Hiking Equipment #293,344 in Hiking Clothing #3,756,505 in Men's Fashion", "#269,579 in Camping & Hiking Equipment": "", "#293,344 in Hiking Clothing": "", "#3,756,505 in Men's Fashion": ""}, "brand": "Visit the Guy Harvey Store", "brand_url": "https://www.amazon.com/stores/GuyHarvey/page/89D7D5FC-014D-4F54-8C3B-0418DE1A90E3?ref_=ast_bln", "full_description": "", "pricing": "$29.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51kXDHDnDjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Sports & Outdoors \u203a Outdoor Recreation \u203a Camping & Hiking", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "16", "asin": "B005WXS61A"}, {"is_selected": false, "is_available": false, "value": "16\"", "asin": "B005SUJL52"}], "Color": [{"is_selected": true, "url": null, "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51kXDHDnDjL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B005SUJL52/ref=twister_B09823SJZW", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41uDt2P1NEL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B005WXS61A", "category": "fashion", "query": "Men's Shorts", "page": 126, "small_description_old": ""}, {"name": "Acedre Evil Eye Key Chain Coloful Clay Phone Charms Beaded Phone Chains Indie Accessory for Women and Girls (A-Evil Eye)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4.13 x 2.56 x 0.24 inches; 0.42 Ounces", "Manufacturer\n \u200f": "\u200e\n Acedre", "ASIN\n \u200f": "\u200e\n B099F5HHZK", "Best Sellers Rank": "#29,646 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories)#59 in Cell Phone Charms", "#59 in Cell Phone Charms": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the ACEDRE Store", "brand_url": "https://www.amazon.com/stores/HOME/page/D6224A78-6BE9-45B6-93FB-79276096F3E3?ref_=ast_bln", "full_description": "", "pricing": "$11.26", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41vUQJwdiBS.jpg", "https://m.media-amazon.com/images/I/51Dg3sEUD2S.jpg", "https://m.media-amazon.com/images/I/51knU1RifaS.jpg", "https://m.media-amazon.com/images/I/41HWYjqx2+S.jpg", "https://m.media-amazon.com/images/I/61X7nEkjjWS.jpg", "https://m.media-amazon.com/images/I/31NmD1IhJfS.jpg", "https://m.media-amazon.com/images/I/51vYtK-uAtS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a D\u00e9cor \u203a Phone Charms", "average_rating": 4.5, "small_description": ["Evil Eye Phone Charm is is made of high-quality acrylic and soft ceramic artificial beads,strong and firm, not easy to break. ", "Key Chains is strong enough to withstand items such as phones, cameras, MP3, keychains, ID cards, U disks, iPods, flashes, lightweight electronic accessories, handbags and other items. ", "Anti Lost Phone Lanyard Strap is not only a simple lanyard, but also a good daily accessory, which can be matched with aesthetic y2k 90s clothes to make you highlight the youthful atmosphere. ", "Phone Strap with cute and trendy design, it's perfect for this Summer as gift for your friends, peers, teachers, lover and yourself! ", "Do your phone beauty with Indie Accessory.Don\u2019t hesitate to buy it,it is your style. "], "total_reviews": 32, "total_answered_questions": "", "customization_options": {"Pattern Name": [{"is_selected": true, "url": null, "value": "A-Evil Eye", "price_string": "$11.26", "price": 11.26, "image": "https://m.media-amazon.com/images/I/41vUQJwdiBS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099F2W6PW/ref=twister_B09F613H3M?_encoding=UTF8&psc=1", "value": "B-Evil Eye", "price_string": "$9.16", "price": 9.16, "image": "https://m.media-amazon.com/images/I/41S+Zm3AtTS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099FKBKKX/ref=twister_B09F613H3M?_encoding=UTF8&psc=1", "value": "C-Smiley Face", "price_string": "$9.16", "price": 9.16, "image": "https://m.media-amazon.com/images/I/41q30fMk+OS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099F2LB4L/ref=twister_B09F613H3M?_encoding=UTF8&psc=1", "value": "D-Butterfly", "price_string": "$9.16", "price": 9.16, "image": "https://m.media-amazon.com/images/I/5142mqjQ-BS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099F4RL21/ref=twister_B09F613H3M?_encoding=UTF8&psc=1", "value": "E-Letter LOVE", "price_string": "$9.26", "price": 9.26, "image": "https://m.media-amazon.com/images/I/41pNB4PavQS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099DZM5V9/ref=twister_B09F613H3M?_encoding=UTF8&psc=1", "value": "F-Blue Star", "price_string": "$8.16", "price": 8.16, "image": "https://m.media-amazon.com/images/I/41m4AnMWPrS.jpg"}]}, "seller_id": "A1T3N0MO8U2HJF", "seller_name": "Acedre", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B099F5HHZK", "category": "electronics", "query": "Cell Phones", "page": 232, "small_description_old": "Evil Eye Phone Charm is is made of high-quality acrylic and soft ceramic artificial beads,strong and firm, not easy to break. Key Chains is strong enough to withstand items such as phones, cameras, MP3, keychains, ID cards, U disks, iPods, flashes, lightweight electronic accessories, handbags and other items. Anti Lost Phone Lanyard Strap is not only a simple lanyard, but also a good daily accessory, which can be matched with aesthetic y2k 90s clothes to make you highlight the youthful atmosphere. Phone Strap with cute and trendy design, it's perfect for this Summer as gift for your friends, peers, teachers, lover and yourself! Do your phone beauty with Indie Accessory.Don\u2019t hesitate to buy it,it is your style."}, {"name": "artnaturals Black Castor Oil Conditioner \u2013 (16 Fl Oz / 473ml) \u2013 Strengthen, Grow and Restore \u2013 Jamaican Castor \u2013 For Color Treated Hair", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 8 x 2.5 x 2.5 inches; 1 Pounds", "Item model number\n \u200f": "\u200e\n ANHA-1616", "UPC\n \u200f": "\u200e\n 816820024726", "Manufacturer\n \u200f": "\u200e\n ArtNaturals", "ASIN\n \u200f": "\u200e\n B07BFLJQCX", "Best Sellers Rank": "#198,698 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#4,015 in Hair Conditioner", "#4,015 in Hair Conditioner": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Artnaturals Store", "brand_url": "https://www.amazon.com/stores/ArtNaturals/page/CDF6E0E1-F305-4C54-966A-45F25FB3E29B?ref_=ast_bln", "full_description": "", "pricing": "$11.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/312CrK9iBNL.jpg", "https://m.media-amazon.com/images/I/51nyJ+UiqKL.jpg", "https://m.media-amazon.com/images/I/41G-z6rGMIL.jpg", "https://m.media-amazon.com/images/I/51POmPpljmL.jpg", "https://m.media-amazon.com/images/I/41+u5KN4WNL.jpg", "https://m.media-amazon.com/images/I/51AxpBaoVFL.jpg", "https://m.media-amazon.com/images/I/A1ITbLPv35L.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Conditioners", "average_rating": 4.4, "small_description": ["ArtNaturals Black Castor Oil Conditioner is specially formulated to strengthen, hydrate and help promote revitalization of dry, damaged, color-treated hair. ", "The Conditioner\u2019s formula helps remove excess product buildup, balances pH levels, and stimulates the scalp\u2019s circulation, as it deeply moisturizes hair, re-texturing and smoothing. ", "Black castor oil is noted for its ability to relieve dryness, help banish dandruff, and deeply hydrate both hair shafts and scalp. ", "Coconut oil hydrates without leaving hair greasy, nettle extract works to lessen hair loss as it promotes shine, and thyme extract gently cleanses as it stimulates scalp circulation and healthy regrowth. ", "Our Black Castor Oil Conditioner is also specially recommended for curly hair, as it smoothes and soothes hair that is naturally dry. "], "total_reviews": 40, "total_answered_questions": "", "customization_options": "", "seller_id": "A3B330QDBVKV9M", "seller_name": "IhairSalon", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07BFLJQCX", "category": "beauty", "query": "Hair Loss Products", "page": 25, "small_description_old": "About this item ArtNaturals Black Castor Oil Conditioner is specially formulated to strengthen, hydrate and help promote revitalization of dry, damaged, color-treated hair. The Conditioner\u2019s formula helps remove excess product buildup, balances pH levels, and stimulates the scalp\u2019s circulation, as it deeply moisturizes hair, re-texturing and smoothing. Black castor oil is noted for its ability to relieve dryness, help banish dandruff, and deeply hydrate both hair shafts and scalp. Coconut oil hydrates without leaving hair greasy, nettle extract works to lessen hair loss as it promotes shine, and thyme extract gently cleanses as it stimulates scalp circulation and healthy regrowth. Our Black Castor Oil Conditioner is also specially recommended for curly hair, as it smoothes and soothes hair that is naturally dry."}, {"name": "YUELY Pink Permanent Makeup Machine Pen Professional Makeup Eyebrow Lips Tattoo Tool For Eyebrows Eyeliner", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 9.1 x 5.1 x 2.6 inches; 8.78 Ounces", "UPC\n \u200f": "\u200e\n 606989563866", "Manufacturer\n \u200f": "\u200e\n YUELY", "ASIN\n \u200f": "\u200e\n B07H35M2PY", "Best Sellers Rank": "#177,822 in Health & Household (See Top 100 in Health & Household)#194 in Tattoo Machines", "#194 in Tattoo Machines": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: YUELY", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=YUELY", "full_description": "Description: This tattoo pen is designed for eyebrow, eyeliner and lip tattoo. Metal material is stable. Low noise and vibration, automatic design of inserting depth and high rotating speed are ideal for tattoo work. Portable size is convenient for home and professional use. Notes: 1. Please stop using the pen for 2 minutes after 30 minutes' operation to extend its service life. 2. Dear customer, please rest assured to buy without worrying about the plug adaption. We will provide an adapter for you according to different country standard to ensure its normal use. Features: Metal material is stable with less vibration and not easy to leave fingerprints or sweat stain, which is easier to grip and operation. High rotating speed can create realistic, delicate and even effects. adjustable rotating speed and Control needles length. Special locking needle design can lock needle firmly without needle vibration or flying out, which is safe to use with ideal effect. Can control the inserting depth automatically to avoid penetrating too deeply. Low vibration can ensure precise operation. Low noise and fast to color, which can relieve customer's emotional tension and pain and let the tattoo work be operated fast and conveniently. Flexible device inside can protect the inside from being damaged. Suitable for eyebrow, eyeliner and lip tattoo. Package Includes: 1 x Permanent Makeup Pen With USB Cable 1 x Suitable Adapter 1 x Needles", "pricing": "$25.99", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41HEm9Ifx4L.jpg", "https://m.media-amazon.com/images/I/31DaE5mCUsL.jpg", "https://m.media-amazon.com/images/I/31ugZzDJSkL.jpg", "https://m.media-amazon.com/images/I/31OiZBdPHYL.jpg", "https://m.media-amazon.com/images/I/31B74CbcvjL.jpg", "https://m.media-amazon.com/images/I/41U1Ui+BD4L.jpg", "https://m.media-amazon.com/images/I/41Clx0e-DOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Piercing & Tattoo Supplies \u203a Tattoo Supplies \u203a Tattoo Machines", "average_rating": 4.1, "small_description": ["Metal material is stable with less vibration and not easy to leave fingerprints or sweat stain, which is easier to grip and operation. ", "Special locking needle design can lock needle firmly without needle vibration or flying out, which is safe to use with ideal effect. ", "Can control the inserting depth automatically to avoid penetrating too deeply. Low vibration can ensure precise operation. ", "adjustable rotating speed and Control needles length ", "Suitable for eyebrow, eyeliner and lip tattoo. "], "total_reviews": 18, "total_answered_questions": "", "customization_options": "", "seller_id": "AYMWB0RB7H0HE", "seller_name": "YUELY", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07H35M2PY", "category": "beauty", "query": "Eyes Makeup", "page": 123, "small_description_old": "Metal material is stable with less vibration and not easy to leave fingerprints or sweat stain, which is easier to grip and operation. Special locking needle design can lock needle firmly without needle vibration or flying out, which is safe to use with ideal effect. Can control the inserting depth automatically to avoid penetrating too deeply. Low vibration can ensure precise operation. adjustable rotating speed and Control needles length Suitable for eyebrow, eyeliner and lip tattoo."}, {"name": "Byootique Classic Black Makeup Train Case Soft Sided Barber Cosmetic Backpack Organize Storage Carry on Travel with Side Pocket Removable Bag", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 13.78 x 8.27 x 15.51 inches; 2.65 Pounds", "Manufacturer\n \u200f": "\u200e\n Byootique", "ASIN\n \u200f": "\u200e\n B08GFNJN5R", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#110,215 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#150 in Cosmetic Train Cases", "#150 in Cosmetic Train Cases": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the BYOOTIQUE Store", "brand_url": "https://www.amazon.com/stores/BYOOTIQUE/page/0E8677F9-AFF2-42AC-9543-5202AC39D3F4?ref_=ast_bln", "full_description": "", "pricing": "$79.90", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51hP5laZ4zL.jpg", "https://m.media-amazon.com/images/I/51GHyCuET4L.jpg", "https://m.media-amazon.com/images/I/51lIdcvkZ8L.jpg", "https://m.media-amazon.com/images/I/513S1p0Y88L.jpg", "https://m.media-amazon.com/images/I/51TSqShGFEL.jpg", "https://m.media-amazon.com/images/I/41kkNyHezYL.jpg", "https://m.media-amazon.com/images/I/61C5tKxyc6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Train Cases", "average_rating": 4.6, "small_description": ["\u3010Carry-on Backpack\u3011A compact dimension L13 12/16\"*W8 4/16\"*H15 8/16\"(35*21*39.4cm) , is specially designed for carry-on travel. It is good for freelance makeup artists and on-the-go artists who need to carry their expensive cosmetics on the plane. ", "\u3010Durable & Light Weight\u3011Made of 1680D oxford nylon fabric for wear-resistance and not easy to scratch. The sturdy and smooth metal zipper is more textured and durable. Breathable and adjustable shoulder straps relieve the stress of the shoulder. ", "\u3010Heat Isolation Side Pocket\u3011The interior lining in large side pocket with thick aluminum foil insulation cooler is for great thermal resistance, such as mask, some lipsticks, lotion. ", "\u3010Customizable Compartment \u3011Large inner capacity with unfixed divider moving up-and-down to turn into 1 or 2 storage layers, and 2 small side pockets on left, 1 large side pocket on the right and 1 removable division bag for your customize. ", "\u3010Added Personalization\u3011Name tag or business card can be placed in the transparent pouch for more personalized. It not only helps you find your makeup case quickly but also avoids others to take your case away. "], "total_reviews": 192, "total_answered_questions": 7, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08DTKL5GD/ref=twister_B08HT25V1H?_encoding=UTF8&psc=1", "value": "Beet Red", "price_string": "$69.90", "price": 69.9, "image": "https://m.media-amazon.com/images/I/515CQZpu0lL.jpg"}, {"is_selected": true, "url": null, "value": "Classic Black", "price_string": "$79.90", "price": 79.9, "image": "https://m.media-amazon.com/images/I/51hP5laZ4zL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093VMX6TV/ref=twister_B08HT25V1H?_encoding=UTF8&psc=1", "value": "Classic Blue", "price_string": "$72.90", "price": 72.9, "image": "https://m.media-amazon.com/images/I/518HZ2d12bS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093VK4JM9/ref=twister_B08HT25V1H?_encoding=UTF8&psc=1", "value": "Glacier Grey", "price_string": "$72.90", "price": 72.9, "image": "https://m.media-amazon.com/images/I/514yZ4yy7vL.jpg"}]}, "seller_id": "A2V0U2CDI8OSTK", "seller_name": "AWInternational", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08GFNJN5R", "category": "beauty", "query": "Bags & Cases", "page": 4, "small_description_old": "\u3010Carry-on Backpack\u3011A compact dimension L13 12/16\"*W8 4/16\"*H15 8/16\"(35*21*39.4cm) , is specially designed for carry-on travel. It is good for freelance makeup artists and on-the-go artists who need to carry their expensive cosmetics on the plane. \u3010Durable & Light Weight\u3011Made of 1680D oxford nylon fabric for wear-resistance and not easy to scratch. The sturdy and smooth metal zipper is more textured and durable. Breathable and adjustable shoulder straps relieve the stress of the shoulder. \u3010Heat Isolation Side Pocket\u3011The interior lining in large side pocket with thick aluminum foil insulation cooler is for great thermal resistance, such as mask, some lipsticks, lotion. \u3010Customizable Compartment \u3011Large inner capacity with unfixed divider moving up-and-down to turn into 1 or 2 storage layers, and 2 small side pockets on left, 1 large side pocket on the right and 1 removable division bag for your customize. \u3010Added Personalization\u3011Name tag or business card can be placed in the transparent pouch for more personalized. It not only helps you find your makeup case quickly but also avoids others to take your case away."}, {"name": "Gold Placemats Set of 8 for Dining Table, Pressed Vinyl 15 inch Round Place Mats Non-Slip Washable Dining Table Mates,8 Placemats and 8 Coaster for Wedding Party Holiday", "product_information": {"Package Dimensions": "15.31 x 2.76 x 2.52 inches", "Item Weight": "1.91 pounds", "Manufacturer": "Junrutc", "ASIN": "B09GVJBPRR", "Customer Reviews": {"ratings_count": 49, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#35,314 in Kitchen & Dining (See Top 100 in Kitchen & Dining) #313 in Place Mats"], "Date First Available": "September 22, 2021"}, "brand": "Brand: Junrutc", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Junrutc", "full_description": "Product Details Material: premium polypropylene. Placemat Size:15\"\u00d715\"(38cm\u00d738cm) Coaster Size:4.33\u201d\u00d74.33\"(11cm\u00d711cm) Features:easy to use and store, durable,heat resistance, widely used Applicable Scene 1.Daily life in family 2.kitchen, hotel, restaurant, coffee shop or business office 3.The perfect gift for your friends and family, for weddings, birthdays, Christmas/holidays, etc. Warm Tips: 1.Wash by hand in warm soapy water instead of washing machine. 2.Please dry the placemats under the shade. 3.Don't put the placemat in the microwave. Our Servicee 24 hours to solve your problem. We will take your satisfaction first. If you're not completely satisfied simply let us know and we will offer a prompt refund or replacement.", "pricing": "$21.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51w88WMq+dL.jpg", "https://m.media-amazon.com/images/I/51TeuR1fScL.jpg", "https://m.media-amazon.com/images/I/51pVi0JTbwL.jpg", "https://m.media-amazon.com/images/I/51bw2D6oQZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Kitchen & Dining \u203a Kitchen & Table Linens \u203a Place Mats", "average_rating": 4.6, "small_description": ["MATERIAL\uff1ametallic pressed vinyl placemats ,The diameter of place mats is 15inch,large enough for any plate or bowl. ", "FEATURES:Protect and dress up your tables.Fit rectangular,round and oval tables.Fit almost any kitchen or dining room decoration. ", "EASY TO CLEAN: Wipe clean with damp cloth.Hand wash in cold soap water and air dry. ", "APPLICATION:Use Junrutc round placemats for birthdays,christmas,housewarming,holiday, party, family gatherings, weddings, showers and more.Great for everyday use inside or outside. ", "PACKAGE:Included 8 pcs placemats,size in 15 inch and 8 pcs of coaster,Size in 3.75 inch "], "total_reviews": 49, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Glod", "price_string": "$21.99", "price": 21.99, "image": "https://m.media-amazon.com/images/I/51w88WMq+dL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GVL2H85/ref=twister_B09GVKGHXK?_encoding=UTF8&psc=1", "value": "Rose Gold", "price_string": "$21.99", "price": 21.99, "image": "https://m.media-amazon.com/images/I/51lT-44W9+L.jpg"}]}, "seller_id": "A18Q44I8YRROTR", "seller_name": "Jiuyun Optimal", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09GVJBPRR", "category": "garden", "query": "Dining Sets", "page": 108, "small_description_old": "About this item\n \nMATERIAL\uff1ametallic pressed vinyl placemats ,The diameter of place mats is 15inch,large enough for any plate or bowl. FEATURES:Protect and dress up your tables.Fit rectangular,round and oval tables.Fit almost any kitchen or dining room decoration. EASY TO CLEAN: Wipe clean with damp cloth.Hand wash in cold soap water and air dry. APPLICATION:Use Junrutc round placemats for birthdays,christmas,housewarming,holiday, party, family gatherings, weddings, showers and more.Great for everyday use inside or outside. PACKAGE:Included 8 pcs placemats,size in 15 inch and 8 pcs of coaster,Size in 3.75 inch"}, {"name": "InterestPrint Deer and Stars Men's Loungewear Pajama Sets - Long Sleeve Tee and Jogger Pant", "product_information": {"Item Weight\n \u200f": "\u200e\n 1.28 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 10, 2021", "Manufacturer\n \u200f": "\u200e\n InterestPrint", "ASIN\n \u200f": "\u200e\n B09ND9C4KG", "": ""}, "brand": "Visit the InterestPrint Store", "brand_url": "https://www.amazon.com/stores/InterestPrint/page/C4D01415-68A2-43C9-9276-762A7B2F1F7D?ref_=ast_bln", "full_description": "Two-Piece Men's All Over Print Pajama Set Comfortable Fit: This sleepwear is made of 100% polyester.The comfortable and smooth fabric is durable and feels great on the skin. Pajama has good air permeability ensures every moment is as comfy as can be and keep warm without overheating. Well-fitting Yet Loose Style: Men's pajama set includes long sleeve tee and full length trousers, breathable, extra-soft, and comfortably warm. The top of pajama sets is pullover round neck design, you can easily dress without much hassle. The trousers of pajama sets has elastic waistband and leg-retracting designs for easy relaxation. Warm Tips: Sizes: S, M, L, XL, 2XL.Please calculate your size from the measurement chart for perfect fit. Garment care: Machine wash. Hand wash in cold water is recommended. Line dry, do not bleach or dry clean.", "pricing": "$43.59", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31bHcdNct1L.jpg", "https://m.media-amazon.com/images/I/31lxjWitvzL.jpg", "https://m.media-amazon.com/images/I/31DTBNbvhML.jpg", "https://m.media-amazon.com/images/I/31tJK2E5uXL.jpg", "https://m.media-amazon.com/images/I/31YCHtYvraL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Sleep & Lounge \u203a Sleep Sets", "average_rating": "", "small_description": ["100% Polyester ", "Hand Wash Only ", "Sizes: S, M, L, XL, 2XL.Please calculate your size from the measurement chart for perfect fit. ", "This mens casual sleepwear made from 100% polyester - feels great on the skin and provides warm whenever in use. ", "The pajama set for men includes long-sleeve round neck tee and elastic waistband trousers, well-fitting yet loose. ", "Suitable as home wear, lounge set, sleepwear set, nightwear for relaxing in the house or getting a great night sleep. ", "Perfect for you as daily wear or you can gift it as holiday, birthday present for your dad, brothers or friends. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09ND875MM"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09ND9WR1H"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09ND7QCV7"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09ND8TQL4"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09ND8P2QR"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09ND842WP/ref=twister_B09ND9WR1R", "value": "Multi 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/414ZOEPP4VL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND94QJS/ref=twister_B09ND9WR1R", "value": "Multi 10", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41C8pvm4B8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND84R8F/ref=twister_B09ND9WR1R", "value": "Multi 2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Ue4sFyliL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND8GDRL/ref=twister_B09ND9WR1R", "value": "Multi 3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41AR5NhpASL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND85J7N/ref=twister_B09ND9WR1R", "value": "Multi 4", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rgU2Q6F7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND84KSZ/ref=twister_B09ND9WR1R", "value": "Multi 5", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410RwBzfxTL.jpg"}, {"is_selected": true, "url": null, "value": "Multi 6", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31bHcdNct1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND86D8Q/ref=twister_B09ND9WR1R", "value": "Multi 7", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41aAsoF-U5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND7PKPH/ref=twister_B09ND9WR1R", "value": "Multi 8", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IDCteT+aL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND9NBGY/ref=twister_B09ND9WR1R", "value": "Multi 9", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yseJsyV-L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09ND8P2QR", "category": "fashion", "query": "Men's Sleep & Lounge", "page": 28, "small_description_old": "100% Polyester Hand Wash Only Sizes: S, M, L, XL, 2XL.Please calculate your size from the measurement chart for perfect fit. This mens casual sleepwear made from 100% polyester - feels great on the skin and provides warm whenever in use. The pajama set for men includes long-sleeve round neck tee and elastic waistband trousers, well-fitting yet loose. Suitable as home wear, lounge set, sleepwear set, nightwear for relaxing in the house or getting a great night sleep. Perfect for you as daily wear or you can gift it as holiday, birthday present for your dad, brothers or friends."}, {"name": "Spigen Tempered Glass Screen Protector [GlasTR Slim] Designed for Google Pixelbook Go (13.3inch) [9H Hardness]", "product_information": {"Package Dimensions": "13.15 x 9.49 x 0.55 inches", "Item Weight": "11.7 ounces", "ASIN": "B083ZK4NRS", "Customer Reviews": {"ratings_count": 86, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#116,168 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #10,412 in Cell Phone Screen Protectors"], "Special Features": "9H Surface Hardness, Oil Resistant", "Manufacturer": "Spigen", "Date First Available": "January 17, 2020"}, "brand": "Visit the Spigen Store", "brand_url": "https://www.amazon.com/stores/Spigen/page/1B6B4933-0D21-4FF4-AB37-F74CD4F5CB1C?ref_=ast_bln", "full_description": "", "pricing": "$16.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/515DsU40miL.jpg", "https://m.media-amazon.com/images/I/51riUGyhLGL.jpg", "https://m.media-amazon.com/images/I/51OiAFeoaFL.jpg", "https://m.media-amazon.com/images/I/51UZM9hc5wL.jpg", "https://m.media-amazon.com/images/I/41x8SFh06hL.jpg", "https://m.media-amazon.com/images/I/41G8qrn-ACL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Maintenance, Upkeep & Repairs \u203a Screen Protectors", "average_rating": 4.3, "small_description": ["Premium tempered glass with 9H hardness ", "Touch-responsiveness guarantee hassle-free access and no delay ", "Full screen coverage for ultimate protection from impact and scratches ", "Oleophobic coating prevents oils and fingerprints ", "Designed for ONLY Lenovo Flex 5 (14 inch / 81X20005US) ", "Lenovo Flex 5 14 inch Screen Protector 81X20005US "], "total_reviews": 86, "total_answered_questions": "", "customization_options": "", "seller_id": "A2SFKRF5TPZMT5", "seller_name": "Spigen Inc", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B083ZK4NRS", "category": "electronics", "query": "Screen Protectors", "page": 260, "small_description_old": "About this item Premium tempered glass with 9H hardness Touch-responsiveness guarantee hassle-free access and no delay Full screen coverage for ultimate protection from impact and scratches Oleophobic coating prevents oils and fingerprints Designed for ONLY Lenovo Flex 5 (14 inch / 81X20005US)"}, {"name": "Women's High Heel Sandals Sexy Patent Leather Peep Toe Breathable Ankle Boots Minimalistic Thick High Heels Rear Zipper Sandals Casual Ladies Pump", "product_information": {"Item model number\n \u200f": "\u200e\n Women's High Heel Sandals", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 25, 2021", "Manufacturer\n \u200f": "\u200e\n pnroktd", "ASIN\n \u200f": "\u200e\n B09P5WNVVR", "Best Sellers Rank": "#5,748,608 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#17,734 in Women's Heeled Sandals", "#17,734 in Women's Heeled Sandals": ""}, "brand": "Visit the pnroktd Store", "brand_url": "https://www.amazon.com/stores/pnroktd/page/E92A55CE-1096-4899-9DF9-9A0671ADA624?ref_=ast_bln", "full_description": "", "pricing": "$32.99$40.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41dmI3j-CQL.jpg", "https://m.media-amazon.com/images/I/41UBIQa2gqL.jpg", "https://m.media-amazon.com/images/I/51AJiRhjLCL.jpg", "https://m.media-amazon.com/images/I/41l3GPVWDUL.jpg", "https://m.media-amazon.com/images/I/51-WzplupFL.jpg", "https://m.media-amazon.com/images/I/51krgigUxBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals \u203a Heeled Sandals", "average_rating": "", "small_description": ["\ud83d\udd25\ud83d\udd25Christmas Limited Time Offer\ud83d\udd25\ud83d\udd25 Save 10% on each participating item when you spend $150.00 or more on Qualifying items offered by LayLetmet. ", "\ud83d\udc62\u3010Delivery Time\u3011 about 7-15 days to arrive.Our sizes are DIFFERENT from Amazon Size Chart, please refer to the size chart on the product description page. ", "\u2764\ufe0f[pnroktd] pnroktd is committed to providing high-quality shoes, clothing and accessories.pnroktd has fashionable boots, dress, T-shirt, skirt, swimsuits, jackets, shirts, shoulder bags, messenger bags etc. ", "Rubber sole ", "Heel measures approximately 6 centimeters ", "white chunky sneakers hidden wedge sneakers for women wide womens sneakers size 9 slip on white sneakers for women slip on black loafers women white chunky sneakers for women white wedge sneakers for women womens sneakers size 10 black sneakers for women black fashion sneakers for women white chunky sneakers for women black wedge sneakers for women size 11 womens sneakers size 7.5 sneakers for women black black fashion sneakers for women 2021 ", "sandals for women, 2021 women's platform sandals casual espadrille buckle wedge ankle strap open toe summer sandal sandals for women, comfy shining diamond roman shoes casual summer beach travel indoor outdoor slipper sandals for women, womens girls lace up roman sandals comfy flat open toe sandals non slip thick sandals sandals for women, comfy shining diamond roman shoes casual summer beach travel indoor outdoor slipper , white chunky sneakers for women white wedge sneakers for women fashion womens sneakers size 10 white sneakers for women fashion black loafers women slip on white chunky sneakers for women black slip on sneakers women wide womens sneakers size 8.5 slip on high top sneakers for women black loafers women shoes leather white chunky sneakers for women fashion white wedge sneakers for women 1.5 inch platform womens sneakers size 10 wide white sneakers, womens platform sandals summer women's summer shoes casual beach slip-on wedges flat shoes sandal slipper womens platform sandals summer women's 2021 summer shoes casual beach slip-on bow flat shoes open toe sandal slipper sandals for women, womens comfy color summer slippers for big toe bone correction open toe flat sandals flip flops sandals for women rhinestone flat sandals slip-on flip flop open toe casual summer beach sandals, white chunky sneakers for women fashion black slip on sneakers women leather womens sneakers size 8.5 wide width running sneakers for women women's loafers & slip-ons white chunky sneakers for women platform wedge sneakers for women fashion wide width womens sneakers size 10 black all black sneakers for women black loafers women shoes white chunky sneakers for women platform black slip on sneakers women with arch support womens sneakers size"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "5-5.5", "asin": "B09P5WNVVR"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B09P5V8ZSK"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B09P5V626B"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B09P5W5WP3"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09P5VWYF7"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B09P5VCGJP"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B09P5X2SBR"}, {"is_selected": false, "is_available": true, "value": "9.5-10", "asin": "B09P5TY59C"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B09P5THT75"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09P5V8ZSK", "category": "fashion", "query": "Women's Pumps", "page": 58, "small_description_old": "\ud83d\udd25\ud83d\udd25Christmas Limited Time Offer\ud83d\udd25\ud83d\udd25 Save 10% on each participating item when you spend $150.00 or more on Qualifying items offered by LayLetmet. \ud83d\udc62\u3010Delivery Time\u3011 about 7-15 days to arrive.Our sizes are DIFFERENT from Amazon Size Chart, please refer to the size chart on the product description page. \u2764\ufe0f[pnroktd] pnroktd is committed to providing high-quality shoes, clothing and accessories.pnroktd has fashionable boots, dress, T-shirt, skirt, swimsuits, jackets, shirts, shoulder bags, messenger bags etc. Rubber sole Heel measures approximately 6 centimeters white chunky sneakers hidden wedge sneakers for women wide womens sneakers size 9 slip on white sneakers for women slip on black loafers women white chunky sneakers for women white wedge sneakers for women womens sneakers size 10 black sneakers for women black fashion sneakers for women white chunky sneakers for women black wedge sneakers for women size 11 womens sneakers size 7.5 sneakers for women black black fashion sneakers for women 2021 sandals for women, 2021 women's platform sandals casual espadrille buckle wedge ankle strap open toe summer sandal sandals for women, comfy shining diamond roman shoes casual summer beach travel indoor outdoor slipper sandals for women, womens girls lace up roman sandals comfy flat open toe sandals non slip thick sandals sandals for women, comfy shining diamond roman shoes casual summer beach travel indoor outdoor slipper \n white chunky sneakers for women white wedge sneakers for women fashion womens sneakers size 10 white sneakers for women fashion black loafers women slip on white chunky sneakers for women black slip on sneakers women wide womens sneakers size 8.5 slip on high top sneakers for women black loafers women shoes leather white chunky sneakers for women fashion white wedge sneakers for women 1.5 inch platform womens sneakers size 10 wide white sneakerswomens platform sandals summer women's summer shoes casual beach slip-on wedges flat shoes sandal slipper womens platform sandals summer women's 2021 summer shoes casual beach slip-on bow flat shoes open toe sandal slipper sandals for women, womens comfy color summer slippers for big toe bone correction open toe flat sandals flip flops sandals for women rhinestone flat sandals slip-on flip flop open toe casual summer beach sandalswhite chunky sneakers for women fashion black slip on sneakers women leather womens sneakers size 8.5 wide width running sneakers for women women's loafers & slip-ons white chunky sneakers for women platform wedge sneakers for women fashion wide width womens sneakers size 10 black all black sneakers for women black loafers women shoes white chunky sneakers for women platform black slip on sneakers women with arch support womens sneakers sizeShow more"}, {"name": "Dinmmgg Computer Desk with Shelf, Gaming Desk with Storage, Drafting Drawing Table with Tiltable Tabletop, Computer Writing Desk, Gaming Computer Desk, Home Office Desk Wood, for Bedroom", "product_information": {"Product Dimensions": "57.08 x 19.68 x 55.11 inches", "Item Weight": "61.7 pounds", "Manufacturer": "Dinmmgg", "ASIN": "B09MCTMRH6", "Country of Origin": "China", "Item model number": "wood desk with storage", "Date First Available": "November 22, 2021"}, "brand": "Brand: Dinmmgg", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Dinmmgg", "full_description": "Feature: Product size: 57.08x19.68x55.11in Shelf size: 55.11x19.68x13.77in Packing size: 61.02x23.03x5.51n Material: 1.5CM E1 particleboard, steel pipe 25x25mm 0.8mm thickness Color: brown Package include: 1x table, 1x installation manual", "pricing": "$152.76", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51jNi56wKkL.jpg", "https://m.media-amazon.com/images/I/51kz5PXuosL.jpg", "https://m.media-amazon.com/images/I/51abGY0DjGL.jpg", "https://m.media-amazon.com/images/I/41Y+c6KdHqL.jpg", "https://m.media-amazon.com/images/I/41E5ou3LsML.jpg", "https://m.media-amazon.com/images/I/41qUyGoT1tL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Desks", "average_rating": "", "small_description": ["[Multifunctional three-in-one desk]: Three-in-one bookshelf, computer desk, and main frame. The compact design makes the table very suitable for use in small rooms or corners, and perfectly maximizes your home office or workplace. ", "[Spacious workbench]: provide a wider desktop to fit your laptop, PC, keyboard and office supplies. It also provides enough space for game settings, paperwork and other office activities: the shelf under the desk on the 2nd floor allows you to store the console or other small equipment. ", "[Computer desk and drawing desk two in one]: The adjustable and tiltable drawing board can be fixed at any position from the plane to 60\u00b0 to obtain the desired angle. Multi-angle settings can provide better working posture. The paper stopper on the board can effectively prevent the paper from sliding. ", "[5-layer bookshelf]: The 5-layer bookshelf next to the desktop computer is used to store books or documents or display decorative items. Make everything you need easy. ", "[Super stable and easy to assemble]: The desktop and shelf made of 6/10 inch thick E1 particleboard provide you with a sturdy desk. The metal tubular frame has a corrosion-resistant powder-coated surface. A detailed installation manual is enclosed, which provides the easiest installation method. "], "total_reviews": "", "total_answered_questions": "", "model": "wood desk with storage", "customization_options": "", "seller_id": "A24QSJ04DA26H", "seller_name": "Dinmmgg", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MCTMRH6", "category": "garden", "query": "Drafting Tables", "page": 58, "small_description_old": "About this item\n \n[Multifunctional three-in-one desk]: Three-in-one bookshelf, computer desk, and main frame. The compact design makes the table very suitable for use in small rooms or corners, and perfectly maximizes your home office or workplace. [Spacious workbench]: provide a wider desktop to fit your laptop, PC, keyboard and office supplies. It also provides enough space for game settings, paperwork and other office activities: the shelf under the desk on the 2nd floor allows you to store the console or other small equipment. [Computer desk and drawing desk two in one]: The adjustable and tiltable drawing board can be fixed at any position from the plane to 60\u00b0 to obtain the desired angle. Multi-angle settings can provide better working posture. The paper stopper on the board can effectively prevent the paper from sliding. [5-layer bookshelf]: The 5-layer bookshelf next to the desktop computer is used to store books or documents or display decorative items. Make everything you need easy. [Super stable and easy to assemble]: The desktop and shelf made of 6/10 inch thick E1 particleboard provide you with a sturdy desk. The metal tubular frame has a corrosion-resistant powder-coated surface. A detailed installation manual is enclosed, which provides the easiest installation method."}, {"name": "Sauder Palladia File Cabinet, Vintage Oak finish", "product_information": {"Product Dimensions": "23.63 x 42.31 x 8.21 inches", "Item Weight": "112 pounds", "Manufacturer": "Sauder Woodworking", "ASIN": "B01MR4Q0WA", "Country of Origin": "USA", "Item model number": "420607", "Customer Reviews": {"ratings_count": 924, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#13,848 in Office Products (See Top 100 in Office Products) #6 in Home Office Cabinets #10 in Office Lateral File Cabinets"], "Is Discontinued By Manufacturer": "No", "Fabric Type": "Item Does Not Contain Fabric", "Finish Types": "Vintage Oak Finish", "Assembly Required": "Yes", "Number of Pieces": "1", "Warranty Description": "5 year parts.", "Batteries Required?": "No", "Included Components": "Materials, Assembly instructions, Hardware"}, "brand": "Visit the Sauder Store", "brand_url": "https://www.amazon.com/stores/SAUDER%C2%AE+-+DROP+SHIP/page/EAA9D34A-4FF0-4564-B6D4-AC0522168368?ref_=ast_bln", "full_description": "Elegant style and organization \u2013 that is what you will get with this lateral file from the Palladia\u00ae collection. This handsome file cabinet features two drawers that open and close on smooth full extension slides. Each drawer accommodates letter, legal or European size hanging files to keep you organized and clutter free. It features a patented, interlocking safety mechanism that allows only one drawer to open at a time for increased safety. Its spacious tabletop surface makes the perfect spot to display all your favorite things \u2013 a stylish accent lamp, awards and achievements, decorative plants or any other home d\u00e9cor. Use it in your office, living room, or around the home as an accent piece \u2013 it looks good no matter where it stands! Finished in a beautiful Vintage Oak\u00ae, this stunning lateral file gives your home the style you have been craving with the functionality you have needed.", "pricing": "$225.00", "list_price": "", "availability_quantity": 20, "availability_status": "Only 20 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51vmuTuxmiL.jpg", "https://m.media-amazon.com/images/I/51XwxcP78ZL.jpg", "https://m.media-amazon.com/images/I/51d2Yo8VeOL.jpg", "https://m.media-amazon.com/images/I/61jX+4Ze+cL.jpg", "https://m.media-amazon.com/images/I/41u6gfir2eL.jpg", "https://m.media-amazon.com/images/I/61xUNM-L2EL.jpg", "https://m.media-amazon.com/images/I/41U-1EbUTZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Cabinets", "average_rating": 4.2, "small_description": ["Item Does Not Contain Fabric ", "Drawers with full extension slides hold letter, legal or European size hanging files to help keep you organized ", "Patented, interlocking safety mechanism allows only one drawer open at a time ", "Quick and easy assembly with patented T-slot drawer system ", "Engineered wood construction "], "total_reviews": 924, "total_answered_questions": "", "model": "420607", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B007N7ZHGU/ref=twister_B08YZF5CDV?_encoding=UTF8&psc=1", "value": "Select Cherry Finish", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51qjD2OK5ZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08XY7VSKQ/ref=twister_B08YZF5CDV?_encoding=UTF8&psc=1", "value": "Split Oak Finish", "price_string": "$279.43", "price": 279.43, "image": "https://m.media-amazon.com/images/I/51SqDfvY38L.jpg"}, {"is_selected": true, "url": null, "value": "Vintage Oak Finish", "price_string": "$225.00", "price": 225, "image": "https://m.media-amazon.com/images/I/51vmuTuxmiL.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01MR4Q0WA", "category": "garden", "query": "File Cabinets", "page": 1, "small_description_old": "About this item Item Does Not Contain Fabric Drawers with full extension slides hold letter, legal or European size hanging files to help keep you organized Patented, interlocking safety mechanism allows only one drawer open at a time Quick and easy assembly with patented T-slot drawer system Vintage Oak finish Engineered wood construction"}, {"name": "Nikon AF-S FX NIKKOR 50mm f/1.4G Lens with Auto Focus for Nikon DSLR Cameras", "product_information": {"Product Dimensions": "2.13 x 2.91 x 2.91 inches", "Item Weight": "10.2 ounces", "ASIN": "B001GCVA0U", "Item model number": "2180", "Customer Reviews": {"ratings_count": 1766, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#171 in SLR Camera Lenses"], "Is Discontinued By Manufacturer": "No", "Date First Available": "June 17, 2003", "Manufacturer": "Nikon", "Country of Origin": "Italy"}, "brand": "Visit the Nikon Store", "brand_url": "https://www.amazon.com/stores/Nikon/page/A0A04D76-D946-42B4-A00A-7B9D20E8B166?ref_=ast_bln", "full_description": "Nikon 50mm f/1.4G SIC SW Prime Nikkor Lens for Nikon Digital SLR Cameras Maximum Angle of View (DX-format): 31\u00b030'. Maximum Angle of View (FX-format): 46\u00b0. Accepts Filter Type - Screw-on Ideal for travel, event, environmental and general photography in a wide variety of conditions, with superb optical formula and an ultra-fast f/1.4 maximum aperture. Fast f/1.4 prime NIKKOR lens Perfect for low-light conditions, general and travel photography. Normal angle of view on FX-format cameras Classic, normal angle of view when used on a Nikon FX-format digital SLR or 35mm film camera. Ideal portrait lens on DX-format cameras An ideal portrait lens when used on a Nikon DX-format digital SLR, approximating the angle of view similar to that of a 75mm lens on a Nikon FX-format digital SLR or a 35mm film camera. Nikon Super Integrated Coating (SIC) Enhances light transmission efficiency and offers superior color consistency and reduced flare. Exclusive Nikon Silent Wave Motor (SWM) Enables fast, accurate, and quiet autofocus. Close focusing to 1.5 feet For extended versatility. Rounded 9-blade diaphragm Renders more natural appearance of out-of-focus image elements. Ideal for travel, event, environmental and general photography in a wide variety of conditions, with superb optical formula and an ultra-fast f/1.4 maximum aperture. Fast f/1.4 prime NIKKOR lens Perfect for low-light conditions, general and travel photography. Normal angle of view on FX-format cameras Classic, normal angle of view when used on a Nikon FX-format digital SLR or 35mm film camera. Ideal portrait lens on DX-format cameras An ideal portrait lens when used on a Nikon DX-format digital SLR, approximating the angle of view similar to that of a 75mm lens on a Nikon FX-format digital SLR or a 35mm film camera. Nikon Super Integrated Coating (SIC) Enhances light transmission efficiency and offers superior color consistency and reduced flare. Exclusive Nikon Silent Wave Motor (SWM) Enables fast, accurate, and quiet autofocus. Close focusing to 1.5 feet For extended versatility. Rounded 9-blade diaphragm Renders more natural appearance of out-of-focus image elements.", "pricing": "$446.95", "list_price": "", "availability_status": "In stock.", "images": ["https://m.media-amazon.com/images/I/51uEtmyCdcL.jpg", "https://m.media-amazon.com/images/I/41NVNnpPl8L.jpg", "https://m.media-amazon.com/images/I/41bqQ1GT+aL.jpg", "https://m.media-amazon.com/images/I/41IaH-su6dL.jpg", "https://m.media-amazon.com/images/I/51AVWrae2kL.jpg", "https://m.media-amazon.com/images/I/31MqCehsk+L.jpg", "https://m.media-amazon.com/images/I/61iyhzaZV2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Lenses \u203a Camera Lenses \u203a SLR Camera Lenses", "average_rating": 4.8, "small_description": ["F1.4 maximum aperture; F16 minimum ", "Ultrasonic-type AF motor with full-time manual focusing, 58mm filters ", "Minimum focus Distance : 0.45m/17.72 Inches. Lens Hood: HB-47 ", "Nikon F mount for FX and DX DSLRs. Unparalleled autofocus performance.Mount Type: Nikon F-Bayonet ", "Lens not zoomable "], "total_reviews": 1766, "total_answered_questions": 280, "model": "2180", "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "Lens Only", "price_string": "$446.95", "price": 446.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078GLS3YP/ref=twister_B00WUI3UNY?_encoding=UTF8&psc=1", "value": "w/ Polarizer Lens", "price_string": "$458.64", "price": 458.64, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B001GCVA0U", "category": "electronics", "query": "Lenses", "page": 47, "small_description_old": "About this item\n \nF1.4 maximum aperture; F16 minimum Ultrasonic-type AF motor with full-time manual focusing, 58mm filters Minimum focus Distance : 0.45m/17.72 Inches. Lens Hood: HB-47 Nikon F mount for FX and DX DSLRs. Unparalleled autofocus performance.Mount Type: Nikon F-Bayonet Lens not zoomable"}, {"name": "T-Power (12v) Ac Adapter Compatible with 4 & 8 Channel (8-Way Splitte) Swann DVR4 DVR8 SWDVK4 SRDVR8 Series Digital Video Recorder Security DVR Charger (for Camera only)", "product_information": {"Item Weight": "8 ounces", "Manufacturer": "T-Power", "ASIN": "B01E9OPWUU", "Item model number": "TP-zL7-WUU", "Customer Reviews": {"ratings_count": 23, "stars": "4.5 out of 5 stars"}}, "brand": "Visit the T POWER Store", "brand_url": "https://www.amazon.com/stores/T-Power/page/ED51E6B1-7838-4920-87FF-70B646A13970?ref_=ast_bln", "full_description": "T-Power ( TM ) Made with the highest quality AC 100V - 240VCompatible Model: Swann DVR8 , SRDVR8 , SWDVK8 SERIES 8 Channel Digital Video Recorder Security DVR MODELS: DVR8-1000 , DVR8-1400 , DVR8-1425 , DVR8-1450 , DVR8-1500 , DVR8-1550 , DVR8-2550 , DVR8-2900 , DVR8-3000 , DVR8-3200 , DVR8-3450 , DVR8-4000 , DVR8-4100 , DVR8-4150 , DVR8-4200 , DVR8-4400 , DVR8-8075 , SRDVR-84100H , SRDVR-84100H-US , SWDVK-810004 , SWDVK-814508F , SWDVK-814508F-CL , SWDVK-825504 , SWDVK-825508 , SWDVK-825508C , SWDVK-829004 , SWDVK-832008S , SWDVK-834504F , SWDVK-840004D , SWDVK-841004 , SWDVK-841504 , SWDVK-842008 , SWDVK-844004 , SWDVK-844004 , SWDVK-844004A , SWDVK-844008 , SWDVK-844008A , SWDVK-880758 , SWDVR-81400H , SWDVR-81425H-US , SWDVR-82550H , SWDVR-83000H , SWDVR-84400H , SWDVR-84400H-US , WDVR-83000HA-US , DVR 8-2600 , SHD-810CAM-US , CODV8-B960B4Swann DVR4 , SRDVR4 , SWDVK4 SERIES 16 Channel Digital Video Recorder Security DVR MODELS: DVR4-1000 , DVR4-1300 , DVR4-1400 , DVR4-1525 , DVR4-2550 , DVR4-3000 , DVR4-3200 , DVR4-3250 , DVR4-4000 , DVR4-4400 , DVR4-4500 , SRDVR-44500H , SRDVR-44500H-US , SWDVK-410004 , SWDVK-410004-US , SWDVK-413002C , SWDVK-413002-RS , SWDVK-414002 , SWDVK-415254 , SWDVK-425504 , SWDVK-425504C , SWDVK-432004S , SWDVK-432004S-US , SWDVK-432502 , SWDVK-432504 , SWDVK-432504-US , SWDVK-440022D , SWDVK-444002 , SWDVK-444004 , SWDVK-444004A , SWDVK-444004A-US , SWDVR-41300H , SWDVR-41400H , SWDVR-42550H , SWDVR-43000H , SWDVR-44400H , SWDVR-44400H-US", "pricing": "$21.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51zD1Z2YW5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Power Accessories \u203a AC Adapters", "average_rating": 4.5, "small_description": ["T-Power Made with the highest quality // Brand-new Input Voltage Range: AC 100V - 240V ( 12VDC ) ", "pn: SWPRO-660CAM PRO-661 SWPRO-661CAM PRO-670 SWPRO-770CAM PRO-671 SWPRO-671CAM PRO-680 SWPRO-680CAM PRO-681 SWPRO-681CA PRO-750 SWPRO-750CAM PRO-751 SWPRO-751CAM PRO-752 SWPRO-752CAM PRO-760 SWPRO-760CAM PRO-761 SWPRO-761CAM PRO-770 SWPRO-770CAM PRO-771 SWPRO-771CAM PRO-780 SWPRO-780CAM PRO-781 SWPRO-781CAM ", "Compatible Model : SWDVK-825504 , SWDVK-825508 , SWDVK-825508C , SWDVK-829004 , SWDVK-832008S , SWDVK-834504F , SWDVK-840004D , SWDVK-841004 , SWDVK-841504 , SWDVK-842008 , SWDVK-844004 , SWDVK-844004 , SWDVK-844004A , SWDVK-844008 , SWDVK-844008A , SWDVK-880758 , SWDVR-81400H , SWDVR-81425H-US , SWDVR-82550H , SWDVR-83000H , SWDVR-84400H , SWDVR-84400H-US , WDVR-83000HA-US , DVR 8-2600 , SHD-810CAM-US , CODV8-B960B4 ", "SWDVK-425504C , SWDVK-432004S , SWDVK-432004S-US , SWDVK-432502 , SWDVK-432504 , SWDVK-432504-US , SWDVK-440022D , SWDVK-444002 , SWDVK-444004 , SWDVK-444004A , SWDVK-444004A-US , SWDVR-41300H , SWDVR-41400H , SWDVR-42550H , SWDVR-43000H , SWDVR-44400H , SWDVR-44400H-US "], "total_reviews": 23, "total_answered_questions": "", "model": "TP-zL7-WUU", "customization_options": "", "seller_id": "A27SVFUT1EWV2K", "seller_name": "T-Power USA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01E9OPWUU", "category": "electronics", "query": "Power Protection", "page": 184, "small_description_old": "About this item\n \nT-Power Made with the highest quality // Brand-new Input Voltage Range: AC 100V - 240V ( 12VDC ) pn: SWPRO-660CAM PRO-661 SWPRO-661CAM PRO-670 SWPRO-770CAM PRO-671 SWPRO-671CAM PRO-680 SWPRO-680CAM PRO-681 SWPRO-681CA PRO-750 SWPRO-750CAM PRO-751 SWPRO-751CAM PRO-752 SWPRO-752CAM PRO-760 SWPRO-760CAM PRO-761 SWPRO-761CAM PRO-770 SWPRO-770CAM PRO-771 SWPRO-771CAM PRO-780 SWPRO-780CAM PRO-781 SWPRO-781CAM Compatible Model : SWDVK-825504 , SWDVK-825508 , SWDVK-825508C , SWDVK-829004 , SWDVK-832008S , SWDVK-834504F , SWDVK-840004D , SWDVK-841004 , SWDVK-841504 , SWDVK-842008 , SWDVK-844004 , SWDVK-844004 , SWDVK-844004A , SWDVK-844008 , SWDVK-844008A , SWDVK-880758 , SWDVR-81400H , SWDVR-81425H-US , SWDVR-82550H , SWDVR-83000H , SWDVR-84400H , SWDVR-84400H-US , WDVR-83000HA-US , DVR 8-2600 , SHD-810CAM-US , CODV8-B960B4 SWDVK-425504C , SWDVK-432004S , SWDVK-432004S-US , SWDVK-432502 , SWDVK-432504 , SWDVK-432504-US , SWDVK-440022D , SWDVK-444002 , SWDVK-444004 , SWDVK-444004A , SWDVK-444004A-US , SWDVR-41300H , SWDVR-41400H , SWDVR-42550H , SWDVR-43000H , SWDVR-44400H , SWDVR-44400H-US"}, {"name": "Daonanba Durable Stable Coffee Table Teak Resin Handmade Unique Furniture Elegant Style Home Decoration 23.6\" Round Tabletop", "product_information": {"Product Dimensions": "23.6 x 23.6 x 15.7 inches", "Manufacturer": "Daonanba", "ASIN": "B0784G74Z9", "Customer Reviews": {"ratings_count": 57, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#1,144,900 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,584 in Coffee Tables"], "Is Discontinued By Manufacturer": "No", "Date First Available": "November 24, 2017"}, "brand": "Brand: Daonanba", "brand_url": "https://www.amazon.com/Daonanba/b/ref=bl_dp_s_web_19330563011?ie=UTF8&node=19330563011&field-lbr_brands_browse-bin=Daonanba", "full_description": "", "pricing": "$156.92", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/51lvSrUgNxL.jpg", "https://m.media-amazon.com/images/I/51Ry2hYS-rL.jpg", "https://m.media-amazon.com/images/I/51c3NwVhhgL.jpg", "https://m.media-amazon.com/images/I/418c6d6DZRL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Coffee Tables", "average_rating": 4.4, "small_description": ["This unique coffee table, made of solid teak and mango wood with a transparent resin decoration, exudes a rustic charm and is a real eye-catcher. ", "Its round tabletop provides a stable and secure surface on which you can place your drinks, vases, fruit bowls or ornaments. The coffee table can also be used as a side table. ", "The tabletop is fully handmade and the craftsmanship adds to its luxurious appearance. The base is made of sturdy mango wood with a black paint finish. Assembly is really easy. ", "Important note: As wood is a natural product, the colors and grain patterns vary from piece to piece, making each of our coffee tables unique and different from the next; the delivery is random. ", "We are shipping from united states, the shipping time usually cost 3-5 business days. "], "total_reviews": 57, "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "AJXFSN3ZTEVFA", "seller_name": "Daonanba", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B0784G74Z9", "category": "garden", "query": "Coffee Tables", "page": 49, "small_description_old": "About this item\n \nThis unique coffee table, made of solid teak and mango wood with a transparent resin decoration, exudes a rustic charm and is a real eye-catcher. Its round tabletop provides a stable and secure surface on which you can place your drinks, vases, fruit bowls or ornaments. The coffee table can also be used as a side table. The tabletop is fully handmade and the craftsmanship adds to its luxurious appearance. The base is made of sturdy mango wood with a black paint finish. Assembly is really easy. Important note: As wood is a natural product, the colors and grain patterns vary from piece to piece, making each of our coffee tables unique and different from the next; the delivery is random. We are shipping from united states, the shipping time usually cost 3-5 business days."}, {"name": "Alien Storehouse Fashionable Square Cloth Modern Small Stool Table Stool Sofa Pier Ottoman Stool, A", "product_information": {"Item Weight": "3.96 pounds", "Manufacturer": "Alien Storehouse", "ASIN": "B0893JSZHZ", "Fabric Type": "Cloth,linen Fabric"}, "brand": "Brand: Alien Storehouse", "brand_url": "https://www.amazon.com/Alien-Storehouse/b/ref=bl_dp_s_web_20272284011?ie=UTF8&node=20272284011&field-lbr_brands_browse-bin=Alien+Storehouse", "full_description": "Ships from Hong Kong. The ottoman footrest is a great way to sit back and put your feet up after a long day of work. Its soft leather exterior provides a comfortable place to put your feet as well as a comfortable place to sit. With its chic PU leather design this footrest will be able to fit into the d\u00e9cor of any room without having to change things up. If you are looking for a comfortable and stylish new footrest the ottoman is the perfect choice at an affordable rate. Combining perfect designs with economical overseas manufacturing to bring you the finest in sensible modern furniture.", "pricing": "$36.58", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41sf0M8vygL.jpg", "https://m.media-amazon.com/images/I/41OJFaG7aHL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Accent Furniture \u203a Ottomans", "average_rating": "", "small_description": ["Cloth,linen Fabric ", "Linen fabric, high resilience sponge, pine wood material. Wear and durable. ", "Size: 28*28*18 CM. ", "Plus stool legs, strong hardness. ", "Multi Propose - Can be Used as Extra Seat or be a Step Pad to Reach Height. ", "Modern & Stylish, Perfect For Home Decor or Pair With Other Furniture. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2VSWEATGCSBIR", "seller_name": "Alien Storehouse", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0893JSZHZ", "category": "garden", "query": "Ottomans", "page": 228, "small_description_old": "About this item\n \nCloth,linen Fabric Linen fabric, high resilience sponge, pine wood material. Wear and durable. Size: 28*28*18 CM. Plus stool legs, strong hardness. Multi Propose - Can be Used as Extra Seat or be a Step Pad to Reach Height. Modern & Stylish, Perfect For Home Decor or Pair With Other Furniture."}, {"name": "Refillable Container, Easy To Clean Cream Bottle Wide Mouth Design for Easy Storage Of Specimens for Toilets", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.09 x 2.36 x 2.36 inches; 7.27 Ounces", "Manufacturer\n \u200f": "\u200e\n Adsire", "ASIN\n \u200f": "\u200e\n B09M7M1YB3", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Adsire", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Adsire", "full_description": "Feature:1. Round cream jar, uses premium PP, ABS materials, corrosion\u2011resistant, non\u2011toxic and tasteless, can be reused and recycled.2. With inner lining and cover, good sealing performance, no cosmetic leakage, avoid secondary pollution of makeup.3. Compact and portable, just unscrew the lid, dispense the liquid into the container, and close lid tightly.4. Perfect for cosmetics, face cream, mud film, eye cream, ointment, tincture, lotion, skin care products, moisturizing cream, etc.5. Fine workmanship, wide mouth design for easy storage of specimens, earrings, beads, sequins, trinkets.Specification:Item Type: Cream ContainerMaterial: PP, ABSWeight: Approx. 204g / 7.2ozApplicable Type: Business travel, beauty makeup, skin care, cleaningApplicable Places: Dressing rooms, toilets, bathrooms, beauty salons, hotelsProduct Size: Approx. 43x55x29mm / 1.7x2.2x1.1inPackage List:4 x Cream ContainerNote:1. Please allow 0\u20111 inch error due to manual measurement. Thanks for your understanding.2. Monitors are not calibrated same, item color displayed in photos may be showing slightly different from the real object. Please take the real one as standard.3. Do not pack beverages, petroleum, strong acids, and liquids with high ethanol content to avoid material deterioration.4. Please use the skin care/toiletry products packed into the container as soon as possible, and do not leave them for more than half a year.5. The product is easy to stain when placed for a long time, and it can be clean with water or ethanol when cleaning.6. Remember not to use hot water for cleaning or high temperature cleaning. Long\u2011term storage of the contents may cause deterioration or staining of the container.7. Please clean the inside and outside with water or ethanol for the first use, and use it after drying.8. Dispense skin care prod", "pricing": "$15.50", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/319gVSHEZkS.jpg", "https://m.media-amazon.com/images/I/416OZ7xY58S.jpg", "https://m.media-amazon.com/images/I/419I1NXQ2SS.jpg", "https://m.media-amazon.com/images/I/319WuIQuheS.jpg", "https://m.media-amazon.com/images/I/316nPcFgU-S.jpg", "https://m.media-amazon.com/images/I/21KzNFZB-jS.jpg", "https://m.media-amazon.com/images/I/41hPlLDJe1S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": "", "small_description": ["Compact and portable, just unscrew the lid, dispense the liquid into the container, and close lid tightly. ", "With inner lining and cover, good sealing performance, no cosmetic leakage, avoid secondary pollution of makeup. ", "Round cream jar, uses premium PP, ABS materials, corrosion\u2011resistant, non\u2011toxic and tasteless, can be reused and recycled. ", "Fine workmanship, wide mouth design for easy storage of specimens, earrings, beads, sequins, trinkets. ", "Reusable and environmentally friendly, perfect for travel, easy to put in your wallet or take with you. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2VC51QO12K4E1", "seller_name": "Adsire", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09M7M1YB3", "category": "beauty", "query": "Refillable Containers", "page": 125, "small_description_old": "Compact and portable, just unscrew the lid, dispense the liquid into the container, and close lid tightly. With inner lining and cover, good sealing performance, no cosmetic leakage, avoid secondary pollution of makeup. Round cream jar, uses premium PP, ABS materials, corrosion\u2011resistant, non\u2011toxic and tasteless, can be reused and recycled. Fine workmanship, wide mouth design for easy storage of specimens, earrings, beads, sequins, trinkets. Reusable and environmentally friendly, perfect for travel, easy to put in your wallet or take with you."}, {"name": "RCA Universal Palm Size 3Device DVD VCR TV Remote Control RCU403", "product_information": {"Manufacturer": "RC", "ASIN": "B075ZH94L7", "Is Discontinued By Manufacturer": "No", "Date First Available": "September 27, 2017"}, "brand": "Visit the RC Store", "brand_url": "https://www.amazon.com/stores/RC/page/E7CEAD97-4991-4E66-911A-97D49D6ACC2E?ref_=ast_bln", "full_description": "RCA Universal Palm Size 3Device DVD VCR TV Remote Control RCU403", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/412fYCzw7-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": "", "small_description": ["RCA Universal Palm Size 3Device DVD VCR TV Remote Control RCU403 "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B075ZH94L7", "category": "electronics", "query": "VCRs", "page": 154, "small_description_old": "RCA Universal Palm Size 3Device DVD VCR TV Remote Control RCU403"}, {"name": "Raising Arrows Sweatshirt, Psalm 127 3-5 Sweater, Bible Quote Cool Unisex Sweatshirt, Girl Quote, Christian Mom Gift. White", "product_information": {"Item Weight\n \u200f": "\u200e\n 1.31 Pounds", "Item model number\n \u200f": "\u200e\n PF5f74bc5122d41V56", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n September 30, 2020", "Manufacturer\n \u200f": "\u200e\n Generic", "ASIN\n \u200f": "\u200e\n B08KGWLWFN", "": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_sl_s_ap_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "A sturdy and warm sweatshirt bound to keep you warm in the colder months. A pre-shrunk, classic fit sweater that's made with air-jet spun yarn for a soft feel and reduced pilling. 50% cotton, 50% polyester Pre-shrunk Classic fit with no center crease 1x1 athletic rib knit collar with spandex Air-jet spun yarn with a soft feel and reduced pilling Double-needle stitched collar, shoulders, armholes, cuffs, and hem", "pricing": "$32.99", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/41aCup90epL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Fashion Hoodies & Sweatshirts", "average_rating": "", "small_description": ["50% Polyester, 50% Cotton ", "18000 Unisex Heavy Blend Crewneck Sweatshirt "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ATIM6SLQKQ35C", "seller_name": "KARAKATE", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08KGWLWFN", "category": "fashion", "query": "Men's Sweaters", "page": 173, "small_description_old": "50% Polyester, 50% Cotton 18000 Unisex Heavy Blend Crewneck Sweatshirt"}, {"name": "Professional Stainless Steel Oval Roaster with Wire Rack and High Dome for Turkey Ham Chicken Meat Roasts Casseroles & Vegetables | Induction Safe", "product_information": {"Product Dimensions": "18.5 x 5.5 x 12.8 inches", "Item Weight": "5 pounds", "Manufacturer": "LavoHome", "ASIN": "B07KY5X445", "Item model number": "RB-008", "Customer Reviews": {"ratings_count": 96, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#153,687 in Kitchen & Dining (See Top 100 in Kitchen & Dining) #163 in Roasting Pans"], "Is Discontinued By Manufacturer": "No", "Date First Available": "November 28, 2018"}, "brand": "Visit the LavoHome Store", "brand_url": "https://www.amazon.com/stores/lavohome/page/79F46588-3679-43D8-BC3C-8A15CB194139?ref_=ast_bln", "full_description": "Heavy Duty Professional Grade Stainless Steel 3 Pc Multi Roaster Oven Cookware Set With Wire Rack, High Dome Large Lid for Turkey Meat Chicken Vegetables Oven Safe up to 600 Degrees!", "pricing": "$54.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41puJ5Rx0sL.jpg", "https://m.media-amazon.com/images/I/41cGIjAsdGL.jpg", "https://m.media-amazon.com/images/I/31HduwppGEL.jpg", "https://m.media-amazon.com/images/I/41-pau4kdXL.jpg", "https://m.media-amazon.com/images/I/41X1dCInSEL.jpg", "https://m.media-amazon.com/images/I/41JKDd2W6sL.jpg", "https://m.media-amazon.com/images/I/31oNda9Fw5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Kitchen & Dining \u203a Cookware \u203a Pots & Pans \u203a Roasting Pans", "average_rating": 4.5, "small_description": ["HIGH QUALITY STAINLESS STEEL: Stainless Steel Turkey Roaster with wire rack is a complete system for roasting turkey and pot roasts. It features a spacious and thermally efficient design that's perfect for roasting or braising large poultry or meat. ", "HEAVY DUTY & DURABLE CONSTRUCTION: Heavy gauge stainless steel construction ensures lasting. Polished stainless steel exterior with signature handles. Oven Safe up to 600 degrees. Induction safe. ", "GREAT FOR ENTERTAINING: Large capacity for making big meals for your family and guests during events and the holiday season. Attractive highly polished stainless steel makes an attractive look that will easily go from oven (for roasting) to stove top (for making gravy) to table (for serving). ", "DOMED LID FOR LARGE ROASTS & TURKEY: High domed lid prevents heat and moisture from escaping to provide a tender, tasty and juicy result. Stainless steel loop handles for easy handling. ", "DIMENSIONS: 18.5 x 12.8 x 5.3 inches "], "total_reviews": 96, "total_answered_questions": "", "model": "RB-008", "customization_options": "", "seller_id": "A1M366Q439UQGU", "seller_name": "Lavo Home - Unique Imports, Better Service!", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07KY5X445", "category": "garden", "query": "Baker's Racks", "page": 214, "small_description_old": "About this item\n \nHIGH QUALITY STAINLESS STEEL: Stainless Steel Turkey Roaster with wire rack is a complete system for roasting turkey and pot roasts. It features a spacious and thermally efficient design that's perfect for roasting or braising large poultry or meat. HEAVY DUTY & DURABLE CONSTRUCTION: Heavy gauge stainless steel construction ensures lasting. Polished stainless steel exterior with signature handles. Oven Safe up to 600 degrees. Induction safe. GREAT FOR ENTERTAINING: Large capacity for making big meals for your family and guests during events and the holiday season. Attractive highly polished stainless steel makes an attractive look that will easily go from oven (for roasting) to stove top (for making gravy) to table (for serving). DOMED LID FOR LARGE ROASTS & TURKEY: High domed lid prevents heat and moisture from escaping to provide a tender, tasty and juicy result. Stainless steel loop handles for easy handling. DIMENSIONS: 18.5 x 12.8 x 5.3 inches"}, {"name": "Pilon Espresso Coffee, 10 Ounce (Pack of 12)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 14.41 x 6.81 x 6.22 inches; 10 Ounces", "UPC\n \u200f": "\u200e\n 074471006526", "Manufacturer\n \u200f": "\u200e\n J.M. Smucker Company", "ASIN\n \u200f": "\u200e\n B009LHWYO8", "Country of Origin\n \u200f": "\u200e\n USA", "Domestic Shipping": "Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.", "International Shipping": "This item is not eligible for international shipping.Learn More", "Best Sellers Rank": "#20,235 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#382 in Ground Coffee", "#382 in Ground Coffee": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: PILON", "brand_url": "https://www.amazon.com/PILON/b/ref=bl_dp_s_web_20709324011?ie=UTF8&node=20709324011&field-lbr_brands_browse-bin=PILON", "full_description": "Cafe Pilon delicious espresso coffee is produced by a unique blend of choice coffee beans that are roasted, ground and vacuum packed, using the most advanced technology that guarantees superb freshness aroma and taste.", "pricing": "$53.88", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51YdyVMGV9L.jpg", "https://m.media-amazon.com/images/I/419NVDe+zLL.jpg", "https://m.media-amazon.com/images/I/3147ioSY3KL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Coffee, Tea & Cocoa \u203a Coffee \u203a Ground Coffee", "average_rating": 4.9, "small_description": ["100% Pure coffee ", "Extra fine grind ", "Contains 12 - 10 ounce bricks Pilon Espresso Coffee "], "total_reviews": 497, "total_answered_questions": 4, "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B009LHXARS/ref=twister_B071RB2XZM", "value": "Caffeinated", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Espresso", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B009LHXBV8/ref=twister_B071RB2XZM", "value": "Gourmet", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B009LHXARS/ref=twister_B071RB2XZM", "value": "10 Ounce (Pack of 6)", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "10 Ounce (Pack of 12)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B009LHWXEO/ref=twister_B071RB2XZM?_encoding=UTF8&psc=1", "value": "240 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B009LHXBV8/ref=twister_B071RB2XZM", "value": "Can", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B009LHX7LW/ref=twister_B071RB2XZM", "value": "Family Brick", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B009LHWYO8", "category": "grocery", "query": "Milks & Creams", "page": 388, "small_description_old": "About this item Dark Roast 100% Pure coffee Extra fine grind Contains 12 - 10 ounce bricks Pilon Espresso Coffee"}, {"name": "PAVILIA Decorative Sherpa Throw Pillow Covers, Set of 2, 18x18, Light Pink Blush Fluffy Pillow Cases for Couch, Bed, Sofa|Soft Accent Cushion Cover, Shaggy Living Room Decor", "product_information": {"Package Dimensions": "11.14 x 10.94 x 1.5 inches", "Item Weight": "12.3 ounces", "Department": "Womens", "Manufacturer": "PAVILIA", "ASIN": "B08L2ZDWN2", "Customer Reviews": {"ratings_count": 594, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#33,165 in Home & Kitchen (See Top 100 in Home & Kitchen) #419 in Throw Pillow Covers"], "material_composition": "Sherpa Polyester", "Fabric Wash": "Wash separately in cold water", "Material Care Instructions": "Wash separately in cold water, Do not tumble dry. Our pillow does not shed and get softer with each wash.", "Number of Pieces": "2", "Batteries Required?": "No"}, "brand": "Visit the PAVILIA Store", "brand_url": "https://www.amazon.com/stores/PAVILIA/page/3CE82E43-F013-4268-BEEE-E6557C0696C1?ref_=ast_bln", "full_description": "", "pricing": "$13.99", "list_price": "", "availability_quantity": 9, "availability_status": "Only 9 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41n036RAL-S.jpg", "https://m.media-amazon.com/images/I/410bIbcKfQL.jpg", "https://m.media-amazon.com/images/I/51Rq9ZRJiWL.jpg", "https://m.media-amazon.com/images/I/5175+5c5tML.jpg", "https://m.media-amazon.com/images/I/51oXRPxcXoL.jpg", "https://m.media-amazon.com/images/I/51DLM9nYQDL.jpg", "https://m.media-amazon.com/images/I/51W4RbfqAUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": 4.5, "small_description": ["Two 18x18 inches sherpa fleece pillow covers set. COVERS ONLY. ", "SUPER SOFT SHERPA FLEECE FAUX FUR: Plush and cozy, these pillow cases are soft and extra fluffy with luxurious hand feel. ", "ACCENT YOUR DECOR: Shaggy velvet fabric will add depth to your sofa, couch, bed and living room. Comes with multiple color for mix and match. ", "ZIPPER CLOSURE: Invisible zipper sewed on the edge for an elegant look. Easy to insert. ", "EASY TO CARE: Wash separately in cold water, Do not tumble dry. Our pillow does not shed and get softer with each wash. "], "total_reviews": 594, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08L33SK3N/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "Beige Latte", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21GZ6-HCuWL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L32D49R/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/114n9IkwcBL.jpg"}, {"is_selected": true, "url": null, "value": "Blush Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/512dvIIEN4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L313X1Y/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "Dusty Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51CPtKWDsBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L2YX8YZ/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "Emerald Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ObMq6AW+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L32536D/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "Lavender", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51+BE+sjQNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L2ZGLZC/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "Light Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Skkx2iTjL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L33ZJPH/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "Mustard Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61kAisvgzDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L2ZDYWK/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "Teal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51rhEl3WeCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B093N9H62G/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01RinAAF1ZL.jpg"}], "Size": [{"is_selected": true, "url": null, "value": "18''x18''", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L2ZF8N8/ref=twister_B08L31NNKG?_encoding=UTF8&psc=1", "value": "20''x20''", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A1ID36P4IX52ZW", "seller_name": "Caravan Group", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08L2ZDWN2", "category": "garden", "query": "Decorative Pillows", "page": 45, "small_description_old": "About this item Two 18x18 inches sherpa fleece pillow covers set. COVERS ONLY. SUPER SOFT SHERPA FLEECE FAUX FUR: Plush and cozy, these pillow cases are soft and extra fluffy with luxurious hand feel. ACCENT YOUR DECOR: Shaggy velvet fabric will add depth to your sofa, couch, bed and living room. Comes with multiple color for mix and match. ZIPPER CLOSURE: Invisible zipper sewed on the edge for an elegant look. Easy to insert. EASY TO CARE: Wash separately in cold water, Do not tumble dry. Our pillow does not shed and get softer with each wash."}, {"name": "Vaseline Men Extra Strength Body And Face Lotion - 10 Oz ( Pack of 5 )", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 7.38 x 2.75 x 1.5 inches; 12 Ounces", "Department\n \u200f": "\u200e\n Beauty", "UPC\n \u200f": "\u200e\n 305210416390", "Manufacturer\n \u200f": "\u200e\n VASELINE", "ASIN\n \u200f": "\u200e\n B01IA9BY1G", "Best Sellers Rank": "#29,147 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#562 in Body Lotions", "#562 in Body Lotions": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Vaseline Store", "brand_url": "https://www.amazon.com/stores/Vaseline/page/77759F9D-DA77-4420-A305-A8D9DE07BFA2?ref_=ast_bln", "full_description": "Vaseline Men Extra Strength Body and Face Lotion resilient, moisturized skin to keep you looking and feeling healthy.", "pricing": "$15.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41hMKAqkv9L.jpg", "https://m.media-amazon.com/images/I/41xp3lkBKdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Moisturizers \u203a Lotions", "average_rating": 4.7, "small_description": [""], "total_reviews": 287, "total_answered_questions": "", "customization_options": "", "seller_id": "AK450YTF8AXGO", "seller_name": "Red White Blue", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01IA9BY1G", "category": "beauty", "query": "Face Care", "page": 56, "small_description_old": ""}, {"name": "Women Faux Fur Lined Jacket Coat Winter Warm Thick Fleece Outwear Trench Zipper Plus Size Long Sleeve Plush Overcoat", "product_information": {"Item model number\n \u200f": "\u200e\n winter long coats for women", "Department\n \u200f": "\u200e\n Unisex Adult", "Date First Available\n \u200f": "\u200e\n October 30, 2021", "Manufacturer\n \u200f": "\u200e\n \u2708Oversized Wool Lined Jackets for Women", "ASIN\n \u200f": "\u200e\n B09KP6FT4B", "": ""}, "brand": "Brand: HENGCHENG", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=HENGCHENG", "full_description": "\ud83d\udc8eWomen/Men Winter Warm Jacket Coat Parkas\ud83d\udc8eA Must-Have Womens Fleece Jacket Coat in Your Wardrobe.\ud83d\udc8eWardrobe Essentials For You In Cold Day\ud83c\udf08Unique Design: long sleeve with drop shoulder, a bit see through, soft knitted fabric, round hemline, loose fitting casual style\ud83c\udf08made of high quality knit soft fabrics, which are smooth, comfy and stretchable, flexible and breathable, comfortable to wear.\ud83c\udf08Features: Casual Loose Fit Ladies Cozy Plush Jacket Long Sleeve Coat Winter Warm Open Front Outwear Hooded Parkas Soft Enough to Wear in any Occasion\ud83c\udf08Material: Most Polyester or Wool and Spandex; Casual, comfortable, lightweight fabric perfect for relaxed everyday wear. Feels smooth against the skin, looks caoty.\ud83c\udf08coats up Match\uff1aIt is Perfect Pair With Fuzzy Leggings ,Skinny Jeans,Leggings,caots,Tank Tops,Boots Or Sneakers in Winter\u00a0\ud83c\udf38\ud83c\udf38 Size Guidelines:The Size Chart is in The Last Picture\ud83c\udf08Please Allow 0.5-2Inch Differs Due to Manual Measurement, Thanks!\ud83c\udf08If you have any questions, please feel free to contact our service team, we will solve it for you.women fleece jackets for flannel coats fall zip up hoodie oversized sweatshirts plush jacket coats casual royal fleece vests winter warm womens fuzzy jackets plus size cardigan sherpa coats stand long women's flannels plaid jacket suit cowl neck tops wool jacket women winter casual flannel sweatshirts cocktail coats grace long sleeve swimsuits hooded vests womens fashion coat gothic clothes zip up winter witch jacket chrismas oversized kawaii cute hooded jacket coats", "pricing": "$47.41$59.07", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31Nkx3FT1hL.jpg", "https://m.media-amazon.com/images/I/31AulK4dh2L.jpg", "https://m.media-amazon.com/images/I/31Afqra-LoL.jpg", "https://m.media-amazon.com/images/I/31d1QxoxHxL.jpg", "https://m.media-amazon.com/images/I/317vf2EdPcL.jpg", "https://m.media-amazon.com/images/I/41BfZwEinPL.jpg", "https://m.media-amazon.com/images/I/41JQZWJxVTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Coats, Jackets & Vests \u203a Fur & Faux Fur", "average_rating": "", "small_description": ["\u2708 \u2708\u2708 We Have an Exclusive Courier Partner, The Fastest Delivery Time Can Reach Your Address In 7-10 Days \u2708\u2708\u2708 \u2714 Plush Jacket for Women Plus Size \u2714Wool Hooded Jacket Coat Tops \u2714Winter Warm Fleece Parkas for Women \u2714Oversized Wool Lined Jackets for Women \u2714Fuzzy Sherpa Jackets for Women \u2714Winter Plus Size Plush Jacket Coat ", "womens zippered sweatshirts hoodies lining ", "fur hooded coat closure ", "\ud83d\udc95 \ud835\ude16\ud835\ude2f \ud835\ude1a\ud835\ude22\ud835\ude2d\ud835\ude26 !! \ud835\ude0a\ud835\ude2d\ud835\ude26\ud835\ude22\ud835\ude33\ud835\ude22\ud835\ude2f\ud835\ude24\ud835\ude26 Promotion !!RECOMMEND! \u2708\u2708Winter Warm Fleece Jacket Coat for women plus size \ud83d\udc8bThis Long Sleeve Fuzzy Jacket Coat Is Suitable \ud83d\udc38 Casual Hood Plush Parka Coat for Women ", "\u273fSuperior Fabric: Shell:Polyester Fabric,Fleece Lined.High quality material, skin friendly, soft,comfortable to wear,keep you warm in cold weather. ", "\u273fFeatures: Fixed hood with faux fur trim; Main body Lined with fleece; Padded with silk-wadding; Thicken design; Waistline with drawstring; Two open pockets in the front; Zipper & press-button fastening front. ", "\u273fStyle: Long length and hooded parka jacket with adjustable drawstring waist to keep you warm and nice all day. , \u273fwinter parka jacket with Button & zip fly closure, 2 side pockets, perfect for winter skiing, hiking,journey,climbing,outdoor sports or casual wear, it is ideal for women outside wearing in this cold winter season., \u273fNotice: Please refer to our size chart picture before ordering. If you like the loose style, Please order 1-2 size larger than your usual size.(Non-Amazon size)"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09KP6FT4B/ref=twister_B09KP7BNND", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31BHewPdAsL.jpg"}, {"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Nkx3FT1hL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KP52PSM/ref=twister_B09KP7BNND", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41lKZsdVfIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KR46115/ref=twister_B09KP7BNND", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410oZOPWpML.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09KP6CFYX"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09KP5K7GM"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09KP78G37"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09KP7KN4D"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09KP8JNLG"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09KP87P6Q"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09KP78G37", "category": "fashion", "query": "Women's Coats, Jackets & Vests", "page": 101, "small_description_old": "\u2708 \u2708\u2708 We Have an Exclusive Courier Partner, The Fastest Delivery Time Can Reach Your Address In 7-10 Days \u2708\u2708\u2708 \u2714 Plush Jacket for Women Plus Size \u2714Wool Hooded Jacket Coat Tops \u2714Winter Warm Fleece Parkas for Women \u2714Oversized Wool Lined Jackets for Women \u2714Fuzzy Sherpa Jackets for Women \u2714Winter Plus Size Plush Jacket Coat zip up front caot women lining parka with pockets closure \ud83d\udc95 \ud835\ude16\ud835\ude2f \ud835\ude1a\ud835\ude22\ud835\ude2d\ud835\ude26 !! \ud835\ude0a\ud835\ude2d\ud835\ude26\ud835\ude22\ud835\ude33\ud835\ude22\ud835\ude2f\ud835\ude24\ud835\ude26 Promotion !!RECOMMEND! \u2708\u2708Winter Warm Fleece Jacket Coat for women plus size \ud83d\udc8bThis Long Sleeve Fuzzy Jacket Coat Is Suitable \ud83d\udc38 Casual Hood Plush Parka Coat for Women long furry vest camel wrap coat women womens business rain jacket juniors dress coats for winter suits biking colorful fur plus size orange fringe merino wool sweater bodysuit pullover sweatshirt with thumb holes belted sequin stars leopard print cashmere snowboard plaid boxy knit fuzzy hoodie ugly buttons dusty rose tshirt girl western jackets pearl mink yoga dressy leather compression sweat shirt youth gray duster boho hooded white see through tweed waterproof genuine suit hoodies sweaters fuzzy zip cheap warm shirts teddy coat for women oversized llama duster womens cozy winter jacket maroon bear plus size lepoard sherpa lapel men fur lauren ralph faux shearling angashion fleece plush hoodie cartoon print up coat sweater woman cardigan jackets sweater long coats simply southern sherpas soft fluffy prettygarden fuzzy long vest oversized camel color coat women short teddy bear pooper jacket fuzzzy teens coats polyester in shearling ladies fur collared winter peacoat trench outwear plus size women fall and winter coats on clearance petite long wool coat chenille sweater textured womens leather vest fringe riding black duster for checkered leopard print denim jacket fluffy hooded teddy bear sweetheart neckline tank belted womans biker hoodie soft furry kids orange turtleneck brown bodysuit padded vests cheetah trench tencel leggings girls navy pastel fur mustard draped woman military juniors sequin cropped flannel bomber wrap beige cardigan \n long furry vest camel wrap coat women womens business rain jacket juniors dress coats for winter suits biking colorful fur plus size orange fringe merino wool sweater bodysuit pullover sweatshirt with thumb holes belted sequin stars leopard print cashmere snowboard plaid boxy knit fuzzy hoodie ugly buttons dusty rose tshirt girl western jackets pearl mink yoga dressy leather compression sweat shirt youth gray duster boho hooded white see through tweed waterproof genuine suit hoodies sweatersfuzzy zip cheap warm shirts teddy coat for women oversized llama duster womens cozy winter jacket maroon bear plus size lepoard sherpa lapel men fur lauren ralph faux shearling angashion fleece plush hoodie cartoon print up coat sweater woman cardigan jackets sweater long coats simply southern sherpas soft fluffy prettygarden fuzzy long vest oversized camel color coat women short teddy bear pooper jacket fuzzzy teens coats polyester in shearling ladies fur collared winter peacoat trench outwearShow more"}, {"name": "36pcs / Bag Hair Extension Tape, Lace Front Wig Double Sided Adhesive Tape,Wigs Adhesive Tape Accessor for Hair Extensions Wigs Supplies", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 0.39 x 0.39 x 0.39 inches; 1.27 Ounces", "Manufacturer\n \u200f": "\u200e\n Betued", "ASIN\n \u200f": "\u200e\n B096MM7XM4", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#642,778 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#728 in Wig & Hairpiece Adhesives", "#728 in Wig & Hairpiece Adhesives": ""}, "brand": "Visit the Betued Store", "brand_url": "https://www.amazon.com/stores/Betued/page/2D9BFC16-C910-49C9-A453-0D02B27E6796?ref_=ast_bln", "full_description": "Feature: 1. Comfortable and healthy, double\u2011sided tape, adhesive and easy to clean, bring you convenience. 2. Long service life, the longest use time of the tape (2\u20114 weeks), durable. Depending on the temperature, humidity and body fat, they can last up to 6 weeks. 3. Durable wate-rproof function, you can swim, sleep and bathe while wearing. 4. You can use it for various hairdressing products, wigs, front lace wig, toupee, etc. 5. Double\u2011sided strip of tape, safe to the skin, used to fix the wig on the scalp. Specification: Condition: 100% Brand New Item Type: Wig Double Sided Adhesive Tape Specification: 1 bag / 36pcs Features: Firm and durable, used for wigs. Uses: Household, hair salon, etc. Size: Approx. 7.6 x 2.2cm / 3 x 0.9in Package List: Note: 1.\u00a0Please\u00a0allow\u00a0slight\u00a0error\u00a0due\u00a0to\u00a0manual\u00a0measurement.\u00a0Thanks\u00a0for\u00a0your\u00a0understanding. 2.\u00a0Monitors\u00a0are\u00a0not\u00a0calibrated\u00a0same,\u00a0item\u00a0color\u00a0displayed\u00a0in\u00a0photos\u00a0may\u00a0be\u00a0showing\u00a0slightly\u00a0different\u00a0from\u00a0the\u00a0real\u00a0object.\u00a0Please\u00a0take\u00a0the\u00a0real\u00a0one\u00a0as\u00a0standard.", "pricing": "$11.69", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41y2kNLF56L.jpg", "https://m.media-amazon.com/images/I/41VC-XFhP6L.jpg", "https://m.media-amazon.com/images/I/41eUjBH7xVL.jpg", "https://m.media-amazon.com/images/I/41L8H4b1ShL.jpg", "https://m.media-amazon.com/images/I/41xbemOdzXL.jpg", "https://m.media-amazon.com/images/I/31449jjIijL.jpg", "https://m.media-amazon.com/images/I/312nyhtthPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Adhesives", "average_rating": "", "small_description": ["WHAT YOU GET: You will receive 1 bag / 36pcs of double sided replacement tapes in this package, sufficient quantity to meet and satisfy your daily use, the color is classic and you can also share with your good friends or families ", "COMFORTABLE TO USE: These double sided replacement tapes are made of quality adhesive material, convenient and durable, adhesive and easy to clean, bring you convenience. ", "EASY TO USE: There is pre-cut design in the middle of each hair extension tape, easier and more convenient for you to peel them off and apply, they will go well with your hair extension and invisible, make you hair look more natural, nice accessories for thin hair ", "WIDE USAGES: These double sided replacement tapes are suitable for lace wigs, hair extension, toupee and more; Work naturally with your hair and you can use them to create a variety of hairstyles, bring your hair a natural shining appearance ", "2-6 WEEKS OF WEAR: This is the suggested duration of wear for this tape. Long service life, the longest use time of the tape (2\u20114 weeks), durable. Depending on the temperature, humidity and body fat, they can last up to 6 weeks. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3KMW5XZ660KGT", "seller_name": "Vruping", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B096MM7XM4", "category": "beauty", "query": "Hair Extensions, Wigs & Accessories", "page": 41, "small_description_old": "WHAT YOU GET: You will receive 1 bag / 36pcs of double sided replacement tapes in this package, sufficient quantity to meet and satisfy your daily use, the color is classic and you can also share with your good friends or families COMFORTABLE TO USE: These double sided replacement tapes are made of quality adhesive material, convenient and durable, adhesive and easy to clean, bring you convenience. EASY TO USE: There is pre-cut design in the middle of each hair extension tape, easier and more convenient for you to peel them off and apply, they will go well with your hair extension and invisible, make you hair look more natural, nice accessories for thin hair WIDE USAGES: These double sided replacement tapes are suitable for lace wigs, hair extension, toupee and more; Work naturally with your hair and you can use them to create a variety of hairstyles, bring your hair a natural shining appearance 2-6 WEEKS OF WEAR: This is the suggested duration of wear for this tape. Long service life, the longest use time of the tape (2\u20114 weeks), durable. Depending on the temperature, humidity and body fat, they can last up to 6 weeks."}, {"name": "Movie Night Gift Box with Snacks and Redbox Movie Rental Code", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 9.57 x 9.33 x 4.21 inches; 3 Pounds", "UPC\n \u200f": "\u200e\n 014181842410", "Manufacturer\n \u200f": "\u200e\n Five Buttons", "ASIN\n \u200f": "\u200e\n B07L6PR5WS", "Best Sellers Rank": "#230,334 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#765 in Snack Food Gifts", "#765 in Snack Food Gifts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Five Buttons", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Five+Buttons", "full_description": "Includes: 1 Redbox DVD Rental Code 3 Act II Butter Lovers Microwave Popcorn packs 2.75 oz 4 Movie Theater Style Popcorn Containers 1 Blue Diamond Smokehouse Almonds 1.5 oz 1 Wonderful Pistachios 1.5 oz 1 Red Vines 5 oz 1 Milk Duds5 oz 1 M&Ms1.74 oz 2 Cracker Jack 1.25 oz 2 Oreo 6-Cookie Pack 2.4oz 1 Skittles 2.17 oz 1 Pirate Booty 0.5 oz 2 Planters peanuts 1 oz", "pricing": "$36.95", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/517Tf0OslpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Food & Beverage Gifts \u203a Snack Gifts", "average_rating": 4.7, "small_description": ["What's better than movies and great snacks? It's the gift everyone wants! ", "Perfect for families, college students, teacher gifts, birthdays, holiday gifts for relatives and friends. Or keep it for yourself! ", "Gift box contains: 1 Redbox DVD Rental Code, 3 Act II Butter Lovers Microwave Popcorn packs 2.75 oz, 4 Movie Theater Style Popcorn Containers, 1 Blue Diamond Smokehouse Almonds 1.5 oz, 1 Wonderful Pistachios 1.5 oz, 1 Red Vines 5 oz, 1 Milk Duds 5 oz, 1 M&Ms1.74 oz, 2 Cracker Jack 1.25 oz, 2 Oreo 6-Cookie Pack 2.4 oz, 1 Skittles 2.17 oz, 1 Pirate Booty 0.5 oz, 2 Planters peanuts 1 oz "], "total_reviews": 26, "total_answered_questions": "", "customization_options": "", "seller_id": "A1T2X22KKR30PR", "seller_name": "Five Buttons", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07L6PR5WS", "category": "grocery", "query": "Snack Food Gifts", "page": 119, "small_description_old": "What's better than movies and great snacks? It's the gift everyone wants! Perfect for families, college students, teacher gifts, birthdays, holiday gifts for relatives and friends. Or keep it for yourself! Gift box contains: 1 Redbox DVD Rental Code, 3 Act II Butter Lovers Microwave Popcorn packs 2.75 oz, 4 Movie Theater Style Popcorn Containers, 1 Blue Diamond Smokehouse Almonds 1.5 oz, 1 Wonderful Pistachios 1.5 oz, 1 Red Vines 5 oz, 1 Milk Duds 5 oz, 1 M&Ms1.74 oz, 2 Cracker Jack 1.25 oz, 2 Oreo 6-Cookie Pack 2.4 oz, 1 Skittles 2.17 oz, 1 Pirate Booty 0.5 oz, 2 Planters peanuts 1 oz"}, {"name": "Old Trapper Teriyaki Double Eagle Beef Jerky | Traditional Style Real Wood Smoked | 1 Jar (80 Pieces)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.2 x 4.9 x 4.4 inches; 1.6 Pounds", "UPC\n \u200f": "\u200e\n 079694703030", "Manufacturer\n \u200f": "\u200e\n Old Trapper Smoked Products, Inc.", "ASIN\n \u200f": "\u200e\n B004PCJTR4", "Best Sellers Rank": "#5,206 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#57 in Jerky", "#57 in Jerky": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Old Trapper Store", "brand_url": "https://www.amazon.com/stores/Old+Trapper/page/13187ED1-CC79-4952-A5AE-526BF0523A98?ref_=ast_bln", "full_description": "", "pricing": "$29.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41j1A+gmQ3L.jpg", "https://m.media-amazon.com/images/I/41RkkZjUhcL.jpg", "https://m.media-amazon.com/images/I/51atJcMLQ7L.jpg", "https://m.media-amazon.com/images/I/510UEJptksL.jpg", "https://m.media-amazon.com/images/I/41mHquN4i4L.jpg", "https://m.media-amazon.com/images/I/41xBkcJg9QL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Meat Snacks \u203a Jerky", "average_rating": 4.4, "small_description": ["CELEBRATING 50 YEARS OF HIGH-QUALITY MEAT SNACKS - Since 1969, Old Trapper has been dedicated to providing the highest quality, best tasting snack available. That 50 years of experience, complemented by continued investments in state-of-the-art processes, results in top-quality products that are distributed nationwide. Old Trapper offers a full line of premium meat snacks. ", "BEEF JERKY, SMOKED THE OLD FASHIONED WAY - All Old Trapper products are still smoked the old fashioned way, using real wood chips, giving it that distinct smoky flavor that people keep coming back for. If that\u2019s not enough, our teriyaki flavored jerky adds some sweetness to the mix making it a nearly unstoppable snack. ", "LOW in carbohydrates and 5 grams sugar with 11 grams of protein per serving, they represent a keto-friendly snack. ", "SMOKED THE OLD FASHIONED WAY, WITH A UNIQUE TERIYAKI TWIST - To create the unique salty-sweet flavor in our Teriyaki beef jerky, we marinate lean beef strips in soy sauce and apple cider vinegar, season the cuts with our own mix of spices, then smoke them with real wood until they\u2019re tender, juicy, and delicious. You deserve the best, eat Old Trapper. ", "TASTE OF HEAVEN - Hands down, this will be the best-tasting beef jerky you'll ever get your hands on. Take us up on our offer, and discover the tender, never tough beef jerky that will be the best you\u2019ve ever tasted. "], "total_reviews": 638, "total_answered_questions": "", "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B004PVQ8B0/ref=twister_B07ZVY64KH?_encoding=UTF8&psc=1", "value": "Old Fashioned", "price_string": "$29.98", "price": 29.98, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07NZ1XPW1/ref=twister_B07ZVY64KH?_encoding=UTF8&psc=1", "value": "Peppered", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07T2XRHFJ/ref=twister_B07ZVY64KH?_encoding=UTF8&psc=1", "value": "Spicy", "price_string": "$29.99", "price": 29.99, "image": null}, {"is_selected": true, "url": null, "value": "Teriyaki", "price_string": "$29.99", "price": 29.99, "image": null}]}, "seller_id": "AEPXIZQ2B3GAV", "seller_name": "Dusty's Beef Jerky", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B004PCJTR4", "category": "grocery", "query": "Meat Substitutes", "page": 98, "small_description_old": "About this item CELEBRATING 50 YEARS OF HIGH-QUALITY MEAT SNACKS - Since 1969, Old Trapper has been dedicated to providing the highest quality, best tasting snack available. That 50 years of experience, complemented by continued investments in state-of-the-art processes, results in top-quality products that are distributed nationwide. Old Trapper offers a full line of premium meat snacks. BEEF JERKY, SMOKED THE OLD FASHIONED WAY - All Old Trapper products are still smoked the old fashioned way, using real wood chips, giving it that distinct smoky flavor that people keep coming back for. If that\u2019s not enough, our teriyaki flavored jerky adds some sweetness to the mix making it a nearly unstoppable snack. LOW in carbohydrates and 5 grams sugar with 11 grams of protein per serving, they represent a keto-friendly snack. SMOKED THE OLD FASHIONED WAY, WITH A UNIQUE TERIYAKI TWIST - To create the unique salty-sweet flavor in our Teriyaki beef jerky, we marinate lean beef strips in soy sauce and apple cider vinegar, season the cuts with our own mix of spices, then smoke them with real wood until they\u2019re tender, juicy, and delicious. You deserve the best, eat Old Trapper. TASTE OF HEAVEN - Hands down, this will be the best-tasting beef jerky you'll ever get your hands on. Take us up on our offer, and discover the tender, never tough beef jerky that will be the best you\u2019ve ever tasted."}, {"name": "3D Virtual Reality Glasses - VR Headset for Phones, Virtual Reality Glasses with Wireless Headset Goggles, VR Glasses for Movies and Games with Remote Control", "product_information": {"Manufacturer": "Lunyan", "ASIN": "B09P42GFBR"}, "brand": "Brand: Lunyan", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Lunyan", "full_description": "\u2661 Vr Headset For Phones 3D Virtual Reality Glasses With Wireless Headset Goggles For Movies And Games With Remote Control \u2661 \u2661 Description\uff1a \u2661 VR glasses: This VR headset is smaller than you think. It is not only suitable for family use, but also suitable for travel. You can easily turn your smartphone into a private 3D theater/game scene, allowing you to be immersed in virtual reality at any time and enjoy stunning 3D effects. \u2661 The earphones have their own earphones. Take out the cable from the glasses and insert the 3mm earphone jack to connect to the earphones. \u2661 The myopia vision is less than 800 degrees. You can adjust the clarity by adjusting the button sliding button on the VR below, so that people with myopia can see without using silver mirrors. \u2661 Compact and foldable design: smaller than you think, compact and foldable, the shell is made of stylish and elegant white leather, which fits the face without air leakage and has better air permeability. Suitable for home, travel, outdoor and various activities. \u2661 Size: 21x11x23cm \u2661 \u2661 Notice: \u2661 The VR QR code is the product manual. Each mobile phone may use a different APP to scan, and sometimes it is impossible to scan the QR code, but don't worry, every VR has a paper manual. \u2661 If you feel dizzy during use, please take it off and rest for a while. It may be dizzy for 3 days. \u2661 When using this product, it is recommended to use Apple's original headset adapter cable (LT to 3.5mm) for Apple mobile phones. Non-original adapter cable, the button function on the glasses will not be used \u2661 \u2661 Include: \u2661 1xVR glasses \u2661 1x manual \u2661 1x Bluetooth remote control", "pricing": "$143.30", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31DanoFR0AL.jpg", "https://m.media-amazon.com/images/I/41XEVI-ADjL.jpg", "https://m.media-amazon.com/images/I/51486PKq56L.jpg", "https://m.media-amazon.com/images/I/41lJwMd1zVL.jpg", "https://m.media-amazon.com/images/I/51Y+QHxJ3YL.jpg", "https://m.media-amazon.com/images/I/41Kek1XfjXL.jpg", "https://m.media-amazon.com/images/I/51k8Fqb94EL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Virtual Reality (VR) Headsets", "average_rating": "", "small_description": ["3D Virtual Reality Glasses: This VR headset is smaller than you think. It is not only suitable for family use, but also suitable for travel. You can easily turn your smartphone into a private 3D theater/game scene, allowing you to be immersed in virtual reality at any time and enjoy stunning 3D effects. ", "The best gift for children, family and friends: Are you still worrying about choosing a gift? This 3D VR headset is the best gift for children\u2019s family and friends. Wireless connection, blue light goggles, FOV 120\u00b0 wide viewing angle, eye protection aspheric optical lens, suitable for children/sons/daughters/men/women/mothers/fathers/grandmothers. VR goggles with headbands are an original gift for those who like new technologies and gadgets. ", "Fashion and Comfort: In order to let you experience our products better, we have added some brand new design elements. We use skin-friendly, fashionable and elegant white PU leather, which is more breathable and comfortable to wear. In terms of weight and volume, we have adopted ultra-light materials and a retractable folding earphone design. In terms of lenses, we use anti-blue, 55mm high-definition independent large lenses, which can reduce users\u2019 eye fatigue and protect eyesight. ", "Compact and Foldable Design: smaller than you think, compact and foldable, the shell is made of stylish and elegant white leather, which fits the face without air leakage and has better air permeability. Suitable for home, travel, outdoor and various activities. ", "Worry Free Shopping: We are committed to giving you premium quality products that are worth every penny. Quick and friendly services will be provided. If you have any questions or need any help, please contact us. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "A", "price_string": "$143.30", "price": 143.3, "image": "https://m.media-amazon.com/images/I/31DanoFR0AL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P3YHGC8/ref=twister_B09P438NM3?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$153.30", "price": 153.3, "image": "https://m.media-amazon.com/images/I/41xdSWXE9WL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P41FHLG/ref=twister_B09P438NM3?_encoding=UTF8&psc=1", "value": "White", "price_string": "$153.30", "price": 153.3, "image": "https://m.media-amazon.com/images/I/311cjTswalL.jpg"}]}, "seller_id": "A3HF4F1732Y2C", "seller_name": "Lunyan", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P42GFBR", "category": "electronics", "query": "Virtual Reality", "page": 76, "small_description_old": "3D Virtual Reality Glasses: This VR headset is smaller than you think. It is not only suitable for family use, but also suitable for travel. You can easily turn your smartphone into a private 3D theater/game scene, allowing you to be immersed in virtual reality at any time and enjoy stunning 3D effects. The best gift for children, family and friends: Are you still worrying about choosing a gift? This 3D VR headset is the best gift for children\u2019s family and friends. Wireless connection, blue light goggles, FOV 120\u00b0 wide viewing angle, eye protection aspheric optical lens, suitable for children/sons/daughters/men/women/mothers/fathers/grandmothers. VR goggles with headbands are an original gift for those who like new technologies and gadgets. Fashion and Comfort: In order to let you experience our products better, we have added some brand new design elements. We use skin-friendly, fashionable and elegant white PU leather, which is more breathable and comfortable to wear. In terms of weight and volume, we have adopted ultra-light materials and a retractable folding earphone design. In terms of lenses, we use anti-blue, 55mm high-definition independent large lenses, which can reduce users\u2019 eye fatigue and protect eyesight. Compact and Foldable Design: smaller than you think, compact and foldable, the shell is made of stylish and elegant white leather, which fits the face without air leakage and has better air permeability. Suitable for home, travel, outdoor and various activities. Worry Free Shopping: We are committed to giving you premium quality products that are worth every penny. Quick and friendly services will be provided. If you have any questions or need any help, please contact us."}, {"name": "Need Some Hank & A Drank Country Music T Shirt for Rednecks", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 8, 2018", "Manufacturer\n \u200f": "\u200e\n Need Some Hank & A Drank Country Music T Shirt for", "ASIN\n \u200f": "\u200e\n B079PH6955", "Best Sellers Rank": "#154,252 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#4,340 in Men's Novelty T-Shirts #6,443 in Women's Novelty Clothing #42,286 in Men's Fashion", "#4,340 in Men's Novelty T-Shirts": "", "#6,443 in Women's Novelty Clothing": "", "#42,286 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Need Some Hank & A Drank Country Music T Shirt for", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Need+Some+Hank+%26+A+Drank+Country+Music+T+Shirt+for", "full_description": "", "pricing": "$15.49", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A13usaonutL.png", "https://m.media-amazon.com/images/I/417S+7cf-vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Shirts \u203a T-Shirts", "average_rating": 4.6, "small_description": ["Deep South Redneck gift for your best friend or family member who loves country music and enjoys drinking a cold beer with friends! To shop other attractive music tshirts, please search Birdie's Nest Music! ", "Drinking & Country Music TShirt for Rednecks \"I Need Some Hank and Something to Drank!\" To shop this design in other styles and colors, please search Birdie's Nest Country Music Rednecks! who loves country music and enjoys drinking a cold beer with friends ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": 125, "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079PH6955?_encoding=UTF8&customId=B07HPWDCG8", "value": "Women", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1XSsTFkLlL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079PH6955?_encoding=UTF8&customId=B07537HQXD", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1vJUKBjc2L.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079PH6955?_encoding=UTF8&customId=B0752XJYTP", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1KLfOmCn7S.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079PH6955?_encoding=UTF8&customId=B07535YCL2", "value": "Olive", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1UOGf%2BzWMS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079PH6955?_encoding=UTF8&customId=B07537PB8C", "value": "Dark Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1MuEgxHlwS.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B0752XJYNL"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07535Y9T6"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07537P4T9"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07538GWNZ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07537PKB3"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B07535YF3H"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B079PH6955", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 100, "small_description_old": "Deep South Redneck gift for your best friend or family member who loves country music and enjoys drinking a cold beer with friends! To shop other attractive music tshirts, please search Birdie's Nest Music! Drinking & Country Music TShirt for Rednecks \"I Need Some Hank and Something to Drank!\" To shop this design in other styles and colors, please search Birdie's Nest Country Music Rednecks! who loves country music and enjoys drinking a cold beer with friends Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "Yesallwas 4D Eyebrow Tattoo Sticker 20-Pairs False Eyebrows Long Lasting Waterproof Makeup Eyebrow Transfers Stickers for Women Lady 2 Sheets (MM-05)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.38 x 8.31 x 0.16 inches; 0.49 Ounces", "Item model number\n \u200f": "\u200e\n LK248-MM-05-US", "Manufacturer\n \u200f": "\u200e\n Yesallwas", "ASIN\n \u200f": "\u200e\n B08FMSRJRP", "Best Sellers Rank": "#275,556 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,435 in Temporary Tattoos", "#2,435 in Temporary Tattoos": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Yesallwas Store", "brand_url": "https://www.amazon.com/stores/Yesallwas/page/0CAD1678-0EE8-420C-93A2-CBA61DBE975F?ref_=ast_bln", "full_description": "", "pricing": "$5.99", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41iYpnloUsL.jpg", "https://m.media-amazon.com/images/I/51+dANDLP9L.jpg", "https://m.media-amazon.com/images/I/51JaBjD5MvL.jpg", "https://m.media-amazon.com/images/I/51pUAu7+8pL.jpg", "https://m.media-amazon.com/images/I/41zOdCpkSCL.jpg", "https://m.media-amazon.com/images/I/51glSsUycGL.jpg", "https://m.media-amazon.com/images/I/51hm5V6sBYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Body \u203a Temporary Tattoos", "average_rating": 3.2, "small_description": ["Inclound:2 sheets eyebrows transfers tattoo sticker, each style has different size eyebrows to meet different requirements. ", "Unlike cosmetic tattooing and permanent embroidery, our brows cause absolutely no harm or wounds to skin with no recovery time. Stick on and stay gorgeous! ", "Whether you fancy a sharps arch, a gentle curve, or a straighter structure, you can find the perfect brows from our selection to flatter your face shape. ", "These stick-on brows instantly transform your look with full and naturals brows.Eyebrows on fleek in seconds! ", "Forget about messy application with glues or excess ink and powder all over your face. Just dap some water and peel \u2013 you are all DONE! "], "total_reviews": 70, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08FMS2NY1/ref=twister_B08FMSW5W4?_encoding=UTF8&psc=1", "value": "JD-01", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/51khAXcI1zL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FMSVWHG/ref=twister_B08FMSW5W4?_encoding=UTF8&psc=1", "value": "JD-03", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/51nUOaHOxxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FMRYJ2J/ref=twister_B08FMSW5W4?_encoding=UTF8&psc=1", "value": "JD-06", "price_string": "$4.19", "price": 4.19, "image": "https://m.media-amazon.com/images/I/51tvxCtMKlL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FMS3RMK/ref=twister_B08FMSW5W4?_encoding=UTF8&psc=1", "value": "JD-11", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/51xNJb53cXS.jpg"}, {"is_selected": true, "url": null, "value": "MM-05", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/41iYpnloUsL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FMS35BW/ref=twister_B08FMSW5W4?_encoding=UTF8&psc=1", "value": "MM-10", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/51vIbG2gAdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FMS5MZM/ref=twister_B08FMSW5W4?_encoding=UTF8&psc=1", "value": "MM-10X", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/41sZbkSTEeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FMTLH1V/ref=twister_B08FMSW5W4?_encoding=UTF8&psc=1", "value": "MM-11", "price_string": "$4.19", "price": 4.19, "image": "https://m.media-amazon.com/images/I/41yiQfuqy+L.jpg"}]}, "seller_id": "A1C68M29AAIJKI", "seller_name": "Yesallwas Shop", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08FMSRJRP", "category": "beauty", "query": "Makeup Remover", "page": 171, "small_description_old": "About this item Inclound:2 sheets eyebrows transfers tattoo sticker, each style has different size eyebrows to meet different requirements. Unlike cosmetic tattooing and permanent embroidery, our brows cause absolutely no harm or wounds to skin with no recovery time. Stick on and stay gorgeous! Whether you fancy a sharps arch, a gentle curve, or a straighter structure, you can find the perfect brows from our selection to flatter your face shape. These stick-on brows instantly transform your look with full and naturals brows.Eyebrows on fleek in seconds! Forget about messy application with glues or excess ink and powder all over your face. Just dap some water and peel \u2013 you are all DONE!"}, {"name": "Spa Savvy Shower Cap and Twist Hair Turban Duo, Enhance Your Shower Experience with this Complete Set, Fully Lined Shower Cap, Microfiber Turban (Green)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.41 x 6.46 x 1.61 inches; 3.21 Ounces", "UPC\n \u200f": "\u200e\n 810063234669", "Manufacturer\n \u200f": "\u200e\n Donnamax Inc.", "ASIN\n \u200f": "\u200e\n B098824K9T", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#835,089 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#3,612 in Shower Caps", "#3,612 in Shower Caps": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Spa Savvy", "brand_url": "https://www.amazon.com/Spa-Savvy/b/ref=bl_dp_s_web_10780271011?ie=UTF8&node=10780271011&field-lbr_brands_browse-bin=Spa+Savvy", "full_description": "This 2 piece set will always keep you covered and dry when you wash your hair or if you go for a quick rinse. The Spa Savvy Twist Hair Turban is made of 100% microfiber which is lightweight and 8x more absorbent than cotton. It holds 4x the amount of water of non-microfiber towels and dries hair gently and efficiently with less frizz, split ends and hair breakage. Use the Spa Savvy Bouffant Shower Cap to keep hair dry while showering and bathing. The fully cinched band keeps hair secure to ensure hair stays dry. Fully lined for double moisture protection. Its bouffant shape will not flatten hair and will help your blow out last longer.", "pricing": "$11.99", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41xbK6I-UNS.jpg", "https://m.media-amazon.com/images/I/41yeipFYcUS.jpg", "https://m.media-amazon.com/images/I/41sk8WeHcWS.jpg", "https://m.media-amazon.com/images/I/41AH7Xf2c5S.jpg", "https://m.media-amazon.com/images/I/41rY7SBTQnS.jpg", "https://m.media-amazon.com/images/I/51fkOM7n0iL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Shower Caps", "average_rating": 4.2, "small_description": ["COMPLETE SHOWER SET: Get all your shower hair care accessories in one place with our Twist Turban and Shower Cap Duo. ", "WATERPROOF EXTERIOR: Make sure your hair stays dry and comfortable with the Spa Savvy Woven Printed Shower Cap. Nylon exterior ensures a clean and dry flow of hair after your shower. ", "ELASTIC BAND: Keep your cap in place with our gentle but secure cinched elastic band. ", "DRY YOUR HAIR FASTER: Our microfiber hair towel is made from a revolutionary material that is extremely soft to the touch, super absorbent and fast drying. The advanced fabric absorbs more than 10 times its weight in water. This means that it'll work faster and more efficiently to dry you off, and it'll stay fresh longer because it dries out quickly. ", "SUPER EASY TO USE: Just drape the towel over the front of your head, twist around your hair, and pull back over to secure the towel in place around convenient button loop. ", "THE SPA SAVVY WAY: Spa Savvy has been a well trusted and respected brand for over 25 years bringing you the highest quality bathing and beauty accessories. "], "total_reviews": 3, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Green", "price_string": "$11.99", "price": 11.99, "image": "https://m.media-amazon.com/images/I/41xbK6I-UNS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0987ZRYZR/ref=twister_B098826QS8?_encoding=UTF8&psc=1", "value": "Purple", "price_string": "$11.99", "price": 11.99, "image": "https://m.media-amazon.com/images/I/41WNeJnVU9S.jpg"}]}, "seller_id": "A3HY4CQVEE5CX6", "seller_name": "Verified Wellness", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B098824K9T", "category": "beauty", "query": "Bathing Accessories", "page": 66, "small_description_old": "About this item COMPLETE SHOWER SET: Get all your shower hair care accessories in one place with our Twist Turban and Shower Cap Duo. WATERPROOF EXTERIOR: Make sure your hair stays dry and comfortable with the Spa Savvy Woven Printed Shower Cap. Nylon exterior ensures a clean and dry flow of hair after your shower. ELASTIC BAND: Keep your cap in place with our gentle but secure cinched elastic band. DRY YOUR HAIR FASTER: Our microfiber hair towel is made from a revolutionary material that is extremely soft to the touch, super absorbent and fast drying. The advanced fabric absorbs more than 10 times its weight in water. This means that it'll work faster and more efficiently to dry you off, and it'll stay fresh longer because it dries out quickly. SUPER EASY TO USE: Just drape the towel over the front of your head, twist around your hair, and pull back over to secure the towel in place around convenient button loop. THE SPA SAVVY WAY: Spa Savvy has been a well trusted and respected brand for over 25 years bringing you the highest quality bathing and beauty accessories."}, {"name": "Mean Well NDR-480-24 480W 20A 24VDC Single Output AC to DC DIN Rail Power Supply (NDR Series Economical Model EMC EN55022 Class B)", "product_information": {"Package Dimensions": "6.81 x 6.06 x 4.8 inches", "Item Weight": "3.3 pounds", "Manufacturer": "MEAN WELL ENTERPRISES CO., LTD.", "ASIN": "B087C56PZQ", "Customer Reviews": {"ratings_count": 2, "stars": "3.9 out of 5 stars"}, "Best Sellers Rank": ["#844 in Computer Uninterruptible Power Supply Units"], "Date First Available": "May 21, 2020"}, "brand": "Brand: MEAN WELL", "brand_url": "https://www.amazon.com/MEAN-WELL/b/ref=bl_dp_s_web_9345416011?ie=UTF8&node=9345416011&field-lbr_brands_browse-bin=MEAN+WELL", "full_description": "Safely convert alternating currents into direct currents that your electronic devices can make use of with this NDR-480-24 AC to DC power supply. It has a voltage of 24 V and maximum output power of 480 W. This part's single output can handle a current up to 20 A. This part has a temperature range of -20 \u00b0C to 70 \u00b0C.", "pricing": "$108.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41trKIMU-DL.jpg", "https://m.media-amazon.com/images/I/41NtQPwbaNL.jpg", "https://m.media-amazon.com/images/I/51oCDjoE+7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Uninterruptible Power Supply (UPS)", "average_rating": 3.9, "small_description": [""], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A28HQ7WE3N597P", "seller_name": "Kawaguchi-US", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B087C56PZQ", "category": "electronics", "query": "Power Protection", "page": 126, "small_description_old": ""}, {"name": "DeMet's Turtles Milk Chocolate Caramel Nut Cluster Bar (1.76 Ounce, 3-Piece Bar, 24 Count), Perfect Grab-N-Go Snack or Sit & Savor", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.8 x 9.02 x 1.42 inches; 2.64 Pounds", "Item model number\n \u200f": "\u200e\n 872181005019", "UPC\n \u200f": "\u200e\n 872181005033", "Manufacturer\n \u200f": "\u200e\n Turtles", "ASIN\n \u200f": "\u200e\n B0017WNF34", "Best Sellers Rank": "#71,720 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#56 in Nut Cluster Candy #1,839 in Candy & Chocolate Bars", "#56 in Nut Cluster Candy": "", "#1,839 in Candy & Chocolate Bars": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the DeMet's Turtles Store", "brand_url": "https://www.amazon.com/stores/DemetsTurtles/page/222E5EA5-0621-45EE-9D01-ED4695C3FC6B?ref_=ast_bln", "full_description": "", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31BQ1W+4hjL.jpg", "https://m.media-amazon.com/images/I/51oUAogUcRL.jpg", "https://m.media-amazon.com/images/I/31t0Fz9TBWL.jpg", "https://m.media-amazon.com/images/I/41wohorUYvL.jpg", "https://m.media-amazon.com/images/I/41kJhLCJAHL.jpg", "https://m.media-amazon.com/images/I/21lT-zw9YuL.jpg", "https://m.media-amazon.com/images/I/51DX0q8Gk9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Chocolate \u203a Candy & Chocolate Bars", "average_rating": 4.6, "small_description": ["CLASSIC PECAN CLUSTERS: When you\u2019re craving creamy caramel, crunchy pecans and luscious chocolate, reach for a Turtles Classic Bar, but don\u2019t forget to keep a few for you too ", "BURSTING WITH FLAVOR: Three ingredients that can perk up any pallet or day, Turtles are bursting with pecans and caramel wrapped up in milk chocolate for a taste that's made to delight ", "EVERYONE LOVES TURTLES: Named for the iconic shape the original nut cluster resembles, no two Turtles are the same; It\u2019s no surprise that Turtles clusters have been popular for more than 100 years ", "CLASSIC SWEET TREAT: In 1916 Chicago candy maker George DeMet struck gold with Turtles, taking the chocolate industry by storm by revolutionizing the classic sweet treat of chocolate-dipped-pecans ", "TRY THEM ALL: Turtles come in a variety of sizes, including Bites, Minis and Bars, as well as our Classic Gift Box. "], "total_reviews": 446, "total_answered_questions": 4, "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "1.76 Ounce (Pack of 24)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07PXXJQXW/ref=twister_B09HL9J5PP?_encoding=UTF8&psc=1", "value": "17.5 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B0017WNF34", "category": "grocery", "query": "Snack Food Gifts", "page": 390, "small_description_old": "About this item CLASSIC PECAN CLUSTERS: When you\u2019re craving creamy caramel, crunchy pecans and luscious chocolate, reach for a Turtles Classic Bar, but don\u2019t forget to keep a few for you too BURSTING WITH FLAVOR: Three ingredients that can perk up any pallet or day, Turtles are bursting with pecans and caramel wrapped up in milk chocolate for a taste that's made to delight EVERYONE LOVES TURTLES: Named for the iconic shape the original nut cluster resembles, no two Turtles are the same; It\u2019s no surprise that Turtles clusters have been popular for more than 100 years CLASSIC SWEET TREAT: In 1916 Chicago candy maker George DeMet struck gold with Turtles, taking the chocolate industry by storm by revolutionizing the classic sweet treat of chocolate-dipped-pecans TRY THEM ALL: Turtles come in a variety of sizes, including Bites, Minis and Bars, as well as our Classic Gift Box."}, {"name": "Monbix 3 Piece Queen Bed Set All Season Luxury Breathable Microfiber Bedding Collection Cozy Comforter Set Soft Washable Foil Marble Pattern Grey with Shams", "product_information": {"Package Dimensions": "16.69 x 12.76 x 7.64 inches", "Item Weight": "7.3 pounds", "Department": "Womens", "Manufacturer": "Monbix", "ASIN": "B09KWX51GJ", "Customer Reviews": {"ratings_count": 186, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#9,722 in Home & Kitchen (See Top 100 in Home & Kitchen) #53 in Bedding Comforter Sets"], "Date First Available": "December 5, 2021"}, "brand": "Visit the Monbix Store", "brand_url": "https://www.amazon.com/stores/Monbix/page/20EA9AD6-F8E1-4A97-AE75-B304D48F7DFC?ref_=ast_bln", "full_description": "", "pricing": "$49.99", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51CeT4nI48L.jpg", "https://m.media-amazon.com/images/I/51LP0bbyr3L.jpg", "https://m.media-amazon.com/images/I/51ey1N2szoL.jpg", "https://m.media-amazon.com/images/I/51VvJv2AVwL.jpg", "https://m.media-amazon.com/images/I/41QlTRYVLTL.jpg", "https://m.media-amazon.com/images/I/41Q1IxuFvTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Comforters & Sets \u203a Comforter Sets", "average_rating": 4.5, "small_description": ["Monbix faux fur comforter set uses the printed faux fur fabric and sherpa with ultra soft treatment. The black and white buffalo design fabric not only lightens your bedroom with modern elegance, but also gives silky skin touch, and, most importantly, the premium fabric technique ensures durability after washing care. ", "Monbix comforter is filled with superior brand new poly filling called \"Cloud Fill\". As it is said, the filling gives you unparalleled softness which makes you feel like sleeping in the cloud. It gives you breathable warmth with reasonable weight. You may enjoy your wonderful sleep with our comforter. ", "Monbix comforter is made with delicate sewing and quilting technique. You can easily notice the high quality and durability with the technique. ", "Monbix comforter is very easy to care. Please follow our care instructions to care the comforter set. Machine wash cold separately. Gentle cycle. Tumble dry low. Do not bleach. Do not iron. ", "Tips: Monbix comforter set is in vacuumed packing, We strongly recommend to hang it in the sun, tapping it gently and using it after 24 hours. "], "total_reviews": 186, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09NR1JDMG/ref=twister_B09R1Y5R2N?_encoding=UTF8&psc=1", "value": "Buffalo", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51IwQKFzNUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096MQ7ZWX/ref=twister_B09R1Y5R2N?_encoding=UTF8&psc=1", "value": "Grey Geometric", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51OFlHzpBlL.jpg"}, {"is_selected": true, "url": null, "value": "Grey Marble", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51CeT4nI48L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096MSCS38/ref=twister_B09R1Y5R2N?_encoding=UTF8&psc=1", "value": "Pink Geometric", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51JDqx06sgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KX9RCF5/ref=twister_B09R1Y5R2N?_encoding=UTF8&psc=1", "value": "Pink Marble", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51fjPH1yYpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KX3835T/ref=twister_B09R1Y5R2N", "value": "Blue Geometric", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/510T42HncPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096Y2DV5C/ref=twister_B09R1Y5R2N", "value": "Blue Reversible", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sePkCOp4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NZLDC6C/ref=twister_B09R1Y5R2N", "value": "Boho", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51AQMM7GnYL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096FRWRRM/ref=twister_B09R1Y5R2N", "value": "Grey Reversible", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41RkO3GBjSL.jpg"}], "Size": [{"is_selected": true, "url": null, "value": "3pc Queen(88\"x88\")", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KX3835T/ref=twister_B09R1Y5R2N", "value": "5pc Queen(88\"x88\")", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096Y2DV5C/ref=twister_B09R1Y5R2N", "value": "8pc Queen(88\"x88\")", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NR1GS83/ref=twister_B09R1Y5R2N", "value": "3pc King(102\"x90\")", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KX2LS6S/ref=twister_B09R1Y5R2N", "value": "5pc King(102\"x90\")", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096FR7LDZ/ref=twister_B09R1Y5R2N", "value": "8pc King(102\"x90\")", "price_string": "", "price": 0, "image": null}]}, "seller_id": "AMVSA2F4QB60V", "seller_name": "JiaJieXiaoLin", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09KWX51GJ", "category": "garden", "query": "Beds", "page": 367, "small_description_old": "About this item\n \nMonbix foil marble comforter set uses the innovated foil printing microfiber fabric that has been treated for extra softness. The foiled marble design fabric not only lightens your bedroom with modern fashion, but also gives silky skin touch, and, most importantly, the premium fabric technique ensures durability after washing care. Monbix comforter set is filled with premium poly filling called \"Cloud Fill\", which gives you an unparalleled softness that makes you feel like sleeping on a marshmallow. Just the right amount of weight gives the comfortable gravity feel and provides you with breathable warmth for a good night's sleep with our comforter in all seasons. Monbix comforter is made with delicate sewing and quilting technique. You can easily notice the high quality and durability with the technique. Easy care instructions for this comforter set: Machine wash cold separately. Gentle cycle. Tumble dry low. Do not bleach. Do not iron. Tips: Monbix comforter set is in vacuumed packing, We strongly recommend to hang it in the sun, tapping it gently and using it after 24 hours."}, {"name": "Milwaukee Leather MBM9075 Men's Black 6-inch Plain Toe Dual Zipper Lock Leather Boots", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 15 x 21 x 6 inches; 5.04 Pounds", "Item model number\n \u200f": "\u200e\n MBM9075-7-BLK", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n April 28, 2016", "Manufacturer\n \u200f": "\u200e\n Milwaukee Leather", "ASIN\n \u200f": "\u200e\n B01EX1BR4O", "Best Sellers Rank": "#350,180 in Automotive (See Top 100 in Automotive)#142 in Men's Motorcycle Protective Boots", "#142 in Men's Motorcycle Protective Boots": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Milwaukee Leather Store", "brand_url": "https://www.amazon.com/stores/MilwaukeeLeather/page/C78E3276-B5AC-42BE-90AE-E92ED7328956?ref_=ast_bln", "full_description": "Milwaukee Leather MBM9075 Men\u2019s Black 6-inch Plain Toe Dual Zipper Lock Leather Boots Features Made of Full Grain Premium 2.2mm Thick Cowhide Waterproof Leather 6-inch Dual Zipper Closure Design Oil and Acid Resistant Outsole Non-Skid and Non-Marking Tread Step in with J-Toe Design Welt Construction Rounded Top Smart Mask Climate Control Insole Flex Power Toe Design Linings are Moisture Wicking, Designed to Work with Your Body\u2019s Temperature Milwaukee Signature Hardware Milwaukee Leather: Made for Riders, Built to Last", "pricing": "$99.82$134.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41CVJTO6jXL.jpg", "https://m.media-amazon.com/images/I/41nn78vT8oL.jpg", "https://m.media-amazon.com/images/I/31w4K1KfJjL.jpg", "https://m.media-amazon.com/images/I/413EpQtd5EL.jpg", "https://m.media-amazon.com/images/I/41vrdjSNgvL.jpg", "https://m.media-amazon.com/images/I/41zWfpud2sL.jpg", "https://m.media-amazon.com/images/I/412JCsxqXLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Boots \u203a Motorcycle & Combat", "average_rating": 4.5, "small_description": ["100% Leather ", "Leather lining ", "Zip closure ", "\u2705 Made of Full Grain Premium 2.2mm Thick Cowhide Waterproof Leather, 6 Inch Dual Zipper Closure Design ", "\u2705 Welt Construction, Non-Skid and Non-Marking Tread, Oil and Acid Resistant Outsole, Step in with J-Toe Design, Flex Power Toe Design, Rounded Top ", "\u2705 Linings are Moisture Wicking Designed to Work with Your Body\u2019s Temperature, Smart Mask Climate Control Insole, Milwaukee Signature Hardware ", "\u2705 Milwaukee Leather - Once You Have It, You Love It. High Quality Boots, Long Lasting, Perfect For Riding or Daily Wear ", "\u2705 Buy With Confidence Buy Direct From Our Factory And Save Hundreds! "], "total_reviews": 23, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "7", "asin": "B01EX1BR4O"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B01EX1BTGA"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B01EX1BTJW"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B01EX1BTH4"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B01EX1BTI8"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B01EX1BTF6"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B01EX1BTII"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B01EX1BTK6"}, {"is_selected": false, "is_available": true, "value": "11 Wide", "asin": "B01EX1BWBW"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B01EX1BWAI"}, {"is_selected": false, "is_available": true, "value": "12", "asin": "B01EX1BWE4"}, {"is_selected": false, "is_available": true, "value": "13", "asin": "B01EX1BWDK"}, {"is_selected": false, "is_available": true, "value": "14", "asin": "B01EX1BW8K"}, {"is_selected": false, "is_available": true, "value": "15", "asin": "B01EX1BW9Y"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01EX1BWE4", "category": "fashion", "query": "Men's Boots", "page": 147, "small_description_old": "100% Leather Leather lining Zip closure \u2705 Made of Full Grain Premium 2.2mm Thick Cowhide Waterproof Leather, 6 Inch Dual Zipper Closure Design \u2705 Welt Construction, Non-Skid and Non-Marking Tread, Oil and Acid Resistant Outsole, Step in with J-Toe Design, Flex Power Toe Design, Rounded Top \u2705 Linings are Moisture Wicking Designed to Work with Your Body\u2019s Temperature, Smart Mask Climate Control Insole, Milwaukee Signature Hardware \u2705 Milwaukee Leather - Once You Have It, You Love It. High Quality Boots, Long Lasting, Perfect For Riding or Daily Wear \u2705 Buy With Confidence Buy Direct From Our Factory And Save Hundreds!"}, {"name": "Tooth Brush,Gergxi1pc Super Hard bristles Tooth Brush for Men Remove Smoke Blots Color Random,Random", "product_information": {"Manufacturer": "Gergxi", "ASIN": "B09GLMTMHM", "Best Sellers Rank": ["#653,752 in Health & Household (See Top 100 in Health & Household) #3,362 in Manual Toothbrushes"]}, "brand": "Brand: Gergxi", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Gergxi", "full_description": "1pc Super hard bristles Tooth brush for Men Remove Smoke Blots color random Description: 100% brand new and high quality Circular power and cleaning tip bristles. Easy-to-grip handle,hard bristles,very practical. Helps remove tooth smoke stains and Coffee stains. Make your teeth white and healthy, great for daily use and travel use. Dentist advice: Change toothbrush in time is good for oral health. In order to protect your teeth better, you should change toothbrush every 3 months or 2 month. Material:PP+ charcoal fiber Product size: 18cm(approx) Color: random(as picture shown) Quantity: 1set(1pcs) weight: 15g Note: Transition: 1cm=10mm=0.39inch no retail package. Please allow 1-2cm error due to manual measurement. pls make sure you do not mind before you bid. Due to the difference between different monitors, the picture may not reflect the actual color of the item. Thank you! Package includes: 1set(1pcs) x Toothbrush(other accessories demo in the picture is not included.", "pricing": "$3.94", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51cDBXGeP5L.jpg", "https://m.media-amazon.com/images/I/51L3PrMAGpL.jpg", "https://m.media-amazon.com/images/I/51cDBXGeP5L.jpg", "https://m.media-amazon.com/images/I/31IFnXFY8tL.jpg", "https://m.media-amazon.com/images/I/51W-+WrTIiL.jpg", "https://m.media-amazon.com/images/I/41WG-0qQ+SL.jpg", "https://m.media-amazon.com/images/I/51zWftIfr0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothbrushes & Accessories \u203a Manual Toothbrushes", "average_rating": "", "small_description": ["100% brand new and high quality ", "Circular power and cleaning tip bristles. ", "Candy color design, fashion toothbrush handle ", "Make your teeth white and healthy, great for daily use and travel use. ", "\ud83c\udfa1If you are not satisfied, please feel free to contact us, there is no reason for a full refund within thirty days. Your satisfaction is our greatest pursuit "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A14P32AL3VF0DM", "seller_name": "mkgjrir", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GLMTMHM", "category": "beauty", "query": "Toothbrushes & Accessories", "page": 66, "small_description_old": "About this item\n \n100% brand new and high quality Circular power and cleaning tip bristles. Candy color design, fashion toothbrush handle Make your teeth white and healthy, great for daily use and travel use. \ud83c\udfa1If you are not satisfied, please feel free to contact us, there is no reason for a full refund within thirty days. Your satisfaction is our greatest pursuit"}, {"name": "Gogobebe Teal Green and Brown Flannel Fleece Throw Blanket for Sofa Couch Bed Retro Rustic Wood Grain Soft Cozy Lightweight Blanket for Adults/Kids 39x49inch", "product_information": {"Product Dimensions": "49 x 39 x 0.01 inches", "Item Weight": "13 ounces", "Manufacturer": "Gogobebe", "ASIN": "B09DG3YTHY", "Item model number": "FBAGOOGMX20210823BLSLEO00251MTAAGOO", "Customer Reviews": {"ratings_count": 210, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#135,643 in Home & Kitchen (See Top 100 in Home & Kitchen) #983 in Bed Throws"], "Material Care Instructions": "Machine Wash", "Batteries Required?": "No"}, "brand": "Brand: Gogobebe", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Gogobebe", "full_description": "BLANKET SIZE39x49inch/49x59inch/49x79inch/59x79inchMATERIALHigh quality fleece flannel fabricFEATUREUltra soft and warm,eco-friendly dyes make blankets healthier and skin-friendlyUSEAGEPerfect gift for your family and friends for Halloween,thanksgiving,Christmas,new year and Valentine's DayIt can be used as a sofa blanket,bed blanket,travel blanket,camping blanket,picnic blanket,Tapestry,perfect for sleeping,napping,snuggle with while watching TV on the couch,or reading on sofa and bed.STYLE CHOICEModern,abstract,bohemian,vintage,minimalistNOTEMachine wash in gentle cycle with cold water,tumble dry,no fading and shrinkingIf there are any quality problems with this blanket,please do not hesitate to contac us.", "pricing": "$31.39", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51NZ75l5FyL.jpg", "https://m.media-amazon.com/images/I/51xftoNYfrL.jpg", "https://m.media-amazon.com/images/I/51RHDqy4pLL.jpg", "https://m.media-amazon.com/images/I/51HsI7HtzgL.jpg", "https://m.media-amazon.com/images/I/51bVH45hEqL.jpg", "https://m.media-amazon.com/images/I/41ZQfQUg90L.jpg", "https://m.media-amazon.com/images/I/41rMJqX8CiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Blankets & Throws \u203a Throws", "average_rating": 4.4, "small_description": ["Small Throw Blanket Size:39x49inches,Suitable for the couch,daybeds,nursery or porch sitting ", "Premium Fleece Blanket:High quality fleece flannel fabric,ultra soft and warm,eco-friendly dyes make blankets healthier and skin-friendly,good for kids/adults all season use ", "Elegant & Cute Blanket:Perfect gift for your family and friends for Halloween,thanksgiving,Christmas,new year and Valentine's Day.It can be used as a sofa blanket,bed blanket,travel blanket,camping blanket,picnic blanket,Tapestry,perfect for sleeping,napping,snuggle with while watching TV on the couch,or reading on sofa and bed. ", "Washable Flannel Blanket:Machine wash in gentle cycle with cold water,tumble dry,no fading and shrinking. ", "Sincere Service:Bright and beautiful color,look great on your couch/bed for a touch. We believe you will be very satisfied with our throw blanket.If there are any quality problems with this blanket,please do not hesitate to contac us. "], "total_reviews": 210, "total_answered_questions": "", "model": "FBAGOOGMX20210823BLSLEO00251MTAAGOO", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JLZ5WV9/ref=twister_B07ZFBSLKG", "value": "39 x 49 in", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "39x49in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DG28W8R/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "39x59in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DG55TFM/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "49x59in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DG3H5GF/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "49x79in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DG39DBP/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "59x79in", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JLZ5WV9/ref=twister_B07ZFBSLKG", "value": "Love32goo9557", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51UFsX1pepL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFCTLYK/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Cartoon2goo8633", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LkoUQXPfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFCRT26/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Christmas 2374lgoo8402", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51DqJQHdpML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DG5N2YJ/ref=twister_B07ZFBSLKG", "value": "Christmasgoo1747", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51jZOQFxtCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFDBL41/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Christmasgoo2799", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/519bEdos0GL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NXVJ3PL/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Clovergoo4857", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Vl5OVFcHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFBY8R4/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Fish Scale1goo8111", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/515MM14ukyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DG5LQMD/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Graffiti1goo9830", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51YF+9R3ZdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFD36BL/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Halloween-018goo7397", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pqq8A0mmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099ZKZV22/ref=twister_B07ZFBSLKG", "value": "Halloweengoo6082", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61hdbmeEHkS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099ZJ3TPB/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Halloweengoo7556", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51nRLxXv8LS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFD3JPB/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Paris Eiffel Tower1goo8867", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41O0SuLOr9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFDY8VK/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Peacock2goo1111", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51C1xZbc6rL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NXYC259/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Shamrockgoo9573", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IbRZu73pL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DG2DS86/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Snowflakegoo5851", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Dn2GpKInS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFB3WNQ/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Snowflakesgoo3985", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Nb0tauz0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFLP9V5/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Starfish Beach8goo3481", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41RNogVTMWL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFC16Y2/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Thanksgiving1goo6115", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pIufC+1bL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099ZKSGDZ/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Thanksgivinggoo1780", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WtxktEPtS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099ZKSG5Y/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Thanksgivinggoo4573", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51xpd-yWbgS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099ZM1RN1/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Thanksgivinggoo6016", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ZVAJufq3S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099ZKB7K2/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Thanksgivinggoo9948", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51kcHspsuZS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09DG28W8V/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Tortoisegoo9511", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51EB1SpIcOL.jpg"}, {"is_selected": true, "url": null, "value": "Wood Grain4goo3989", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51bVH45hEqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFLKKDB/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "Wood Grain5goo6823", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Gxy+iv5ZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFDC9CR/ref=twister_B07ZFBSLKG?_encoding=UTF8&psc=1", "value": "You Are My Sunshinegoo1809", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/416ohfHwTVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07ZFF4Y3P/ref=twister_B07ZFBSLKG", "value": "Christmas-003goo3552", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51tUZG+0UwL.jpg"}]}, "seller_id": "A1LBGXO68G0FZP", "seller_name": "Gogobebe", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09DG3YTHY", "category": "garden", "query": "Throw Blankets", "page": 35, "small_description_old": "About this item Small Throw Blanket Size:39x49inches,Suitable for the couch,daybeds,nursery or porch sitting Premium Fleece Blanket:High quality fleece flannel fabric,ultra soft and warm,eco-friendly dyes make blankets healthier and skin-friendly,good for kids/adults all season use Elegant & Cute Blanket:Perfect gift for your family and friends for Halloween,thanksgiving,Christmas,new year and Valentine's Day.It can be used as a sofa blanket,bed blanket,travel blanket,camping blanket,picnic blanket,Tapestry,perfect for sleeping,napping,snuggle with while watching TV on the couch,or reading on sofa and bed. Washable Flannel Blanket:Machine wash in gentle cycle with cold water,tumble dry,no fading and shrinking. Sincere Service:Bright and beautiful color,look great on your couch/bed for a touch. We believe you will be very satisfied with our throw blanket.If there are any quality problems with this blanket,please do not hesitate to contac us."}, {"name": "Mini Spy Camera WiFi Wireless Hidden Video Camera 1080P Full HD Small Nanny Cam with Night Vision Motion Activated Indoor Covert Security Cameras Surveillance Cam for Car Home Office iPhone Android", "product_information": {"Package Dimensions": "5.6 x 3.5 x 1.7 inches", "Item Weight": "5.6 ounces", "ASIN": "B07X3TZQ27", "Item model number": "Alihomy-002", "Batteries": "1 Lithium ion batteries required. (included)", "Customer Reviews": {"ratings_count": 377, "stars": "2.7 out of 5 stars"}, "Best Sellers Rank": ["#5,265 in Camera & Photo Products (See Top 100 in Camera & Photo Products) #1,092 in Hidden Cameras"], "Date First Available": "August 27, 2019", "Manufacturer": "Alihomy"}, "brand": "Brand: EYZPDWA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=EYZPDWA", "full_description": "Alihomy Wireless Hidden Spy Camera - The Great Choice for all of Your Surveillance Needs. Protect Your Entire Home of Indoor OutdoorFeatures:HD 1080P Video & 150\u00b0 Wide Angle Lens: With 150 degree wide angle lens, the mini spy camera allows you to see more details happening in the room. The quality lens also features 1080P video and pictures that perfect surveillance camera for your Office or business place.24/7 Home Security in Your Hands: Whenever you're using a smartphone/ tablet/ computer device, you can view the HD live streaming by the hidden camera's APP V380 Pro.Multi-User & Multi-View: One camera can support multiple users and one app can support multiple cameras simultaneous so you can check up on your property in real-time. Compatible with iOS, Android, Mac and Windows devices.Multi Use: You can put this mini camera in your home,office, warehouse,store,garden.It can also be used as a car camcorder, aerial action camera, pet camera, cop camera.Specifications:Function: Support WiFi, Video, Camera, Loop Recording, Motion Detection, Infrared Night Vision, Time Display.Resolution: 4K/2K/1080P/720PVideo Format: AVIPicture Format: JPEGFrame Number: 30fpsVisual Angle: 150 degreeRecording Range: 5 m2Compressed Format: H.264Recording Time: Over 1 hourCharging Time: 2.5 hoursVoltage input: DC 5V 1AInterface: MICRO USB InterfaceMaximum Memory Card Capacity: 32GB (NOT include)Package Includes:1x Updated Mini Camera1x Bracket1x Iron Sheets1x USB Charging Cables1x Mini USB Charging Cable1x InstructionFAQ1. Why SD card cannot save record?Please format the SD card when you first use.2.What's the APP? APP named \"V380 Pro\".3.Can't connect wifi?Do not tap \"+\" to add camera, JUST SLIDING DOWN the interface to add!Please contact us by email if you can't connect the camera successfully.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41ZN05go1WL.jpg", "https://m.media-amazon.com/images/I/417mmtmGfeL.jpg", "https://m.media-amazon.com/images/I/51mWgsRo+6L.jpg", "https://m.media-amazon.com/images/I/51eiPKWMvnL.jpg", "https://m.media-amazon.com/images/I/5191FPzvQzL.jpg", "https://m.media-amazon.com/images/I/41lbp4iEZ9L.jpg", "https://m.media-amazon.com/images/I/618Q1r3y+lL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Video Surveillance \u203a Surveillance Cameras \u203a Hidden Cameras", "average_rating": 2.7, "small_description": ["\u3010Full HD 1080P Spy Camera\u3011 Support 1080P HD Resolution Ratio. Alihomy small mini cam records video in exceptional 1920X1080P HD at 30 frames per second. Function with video, picture, loop recording, motion detective, infrared night vision, time display, magnetic, etc. Hidden Camera with 150\u00b0 wide angle view that can monitor anywhere in standard distance. ", "\u3010No-Glow IR Night Vision & Built-in Magnet\u3011 Built-in 6 hidden infrared lights for a clear display in low light condition(No-Glow in use), the light working distance reach to 5m which makes it perfect as a home security camera or a housekeeper/ nanny cam for recording both snapshot picture and videos without attracting any attention. With the internal magnet, Upgraded hidden camera can be adsorbed on any iron surfaces easily. ", "\u3010Longer Battery Time As A Mini WIFI Camera\u3011 Supports up to 32GB memory card and built-in 250mah battery, fully charged, can work about 60 minutes, Also you can get the camera plugged into a USB charger (or power bank) for recording 24/7 hours. With Wifi connectivity to room's 2.4GHz router(not support 5G wireless protocol), you can watch live video feed or playbacks no matter where you are by accessing the APP. ", "\u3010Advanced Motion Detection Alerts\u3011 The wireless hidden camera will send push notification with images to your phone once motion is detected. You can log into the App to see what\u2019s going on in real time and never worry about missing something important. This hidden spy cam automatically records and overwrites the oldest SD card files when full for continuous recording. ", "\u3010Works as a Normal Camera without WiFi\u3011 One camera can support multiple users and one app can support multiple cameras simultaneously. This spy camera features hotspots so it can record without Wi-Fi too: just insert a SD card (not included) and turn on, the mini WiFi camera will auto record HD video files to sd card; It can also record videos even if the network is offline. "], "total_reviews": 377, "total_answered_questions": 65, "model": "Alihomy-002", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07X3TZQ27", "category": "electronics", "query": "Video Surveillance", "page": 212, "small_description_old": "About this item\n \n\u3010Full HD 1080P Spy Camera\u3011 Support 1080P HD Resolution Ratio. Alihomy small mini cam records video in exceptional 1920X1080P HD at 30 frames per second. Function with video, picture, loop recording, motion detective, infrared night vision, time display, magnetic, etc. Hidden Camera with 150\u00b0 wide angle view that can monitor anywhere in standard distance. \u3010No-Glow IR Night Vision & Built-in Magnet\u3011 Built-in 6 hidden infrared lights for a clear display in low light condition(No-Glow in use), the light working distance reach to 5m which makes it perfect as a home security camera or a housekeeper/ nanny cam for recording both snapshot picture and videos without attracting any attention. With the internal magnet, Upgraded hidden camera can be adsorbed on any iron surfaces easily. \u3010Longer Battery Time As A Mini WIFI Camera\u3011 Supports up to 32GB memory card and built-in 250mah battery, fully charged, can work about 60 minutes, Also you can get the camera plugged into a USB charger (or power bank) for recording 24/7 hours. With Wifi connectivity to room's 2.4GHz router(not support 5G wireless protocol), you can watch live video feed or playbacks no matter where you are by accessing the APP. \u3010Advanced Motion Detection Alerts\u3011 The wireless hidden camera will send push notification with images to your phone once motion is detected. You can log into the App to see what\u2019s going on in real time and never worry about missing something important. This hidden spy cam automatically records and overwrites the oldest SD card files when full for continuous recording. \u3010Works as a Normal Camera without WiFi\u3011 One camera can support multiple users and one app can support multiple cameras simultaneously. This spy camera features hotspots so it can record without Wi-Fi too: just insert a SD card (not included) and turn on, the mini WiFi camera will auto record HD video files to sd card; It can also record videos even if the network is offline."}, {"name": "Black San Francisco Deebo Chain Logo T-Shirt", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 6, 2022", "ASIN\n \u200f": "\u200e\n B09PVQJ92M", "Best Sellers Rank": "#411,489 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#2,443 in Men's Athletic Shirts & Tees", "#2,443 in Men's Athletic Shirts & Tees": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Tobin Clothing", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Tobin+Clothing", "full_description": "", "pricing": "$18.49$21.49", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41yy1VUUbeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Shirts & Tees", "average_rating": 5, "small_description": ["49ers Samuel Chain Logo Shirt ", "Shipping from the US! "], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PVQJ92M"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PVR4RWL"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PVQ8DMP"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PWCZWT3"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09PVR2V8R"}, {"is_selected": false, "is_available": true, "value": "6-8", "asin": "B09PVQB7TG"}, {"is_selected": false, "is_available": true, "value": "10-12", "asin": "B09PVQ18B8"}, {"is_selected": false, "is_available": true, "value": "14-16", "asin": "B09PVQ8DML"}, {"is_selected": false, "is_available": true, "value": "18-20", "asin": "B09PVPYWHB"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PVPYWHB", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 164, "small_description_old": "49ers Samuel Chain Logo Shirt Shipping from the US!"}, {"name": "FABIURT Summer Tops for Women, Women Fashion Graphic Plus Tank Top Sleeveless Casual Tunic Loose Cross Tee Shirt Blouses", "product_information": {"Item model number\n \u200f": "\u200e\n Womens Tank Tops Clearance&Hot Sale", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n April 9, 2021", "Manufacturer\n \u200f": "\u200e\n Womens Summer Tops Under 5 Dollars", "ASIN\n \u200f": "\u200e\n B0923T9P8Y", "Best Sellers Rank": "#130,342 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,568 in Women's Tanks & Camis", "#1,568 in Women's Tanks & Camis": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: FABIURT", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=FABIURT", "full_description": "", "pricing": "$10.99$11.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41dQSMO39kL.jpg", "https://m.media-amazon.com/images/I/41MCHwH+kQL.jpg", "https://m.media-amazon.com/images/I/41p9IMM-IeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Tops, Tees & Blouses \u203a Tanks & Camis", "average_rating": 2.8, "small_description": ["size closure ", "women crochet lace basic tank top sleeveless loose fitting tunic lace tunic tank tops for women women's summer sleeveless flowy lace trim loose tunic tank tops funny tank tops for women workout flowy adult humor side by side with sayings 2020 tank tops funny sayings for women fitness tank tops for women with funny sayings 2020 tank tops for women funny yoga tank lops for women built in bra pack graphic plus size open back loose fit cropped 3 pack built in bra pack lace tank tops for women sexy ", "flowy tank tops for women multipack petite dressy plus size pink set chiffon flowy workout tank tops for women womens crop top workout shirts loose flowy muscle tank pink flowy tank tops for women light pink tank tops for women flowy long tank lops for women plus size to wear with leggings layering pack 3x under 10 beige workout cotton xxl womens long tank tops for layering extra long layering tank tops for women long white layering tank tops for women beige tank tops for women plus size ", "cute tank tops for women with built in bracute tank tops for women xsred tank lops for women sexy dressy crop cropped v neck workout plus size athletic long with built in bra running tank tops for women with sayings loose built in bra dry fit inspirational funny sexy tank tops for women cleavage lace for sex plus size sexy tank tops for women 3x crop summer sleep with built in bra cleavage summer cleavage winter plus size sexy tank tops for women 3x basic sleeveless stretch outfit crop tank ", "white tunic tank tops for women short sleeve tunics for women plus size tunics for women tunics for women to wear with leggings summer tunics for women womens tunic tops tunic dresses for women plus size tunic women tunic tops womens tunic camisoles for women with built in bra lace camisoles for women white camisoles for women womens camisoles and tanks plus size camisoles for women camisoles for women cotton camisoles for women shelf bra camisoles for women long tunic tank tops for women ", "womens tops short sleeve casual womens tops and blouses womens tops and blouses plus size for work short sleeve dressy 3/4 sleeve plus size spring long sleeve summer boho plus size with flower sexy womens tops and blouses summer plus size short sleeve plus size and blouses summer 3/4 sleeve long sleeve womens plus size summer tops and blouses and tops for work short sleeve summer plus size womens flower tops and blouses summer "], "total_reviews": 84, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B097RK2B2Q"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B097RHBT2M"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B097RH92R6"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B097RGLZG6"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B097RJQ1JD"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B092W6FVB4/ref=twister_B099584L64", "value": "A1-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/413iu-RypFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B094XRGRZ5/ref=twister_B099584L64", "value": "A2-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41bG+UavTFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923S28Q1/ref=twister_B099584L64", "value": "A2-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ipPpBWFyS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095JSPD88/ref=twister_B099584L64", "value": "A3-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/418JS5G6cXS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0979212VH/ref=twister_B099584L64", "value": "A3-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/417frwXSbRS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923TJXCF/ref=twister_B099584L64", "value": "A3-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41alWryKX5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923TH2X7/ref=twister_B099584L64", "value": "A4-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41uV-aiZheL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095JR6LC3/ref=twister_B099584L64", "value": "A4-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qKGiN1opL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923SRQ88/ref=twister_B099584L64", "value": "A4-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EisuZxrDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095JPNJ6K/ref=twister_B099584L64", "value": "B2-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41CtlRoyc8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923TLTJ5/ref=twister_B099584L64", "value": "B2-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41T-GHESsvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923VF3VP/ref=twister_B099584L64", "value": "B2-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412jEinPd7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095RTMJSP/ref=twister_B099584L64", "value": "B3-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31gQ7pi3YTS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095R8NT96/ref=twister_B099584L64", "value": "B3-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yWIZk4PUS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095JQTL7Z/ref=twister_B099584L64", "value": "B5-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xEdbKrtPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092J3H8SN/ref=twister_B099584L64", "value": "B5-navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Q1o4IEbrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092J53X9M/ref=twister_B099584L64", "value": "B5-purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/415zIleLAHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095JRKVXP/ref=twister_B099584L64", "value": "B5-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41H2BDaK3OL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Y45JRN/ref=twister_B099584L64", "value": "C1-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41OcelgalvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Y3M4RY/ref=twister_B099584L64", "value": "C1-pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ow2P5dBfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096Q5Y4J9/ref=twister_B099584L64", "value": "C2-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41KvW+0BWRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096Q68ZYY/ref=twister_B099584L64", "value": "C2-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xBGei67gL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096Q5NJCJ/ref=twister_B099584L64", "value": "C2-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41eXd9nh3uL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096Q57D3Z/ref=twister_B099584L64", "value": "C2-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41743IPNXNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096TSYGYW/ref=twister_B099584L64", "value": "C3-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41uBE5yNyKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096TTPBJ1/ref=twister_B099584L64", "value": "C3-purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41W4Ar8Wz+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096TSMF7B/ref=twister_B099584L64", "value": "C5-army Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41I-RfWi-yL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097RJB96R/ref=twister_B099584L64", "value": "C5-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41lTKJr3AiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096TSM9C3/ref=twister_B099584L64", "value": "C5-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41M2X7RT4TL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096ZK3S6W/ref=twister_B099584L64", "value": "C5-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31JXvBhTF1S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097RJBGP5/ref=twister_B099584L64", "value": "C5-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31nkSrRg4xL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097RJC89H/ref=twister_B099584L64", "value": "C5-purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41HfTLo8nKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096TTJW8S/ref=twister_B099584L64", "value": "C5-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ZDE4DF6iL.jpg"}, {"is_selected": true, "url": null, "value": "C5-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41dQSMO39kL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0967L9H5S/ref=twister_B099584L64", "value": "D1-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51GEELQUIZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0967L7NCP/ref=twister_B099584L64", "value": "D1-hot Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51GYJ0xwL5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0967LGRTH/ref=twister_B099584L64", "value": "D1-orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51OAO5vZCoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Y5GS6V/ref=twister_B099584L64", "value": "C1-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4185-nKfz2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0978ZG11Z/ref=twister_B099584L64", "value": "B1-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41n3cjyK91L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923VVMRM/ref=twister_B099584L64", "value": "B1-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41j7Xubf7JL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B094XJ4LG3/ref=twister_B099584L64", "value": "A1-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yk9Q+YLyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923VNGHG/ref=twister_B099584L64", "value": "A1-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41TRsk8AwBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Y4RD87/ref=twister_B099584L64", "value": "C1-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GFQ+wNR0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095Y2ZW9K/ref=twister_B099584L64", "value": "C1-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41R9fQuFRxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0923TNPWT/ref=twister_B099584L64", "value": "B1-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41VqzkVMR7S.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B097RK2B2Q", "category": "fashion", "query": "Women's Tops, Tees & Blouses", "page": 32, "small_description_old": "Graphic Tank Tops For Women \u3010Big Promotions\u3011\ud83d\ude0d\ud83d\ude0dplease check inthe Special offers and product promotions.The more you buy, the bigger the discount. \ud83c\udf08\ud83c\udf08\u3010SHIPPING INFORMATION\u3011Expedited Shipping:3-7 Days.Standard shipping:12-25 Days. size closure Line Dry women crochet lace basic tank top sleeveless loose fitting tunic lace tunic tank tops for women women's summer sleeveless flowy lace trim loose tunic tank tops funny tank tops for women workout flowy adult humor side by side with sayings 2020 tank tops funny sayings for women fitness tank tops for women with funny sayings 2020 tank tops for women funny yoga tank lops for women built in bra pack graphic plus size open back loose fit cropped 3 pack built in bra pack lace tank tops for women sexy flowy tank tops for women multipack petite dressy plus size pink set chiffon flowy workout tank tops for women womens crop top workout shirts loose flowy muscle tank pink flowy tank tops for women light pink tank tops for women flowy long tank lops for women plus size to wear with leggings layering pack 3x under 10 beige workout cotton xxl womens long tank tops for layering extra long layering tank tops for women long white layering tank tops for women beige tank tops for women plus size \n cute tank tops for women with built in bracute tank tops for women xsred tank lops for women sexy dressy crop cropped v neck workout plus size athletic long with built in bra running tank tops for women with sayings loose built in bra dry fit inspirational funny sexy tank tops for women cleavage lace for sex plus size sexy tank tops for women 3x crop summer sleep with built in bra cleavage summer cleavage winter plus size sexy tank tops for women 3x basic sleeveless stretch outfit crop tankwhite tunic tank tops for women short sleeve tunics for women plus size tunics for women tunics for women to wear with leggings summer tunics for women womens tunic tops tunic dresses for women plus size tunic women tunic tops womens tunic camisoles for women with built in bra lace camisoles for women white camisoles for women womens camisoles and tanks plus size camisoles for women camisoles for women cotton camisoles for women shelf bra camisoles for women long tunic tank tops for womenwomens tops short sleeve casual womens tops and blouses womens tops and blouses plus size for work short sleeve dressy 3/4 sleeve plus size spring long sleeve summer boho plus size with flower sexy womens tops and blouses summer plus size short sleeve plus size and blouses summer 3/4 sleeve long sleeve womens plus size summer tops and blouses and tops for work short sleeve summer plus size womens flower tops and blouses summerShow more"}, {"name": "silicone body bath shower scrubber - extra longer 35 inch back brush face cleaning brush travel cosmetic bag exfoliating lengthen strong extensibility stimulate the circulation of blood blue", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.95 x 5.55 x 2.28 inches; 11.99 Ounces", "UPC\n \u200f": "\u200e\n 700204869990", "Manufacturer\n \u200f": "\u200e\n shvk", "ASIN\n \u200f": "\u200e\n B08KLLJJXG", "Best Sellers Rank": "#235,387 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#835 in Bath & Body Brushes", "#835 in Bath & Body Brushes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: v cool livat", "brand_url": "https://www.amazon.com/v-cool-livat/b/ref=bl_dp_s_web_18010833011?ie=UTF8&node=18010833011&field-lbr_brands_browse-bin=v+cool+livat", "full_description": "", "pricing": "$6.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51vLSYxediL.jpg", "https://m.media-amazon.com/images/I/41xSiWnDaiL.jpg", "https://m.media-amazon.com/images/I/41gsSKMNMrL.jpg", "https://m.media-amazon.com/images/I/41LeY44H+6L.jpg", "https://m.media-amazon.com/images/I/412zfjtmOQL.jpg", "https://m.media-amazon.com/images/I/51CaGdoNHJL.jpg", "https://m.media-amazon.com/images/I/51JAwBURAoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath & Body Brushes", "average_rating": 4.2, "small_description": ["Extra Length 35 inch:Our silicone body brush is longer,more flexible,suitable for both men and women.Good ductility makes it not be damaged ", "Message and Cleaning Experience:Our silicone bath body brush has double-sided lines,one side is comfortable massage point which can massage your body.On the other size,soft and silicone fluff will clean pores and remove cuticle ", "No Skin Injury:Our product is made of environmental friendly silica gel which will not damage your skin and can also be used by infants ", "Quick Drying Body Brush:Silicone body bath scrubber dry faster than other body brushes.This makes it difficult for bacteria to grow and can be cleaned with a gentle rinse ", "Valuable Packaging:Our products are packed in a transparent cosmetic bag which including one silicone bath back scrubber,one face cleaning washer,two wall hooks.It is compact,convenient and sustainable use for business and travel "], "total_reviews": 109, "total_answered_questions": 4, "customization_options": {"Color": null}, "seller_id": "AAWO36ERP6SPF", "seller_name": "V Kitchen-US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08KLLJJXG", "category": "beauty", "query": "Body Makeup", "page": 50, "small_description_old": "About this item Extra Length 35 inch:Our silicone body brush is longer,more flexible,suitable for both men and women.Good ductility makes it not be damaged Message and Cleaning Experience:Our silicone bath body brush has double-sided lines,one side is comfortable massage point which can massage your body.On the other size,soft and silicone fluff will clean pores and remove cuticle No Skin Injury:Our product is made of environmental friendly silica gel which will not damage your skin and can also be used by infants Quick Drying Body Brush:Silicone body bath scrubber dry faster than other body brushes.This makes it difficult for bacteria to grow and can be cleaned with a gentle rinse Valuable Packaging:Our products are packed in a transparent cosmetic bag which including one silicone bath back scrubber,one face cleaning washer,two wall hooks.It is compact,convenient and sustainable use for business and travel"}, {"name": "Firetruck Canvas Wall Art Framed Transportation Fire Engine Painting Print Watercolor Nursery Fire Truck Canvas Wall Decor for Home Bedroom Office 12x12 Inch", "product_information": {"Product Dimensions": "12 x 12 x 0.5 inches", "Item Weight": "7.8 ounces", "ASIN": "B09PJ6QZWW", "Best Sellers Rank": ["#523,174 in Home & Kitchen (See Top 100 in Home & Kitchen) #17,905 in Posters & Prints"], "Date First Available": "January 1, 2022"}, "brand": "Brand: penghui", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=penghui", "full_description": "Surprising Gift: Great canvas art prints are full of emotion and atmosphere. They can bring artistic enjoyment and emotional transmission to viewers through artistic pictures and meaningful language.", "pricing": "$19.98", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41wJRzifoCL.jpg", "https://m.media-amazon.com/images/I/41iEF1xUOBL.jpg", "https://m.media-amazon.com/images/I/41v+Aui-86L.jpg", "https://m.media-amazon.com/images/I/310NIbPlgPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": "", "small_description": ["Framed: 12*12 inches. The size is square. Ready to hang. ", "High Quality: We use good quality canvas materials. It is not only waterproof, but also UV resistant. The picture quality is better and the colors are bright. ", "Convenience: This product is framed. Therefore, the installation is very convenient and quick. ", "Perfect Home Decor: High-quality life sometimes needs high-quality decorations to embellish it. There are a wide variety of canvas art print products. They can exude charm in different living spaces. ", "Surprising Gift: Great canvas art prints are full of emotion and atmosphere. They can bring artistic enjoyment and emotional transmission to viewers through artistic pictures and meaningful language. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1UUJAF3VDUFK6", "seller_name": "peng-hui", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09PJ6QZWW", "category": "garden", "query": "Wall art", "page": 297, "small_description_old": "About this item\n \nFramed: 12*12 inches. The size is square. Ready to hang. High Quality: We use good quality canvas materials. It is not only waterproof, but also UV resistant. The picture quality is better and the colors are bright. Convenience: This product is framed. Therefore, the installation is very convenient and quick. Perfect Home Decor: High-quality life sometimes needs high-quality decorations to embellish it. There are a wide variety of canvas art print products. They can exude charm in different living spaces. Surprising Gift: Great canvas art prints are full of emotion and atmosphere. They can bring artistic enjoyment and emotional transmission to viewers through artistic pictures and meaningful language."}, {"name": "10 Pack 512MB USB Flash Drives Gift Stick Business Bidding Thumb Drive USB 2.0 high Speed Pen Drives (512MB, Black)", "product_information": {"Brand": "\u200eMYIUSB", "Hardware Platform": "\u200eMac", "Item Weight": "\u200e0.423 ounces", "Package Dimensions": "\u200e2.68 x 0.79 x 0.47 inches", "Color": "\u200eBlack", "Manufacturer": "\u200eMYIUSB", "ASIN": "\u200eB09P57ZKGP", "Date First Available": "\u200eApril 21, 2021", "Best Sellers Rank": ["#11,594 in USB Flash Drives"]}, "brand": "Brand: MYIUSB", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=MYIUSB", "full_description": "Features: Brand Name: Bernal usb flash drive Material: Metal Package: YES Interface Type: USB 2.0 Net Weight: 10G Description: storage capacity:128MB/256MB/512MB/2GB Environment Temperature: -40degC - +70degC Storage Temperature: -50degC - +80degC USB Service Voltage: 4.5V-5.5V (transmission speed over a certain relationship with the use of computer configuration) Storage Lifetime: More than 10 years Use A-class chip, can be erased repeatedly for 100,0000 times Operating System: Win98/ME/2000/XP/ Vista/win7 /win8, Mac OS 9.X/Linux2.4 or above USB connection:support Hot plug & Play. Easy to read and read in high speed ,No need drive/power supply only plug in Package Included: 10 x Flash Driver (No retail packaging,If you need a retail package, please contact customer service. We will give you the most favorable price! Thank you!)", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41khB5UGYLS.jpg", "https://m.media-amazon.com/images/I/41Ml-ALrjtS.jpg", "https://m.media-amazon.com/images/I/411WnHxSjmS.jpg", "https://m.media-amazon.com/images/I/41-TNE+iJ4L.jpg", "https://m.media-amazon.com/images/I/413wVzTfUNL.jpg", "https://m.media-amazon.com/images/I/41okFhYoRTS.jpg", "https://m.media-amazon.com/images/I/51LOnN8Yh2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Data Storage \u203a USB Flash Drives", "average_rating": "", "small_description": ["100% RISK-FREE SATISFACTION GUARANTEE - We offer you 100% Risk-Free Satisfaction guarantee to let you buy with confidence by provide 30 days return policy and 12 month warranty on manufacturing defects ", "GREAT VALUE PACKAGE DEAL: includes 10 pack of 8GB USB Flash Drive, total 80 GB capacity. Super cost performance package deal offered by the manufacturer directly. ", "COMPATIBILITY AND HIGH PERFORMANCE - plug and use, unplug and go, support Win7/8/10 /Vista/XP/2000/ME/NT Linux and Mac OS, support USB 2.0 and backwards, support TV, speakers with USB slots, support share around ", "IMPROVED PROTECTION AND CONVENIENCE - The swivel design allows a metal cover to slide over the USB end and prevent any damage when not in use. The metal cover could rotate up to 360 degrees and allows us to adjust it to any angle suitable for plugging the flash drive into a computer or laptop. Moreover, the metal cover has an integrated hook which allows you to easily hook it on to any keychain, making it convenient to carry along! ", "GREAT FOR ALL AGES AND PURPOSES: suitable for digital data storing, transferring and sharing in school, in family, to friends, to clients, to machines. Apply to data storage of music, photos, movies, designs, manuals, programmes, handouts etc. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09P55Z3TG/ref=twister_B09P57CM7J?_encoding=UTF8&psc=1", "value": "128MB", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P55XTT1/ref=twister_B09P57CM7J?_encoding=UTF8&psc=1", "value": "256MB", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "512MB", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41khB5UGYLS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P56ZT1Z/ref=twister_B09P57CM7J?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41AiFHkLvsS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P57SKXB/ref=twister_B09P57CM7J?_encoding=UTF8&psc=1", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41i9qQ6QEHS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P56RFXZ/ref=twister_B09P57CM7J?_encoding=UTF8&psc=1", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/418dHW+EB7S.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P57ZKGP", "category": "electronics", "query": "Flashes", "page": 400, "small_description_old": "About this item\n \n100% RISK-FREE SATISFACTION GUARANTEE - We offer you 100% Risk-Free Satisfaction guarantee to let you buy with confidence by provide 30 days return policy and 12 month warranty on manufacturing defects GREAT VALUE PACKAGE DEAL: includes 10 pack of 8GB USB Flash Drive, total 80 GB capacity. Super cost performance package deal offered by the manufacturer directly. COMPATIBILITY AND HIGH PERFORMANCE - plug and use, unplug and go, support Win7/8/10 /Vista/XP/2000/ME/NT Linux and Mac OS, support USB 2.0 and backwards, support TV, speakers with USB slots, support share around IMPROVED PROTECTION AND CONVENIENCE - The swivel design allows a metal cover to slide over the USB end and prevent any damage when not in use. The metal cover could rotate up to 360 degrees and allows us to adjust it to any angle suitable for plugging the flash drive into a computer or laptop. Moreover, the metal cover has an integrated hook which allows you to easily hook it on to any keychain, making it convenient to carry along! GREAT FOR ALL AGES AND PURPOSES: suitable for digital data storing, transferring and sharing in school, in family, to friends, to clients, to machines. Apply to data storage of music, photos, movies, designs, manuals, programmes, handouts etc."}, {"name": "BAPYZ Modern Ceramic Pumping Paper Box Fashion Bone China Tissue Box European Living Room Household Daily Necessities Home Decor Gift", "product_information": {"Item Weight": "0.035 ounces", "Manufacturer": "zypab", "ASIN": "B091SK8ZH5", "Date First Available": "April 6, 2021"}, "brand": "Brand: BAPYZ", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=BAPYZ", "full_description": "Using high-quality bone china, the porcelain is delicate and transparent, making people feel concise and comfortable, showing the romantic and warm home feeling.The design layout has clear lines, the shape has been ingeniously deformed and is not chaotic, and the neat, elegant and elegant has a very high artistic level.Magnet adsorption function, humanized design, diameter adsorption can be installed on the base, faster and more convenient to load paper, which is different from the cumbersome operation of ordinary tissue boxes.It has a unique atmosphere and simplicity on its body, and being able to own it at home is enough to reflect the owner's high-quality taste.[Name]: Sea wave tracing gold tissue box[Set]: Ocean Wave Tissue Box \"1[Craft]: Hand-painted gold[Material]: Bone China[Net weight]: 0.95kgNote: Since manual measurement will have a 1-3cm error, the shooting light will cause some chromatic aberration, I hope to understand.", "pricing": "$131.36", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/31mFLrmaTIL.jpg", "https://m.media-amazon.com/images/I/31wo1WhXfvL.jpg", "https://m.media-amazon.com/images/I/41vL62gypCL.jpg", "https://m.media-amazon.com/images/I/51PYrieCUSL.jpg", "https://m.media-amazon.com/images/I/417s1K5TsFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bath \u203a Bathroom Accessories \u203a Holders & Dispensers \u203a Tissue Holders", "average_rating": "", "small_description": ["Material: Bone China ", "Using high-quality bone china, the porcelain is delicate and transparent, making people feel concise and comfortable, showing the romantic and warm home feeling. ", "The design layout has clear lines, the shape has been ingeniously deformed and is not chaotic, and the neat, elegant and elegant has a very high artistic level. ", "Magnet adsorption function, humanized design, diameter adsorption can be installed on the base, faster and more convenient to load paper, which is different from the cumbersome operation of ordinary tissue boxes. ", "It has a unique atmosphere and simplicity on its body, and being able to own it at home is enough to reflect the owner's high-quality taste. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2699K7SGESX0U", "seller_name": "ZHANGXIAOYUE", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B091SK8ZH5", "category": "garden", "query": "China Cabinets", "page": 268, "small_description_old": "About this item\n \nMaterial: Bone China Using high-quality bone china, the porcelain is delicate and transparent, making people feel concise and comfortable, showing the romantic and warm home feeling. The design layout has clear lines, the shape has been ingeniously deformed and is not chaotic, and the neat, elegant and elegant has a very high artistic level. Magnet adsorption function, humanized design, diameter adsorption can be installed on the base, faster and more convenient to load paper, which is different from the cumbersome operation of ordinary tissue boxes. It has a unique atmosphere and simplicity on its body, and being able to own it at home is enough to reflect the owner's high-quality taste."}, {"name": "2Pack Airpods Pro Case, Soft Silicone Cute Funny Fun Star War Boba Fett Cartoon Character Cover with Keychain, AirPod Pro Skin Set for Kids Teens Boys Girls(PS5 Game Controller+Mandalorian Helmet)", "product_information": {"Package Dimensions": "7.99 x 4.57 x 1.3 inches", "Item Weight": "3.84 ounces", "ASIN": "B08YNND3LN", "Customer Reviews": {"ratings_count": 30, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#2,963 in Headphone Cases"], "Special Features": "Heavy Duty Protection, Anti-Fingerprint", "Form Factor": "Case", "Manufacturer": "Alquar", "Date First Available": "March 11, 2021"}, "brand": "Visit the Alquar Store", "brand_url": "https://www.amazon.com/stores/Alquar/page/F38DAF29-CF57-4F33-9031-422E9AEA3497?ref_=ast_bln", "full_description": "", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Jwa7uQonL.jpg", "https://m.media-amazon.com/images/I/51HVMQPtE2L.jpg", "https://m.media-amazon.com/images/I/61M6TLH35uL.jpg", "https://m.media-amazon.com/images/I/51GQhUsdrVL.jpg", "https://m.media-amazon.com/images/I/517n9v8RF0L.jpg", "https://m.media-amazon.com/images/I/51FLxcBo8TL.jpg", "https://m.media-amazon.com/images/I/51xhpYfzeyL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Headphone Accessories \u203a Cases", "average_rating": 4.6, "small_description": ["\u2705\u30102 Pack Super Cool Design\u3011Star wars and Game Cartoon features Airpods Pro cases designed with super cute style, great quality, and feel comfortable to hold. The appearance is interesting and unique, and the style is chic and cool. These Cases make you so special in the crowd, it's the best gift for men, kids, and teens. ", "\u2705\u3010Super Protection\u3011Soft silicone material cool style pattern shockproof and drop-proof Apple Air Pods Pro case accessories have good shock absorption. protects your Apple Air Pods Pro from unnecessary bumps, dents, and scratches. ", "\u2705\u3010Precise Cutouts\u3011Precisely designed for AirPods Pro. Perfect fit, easy installation, adsorption strength fastening, and wear it firmly. A charging port is reserved at the bottom of the case, which can be charging without disassembling the AirPods Pro charging case cover. ", "\u2705\u3010Added Keychain\u3011: Designed for AirPods Pro charging case. Comes with a metal keychain hook, making it convenient and secure to carry your AirPod Pro headphone case with keychain anywhere. You can hang the Airpods on your Jeans, Backpack, or Bicycle. Whether you are Driving or Running or Relaxing, take your music along for the ride and enjoy it. No need to worry about losing Airpods. ", "\u2763 Our Guarantee \u2763 Quality assurance, efficient service. FAST SHIPPING! All shipped by FBA. We take care of all quality-related issues with a replacement or full refund.\u2605Note\u2605 Airpods Pro and Airpods Pro charging case NOT includes. "], "total_reviews": 30, "total_answered_questions": "", "customization_options": "", "seller_id": "A2UZEX7L1OTX5D", "seller_name": "ZO-QUALITY", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08YNND3LN", "category": "electronics", "query": "PlayStation", "page": 154, "small_description_old": "About this item \u2705\u30102 Pack Super Cool Design\u3011Star wars and Game Cartoon features Airpods Pro cases designed with super cute style, great quality, and feel comfortable to hold. The appearance is interesting and unique, and the style is chic and cool. These Cases make you so special in the crowd, it's the best gift for men, kids, and teens. \u2705\u3010Super Protection\u3011Soft silicone material cool style pattern shockproof and drop-proof Apple Air Pods Pro case accessories have good shock absorption. protects your Apple Air Pods Pro from unnecessary bumps, dents, and scratches. \u2705\u3010Precise Cutouts\u3011Precisely designed for AirPods Pro. Perfect fit, easy installation, adsorption strength fastening, and wear it firmly. A charging port is reserved at the bottom of the case, which can be charging without disassembling the AirPods Pro charging case cover. \u2705\u3010Added Keychain\u3011: Designed for AirPods Pro charging case. Comes with a metal keychain hook, making it convenient and secure to carry your AirPod Pro headphone case with keychain anywhere. You can hang the Airpods on your Jeans, Backpack, or Bicycle. Whether you are Driving or Running or Relaxing, take your music along for the ride and enjoy it. No need to worry about losing Airpods. \u2763 Our Guarantee \u2763 Quality assurance, efficient service. FAST SHIPPING! All shipped by FBA. We take care of all quality-related issues with a replacement or full refund.\u2605Note\u2605 Airpods Pro and Airpods Pro charging case NOT includes."}, {"name": "1 oz Aluminum Tin Jar with Screw Cap Refillable Container for Cosmetic, Lip Balm, Cream, Rose Gold 12 Pcs.", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.32 x 2.13 x 2.13 inches; 3.53 Ounces", "Manufacturer\n \u200f": "\u200e\n BallHull", "ASIN\n \u200f": "\u200e\n B08X2PKKB2", "Best Sellers Rank": "#34,172 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#460 in Refillable Cosmetic Containers #915 in Makeup Bags & Cases", "#460 in Refillable Cosmetic Containers": "", "#915 in Makeup Bags & Cases": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: BallHull", "brand_url": "https://www.amazon.com/BallHull/b/ref=bl_dp_s_web_19600513011?ie=UTF8&node=19600513011&field-lbr_brands_browse-bin=BallHull", "full_description": "Use our high-quality, food-grade aluminum tin containers to safely contain all of your handmade lip and body balms, hand creams and salves, essential oils, ointments, medicinal herbs and waxes, spices and seasonings, tea candles, powders, loose leaf teas, glitter, potpourri, bath salts (not the bad kind), earrings and other small jewelry.", "pricing": "$7.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/5172Jy9kHTL.jpg", "https://m.media-amazon.com/images/I/31-8JGRleCS.jpg", "https://m.media-amazon.com/images/I/310fqK+wyIS.jpg", "https://m.media-amazon.com/images/I/514Zqa8HUuL.jpg", "https://m.media-amazon.com/images/I/51QC6r3kE9S.jpg", "https://m.media-amazon.com/images/I/41+2CgG1wNS.jpg", "https://m.media-amazon.com/images/I/51HWFGCHVNS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": 4.8, "small_description": ["Packing: 12 pcs, 1 oz, rose gold ", "Material: Of durable aluminum,high quality, lightweight. The material is environmentally and recycled. ", "Size: 2 in\" dia. x 0.8 in\" height, Small size, light weight, easy to carry. ", "Can be used for DIY lipsticks, pills, party supplies, candy, mints, vitamins, skin care products, cosmetic samples or bulk tea, herbs, medicines, etc. ", "Screw Thread Lid: Sealed screw thread lid eliminates risk of leaking and protects your products from light exposure "], "total_reviews": 171, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08X2QB86K/ref=twister_B09J2DYZXN?_encoding=UTF8&psc=1", "value": "0.5 0unce", "price_string": "$6.99", "price": 6.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X2RLVYK/ref=twister_B09J2DYZXN?_encoding=UTF8&psc=1", "value": "2 0unce", "price_string": "$9.99", "price": 9.99, "image": null}, {"is_selected": true, "url": null, "value": "12 Count (Pack of 1)", "price_string": "$7.99", "price": 7.99, "image": null}]}, "seller_id": "A3JMX0563JUGHO", "seller_name": "BallHull", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08X2PKKB2", "category": "beauty", "query": "Refillable Containers", "page": 2, "small_description_old": "Packing: 12 pcs, 1 oz, rose gold Material: Of durable aluminum,high quality, lightweight. The material is environmentally and recycled. Size: 2 in\" dia. x 0.8 in\" height, Small size, light weight, easy to carry. Can be used for DIY lipsticks, pills, party supplies, candy, mints, vitamins, skin care products, cosmetic samples or bulk tea, herbs, medicines, etc. Screw Thread Lid: Sealed screw thread lid eliminates risk of leaking and protects your products from light exposure"}, {"name": "Womens Summer Sandals Casual Bohemia Gladiator Wedge Shoes Outdoor Loafers Open Toe Sandals Buckle Sandals Hollow Out Shoes", "product_information": {"Item model number\n \u200f": "\u200e\n black mules", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n February 9, 2022", "Manufacturer\n \u200f": "\u200e\n women's mid-calf boots wide width", "ASIN\n \u200f": "\u200e\n B09S3TPGYJ", "": ""}, "brand": "Brand: JIANHAO", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=JIANHAO", "full_description": "NOTE:As Different Computers Display Colors Differently,The Color Of the Actual Item May Vary Slightly From The Above Images.NOTE:The Size Mark On The shoes Is Chinese Size Number.DescriptionGender: WomenUpper Material:PUSole Material:RubberSuitable Occasion: LeisureScenes: OutdoorStyle:Casual,SimpleToe Style:Round ToeHeel High Style:WedgeClosing Method:Zip UpShoes Heel High:3cm/1.4''Platform Heigh:1cm/0.4''Package:1 Pair Women Shoes(Not Including Shoebox)NOTE:The Size will be smaller due to concave design , We suggest you select the appropriate size according to your foot length.Size:7 Foot Length:23.5cm/9.3\" Foot wide :9cm/3.5\"Size:7.5 Foot Length:24cm/9.5\" Foot wide :9-9.5cm/3.5-3.7\"Size:8 Foot Length:24.5cm/9.7\" Foot wide :9.5cm/3.7\"Size:8.5 Foot Length:25cm/9.8\" Foot wide :9.5-10cm/3.7-3.9\"Size:9 Foot Length:25.5cm/10\" Foot wide :10cm/3.9\"Size:10 Foot Length:26cm/10.2\" Foot wide :10-10.5cm/3.9-4.1\"", "pricing": "$6.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51IO9mDCIPL.jpg", "https://m.media-amazon.com/images/I/51fGt65M-5L.jpg", "https://m.media-amazon.com/images/I/51j7-EYaMZL.jpg", "https://m.media-amazon.com/images/I/41wFUs+WCEL.jpg", "https://m.media-amazon.com/images/I/51KBkO+k0+L.jpg", "https://m.media-amazon.com/images/I/51kX2QZtoZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals \u203a Flats", "average_rating": "", "small_description": ["men's slippers Hot Sale 2022 Whole Shop Promotion Sale Offered by JIANHAO ", "\u273f100 percent of the shopping experience is satisfactory.Best Gifts for Women/Mom/Friends/Girlfriend Today's Deals Women's Fashion Shoes Big Promotion summer shoes for women flats comfortable dressy and sandals and low wedge. ", "\u3010About Shipping\u3011Expedited Shipping:5-7 Days.Standard shipping:10-18 Days.It\u2019s up to which shipping ways you chose.Within 24 Hours Shipping Out. ", "black cowboy boots for women,pink boots for women,white boots for women with heel,work boots for women,ankle boots for women low heel,born boots for women,short rain boots for women,dress boots for women,wedge boots for women,short boots for women,slipper boots for women,steel toe boots for women,boots for women,tall black boots for women,chunky heel boots for women,extra wide calf boots for women,wide width boots for women,high boots for women lining ", "thigh high boots for women,waterproof boots for women,boots for women,black ankle boots for women,chunky boots for women,tall boots for women,leather boots for women,black knee high boots for women,riding boots for women,boots for women with heel,lace up boots for women,mid calf boots for women,boots for women,black boots for women knee high,platform boots for women,boots for women,fall boots for women 2022,black boots for women with heel closure ", "white combat boots for women,cowgirl boots for women,ankle boots for women with heel,rubber boots for women,boots for women,ankle rain boots for women,fur boots for women,combat boots for women,long boots for women,winter boots for women waterproof snow,tan boots for women,flat boots for women,high heel boots for women,pairs boots for women,rain boots for women waterproof,heel boots for women,furry boots for women,brown ankle boots for women ", "womens slip ons slip ons for women womens black tennis shoes men's dress shoes black men's shoes dress black shoes size 8 sport shoes running rose gold shoes size 10 mens sneakers all black sneakers women size 12 mens shoes black leather dress shoes hot pink flats size 9 dress shoes for men 14 shoes mens tieks shoes for women white flats white shoes women women casual shoes causel shoes wedding flats black running shoes stylish mens shoes shoes running women black hiking shoes men lightweight , women house slipper slip on slippers for men slipper socks fuzzy mens slippers warm hard sole slippers for men women faux fur slippers black slippers for men outdoor slippers men size 13 mens slippers fuzzy shoes men warm slippers polo slippers for men big fur slides black boys bed slippers grey fuzzy slippers tall slipper socks for women houseshoes slippers with bow mens black slides womens faux slippers mens black slippers package of slippers womens slide on slippers womens slippers, womens ballet flats comfortable dressy work low wedge arch suport flats shoes women flat shoes comfortable slip on pointed toe ballet flats women ballet flats rhinestone wedding ballerina shoes foldable sparkly comfort slip on flat shoes unisex-adult mens and womens classic clog mens and womens classic lined clog warm and fuzzy slippers mens and womens classic tie dye clog waterproof slippers women men fur lined clogs winter garden shoes warm house slippers indoor outdoor mules, wide calf boots for women muck boots boys winter boots moon boots for women men snow boots over the knee boots for women womens rain boots hunter rain boots for women womens boots ankle boots for women ankle booties boots for women knee high cowboy boots winter boots for women waterproof snow toddler rain boots thigh high boots for women white boots for women cowgirl boots girls boots snow boots women snow boots for women waterproof insulated ankle boots womens ankle boots, womens slippers size 11 ballet slippers women bridesmaid slippers home slippers warm slippers slip on slippers for women toddler slipper slippers men toddler house slippers womens slippers with arch support hotel slippers indoor outdoor slippers women sorel slippers acorn slippers mens slippers size 14 dinosaur slippers fish slippers smile face slippers preppy slippers platform slippers ballet slippers for girls indoor slippers for women black slippers slipper socks for kids"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "7", "asin": "B09S3TPGYJ"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B09S3SB9W9"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09S3TWKSC"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B09S3TRJM5"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B09S3TZJL6"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B09S3T7DXK"}], "Color": [{"is_selected": true, "url": null, "value": "Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51IO9mDCIPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09S3V2HL2/ref=twister_B09S3TVM2G", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51vjkr3cAFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09S3TZ2B2/ref=twister_B09S3TVM2G", "value": "Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51nA2ii1GZL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S3TWKSC", "category": "fashion", "query": "Women's Loafers & Slip-Ons", "page": 114, "small_description_old": "men's slippers Hot Sale 2022 Whole Shop Promotion Sale Offered by JIANHAO \u273f100 percent of the shopping experience is satisfactory.Best Gifts for Women/Mom/Friends/Girlfriend Today's Deals Women's Fashion Shoes Big Promotion summer shoes for women flats comfortable dressy and sandals and low wedge. \u3010About Shipping\u3011Expedited Shipping:5-7 Days.Standard shipping:10-18 Days.It\u2019s up to which shipping ways you chose.Within 24 Hours Shipping Out. black cowboy boots for women,pink boots for women,white boots for women with heel,work boots for women,ankle boots for women low heel,born boots for women,short rain boots for women,dress boots for women,wedge boots for women,short boots for women,slipper boots for women,steel toe boots for women,boots for women,tall black boots for women,chunky heel boots for women,extra wide calf boots for women,wide width boots for women,high boots for women lining thigh high boots for women,waterproof boots for women,boots for women,black ankle boots for women,chunky boots for women,tall boots for women,leather boots for women,black knee high boots for women,riding boots for women,boots for women with heel,lace up boots for women,mid calf boots for women,boots for women,black boots for women knee high,platform boots for women,boots for women,fall boots for women 2022,black boots for women with heel closure white combat boots for women,cowgirl boots for women,ankle boots for women with heel,rubber boots for women,boots for women,ankle rain boots for women,fur boots for women,combat boots for women,long boots for women,winter boots for women waterproof snow,tan boots for women,flat boots for women,high heel boots for women,pairs boots for women,rain boots for women waterproof,heel boots for women,furry boots for women,brown ankle boots for women womens slip ons slip ons for women womens black tennis shoes men's dress shoes black men's shoes dress black shoes size 8 sport shoes running rose gold shoes size 10 mens sneakers all black sneakers women size 12 mens shoes black leather dress shoes hot pink flats size 9 dress shoes for men 14 shoes mens tieks shoes for women white flats white shoes women women casual shoes causel shoes wedding flats black running shoes stylish mens shoes shoes running women black hiking shoes men lightweight \n women house slipper slip on slippers for men slipper socks fuzzy mens slippers warm hard sole slippers for men women faux fur slippers black slippers for men outdoor slippers men size 13 mens slippers fuzzy shoes men warm slippers polo slippers for men big fur slides black boys bed slippers grey fuzzy slippers tall slipper socks for women houseshoes slippers with bow mens black slides womens faux slippers mens black slippers package of slippers womens slide on slippers womens slipperswomens ballet flats comfortable dressy work low wedge arch suport flats shoes women flat shoes comfortable slip on pointed toe ballet flats women ballet flats rhinestone wedding ballerina shoes foldable sparkly comfort slip on flat shoes unisex-adult mens and womens classic clog mens and womens classic lined clog warm and fuzzy slippers mens and womens classic tie dye clog waterproof slippers women men fur lined clogs winter garden shoes warm house slippers indoor outdoor muleswide calf boots for women muck boots boys winter boots moon boots for women men snow boots over the knee boots for women womens rain boots hunter rain boots for women womens boots ankle boots for women ankle booties boots for women knee high cowboy boots winter boots for women waterproof snow toddler rain boots thigh high boots for women white boots for women cowgirl boots girls boots snow boots women snow boots for women waterproof insulated ankle boots womens ankle bootswomens slippers size 11 ballet slippers women bridesmaid slippers home slippers warm slippers slip on slippers for women toddler slipper slippers men toddler house slippers womens slippers with arch support hotel slippers indoor outdoor slippers women sorel slippers acorn slippers mens slippers size 14 dinosaur slippers fish slippers smile face slippers preppy slippers platform slippers ballet slippers for girls indoor slippers for women black slippers slipper socks for kidsShow more"}, {"name": "HATOKU 24pcs Artificial Seeded Eucalyptus Leaves Stems Faux Silver Dollar Eucalyptus Plant Branches in Grey Green for Wedding Holiday Homey Greenery Decor", "product_information": {"Package Dimensions": "11.54 x 9.69 x 3.23 inches", "Item Weight": "4.6 ounces", "Manufacturer": "Hatoku", "ASIN": "B08HXR3BGR", "Customer Reviews": {"ratings_count": 254, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#68,517 in Home & Kitchen (See Top 100 in Home & Kitchen) #395 in Artificial Plants & Greenery"], "Date First Available": "September 13, 2020"}, "brand": "Visit the HATOKU Store", "brand_url": "https://www.amazon.com/stores/Hatoku/page/03682D42-562A-423E-8BC6-8ECB4FFA67BD?ref_=ast_bln", "full_description": "", "pricing": "$15.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51wmcRafCgL.jpg", "https://m.media-amazon.com/images/I/51Nz3+HDkNL.jpg", "https://m.media-amazon.com/images/I/517z6uUOLCL.jpg", "https://m.media-amazon.com/images/I/51jBrjvEuIL.jpg", "https://m.media-amazon.com/images/I/41ppPFXWPsL.jpg", "https://m.media-amazon.com/images/I/51-OOXACTaL.jpg", "https://m.media-amazon.com/images/I/51VWQOpthjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Artificial Plants & Flowers \u203a Artificial Plants & Greenery", "average_rating": 4.4, "small_description": ["Package Includes: 24pcs artificial eucalyptus leaves stems with white seeds, 6 leaves and 2 seeds on each branch. ", "Size: Each eucalyptus stem is approximately 11.8 inches high. The eucalyptus leaves contain two different sizes. One type of leaves is 2.23\" long, 2.17\" wide, and the other one is 2.24\" long and 1.91\" wide. ", "Material: These eucalyptus leaves are made of silk. the stems and white seeds are made of plastic, and the iron wire inside the stem is bendable, you could twist it to any shape you like. The white seeds are inserted on the brown stems, and the leaves on the front are with gray-green decorations, which makes the whole plant look more realistic and natural. ", "Wide application: The eucalyptus leaves stems can be uesd for garland, wreath, wedding bouquet, decoration for wedding or dining table or office table. These natural artificial greenery eucalyptus leaves bring you variability of views for housing, vocation or wedding decoration. ", "Note: The eucalyptus stems may be squeezed because of the long period of transportation, and the leaves may fall or crease, but this does not affect the actual use. The leaves are detachable and you can install them on your own. The creased leaves can be soaked in hot water for a while, and they can return to the original flat state after being dried. "], "total_reviews": 254, "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A2Y6UWFQYR23CF", "seller_name": "WXBOOM", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08HXR3BGR", "category": "garden", "query": "Live Plants", "page": 157, "small_description_old": "About this item\n \nQuantity: There are 24 branches decorated with artificial white fruits and eucalyptus leaves. 6 leaves and 2 fruits on each branch. Color: White fruits stabbed in the brown stem on which decorated by deep green leaves, that makes the whole natural and unique. Size: Each branch height: 11.8 in., width: 4.3 in. Leaf size: big: 2.13 in. * 2.17 in. small: 2.17 in. *1.91 in. Material: Leaves are made of silk. The waterproof stem is made of iron wires, you could twist it to any shape you like. Wide application: You can use it for garland, wedding bouquet, decoration for wedding or dining table or office table. These natural artificial green eucalyptus leaves bring you variability of views for housing, vocation, wedding decoration. Caution: Leaves may fall or crease due to transportation, it doesn\u2019t matter. Leaves are detachable, you could set it up yourself. Creased leaves could recover, soak in hot water then dry."}, {"name": "Olivia Miller Women\u2019s Fashion Ladies Shoes, Sara PU Vegan Leather & Rhinestones Double Strap Cutout Band Slip On Open Toe Trendy Casual Summer Slide Flat Sandals", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12 x 6 x 5 inches; 1.3 Pounds", "Item model number\n \u200f": "\u200e\n OMH-5394", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n November 23, 2021", "Manufacturer\n \u200f": "\u200e\n Olivia Miller", "ASIN\n \u200f": "\u200e\n B09MG3MW3F", "Best Sellers Rank": "#910,053 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#2,137 in Women's Slide Sandals", "#2,137 in Women's Slide Sandals": ""}, "brand": "Visit the Olivia Miller Store", "brand_url": "https://www.amazon.com/stores/OliviaMiller/page/B66C2D5C-6684-4807-88E2-6EDB5156B5C3?ref_=ast_bln", "full_description": "", "pricing": "$26.00$29.40", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31C48N01imL.jpg", "https://m.media-amazon.com/images/I/317TTn6bV0L.jpg", "https://m.media-amazon.com/images/I/318raj5ZDRL.jpg", "https://m.media-amazon.com/images/I/515raVzxlCL.jpg", "https://m.media-amazon.com/images/I/41ypXlN18KL.jpg", "https://m.media-amazon.com/images/I/31Z6rJOsdGL.jpg", "https://m.media-amazon.com/images/I/31U3cEMyyGL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals \u203a Slides", "average_rating": "", "small_description": ["This Rhinestone Sandal is perfect for any casual day, meet Sara, Rhinestone upper with a comfort footbed makes it the perfect sandal. ", "Perfect for Daily Wear or Any Occasion / Stylish & Comfortable / Great for Summer & Spring / Comfy & Lightweight / Modern, Dressy & Versatile / Suitable for School, Office Wear, Evening, Dating, Wedding, Party, Casual Dress, Dancing, Prom, Nightclub, Ballroom, Interview, Holiday, Vacation. ", "THE PERFECT FIT / RUNS TRUE TO SIZE: For the luxurious, sophisticated, modern, free-spirit woman like yourself! Comfortable pair of sandals made to last. Classic & versatile, it's the shoe for every season and occasion: summer, spring, fall & winter. The functional and solid construction, natural toe box, premium materials & flexible sole give you the freedom to move comfortably & freely. ", "SHOE CLOSURE: Slip On / TOE STYLE: Open Toe ", "WARRANTY & CUSTOMER CARE: We are relentlessly focused on always delivering the highest quality shoes and footwear at best-valued prices with best-in-class customer service. Message us directly through the Amazon Message System if you have any questions, need help finding your size, or need to exchange size, our team is here to help! "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "6", "asin": "B09MFZDXCG"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B09MFYLXBG"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09MG25QNR"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B09MG15V84"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B09MFZ726L"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09MG3MW3F/ref=twister_B09MG17KPS", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31vGXttgO+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MG1YSNL/ref=twister_B09MG17KPS", "value": "Natural/Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41nJVKP5ITL.jpg"}, {"is_selected": true, "url": null, "value": "Silver", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31C48N01imL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MFZ726L", "category": "fashion", "query": "Women's Flats", "page": 103, "small_description_old": "Thermoplastic Rubber sole This Rhinestone Sandal is perfect for any casual day, meet Sara, Rhinestone upper with a comfort footbed makes it the perfect sandal. Perfect for Daily Wear or Any Occasion / Stylish & Comfortable / Great for Summer & Spring / Comfy & Lightweight / Modern, Dressy & Versatile / Suitable for School, Office Wear, Evening, Dating, Wedding, Party, Casual Dress, Dancing, Prom, Nightclub, Ballroom, Interview, Holiday, Vacation. THE PERFECT FIT / RUNS TRUE TO SIZE: For the luxurious, sophisticated, modern, free-spirit woman like yourself! Comfortable pair of sandals made to last. Classic & versatile, it's the shoe for every season and occasion: summer, spring, fall & winter. The functional and solid construction, natural toe box, premium materials & flexible sole give you the freedom to move comfortably & freely. SHOE CLOSURE: Slip On / TOE STYLE: Open Toe WARRANTY & CUSTOMER CARE: We are relentlessly focused on always delivering the highest quality shoes and footwear at best-valued prices with best-in-class customer service. Message us directly through the Amazon Message System if you have any questions, need help finding your size, or need to exchange size, our team is here to help!"}, {"name": "Onwon 1 PCS Drawer Type Cosmetics Storage Box Dormitory Desktop Finishing Dresser Skin Care Lipstick Plastic Shelf", "product_information": {"Manufacturer": "\u200eVNDEFUL", "Item Weight": "\u200e1.46 pounds", "Package Dimensions": "\u200e14.02 x 12.24 x 5.79 inches", "Material": "\u200ePlastic", "Number Of Pieces": "\u200e1", "Mounting Type": "\u200eDesktop", "Special Features": "\u200ePortable", "Usage": "\u200eCosmetics, Stationery", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B08276Q6PZ", "Customer Reviews": {"ratings_count": 669, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#53,910 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #269 in Cosmetic Display Cases"], "Date First Available": "December 1, 2019"}, "brand": "Brand: Onwon", "brand_url": "https://www.amazon.com/Onwon/b/ref=bl_dp_s_web_19839156011?ie=UTF8&node=19839156011&field-lbr_brands_browse-bin=Onwon", "full_description": "Product material: environmental PPFeatures: partition storageProduct specifications: 28.5 cm * 17.5 cm * 12.5 cmUSES: cosmetics, stationery and other small daily supplies storageProduct description: imported from Germany, ABS material, environmental safety, non-toxic and odorless.Adopt high-grade mold, receive box smooth without burr.Space type drawer is designed, classification is received, the article of large capacity also is not in words, let make up a table more neat", "pricing": "$22.80", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41dbGYDXvrL.jpg", "https://m.media-amazon.com/images/I/41+7c0Rz+8L.jpg", "https://m.media-amazon.com/images/I/31ZHY+A7JJL.jpg", "https://m.media-amazon.com/images/I/31fQFM6pwuL.jpg", "https://m.media-amazon.com/images/I/41MY0anXMmL.jpg", "https://m.media-amazon.com/images/I/518Zspth2KL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Cosmetic Display Cases", "average_rating": 4.1, "small_description": ["Imported ABS from Germany,Product specifications: 28.5 cm * 17.5 cm * 12.5 cm. quality upgrade, safety and environmental protection.Non-toxic and odorless ", "Drawer handle, invisible horizontal handle, beautiful and convenient ", "hollow at the bottom, ventilation, keep the table clean ", "partition drawer design, large capacity classified storage, neat and orderly, save desktop space ", "Adopt high grade mould, receive box smooth without burr, firm and durable.USES: cosmetics, stationery and other small daily supplies storage "], "total_reviews": 669, "total_answered_questions": "", "customization_options": "", "seller_id": "A28O9CKQZW4GJU", "seller_name": "Onwon", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08276Q6PZ", "category": "beauty", "query": "Body Makeup", "page": 51, "small_description_old": "About this item\n \nImported ABS from Germany,Product specifications: 28.5 cm * 17.5 cm * 12.5 cm. quality upgrade, safety and environmental protection.Non-toxic and odorless Drawer handle, invisible horizontal handle, beautiful and convenient hollow at the bottom, ventilation, keep the table clean partition drawer design, large capacity classified storage, neat and orderly, save desktop space Adopt high grade mould, receive box smooth without burr, firm and durable.USES: cosmetics, stationery and other small daily supplies storage \n \u203a See more product details"}, {"name": "The Establishment Men's Organic Cotton Fleece Short with Pocket(S to XXL)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.06 x 6.38 x 3.78 inches; 12.91 Ounces", "Item model number\n \u200f": "\u200e\n EST-ESH-01-Wine-S", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 10, 2018", "ASIN\n \u200f": "\u200e\n B07FD13LP1", "Best Sellers Rank": "#590,146 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,863 in Men's Athletic Shorts", "#1,863 in Men's Athletic Shorts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the The Establishment Store", "brand_url": "https://www.amazon.com/stores/TheEstablishment/page/B31AE790-4685-43FE-B5C0-019A1E3793FB?ref_=ast_bln", "full_description": "", "pricing": "$24.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31gQUsTMfgS.jpg", "https://m.media-amazon.com/images/I/31aTe2l7auS.jpg", "https://m.media-amazon.com/images/I/31-Md53z1-S.jpg", "https://m.media-amazon.com/images/I/317EnV7r4iS.jpg", "https://m.media-amazon.com/images/I/31dz91L35KS.jpg", "https://m.media-amazon.com/images/I/41fi6o2Mz3S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.5, "small_description": ["\u2705 MATERIAL - 100% GOTS CERTIFIED ORGANIC COTTON French Terry Men's Active Shorts & it suits all skin types, Preshrunk, Contemporary fit, Enzyme washed for extra softness ", "\u2705 COMFORT TO THE CORE- These shorts with pockets and will keep you comfortable all day long ", "\u2705 IDEAL DAILY ACTIVE WEAR: Go to your gym, yoga classes , tracking , cycling, running , jogging, college, dates, office and a lot more. ", "\u2705 WASHING INSTRUCTIONS: Machine Wash, Tumble Dry Low, Do Not Bleach ", "\u2705 BECOME AN ORGANIC NINJA : Are you an organ ic ninja just like us. Then buy this 100% organic product which is 100% sustainable with low carbon footprint. Also an ideal gift for your loved ones, be it Christmas, Thanksgiving, Birthday, Anniversaries, Father's Day "], "total_reviews": 12, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07FD13LP1"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07FD13NDS"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07FDCGBRQ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07FD3Y1CB"}], "Color": [{"is_selected": true, "url": null, "value": "Wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31gQUsTMfgS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FJLHDVS/ref=twister_B09MFZVSNV", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31dOe0edyFS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FD9BT37/ref=twister_B09MFZVSNV", "value": "Navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Cb42VuLAS.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07FD13LP1", "category": "fashion", "query": "Men's Shorts", "page": 32, "small_description_old": "Cotton,Fleece,Organic Cotton,Terry Drawstring closure Machine Wash \u2705 MATERIAL - 100% GOTS CERTIFIED ORGANIC COTTON French Terry Men's Active Shorts & it suits all skin types, Preshrunk, Contemporary fit, Enzyme washed for extra softness \u2705 COMFORT TO THE CORE- These shorts with pockets and will keep you comfortable all day long \u2705 IDEAL DAILY ACTIVE WEAR: Go to your gym, yoga classes , tracking , cycling, running , jogging, college, dates, office and a lot more. \u2705 WASHING INSTRUCTIONS: Machine Wash, Tumble Dry Low, Do Not Bleach \u2705 BECOME AN ORGANIC NINJA : Are you an organ ic ninja just like us. Then buy this 100% organic product which is 100% sustainable with low carbon footprint. Also an ideal gift for your loved ones, be it Christmas, Thanksgiving, Birthday, Anniversaries, Father's Day"}, {"name": "Gimax 8 Way Coax Cable Splitter F-Type Screw for Cable TV Antenna 8 way splitter satellite TV antenna signal 20dB 5-2300MHz SATV/CATV", "product_information": {"Manufacturer": "DAVITU", "ASIN": "B07QB4BV5W", "Date First Available": "November 22, 2019"}, "brand": "Brand: GIMAX", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=GIMAX", "full_description": "Features: 1, zinc alloy die casting, surface nickel plating treatment, 2, working frequency band 5-2400MHz, 3, Eight way Distribution output, 4, low insertion loss, high isolation, 5, All interface unidirectional power, the maximum through the current 0.5A, voltage DC 24V, 6, size: 118*56*26mm Specifications: Model Parameter Bandwidth (MHz) Insertion Loss (dB) Isolated from each other (dB) Insertion Loss (dB) \u00a0 SB-2008 All one-way powered 5-40 \u2264 13 \u226522 \u22659 40-1000 \u2264 13.5 \u226522 \u226510 1000-1750 \u226413.5 \u226522 \u226512 1750-2050 \u226416.5 \u226520 \u226510 2050-2400 \u226418.5 \u226520 \u226510 Item specifics:Model number: SB-2008Impedance: 75 OhmMaterial: Nickel Plating of Zinc AlloyFrequency range: 5-2300MHzInsulator: PTFEIs customized: YesApplication: RF, LightingGender: FemaleType: F", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51pXv3u8wLL.jpg", "https://m.media-amazon.com/images/I/41FP4anFbXL.jpg", "https://m.media-amazon.com/images/I/516ZhQQxBKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Satellite TV Equipment \u203a Splitters", "average_rating": "", "small_description": ["1, zinc alloy die casting, surface nickel plating treatment, 2, working frequency band 5-2400MHz, 3, Eight way Distribution output, 4, low insertion loss, high isolation, 5, All interface unidirectional power, the maximum through the current 0.5A, voltage DC 24V, 6, size: 118*56*26mm ", "Model number: SB-2008 ", "Impedance: 75 Ohm ", "Material: Nickel Plating of Zinc Alloy ", "Frequency range: 5-2300MHz "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07QB4BV5W", "category": "electronics", "query": "Satellite Television", "page": 184, "small_description_old": "1, zinc alloy die casting, surface nickel plating treatment, 2, working frequency band 5-2400MHz, 3, Eight way Distribution output, 4, low insertion loss, high isolation, 5, All interface unidirectional power, the maximum through the current 0.5A, voltage DC 24V, 6, size: 118*56*26mm Model number: SB-2008 Impedance: 75 Ohm Material: Nickel Plating of Zinc Alloy Frequency range: 5-2300MHz"}, {"name": "Mac Bean Case for Samsung Galaxy A12 5G Case with Tempered Glass Screen Protector, Full Body Double Layer Protection Drop and Stain Resistant Compatible with Samsung Galaxy A12 5G 6.5 inch", "product_information": {"Package Dimensions": "7.28 x 3.78 x 0.67 inches", "Item Weight": "3.2 ounces", "ASIN": "B0982W8RKZ", "Item model number": "Samsung Galaxy A12", "Customer Reviews": {"ratings_count": 5, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#114,098 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #54,256 in Cell Phone Basic Cases"], "Special Features": "Shock-Absorbent", "Other display features": "Wireless", "Form Factor": "Bumper", "Colour": "Black", "Manufacturer": "Mac Bean", "Date First Available": "June 28, 2021"}, "brand": "Brand: Mac Bean", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Mac+Bean", "full_description": "", "pricing": "$6.99", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41W9KCO27OS.jpg", "https://m.media-amazon.com/images/I/51PDBVNSqxS.jpg", "https://m.media-amazon.com/images/I/519120iOE7S.jpg", "https://m.media-amazon.com/images/I/51yF5T4yChS.jpg", "https://m.media-amazon.com/images/I/41vn25rkvaS.jpg", "https://m.media-amazon.com/images/I/41YLnN1ojKS.jpg", "https://m.media-amazon.com/images/I/41o68EM+nPS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Cases, Holsters & Sleeves \u203a Basic Cases", "average_rating": 4.7, "small_description": ["Protection\u3011Whole body double protection structure, four airbags to prevent falls, enhanced wrap-around bumper made of shock-absorbing TPU material, providing super protection ", "Designability\u3011Designed clear acrylic back prevents scratches and stains on the device and shows your device more clearly ", "Perfectibility\u3011The perfectly cut opening allows full access to all functions and ports of the device, and the sensitive button cover allows you to have sensitive buttons ", "Serviceability\u3011MacBean comes with a lifetime warranty and friendly support when you need it "], "total_reviews": 5, "total_answered_questions": 5, "model": "Samsung Galaxy A12", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$6.99", "price": 6.99, "image": "https://m.media-amazon.com/images/I/41W9KCO27OS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0982V52FS/ref=twister_B0982VZ72M?_encoding=UTF8&psc=1", "value": "Purple", "price_string": "$6.99", "price": 6.99, "image": "https://m.media-amazon.com/images/I/51gduK2OdSS.jpg"}]}, "seller_id": "A37JME8C601ZF0", "seller_name": "gyl us", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0982W8RKZ", "category": "electronics", "query": "Mac", "page": 238, "small_description_old": "About this item Compatibility\u3011Compatible with Samsung Galaxy A12 5G only Protection\u3011Whole body double protection structure, four airbags to prevent falls, enhanced wrap-around bumper made of shock-absorbing TPU material, providing super protection Designability\u3011Designed clear acrylic back prevents scratches and stains on the device and shows your device more clearly Perfectibility\u3011The perfectly cut opening allows full access to all functions and ports of the device, and the sensitive button cover allows you to have sensitive buttons Serviceability\u3011MacBean comes with a lifetime warranty and friendly support when you need it"}, {"name": "Cheez Whiz Original Plain Cheese Dip (15 oz Jar)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.42 x 3.42 x 3.93 inches; 1.48 Pounds", "Item model number\n \u200f": "\u200e\n 00021000626793", "UPC\n \u200f": "\u200e\n 021000626793", "Manufacturer\n \u200f": "\u200e\n Kraft-Heinz", "ASIN\n \u200f": "\u200e\n B000SKM4CE", "Country of Origin\n \u200f": "\u200e\n USA", "Domestic Shipping": "Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.", "International Shipping": "This item is not eligible for international shipping.Learn More", "Best Sellers Rank": "#5,397 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#2 in Processed Cheese Spreads", "#2 in Processed Cheese Spreads": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Cheez Whiz", "brand_url": "https://www.amazon.com/Cheez-Whiz/b/ref=bl_dp_s_web_10218849011?ie=UTF8&node=10218849011&field-lbr_brands_browse-bin=Cheez+Whiz", "full_description": "Kraft Cheez Whiz Original Cheese Dip.80 calories per 2 tbsp.See nutrition information for sodium content.", "pricing": "$4.88", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51qiQ2RZdkL.jpg", "https://m.media-amazon.com/images/I/51skPF2zTrL.jpg", "https://m.media-amazon.com/images/I/61mP2-k0HKL.jpg", "https://m.media-amazon.com/images/I/51yzNnDZD2L.jpg", "https://m.media-amazon.com/images/I/51Tn3+GEU5L.jpg", "https://m.media-amazon.com/images/I/51sJ0xE1AzL.jpg", "https://m.media-amazon.com/images/I/51799IyukOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Salsas, Dips & Spreads \u203a Dips & Spreads \u203a Processed Cheese", "average_rating": 4.4, "small_description": ["One 15 oz. jar of Kraft Cheez Whiz Original Cheese Dip ", "Kraft Cheez Whiz Original Cheese Dip pairs well with everything from raw veggies to pretzels ", "Enjoy this creamy, cheesy dip that's made with a dash of Worcestershire sauce ", "Enjoy with chips, broccoli or cauliflower for a burst of cheesy flavor ", "Heat and mix with salsa to make an easy nacho cheese for tortilla chips ", "Convenient resealable jar locks in flavor ", "Keep refrigerated to maintain freshness "], "total_reviews": 1407, "total_answered_questions": 5, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00PO9N90A/ref=twister_B091TVSN5P?_encoding=UTF8&psc=1", "value": "8 Ounce (Pack of 1)", "price_string": "$14.95", "price": 14.95, "image": null}, {"is_selected": true, "url": null, "value": "15 Ounce (Pack of 1)", "price_string": "$4.88", "price": 4.88, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B000SKM4CE", "category": "grocery", "query": "Refrigerated Cheese Dips & Spreads", "page": 1, "small_description_old": "About this item One 15 oz. jar of Kraft Cheez Whiz Original Cheese Dip Kraft Cheez Whiz Original Cheese Dip pairs well with everything from raw veggies to pretzels Enjoy this creamy, cheesy dip that's made with a dash of Worcestershire sauce Enjoy with chips, broccoli or cauliflower for a burst of cheesy flavor Heat and mix with salsa to make an easy nacho cheese for tortilla chips Convenient resealable jar locks in flavor Keep refrigerated to maintain freshness"}, {"name": "WSSBK Portable Speaker Bar Computer Speaker 4D Stereo HiFi Sound Wired Computer Sound Bar USB Powered Soundbar Speaker for PC TV", "product_information": {"Item Weight": "5.07 pounds", "Department": "Unisex-adult", "Manufacturer": "rhzjh", "ASIN": "B09PZZJ2XG", "Country of Origin": "China"}, "brand": "Brand: WSSBK", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=WSSBK", "full_description": "Multi-compatible, it can work well with any device that has a standard 3.5mm audio jack and a USB jack, such as PC / laptops / smart phones / tablets and so on.Its sound quality is great because it maintains sound quality even if you crank up the volume.Plug and play, with a controller on the cable, easy to adjust the volume.A great option for electronics lovers, also perfect to be sent as a gift.Compact size, space-saving, giving you more convenience.Specification: Material: ABSConnectivity Technology: 3.5mm Audio Cable, USBColor: BlackPower: USB / DC 5V 600mAOutput Power: 3WSeparation: \u2265 35dBSNR: \u2265 65dBFrequency Response Range: 30Hz-15KHzChannel: 2.0Item Size: approx. 315 * 60 * 57mmPackage Size: approx. 348 * 120 * 85mmPackage Weight: approx. 471gPackage Include: 1* Sound barIf you have any questions about the product, please contact me, we will contact you within 24 hours and give you a satisfactory answer.", "pricing": "$297.39", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/31OJdj+KvXL.jpg", "https://m.media-amazon.com/images/I/51eRQYXBHnL.jpg", "https://m.media-amazon.com/images/I/51oTE-HIluL.jpg", "https://m.media-amazon.com/images/I/51TXg9HTanL.jpg", "https://m.media-amazon.com/images/I/41uPGv-RX3L.jpg", "https://m.media-amazon.com/images/I/41aqwMn7C+L.jpg", "https://m.media-amazon.com/images/I/31aCpGHfj-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Audio & Video Accessories \u203a Computer Speakers", "average_rating": "", "small_description": ["Multi-compatible, it can work well with any device that has a standard 3.5mm audio jack and a USB jack, such as PC / laptops / smart phones / tablets and so on. ", "Its sound quality is great because it maintains sound quality even if you crank up the volume. ", "Plug and play, with a controller on the cable, easy to adjust the volume. ", "A great option for electronics lovers, also perfect to be sent as a gift. ", "Compact size, space-saving, giving you more convenience. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2AP7VFYHJN2NA", "seller_name": "huihui123dian\u00ae", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PZZJ2XG", "category": "electronics", "query": "Soundbars", "page": 306, "small_description_old": "About this item\n \nMulti-compatible, it can work well with any device that has a standard 3.5mm audio jack and a USB jack, such as PC / laptops / smart phones / tablets and so on. Its sound quality is great because it maintains sound quality even if you crank up the volume. Plug and play, with a controller on the cable, easy to adjust the volume. A great option for electronics lovers, also perfect to be sent as a gift. Compact size, space-saving, giving you more convenience."}, {"name": "Skywin PSVR Stand - Charge, Showcase, and Display Your PS4 VR Headset and Processor - Compatible with Playstation 4 PSVR - Showcase and Move Controller Charging Station", "product_information": {"Package Dimensions": "11.18 x 6.97 x 1.85 inches", "Item Weight": "1.16 pounds", "ASIN": "B07L5XKY24", "Customer Reviews": {"ratings_count": 2531, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#1,624 in Video Games (See Top 100 in Video Games) #58 in PlayStation 4 Headsets"], "Is Discontinued By Manufacturer": "No", "Date First Available": "December 6, 2018", "Manufacturer": "Skywin"}, "brand": "Visit the Skywin Store", "brand_url": "https://www.amazon.com/stores/Skywin/page/FFC62FAD-0F8C-492C-ADDF-8BA9C0E1D1CD?ref_=ast_bln", "full_description": "", "pricing": "$25.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41k55-01FHL.jpg", "https://m.media-amazon.com/images/I/51cXRYo2m7L.jpg", "https://m.media-amazon.com/images/I/416376LoAQL.jpg", "https://m.media-amazon.com/images/I/41ad8xGKMNL.jpg", "https://m.media-amazon.com/images/I/41YbWIKJhgL.jpg", "https://m.media-amazon.com/images/I/41RY-bQlKbL.jpg", "https://m.media-amazon.com/images/I/71tkQdtHriL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a PlayStation 4 \u203a Accessories \u203a Headsets", "average_rating": 4.5, "small_description": ["Multi Function Showcase Stand with built in Move Controller Chargers (Charges without Strap) ", "Compatible with Playstation PSVR and Move Controllers of all generations ", "Display PSVR Headset and PSVR Processor (Original PSVR V1 or new V2 supported) ", "Charge Two Playstation Move Controller Chargers with LED Charge Indication (PS4 powered, AC Adapter not needed) ", "PS4, PSVR, and move controllers Sold Separately (Charges without Strap) "], "total_reviews": 2531, "total_answered_questions": 16, "customization_options": "", "seller_id": "A13XBDKAG9U6F5", "seller_name": "Key Savings", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07L5XKY24", "category": "electronics", "query": "PlayStation", "page": 18, "small_description_old": "About this item\n \nMulti Function Showcase Stand with built in Move Controller Chargers (Charges without Strap) Compatible with Playstation PSVR and Move Controllers of all generations Display PSVR Headset and PSVR Processor (Original PSVR V1 or new V2 supported) Charge Two Playstation Move Controller Chargers with LED Charge Indication (PS4 powered, AC Adapter not needed) PS4, PSVR, and move controllers Sold Separately (Charges without Strap)"}, {"name": "5 Pairs Skin Color No Show Socks Women Lace Low Cut Liner Socks Non Slip Flat Boat Crew Socks (2.39/pair)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.82 x 6.73 x 1.14 inches; 3.21 Ounces", "Item model number\n \u200f": "\u200e\n Oct-013", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 13, 2021", "ASIN\n \u200f": "\u200e\n B09JC3K6R6", "Best Sellers Rank": "#833,998 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#744 in Women's No Show & Liner Socks", "#744 in Women's No Show & Liner Socks": ""}, "brand": "Brand: Cyberman", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Cyberman", "full_description": "80% Cotton Machine Wash EXTREMELY low cut no show liner socks with basic colors. They're suitable for variety of lady's shoes,like flats,pumps,high-heel shoes, Ballerian, Loafers or Sneakers MADE FROM PREMIUM COTTON: Very comfortable to wear. Take good care of your feet SILICONE GRIPPERS on the heel to keep liners stay in place on your feet Main material:80% Cotton. Do well in elasticity,durable and good ability to soak up sweat One size fits 6-11(US). It's stretchy enough to fit most ladies, girls", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/411+Bub40-L.jpg", "https://m.media-amazon.com/images/I/51QHJDWJmvL.jpg", "https://m.media-amazon.com/images/I/41vEeXKIsLL.jpg", "https://m.media-amazon.com/images/I/41U3HKd+xUL.jpg", "https://m.media-amazon.com/images/I/51cfgqhWxDL.jpg", "https://m.media-amazon.com/images/I/51V9C0ArhSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Socks & Hosiery \u203a Socks \u203a No Show & Liner Socks", "average_rating": "", "small_description": ["Cotton ", "Machine Wash ", "\u2605\u3010MATERIAL\u3011Comfortable ventilation meshes allow your feet to breathe, stay comfortable and eliminate foot odor - Stay cool & dry with these lightweight thin footies all day around - Stretchy, wide, flat topline & accurate sock sizing provide comforts, won't leave marks on your feet - Single Layer Sock Provides a Second Skin Feel and is Ideal for Spring&Summer. ", "\u2605\u3010No SHOW\u3011No show liners stop pretty close to the toe line, just covering the end of your toes, are truly no show in all types of low cut summer shoes. - Perfect for loafers, low-cut Sperry's, low-cut Vans, low-cut Sneakers,summer high-heel shoes,ballet flats, etc. ", "\u2605\u3010No SLIPPING\u3011Stretchy Material comfortably hugs your feet; Triple Curved Silicon Heel-Grips keep the sock snug and in place; Y Heel Construction and Elastic Topline minimize slipping. ", "\u2605\u3010MULTIPURPOSE\u3011Never moved after all day running around,walking,cleaning and doing errands. ", "\u2605\u3010INSTRCTIONS\u3011Not lose the ability to stay on the foot and not fall apart after being washed.Satisfaction Guaranteed! "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3ARQGMTXALM19", "seller_name": "Cyberman", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09JC3K6R6", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 54, "small_description_old": "Cotton Machine Wash \u2605\u3010MATERIAL\u3011Comfortable ventilation meshes allow your feet to breathe, stay comfortable and eliminate foot odor - Stay cool & dry with these lightweight thin footies all day around - Stretchy, wide, flat topline & accurate sock sizing provide comforts, won't leave marks on your feet - Single Layer Sock Provides a Second Skin Feel and is Ideal for Spring&Summer. \u2605\u3010No SHOW\u3011No show liners stop pretty close to the toe line, just covering the end of your toes, are truly no show in all types of low cut summer shoes. - Perfect for loafers, low-cut Sperry's, low-cut Vans, low-cut Sneakers,summer high-heel shoes,ballet flats, etc. \u2605\u3010No SLIPPING\u3011Stretchy Material comfortably hugs your feet; Triple Curved Silicon Heel-Grips keep the sock snug and in place; Y Heel Construction and Elastic Topline minimize slipping. \u2605\u3010MULTIPURPOSE\u3011Never moved after all day running around,walking,cleaning and doing errands. \u2605\u3010INSTRCTIONS\u3011Not lose the ability to stay on the foot and not fall apart after being washed.Satisfaction Guaranteed!"}, {"name": "Signature Design by Ashley Jailene Contemporary 24\" High Antique Wall Candle Sconce, Gold", "product_information": {"Product Dimensions": "5.25 x 10 x 24 inches", "Item Weight": "5.5 pounds", "Manufacturer": "Ashley Furniture Industries", "ASIN": "B0873B8Y7P", "Country of Origin": "India", "Item model number": "A8010187", "Customer Reviews": {"ratings_count": 3, "stars": "3.5 out of 5 stars"}, "Best Sellers Rank": ["#2,937,812 in Home & Kitchen (See Top 100 in Home & Kitchen) #454 in Candle Sconces"], "Item Diameter": "10 Inches", "Material Care Instructions": "Spot Clean", "Assembly Required": "No", "Number of Pieces": "1", "Warranty Description": "1 year limited manufacturer.", "Batteries Required?": "No"}, "brand": "Visit the Signature Design by Ashley Store", "brand_url": "https://www.amazon.com/stores/AshleyFurniture/page/9BD0FF61-A3F9-4233-B198-ED21F0E0B1AF?ref_=ast_bln", "full_description": "Light up your space with contemporary style with the Jailene wall sconce. The antiqued goldtone finish of the stacked shapes adds a classic element to this very modern piece. Add in your own candle and enjoy your very chic space.", "pricing": "$89.99", "list_price": "", "availability_quantity": 15, "availability_status": "Only 15 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41T1WggAARL.jpg", "https://m.media-amazon.com/images/I/51IZTlzVaPL.jpg", "https://m.media-amazon.com/images/I/41xeLcCItDL.jpg", "https://m.media-amazon.com/images/I/51q1LbVItAL.jpg", "https://m.media-amazon.com/images/I/51bzPcfpBVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Candles & Holders \u203a Candleholders \u203a Candle Sconces", "average_rating": 3.5, "small_description": ["MODERN WALL SCONCE: Add a little shimmer and shine to your space. This wall sconce wows every time with its unique vibe and eye-catching finish ", "BEAUTIFUL CRAFTSMANSHIP: Made of metal and clear glass in a goldtone finish. Keyhole bracket on back for hanging on the wall ", "METALLIC MAGIC: The antiqued goldtone metallic finished stacked shapes radiate a sparkly sheen that's sure to elevate your bedroom or living room decor ", "DECORATIVE WALL DECOR: Measures 10\" W x 5.25\" D x 24\" H. Add in your own candle and enjoy your very chic space. Decor accents are the perfect way to add personality and style to your home ", "NO ASSEMBLY REQUIRED: Ready for instant enjoyment in your home ", "DIRECT FROM THE MANUFACTURER: Ashley Furniture goes the extra mile to package, protect and deliver your purchase in a timely manner ", "BUY WITH CONFIDENCE: Designed and manufactured by Ashley Furniture Industries. The trusted source for stylish furniture, lighting, rugs, accessories and mattresses. For every taste and budget "], "total_reviews": 3, "total_answered_questions": "", "model": "A8010187", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0873B8Y7P", "category": "garden", "query": "Sconces", "page": 184, "small_description_old": "About this item\n \nMODERN WALL SCONCE: Add a little shimmer and shine to your space. This wall sconce wows every time with its unique vibe and eye-catching finish BEAUTIFUL CRAFTSMANSHIP: Made of metal and clear glass in a goldtone finish. Keyhole bracket on back for hanging on the wall METALLIC MAGIC: The antiqued goldtone metallic finished stacked shapes radiate a sparkly sheen that's sure to elevate your bedroom or living room decor DECORATIVE WALL DECOR: Measures 10\" W x 5.25\" D x 24\" H. Add in your own candle and enjoy your very chic space. Decor accents are the perfect way to add personality and style to your home NO ASSEMBLY REQUIRED: Ready for instant enjoyment in your home DIRECT FROM THE MANUFACTURER: Ashley Furniture goes the extra mile to package, protect and deliver your purchase in a timely manner BUY WITH CONFIDENCE: Designed and manufactured by Ashley Furniture Industries. The trusted source for stylish furniture, lighting, rugs, accessories and mattresses. For every taste and budget"}, {"name": "Bungalow Glow, Candle Pikake Lei Wood 6 Ounce", "product_information": {"Product Dimensions": "5.5 x 5.3 x 2 inches", "Item Weight": "5.6 ounces", "Manufacturer": "Bungalow Glow", "ASIN": "B07BKXMCNB", "Customer Reviews": {"ratings_count": 16, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#610,802 in Home & Kitchen (See Top 100 in Home & Kitchen) #160,864 in Home D\u00e9cor Products"], "Is Discontinued By Manufacturer": "No", "Date First Available": "February 8, 2012"}, "brand": "Brand: Bungalow Glow", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Bungalow+Glow", "full_description": "Hawaiian Monkeypod Candle. A soy and beeswax blend to bring the authentic and unique scents of Hawaii into your home. This monkeypod wood candle burns approximately 35 to 40 plus hours and is scented throughout so that the scent lasts from beginning to end. Measures approximately: 1.75 in. by 4 in.", "pricing": "$17.93", "list_price": "", "availability_quantity": 15, "availability_status": "Only 15 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41gZ5-D1ccL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products", "average_rating": 4.3, "small_description": ["Uses soy wax from the United Staes ", "Handmade in Hawaii ", "Burns for up to 30 to 40 hours ", "Fragranced with phthalate-free scents "], "total_reviews": 16, "total_answered_questions": "", "customization_options": "", "seller_id": "A20D0T3EXTAA17", "seller_name": "Buns of Maui", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07BKXMCNB", "category": "garden", "query": "Candles", "page": 338, "small_description_old": "About this item\n \nUses soy wax from the United Staes Handmade in Hawaii Burns for up to 30 to 40 hours Fragranced with phthalate-free scents"}, {"name": "JOY IN LOVE Kitten Heels for Women Slingback Pumps Sandals Pointy Toe Pumps", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 11.02 x 6.3 x 3.15 inches; 1.54 Pounds", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n September 15, 2020", "ASIN\n \u200f": "\u200e\n B08J4B4C3F", "Best Sellers Rank": "#579,084 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,971 in Women's Pumps", "#1,971 in Women's Pumps": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the JOY IN LOVE Store", "brand_url": "https://www.amazon.com/stores/JOYINLOVE/page/FC3E5E61-B230-403D-89CA-D364D704FCC2?ref_=ast_bln", "full_description": "", "pricing": "$45.99$47.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31FMnQGqrbL.jpg", "https://m.media-amazon.com/images/I/319EPle3vAL.jpg", "https://m.media-amazon.com/images/I/31fKvY1Jt6L.jpg", "https://m.media-amazon.com/images/I/31mBC3-RRsL.jpg", "https://m.media-amazon.com/images/I/31GNxFhXxnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals \u203a Heeled Sandals", "average_rating": 4.3, "small_description": ["Imported ", "Rubber sole ", "Platform measures approximately .25\" ", "2.36\" kitten heels,a comfortable hight for dress shoes,you would not tired even with it all day ", "Slingback and closed toe design,can be worn as sandals or pumps.Both matching pants and skirts,suitable for a variety of occasions. ", "Shoes are packaged with separated dust bags in shoe box,random accessories as gift. ", "Standard US size,more fit medium feet,narrow feet please choose half a size down,wide feet half a size up. ", "US return warehouse,convenient to returns and exchanges.Expedited service or return policy,please contact us. "], "total_reviews": 96, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "5.5", "asin": "B08J3RC665"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B08J3RF53Y"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B08J4359WN"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B08J4DTDNV"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B08J3KWZV7"}, {"is_selected": false, "is_available": false, "value": "8.5", "asin": "B08J42S9KG"}, {"is_selected": false, "is_available": false, "value": "9", "asin": "B08J3KW2N6"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B08J3WTD2L"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B08J456G48"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B092VDY5MF"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08J4B4C3F/ref=twister_B09T8VTJWZ", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qbA9uTVLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092QVZ7SM/ref=twister_B09T8VTJWZ", "value": "Leopard", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412BX7uajFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08J3Y6L29/ref=twister_B09T8VTJWZ", "value": "Red Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31yX9GrDacL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08J3QCQQS/ref=twister_B09T8VTJWZ", "value": "Nude Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31P8LCclsxL.jpg"}, {"is_selected": true, "url": null, "value": "Nude", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31FMnQGqrbL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B092VDY5MF", "category": "fashion", "query": "Women's Pumps", "page": 26, "small_description_old": "Imported Rubber sole Platform measures approximately .25\" 2.36\" kitten heels,a comfortable hight for dress shoes,you would not tired even with it all day Slingback and closed toe design,can be worn as sandals or pumps.Both matching pants and skirts,suitable for a variety of occasions. Shoes are packaged with separated dust bags in shoe box,random accessories as gift. Standard US size,more fit medium feet,narrow feet please choose half a size down,wide feet half a size up. US return warehouse,convenient to returns and exchanges.Expedited service or return policy,please contact us."}, {"name": "Godox S2 Speedlite Bracket for Godox AD200Pro, AD200, AD400Pro, for V1 Round Head Speedlite, V860II / TT685 / TT350 Series, S-Type Bracket Updated Version Bowens Mount Holder", "product_information": {"Package Dimensions": "7.68 x 6.42 x 3.62 inches", "Item Weight": "1.39 pounds", "ASIN": "B07YFF7B78", "Customer Reviews": {"ratings_count": 272, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#5 in Camera Flash Shoe Mounts"], "Date First Available": "September 27, 2019", "Manufacturer": "GODOX"}, "brand": "Visit the Godox Store", "brand_url": "https://www.amazon.com/stores/GODOX/page/DBFCDB48-1C42-418D-BBF0-1A6BC6CC6F65?ref_=ast_bln", "full_description": "", "pricing": "$25.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41qHB031oWL.jpg", "https://m.media-amazon.com/images/I/41IUmbp914L.jpg", "https://m.media-amazon.com/images/I/41owVBOpiWL.jpg", "https://m.media-amazon.com/images/I/41vHz8BKfBL.jpg", "https://m.media-amazon.com/images/I/411LwymaU1L.jpg", "https://m.media-amazon.com/images/I/41ExB8tnyjL.jpg", "https://m.media-amazon.com/images/I/51W70XAcNSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Flash Accessories \u203a Shoe Mounts", "average_rating": 4.8, "small_description": ["[Stronger adaptability]Godox S2 Bracket is update version of S type bracket, fit more speedlites and flashes, such as Godox V1 round Head speedlite,V860II series, T685 series, TT350 series, and outdoor flashes AD series like AD400Pro, AD200Pro ", "[Better quality and protection]No-slip surface, mounts with light pressure, Will not scratch your equipment ", "[More Angle]S2 bracket can tilt stepless, suitable for different angles of lighting. It can be hold in hand or install on a light stand. ", "[More Compact and Portable]S2 bracket has less size and is more compact and portable than the original S type bracket ", "[Bowens Style Mount] Bowens Mount compatible with many accessories such as softbox, standard reflector, Snoot, Umbrella etc. "], "total_reviews": 272, "total_answered_questions": 9, "customization_options": "", "seller_id": "A2KVN3KRDSIAN0", "seller_name": "INSSTRO", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07YFF7B78", "category": "electronics", "query": "Flashes", "page": 156, "small_description_old": "[Stronger adaptability]Godox S2 Bracket is update version of S type bracket, fit more speedlites and flashes, such as Godox V1 round Head speedlite,V860II series, T685 series, TT350 series, and outdoor flashes AD series like AD400Pro, AD200Pro [Better quality and protection]No-slip surface, mounts with light pressure, Will not scratch your equipment [More Angle]S2 bracket can tilt stepless, suitable for different angles of lighting. It can be hold in hand or install on a light stand. [More Compact and Portable]S2 bracket has less size and is more compact and portable than the original S type bracket [Bowens Style Mount] Bowens Mount compatible with many accessories such as softbox, standard reflector, Snoot, Umbrella etc."}, {"name": "Southern Enterprises Kempsey Convertible Console Dining Table, white", "product_information": {"Item Weight": "\u200e78 pounds", "Product Dimensions": "\u200e35.5 x 43 x 30 inches", "Item model number": "\u200eAMZ4792ND", "ASIN": "B07S8F7SHK", "Date First Available": "May 24, 2019"}, "brand": "Visit the SEI Furniture Store", "brand_url": "https://www.amazon.com/stores/SEIFurniture/page/C1DB17B6-B439-41F2-80E6-05ABE9EA8A1D?ref_=ast_bln", "full_description": "Desk to dining. This elegant White dining table converts to a media console in a snap. Farmhouse style greets your guests with Class. Switch up your furniture for a fresh spring clean look - from dining, to living, to the Entry, this any-use folding table complements the room of your choice!", "pricing": "$458.84", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51FnhU2chTL.jpg", "https://m.media-amazon.com/images/I/31BCLt2zYvL.jpg", "https://m.media-amazon.com/images/I/21wtB1-No7L.jpg", "https://m.media-amazon.com/images/I/21Ba1aryGwL.jpg", "https://m.media-amazon.com/images/I/31wBQi78ZfL.jpg", "https://m.media-amazon.com/images/I/31Ya1KPL0pL.jpg", "https://m.media-amazon.com/images/I/61viXOpyX2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": "", "small_description": ["Sofa table converts to breakfast table; 1 Media shelf W/ 1 cord control outlet; White ", "Folding tabletop and gate-leg functionality; clean, Simple look; Farmhouse to Transitional style ", "Overall: 43\" W x 35. 5\" D x 30\" H, 43\" W x 17. 75\" D x 31\" H (dining, console) ", "Subtle wood grain will vary; open Concept living space, dining room, hall/Entry, home office, or kitchen ", "Assembly: required "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eAMZ4792ND", "customization_options": "", "seller_id": "A1BPPTA9GR9RGY", "seller_name": "Kapok Canopy", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07S8F7SHK", "category": "garden", "query": "Console tables", "page": 209, "small_description_old": "About this item Sofa table converts to breakfast table; 1 Media shelf W/ 1 cord control outlet; White Folding tabletop and gate-leg functionality; clean, Simple look; Farmhouse to Transitional style Overall: 43\" W x 35. 5\" D x 30\" H, 43\" W x 17. 75\" D x 31\" H (dining, console) Subtle wood grain will vary; open Concept living space, dining room, hall/Entry, home office, or kitchen Assembly: required \n \u203a See more product details"}, {"name": "Sweet Jojo Designs Blush Pink and Grey Woodland Boho Dream Catcher Arrow Decorative Accent Throw Pillows for Gray Bunny Floral Collection - Set of 2 - Watercolor Rose Flower", "product_information": {"Product Dimensions": "10 x 8 x 3 inches", "Item Weight": "2.69 pounds", "Manufacturer": "Sweet Jojo Designs", "ASIN": "B07V5WMYXS", "Country of Origin": "China", "Item model number": "2P-Dec18-BunnyFloral", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#1,148,318 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,663 in Throw Pillows"], "Is Discontinued By Manufacturer": "No", "Fabric Type": "Brushed Microfiber", "Number of Pieces": "2", "Batteries Required?": "No"}, "brand": "Brand: Sweet Jojo Designs", "brand_url": "https://www.amazon.com/Sweet-Jojo-Designs/b/ref=bl_dp_s_web_6705697011?ie=UTF8&node=6705697011&field-lbr_brands_browse-bin=Sweet+Jojo+Designs", "full_description": "", "pricing": "$22.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Rvl6SRrvL.jpg", "https://m.media-amazon.com/images/I/41-6f4fjpeL.jpg", "https://m.media-amazon.com/images/I/41Yp2lLHUAL.jpg", "https://m.media-amazon.com/images/I/41Ym82Wt4ZL.jpg", "https://m.media-amazon.com/images/I/41FWJPnZd3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillows", "average_rating": 5, "small_description": ["Brushed Microfiber ", "Set of 2 - Pink and Grey Bunny Floral Print Brushed Microfiber Decorative Pillows ", "Matches with all Bunny Floral bedding sets by Sweet Jojo Designs ", "This pillow is sold as a set of 2 - order as many as you need. ", "This design has matching accessories such as window treatments, hampers, shower curtains and bed skirts "], "total_reviews": 1, "total_answered_questions": "", "model": "2P-Dec18-BunnyFloral", "customization_options": "", "seller_id": "AFZG0PW56RHNB", "seller_name": "BeyondBedding", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07V5WMYXS", "category": "garden", "query": "Decorative Pillows", "page": 180, "small_description_old": "About this item\n \nBrushed Microfiber Set of 2 - Pink and Grey Bunny Floral Print Brushed Microfiber Decorative Pillows 18 in. x 18 in. each Matches with all Bunny Floral bedding sets by Sweet Jojo Designs This pillow is sold as a set of 2 - order as many as you need. This design has matching accessories such as window treatments, hampers, shower curtains and bed skirts"}, {"name": "K&F Concept 62mm MC UV Protection Filter Slim Frame with 18-Multi-Layer Coatings for Camera Lens (K-Series)", "product_information": {"Package Dimensions": "3.9 x 3.9 x 0.71 inches", "Item Weight": "2.08 ounces", "ASIN": "B07QL67W9Y", "Item model number": "KF.K62", "Customer Reviews": {"ratings_count": 92, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#35 in Camera Lens Sky & UV Filters"], "Date First Available": "April 12, 2019", "Manufacturer": "Shenzhen Zhuoer Photograph"}, "brand": "Visit the K&F Concept Store", "brand_url": "https://www.amazon.com/stores/KFConcept/page/A4915C0D-40D8-4ADF-99E2-82769850FE3D?ref_=ast_bln", "full_description": "", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51N5tibDwHS.jpg", "https://m.media-amazon.com/images/I/519ufFQQ5zS.jpg", "https://m.media-amazon.com/images/I/41bnjczp2NS.jpg", "https://m.media-amazon.com/images/I/51B8+rP+0SS.jpg", "https://m.media-amazon.com/images/I/31n3Q-zPBSS.jpg", "https://m.media-amazon.com/images/I/41+mZifoC-S.jpg", "https://m.media-amazon.com/images/I/41PT-1wnN7S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Filters & Accessories \u203a Skylight & UV Filters", "average_rating": 4.7, "small_description": ["UV filters is made of Japan import optical glass, protects your lens from dirt, scratches, fingerprints, or accidental damage. ", "Super slim & lightweight aluminum frame, maximum reduce impact on light and effectively avoid dark corner for wide-angle lens. ", "18 Multi-layer coatings effectively to restore the images quality , no any negative affect for the photos color. ", "This UV filter reduce haze and improve contrast to your video and digital images by minimizing the amount of ultraviolet (UV) light and helps eliminate bluish cast in images. ", "The filter is compatible with all 62mm lenses. Please verify your camera's lens thread size(usually marked somewhere on the lens barrel or printed underneath the lens cap) before ordering.The number is always preceded by a \"\u00f8\" (diameter) symbol. "], "total_reviews": 92, "total_answered_questions": "", "model": "KF.K62", "customization_options": "", "seller_id": "AY9NES7NL8P3U", "seller_name": "HappyXingqier", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07QL67W9Y", "category": "electronics", "query": "Lenses", "page": 108, "small_description_old": "About this item\n \nUV filters is made of Japan import optical glass, protects your lens from dirt, scratches, fingerprints, or accidental damage. Super slim & lightweight aluminum frame, maximum reduce impact on light and effectively avoid dark corner for wide-angle lens. 18 Multi-layer coatings effectively to restore the images quality , no any negative affect for the photos color. This UV filter reduce haze and improve contrast to your video and digital images by minimizing the amount of ultraviolet (UV) light and helps eliminate bluish cast in images. The filter is compatible with all 62mm lenses. Please verify your camera's lens thread size(usually marked somewhere on the lens barrel or printed underneath the lens cap) before ordering.The number is always preceded by a \"\u00f8\" (diameter) symbol."}, {"name": "GRABKEN Mini WiFi Alexa Google Wireless Smart Doorbell Camera with Chime, Battery, 19201080P HD, 2-Way Audio, Motion Detection, IP66 and 32GB TF Card", "product_information": {"Package Dimensions": "7.87 x 4.72 x 3.15 inches", "Item Weight": "99 pounds", "ASIN": "B08VH8MZZ6", "Batteries": "2 Unknown batteries required. (included)", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#25,660 in Camera & Photo Products (See Top 100 in Camera & Photo Products) #6,799 in Dome Surveillance Cameras"], "Date First Available": "January 31, 2021", "Manufacturer": "GRABKEN"}, "brand": "Brand: GRABKEN", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=GRABKEN", "full_description": "This fashion video doorbell is equipped with all necessary's features: This high motion sensitivity wi-fi video doorbell camera can detect the slightest motion in front of your door. It\u2019ll automatically switch between normal and infrared settings so you\u2019ll never miss any visitor. Speak directly to anyone who approaches your front door via two-way audio. Whether you are on a business, trip or in the office if you have a network, you can check the status of the door in real time. Super Wi-Fi penetration ability. Only a few steps to complete the installation, and the location is freely defined.", "pricing": "$55.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41aXp7XZznL.jpg", "https://m.media-amazon.com/images/I/51p5e+stFML.jpg", "https://m.media-amazon.com/images/I/51lVBspzNrL.jpg", "https://m.media-amazon.com/images/I/51OnJLAdaDL.jpg", "https://m.media-amazon.com/images/I/51mHWR4WMXL.jpg", "https://m.media-amazon.com/images/I/411jmT2rcAL.jpg", "https://m.media-amazon.com/images/I/41si8H8+GvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Video Surveillance \u203a Surveillance Cameras \u203a Dome Cameras", "average_rating": 5, "small_description": ["[High Speed Video Transmission Ultra \u2013Low Power] High Performance Editable HI3518E Media Processer and Arm @ Max 440 MHZ High Speed Video Processor. ", "[Real-Time Voice Intercom] Through the Mobile Phone you can check the status of the door in real \u2013 time. You can record the current video, play it back, and you can also save the photo. ", "[Smart- Technology Frontier Fashion] New all in one button design, flexible operation, high energy with the whole machine, high degree of integration, the whole body is safe, fashionable and convenient. ", "[High Speed Network View] Whether you are on a business, trip or in the office if you have a network, you can check the status of the door in real time. With all technology and our sophisticated algorithm, the camera intelligently detects body shape and face pattern. ", "[1920P HD Resolution & Night Vision] The smart doorbell camera provides clear captures to see the situation thanks to 1920*1080P HD resolutions and a night vision sensor with 166-degree wide-angle views that keep your home security day and night. [Additional Option used] Pair with select Alexa-enabled devices to enable announcements and two-way talk for convenient in-home monitoring. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A1PQVCIPNWZH40", "seller_name": "Grabken LLC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08VH8MZZ6", "category": "electronics", "query": "Video Surveillance", "page": 319, "small_description_old": "About this item\n \n[High Speed Video Transmission Ultra \u2013Low Power] High Performance Editable HI3518E Media Processer and Arm @ Max 440 MHZ High Speed Video Processor. [Real-Time Voice Intercom] Through the Mobile Phone you can check the status of the door in real \u2013 time. You can record the current video, play it back, and you can also save the photo. [Smart- Technology Frontier Fashion] New all in one button design, flexible operation, high energy with the whole machine, high degree of integration, the whole body is safe, fashionable and convenient. [High Speed Network View] Whether you are on a business, trip or in the office if you have a network, you can check the status of the door in real time. With all technology and our sophisticated algorithm, the camera intelligently detects body shape and face pattern. [1920P HD Resolution & Night Vision] The smart doorbell camera provides clear captures to see the situation thanks to 1920*1080P HD resolutions and a night vision sensor with 166-degree wide-angle views that keep your home security day and night. [Additional Option used] Pair with select Alexa-enabled devices to enable announcements and two-way talk for convenient in-home monitoring."}, {"name": "Milumia Women's Sexy Spaghetti Strap Floral Print Cami Bodycon Bodysuit Shirt Tops", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 14 x 10.5 x 0.5 inches; 2.4 Ounces", "Item model number\n \u200f": "\u200e\n W07200428379U9-M", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n July 13, 2020", "ASIN\n \u200f": "\u200e\n B089K79PQ1", "Best Sellers Rank": "#1,685,612 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,023 in Women's Bodysuit Tops", "#1,023 in Women's Bodysuit Tops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Milumia Store", "brand_url": "https://www.amazon.com/stores/Milumia/page/C1C5537A-823A-4E27-9DF3-C4FFBF8B8D6C?ref_=ast_bln", "full_description": "Size ChartXS: Bust:29.5\",Waist Size:24\",Hip Size:27.2\",Length:28.9\"S: Bust:31.1\",Waist Size:25.6\",Hip Size:28.7\",Length:29.5\"M: Bust:32.7\",Waist Size:27.2\",Hip Size:30.3\",Length:30.1\"L: Bust:35\",Waist Size:29.5\",Hip Size:32.7\",Length:30.9\"XL: Bust:37.4\",Waist Size:31.9\",Hip Size:35\",Length:31.7\"", "pricing": "$14.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51rijKuO6mL.jpg", "https://m.media-amazon.com/images/I/31vHWCjCrML.jpg", "https://m.media-amazon.com/images/I/41yx9TuEvTL.jpg", "https://m.media-amazon.com/images/I/51Ah571gwhL.jpg", "https://m.media-amazon.com/images/I/51Sv7wHmWrL.jpg", "https://m.media-amazon.com/images/I/317r0aq7SsL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Bodysuits", "average_rating": 3.7, "small_description": ["Hand Wash Only ", "Material: 95% polyester , 5% spandex. Fabric has high stretch. ", "Feature: Plus Size, Ditsy Floral Print, Cute and Sweet, Sleeveless, Cami Bodysuit, Spaghetti Straps, Skinny. ", "Occasion: Suitable for Dating, Work, Club, Weekend, Beach, Vacation and Daily wear. ", "Care: Hand wash with cold water. Do not bleach or tumble dry warm. ", "For size information, please refer to the final image on the left or the product description before ordering. "], "total_reviews": 10, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B089K79PQ1"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B089JYQDBM"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B089KC5NT8"}], "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B089K79PQ1", "category": "fashion", "query": "Women's Bodysuit Tops", "page": 51, "small_description_old": "Hand Wash Only Material: 95% polyester , 5% spandex. Fabric has high stretch. Feature: Plus Size, Ditsy Floral Print, Cute and Sweet, Sleeveless, Cami Bodysuit, Spaghetti Straps, Skinny. Occasion: Suitable for Dating, Work, Club, Weekend, Beach, Vacation and Daily wear. Care: Hand wash with cold water. Do not bleach or tumble dry warm. For size information, please refer to the final image on the left or the product description before ordering."}, {"name": "YFF-Corrimano Portable Projection Screen 4:3/16:9 HD Roll-Down Pull-Down Retractable Manual Projection Screen W/Auto-Locking, for Indoor Movie Home Theater Office", "product_information": {"Manufacturer": "YFF-Corrimano", "ASIN": "B09H2NB41N", "Country of Origin": "China"}, "brand": "Brand: YFF-Corrimano", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=YFF-Corrimano", "full_description": "Product description: This durable screen can be mounted on a wall or ceiling and retractable when necessary. In addition to office meeting rooms, classrooms or home screens, the projector screen is also very convenient and practical. Watch your favorite movies on the big screen, play video games with friends, or share work-related presentations or videos with large groups of people. Specification: Product name: Projection screen Screen type: Wall-mounted screen Material: White glass fiber Ratio: 4:3/16:9 Wide angle: 178\u00b0 Gain multiple: 2.3 Size: 60/72/84/100 inch Back: black, opaque Package: 1\u00d7projection screen Note: 1. Using manual measurement method, the size may have an error of 1-3 cm, which is normal. 2. Due to factors such as shooting light and display, some chromatic aberration problems will inevitably occur. Please refer to the actual product received.", "pricing": "$289.57", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41h4BV4YwHL.jpg", "https://m.media-amazon.com/images/I/51Q4Y81HjCL.jpg", "https://m.media-amazon.com/images/I/41oXOnhF8vL.jpg", "https://m.media-amazon.com/images/I/419cdW2VUVL.jpg", "https://m.media-amazon.com/images/I/41+zg9+wNjL.jpg", "https://m.media-amazon.com/images/I/51nD6jipNNL.jpg", "https://m.media-amazon.com/images/I/41sqwfTQDZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Projection Screens", "average_rating": "", "small_description": ["\u3010178\u00b0 wide view angles\u3011: The retractable projector screen has large 178-degree view angles, you don\u2019t need to sit in front of the screen when watching movies. Suitable for home movies, education, presentation, gaming or outdoor movies. ", "\u3010Manual screen control\u3011: This pull down movie screen ceiling/wall mount projector screen is fully retractable and has a self-locking mechanism so you can simply roll down/pull down the screen and then release softly & it will lock itself into position. ", "\u3010Pull down and auto locking system\u3011: The height of the screen is adjustable. Adjust a proper height (various aspect ratio available) for your need and the auto locking design make it more convenient and easy to operate. Easy to pull down and rise up. ", "\u3010Wrinkle-free surface\u3011: The made white glass fiber & black border frame of the video screen pull down hanging projector screen creates impeccable color balance to project realistic picture & deliver ultra-wide off-axis viewing making every seat the best one. ", "\u3010Multi-purpose\u3011: Viewing capacity enables usage in any places: home, living room, school, office, church, classroom, backyard, on any venues: presentations, conferences, weddings, parties, for any entertainments: sport events, movies, TV shows, video gaming. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09H2KKYXW/ref=twister_B09H2KQGDF?_encoding=UTF8&psc=1", "value": "60-inch 4:3", "price_string": "$244.76", "price": 244.76, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2JTQP8/ref=twister_B09H2KQGDF?_encoding=UTF8&psc=1", "value": "60-inch 16:9", "price_string": "$272.34", "price": 272.34, "image": null}, {"is_selected": true, "url": null, "value": "72-inch 4:3", "price_string": "$289.57", "price": 289.57, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2M9578/ref=twister_B09H2KQGDF?_encoding=UTF8&psc=1", "value": "72-inch 16:9", "price_string": "$303.36", "price": 303.36, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2HR7LD/ref=twister_B09H2KQGDF?_encoding=UTF8&psc=1", "value": "84-inch 4:3", "price_string": "$317.15", "price": 317.15, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2KCB1L/ref=twister_B09H2KQGDF?_encoding=UTF8&psc=1", "value": "84-inch 16:9", "price_string": "$334.39", "price": 334.39, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2LFTGX/ref=twister_B09H2KQGDF?_encoding=UTF8&psc=1", "value": "100-inch 4:3", "price_string": "$383.00", "price": 383, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09H2MNX7Z/ref=twister_B09H2KQGDF?_encoding=UTF8&psc=1", "value": "100-inch 16:9", "price_string": "$398.16", "price": 398.16, "image": null}]}, "seller_id": "AXLMMF57K25UV", "seller_name": "XGBDM", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09H2NB41N", "category": "electronics", "query": "Projection Screens", "page": 139, "small_description_old": "About this item \u3010178\u00b0 wide view angles\u3011: The retractable projector screen has large 178-degree view angles, you don\u2019t need to sit in front of the screen when watching movies. Suitable for home movies, education, presentation, gaming or outdoor movies. \u3010Manual screen control\u3011: This pull down movie screen ceiling/wall mount projector screen is fully retractable and has a self-locking mechanism so you can simply roll down/pull down the screen and then release softly & it will lock itself into position. \u3010Pull down and auto locking system\u3011: The height of the screen is adjustable. Adjust a proper height (various aspect ratio available) for your need and the auto locking design make it more convenient and easy to operate. Easy to pull down and rise up. \u3010Wrinkle-free surface\u3011: The made white glass fiber & black border frame of the video screen pull down hanging projector screen creates impeccable color balance to project realistic picture & deliver ultra-wide off-axis viewing making every seat the best one. \u3010Multi-purpose\u3011: Viewing capacity enables usage in any places: home, living room, school, office, church, classroom, backyard, on any venues: presentations, conferences, weddings, parties, for any entertainments: sport events, movies, TV shows, video gaming."}, {"name": "142 Pcs Phone Cleaning Kit, Airpod Cleaner Kit for USB Charging Port, Phone Port Cleaning Kit with Screen Cleaner Spray, Airpods Cleaning kit for Airpods pro Earphones Camera, Earbud Cleaning kit", "product_information": {"Package Dimensions": "5.59 x 4.13 x 1.97 inches", "Item Weight": "6.7 ounces", "ASIN": "B08NF4L614", "Customer Reviews": {"ratings_count": 479, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#10 in Camera & Photo Cleaning Kits"], "Date First Available": "November 13, 2020", "Manufacturer": "Aispour"}, "brand": "Visit the Aispour Store", "brand_url": "https://www.amazon.com/stores/aispour/page/E6AB390F-37C6-4797-8024-25FA32450BA2?ref_=ast_bln", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51DtBpFDN8L.jpg", "https://m.media-amazon.com/images/I/51IT56WKLcL.jpg", "https://m.media-amazon.com/images/I/51kH-bFLYaL.jpg", "https://m.media-amazon.com/images/I/51osCsOctKS.jpg", "https://m.media-amazon.com/images/I/51Z4yePVq9L.jpg", "https://m.media-amazon.com/images/I/51Cl0RpnxAL.jpg", "https://m.media-amazon.com/images/I/61mh8Vuyt9S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Cleaning Equipment \u203a Cleaning Kits", "average_rating": 4.5, "small_description": ["\u2721\u3010WHAT YOU CAN GOT\u3011 1 Screen Cleaner Spray for Electronic Devices + 1 100 Clean Thin Tip + 20 Cleaning Swabs + 8 Wipes + 5 Soft Bristle Brushes + 2 Durable Microfiber Cleaning Cloth + 2 Soft Bursh + 1 Air Blower + 1 Storage Box. ", "\u2721\u3010WHAT IT USED FOR\u3011We are premium cleaner tools for your home electronic devices, used for your airpods 2 or airpods pro, airpods charger kit, phone screen clean and computer clean such as headphone, cell phone, keyboard, ipad charging port cleaner tool. ", "\u2721\u3010WHAT IT CALLED\u3011Aispour electronic cleaning kit\uff0cScreen cleaner, Dust remover, Extend service time helper. Effective cleaning kit tools for your electronic devices dust. make your electronic device away from dust, sand , dirt and debris. ", "\u2721\u3010WHAT\u2019S THE ADVANTAGE\u3011 Safety, Simple, Effective, Static-free, Multi-propuse, Unique Electronic Cleaning kit for your life! ", "\u2721\u3010HOW TO GET GUARANTEE\u3011 Just e-mail us at anytime you like, Aispour are pleasure to solve your consultation and make a guarantee to provide full refunds & returns serivce. "], "total_reviews": 479, "total_answered_questions": "", "customization_options": "", "seller_id": "A26ET4NTLPSGXK", "seller_name": "midoer", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08NF4L614", "category": "electronics", "query": "Cell Phones", "page": 178, "small_description_old": "\u2721\u3010WHAT YOU CAN GOT\u3011 1 Screen Cleaner Spray for Electronic Devices + 1 100 Clean Thin Tip + 20 Cleaning Swabs + 10 Wipes + 5 Soft Bristle Brushes + 2 Durable Microfiber Cleaning Cloth + 2 Soft Bursh + 1 Air Blower + 1 Storage Box. \u2721\u3010WHAT IT USED FOR\u3011We are premium cleaner tools for your home electronic devices, used for your airpods 2 or airpods pro, airpods charger kit, phone screen clean and computer clean such as headphone, cell phone, keyboard, ipad charging port cleaner tool. \u2721\u3010WHAT IT CALLED\u3011Aispour electronic cleaning kit\uff0cScreen cleaner, Dust remover, Extend service time helper. Effective cleaning kit tools for your electronic devices dust. make your electronic device away from dust, sand , dirt and debris. \u2721\u3010WHAT\u2019S THE ADVANTAGE\u3011 Safety, Simple, Effective, Static-free, Multi-propuse, Unique Electronic Cleaning kit for your life! \u2721\u3010HOW TO GET GUARANTEE\u3011 Just e-mail us at anytime you like, Aispour are pleasure to solve your consultation and make a guarantee to provide full refunds & returns serivce."}, {"name": "BON AUGURE Industrial Sofa Console Table for Entryway, 3 Tier Foyer Table for Hallway, Rustic Hall Tables Behind Couch (47 Inch, Rustic Oak)", "product_information": {"Product Dimensions": "47.24 x 13.39 x 30 inches", "Item Weight": "43.3 pounds", "Manufacturer": "BON AUGURE", "ASIN": "B07Y81FQV3", "Customer Reviews": {"ratings_count": 997, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#88,264 in Home & Kitchen (See Top 100 in Home & Kitchen) #79 in Sofa Tables"], "Is Discontinued By Manufacturer": "No", "Date First Available": "December 16, 2018"}, "brand": "Visit the BON AUGURE Store", "brand_url": "https://www.amazon.com/stores/BONAUGURE/page/894FF33F-F016-4316-9A91-AEF594841751?ref_=ast_bln", "full_description": "", "pricing": "$149.99", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51SXrjQLZ5L.jpg", "https://m.media-amazon.com/images/I/51f2k9B9rJL.jpg", "https://m.media-amazon.com/images/I/51amNUQ+mlL.jpg", "https://m.media-amazon.com/images/I/515pr6QflxL.jpg", "https://m.media-amazon.com/images/I/51BqzJ1MB0L.jpg", "https://m.media-amazon.com/images/I/41+rc-lRdKL.jpg", "https://m.media-amazon.com/images/I/410+uk-ZmtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": 4.8, "small_description": ["Multi-functional Console Table: The clean-lined sofa table is a perfect accent work as a console table behind couch, entryway/hallway table, even as a TV stand and bookcase. 3 tier open shelves provide extra space for storing books, plants, decorations, etc. Simple industrial design makes this sofa console table perfect for any space and keeps your home/office in tidy condition. ", "Fashion Style Sofa Table: Modern minimalism and rustic character meet in this clean-lined entryway table, right at home in the farmhouse and industrial-inspired arrangements. Just decorated with framed family photos, plants, and artistic accents to bring a pop of personality to entryway, living room, hallway, bedroom and front door. ", "Material & Structure Features: This entrance table crafted from durable premium MDF board and quality steel frame, the top shelf of this entry table can hold 225 lbs and the lower shelves can hold 150 lbs, offers a long service life and very sturdy. ", "Easy to Assembly: simple design makes assembly very easy, all hardware and detailed instruction are provided. The hall table overall dimension:13.39\"D x 47.24\"W x 30.12\"H. This versatile console tables with storage is convenient to install without any difficulty and placed in any area you like. ", "Worry about wobbles? Heavy metal leg frames and support metal Tubes strengthen the stability of this foyer table greatly and keep balance. "], "total_reviews": 997, "total_answered_questions": "", "customization_options": {"Size": null}, "seller_id": "A1RI04DI3A1QEU", "seller_name": "BON AUGURE", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B07Y81FQV3", "category": "garden", "query": "Console tables", "page": 3, "small_description_old": "About this item\n \nMulti-functional Console Table: The clean-lined sofa table is a perfect accent work as a console table behind couch, entryway/hallway table, even as a TV stand and bookcase. 3 tier open shelves provide extra space for storing books, plants, decorations, etc. Simple industrial design makes this sofa console table perfect for any space and keeps your home/office in tidy condition. Fashion Style Sofa Table: Modern minimalism and rustic character meet in this clean-lined entryway table, right at home in the farmhouse and industrial-inspired arrangements. Just decorated with framed family photos, plants, and artistic accents to bring a pop of personality to entryway, living room, hallway, bedroom and front door. Material & Structure Features: This entrance table crafted from durable premium MDF board and quality steel frame, the top shelf of this entry table can hold 225 lbs and the lower shelves can hold 150 lbs, offers a long service life and very sturdy. Easy to Assembly: simple design makes assembly very easy, all hardware and detailed instruction are provided. The hall table overall dimension:13.39\"D x 47.24\"W x 30.12\"H. This versatile console tables with storage is convenient to install without any difficulty and placed in any area you like. Worry about wobbles? Heavy metal leg frames and support metal Tubes strengthen the stability of this foyer table greatly and keep balance."}, {"name": "EWEAT R10 II 4K UHD Media Player HDD Home Cinema VS10 Image Quality Engine HDR10+ 2GB+32GB Android Media Box with DAC Audio", "product_information": {"Brand Name": "\u200eEweat", "Item Weight": "\u200e19.8 pounds", "Product Dimensions": "\u200e16.93 x 10.63 x 31.5 inches", "ASIN": "B09NMZS7HK", "Date First Available": "December 15, 2021"}, "brand": "Visit the eweat Store", "brand_url": "https://www.amazon.com/stores/EWEATisfoundedin2013professionalin4KhifimediaplayerandroidtvboxandDACdecoderRDleadingintheindustrywithhighquality/page/E63830FD-C144-4760-9EF2-6C2FB6DF7BB4?ref_=ast_bln", "full_description": "The best Android media player chipset RTD1619DR hexa-core 64bit high-performance processor Built-in VS10 engine could process Dolby Vision very well. All files could be mapped to similar color of Dolby Vision, image quality improves a lot. Support HDR10+ dynamic metadata processing. Dual HDMI audio and video separation. Support SATA/USB(3.5/2.5) connection (hard drives up to max 16TB). Support BD/BD3D/UHD full Blu-ray navigation and complex MPLS structure Blu-ray seamless branching playback. Movie Poster supports automatic posters scanning, custom classifications and movie trailers. Best in class audio performance: with ESS9038Q2M DACs for Audio, Coaxial /Optical /AES inputs, Dedicated Stereo Output,Headphone Amplifier. The hard drive shown in the picture is not in the sales list.", "pricing": "$599.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21D9XMdh+ML.jpg", "https://m.media-amazon.com/images/I/21Kg4wbTeqL.jpg", "https://m.media-amazon.com/images/I/31Qv8HWn7LL.jpg", "https://m.media-amazon.com/images/I/31edV5N5CML.jpg", "https://m.media-amazon.com/images/I/21XCXhxxiQL.jpg", "https://m.media-amazon.com/images/I/31AYkJabPkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Streaming Media Players", "average_rating": "", "small_description": ["\u3010CPU and Image Processing Engine\u3011EWEAT R10II is equipped with chipset RTD1619DR hexa-core 64bit high-performance processor, 2G DDR4+16G eMMC. DV VS10 image processing engine, output low latency high-quality DV (LLDV), get best image quality ", "\u3010Android 9.0 OS\u3011EWEAT R10II is Android media player. Support OTA Update and Multi-language. Android world of APP, games, movies, music are supported. ", "\u3010Hi-Fi Audio Performance\u3011EWEAT R10II is equipped with ESS9038Q2M DACs chip for audio output with Coaxial /Optical /AES inputs,support Dedicated Stereo Output,Headphone Amplifier.It can bring you the best audio quality and is an important part of your home theater. ", "\u3010HDD Media player\u3011EWEAT R10II is a dual HDD media player which support hard drives max 16TB "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2DZHT88QPFZVC", "seller_name": "Shenzhen Eweat Technology Co.,Ltd", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NMZS7HK", "category": "electronics", "query": "Streaming Media Players", "page": 39, "small_description_old": "About this item \u3010CPU and Image Processing Engine\u3011EWEAT R10II is equipped with chipset RTD1619DR hexa-core 64bit high-performance processor, 2G DDR4+16G eMMC. DV VS10 image processing engine, output low latency high-quality DV (LLDV), get best image quality \u3010Android 9.0 OS\u3011EWEAT R10II is Android media player. Support OTA Update and Multi-language. Android world of APP, games, movies, music are supported. \u3010Hi-Fi Audio Performance\u3011EWEAT R10II is equipped with ESS9038Q2M DACs chip for audio output with Coaxial /Optical /AES inputs,support Dedicated Stereo Output,Headphone Amplifier.It can bring you the best audio quality and is an important part of your home theater. \u3010HDD Media player\u3011EWEAT R10II is a dual HDD media player which support hard drives max 16TB \n \u203a See more product details"}, {"name": "SMWZFDD Vintage Industrial Wall Lights E27 Retro Wall Lamp Industrial Wall Light Loft Wall Sconce Lamps Bedside Wall Light for Bedroom Cafe Bar Aisle,Metal Lampshade, E27,Gold", "product_information": {"Manufacturer": "SMWZFDD", "ASIN": "B08GY1VWPH", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#2,357,423 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #20,268 in Wall Sconces"]}, "brand": "Brand: SMWZFDD", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SMWZFDD", "full_description": "Specifications:Type: Industrial Wall Lamp, Wall Lights for Living Room, Vintage Wall Light.Socket Specs : Medium base E27 (standard size). Requires wiring.Craft: Baking paint, polish and burnish.Material: Metal.Suitable Space: 8-15 square meter.Power Source: AC/DC, 110V-220V.Bulb Type: E27 (Bulb not included).Package Include:Package: 1* Wall Lamp (not includes bulbs).1 x Installing Accessory (Brass socket,cord,metal base cap and screws).installation steps:1. Open the box, bring out the accessories. Please be careful to prevent the lampshade from scratching.2. Please turn off the power before wiring, connect the fire wire, ground wire and zero line.3. Use the bolts and screws to install metal base cap.4. Screw the metal holder to fix the lamp.5. Put the lampshade on the lamp socket and lock with the ring.6. Install a suitable bulb into the lamp socket.7. Turn on the lamp to check if it is working.", "pricing": "$65.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31d7skR8b8L.jpg", "https://m.media-amazon.com/images/I/31DphISB7CL.jpg", "https://m.media-amazon.com/images/I/31vRvfyJ6BL.jpg", "https://m.media-amazon.com/images/I/61jjcit9yYL.jpg", "https://m.media-amazon.com/images/I/51l6V7SiUuL.jpg", "https://m.media-amazon.com/images/I/51Jp7kzf06L.jpg", "https://m.media-amazon.com/images/I/518Y0YjZc5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Wall Lamps & Sconces", "average_rating": 5, "small_description": ["Size: lampshade diameter: Overall arm length: 22 cm / 8.66 in; lampshade height:9cm / 3.54 in; Pole length:15cm/5.9in; product weight: 800 g. ", "Unique design- Designed with an adjustable arm, the Wall Light is practical and understated. Inspired by metal table lamps of the 1950s, the fitting offers a clever modern twist on the traditional. ", "high quality -Made of high quality iron, good painting,adjustable angle: 180\u00b0, safe and easy installation ,durable use. ", "Easy installation- Complete accessories, simple structure, so that you can easily finish the installation work. ", "Application- Suitable for dining room, living room, bedroom, kitchen , restaurant, galleries, bar, beer house, artist workshop, office, coffee shop, bar, club, reading corner, craft room, staircase and any other lighting occasions. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Gold", "price_string": "$65.99", "price": 65.99, "image": "https://m.media-amazon.com/images/I/31d7skR8b8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08GYCZM2H/ref=twister_B08GY4T5GD?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$65.99", "price": 65.99, "image": "https://m.media-amazon.com/images/I/41ajto0cgIL.jpg"}]}, "seller_id": "ABBQVRKVWBYCY", "seller_name": "JinSuoZi-US", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08GY1VWPH", "category": "garden", "query": "Sconces", "page": 335, "small_description_old": "About this item Size: lampshade diameter: Overall arm length: 22 cm / 8.66 in; lampshade height:9cm / 3.54 in; Pole length:15cm/5.9in; product weight: 800 g. Unique design- Designed with an adjustable arm, the Wall Light is practical and understated. Inspired by metal table lamps of the 1950s, the fitting offers a clever modern twist on the traditional. high quality -Made of high quality iron, good painting,adjustable angle: 180\u00b0, safe and easy installation ,durable use. Easy installation- Complete accessories, simple structure, so that you can easily finish the installation work. Application- Suitable for dining room, living room, bedroom, kitchen , restaurant, galleries, bar, beer house, artist workshop, office, coffee shop, bar, club, reading corner, craft room, staircase and any other lighting occasions."}, {"name": "Harry Potter Ravenclaw Painted Crest Compact Travel Purse Handbag Makeup Mirror", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 2.3 x 2.3 x 0.3 inches; 1.83 Ounces", "Manufacturer\n \u200f": "\u200e\n GRAPHICS & MORE", "ASIN\n \u200f": "\u200e\n B07VJ8R4HY", "Best Sellers Rank": "#521,070 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,351 in Compact & Travel Mirrors", "#1,351 in Compact & Travel Mirrors": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: GRAPHICS & MORE", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=GRAPHICS+%26+MORE", "full_description": "", "pricing": "$12.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51ukFAYsKmL.jpg", "https://m.media-amazon.com/images/I/51cuyDLfX2L.jpg", "https://m.media-amazon.com/images/I/41-cnajAx9L.jpg", "https://m.media-amazon.com/images/I/412uarPlSxS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Mirrors \u203a Compact & Travel Mirrors", "average_rating": 4, "small_description": ["This terrific compact mirror is super durable and is the perfect beauty accessory for your purse. ", "Durable and compact. The hinged lid is decorated with the resin-topped design as shown. ", "The compact is made of chrome-plated metal, and is only about 0.25\" (0.6cm) in depth. The mirrors are approximately 2.3\" (5.7cm) in diameter. ", "OFFICIALLY LICENSED: Harry Potter products sold by Graphics and More are guaranteed authentic, high quality and officially licensed by Warner Bros. Proudly printed in the USA. HARRY POTTER characters, names and related indicia are & WBEI. (s19) "], "total_reviews": 6, "total_answered_questions": "", "customization_options": "", "seller_id": "A27QWEX1MPR5NL", "seller_name": "Graphics & More", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07VJ8R4HY", "category": "beauty", "query": "Mirrors", "page": 160, "small_description_old": "About this item This terrific compact mirror is super durable and is the perfect beauty accessory for your purse. Durable and compact. The hinged lid is decorated with the resin-topped design as shown. The compact is made of chrome-plated metal, and is only about 0.25\" (0.6cm) in depth. The mirrors are approximately 2.3\" (5.7cm) in diameter. OFFICIALLY LICENSED: Harry Potter products sold by Graphics and More are guaranteed authentic, high quality and officially licensed by Warner Bros. Proudly printed in the USA. HARRY POTTER characters, names and related indicia are & WBEI. (s19) A Graphics and More product."}, {"name": "wall26 Canvas Print Wall Art Window View of Yellow Poppies & Field Nature Wilderness Photography Realism Rustic Scenic Colorful Relax/Calm Ultra for Living Room, Bedroom, Office - 16\"x24\"", "product_information": {"Manufacturer": "wall26", "ASIN": "B07FVHPK5X", "Item model number": "CVS-WV-1807A-TEAM-A06-WP.WHITE-16x24", "Customer Reviews": {"ratings_count": 498, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#63,952 in Home & Kitchen (See Top 100 in Home & Kitchen) #543 in Posters & Prints"]}, "brand": "Visit the wall26 Store", "brand_url": "https://www.amazon.com/stores/wall26/page/52B66CA7-93A9-4641-BFFE-492C213A5035?ref_=ast_bln", "full_description": "", "pricing": "$32.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51ICqcFOSnS.jpg", "https://m.media-amazon.com/images/I/51uYu42LM1S.jpg", "https://m.media-amazon.com/images/I/51uqxP52OqS.jpg", "https://m.media-amazon.com/images/I/51VT2pgEy7S.jpg", "https://m.media-amazon.com/images/I/41lesp8Z2pS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": 4.5, "small_description": ["High quality printed artwork stretched to fit on durable and shrink-resistant canvas. ", "Great gift idea for friends and family for holidays or other special occasions. ", "1.5\" stretcher bars to give artwork a gallery-quality profile. ", "Hanging accessory toolkit included with all artwork. ", "Note: Due to monitor display issues, actual colors may slightly differ from pictures. "], "total_reviews": 498, "total_answered_questions": "", "model": "CVS-WV-1807A-TEAM-A06-WP.WHITE-16x24", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07FVSZZ56/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "12\" x 18\"", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "16\" x 24\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVZXGKH/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "24\" x 36\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVNNLT1/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "32\" x 48\"", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07FVS4PH4/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 01", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51akZwyJEWS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVY9D9G/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 02", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WoKicAeLS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FWMDHQ8/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 03", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Qq3ToUVKS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVN5BGD/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 04", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51YkugmhQpS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVNHCYP/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 05", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WBHAHqxCS.jpg"}, {"is_selected": true, "url": null, "value": "Artwork - 06", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ICqcFOSnS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVS38MH/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 07", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41JxWKWQWHS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVRPCGV/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 08", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51q8epIbOBS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVQM7BQ/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 09", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51bqxEQdcfS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVQSQN1/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 10", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51-iCVe7O7S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVZXGL1/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 11", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51XRVWBu7NS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FW2FNLJ/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 12", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WUlNKpItS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVRH5YH/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 13", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51EtBgmlGtS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVRW2FW/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 14", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51YjMhNHzXS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVM6CXD/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 15", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51rjwQX7yES.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVR2CXX/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 16", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51kZHcjAP9S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVQ47R9/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 17", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ySEZg5p4S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVT49PK/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 18", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51bOGeY7r+S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FW1C2PG/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 19", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/513JYnX0N4S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVMFZNY/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 20", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/5198e2ieuhS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVWKL8W/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 21", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Ejq0d5ofS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVN2V47/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 22", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51I9kgEECaS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVQQ1K8/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 23", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UICCwPEdS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVVBR3T/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 24", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51w30Ic1mfS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVQLMM5/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 25", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/5159ZRbZUyS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVT7FD7/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 26", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51P32fgt2MS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVW8KG8/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 27", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51rO6hNw8RS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVQMF9M/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 28", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51PMHPIgD+S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVR4RY5/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 29", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51kkhKeSmsS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVW9VL8/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 30", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51XI9r7IKQS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVJN63M/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 31", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LRKQJW59S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVRK9H9/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 32", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Hm03M1iBS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FWCYTYB/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 33", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51RjIODUQKS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVPT7BG/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 34", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41bPTCOgjvS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVW6N52/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 35", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51scP9X58QS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVPL52M/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 36", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51EOpnz0XuS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVQXXMQ/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 37", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51QTGBlrktS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FWLY93Q/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 38", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51zeOuS8XNS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVWKL8C/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 39", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517p8YONoBS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVRW7QF/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 40", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51SGPKErlFS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVQ3DR8/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 41", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51jGpxJlZqS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVMZQTT/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 42", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GkYRVcwQS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVJCF5R/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 43", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51cxTCb+ZPS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FVVQJN6/ref=twister_B07FVLM1FZ?_encoding=UTF8&psc=1", "value": "Artwork - 44", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51QKpbqC8uS.jpg"}]}, "seller_id": "A1ZGY3RE5LH1AU", "seller_name": "wall26", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07FVHPK5X", "category": "garden", "query": "Window Coverings", "page": 290, "small_description_old": "About this item High quality printed artwork stretched to fit on durable and shrink-resistant canvas. Great gift idea for friends and family for holidays or other special occasions. 1.5\" stretcher bars to give artwork a gallery-quality profile. Hanging accessory toolkit included with all artwork. Note: Due to monitor display issues, actual colors may slightly differ from pictures."}, {"name": "RMT-AA231U Replacement Remote Control Applicable for Sony 7.2ch Home Theater AV Receiver STR-DH770 STRDH770", "product_information": {"Product Dimensions": "4.6 x 2 x 0.5 inches", "Item Weight": "3.2 ounces", "ASIN": "B08R8K8H6S", "Batteries": "2 AAA batteries required.", "Customer Reviews": {"ratings_count": 49, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#3,146 in Remote Controls (Electronics)"], "Date First Available": "December 24, 2020", "Manufacturer": "ZdalaMit Factory", "Country of Origin": "China"}, "brand": "Brand: ZdalaMit", "brand_url": "https://www.amazon.com/ZdalaMit/b/ref=bl_dp_s_web_16336912011?ie=UTF8&node=16336912011&field-lbr_brands_browse-bin=ZdalaMit", "full_description": "New RMT-AA231U Replacement Remote Control Applicable for Sony 7.2ch Home Theater AV Receiver No programming is required. Just install new batteries and it is ready for use. Compatible with below Sony AV Receiver models: STR-DH770 STRDH770 Power Supply: 2X 1.5V AAA Alkaline Battery Package Content: 1X Remote Control", "pricing": "$9.27", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31umpAGmOxL.jpg", "https://m.media-amazon.com/images/I/41dXjSdKsKL.jpg", "https://m.media-amazon.com/images/I/41jZIj6+kKL.jpg", "https://m.media-amazon.com/images/I/4184oOl7w6L.jpg", "https://m.media-amazon.com/images/I/417aq+XNHIL.jpg", "https://m.media-amazon.com/images/I/31umpAGmOxL.jpg", "https://m.media-amazon.com/images/I/41dXjSdKsKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": 4.5, "small_description": ["No programming or paring needed.Just install new alkaline batteries and it is ready for use. ", "Power Supply: 2X 1.5V AAA Alkaline battery. Battery and User Manual Not Included ", "Please feel free to contact us if you have any query, thanks! "], "total_reviews": 49, "total_answered_questions": "", "customization_options": "", "seller_id": "AYP6YGJ19NWP6", "seller_name": "Delighted inc", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08R8K8H6S", "category": "electronics", "query": "Home Theater Systems", "page": 73, "small_description_old": "About this item\n \nNew RMT-AA231U Replacement Remote Control Applicable for Sony 7.2ch Home Theater AV Receiver STR-DH770 STRDH770 No programming or paring needed.Just install new alkaline batteries and it is ready for use. Power Supply: 2X 1.5V AAA Alkaline battery. Battery and User Manual Not Included Please feel free to contact us if you have any query, thanks!"}, {"name": "WeGuard 5ft AC Power Cord Cable Plug Replacement for Sony CDF-S350 CDFS350 CDP19 CDP27 CDP37 CDP47 CDP110 CDP190 CDP-310 CDP390 AM-FM CD Player Radio/Cassette-Recorder Series", "product_information": {"Item Weight": "3 ounces", "ASIN": "B0978LGNMN", "Date First Available": "June 15, 2021", "Manufacturer": "WeGuard"}, "brand": "Visit the WeGuard Store", "brand_url": "https://www.amazon.com/stores/WeGuard/page/4DD58BB8-351B-4A64-95D3-178B8AAD671C?ref_=ast_bln", "full_description": "WeGuard 5ft AC Power Cord Cable Plug Replacement for SONY CDF-S350 CDFS350 CDP19 CDP27 CDP37 CDP47 CDP110 CDP190 CDP-310 CDP390 AM-FM CD Player Radio/Cassette-Recorder SeriesInput Voltage\uff1a 100-240VAC 50/60Hz Please confirm your device model beReplacement fore you buy our product. OVP\u3001OCP and SCP protection 30 days refund guarantee How to contact us\uff1f You can contact us directly from Your Account. Locate the order and click the \"Problem with this order?\" button. Then select the \"Contact Seller\" button to send us an e-mail message. We would be glad to solve any problem Replacement for you within 24 hours. Your support to our business and your patience on the matter will be really appreciated.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41fEXog1TdS.jpg", "https://m.media-amazon.com/images/I/31GznZfC6HS.jpg", "https://m.media-amazon.com/images/I/31EdOG3cPbS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Power Cables", "average_rating": "", "small_description": ["Input Voltage\uff1a 100-240VAC. ", "OVP\u3001OCP and SCP protection\uff1aOver Voltage output Protection\u3001Over Current output Protection and Short Circuit output Protection. ", "Note: Please pay attention to the positive and negative poles of the AC DC Adapter. ", "This Adapter power is made from better material. Giving you much more safety. ", "Package include: 1 x cable "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0978LGNMN", "category": "electronics", "query": "CD Players & Recorders", "page": 111, "small_description_old": "Input Voltage\uff1a 100-240VAC. OVP\u3001OCP and SCP protection\uff1aOver Voltage output Protection\u3001Over Current output Protection and Short Circuit output Protection. Note: Please pay attention to the positive and negative poles of the AC DC Adapter. This Adapter power is made from better material. Giving you much more safety. Package include: 1 x cable"}, {"name": "The cool twins just showed up T-Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n May 31, 2021", "Manufacturer\n \u200f": "\u200e\n Cool twins store", "ASIN\n \u200f": "\u200e\n B0969G2DH8", "Best Sellers Rank": "#4,518,635 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#344,653 in Boys' Novelty T-Shirts #350,914 in Girls' Novelty T-Shirts #591,537 in Boys' Fashion", "#344,653 in Boys' Novelty T-Shirts": "", "#350,914 in Girls' Novelty T-Shirts": "", "#591,537 in Boys' Fashion": ""}, "brand": "Brand: Cool twins store", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Cool+twins+store", "full_description": "This Cool twins design is for any Cool twins Lover. All your Cool twins friends will love this product. We have a wide range of different Cool twins designs for an incredible number of occasions. Click on our brand name above for more matching products! Get this Cool twins design now!", "pricing": "$17.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A13usaonutL.png", "https://m.media-amazon.com/images/I/417S+7cf-vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a T-Shirts", "average_rating": "", "small_description": ["The cool twins just showed up design as funny saying for twins ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B07HPWDCG8", "value": "Women", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B07537H5VB", "value": "Youth", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A13usaonutL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B07537HQXD", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1WWMAfTfHS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B07537NG8H", "value": "Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1EryObaEWS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B0752XK16C", "value": "Baby Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1kMlF-tngS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B075382QRP", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1tjGm9q9bS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B07537HNTD", "value": "Kelly Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1VMTBKtipS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B07537PB8C", "value": "Dark Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1-CfijdgoS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B07537TZ66", "value": "Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/C1ce8y0uOwS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B075386ZN1", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B139gQIcJCS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0969G2DH8?_encoding=UTF8&customId=B07537YDVK", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1el7IZypsS.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B0752XJYNL"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07535Y9T6"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07537P4T9"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07538GWNZ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07537PKB3"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B07535YF3H"}, {"is_selected": false, "is_available": false, "value": "2T", "asin": "B07HPZ61SY"}, {"is_selected": false, "is_available": false, "value": "3T", "asin": "B07HPXFRMS"}, {"is_selected": false, "is_available": false, "value": "4T", "asin": "B07537H5VB"}, {"is_selected": false, "is_available": false, "value": "X-Small", "asin": "B0752XJYQB"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0969G2DH8", "category": "fashion", "query": "Men's Dress Shirts", "page": 168, "small_description_old": "Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester Imported Machine Wash The cool twins just showed up design as funny saying for twins Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "Lurrose 6pcs Girls Hair Bow Ribbon Barrettes Hair Bow Ribbon Clip Wig Hair Bow Clips with Alligator Clip and Hair Extensions Hair Accessory for Toddler Girls Children", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 14.17 x 2.95 x 0.59 inches; 3 Ounces", "Item model number\n \u200f": "\u200e\n 6H308IL3909BGFDFKCMKLNPNK", "Date First Available\n \u200f": "\u200e\n September 13, 2021", "Manufacturer\n \u200f": "\u200e\n Lurrose", "ASIN\n \u200f": "\u200e\n B09G2F3HQ2", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Visit the Lurrose Store", "brand_url": "https://www.amazon.com/stores/Lurrose/page/4CD32519-0F99-4F89-9BB9-7EFBF13048A8?ref_=ast_bln", "full_description": "Description want to have a new hairstyle? If so, our hairpiece hair clip is carefully prepared for you. and comfortable for wearing. Suitable for women and girls use. Good elasticity makes it super stretchable and not easy to deform. Features- Material: Fiber- Color: Assorted Color.- Size: 36X7. 5X1. 5CM. 50cm/ 14. 15X2. 95X0. 59inch- The clip is invisible in the wig, so you can hide it to get a feeling.- The fiber part is bright, hard to fade or knot, and the ribbon part is and comfortable.- Sit on your head gently wedged on with a barrette, extremely comfortable in comparison to other.- Hair coloring, maybe you will not get the color you want at last, or you need time and money at.- Great for all colors of hair and all ages of ladies, a wonderful gift for your mom, daughter. Package Including 6 x Hair Extensions Clips", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41GpqGQ5YTL.jpg", "https://m.media-amazon.com/images/I/31KFzNSbd6L.jpg", "https://m.media-amazon.com/images/I/41GgNaalC2L.jpg", "https://m.media-amazon.com/images/I/51mwUIVjGsL.jpg", "https://m.media-amazon.com/images/I/51X2tCbH2RL.jpg", "https://m.media-amazon.com/images/I/51OHfJyTlVL.jpg", "https://m.media-amazon.com/images/I/51nFafrMhaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Accessories \u203a Clips & Barrettes \u203a Clips", "average_rating": "", "small_description": ["Lovely bow design: each hair bow ribbon clip adopts a bow design, which color is consistent with the wigs color, you can use the hair clip to decorate your girl and get multiple hairstyles, which will make them cute and attractive in the crowds ", "Delicate workmanship: the wig hair bow clip is made of plastic, fiber and ribbon, the body plastic part is sturdy and durable, not easy to, the fiber part is bright, hard to fade or knot, and the ribbon part is soft and comfortable, the delicate item will serve you for multiple times ", "Easy to use: the alligator clip is invisible in the wig, so you can hide it to get a feeling, enough to meet your multiple needs, also you can cut it to get a proper length to fit your natural hair better ", "Wide applicable occasions: these hair clips barrettes can match various outfits and occasions, such as daily dress up, take photos,, family gathering, making girls look more beautiful and lovely, and wearing the large hair bows in public, park or school will an adorable statement; A variety of colors to match diverse outfits and hairstyles, proper for both casual wearing and party dressing ", "YOUR SATISFACTION IS OUR 1ST PRIORITY- Please be free to contact us if you have any questions, we will provide Top- Rated Customer Service "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A21CBG44KIFSH1", "seller_name": "WANGYULONG333", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09G2F3HQ2", "category": "beauty", "query": "Hair Extensions, Wigs & Accessories", "page": 95, "small_description_old": "About this item Lovely bow design: each hair bow ribbon clip adopts a bow design, which color is consistent with the wigs color, you can use the hair clip to decorate your girl and get multiple hairstyles, which will make them cute and attractive in the crowds Delicate workmanship: the wig hair bow clip is made of plastic, fiber and ribbon, the body plastic part is sturdy and durable, not easy to, the fiber part is bright, hard to fade or knot, and the ribbon part is soft and comfortable, the delicate item will serve you for multiple times Easy to use: the alligator clip is invisible in the wig, so you can hide it to get a feeling, enough to meet your multiple needs, also you can cut it to get a proper length to fit your natural hair better Wide applicable occasions: these hair clips barrettes can match various outfits and occasions, such as daily dress up, take photos,, family gathering, making girls look more beautiful and lovely, and wearing the large hair bows in public, park or school will an adorable statement; A variety of colors to match diverse outfits and hairstyles, proper for both casual wearing and party dressing YOUR SATISFACTION IS OUR 1ST PRIORITY- Please be free to contact us if you have any questions, we will provide Top- Rated Customer Service"}, {"name": "ETUDE HOUSE Dr. Mascara Fixer For Perfect Lash 01 (Natural Volume Up) | Long-Lasting Smudge-Proof Mascara Fixer with Care Effect | Korean Makeup", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 4.96 x 1.22 x 0.63 inches; 0.35 Ounces", "UPC\n \u200f": "\u200e\n 887222103869 887222289808", "Manufacturer\n \u200f": "\u200e\n Etude House", "ASIN\n \u200f": "\u200e\n B004RK7I2W", "Best Sellers Rank": "#7,186 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#87 in Mascara", "#87 in Mascara": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Etude House Store", "brand_url": "https://www.amazon.com/stores/ETUDEHOUSE/page/B23BAD3E-67A2-4DEE-AF2B-1D1D53137E4B?ref_=ast_bln", "full_description": "", "pricing": "$6.40", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/31K2nwppT8L.jpg", "https://m.media-amazon.com/images/I/51g0ElJQz4L.jpg", "https://m.media-amazon.com/images/I/31+L7BTwWLL.jpg", "https://m.media-amazon.com/images/I/41Asj8yge2L.jpg", "https://m.media-amazon.com/images/I/41+Wtfpt98L.jpg", "https://m.media-amazon.com/images/I/41MVWpM-FwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Eyes \u203a Mascara", "average_rating": 4.1, "small_description": ["CURLING FIX: This transparent fixing gel mascara offers perfect curl / volume / waterproof fix in any environment and climate ", "FIXER THAT STAYS PUT: Say \u201cno!\u201d to drooping or smudging and enjoy your lashes during the whole day ", "POWERFUL FIXER: Holds the curl of your lashes and creates a natural look ", "TREATMENT CARE: Infused with Black Food extracts to condition lashes ", "FIXER FIRST! Apply fixer at the whole length of lashes. Dry for 10-20 seconds and finish it off with mascara "], "total_reviews": 2410, "total_answered_questions": 28, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09DYH9DW3/ref=twister_B08L8WLNYT?_encoding=UTF8&psc=1", "value": "For Perfect Lash #01 (21AD)", "price_string": "$7.00", "price": 7, "image": "https://m.media-amazon.com/images/I/31UOE4LszfL.jpg"}, {"is_selected": true, "url": null, "value": "For Perfect Lash #01 (Natural Volume up)", "price_string": "$6.40", "price": 6.4, "image": "https://m.media-amazon.com/images/I/31K2nwppT8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GZC2KAK/ref=twister_B08L8WLNYT?_encoding=UTF8&psc=1", "value": "For Super Long Lash #02 (Natural Extension)", "price_string": "$7.00", "price": 7, "image": "https://m.media-amazon.com/images/I/21gKI41YXvL.jpg"}]}, "seller_id": "A34TZ8AIJ8CZKO", "seller_name": "ETUDE HOUSE Official", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B004RK7I2W", "category": "beauty", "query": "Makeup Remover", "page": 144, "small_description_old": "About this item CURLING FIX: This transparent fixing gel mascara offers perfect curl / volume / waterproof fix in any environment and climate FIXER THAT STAYS PUT: Say \u201cno!\u201d to drooping or smudging and enjoy your lashes during the whole day POWERFUL FIXER: Holds the curl of your lashes and creates a natural look TREATMENT CARE: Infused with Black Food extracts to condition lashes FIXER FIRST! Apply fixer at the whole length of lashes. Dry for 10-20 seconds and finish it off with mascara"}, {"name": "Women High Waist Tummy Control Fitness Yoga Pants Mesh Patchwork Leggings Sexy Lace Stitching Tights", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n March 11, 2020", "ASIN\n \u200f": "\u200e\n B085S5PJW3", "Best Sellers Rank": "#3,255,870 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#78,143 in Women's Activewear", "#78,143 in Women's Activewear": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: RNUYKE-Pants", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=RNUYKE-Pants", "full_description": "", "pricing": "$0.01$2.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/418KYXomJ6L.jpg", "https://m.media-amazon.com/images/I/41rMOs4BS4L.jpg", "https://m.media-amazon.com/images/I/41hHdd1QVOL.jpg", "https://m.media-amazon.com/images/I/41lb4Mn49sL.jpg", "https://m.media-amazon.com/images/I/41Bn-TpqYqL.jpg", "https://m.media-amazon.com/images/I/41sEhgfvOHL.jpg", "https://m.media-amazon.com/images/I/31Dxv0GBGwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.4, "small_description": ["Machine Wash ", "\ud83d\udc96 Welcome to the RNUYKE store - Our size is Asian size, which is smaller than the US size\uff0c please check the size table on the product description page carefully before buying this product.If you need other styles, look for RNUYKE. ", "\u2728 FEATURES - Classic design; Good quality fabric ;Lightweight & stretchy;Soft & breathable; Fabric is designed to contour perfectly to your body, giving you a streamlined look.Package include: 1\u00d7 Pant ", "\u2728 OCCASION - Perfect for Yoga, Exercise, Fitness, any type of Workout, or Everyday Use. Also suitable for Casual Daily Wear, Party, Going Out, Night Out, Street, Travel.A must-have pants in Women's wardrobe. ", "\u2728 Wash & Care-Hand Wash and Machine washable,better wash seperately ,hang dry,do not bleach.RNUYKE Yoga Pants combine fashion, function and performance. Easy to wear and can show your charming charm. ", "\u2728 Always Put Customer Satisfaction First-We offer flexible returns and free exchanges. If you have any questions. Please contact us via email and we will assist you within 24 hours. "], "total_reviews": 6, "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B085S5PJW3"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B085RZV112"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B085S5H4DD"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B085S5P7WB"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B085S5P7WB", "category": "fashion", "query": "Women's Pants", "page": 134, "small_description_old": "Machine Wash \ud83d\udc96 Welcome to the RNUYKE store - Our size is Asian size, which is smaller than the US size\uff0c please check the size table on the product description page carefully before buying this product.If you need other styles, look for RNUYKE. \u2728 FEATURES - Classic design; Good quality fabric ;Lightweight & stretchy;Soft & breathable; Fabric is designed to contour perfectly to your body, giving you a streamlined look.Package include: 1\u00d7 Pant \u2728 OCCASION - Perfect for Yoga, Exercise, Fitness, any type of Workout, or Everyday Use. Also suitable for Casual Daily Wear, Party, Going Out, Night Out, Street, Travel.A must-have pants in Women's wardrobe. \u2728 Wash & Care-Hand Wash and Machine washable,better wash seperately ,hang dry,do not bleach.RNUYKE Yoga Pants combine fashion, function and performance. Easy to wear and can show your charming charm. \u2728 Always Put Customer Satisfaction First-We offer flexible returns and free exchanges. If you have any questions. Please contact us via email and we will assist you within 24 hours."}, {"name": "YEK Modern Style Italian Elm Matte Nightstand with Self Closing, Ball Bearing Drawer Glides Nordic Minimalism Bedside Table White (Color : White)", "product_information": {"Item Weight": "\u200e22 pounds", "ASIN": "B09DVQ3646", "Date First Available": "August 28, 2021"}, "brand": "Brand: YEK", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=YEK", "full_description": "", "pricing": "$474.75", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41GFRbRKkoL.jpg", "https://m.media-amazon.com/images/I/31B3DmfpE9L.jpg", "https://m.media-amazon.com/images/I/41EtQsmKeML.jpg", "https://m.media-amazon.com/images/I/51FRhxLI6WL.jpg", "https://m.media-amazon.com/images/I/51MpDrbL5ZL.jpg", "https://m.media-amazon.com/images/I/41T5sg1r1hL.jpg", "https://m.media-amazon.com/images/I/414P8Z88xiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Nightstands", "average_rating": "", "small_description": ["\u3010Multifunctional\u3011featuring a compact and flexible design; ideal for working with your laptop or tablets beside beds or sofas.Also use this table as a nightstand, a laptop computer table, study desk, reading, writing, drawing or anything else that you could possibly think of. ", "\u3010Smooth Drawer Slides\u3011The side table has a storage shelf and a drawer to provide more storage space. The drawer slides is made of special material, moving smoothly ", "\u3010Easy to install\u3011The main parts of our bedside table just 4 boards and legs, you can install it easily according to the instruction ", "\u3010Storage\u3011Modern nightstand for bedroom or living room use. This double-decker side table equipped with a shelf cabinet above and a drawer below, it's very suitable for side table, nightstand and sofa table ", "\u3010Material\u3011The material of our nightstands is high quality medium density composite wood and solid legs, eco-friendly and steady "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09DVPTHFG/ref=twister_B09DVRHCK9?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "$474.75", "price": 474.75, "image": "https://m.media-amazon.com/images/I/419XsJO3BSL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$474.75", "price": 474.75, "image": "https://m.media-amazon.com/images/I/41GFRbRKkoL.jpg"}]}, "seller_id": "A2Y35068AC3HED", "seller_name": "ZHAOYANGSHENG", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09DVQ3646", "category": "garden", "query": "Nightstands", "page": 399, "small_description_old": "About this item \u3010Multifunctional\u3011featuring a compact and flexible design; ideal for working with your laptop or tablets beside beds or sofas.Also use this table as a nightstand, a laptop computer table, study desk, reading, writing, drawing or anything else that you could possibly think of. \u3010Smooth Drawer Slides\u3011The side table has a storage shelf and a drawer to provide more storage space. The drawer slides is made of special material, moving smoothly \u3010Easy to install\u3011The main parts of our bedside table just 4 boards and legs, you can install it easily according to the instruction \u3010Storage\u3011Modern nightstand for bedroom or living room use. This double-decker side table equipped with a shelf cabinet above and a drawer below, it's very suitable for side table, nightstand and sofa table \u3010Material\u3011The material of our nightstands is high quality medium density composite wood and solid legs, eco-friendly and steady \n \u203a See more product details"}, {"name": "Kitsch Satin Sleep Set, Softer Than Silk Pillowcase and Eyemask Set - Includes 1 Satin Pillowcase, 1 Satin Eye Mask, and 1 Satin Volume Scrunchie, Pillow case for Hair (Leopard)", "product_information": {"Product Dimensions": "4 x 1 x 1.57 inches", "Item Weight": "3 ounces", "Manufacturer": "Kitsch", "ASIN": "B07XCY8DND", "Customer Reviews": {"ratings_count": 721, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#34,019 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #120 in Eye Masks"], "Number of Pieces": "1", "Batteries Required?": "No"}, "brand": "Visit the Kitsch Store", "brand_url": "https://www.amazon.com/stores/Kitsch/page/5E40BB7F-46F2-49A6-8A71-9FAF24BC1A85?ref_=ast_bln", "full_description": "", "pricing": "$36.00", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41ab5DMNQgL.jpg", "https://m.media-amazon.com/images/I/41S8XCZyZaL.jpg", "https://m.media-amazon.com/images/I/51NKN3CVljL.jpg", "https://m.media-amazon.com/images/I/41tpc3cvMrS.jpg", "https://m.media-amazon.com/images/I/41iMxblgmDS.jpg", "https://m.media-amazon.com/images/I/417wVieSdWS.jpg", "https://m.media-amazon.com/images/I/61us4JZGGJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Shower Caps", "average_rating": 4.7, "small_description": ["BEAUTY SLEEP SET. The Kitsch Satin Sleep Set includes one standard size satin pillowcase, along with a matching satin eye mask and a volume scrunchie! These are softer than any silk pillow case set. ", "FRIZZ-FREE HAIR. Unlike cotton, satin pillowcases lessen friction between your hair so you can wake up with beautiful hair without the frizz! They are softer than silk pillowcases. These satin cases are softer than a silk pillowcase for Hair and Skin ", "REDUCE BREAKAGE. Using a satin pillowcase and scrunchie for your hair keeps your hair\u2019s natural oils. Softer than silk these satin pillowcases for your hair are perfect, it will keep your hair healthy and reduce dryness, breakage, and tangles. ", "PROMOTES YOUTHFUL SKIN. Satin does not absorb moisture unlike cotton, so your skin stays hydrated while you sleep for a more youthful complexion. It reduces friction that can cause lines and wrinkles on your skin. ", "PROTECT THE LASHES. Softer than silk, our satin pillowcase and eye mask can help fragile eyelashes and eyebrows stay intact because the silky material glides over your skin instead of rubbing against it. "], "total_reviews": 721, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08PDWVGP8/ref=twister_B099FGSYRK?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$36.00", "price": 36, "image": "https://m.media-amazon.com/images/I/31JcKjGjKoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XCY9QXC/ref=twister_B099FGSYRK?_encoding=UTF8&psc=1", "value": "Blush", "price_string": "$35.99", "price": 35.99, "image": "https://m.media-amazon.com/images/I/31uSsZylYLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PDXX4J3/ref=twister_B099FGSYRK?_encoding=UTF8&psc=1", "value": "Ivory", "price_string": "$36.00", "price": 36, "image": "https://m.media-amazon.com/images/I/31GlXLcEEQL.jpg"}, {"is_selected": true, "url": null, "value": "Leopard", "price_string": "$36.00", "price": 36, "image": "https://m.media-amazon.com/images/I/41ab5DMNQgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PDZRFG2/ref=twister_B099FGSYRK?_encoding=UTF8&psc=1", "value": "Silver", "price_string": "$36.00", "price": 36, "image": "https://m.media-amazon.com/images/I/31F+7OsuAKL.jpg"}]}, "seller_id": "A1PTC48M850VRX", "seller_name": "Kitsch LLC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07XCY8DND", "category": "beauty", "query": "Hair Masks", "page": 42, "small_description_old": "About this item BEAUTY SLEEP SET. The Kitsch Satin Sleep Set includes one standard size satin pillowcase, along with a matching satin eye mask and a volume scrunchie! These are softer than any silk pillow case set. FRIZZ-FREE HAIR. Unlike cotton, satin pillowcases lessen friction between your hair so you can wake up with beautiful hair without the frizz! They are softer than silk pillowcases. These satin cases are softer than a silk pillowcase for Hair and Skin REDUCE BREAKAGE. Using a satin pillowcase and scrunchie for your hair keeps your hair\u2019s natural oils. Softer than silk these satin pillowcases for your hair are perfect, it will keep your hair healthy and reduce dryness, breakage, and tangles. PROMOTES YOUTHFUL SKIN. Satin does not absorb moisture unlike cotton, so your skin stays hydrated while you sleep for a more youthful complexion. It reduces friction that can cause lines and wrinkles on your skin. PROTECT THE LASHES. Softer than silk, our satin pillowcase and eye mask can help fragile eyelashes and eyebrows stay intact because the silky material glides over your skin instead of rubbing against it."}, {"name": "Women Cold Shoulder Tops, Summer Butterfly Print Shirts Fashion Casual Short Sleeve Plus-Size Tunic Top Tee and Blouse", "product_information": {"Item Weight\n \u200f": "\u200e\n 14.46 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n May 12, 2021", "Manufacturer\n \u200f": "\u200e\n Clearance\uff0cOn Sale", "ASIN\n \u200f": "\u200e\n B094PWJFJH", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: YUNIAO", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=YUNIAO", "full_description": "------------------------------------------------------------Welcome To YUNIAO Store(\u25d5\u1d17\u25d5\u273f)------------------------------------------------------------Wish you a pleasant shopping experience in YUNIAOYUNIAO is committed to providing high-quality women's clothing and accessories.Whether it is before or after the purchase, if you have any questions, please feel free to contact the YUNIAO service team, we will solve it for you.Size Chart(1Inch=2.54cm):Please Allow 0.5-2Inch Differs Due to Manual Measurement, Thanks!Size Question:Q\uff1aI normally wear size Medium and i've a little worry about the szie, which size should i order?A\uff1awe are Asian Size,run smaller than US size,so i will suggest you choose one size or two size larger than you usual size , it will be more relax and comfortable.Size: S US: 4 UK: 8 EU: 34 Length: 72cm/28.35'' Bust: 90cm/35.43'' Size: M US: 6 UK: 10 EU: 36 Length: 74cm/29.13'' Bust: 94cm/37.01'' Size: L US: 8 UK: 12 EU: 38 Length: 76cm/29.92'' Bust: 98cm/38.58'' Size: XL US: 10 UK: 14 EU: 40 Length: 78cm/30.71'' Bust: 102cm/40.16'' Size: XXL US: 12 UK: 16 EU: 42 Length: 80cm/31.50'' Bust: 106cm/41.73'' Size: XXXL US: 14 UK: 18 EU: 44 Length: 82cm/32.28'' Bust: 110cm/43.31'' Size: XXXXL US: 16 UK: 20 EU: 46 Length: 84cm/33.07'' Bust: 114cm/44.88'' Size: XXXXXL US: 18 UK: 22 EU: 48 Length: 86cm/33.86'' Bust: 118cm/46.46''", "pricing": "$9.49$14.98", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41ajpGsttyS.jpg", "https://m.media-amazon.com/images/I/41ajpGsttyS.jpg", "https://m.media-amazon.com/images/I/51k9ffOvnnS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Tops, Tees & Blouses \u203a Tunics", "average_rating": 3.1, "small_description": ["Prime Wardrobe closure ", "xxl cute womens tops long sleeve yoga womens tops long sleeve dressy material womens tops long sleeve tunic sweatshirt womens tops long sleeve tunic green cute womens tops casual work fitted cropped tank tops for women womens tops long sleeve tunic with side tie womens tops long sleeve casual v neck sexy womens tops and blouses long sleeve cute womens tops going out plus size womens tops short sleeve loose fit v neck womens tops short sleeve blouse black plus size dresses for wedding guest women ", "shirts for women racer back retro shirts for women green pajama shirts for women plain black t shirts women long sleeve button up shirts for men athletic shirts women womens long sleeve shirts oversized button up shirts for women skull shirts for women womens a shirts women t shirts xlt shirts for women long workout shirts for women polo shirts for boys boys shirts size 8 womens short sleeve shirts hipster shirts for women couples tshirts for him and her womens shirts casual cowgirl shirts for ", "3xlt shirts for men big and tall polo t shirts for women beach shirts for women womens big and tall shirts womens dress shirts long sleeve white undershirts women funny shirts for women womens tshirts graphic womens work shirts womens shirts open back shirts for women baseball shirts for women long sleeve work shirts for women girls shirts size 10-12 long sleeve tops for women long sleeve tops for women cotton long sleeve tops for women formal long sleeve tops for women loose long sleeve tops ", "tops and blouses for fall womens long sleeve tops and blouses for work womens long sleeve tops and blouses plus size womens long sleeve tops and sweaters womens long sleeve tops athletic womens long sleeve tops casual womens long sleeve tops casual cotton womens long sleeve tops casual dress polo shirts for men slim fit short sleeve polo shirts for men slim fit pack polo shirts for men slim fit long sleeve womens shirts for leggings long sleeve womens shirts for leggings short sleeve womens ", "shirts for women lace black shirts for women turtleneck blue shirts for women 5xl off the shoulder shirts for women m strapless shirts for women white short sleeve shirts for women gold off the shoulder shirts for women exercise fashion shirts for women halter silver shirts for women hiking purple shirts for women xxl pink valentine shirts for women valentine shirts for women long sleeve cute valentine shirts for women valentine shirts for women v neck valentine shirts for women funny valentine "], "total_reviews": 14, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B094PTZ7DH"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B094Q7B3SS"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B094Q74YR2"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B094PQV3JS"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B094PPV5B4"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B094PWK2JN"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B094Q87YSF"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B094Q3FCC8"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B094PWJFJH/ref=twister_B094PR1KZS", "value": "A01#black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qqJpnvQbS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B094PVDZ53/ref=twister_B094PR1KZS", "value": "A01#blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Y0p4gAvIS.jpg"}, {"is_selected": true, "url": null, "value": "A01#pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ajpGsttyS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B094QGK3RJ/ref=twister_B094PR1KZS", "value": "A01#red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MT-4UIriS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B094QDMM6Z/ref=twister_B094PR1KZS", "value": "A01#sky Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wAJRjSeDS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B094PVCVCL/ref=twister_B094PR1KZS", "value": "A01#purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4163S-QsyeS.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B094Q7B3SS", "category": "fashion", "query": "Women's Tops, Tees & Blouses", "page": 25, "small_description_old": "Deals of The Day\uff7c\u3002uy 2 Save 8% Buy 5 Get 1 Free Made in The USA and 7-12 Days Delivery Dear Queen, please check our size chart, we suggest buy One size Up. Thank you Prime Wardrobe closure Return Policy: You may request for an replacement or refund within 30 days of receiving the order. xxl cute womens tops long sleeve yoga womens tops long sleeve dressy material womens tops long sleeve tunic sweatshirt womens tops long sleeve tunic green cute womens tops casual work fitted cropped tank tops for women womens tops long sleeve tunic with side tie womens tops long sleeve casual v neck sexy womens tops and blouses long sleeve cute womens tops going out plus size womens tops short sleeve loose fit v neck womens tops short sleeve blouse black plus size dresses for wedding guest women shirts for women racer back retro shirts for women green pajama shirts for women plain black t shirts women long sleeve button up shirts for men athletic shirts women womens long sleeve shirts oversized button up shirts for women skull shirts for women womens a shirts women t shirts xlt shirts for women long workout shirts for women polo shirts for boys boys shirts size 8 womens short sleeve shirts hipster shirts for women couples tshirts for him and her womens shirts casual cowgirl shirts for \n 3xlt shirts for men big and tall polo t shirts for women beach shirts for women womens big and tall shirts womens dress shirts long sleeve white undershirts women funny shirts for women womens tshirts graphic womens work shirts womens shirts open back shirts for women baseball shirts for women long sleeve work shirts for women girls shirts size 10-12 long sleeve tops for women long sleeve tops for women cotton long sleeve tops for women formal long sleeve tops for women loose long sleeve topstops and blouses for fall womens long sleeve tops and blouses for work womens long sleeve tops and blouses plus size womens long sleeve tops and sweaters womens long sleeve tops athletic womens long sleeve tops casual womens long sleeve tops casual cotton womens long sleeve tops casual dress polo shirts for men slim fit short sleeve polo shirts for men slim fit pack polo shirts for men slim fit long sleeve womens shirts for leggings long sleeve womens shirts for leggings short sleeve womensshirts for women lace black shirts for women turtleneck blue shirts for women 5xl off the shoulder shirts for women m strapless shirts for women white short sleeve shirts for women gold off the shoulder shirts for women exercise fashion shirts for women halter silver shirts for women hiking purple shirts for women xxl pink valentine shirts for women valentine shirts for women long sleeve cute valentine shirts for women valentine shirts for women v neck valentine shirts for women funny valentineShow more"}, {"name": "NiceTQ Replacement US 2Prong AC Power Cord Cable For Memorex MP3142 MP3221 MP3851 3848 8805 Portable CD Boombox Player", "product_information": {"Package Dimensions": "7.36 x 1.93 x 1.57 inches", "Item Weight": "3.17 ounces", "Manufacturer": "NiceTQ", "ASIN": "B074DVCKHB", "Customer Reviews": {"ratings_count": 94, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#2,965 in Audio & Video Power Cables"], "Is Discontinued By Manufacturer": "No", "Date First Available": "October 1, 2016"}, "brand": "Brand: NiceTQ", "brand_url": "https://www.amazon.com/NiceTQ/b/ref=bl_dp_s_web_10160341011?ie=UTF8&node=10160341011&field-lbr_brands_browse-bin=NiceTQ", "full_description": "Replacement US 2 Prong Power Charger Cable Cord Compatible with: Memorex MP3142 MP3221 MP3851 3848 8805 Portable CD Boombox Player Connect an AC adapter to an AC outlet, OR plug directly into a computer or other device with a built-in AC adapter Work with most brands PC like Toshiba, IBM, Sony, DELL, Compaq, HP, NEC, Acer, AST, etc Fit most 2 ports power adapters Length: 4FT Accessory Only, device not included Note: Suitable for US standard jack ONLY Package Included: 1 unit US 2 Prong Power Charger Cable Cord", "pricing": "$6.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41sWE36J6oL.jpg", "https://m.media-amazon.com/images/I/412jQTSLyYL.jpg", "https://m.media-amazon.com/images/I/412g3A53Q2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Power Cables", "average_rating": 4.4, "small_description": ["Length: 4FT ", "Fit most 2 ports power adapters ", "Note: Suitable for US standard jack ONLY ", "Connect an AC adapter to an AC outlet, OR plug directly into a computer or other device with a built-in AC adapter "], "total_reviews": 94, "total_answered_questions": 6, "customization_options": "", "seller_id": "A2XRGU92RIKP09", "seller_name": "Nice Plaza", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B074DVCKHB", "category": "electronics", "query": "Boomboxes & Portable Radios", "page": 12, "small_description_old": "Length: 4FT Fit most 2 ports power adapters Compatible with: Memorex MP3142 MP3221 MP3851 3848 8805 Portable CD Boombox Player Note: Suitable for US standard jack ONLY Connect an AC adapter to an AC outlet, OR plug directly into a computer or other device with a built-in AC adapter"}, {"name": "Fjackets Real Lambskin Sherpa Jacket - Mens Leather Jacket", "product_information": {"Department\n \u200f": "\u200e\n Men", "Date First Available\n \u200f": "\u200e\n December 29, 2021", "ASIN\n \u200f": "\u200e\n B09PDY8RNW", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the fjackets Store", "brand_url": "https://www.amazon.com/stores/FJACKETS/page/945EDAF4-AFC8-4696-B18C-BE3F106B9450?ref_=ast_bln", "full_description": "", "pricing": "$187.00$219.00", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41BFuOLZqNS.jpg", "https://m.media-amazon.com/images/I/41BUq1-SDuS.jpg", "https://m.media-amazon.com/images/I/414dWLV9lbS.jpg", "https://m.media-amazon.com/images/I/31ncTT-YmrS.jpg", "https://m.media-amazon.com/images/I/4174pPUU9TS.jpg", "https://m.media-amazon.com/images/I/51jFgjG0dtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Jackets & Coats \u203a Leather & Faux Leather", "average_rating": 4.7, "small_description": ["Button closure ", "\u25ba THE REAL LAMBSKIN LEATHER \u2013 This stylish \u00be length leather coat is the perfect transitional piece that will take you from season to season. The incredibly soft 100% real lambskin leather features a luxurious vintage aesthetic. ", "\u25ba PERFECT FOR INDOOR AND OUTDOOR \u2013 This high-quality Car Coat will give you a classic look for your drive, it comes with zip closure, viscose lining, upright collar and two outer zip pockets. This coat works well in office settings, or equally for outdoor walks. ", "\u25ba CONVENIENT POCKETS \u2013 The two large inside pockets offer convenient storage and front button fasteners enhance your individuality. The pockets are roomy enough for keeping daily essentials or small things like mobile phone or keys. ", "\u25ba FAST SHIPPING \u2013 We offer expedited US Shipping and standard worldwide shipping. Our items are shipped in secure packaging designed especially for leather jackets to avoid any damage during transit. ", "\u25ba FOR ALL BODY TYPES \u2013 The brown leather coat is the perfect style for nearly all body types. Whether worn with a sweater or a casual button-up on your way to work, the coat's streamlined design will add some panache on your commute. "], "total_reviews": 4, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PDY8RNW/ref=twister_B098XQV8N4", "value": "Bristol Brown Leather Jacket", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xcSuXmh2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098XTJZN5/ref=twister_B098XQV8N4", "value": "Delta Shearling Black Leather Jacket", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31rIX8zDsoS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PDZZH63/ref=twister_B098XQV8N4", "value": "Mitchel Shearling Black Leather Jacket Men", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GRRLa-GML.jpg"}, {"is_selected": true, "url": null, "value": "Russo Shearling Black Leather Coat", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41BFuOLZqNS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PF1BRY3/ref=twister_B098XQV8N4", "value": "Thinsulate Black Leather Jacket", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MWXPPMgnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PF27FHD/ref=twister_B098XQV8N4", "value": "Thinsulate Brown Leather Jacket", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/419cVivGRAL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B098XQV3TJ"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B098XPQC3M"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B098XQVKMZ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B098XTJKG9"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B098XT346Y"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B098XRJ28D"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B098XT98Y8"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B098XT346Y", "category": "fashion", "query": "Men's Jackets & Coats", "page": 52, "small_description_old": "100% REAL LAMBSKIN LEATHER Button closure \u25ba THE REAL LAMBSKIN LEATHER \u2013 This stylish \u00be length leather coat is the perfect transitional piece that will take you from season to season. The incredibly soft 100% real lambskin leather features a luxurious vintage aesthetic. \u25ba PERFECT FOR INDOOR AND OUTDOOR \u2013 This high-quality Car Coat will give you a classic look for your drive, it comes with zip closure, viscose lining, upright collar and two outer zip pockets. This coat works well in office settings, or equally for outdoor walks. \u25ba CONVENIENT POCKETS \u2013 The two large inside pockets offer convenient storage and front button fasteners enhance your individuality. The pockets are roomy enough for keeping daily essentials or small things like mobile phone or keys. \u25ba FAST SHIPPING \u2013 We offer expedited US Shipping and standard worldwide shipping. Our items are shipped in secure packaging designed especially for leather jackets to avoid any damage during transit. \u25ba FOR ALL BODY TYPES \u2013 The brown leather coat is the perfect style for nearly all body types. Whether worn with a sweater or a casual button-up on your way to work, the coat's streamlined design will add some panache on your commute."}, {"name": "SunnyPoint Classic Side Table, Mobile Snack Table for Coffee Laptop Tablet, Slides Next to Sofa Couch, Wood Look Accent Furniture with Metal Frame (Black)", "product_information": {"Product Dimensions": "19.8 x 13.8 x 23.8 inches", "Item Weight": "11.03 pounds", "Manufacturer": "SunnyPoint", "ASIN": "B084ZPN17C", "Item model number": "ST001-B-US", "Customer Reviews": {"ratings_count": 147, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#332,154 in Home & Kitchen (See Top 100 in Home & Kitchen) #973 in End Tables"], "Date First Available": "February 20, 2020"}, "brand": "Brand: SunnyPoint", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SunnyPoint", "full_description": "", "pricing": "$46.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/313W7AziV5L.jpg", "https://m.media-amazon.com/images/I/41KqKCh-qjL.jpg", "https://m.media-amazon.com/images/I/51d5t0xNzgL.jpg", "https://m.media-amazon.com/images/I/61gaZIySnYL.jpg", "https://m.media-amazon.com/images/I/41WdMpaQLEL.jpg", "https://m.media-amazon.com/images/I/31og50bObjL.jpg", "https://m.media-amazon.com/images/I/41LHL0zSh+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a End Tables", "average_rating": 4.2, "small_description": ["ASSEMBLY REQUIRED; Tools Included; 10~15 Minutes Assembly Time. ", "Overall Size: 19.8 D x 13.8 W x 23.8 H Inch. Please See The Photo of Detail Dimension, Make Sure This SideTable Goes Well With Your Furniture. ", "Material: Sturdy Metal Frame With P2 TableTop Chipboard; Tabletop Is In 2 Pieces Structure. ", "Finishing: Matt-Black Powder Coating; Weight Capacity: Up to 50 lbs ", "Perfect To Use As Mobile Snack Table, Coffee Laptop Tablet, or Slides Next to Sofa Couch As a Side Table "], "total_reviews": 147, "total_answered_questions": "", "model": "ST001-B-US", "customization_options": {"Color": null}, "seller_id": "A11K1CWG7V50W", "seller_name": "SunnyPoint", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B084ZPN17C", "category": "garden", "query": "Coffee Tables", "page": 272, "small_description_old": "About this item\n \nASSEMBLY REQUIRED; Tools Included; 10~15 Minutes Assembly Time. Overall Size: 19.8 D x 13.8 W x 23.8 H Inch. Please See The Photo of Detail Dimension, Make Sure This SideTable Goes Well With Your Furniture. Material: Sturdy Metal Frame With P2 TableTop Chipboard; Tabletop Is In 2 Pieces Structure. Finishing: Matt-Black Powder Coating; Weight Capacity: Up to 50 lbs Perfect To Use As Mobile Snack Table, Coffee Laptop Tablet, or Slides Next to Sofa Couch As a Side Table"}, {"name": "Motorola Moto Edge 2021 Case, Moto Edge 5G UW Case with HD Screen Protectors, Androgate Military-Grade Metal Ring Kickstand 15ft Drop Tested Shockproof Cover Case, Purple", "product_information": {"Product Dimensions": "5.51 x 2.36 x 0.43 inches", "Item Weight": "2.39 ounces", "ASIN": "B09LC67HYC", "Item model number": "Moto Edge 2021 ZHZJ Case Purple", "Customer Reviews": {"ratings_count": 137, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#4,757 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #1,644 in Cell Phone Basic Cases"], "Is Discontinued By Manufacturer": "No", "Special Features": "Kickstand, Ring holder, Screen Protectors, Attaching to magnetic car mount", "Other display features": "Wireless", "Form Factor": "Case", "Colour": "Purple", "Included Components": "Kickstand", "Manufacturer": "E&M Tek", "Date First Available": "November 5, 2021"}, "brand": "Visit the Androgate Store", "brand_url": "https://www.amazon.com/stores/Androgate/page/2B096B86-7FD3-4380-B68D-6FC012780FB5?ref_=ast_bln", "full_description": "Androgate Super Ring Series Military Grade Phone Case for Motorola Moto Edge 2021/ Moto Edge 5G UW This is a dual layer designed case but it is extremely compact and sleek. The integrated metal ring which can be 360\u00b0 Rotatable works pefectly as a holer or a stand. What's more, the metal plate for holding the ring can attach easily to your magnetic car mount or holder when you drive. Enjoy your hands-free moments to watch a video or facetime with the Androgate Super Ring Series Case! Frequently Asked Questions: Question 1: Will it be bulky in hands since it is a dual layer case?Answer: No, it won't be bulky at all due to the compact design. And it adds minimum weight to your phone. Question 2: Does it support wireless charging?Answer: No, it does not allow for wiress charging. You have to remove the case before placing onto your wireless charger. Question 3: Does the case come with screen protectors? Answer: Yes, we make sure every package comes with 2PCs high quality HD film screen protectors. Question 4: Can the ring stand work both horizontally and vertically? Answer: Yes, it can. Horizontally, the mounting angle is about 70\u00b0 and it is perfect for nearly all people. Vertically, it can only mount at about 35\u00b0 above the level, which is fine for most people but others may find it a little bit low. It is a matter of options.RISK FREE GUARANTEEDWe are so confident with the quality of our products that all the Androgate phone cases are backed with a 100% money back guarantee and a 60-day warranty.", "pricing": "$9.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51EOq1fAvQL.jpg", "https://m.media-amazon.com/images/I/41xhf19F68L.jpg", "https://m.media-amazon.com/images/I/41ogF+MzPqL.jpg", "https://m.media-amazon.com/images/I/51o82flYcHL.jpg", "https://m.media-amazon.com/images/I/51WqzUXuXEL.jpg", "https://m.media-amazon.com/images/I/51PkL2Urg9L.jpg", "https://m.media-amazon.com/images/I/413yeOvJBwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Cases, Holsters & Sleeves \u203a Basic Cases", "average_rating": 4.5, "small_description": ["\u30101 Phone Case and 2 Screen Protectors\u3011Tailor-designed for Motorola Moto Edge 2021/ Moto Edge 5G UW ", "\u3010Strong Protection\u3011Combination of TPU and Polycarbonate with reinforced corners for military-grade protection from drops and bumps. Raised bezels provide extra protection to the screen and camera. ", "\u3010Precise Cutouts\u3011Easy access to buttons, speaker, charging port and all other funcioning ports of Motorola Edge 2021/ Moto Edge 5G UW ", "\u3010Metal Ring Holder and Stand\u3011The metal ring is a great plus under multiple scenarios when it works as a holder, bracket or kickstand. The built-in magnetic metal sheet allows for easy attach to your magnetic car mount holder ", "\u3010Sleek Compact Profile\u3011The phone case is made from selected lightweight non-slip material to ensure a slim and tough protection with enhanced grip. "], "total_reviews": 137, "total_answered_questions": 3, "model": "Moto Edge 2021 ZHZJ Case Purple", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09LCBZHRY/ref=twister_B09LCPCTW8?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$9.95", "price": 9.95, "image": "https://m.media-amazon.com/images/I/51VnWzk34iL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LCHCW8J/ref=twister_B09LCPCTW8?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$8.95", "price": 8.95, "image": "https://m.media-amazon.com/images/I/51yMDbAwNbL.jpg"}, {"is_selected": true, "url": null, "value": "Purple", "price_string": "$9.95", "price": 9.95, "image": "https://m.media-amazon.com/images/I/51EOq1fAvQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LCC75Q5/ref=twister_B09LCPCTW8?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$9.95", "price": 9.95, "image": "https://m.media-amazon.com/images/I/51VF0I-uFtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LCF4VBD/ref=twister_B09LCPCTW8?_encoding=UTF8&psc=1", "value": "Teal", "price_string": "$9.95", "price": 9.95, "image": "https://m.media-amazon.com/images/I/51HydHxOljL.jpg"}]}, "seller_id": "A3JDQP9HMLTN4S", "seller_name": "E&M Tek", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09LC67HYC", "category": "electronics", "query": "Cell Phones", "page": 367, "small_description_old": "About this item \u30101 Phone Case and 2 Screen Protectors\u3011Tailor-designed for Motorola Moto Edge 2021/ Moto Edge 5G UW \u3010Strong Protection\u3011Combination of TPU and Polycarbonate with reinforced corners for military-grade protection from drops and bumps. Raised bezels provide extra protection to the screen and camera. \u3010Precise Cutouts\u3011Easy access to buttons, speaker, charging port and all other funcioning ports of Motorola Edge 2021/ Moto Edge 5G UW \u3010Metal Ring Holder and Stand\u3011The metal ring is a great plus under multiple scenarios when it works as a holder, bracket or kickstand. The built-in magnetic metal sheet allows for easy attach to your magnetic car mount holder \u3010Sleek Compact Profile\u3011The phone case is made from selected lightweight non-slip material to ensure a slim and tough protection with enhanced grip."}, {"name": "Large Simple Wall Mirror/White Bathroom Makeup Mirror Storable/Round Wood Frame Decorative Mirror, for Bedroom, Living Room, Store, Vanity Mirror", "product_information": {"Item Weight": "11 pounds", "Manufacturer": "Jyjzf-Mirrors", "ASIN": "B07WC14R63"}, "brand": "Brand: Jyjzf-Mirrors", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Jyjzf-Mirrors", "full_description": "\u263aOUR Shatterproof Mirrors are highly reflective surface with sharper image than standard glass mirrors. They are cut from high-quality, specialised mirrored acrylic. It is very simple to install, You can easily hang it at home after receiving the goods. You can rest assured about this issue. \u263a They also have the added advantage of being much lighter, shatterproof, impact resistant and therefore safer. These mirrors are 3mm thick which is as normal glass mirrors, but are 10 times stronger and weigh 80% less. \u270c We specialise in creating and cutting unique designs and mirrors, where you can be 100% assured of the quality of our acrylic mirror. All of our mirrors are cut in our workshop using laser technology to give the best possible finish and with smooth edges. We are proud of our customer services ensuring that all of our customers are always satisfied since we believe that a Happy Customer will always be our customer. \u2764 All our products comply with our return policy within 90 days Money-Back Guarantee. If You Have Any Problems With This Mirrors, please feel free to contact us and we will give you a full refund or send you a new replacement at no charge, you don't have to return the product.", "pricing": "$361.26", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41g+P4UMeVL.jpg", "https://m.media-amazon.com/images/I/41DyTvnWOAL.jpg", "https://m.media-amazon.com/images/I/41qJaIWsUmL.jpg", "https://m.media-amazon.com/images/I/41Ag-XddJdL.jpg", "https://m.media-amazon.com/images/I/41zb-DCJDyL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Mirrors \u203a Wall-Mounted Mirrors", "average_rating": "", "small_description": ["\u265a Our wall mounted mirror made of explosion-proof glass which can prevent portrait distortion, give you a real HD imaging. Fixed by solid wood frame, frame mirror is delicately processed and it does not cut the hand. ", "\u265a This mirror has the perfect size (diameter, 50/60/70cm ) can be used in any room. An attractively framed mirror is the affordable way to decorate your wall while bringing light and space into a room. ", "\u265a The glass mirror is secured and embedded in the frame and reinforced with solid backing for added stability. Wall mounted mirror can be hung directly on the wall and Ship with all mounting hardware. ", "\u265a Gorgeous shows wall mirror's features in entryway, living room, bathroom, bedroom or any type of room decor. Whether it is natural light or human light, it can provide enough light to the room. ", "\u265a The Mirror is wrapped with FOAMED PLASTICS in box and protected from damage in transit, this sufficient packaging is helpful for you to carry the mirror when you move house. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07W6VYT6V/ref=twister_B07W7Z92BM?_encoding=UTF8&psc=1", "value": "50cm(19.7in)", "price_string": "$268.11", "price": 268.11, "image": null}, {"is_selected": true, "url": null, "value": "60cm(23.6in)", "price_string": "$361.26", "price": 361.26, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07W5VKW6F/ref=twister_B07W7Z92BM?_encoding=UTF8&psc=1", "value": "70cm(27.5in)", "price_string": "$504.86", "price": 504.86, "image": null}]}, "seller_id": "A1JF588EVIJMZM", "seller_name": "WEI ZHEN US", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07WC14R63", "category": "garden", "query": "Decorative Mirrors", "page": 285, "small_description_old": "About this item \u265a Our wall mounted mirror made of explosion-proof glass which can prevent portrait distortion, give you a real HD imaging. Fixed by solid wood frame, frame mirror is delicately processed and it does not cut the hand. \u265a This mirror has the perfect size (diameter, 50/60/70cm ) can be used in any room. An attractively framed mirror is the affordable way to decorate your wall while bringing light and space into a room. \u265a The glass mirror is secured and embedded in the frame and reinforced with solid backing for added stability. Wall mounted mirror can be hung directly on the wall and Ship with all mounting hardware. \u265a Gorgeous shows wall mirror's features in entryway, living room, bathroom, bedroom or any type of room decor. Whether it is natural light or human light, it can provide enough light to the room. \u265a The Mirror is wrapped with FOAMED PLASTICS in box and protected from damage in transit, this sufficient packaging is helpful for you to carry the mirror when you move house."}, {"name": "RJSP 20pcs Disposable Sterilized Memory Foam Tattoo Grip Cover 22mm Packaged for Stainless Steel Or Disposable Tattoo Tubes", "product_information": {"Item Weight": "0.035 ounces", "ASIN": "B09T6FCCY9", "Date First Available": "February 23, 2022", "Department": "Unisex-adult", "Manufacturer": "RJSP", "Country of Origin": "China"}, "brand": "Brand: RURU", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=RURU", "full_description": "Details:Material:memory foamDimension:out diameter 22mmPacking:20pcs per boxThis memory cover for tattoo grip is a fantastic device for great tattooing.Description\uff1a1.memory foam material brings fine tenacity,comfort and durability.2.Individually packaged and Sterilized.3.out diameter of 22mm creates comfort,and absorb the vibration of coiled,rotary and pen tattoo machines.4.absorb the vibration of the machine,improve the coloring efficiency and reduce the skin damage.5.alleviates vibrations that cause carpal tunnel & hand issues in the every day or long term of tattoo working.6.Works with any stainless steel or disposable 1\" tattoo tube grip.Package include:20pcs/set Tattoo Grip Cover", "pricing": "$26.24", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/31sfklo6uQL.jpg", "https://m.media-amazon.com/images/I/41SDpLNGRoL.jpg", "https://m.media-amazon.com/images/I/31XaqtM5HBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Piercing & Tattoo Supplies \u203a Tattoo Supplies \u203a Tattoo Machine Parts", "average_rating": "", "small_description": "Memory foam material brings fine tenacity,comfort and durability. Individually packaged and Sterilized. out diameter of 22mm creates comfort,and absorb the vibration of coiled,rotary and pen tattoo machines. absorb the vibration of the machine,improve the coloring efficiency and reduce the skin damage. alleviates vibrations that cause carpal tunnel & hand issues in the every day or long term of tattoo working.", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2S3IO7T2RB60V", "seller_name": "REnJIEGO", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09T6FCCY9", "category": "beauty", "query": "Piercing & Tattoo Supplies", "page": 66, "small_description_old": "Memory foam material brings fine tenacity,comfort and durability. Individually packaged and Sterilized. out diameter of 22mm creates comfort,and absorb the vibration of coiled,rotary and pen tattoo machines. absorb the vibration of the machine,improve the coloring efficiency and reduce the skin damage. alleviates vibrations that cause carpal tunnel & hand issues in the every day or long term of tattoo working."}, {"name": "JBL Charge 5 Portable Waterproof Wireless Bluetooth Speaker Bundle with divvi! Protective Hardshell Case - Squad", "product_information": {"Package Dimensions": "12.4 x 9.69 x 5.94 inches", "Item Weight": "4.66 pounds", "ASIN": "B08ZNVVZ91", "Item model number": "Charge 5 Squad with Case", "Batteries": "1 Lithium ion batteries required. (included)", "Customer Reviews": {"ratings_count": 1277, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#716 in Portable Bluetooth Speakers #7,765 in MP3 & MP4 Player Accessories"], "Is Discontinued By Manufacturer": "No", "Date First Available": "March 22, 2021", "Manufacturer": "JBL"}, "brand": "Visit the JBL Store", "brand_url": "https://www.amazon.com/stores/JBL/page/17575AD5-FBC3-4ACB-8002-79EF7CF1DE1E?ref_=ast_bln", "full_description": "Take the amazing power of JBL Pro Sound with you. The camouflage JBL Charge 5 has an optimized long excursion driver, a separate tweeter, and dual JBL bass radiators, all delivering impressively rich and clear audio. Get that big room sound, even when outdoors.The fun doesn\u2019t have to stop. Packed with an incredible up to 20 hours of battery life (depending on volume and content), JBL Charge 5 lets you party all day and into the night.To the pool. To the park. JBL Charge 5 is IP67 waterproof and dustproof, so you can bring your speaker anywhere.Wirelessly connect up to 2 smartphones or tablets to the speaker and take turns enjoying JBL Pro sound.PartyBoost allows you to pair two JBL PartyBoost\u2013compatible speakers together for stereo sound or link multiple JBL PartyBoost\u2013compatible speakers to truly pump up your party.Don\u2019t put the party on pause. A built\u2013in powerbank lets you charge your devices without taking a break from the tunes.Keeping the camo Charge 5 speaker blemmish free is easy as putting on a slipper. divvi! hardshell case lines the inner shell with a soft velvet lining that won't leave a mark. Secure the speaker with the elastic band keeping the speaker snuggly in place. The EVA foam body protects your music from taking bumps and bruises from the ride.", "pricing": "$179.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51v87hmZcUL.jpg", "https://m.media-amazon.com/images/I/410276epbzL.jpg", "https://m.media-amazon.com/images/I/31qitgS06lL.jpg", "https://m.media-amazon.com/images/I/41JePQNPH6L.jpg", "https://m.media-amazon.com/images/I/41eexBpYyNL.jpg", "https://m.media-amazon.com/images/I/41e87gI6whL.jpg", "https://m.media-amazon.com/images/I/41uvPuqE8OL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Portable Audio & Video \u203a Portable Speakers & Docks \u203a Portable Bluetooth Speakers", "average_rating": 4.8, "small_description": ["This bundle includes (1) Camo JBL Charge 5 Portable Waterproof Wireless Bluetooth Speaker and (1) divvi! Charge 5 Protective Hardshell Case. ", "Bold JBL Original Pro Sound - Up to 20 hours of playtime (depending on volume and content) - IP67 waterproof and dustproof ", "Wireless Bluetooth Streaming - Crank up the fun with PartyBoost - Power up with the built\u2013in powerbank ", "*PLEASE NOTE* - The camouflage JBL Charge 5 does NOT include a USB wall adapter. ", "Case: EVA Foam Body protects the JBL Charge 5 Speaker - Soft velvet lining with nylon strap cradle - Storage compartment keeps accessories neatly organized - Blue Zipper with two pulls fasten case quickly "], "total_reviews": 1277, "total_answered_questions": 58, "model": "Charge 5 Squad with Case", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08ZQF2ZL8/ref=twister_B092WCDBSG?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$179.99", "price": 179.99, "image": "https://m.media-amazon.com/images/I/41sYA0uHgkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZQ8G4VS/ref=twister_B092WCDBSG?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$179.99", "price": 179.99, "image": "https://m.media-amazon.com/images/I/41zJeYy6J9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZNX6S5M/ref=twister_B092WCDBSG?_encoding=UTF8&psc=1", "value": "Gray", "price_string": "$179.99", "price": 179.99, "image": "https://m.media-amazon.com/images/I/51D-0-FrxwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZNWMLZF/ref=twister_B092WCDBSG?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$179.99", "price": 179.99, "image": "https://m.media-amazon.com/images/I/51YRjtqOhBL.jpg"}, {"is_selected": true, "url": null, "value": "Squad", "price_string": "$179.99", "price": 179.99, "image": "https://m.media-amazon.com/images/I/51v87hmZcUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZNXW53L/ref=twister_B092WCDBSG?_encoding=UTF8&psc=1", "value": "Teal", "price_string": "$179.99", "price": 179.99, "image": "https://m.media-amazon.com/images/I/51E2vmoeg9L.jpg"}]}, "seller_id": "AAK72K4OIWDXL", "seller_name": "Huppins", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08ZNVVZ91", "category": "electronics", "query": "Bluetooth Speakers", "page": 5, "small_description_old": "About this item\n \nThis bundle includes (1) Camo JBL Charge 5 Portable Waterproof Wireless Bluetooth Speaker and (1) divvi! Charge 5 Protective Hardshell Case. Bold JBL Original Pro Sound - Up to 20 hours of playtime (depending on volume and content) - IP67 waterproof and dustproof Wireless Bluetooth Streaming - Crank up the fun with PartyBoost - Power up with the built\u2013in powerbank *PLEASE NOTE* - The camouflage JBL Charge 5 does NOT include a USB wall adapter. Case: EVA Foam Body protects the JBL Charge 5 Speaker - Soft velvet lining with nylon strap cradle - Storage compartment keeps accessories neatly organized - Blue Zipper with two pulls fasten case quickly"}, {"name": "DGQ Clip-on Sleeve Chapstick Pouch Keychain Lipstick Holder 1 PC Clear Lipstick Case Holder Plastic Cosmetic Storage Kit Makeup Travel Cases Organizer Bag", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 3.43 x 2.13 x 1.34 inches; 1.06 Ounces", "Manufacturer\n \u200f": "\u200e\n Leateck", "ASIN\n \u200f": "\u200e\n B08M6D6TVK", "Best Sellers Rank": "#321,343 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#264 in Cosmetic Travel Cases", "#264 in Cosmetic Travel Cases": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: DGQ", "brand_url": "https://www.amazon.com/DGQ/b/ref=bl_dp_s_web_20744926011?ie=UTF8&node=20744926011&field-lbr_brands_browse-bin=DGQ", "full_description": "DGQ Clip-on Sleeve Chapstick Pouch Keychain Lipstick Holder 1 PC Clear Lipstick Case Holder Plastic Cosmetic Storage Kit Makeup Travel Cases Organizer Bag Package Includes: 1pc X DGQ Lipstick Holder", "pricing": "$5.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31ZLFXsTMtL.jpg", "https://m.media-amazon.com/images/I/41JzfdY7HbL.jpg", "https://m.media-amazon.com/images/I/41XDewN0yoL.jpg", "https://m.media-amazon.com/images/I/41nqe5nPHOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Travel Cases", "average_rating": 4.1, "small_description": ["Perfect Size for Travel - This chapstick holder can fit most chapstick or lipstick of size within 8cm*3cm*2cm(3.1 in * 0.8 in * 1.2 in), Clear color allows you to easily and quickly select lipstick. ", "Securely Holds Your Lip Balm - Button design help it conveniently close with a button that holds the content in place and can avoid scratching at the same time, protect your lips on the slopes, at the beach or in the office. ", "Keychain Design for Easy Take Away - DGQ chapstick holder design with keychain, so that you can hang it on your bag and get your favorite lip balm or lipstick anytime, anywhere. ", "Small Case Great Use - This small lipstick case prevents your lipstick from separating and messing up your handbag. Attach them to your purse, keys, backpack, diaper bag, locker hook, make up bag, carry on bag, gym bag and wherever within your reach. ", "Clear PVC Material - It will come total 1 pc lip balm holders, high quality clear PVC material, perfectly holds standard sized lip balm such as Chapstick, Blistex, etc. "], "total_reviews": 29, "total_answered_questions": "", "customization_options": "", "seller_id": "A1DFM1G5Q2KS6T", "seller_name": "Leateck", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08M6D6TVK", "category": "beauty", "query": "Bags & Cases", "page": 63, "small_description_old": "Perfect Size for Travel - This chapstick holder can fit most chapstick or lipstick of size within 8cm*3cm*2cm(3.1 in * 0.8 in * 1.2 in), Clear color allows you to easily and quickly select lipstick. Securely Holds Your Lip Balm - Button design help it conveniently close with a button that holds the content in place and can avoid scratching at the same time, protect your lips on the slopes, at the beach or in the office. Keychain Design for Easy Take Away - DGQ chapstick holder design with keychain, so that you can hang it on your bag and get your favorite lip balm or lipstick anytime, anywhere. Small Case Great Use - This small lipstick case prevents your lipstick from separating and messing up your handbag. Attach them to your purse, keys, backpack, diaper bag, locker hook, make up bag, carry on bag, gym bag and wherever within your reach. Clear PVC Material - It will come total 1 pc lip balm holders, high quality clear PVC material, perfectly holds standard sized lip balm such as Chapstick, Blistex, etc."}, {"name": "2 Pieces Unicorn Cosmetic Bags Reversible Sequin Makeup Bags Cartoon Glitter Toiletry Bags Vanity Zipper Travel Pouches Cosmetics Pouch Pencil Case Purse for Women Girls Travel Birthday Christmas", "product_information": {"Package Dimensions": "9.84 x 7.87 x 0.75 inches", "Item Weight": "5 ounces", "Department": "Womens", "Manufacturer": "Frienda", "ASIN": "B09D842QY4", "Country of Origin": "China", "Customer Reviews": {"ratings_count": 2, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#956,196 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #18,030 in Cosmetic Bags"]}, "brand": "Brand: Frienda", "brand_url": "https://www.amazon.com/Frienda/b/ref=bl_dp_s_web_19625599011?ie=UTF8&node=19625599011&field-lbr_brands_browse-bin=Frienda", "full_description": "Features:Proper size:These cartoon unicorn purses measure about 8.1 x 5.9 inches, lightweight and proper size, ideal for you to store in suitcases easily, portable to carry around, handy to use during travel and trips.Suitable occasions:These cartoon unicorn makeup bags are proper for some important occasions like theme party, cosplay, carnival and gatherings, and you can also send them as sweet presents to your family members and friends.Specifications:Material: reversible sequins and soft fabricColor: as pictures shownSize: about 8.1 x 5.9 inchesStyle: unicorn theme patternQuantity: 2 piecesPackage includes:2 x Unicorn cosmetic bagsNote:Manual measurement, please allow slight errors on size.The color may exist slight difference due to different screen displays.", "pricing": "$6.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/61584MyHBlL.jpg", "https://m.media-amazon.com/images/I/51qtFZaOyAL.jpg", "https://m.media-amazon.com/images/I/51Ded3yCiIL.jpg", "https://m.media-amazon.com/images/I/61uwfopc99L.jpg", "https://m.media-amazon.com/images/I/51Fmn+cazwL.jpg", "https://m.media-amazon.com/images/I/51w8snGS9aL.jpg", "https://m.media-amazon.com/images/I/51rskz3KvXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Cosmetic Bags", "average_rating": 5, "small_description": ["Cartoon unicorn pattern: these unicorn makeup bags are printed with cartoon unicorn patterns, with glittering sequins, which are shining and lustrous, and unicorn on the bags are vivid and charming, featuring red, blue and other bright colors, and some lovely hearts and adorable stars are also included, and under the patterns, there are words [magic unicorn], and they will attract the eyes of most girls ", "2 Pieces to use, replace and share: there are 2 pieces glitter makeup bags in the package you will receive, enough to meet your multiple demands of daily use and replace, and you can also share them with your family members and friends ", "Reversible sequins: these unicorn cosmetic bags adopt reversible sequins outside, glittering and charming, and there is soft fabric inside, sturdy and easy to clean, and these eye-catching designs will enhance your personality and appearance among the people ", "Multi-functional bags: you can apply these cartoon unicorn bags as makeup bags, ideal for storing makeup accessories like lipsticks, foundations, eye shadow and cosmetic brushes, and they are also proper for pencils, pens, rulers, keys, necklaces and other delicate items, acting as pencil cases, handbags or purses as well ", "Zipper design: these cartoon unicorn handbag adopt zipper design, considerate and practical, easy for you to open and close, with nice workmanship, helping you to hold your products well, keep them from sliding out, convenient to use during various occasions "], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A2Z7SJ46MF7F7N", "seller_name": "Boyee Lochto", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09D842QY4", "category": "beauty", "query": "Bags & Cases", "page": 50, "small_description_old": "Cartoon unicorn pattern: these unicorn makeup bags are printed with cartoon unicorn patterns, with glittering sequins, which are shining and lustrous, and unicorn on the bags are vivid and charming, featuring red, blue and other bright colors, and some lovely hearts and adorable stars are also included, and under the patterns, there are words [magic unicorn], and they will attract the eyes of most girls 2 Pieces to use, replace and share: there are 2 pieces glitter makeup bags in the package you will receive, enough to meet your multiple demands of daily use and replace, and you can also share them with your family members and friends Reversible sequins: these unicorn cosmetic bags adopt reversible sequins outside, glittering and charming, and there is soft fabric inside, sturdy and easy to clean, and these eye-catching designs will enhance your personality and appearance among the people Multi-functional bags: you can apply these cartoon unicorn bags as makeup bags, ideal for storing makeup accessories like lipsticks, foundations, eye shadow and cosmetic brushes, and they are also proper for pencils, pens, rulers, keys, necklaces and other delicate items, acting as pencil cases, handbags or purses as well Zipper design: these cartoon unicorn handbag adopt zipper design, considerate and practical, easy for you to open and close, with nice workmanship, helping you to hold your products well, keep them from sliding out, convenient to use during various occasions"}, {"name": "HUACHEN-LS Portable Speaker Wireless Bluetooth Speaker Smart Speaker Portable Heavy Bass Speakers for Phone for Home, Outdoors, Travel (Color : Black)", "product_information": {"Item Weight": "3.97 pounds", "ASIN": "B09NDGV4PL", "Date First Available": "December 10, 2021", "Department": "Unisex-adult", "Manufacturer": "HUACHEN-LS", "Country of Origin": "China"}, "brand": "Brand: HUACHEN-LS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=HUACHEN-LS", "full_description": "Main Features20W powerful stereo soundPlay-time: Bluetooth (15h); WiFi (5h)Support voice serviceAdjustable bass and treble controlSupport: 2.4GHz router (not support 5GHz)Package Included1x bluetooth speaker1x USB Charging cable1x User manual", "pricing": "$305.91", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51kwjsNyJmL.jpg", "https://m.media-amazon.com/images/I/51JwFl6gUCL.jpg", "https://m.media-amazon.com/images/I/61rszrA7A2L.jpg", "https://m.media-amazon.com/images/I/41Ta0VKjqSL.jpg", "https://m.media-amazon.com/images/I/41Jtw4Cl5fL.jpg", "https://m.media-amazon.com/images/I/51iMDuj+yVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Portable Audio & Video \u203a Portable Speakers & Docks \u203a Portable Bluetooth Speakers", "average_rating": "", "small_description": ["Integrate more genuine online streaming music and compatible smart phone home connected device. ", "Using 2 or more Series speakers can build a multiroom to play different songs or the same song. (add 16 speakers at most) ", "Rechargeable and portable, enjoy music anywhere. ", "Built in high-sensitivity microphone and support Bluetooth hands-free call. Answer the phone by just press the button. ", "Slim and light weight, easy to carry.Removable Leather StrapDesign for indoor &outdooruse. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A3HEIMWXMA8LL9", "seller_name": "HUACHEN-LS", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NDGV4PL", "category": "electronics", "query": "Bluetooth Speakers", "page": 409, "small_description_old": "About this item\n \nIntegrate more genuine online streaming music and compatible smart phone home connected device. Using 2 or more Series speakers can build a multiroom to play different songs or the same song. (add 16 speakers at most) Rechargeable and portable, enjoy music anywhere. Built in high-sensitivity microphone and support Bluetooth hands-free call. Answer the phone by just press the button. Slim and light weight, easy to carry.Removable Leather StrapDesign for indoor &outdooruse."}, {"name": "Organic Clif Kid Zbar - Iced Oatmeal Cookie - Case of 18-1.27 oz Bars .2 pack", "product_information": {"Item model number\n \u200f": "\u200e\n -102021-v1", "UPC\n \u200f": "\u200e\n 381753365777", "Manufacturer\n \u200f": "\u200e\n CLIF BAR", "ASIN\n \u200f": "\u200e\n B09JPCC7MJ", "Best Sellers Rank": "#36,312 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#73 in Breakfast Cereal Bars", "#73 in Breakfast Cereal Bars": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Clif Bar Store", "brand_url": "https://www.amazon.com/stores/ClifBarCompany/page/5DF27F05-0431-4691-B950-F0560079CBE6?ref_=ast_bln", "full_description": "Un horneado org\u00e1nico grano Snack fabricada con una mezcla nutritiva de hidratos de carbono, fibra, prote\u00ednas y grasas para mantener Kids 'energyso los ni\u00f1os pueden cerrar y zoom a lo largo. Una mezcla deliciosa y nutritiva de avena de grano entero org\u00e1nicos con un toque de canela y vainilla. USDA org\u00e1nica vitaminas y minerales que son importantes para ni\u00f1os sin jarabe de ma\u00edz de alta fructosa sin sabores artificiales o conservantes sint\u00e9ticos", "pricing": "$40.38", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/418jk8wvhZL.jpg", "https://m.media-amazon.com/images/I/31zWOkZma1L.jpg", "https://m.media-amazon.com/images/I/31wB-aIrjNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breakfast Foods \u203a Breakfast & Cereal Bars \u203a Cereal", "average_rating": 4.7, "small_description": [""], "total_reviews": 60, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JPCTL8K/ref=twister_B09JPC5DQ5?_encoding=UTF8&psc=1", "value": ".10 pack", "price_string": "$187.38", "price": 187.38, "image": null}, {"is_selected": true, "url": null, "value": ".2 pack", "price_string": "$40.38", "price": 40.38, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JPCFPC2/ref=twister_B09JPC5DQ5?_encoding=UTF8&psc=1", "value": ".3 pack", "price_string": "$56.72", "price": 56.72, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JP9FDWX/ref=twister_B09JPC5DQ5?_encoding=UTF8&psc=1", "value": ".4 pack", "price_string": "$65.70", "price": 65.7, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DLFFV2V/ref=twister_B09JPC5DQ5?_encoding=UTF8&psc=1", "value": "18 Count (Pack of 1)", "price_string": "$22.88", "price": 22.88, "image": null}]}, "seller_id": "AF8VTH5S9F4PG", "seller_name": "DAVATA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09JPCC7MJ", "category": "grocery", "query": "Breakfast Foods", "page": 126, "small_description_old": ""}, {"name": "Crystal Rhinestone Starfish Hair Clip, Mini Dainty Metal Hairpin Clamps Accessories Barrettes Bobby Pin Ponytail Holder Statement (Mixed Color)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 3.54 x 2.76 x 1.38 inches; 1.95 Ounces", "UPC\n \u200f": "\u200e\n 723803713747", "Manufacturer\n \u200f": "\u200e\n Aguder", "ASIN\n \u200f": "\u200e\n B09MS5RTDD", "Best Sellers Rank": "#295,076 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,593 in Hair Styling Pins", "#1,593 in Hair Styling Pins": ""}, "brand": "Brand: Aguder", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Aguder", "full_description": "* ABOUT THIS ITEM * These fabulous and elegant hair pins is totally handmade, it is made of hight quality rhinestones. You can decorate any hairstyle and it will complement even the most restraint dress. * NOTICE * Please allow slight size difference due to manual measurement, because the photo display reasons, picture can not guarantee the color of page display product and the true colors of the products is completely consistent, I will try to explain it. * RETURN P0LICY * 1. Products with quality-related issues may be returned for a refund or exchange by contacting us within 3 days of receiving your items. 2. Any product that has been used does not qualify for return or exchange. 3. All returned items must be in brand-new condition, unused and with original label. * Maintenance * 1. Please try not to let accessory with water, alkali liquor and other caustic liquids. 2. Please take off accessory before take exercises. 3. Please make sure", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/4184NUzHD-L.jpg", "https://m.media-amazon.com/images/I/41qO3sy1ZUL.jpg", "https://m.media-amazon.com/images/I/41Ka-jRcRCL.jpg", "https://m.media-amazon.com/images/I/413Gd79AmSL.jpg", "https://m.media-amazon.com/images/I/41UyR2758yL.jpg", "https://m.media-amazon.com/images/I/31C1hkllJ3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Accessories \u203a Hair Pins", "average_rating": "", "small_description": ["Material: Premium Rhinestone + Premium Metal Alloy ", "Size: 5.8cm * 4cm (2.28inch * 1.57inch) ", "Good assistant for your make up and good to DIY your own hairstyle, glittering under the lights, beautiful hair adding items to make you more charming ", "Crystal hair clips fit for proms, parties, wedding, daily life and more special occasions; Suitable for women of all ages, a nice gift to ladies ", "Package: 3 x crystal hair pins (1 Black, 1 Gold, 1 Silver) with Gift Box "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "AF91DSWP5N685", "seller_name": "Agoder", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09MS5RTDD", "category": "beauty", "query": "Styling Products", "page": 159, "small_description_old": "About this item Material: Premium Rhinestone + Premium Metal Alloy Size: 5.8cm * 4cm (2.28inch * 1.57inch) Good assistant for your make up and good to DIY your own hairstyle, glittering under the lights, beautiful hair adding items to make you more charming Crystal hair clips fit for proms, parties, wedding, daily life and more special occasions; Suitable for women of all ages, a nice gift to ladies Package: 3 x crystal hair pins (1 Black, 1 Gold, 1 Silver) with Gift Box"}, {"name": "Asurion 1-Year Floor Care Protection Plan ($ 0-$50) for Used/REFURB", "product_information": {"Manufacturer": "Asurion", "ASIN": "B015D7YII4", "Item model number": "WCNP RRFLR 12ext 1", "Date First Available": "October 23, 2015"}, "brand": "Visit the ASURION Store", "brand_url": "https://www.amazon.com/stores/ASURION/page/84EB5403-C643-4F9D-8427-053F1AAE1EC6?ref_=ast_bln", "full_description": "Your Asurion Protection Plan documents will be sent to you via email to the address associated with your Amazon.com account. If your Asurion documents do not arrive within 2 business days after your purchase, please call (866) 551-5924 at anytime.", "pricing": "$4.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41I8fMGyKOL.jpg", "https://m.media-amazon.com/images/I/41PiXvqJ6bL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Speakers \u203a Surround Sound Systems", "average_rating": "", "small_description": ["Asurion Protection Plan, Formerly Canopy, product service plans you know and trust "], "total_reviews": "", "total_answered_questions": "", "model": "WCNP RRFLR 12ext 1", "customization_options": "", "seller_id": "AF3DJOY0ZHFVY", "seller_name": "Asurion, LLC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B015D7YII4", "category": "electronics", "query": "Surround Sound Systems", "page": 348, "small_description_old": "Asurion Protection Plan, Formerly Canopy, product service plans you know and trust"}, {"name": "Blue Diamond Almonds Nut Thins Gluten Free Cracker Crisps, Hint of Sea Salt, 4.25 Oz Boxes (Pack of 12)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 15 x 12 x 8 inches; 4.32 Ounces", "Item model number\n \u200f": "\u200e\n 10041570052782", "Manufacturer\n \u200f": "\u200e\n Blue Diamond", "ASIN\n \u200f": "\u200e\n B003I567W4", "Country of Origin\n \u200f": "\u200e\n USA", "Domestic Shipping": "Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.", "International Shipping": "This item can be shipped to select countries outside of the U.S.Learn More", "Best Sellers Rank": "#910 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#1 in Flatbread Crackers", "#1 in Flatbread Crackers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Blue Diamond Almonds Store", "brand_url": "https://www.amazon.com/stores/BlueDiamondAlmonds/page/C8FF6C7C-87B5-4C40-8C3F-47553B4C8675?ref_=ast_bln", "full_description": "Nut Thins are a crunchy cracker made with nutritious almonds and baked to perfection. With just enough sea salt to bring out the flavor, we think you'll agree our Hint of Sea Salt Almond Nut Thins are a tasty guilt free treat. The perfect afternoon snack, they also make an ideal foundation for appetizer toppings and a crunchy chip for your favorite dip.", "pricing": "$34.44", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51qPFhNZqsL.jpg", "https://m.media-amazon.com/images/I/510FKVtXfkL.jpg", "https://m.media-amazon.com/images/I/51IytF4z7NL.jpg", "https://m.media-amazon.com/images/I/51vIsiNU9AL.jpg", "https://m.media-amazon.com/images/I/510OysgXxSL.jpg", "https://m.media-amazon.com/images/I/61luZdrqhFL.jpg", "https://m.media-amazon.com/images/I/51BmylwfDDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Crackers \u203a Flatbread", "average_rating": 4.6, "small_description": ["Contains twelve 4.25-ounce boxes of Blue Diamond Almonds Nut Thins ", "A crunchy gluten free cracker made with Almonds and a hint of sea salt for taste, certified Kosher ", "A tasty and healthy snack with 3 grams of protein per serving ", "Perfect with your favorite snack dips, cheeses, and spreads. Serve them at your next party and your guests won't leave until they're gone. ", "Free of cholesterol and saturated fat - great for adults in the office or kids at school "], "total_reviews": 10500, "total_answered_questions": 63, "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B000HPBRA0/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Country Ranch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00C4S1BMM/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Multi-Seeds", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B007Z94RJ4/ref=twister_B08KRHD7NG", "value": "Original Almond", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B013DO2N90/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Pepper Jack", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Sea Salt", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00C4S19UQ/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Sesame Seeds", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B000H11C6I/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Smokehouse", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B000HPBR8W/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Cheddar", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B000H154WQ/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Pecan", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00C4S19WY/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Flax Seeds", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00M8VSJW0/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "Honey Cinnamon", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00FBO8FF2/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "4.25 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LKSQRL3/ref=twister_B08KRHD7NG", "value": "4.25 Ounce (Pack of 2)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073JK81KY/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "4.25 Ounce (Pack of 6)", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "4.25 Ounce (Pack of 12)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XHRRB1T/ref=twister_B08KRHD7NG?_encoding=UTF8&psc=1", "value": "7.7 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B003I567W4", "category": "grocery", "query": "Pantry Staples", "page": 32, "small_description_old": "About this item Contains twelve 4.25-ounce boxes of Blue Diamond Almonds Nut Thins A crunchy gluten free cracker made with Almonds and a hint of sea salt for taste, certified Kosher A tasty and healthy snack with 3 grams of protein per serving Perfect with your favorite snack dips, cheeses, and spreads. Serve them at your next party and your guests won't leave until they're gone. Free of cholesterol and saturated fat - great for adults in the office or kids at school"}, {"name": "SLLEA AC DC Adapter Replacement for Wilson 811710 814021 814004 Cell Phone Signal Booster Power", "product_information": {"Product Dimensions": "3 x 2 x 4 inches", "Item Weight": "3 ounces", "ASIN": "B09T5M3KKG", "Item model number": "PRJ-A-2022A2080ZZ1792", "Date First Available": "February 23, 2022", "Manufacturer": "SLLEA"}, "brand": "Brand: SLLEA", "brand_url": "https://www.amazon.com/SLLEA/b/ref=bl_dp_s_web_13765563011?ie=UTF8&node=13765563011&field-lbr_brands_browse-bin=SLLEA", "full_description": "SLLEA AC DC Adapter Replacement for Wilson 811710 814021 814004 Cell Phone Signal Booster PowerThis Charger from SLLEA is ideal for operating your device or charging its battery (if applicable) from any standard electrical power outlet either at home,office.Notice: 1. Input: 100 - 240 VAC 50/60Hz Worldwide Voltage Use Mains PSU; Please Confirm the output and plug tip before purchase. 2. Over Voltage Protection, Over Heat Protection, Brand New&High Quality.If you use this item for a long time, please keep it suitable ventilating and humidity. Do not put it on the skin products. Please feel free to contact us if you have further questions.We will be more than happy to assist you.Warranty: 30 Days Money Back Guarantee / 60 Days Free Exchange With Paid Return Label / 360 Days Anytime Worry-Free Warranty!Package Included:1 x AC / DC Power Supply Adapter", "pricing": "$14.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31VDQ8h6GcL.jpg", "https://m.media-amazon.com/images/I/41C3swxcOOL.jpg", "https://m.media-amazon.com/images/I/4180avv42+L.jpg", "https://m.media-amazon.com/images/I/41grzut91QL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Power Accessories \u203a AC Adapters", "average_rating": "", "small_description": ["CABLE LENGTH: TOTAL 4FT/1.2M. ", "SPECIFICATIONS: Input Voltage : AC 100-240V (Worldwide AC Input) ", "INDUSTRY QUALITY:100% Brand New Cables Are Tested BY Manufacture With High Quality.Approved by CE. Will not Cause a Fire,Safety USE ! ", "CONVENIENT&PORTABLE : This lightweight and easy-to-carry adapter is the ideal portable power source for your device! ", "WIDE COMPATIBILITY:AC DC Adapter Replacement for Wilson 811710 814021 814004 Cell Phone Signal Booster Power "], "total_reviews": "", "total_answered_questions": "", "model": "PRJ-A-2022A2080ZZ1792", "customization_options": "", "seller_id": "AMHTQ3EQ9HW3", "seller_name": "FXOAWENQIC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09T5M3KKG", "category": "electronics", "query": "Signal Boosters", "page": 92, "small_description_old": "About this item\n \nCABLE LENGTH: TOTAL 4FT/1.2M. SPECIFICATIONS: Input Voltage : AC 100-240V (Worldwide AC Input) INDUSTRY QUALITY:100% Brand New Cables Are Tested BY Manufacture With High Quality.Approved by CE. Will not Cause a Fire,Safety USE ! CONVENIENT&PORTABLE : This lightweight and easy-to-carry adapter is the ideal portable power source for your device! WIDE COMPATIBILITY:AC DC Adapter Replacement for Wilson 811710 814021 814004 Cell Phone Signal Booster Power"}, {"name": "Hello Kitty Lovely Canvas Rectangle Multi-Purpose Cosmetic Pencil Travel Pouch 1PC : Pink/Red (Pink)", "product_information": {"Package Dimensions": "6.77 x 3.94 x 3.5 inches", "Item Weight": "3.24 ounces", "Department": "Womens", "ASIN": "B08XDKBH2P", "Best Sellers Rank": ["#588,024 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #10,515 in Cosmetic Bags"]}, "brand": "Brand: Stationery", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Stationery", "full_description": "Hello Kitty Canvas Rectangle Multi-Purpose Cosmetic Pencil Travel Pouch 1PC", "pricing": "$27.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51NMGgdadEL.jpg", "https://m.media-amazon.com/images/I/51vaWwrAH6L.jpg", "https://m.media-amazon.com/images/I/31VPeGSBz9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Cosmetic Bags", "average_rating": "", "small_description": ["Hello Kitty Canvas Rectangle Multi-Purpose Cosmetic Pencil Travel Pouch 1PC (OFFICIALLY LICENSED) ", "Can be used as cosmetic pouch, travel pouch, pencil case, multi-purpose ", "Zippered main compartment, cute little Hello Kitty face charm on Zipper-End ", "Size approx.: H 4\" x W 6.5\" x D 3\" "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Pink", "price_string": "$27.99", "price": 27.99, "image": "https://m.media-amazon.com/images/I/51NMGgdadEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08XD7YXP3/ref=twister_B08XF2RW31?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$27.99", "price": 27.99, "image": "https://m.media-amazon.com/images/I/51306PV+6gL.jpg"}]}, "seller_id": "AG5LCBN6NBU9L", "seller_name": "lesstory", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08XDKBH2P", "category": "beauty", "query": "Bags & Cases", "page": 107, "small_description_old": "Hello Kitty Canvas Rectangle Multi-Purpose Cosmetic Pencil Travel Pouch 1PC (OFFICIALLY LICENSED) Can be used as cosmetic pouch, travel pouch, pencil case, multi-purpose Zippered main compartment, cute little Hello Kitty face charm on Zipper-End Size approx.: H 4\" x W 6.5\" x D 3\" Material: Canvas"}, {"name": "Men's Shiny Sequins Suit Jacket Blazer One Button Weddings Prom Dinner Party Tuxedo BZ07", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 26, 2022", "ASIN\n \u200f": "\u200e\n B09R7H66FC", "": ""}, "brand": "Brand: ZOQIN", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=ZOQIN", "full_description": "ZOQIN dedicated to offer ideal products and pleasant shopping experience. Product Feature: Title:Men's Modern fashion lightweight suit jacket blazer Package included: 1* blazer jacket Occassion:This stylish suit jacket is suitable for weddings ,business meetings,fashion shows, parties,prom,daily life,homecoming and back to school,any fashion forward parties,any holiday,work and other Occasions. Note: (1) Please pay attention to the size details carefully before you buy. If you have problem about the size, pls feel free to contact us. (2) Due to the different colors of the display computer may slightly vary, it may be slight color differences. Thank you for your understanding. (3) Please allow 1-3cm measurement error because all measurements are measured by hand.Customer satisfaction is our top priority. Do not hesitate to contact us if the item does not meet your expectations. (4) Standard shipping usually takes 15-25 days.Express shipping usually takes 4-7 work days.", "pricing": "$59.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51SqNN7S1tL.jpg", "https://m.media-amazon.com/images/I/61qR3BceEBL.jpg", "https://m.media-amazon.com/images/I/61xUlLAdrQL.jpg", "https://m.media-amazon.com/images/I/516tFmwneBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Suits & Sport Coats \u203a Sport Coats & Blazers", "average_rating": "", "small_description": ["100% Polyester ", "Button closure ", "Material:Slim fit casual blazer jacket is made of high-quality sequins and durable suit fabric which lets you gentle and unique.Comfortable and fashionable. ", "Not US Sizes:Available in wide range of sizes from Regular to Big & Tall.This classic fit blazer sizes are not same as US size. Please check the size chart carefully on product picture instead of the Amazon size chart. ", "Design:Shiny sequin blazer design in slim fit,featuring with notched laple,one button closure,left chest real pocket, two flap real pockets ; Professional tailoring offers you a sharper looking. ", "Match Tips:Modern fashion lightweight suit jacket match with white shirt and dress pants for a fashionable look. Great gift for Dad, Hubby, Son, Friends. ", "Occasions:Suitable for banquet, wedding, graduation, nightclub, disco, ceremony, dating, meeting, yacht party, prom, celebration, festival, etc. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Fuchsia", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51SqNN7S1tL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R7JB5GZ/ref=twister_B09R7J4GLV", "value": "Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51lNhj3T4tL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R7GPVCJ/ref=twister_B09R7J4GLV", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51OnCdSlZQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R7JGVPZ/ref=twister_B09R7J4GLV", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51a7bFg2U7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R7GJJH7/ref=twister_B09R7J4GLV", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41go30LyOKL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B09R7H66FC"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B09R7GT416"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09R7GV577"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09R7HXVWD"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09R7JMKJB"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09R7HHSLZ"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09R7JN8WK"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09R7H66FC", "category": "fashion", "query": "Men's Suits & Sport Coats", "page": 22, "small_description_old": "100% Polyester Button closure Material:Slim fit casual blazer jacket is made of high-quality sequins and durable suit fabric which lets you gentle and unique.Comfortable and fashionable. Not US Sizes:Available in wide range of sizes from Regular to Big & Tall.This classic fit blazer sizes are not same as US size. Please check the size chart carefully on product picture instead of the Amazon size chart. Design:Shiny sequin blazer design in slim fit,featuring with notched laple,one button closure,left chest real pocket, two flap real pockets ; Professional tailoring offers you a sharper looking. Match Tips:Modern fashion lightweight suit jacket match with white shirt and dress pants for a fashionable look. Great gift for Dad, Hubby, Son, Friends. Occasions:Suitable for banquet, wedding, graduation, nightclub, disco, ceremony, dating, meeting, yacht party, prom, celebration, festival, etc."}, {"name": "EASY SPA Natural Bristle Wooden Body Dry Brush for Bath Shower, Shower Scrubber With Long Handle, The Best Dry Brush For Cellulite And Lymphatic", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 15.7 x 4 x 1.4 inches; 6.28 Ounces", "UPC\n \u200f": "\u200e\n 686068569538", "Manufacturer\n \u200f": "\u200e\n EASY SPA", "ASIN\n \u200f": "\u200e\n B08BV94TBP", "Best Sellers Rank": "#685,827 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,775 in Bath & Body Brushes", "#2,775 in Bath & Body Brushes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Easy Spa Store", "brand_url": "https://www.amazon.com/stores/EASYSPA/page/0933FC5C-2E28-4639-8BE0-BBEE8BCA86E4?ref_=ast_bln", "full_description": "", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41WXx9sipvL.jpg", "https://m.media-amazon.com/images/I/41YYISjfTTL.jpg", "https://m.media-amazon.com/images/I/51ubHrSNSnL.jpg", "https://m.media-amazon.com/images/I/41sQGUKz6GL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath & Body Brushes", "average_rating": 4.5, "small_description": ["TREAT YOURSELF TO THE BEST: this body brush is constructed out of natural bamboo. So such back scrubber for shower far more durable than plastic and thin wood. You don\u2019t need to constantly replace your bath brush. ", "DRY SKIN BRUSHING: our wooden brush will be perfect for exfoliating and detoxing. You can improve circulation and lymphatic drainage because this body exfoliating brush has natural boar bristles. ", "GOOD FOR YOUR SKIN: medium stiffness of our back brush bristles leave skin soft and smooth. It will be a perfect complement to bath accessories for women because it gives perfect glowing for the skin in 90 days. ", "GREAT FOR BODY CARE: our natural bristle body brush give an excellent effect on the feet. It also will be perfect for knees, legs to rub. ", "CONVENIENT USE: this shower brush with long handle and hanging string. That\u2019s why we recommend you to add this to your own shower accessories. "], "total_reviews": 15, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08BV94TBP", "category": "beauty", "query": "Bath & Bathing Accessories", "page": 123, "small_description_old": "About this item TREAT YOURSELF TO THE BEST: this body brush is constructed out of natural bamboo. So such back scrubber for shower far more durable than plastic and thin wood. You don\u2019t need to constantly replace your bath brush. DRY SKIN BRUSHING: our wooden brush will be perfect for exfoliating and detoxing. You can improve circulation and lymphatic drainage because this body exfoliating brush has natural boar bristles. GOOD FOR YOUR SKIN: medium stiffness of our back brush bristles leave skin soft and smooth. It will be a perfect complement to bath accessories for women because it gives perfect glowing for the skin in 90 days. GREAT FOR BODY CARE: our natural bristle body brush give an excellent effect on the feet. It also will be perfect for knees, legs to rub. CONVENIENT USE: this shower brush with long handle and hanging string. That\u2019s why we recommend you to add this to your own shower accessories."}, {"name": "Neutrogena Stubborn Acne AM Face Treatment with 2.5% Micronized Benzoyl Peroxide Acne Medicine, Oil-Free Daily Facial Treatment to Reduce Size & Redness of Breakouts, Paraben-Free, 2 oz", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 1.54 x 1.92 x 6.23 inches; 2.47 Ounces", "UPC\n \u200f": "\u200e\n 070501400289", "Manufacturer\n \u200f": "\u200e\n Johnson & Johnson", "ASIN\n \u200f": "\u200e\n B08D4MH7XQ", "Best Sellers Rank": "#837 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#4 in Facial Cleansing Gels #5 in Facial Peels #7 in Facial Sunscreens", "#4 in Facial Cleansing Gels": "", "#5 in Facial Peels": "", "#7 in Facial Sunscreens": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Neutrogena Store", "brand_url": "https://www.amazon.com/stores/Neutrogena/page/3BC8CF14-3F35-41A4-9BF3-705A7FB2B6B6?ref_=ast_bln", "full_description": "Help eliminate acne breakouts & redness with Neutrogena Stubborn Acne AM Treatment. From the #1 dermatologist-recommended acne brand, this daytime acne treatment reduces the size & redness of stubborn acne and post-acne marks in just a few hours. The clinically proven acne treatment is inspired by a dermatologist-recommended regimen for clear skin and contains 2.5% micronized benzoyl peroxide acne medication to penetrate deep into pores and kill acne-causing bacteria at the source. When used together with Neutrogena Stubborn Marks PM Treatment, 86% saw clearer skin after just four weeks. The daily treatment vanishes into skin, and is oil-, paraben-, phthalate-, dye-, and fragrance-free. For best results, use Neutrogena Stubborn Acne AM Treatment along with Neutrogena Stubborn Marks PM Treatment as part of your skincare routine.", "pricing": "$9.20", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon. In Stock.", "images": ["https://m.media-amazon.com/images/I/41kR+kTyqeL.jpg", "https://m.media-amazon.com/images/I/4109SNgcG3L.jpg", "https://m.media-amazon.com/images/I/51y6Q6HuNjL.jpg", "https://m.media-amazon.com/images/I/51WJ4Rk9PoL.jpg", "https://m.media-amazon.com/images/I/51tdInE1AFL.jpg", "https://m.media-amazon.com/images/I/41ux-SD7xVL.jpg", "https://m.media-amazon.com/images/I/51-cy-kOxuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Treatments & Masks \u203a Facial Peels", "average_rating": 4.4, "small_description": ["2-ounces of Neutrogena Stubborn Acne AM - Treatment with 2.5% Benzoyl Peroxide works all day to help eliminate stubborn acne breakouts and redness ", "With a vanishing formula, this daytime acne face treatment reduces size and redness of acne in just hours with a dermatologist-recommended approach. The oil-free treatment is suitable for daily use on full face, not just breakouts ", "The clinically proven formula contains 2.5% micronized benzoyl peroxide, a powerful acne medication and recommended first line of treatment by dermatologists that penetrates deep into pores to help kill acne-causing bacteria at the source ", "Free of parabens, oil, phthalates, dyes & fragrances, this acne skincare treatment is part of a dermatologist-recommended regimen for clear skin. For best results, use this acne treatment with Neutrogena Stubborn Marks PM Treatment with Retinol ", "Our recommended skincare regimen for stubborn acne & post-acne marks, when used together, the retinol in the PM formula helps release pore-clogging dead skin cells, giving benzoyl peroxide a clear path to effectively target acne-causing bacteria "], "total_reviews": 3083, "total_answered_questions": 20, "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "AM Face Treatment", "price_string": "$9.20", "price": 9.2, "image": "https://m.media-amazon.com/images/I/41kR+kTyqeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08DBFXFXD/ref=twister_B09H5TZHSV?_encoding=UTF8&psc=1", "value": "Acne AM Face Treatment with Benzoyl Peroxide", "price_string": "$22.96", "price": 22.96, "image": "https://m.media-amazon.com/images/I/41ZaCEp0jFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097NP2XZQ/ref=twister_B09H5TZHSV?_encoding=UTF8&psc=1", "value": "Daily Acne Facial Serum", "price_string": "$12.49", "price": 12.49, "image": "https://m.media-amazon.com/images/I/31PW+mfya6S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08CHDVN12/ref=twister_B09H5TZHSV?_encoding=UTF8&psc=1", "value": "Marks PM Treatment with Retinol SA", "price_string": "$12.45", "price": 12.45, "image": "https://m.media-amazon.com/images/I/31vYaTDaE2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097NNQZVM/ref=twister_B09H5TZHSV?_encoding=UTF8&psc=1", "value": "Texture Daily Acne Gel Facial Cleanser", "price_string": "$9.97", "price": 9.97, "image": "https://m.media-amazon.com/images/I/31I4fEdY+TS.jpg"}]}, "seller_id": "A1V7VI81AOUJ8I", "seller_name": "D&S TRADING CORP", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": true, "asin": "B08D4MH7XQ", "category": "beauty", "query": "Scrubs & Body Treatments", "page": 7, "small_description_old": "About this item 2-ounces of Neutrogena Stubborn Acne AM - Treatment with 2.5% Benzoyl Peroxide works all day to help eliminate stubborn acne breakouts and redness With a vanishing formula, this daytime acne face treatment reduces size and redness of acne in just hours with a dermatologist-recommended approach. The oil-free treatment is suitable for daily use on full face, not just breakouts The clinically proven formula contains 2.5% micronized benzoyl peroxide, a powerful acne medication and recommended first line of treatment by dermatologists that penetrates deep into pores to help kill acne-causing bacteria at the source Free of parabens, oil, phthalates, dyes & fragrances, this acne skincare treatment is part of a dermatologist-recommended regimen for clear skin. For best results, use this acne treatment with Neutrogena Stubborn Marks PM Treatment with Retinol Our recommended skincare regimen for stubborn acne & post-acne marks, when used together, the retinol in the PM formula helps release pore-clogging dead skin cells, giving benzoyl peroxide a clear path to effectively target acne-causing bacteria"}, {"name": "Computers & Tablets Bassoon K3000 Tablet PC 8GB, 7 inch Android 4.4, Dual SIM, WCDMA, GPS(Black) (Color : Pink)", "product_information": {"Package Dimensions": "8.27 x 5.12 x 2.36 inches", "Item Weight": "1.58 pounds", "Manufacturer": "Dongdexiu", "ASIN": "B08GHLKGHJ", "Date First Available": "August 22, 2020"}, "brand": "Brand: Dongdexiu", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Dongdexiu", "full_description": "Same function as computerConvenient for carrySuit for working or travelingAbout the product1. RAM:512M, ROM:8G(Suppor TF card up to 32G)2. Dual cameras front 1.3 Mega pixel / back 3 Mega pixel3. MT6572 dual SIM dual standby4. OS Android 4.45. Support WiFi/BT/FM6. 7.0 inch LCD screen7. 3G Phone Call8. 3500mA battery", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51PjHtq6grL.jpg", "https://m.media-amazon.com/images/I/51PjHtq6grL.jpg", "https://m.media-amazon.com/images/I/41jYdkTp2zL.jpg", "https://m.media-amazon.com/images/I/41Ou47MDK2L.jpg", "https://m.media-amazon.com/images/I/41LCFDvKbUL.jpg", "https://m.media-amazon.com/images/I/41v1g4rxTjL.jpg", "https://m.media-amazon.com/images/I/4161vKsirPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computers & Tablets \u203a Tablets", "average_rating": "", "small_description": ["Tablet PC ", "Different Size Tablets ", "New and good function ", "Bassoon K3000 Tablet PC 8GB, 7 inch Android 4.4, Dual SIM, WCDMA, GPS(Black) "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08GHLKGHJ", "category": "electronics", "query": "Tablets", "page": 248, "small_description_old": "About this item\n \nTablet PC Different Size Tablets New and good function Bassoon K3000 Tablet PC 8GB, 7 inch Android 4.4, Dual SIM, WCDMA, GPS(Black)"}, {"name": "AC Pacific Modern Staggered 6-Shelf Luke Bookcase, Black", "product_information": {"Item Weight": "49.4 pounds", "Product Dimensions": "9.06 x 31.5 x 74.8 inches", "Country of Origin": "China", "Item model number": "LUKE"}, "brand": "Visit the AC Pacific Store", "brand_url": "https://www.amazon.com/stores/ACPacific/page/11141E65-C201-4DC2-B70F-95D1F44FD392?ref_=ast_bln", "full_description": "Whether you consider yourself a book worm or you're just looking to add some stylish shelf space to your home's d\u00e9cor, our Luke bookcase can satisfy both of those needs. It's staggered design gives this bookcase a modern aspect that can be applied to any room in your home. Place it in your living room where it can hold your precious family photos, or in your private study where it can store your collection of literature. These are just a few of the many uses you can find for the Luke bookcase. With such a versatile piece of furniture, how can you say no?", "pricing": "$161.00", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock (more on the way).", "images": ["https://m.media-amazon.com/images/I/31piXf7wF5L.jpg", "https://m.media-amazon.com/images/I/313tHzTfrBL.jpg", "https://m.media-amazon.com/images/I/519A21gclfL.jpg", "https://m.media-amazon.com/images/I/41yDP-jnYdL.jpg", "https://m.media-amazon.com/images/I/21-OcNxOm4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": 4.4, "small_description": ["100% Select Hardwoods ", "Boost storage - If you're having trouble finding a place for your electronics, books, pictures, etc. , This Bookcase is the perfect solution for you ", "Staggered design - With it's unique staggered Book shelves, you're sure to stand out from the crowd with our stylish LUKE Bookcase ", "Versatile - even though it has a unique aspect (staggered) to it, The LUKE Bookcase still manages to be adapt extremely well with any room you decide you place it in ", "Easy clean-up/Set up - remarkably Easy to build yourself and effortless to maintain afterwards, a simple routine dusting will keep your bookshelf looking like new ", "Size - 74. 8\" H x 31. 5\" W x 9. 1\" D "], "total_reviews": 74, "total_answered_questions": "", "model": "LUKE", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07J6T9WZB/ref=twister_B09TLPPVSL?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qpk1tVlsL.jpg"}, {"is_selected": true, "url": null, "value": "Midnight", "price_string": "$161.00", "price": 161, "image": "https://m.media-amazon.com/images/I/31piXf7wF5L.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09N55XTPL", "category": "garden", "query": "Bookcases", "page": 67, "small_description_old": "About this item Boost storage - If you're having trouble finding a place for your electronics, books, pictures, etc. , This Bookcase is the perfect solution for you Staggered design - With it's unique staggered Book shelves, you're sure to stand out from the crowd with our stylish LUKE Bookcase Versatile - even though it has a unique aspect (staggered) to it, The LUKE Bookcase still manages to be adapt extremely well with any room you decide you place it in Easy clean-up/Set up - remarkably Easy to build yourself and effortless to maintain afterwards, a simple routine dusting will keep your bookshelf looking like new Size - 74. 8\" H x 31. 5\" W x 9. 1\" D"}, {"name": "Sony Alpha a7R III Mirrorless Digital Camera (Body Only) ILCE7RM3/B + 64GB Memory Card + NP-FZ-100 Battery + Corel Photo Software + Case + External Charger + Card Reader + HDMI Cable + More (Renewed)", "product_information": {"Product Dimensions": "5 x 2.9 x 3.76 inches", "Item Weight": "5.31 pounds", "ASIN": "B08WYZWYN1", "Best Sellers Rank": ["#451,944 in Electronics (See Top 100 in Electronics) #2,184 in Mirrorless Cameras"], "Date First Available": "February 18, 2021", "Manufacturer": "Sony"}, "brand": "Visit the Amazon Renewed Store", "brand_url": "https://www.amazon.com/Amazon-Renewed/b/ref=bl_dp_s_web_12653393011?ie=UTF8&node=12653393011&field-lbr_brands_browse-bin=Amazon+Renewed", "full_description": "Manufacturer Included Items:Sony Alpha a7R III Mirrorless Digital Camera (Body Only)Sony NP-FZ100 Rechargeable Lithium-Ion Battery (2280mAh)Sony BC-QZ1 Battery ChargerCable ProtectorShoulder StrapSony ALC-B1EM Body Cap for E-Mount CamerasAccessory Shoe CapEyepiece CupUSB Type-C CableBundle Items Include:1 x Sony Alpha a7R III Mirrorless Digital Camera (Body Only)1 x SanDisk SecureDigital 64GB Extreme PRO Memory Card1 x NP-FZ100 Rechargeable Lithium-Ion Battery1 x Corel Photo Software With PhotoMirage, AfterShot, Painter Essentials, PaintShop Pro, and Video Studio1 x Large Padded Case1 x NP-FZ100 charger1 x Memory Card Reader1 x Micro HDMI Cable1 x Deluxe Cleaning Set1 x 12 Inch Flexible Tripod1 x Memory Card Wallet", "pricing": "$2,284.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51P6iIZACLL.jpg", "https://m.media-amazon.com/images/I/51tWmDY9rOL.jpg", "https://m.media-amazon.com/images/I/51tWmDY9rOL.jpg", "https://m.media-amazon.com/images/I/41rYnXUgKDL.jpg", "https://m.media-amazon.com/images/I/41rYnXUgKDL.jpg", "https://m.media-amazon.com/images/I/51m024EKygL.jpg", "https://m.media-amazon.com/images/I/514y-DB2mnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a Mirrorless Cameras", "average_rating": "", "small_description": ["Bundle Includes: 1 x Sony Alpha a7R III Mirrorless Digital Camera (Body Only), 1 x SanDisk SecureDigital 64GB Extreme PRO Memory Card, 1 x NP-FZ100 Rechargeable Lithium-Ion Battery, 1 x Corel Photo Software With PhotoMirage, AfterShot, Painter Essentials, PaintShop Pro, and Video Studio, 1 x Large Padded Case, 1 x NP-FZ100 charger, 1 x Memory Card Reader, 1 x Micro HDMI Cable, 1 x Deluxe Cleaning Set, 1 x 12 Inch Flexible Tripod, 1 x Memory Card Wallet ", "The Alpha a7R III Mirrorless Digital Camera from Sony is a versatile, high-performance camera characterized by not only its resolution, but by its multimedia versatility. Revolving around a full-frame 42.4MP Exmor R BSI CMOS sensor and updated BIONZ X image processor, the a7R III affords an impressive 10 fps continuous shooting rate along with improved autofocus performance for faster, more reliable subject tracking along with wide frame coverage. ", "This updated Fast Hybrid AF System employs a combination of 399 phase-detection points and 425 contrast-detection areas for quicker acquirement of focus in a variety of lighting conditions, and also maintains focus on subjects more effectively. In addition to speed and AF, the processing improvements also help to realize greater image clarity throughout the sensitivity range from ISO 100-32000, which can further be expanded to ISO 50-102400. ", "Video recording capabilities have also been extended for enhanced quality when recording UHD 4K video with the full width of the full-frame sensor, or when using a Super35 area and 5K oversampling to minimize moir and aliasing. Additionally, benefitting both stills and video operation, the a7R III retains the 5-axis SteadyShot INSIDE sensor-shift image stabilization, which is now effective to minimize the appearance of camera shake by up to 5.5 stops. ", "Key Features: 42MP Full-Frame Exmor R BSI CMOS Sensor - BIONZ X Image Processor & Front-End LSI - 399-Point AF System & 10 fps Shooting - UHD 4K30p Video with HLG & S-Log3 Gammas - 3.69m-Dot Tru-Finder OLED EVF - 3.0\" 1.44m-Dot Tilting Touchscreen LCD - 5-Axis SteadyShot INSIDE Stabilization - ISO 102400 & Pixel Shift Multi Shooting - Built-In Wi-Fi/Bluetooth, Dual SD Slots - USB 3.1 Gen 1 Type-C Port & PC Sync Port "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ALAQLAKJ574UN", "seller_name": "6ave", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08WYZWYN1", "category": "electronics", "query": "Digital Cameras", "page": 178, "small_description_old": "About this item\n \nBundle Includes: 1 x Sony Alpha a7R III Mirrorless Digital Camera (Body Only), 1 x SanDisk SecureDigital 64GB Extreme PRO Memory Card, 1 x NP-FZ100 Rechargeable Lithium-Ion Battery, 1 x Corel Photo Software With PhotoMirage, AfterShot, Painter Essentials, PaintShop Pro, and Video Studio, 1 x Large Padded Case, 1 x NP-FZ100 charger, 1 x Memory Card Reader, 1 x Micro HDMI Cable, 1 x Deluxe Cleaning Set, 1 x 12 Inch Flexible Tripod, 1 x Memory Card Wallet The Alpha a7R III Mirrorless Digital Camera from Sony is a versatile, high-performance camera characterized by not only its resolution, but by its multimedia versatility. Revolving around a full-frame 42.4MP Exmor R BSI CMOS sensor and updated BIONZ X image processor, the a7R III affords an impressive 10 fps continuous shooting rate along with improved autofocus performance for faster, more reliable subject tracking along with wide frame coverage. This updated Fast Hybrid AF System employs a combination of 399 phase-detection points and 425 contrast-detection areas for quicker acquirement of focus in a variety of lighting conditions, and also maintains focus on subjects more effectively. In addition to speed and AF, the processing improvements also help to realize greater image clarity throughout the sensitivity range from ISO 100-32000, which can further be expanded to ISO 50-102400. Video recording capabilities have also been extended for enhanced quality when recording UHD 4K video with the full width of the full-frame sensor, or when using a Super35 area and 5K oversampling to minimize moir and aliasing. Additionally, benefitting both stills and video operation, the a7R III retains the 5-axis SteadyShot INSIDE sensor-shift image stabilization, which is now effective to minimize the appearance of camera shake by up to 5.5 stops. Key Features: 42MP Full-Frame Exmor R BSI CMOS Sensor - BIONZ X Image Processor & Front-End LSI - 399-Point AF System & 10 fps Shooting - UHD 4K30p Video with HLG & S-Log3 Gammas - 3.69m-Dot Tru-Finder OLED EVF - 3.0\" 1.44m-Dot Tilting Touchscreen LCD - 5-Axis SteadyShot INSIDE Stabilization - ISO 102400 & Pixel Shift Multi Shooting - Built-In Wi-Fi/Bluetooth, Dual SD Slots - USB 3.1 Gen 1 Type-C Port & PC Sync Port"}, {"name": "New Replace Remote NB555 Fit for ZV450MW8 ZV450MW8A ZV420MW8 SV08R242 Magnavox Video Recorder", "product_information": {"Product Dimensions": "7 x 2 x 0.6 inches", "Item Weight": "2 ounces", "ASIN": "B089R7JZHK", "Customer Reviews": {"ratings_count": 6, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#25,815 in Remote Controls (Electronics)"], "Date First Available": "July 21, 2019", "Manufacturer": "WINFLIKE"}, "brand": "Brand: WINFLIKE", "brand_url": "https://www.amazon.com/WINFLIKE/b/ref=bl_dp_s_web_19426686011?ie=UTF8&node=19426686011&field-lbr_brands_browse-bin=WINFLIKE", "full_description": "New Replace Remote NB555 NB555UD Fit For Magnavox Video Recorder Featurte\uff1a No programming or paring needed. Install new batteries and it is ready for use. Easy and full access to all the buttons Faster shipping and excellent service The Remote Compatible with below Model ZV450MW8 ZV450MW8A ZV420MW8 SV08R242 ZV450MWB Package Content: 1X Remote Control (Batteries and User Manual Not Included) If you have any question of the remote control, please contact us for further support.Thanks!", "pricing": "$9.90", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41GDrVsIILL.jpg", "https://m.media-amazon.com/images/I/41jBiphmq-L.jpg", "https://m.media-amazon.com/images/I/31gT5FLpusL.jpg", "https://m.media-amazon.com/images/I/41kvqV9VGFL.jpg", "https://m.media-amazon.com/images/I/41a8bsclTVL.jpg", "https://m.media-amazon.com/images/I/31Svyg7fE-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": 4.2, "small_description": ["Compatilbe model: ZV450MW8 ZV450MW8A ZV420MW8 SV08R242 ", "Do not need any program, only put into battery can work ", "battery install :1.5V two AAA Batteries ", "Easy to use IR remote control ", "Faster shipping and Excellent service "], "total_reviews": 6, "total_answered_questions": "", "customization_options": "", "seller_id": "A7NLKQ90MH545", "seller_name": "WINFLIKE INC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B089R7JZHK", "category": "electronics", "query": "VCRs", "page": 303, "small_description_old": "About this item\n \nCompatilbe model: ZV450MW8 ZV450MW8A ZV420MW8 SV08R242 Do not need any program, only put into battery can work battery install :1.5V two AAA Batteries Easy to use IR remote control Faster shipping and Excellent service"}, {"name": "Lom-style Moroccan Hair Serum - Repairing Anti-frizz Serum No Silicones, Sulfates or Pbens with Organic Argan Oil 100 ml/3.38 oz Model (3301-9145)", "product_information": {"Item model number\n \u200f": "\u200e\n ha1r_6584", "Manufacturer\n \u200f": "\u200e\n Lom-style", "ASIN\n \u200f": "\u200e\n B09MDQ4HBT", "": ""}, "brand": "Brand: Lom-style", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Lom-style", "full_description": "Lom-style Moroccan Hair Serum - Repairing Anti-frizz Serum No Silicones, Sulfates or Pbens with Organic Argan Oil 100 ml/3.38 oz Model (3301-9145)", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41X20uxuvRS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Maternity", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MDQ4HBT", "category": "beauty", "query": "Skin Care Maternity", "page": 51, "small_description_old": ""}, {"name": "Ambesonne Abstract Throw Pillow Cushion Cover, Geometric Composition with Different Colored Squares Striped Dotted Rhombus, Decorative Square Accent Pillow Case, 16\" X 16\", Grey Purple", "product_information": {"Package Dimensions": "8.2 x 8.1 x 0.02 inches", "Item Weight": "2.08 ounces", "Manufacturer": "Ambesonne", "ASIN": "B0743JKHBV", "Item model number": "min_36558_16X16", "Customer Reviews": {"ratings_count": 23, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#344,260 in Home & Kitchen (See Top 100 in Home & Kitchen) #4,759 in Throw Pillow Covers"], "Fabric Type": "Polyester", "Scent": "Unscented", "Number of Pieces": "1", "Batteries Required?": "No", "Import Designation": "Imported"}, "brand": "Visit the Ambesonne Store", "brand_url": "https://www.amazon.com/stores/Ambesonne/page/A02C8FF3-0DDA-4652-9837-02967AB9320F?ref_=ast_bln", "full_description": "Makeover and refresh your rooms with just a single touch! Start with these fun and decorative cushion cases. These unique designs match well with various color palettes of your sofa, couch, bed, bedding, rugs, curtains, bench, seating and all other decor accessories. Perfect for your home, office, cafe, study, studio, club, bar and others. Very durable and environmentally friendly, no dye substance harming the health of you and your family. Colors won't fade thanks to new digital printing methods. A perfect gift idea for your mom, dad, sister, brother, grandma, wife, husband and all other beloved ones with many of surprising designs. You can find a design for everybody and every interest in our Amazon collection. They will be shocked by the superior quality of the item when they open the present. Customized, personalized products are very popular. As manufacturers of digital printed home textiles, we follow current trends and bring you the latest home fashion. Either a gift to your family or friend, relative or boyfriend girlfriend, or to yourself, the item should be interesting and authentic. The digital images we display have the most accurate color possible, however due to differences in computer monitors, we cannot be responsible for variations in color between the actual product and your screen. Due to manual measurement, please kindly allow 1-2 cm discrepancy. This is ONLY the pillow cover, sold without the insert.", "pricing": "$14.95", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41XKZfhgPZL.jpg", "https://m.media-amazon.com/images/I/3179cC8YRyL.jpg", "https://m.media-amazon.com/images/I/51swynQ4LpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": 4.2, "small_description": ["Imported ", "16 Inches x 16 Inches - Double sided print - With Zipper. Cut and sewn by hand. Insert not included. ", "Made from - 100% Spun Polyester - waterproof, High quality fabric. Highly unique. Versatile. Fun. ", "Machine washable - Delicate cycle, Dryer safe. Durable enough for both indoor and outdoor. ", "Features - Vivid colors & Clear image. No fading - No dyes harming health of your family. ", "Modern Prints - Printed with state of the art digital printing technology. Imported or Made in USA "], "total_reviews": 23, "total_answered_questions": "", "model": "min_36558_16X16", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "16\" X 16\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0743JHQZH/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "18 x 18-Inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0743JSN7K/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "20\" X 20\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0743JTB1C/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "24\" X 24\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0779Z1W14/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "26\" X 16\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078W5PS52/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "26\" X 26\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078W6TH26/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "28\" X 28\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078W64T5Y/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "36\" X 16\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078W5VHLP/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "36\" X 36\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078W7CJ98/ref=twister_B08QHZC6VG?_encoding=UTF8&psc=1", "value": "40\" X 40\"", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A257RQ85BTUV7H", "seller_name": "Pinklim", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0743JKHBV", "category": "garden", "query": "Decorative Pillows", "page": 137, "small_description_old": "About this item Imported 16 Inches x 16 Inches - Double sided print - With Zipper. Cut and sewn by hand. Insert not included. Made from - 100% Spun Polyester - waterproof, High quality fabric. Highly unique. Versatile. Fun. Machine washable - Delicate cycle, Dryer safe. Durable enough for both indoor and outdoor. Features - Vivid colors & Clear image. No fading - No dyes harming health of your family. Modern Prints - Printed with state of the art digital printing technology. Imported or Made in USA"}, {"name": "Desert Essence Natural Whitening Plus Tea Tree Oil Bundle - 1 Unit of 6.25 Ounce Toothpaste & 16 Fl Ounce Mouthwash - Refreshing Taste - Promotes Healthy Mouth - Complete Oral Care", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 8.43 x 5.28 x 1.69 inches; 1.43 Pounds", "Item model number\n \u200f": "\u200e\n 3413NDE", "Department\n \u200f": "\u200e\n Unisex", "UPC\n \u200f": "\u200e\n 646816990359", "Manufacturer\n \u200f": "\u200e\n Desert Essence", "ASIN\n \u200f": "\u200e\n B01GGCZA7I", "Best Sellers Rank": "#90,811 in Health & Household (See Top 100 in Health & Household)#869 in Toothpaste", "#869 in Toothpaste": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Desert Essence Store", "brand_url": "https://www.amazon.com/stores/Desert+Essence/page/9A09AD80-7729-4619-BC78-C9FF930EBB80?ref_=ast_bln", "full_description": "", "pricing": "$14.89", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41zP0cD4o3L.jpg", "https://m.media-amazon.com/images/I/41G7vv1SRJL.jpg", "https://m.media-amazon.com/images/I/414jHvpu6kL.jpg", "https://m.media-amazon.com/images/I/41j8d1JEDpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": 4.6, "small_description": ["BUNDLE - This bundle includes one unit of 6.25 oz Desert Essence Whitening Plus Toothpaste and one unit of 16 fl oz Desert Essence Whitening Plus Mouthwash. ", "BRIGHTER SMILE - The toothpaste helps fight stains naturally for a brighter smile. Helps reduce plaque buildup. Freshens breath. ", "REFRESHING BREATH - Brush your way to a brighter smile and fresher breath with this exclusive blend of Bamboo Stem Fiber and Baking Soda that helps fight stains naturally. ", "NO MORE PLAQUE - The mouthwash helps reduce plaque and freshen breath. Helps fight stains for whiter teeth. ", "SAFE FOR REGULAR USE - This dual-action mouthwash contains pure essential oils like Spearmint, Wintergreen, and Australian Tea Tree to keep the mouth feeling cool and fresh. "], "total_reviews": 131, "total_answered_questions": "", "customization_options": "", "seller_id": "A3GLCMFE5KXLDA", "seller_name": "SimplyNutrition", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01GGCZA7I", "category": "beauty", "query": "Mouthwash", "page": 12, "small_description_old": "About this item BUNDLE - This bundle includes one unit of 6.25 oz Desert Essence Whitening Plus Toothpaste and one unit of 16 fl oz Desert Essence Whitening Plus Mouthwash. BRIGHTER SMILE - The toothpaste helps fight stains naturally for a brighter smile. Helps reduce plaque buildup. Freshens breath. REFRESHING BREATH - Brush your way to a brighter smile and fresher breath with this exclusive blend of Bamboo Stem Fiber and Baking Soda that helps fight stains naturally. NO MORE PLAQUE - The mouthwash helps reduce plaque and freshen breath. Helps fight stains for whiter teeth. SAFE FOR REGULAR USE - This dual-action mouthwash contains pure essential oils like Spearmint, Wintergreen, and Australian Tea Tree to keep the mouth feeling cool and fresh."}, {"name": "whdz Telescopes for Kids Adults Astronomy Beginners 34-199X Magnification Travel Telescope with Portable Tripod for Professional Adults Kids Moon Star Spotting Scope", "product_information": {"Item Weight": "4.41 pounds", "Manufacturer": "whdz", "ASIN": "B08Q2YQ35N"}, "brand": "Visit the WHDZ Store", "brand_url": "https://www.amazon.com/stores/WHDZ/page/7C9DC6A4-9EFA-4954-8F51-90FBD0DD582E?ref_=ast_bln", "full_description": "Product Name: Astronomical TelescopeMagnification: 34-199XItem Number: H79408Objective lens diameter: 50MMProduct specifications: 121*53*153MMFocal length: 600MMExit pupil diameter: 4MMEyepiece: K9 K25Unit weight: 1.975kgcolor: blueExit pupil distance: 13.6MMmaterial: metalField of view: 1.3\u00b0Packing quantity: 6Carton size: 77*37*47cmPacked weight: 3.2kg", "pricing": "$235.09", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41LcZu5OCVL.jpg", "https://m.media-amazon.com/images/I/41qbmr3Z9zL.jpg", "https://m.media-amazon.com/images/I/51TR1T+n3rL.jpg", "https://m.media-amazon.com/images/I/51h1slISGyL.jpg", "https://m.media-amazon.com/images/I/41AvdWtqQfL.jpg", "https://m.media-amazon.com/images/I/418XC9ItdwL.jpg", "https://m.media-amazon.com/images/I/51W93KCIVkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Binoculars & Scopes \u203a Binoculars", "average_rating": "", "small_description": ["-50mm large aperture: the optical lens group is fully transparent coating, the light transmission rate is high, and the image is sharp and transparent. -360\u00b0 all-round rotation: it is convenient for children to observe objects from different angles. ", "-Full frontal viewing is convenient and fast: convert the original inverted video into a frontal image. It can be used for scenery/starry bird watching. ", "-Compass function: Bringing convenience for travel, whether it is camping, jungle exploration, stargazing, or watching the moon, and cultivate children's wild survival skills. ", "-Multi-layer broadband blue coating: reduce the light loss and make the details appear more clearly. ", "-Retractable aluminum alloy tripod: stable and durable, reinforced high-strength aluminum alloy telescopic tripod. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AHJNDN0HKPF7J", "seller_name": "WWFL", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08Q2YQ35N", "category": "electronics", "query": "Binoculars & Scopes", "page": 320, "small_description_old": "About this item\n \n-50mm large aperture: the optical lens group is fully transparent coating, the light transmission rate is high, and the image is sharp and transparent. -360\u00b0 all-round rotation: it is convenient for children to observe objects from different angles. -Full frontal viewing is convenient and fast: convert the original inverted video into a frontal image. It can be used for scenery/starry bird watching. -Compass function: Bringing convenience for travel, whether it is camping, jungle exploration, stargazing, or watching the moon, and cultivate children's wild survival skills. -Multi-layer broadband blue coating: reduce the light loss and make the details appear more clearly. -Retractable aluminum alloy tripod: stable and durable, reinforced high-strength aluminum alloy telescopic tripod."}, {"name": "Runhit 2 in 1 Men\u2019s Running Shorts 5\" Quick Dry Workout Shorts for Men with Pockets Gym Athletic Shorts", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 11 x 8 x 0.5 inches; 8.57 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n June 7, 2021", "ASIN\n \u200f": "\u200e\n B096RVPR34", "Best Sellers Rank": "#70,821 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#149 in Men's Running Shorts #353 in Men's Athletic Shorts", "#149 in Men's Running Shorts": "", "#353 in Men's Athletic Shorts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Runhit Store", "brand_url": "https://www.amazon.com/stores/Runhit/page/2CE2A4B5-B4E1-4DF7-BD0C-62FFF605F6F6?ref_=ast_bln", "full_description": "", "pricing": "$14.98$17.98", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31vRmESe2iL.jpg", "https://m.media-amazon.com/images/I/41r2SOO7qzS.jpg", "https://m.media-amazon.com/images/I/51S1fUBbD-S.jpg", "https://m.media-amazon.com/images/I/514thkj7rhS.jpg", "https://m.media-amazon.com/images/I/51bd0dUWEDS.jpg", "https://m.media-amazon.com/images/I/51mRXfantiS.jpg", "https://m.media-amazon.com/images/I/51vnTL7wC-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Shorts", "average_rating": 4.3, "small_description": ["88% Polyester, 12% Elastane ", "2 in 1 Running Shorts: Outer Layer Mens Running Shorts is 88% Polyester featuring quick dry and lightwight to keep you comfortable for workouts and training.Built-in 5 inch inseam compression shorts is 12% spandex featuring stretch and tight which can support muscle to improve performance and provide greater flexibility for additional flexibility. ", "Workout Short with Multi Phone Pocket : Running Shorts Men Built-in two side phone pocket makes your phone fit perfectly, In addition to the large pockets on both sides, we have added a back zip pocket, so you no longer worry about the storage of valuables such as keys and cards or others. ", "Elastic Waistband and Drawcord:Mens Workout Shorts featured elastic can perfect suit your waist. Drawcord ensures a comfortable fit and keeps gym athletic shorts from sliding down. ", "Unique Headphone Hole:Running Shorts Men With a unique headphone hole design that allows you to enjoy your music while you are exercising in the gym or workout in summer or winter. ", "Casual or Sports Shorts: Running Shorts perfect fit workout, gym, running,swim,fitness, fishing,training, basketball, jogging, exercise or other outdoor activities,daily wear, training, boxing, yoga and other outdoor or indoor activities etc. "], "total_reviews": 154, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B096RVPR34/ref=twister_B09B5RSY4Y", "value": "Black 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31HyEsQV+gL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096P72KMQ/ref=twister_B09B5RSY4Y", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/318X3eHHImL.jpg"}, {"is_selected": true, "url": null, "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31vRmESe2iL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B096P8NM88"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B096P8QZVG"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B096P77XMD"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B096P6YWK6"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B096P5VB5N"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B096P77XMD", "category": "fashion", "query": "Men's Shorts", "page": 25, "small_description_old": "100% Polyester 2 in 1 Running Shorts: Outer Layer Mens Running Shorts is 88% Polyester featuring quick dry and lightwight to keep you comfortable for workouts and training.Built-in 5 inch inseam compression shorts is 12% spandex featuring stretch and tight which can support muscle to improve performance and provide greater flexibility for additional flexibility. Workout Short with Multi Phone Pocket : Running Shorts Men Built-in two side phone pocket makes your phone fit perfectly, In addition to the large pockets on both sides, we have added a back zip pocket, so you no longer worry about the storage of valuables such as keys and cards or others. Elastic Waistband and Drawcord:Mens Workout Shorts featured elastic can perfect suit your waist. Drawcord ensures a comfortable fit and keeps gym athletic shorts from sliding down. Unique Headphone Hole:Running Shorts Men With a unique headphone hole design that allows you to enjoy your music while you are exercising in the gym or workout in summer or winter. Casual or Sports Shorts: Running Shorts perfect fit workout, gym, running,swim,fitness, fishing,training, basketball, jogging, exercise or other outdoor activities,daily wear, training, boxing, yoga and other outdoor or indoor activities etc."}, {"name": "Retro Manufacturing HB-116-117-37-73 Hermosa Direct-Fit Radio for Classic Vehicle (Black Face and Buttons and Chrome Bezel)", "product_information": {"Manufacturer": "\u200eRetroSound", "Brand": "\u200eRetro Manufacturing", "Model": "\u200eHB-116-117-37-73", "Item Weight": "\u200e4 pounds", "Product Dimensions": "\u200e4 x 5.38 x 2 inches", "Item model number": "\u200eHB-116-117-37-73", "Manufacturer Part Number": "\u200eHB-116-117-37-73", "ASIN": "B00VI88X7U", "Customer Reviews": {"ratings_count": 10, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#149,271 in Electronics (See Top 100 in Electronics) #1,277 in Car Audio Receivers"], "Date First Available": "April 1, 2015"}, "brand": "Visit the Retro Manufacturing Store", "brand_url": "https://www.amazon.com/stores/RetroManufacturing/page/9A5EAA62-A2C8-450A-BBCA-E8EFDD1B6E61?ref_=ast_bln", "full_description": "", "pricing": "$284.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41NgdU47PzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Car Electronics \u203a Car Audio \u203a Car Stereo Receivers", "average_rating": 5, "small_description": ["Bluetooth wireless connectivity for hands-free phone operation and wireless audio streaming ", "Built-In 25 watts x 4 channel power amplifier plus RCA pre-outs ", "Dual color (white or green) display ", "USB port plus two auxiliary inputs ", "Authentic push-button styling "], "total_reviews": 10, "total_answered_questions": 23, "model": "\u200eHB-116-117-37-73", "customization_options": "", "seller_id": "APCXIAF81D71I", "seller_name": "Retro Manufacturing, LLC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B00VI88X7U", "category": "electronics", "query": "AV Receivers & Amplifiers", "page": 102, "small_description_old": "About this item\n \nBluetooth wireless connectivity for hands-free phone operation and wireless audio streaming Built-In 25 watts x 4 channel power amplifier plus RCA pre-outs Dual color (white or green) display USB port plus two auxiliary inputs Authentic push-button styling \n \u203a See more product details"}, {"name": "Disney Mickey And Friends Happy Birthday Mickey Confetti T-Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n September 17, 2021", "Manufacturer\n \u200f": "\u200e\n Disney", "ASIN\n \u200f": "\u200e\n B09GL561XH", "Best Sellers Rank": "#529,414 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#18,844 in Boys' Novelty T-Shirts #19,825 in Girls' Novelty T-Shirts #33,162 in Women's Novelty T-Shirts", "#18,844 in Boys' Novelty T-Shirts": "", "#19,825 in Girls' Novelty T-Shirts": "", "#33,162 in Women's Novelty T-Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Disney", "brand_url": "https://www.amazon.com/Disney/b/ref=bl_sl_s_ap_web_18726768011?ie=UTF8&node=18726768011&field-lbr_brands_browse-bin=Disney", "full_description": "Join Mickey Mouse, his counterpart Minnie Mouse, his lovable dog, Pluto, and all his friends in their awesome adventures with these classic officially licensed Disney Mickey And Friends graphic tee shirts!", "pricing": "$22.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A1ntnF3PJOL.png", "https://m.media-amazon.com/images/I/417S+7cf-vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a T-Shirts", "average_rating": 4.2, "small_description": ["Officially Licensed Disney Mickey And Friends Apparel ", "21DNMC00218A-001 ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": 5, "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GL561XH?_encoding=UTF8&customId=B07HPYRS9G", "value": "Women", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GL561XH?_encoding=UTF8&customId=B07535YPSW", "value": "Youth", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1giWWMJxUL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GL561XH?_encoding=UTF8&customId=B0752XK16C", "value": "Baby Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1kMlF-tngS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GL561XH?_encoding=UTF8&customId=B0753779F2", "value": "Silver", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1mefQ2BdaL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GL561XH?_encoding=UTF8&customId=B07537TZ66", "value": "Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/C1ce8y0uOwS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GL561XH?_encoding=UTF8&customId=B075386ZN1", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B139gQIcJCS.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07537H64L"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07537TYTF"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07537HNMY"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B075384W58"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07537HNN5"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B075382QWX"}, {"is_selected": false, "is_available": false, "value": "2T", "asin": "B07HPX1WJM"}, {"is_selected": false, "is_available": false, "value": "3T", "asin": "B07HPYDCTG"}, {"is_selected": false, "is_available": false, "value": "4T", "asin": "B07535YPSW"}, {"is_selected": false, "is_available": false, "value": "X-Small", "asin": "B07537TYVF"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GL561XH", "category": "fashion", "query": "Men's T-Shirts", "page": 12, "small_description_old": "Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester Imported Machine Wash Officially Licensed Disney Mickey And Friends Apparel 21DNMC00218A-001 Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "Woomtree Fresh Wasabi Paste, 4.2 oz -Tube | Korean Food |", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.25 x 2.5 x 1.5 inches; 4.2 Ounces", "Manufacturer\n \u200f": "\u200e\n Woomtree", "ASIN\n \u200f": "\u200e\n B08RJ279HW", "Best Sellers Rank": "#65,848 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#23 in Wasabi", "#23 in Wasabi": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Woomtree Store", "brand_url": "https://www.amazon.com/stores/Authentic+taste+of+Korea+/page/3E371122-07C1-4A39-9821-A4B30BEA4BCB?ref_=ast_bln", "full_description": "", "pricing": "$9.50", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41eQHDKxLYL.jpg", "https://m.media-amazon.com/images/I/412wln8m43L.jpg", "https://m.media-amazon.com/images/I/51OaEqx-EmL.jpg", "https://m.media-amazon.com/images/I/41hHMAyvnJL.jpg", "https://m.media-amazon.com/images/I/51zw4yD3DvL.jpg", "https://m.media-amazon.com/images/I/51E2hEjjF6L.jpg", "https://m.media-amazon.com/images/I/51dYzmpBH+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Condiments & Salad Dressings \u203a Wasabi", "average_rating": 4.3, "small_description": ["Woomtree fresh wasabi paste with the largest market share in the Korean wasabi market. We use 41% of raw wasabi, and the spicy taste and aroma of wasabi are contained in this product as it is. This is a high-quality product with fresh grain and texture. ", "How do we eat it? You can enjoy it by adding sashimi and sushi or use it as a sauce for meat and grilled fish. ", "Made in Korea: We only provide products made in Korea using the highest quality raw materials. ", "The product is easy to use and hygienic because it uses a simple tube package. In addition, the small volume package (4.2oz) is easy to carry. ", "Storage method: Store in a cool and dry place to avoid direct sunlight. After opening, seal it and refrigerate it. "], "total_reviews": 57, "total_answered_questions": "", "customization_options": "", "seller_id": "ANVS88HE6E0QT", "seller_name": "Woomtree", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08RJ279HW", "category": "grocery", "query": "Meat & Seafood", "page": 364, "small_description_old": "About this item Woomtree fresh wasabi paste with the largest market share in the Korean wasabi market. We use 41% of raw wasabi, and the spicy taste and aroma of wasabi are contained in this product as it is. This is a high-quality product with fresh grain and texture. How do we eat it? You can enjoy it by adding sashimi and sushi or use it as a sauce for meat and grilled fish. Made in Korea: We only provide products made in Korea using the highest quality raw materials. The product is easy to use and hygienic because it uses a simple tube package. In addition, the small volume package (4.2oz) is easy to carry. Storage method: Store in a cool and dry place to avoid direct sunlight. After opening, seal it and refrigerate it."}, {"name": "Palmer's Mens Body/face Lotion 8.5 Ounce", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 1 x 1 x 1 inches; 10.55 Ounces", "Item model number\n \u200f": "\u200e\n 4580-6", "Department\n \u200f": "\u200e\n Men", "UPC\n \u200f": "\u200e\n 795827231040 010181045806", "Manufacturer\n \u200f": "\u200e\n Palmer's", "ASIN\n \u200f": "\u200e\n B087Y28XLM", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#20,543 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#23 in Foot Pumices #418 in Body Lotions", "#23 in Foot Pumices": "", "#418 in Body Lotions": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Palmer's Store", "brand_url": "https://www.amazon.com/stores/Palmers/page/2A7F24B4-0C89-44D2-A389-6C5AB9D9A788?ref_=ast_bln", "full_description": "Palmers men's Body/face Ltn 8.5 Oz.", "pricing": "$5.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41EDlwJbqjL.jpg", "https://m.media-amazon.com/images/I/51eNMrQ7agS.jpg", "https://m.media-amazon.com/images/I/41xthfdvSJL.jpg", "https://m.media-amazon.com/images/I/514LjbTa+OL.jpg", "https://m.media-amazon.com/images/I/51mBx9b+vzL.jpg", "https://m.media-amazon.com/images/I/51gq0kEZhnL.jpg", "https://m.media-amazon.com/images/I/31DHx7nD7ZS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Moisturizers \u203a Lotions", "average_rating": 4.7, "small_description": ["Palmer's Cocoa Butter Formula for men Contains pure cocoa butter and vitamin E to effectively combat rough, dry skin ", "This fast-absorbing moisturizer smoothens skin all over body and face ", "The fresh scent invigorates without overpowering ", "Paraben free ", "Palmer's is against animal testing "], "total_reviews": 534, "total_answered_questions": "", "customization_options": {"Scent": [{"is_selected": true, "url": null, "value": "Fresh", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41sMventjuS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B003USHXRC/ref=twister_B09KLG7RNG", "value": "butter", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4102mYUkoAL.jpg"}], "Size": [{"is_selected": true, "url": null, "value": "8.5 Fl Oz (Pack of 1)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B003USHXRC/ref=twister_B09KLG7RNG", "value": "10.6 Fl Oz (Pack of 1)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B087Y28XLM", "category": "beauty", "query": "Body Care", "page": 125, "small_description_old": "About this item Palmer's Cocoa Butter Formula for men Contains pure cocoa butter and vitamin E to effectively combat rough, dry skin This fast-absorbing moisturizer smoothens skin all over body and face The fresh scent invigorates without overpowering Paraben free Palmer's is against animal testing"}, {"name": "Old El Paso Hard and Soft Taco Kit, 12ct, 340g (3 pack) {Imported from Canada}", "product_information": {"Item Weight\n \u200f": "\u200e\n 1 Pounds", "Manufacturer\n \u200f": "\u200e\n ETC Unlimited", "ASIN\n \u200f": "\u200e\n B07SDSG3TT", "": ""}, "brand": "Brand: ETC Unlimited", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ETC+Unlimited", "full_description": "Enjoy the unmistakable crunch of Old El Paso Stand 'n Stuff Taco Shells and the softness of our tortillas, followed by the mouth-watering taste of deliciously seasoned beef, grated cheese, crisp lettuce and fresh tomatoes topped with Old El Paso Taco Sauce. Get together and enjoy Old El Paso Hard & Soft Taco Kit.", "pricing": "$49.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51Z+ZwfqfaL.jpg", "https://m.media-amazon.com/images/I/41Jolon2BLL.jpg", "https://m.media-amazon.com/images/I/51Fh7xGcWUL.jpg", "https://m.media-amazon.com/images/I/316jGYCxzGL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Fresh Meal Kits", "average_rating": "", "small_description": ["This is the combo pack of 3 Products. ", "DINNER: Add chicken or a meat alternative and toppings to make your taco night a balanced one ", "QUICK: Ready in 20 minutes ", "Simple: No artificial flavours or added colours ", "CONTAINS: 6 taco shells, 6 tortilla shells, mild taco sauce, and taco seasoning mix "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AMF1VGS564SD5", "seller_name": "caffeinecam", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07SDSG3TT", "category": "grocery", "query": "Fresh Meal Kits", "page": 27, "small_description_old": "About this item This is the combo pack of 3 Products. DINNER: Add chicken or a meat alternative and toppings to make your taco night a balanced one QUICK: Ready in 20 minutes Simple: No artificial flavours or added colours CONTAINS: 6 taco shells, 6 tortilla shells, mild taco sauce, and taco seasoning mix"}, {"name": "Rill Foods Tekoa Split Pea Soup Mix 16 oz", "product_information": "", "brand": "Brand: Rill Foods", "brand_url": "https://www.amazon.com/Rill-Foods/b/ref=bl_dp_s_web_8891554011?ie=UTF8&node=8891554011&field-lbr_brands_browse-bin=Rill+Foods", "full_description": "", "pricing": "$14.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51UPio02x+L.jpg", "https://m.media-amazon.com/images/I/41bf34X6fGL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Canned, Jarred & Packaged Foods \u203a Packaged Meals & Side Dishes \u203a Dry Soup Mixes", "average_rating": 4.5, "small_description": ["Made in a family owned business in Central Washington State ", "High quality Northwest ingredients, without artificial flavors, preservatives, or added MSG ", "Developed to retain the made from scratch quality; each package hand-processed ", "Easy for busy people to prepare ", "This is the all around wholesome Grandma used to make, made delicious by its simple healthy ingredients "], "total_reviews": 15, "total_answered_questions": "", "customization_options": "", "seller_id": "A3QT48C8JSC5GL", "seller_name": "Carter And Coles", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07L5T94C5", "category": "grocery", "query": "Meat Substitutes", "page": 94, "small_description_old": "About this item Made in a family owned business in Central Washington State High quality Northwest ingredients, without artificial flavors, preservatives, or added MSG Developed to retain the made from scratch quality; each package hand-processed Easy for busy people to prepare This is the all around wholesome Grandma used to make, made delicious by its simple healthy ingredients"}, {"name": "KINWAT 8 Pcs/Set Dental Flosser Pick Soft Elastic Massage Gingival Interdental Brush Massage Toothpick Toothbrush Floss Toiletry Kits", "product_information": {"Manufacturer\n \u200f": "\u200e\n KINWAT", "ASIN\n \u200f": "\u200e\n B07K23XNQN", "": ""}, "brand": "Brand: KINWAT", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=KINWAT", "full_description": "8 Pcs/Set Dental Flosser Pick Soft Elastic Massage Gingival Interdental Brush Massage Toothpick Toothbrush Floss Toiletry Kits", "pricing": "$22.09", "list_price": "", "availability_status": "Usually ships within 1 to 3 weeks.", "images": ["https://m.media-amazon.com/images/I/316iyF1Zx3L.jpg", "https://m.media-amazon.com/images/I/31Ain6Nb4UL.jpg", "https://m.media-amazon.com/images/I/31La7A3lVYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Dental Floss & Picks \u203a Dental Floss", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AE2GRLEKNGEOJ", "seller_name": "H2W PTY", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07K23XNQN", "category": "beauty", "query": "Dental Floss & Picks", "page": 87, "small_description_old": ""}, {"name": "Hen of the Woods Bourbon Barrel Smoked Peppercorn Meat Rub - 3.5 ounce - Seasoning for Meat, Pork, Poultry or Seafood", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4.88 x 1.85 x 1.73 inches; 3.5 Ounces", "UPC\n \u200f": "\u200e\n 857279006338", "Manufacturer\n \u200f": "\u200e\n Hen of the Woods Snacks", "ASIN\n \u200f": "\u200e\n B086VP8Q9T", "Country of Origin\n \u200f": "\u200e\n USA", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Hen of the Woods Store", "brand_url": "https://www.amazon.com/stores/HenoftheWoodsSnacks/page/A1F41B17-4950-4959-B4D9-A9EA7056EC8B?ref_=ast_bln", "full_description": "", "pricing": "$7.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41ELricpztL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.2, "small_description": ["Steakhouse Flavor: Once we discovered a black peppercorn that had been smoked with the bourbon barrel staves of Kentucky\u2019s most premier distilleries, we knew we had a to create a blend that we couldn\u2019t live without. We started with a base of Canadian steak seasoning and added the smoked peppercorn to elevate a classic to another level. ", "Super Versatile: Our chefs created this seasoning for more than just grilling your favorite cut of beef. It can be used in all facets of cooking: BBQ, smoker, grill, or a roast in the oven. ", "A Necessary Accessory: This spice blend will bring that peppery smoked wood flavor to your brisket, prime rib, turkey, pork, steaks, chicken, or burgers. Sprinkle it on your veggies or rub it on your chicken wings. Professionals and home cooks alike will be amazed at how simple this killer seasoning will elevate any dish. ", "Chef Crafted Blend: Founded by chefs, all our flavors and hand-blended herbs and spices are expertly crafted in our kitchen to produce a truly unique taste. To achieve our craveable flavors, we thought outside of the box and used our culinary background to focus on what it takes to make seasonings fantastic: flavor, texture, and the respectful treatment of quality ingredients. ", "All Natural: Made with all natural fresh ingredients, our seasonings are non-GMO, gluten free, and contain no artificial ingredients or preservatives. Proudly made in the USA. "], "total_reviews": 3, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "3.5 Ounce", "price_string": "$7.99", "price": 7.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09S1JNPT8/ref=twister_B09SVG2RL5?_encoding=UTF8&psc=1", "value": "10.5 Ounce", "price_string": "$15.99", "price": 15.99, "image": null}]}, "seller_id": "A38Q0XM9EPBDVO", "seller_name": "Hen of the Woods Snack Foods", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B086VP8Q9T", "category": "grocery", "query": "Meat & Seafood", "page": 16, "small_description_old": "About this item Steakhouse Flavor: Once we discovered a black peppercorn that had been smoked with the bourbon barrel staves of Kentucky\u2019s most premier distilleries, we knew we had a to create a blend that we couldn\u2019t live without. We started with a base of Canadian steak seasoning and added the smoked peppercorn to elevate a classic to another level. Super Versatile: Our chefs created this seasoning for more than just grilling your favorite cut of beef. It can be used in all facets of cooking: BBQ, smoker, grill, or a roast in the oven. A Necessary Accessory: This spice blend will bring that peppery smoked wood flavor to your brisket, prime rib, turkey, pork, steaks, chicken, or burgers. Sprinkle it on your veggies or rub it on your chicken wings. Professionals and home cooks alike will be amazed at how simple this killer seasoning will elevate any dish. Chef Crafted Blend: Founded by chefs, all our flavors and hand-blended herbs and spices are expertly crafted in our kitchen to produce a truly unique taste. To achieve our craveable flavors, we thought outside of the box and used our culinary background to focus on what it takes to make seasonings fantastic: flavor, texture, and the respectful treatment of quality ingredients. All Natural: Made with all natural fresh ingredients, our seasonings are non-GMO, gluten free, and contain no artificial ingredients or preservatives. Proudly made in the USA."}, {"name": "Twin Size Platform Bed for Kids Teens Adults, Metal Platform Bed Frame with Headboard and Footboard, 4 Wooden Feets, 2 Steel Legs, Metal Slats Support, No Box Spring Needed, Easy Assembly (Gray)", "product_information": {"Product Dimensions": "78.1 x 40.2 x 37.4 inches", "Manufacturer": "Anwick", "ASIN": "B09QHT6WKQ", "Date First Available": "January 15, 2022"}, "brand": "Visit the Anwick Store", "brand_url": "https://www.amazon.com/stores/Anwick/page/6D55DE02-4500-46EB-9158-49A40DDF8D12?ref_=ast_bln", "full_description": "Metal Twin Size Platform Bed has everything you could ask for in a centerpiece for the bedroom. A strong, bold metal frame and rich wood grain finish give it a clean yet handsome look that can complement your style : be it rustic, industrial, minimalistic or somewhere in-between! The bed is accented by a tall black metal frame with a metal slat foundation made to support your foam, latex, or spring mattress without a box spring. Main Features:Platform Bed Frame Heavy Duty; Rectangular Hollow out Design;Headboard, footboard, 14 steel slats includedNo Box Spring Needed;Twin Bed Weight capability: 300 lbs4 Solid Wood Feets and 2 Steel Legs to Support the Bed;Overall Size: 74.8\u201d x 39\u201d x 37.4\u201d,", "pricing": "$68.99", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51LOVof6RBS.jpg", "https://m.media-amazon.com/images/I/51K6PE-FOjS.jpg", "https://m.media-amazon.com/images/I/31-YCk4TofS.jpg", "https://m.media-amazon.com/images/I/41BSCezh6vS.jpg", "https://m.media-amazon.com/images/I/31jxLf-+ajS.jpg", "https://m.media-amazon.com/images/I/41S6HHd654S.jpg", "https://m.media-amazon.com/images/I/31eNW7Y+q8S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Bed Frames", "average_rating": "", "small_description": ["1.\u3010Sturdy Platform Bed Frame\u3011This platform bed frame is made of high-qualit ", "2.\u3010Elegant Platform Bed\u3011The headboard and footboard of our twin size are designed with hollowed out design, 14 mattress slats are made of sturdy hard steel to support life of mattress and ensure durability and support. The smooth lines add sense of modern to your room. Perfect for any bedroom or guest room. ", "3.\u3010Comfortable Design\u3011Each part of the bed frame is tightly held together and there is no spring box needed. The bed will not easily shake or make large noise. The overall bed frame design can easily match other furniture in your home and provide a dozy and sweet sleeping environment for you. ", "4.\u3010Storage Space\u3011The height from bed slats to floor is 10.8\" which is spacious enough to be a large storage space. You can put children's toys, suitcases or storage containers under your bed. This useful design can save your space and make your room look more serenely uncluttered. ", "5.\u3010Easy Assembly \u3011All parts, tools and instructions are shipped straight to your door in one efficiently packed box for simple set-up that takes less than an hour with family members. If there is any problem with the bed board, please contact us, we will solve your problem within 24 hours. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QX6WS79/ref=twister_B09QXHSW5Q?_encoding=UTF8&psc=1", "value": "Brown", "price_string": "$67.99", "price": 67.99, "image": "https://m.media-amazon.com/images/I/51sc8WgYLhS.jpg"}, {"is_selected": true, "url": null, "value": "Grey", "price_string": "$68.99", "price": 68.99, "image": "https://m.media-amazon.com/images/I/51LOVof6RBS.jpg"}]}, "seller_id": "AW5P2ZMU9V8E9", "seller_name": "Anwick", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QHT6WKQ", "category": "garden", "query": "Beds", "page": 193, "small_description_old": "About this item\n \n1.\u3010Sturdy Platform Bed Frame\u3011This platform bed frame is made of high-qualit 2.\u3010Elegant Platform Bed\u3011The headboard and footboard of our twin size are designed with hollowed out design, 14 mattress slats are made of sturdy hard steel to support life of mattress and ensure durability and support. The smooth lines add sense of modern to your room. Perfect for any bedroom or guest room. 3.\u3010Comfortable Design\u3011Each part of the bed frame is tightly held together and there is no spring box needed. The bed will not easily shake or make large noise. The overall bed frame design can easily match other furniture in your home and provide a dozy and sweet sleeping environment for you. 4.\u3010Storage Space\u3011The height from bed slats to floor is 10.8\" which is spacious enough to be a large storage space. You can put children's toys, suitcases or storage containers under your bed. This useful design can save your space and make your room look more serenely uncluttered. 5.\u3010Easy Assembly \u3011All parts, tools and instructions are shipped straight to your door in one efficiently packed box for simple set-up that takes less than an hour with family members. If there is any problem with the bed board, please contact us, we will solve your problem within 24 hours."}, {"name": "The Smokehouse Treat by Burgers' Smokehouse", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "UPC\n \u200f": "\u200e\n 773821667263", "Manufacturer\n \u200f": "\u200e\n Burgers' Smokehouse", "ASIN\n \u200f": "\u200e\n B01LA37T1S", "Best Sellers Rank": "#661,530 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#575 in Meat & Seafood Gifts", "#575 in Meat & Seafood Gifts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Burgers' Smokehouse Store", "brand_url": "https://www.amazon.com/stores/Burgers%27+Smokehouse/page/0AEFB3B3-F718-444C-9017-7BFD0B8B17D2?ref_=ast_bln", "full_description": "This pack offers fine smoked sausage and cheeses. It is great to serve to guests or to give as a gift for any occasion. Contains: One 12 oz. Smoked Ozark Sausage One 12 oz. Beef Sausage One 11 oz. Smoked Cheddar Cheese One 10 oz. Baby Swiss Cheese", "pricing": "$62.00", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/51aHD-sJ1FS.jpg", "https://m.media-amazon.com/images/I/51wF79IfbSL.jpg", "https://m.media-amazon.com/images/I/31Vq-3iRepL.jpg", "https://m.media-amazon.com/images/I/41PrrV5k9DL.jpg", "https://m.media-amazon.com/images/I/31oZy9X-KsL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Food & Beverage Gifts \u203a Meat & Seafood Gifts", "average_rating": 5, "small_description": ["The Best Cheese and Summer Sausages ", "Ready to Slice for Appetizers and Hor doeurves ", "Makes Entertaining Easy "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "ADYIY58L0SUY", "seller_name": "Burgers Smokehouse", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01LA37T1S", "category": "grocery", "query": "Meat & Seafood", "page": 249, "small_description_old": "The Best Cheese and Summer Sausages Ready to Slice for Appetizers and Hor doeurves Makes Entertaining Easy"}, {"name": "Hello Kitty Inspired 4pc Bright Smile Oral Hygiene Set! (1) Hello Kitty Soft Manual Toothbrush with Caps (1) Crest Kids Toothpaste Bundle Bonus Matching Mouth Wash Rinse Cup!", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7 x 3 x 3 inches; 1 Pounds", "UPC\n \u200f": "\u200e\n 716770949882", "Manufacturer\n \u200f": "\u200e\n MZB accessories", "ASIN\n \u200f": "\u200e\n B07S8JZJ6Y", "Best Sellers Rank": "#1,155,543 in Health & Household (See Top 100 in Health & Household)#2,272 in Children's Dental Care Products", "#2,272 in Children's Dental Care Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: PG, FIRELY", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=PG%2C+FIRELY", "full_description": "bundle with licensed products", "pricing": "$14.90", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/512iVYE5XnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Children's Dental Care", "average_rating": 4, "small_description": [""], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "AXVUVXYKXOBM4", "seller_name": "Zaham Discount", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07S8JZJ6Y", "category": "beauty", "query": "Children's Dental Care", "page": 206, "small_description_old": ""}, {"name": "LINDY 36920 0.5m DisplayPort to HDMI 10.2G Cable, Black", "product_information": {"Brand": "\u200eLindy", "Item model number": "\u200e36920", "Item Weight": "\u200e0.704 ounces", "Product Dimensions": "\u200e19.69 x 0.39 x 0.79 inches", "Item Dimensions LxWxH": "\u200e19.69 x 0.39 x 0.79 inches", "Color": "\u200eBlack", "Manufacturer": "\u200eLINDY", "ASIN": "\u200eB06Y44FL9J", "Is Discontinued By Manufacturer": "\u200eNo", "Date First Available": "\u200eMarch 22, 2018", "Customer Reviews": {"ratings_count": 31, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#15,865 in HDMI Cables"]}, "brand": "Brand: Lindy", "brand_url": "https://www.amazon.com/Lindy/b/ref=bl_dp_s_web_9237087011?ie=UTF8&node=9237087011&field-lbr_brands_browse-bin=Lindy", "full_description": "This cable allows you to connect your DisplayPort equipped computer to a 4K HDMI display or projector. Notes about audio support: Audio output over HDMI is only supported when the graphics card of the notebook or desktop computer supports audio output over DisplayPort. Several on-board graphics adapters such as Mobile Intel 4 Series Express Chipset in Notebooks (i.e. Dell E6400) do NOT support audio output over DisplayPort, even when HDMI support (Intel High Definition Audio HDMI Service) is installed for audio controllers. In such instances a separate audio connection has to be set up. 1 x LINDY DP to HDMI Adapter Cable", "pricing": "$17.31", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41wVN2QovbL.jpg", "https://m.media-amazon.com/images/I/41rbLNAC3LL.jpg", "https://m.media-amazon.com/images/I/416Z2qcr1qL.jpg", "https://m.media-amazon.com/images/I/313k+S5b+dL.jpg", "https://m.media-amazon.com/images/I/512eabGFEaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a HDMI Cables", "average_rating": 4.4, "small_description": ["Supports video-mirroring and extended desktop modes ", "Connectors: DisplayPort Male to HDMI Male ", "Compliant with DP 1.2 specification and HDMI 1.4a\u00a0 ", "Supports up to 3840 x 2160@30Hz 24 Bit Colour ", "2 year warranty "], "total_reviews": 31, "total_answered_questions": "", "model": "\u200e36920", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "0.5m", "price_string": "$17.31", "price": 17.31, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y42S3C5/ref=twister_B078HW4ZX5?_encoding=UTF8&psc=1", "value": "1m", "price_string": "$25.42", "price": 25.42, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y4535N4/ref=twister_B078HW4ZX5?_encoding=UTF8&psc=1", "value": "2m (6.56') - rca plugs", "price_string": "$27.64", "price": 27.64, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y42RVCG/ref=twister_B078HW4ZX5?_encoding=UTF8&psc=1", "value": "3m", "price_string": "$25.35", "price": 25.35, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0719H3H13/ref=twister_B078HW4ZX5?_encoding=UTF8&psc=1", "value": "5m", "price_string": "$36.09", "price": 36.09, "image": null}]}, "seller_id": "AP3VA1GJZM3EQ", "seller_name": "Amazon Global Store UK", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B06Y44FL9J", "category": "electronics", "query": "HDMI Cables", "page": 260, "small_description_old": "About this item\n \nSupports video-mirroring and extended desktop modes Connectors: DisplayPort Male to HDMI Male Compliant with DP 1.2 specification and HDMI 1.4a\u00a0 Supports up to 3840 x 2160@30Hz 24 Bit Colour 2 year warranty"}, {"name": "Urban CoCo Women's Floral Print Sleeveless Tank Top Maxi Dress", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 11.61 x 8.82 x 1.61 inches; 10.3 Ounces", "Item model number\n \u200f": "\u200e\n BGCY030HS", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n May 13, 2017", "ASIN\n \u200f": "\u200e\n B0723134D6", "Best Sellers Rank": "#66,740 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#277 in Women's Formal Dresses", "#277 in Women's Formal Dresses": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Urban CoCo Store", "brand_url": "https://www.amazon.com/stores/UrbanCoCo/page/4054C829-5B12-44AB-9023-867BDF972D65?ref_=ast_bln", "full_description": "", "pricing": "$19.86", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31BwMysLVDL.jpg", "https://m.media-amazon.com/images/I/31zVCUO+kKL.jpg", "https://m.media-amazon.com/images/I/31PDjiDWi9L.jpg", "https://m.media-amazon.com/images/I/310T+mrfbgL.jpg", "https://m.media-amazon.com/images/I/31Ogcfm5TBL.jpg", "https://m.media-amazon.com/images/I/314AcN7G-8L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Dresses \u203a Formal", "average_rating": 4.2, "small_description": ["Super soft and wash great, lightweight and comfortable, the pattern is done nicely,perfect fit ", "Floral print maxi dress features casual style, sexy scoop neck, floor-length ", "The dress's hemline fluttering gently with your moving,very charming body and tank top design,like a kind of beautiful scenery ", "Perfect maxi dress for formal party, wedding, banquet, dance ball, special occasion "], "total_reviews": 542, "total_answered_questions": 12, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B072FCNCGP"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B071485GZF"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B0716TYXTZ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B0725LD6Q5"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0723134D6/ref=twister_B07FZXC2TF", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/314-QrgFxTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ND2KVSV/ref=twister_B07FZXC2TF", "value": "Deep Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31weaCdEhkL.jpg"}, {"is_selected": true, "url": null, "value": "Ink Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31BwMysLVDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ND396VJ/ref=twister_B07FZXC2TF", "value": "Navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31OD5FNItnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098F2PVZR/ref=twister_B07FZXC2TF", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31gABPctZPS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0739SCW5Z/ref=twister_B07FZXC2TF", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31IRUUbLCML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098F1MXTW/ref=twister_B07FZXC2TF", "value": "Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31NOA1zM5cS.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B072FCNCGP", "category": "fashion", "query": "Women's Dresses", "page": 66, "small_description_old": "Super soft and wash great, lightweight and comfortable, the pattern is done nicely,perfect fit Floral print maxi dress features casual style, sexy scoop neck, floor-length The dress's hemline fluttering gently with your moving,very charming body and tank top design,like a kind of beautiful scenery Perfect maxi dress for formal party, wedding, banquet, dance ball, special occasion"}, {"name": "Romwe Women's Ruffle Hem Beach Cover Up Chiffon Swimsuit Wrap Skirts", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 14 x 10.5 x 0.5 inches; 3.53 Ounces", "Item model number\n \u200f": "\u200e\n 77-swCV2110203227070207-S", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 7, 2022", "ASIN\n \u200f": "\u200e\n B09N3CDKGV", "Best Sellers Rank": "#2,692,773 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#8,531 in Women's Swimwear Cover Ups", "#8,531 in Women's Swimwear Cover Ups": ""}, "brand": "Visit the ROMWE Store", "brand_url": "https://www.amazon.com/stores/ROMWE/page/FE926575-FA23-4AEC-818A-8B8C21E9D239?ref_=ast_bln", "full_description": "Size Chart: Small\u2014\u2014Length:29.5\",Waist Size:26.8\"/ Medium\u2014\u2014Length:30.3\",Waist Size:28.3\"/ Large\u2014\u2014Length:31.1\",Waist Size:30.7\"/", "pricing": "$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31zDNXxvCsL.jpg", "https://m.media-amazon.com/images/I/31-gGIBCVDL.jpg", "https://m.media-amazon.com/images/I/31YXnSbChLL.jpg", "https://m.media-amazon.com/images/I/31vKhnRAuyL.jpg", "https://m.media-amazon.com/images/I/41YCD4HjQtL.jpg", "https://m.media-amazon.com/images/I/315xuC+gZwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Swimsuits & Cover Ups \u203a Cover-Ups", "average_rating": "", "small_description": ["Fabric: Soft fabric, comfortable and skin friendly ", "Design: Sheer chiffon, asymmetrical hem, wrap side ", "Occasion: Perfect for summer, swimwear, beachwear, beach party, pool party, SPA, vacation ", "Match: Great for womens bikini, swimwear, swimsuits, beachwear, bathing suits, monokini, tankini ", "Size: Please refer to the size chart as below(not amazon size) "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09N3CDKGV"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09N3DDKT9"}], "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09N3CDKGV", "category": "fashion", "query": "Women's Swimsuits & Cover Ups", "page": 32, "small_description_old": "95% Polyester, 5% Elastane Tie closure Fabric: Soft fabric, comfortable and skin friendly Design: Sheer chiffon, asymmetrical hem, wrap side Occasion: Perfect for summer, swimwear, beachwear, beach party, pool party, SPA, vacation Match: Great for womens bikini, swimwear, swimsuits, beachwear, bathing suits, monokini, tankini Size: Please refer to the size chart as below(not amazon size)"}, {"name": "SWAGOFKGys Travel Toothbrushes\uff0c Double Side Tongue Cleaner Brush for Tongue Cleaning Oral Care Tool Silicone Tongue Scraper Toothbrush Fresh Breath (Color : Yellow)", "product_information": {"Item Weight": "1.32 pounds", "Department": "Unisex-adult", "Manufacturer": "SWAGOFKGys", "ASIN": "B09MW563KN", "Country of Origin": "China"}, "brand": "Brand: SWAGOFKG", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SWAGOFKG", "full_description": "Color: blue yellow pink greenMaterial: PP+ TPRBrush: NylonFunction: Tongue cleaning", "pricing": "$22.90", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/219QkIeEtLL.jpg", "https://m.media-amazon.com/images/I/31xF9CEDXkL.jpg", "https://m.media-amazon.com/images/I/21SZSeMpWeL.jpg", "https://m.media-amazon.com/images/I/31d3aAsLrXL.jpg", "https://m.media-amazon.com/images/I/31dvRXNKncL.jpg", "https://m.media-amazon.com/images/I/3186mNQGTBL.jpg", "https://m.media-amazon.com/images/I/41YAtcoOp+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothbrushes & Accessories \u203a Manual Toothbrushes", "average_rating": "", "small_description": ["\u25a0Regular and thorough oral hygiene Is as essential during periods of travel as it is when at home. ", "\u25a0HIGH DENSITY SOFT BRUSH FOR TONGUE CLEANNING ", "\u25a0FOOD GRADE SILICONE TONGUE SCRAPER ADD NANO SILVER ", "\u25a0Tongue Scrape Combo Dot-shaped particle arc blades comfortable ", "\u25a0Clean COMFORTABLE ELASTIC HANDLE Flexible neck soft and plastic ergonomic "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09MW54SN4/ref=twister_B09MW4L9YV?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$22.90", "price": 22.9, "image": "https://m.media-amazon.com/images/I/219l3f1OO0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MW4WH5S/ref=twister_B09MW4L9YV?_encoding=UTF8&psc=1", "value": "Green", "price_string": "$22.90", "price": 22.9, "image": "https://m.media-amazon.com/images/I/21Gs7Q2PeuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MW4BQDV/ref=twister_B09MW4L9YV?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "$22.90", "price": 22.9, "image": "https://m.media-amazon.com/images/I/21ydb94EhQL.jpg"}, {"is_selected": true, "url": null, "value": "Yellow", "price_string": "$22.90", "price": 22.9, "image": "https://m.media-amazon.com/images/I/219QkIeEtLL.jpg"}]}, "seller_id": "ACLWCF65WY47X", "seller_name": "SANMINGSHIMEILIEQUXIYUANCHAZHUANG", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MW563KN", "category": "beauty", "query": "Tongue Cleaners", "page": 25, "small_description_old": "\u25a0Regular and thorough oral hygiene Is as essential during periods of travel as it is when at home. \u25a0HIGH DENSITY SOFT BRUSH FOR TONGUE CLEANNING \u25a0FOOD GRADE SILICONE TONGUE SCRAPER ADD NANO SILVER \u25a0Tongue Scrape Combo Dot-shaped particle arc blades comfortable \u25a0Clean COMFORTABLE ELASTIC HANDLE Flexible neck soft and plastic ergonomic"}, {"name": "Best Choice Products Tufted Faux Leather 3-Seat L-Shape Sectional Sofa Couch Set w/Chaise Lounge, Ottoman Coffee Table Bench, Black", "product_information": {"Product Dimensions": "84.25 x 56 x 33 inches", "Item Weight": "93.9 pounds", "Manufacturer": "Best Choice Products", "ASIN": "B07G4HJR5V", "Item model number": "SKY4554", "Customer Reviews": {"ratings_count": 1794, "stars": "3.8 out of 5 stars"}, "Best Sellers Rank": ["#9,978 in Automotive (See Top 100 in Automotive) #3 in Powersports Knee & Shin Protection"], "Is Discontinued By Manufacturer": "No", "Date First Available": "April 11, 2018"}, "brand": "Visit the Best Choice Products Store", "brand_url": "https://www.amazon.com/stores/BestChoiceProducts/page/CA9B1139-406C-4CAE-B77E-5F0B3096C8E0?ref_=ast_bln", "full_description": "", "pricing": "$699.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41bOit1eOKL.jpg", "https://m.media-amazon.com/images/I/41oTi0uaWJL.jpg", "https://m.media-amazon.com/images/I/51G7pDq3GeL.jpg", "https://m.media-amazon.com/images/I/41mtSDO-nyL.jpg", "https://m.media-amazon.com/images/I/41uRQBAXjFL.jpg", "https://m.media-amazon.com/images/I/41hRpkaGIFL.jpg", "https://m.media-amazon.com/images/I/41jE8UWTldL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Automotive \u203a Motorcycle & Powersports \u203a Protective Gear \u203a Knee & Shin Protection", "average_rating": 3.8, "small_description": ["MODERN STYLE: Stylish L-shaped sectional sofa is made with a modern-contemporary, faux leather design that will complement any living space ", "MODULAR DESIGN: Matching ottoman bench can be used to kick your feet up for relaxation or pushed against the sofa to create a large chaise lounger ", "COMFORTABLE: Soft foam cushioning and supple faux leather makes this set a viable lounging option for hours of comfort ", "BUILT TO LAST: Made with durability in mind, this set's material is easy to clean, helping to ensure years of service with limited wear-and-tear ", "OVERALL DIMENSIONS: 84.25\"(L) x 56\"(W) x 33\"(H); Weight Capacity: 600 lbs.; Ships and arrives in 2 separate boxes. Delivery times may vary per box. "], "total_reviews": 1794, "total_answered_questions": "", "model": "SKY4554", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$699.99", "price": 699.99, "image": "https://m.media-amazon.com/images/I/41bOit1eOKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08679D6WD/ref=twister_B07VGBCV63?_encoding=UTF8&psc=1", "value": "Brown", "price_string": "$679.99", "price": 679.99, "image": "https://m.media-amazon.com/images/I/41jTo3nH4BS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07G4GFRGB/ref=twister_B07VGBCV63?_encoding=UTF8&psc=1", "value": "White", "price_string": "$649.99", "price": 649.99, "image": "https://m.media-amazon.com/images/I/410B+8Vuc4L.jpg"}]}, "seller_id": "A2GUMCXR7HBXM2", "seller_name": "BestChoiceproducts", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07G4HJR5V", "category": "garden", "query": "Living room Sets", "page": 7, "small_description_old": "About this item\n \nMODERN STYLE: Stylish L-shaped sectional sofa is made with a modern-contemporary, faux leather design that will complement any living space MODULAR DESIGN: Matching ottoman bench can be used to kick your feet up for relaxation or pushed against the sofa to create a large chaise lounger COMFORTABLE: Soft foam cushioning and supple faux leather makes this set a viable lounging option for hours of comfort BUILT TO LAST: Made with durability in mind, this set's material is easy to clean, helping to ensure years of service with limited wear-and-tear OVERALL DIMENSIONS: 84.25\"(L) x 56\"(W) x 33\"(H); Weight Capacity: 600 lbs.; Ships and arrives in 2 separate boxes. Delivery times may vary per box."}, {"name": "Studio Outback Pillow Covers Pillow Cover Set of 2 Throw Pillow Covers 18x18 Throw Pillows Embroidered Pillow Covers Pillows Decorative Pillow Covers Bedroom Decor Farmhouse Decor House D\u00e9cor", "product_information": {"Package Dimensions": "14.45 x 12.09 x 1.65 inches", "Item Weight": "1.09 pounds", "Manufacturer": "STUDIO OUTBACK", "ASIN": "B09HKZS7LV", "Country of Origin": "India", "Item model number": "1", "Best Sellers Rank": ["#3,603,501 in Home & Kitchen (See Top 100 in Home & Kitchen) #58,348 in Throw Pillow Covers"], "Fabric Type": "Cotton", "Batteries Required?": "No"}, "brand": "Brand: STUDIO OUTBACK", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=STUDIO+OUTBACK", "full_description": "Invest in home decor to make your home happier! Grab a comfy-cosy, crafty cushion to decorate and soften your interior design.", "pricing": "$24.99", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51yN4Stox7L.jpg", "https://m.media-amazon.com/images/I/51GFpIp6myL.jpg", "https://m.media-amazon.com/images/I/51QYrvnJONL.jpg", "https://m.media-amazon.com/images/I/51wQHrtT-GL.jpg", "https://m.media-amazon.com/images/I/518++oTLUFL.jpg", "https://m.media-amazon.com/images/I/51QzEHLpHQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": "", "small_description": ["Cotton ", "STYLE : This throw pillow adds a contemporary look to your life. A combination of embroidery, complementary colors and unique texture is just what your space needs\u00a0 ", "FABRIC: The cushion cover is made of high quality textured cotton. The fabric is sturdy and durable, not easily breaking or tearing while having a soft skin-friendly texture ", "SIZE: 18 x 18 inches/ 45 cm x 45 cm (1-2 cm deviation as these are handmade). Only cushion cover is sold, INSERT ARE NOT INCLUDED. These beautiful pillowcases is suitable for home decor, couch, sofa, chair, bed, car, party, hotel, office, cafe decor\u00a0 ", "EXQUISITE DECORATION: The Bright and Classic pillow covers are a great way to add beautiful color to the home when you put them on your existing couch. They make perfect gifts as well.\u00a0 "], "total_reviews": "", "total_answered_questions": "", "model": "1", "customization_options": {"Size": null, "Color": [{"is_selected": true, "url": null, "value": "Blue Combo", "price_string": "$24.99", "price": 24.99, "image": "https://m.media-amazon.com/images/I/51yN4Stox7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HL26XNT/ref=twister_B09HL1JXSQ?_encoding=UTF8&psc=1", "value": "Blue and Brown", "price_string": "$24.99", "price": 24.99, "image": "https://m.media-amazon.com/images/I/51qewDMjIdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HL2MF4S/ref=twister_B09HL1JXSQ?_encoding=UTF8&psc=1", "value": "Green and Beige", "price_string": "$24.99", "price": 24.99, "image": "https://m.media-amazon.com/images/I/518xe8U6cBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HL146GQ/ref=twister_B09HL1JXSQ?_encoding=UTF8&psc=1", "value": "Multicolor", "price_string": "$24.99", "price": 24.99, "image": "https://m.media-amazon.com/images/I/51SNk+woo3L.jpg"}]}, "seller_id": "A1GRMFVTC0DPL0", "seller_name": "Outback Studio", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09HKZS7LV", "category": "garden", "query": "Decorative Pillows", "page": 378, "small_description_old": "About this item Cotton STYLE : This throw pillow adds a contemporary look to your life. A combination of embroidery, complementary colors and unique texture is just what your space needs\u00a0 FABRIC: The cushion cover is made of high quality textured cotton. The fabric is sturdy and durable, not easily breaking or tearing while having a soft skin-friendly texture SIZE: 18 x 18 inches/ 45 cm x 45 cm (1-2 cm deviation as these are handmade). Only cushion cover is sold, INSERT ARE NOT INCLUDED. These beautiful pillowcases is suitable for home decor, couch, sofa, chair, bed, car, party, hotel, office, cafe decor\u00a0 EXQUISITE DECORATION: The Bright and Classic pillow covers are a great way to add beautiful color to the home when you put them on your existing couch. They make perfect gifts as well."}, {"name": "iDealBed Luxe Series iQ5 Hybrid Luxury Plush Mattress 4i Custom Adjustable Bed Set, Wireless, Massage, Nightlight, Zero-Gravity, Anti-Snore, Memory Pre-Sets (Queen)", "product_information": {"Country of Origin": "\u200eUSA", "Item model number": "\u200eIQ5-LXPL-4IS-QN", "Is Discontinued By Manufacturer": "\u200eNo", "ASIN": "B07GRP1WCD", "Best Sellers Rank": ["#6,083,399 in Home & Kitchen (See Top 100 in Home & Kitchen) #49,580 in Bedroom Furniture"], "Date First Available": "October 10, 2017"}, "brand": "Visit the iDealBed Store", "brand_url": "https://www.amazon.com/stores/iDealBed/page/0E7AFA38-3C15-46FC-94F2-8E64C65A0C52?ref_=ast_bln", "full_description": "Prepare to experience the latest advancements in luxury sleep. We\u2019ve combined the newest innovations in iDeal Technology, engineering a mattress that provides the perfect blend of comfort and support for optimal sleep. The iDeal Smart Temp Soft Knit Luxury cover continuously draws heat away from your body allowing for an optimal temperature on the surface. iDeal Sense Gel Foam and iDeal Tech Liquid Gel Memory Foam produce an everlasting cooling sensation which prevents the mattress from sleeping hot. Using our iDeal Contour Dual Response Pocketed Coils, the iDealBed Luxe Series iQ5 Hybrid Luxury Plush Mattress provides the ultimate level of support, eliminating pressure points and sleepless nights. The iDeal Smart Adapt Foam allows for a buoyant floating feel effectively alleviating all pressure points. Designed, Developed, and Manufactured in the U.S.A Scientifically Engineered for Optimal Sleep A True Floating Feel for No Pressure Points iDeal Smart Adapt Foams adjust for Comfort in any sleep position Temperature Regulation Technology to keep the Mattress cool for deep sleep iDeal Smart Adapt Foams adjust for Comfort Certi-PUR US and Oeko-Tex 100 Certified Compatible with Adjustable Beds, Box Springs, Slatted Frame, or on the Floor Pair with an iDealBed Adjustable Bed for the Ultimate Sleep System Medium Soft Floating Comfort Level 120 Day Sleep Trial The iDealBed 4i Custom is the pinnacle of performance, combining perfectly executed precision and elegance into a single design. After years of research and development, meticulous craftsmanship has led to the creation of a modern engineering marvel unlike anything on the market. The folded design concept and simple 2-step assembly process have been created with the consumer in mind. Innovative foam padding added into the upper deck, increases structural support and extends the life-span of any mattress. The iDealBed 4i includes state-of-the-art features that allow full customization in the bedroom", "pricing": "$1,899.95", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41bCeewNbeL.jpg", "https://m.media-amazon.com/images/I/41LOkqcy4HL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture", "average_rating": "", "small_description": ["iDealBed Engineered Hybrid Construction with Specialty Smart Foams and Adaptive Response Pocketed Coils for Optimal Sleep with Temperature Regulation, Adaptive Support, Pressure relief, and Comfort. Scientifically Developed for the Best Sleep Enhance comfort and sleep with Full articulation which allows the head to be adjusted up to 70\u00b0 and the foot up to 45\u00b0 ", "Full Featured Ergonomic Wireless Back-Lit Remote with 18 Buttons, 3 Pre-set positions Including Zero-Gravity, Anti-Snore, and Flat Button, 2 Programmable Position Memory Buttons ", "Ultra-Quiet Leggett & Platt Power Motors with 850 Lbs Capacity Per Unit, Zero Clearance Design made to fit inside Existing Bed Frame ", "Full body massage with 3 intensity levels, 4 modes including wave, pulse and constant with a 10 to 30-minute timer option "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eIQ5-LXPL-4IS-QN", "customization_options": "", "seller_id": "A3UJQ2NI90PCNR", "seller_name": "DealBeds", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07GRP1WCD", "category": "garden", "query": "Mattresses", "page": 178, "small_description_old": "iDealBed Engineered Hybrid Construction with Specialty Smart Foams and Adaptive Response Pocketed Coils for Optimal Sleep with Temperature Regulation, Adaptive Support, Pressure relief, and Comfort. Scientifically Developed for the Best Sleep Enhance comfort and sleep with Full articulation which allows the head to be adjusted up to 70\u00b0 and the foot up to 45\u00b0 Full Featured Ergonomic Wireless Back-Lit Remote with 18 Buttons, 3 Pre-set positions Including Zero-Gravity, Anti-Snore, and Flat Button, 2 Programmable Position Memory Buttons Ultra-Quiet Leggett & Platt Power Motors with 850 Lbs Capacity Per Unit, Zero Clearance Design made to fit inside Existing Bed Frame Full body massage with 3 intensity levels, 4 modes including wave, pulse and constant with a 10 to 30-minute timer option \n \u203a See more product details"}, {"name": "Axxess AALC Remote RCA Level Controller (Discontinued by Manufacturer)", "product_information": {"Item Weight": "\u200e2.4 ounces", "Product Dimensions": "\u200e1.5 x 3 x 75 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eAALC", "Batteries": "\u200e2 AA batteries required.", "Is Discontinued By Manufacturer": "\u200eNo", "Height (inches)": "\u200e1.4 inches", "Width (inches)": "\u200e3 inches", "Weight": "\u200e0.15 Pounds", "ASIN": "B003FPD3IS", "Customer Reviews": {"ratings_count": 1240, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#682 in Remote Controls (Electronics)"], "Date First Available": "April 6, 2010"}, "brand": "Brand: AXXESS", "brand_url": "https://www.amazon.com/AXXESS/b/ref=bl_dp_s_web_21423200011?ie=UTF8&node=21423200011&field-lbr_brands_browse-bin=AXXESS", "full_description": "ash Mount Amplifier Level Control for Volume Adjustment", "pricing": "$6.91", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31VIwKmmpOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": 4.5, "small_description": ["Dash Mount Amplifier Level Control for Volume Adjustment ", "Can Adjust the Amplifier Gain While Driving.Mounting tabs for convenient mounting locations ", "Perfect for Balancing the System to Change Music Styles ", "Connects through RCA Level Inputs and Outputs ", "Ideal for bass control or front to rear volume control between amps ", "Remote level control can be used to control the volume of an amplified hard wire to it "], "total_reviews": 1240, "total_answered_questions": 47, "model": "\u200eAALC", "customization_options": {"Product Packaging": null}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B003FPD3IS", "category": "electronics", "query": "VCRs", "page": 275, "small_description_old": "Dash Mount Amplifier Level Control for Volume Adjustment Can Adjust the Amplifier Gain While Driving.Mounting tabs for convenient mounting locations Perfect for Balancing the System to Change Music Styles Connects through RCA Level Inputs and Outputs Ideal for bass control or front to rear volume control between amps Remote level control can be used to control the volume of an amplified hard wire to it Ideal for bass control or front to rear volume control between amps \n \u203a See more product details"}, {"name": "NIZYH Mini Portable Led Projector, Full HD Home Theater Movie Projector Compatible TV Stick, Laptop", "product_information": {"Item Weight": "0.035 ounces", "Department": "Unisex-adult", "Manufacturer": "shuma", "ASIN": "B09RZRQVGT", "Country of Origin": "China", "Form Factor": "Portable"}, "brand": "Brand: NIZYH", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=NIZYH", "full_description": "Specifications:Specifications:TFT LCD imaging systemVoltage: 12 V/1.5AMaterial: ABSBrightness: 13 LumensLamp: LEDPower: 16WLens:F=60Projection lens: fixed focus lensProjector distance\uff1a60-400cmAspect ratio: 4:3/16:9Color: 16.7KContrast: 400:1Resolution: 320 * 240Support resolution: 1920*1080Light source life: 20,000 hoursProjection picture size: 15--110 inchInput:USB/TF/AV/HDMI/IR/5V-2A/12V-1.5AOutput: 2.5mm earphoneSystem: MultimediaPlug type: US,EU,UKPower: 20W(Max)The light casts amazing colored circular lights on the wall, ceiling and floor.", "pricing": "$383.26", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41yhKYG18+L.jpg", "https://m.media-amazon.com/images/I/41aYNZWWJTL.jpg", "https://m.media-amazon.com/images/I/51zuQAS+xyL.jpg", "https://m.media-amazon.com/images/I/51OOQpW7u6L.jpg", "https://m.media-amazon.com/images/I/41TxRxPgDAL.jpg", "https://m.media-amazon.com/images/I/41pquQM7MfL.jpg", "https://m.media-amazon.com/images/I/41GtOkQ4hCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Video Projectors", "average_rating": "", "small_description": ["Support highest Resolution 1080P. ", "Light and portable, easy to take. Smallest size SMP in the word, mini. ", "Short-focus lens, the shortest projection, distance is 60-400cm only, suitable for broader situation. Multimedia system, high efficiency, simple, easy to operate it, super audio&video decoding 1080P support. ", "This high definition portable LCD Projector is specially designed for home theater, business conference, entertainment, education training, etc.. It is your outdoor camping entertainment playmate. ", "Support USB/TF/AV/HDMI/IR input. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2TEH27U763MQJ", "seller_name": "ZXJdedian", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RZRQVGT", "category": "electronics", "query": "Projectors", "page": 130, "small_description_old": "About this item\n \nSupport highest Resolution 1080P. Light and portable, easy to take. Smallest size SMP in the word, mini. Short-focus lens, the shortest projection, distance is 60-400cm only, suitable for broader situation. Multimedia system, high efficiency, simple, easy to operate it, super audio&video decoding 1080P support. This high definition portable LCD Projector is specially designed for home theater, business conference, entertainment, education training, etc.. It is your outdoor camping entertainment playmate. Support USB/TF/AV/HDMI/IR input."}, {"name": "Billy Bob Replacement Thermal Adhesive Fitting Beads for Fake Teeth 2 Packages", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 3.94 x 2.83 x 0.43 inches; 0.32 Ounces", "Item model number\n \u200f": "\u200e\n BHBUSAZIN027904", "UPC\n \u200f": "\u200e\n 685646840014", "Manufacturer\n \u200f": "\u200e\n Billy Bob Products", "ASIN\n \u200f": "\u200e\n B00M777566", "Best Sellers Rank": "#38,658 in Health & Household (See Top 100 in Health & Household)#46 in Denture Adhesives", "#46 in Denture Adhesives": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Instant Smile Store", "brand_url": "https://www.amazon.com/stores/Instant+Smile/page/07F166CB-73E9-4B60-A926-E586B6D549A5?ref_=ast_bln", "full_description": "Fitting Instructions for teeth: Do not use over braces or caps! 1. Empty the packet of plastic fitting beads (white Beads) into a cup of very hot water. 2. Once the fitting plastic turns clear, remove with a metal spoon. 3. Form the clear fitting plastic into a \u201cworm\u201d shape with your fingers. 4. Press the \u201cclear worm\u201d onto the back wall of the teeth. If there are anchor holes in the gums, try to get some of the fitting material into the holes to help secure it. 5. In front of a mirror, use both hands and gently ease the teeth over your normal teeth. Use your thumbs to \"tuck\" the excess fitting plastic behind your teeth. 6. Once the fitting plastic begins to harden, gently ease down and remove. Do not allow the fitting plastic to fully harden around your teeth. If you are not happy with the fit, reheat and remold.", "pricing": "$4.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41bi0l9Pe9L.jpg", "https://m.media-amazon.com/images/I/41gpdhfdu-L.jpg", "https://m.media-amazon.com/images/I/51heFBvRiuL.jpg", "https://m.media-amazon.com/images/I/51Lzua7MSAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Denture Care \u203a Adhesives", "average_rating": 3.8, "small_description": ["Thermal Fitting Beads - Soften in Hot Water (Beads begin to soften at 130\u00ba F) ", "Used for all fake teeth styles or temporary teeth fixes ", "Molds in minutes! Can be used multiple times until you get the perfect fit ", "Works great for any Billy Bob Teeth/Instant Smile Flex products. ", "See instructional photos for more information "], "total_reviews": 1381, "total_answered_questions": 26, "customization_options": "", "seller_id": "A1LB3L8P2LV9VX", "seller_name": "Blue Frog Inc", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00M777566", "category": "beauty", "query": "Denture Care", "page": 30, "small_description_old": "Thermal Fitting Beads - Soften in Hot Water (Beads begin to soften at 130\u00ba F) Used for all fake teeth styles or temporary teeth fixes Molds in minutes! Can be used multiple times until you get the perfect fit Works great for any Billy Bob Teeth/Instant Smile Flex products. See instructional photos for more information"}, {"name": "Bass and Treble HiFi Headphone Amplifier, mm Stereo Earphone 32 \u03a9 90DB -40\u00b0C~60\u00b0C Metal for Mobile Phone", "product_information": {"Item Weight": "1.06 ounces", "ASIN": "B09J8772MN", "Date First Available": "October 12, 2021", "Manufacturer": "Tgoon"}, "brand": "Brand: Tgoon", "brand_url": "https://www.amazon.com/Tgoon/b/ref=bl_dp_s_web_23494029011?ie=UTF8&node=23494029011&field-lbr_brands_browse-bin=Tgoon", "full_description": "Condition: 100% Brand NewItem Type: Headphone AmplifierMaterial: metalColor: as picture shownWeight: approx. 27gOutput power: Maximum: 300 mw * 2/16\u03a9Frequency response: 2-27KHZSignal-to-noise ratio: 90DBDynamic range: 90DBSeparation: 70DBDistortion: \u22640.006%Input impedance: 32 \u03a9Output impedance: \u2264300\u03a9Operating temperature: -40\u00b0C~60\u00b0CStorage temperature: -40\u00b0C~85\u00b0CStorage humidity: 10%~90%Lithium battery: 180mah for 15 hoursProtection: battery protection, over current protection, over voltage protection, short circuit protection", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31EIcC1QXKL.jpg", "https://m.media-amazon.com/images/I/514gYsKWuZL.jpg", "https://m.media-amazon.com/images/I/51a8CLUhLjL.jpg", "https://m.media-amazon.com/images/I/51aAov5MNVL.jpg", "https://m.media-amazon.com/images/I/41dZ5OMY2DL.jpg", "https://m.media-amazon.com/images/I/41zRkGCJ8XS.jpg", "https://m.media-amazon.com/images/I/311QUpkWlDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Headphone Accessories \u203a Amps", "average_rating": "", "small_description": ["Make up for music high frequency dark, low frequency weak characteristics, through the sound adjustment technology, improve the phone audio sharp, noise ear hearing sense. ", "Adopting in car audio system and home audio system, as a preamplifier, it has more low frequency shock and better rhythm. ", "Mobile game: built-in 3D sound field technology, sound field positioning ability is powerful, can better achieve 3D sound effect, and support headset microphone conversation. ", "Support Music appreciation, SD05PRO powerful thrust, excellent sound quality performance, can better play the characteristics of high-quality headphones, make the sound to achieve a higher level of performance. ", "Mobile phone because of the cost of the architecture and limitation, audio output power was only about 5 mw, the machine can make up for the inadequacy of mobile audio output power, the audio output power up to 300 mw @ 16 \u03a9, get a better dynamic response and output sound pressure, can play a better performance of the high quality headphones. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09J8772MN", "category": "electronics", "query": "Receivers & Amplifiers", "page": 152, "small_description_old": "Make up for music high frequency dark, low frequency weak characteristics, through the sound adjustment technology, improve the phone audio sharp, noise ear hearing sense. Adopting in car audio system and home audio system, as a preamplifier, it has more low frequency shock and better rhythm. Mobile game: built-in 3D sound field technology, sound field positioning ability is powerful, can better achieve 3D sound effect, and support headset microphone conversation. Support Music appreciation, SD05PRO powerful thrust, excellent sound quality performance, can better play the characteristics of high-quality headphones, make the sound to achieve a higher level of performance. Mobile phone because of the cost of the architecture and limitation, audio output power was only about 5 mw, the machine can make up for the inadequacy of mobile audio output power, the audio output power up to 300 mw @ 16 \u03a9, get a better dynamic response and output sound pressure, can play a better performance of the high quality headphones."}, {"name": "Erza Scarlet Hoodie Unisex Manga Anime Merch for Women Men Teen - 003", "product_information": {"Department\n \u200f": "\u200e\n 3", "Date First Available\n \u200f": "\u200e\n January 27, 2022", "Manufacturer\n \u200f": "\u200e\n Kloudave", "ASIN\n \u200f": "\u200e\n B09RB2LMTL", "": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_sl_s_ap_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "\ud83c\udfb6 Brand: Kloudave\ud83c\udfb6 Gender: Unisex\ud83c\udfb6 Suitable for: Father's day, Mother's day, Valentine's day, Thanksgiving ...\ud83c\udfb6 Style: Casual streetwear\ud83c\udfb6 Thickness: Moderate\ud83c\udfb6 Length: Regular \ud83c\udfb6 Warranty: Money-back guarantee", "pricing": "$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41aeCf8h+IL.jpg", "https://m.media-amazon.com/images/I/41NXqoFgW-L.jpg", "https://m.media-amazon.com/images/I/51+j4Y47NJL.jpg", "https://m.media-amazon.com/images/I/41qNs+Ff-qL.jpg", "https://m.media-amazon.com/images/I/51ZrBYlReqL.jpg", "https://m.media-amazon.com/images/I/41uPZYjD8iL.jpg", "https://m.media-amazon.com/images/I/41STGwEVRNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Hoodies", "average_rating": "", "small_description": ["\u26a1 SIZE: US adult standard size. Say goodbye to the Asian size that always \"too small\". \u2705\u2705\u2705 Click \"Customize\" button to select a Style you want \u2705\u2705\u2705 ", "\u26a1 HIGH QUALITY MATERIAL: Tshirt 100% Cotton; Hoodie & Sweatshirt 50% Cotton/50% Polyester, durable and comfortable. Recommended to be washed with cold water and dry with medium heat ", "\u26a1 COOL STYLE: daily shirt t-shirt t shirts tshirt sweater for mens womens boys girls ", "\u26a1 PERFECT GIFT: our clothes is a perfect merchandise, christmas halloween birthday gifts for friends vintage retro parents family ", "\u26a1 COMMITMENT: if you ever felt sad with the item, please contact directly to us and we are always happy to help "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RB2LMTL", "category": "fashion", "query": "Men's Fashion Hoodies & Sweatshirts", "page": 49, "small_description_old": "\u26a1 SIZE: US adult standard size. Say goodbye to the Asian size that always \"too small\". \u2705\u2705\u2705 Click \"Customize\" button to select a Style you want \u2705\u2705\u2705 \u26a1 HIGH QUALITY MATERIAL: Tshirt 100% Cotton; Hoodie & Sweatshirt 50% Cotton/50% Polyester, durable and comfortable. Recommended to be washed with cold water and dry with medium heat \u26a1 COOL STYLE: daily shirt t-shirt t shirts tshirt sweater for mens womens boys girls \u26a1 PERFECT GIFT: our clothes is a perfect merchandise, christmas halloween birthday gifts for friends vintage retro parents family \u26a1 COMMITMENT: if you ever felt sad with the item, please contact directly to us and we are always happy to help"}, {"name": "Beninos Sports Bras for Women - Activewear Tops for Yoga Running Fitness", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.86 x 10.39 x 1.5 inches; 2.4 Ounces", "Item model number\n \u200f": "\u200e\n D321 Green M", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n August 19, 2020", "ASIN\n \u200f": "\u200e\n B08G8899R5", "Best Sellers Rank": "#252,887 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,030 in Women's Sports Bras", "#1,030 in Women's Sports Bras": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Beninos Store", "brand_url": "https://www.amazon.com/stores/Beninos/page/1DC50D19-BB3F-49ED-A8A6-C80A651297C3?ref_=ast_bln", "full_description": "", "pricing": "$6.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41rzvjYVHcL.jpg", "https://m.media-amazon.com/images/I/41kjuaOnUyL.jpg", "https://m.media-amazon.com/images/I/41GgM-6YgIL.jpg", "https://m.media-amazon.com/images/I/417mBRPWD1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Lingerie \u203a Bras \u203a Sports Bras", "average_rating": 4, "small_description": ["Pullover Style Sports Bra,Machine Wash (Hand Wash Recommanded) ", "Active Workout Sports Bra & Tight Fitting for Support -- Super Comfort and Super Soft Fabric ", "These sports bras are well made from double, non-fading and quick-dry fabric that wicks moisture away from your skin, keep you staying cool and comfortable during workouts. ", "Perfect for jogging, yoga, pilates, cycling, gym fitness, and everyday exercise wear. "], "total_reviews": 26, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "Medium", "asin": "B08G8899R5"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08G8DXR5N"}, {"is_selected": false, "is_available": false, "value": "X-Large", "asin": "B08G8C5NJR"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08G8899R5/ref=twister_B08G8MX5JG", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ouFRQg8uL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08G8P7MXF/ref=twister_B08G8MX5JG", "value": "Naked", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ErNhYGlkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08G8P19VM/ref=twister_B08G8MX5JG", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MYMuZK+ZL.jpg"}, {"is_selected": true, "url": null, "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rzvjYVHcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08G8C5NJR/ref=twister_B08G8MX5JG", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Z8u5ImcgL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08G8DXR5N", "category": "fashion", "query": "Women's Activewear", "page": 153, "small_description_old": "90% nylon/10 % spandex Pull-On closure Hand Wash Only Pullover Style Sports Bra,Machine Wash (Hand Wash Recommanded) Active Workout Sports Bra & Tight Fitting for Support -- Super Comfort and Super Soft Fabric These sports bras are well made from double, non-fading and quick-dry fabric that wicks moisture away from your skin, keep you staying cool and comfortable during workouts. Perfect for jogging, yoga, pilates, cycling, gym fitness, and everyday exercise wear."}, {"name": "Essential Source - Bonita Hair Skin Nails 90 Softgels", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 4.8 x 2.36 x 2.24 inches; 6.38 Ounces", "UPC\n \u200f": "\u200e\n 752830269583", "Manufacturer\n \u200f": "\u200e\n Essential Source, Inc.", "ASIN\n \u200f": "\u200e\n B07HYCDLN6", "Best Sellers Rank": "#105,704 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,173 in Nail Polish", "#2,173 in Nail Polish": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Essential Source Store", "brand_url": "https://www.amazon.com/stores/Essential+Source/page/6D7D312F-C087-4B26-8683-80CA8D03E8E3?ref_=ast_bln", "full_description": "A 90 Day Supply of our time-tested Bonita Hair Skin Nail Softgels, providing unsurpassed beauty, at an amazing value. Beauty starts from within, and with just one Bonita softgel daily.", "pricing": "$44.96", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/418cM2b4emL.jpg", "https://m.media-amazon.com/images/I/41Gt+SGNgdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Foot, Hand & Nail Care \u203a Nail Art & Polish \u203a Nail Polish", "average_rating": 4.6, "small_description": ["90 Count Value Size! Saves you 20% over buying three month supply ", "Advanced Complex with 15 Active Ingredients ", "Convenient Once-A-Day Softgel for Superior Bioavailabilty ", "Beautiful Hair, Skin, and Nails has never been so easy! ", "MANUFACTURER WARRANTY \u2013 Guarantees that the product will be free from manufacturer defect "], "total_reviews": 105, "total_answered_questions": 3, "customization_options": "", "seller_id": "A37GHHN8JBVZDY", "seller_name": "Essential Source, Inc.", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07HYCDLN6", "category": "beauty", "query": "Hair Loss Products", "page": 73, "small_description_old": "About this item 90 Count Value Size! Saves you 20% over buying three month supply Advanced Complex with 15 Active Ingredients Convenient Once-A-Day Softgel for Superior Bioavailabilty Beautiful Hair, Skin, and Nails has never been so easy! MANUFACTURER WARRANTY \u2013 Guarantees that the product will be free from manufacturer defect"}, {"name": "20pk Hawaiian Typhoon Microwave Popcorn Singles", "product_information": {"ASIN\n \u200f": "\u200e\n B001LDRMVU", "Best Sellers Rank": "#634,992 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#686 in Microwave Popcorn", "#686 in Microwave Popcorn": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$163.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/61HUKdNQIVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Popcorn \u203a Microwave", "average_rating": 5, "small_description": [""], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A1DMK5KGB43W2R", "seller_name": "Hawaiian Hurricane Popcorn", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B001LDRMVU", "category": "grocery", "query": "Popcorn", "page": 157, "small_description_old": ""}, {"name": "L'Oreal Paris Cosmetics Colour Riche Ultra Matte Highly Pigmented Nude Lipstick, Lilac Impulse, 0.13 Ounce", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 0.81 x 0.81 x 3.02 inches; 0.82 Ounces", "Item model number\n \u200f": "\u200e\n 071249374542", "UPC\n \u200f": "\u200e\n 071249374542", "Manufacturer\n \u200f": "\u200e\n L'Oreal Paris", "ASIN\n \u200f": "\u200e\n B07C8NSB75", "Best Sellers Rank": "#6,195 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#53 in Lipstick", "#53 in Lipstick": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the L'Oreal Paris Store", "brand_url": "https://www.amazon.com/stores/LOrealParis/page/EF96A034-207F-4A7B-BFB9-820DB59A02DB?ref_=ast_bln", "full_description": "Find your perfect nude lipstick shade with intense hydration and a super matte finish. Color Riche Ultra Matte is a highly pigmented, ultra-rich matte collection curated with lip tone nude shades to enhance your natural hue. The end result, your rich nude lips but better. Colour Riche Ultra Matte are formulated with silky oils providing intense hydration for all day comfort and wear, while feeling light on lips. A luxurious lipstick formulated with a light diffusing gel that brings a soft-focus focus effect on the lips, making lips appear smooth and matte without a dry look. From warm pink shades to skin flattering nudes, find the perfect nude hue. Packaging May Vary", "pricing": "$7.99", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31d-+M8NEiL.jpg", "https://m.media-amazon.com/images/I/31cHn9w5xOL.jpg", "https://m.media-amazon.com/images/I/41vS++hUIHL.jpg", "https://m.media-amazon.com/images/I/51ywYymPamL.jpg", "https://m.media-amazon.com/images/I/311n4oup3vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Lips \u203a Lipstick", "average_rating": 4.5, "small_description": ["L\u2019Oreal Paris Colour Riche Ultra Matte Nude Lipsticks - Highly pigmented, super matte finish - In one stroke, experience rich lip color and comfortable wear ", "Lip tone nude lipstick shades that enhance the natural color of your lips - 16 Nudes for every skin and lip tone -The End Result: Your lips but better ", "Formulated with Jojoba Oil to provide intense hydration all day and a comfortable lightweight feel on lips ", "Full coverage Matte, In a smooth gliding lipstick that enhances natural lip color and melts onto lips when applied ", "Blurs imperfections and fills in lip lines for more even looking lips without a dry look "], "total_reviews": 2219, "total_answered_questions": 23, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07BMY4JPZ/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "All Out Pout", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31tsePRK66L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07C8NMM4D/ref=twister_B07CFXH9HJ", "value": "Berry Extreme", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Q1El2f2PL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BMY1FK7/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "Bold Mauve", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31I+xaarhUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07C8XRGLH/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "Cutting Edge Cork", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31tyWnCDXBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BMY4JQ9/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "Daring Blush", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ztnSVAK7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07C8X7MCD/ref=twister_B07CFXH9HJ", "value": "Defiant Orchid", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31OBU-98PKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BN1YXY2/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "Full-Blown Fawn", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31WCR+73qML.jpg"}, {"is_selected": true, "url": null, "value": "Lilac Impulse", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21PXMdMCcDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07C8NMM41/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "Passionate Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31S-zmEeXwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BMY4CJJ/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "Power Petal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31lqS6IBeOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07C8XLF2S/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "Radical Rosewood", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31+8hi2EUrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BN1J6CX/ref=twister_B07CFXH9HJ?_encoding=UTF8&psc=1", "value": "Rebel Rouge", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31fYt9usTGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BN24SLZ/ref=twister_B07CFXH9HJ", "value": "Risque Roses", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31XAcvMt4qL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BMY1XNW/ref=twister_B07CFXH9HJ", "value": "Sienna Supreme", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/3125MetvI9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BN1XQYX/ref=twister_B07CFXH9HJ", "value": "Ultra Nude", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31CASJCMvbL.jpg"}], "Size": [{"is_selected": true, "url": null, "value": "0.13 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07C8NMM4D/ref=twister_B07CFXH9HJ", "value": "0.13 Ounce", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A30P86TDUOKT9B", "seller_name": "SSTAR BEAUTY", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07C8NSB75", "category": "beauty", "query": "Lips Makeup", "page": 20, "small_description_old": "About this item L\u2019Oreal Paris Colour Riche Ultra Matte Nude Lipsticks - Highly pigmented, super matte finish - In one stroke, experience rich lip color and comfortable wear Lip tone nude lipstick shades that enhance the natural color of your lips - 16 Nudes for every skin and lip tone -The End Result: Your lips but better Formulated with Jojoba Oil to provide intense hydration all day and a comfortable lightweight feel on lips Full coverage Matte, In a smooth gliding lipstick that enhances natural lip color and melts onto lips when applied Blurs imperfections and fills in lip lines for more even looking lips without a dry look"}, {"name": "TOMS Womens Classic Canvas Slip-On,White,5.5 M US", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 11.5 x 6.5 x 4 inches; 2 Pounds", "Item model number\n \u200f": "\u200e\n 10014410", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n March 12, 2009", "ASIN\n \u200f": "\u200e\n B001J6NXFS", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the TOMS Store", "brand_url": "https://www.amazon.com/stores/TOMSShoesLLC/page/18E8A041-0EF9-4ACE-A877-34048F8EDEAA?ref_=ast_bln", "full_description": "Toms Women Canvas Classic White 001001B07-WHT: The foundation to the One for One movement: TOMS Original Classics. TOMS Shoes was founded in 2006 by Blake Mycoskie. The shoe is a unique slip-on design comprised of clean lines and lightweight fabrics in vibrant colors and prints. TOMS was founded when Blake was inspired on a trip to Argentina by the traditional, rope-soled Argentine \"alpargata.\" He was struck by the poverty and health issues of the country, and set out to reinvent the alpargata for the U.S. market, and in doing so to accomplish one goal: Making life more comfortable for those without shoes. To realize this purpose, Blake made a commitment to match every pair of TOMS purchased with a donation of a pair to a child in need. It's simple: If you buy a pair of TOMS, the company will give a pair to someone in need on your behalf. During its first year in business, TOMS sold 10,000 pairs of shoes, and Blake returned to Argentina to lead his first annual Shoe Drop during which he donated to the children who had inspired him. TOMS Shoes are now available in multiple colors and fabric combinations for men, women and a recently introduced line for children, aptly titled Tiny TOMS.", "pricing": "$76.24", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41BJwxMek7L.jpg", "https://m.media-amazon.com/images/I/51UZCLJtlNL.jpg", "https://m.media-amazon.com/images/I/51ravHTnc3L.jpg", "https://m.media-amazon.com/images/I/41Yqvbm37DL.jpg", "https://m.media-amazon.com/images/I/41iiTCTcBdL.jpg", "https://m.media-amazon.com/images/I/31sJFzPfK7L.jpg", "https://m.media-amazon.com/images/I/412HGOIo2mL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Flats", "average_rating": 5, "small_description": ["Brand New ", "One-piece mixed-rubber outsole for resilience, flexibility and durability ", "Canvas upper with TOMS toe-stitch, and elastic V for easy on and off ", "TOMS classic suede insole with cushion for comfort ", "Latex arch insert for added support "], "total_reviews": 5, "total_answered_questions": "", "customization_options": "", "seller_id": "A31RXMRCNPZ6AJ", "seller_name": "REVOL USA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B001J6NXFS", "category": "fashion", "query": "Women's Loafers & Slip-Ons", "page": 131, "small_description_old": "Brand New One-piece mixed-rubber outsole for resilience, flexibility and durability Canvas upper with TOMS toe-stitch, and elastic V for easy on and off TOMS classic suede insole with cushion for comfort Latex arch insert for added support"}, {"name": "DEUVOUM Summer Trend Mesh Shoes Men's Sports Shoes Solid Color Lace-Up Sneakers Fashion All-Match Walking Shoes Outdoor Hiking Shoes Non-Slip Shock-Absorbing Casual Sports Shoes", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 11.81 x 7.87 x 3.15 inches; 1.06 Pounds", "Item model number\n \u200f": "\u200e\n DEUVOUM-Trend Mesh Shoes-ZXC977", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 21, 2022", "Manufacturer\n \u200f": "\u200e\n DEUVOUM", "ASIN\n \u200f": "\u200e\n B09QXF3V3X", "": ""}, "brand": "Brand: DEUVOUM", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=DEUVOUM", "full_description": "flip flops black sandals with heels for women sandals women 39 sandals women espadrille platform flip and slide trap platform espadrille sandals for women low wedge booties splitting wedge black pointed flats flip flop decor women's retro leopard zip flip-flop sandals ballet flats for girls foam flip flops my first slide cork sandals drawstring makeup bag opens baretraps sandals for women black wedges for women dressy beach flip flops men heavy duty flip flops wood heel sandals greece sandal flip flops kids under flip flops for women yellow wedges shoes for women black wedges men flip flops size 7 sandals toddler girls male flip flops flip flops men silver high heels for women purple heels toddler boy sandals birdies shoes women flats sorrel sandals women strappy wedge sandals for women bamboo platform boys flip flops mens flip flops 12 heel sandals for kids shoes wedges holographic sandals women lace up heeled sandals manual log splitter wedge extra wide sandals for men feet arch support women best flip flops women sandals size 9 slides navy flats for women woman sandals slide slippers for women strap sandals open toe sandals for men sandals women sandals low heel platform loafers for women ladies sandals size 8 lucky fake slides slip-n-slide women sandals heels flip flops for women reef sandal women sneaker sandals for women foam wedge flip flops premium orthopedic open toe sandals conrad flip flops platform slide sandals womens silver sandals on go sandals bunion correction sandals water slide paper water slide decal paper inkjet low profile platform ribbon fox fur slides slide sandals for boys silver platform sandals flip flop women mens gladiator sandals espadrilles sandals hiking sandals slide sandal emo boots platforms slide naughty sandals for women grass flip flops for men comfity studded sandals wedges sandals low wedge boots joanie wedge sandal prime flip flops womens flip flops size 12", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41-En679KGS.jpg", "https://m.media-amazon.com/images/I/51d6YO9nn5S.jpg", "https://m.media-amazon.com/images/I/416XFuBP7dS.jpg", "https://m.media-amazon.com/images/I/51GRvyx0nUS.jpg", "https://m.media-amazon.com/images/I/51IBTz0IWbL.jpg", "https://m.media-amazon.com/images/I/41rbesEYVGS.jpg", "https://m.media-amazon.com/images/I/51iay+XtIgS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Athletic \u203a Golf", "average_rating": "", "small_description": ["\u2740\u3010ABOUT SHOE SIZE\u3011Our size is standard size, if you don't know what size to choose, please refer to the size menu in the second product picture. Sole size is manufacturing size, not US size. ", "Made in USA and Imported ", "\u2740\u3010SUPPORT & CUSHIONING\u3011The neutral support type provides high energy cushioning, and the breathable insole fits your feet for comfort during exercise, giving you all-weather support. Perfect for road runs, cross training, the gym or anywhere you want to take them! ", "Rubber sole ", "Shaft measures approximately \u2740\u3010EASY TO WEAR\u3011The shoes are made of high-quality elastic bands, which are more convenient to put on and take off, and will not be deformed by repeated pulling. centimeters from arch ", "Heel measures approximately \u2740\u3010SUITABLE FOR OCCASIONS\u3011Suitable for various occasions. Whether you are working, walking, fishing, traveling, dancing, these shoes will give you a comfortable experience. centimeters ", "Platform measures approximately \u2740\u3010GUARANTEE YOUR SHOPPING PLEASURE\u3011We take customer service seriously and hope you are satisfied with your shopping experience. If you have any questions or comments, please feel free to contact us and we will do our best to accommodate your needs. , Boot opening measures approximately 10.5\" around, wedge boots women's jody block heel turquoise floral sandals for women casual womens shoes comfortable walking jelly beartraps wedge ankle boots toe sandals for women black mink slides wedges shoes lace up heels funky cheap flip flops, keens sliding miter saw womens shoes hidden wedges platform feeder nomadic state of mind rope sandals plastic flip flops for women step stool wedge boots men wedge booties kids flip flops summer sandals for men platform tennis, fuzzy slide sandal navy blue flip flops for women mush mens slide sandals cali womens heel espadrilles wedges ballet girls water sandals 70s platform shoes for women slip on sneakers womens flip flops size 6 stand wedges barefoot, womens sport sandals orthotic sandals for women dress sandal heels furry slides for kids plantar fasciitis sandals for women faux fur slides for women womens red sandals black sandal heels for women yoga foam flip flops for women fairycore clothing ladies slides platform shoes for kids bare trap sandals for women sport sandals lace up sandals for women low heel mens platform shoes 71s espadrilles wedges women shoes sea breeze flip flops women wedge shoes women clothes, flats black wedge shoes square toe sandals low platform boots low block heel sandals platform sandals women chunky heel womens sandals wedge square heel sandals flip flop pointy flats for women metallic sandals for women women s sandals baseball flip flops womens slide whistle women's heels platform espadrilles women shoes womens wedge heels cork sandals women womens leather flip flops sandals womens sandals size 9 strappy platform sandals covered toe sandals"], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QXF3V3X", "category": "fashion", "query": "Men's Outdoor Shoes", "page": 191, "small_description_old": "\u2740\u3010ABOUT SHOE SIZE\u3011Our size is standard size, if you don't know what size to choose, please refer to the size menu in the second product picture. Sole size is manufacturing size, not US size. Made in USA and Imported \u2740\u3010SUPPORT & CUSHIONING\u3011The neutral support type provides high energy cushioning, and the breathable insole fits your feet for comfort during exercise, giving you all-weather support. Perfect for road runs, cross training, the gym or anywhere you want to take them! Rubber sole Shaft measures approximately \u2740\u3010EASY TO WEAR\u3011The shoes are made of high-quality elastic bands, which are more convenient to put on and take off, and will not be deformed by repeated pulling. centimeters from arch Heel measures approximately \u2740\u3010SUITABLE FOR OCCASIONS\u3011Suitable for various occasions. Whether you are working, walking, fishing, traveling, dancing, these shoes will give you a comfortable experience. centimeters Platform measures approximately \u2740\u3010GUARANTEE YOUR SHOPPING PLEASURE\u3011We take customer service seriously and hope you are satisfied with your shopping experience. If you have any questions or comments, please feel free to contact us and we will do our best to accommodate your needs. \n Boot opening measures approximately 10.5\" aroundpointy toe flats for women bamboo womens lace up block heel ankle twin deadlift platform womens flats size 9 flip-flops for women dress shoes high heels iqushion flip flop brown leather sandals sandals for women gold heel mens flip flopsflip flops flop socks for women womens loafer shoes viking platform sandals with heels black metal water dress sandals womens stiletto high heels strappy lace up round toe flats for women knee platform boots youth slides wedgeswedge dress black platform pumps slip n slide tarp insoles feet men women's wedge sandals fancy flip flops for women reef denim boots ankle booties mens size 13 women's flats cushion flip flops for women supportive sandals black shoesti stamping platform winter boots for women platform cotton hounds sandals low platform heels shower flip flops women gladiator sandals for women with heels 25 inch platform low heel wedge blue wedges for women rhinestone sandals wedges for kids metallic sandal heels tutu flip flops womens brown flip flops foldable slippers for women sandals for women gold ballet flats sandals leather flip flops for men clear wedge heels for women woman flip flops beach sandals forsandals cute flip flops payless sandals for women shoes for women platform for kids toddler slide slide for kids olive green sandals for women yucatan sandals mens toddler flats sandals women wedges shoes for women sandals platform sandals for women shoes for women sandals women's business casual shoes insoles for feet men arch fit sandals bohemian sandals women super posh gladiator comfy sandals ballet shoes for women flats comfortable smen's slides men sandalsShow more"}, {"name": "Kodak Playsport Zx3 HDMI Mini (Type C) Cable - HDMI Mini (Type C)", "product_information": {"Product Dimensions": "0.39 x 7.87 x 1.97 inches", "Manufacturer": "Link It", "ASIN": "B00A974J3I", "Best Sellers Rank": ["#17,764 in HDMI Cables"], "Date First Available": "November 18, 2012"}, "brand": "Brand: Link It", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Link+It", "full_description": "Link It - Kodak Digital Camcorder - - Zx3", "pricing": "$10.48", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31GkkvrNKAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a HDMI Cables", "average_rating": "", "small_description": ["6 Ft / 1.8 M - Brand new HDMI cable ", "Backed by one year warranty "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AKOZURDVYWB0V", "seller_name": "DIGITMON", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00A974J3I", "category": "electronics", "query": "HDMI Cables", "page": 381, "small_description_old": "About this item 6 Ft / 1.8 M - Brand new HDMI cable Backed by one year warranty"}, {"name": "Farmasi Make Up Face Perfecting Pressed Powder No:03 Neutral Medium (2018)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 2.95 x 0.2 x 2.95 inches; 2.15 Ounces", "Manufacturer recommended age\n \u200f": "\u200e\n 4 months and up", "Manufacturer\n \u200f": "\u200e\n Farmasi", "ASIN\n \u200f": "\u200e\n B07LGBVH6L", "Best Sellers Rank": "#322,212 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,633 in Face Powder", "#1,633 in Face Powder": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: FARMASi", "brand_url": "https://www.amazon.com/FARMASi/b/ref=bl_dp_s_web_8380529011?ie=UTF8&node=8380529011&field-lbr_brands_browse-bin=FARMASi", "full_description": "With its special silky texture, It is very easy to apply Farmasi compact powder to enjoy a velvety softness and smooth look. Provides the skin with a natural bright finish, mattifying and evening out the complexion. The skin tone becomes flawless, radiant and matt all day long. Perfectly matches skin tone and texture. Leaves the skin feeling velvety soft and silky smooth.", "pricing": "$16.95", "list_price": "", "availability_quantity": 8, "availability_status": "Only 8 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31wMArq6jDL.jpg", "https://m.media-amazon.com/images/I/41W-ZGUgPjL.jpg", "https://m.media-amazon.com/images/I/51hWdB3KpvL.jpg", "https://m.media-amazon.com/images/I/513Ehsm5USL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Face \u203a Powder", "average_rating": 3.4, "small_description": ["With its special silky texture, It is very easy to apply Farmasi compact powder to enjoy a velvety softness and smooth look ", "Provides the skin with a natural bright finish, mattifying and evening out the complexion ", "The skin tone becomes flawless, radiant and matt all day long ", "Perfectly matches skin tone and texture. Leaves the skin feeling velvety soft and silky smooth "], "total_reviews": 4, "total_answered_questions": "", "customization_options": "", "seller_id": "A13OBUCFB19BC3", "seller_name": "Red Door Collections", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07LGBVH6L", "category": "beauty", "query": "Face Makeup", "page": 71, "small_description_old": "About this item With its special silky texture, It is very easy to apply Farmasi compact powder to enjoy a velvety softness and smooth look Provides the skin with a natural bright finish, mattifying and evening out the complexion The skin tone becomes flawless, radiant and matt all day long Perfectly matches skin tone and texture. Leaves the skin feeling velvety soft and silky smooth"}, {"name": "Clearance Deals Retro T-Shirt Bee Printed Blouse, 2021 Summer Fashion Boys Men 3D Round Neck Short Sleeve Tee Tops", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 18, 2017", "ASIN\n \u200f": "\u200e\n B0936M1T34", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the iLH Store", "brand_url": "https://www.amazon.com/stores/iLH/page/D0CC473F-4774-4BBC-963A-6A02C80DE40D?ref_=ast_bln", "full_description": "Product information: Season:Summer,Spring Collar:O neck Fit:Fits ture to size Your satisfaction are very important for us.We strive to offer you the best value and service possible. \u2764\u2764\u273f\u2605\u273f\u261eSize Charts: \u273f\u2605\u273fSize:S _ US:6 _ UK:10 _ EU:36 _ Bust:100cm/39.37'' _ Sleeve Length:21.2cm/8.35'' _ Length:67cm/26.38'' \u273f\u2605\u273fSize:M _ US:8 _ UK:12 _ EU:38 _ Bust:105cm/41.34'' _ Sleeve Length:22cm/8.66'' _ Length:68cm/26.77'' \u273f\u2605\u273fSize:L _ US:10 _ UK:14 _ EU:40 _ Bust:110cm/43.31'' _ Sleeve Length:22.5cm/8.86'' _ Length:69cm/27.17'' \u273f\u2605\u273fSize:XL _ US:12 _ UK:16 _ EU:42 _ Bust:115cm/45.28'' _ Sleeve Length:23cm/9.06'' _ Length:70cm/27.56'' \u273f\u2605\u273fSize:XXL _ US:14 _ UK:18 _ EU:44 _ Bust:120cm/47.24'' _ Sleeve Length:23.5cm/9.25'' _ Length:71cm/27.95'' \u273f\u2605\u273fSize:XXXL _ US:16 _ UK:20 _ EU:46 _ Bust:125cm/49.21'' _ Sleeve Length:24cm/9.45'' _ Length:72cm/28.35'' \u273f\u2605\u273fSize:XXXXL _ US:18 _ UK:22 _ EU:48 _ Bust:130cm/51.18'' _ Sleeve Length:24.5cm/9.65'' _ Length:73cm/28.74'' \u273f\u2605\u273fSize:XXXXXL _ US:20 _ UK:24 _ EU:50 _ Bust:135cm/53.15'' _ Sleeve Length:25cm/9.84'' _ Length:74cm/29.13'' Tips: Please allow 0.5~1.5 cm differs due to manual measurement, Thanks so much! \u2764\u2764\u2764\u2764\u2764\u2764 \u2605\u262a\u2605NOTE:\u2605\u262a\u2605 1.Please check the size detail carefully before you purchase. 2.Items are measured by hand,there will be a slight deviation. 3. Due to different computers display colors differently,the color of the actual item may vary slightly from the above images,Thanks for your understanding. 4.Any questions or problems to our products or service, please email us freely, we will reply and solve it for you ASAP.Click\"ZYooh\" for more new fashion style items", "pricing": "$9.99$11.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41GiHoSMxEL.jpg", "https://m.media-amazon.com/images/I/6197MWSDLgL.jpg", "https://m.media-amazon.com/images/I/41nNeGltmKL.jpg", "https://m.media-amazon.com/images/I/41jNF0KNDPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Shirts \u203a T-Shirts", "average_rating": 4, "small_description": ["\u27645-7 Days Expedited Shipping.\u276415-20 Days Standard shipping.\u2764Within 24 Hours Shipping Out.\u2764 Heavyweight pocket tee shirt big tall short sleeve tri short sleeve sleeve big brother shirt 18 years boys shirt tank men peasant blouse independence day birthday boy shirt ", "\u2764Stylish and fashion Print design make you more attractive men summer men clothes keeper shirt lock shirt neck shirt folder shirt collar stays shirt 90s birthday boy shirt short sleeve shirt xxl tank men shirt men woven camisole tank top tee shirt flannel shirt extender plus size shirt 2021 shirt glorious comfort shirt for men big and tall for men funny under 10$ shirt ", "\u2764SIZE NOTE:Refer to ours SIZE CHART,Choose BIGGER size would be better,from customer's feedback,thanks.mens shirts trendy mens shirts tank tops funny mens shirts adult humor mens shirts athletic mens shirts athletic fit mens shirts anime mens shirts and shorts set mens shirts fashion hip hop mens shirts fashion design mens shirts fashion button up mens shirts fashion summer mens shirts 4xlt mens shirts big and tall mens shirts long sleeve 5xlt mens shirts big and tall ", "\u2764Satisfaction 100% Guaranteed:Click\"ZYooh\" for more new fashion style items;If you any have problems about our items,please feel free to contact us.Provide satisfactory response within 24 hours. mens shirts fashion mens shirts casual mens shirts big and tall tall mens shirts tall mens shirts tall hawaiian mens shirts tropical mens shirts tall sizes mens shirts t shirts graphic shirts for men hip hop shirts for men hawaiian shirts for men hip hop golf shirts for men dry fit golf shirts ", "funny polo golf shirts for men big and tal muscle shirts for men workout shirts for guys white shirts drip shirts for men work compression shirts for men summer 2022 men's t-shirt novelty funny shirt 3d graphic t-shirt outdoor basic cotton t-shirt sleeveless shirts gym shirts hem tank top graphic t-shirt under 10$ shirt birthday valentine's day gift t-shirt crew neck comfort soft t-shirt long sleeve work out blouse blouse tees shirts top button down shirt sport vest comfortsoft gifts t-shirt "], "total_reviews": 59, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GiHoSMxEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LV98V6T/ref=twister_B078WT46QV", "value": "E-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ib4flOEFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVB4PHL/ref=twister_B078WT46QV", "value": "E-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41g4lHvLpeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LV8M2FX/ref=twister_B078WT46QV", "value": "E-orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51M0WA7EHFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LV9WY8C/ref=twister_B078WT46QV", "value": "E-purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51KgWkcXDdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LVBGZ5R/ref=twister_B078WT46QV", "value": "E-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51UstZWdoIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0936CHCSF/ref=twister_B078WT46QV", "value": "B-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51cO7b51WmS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0936D5ZKD/ref=twister_B078WT46QV", "value": "B-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/512CYcLrowS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09368BFVW/ref=twister_B078WT46QV", "value": "A-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41V5+7Iz9SS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0936JG4QY/ref=twister_B078WT46QV", "value": "A-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41NuEEYk3HS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0936SL477/ref=twister_B078WT46QV", "value": "A-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412Cs9NmFDS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09362RMJG/ref=twister_B078WT46QV", "value": "C-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51u6kZr7GML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0936GQVJ1/ref=twister_B078WT46QV", "value": "D-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51T1yhFX8GS.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B0936M1T34"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B078WT8QFT"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B078WSND96"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B078WTQYVY"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B078WTSXWR"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B078WTJ4XY"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B09LV134G2"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B09LV2CYD9"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B078WSND96", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 162, "small_description_old": "100% Polyester Button closure \u27645-7 Days Expedited Shipping.\u276415-20 Days Standard shipping.\u2764Within 24 Hours Shipping Out.\u2764 Heavyweight pocket tee shirt big tall short sleeve tri short sleeve sleeve big brother shirt 18 years boys shirt tank men peasant blouse independence day birthday boy shirt \u2764Stylish and fashion Print design make you more attractive men summer men clothes keeper shirt lock shirt neck shirt folder shirt collar stays shirt 90s birthday boy shirt short sleeve shirt xxl tank men shirt men woven camisole tank top tee shirt flannel shirt extender plus size shirt 2021 shirt glorious comfort shirt for men big and tall for men funny under 10$ shirt \u2764SIZE NOTE:Refer to ours SIZE CHART,Choose BIGGER size would be better,from customer's feedback,thanks.mens shirts trendy mens shirts tank tops funny mens shirts adult humor mens shirts athletic mens shirts athletic fit mens shirts anime mens shirts and shorts set mens shirts fashion hip hop mens shirts fashion design mens shirts fashion button up mens shirts fashion summer mens shirts 4xlt mens shirts big and tall mens shirts long sleeve 5xlt mens shirts big and tall \u2764Satisfaction 100% Guaranteed:Click\"ZYooh\" for more new fashion style items;If you any have problems about our items,please feel free to contact us.Provide satisfactory response within 24 hours. mens shirts fashion mens shirts casual mens shirts big and tall tall mens shirts tall mens shirts tall hawaiian mens shirts tropical mens shirts tall sizes mens shirts t shirts graphic shirts for men hip hop shirts for men hawaiian shirts for men hip hop golf shirts for men dry fit golf shirts funny polo golf shirts for men big and tal muscle shirts for men workout shirts for guys white shirts drip shirts for men work compression shirts for men summer 2022 men's t-shirt novelty funny shirt 3d graphic t-shirt outdoor basic cotton t-shirt sleeveless shirts gym shirts hem tank top graphic t-shirt under 10$ shirt birthday valentine's day gift t-shirt crew neck comfort soft t-shirt long sleeve work out blouse blouse tees shirts top button down shirt sport vest comfortsoft gifts t-shirt"}, {"name": "GLOBALWIN Men's Casual Slip On Penny Loafers Lightweight Driving Shoes", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.4 x 6.6 x 4.2 inches; 1.2 Pounds", "Item model number\n \u200f": "\u200e\n GW-M2005-3-SZ-7", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 18, 2020", "ASIN\n \u200f": "\u200e\n B082MTDLHK", "Best Sellers Rank": "#536,272 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,463 in Men's Loafers & Slip-Ons", "#1,463 in Men's Loafers & Slip-Ons": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the GLOBALWIN Store", "brand_url": "https://www.amazon.com/stores/GLOBALWIN/page/8CF086DD-E6F3-4A12-B56D-80CB1BDC24F3?ref_=ast_bln", "full_description": "", "pricing": "$29.99$49.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41yDXMLb34L.jpg", "https://m.media-amazon.com/images/I/4156VxW-1lL.jpg", "https://m.media-amazon.com/images/I/41x-YgHMh0L.jpg", "https://m.media-amazon.com/images/I/41xhhGuuKIL.jpg", "https://m.media-amazon.com/images/I/51FcZVVtztL.jpg", "https://m.media-amazon.com/images/I/31nHgu-NBcL.jpg", "https://m.media-amazon.com/images/I/31wruf2eujL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Loafers & Slip-Ons", "average_rating": 4, "small_description": ["Rubber sole ", "These slip on loafer shoes were craft from soft smooth faux leather lining and lightly padded insoles which keep feet flexible and comfortable.In addition, anti slip rubber solesenhance the stability and comfort. ", "Easy to slip on and off. Whether you\u2019re on foot or behind the wheel,these driving shoes features a rubber sole which will keep your feet comfortable all day long. ", "Available in Black, Grey and Brown. Choose from one of the classic colors for an elegant look or a casual look for all occasions. ", "Nothing more versatile than these. You can easily pair them with anything in your wardrobe. "], "total_reviews": 130, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "7", "asin": "B082MTDLHK"}, {"is_selected": false, "is_available": false, "value": "7.5", "asin": "B082MT7Q1H"}, {"is_selected": false, "is_available": false, "value": "8", "asin": "B082MTMMK7"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B082MT9162"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B082MTXJJX"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B082MTLWFZ"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B082MSMJZY"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B082MSNGXW"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B082MTCYN2"}, {"is_selected": false, "is_available": true, "value": "12", "asin": "B082MTFKXN"}, {"is_selected": false, "is_available": true, "value": "13", "asin": "B082MTFSV8"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B082MTC41P/ref=twister_B082MSZ24M", "value": "2005brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ry4PuBjKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B082MTKG11/ref=twister_B082MSZ24M", "value": "2005grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/413URlNDFZL.jpg"}, {"is_selected": true, "url": null, "value": "2005black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yDXMLb34L.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B082MT9162", "category": "fashion", "query": "Men's Loafers & Slip-Ons", "page": 18, "small_description_old": "Rubber sole These slip on loafer shoes were craft from soft smooth faux leather lining and lightly padded insoles which keep feet flexible and comfortable.In addition, anti slip rubber solesenhance the stability and comfort. Easy to slip on and off. Whether you\u2019re on foot or behind the wheel,these driving shoes features a rubber sole which will keep your feet comfortable all day long. Available in Black, Grey and Brown. Choose from one of the classic colors for an elegant look or a casual look for all occasions. Nothing more versatile than these. You can easily pair them with anything in your wardrobe."}, {"name": "Elk Lighting 57280/1 Stix 1 Light Wood with Seedy Glass Sconce", "product_information": {"Manufacturer": "\u200eElk Lighting", "Part Number": "\u200e57280/1", "Item Weight": "\u200e5.6 pounds", "Product Dimensions": "\u200e6 x 5 x 29 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200e57280/1", "Is Discontinued By Manufacturer": "\u200eNo", "Size": "\u200enot specified", "Color": "\u200eLight Wood", "Style": "\u200eContemporary", "Finish": "\u200eLight Wood", "Material": "\u200eAlloy Steel, Glass", "Power Source": "\u200eCorded-electric", "Voltage": "\u200e120 Volts", "Wattage": "\u200e60 watts", "Item Package Quantity": "\u200e1", "Number Of Pieces": "\u200e1", "Type of Bulb": "\u200eIncandescent", "Measurement System": "\u200eEnglish/Standard", "Mounting Type": "\u200eProtruding", "Plug Format": "\u200eA- US style", "Certification": "\u200eUL Listed", "Usage": "\u200ePersonal, Lighting, Home, Upgrade", "Included Components": "\u200eFrame, Glass, Hardware, Backplate", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Warranty Description": "\u200e1 year manufacturer.", "ASIN": "B07NLHNQCG", "Best Sellers Rank": ["#1,603,985 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #11,785 in Wall Sconces"], "Date First Available": "February 11, 2019"}, "brand": "Brand: ELK Lighting", "brand_url": "https://www.amazon.com/ELK-Lighting/b/ref=bl_dp_s_web_2591200011?ie=UTF8&node=2591200011&field-lbr_brands_browse-bin=ELK+Lighting", "full_description": "The Stix outdoor sconce features a small gathering of \"sticks\" embodying nature inspired characteristics delivering an organic style presentation to an outdoor facade. Slender seedy glass shades are perched on top. Finished in Light Wood.", "pricing": "$40.12", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/3176ctOBjuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Wall Lamps & Sconces", "average_rating": "", "small_description": ["UL listed ", "light wood finish; seedy glass ", "5W X 6D X 29H ", "HCWO 16 inches ", "1 light 60 watt medium base bulb recommended; pictured with filament style bulb not included "], "total_reviews": "", "total_answered_questions": "", "model": "\u200e57280/1", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07NLHNQCG", "category": "garden", "query": "Sconces", "page": 292, "small_description_old": "About this item\n \nUL listed light wood finish; seedy glass 5W X 6D X 29H HCWO 16 inches 1 light 60 watt medium base bulb recommended; pictured with filament style bulb not included \n \u203a See more product details"}, {"name": "Profusion Cosmetics Mini Artistry Highlight & Contour I Palette Makeup Kit, Long Lasting and Soft Powder Formula - Light Medium", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 13.98 x 7.48 x 5.51 inches; 1.76 Ounces", "Item model number\n \u200f": "\u200e\n 1850-6A", "UPC\n \u200f": "\u200e\n 656497061859", "Manufacturer\n \u200f": "\u200e\n Profusion Cosmetics", "ASIN\n \u200f": "\u200e\n B07N864Q64", "Best Sellers Rank": "#57,773 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#113 in Makeup Palettes", "#113 in Makeup Palettes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Profusion Cosmetics Store", "brand_url": "https://www.amazon.com/stores/Profusion/page/F0C02478-364F-454C-918B-EF6E31BD1062?ref_=ast_bln", "full_description": "", "pricing": "$6.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31GeU+Q6WuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Makeup Palettes", "average_rating": 4.4, "small_description": ["The Profusion Cosmetics 6 colour highlight and contour palette powder contour kit is the ultimate contouring and highlighting palette that enhances depth and light to emphasize prominent facial features. ", "Our Highlight & Contour Palette allows you to sculpt your face effortlessly, Perfect for both beginners and professionals, Achieve an ultra defined look with its Highlight & Contour shades. ", "6 highlighting and contouring shades perfect for emphasizing your favorite features, Define your features like a pro with our highlighter and contouring palette! All six contour and highlight shades can be mixed and matched. ", "Health and safe ingredients, With the same intensely pigmented formulation as our previous palettes, Hypoallergic, skin-friendly, Cruelty-free, Colors easy to apply. ", "The Profusion Cosmetics Contour Kit Suitable for all skin tones and skin types, Packaged in a sleek, travel-friendly palette, Great for everyday use or for special occasions. "], "total_reviews": 446, "total_answered_questions": 3, "customization_options": "", "seller_id": "A1TRIJHVS64G1A", "seller_name": "Profusion Cosmetics", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07N864Q64", "category": "beauty", "query": "Makeup Palettes", "page": 14, "small_description_old": "About this item The Profusion Cosmetics 6 colour highlight and contour palette powder contour kit is the ultimate contouring and highlighting palette that enhances depth and light to emphasize prominent facial features. Our Highlight & Contour Palette allows you to sculpt your face effortlessly, Perfect for both beginners and professionals, Achieve an ultra defined look with its Highlight & Contour shades. 6 highlighting and contouring shades perfect for emphasizing your favorite features, Define your features like a pro with our highlighter and contouring palette! All six contour and highlight shades can be mixed and matched. Health and safe ingredients, With the same intensely pigmented formulation as our previous palettes, Hypoallergic, skin-friendly, Cruelty-free, Colors easy to apply. The Profusion Cosmetics Contour Kit Suitable for all skin tones and skin types, Packaged in a sleek, travel-friendly palette, Great for everyday use or for special occasions."}, {"name": "Canvas Prints with Your Photos Framed Custom Canvas Prints Photo Prints Personalized Canvas Pictures Wall Art for Bedroom Living Room, Wedding Family Baby Pet", "product_information": {"ASIN": "B09P58VY9G", "Customer Reviews": {"ratings_count": 2, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#601,358 in Home & Kitchen (See Top 100 in Home & Kitchen) #22,297 in Posters & Prints"], "Date First Available": "December 24, 2021"}, "brand": "Brand: FULL HOUSE", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=FULL+HOUSE", "full_description": "", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/415sA0xLTuL.jpg", "https://m.media-amazon.com/images/I/41FXC1VlsIL.jpg", "https://m.media-amazon.com/images/I/51Wz2-BtgJL.jpg", "https://m.media-amazon.com/images/I/512TCjGTXLL.jpg", "https://m.media-amazon.com/images/I/413+N6c2rpL.jpg", "https://m.media-amazon.com/images/I/41sNWM07vJL.jpg", "https://m.media-amazon.com/images/I/31Aa0YBTwLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": 5, "small_description": ["\ud83d\udcf8\u3010Unique DIY\u3011The canvas exclusively designed by us to look unique and beautiful, it can spice up your photos and really create your own custom canvas! It can be used to commemorate weddings/pets/landscapes/family etc... You can easily create your own artwork with your favorite photos! ", "\ud83d\udc8e\u3010High-quality Aluminum Frame\u3011Different from the wooden frames on the market, the frame of this customized painting is made of aviation-grade aluminum alloy, which is sturdy and durable, waterproof and dustproof, and can be hung in the bathroom. It has a high reuse rate and is easy to replace. You only need to open the cover to change your favorite screen. ", "\ud83d\udc95\u3010Best Gift\u3011You can customize the best memories you have captured into your exclusive canvas, and give it to your mom, boyfriend, girlfriend, wife, and friends on Valentine\u2019s Day, Christmas, Thanksgiving, birthday, graduation, and holidays. They are pleasantly surprised and add good memories. Our custom paintings are suitable for various decoration styles and can easily create a warm and loving atmosphere. ", "\ud83d\udce6\u3010Good Package\u3011Each of our custom paintings has an exclusively designed outer box packaging with a protective cover to prevent bumps and damage during transportation to ensure that your personalized canvas wall art is intact. ", "\ud83d\udca1\u3010Tips\u30111. Make sure to upload high-resolution pictures for high-quality printing. 2. After uploading the picture, please make sure to stretch it to cover the entire canvas area, and please don\u2019t leave white edges on the edges. "], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "12\" x 16\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P5BTYBV/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "16\" x 12\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P58CG97/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "16\" x 24\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P57P3W8/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "20\" x 28\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P5799J2/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "24\" x 16\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P58J5CP/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "24\" x 36\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P58NYND/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "28\" x 20\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P584QCT/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "36\" x 24\"", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Style1-Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412RdeWxsrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P583GQK/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "Style1-Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oA0kXA9PL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P584NDK/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "Style2-Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WPAA6nBCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P58QRBZ/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "Style2-Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51td00HCspL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P575KVX/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "Style3-Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51lVLFqBewL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P58J5CN/ref=twister_B09P58F1BZ?_encoding=UTF8&psc=1", "value": "Style3-Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51JLFMrwkxL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09P58VY9G", "category": "garden", "query": "Wall art", "page": 343, "small_description_old": "About this item\n \n\ud83d\udcf8\u3010Unique DIY\u3011The canvas exclusively designed by us to look unique and beautiful, it can spice up your photos and really create your own custom canvas! It can be used to commemorate weddings/pets/landscapes/family etc... You can easily create your own artwork with your favorite photos! \ud83d\udc8e\u3010High-quality Aluminum Frame\u3011Different from the wooden frames on the market, the frame of this customized painting is made of aviation-grade aluminum alloy, which is sturdy and durable, waterproof and dustproof, and can be hung in the bathroom. It has a high reuse rate and is easy to replace. You only need to open the cover to change your favorite screen. \ud83d\udc95\u3010Best Gift\u3011You can customize the best memories you have captured into your exclusive canvas, and give it to your mom, boyfriend, girlfriend, wife, and friends on Valentine\u2019s Day, Christmas, Thanksgiving, birthday, graduation, and holidays. They are pleasantly surprised and add good memories. Our custom paintings are suitable for various decoration styles and can easily create a warm and loving atmosphere. \ud83d\udce6\u3010Good Package\u3011Each of our custom paintings has an exclusively designed outer box packaging with a protective cover to prevent bumps and damage during transportation to ensure that your personalized canvas wall art is intact. \ud83d\udca1\u3010Tips\u30111. Make sure to upload high-resolution pictures for high-quality printing. 2. After uploading the picture, please make sure to stretch it to cover the entire canvas area, and please don\u2019t leave white edges on the edges."}, {"name": "50 PCS mixed batch disposable standard round large needle for tattoo needle, used for tattoo machine handle", "product_information": {"Item Weight\n \u200f": "\u200e\n 0.04 Ounces", "Manufacturer\n \u200f": "\u200e\n MINUOSHIPINDIAN", "ASIN\n \u200f": "\u200e\n B08HVH2DZF", "": ""}, "brand": "Brand: MINUOSHIPINDIAN", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=MINUOSHIPINDIAN", "full_description": "Available size: 13/5/7/9 RM (10 pieces of each size)", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31ipiLpWfnL.jpg", "https://m.media-amazon.com/images/I/41G1h35VLNL.jpg", "https://m.media-amazon.com/images/I/41HZ516gWmL.jpg", "https://m.media-amazon.com/images/I/41YmQqWMFDL.jpg", "https://m.media-amazon.com/images/I/41mPLM8Ks9L.jpg", "https://m.media-amazon.com/images/I/41aTf4t5rVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Piercing & Tattoo Supplies \u203a Tattoo Supplies \u203a Tattoo Machine Parts", "average_rating": "", "small_description": ["1. It is made of high-quality stainless steel and is durable enough for your daily use ", "2. This is a necessity now or in the future ", "3. Each needle is individually packaged in its own factory, which is harmless to your health ", "4. Well-designed and easy to use ", "5. These tattoo needles will give you a satisfactory tattoo "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08HVH2DZF", "category": "beauty", "query": "Piercing & Tattoo Supplies", "page": 83, "small_description_old": "1. It is made of high-quality stainless steel and is durable enough for your daily use 2. This is a necessity now or in the future 3. Each needle is individually packaged in its own factory, which is harmless to your health 4. Well-designed and easy to use 5. These tattoo needles will give you a satisfactory tattoo"}, {"name": "Broad Bay This is Us Sign Solid Wood Personalized Family Farmhouse Decor Wall Art - 16.5\u201d x 10.5\u201d", "product_information": {"Item Weight": "\u200e2 pounds", "Product Dimensions": "\u200e16.5 x 0.75 x 10.5 inches", "ASIN": "B08NXTHM2W", "Customer Reviews": {"ratings_count": 93, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#360,702 in Home & Kitchen (See Top 100 in Home & Kitchen) #3,446 in Decorative Signs & Plaques"], "Date First Available": "October 25, 2020"}, "brand": "Visit the Broad Bay Store", "brand_url": "https://www.amazon.com/stores/BroadBayPersonalizedGifts/page/191FABB3-18E9-46C4-81B9-204D95B0BF2A?ref_=ast_bln", "full_description": "", "pricing": "$44.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41tlzh-6Y8S.jpg", "https://m.media-amazon.com/images/I/41FBerbvD6S.jpg", "https://m.media-amazon.com/images/I/41hd7dIItcS.jpg", "https://m.media-amazon.com/images/I/51HaWak9kNS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Home D\u00e9cor Accents \u203a Decorative Accessories \u203a Decorative Signs & Plaques", "average_rating": 4.8, "small_description": ["THE PERFECT FARMHOUSE DECOR: our white, rustic farmhouse-style decor signs are our most popular style and add a vintage, down-to-earth feel to any home. ", "PERSONALIZED WITH FRESCOPRINT: our superior Frescoprint technology beautifully embeds your design into the underlying natural wood. ", "IMPRESSIVE SIZE: 16.5\u201d x 10.5\u201d x .75\u201d and hangs on the wall or props up on your shelf as a beautiful farmhouse quote and family name decoration. ", "EXPERT CRAFTSMANSHIP: our signs are made from solid wood and never use cheap veneers, plywood, or particle board. "], "total_reviews": 93, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08NXTHM2W", "category": "garden", "query": "Wall art", "page": 334, "small_description_old": "About this item THE PERFECT FARMHOUSE DECOR: our white, rustic farmhouse-style decor signs are our most popular style and add a vintage, down-to-earth feel to any home. PERSONALIZED WITH FRESCOPRINT: our superior Frescoprint technology beautifully embeds your design into the underlying natural wood. IMPRESSIVE SIZE: 16.5\u201d x 10.5\u201d x .75\u201d and hangs on the wall or props up on your shelf as a beautiful farmhouse quote and family name decoration. EXPERT CRAFTSMANSHIP: our signs are made from solid wood and never use cheap veneers, plywood, or particle board. \n \u203a See more product details"}, {"name": "Berrichi Foaming Facial Cleanser Face Wash \u2013 Suitable For Sensitive Skin & Removing Eye Make Up \u2013 Foaming Face Wash Contains Effective Moisturizing and Anti-Aging Antioxidants From Algae", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.54 x 1.85 x 1.77 inches; 7.23 Ounces", "Manufacturer\n \u200f": "\u200e\n BERRICHI", "ASIN\n \u200f": "\u200e\n B09CTMLF8X", "Best Sellers Rank": "#586,010 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#5,043 in Facial Cleansing Washes", "#5,043 in Facial Cleansing Washes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the BERRICHI Store", "brand_url": "https://www.amazon.com/stores/Berrichi/page/B567A06F-1E2C-4A54-9C1D-699ACE2A9C97?ref_=ast_bln", "full_description": "", "pricing": "$19.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21XwAyX7lBL.jpg", "https://m.media-amazon.com/images/I/41z+Z8hiVVL.jpg", "https://m.media-amazon.com/images/I/51OmQQ3A4yL.jpg", "https://m.media-amazon.com/images/I/51tIkvKAynL.jpg", "https://m.media-amazon.com/images/I/510nzkd8R3L.jpg", "https://m.media-amazon.com/images/I/51BifF3GWSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Cleansers \u203a Washes", "average_rating": 4.4, "small_description": ["\u2714\ufe0fNatural & Organic Ingredients: As a completely unique ingredient, Foaming Cleanser is enriched with a unique finger lime extract Lime Pearl, which has a gentle exfoliating effect on the skin. Astaxanthin and other replenishing components assist in condition skin, leaving your face feeling extraordinarily smooth and clear. ", "\u2714\ufe0fEffects you will feel: Facial Moisturizer will moisturize, hydrate, renew, nourish, protect and prevent the signs of aging with the help of natural and organic ingredients in Face moisturizer which we can also call Organic Face Wash leaving your face feeling completely refreshed and clean. ", "\u2714\ufe0f Perfectly Balanced Skin: Berrichi face wash significantly reduces enlarged pores while also leaving your skin feeling revitalized. The Face Cleanser is suitable for sensitive skin and also for removing eye makeup. ", "\u2714\ufe0f Premium Berrichi Quality:Foaming face wash is useful, especially to effectively wash away dirt, pollution, and makeup with premium ingredients like Astaxanthin & Furcelleran without any rubbing. Get yours Today! ", "\u2714\ufe0f How to use: Before applying the Facial Foaming Cleanser, splash your face with water. Gently massage the foam on your skin, rinse thoroughly. The foam is suitable for everyday use, for all ages and for vegans. "], "total_reviews": 5, "total_answered_questions": "", "customization_options": "", "seller_id": "A3U21UC53KHM0V", "seller_name": "BERRICHI", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09CTMLF8X", "category": "beauty", "query": "Makeup Remover", "page": 197, "small_description_old": "About this item \u2714\ufe0fNatural & Organic Ingredients: As a completely unique ingredient, Foaming Cleanser is enriched with a unique finger lime extract Lime Pearl, which has a gentle exfoliating effect on the skin. Astaxanthin and other replenishing components assist in condition skin, leaving your face feeling extraordinarily smooth and clear. \u2714\ufe0fEffects you will feel: Facial Moisturizer will moisturize, hydrate, renew, nourish, protect and prevent the signs of aging with the help of natural and organic ingredients in Face moisturizer which we can also call Organic Face Wash leaving your face feeling completely refreshed and clean. \u2714\ufe0f Perfectly Balanced Skin: Berrichi face wash significantly reduces enlarged pores while also leaving your skin feeling revitalized. The Face Cleanser is suitable for sensitive skin and also for removing eye makeup. \u2714\ufe0f Premium Berrichi Quality:Foaming face wash is useful, especially to effectively wash away dirt, pollution, and makeup with premium ingredients like Astaxanthin & Furcelleran without any rubbing. Get yours Today! \u2714\ufe0f How to use: Before applying the Facial Foaming Cleanser, splash your face with water. Gently massage the foam on your skin, rinse thoroughly. The foam is suitable for everyday use, for all ages and for vegans."}, {"name": "My Sanity Question Giraffe Christmas Pattern Black Ugly Wool Christmas Sweater Pullover Long Sleeve Sweater for Men Women, Couple Matching, Friends", "product_information": {"Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n October 12, 2021", "ASIN\n \u200f": "\u200e\n B09J95S478", "": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_sl_s_ap_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "Material: Polyester 185GSM (~6.5 oz/m2). Provides insulation and extra down-like warmth. Bring more warmth and comfort, helping to block cold and chill.", "pricing": "$39.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51KqjjxlCOL.jpg", "https://m.media-amazon.com/images/I/41S--SSnDgL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Sweaters", "average_rating": "", "small_description": ["Material: Polyester 185GSM (~6.5 oz/m2). Provides insulation and extra down-like warmth. Bring more warmth and comfort, helping to block cold and chill. ", "Feature: Advanced cut and sew sublimation printing: Using cut and sew sublimation printing technology, the image is vivid, the color is bright and strong, no pollution, and it will never be discolored. ", "Washing Condition: Hand washes Cold, Hang, or Line Dry. High Quality: Brushed fleece, keep warm, soft, and comfortable. ", "GOOD FOR SEVERAL OCCASIONS - A useful gift to coffee lovers for a Christmas stocking stuffer, Xmas, Father's Day, bday, inexpensive holiday gift, valentine's day, birthdays, cool gift basket, white elephant gift exchange humor, secret santa, yankee swap, sarcastic gag gift bags and wraps, retirement, turning 40 50 60 or 70 years old, funniest creative small gifts ", "SATISFACTION GUARANTEE - All of our products are backed by our manufacturer's money back guarantee ensuring you receive a quality product free from defects; creates unique novelty drinkware with sayings that make fun gifts for him or her, parents, children, mom, dad, son, daughter, mother, father, brother, sister, grandma, grandpa, aunt, uncle, boys, girls, seniors, adults, teens, kids, man, woman, grandmother, grandfather, student, teacher, employees, boss, male, female "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09J95S478", "category": "fashion", "query": "Men's Sweaters", "page": 159, "small_description_old": "Material: Polyester 185GSM (~6.5 oz/m2). Provides insulation and extra down-like warmth. Bring more warmth and comfort, helping to block cold and chill. Feature: Advanced cut and sew sublimation printing: Using cut and sew sublimation printing technology, the image is vivid, the color is bright and strong, no pollution, and it will never be discolored. Washing Condition: Hand washes Cold, Hang, or Line Dry. High Quality: Brushed fleece, keep warm, soft, and comfortable. GOOD FOR SEVERAL OCCASIONS - A useful gift to coffee lovers for a Christmas stocking stuffer, Xmas, Father's Day, bday, inexpensive holiday gift, valentine's day, birthdays, cool gift basket, white elephant gift exchange humor, secret santa, yankee swap, sarcastic gag gift bags and wraps, retirement, turning 40 50 60 or 70 years old, funniest creative small gifts SATISFACTION GUARANTEE - All of our products are backed by our manufacturer's money back guarantee ensuring you receive a quality product free from defects; creates unique novelty drinkware with sayings that make fun gifts for him or her, parents, children, mom, dad, son, daughter, mother, father, brother, sister, grandma, grandpa, aunt, uncle, boys, girls, seniors, adults, teens, kids, man, woman, grandmother, grandfather, student, teacher, employees, boss, male, female"}, {"name": "Zebra Technologies ZT23043-T31200FZ Series ZT230 4\" TT Tabletop Printer, 300 dpi Resolution, Peel with Liner Take-Up, Power Cord with US Plug, Serial/USB/Internal Print Server 10/100/Ethernet, ZPL", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 12.7 x 20.7 x 16.3 inches; 20 Pounds", "Item model number\n \u200f": "\u200e\n ZT23043-T31200FZ", "Date First Available\n \u200f": "\u200e\n February 4, 2013", "Manufacturer\n \u200f": "\u200e\n Zebra", "ASIN\n \u200f": "\u200e\n B00AY1SXW2", "Best Sellers Rank": "#936,966 in Office Products (See Top 100 in Office Products)#1,856 in Desktop Label Printers", "#1,856 in Desktop Label Printers": ""}, "brand": "Visit the ZEBRA Store", "brand_url": "https://www.amazon.com/stores/ZEBRA/page/C8016798-5F10-4AC7-9E4D-377CEDB6F3CC?ref_=ast_bln", "full_description": "Zebra incorporated extensive customer feedback, as well as the legacy of its Stripe and S4M printers, to create the new ZT200 series printers, which feature space-saving design, effortless setup, intuitive user operation, and ease of service and maintenance. Whether you are adopting barcode technology for the first time or upgrading existing printer models, the ZT200 series is the right choice for a variety of labeling applications. This innovative new printer provides many user benefits. The ZT200 series offers a streamlined design and smaller footprint that takes up less physical space than the Stripe and S4M models. ZT200 series printers require minimal operator training and benefit from tool-less standard component maintenance and a durable design to minimize service. Your IT staff will appreciate the backwards compatibility, since it allows for new printers to be up and running with minimal time and effort. The ZT200 series has been designed for ease of use, versatility and outstanding value.", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/31lPYUFzm7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Electronics \u203a Printers & Accessories \u203a Printers \u203a Label Printers", "average_rating": "", "small_description": ["Print methods: direct-thermal or thermal transfer (optional) ", "Bi-fold media door with large clear window ", "Side-loading supplies path for simplified media and ribbon loading ", "Bi-color LEDs for quick printer status ", "USB 2.0 and RS-232 serial ports "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00AY1SXW2", "category": "electronics", "query": "Printers & Scanners", "page": 154, "small_description_old": "About this item\n \nPrint methods: direct-thermal or thermal transfer (optional) Bi-fold media door with large clear window Side-loading supplies path for simplified media and ribbon loading Bi-color LEDs for quick printer status USB 2.0 and RS-232 serial ports"}, {"name": "YALFJV Women Long Sleeve Crew Neck Side Button T Shirts Tunic Dress Loose Asymmetric Hem Tunic Pullover to Wear with Leggings", "product_information": {"Item model number\n \u200f": "\u200e\n christmas trees", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n November 18, 2021", "Manufacturer\n \u200f": "\u200e\n nursing sweater", "ASIN\n \u200f": "\u200e\n B09M6CGBJC", "Best Sellers Rank": "#1,494,072 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#7,047 in Women's Athletic Shirts & Tees", "#7,047 in Women's Athletic Shirts & Tees": ""}, "brand": "Brand: YALFJV", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=YALFJV", "full_description": "\ud83c\udf84\ud83c\udf84\ud83c\udf84Welcome to YALFJV Store\ud83c\udf84\ud83c\udf84\ud83c\udf84 Skin Friendly Material: 35%Cotton,60%Polyester,5%Spandex, Super soft,strechy and lightweight ,but warm enough to keep you warm in spring or fall or winter. Design Will Not Make You Feel Too Tight When You Layer Up More In Cold Day. Occasion:Casual Top Is Good For Party, Club, Daily Life, Office, Home, Etc. This Hoodie Solves The Problem Of Not Knowing What To Wear On A Date. Match: Update your wardrobe with this super comfy Hoodie. Style with Denim Short, skinny jeans, jeans and leggings for a fashionable look! You can wear a beautiful little vest inside, the looming figure will make you more charming Matching with washed jeans, easy to match with everyday clothes, making you more charming In daily exercise, it is very easy to catch a cold after exercise. Wearing it will give you warmth. Plus the unique design of the clothes makes you more attractive Clothing Care: Machine or Hand Wash with Cold Water/Hang or Line Dry/No Bleach/No Dry Clean. Stretches well and material washes well with no to minimal shrinking. It does get softer with each wash. Warmth Warning: 1. Please check the size details carefully before you purchase. 2. Please allow 0.5inch-1inch inaccuracy because of the manual measurement. 3. It is better to hand gently wash the items by cold water, don't bleach, hang dry, and low iron. 4. Feel free to contact us if you need additional information or have comments or questions, our customer service team will be in contact with you in shortly. Thank you!", "pricing": "$10.71$18.34", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/315klBbTGGL.jpg", "https://m.media-amazon.com/images/I/41P0fYLd1mL.jpg", "https://m.media-amazon.com/images/I/31r+wPpktfL.jpg", "https://m.media-amazon.com/images/I/31s2pmwNUHL.jpg", "https://m.media-amazon.com/images/I/21PbsbajDOL.jpg", "https://m.media-amazon.com/images/I/41Yq8r-x8lL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Sports & Outdoors \u203a Sports \u203a Water Sports \u203a Swimming \u203a Swimwear", "average_rating": "", "small_description": ["\u265a\u3010IMPORTED MATERIAL\u3011:92%Polyester+8%Spandex;Ultra-Soft And Lightweight,Stretch Fabric Makes You Feel Super Comfortable,Loose And Skin-Friendly ", "\u265a\u3010SIZES & DELIVERY\u3011: Detailed size info please check our product picturesand description. About shipping:Standard Shipping 15-30 Days. If you have any questions, please feel free to contact us\uff01 ", "\u265a\u3010COMPLETE SIZE, CHOOSE AT WILL\u3011: Womens Tops Halloween Costumes for Women Sweaters for Women Plus Size Top for Women Long Sleeve Shirts for Women Cardigan for Women Shirts for Women Hoodies for Women Sweatshirts for Women ", "\u265a\u3010OCCASIONS & ALL MATCH\u3011: The fashion long sleeve shirts is perfect choice for your Daily Wear, Outdoor Activities, Shopping, Club, Party, Dating and any other occasions in Spring, Summer, Fall and Winter.You can easily pair this shirts with variety of tank tops, cami, jeans, denim shorts, skirts, jeggings, sneakers or heels to complete casual look closure ", "\u265a\u3010HOW TO CLEAN IT\u3011: Recommended Hand Wash, hang to dry in shade, prohibit bleaching,use laundary bags if you use washing machine ", "hoodie custom sweatshirt shirt Halloween black sweater vest mens cardigan sweater blouse with ruffles tunic tops Christmas stud earrings for women golf rain pullover fur coat storage bags breathable mesh jacket pillow top mattress cover full t shirt flowy dress silk tank top mint green cami tee shirts for men plus size denim vest ", "baby sweatshirt black hoodie royal blue cardigan Christmas tankini top mesh shirt womens pullover sweater cute heart windbreaker mens jacket t shirts for men graphic military coat sweater rainbow dress yoga pants for women usa tank top women cami short set saree blouse readymade gold lace tunic tops for women black graphic tee men fleece vest men Halloween , animal hoodie panda sweatshirt funny shirt Halloween work sweater girl cardigan wrap front blouse brown tunic Christmas dresses for women work casual wool pullover coat womens watertight ii rain jacket turtle neck top for women t shirt men plus size cocktail dress swim tank top men lacy cami women tee reflector vest, baby boy sweatshirt hoodie 3d green cardigan Christmas yellow bikini top sheer shirt knit pullover sweater camo jacket for women womens t shirts wall coat hooks sweater off shoulder dresses for women tie up sandals summer tank tops cami pack pineapple blouse ruffle tunic mens pocket tee shirts lace vest Halloween, sweatshirts for teen girls fleece hoodie women cashmere cardigan sweater Christmas tube tops for women long sleeve shirt women pullover hoodie jacket patches dry fit t shirts for men single coat hooks beige sweater sequin dress birthday gifts for women tank top for men lace back cami blouse top plus tunic dad tee sweater vest women Halloween"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09M6CGBJC/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt324-beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31-2ZOaHL7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M5WSXSK/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt325-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/313criNrPpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6KBQK9/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt326-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31kyoVjEj+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6598NZ/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt327-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31TSxcCHKUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6C3TLD/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt328-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31+waWzKbBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M62VPSW/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt329-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31DqG8RR8+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6C27FJ/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt330-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/418QB5Rg9wL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M69QZVZ/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt331-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41SLNGZYGpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6C2JMW/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt332-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41VfdbkJNXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M69YK9N/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt333-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31-v8MXzksL.jpg"}, {"is_selected": true, "url": null, "value": "Xnj-tshirt334-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/315klBbTGGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M675D1L/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt335-navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31MFBlDLTFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M66QH2W/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt336-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41FRFwjQOOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6B7949/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt337-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xuib19JdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6CPT92/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt338-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41DlbVrJEjL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M698Q66/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt339-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41XXESmlO2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M63DJW5/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt340-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41o4Sdz2cqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M696HYJ/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt341-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4108zGerWuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M675D1K/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt342-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41lMI3gWKWL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M64QMM4/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt343-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yZqQ92MhL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6C3TKZ/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt344-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rmUPOZWML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M62TSJ2/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt345-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41oP-AZqkcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M5SYS9P/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt346-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ovsbuF9ZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M5ZLG2N/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt347-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wIfXohlgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6K7ZJJ/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt348-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Xzx5Wyh2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M67S5HF/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt349-wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UQpBoIUiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09M6F6SZ8/ref=twister_B09M6MCKX2", "value": "Xnj-tshirt350-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41iO1kLpDqL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09M5XZ7LM"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09M65VV9B"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09M5ZYRFV"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09M63B87V"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09M67WGHM"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09M63B87V", "category": "fashion", "query": "Women's Sweaters", "page": 172, "small_description_old": "\u265a\u3010IMPORTED MATERIAL\u3011:92%Polyester+8%Spandex;Ultra-Soft And Lightweight,Stretch Fabric Makes You Feel Super Comfortable,Loose And Skin-Friendly \u265a\u3010SIZES & DELIVERY\u3011: Detailed size info please check our product picturesand description. About shipping:Standard Shipping 15-30 Days. If you have any questions, please feel free to contact us\uff01 \u265a\u3010COMPLETE SIZE, CHOOSE AT WILL\u3011: Womens Tops Halloween Costumes for Women Sweaters for Women Plus Size Top for Women Long Sleeve Shirts for Women Cardigan for Women Shirts for Women Hoodies for Women Sweatshirts for Women \u265a\u3010OCCASIONS & ALL MATCH\u3011: The fashion long sleeve shirts is perfect choice for your Daily Wear, Outdoor Activities, Shopping, Club, Party, Dating and any other occasions in Spring, Summer, Fall and Winter.You can easily pair this shirts with variety of tank tops, cami, jeans, denim shorts, skirts, jeggings, sneakers or heels to complete casual look closure \u265a\u3010HOW TO CLEAN IT\u3011: Recommended Hand Wash, hang to dry in shade, prohibit bleaching,use laundary bags if you use washing machine hoodie custom sweatshirt shirt Halloween black sweater vest mens cardigan sweater blouse with ruffles tunic tops Christmas stud earrings for women golf rain pullover fur coat storage bags breathable mesh jacket pillow top mattress cover full t shirt flowy dress silk tank top mint green cami tee shirts for men plus size denim vest baby sweatshirt black hoodie royal blue cardigan Christmas tankini top mesh shirt womens pullover sweater cute heart windbreaker mens jacket t shirts for men graphic military coat sweater rainbow dress yoga pants for women usa tank top women cami short set saree blouse readymade gold lace tunic tops for women black graphic tee men fleece vest men Halloween \n animal hoodie panda sweatshirt funny shirt Halloween work sweater girl cardigan wrap front blouse brown tunic Christmas dresses for women work casual wool pullover coat womens watertight ii rain jacket turtle neck top for women t shirt men plus size cocktail dress swim tank top men lacy cami women tee reflector vestbaby boy sweatshirt hoodie 3d green cardigan Christmas yellow bikini top sheer shirt knit pullover sweater camo jacket for women womens t shirts wall coat hooks sweater off shoulder dresses for women tie up sandals summer tank tops cami pack pineapple blouse ruffle tunic mens pocket tee shirts lace vest Halloweensweatshirts for teen girls fleece hoodie women cashmere cardigan sweater Christmas tube tops for women long sleeve shirt women pullover hoodie jacket patches dry fit t shirts for men single coat hooks beige sweater sequin dress birthday gifts for women tank top for men lace back cami blouse top plus tunic dad tee sweater vest women HalloweenShow more"}, {"name": "doTERRA - On Guard Natural Whitening Toothpaste - 4.2 oz (2 Pack)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.4 x 2.7 x 8.5 inches; 4.96 Ounces", "Item model number\n \u200f": "\u200e\n No Model", "Date First Available\n \u200f": "\u200e\n February 17, 2014", "Manufacturer\n \u200f": "\u200e\n doTERRA", "ASIN\n \u200f": "\u200e\n B00KTPKPQA", "Best Sellers Rank": "#21,202 in Health & Household (See Top 100 in Health & Household)#238 in Toothpaste", "#238 in Toothpaste": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: DoTerra", "brand_url": "https://www.amazon.com/DoTerra/b/ref=bl_dp_s_web_7494830011?ie=UTF8&node=7494830011&field-lbr_brands_browse-bin=DoTerra", "full_description": "d\u014dTERRA On Guard® Natural Whitening Toothpaste 4.2oz (2 Pack)", "pricing": "$23.80", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/310iOx34-tL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": 4.8, "small_description": ["Helps calm and soothe dry, scratchy throats "], "total_reviews": 1187, "total_answered_questions": 13, "customization_options": "", "seller_id": "A30F56XD2WKR4", "seller_name": "Everything Essential", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00KTPKPQA", "category": "beauty", "query": "Mouthwash", "page": 25, "small_description_old": "About this item Helps calm and soothe dry, scratchy throats"}, {"name": "Comfortable Bluetooth Headset, UX-M97 Wireless Headset with Microphone, Wireless Cell Phone Headset with Noise Isolation Mic Charging Base Mute Function for Xiaomi Poco F3 GT with Charging Dock", "product_information": {"Product Dimensions": "6.89 x 2.01 x 7.17 inches", "Item Weight": "3 ounces", "ASIN": "B09L86RDXS", "Item model number": "UX-M97", "Date First Available": "November 8, 2021", "Manufacturer": "UrbanX"}, "brand": "Brand: UrbanX", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=UrbanX", "full_description": "Description: Bluetooth version: V5.0 Bluetooth chip: V5.0 chip Communication distance: 33 Feet (10 meters) Bluetooth protocol: HSP, HFP, AVRCP, A2DP Decoding method: SBC BUILT-IN BATTERY: 180mAh / 3.7V Charging time: about 2 hours Standby time: 200 hours Working time: about 17 hours (50% volume) Headphone net weight: about 51g Charging base net weight: about 242g Headphone size: 163.21 x 142.27 x 48.5mm Charging base size: 79 * 73 * 31mm Specs: 1. Professionally Built for crystal clear sound 2. Comfortable and adjustable headband 3. Multipoint connection and wide compatibility 4. Easy pairing and wireless freedom 5. Noise-canceling boom microphone Package Included: 1 x UX-M97 Bluetooth Headset 1 * Charging Cable 1 * User Manual 1 * Portable Headphone Charging Dock", "pricing": "$41.95", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon. Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31B+n56ecLL.jpg", "https://m.media-amazon.com/images/I/41z6XzTr14L.jpg", "https://m.media-amazon.com/images/I/41TBuZXZxjL.jpg", "https://m.media-amazon.com/images/I/51wChYvbZiL.jpg", "https://m.media-amazon.com/images/I/51jHIAJDfrL.jpg", "https://m.media-amazon.com/images/I/51rR5w2C1EL.jpg", "https://m.media-amazon.com/images/I/512C2R0cjML.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Single Ear Bluetooth Headsets", "average_rating": "", "small_description": ["\u3010CREATED FOR COMFORT\u3011 - Weights only 1.7oz, featuring with balanced over-the-headset design and soft memory-foam padding, the headset provides you comfortable wearing experience for intensive all-day use. Designed with stretchable headband, you can adjust it to a suitable width according to your head's size. ", "\u3010NOISE CANCELING MIC\u3011 - Advanced noise-canceling technology isolates your voice from the noise around you, so you can stay focused on what you want. 270\u00b0 flexible mic can be positioned for better voice capture and background noise reduction.\u00a0Provide crystal-clear conversations even in the busiest work environment. Perfect for when you\u2019re working or studying from home or taking conference calls, in the car and outdoor. ", "\u3010EASY CONTROLS & MUTE FUNCTION\u3011- UX-M97 wireless\u00a0bluetooth headphones provides an intuitive and simple interface to adjust volume, play/pause\u00a0music,\u00a0and answer/end calls. One key to power on and enter pairing mode, wake up Siri, etc. Just press the \u201c+\u201d and \u201c-\u201d buttons simultaneously to mute your microphone, you can easily block the sound on your side during a conversation when needed. ", "\u3010MULTI-POINT CONNETCTION & WIRELESS FREEDOM\u3011 - Widely compatible with most Bluetooth-enabled devices, like cellphone, computer, tablet and laptop, etc. Simultaneously connect any two Bluetooth devices via Bluetooth 5.0 and seamlessly switch between the two at will. The 33 feet (10 Meter) wireless range provides freedom to roam while staying connected. Transition between phone chats, video conferencing or music throughout your day\u2014all with the same headset. ", "\u3010TALK ALL DAY & 3 MONTHS WARRANTY\u3011- With up to 15 hours of talk time, This UX-M97 trucker wireless headset allows you make reliable wireless calls throughout the day on a 2- hour single charge. Designed with a sleek magnetic charging base, you can easily drop it in for a charge and storage, you can also charge the headset with the usb cable directly. 3 MONTHS WARRANTY & always-ready friendly customer service ensured. "], "total_reviews": "", "total_answered_questions": "", "model": "UX-M97", "customization_options": "", "seller_id": "A2M1DK69L6WDGN", "seller_name": "UrbanX USA", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B09L86RDXS", "category": "electronics", "query": "Bluetooth Headsets", "page": 320, "small_description_old": "About this item\n \n\u3010CREATED FOR COMFORT\u3011 - Weights only 1.7oz, featuring with balanced over-the-headset design and soft memory-foam padding, the headset provides you comfortable wearing experience for intensive all-day use. Designed with stretchable headband, you can adjust it to a suitable width according to your head's size. \u3010NOISE CANCELING MIC\u3011 - Advanced noise-canceling technology isolates your voice from the noise around you, so you can stay focused on what you want. 270\u00b0 flexible mic can be positioned for better voice capture and background noise reduction.\u00a0Provide crystal-clear conversations even in the busiest work environment. Perfect for when you\u2019re working or studying from home or taking conference calls, in the car and outdoor. \u3010EASY CONTROLS & MUTE FUNCTION\u3011- UX-M97 wireless\u00a0bluetooth headphones provides an intuitive and simple interface to adjust volume, play/pause\u00a0music,\u00a0and answer/end calls. One key to power on and enter pairing mode, wake up Siri, etc. Just press the \u201c+\u201d and \u201c-\u201d buttons simultaneously to mute your microphone, you can easily block the sound on your side during a conversation when needed. \u3010MULTI-POINT CONNETCTION & WIRELESS FREEDOM\u3011 - Widely compatible with most Bluetooth-enabled devices, like cellphone, computer, tablet and laptop, etc. Simultaneously connect any two Bluetooth devices via Bluetooth 5.0 and seamlessly switch between the two at will. The 33 feet (10 Meter) wireless range provides freedom to roam while staying connected. Transition between phone chats, video conferencing or music throughout your day\u2014all with the same headset. \u3010TALK ALL DAY & 3 MONTHS WARRANTY\u3011- With up to 15 hours of talk time, This UX-M97 trucker wireless headset allows you make reliable wireless calls throughout the day on a 2- hour single charge. Designed with a sleek magnetic charging base, you can easily drop it in for a charge and storage, you can also charge the headset with the usb cable directly. 3 MONTHS WARRANTY & always-ready friendly customer service ensured."}, {"name": "Premium Tongue Scraper Cleaner, BPA Free Tongue Scrapers, Healthy Oral Care, Soft and 100% Effective Clean Tools, With Travel Carry Case", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.84 x 4.72 x 1.34 inches; 2.89 Ounces", "UPC\n \u200f": "\u200e\n 190372932655", "Manufacturer\n \u200f": "\u200e\n BUZHI", "ASIN\n \u200f": "\u200e\n B08LD3XCPQ", "Best Sellers Rank": "#95,549 in Health & Household (See Top 100 in Health & Household)#85 in Tongue Brushes, Scrapers & Cleaners", "#85 in Tongue Brushes, Scrapers & Cleaners": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: UWOIST", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=UWOIST", "full_description": "Why we need tongue scrapers? 1.Clinical studies have shown that using a tongue cleaner on a daily basis can remove dead skin cells, dirt and food debris from the surface of the tongue, then get rid of bad breath. 2.Tongue cleaning is an important oral hygienic practice, it can help to solve a variety of health issues, such as improving taste sensation, helping digestion, and thus boosting our immune system, improving body health. How to use tongue scrapers: 1.Wet our tongue and tongue scraper with water. 2.Open mouth and extend tongue as far out as we can. 3.Place the curved edge of tongue cleaner at the back of tongue, gently scrape from the inside out with the scraper. 4.Repeat 3 or 4 times. 5.Clean tongue scraper with water and leave it to dry. Note: 1.Be gentle enough to avoid harming our taste buds or breaking the skin. 2.If worried about gagging, Starting to scrape at middle of our tongue will be helpful. Professional Package Including: \u27642 x Pink tongue scraper \u27641 x Blue tongue scraper \u27641 x Green tongue scraper \u27641 x Travel Carry Case \u27641 x Instruction \u27641 x Package Bag", "pricing": "$4.29", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51cYnGktd4L.jpg", "https://m.media-amazon.com/images/I/51C3RvcsTOL.jpg", "https://m.media-amazon.com/images/I/41rD2LGoKwL.jpg", "https://m.media-amazon.com/images/I/51i-hynVPkL.jpg", "https://m.media-amazon.com/images/I/51CqLyqi5cL.jpg", "https://m.media-amazon.com/images/I/51Rnvr6+i8L.jpg", "https://m.media-amazon.com/images/I/51Qoe+mQcdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Tongue Cleaners", "average_rating": 4.3, "small_description": ["\ud83c\udf40\u3010FAST & 100% EFFECTIVE\u3011: Just take 10 seconds, the odor-causing microbes can be removed. These tongue scraper can improve oral health, and make our breath fresher. It also be strongly recommended to use every morning and evening by dentist. ", "\ud83c\udf40\u3010SOFT & NO RISK\u3011: Silicon brush head is smooth on our tongue - without any risk of nicks for tongue and taste buds.The curved and smooth brush head surface can reach every part of our tongue. So we can scrape tongue with ease, more gentle and easier. ", "\ud83c\udf40\u3010 FOR ADULTS & KIDS \u3011Verified by multiple people, this width tongue cleaner is the perfect size for both adults and kids.The simple profile, wide head and ergonomic handle can help us to get rid of bad breath by removing food residue and exfoliated epithelial cells build up on tongue. ", "\ud83c\udf40\u3010 EASY TO CLEAN & STORE\u3011Maintaining great dental hygiene shouldn't take much time. We can clean them by cleaning tablet, lemon water or just water before and after each use. Then store it in tooth glass. ", "\ud83c\udf40\u3010CONVENIENT TO CARRY\u3011These 4PCS tongue scrapers set come with a premium travel storage case, can be convenient to carried for multi-place using, such as home, work, school, trip, camping or any other situation. "], "total_reviews": 123, "total_answered_questions": "", "customization_options": "", "seller_id": "AJ9TQIIPI3VFD", "seller_name": "UWOIST Direct", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08LD3XCPQ", "category": "beauty", "query": "Tongue Cleaners", "page": 3, "small_description_old": "\ud83c\udf40\u3010FAST & 100% EFFECTIVE\u3011: Just take 10 seconds, the odor-causing microbes can be removed. These tongue scraper can improve oral health, and make our breath fresher. It also be strongly recommended to use every morning and evening by dentist. \ud83c\udf40\u3010SOFT & NO RISK\u3011: Silicon brush head is smooth on our tongue - without any risk of nicks for tongue and taste buds.The curved and smooth brush head surface can reach every part of our tongue. So we can scrape tongue with ease, more gentle and easier. \ud83c\udf40\u3010 FOR ADULTS & KIDS \u3011Verified by multiple people, this width tongue cleaner is the perfect size for both adults and kids.The simple profile, wide head and ergonomic handle can help us to get rid of bad breath by removing food residue and exfoliated epithelial cells build up on tongue. \ud83c\udf40\u3010 EASY TO CLEAN & STORE\u3011Maintaining great dental hygiene shouldn't take much time. We can clean them by cleaning tablet, lemon water or just water before and after each use. Then store it in tooth glass. \ud83c\udf40\u3010CONVENIENT TO CARRY\u3011These 4PCS tongue scrapers set come with a premium travel storage case, can be convenient to carried for multi-place using, such as home, work, school, trip, camping or any other situation."}, {"name": "Grown Alchemist Purifying Body Exfoliant - Pearl, Peppermint & Ylang Ylang - Pearl Scrub Made with Organic Ingredients (170ml / 5.7oz)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 8 x 1.5 x 1.5 inches; 6.4 Ounces", "Item model number\n \u200f": "\u200e\n GRA0042", "Manufacturer\n \u200f": "\u200e\n Grown Alchemist", "ASIN\n \u200f": "\u200e\n B00OYBADQ2", "Best Sellers Rank": "#351,453 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,337 in Body Scrubs #1,562 in Body Scrubs & Treatments", "#1,337 in Body Scrubs": "", "#1,562 in Body Scrubs & Treatments": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Grown Alchemist Store", "brand_url": "https://www.amazon.com/stores/GrownAlchemist/page/854E107E-284A-451A-8E50-B12B1F5ED806?ref_=ast_bln", "full_description": "", "pricing": "$48.00", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/21wxPlmbkIL.jpg", "https://m.media-amazon.com/images/I/41Hp0yCe-XL.jpg", "https://m.media-amazon.com/images/I/31QGMEEKHgL.jpg", "https://m.media-amazon.com/images/I/41qRGS1l4TL.jpg", "https://m.media-amazon.com/images/I/51eSmDC0iLL.jpg", "https://m.media-amazon.com/images/I/51oTiHGQsQL.jpg", "https://m.media-amazon.com/images/I/A1+TaUFHP1L.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Body Scrubs", "average_rating": 4.6, "small_description": ["This revitalizing body exfoliant is formulated with active ingredients that gently remove dead skin cells, leaving skin noticeably deeply cleansed and smooth ", "Aragonite and Conchiolin proteins from Pearl remove dead skin cells, noticeably decongesting the skin and improving cell turnover, maximizing the skin's ability to absorb topical hydrators ", "Calming and soothing natural Peppermint Extract and aromas of Ylang Ylang, Sandalwood and Bergamot provide uplifting aromatic benefits ", "Suitable for all skin types and especially good for oily skin and skin requiring a body treatment ", "Real results without harmful chemicals. Grown Alchemist products are non-toxic, vegan, cruelty-free and formulated with certified organic ingredients "], "total_reviews": 20, "total_answered_questions": "", "customization_options": "", "seller_id": "A35626WGYD9KZ9", "seller_name": "Cali Direct", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B00OYBADQ2", "category": "beauty", "query": "Scrubs & Body Treatments", "page": 23, "small_description_old": "About this item This revitalizing body exfoliant is formulated with active ingredients that gently remove dead skin cells, leaving skin noticeably deeply cleansed and smooth Aragonite and Conchiolin proteins from Pearl remove dead skin cells, noticeably decongesting the skin and improving cell turnover, maximizing the skin's ability to absorb topical hydrators Calming and soothing natural Peppermint Extract and aromas of Ylang Ylang, Sandalwood and Bergamot provide uplifting aromatic benefits Suitable for all skin types and especially good for oily skin and skin requiring a body treatment Real results without harmful chemicals. Grown Alchemist products are non-toxic, vegan, cruelty-free and formulated with certified organic ingredients"}, {"name": "Definitely Not on Drugs | Funny Party, Rave, Festival Club Humor Unisex Tank Top", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 10 x 8 x 0.74 inches; 3.99 Ounces", "Item model number\n \u200f": "\u200e\n 0-1fba_defnotdrugs-2080802001", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n April 4, 2017", "ASIN\n \u200f": "\u200e\n B06Y1QQ7BT", "Best Sellers Rank": "#379,854 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#691 in Men's Novelty Tanks Tops #123,284 in Men's Fashion", "#691 in Men's Novelty Tanks Tops": "", "#123,284 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Ann Arbor T-shirt Co. Store", "brand_url": "https://www.amazon.com/stores/AnnArborT-shirtCo/page/D54619E3-BDB7-4ED3-9BDF-89475A9FE745?ref_=ast_bln", "full_description": "", "pricing": "$19.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41R3KFzEsrL.jpg", "https://m.media-amazon.com/images/I/41Jwy7S7HSL.jpg", "https://m.media-amazon.com/images/I/31wgs3sFF-L.jpg", "https://m.media-amazon.com/images/I/51G8QmA9KgL.jpg", "https://m.media-amazon.com/images/I/41RAKj7js1L.jpg", "https://m.media-amazon.com/images/I/51crw7GZerL.jpg", "https://m.media-amazon.com/images/I/91XP7AXBblL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Shirts \u203a Tanks Tops", "average_rating": 4.7, "small_description": ["MICHIGAN ARTISTS & PRINTERS | this design was drawn and screen printed (silk screened) with pride by our skilled illustrators and printers in Ann Arbor. If you're ever in the area, stop by for a free tour and see how we make your apparel! Tagless tag is printed on fabric inside collar, you can't feel it. ", "UNISEX MODERN FIT SIZING | this tank is slightly tapered to be a little less boxy than the old style of mass-market t-shirt. Nothing drastic, and most people wear the same size in our shirts as they do in all of their others, but you might go one size larger if you're on the fence. It is pre-shrunk, but like any high-cotton product, will still shrink slightly in the wash. Our model photos are the real thing - the actual tank top on our salesguy, Rich. He's 6' 2\", 200 lbs and wearing a large ", "SOFT FABRICS | Our tanks are a ringspun, 30/1 fine jersey knit on 100% USA-grown cotton. If you don't speak t-shirt geek, that means they are soft and smooth with a high thread-count, tight knit made out of fuzzy plants grown by American farmers. These are mid-weight tank tops - a bit lighter than your mass-market, thick gym class t-shirts, but substantial / not see-through. It's a nice balance between comfort and durability ", "TOP QUALITY INKS | We use QCM screen printing inks, manufactured in Pineville, North Carolina. These are high quality inks - vibrant and durable, and highly crack resistant. Some of our designs are intentionally faded or cracked (see product photos), but our inks always \"do what they are told\" by our printers. We use top of the line printing presses and ovens (to cure inks) made by M&R in Illinois ", "SAFE CHEMISTRY | QCM has been one of the most forward-thinking ink manufacturers in the industry, going phthalate-free over ten years ago - way ahead of the curve. They're also CFC free and rated as carcinogen-free by the state of California "], "total_reviews": 501, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B06Y1QQ7BT"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B06Y1C21SC"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B06Y1R75Q5"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B06Y1L3KFK"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B06Y19VWVS"}], "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B06Y1C21SC", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 33, "small_description_old": "MICHIGAN ARTISTS & PRINTERS | this design was drawn and screen printed (silk screened) with pride by our skilled illustrators and printers in Ann Arbor. If you're ever in the area, stop by for a free tour and see how we make your apparel! Tagless tag is printed on fabric inside collar, you can't feel it. UNISEX MODERN FIT SIZING | this tank is slightly tapered to be a little less boxy than the old style of mass-market t-shirt. Nothing drastic, and most people wear the same size in our shirts as they do in all of their others, but you might go one size larger if you're on the fence. It is pre-shrunk, but like any high-cotton product, will still shrink slightly in the wash. Our model photos are the real thing - the actual tank top on our salesguy, Rich. He's 6' 2\", 200 lbs and wearing a large SOFT FABRICS | Our tanks are a ringspun, 30/1 fine jersey knit on 100% USA-grown cotton. If you don't speak t-shirt geek, that means they are soft and smooth with a high thread-count, tight knit made out of fuzzy plants grown by American farmers. These are mid-weight tank tops - a bit lighter than your mass-market, thick gym class t-shirts, but substantial / not see-through. It's a nice balance between comfort and durability TOP QUALITY INKS | We use QCM screen printing inks, manufactured in Pineville, North Carolina. These are high quality inks - vibrant and durable, and highly crack resistant. Some of our designs are intentionally faded or cracked (see product photos), but our inks always \"do what they are told\" by our printers. We use top of the line printing presses and ovens (to cure inks) made by M&R in Illinois SAFE CHEMISTRY | QCM has been one of the most forward-thinking ink manufacturers in the industry, going phthalate-free over ten years ago - way ahead of the curve. They're also CFC free and rated as carcinogen-free by the state of California"}, {"name": "jsaierl Pajama Pants for Men Soft Long Tall Lounge with Pockets Jogger Yoga Pants Comfort PJs Sleepwear", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 15, 2022", "Manufacturer\n \u200f": "\u200e\n jsaierl", "ASIN\n \u200f": "\u200e\n B09SHWG2CM", "": ""}, "brand": "Brand: jsaierl", "brand_url": "https://www.amazon.com/jsaierl/b/ref=bl_sl_s_ap_web_23686356011?ie=UTF8&node=23686356011&field-lbr_brands_browse-bin=jsaierl", "full_description": "=^_^= Hi,\u00a0 Dear Friend, Welcome to jsaierl=^_^=\u00a0\u00a0\u00a0\u00a0\u00a0 \u2665Feature\u2665\u00a0\u00a0\u00a0 Package Content:1 x\u00a0Men's pants.\u2665Size Chart \u2665 \u27a4Note\uff1aPlease compare our size chart instead of Amazon size chart \u3010You'd better CHOOSE 1 or 2 SIZE UP\u3011 Size: S EU: 72 US: 29 Waist: 74cm/29.13'' Hip: 106cm/41.73'' Length: 90cm/35.43'' Size: M EU: 74 US: 30 Waist: 78cm/30.71'' Hip: 110cm/43.31'' Length: 91cm/35.83'' Size: L EU: 76 US: 31 Waist: 82cm/32.28'' Hip: 114cm/44.88'' Length: 92cm/36.22'' Size: XL EU: 78 US: 32 Waist: 86cm/33.86'' Hip: 118cm/46.46'' Length: 93cm/36.61'' Size: XXL EU: 80 US: 33 Waist: 90cm/35.43'' Hip: 122cm/48.03'' Length: 94cm/37.01'' Size: XXXL EU: 82 US: 34 Waist: 94cm/37.01'' Hip: 126cm/49.61'' Length: 96cm/37.80'' Size: XXXXL EU: 84 US: 36 Waist: 98cm/38.58'' Hip: 130cm/51.18'' Length: 98cm/38.58'' Size: XXXXXL EU: 86 US: 40 Waist: 102cm/40.16'' Hip: 134cm/52.76'' Length: 100cm/39.37'' \u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u261e\u00a0\u00a0\u00a0\u00a0\u00a0 Others: satin bathrobe mens plush bathrobe monogram bathrobe mens silk bathrobe bamboo bathrobe bathrobe belt dad bathrobe winter bathrobe womens terry bathrobe baby boy bathrobe light bathrobe green bathrobe bathrobe with hood cozy bathrobe black bathrobe women travel bathrobe womens silk bathrobe bridal bathrobe ladies terry cloth bathrobe thin bathrobe seersucker bathrobe women mens flannel bathrobe boys fleece bathrobe", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31xpwjLrRGL.jpg", "https://m.media-amazon.com/images/I/313+2C38SAL.jpg", "https://m.media-amazon.com/images/I/31u61oaFmwL.jpg", "https://m.media-amazon.com/images/I/4125VKmrdXL.jpg", "https://m.media-amazon.com/images/I/31g14egekCL.jpg", "https://m.media-amazon.com/images/I/41Bnsf-+k3L.jpg", "https://m.media-amazon.com/images/I/418MtdYCBtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Sports & Outdoors \u203a Fan Shop \u203a Clothing \u203a Sweatshirts & Hoodies", "average_rating": "", "small_description": ["\u3010Premium Materials\u3011:Pajama pants are made of 100% cotton fabric,ensuring that you feel comfortable and soft at every angle.These plaid pants are ideal for you in winter or autumn. ", "\u3010Elastic Waist Band\u3011:Men's Pj Bottoms have elastic bands and drawstrings,which can be adjusted to suit your tightness.Tie the strap to make sure it is secured to your waist and doesn't sag. closure ", "\u3010Functional Pocket\u3011:Pajama pants for men have large and deep pockets on the side,you can conveniently store your belongings,phones,wallets,bank cards and keys,etc.No need to worry about running out of place. ", "\u3010Sleepwear & Loungewear\u3011These exceptionally soft and comfy mens pajama pants will keep you warm and comfy whether you're sleeping, sitting playing games, grabbing something from the fridge, or lounging around. ", "\u3010Perfect Gift\u3011:Soft Lounge Sleep Pants is a favorite for relaxing at home, watching TV, reading a book and sleeping, as unique ideal gift for your family, friends, husband, boyfriend, dad. ", "\u273fBig and tall robes for men microfiber robe black robes for men plush robe for men mens summer robes lightweight mens cotton robes lightweight bathrobe men mens bathrobes men's bathrobes robes for men mens robes lightweight long bathrobe men's bathrobes towel bathrobe bathrobe towel men's bathrobe bathrobe cotton mens bathrobe lightweight cotton robe men plus size kimono robe mens kimono robes mens cotton robe hooded robe kimono robe men matching robes waffle robe men towel robe for men ", "\u273fMens kimono robe mens robe plush mens robes cotton fuzzy robe pool robe mens waffle robe bathrobes for men silk robes for men linen robe mens hooded robe hooded bathrobe bath robes couples hooded robes for men silk robe for men red robe men towel wrap men terry bathrobe silk robe men turkish cotton bathrobe turkish robe fluffy hoodie mens plush robe black hooded robe men silk robe robe mens fuzzy pajama shorts plush clothes mens summer robes lightweight fluffy shorts mens summer robe summer ", "\u273fSpa robes fleece robe white silk robe pink robes for women robes for women fuzzy cotton bathrobes for women soft robe mens bath robe bath robes adult male girls robes red robe men boys robes size 8-10 robes for women robe womens robe silk robes for women silk robe mens robe robes bathrobe bath robes female robe for men women's robes satin robe bath robe terry cloth robes for women kimono robe black robe plus size robe womens bathrobe satin robe for women womens robes white robe "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09SHWG2CM/ref=twister_B09SKQ7R79", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31D1+nvh17L.jpg"}, {"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31xpwjLrRGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SHWZ3C1/ref=twister_B09SKQ7R79", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ZJrETf2gL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09SHVH1K7"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09SHX2NJ8"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09SHXW33P"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09SHX8KMM"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09SHVH1K7", "category": "fashion", "query": "Men's Sleep & Lounge", "page": 41, "small_description_old": "\u3010Premium Materials\u3011:Pajama pants are made of 100% cotton fabric,ensuring that you feel comfortable and soft at every angle.These plaid pants are ideal for you in winter or autumn. \u3010Elastic Waist Band\u3011:Men's Pj Bottoms have elastic bands and drawstrings,which can be adjusted to suit your tightness.Tie the strap to make sure it is secured to your waist and doesn't sag. closure \u3010Functional Pocket\u3011:Pajama pants for men have large and deep pockets on the side,you can conveniently store your belongings,phones,wallets,bank cards and keys,etc.No need to worry about running out of place. \u3010Sleepwear & Loungewear\u3011These exceptionally soft and comfy mens pajama pants will keep you warm and comfy whether you're sleeping, sitting playing games, grabbing something from the fridge, or lounging around. \u3010Perfect Gift\u3011:Soft Lounge Sleep Pants is a favorite for relaxing at home, watching TV, reading a book and sleeping, as unique ideal gift for your family, friends, husband, boyfriend, dad. \u273fBig and tall robes for men microfiber robe black robes for men plush robe for men mens summer robes lightweight mens cotton robes lightweight bathrobe men mens bathrobes men's bathrobes robes for men mens robes lightweight long bathrobe men's bathrobes towel bathrobe bathrobe towel men's bathrobe bathrobe cotton mens bathrobe lightweight cotton robe men plus size kimono robe mens kimono robes mens cotton robe hooded robe kimono robe men matching robes waffle robe men towel robe for men \u273fMens kimono robe mens robe plush mens robes cotton fuzzy robe pool robe mens waffle robe bathrobes for men silk robes for men linen robe mens hooded robe hooded bathrobe bath robes couples hooded robes for men silk robe for men red robe men towel wrap men terry bathrobe silk robe men turkish cotton bathrobe turkish robe fluffy hoodie mens plush robe black hooded robe men silk robe robe mens fuzzy pajama shorts plush clothes mens summer robes lightweight fluffy shorts mens summer robe summer \u273fSpa robes fleece robe white silk robe pink robes for women robes for women fuzzy cotton bathrobes for women soft robe mens bath robe bath robes adult male girls robes red robe men boys robes size 8-10 robes for women robe womens robe silk robes for women silk robe mens robe robes bathrobe bath robes female robe for men women's robes satin robe bath robe terry cloth robes for women kimono robe black robe plus size robe womens bathrobe satin robe for women womens robes white robe"}, {"name": "Princesse Marina De Bourbon - Symbol Fragrance For Women - Floral Blend Of Syringa, Honeysuckle, Tuberose, Jasmine Sambac, Musk, Iris And White Woods - Recommended For Casual Wear - 3.4 Oz Edp Spray", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3 x 3 x 5 inches; 0.01 Ounces", "Item model number\n \u200f": "\u200e\n I0096915", "Manufacturer\n \u200f": "\u200e\n Princesse Marina de Bourbon", "ASIN\n \u200f": "\u200e\n B084DF7NLZ", "Country of Origin\n \u200f": "\u200e\n France", "Best Sellers Rank": "#726,571 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#10,771 in Women's Eau de Parfum", "#10,771 in Women's Eau de Parfum": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Marina de Bourbon", "brand_url": "https://www.amazon.com/Marina-de-Bourbon/b/ref=bl_dp_s_web_20132938011?ie=UTF8&node=20132938011&field-lbr_brands_browse-bin=Marina+de+Bourbon", "full_description": "Symbol Eau de Parfum by Princesse Marina De Bourbon is a Floral fragrance for women. This is a serenely elegant white floral fragrance from 2019 is enhanced by hints of animalic musk and sheer powder, Marina De Bourbon Symbol by the inimitable French perfume house is a luxurious spring and summertime scent that entrances with sheer accords of flowers and precious wood. The opening is shimmering and bright, mingling ethereal syringa and honeysuckle. Heart notes are a carnal and precious blend of tuberose, jasmine and base notes are iris, Musk and White Woods.", "pricing": "$39.86", "list_price": "", "availability_quantity": 12, "availability_status": "Only 12 left in stock - order soon. Only 12 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31R0O-NLC5L.jpg", "https://m.media-amazon.com/images/I/317ZTu5IYaL.jpg", "https://m.media-amazon.com/images/I/41s7kKbNPpL.jpg", "https://m.media-amazon.com/images/I/41umLPRsu0L.jpg", "https://m.media-amazon.com/images/I/510u6r6dB9L.jpg", "https://m.media-amazon.com/images/I/41yZ98n2gTL.jpg", "https://m.media-amazon.com/images/I/A1ZofPTWt8L.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Eau de Parfum", "average_rating": 3.1, "small_description": ["FEEL LIKE A PRINCESS OF FRANCE. Princess Marina de Bourbon invites you to embrace your inner femininity and elegance with this fresh, sunny perfume. ", "ELEGANT AND MODERN. This scent opens with notes of , white flowers, seringat, and honeysuckle. The heart of tuberose and jasmine dries down to a base of iris and wood. ", "A LONG-LASTING TRAIL OF REFINEMENT. All day long, this eau de parfum will wrap you in layers of luxury and transport you to the unique universe of Princess Marina de Bourbon. ", "TIMELESS LUXURY. The elegant design of this beautiful bottle is a symbol of modern luxury that will surely stand out in your fragrance collection. ", "ONCE UPON A TIME: FRENCH ELEGANCE. Our perfume house, led by a modern-day princess, uses the suggestive power of flowers and nature to create intimate and personal scents that echo memory and invite the spirit to travel. "], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B084DF7NLZ", "category": "beauty", "query": "Women's Fragrance", "page": 127, "small_description_old": "About this item FEEL LIKE A PRINCESS OF FRANCE. Princess Marina de Bourbon invites you to embrace your inner femininity and elegance with this fresh, sunny perfume. ELEGANT AND MODERN. This scent opens with notes of , white flowers, seringat, and honeysuckle. The heart of tuberose and jasmine dries down to a base of iris and wood. A LONG-LASTING TRAIL OF REFINEMENT. All day long, this eau de parfum will wrap you in layers of luxury and transport you to the unique universe of Princess Marina de Bourbon. TIMELESS LUXURY. The elegant design of this beautiful bottle is a symbol of modern luxury that will surely stand out in your fragrance collection. ONCE UPON A TIME: FRENCH ELEGANCE. Our perfume house, led by a modern-day princess, uses the suggestive power of flowers and nature to create intimate and personal scents that echo memory and invite the spirit to travel."}, {"name": "Amosfun 27Pcs Glitter Heart Cupcake Toppers Love Cake Toppers Fruit Dessert Toothpick Cake Picks for New Year Weeding Birthday Valentines Day Cake Decoration Assorted Color", "product_information": {"Product Dimensions": "6.1 x 1.18 x 0.04 inches", "Item Weight": "5.3 ounces", "Department": "Unisex", "Manufacturer": "Amosfun", "ASIN": "B08PBDHVN8", "Batteries Required?": "No"}, "brand": "Visit the Amosfun Store", "brand_url": "https://www.amazon.com/stores/Amosfun/page/19391F14-D8D4-4994-BF60-347EC29C0F3F?ref_=ast_bln", "full_description": "Description This item is a set of nice and practical cupcake toppers for Valentine's Day, they are crafted in chic and attractive LOVE letters, rose, heart and hot air balloon patterns, they will help you to create a beautiful cake scenic.Features- Color: Assorted Color.- Material: Acrylic.- Size: About 15.50X3.00X0.10cm/ 6.09X1.18X0.04inch.- Stunning cake picks in cute and attractive LOVE letters, rose, heart and hot air balloon design, lovely and cute.- Creative glitter wedding cupcake toppers, fashion and muti- use.- The wonderful decorations to make your cake standing out, gathering people's eyes and attraction.- Suitable for party, wedding, baby shower, etc.- Creative and funny, perfect decorations for cake, dessert and so on.- Color: Assorted Color.- Size: 15.5x3cm.Package Including 3 x golden love shape cupcake toppers 6 x red roses shape cupcake toppers 3 x golden frame love cupcake toppers 12 x red heart and love cupcake toppers 3 x red hot air balloon cupcake toppers", "pricing": "$17.59", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/414Lb+qTL1L.jpg", "https://m.media-amazon.com/images/I/41CLrBtIQFL.jpg", "https://m.media-amazon.com/images/I/41ek3f+-DdL.jpg", "https://m.media-amazon.com/images/I/41QBAeCwPRL.jpg", "https://m.media-amazon.com/images/I/41Ou53MdeGL.jpg", "https://m.media-amazon.com/images/I/41FD+iqEmxL.jpg", "https://m.media-amazon.com/images/I/41qIhEDRSUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Frosting, Icing & Decorations \u203a Cake Toppers", "average_rating": "", "small_description": ["Stunning cake picks in cute and attractive LOVE letters, rose, heart and hot air balloon design, lovely and cute. ", "The wonderful decorations to make your cake standing out, gathering peoples eyes and attraction. ", "Creative and funny, perfect decorations for cake, dessert and so on. ", "Suitable for party, wedding, baby shower, etc. ", "Creative glitter wedding cupcake toppers, fashion and muti-use. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A321U5OH73UZ8M", "seller_name": "Minecarts", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08PBDHVN8", "category": "grocery", "query": "Toothpicks", "page": 36, "small_description_old": "About this item\n \nStunning cake picks in cute and attractive LOVE letters, rose, heart and hot air balloon design, lovely and cute. The wonderful decorations to make your cake standing out, gathering peoples eyes and attraction. Creative and funny, perfect decorations for cake, dessert and so on. Suitable for party, wedding, baby shower, etc. Creative glitter wedding cupcake toppers, fashion and muti-use."}, {"name": "Gloaiidjonh Women Cotton Crew Socks Cute Cartoon Anime Dinosaur Embroidery Mid Tube Hosiery", "product_information": {"Department": "Womens", "Manufacturer": "Gloaiidjonh", "ASIN": "B09MLG4MXX", "Best Sellers Rank": ["#846,130 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry) #2,099 in Women's Athletic Socks"]}, "brand": "Brand: Gloaiidjonh", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Gloaiidjonh", "full_description": "100% brand new and high quality Features: Japanese style, ribbed knitted cuffs, cute cartoon anime dinosaur pattern embroidered, mid-calf length socks. Made of high quality cotton, soft, elasticity, anti-skidding, breathability and comfortability, good for all year wear. Long enough to cover your ankles. Elastic and enhanced cuffs hold socks comfortably in place; they will not dig into your shins. Suitable for many occasions: casual, daily, home, work, sports, party, school, office, outdoor, indoor, etc. Perfect matching for all your low cut shoes, boat shoes, loafers, sneakers, and so on. Great gift idea. 1 pair of socks only, other accessories demo in the picture are not included! Specification: Material: Cotton Recommended Foot Size: 36-43 Optional Color: Black, Blue, Green, Pink, Purple, White Quantity: 1 pair(2pcs) Warm prompt: 1.Asian people size is 1 or 2 sizes smaller than European and American. 2.Please note that low temperature washed,do not bleach and place under the blazing sun for quite a long time. 3.As different measuring methods,it will occur 1-3 cm deviation about the items,please ensure that it is okay for you before ordering. 4.Because of different monitors and lamplight,the picture may not reflect the actual color of the item,really thank you for your kind understanding! Package includes: 1 pair(2pcs) x Socks(without retail package)", "pricing": "$4.93", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31yvVgfcJNL.jpg", "https://m.media-amazon.com/images/I/316dNoKjVtL.jpg", "https://m.media-amazon.com/images/I/41I1Q21GYCL.jpg", "https://m.media-amazon.com/images/I/31HHkukVwRL.jpg", "https://m.media-amazon.com/images/I/41IvsLPaMQL.jpg", "https://m.media-amazon.com/images/I/31XXhTH8txL.jpg", "https://m.media-amazon.com/images/I/31W7bb0zhdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Athletic Socks", "average_rating": "", "small_description": ["Japanese style, ribbed knitted cuffs, cute cartoon anime dinosaur pattern embroidered, mid-calf length socks. ", "Made of high quality cotton, soft, elasticity, anti-skidding, breathability and comfortability, good for all year wear. ", "Long enough to cover your ankles. Elastic and enhanced cuffs hold socks comfortably in place; they will not dig into your shins. ", "Suitable for many occasions: casual, daily, home, work, sports, party, school, office, outdoor, indoor, etc. ", "Perfect matching for all your low cut shoes, boat shoes, loafers, sneakers, and so on. Great gift idea. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09MLGGFX3/ref=twister_B09MLFS1KL?_encoding=UTF8&psc=1", "value": "Bk", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/31rvKaGGb8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MLG1MMV/ref=twister_B09MLFS1KL?_encoding=UTF8&psc=1", "value": "Bl", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/31pewfII3EL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MLDGKVC/ref=twister_B09MLFS1KL?_encoding=UTF8&psc=1", "value": "Gn", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/31De2b6n7XL.jpg"}, {"is_selected": true, "url": null, "value": "Pk", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/31yvVgfcJNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MLFM12R/ref=twister_B09MLFS1KL?_encoding=UTF8&psc=1", "value": "Pl", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/31W7bb0zhdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MLDL45Q/ref=twister_B09MLFS1KL?_encoding=UTF8&psc=1", "value": "W", "price_string": "$4.93", "price": 4.93, "image": "https://m.media-amazon.com/images/I/21w8+l738FL.jpg"}]}, "seller_id": "AB8XOSH3SMY7V", "seller_name": "xloaer33frln", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MLG4MXX", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 44, "small_description_old": "Japanese style, ribbed knitted cuffs, cute cartoon anime dinosaur pattern embroidered, mid-calf length socks. Made of high quality cotton, soft, elasticity, anti-skidding, breathability and comfortability, good for all year wear. Long enough to cover your ankles. Elastic and enhanced cuffs hold socks comfortably in place; they will not dig into your shins. Suitable for many occasions: casual, daily, home, work, sports, party, school, office, outdoor, indoor, etc. Perfect matching for all your low cut shoes, boat shoes, loafers, sneakers, and so on. Great gift idea."}, {"name": "Traditional Standing Floor Lamp Multi 4-Light 63\" Tall Antique Bronze Copper Gold Tortoise Glass Font Fabric Bell Shade Candelabra Decor for Living Room Reading House Bedroom - Barnes and Ivy", "product_information": {"Manufacturer": "\u200eLamps Plus", "Part Number": "\u200eFK02008-1", "Item Weight": "\u200e13.8 pounds", "Product Dimensions": "\u200e20 x 20 x 63 inches", "Item model number": "\u200e98142", "Size": "\u200epillows 14", "Color": "\u200eBrown", "Style": "\u200eTraditional", "Finish": "\u200ePainted", "Material": "\u200eMetal", "Shape": "\u200eBell", "Power Source": "\u200eAC", "Voltage": "\u200e120 Volts", "Wattage": "\u200e60.00", "Item Package Quantity": "\u200e1", "Type of Bulb": "\u200eLED", "Switch Style": "\u200eRotary", "Batteries Included?": "\u200eNo", "ASIN": "B00062IG3A", "Customer Reviews": {"ratings_count": 50, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#419,358 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #2,329 in Floor Lamps"], "Date First Available": "May 23, 2010"}, "brand": "Visit the Barnes and Ivy Store", "brand_url": "https://www.amazon.com/stores/BarnesandIvy/page/5D549552-29DE-40F9-B8B5-ACFC2B90BEE1?ref_=ast_bln", "full_description": "", "pricing": "$269.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41akFMnipwL.jpg", "https://m.media-amazon.com/images/I/211W3-54RKL.jpg", "https://m.media-amazon.com/images/I/41JCEEERIWL.jpg", "https://m.media-amazon.com/images/I/41kgo37wUtL.jpg", "https://m.media-amazon.com/images/I/41bWjWnlUnL.jpg", "https://m.media-amazon.com/images/I/51MYow8p5wL.jpg", "https://m.media-amazon.com/images/I/21VqHIxo4NL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Lamps & Shades \u203a Floor Lamps", "average_rating": 4.6, "small_description": ["63\" high overall. Base is 12 3/4\" wide. Shade is 9\" across top x 20\" across bottom x 11\" slant. ", "Uses three maximum 60 watt bulbs and one maximum 150 watt bulb (bulbs not included). On-off rotary switch for main bulb. Separate 4-position switch controls the 3 side lights. ", "Hand-painted tortoise shell finish glass font. Because the design is handcrafted, there will be slight variations in color and pattern. ", "Bronze finish base and pole with coppery gold highlights. Metal construction. Poly-blend fabric shade. 6-foot long cord. "], "total_reviews": 50, "total_answered_questions": "", "model": "\u200e98142", "customization_options": "", "seller_id": "AB7N2KJ4KAXC3", "seller_name": "LAMPS PLUS", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B00062IG3A", "category": "garden", "query": "Floor lamps", "page": 59, "small_description_old": "About this item\n \n63\" high overall. Base is 12 3/4\" wide. Shade is 9\" across top x 20\" across bottom x 11\" slant. Uses three maximum 60 watt bulbs and one maximum 150 watt bulb (bulbs not included). On-off rotary switch for main bulb. Separate 4-position switch controls the 3 side lights. Bronze finish with coppery gold highlights. Metal construction. Painted tortoise shell glass font. Poly-blend fabric shade. 6-foot long cord. \n \u203a See more product details"}, {"name": "CofeeMO Womens Lingerie Sleep Lounge Everyday Nursing Bras Printed Underwear Seamless Printed Bralette for Sex Naughty Play", "product_information": {"Item Weight\n \u200f": "\u200e\n 5.29 Ounces", "Item model number\n \u200f": "\u200e\n valentines day gifts for her", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 18, 2021", "Manufacturer\n \u200f": "\u200e\n Jophufed", "ASIN\n \u200f": "\u200e\n B09NS9N5BD", "Best Sellers Rank": "#5,124,569 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#172,345 in Women's Lingerie, Sleep & Lounge", "#172,345 in Women's Lingerie, Sleep & Lounge": ""}, "brand": "Brand: CofeeMO", "brand_url": "https://www.amazon.com/CofeeMO/b/ref=bl_sl_s_ap_web_23452762011?ie=UTF8&node=23452762011&field-lbr_brands_browse-bin=CofeeMO", "full_description": "lingerie for women lingerie plus size lingerie for women sexy lingerie for women lingerie for women for sex lingerie set for women sexy lingerie for women naughty for sex sexy lingerie women's lingerie, sleep & lounge lingerie for women for sex play lingerie set lingerie for women plus size womens lingerie lingerie for women for sex naughty red lingerie for women plus size lingerie valentines lingerie for women plus size lingerie for women for sex crotchless lingerie for women women's exotic lingerie sets valentines day lingerie lingerie crotchless babydoll lingerie for women lingerie plus size mens lingerie women's lingerie crotchless lingerie valentines lingerie cosplay lingerie teddy lingerie for women school girl lingerie for women corset lingerie for women stockings for women lingerie valentines day lingerie for women black lingerie for women anime lingerie womens lingerie sexy red lingerie women lingerie kawaii lingerie lingerie for men lingerie for women for sex play set sexy lingerie for women plus size fishnet lingerie for women lingerie bodysuit white lingerie for women latex lingerie", "pricing": "$14.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51JSP3QB7cL.jpg", "https://m.media-amazon.com/images/I/51oj5kmnPpL.jpg", "https://m.media-amazon.com/images/I/51tWftxD0gL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": "", "small_description": ["Welcome to this store ------ Jophufed, please choose whatever you want, hoping to buy the products you are satisfied with. ", "The purpose of our shop is: customer first, to give you the most satisfactory products and the most comfortable service to the greatest extent. ", "sexy lingerie for women ", "valentines day gifts for her closure ", "[\u2764Search Term] lingerie underwear babydoll sets suit sleepwear nightie pajamas nightgown underpants corsets thong chemise dress bodysuit kawaii pupi crotch maid nurse doctor apron schoolgirl stockings fishnet gauze garter teddy with choker halter bondaged lingerie school girl outfit slutty sexy maid chest leather dominatrixs pink dress body harness bodysuit crossdresser cute teddy lingerie for wome role playing rhinestone lingerie bridal wedding night cow camisoles tanks robe baby doll ", "[\u2764Search Term] lingerie for women sexy plus size naughty for sex for sex play sleep lounge set crotchless sex naughty cosplay sex plus size exotic school girl anime fishnet bridal stockings corset latex babydoll red lingerie teddy black lolita baby doll open cup lingerie red nursen sheer lingerie stockings japanese exotic lingerie body stockings green bra and panty honeymoon crotchless negligee purple one piece lingerie chest of drawers tall naughty costume male women skirt ", "[\u2764Search Term] white bags delicates wedding bride leather lingerie bodysuit sissy maternity see through bondaged strappy school girl slutty sexy maid chest naughty thong bikini swimsuit pack seamless shapewear g string underwear cotton tummy bottom sissy men wedding silk open crotch wedding night panties top garter corset lace bunny cat role play blue vintage ladies daddy 2 piece goth cupless yellow green party decorations deep v neck shiny off the shoulder built bra mesh nude , [\u2764Search Term] high waisted bathing suit breathable panties lace baby bodysuit fashion black white for women fishnet sexy shapewear going out lingerie bodysuit long sleeve pink one shoulder bra babydoll dress tops baby pajamas silk burt bee maternity short sleeve strapless fishnet long sleeve halter tummy control leather spanks catsuit v neck yellow one piece spark thong swimsuit high waist pack bikini seamless man no show male original rise g string slutty white, [\u2764NOTICE] Please refer to the accurate size chart (not amazon size chart) Tips\uff1aWe are Asian Size,run smaller than US size,so i will suggest you choose one size or two size larger than you usual size , it will be more relax and comfortable."], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09NS9N5BD/ref=twister_B09NSBP7QS", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51kol7VEUhL.jpg"}, {"is_selected": true, "url": null, "value": "Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51JSP3QB7cL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NSBQM3H/ref=twister_B09NSBP7QS", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/519KgJM7jDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NSB7DR6/ref=twister_B09NSBP7QS", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517NS+oP4-L.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09NSBB4JG"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09NSC4PW3"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09NS9VMG4"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09NSC5VDG"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09NS9Y7XX"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NSC5VDG", "category": "fashion", "query": "Women's Lingerie, Sleep & Lounge", "page": 17, "small_description_old": "Welcome to this store ------ Jophufed, please choose whatever you want, hoping to buy the products you are satisfied with. The purpose of our shop is: customer first, to give you the most satisfactory products and the most comfortable service to the greatest extent. sexy lingerie for women valentines day gifts for her closure [\u2764Search Term] lingerie underwear babydoll sets suit sleepwear nightie pajamas nightgown underpants corsets thong chemise dress bodysuit kawaii pupi crotch maid nurse doctor apron schoolgirl stockings fishnet gauze garter teddy with choker halter bondaged lingerie school girl outfit slutty sexy maid chest leather dominatrixs pink dress body harness bodysuit crossdresser cute teddy lingerie for wome role playing rhinestone lingerie bridal wedding night cow camisoles tanks robe baby doll [\u2764Search Term] lingerie for women sexy plus size naughty for sex for sex play sleep lounge set crotchless sex naughty cosplay sex plus size exotic school girl anime fishnet bridal stockings corset latex babydoll red lingerie teddy black lolita baby doll open cup lingerie red nursen sheer lingerie stockings japanese exotic lingerie body stockings green bra and panty honeymoon crotchless negligee purple one piece lingerie chest of drawers tall naughty costume male women skirt [\u2764Search Term] white bags delicates wedding bride leather lingerie bodysuit sissy maternity see through bondaged strappy school girl slutty sexy maid chest naughty thong bikini swimsuit pack seamless shapewear g string underwear cotton tummy bottom sissy men wedding silk open crotch wedding night panties top garter corset lace bunny cat role play blue vintage ladies daddy 2 piece goth cupless yellow green party decorations deep v neck shiny off the shoulder built bra mesh nude \n [\u2764Search Term] high waisted bathing suit breathable panties lace baby bodysuit fashion black white for women fishnet sexy shapewear going out lingerie bodysuit long sleeve pink one shoulder bra babydoll dress tops baby pajamas silk burt bee maternity short sleeve strapless fishnet long sleeve halter tummy control leather spanks catsuit v neck yellow one piece spark thong swimsuit high waist pack bikini seamless man no show male original rise g string slutty white[\u2764NOTICE] Please refer to the accurate size chart (not amazon size chart) Tips\uff1aWe are Asian Size,run smaller than US size,so i will suggest you choose one size or two size larger than you usual size , it will be more relax and comfortable.Show more"}, {"name": "Maybelline New York Expert Wear Eyeshadow Singles, 130s Turquoise Glass Perfect Pastels, 0.09 Ounce", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n Yes", "Product Dimensions\n \u200f": "\u200e\n 0.41 x 2.46 x 1.72 inches; 0.75 Ounces", "Item model number\n \u200f": "\u200e\n 041554248104", "UPC\n \u200f": "\u200e\n 883445446714 041554248104 883264430895 885134961720", "Manufacturer\n \u200f": "\u200e\n Maybelline New York", "ASIN\n \u200f": "\u200e\n B0046VILG4", "Best Sellers Rank": "#163,963 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,346 in Eyeshadow", "#1,346 in Eyeshadow": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Maybelline New York", "brand_url": "https://www.amazon.com/Maybelline-New-York/b/ref=bl_dp_s_web_2596277011?ie=UTF8&node=2596277011&field-lbr_brands_browse-bin=Maybelline+New+York", "full_description": "Easy to use. Lots to choose. All-day crease-proof wear. Rich, velvety textures. Glides on effortlessly with superior smoothness. Velvet-tip applicator blends without tugging or pulling. Safe for sensitive eyes and contact lens wearers, ophthalmologist-tested.", "pricing": "$7.98", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41IiEBGouZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Eyes \u203a Eyeshadow", "average_rating": 4.2, "small_description": [""], "total_reviews": 54, "total_answered_questions": "", "customization_options": "", "seller_id": "AP9T7G78KOHYP", "seller_name": "Mommy Dezarn's Miscellaneous", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0046VILG4", "category": "beauty", "query": "Eyes Care", "page": 201, "small_description_old": "About this item Maybelline Maybelline Maybelline"}, {"name": "\u7425\u73c0 \u5c0f\u7c73\u9505\u5df4 \u6df7\u5408\u53e3\u5473 \u9505\u5df4 \u81a8\u5316\u98df\u54c1 \u85af\u7247 \u96f6\u98df 760g/\u888b Hupo Guoba Snacks 760g/bag", "product_information": {"UPC\n \u200f": "\u200e\n 755426941368", "Manufacturer\n \u200f": "\u200e\n \u7425\u73c0", "ASIN\n \u200f": "\u200e\n B09KRL9W5C", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: YUGAO", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=YUGAO", "full_description": "Product name: Hupo\u00a0 \u00a0Guoba\u00a0\u00a0 Shelf life: 360 days Storage: Store in a cool and dry place, avoid direct sunlight Taste: mixed taste Weight: 760g/bag\u00a0 Place of Origin: Mainland China How to eat: Open the bag and eat immediately. If there is any quality problem, please contact us in time PS: Alternate delivery of new and old packaging \u5546\u54c1\u540d\u79f0\uff1a\u7425\u73c0\u00a0 \u00a0 \u5c0f\u7c73\u9505\u5df4 \u4fdd\u8d28\u671f\uff1a360\u5929 \u50a8\u5b58\u65b9\u5f0f\uff1a\u5b58\u653e\u4e8e\u9634\u51c9\u5e72\u71e5\u5904\uff0c\u907f\u514d\u9633\u5149\u76f4\u5c04 \u53e3\u5473\uff1a\u6df7\u5408\u53e3\u5473 \u91cd\u91cf\uff1a760g/\u888b \u4ea7\u5730\uff1a\u4e2d\u56fd\u5927\u9646 \u98df\u7528\u65b9\u6cd5\uff1a\u5f00\u888b\u5373\u98df\u3001\u5982\u6709\u5546\u54c1\u8d28\u91cf\u95ee\u9898\uff0c\u8bf7\u53ca\u65f6\u4e0e\u6211\u4eec\u8054\u7cfb PS\uff1a\u65b0\u8001\u5305\u88c5\u4ea4\u66ff\u53d1\u8d27", "pricing": "$43.99", "list_price": "", "availability_quantity": 19, "availability_status": "Only 19 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/611oiAkG-IS.jpg", "https://m.media-amazon.com/images/I/51OYwiHgLGS.jpg", "https://m.media-amazon.com/images/I/51LaR0A0zWS.jpg", "https://m.media-amazon.com/images/I/51dfambXAiS.jpg", "https://m.media-amazon.com/images/I/51xJoHo30bS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Puffed Snacks", "average_rating": "", "small_description": ["\u5546\u54c1\u540d\u79f0\uff1a\u7425\u73c0 \u5c0f\u7c73\u9505\u5df4 Product name: Hupo Guoba ", "\u4fdd\u8d28\u671f\uff1a360\u5929 Shelf life: 360 days ", "\u50a8\u5b58\u65b9\u5f0f\uff1a\u5b58\u653e\u4e8e\u9634\u51c9\u5e72\u71e5\u5904\uff0c\u907f\u514d\u9633\u5149\u76f4\u5c04 Storage: Store in a cool and dry place, avoid direct sunlight ", "\u53e3\u5473\uff1a\u6df7\u5408\u53e3\u5473 Taste: mixed taste ", "\u91cd\u91cf\uff1a760g/\u888b Weight: 760g/bag "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AZR30JRDC9OX6", "seller_name": "Yao Zehua network technology", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09KRL9W5C", "category": "grocery", "query": "Puffed Snacks", "page": 101, "small_description_old": "\u5546\u54c1\u540d\u79f0\uff1a\u7425\u73c0 \u5c0f\u7c73\u9505\u5df4 Product name: Hupo Guoba \u4fdd\u8d28\u671f\uff1a360\u5929 Shelf life: 360 days \u50a8\u5b58\u65b9\u5f0f\uff1a\u5b58\u653e\u4e8e\u9634\u51c9\u5e72\u71e5\u5904\uff0c\u907f\u514d\u9633\u5149\u76f4\u5c04 Storage: Store in a cool and dry place, avoid direct sunlight \u53e3\u5473\uff1a\u6df7\u5408\u53e3\u5473 Taste: mixed taste \u91cd\u91cf\uff1a760g/\u888b Weight: 760g/bag"}, {"name": "KIKO MILANO - Gossamer Emotion Creamy Lipstick | Bold Lip Color Lip Shine | Cruelty Free Makeup | Professional Makeup Lipstick | Made in Italy (125 Cyclamen)", "product_information": {"Item model number\n \u200f": "\u200e\n KM0020102412544", "Manufacturer\n \u200f": "\u200e\n Kiko", "ASIN\n \u200f": "\u200e\n B077D7RL4P", "Best Sellers Rank": "#95,702 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#883 in Lipstick", "#883 in Lipstick": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Kiko Store", "brand_url": "https://www.amazon.com/stores/KIKOMILANO/page/D1C4D0B4-EA2B-40A0-988F-F87D820004E8?ref_=ast_bln", "full_description": "", "pricing": "$8.39", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41M9snQ+aYL.jpg", "https://m.media-amazon.com/images/I/31M4QXfd-TL.jpg", "https://m.media-amazon.com/images/I/01XWIXoeq2L.jpg", "https://m.media-amazon.com/images/I/51d44BClLVL.jpg", "https://m.media-amazon.com/images/I/51xRLZfhg8L.jpg", "https://m.media-amazon.com/images/I/51cH47-pUrL.jpg", "https://m.media-amazon.com/images/I/71kpzgb+fbL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Lips \u203a Lipstick", "average_rating": 4.3, "small_description": ["Creamy lipstick in bold lip color variety with a shiny finish. The lip stick formula contains orchid extracts and hyaluronic filling spheres. ", "The smooth, supple texture combined with the intense, bright colors create a sensuous smile and lip shine. The lipstick glides on easily, allowing for lip care and leaving the lips silky soft. ", "Gossamer Emotion Creamy Lipstick comes in a new, modern tube with a metallic finish. Lip stick comes in a variety of colors, including red lipstick, nude lipstick, pink lipstick, rose lipstick and others. This lipstick's distinguishing characteristic is the unique button at the top of the cap. ", "The KIKO makeup lines undergoe a careful, in-depth clinical and dermatological testing to produce Hypoallergenic products formulated to minimize allergy risks. Products are non-comedogenic and of highest quality. "], "total_reviews": 150, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B077M3X2C8/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "101 Natural Rose", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ucNP-H2xL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077H7L3YD/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "102 Pink Sand", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41vgVhimslL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077RCXJN7/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "103 Powder Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41bUdBs+CJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0784F8R5C/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "104 Vintage Rose", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41TQ3dxYlgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077H9281D/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "105 Pinkish Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41RFWil716L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DQKZZS6/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "113 Pearly Tulip Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41mcgJZ0MLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077GK4KFV/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "114 Litchi", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41+4Fjy10YL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077DKXD17/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "118 Salmon", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41QMXQnFW1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079FBNVBP/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "119 Wild Rose", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yWxpz9rHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077DC7YHL/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "124 Azalea", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rWQ1aSNVL.jpg"}, {"is_selected": true, "url": null, "value": "125 Cyclamen", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41M9snQ+aYL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079SLFSN9/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "127 Black Currant", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41TrrzzaOiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077DFWCSP/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "131 Tea Rose", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41RZodqCWyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077D74FS3/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "132 Crimson", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Ouq6RYCeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077DTMBFS/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "133 Chesnut", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fobi5olHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DP3S816/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "Marsala", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41P5OZS928L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B077DFB3G7/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "Mauve", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Q9dn85c4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B4N5HZC/ref=twister_B077D9R3J1?_encoding=UTF8&psc=1", "value": "Sangria", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41VNUKH2s9L.jpg"}]}, "seller_id": "A156RGX0EFLDH6", "seller_name": "Kiko Milano Cosmetics", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B077D7RL4P", "category": "beauty", "query": "Lip Care", "page": 50, "small_description_old": "About this item Creamy lipstick in bold lip color variety with a shiny finish. The lip stick formula contains orchid extracts and hyaluronic filling spheres. The smooth, supple texture combined with the intense, bright colors create a sensuous smile and lip shine. The lipstick glides on easily, allowing for lip care and leaving the lips silky soft. Gossamer Emotion Creamy Lipstick comes in a new, modern tube with a metallic finish. Lip stick comes in a variety of colors, including red lipstick, nude lipstick, pink lipstick, rose lipstick and others. This lipstick's distinguishing characteristic is the unique button at the top of the cap. The KIKO makeup lines undergoe a careful, in-depth clinical and dermatological testing to produce Hypoallergenic products formulated to minimize allergy risks. Products are non-comedogenic and of highest quality."}, {"name": "3pcs biorepair fast sensitive toothpaste 75ml protect & REPAIR from acid erosion and plaque safe for whole family by Biorepair", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.97 x 6.1 x 1.61 inches; 14.25 Ounces", "Date First Available\n \u200f": "\u200e\n December 22, 2016", "Manufacturer\n \u200f": "\u200e\n coswell", "ASIN\n \u200f": "\u200e\n B00X2UAMXU", "": ""}, "brand": "Brand: Biorepair", "brand_url": "https://www.amazon.com/Biorepair/b/ref=bl_dp_s_web_20069293011?ie=UTF8&node=20069293011&field-lbr_brands_browse-bin=Biorepair", "full_description": "Biorepair is the toothpaste that actually repairs tooth enamel! Although on the surface most teeth look healthy, daily wear and tear causes hundreds of tiny flaws to appear in tooth enamel. Over time, plaque and bacteria can form in these flaws and can lead to more serious damage such as tooth decay and sensitivity. Biorepair works to repair tooth enamel, prevent decay and reduce sensitivity by filling in the tiny cracks and binding to the structure of the enamel. Due to its formula rich in microRepair, Biorepair Total Protective Repair repairs the enamel surface, protecting the natural health of the teeth from plaque, tartar build-up and tooth decay and acid erosion. EFFECTS: - prevents tooth decay - prevents plaque - removes and prevents tartar build-up - keeps fresh breath - repairs enamel and dentin microscratches IMPORTANT: children under six years of age can use Biorepair without adult supervision due to the absence of Fluoride.", "pricing": "$20.00", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51Cywwn8gWL.jpg", "https://m.media-amazon.com/images/I/41yaBvBVqmL.jpg", "https://m.media-amazon.com/images/I/417+dG1nqHL.jpg", "https://m.media-amazon.com/images/I/51IkCygUFIL.jpg", "https://m.media-amazon.com/images/I/41rMIvc6NGL.jpg", "https://m.media-amazon.com/images/I/51jtdg4SWFL.jpg", "https://m.media-amazon.com/images/I/512XSMQB+HL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": "", "small_description": ["It repairs the enamel surface, protecting against plaque, tartar build-up and cavities ", "Children under six years of age can use Biorepair without adult supervision due to the absence of Fluoride ", "No fluoride, no titanium dioxide, no SLS (Sodium Lauryl Sulfate), no parabens ", "The only toothpaste that repairs enamel: a healthy enamel is the solution for providing a healthy and beautiful smile ", "By Biorepair, Italian quality; Italian packaging "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ABH5B4UIPT97K", "seller_name": "italian objects", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00X2UAMXU", "category": "beauty", "query": "Toothpaste", "page": 120, "small_description_old": "About this item It repairs the enamel surface, protecting against plaque, tartar build-up and cavities Children under six years of age can use Biorepair without adult supervision due to the absence of Fluoride No fluoride, no titanium dioxide, no SLS (Sodium Lauryl Sulfate), no parabens The only toothpaste that repairs enamel: a healthy enamel is the solution for providing a healthy and beautiful smile By Biorepair, Italian quality; Italian packaging"}, {"name": "Ecco Men's Melbourne Plain Toe Slip on Loafer", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.5 x 8.2 x 5.2 inches; 13 Ounces", "Item model number\n \u200f": "\u200e\n 62173401001", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n November 27, 2018", "Manufacturer\n \u200f": "\u200e\n ECCO", "ASIN\n \u200f": "\u200e\n B07CN5BNZS", "Best Sellers Rank": "#811,877 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#2,123 in Men's Loafers & Slip-Ons", "#2,123 in Men's Loafers & Slip-Ons": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the ECCO Store", "brand_url": "https://www.amazon.com/stores/ECCOFootwear/page/3A737AFE-B708-46E5-9C51-F81094A69BEC?ref_=ast_bln", "full_description": "A formal slip-on loafer for work or weekend, this leather design with slim elastic detailing prioritizes comfort with uppers in a choice of full-grain ECCO leather or heritage-inspired ECCO the natural bovine leather. The elegant work wear silhouette is inspired by the classic slip-on, and reworked in a sleeker shape with chiseled detailing to appeal to the modern gentleman.", "pricing": "$114.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31iSSPkR5uL.jpg", "https://m.media-amazon.com/images/I/41xXpE4hK9L.jpg", "https://m.media-amazon.com/images/I/411SzZIgamL.jpg", "https://m.media-amazon.com/images/I/31iSrJ0EYSL.jpg", "https://m.media-amazon.com/images/I/31SDK39U0GL.jpg", "https://m.media-amazon.com/images/I/31P5iCCgoaL.jpg", "https://m.media-amazon.com/images/I/31jxCNSzoRL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Loafers & Slip-Ons", "average_rating": 4.6, "small_description": ["100% Leather ", "Imported ", "Rubber sole ", "Shaft measures approximately low-top from arch ", "A formal slip-on loafer for work or weekend ", "Direct-injected single density PU outsole is pliable, lightweight and flexible with ECCO FLUIDFORM Technology cushioning every step ", "Removable inlay sole designed with ECCO Comfort Fibre System helps keep footwear fresh and dry , Classic silhouette sleeker and elongated to make a contemporary impact, Airport friendly"], "total_reviews": 38, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "6-6.5", "asin": "B07CN5BJDP"}, {"is_selected": false, "is_available": false, "value": "7-7.5", "asin": "B07CN79QWZ"}, {"is_selected": false, "is_available": true, "value": "8-8.5", "asin": "B07CN5BNZS"}, {"is_selected": false, "is_available": true, "value": "9-9.5", "asin": "B07CN9RZ1C"}, {"is_selected": false, "is_available": true, "value": "10-10.5", "asin": "B07CNCQK2V"}, {"is_selected": false, "is_available": true, "value": "11-11.5", "asin": "B07CN5BGVQ"}, {"is_selected": false, "is_available": true, "value": "12-12.5", "asin": "B07CN5BLFL"}, {"is_selected": false, "is_available": true, "value": "13-13.5", "asin": "B07CN9RWRL"}, {"is_selected": false, "is_available": false, "value": "14-14.5", "asin": "B07CN9RZ4D"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07CN5BJDP/ref=twister_B07CNCQSTB", "value": "Amber", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31DPrSlejxL.jpg"}, {"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31iSSPkR5uL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07CN9RZ1C", "category": "fashion", "query": "Men's Loafers & Slip-Ons", "page": 6, "small_description_old": "100% Leather Imported Rubber sole Shaft measures approximately low-top from arch A formal slip-on loafer for work or weekend Direct-injected single density PU outsole is pliable, lightweight and flexible with ECCO FLUIDFORM Technology cushioning every step Removable inlay sole designed with ECCO Comfort Fibre System helps keep footwear fresh and dry \n Classic silhouette sleeker and elongated to make a contemporary impactAirport friendlyShow more"}, {"name": "guohanfsh 5/10Pcs Transparent Empty Spray Bottles 30ml Plastic Mini Refillable Cosmetic Perfume Containers 10pcs", "product_information": {"Item Weight\n \u200f": "\u200e\n 3.92 Ounces", "Manufacturer\n \u200f": "\u200e\n guohanfsh", "ASIN\n \u200f": "\u200e\n B07ZR54L56", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#934,171 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#18,398 in Refillable Cosmetic Containers #42,926 in Makeup Bags & Cases", "#18,398 in Refillable Cosmetic Containers": "", "#42,926 in Makeup Bags & Cases": ""}, "brand": "Brand: guohanfsh", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=guohanfsh", "full_description": "Specifications: Type: Empty Cosmetic Containers Color: by Random Size: 9.5cm x 3cm/3.74\" x 1.18\" (Approx.) Notes: Due to the light and screen setting difference, the item's color may be slightly different from the pictures. Please allow slight dimension difference due to different manual measurement. Package Includes: 5/10 x Empty Cosmetic Containers", "pricing": "$4.41", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41S2ld77bkL.jpg", "https://m.media-amazon.com/images/I/41tCIsJV4mL.jpg", "https://m.media-amazon.com/images/I/41dXu9gj3mL.jpg", "https://m.media-amazon.com/images/I/41n7dvIqfuL.jpg", "https://m.media-amazon.com/images/I/41-Rye6MxYL.jpg", "https://m.media-amazon.com/images/I/41aEWMtZLzL.jpg", "https://m.media-amazon.com/images/I/41r3z+nKQdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": "", "small_description": ["Plastic material made, durable for a long time use. ", "Clear style, easy for you to see inside. ", "Used for holding makeup, bath product. ", "Material: Plastic ", "Features: Clear, Empty, Storage Bottle "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07ZR5G5ZX/ref=twister_B089FHYZJC?_encoding=UTF8&psc=1", "value": "5pcs", "price_string": "$2.89", "price": 2.89, "image": null}, {"is_selected": true, "url": null, "value": "10pcs", "price_string": "$4.41", "price": 4.41, "image": null}]}, "seller_id": "AZYLX9DPWPJ0N", "seller_name": "guohanfsh", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07ZR54L56", "category": "beauty", "query": "Refillable Containers", "page": 116, "small_description_old": "Plastic material made, durable for a long time use. Clear style, easy for you to see inside. Used for holding makeup, bath product. Material: Plastic Features: Clear, Empty, Storage Bottle"}, {"name": "Savannah's Candy Kitchen | Gourmet Handmade Candy Gift Box - Pralines, Chocolate Turtle Gophers, Handmade Divinity (24)", "product_information": {"Manufacturer\n \u200f": "\u200e\n Savannah Candy Kitchen", "ASIN\n \u200f": "\u200e\n B07XP6DGJH", "Best Sellers Rank": "#281,389 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#3,257 in Candy & Chocolate Gifts", "#3,257 in Candy & Chocolate Gifts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Savannah's Candy Kitchen Store", "brand_url": "https://www.amazon.com/stores/Savannah%27s+Candy+Kitchen/page/453666F8-02F9-4B46-A6B3-3903B372E643?ref_=ast_bln", "full_description": "Can't decide which Savannah's Candy Kitchen favorite to gift? Then choose all of our most popular candies with this delectable trio! Our Savannah's Original Pralines, delicious Milk Chocolate Turtle Gophers, and Southern Pecan Divinity, hand packed into our signature Savannah Candy gift box. This charming gift box includes 8 Pecan Pralines, 8 Pecan Divinity and 8 of our milk chocolate caramel pecan gopher turtles. Taste the difference of superior quality candy handmade by career candy makers. Our Pecan Pralines are handmade in small batches then individually wrapped before being shipped to you. While our candies are shipped fresh there is something about a straight from the copper pot warm pralines that is hard to beat. To achieve that warm creamy fresh from the pot taste and texture you can warm a single praline in the microwave for 10 seconds or toss an entire pan of them in the oven for 5 minutes at 250\u00b0. Always remove wrapped before eating and allow to cool for 1 minute. Y'all enjoy!", "pricing": "$79.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51QBLdqrWbL.jpg", "https://m.media-amazon.com/images/I/51CYhsQPteL.jpg", "https://m.media-amazon.com/images/I/51zdFxX6W-L.jpg", "https://m.media-amazon.com/images/I/41CtrJ5Q3tL.jpg", "https://m.media-amazon.com/images/I/41gajs-aEoL.jpg", "https://m.media-amazon.com/images/I/51+F7j3Y8LL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Candy & Chocolate \u203a Candy & Chocolate Gifts", "average_rating": 3.9, "small_description": ["Savannah's Original Pralines ", "Gophers - like a turtle but better! ", "Gourmet Pecan Divinity ", "Savannah's Candy Kitchen Signature Candy Gift Box ", "100% Satisfaction Guarantee! "], "total_reviews": 7, "total_answered_questions": "", "customization_options": {"Number of Items": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07XPH5VRC/ref=twister_B07RF9SBGB?_encoding=UTF8&psc=1", "value": "12", "price_string": "$59.95", "price": 59.95, "image": null}, {"is_selected": true, "url": null, "value": "24", "price_string": "$79.95", "price": 79.95, "image": null}]}, "seller_id": "A39TW99N4LZZ4X", "seller_name": "Savannahs Candy Kitchen", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07XP6DGJH", "category": "grocery", "query": "Candy & Chocolate", "page": 180, "small_description_old": "Savannah's Original Pralines Gophers - like a turtle but better! Gourmet Pecan Divinity Savannah's Candy Kitchen Signature Candy Gift Box 100% Satisfaction Guarantee!"}, {"name": "Korean Seaweed Gift Set (4 kinds; Kimch, Wasabi, Green tea, Olive)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Manufacturer\n \u200f": "\u200e\n HAEJEO FOODS", "ASIN\n \u200f": "\u200e\n B07JHNMLN9", "": ""}, "brand": "Brand: Gwangcheon haejeo", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Gwangcheon+haejeo", "full_description": "[Gwangcheon haejeo Seaweed] Seaweed (Korean), 49.7%, corn oil (Russia, Brazil, Hungary, Serbia, etc.), perilla oil (perilla seeds: Chinese) [Gwangcheon haejeo mineral Seaweed] Seaweed (Korean)49.5%, corn oil (Russia, Brazil, Hungary and Serbia), perilla oil (perilla: Chinese), processed salt (Korean), sesame oil [Kimchi Spicy Gwangcheon haejeo Seaweed] Seaweed (Korean) 47%, corn oil (corn: foreign products - Russia, Brazil, Hungary, Serbia, etc.), perilla oil (perilla seeds: Chinese), kimchi leaf seasoning 3.8%, processed salt (Korean), sesame oil [Wasabi Gwangcheon haejeo Seaweed] Seaweed (Korean)49.5%, (Mustard: Chinese), processed salt (Korean), sesame oil, coated mustard jae-03, wasabi powder (wasabi powder) : Chinese) 0.3% [Green tea Gwangcheon haejeo Seaweed] Seaweed (Korean), 49.4%, corn oil (Russia, Brazil, Hungary, Serbia, etc.), perilla oil (perilla seeds: Chinese), processed salt (Korean), sesame oil, green tea (Korean 0.1% [Olive Gwangcheon haejeo Seaweed] Seaweed (Korean), 49.1%, corn oil (Russia, Brazil, Hungary, Serbia, etc.), perilla oil (China), processed salt (Korean), sesame oil and pressed olive oil", "pricing": "$120.31", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31VVEIXjAmL.jpg", "https://m.media-amazon.com/images/I/51UuPOkBRYL.jpg", "https://m.media-amazon.com/images/I/51RDbPK7ftL.jpg", "https://m.media-amazon.com/images/I/51UgdJJZuEL.jpg", "https://m.media-amazon.com/images/I/41mYqiKTQSL.jpg", "https://m.media-amazon.com/images/I/41hwlRU4LSL.jpg", "https://m.media-amazon.com/images/I/51Q2v+J+wmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Seaweed Snacks", "average_rating": "", "small_description": "Great for Seaweed Gift set Seaweed snack - 2 pack, Launch(4g) - 15 pack, Big size(23g) - 10 pack, Small size(15g) - 9 pack", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1AN4JQWD7UQRC", "seller_name": "ASUS International", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07JHNMLN9", "category": "grocery", "query": "Seaweed Snacks", "page": 61, "small_description_old": "Great for Seaweed Gift set Seaweed snack - 2 pack, Launch(4g) - 15 pack, Big size(23g) - 10 pack, Small size(15g) - 9 pack"}, {"name": "ASOMI50ml Perfume Set Aromatherapy Fragrance Perfume with Portable Empty Refill Bottle", "product_information": {"Manufacturer\n \u200f": "\u200e\n ASOMI", "ASIN\n \u200f": "\u200e\n B09G9V3G1N", "": ""}, "brand": "Brand: ASOMI", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ASOMI", "full_description": "Specification: Item Type: Perfume Material: Plant Extraction Net Content: 50ml Function:\u00a0Deodorization, aromatherapy Usage: Spray on the parts needed\u00a0 Package List: 1 x Spray Tube 1 x Empty Bottle\u00a0 1 x Bottle Body", "pricing": "$31.01", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31KcI8lacWS.jpg", "https://m.media-amazon.com/images/I/31mQE5RFCIS.jpg", "https://m.media-amazon.com/images/I/31k1h-vnCoS.jpg", "https://m.media-amazon.com/images/I/31nX-GcjfYS.jpg", "https://m.media-amazon.com/images/I/41WHBdq+1aL.jpg", "https://m.media-amazon.com/images/I/41WkwnDb7CL.jpg", "https://m.media-amazon.com/images/I/41QX754111L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": "", "small_description": ["DIY Portable empty perfume bottle, easy to carry when going out, can be used anytime and anywhere. ", "Empty perfume bottle of lipstick shape, elegant and beautiful appearance, easy to use. ", "Experience the filling process by yourself, DIY portable perfume set to meet your needs. ", "Citrus, bergamot, bergamot pear of the top note, cardamom, lavender heart note and vanilla, amber base note. ", "Add your elegance and confident when dating, shopping, work, meeting and so on. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AQRQRV9SHBPC5", "seller_name": "Henan Boyu Information Technology Co., Ltd.", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09G9V3G1N", "category": "beauty", "query": "Sets Fragrance", "page": 142, "small_description_old": "DIY Portable empty perfume bottle, easy to carry when going out, can be used anytime and anywhere. Empty perfume bottle of lipstick shape, elegant and beautiful appearance, easy to use. Experience the filling process by yourself, DIY portable perfume set to meet your needs. Citrus, bergamot, bergamot pear of the top note, cardamom, lavender heart note and vanilla, amber base note. Add your elegance and confident when dating, shopping, work, meeting and so on."}, {"name": "Erwazi Android 6.0 Tablet, 7Inch Duad Core Tablet PC 1GB + 8GB Dual Camera WiFi Blue-Tooth Tablet Best for Childrens 2022 New Years Gift Boys Girls School Learning Birthday Gift (Green)", "product_information": {"ASIN": "B09P147DN2", "Manufacturer recommended age": "1 month and up", "Best Sellers Rank": ["#304,898 in Electronics (See Top 100 in Electronics) #5,986 in Computer Tablets"], "Mfg Recommended age": "1 month and up", "Manufacturer": "Erwazi"}, "brand": "Brand: Erwazi", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Erwazi", "full_description": "\ud83d\udc9d=^_^= Hi, Dear Friend, Welcome to ChenLINzi Store =^_^=\ud83d\udc9d \ud83d\ude80 Delivery Time \ud83d\ude80 The estimated delivery time Fast Delivery will be 10-25 business days by Standard delivery and 7-15 days by expedited delivery \ud83d\udc9d about Product \ud83d\udc9d Processor Mode: Q8 A33 Duad-Core,ARM Cortex A9 Family 1.0Ghz up to 1.3MHzRAM Installed Size: DDR 1GBBuilt-in Nand Flash: NAND FLASH 8GBDisplay Diagonal Size: 7\" TFT 16:9 width screenMax Resolution: 800X480panel: 5 points Capacitive ScreenCamera: 0.3 M pixelGravity Sensor: 4 DirectionsInput/ Output ConnectorsAudio/Video: Built in 1W stereo speaker x1, earphone x1USB Port: Micro USB Device/Host x1Memory Card: Micro SD card slot x1. Maximum capacity of 32GBCommunicationsWireless Connection: Wi-FiWireless Protocol: 802.11 b/g Wireless networkSoftwareImage: JPG, JPEG, BMP, PNGOther Software: Play Store, Skype, , iReader etc.Multi-language: SupportedGeneralBattery Type: 2000MAH Li-ion BatteryRun Time (up to): 5-10 HoursVoltage required: 120-240V/50-60HzDimensions / L x W x H: 182mm (L) x122mm (W) x 12mm (H)Package Content:1 x Tablet PC(With Packing)1x Charger1x Manual1x USB cable \u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708\u2708 11.11 sale christmas costume dress Black Friday sales, Black Friday deals, Black Friday clearance Cyber Monday sales, Cyber Monday deals, Cyber Monday specials, Cyber Monday clearance christmas christmas tree christmas ornaments christmas decorations clearance christmas gifts christmas pajamas ugly christmas sweater christmas", "pricing": "$36.99", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41qqxSJkAYL.jpg", "https://m.media-amazon.com/images/I/311VhT8KBPL.jpg", "https://m.media-amazon.com/images/I/51l7Eh8R63L.jpg", "https://m.media-amazon.com/images/I/516hNIEhaBL.jpg", "https://m.media-amazon.com/images/I/31sUjVQMXTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computers & Tablets \u203a Tablets", "average_rating": "", "small_description": ["\ud83c\udf08\u3010Android OS\u3011This Tablet runs on the latest Android 4.4 operating system, as the tablet just installed basic Goo-gle apps, Plus, high storage memory lets you save and store what you need to access on a moment\u2019s notice. ", "\ud83c\udfce\u3010Fast and Powerful\u3011powerful DUAL-core processor and 1GB RAM, provides strong performance and increases app startup speed. ", "\u2699\u3010Enjoy Your Favorite Apps\u3011The is a G-MS certified android tablet. You will have full access to Goo-gle services, such as G-mail, Y-outube, D-rive, Maps, Play Store, so you can download and e-njoy your favorite Apps as you like ", "\ud83c\udfa4\u3010Big Screen, Big Storage\u3011Vivid 7\" 1080p Full HD display with dual speakers, allowing for excellent picture and sound quality. Built-in 8GB memory and supports up to 8GB microSD cards to expand the storage, You can keep everything you like in this slim metal android tablet. ", "\ud83c\udf81\u3010Portable Entertainment\u3011With a 2000mAh lithium battery, you can e-njoy the tablet for a long time. 8Mp rear camera + 2Mp front camera, wifi connection, Blue-tooth 5.0, is designed for an improved entertainment experience. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09P12T74L/ref=twister_B09P144J4M?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$36.99", "price": 36.99, "image": "https://m.media-amazon.com/images/I/31sUjVQMXTL.jpg"}, {"is_selected": true, "url": null, "value": "Green", "price_string": "$36.99", "price": 36.99, "image": "https://m.media-amazon.com/images/I/41qqxSJkAYL.jpg"}]}, "seller_id": "AEIMBTUESVY35", "seller_name": "Belief dolls\ud83d\udd257-15 Days Fast Delivery\ud83d\udd25", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P147DN2", "category": "electronics", "query": "Tablets", "page": 26, "small_description_old": "About this item\n \n\ud83c\udf08\u3010Android OS\u3011This Tablet runs on the latest Android 4.4 operating system, as the tablet just installed basic Goo-gle apps, Plus, high storage memory lets you save and store what you need to access on a moment\u2019s notice. \ud83c\udfce\u3010Fast and Powerful\u3011powerful DUAL-core processor and 1GB RAM, provides strong performance and increases app startup speed. \u2699\u3010Enjoy Your Favorite Apps\u3011The is a G-MS certified android tablet. You will have full access to Goo-gle services, such as G-mail, Y-outube, D-rive, Maps, Play Store, so you can download and e-njoy your favorite Apps as you like \ud83c\udfa4\u3010Big Screen, Big Storage\u3011Vivid 7\" 1080p Full HD display with dual speakers, allowing for excellent picture and sound quality. Built-in 8GB memory and supports up to 8GB microSD cards to expand the storage, You can keep everything you like in this slim metal android tablet. \ud83c\udf81\u3010Portable Entertainment\u3011With a 2000mAh lithium battery, you can e-njoy the tablet for a long time. 8Mp rear camera + 2Mp front camera, wifi connection, Blue-tooth 5.0, is designed for an improved entertainment experience."}, {"name": "Schoolyard Snacks Low Carb Keto Cheese Puffs - Cheddar Cheese - High Protein - All Natural - Gluten & Grain-Free - Healthy Chips - Low Calorie Food - 12 Pack Single Serve Bags - 100 Calories", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.11 x 7.76 x 5.75 inches; 1.17 Pounds", "UPC\n \u200f": "\u200e\n 850013770090", "Manufacturer\n \u200f": "\u200e\n The Cereal School", "ASIN\n \u200f": "\u200e\n B08P28NXH3", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#3,202 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#17 in Puffed Snacks", "#17 in Puffed Snacks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Schoolyard Snacks Store", "brand_url": "https://www.amazon.com/stores/Schoolyard+Snacks/page/60EE21B2-3868-4D20-9009-6CBAF2E97DF1?ref_=ast_bln", "full_description": "", "pricing": "$25.49", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/415G0GOLOjL.jpg", "https://m.media-amazon.com/images/I/51xZczQPhZL.jpg", "https://m.media-amazon.com/images/I/512FSluAPBL.jpg", "https://m.media-amazon.com/images/I/41Gl+4WD4QL.jpg", "https://m.media-amazon.com/images/I/5197sUIxs6L.jpg", "https://m.media-amazon.com/images/I/51b9JnDHOjL.jpg", "https://m.media-amazon.com/images/I/51bFxG5QG8L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Puffed Snacks", "average_rating": 3.7, "small_description": ["Healthy Cheddar Cheese Puffs: We replaced the carbs in conventional cheese puffs with high-quality protein to bring you the healthiest Keto Cheese Puffs that taste savory and delicious, just like the traditional Cheddar Cheese snacks you love! Each batch of our all-natural Keto snacks is baked, never fried. 12 Pack ", "Compare To A Protein Bar: One bag of our cheese puffs has 14g of protein and is roughly the cost of a protein bar with similar nutritionals. And with all the protein, you\u2019ll stay full way longer. ", "On-The-Go Yum: We use only premium, all-natural, grain and gluten free ingredients with no flour, hydrogenated oils, or artificial ingredients. Each bag is a single serving snack with 1g net carb and only 100 calories per bag. An excellent choice for a diabetic snack. ", "Keto Approved & More: Our Cheddar Cheese Keto Puffs are not only Keto Approved, but are also free of artificial sweeteners, sugar, colors, soy and nuts. Non-GMO. Made in the USA in a NSF and Safe Quality Food-certified facility. ", "Started By Two Big Kids Who Never Grew Up: After graduating college and officially entering adulthood, we decided to start limiting our sugar intake. But we quickly realized everything we loved to eat growing up was suddenly off limits. It was our yearning for childhood comfort foods that made us start Schoolyard Snacks. We've reinvented timeless favorite cereals and snacks we all love into guilt-free treats that we feel good about eating every day (and night, let\u2019s be real!). "], "total_reviews": 3284, "total_answered_questions": 10, "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08YJKP2X3/ref=twister_B09Q9CJXCF?_encoding=UTF8&psc=1", "value": "BBQ", "price_string": "$25.49", "price": 25.49, "image": null}, {"is_selected": true, "url": null, "value": "Cheddar Cheese", "price_string": "$25.49", "price": 25.49, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08P268MJR/ref=twister_B09Q9CJXCF?_encoding=UTF8&psc=1", "value": "Sour Cream & Onion", "price_string": "", "price": 0, "image": null}]}, "seller_id": "AIY7HZGP8EBFE", "seller_name": "Schoolyard Snacks", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B08P28NXH3", "category": "grocery", "query": "Puffed Snacks", "page": 10, "small_description_old": "About this item Healthy Cheddar Cheese Puffs: We replaced the carbs in conventional cheese puffs with high-quality protein to bring you the healthiest Keto Cheese Puffs that taste savory and delicious, just like the traditional Cheddar Cheese snacks you love! Each batch of our all-natural Keto snacks is baked, never fried. 12 Pack Compare To A Protein Bar: One bag of our cheese puffs has 14g of protein and is roughly the cost of a protein bar with similar nutritionals. And with all the protein, you\u2019ll stay full way longer. On-The-Go Yum: We use only premium, all-natural, grain and gluten free ingredients with no flour, hydrogenated oils, or artificial ingredients. Each bag is a single serving snack with 1g net carb and only 100 calories per bag. An excellent choice for a diabetic snack. Keto Approved & More: Our Cheddar Cheese Keto Puffs are not only Keto Approved, but are also free of artificial sweeteners, sugar, colors, soy and nuts. Non-GMO. Made in the USA in a NSF and Safe Quality Food-certified facility. Started By Two Big Kids Who Never Grew Up: After graduating college and officially entering adulthood, we decided to start limiting our sugar intake. But we quickly realized everything we loved to eat growing up was suddenly off limits. It was our yearning for childhood comfort foods that made us start Schoolyard Snacks. We've reinvented timeless favorite cereals and snacks we all love into guilt-free treats that we feel good about eating every day (and night, let\u2019s be real!)."}, {"name": "Cicy Bell Womens Casual Blazers Open Front Long Sleeve Work Office Jackets Blazer", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 15.27 x 12.44 x 2.28 inches; 14.89 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n August 13, 2019", "Manufacturer\n \u200f": "\u200e\n Cicy Bell", "ASIN\n \u200f": "\u200e\n B085HKWB8P", "Best Sellers Rank": "#50 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1 in Women's Blazers & Suit Jackets", "#1 in Women's Blazers & Suit Jackets": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$48.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41UXlJTjcBL.jpg", "https://m.media-amazon.com/images/I/41C-WqkLkvL.jpg", "https://m.media-amazon.com/images/I/41IL9A4lUiL.jpg", "https://m.media-amazon.com/images/I/415GSAnDYYL.jpg", "https://m.media-amazon.com/images/I/61fgdmSegYL.jpg", "https://m.media-amazon.com/images/I/519hkTguDML.jpg", "https://m.media-amazon.com/images/I/51eJQFejz-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Suiting & Blazers \u203a Blazers", "average_rating": 3.8, "small_description": ["Button closure ", "Material: Polyester&Spandex. Soft fabric. This jacket comes with a full lining. Soft and Comfortable to Wear ", "Features: Basic lapel collar blazer jacket for women, a single front button design, two functional flap pockets, perfectly carrying some necessity, or nailing a chic look. ", "Occasion: Suitable for casual street look, business outfit, work office style, leisure time, daily life, holiday, vacation and so on. ", "Pair with: This blazer perfectly hug your chest and waist. Great With Your Favorite Skinny Jeans Leggings or Boots, and so on. ", "Garment Care: Machine Wash With Cold Water/ Line Dry/ Not Bleach. "], "total_reviews": 11356, "total_answered_questions": 95, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B085HKWB8P/ref=twister_B07WCVTWK8", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UTtIXu30L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085HHQYDV/ref=twister_B07WCVTWK8", "value": "Cream/Off White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ZNfTn+hiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085HBHN41/ref=twister_B07WCVTWK8", "value": "Dark Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/411P9ZUwayL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098DQBFLH/ref=twister_B07WCVTWK8", "value": "Lavender", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ZeEE0gDlL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085H85XC1/ref=twister_B07WCVTWK8", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ln-aaTRaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085HN7FG5/ref=twister_B07WCVTWK8", "value": "Orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Ca1fRoZ6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085HF5YLF/ref=twister_B07WCVTWK8", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41n2BEwQLzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098DS9RJ8/ref=twister_B07WCVTWK8", "value": "Z-army Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41YFjRZl9wL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098DT4KF2/ref=twister_B07WCVTWK8", "value": "Z-black&grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ALRnSkKoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098DS9XPN/ref=twister_B07WCVTWK8", "value": "Z-brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/413nUtpLFzL.jpg"}, {"is_selected": true, "url": null, "value": "Z-burgundy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UXlJTjcBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098DRXNXZ/ref=twister_B07WCVTWK8", "value": "Z-dark Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ACXtBmJiS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098DPTJ9T/ref=twister_B07WCVTWK8", "value": "Z-dark Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-EyEuP-xL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08DKQMTSX/ref=twister_B07WCVTWK8", "value": "Z-khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xKzzoQZ2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FHZBTML/ref=twister_B07WCVTWK8", "value": "Z-nude Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ZeP0c8UoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FC8X3J3/ref=twister_B07WCVTWK8", "value": "Z-pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41NfJV-DjCS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08DKNTCCB/ref=twister_B07WCVTWK8", "value": "Z-purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41A2CJ4xgfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098DQ96VF/ref=twister_B07WCVTWK8", "value": "Z-royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gHdTBqIqS.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B098DS1352"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B08DXN7HDY"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08DXL22JN"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08DXHPYVZ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B08DXKTKVD"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B098DSBS7Z"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08DXL22JN", "category": "fashion", "query": "Women's Suiting & Blazers", "page": 1, "small_description_old": "Button closure Material: Polyester&Spandex. Soft fabric. This jacket comes with a full lining. Soft and Comfortable to Wear Features: Basic lapel collar blazer jacket for women, a single front button design, two functional flap pockets, perfectly carrying some necessity, or nailing a chic look. Occasion: Suitable for casual street look, business outfit, work office style, leisure time, daily life, holiday, vacation and so on. Pair with: This blazer perfectly hug your chest and waist. Great With Your Favorite Skinny Jeans Leggings or Boots, and so on. Garment Care: Machine Wash With Cold Water/ Line Dry/ Not Bleach."}, {"name": "Fitness Watch 1.69inch Full Touch Screen Smart Bracelet Waterproof Sports Band Blue Wearable Smart Devices", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5.91 x 3.54 x 0.79 inches; 3.7 Ounces", "Date First Available\n \u200f": "\u200e\n September 10, 2021", "Manufacturer\n \u200f": "\u200e\n Heall", "ASIN\n \u200f": "\u200e\n B09FXPRZN5", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#362,129 in Electronics (See Top 100 in Electronics)#7,774 in Smartwatches", "#7,774 in Smartwatches": ""}, "brand": "Brand: Heall", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Heall", "full_description": "Description:This 1.69inch Full Touch Smart Bracelet supports vibrate to notify you of incoming calls and messages, you will not miss any messages and calls with this assistant. The waterproof design of our smart watch makes it a perfect tool foe outdoor running, exercising and workout.Features:Smart Watch-Color: As shown.-Material: Silicone.-Size:Host size 4.85x3.75x0.91 cm/1.91x1.48x0.36 inch. Machine size 26x4.85x0.91 cm/10.24x1.91x0.36 inch.Specification:App operating system: compatible with IOS8.0 or above, Android4.4 or aboveVibration reminder: motor vibration reminderScreen Size: 1.69 240*280Type: TFTUnit weight: 35gOperation: full touchBattery capacity: 200 mAhStandby time: 7-10 daysCharging method: magnetic data cableCharging time: about 2 hoursPackage Including1 * Bracelet1 * Charging cable1 * Instruction", "pricing": "$34.38", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41l2gB6n4kL.jpg", "https://m.media-amazon.com/images/I/51Ci7ABj+vL.jpg", "https://m.media-amazon.com/images/I/41k7GAhe-fL.jpg", "https://m.media-amazon.com/images/I/41sffXWHF3L.jpg", "https://m.media-amazon.com/images/I/418zuHLj21L.jpg", "https://m.media-amazon.com/images/I/51bp3qorElL.jpg", "https://m.media-amazon.com/images/I/51EBZG97bqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Wearable Technology \u203a Smartwatches", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09FXPFL1P/ref=twister_B09FXT45HL?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$31.16", "price": 31.16, "image": "https://m.media-amazon.com/images/I/31btEpxATAL.jpg"}, {"is_selected": true, "url": null, "value": "Blue", "price_string": "$34.38", "price": 34.38, "image": "https://m.media-amazon.com/images/I/41l2gB6n4kL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FXT358K/ref=twister_B09FXT45HL?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "$31.16", "price": 31.16, "image": "https://m.media-amazon.com/images/I/31NHIzcvRBL.jpg"}]}, "seller_id": "A2R9W4YVFY5GQ7", "seller_name": "Tueheurtic", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09FXPRZN5", "category": "electronics", "query": "Wearable Technology", "page": 100, "small_description_old": "Full Touch Watch has more than 80 kinds of dials to choose, which also supports custom your own dials, you can upload your favorite one as the background Smart Wristband features multi-sports mode, multiple reminder modes, daily use function operation, make life more intelligent and convenient Smart Fitness Watch adopts silicone strap, which is durable and non-toxic, comfortabble to wear and safe to your skin Smart Fitness Watch features a 1.69inch high-definition screen, making the display effect delicate and everything clearly visible Waterproof Sports Watch with built-in 200mAh rechargeable lithium battery, boasts large capacity and low power consumption, 20 days of long standby, 10 days of daily use"}, {"name": "4EVER DLP Projector DMD Board CHIP Suitable for BenQ MP512 MP512ST MP514 Projector", "product_information": {"ASIN": "B07XTQ1ZMN", "Best Sellers Rank": ["#8,052 in Video Projectors"], "Date First Available": "September 11, 2019", "Manufacturer": "4EVER E.T.C"}, "brand": "Brand: 4EVER E.T.C", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=4EVER+E.T.C", "full_description": "This DMD chip for use with DLP projectors that have a native resolution of 800x600 pixels. This DMD chip measures 53x36mm (mirror size is 0.55\", aspect ratio 4:3) Please confirm your old chip model first or consult our technical consultants.", "pricing": "$125.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31m8qYaeM2L.jpg", "https://m.media-amazon.com/images/I/312qtsvEp1L.jpg", "https://m.media-amazon.com/images/I/31FgdnmNaNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Video Projectors", "average_rating": "", "small_description": ["4EVER DLP Projector DMD BOARD CHIP Suitable For BenQ MP512 MP512ST MP514 Projector ", "Replacment part,one chip include ", "We are a professional projector repair company. If you don't know the model you need, please email us. ", "90 day warranty ", "If you haven't received it in 10 days, please email us "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3UZWHGC9QP6DB", "seller_name": "4EVER-YOUNG", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07XTQ1ZMN", "category": "electronics", "query": "Projectors", "page": 170, "small_description_old": "4EVER DLP Projector DMD BOARD CHIP Suitable For BenQ MP512 MP512ST MP514 Projector Replacment part,one chip include We are a professional projector repair company. If you don't know the model you need, please email us. 90 day warranty If you haven't received it in 10 days, please email us"}, {"name": "Friday The 13th Jason TGIF Pullover Hoodie", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12 x 12 x 5 inches; 1.3 Pounds", "Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n December 13, 2018", "Manufacturer\n \u200f": "\u200e\n Warner Bros.", "ASIN\n \u200f": "\u200e\n B07LBNRY7H", "Best Sellers Rank": "#3,660,832 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#77,737 in Men's Novelty Hoodies #722,130 in Women's Novelty Clothing #1,454,117 in Men's Fashion", "#77,737 in Men's Novelty Hoodies": "", "#722,130 in Women's Novelty Clothing": "", "#1,454,117 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Warner Bros.", "brand_url": "https://www.amazon.com/Warner-Bros/b/ref=bl_sl_s_ap_web_20050228011?ie=UTF8&node=20050228011&field-lbr_brands_browse-bin=Warner+Bros.", "full_description": "", "pricing": "$46.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/B1i3u9-Q-KS.png", "https://m.media-amazon.com/images/I/318ERPG8FUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Hoodies", "average_rating": 3.5, "small_description": ["Friday The 13th Jason TGIF Pullover Hoodie is available in adult unisex. This is a 100% authentic, officially licensed Friday The 13th hoodie! ", "Friday the 13th, Happy Birthday Jason Voorhees. Due to counselors lack of attention Jason drowns as a young boy at Camp Crystal Lake. He comes back for revenge. So if you are a camp counselor beware of a machete holding, hockey mask wearing maniac. ", "8.5 oz, Classic fit, Twill-taped neck "], "total_reviews": 4, "total_answered_questions": "", "customization_options": {"Fit Type": null, "Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Unisex Small", "asin": "B078RXQC7K"}, {"is_selected": false, "is_available": true, "value": "Unisex Medium", "asin": "B078RX4FQ4"}, {"is_selected": false, "is_available": true, "value": "Unisex Large", "asin": "B078RV2JNJ"}, {"is_selected": false, "is_available": true, "value": "Unisex XL", "asin": "B078RXL85P"}, {"is_selected": false, "is_available": true, "value": "Unisex 2XL", "asin": "B078RYQ4ZY"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07LBNRY7H", "category": "fashion", "query": "Men's Sweaters", "page": 85, "small_description_old": "Friday The 13th Jason TGIF Pullover Hoodie is available in adult unisex. This is a 100% authentic, officially licensed Friday The 13th hoodie! Friday the 13th, Happy Birthday Jason Voorhees. Due to counselors lack of attention Jason drowns as a young boy at Camp Crystal Lake. He comes back for revenge. So if you are a camp counselor beware of a machete holding, hockey mask wearing maniac. 8.5 oz, Classic fit, Twill-taped neck"}, {"name": "Giantex Wooden Daybed Frame Twin Size, Full Wooden Slats Support, Dual-use Sturdy Sofa Bed for Bedroom Living Room (Grey)", "product_information": {"Product Dimensions": "76 x 42 x 12 inches", "Item Weight": "46.5 pounds", "Manufacturer": "Giantex", "ASIN": "B094YFJ95K", "Item model number": "GT63521GY-HW", "Customer Reviews": {"ratings_count": 673, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#355,188 in Home & Kitchen (See Top 100 in Home & Kitchen) #860 in Bed Frames"], "Date First Available": "January 1, 2020"}, "brand": "Visit the Giantex Store", "brand_url": "https://www.amazon.com/stores/Giantex/page/5CAD1B16-908A-413E-8AEB-967B2F140721?ref_=ast_bln", "full_description": "", "pricing": "$219.99", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/513MVdPs+AS.jpg", "https://m.media-amazon.com/images/I/51Qlqb-f4RS.jpg", "https://m.media-amazon.com/images/I/51BB712Kj6S.jpg", "https://m.media-amazon.com/images/I/5119upmdA0S.jpg", "https://m.media-amazon.com/images/I/51T7UiomJGS.jpg", "https://m.media-amazon.com/images/I/41C7PlT1D8S.jpg", "https://m.media-amazon.com/images/I/51WciR8vWFS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Bed Frames", "average_rating": 4.6, "small_description": ["\u3010Sturdy & Durable Daybed Frame\u3011: Made of high-quality pine wood, the frame of this wooden bed is not easy to be affected by humidity change and lead to crack. The strong legs and wide boards not only improve the weight capacity of the bed greatly but also ensure the stableness. ", "\u3010Dual-Use for Various Scenes\u3011: This daybed frame with rails in three sides not only can be a bed to be placed in your bedroom but also is ideal to be a sofa or seat in your living room. It can meet your different needs perfectly. Designed in twin size, the frame provides enough space for you to sleep or have rest. ", "\u3010Concise Design with Quality Accessories\u3011: Equipped with antirust and strong accessories, the parts of our bed are tightly connected with each other. It won\u2019t make noise when you turn over on the bed. Designed in modern and concise style, this wooden bed will match really well with the rest of your furniture or decors. ", "\u3010Providing Additional Storage Space\u3011: The height under the bed is about 12-inch which can make full use of space and is convenient for storing various items. It is perfect to place storage box to tidy your clothes, toys or quilts. And a trundle which the size is not larger than 76 x 42 x 12 inch (L x W x H) also can be stored under the frame. ", "\u3010Easy to Assemble\u3011: All the necessary accessories and the detailed installation instructions are packaged well in the product parcel. Therefore, it is not difficult to install the wooden bed frame in short time. Two people are recommended when assembling this frame. "], "total_reviews": 673, "total_answered_questions": "", "model": "GT63521GY-HW", "customization_options": {"Color": null}, "seller_id": "A1KP5NGF2WM32D", "seller_name": "Giantex", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B094YFJ95K", "category": "garden", "query": "Bedframes", "page": 58, "small_description_old": "About this item\n \n\u3010Sturdy & Durable Daybed Frame\u3011: Made of high-quality pine wood, the frame of this wooden bed is not easy to be affected by humidity change and lead to crack. The strong legs and wide boards not only improve the weight capacity of the bed greatly but also ensure the stableness. \u3010Dual-Use for Various Scenes\u3011: This daybed frame with rails in three sides not only can be a bed to be placed in your bedroom but also is ideal to be a sofa or seat in your living room. It can meet your different needs perfectly. Designed in twin size, the frame provides enough space for you to sleep or have rest. \u3010Concise Design with Quality Accessories\u3011: Equipped with antirust and strong accessories, the parts of our bed are tightly connected with each other. It won\u2019t make noise when you turn over on the bed. Designed in modern and concise style, this wooden bed will match really well with the rest of your furniture or decors. \u3010Providing Additional Storage Space\u3011: The height under the bed is about 12-inch which can make full use of space and is convenient for storing various items. It is perfect to place storage box to tidy your clothes, toys or quilts. And a trundle which the size is not larger than 76 x 42 x 12 inch (L x W x H) also can be stored under the frame. \u3010Easy to Assemble\u3011: All the necessary accessories and the detailed installation instructions are packaged well in the product parcel. Therefore, it is not difficult to install the wooden bed frame in short time. Two people are recommended when assembling this frame."}, {"name": "WADE CELLARS Chenin Blanc, 750 ML", "product_information": {"Manufacturer": "\u200eWADE CELLARS", "ASIN": "\u200eB08NYTKYSS", "Date First Available": "\u200eNovember 20, 2020"}, "brand": "Brand: WADE CELLARS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=WADE+CELLARS", "full_description": "", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31oghhcIRAL.jpg", "https://m.media-amazon.com/images/I/315NKJqrxvL.jpg", "https://m.media-amazon.com/images/I/21MSdh4Q44L.jpg", "https://m.media-amazon.com/images/I/21O1UQID42L.jpg", "https://m.media-amazon.com/images/I/21Dogb8wWqL.jpg", "https://m.media-amazon.com/images/I/41yf3eeBZqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Alcoholic Beverages \u203a Wine \u203a White", "average_rating": 4, "small_description": ["Country Of Origin: California ", "Type Of Wine: White ", "Alcohol By Volume: 12.9% ABV "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08NYTKYSS", "category": "grocery", "query": "Alcoholic Beverages", "page": 192, "small_description_old": "About this item\n \nCountry Of Origin: California Type Of Wine: White Alcohol By Volume: 12.9% ABV"}, {"name": "Star Vixen Women's Cold-Shoulder Top", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.47 x 10 x 0.63 inches; 6.38 Ounces", "Item model number\n \u200f": "\u200e\n 8128-IT", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n May 19, 2017", "Manufacturer\n \u200f": "\u200e\n Star Vixen Child Code", "ASIN\n \u200f": "\u200e\n B06Y38FM4F", "Best Sellers Rank": "#500,143 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#7,053 in Blouses & Button-Down Shirts #7,415 in Women's T-Shirts", "#7,053 in Blouses & Button-Down Shirts": "", "#7,415 in Women's T-Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Star Vixen Store", "brand_url": "https://www.amazon.com/stores/Star+Vixen/page/19CC2C52-139E-47AA-93CC-B395BF0343A7?ref_=ast_bln", "full_description": "Update your classic scoop neck top with this chic style. Travel-friendly, comfortable and flattering in a soft and silky, wrinkle resistant knit fabric. Elastic detail at the cuff creates interest for a look that is easy to dress up or down. Style details include cut out 3/4 sleeve and scoop neck design. This is the perfect piece to update your basic top collection.", "pricing": "$9.38$30.32", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51+AmLCSQhL.jpg", "https://m.media-amazon.com/images/I/51unJd985fL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Tops, Tees & Blouses \u203a T-Shirts", "average_rating": 3.9, "small_description": ["92% Polyester, 8% Spandex ", "Made in the USA and Imported ", "Pull On closure ", "Hand Wash Only ", "*Soft Silky Knit fabric, 92% polyester, 8% Spandex ", "*Features 3/4 cold shoulder cutout detail with gathered detail at cuffs ", "*Update to the classic scoop neck top with a trendy cold shoulder look , *Work-ready and effortlessly chic, perfect for everyday, *Easy wear and care, Pull on Style in wrinkle resistant fabric"], "total_reviews": 180, "total_answered_questions": 3, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B00V6AB76O"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B00V6AB7A0"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B00V6AB78M"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B00V6AB796"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B06Y39MD7F/ref=twister_B00V69TDJS", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qsnxCyJsL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y35HPK8/ref=twister_B00V69TDJS", "value": "Black Dot", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517SwUpFeAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B018UBQG4Y/ref=twister_B00V69TDJS", "value": "Black Solid", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31xZpQI0ZgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00V6ABRC8/ref=twister_B00V69TDJS", "value": "Black/White Dot", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Gn94NNqWS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X32BP77/ref=twister_B00V69TDJS", "value": "Brown Cheetah", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51GY7PCMupL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y34K543/ref=twister_B00V69TDJS", "value": "Burgundy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zYabOcHmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZXY2T4/ref=twister_B00V69TDJS", "value": "Charcoal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31T2a2QX+EL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X31DWFL/ref=twister_B00V69TDJS", "value": "Coral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410gMC8FAEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZXFFVM/ref=twister_B00V69TDJS", "value": "Dark Floral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51+QJKtWfUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X64BVKB/ref=twister_B00V69TDJS", "value": "Fuchsia", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41vrtZ7IOrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZWFJMM/ref=twister_B00V69TDJS", "value": "Grey Cheetah", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/515YcBTponL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZXJN75/ref=twister_B00V69TDJS", "value": "Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31K+uNMHa1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y3H55J2/ref=twister_B00V69TDJS", "value": "Ivory", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31MMYfarQ7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B018UBQ9G4/ref=twister_B00V69TDJS", "value": "Ivory/Black Zebra", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51c6JuHW4xL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y3664ZH/ref=twister_B00V69TDJS", "value": "Ivoryzebra", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51cNYXTNgLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZXFWB5/ref=twister_B00V69TDJS", "value": "Jade", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41pFoqHOWoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZXJN7R/ref=twister_B00V69TDJS", "value": "Light Floral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51PNThi-v6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZWYBTQ/ref=twister_B00V69TDJS", "value": "Mauve", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31p0j1aSdmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X64MX8Y/ref=twister_B00V69TDJS", "value": "Mauve/Floral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xwsBwiv9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZWYBV1/ref=twister_B00V69TDJS", "value": "Mint", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31FR4gJDF6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WZXXJWD/ref=twister_B00V69TDJS", "value": "Mustard", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31d5Nw0i1UL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y36XK4R/ref=twister_B00V69TDJS", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rp1ROPm6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X65JBJ3/ref=twister_B00V69TDJS", "value": "Navy/Floral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51DPqFrgOPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X443FBQ/ref=twister_B00V69TDJS", "value": "Navy/White Dot", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51XCippLLFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X64Q5S5/ref=twister_B00V69TDJS", "value": "Olive", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31mEIGMJANL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B06Y35SLBX/ref=twister_B00V69TDJS", "value": "Red Dot", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51CwQs4yz2L.jpg"}, {"is_selected": true, "url": null, "value": "Red/White Dot", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51+AmLCSQhL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X219HRN/ref=twister_B00V69TDJS", "value": "Rust", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410KYJKOgXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X64Q5S3/ref=twister_B00V69TDJS", "value": "Teal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ZRezhNl1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X64QTQ5/ref=twister_B00V69TDJS", "value": "Burgundy Floral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41URiKbLCgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X219HS4/ref=twister_B00V69TDJS", "value": "Burgundy/Floral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41i9pFfVzFL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B00V6AB796", "category": "fashion", "query": "Women's Tops, Tees & Blouses", "page": 58, "small_description_old": "*Soft Silky Knit fabric, 92% polyester, 8% Spandex *Features 3/4 cold shoulder cutout detail with gathered detail at cuffs *Update to the classic scoop neck top with a trendy cold shoulder look *Work-ready and effortlessly chic, perfect for everyday *Easy wear and care, Pull on Style in wrinkle resistant fabric"}, {"name": "Dual Magnetic Lashes, Magnets False Eyelashes, Soft 3D No Glue Fake Lashes Extension with Tweezers, Natural Look Eyelashes Set with 6 Pieces / 3 Pairs /Mini HD Makeup Mirror", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.93 x 5.31 x 1.3 inches; 6.28 Ounces", "UPC\n \u200f": "\u200e\n 735372628544", "Manufacturer\n \u200f": "\u200e\n tataback", "ASIN\n \u200f": "\u200e\n B09CGNH5XT", "Best Sellers Rank": "#106,052 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,243 in False Eyelashes", "#1,243 in False Eyelashes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: tataback", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=tataback", "full_description": "The Eyelashes made of Grade A handcrafted fiber that is ultra-soft and long for entire eyes. It is smudge-resistant and waterproof. A specially designed alloy applicator for magnetic eyelashes makes it very easy to wear. MAGNETIC EYELASHES The 100% handmade magnetic eyelashes can be used many times with proper use and storage. The magnetic eyelashes come with 5 strong magnets each. No Glue and Irritation-free The magnetic eyelashes no messy glues or adhesives required, easy to apply. The glue-free design minimizes irritation to your eyes and also prevents any damage to your natural eyelashes. Natural and Beautiful The most fashionable eyelashes may give you a natural and beautiful look. Put on these thin and long false eyelashes and your eyes would look bigger, beauty brighter, and more attractive, you will look naturally gorgeous and beautiful. NATURAL LOOK Enjoy natural-looking lashes that enhance the natural beauty of your eyes. They do not feel too heavy on the eyes but they keep your eyes look awake and alive. These lashes fan out to bring out the best of your eyes. Easy To Use 1. Place the upper lash on the upper part of the applicator, and place the lower lash on the lower part of the applicator. Make sure both lashes curve upwards and face inside of the applicator. 2. Bring the applicator as close as possible to your lash line, making sure your natural lashes are in between two prongs of the applicator. 3. Gently press the applicator together until the magnets connect automatically to each other.", "pricing": "$9.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/518GPzY109L.jpg", "https://m.media-amazon.com/images/I/512a6zK42bL.jpg", "https://m.media-amazon.com/images/I/51VcCyDdpzL.jpg", "https://m.media-amazon.com/images/I/51LfOuur2tL.jpg", "https://m.media-amazon.com/images/I/41BZMjIl4wL.jpg", "https://m.media-amazon.com/images/I/51MxeGmplHL.jpg", "https://m.media-amazon.com/images/I/51LWsrT8nBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Makeup Brushes & Tools \u203a Eye \u203a False Eyelashes & Adhesives \u203a False Lashes", "average_rating": 1.9, "small_description": ["\ud83d\udc96\u3010Package includes\u3011The Reusable eyelash set includes 6 pairs of eyelashes. And it also includes a special magnetic eyelash clip, and a pretty box for packaging them. What's more ingenious is that there is a mirror inside the box and it have a beauty box that can be carried around (including Mini HD Makeup Mirror) With them, you can wear beautiful eyelashes anytime, anywhere, making you more beautiful. ", "\ud83d\udc96\u3010Natural Magnetic Eyelashes\u3011Made of premium synthetic fibers that result in luscious eyelashes, It can be fixed within seconds with the dual magnetic design, 2 magnet strips clip in each corner under your eyelashes, securing the top lash in place. strong magnetic force secures your eyelash is placed in the right place,and make your eyes look bright and attractive. ", "\ud83d\udc96\u3010Comfort & natural\u3011The magnetic fake eyelashes no messy glues or adhesives required, easy to apply. The glue-free design minimizes irritation to your eyes and also prevents any damage to your natural eyelashes.Makes you more comfortable and natural after applying eyelashes, and can be worn for a long time. ", "\ud83d\udc96\u3010How to Use\u3011Only attach the top and bottom eyelashes to the upper and lower prong of the tweezers, then clip and press the prongs together to have both lashes strips stick to each other. Then release and take away the tweezers. Designed for quick and easy application of magnetic lashes, this Eyelash companion is guaranteed to save your makeup time. These professional eyelash tweezers use innovative curved shapes to safely apply eyelashes in seconds with extreme precision. ", "\ud83d\udc96\u3010Quality Service\u3011 If you are not satisfied with our magnetic eyelashes kit, you can contact us immediately, and we will reply to you and solve your problem within 24 hours. "], "total_reviews": 10, "total_answered_questions": "", "customization_options": "", "seller_id": "ATH852DU1DPGK", "seller_name": "Bangke-US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09CGNH5XT", "category": "beauty", "query": "Eyes Makeup", "page": 208, "small_description_old": "About this item \ud83d\udc96\u3010Package includes\u3011The Reusable eyelash set includes 6 pairs of eyelashes. And it also includes a special magnetic eyelash clip, and a pretty box for packaging them. What's more ingenious is that there is a mirror inside the box and it have a beauty box that can be carried around (including Mini HD Makeup Mirror) With them, you can wear beautiful eyelashes anytime, anywhere, making you more beautiful. \ud83d\udc96\u3010Natural Magnetic Eyelashes\u3011Made of premium synthetic fibers that result in luscious eyelashes, It can be fixed within seconds with the dual magnetic design, 2 magnet strips clip in each corner under your eyelashes, securing the top lash in place. strong magnetic force secures your eyelash is placed in the right place,and make your eyes look bright and attractive. \ud83d\udc96\u3010Comfort & natural\u3011The magnetic fake eyelashes no messy glues or adhesives required, easy to apply. The glue-free design minimizes irritation to your eyes and also prevents any damage to your natural eyelashes.Makes you more comfortable and natural after applying eyelashes, and can be worn for a long time. \ud83d\udc96\u3010How to Use\u3011Only attach the top and bottom eyelashes to the upper and lower prong of the tweezers, then clip and press the prongs together to have both lashes strips stick to each other. Then release and take away the tweezers. Designed for quick and easy application of magnetic lashes, this Eyelash companion is guaranteed to save your makeup time. These professional eyelash tweezers use innovative curved shapes to safely apply eyelashes in seconds with extreme precision. \ud83d\udc96\u3010Quality Service\u3011 If you are not satisfied with our magnetic eyelashes kit, you can contact us immediately, and we will reply to you and solve your problem within 24 hours."}, {"name": "Furniture HotSpot \u2013 Bakers Rack \u2013 White Stain - 30\" W x 15\" D x 64.5\" H", "product_information": {"Item Weight": "\u200e69 pounds", "Product Dimensions": "\u200e15 x 30 x 64.5 inches", "Item model number": "\u200eFH6321AK", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Height": "\u200e64.5 inches", "Assembled Width": "\u200e30 inches", "Assembled Length": "\u200e15 inches", "Weight": "\u200e69 Pounds", "ASIN": "B079V5YD92", "Best Sellers Rank": ["#5,042,736 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,057 in Standing Baker's Racks"], "Date First Available": "February 15, 2018"}, "brand": "Visit the Furniture HotSpot Store", "brand_url": "https://www.amazon.com/stores/FurnitureHotSpot/page/FD7C36FD-CB7E-4A0B-917F-EF735B83565D?ref_=ast_bln", "full_description": "Everything finds a home in this white bakers rack. Four shelves and two woven baskets provide ample storage space for everything but the kitchen sink. Bakers rack works as a coffee station, standalone pantry, microwave stand, or an extra buffet table. This kitchen rack with baskets will revamp your space without major construction.", "pricing": "$389.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31RJEsJwmRL.jpg", "https://m.media-amazon.com/images/I/31B9UBg4FAL.jpg", "https://m.media-amazon.com/images/I/315Acd6uTLL.jpg", "https://m.media-amazon.com/images/I/314LHGN7RwL.jpg", "https://m.media-amazon.com/images/I/31uLdSQaKCL.jpg", "https://m.media-amazon.com/images/I/51j7jOpNlkL.jpg", "https://m.media-amazon.com/images/I/615Uz9ECzqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Kitchen Furniture \u203a Baker's Racks \u203a Standing Baker's Racks", "average_rating": "", "small_description": ["Kitchen bakers rack with storage features 4 shelves and 2 woven baskets ", "Microwaves stand works as a coffee station, buffet table, or freestanding pantry ", "Materials: Rattan baskets, pine wood, oak veneer, and engineered wood ", "Assembly: Required, instructions included ", "Dimensions: 30\" W x 15\" D x 64.5\" H "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eFH6321AK", "customization_options": "", "seller_id": "A36SWJ2F9454W2", "seller_name": "Furniture HotSpot", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B079V5YD92", "category": "garden", "query": "Baker's Racks", "page": 59, "small_description_old": "About this item Kitchen bakers rack with storage features 4 shelves and 2 woven baskets Microwaves stand works as a coffee station, buffet table, or freestanding pantry Materials: Rattan baskets, pine wood, oak veneer, and engineered wood Assembly: Required, instructions included \n \u203a See more product details"}, {"name": "LIUEONG Lady Metal Buckle Platform Shoes Booties Comfortable High Top Boots Casual Shoes Comfort Women's Closed Toe Ankle Strap", "product_information": {"Item Weight\n \u200f": "\u200e\n 9.88 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 14, 2022", "Manufacturer\n \u200f": "\u200e\n LIUEONG", "ASIN\n \u200f": "\u200e\n B09QKJYS8Y", "": ""}, "brand": "Brand: LIUEONG", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=LIUEONG", "full_description": "Gender: Women/GrilUpper Material:Artificial PUSole Material: RubberInsole Material:PULining Material:imitation leatherSuitable Scenes:Outdoor,Fashion,LeisureStyle: Casual,SimpleToe Style: Round headClosing Method:Lace-upHeel High Style:Flat withShoes Heel High: 3cm/1.18''Platform Heigh: 2cm/0.78''(O ^ ~ ^ O)Size:35US:5.5 UK:3.5 EU:35 CN:225 Foot Length:22.5cm/8.9\" Foot wide:8-8.5cm/3.2-3.4\"(O ^ ~ ^ O)Size:36 US:6 UK:4 EU:35.5 CN:230 Foot Length:23cm/9.1\" Foot wide:8.5cm/3.4''(O ^ ~ ^ O)Size:37 US:6.5-7 UK:4.5 EU:36 CN:235 Foot Length:23.5cm/9.3'' Foot wide:8.5-9cm/3.4-3.5''(O ^ ~ ^ O)Size:38 US:7.5 UK:5 EU:37 CN:240 Foot Length:24cm/9.5'' Foot wide:9cm/3.5''(O ^ ~ ^ O)Size:39 US:8 UK:5.5 EU:38 CN:245 Foot Length:24.5cm/9.7'' Foot wide:9-9.5cm/3.5-3.7''(O ^ ~ ^ O)Size:40 US:8.5 UK:6 EU:39 CN:250 Foot Length:25cm/9.8'' Foot wide:9.5cm/3.7''(O ^ ~ ^ O)Size:41 US:9 UK:6.5 EU:39.5 CN:255 Foot Length:25.5cm/10\" Foot wide:9.5-10cm/3.7-3.9\"(O ^ ~ ^ O)Size:42 US:9.5-10 UK:7 EU:40 CN:260 Foot Length:26cm/10.2\" Foot wide:10cm/3.9\"(O ^ ~ ^ O)Size:43 US:10.5 UK:7.5 EU:41 CN:265 Foot Length:26.5cm/10.4\" Foot wide:10.5cm/4.1\"", "pricing": "$37.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31EvmBrjv9L.jpg", "https://m.media-amazon.com/images/I/41VXboaADuL.jpg", "https://m.media-amazon.com/images/I/41dlyCcu-0L.jpg", "https://m.media-amazon.com/images/I/51PnG6WccLS.jpg", "https://m.media-amazon.com/images/I/41rbesEYVGS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Boots \u203a Ankle & Bootie", "average_rating": "", "small_description": ["PU ", "Imported ", "Rubber sole ", "Heel measures approximately 5 centimeters ", "\u273fWide Calf Booties: Womens Suede Extra Width Boots, Low Heel, Flat, Non-Slip, Solid Color, Belt Buckle, Pointed Toe, Classic Design, Fashion Elegent, Faux Leather Cowboy Boots, lightweight high heel and Customized Arch, designed for steady steps, Provide all-day comfort, fit for Spring, Fall and Winter. ", "\u273fHIGH QUALITY: Casual Pointed Toe Cowgirl Boots are made of best Leather, soft comfort, TPR rubber anti-slip out-sole finished with cushioned insole, hug your feet to provide superior heel and toe wrap. easy to clean and wearable, breathable warm, keep feet dry, deodorant, Care for your feet. ", "\u273fMATCH: Whether You're Keeping it Casual or Dressing up! You all can easily pair this 2021 latest Winter Flat Short Boots with leggings, tight pants, jeans, sweatpants, to complete trendy Fall & winter look. They're best Birthday/Halloween/Christmas/Thanksgiving/Mather\u2018s day gifts for Women, Such as Mother, Aunt, Wife, Girlfriend, Colleagues ect. , slipper fuzzy slippers womens house slippers slippers women bride slippers slippers for women indoor and outdoor must haves from memory foam slippers for women mens slippers size 19 bedroom slippers women indoor slippers moccasins for men womens house shoes cloud slippers ladies slippers men's hiking shoes beach shoes men sports sandals hiking sandals water shoes men black womens jet ski mens sandals hiking shoes men sport shoes for men, men foam runners athletic shoes for men women size 9 mens slides size 11 aquatic slide sandals square toe sandals river shoes i love hot dads water sandals sandals for men girls sport shoes for women shoes for men water hiking shoes shoes for women camo for men slide sandals women womens slide sandal croc slides slippers men men slides for men mens sandals size 18 black slides black slides for women forum men's slides sandalias"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "6", "asin": "B09QKJSGQN"}, {"is_selected": false, "is_available": true, "value": "6.5", "asin": "B09QKJ981V"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B09QKLKH61"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09QKJMCQ8"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B09QKJHF4Q"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B09QKJN2J4"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B09QKJR917"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B09QKKM9T6"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QKJYS8Y/ref=twister_B09QG67PL2", "value": "Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31LFtcvDRYL.jpg"}, {"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31EvmBrjv9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QKJNSJD/ref=twister_B09QG67PL2", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ujDJcQ8+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QKJCZQ7/ref=twister_B09QG67PL2", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31J4ZCSWsrL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QKJHF4Q", "category": "fashion", "query": "Women's Oxfords", "page": 72, "small_description_old": "PU Imported Rubber sole Heel measures approximately 5 centimeters \u273fWide Calf Booties: Womens Suede Extra Width Boots, Low Heel, Flat, Non-Slip, Solid Color, Belt Buckle, Pointed Toe, Classic Design, Fashion Elegent, Faux Leather Cowboy Boots, lightweight high heel and Customized Arch, designed for steady steps, Provide all-day comfort, fit for Spring, Fall and Winter. \u273fHIGH QUALITY: Casual Pointed Toe Cowgirl Boots are made of best Leather, soft comfort, TPR rubber anti-slip out-sole finished with cushioned insole, hug your feet to provide superior heel and toe wrap. easy to clean and wearable, breathable warm, keep feet dry, deodorant, Care for your feet. \u273fMATCH: Whether You're Keeping it Casual or Dressing up! You all can easily pair this 2021 latest Winter Flat Short Boots with leggings, tight pants, jeans, sweatpants, to complete trendy Fall & winter look. They're best Birthday/Halloween/Christmas/Thanksgiving/Mather\u2018s day gifts for Women, Such as Mother, Aunt, Wife, Girlfriend, Colleagues ect. \n slipper fuzzy slippers womens house slippers slippers women bride slippers slippers for women indoor and outdoor must haves from memory foam slippers for women mens slippers size 19 bedroom slippers women indoor slippers moccasins for men womens house shoes cloud slippers ladies slippers men's hiking shoes beach shoes men sports sandals hiking sandals water shoes men black womens jet ski mens sandals hiking shoes men sport shoes for menmen foam runners athletic shoes for men women size 9 mens slides size 11 aquatic slide sandals square toe sandals river shoes i love hot dads water sandals sandals for men girls sport shoes for women shoes for men water hiking shoes shoes for women camo for men slide sandals women womens slide sandal croc slides slippers men men slides for men mens sandals size 18 black slides black slides for women forum men's slides sandaliasShow more"}, {"name": "Sparkle-Dent Denture Whitener and Cleaner", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 4.25 x 2.25 x 2.24 inches; 9.12 Ounces", "UPC\n \u200f": "\u200e\n 092688000083", "Manufacturer\n \u200f": "\u200e\n U.S. Dental Corporation", "ASIN\n \u200f": "\u200e\n B078T46X81", "Best Sellers Rank": "#171,399 in Health & Household (See Top 100 in Health & Household)#146 in Denture Cleansers", "#146 in Denture Cleansers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Collections Etc Store", "brand_url": "https://www.amazon.com/stores/CollectionsEtc/page/2881891A-65D0-4495-AFA4-D49203E41622?ref_=ast_bln", "full_description": "Sparkle-Dent Denture Whitener And CleanerDescriptionSparkle Dent denture whitener and cleaner removes built-up tartar and stains, makes discolored dentures look like new! Dissolve capful in water and soak. Safe for soft liners. 8 oz. No Risk Purchase, Hassle-Free Returns - 100% Satisfaction Guaranteed With customer satisfaction as our number one priority, we proudly offer a Satisfaction Guarantee for all of our merchandise and services. From our appealing merchandise and incredible values, to our friendly customer service, we strive to provide a positive shopping experience by meeting or exceeding your expectations.If you are not completely satisfied within 60 days of your purchase (see return policy for details).Collections Etc - Providing Quality, Value And Service For More Than 50 Years! A lot has changed since the company's inception over 50 years ago, however the basics of developing and sourcing appealing and desirable merchandise remains the same driving force. Collections Etc is all about smiling more and paying less. They take pride in offering affordable items every day; from classic Home Decor to helpful Home Solutions, whimsical Garden Sculptures and unique Holiday Gift ideas for everyone in your family, even your pets!", "pricing": "$27.95", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41oi2ntaRGL.jpg", "https://m.media-amazon.com/images/I/41DGs3LNvnL.jpg", "https://m.media-amazon.com/images/I/31inPDRg6mL.jpg", "https://m.media-amazon.com/images/I/31xlCFexNZS.jpg", "https://m.media-amazon.com/images/I/5166XSWo0PL.jpg", "https://m.media-amazon.com/images/I/51rTGOHCs3L.jpg", "https://m.media-amazon.com/images/I/51rTGOHCs3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Denture Care \u203a Cleansers", "average_rating": 4.6, "small_description": ["Sparkle Dent denture whitener and cleaner removes built-up tartar and stains, makes discolored dentures look like new. Dissolve capful in water and soak ", "Safe for soft liners ", "8 oz ", "Shop with confidence! For over 50 years, Collections Etc has been bringing unique, whimsical, inspirational, and home solution products to customers. All Collections Etc products come with a 60 day, easy return policy and 100% satisfaction guarantee. "], "total_reviews": 132, "total_answered_questions": 7, "customization_options": "", "seller_id": "A31C924Z0CHYU", "seller_name": "Purely Native", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B078T46X81", "category": "beauty", "query": "Denture Care", "page": 12, "small_description_old": "Sparkle Dent denture whitener and cleaner removes built-up tartar and stains, makes discolored dentures look like new. Dissolve capful in water and soak Safe for soft liners 8 oz Shop with confidence! For over 50 years, Collections Etc has been bringing unique, whimsical, inspirational, and home solution products to customers. All Collections Etc products come with a 60 day, easy return policy and 100% satisfaction guarantee."}, {"name": "NOW Foods, Better Stevia, Liquid, Maple, Zero-Calorie Liquid Sweetener, Low Glycemic Impact, Certified Non-GMO, 2-Ounce", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 3.15 x 1.57 x 2.36 inches; 1.13 Ounces", "Item model number\n \u200f": "\u200e\n Stevia Liquid Extract (Maple) 60mL", "UPC\n \u200f": "\u200e\n 733739069184", "Manufacturer\n \u200f": "\u200e\n NOW Foods", "ASIN\n \u200f": "\u200e\n B07F1JDWJP", "Country of Origin\n \u200f": "\u200e\n USA", "Domestic Shipping": "Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.", "International Shipping": "This item is not eligible for international shipping.Learn More", "Best Sellers Rank": "#4,015 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#37 in Stevia Sugar Substitutes", "#37 in Stevia Sugar Substitutes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: NOW", "brand_url": "https://www.amazon.com/NOW/b/ref=bl_dp_s_web_12660347011?ie=UTF8&node=12660347011&field-lbr_brands_browse-bin=NOW", "full_description": "NOW BetterStevia is a zero-calorie, low glycemic, natural sweetener that makes a perfectly healthy substitute for table sugar and artificial sweeteners. Unlike chemical sweeteners, NOW BetterStevia is a certified organic\u00a0stevia extract. NOW Foods takes special measures to preserve Stevia\u2019s natural qualities in this unique, better-tasting stevia.", "pricing": "$10.04", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41nSl8AWS2L.jpg", "https://m.media-amazon.com/images/I/51at9CCf7eL.jpg", "https://m.media-amazon.com/images/I/41ZTYZUds8L.jpg", "https://m.media-amazon.com/images/I/51-zgCciA+L.jpg", "https://m.media-amazon.com/images/I/51z7JqaqBtL.jpg", "https://m.media-amazon.com/images/I/51hCx7FKxfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Syrups, Sugars & Sweeteners \u203a Sugar Substitutes \u203a Stevia", "average_rating": 4.5, "small_description": ["Perfect substitute for table sugar and artificial sweeteners ", "Free of: caffeine, dairy , egg, gluten, soy, and sugar ", "Keto friendly, Kosher, Non-GMO, Vegan/Vegetarian "], "total_reviews": 2956, "total_answered_questions": 28, "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B001B41CA6/ref=twister_B091PVN2T4?_encoding=UTF8&psc=1", "value": "Dark Chocolate", "price_string": "$9.15", "price": 9.15, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0776ZZQVR/ref=twister_B091PVN2T4?_encoding=UTF8&psc=1", "value": "French Vanilla", "price_string": "$12.95", "price": 12.95, "image": null}, {"is_selected": true, "url": null, "value": "Maple", "price_string": "$10.04", "price": 10.04, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F1KVMBF/ref=twister_B091PVN2T4?_encoding=UTF8&psc=1", "value": "Peppermint Cookie", "price_string": "$9.93", "price": 9.93, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07F1JDWJP", "category": "grocery", "query": "Milks & Creams", "page": 384, "small_description_old": "About this item Zero- calorie liquid sweetener Low glycemic Perfect substitute for table sugar and artificial sweeteners Free of: caffeine, dairy , egg, gluten, soy, and sugar Keto friendly, Kosher, Non-GMO, Vegan/Vegetarian"}, {"name": "2021 Kellogg's Cereal Straws Froot Loops Edible Breakfast Straw Alternatives for Milk, 90's Childhood Nostalgic Treat for Drinking and Eating, Cereals for Kids, Pack of 3, 18 Count", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 9 x 7 x 5 inches; 1.9 Pounds", "UPC\n \u200f": "\u200e\n 768395551650", "Manufacturer\n \u200f": "\u200e\n Galerie", "ASIN\n \u200f": "\u200e\n B09FNLS51H", "Country of Origin\n \u200f": "\u200e\n Greece", "Best Sellers Rank": "#8,322 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#103 in Cold Breakfast Cereals", "#103 in Cold Breakfast Cereals": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Galerie Store", "brand_url": "https://www.amazon.com/stores/Galerie/page/FB54FD86-659B-4696-B3A7-8381493FEFC2?ref_=ast_bln", "full_description": "", "pricing": "$24.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51bWKZUpvQL.jpg", "https://m.media-amazon.com/images/I/41iAdg9By0L.jpg", "https://m.media-amazon.com/images/I/41QhTKO2VwL.jpg", "https://m.media-amazon.com/images/I/51kXHiFRkJL.jpg", "https://m.media-amazon.com/images/I/41tryLK+m2L.jpg", "https://m.media-amazon.com/images/I/41Y3qapUtLL.jpg", "https://m.media-amazon.com/images/I/31p8OBEKJxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breakfast Foods \u203a Cereals \u203a Cold Cereals", "average_rating": 4.4, "small_description": ["YOU SPOKE WE LISTENED 12 years after the iconic Kellogg cereal straws were discontinued, you petitioned for them to return. Fans around the world were nostalgic for these fruity treats, so we took action. ", "90's KIDS REJOICE The snacks you knew and loved as a kid are revived! Wafer straws are filled with fruity goodness, making sipping fun! ", "PACK OF 3 includes 3 boxes of straws. Each box has 18 straws for a total of 54 cereal straws. Perfect for sharing with friends, or keeping all to yourself... we won't judge. ", "DUNK AND EAT Place cereal straw in milk, sip, and enjoy. Snack straws are made to make your milk taste just a little bit sweeter! ", "SHARE THE LOVE Froot Loop Cereal straws are a delicious treat that come with enough to share. Give them as a gift for birthdays, holidays, or just because! "], "total_reviews": 186, "total_answered_questions": "", "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09C6QF673/ref=twister_B09K7ZRZ58?_encoding=UTF8&psc=1", "value": "Cocoa Krispies", "price_string": "$14.99", "price": 14.99, "image": null}, {"is_selected": true, "url": null, "value": "Froot Loops", "price_string": "$24.99", "price": 24.99, "image": null}]}, "seller_id": "A2T71IW70GG371", "seller_name": "Galerie Candy and Gifts", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09FNLS51H", "category": "grocery", "query": "Milks & Creams", "page": 74, "small_description_old": "About this item YOU SPOKE WE LISTENED 12 years after the iconic Kellogg cereal straws were discontinued, you petitioned for them to return. Fans around the world were nostalgic for these fruity treats, so we took action. 90's KIDS REJOICE The snacks you knew and loved as a kid are revived! Wafer straws are filled with fruity goodness, making sipping fun! PACK OF 3 includes 3 boxes of straws. Each box has 18 straws for a total of 54 cereal straws. Perfect for sharing with friends, or keeping all to yourself... we won't judge. DUNK AND EAT Place cereal straw in milk, sip, and enjoy. Snack straws are made to make your milk taste just a little bit sweeter! SHARE THE LOVE Froot Loop Cereal straws are a delicious treat that come with enough to share. Give them as a gift for birthdays, holidays, or just because!"}, {"name": "AUTOKOLA Portable & Practical Hooks, Vintage Style Cast Iron Wall-Mounted Coat Rack Coat Hooks Hat Hooks Hall Tree, 3 3/4\", Coffee GG002", "product_information": {"Item Weight": "11 pounds", "ASIN": "B09QYYN4S4", "Country of Origin": "China", "Finish Types": "Iron, Coffee"}, "brand": "Brand: AUTOKOLA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=AUTOKOLA", "full_description": "Introductions:The unique details of these hooks will bring vintage allure and stylish organization to your home.Use them inside the front door, by the kitchen entry, on the screen porch, in the bathroom for towels and robes,or anywhere you need charming organization.Specifications:1???Type: Wall-Mounted Hook2???Material: Heavy Durable Cast Iron Design3???Color: Coffee4???Dimensions: 3 3/4 Tall Top to Bottom, 2 from the Wall to the Front5???Weight: 3 oz Each6???Installation: Two Pre-Drilled Holes Make Mounting EasyPackage Includes:5 x Hooks( include the screw)", "pricing": "$14.99", "list_price": "", "availability_quantity": 9, "availability_status": "Only 9 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51IOZq568cL.jpg", "https://m.media-amazon.com/images/I/5160nsxj8-L.jpg", "https://m.media-amazon.com/images/I/515IOw2VxhL.jpg", "https://m.media-amazon.com/images/I/51s0DxV85bL.jpg", "https://m.media-amazon.com/images/I/51pQcl9xF3L.jpg", "https://m.media-amazon.com/images/I/511M5PfpSPL.jpg", "https://m.media-amazon.com/images/I/515sOmENU1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Storage & Organization \u203a Home Storage Hooks \u203a Coat Hooks", "average_rating": "", "small_description": ["\u2605 PRACTICAL DESIGN \u2013 The wall-mounted hook aims at improving space utilization. It features both beauty and functionality. It weighs only 3 oz but offers a strong bearing capacity for enhanced stability, ensuring your satisfaction. Space-saving design is a convenient alternative to free-standing racks. All the details make it an indispensable choice for you! ", "\u2605 HIGH QUALITY & DURABLE \u2013The wall-mounted hook is made of superior cast iron, safe and stable material. High quality material and delicate workmanship ensure its long lifespan. Dimension: (2 x 3 3/4 ) (W x H) ", "\u2605 ASSEMBLY \u2013 Easy assembly required. Just secure the organizer to the wall by inserting the screws into the holes and the pre-drilled holes in the wall, then tighten the screws until the hook feels firmly fastened. Convenient to store and carry with its compact size and light weight. ", "\u2605 VERSATILITY - With a concise and convenient design, the wall-mounted hook suits any person and place. Ideal for helping you create extra hanging space in any room to organize and store of coats, clothing items, scarves, towels, pet leashes, etc. Widely used in living room, kitchen, bathroom, office, craft room, bedroom, entryway, closet and so much more. Endless possibilities! ", "\u2605 RISK-FREE PURCHASE - We provide a solution and lifetime customer service. Please just contact our customer service if you have any issue with our product. We will refund your money or replace your product at the first time. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ADK9Z6OWJ7DTN", "seller_name": "Mihot Produce", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QYYN4S4", "category": "garden", "query": "Hall Trees", "page": 69, "small_description_old": "About this item\n \n\u2605 PRACTICAL DESIGN \u2013 The wall-mounted hook aims at improving space utilization. It features both beauty and functionality. It weighs only 3 oz but offers a strong bearing capacity for enhanced stability, ensuring your satisfaction. Space-saving design is a convenient alternative to free-standing racks. All the details make it an indispensable choice for you! \u2605 HIGH QUALITY & DURABLE \u2013The wall-mounted hook is made of superior cast iron, safe and stable material. High quality material and delicate workmanship ensure its long lifespan. Dimension: (2 x 3 3/4 ) (W x H) \u2605 ASSEMBLY \u2013 Easy assembly required. Just secure the organizer to the wall by inserting the screws into the holes and the pre-drilled holes in the wall, then tighten the screws until the hook feels firmly fastened. Convenient to store and carry with its compact size and light weight. \u2605 VERSATILITY - With a concise and convenient design, the wall-mounted hook suits any person and place. Ideal for helping you create extra hanging space in any room to organize and store of coats, clothing items, scarves, towels, pet leashes, etc. Widely used in living room, kitchen, bathroom, office, craft room, bedroom, entryway, closet and so much more. Endless possibilities! \u2605 RISK-FREE PURCHASE - We provide a solution and lifetime customer service. Please just contact our customer service if you have any issue with our product. We will refund your money or replace your product at the first time."}, {"name": "Athletic Works Women's Commuter Shorts (XS 0-2", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n June 8, 2021", "ASIN\n \u200f": "\u200e\n B096TLRVG6", "Best Sellers Rank": "#1,964,273 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#6,375 in Women's Athletic Shorts", "#6,375 in Women's Athletic Shorts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Athletic Works", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Athletic+Works", "full_description": "", "pricing": "$13.21", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31yvwwDrTgL.jpg", "https://m.media-amazon.com/images/I/31fSAuXM8gL.jpg", "https://m.media-amazon.com/images/I/31AUT0BJEYL.jpg", "https://m.media-amazon.com/images/I/31zuabEb7GL.jpg", "https://m.media-amazon.com/images/I/51jsGGYzSxL.jpg", "https://m.media-amazon.com/images/I/31zx4zt8JaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Shorts", "average_rating": 5, "small_description": ["Drawstring closure ", "Machine Wash ", "Drawstring closure ", "Adult Women's Sizes ", "5\" Inseam ", "Pull-on; elasticized waist with drawstring ", "Zip pockets at sides; open back pocket, Machine Washable, 92% Cotton/8% Spandex "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Size": null, "Color": [{"is_selected": true, "url": null, "value": "Green", "price_string": "$13.21", "price": 13.21, "image": "https://m.media-amazon.com/images/I/31yvwwDrTgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L38DFTR/ref=twister_B096TLRVG6?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$19.79", "price": 19.79, "image": "https://m.media-amazon.com/images/I/31t4rJBbjLS.jpg"}]}, "seller_id": "A1KB813CX604OR", "seller_name": "TDM12", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08L373FLK", "category": "fashion", "query": "Women's Shorts", "page": 31, "small_description_old": "Adult Women's Sizes Pull-on; elasticized waist with drawstring Zip pockets at sides; open back pocket, Machine Washable, 92% Cotton/8% Spandex"}, {"name": "Nescafe Dolce Gusto Starbucks House Blend Americano x 3 Boxes (36 Capsules) 36 Drinks", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 13.39 x 4.53 x 4.53 inches; 1.12 Pounds", "Manufacturer\n \u200f": "\u200e\n Nestle", "ASIN\n \u200f": "\u200e\n B07YPYJ32Z", "Best Sellers Rank": "#50,020 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#1,586 in Single-Serve Coffee Capsules & Pods", "#1,586 in Single-Serve Coffee Capsules & Pods": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Dolce Gusto Store", "brand_url": "https://www.amazon.com/stores/Nescaf%C3%A9DolceGusto/page/33FCB6A8-2DE6-41AC-A0CF-5D934F014430?ref_=ast_bln", "full_description": "Rich with toffee notes, discover STARBUCKS\u00ae by NESCAF\u00c9\u00ae Dolce Gusto\u00ae Americano House Blend Medium Roast Coffee Pods.", "pricing": "$31.15", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51hs-NMRWzL.jpg", "https://m.media-amazon.com/images/I/51Jgb8+T5BL.jpg", "https://m.media-amazon.com/images/I/41QYnoO3zpL.jpg", "https://m.media-amazon.com/images/I/41PyykZ2GmL.jpg", "https://m.media-amazon.com/images/I/411brkpPS4L.jpg", "https://m.media-amazon.com/images/I/514VHPIlUiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Coffee, Tea & Cocoa \u203a Coffee \u203a Single-Serve Capsules & Pods", "average_rating": 4.4, "small_description": ["\u2714 STARBUCKS first blend created back in 1971. A blend of fine Latin American beans roasted to a glistening, dark chestnut colour. ", "\u2714 Aroma, body and flavour all in balance with tastes of nuts and cocoa and just a touch of sweetness from the roast. ", "\u2714 Each of the 3 boxes contains 12 capsules of Americano House Blend Medium Roast coffee, designed for NESCAF\u00c9 Dolce Gusto coffee machines. ", "\u2714 With the hermetically sealed capsules, which preserve coffee freshness, you\u2019ll enjoy rich aromatic cups every time. ", "\u2714 Simply pop your Americano House Blend capsule into your Dolce Gusto machine. Your coffee will be ready right away. "], "total_reviews": 67, "total_answered_questions": "", "customization_options": "", "seller_id": "A34G8JZYKEEO1O", "seller_name": "Craig Powell", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07YPYJ32Z", "category": "grocery", "query": "Beverages", "page": 349, "small_description_old": "About this item \u2714 STARBUCKS first blend created back in 1971. A blend of fine Latin American beans roasted to a glistening, dark chestnut colour. \u2714 Aroma, body and flavour all in balance with tastes of nuts and cocoa and just a touch of sweetness from the roast. \u2714 Each of the 3 boxes contains 12 capsules of Americano House Blend Medium Roast coffee, designed for NESCAF\u00c9 Dolce Gusto coffee machines. \u2714 With the hermetically sealed capsules, which preserve coffee freshness, you\u2019ll enjoy rich aromatic cups every time. \u2714 Simply pop your Americano House Blend capsule into your Dolce Gusto machine. Your coffee will be ready right away."}, {"name": "Jimmy Choo Eau De Parfum Roll", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 3.78 x 3.78 x 1.5 inches; 12.95 Ounces", "Item model number\n \u200f": "\u200e\n 204728", "Department\n \u200f": "\u200e\n Womens", "UPC\n \u200f": "\u200e\n 617689039308 754495486985 885570453490 786502047285 885206302352 761193171556 709102020908 880108269826 338646002547 885520694836 885283549367 885111848488 883537352251 127435180067 880414607077 786500218205 791949983812 885892709046 880147325385 617689038073 885627819538 885196689372 885247103932 721866379030 761193171709 746480993455 880274623446 885123525001 885413203695 070963392603 885113884101", "Manufacturer\n \u200f": "\u200e\n Jimmy Choo", "ASIN\n \u200f": "\u200e\n B004LCZEJK", "Country of Origin\n \u200f": "\u200e\n France", "Best Sellers Rank": "#19,262 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#83 in Women's Eau de Parfum #123 in Beauty Gift Sets", "#83 in Women's Eau de Parfum": "", "#123 in Beauty Gift Sets": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$95.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51sy-MKCShS.jpg", "https://m.media-amazon.com/images/I/61Mca38O93L.jpg", "https://m.media-amazon.com/images/I/614EES5hoPL.jpg", "https://m.media-amazon.com/images/I/5175tVM3b7L.jpg", "https://m.media-amazon.com/images/I/41L8hLRR+CL.jpg", "https://m.media-amazon.com/images/I/41casqX85MS.jpg", "https://m.media-amazon.com/images/I/41WmS2hcvPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Eau de Parfum", "average_rating": 4.6, "small_description": [""], "total_reviews": 7278, "total_answered_questions": 27, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B007SHO3E2/ref=twister_B08KK26CKV?_encoding=UTF8&psc=1", "value": "0.33 Fl Oz (Pack of 1)", "price_string": "$28.00", "price": 28, "image": "https://m.media-amazon.com/images/I/213C8HPp4eL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B004LE66UO/ref=twister_B08KK26CKV?_encoding=UTF8&psc=1", "value": "1.3-Fl. Oz.", "price_string": "$66.00", "price": 66, "image": "https://m.media-amazon.com/images/I/41tWMMTblnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B004LD7GJU/ref=twister_B08KK26CKV?_encoding=UTF8&psc=1", "value": "2 Fl Oz (Pack of 1)", "price_string": "$94.00", "price": 94, "image": "https://m.media-amazon.com/images/I/51Y2juPDSmL.jpg"}, {"is_selected": true, "url": null, "value": "3.38 Fl Oz (Pack of 1)", "price_string": "$95.00", "price": 95, "image": "https://m.media-amazon.com/images/I/51sy-MKCShS.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B004LCZEJK", "category": "beauty", "query": "Women's Fragrance", "page": 6, "small_description_old": ""}, {"name": "Oatly Raspberry Swirl Frozen Dessert, 1 PT", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4 x 3.9 x 3.83 inches; 11.36 Ounces", "Item model number\n \u200f": "\u200e\n 0190646630447", "UPC\n \u200f": "\u200e\n 190646630447", "Manufacturer\n \u200f": "\u200e\n Oatly", "ASIN\n \u200f": "\u200e\n B08SFVL56K", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Oatly Store", "brand_url": "https://www.amazon.com/stores/OATLY/page/9D688B56-E262-466C-AC95-B871EE02ABA4?ref_=ast_bln", "full_description": "Grocery Frozen", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/512ZsKYk7XL.jpg", "https://m.media-amazon.com/images/I/51IQnEXVkaL.jpg", "https://m.media-amazon.com/images/I/51D0kCvs7tL.jpg", "https://m.media-amazon.com/images/I/51eprAxeInL.jpg", "https://m.media-amazon.com/images/I/51TrtXHjY+L.jpg", "https://m.media-amazon.com/images/I/51kMjbWWKmL.jpg", "https://m.media-amazon.com/images/I/51HUsoDVLHL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Frozen \u203a Ice Cream & Novelties \u203a Non-Dairy Ice Cream & Novelties", "average_rating": 4.8, "small_description": ["No hydrogenated fats or high fructose corn syrup allowed in any food ", "No bleached or bromated flour "], "total_reviews": 277, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08SFVL56K", "category": "grocery", "query": "Sour Creams", "page": 73, "small_description_old": "About this item No hydrogenated fats or high fructose corn syrup allowed in any food No bleached or bromated flour"}, {"name": "Body Drench Quick Tan Instant Self-Tanner, Bronzing Mousse, Medium Dark, 4.2 oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 5 x 4 x 3 inches; 4.8 Ounces", "Item model number\n \u200f": "\u200e\n 20659", "UPC\n \u200f": "\u200e\n 616919135278 653619206594", "Manufacturer\n \u200f": "\u200e\n Body Drench", "ASIN\n \u200f": "\u200e\n B0065YIB8I", "Best Sellers Rank": "#201,633 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#287 in Body Self-Tanners", "#287 in Body Self-Tanners": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Body Drench Store", "brand_url": "https://www.amazon.com/stores/Body+Drench/page/849E4649-2681-482A-B2A0-2494B0FDE596?ref_=ast_bln", "full_description": "", "pricing": "$10.00", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31cS6gEAHZL.jpg", "https://m.media-amazon.com/images/I/51ru0BLYF+L.jpg", "https://m.media-amazon.com/images/I/51jID0r49mL.jpg", "https://m.media-amazon.com/images/I/51d4ltzxCVL.jpg", "https://m.media-amazon.com/images/I/51rTONWiGLL.jpg", "https://m.media-amazon.com/images/I/51MU+qpuTHL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Sunscreens & Tanning Products \u203a Self-Tanners \u203a Body Self-Tanners", "average_rating": 4.2, "small_description": ["SUNKISSED GLOW IN AN INSTANT: This salon-quality sunless tanning in a bottle will give you a natural-looking year-round tan without lying under the sun and exposed to harmful ultraviolet rays causing skin damage and get high risk of skin cancer. Very easy to use! Just spray into the skin, let dry and you're done! Your way to achieving that desired 'sexy tan' look without the sun! ", "SELF-TANNER FOR EVERYONE: Our sunless tanning spray is perfect for all skin types and tones even to those who have sensitive skin! It's moisturizing and tanning ingredients care for your skin while achieving that gorgeous tan look! Whether you have naturally fair or snow-white skin, Body Drench Quick Tan Bronzing Spray will help you achieve just the right color for you! What\u2019s not to love? You\u2019ll like this handy spray to bring with you on trips! ", "SPRAY AND GO: Get a perfectly sun-kissed complexion in a matter of minutes! Body Drench Quick Tan Bronzing Spray has 360 degrees nozzle for easy application. Very easy to use! All you have to do is to exfoliate your skin for smooth application, spray evenly over your body holding 10\" away, wash your hands once done, and let your skin dry before putting on clothes. For a deeper tan, use once a day until the desired perfect natural golden tan is achieved. To maintain tan, apply twice weekly. ", "ULTRA-FAST DRYING AND PROFESSIONAL FORMULA: This fast-absorbing self-tanner sprinkler from Body Drench makes it easier to get ready in a hurry. Formulated with color-correcting actives that are clinically proven to even your skin tone! It dries down on contact, so you won't need to worry about leaving part of your tan on your furniture. It's paraben-free and dermatologist-recommended, making it perfect for just about anyone with sensitive or easily-irritated complexions! ", "TOP TIER BODY CARE BRAND: Today, Body Drench is one of the most recognized names in the professional market and is distributed worldwide in over 40 countries. A favorite among salons and spa enthusiasts, these products are enjoyed by women of all ages. Body Drench believes that beauty starts with healthy skin and our commitment is to continue to produce nourishing products that will improve the way your skin looks and feels. "], "total_reviews": 204, "total_answered_questions": 5, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07NJ51R8X/ref=twister_B07Y2HC3MQ?_encoding=UTF8&psc=1", "value": "2-Pack", "price_string": "$14.95", "price": 14.95, "image": null}, {"is_selected": true, "url": null, "value": "4.2 Ounce (Pack of 1)", "price_string": "$10.00", "price": 10, "image": null}]}, "seller_id": "A3HQNF3RWD6VPQ", "seller_name": "Rigle Inc", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0065YIB8I", "category": "beauty", "query": "Body Care", "page": 194, "small_description_old": "About this item SUNKISSED GLOW IN AN INSTANT: This salon-quality sunless tanning in a bottle will give you a natural-looking year-round tan without lying under the sun and exposed to harmful ultraviolet rays causing skin damage and get high risk of skin cancer. Very easy to use! Just spray into the skin, let dry and you're done! Your way to achieving that desired 'sexy tan' look without the sun! SELF-TANNER FOR EVERYONE: Our sunless tanning spray is perfect for all skin types and tones even to those who have sensitive skin! It's moisturizing and tanning ingredients care for your skin while achieving that gorgeous tan look! Whether you have naturally fair or snow-white skin, Body Drench Quick Tan Bronzing Spray will help you achieve just the right color for you! What\u2019s not to love? You\u2019ll like this handy spray to bring with you on trips! SPRAY AND GO: Get a perfectly sun-kissed complexion in a matter of minutes! Body Drench Quick Tan Bronzing Spray has 360 degrees nozzle for easy application. Very easy to use! All you have to do is to exfoliate your skin for smooth application, spray evenly over your body holding 10\" away, wash your hands once done, and let your skin dry before putting on clothes. For a deeper tan, use once a day until the desired perfect natural golden tan is achieved. To maintain tan, apply twice weekly. ULTRA-FAST DRYING AND PROFESSIONAL FORMULA: This fast-absorbing self-tanner sprinkler from Body Drench makes it easier to get ready in a hurry. Formulated with color-correcting actives that are clinically proven to even your skin tone! It dries down on contact, so you won't need to worry about leaving part of your tan on your furniture. It's paraben-free and dermatologist-recommended, making it perfect for just about anyone with sensitive or easily-irritated complexions! TOP TIER BODY CARE BRAND: Today, Body Drench is one of the most recognized names in the professional market and is distributed worldwide in over 40 countries. A favorite among salons and spa enthusiasts, these products are enjoyed by women of all ages. Body Drench believes that beauty starts with healthy skin and our commitment is to continue to produce nourishing products that will improve the way your skin looks and feels."}, {"name": "Sound Bar,TV Bluetooth Speaker Portable Dual Loudspeakers Screen 3D Sound Effects, for TV, PC, Cell Phone, Tablets Projector", "product_information": {"Manufacturer": "CCOOL", "ASIN": "B07VHJY9KJ", "Date First Available": "July 18, 2019"}, "brand": "Brand: CCOOL", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=CCOOL", "full_description": "Connect your Bluetooth device to the sound bar to enjoy your favorite surround sound music. With a simple and easy setup, you can quickly pair your device with a sound bar and stream it from your music service, app or radio. For devices without Bluetooth, the device can be connected to the sound bar via the supplied audio cable.Input: Bluetooth, USB, RCA, fiberSpeaker: 2* full frequency + 2 * sound tubeChannel: 2.0 stereoBattery capacity: external power supply (with adapter)Working voltage: 19VOutput power: 40Wpackage:1x speaker1x adapter1x a minute and two audio lines1x instruction manual1x remote control", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/318AFAuqbqL.jpg", "https://m.media-amazon.com/images/I/31TH-Kg7OtL.jpg", "https://m.media-amazon.com/images/I/41SqiibNuKL.jpg", "https://m.media-amazon.com/images/I/511UkCHprRL.jpg", "https://m.media-amazon.com/images/I/41YTTrghq9L.jpg", "https://m.media-amazon.com/images/I/51kSnGkU4cL.jpg", "https://m.media-amazon.com/images/I/51X7LzkO0pL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Speakers \u203a Sound Bars", "average_rating": "", "small_description": ["BUILT-IN ELECTRONIC BALANCE - The treble and bass can be independently adjusted according to different customer requirements through the remote control, the maximum range is 10db ", "SMALL AND LARGE SIZE---stylish and portable design Sound Bar is suitable for any home decoration. You can taste your stereo music time anywhere with wireless Bluetooth and extra TF card files. ", "HIGH-QUALITY BLUETOOTH SPEAKERS - Superior sound quality Experience a full-body sound quality music experience, dual high performance drives and unique enhanced bass. Compatible with all Bluetooth compatible devices, easy to pair and connect to all Bluetooth-enabled laptops, tablets, media players and mobile phones. ", "EASY TO USE - Gently tap on the side of the speaker to control music playback/pause, answer calls, Swift mode (Bluetton mode, TF card mode or line assist or volume up/down. Interesting experience. Built-in long-life battery design makes it Easy to use outdoors. ", "MULTI-FUNCTION AUDIO SPEAKERS - AUX input, TF card slot, USB disk / USB flash drive, Bluetooth connection. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07VHJY9KJ", "category": "electronics", "query": "Soundbars", "page": 293, "small_description_old": "About this item BUILT-IN ELECTRONIC BALANCE - The treble and bass can be independently adjusted according to different customer requirements through the remote control, the maximum range is 10db SMALL AND LARGE SIZE---stylish and portable design Sound Bar is suitable for any home decoration. You can taste your stereo music time anywhere with wireless Bluetooth and extra TF card files. HIGH-QUALITY BLUETOOTH SPEAKERS - Superior sound quality Experience a full-body sound quality music experience, dual high performance drives and unique enhanced bass. Compatible with all Bluetooth compatible devices, easy to pair and connect to all Bluetooth-enabled laptops, tablets, media players and mobile phones. EASY TO USE - Gently tap on the side of the speaker to control music playback/pause, answer calls, Swift mode (Bluetton mode, TF card mode or line assist or volume up/down. Interesting experience. Built-in long-life battery design makes it Easy to use outdoors. MULTI-FUNCTION AUDIO SPEAKERS - AUX input, TF card slot, USB disk / USB flash drive, Bluetooth connection."}, {"name": "Bluetooth Headset for PS3", "product_information": {"ASIN": "B001PTGCD4", "Release date": "September 29, 2010", "Customer Reviews": {"ratings_count": 36, "stars": "3.3 out of 5 stars"}, "Best Sellers Rank": ["#123,276 in Video Games (See Top 100 in Video Games) #30 in PlayStation 3 Headsets"], "Pricing": "The strikethrough price is the List Price. Savings represents a discount off the List Price.", "Product Dimensions": "9.9 x 6.2 x 2.6 inches; 8.8 Ounces", "Binding": "Video Game", "Rated": "Everyone", "Item model number": "10114324", "Is Discontinued By Manufacturer": "No", "Item Weight": "8.8 ounces", "Manufacturer": "i-CON by ASD", "Date First Available": "September 29, 2010"}, "brand": "Brand: i-CON by ASD", "brand_url": "https://www.amazon.com/i-CON-by-ASD/b/ref=bl_dp_s_web_3445121011?ie=UTF8&node=3445121011&field-lbr_brands_browse-bin=i-CON+by+ASD", "full_description": "The Bluetooth headset is the perfect accessory for Playstation 3 gamers who like to challenge players from all over the world. With the Bluetooth Headset, you can trash-talk opponents, make new friends in the games lobby and organize co-operative games. This device is also a convenient way to make hand-free calls using a Bluetooth compatible device. The headset features a rubberized neckband, adjustable boom and a comfortable over-the-ear design that can be customized to suit your style. The noise reducing microphone is designed to filter our ambient sound, which is especially useful in loud environments. Plus, the Bluetooth headset allows you to talk up to 9 hours on a single charge. Get into the game! For more information on i-CON by ASD products, please visit www(dot)ICON by ASD(dot)com.", "pricing": "", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31BKtogVI9L.jpg", "https://m.media-amazon.com/images/I/51h0Pw+5l+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a Legacy Systems \u203a PlayStation Systems \u203a PlayStation 3 \u203a Accessories \u203a Headsets", "average_rating": 3.3, "small_description": ["Bluetooth Wireless Headset for PS3 ", "Rubberized neckband, adjustable boom ", "Comfortable over-the-ear design ", "Noise reducing microphone filters ambient sound ", "Talk up to 9 hours on a single charge "], "total_reviews": 36, "total_answered_questions": "", "model": "10114324", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B001PTGCD4", "category": "electronics", "query": "Bluetooth Headsets", "page": 78, "small_description_old": "Bluetooth Wireless Headset for PS3 Rubberized neckband, adjustable boom Comfortable over-the-ear design Noise reducing microphone filters ambient sound Talk up to 9 hours on a single charge"}, {"name": "HCDZ Replacement Remote Control for LG AKB73655847 AKB73655848 AGF76578736 AKB73655858 LED LCD HDTV TV", "product_information": {"Package Dimensions": "5.91 x 3.94 x 1.18 inches", "Item Weight": "3.52 ounces", "ASIN": "B07RKLL1ZK", "Customer Reviews": {"ratings_count": 9, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#16,209 in Remote Controls (Electronics)"], "Date First Available": "May 5, 2019", "Manufacturer": "HCDZ"}, "brand": "Visit the HCDZ Store", "brand_url": "https://www.amazon.com/stores/HCDZ/page/163068EF-877D-4664-95AB-9923A33DF3C7?ref_=ast_bln", "full_description": "The remote is a replacement for LG television ,fits for various models , if you aren't sure , please let us know What's in the package: 1 X remote control , no battery and instructions includedit will work straight away when new batteries inserted", "pricing": "$17.88", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31slm3Bj8GL.jpg", "https://m.media-amazon.com/images/I/21J4QQ23XqL.jpg", "https://m.media-amazon.com/images/I/31yH-raynEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": 5, "small_description": ["New replacement IR remote control, only support LG LCD LED HD TV ", "No batteries and instructions included ", "No programming needed ", "90 days warranty "], "total_reviews": 9, "total_answered_questions": "", "customization_options": "", "seller_id": "AVXQ9J0G0VC0N", "seller_name": "Sure-Win", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07RKLL1ZK", "category": "electronics", "query": "Remotes", "page": 376, "small_description_old": "About this item\n \nNew replacement IR remote control, only support LG LCD LED HD TV No batteries and instructions included No programming needed 90 days warranty"}, {"name": "Set of 2 Mesh Laundry Bags Mini Pineapple And Starfish-1 Medium & 1 Small Bags Laundry,Blouse, Hosiery, Stocking, Underwear, Bra Lingerie, Travel Laundry Bag(8rp9i)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 24 x 20 x 0.2 inches", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n May 2, 2021", "Manufacturer\n \u200f": "\u200e\n Bolaz", "ASIN\n \u200f": "\u200e\n B093YT83QR", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Bolaz", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Bolaz", "full_description": "\u3010Printing\u3011One-sided full printing [Material] Polyester [Size] Two packs, one large and one small. M: 20x24in/50.8x60.96cm; S: 20x16in/50.8x40.46cm [Packing size] OPP bag, 24x28x1cm \u3010Product description\u3011Using polyester fabric, dense mesh, high-speed rotation in the washing machine, durable and avoid to be thrown; plastic pull and lock positions are sewn with protective elastic bands to make clothing avoid to be scratched and to be thrown out by the zipper . The use of laundry bags protects clothes to avoid entanglement, reduces deformation and wear, and protects clothes with metal zippers or buttons from damaging the inner wall of the washing machine. [Applicable scenarios] Washing machine, home storage, luggage storage, etc.", "pricing": "$15.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/51++o5N5NMS.jpg", "https://m.media-amazon.com/images/I/51XXbkRsgzS.jpg", "https://m.media-amazon.com/images/I/51jLKqczWvS.jpg", "https://m.media-amazon.com/images/I/51VYEY93LnS.jpg", "https://m.media-amazon.com/images/I/51erntFaH2S.jpg", "https://m.media-amazon.com/images/I/612cvZXMRSS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Accessories \u203a Wallets, Card Cases & Money Organizers \u203a Wallets", "average_rating": "", "small_description": ["Fiber ", "Imported ", "Set of 2 Mesh Laundry Bags-1 Medium & 1 Small for Laundry,Blouse, Hosiery, Stocking, Underwear, Bra and Lingerie, Travel Laundry Bag. ", "Durable and breathable polyester fibre material, healthy and clean. These Lingerie Bags for Laundry perform perfectly every time protecting your delicates, and keeping them like new. Use in the Dryer too. ", "You & your clothes will LOVE the premium, Strong mesh protecting your finest garments, it is the first choice to protect delicates, extend the life of lingerie, hosiery, intimates and more. ", "DELICATES LAUNDRY BAGS KEEP COLORS SEPARATE & SAFE ", "Multipurpose - Travel Organizer Bag: Ideal for packaging clothing. When you arecamping and traveling with friends, you can easily separate yours and yourfriends' clothes with travel laundry bag. When you share a washing machine with your roommate, you can easily identify your clothes with our DIY Printed laundry bags. It can be used for storage as well to sort your clothes in anorganised way in wardrobe. It is also a great helper for house moving. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1KITK4A5218C8", "seller_name": "SKYDA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B093YT83QR", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 203, "small_description_old": "About this item Fiber Imported Set of 2 Mesh Laundry Bags-1 Medium & 1 Small for Laundry,Blouse, Hosiery, Stocking, Underwear, Bra and Lingerie, Travel Laundry Bag. Durable and breathable polyester fibre material, healthy and clean. These Lingerie Bags for Laundry perform perfectly every time protecting your delicates, and keeping them like new. Use in the Dryer too. You & your clothes will LOVE the premium, Strong mesh protecting your finest garments, it is the first choice to protect delicates, extend the life of lingerie, hosiery, intimates and more. DELICATES LAUNDRY BAGS KEEP COLORS SEPARATE & SAFE Multipurpose - Travel Organizer Bag: Ideal for packaging clothing. When you arecamping and traveling with friends, you can easily separate yours and yourfriends' clothes with travel laundry bag. When you share a washing machine with your roommate, you can easily identify your clothes with our DIY Printed laundry bags. It can be used for storage as well to sort your clothes in anorganised way in wardrobe. It is also a great helper for house moving."}, {"name": "Rexona Womans Motion Sense Invisible Pure Deodorant Stick 40ml / 1.35 Oz Travel Size (Pack of 6)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 7 x 4 x 2 inches; 1.1 Pounds", "Date First Available\n \u200f": "\u200e\n December 16, 2016", "Manufacturer\n \u200f": "\u200e\n Rexona", "ASIN\n \u200f": "\u200e\n B01N1T77OM", "Best Sellers Rank": "#458,125 in Health & Household (See Top 100 in Health & Household)#2,410 in Antiperspirant Deodorant", "#2,410 in Antiperspirant Deodorant": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Rexona", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Rexona", "full_description": "REXONA WOMEN MotionSense INVISIBLE PURE 48h ANTI-PERSPIRANT SOLID STICK", "pricing": "$33.00", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51d0b74YbML.jpg", "https://m.media-amazon.com/images/I/31FV7YARjQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Antiperspirant Deodorant", "average_rating": 4.5, "small_description": ["48-hour odor protection and long-lasting scents ", "MotionSense INVISIBLE Pure 48h ", "Invisible Solid goes on dry and stays dry ", "ANTI-PERSPIRANT SOLID STICK 40 ml "], "total_reviews": 7, "total_answered_questions": "", "customization_options": "", "seller_id": "A2C6P53AQF6863", "seller_name": "Dialka", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01N1T77OM", "category": "beauty", "query": "Deodorants & Antiperspirants", "page": 81, "small_description_old": "About this item 48-hour odor protection and long-lasting scents MotionSense INVISIBLE Pure 48h Invisible Solid goes on dry and stays dry ANTI-PERSPIRANT SOLID STICK 40 ml"}, {"name": "Corner Floor Lamp, Smart RBG Floor Lamp with App Control, Timer, Magiacous Music Sync Modern Floor Lamp, Full\u00a0Spectrum Color Changing Standing Lamp, for Living Room, Bedroom, Game, Party\uff0cReading", "product_information": {"Brand": "\u200eMagiacous", "Manufacturer": "\u200eMagiacous", "Item Weight": "\u200e3.74 pounds", "Product Dimensions": "\u200e7.08 x 7.08 x 62.99 inches", "Assembled Height": "\u200e62.99 inches", "Assembled Length": "\u200e7.08 inches", "Assembled Width": "\u200e7.08 inches", "Style": "\u200eModern", "Color": "\u200eBlack", "Shape": "\u200eOval", "Finish Types": "\u200eMetallic", "Voltage": "\u200e110 Volts (AC)", "Special Features": "\u200eMultiple Preset Lighting Modes, DIY Mode, Adjustable Height, App Control+Button Control, Dimmable RGB Light, Auto-off Timer, Music Sync Mode", "Shade Color": "\u200eBlack", "Light Direction": "\u200eAdjustable", "Power Source": "\u200eCorded Electric", "Switch Style": "\u200eAPP", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Type of Bulb": "\u200eLED", "Wattage": "\u200e12 watt_hours", "Bulb Features": "\u200eDimmable", "ASIN": "B09GBF12CY", "Customer Reviews": {"ratings_count": 42, "stars": "3.9 out of 5 stars"}, "Best Sellers Rank": ["#103,797 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #700 in Floor Lamps"], "Date First Available": "September 15, 2021"}, "brand": "Brand: Magiacous", "brand_url": "https://www.amazon.com/Magiacous/b/ref=bl_dp_s_web_23687045011?ie=UTF8&node=23687045011&field-lbr_brands_browse-bin=Magiacous", "full_description": "", "pricing": "$69.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31qod3Efb8L.jpg", "https://m.media-amazon.com/images/I/412AackJAzL.jpg", "https://m.media-amazon.com/images/I/41CVrxiOhnL.jpg", "https://m.media-amazon.com/images/I/41jvLnFmzXL.jpg", "https://m.media-amazon.com/images/I/41bDMvN-5mL.jpg", "https://m.media-amazon.com/images/I/31Qn3zRx-CL.jpg", "https://m.media-amazon.com/images/I/416f0VKMGsL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Lamps & Shades \u203a Floor Lamps", "average_rating": 3.9, "small_description": ["Colorful Corner Floor Lamp: RGB floor lamp with 16 million light colors, preset 7 classic modes/ 9 dynamic modes/ 6 fixed modes/ 4 music rhythm modes. Abundant lighting effects suit multiple scenes: living room, bedroom, study, dining room, kitchen, children's room, game room, etc. ", "Be Your Own Colorist with DIY: Decorate the room with your ideas, choose your favorite color combination from the color library, adjust the brightness, speed, and light effect of this corner floor lamp. Design the color-changing lamp into the daylight effect, rainbow effect, play your unlimited creativity ", "Sync Your Music: Standing floor lamp automatically synchronizes with your music or TV/PC sound via the built-in mic. Choose from 4 music modes for the pulsating light effect and enjoy a house concert, karaoke night, or party. Vertical mood lighting creates the ideal atmosphere for a more interesting living space ", "Free Control of Light: Smart APP control turns your phone into a portable remote control, which can adjust the color, brightness, speed, and light effect of this floor lamp more conveniently within 30 meters. The timer function can set the light from 1 minute to 24 hours between any length of time automatically off ", "Simple But Not Simple: A 63\u201d high corner floor lamp can be easily assembled in 2 minute with the just presses. Taking up little space but decorating the entire room. Increase or decrease the 4 detachable lamp posts can be changed to 31.88 inches/49.21 inches/63 inches 3 different heights. The stable round base will not fall in either direction "], "total_reviews": 42, "total_answered_questions": 14, "customization_options": "", "seller_id": "A1LQMDDV8CL36B", "seller_name": "Drtize-US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09GBF12CY", "category": "garden", "query": "Floor lamps", "page": 11, "small_description_old": "About this item Colorful Corner Floor Lamp: RGB floor lamp with 16 million light colors, preset 7 classic modes/ 9 dynamic modes/ 6 fixed modes/ 4 music rhythm modes. Abundant lighting effects suit multiple scenes: living room, bedroom, study, dining room, kitchen, children's room, game room, etc. Be Your Own Colorist with DIY: Decorate the room with your ideas, choose your favorite color combination from the color library, adjust the brightness, speed, and light effect of this corner floor lamp. Design the color-changing lamp into the daylight effect, rainbow effect, play your unlimited creativity Sync Your Music: Standing floor lamp automatically synchronizes with your music or TV/PC sound via the built-in mic. Choose from 4 music modes for the pulsating light effect and enjoy a house concert, karaoke night, or party. Vertical mood lighting creates the ideal atmosphere for a more interesting living space Free Control of Light: Smart APP control turns your phone into a portable remote control, which can adjust the color, brightness, speed, and light effect of this floor lamp more conveniently within 30 meters. The timer function can set the light from 1 minute to 24 hours between any length of time automatically off Simple But Not Simple: A 63\u201d high corner floor lamp can be easily assembled in 2 minute with the just presses. Taking up little space but decorating the entire room. Increase or decrease the 4 detachable lamp posts can be changed to 31.88 inches/49.21 inches/63 inches 3 different heights. The stable round base will not fall in either direction \n \u203a See more product details"}, {"name": "\u30102+2 Pack\u3011 for Samsung Galaxy A12 5G \u30102pcs Screen Protector + 2pcs Camera Lens Protector\u3011 Tempered Glass Film [0.3mm Thickness] [9H Hardness HD Clear] [Bubble Free] [Case Friendly] [Anti-Scratch] [Shatterproof ] [Anti-Fingerprint]", "product_information": {"Package Dimensions": "7.09 x 4.02 x 0.39 inches", "Item Weight": "1.76 ounces", "ASIN": "B095PF5BXT", "Customer Reviews": {"ratings_count": 50, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#49,283 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #4,611 in Cell Phone Screen Protectors"], "Special Features": "9H Surface Hardness, Scratch Resistant", "Manufacturer": "SJTM", "Date First Available": "May 24, 2021"}, "brand": "Visit the seninhi Store", "brand_url": "https://www.amazon.com/stores/Seninhi/page/93DB1CFA-257B-4C58-A5CE-A7B7AEB8239F?ref_=ast_bln", "full_description": "", "pricing": "$6.50", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51eXjDS6SxL.jpg", "https://m.media-amazon.com/images/I/41GxTAMl1oL.jpg", "https://m.media-amazon.com/images/I/51jfsckWLDL.jpg", "https://m.media-amazon.com/images/I/41GhUlUsX6L.jpg", "https://m.media-amazon.com/images/I/51oOdXstSQS.jpg", "https://m.media-amazon.com/images/I/41ITdONDI3L.jpg", "https://m.media-amazon.com/images/I/51ps-wEdMhL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Maintenance, Upkeep & Repairs \u203a Screen Protectors", "average_rating": 4.4, "small_description": ["\u3010Compatible Model\u30112 pack screen protector and 2 pack camera lens protector for galaxy a12 [Not for any other device],dual protection the phone. ", "\u3010Phone Screen Protector\u3011\uff1aHighly durable Resistant Tempered Glass Screen Protector can Effectively Protect Your galaxy a12 from Unwanted Scuffs and Scratches by Keys and Some Other Hard Substances. High touch sensitivity gives \"True Touch\" feel. 99% HD Clear screen protector with High definition transparency film and maximum resolution which keeps the bright and colorful image quality. ", "\u3010Camera Lens Screen Protector\u3011:The camera lens protector for galaxy a12 designed according to original size,made of ultra-thin tempered glass to provide lens protection without affecting photos. Does not affect the flash, high-definition screen, the light transmittance reaches 99.99%. New Version adhesive won't easy to fall. ", "\u3010Easy to install & anti-fingerprints\u3011\uff1aSimple installation, no trouble, no bubbles. Anti-fingerprint, Highly durable and scratch resistant surface that is easier to clean and protect against dirt, dust and sweat effectively. ", "\u3010Satisfied With the Guarantee\u3011: If the product has any quality problems within 2 months after received, please contact me and I will give you a satisfactory solution 24 hours before. "], "total_reviews": 50, "total_answered_questions": "", "customization_options": "", "seller_id": "A2K8QT688XJL3O", "seller_name": "qianfuren32", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B095PF5BXT", "category": "electronics", "query": "Lenses", "page": 183, "small_description_old": "About this item \u3010Compatible Model\u30112 pack screen protector and 2 pack camera lens protector for galaxy a12 [Not for any other device],dual protection the phone. \u3010Phone Screen Protector\u3011\uff1aHighly durable Resistant Tempered Glass Screen Protector can Effectively Protect Your galaxy a12 from Unwanted Scuffs and Scratches by Keys and Some Other Hard Substances. High touch sensitivity gives \"True Touch\" feel. 99% HD Clear screen protector with High definition transparency film and maximum resolution which keeps the bright and colorful image quality. \u3010Camera Lens Screen Protector\u3011:The camera lens protector for galaxy a12 designed according to original size,made of ultra-thin tempered glass to provide lens protection without affecting photos. Does not affect the flash, high-definition screen, the light transmittance reaches 99.99%. New Version adhesive won't easy to fall. \u3010Easy to install & anti-fingerprints\u3011\uff1aSimple installation, no trouble, no bubbles. Anti-fingerprint, Highly durable and scratch resistant surface that is easier to clean and protect against dirt, dust and sweat effectively. \u3010Satisfied With the Guarantee\u3011: If the product has any quality problems within 2 months after received, please contact me and I will give you a satisfactory solution 24 hours before."}, {"name": "Vlogging Camera, 4K Digital Camera for YouTube with WiFi, 16X Digital Zoom 0221-bs291", "product_information": {"ASIN": "B09SZ4RMNY", "Date First Available": "February 21, 2022", "Manufacturer": "SuperiorTek"}, "brand": "Brand: SuperiorTek", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SuperiorTek", "full_description": "Vlogging Camera, 4K Digital Camera for YouTube with WiFi, 16X Digital Zoom 0221-bs291", "pricing": "$150.00", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/21v3xQP+BKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a Point & Shoot Digital Cameras", "average_rating": "", "small_description": "designed for vlog user dhdh291 gift for your kids dhfkje292 long lasting material uf75147", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A26P136NFMFQF7", "seller_name": "Spring05", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09SZ4RMNY", "category": "electronics", "query": "Digital Cameras", "page": 221, "small_description_old": "designed for vlog user dhdh291 gift for your kids dhfkje292 long lasting material uf75147"}, {"name": "Clif Bar Builder's Bar, Variety Pack, 9 Chocolate and 9 Chocolate Peanut Butter, 2.4-Ounce Bars, 18 Count", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.7 x 6.2 x 2.7 inches; 3 Pounds", "Date First Available\n \u200f": "\u200e\n March 4, 2008", "Manufacturer\n \u200f": "\u200e\n Clif Bar, Inc.", "ASIN\n \u200f": "\u200e\n B0015DH8AQ", "Best Sellers Rank": "#473,284 in Health & Household (See Top 100 in Health & Household)#314 in Sports Nutrition Food Bars", "#314 in Sports Nutrition Food Bars": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Clif Bar Store", "brand_url": "https://www.amazon.com/stores/ClifBarCompany/page/5DF27F05-0431-4691-B950-F0560079CBE6?ref_=ast_bln", "full_description": "A healthy baked snack, full of nutrient-rich ingredients like whole grains, fiber, and Omega-3's from flax. All-natural and 95 percent organic", "pricing": "$31.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51pnThF6FgL.jpg", "https://m.media-amazon.com/images/I/51ZCYtBRJbL.jpg", "https://m.media-amazon.com/images/I/51wnNBL4rSL.jpg", "https://m.media-amazon.com/images/I/51gRlPHnTrL.jpg", "https://m.media-amazon.com/images/I/51jwVqjJLfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Health & Household \u203a Diet & Sports Nutrition \u203a Nutrition Bars & Drinks \u203a Nutrition Bars \u203a Food Bars", "average_rating": 3.7, "small_description": ["9g of Whole Grains ", "Good Source of Fiber (3-4g) ", "Women Specific Nutrition (Folic Acid, Calcium, Iron, B-0Vitamins) ", "Good Source of Antioxidants (A, C, & E) ", "20g of Protein "], "total_reviews": 111, "total_answered_questions": "", "customization_options": "", "seller_id": "A1LIC5VPVR55VZ", "seller_name": "Daily Market", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0015DH8AQ", "category": "grocery", "query": "Granola & Nutrition Bars", "page": 67, "small_description_old": "About this item 9g of Whole Grains Good Source of Fiber (3-4g) Women Specific Nutrition (Folic Acid, Calcium, Iron, B-0Vitamins) Good Source of Antioxidants (A, C, & E) 20g of Protein"}, {"name": "Smart Watch Tough/Outdoor 2022 for Men 1.69'' Full Touch Screen for Android/iOS iPhone,20 Sports Modes ,SpO2 Pedometer/Blood Pressure/Text/Sleep Monitor,Fitness Tracker,40-Days Standby,3ATM Waterproof,Dustproof", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 1.97 x 1.69 x 0.5 inches; 4.66 Ounces", "Item model number\n \u200f": "\u200e\n C16", "Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n December 14, 2021", "Manufacturer\n \u200f": "\u200e\n Shenzhen Xindezheng Technology Co., LTD", "ASIN\n \u200f": "\u200e\n B09NLX2YXZ", "Best Sellers Rank": "#562,474 in Electronics (See Top 100 in Electronics)#10,481 in Smartwatches", "#10,481 in Smartwatches": ""}, "brand": "Brand: Greyfish", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Greyfish", "full_description": "Points 1. nRF52840+128M large memory\uff0cbluetooth5.0 2. Pioneer dynamic dial, support 4+1+1 dials 3. Tiled cool UI, supports drag and drop operation 4.Large memory, rich UI scenes 5. Support 20 sports modes+newly designed dynamic sports icons 6. 1.69inch HD screen\uff0cscreen resolution280*320 7. HRS3603Low-consumption high-definition heart rate monitor, more accurate detection 8. 350mA long battery endurance, reduce the trouble of charging at any time 9.3ATM Deep waterproof level, suitable for more environments", "pricing": "$129.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41ObTm8BWRL.jpg", "https://m.media-amazon.com/images/I/310ruaP5K6L.jpg", "https://m.media-amazon.com/images/I/21662RWX4-L.jpg", "https://m.media-amazon.com/images/I/515Tp6Q3MwL.jpg", "https://m.media-amazon.com/images/I/51-7QDDAz5L.jpg", "https://m.media-amazon.com/images/I/615WnG2nADS.jpg", "https://m.media-amazon.com/images/I/51thChECycL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Wearable Technology \u203a Smartwatches", "average_rating": "", "small_description": ["\u2726Suitable for outdoor harsh environment ", "\u27261.69 \"HD large screen ", "\u2726128MB large memory, Bluetooth 5.0 protocol ", "\u2726350mA large battery life,Standby 40 days ", "\u272620 Sports Modes ", "\u2726Cool UI, support drag and drop operation "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09NLWD3M5/ref=twister_B09NLX2YXZ?_encoding=UTF8&psc=1", "value": "Black-Black", "price_string": "$129.00", "price": 129, "image": "https://m.media-amazon.com/images/I/41+NMOawgBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NLXPBKR/ref=twister_B09NLX2YXZ?_encoding=UTF8&psc=1", "value": "Black-Green", "price_string": "$129.00", "price": 129, "image": "https://m.media-amazon.com/images/I/41XPtQKGUqL.jpg"}, {"is_selected": true, "url": null, "value": "Gold-Black", "price_string": "$129.00", "price": 129, "image": "https://m.media-amazon.com/images/I/41ObTm8BWRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NLWN5BP/ref=twister_B09NLX2YXZ?_encoding=UTF8&psc=1", "value": "Gold-Green", "price_string": "$129.00", "price": 129, "image": "https://m.media-amazon.com/images/I/41A1fvxUINL.jpg"}]}, "seller_id": "A1JSTX1IAD1PS2", "seller_name": "GREYFISH", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NLX1BC4", "category": "electronics", "query": "Wearable Technology", "page": 68, "small_description_old": "\u2726Suitable for outdoor harsh environment \u27261.69 \"HD large screen \u2726128MB large memory, Bluetooth 5.0 protocol \u2726350mA large battery life,Standby 40 days \u272620 Sports Modes \u2726Cool UI, support drag and drop operation"}, {"name": "Full Loft Bed with Desk and Storage Shelves, Wood Loft Bed with Ladder, for Kids, Teens, Adults (Espresso)", "product_information": {"Product Dimensions": "76 x 57.8 x 68.9 inches", "ASIN": "B08XX6QRK4", "Customer Reviews": {"ratings_count": null, "stars": "2.0 out of 5 stars"}, "Best Sellers Rank": ["#851,070 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,653 in Beds"], "Date First Available": "March 3, 2021"}, "brand": "Brand: Harper & Bright Designs", "brand_url": "https://www.amazon.com/Harper-Bright-Designs/b/ref=bl_dp_s_web_20695195011?ie=UTF8&node=20695195011&field-lbr_brands_browse-bin=Harper+%26+Bright+Designs", "full_description": "This traditional full size loft bed is constructed of high-quality solid rubber wood and MDF. Featuring an integrated desk and sturdy shelves, this bed is built with a comfortable sleeping space with a spacious and useful workstation underneath. The shelves can serve as a ladder as well, providing an easy access to the bed. Coming with support slats and stable guardrails, this loft bed can guarantee you a comfortable and safe experience. Definitely a great addition to your room. DescriptionMaterial: MDF and rubber woodColour: Espresso Numbers of slat:15 Function: Loft bed Decoration: With desk and shelves Numbers of package:2 Spring box: No need Assembly required: Yes DimensionsBed: 57.8\u2019\u2019 x 76\u2019\u2019 Total height: 68.9\u2019\u2019 Weight capacity: 450lb", "pricing": "$549.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51MhOafQx1L.jpg", "https://m.media-amazon.com/images/I/51gWxWQh4RL.jpg", "https://m.media-amazon.com/images/I/51XwjzYWFNL.jpg", "https://m.media-amazon.com/images/I/415+lT98SlL.jpg", "https://m.media-amazon.com/images/I/41LF84XqspL.jpg", "https://m.media-amazon.com/images/I/41So3+zHt0L.jpg", "https://m.media-amazon.com/images/I/41IpPDHcmrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Beds", "average_rating": 2, "small_description": ["High Quality Loft Bed: The full size loft bed Crafted of Solid Rubber Wooden and MDF, the bed can stand the test of time, bed weight capability: 450lb, the loft bed in a clean painted finish, this bed strikes a clean-lined silhouette with a horizontal slatted headboard and footboard, matching guard rail. The raised base creates a cozy loft space for storage, work or play ", "High Security for kids: This loft bed frame adopt Solid Rubber Wooden Construction, make the bed is firm and does not shake. that loft bed includes 16.5\u201dfull-length guardrails, an integrated ladder, and 15 secured wood slats to ensure that you or your child will sleep in complete security and stability. ", "Multifunctional Design: The loft bed includes a desk and four shelves integrated to the wooden frame and has 52.4\u201d of under-bed clearance. This loft bed with a spacious and useful workstation underneath, the loft bed helps to store books, display decorations, or to place a laptop. This wood loft bed with an built-in ladders for a more convenient choice ", "Loft Bed Dimensions: 57.8\u2019\u2019 x 76\u2019\u2019,Total height: 68.9\u2019\u2019 .Standard full size loft bed frame fits standard full size mattress(mattress not included), no box spring or foundation needed ", "Easy to Assemble Loft Bed : Each order comes with a clear and detailed assembly instruction guide and all necessary tools are provided. NOTE: This item comes in 2 boxes and may not be delivered at the same time. Please wait patiently or contact us freely if you only receive part of them, our experienced customer service team will response in 24 hour "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A1A6C3E32PB46N", "seller_name": "Orien Life", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08XX6QRK4", "category": "garden", "query": "Beds", "page": 337, "small_description_old": "About this item\n \nHigh Quality Loft Bed: The full size loft bed Crafted of Solid Rubber Wooden and MDF, the bed can stand the test of time, bed weight capability: 450lb, the loft bed in a clean painted finish, this bed strikes a clean-lined silhouette with a horizontal slatted headboard and footboard, matching guard rail. The raised base creates a cozy loft space for storage, work or play High Security for kids: This loft bed frame adopt Solid Rubber Wooden Construction, make the bed is firm and does not shake. that loft bed includes 16.5\u201dfull-length guardrails, an integrated ladder, and 15 secured wood slats to ensure that you or your child will sleep in complete security and stability. Multifunctional Design: The loft bed includes a desk and four shelves integrated to the wooden frame and has 52.4\u201d of under-bed clearance. This loft bed with a spacious and useful workstation underneath, the loft bed helps to store books, display decorations, or to place a laptop. This wood loft bed with an built-in ladders for a more convenient choice Loft Bed Dimensions: 57.8\u2019\u2019 x 76\u2019\u2019,Total height: 68.9\u2019\u2019 .Standard full size loft bed frame fits standard full size mattress(mattress not included), no box spring or foundation needed Easy to Assemble Loft Bed : Each order comes with a clear and detailed assembly instruction guide and all necessary tools are provided. NOTE: This item comes in 2 boxes and may not be delivered at the same time. Please wait patiently or contact us freely if you only receive part of them, our experienced customer service team will response in 24 hour"}, {"name": "BDEUS Folding Mattress Folding Sofa 4\" Breathable High-Density Foam Mattress Tppper, Portable Guest Bed with Removable&Washable Cover, 75 x 25 inches", "product_information": {"Package Dimensions": "27.8 x 11.25 x 11.1 inches", "Item Weight": "11.18 pounds", "Manufacturer": "BDEUS", "ASIN": "B08R9QHFPC", "Customer Reviews": {"ratings_count": 81, "stars": "3.9 out of 5 stars"}, "Best Sellers Rank": ["#66,753 in Home & Kitchen (See Top 100 in Home & Kitchen) #113 in Mattresses Toppers #179 in Mattresses"], "Date First Available": "December 25, 2020"}, "brand": "Brand: BDEUS", "brand_url": "https://www.amazon.com/BDEUS/b/ref=bl_dp_s_web_23729345011?ie=UTF8&node=23729345011&field-lbr_brands_browse-bin=BDEUS", "full_description": "", "pricing": "$99.99", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41af4I9M6iL.jpg", "https://m.media-amazon.com/images/I/41NrMFeGmUL.jpg", "https://m.media-amazon.com/images/I/41NaTq7T8kL.jpg", "https://m.media-amazon.com/images/I/61-O2Za4ooL.jpg", "https://m.media-amazon.com/images/I/51466PK-OSL.jpg", "https://m.media-amazon.com/images/I/51SV2aSJyDL.jpg", "https://m.media-amazon.com/images/I/51jzAzZJbRL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Mattresses & Box Springs \u203a Mattresses", "average_rating": 3.9, "small_description": ["\u3010Well Selected Materials\u3011 Featuring 4\u201d high density thick sponge, this foldable mattress has good resilience and can support your body perfectly. The outer cover is made of breathable mesh fabric and the inner cover is made of fireproof glass fiber cloth, which ensure both comfortable and durable. ", "\u30103 in 1 Multifunctional Design\u3011 Our convertible folding mattress can be changed freely among sofa, lounge chair and bed to satisfy your different needs. This versatile mattress will be a perfect solution for small house with limited space which is great for Video gaming, reading, camping and sleeping. ", "\u3010Portable & Foldable Design\u3011 This sponge mattress can be folded into a compact size when not in use for space-saving. Simply slip the included carrying case over the portable, tri-fold mattress and zip it up to keep it neat and secure while you travel. It is great for your guests, gaming with kids, travelling, camping, and YOGA in any room, mobile home, tent or car. ", "\u3010Easy to Clean and Maintain\u3011Coming with the smooth zipper which is covered with a wrapping cloth, the cover of our foldable sponge mattress can be quickly removed for easy washing. Plus, both cover and sponge materials are well selected for long time use and there is no need for tedious maintenance at ordinary times. ", "\u3010BUY WITH CONFIDENCE\u3011 BDEUS fold mattress is consistent with the high standard of quality. We provide an honest 30-days money-back return policy. Please allow up to 72 hours for the mattress to fully expand. If you have any questions at all, do not hesitate to contact us. "], "total_reviews": 81, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08R9RKTY1/ref=twister_B08TMCTQ1K?_encoding=UTF8&psc=1", "value": "Twin", "price_string": "$119.99", "price": 119.99, "image": null}, {"is_selected": true, "url": null, "value": "Small Single", "price_string": "$99.99", "price": 99.99, "image": null}]}, "seller_id": "A2TXI9NC3C1XQI", "seller_name": "BDEUS", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B08R9QHFPC", "category": "garden", "query": "Mattresses", "page": 103, "small_description_old": "About this item\n \n\u3010Well Selected Materials\u3011 Featuring 4\u201d high density thick sponge, this foldable mattress has good resilience and can support your body perfectly. The outer cover is made of breathable mesh fabric and the inner cover is made of fireproof glass fiber cloth, which ensure both comfortable and durable. \u30103 in 1 Multifunctional Design\u3011 Our convertible folding mattress can be changed freely among sofa, lounge chair and bed to satisfy your different needs. This versatile mattress will be a perfect solution for small house with limited space which is great for Video gaming, reading, camping and sleeping. \u3010Portable & Foldable Design\u3011 This sponge mattress can be folded into a compact size when not in use for space-saving. Simply slip the included carrying case over the portable, tri-fold mattress and zip it up to keep it neat and secure while you travel. It is great for your guests, gaming with kids, travelling, camping, and YOGA in any room, mobile home, tent or car. \u3010Easy to Clean and Maintain\u3011Coming with the smooth zipper which is covered with a wrapping cloth, the cover of our foldable sponge mattress can be quickly removed for easy washing. Plus, both cover and sponge materials are well selected for long time use and there is no need for tedious maintenance at ordinary times. \u3010BUY WITH CONFIDENCE\u3011 BDEUS fold mattress is consistent with the high standard of quality. We provide an honest 30-days money-back return policy. Please allow up to 72 hours for the mattress to fully expand. If you have any questions at all, do not hesitate to contact us."}, {"name": "VR Headset Homido V2 for iPhone and Android", "product_information": {"Product Dimensions": "21.06 x 21.46 x 16.73 inches", "Item Weight": "14.1 ounces", "ASIN": "B01LZWDNX6", "Item model number": "HOMIDOV2", "Batteries": "2 AA batteries required.", "Customer Reviews": {"ratings_count": 379, "stars": "3.5 out of 5 stars"}, "Best Sellers Rank": ["#52,510 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #281 in Cell Phone Virtual Reality (VR) Headsets"], "Is Discontinued By Manufacturer": "No", "OS": "Android", "Other display features": "Wireless", "Manufacturer": "Homido", "Date First Available": "September 23, 2016"}, "brand": "Visit the homido Store", "brand_url": "https://www.amazon.com/stores/Homido/page/CEB01AEC-D6E1-4C5B-8682-D0F628A6DD95?ref_=ast_bln", "full_description": "Product size: 18Lx10Wx12Hcm 421g How is Homido USED? Watch a 3D film The film must be in Side-By-Side (SBS) format.You can download 3D SBS films from the Web and watch them on your phone using your normal video player. Or by streaming them from Youtube for example (search:\u201d side by side 3D) Watch a standard film Iphone: use\u201dHomido Player\u201d. Download from Google Play. Watch 360 degree videos Iphone: use Homido Player. Android: use \u201cKolor Eyes -360 degree video player\u201d, or \u201cVR player\u201d. Download from Google Play. You can also watch your own 360 degree videos or download them from the internet. Playing games Andriod/Iphone: use \u201cHomido Center\u201d. Download from Google Play / App Store. Homido Center will give you a list of all Homido=compatible applications. It can also save all Homido apps in a single location once they have seen installed. Homido Center will be updated every Friday. ACCESSORIES 1 pair of lenses 1 soft carrying case 1 strap 2 contact foam 1 cleaning cloth 1 user manual", "pricing": "$54.99", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41ZUQP92K1L.jpg", "https://m.media-amazon.com/images/I/41DMD+OVrNL.jpg", "https://m.media-amazon.com/images/I/31k9xz9kdiL.jpg", "https://m.media-amazon.com/images/I/41hAyIJK0iL.jpg", "https://m.media-amazon.com/images/I/41pYo4+ngbL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Virtual Reality (VR) Headsets", "average_rating": 3.5, "small_description": ["Wide Compatibility :\u00a0Compatibly Fits for All smartphones' screen size between 4 to 5.7 inch such as Samsung Galaxy Note 5/4/, Galaxy S7 Edge/Galaxy S6 S5 S4; Apple iPhone 7 7s 7 Plus 6s 6 Plus 5c 5s; LG/Sony Xperia/Huawei/Nexus/ASUS/HTC etc. ( The max length of smart phone is 159.6mm and max width is 79.3mm) ", "Adjustable pupil distance and object distance: To satisfy different groups of people. Adjust the pupil distance by rolling the gear on the left of the 3D VR GLASSES, and adjust the object distance by rolling the gear on the top of VR glass so as to get a better experience of watching movies. ", "Ergonomic Head belt Design : The T-shaped straps make it adjustable for different people. Its design can also help decrease the pressure on around your eyes so you will feel much more comfortable when enjoy the movie or game ", "Comfort design with sponge area - Extremely soft and thick foam is perfect long time use. And we prepare one replace sponge to meet your requirement if you have to wash sponge. ", "Perfect package\uff1a1set VR glasses in EVA carry case, it looks great, you can give your friend as a gift, and easy to carry. "], "total_reviews": 379, "total_answered_questions": 42, "model": "HOMIDOV2", "customization_options": "", "seller_id": "AJ14XRCVMS6T1", "seller_name": "Onestop Creations", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B01LZWDNX6", "category": "electronics", "query": "Wearable Technology", "page": 107, "small_description_old": "About this item Wide Compatibility :\u00a0Compatibly Fits for All smartphones' screen size between 4 to 5.7 inch such as Samsung Galaxy Note 5/4/, Galaxy S7 Edge/Galaxy S6 S5 S4; Apple iPhone 7 7s 7 Plus 6s 6 Plus 5c 5s; LG/Sony Xperia/Huawei/Nexus/ASUS/HTC etc. ( The max length of smart phone is 159.6mm and max width is 79.3mm) Adjustable pupil distance and object distance: To satisfy different groups of people. Adjust the pupil distance by rolling the gear on the left of the 3D VR GLASSES, and adjust the object distance by rolling the gear on the top of VR glass so as to get a better experience of watching movies. Ergonomic Head belt Design : The T-shaped straps make it adjustable for different people. Its design can also help decrease the pressure on around your eyes so you will feel much more comfortable when enjoy the movie or game Comfort design with sponge area - Extremely soft and thick foam is perfect long time use. And we prepare one replace sponge to meet your requirement if you have to wash sponge. Perfect package\uff1a1set VR glasses in EVA carry case, it looks great, you can give your friend as a gift, and easy to carry."}, {"name": "Demeter Fragrance Library 1 Oz Cologne Spray - Sugar Plum", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.8 x 0.7 x 3.9 inches; 0.64 Ounces", "Item model number\n \u200f": "\u200e\n DM09337", "UPC\n \u200f": "\u200e\n 648389285375", "Manufacturer\n \u200f": "\u200e\n Demeter F.L. Inc", "ASIN\n \u200f": "\u200e\n B017MOAUGA", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#675,539 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,926 in Women's Cologne", "#1,926 in Women's Cologne": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Demeter Fragrance Library Store", "brand_url": "https://www.amazon.com/stores/DemeterFragranceLibrary/page/A62FFC43-C077-43FD-BDFD-B68742B8D515?ref_=ast_bln", "full_description": "Sensual, sparkling and cheerful with the rich scent of orange blossom. Coppertone? Hawaiian tropic? An ultra-luxury brand? Whatever you use, it's a great scent. And here it is 365 days of the year. Any week. Any month. Any hour. Day or night. Turn that ski vacation into a bi-lateral \"I've been skiing in Chile and sunning in St. Tropez\" kind of jaunt. (At last virtually.).", "pricing": "$15.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/417j-l467IL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Cologne", "average_rating": 3.2, "small_description": ["A perfect Holiday fragrance. Sugar plums can be made from any kind or combination of dried fruits, not just plums, together with finely chopped nuts, honey and aromatic spices. Demeter's Sugar Plum is, not surprisingly, on the simple side, just plum, honey, powdered sugar and a secret combination of spices. ", "Sugar Plums are widely associated with Christmas, inspired by characters like the Sugar Plum Fairy in Tchaikovsky's \"Nutcracker\" and of course: A Visit from St. Nicholas by Clement C. Moore 'Twas the night before Christmas, when all thro' the house. ", "Not a creature was stirring, not even a mouse; The stockings were hung by the chimney with care, In hopes that St. Nicholas soon would be there; The children were nestled all snug in their beds, While visions of sugar plums danc'd in their heads. "], "total_reviews": 6, "total_answered_questions": "", "customization_options": "", "seller_id": "A2RZTH94F29GDO", "seller_name": "Demeter F. L., Inc.", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B017MOAUGA", "category": "beauty", "query": "Children's Fragrance", "page": 15, "small_description_old": "About this item A perfect Holiday fragrance. Sugar plums can be made from any kind or combination of dried fruits, not just plums, together with finely chopped nuts, honey and aromatic spices. Demeter's Sugar Plum is, not surprisingly, on the simple side, just plum, honey, powdered sugar and a secret combination of spices. Sugar Plums are widely associated with Christmas, inspired by characters like the Sugar Plum Fairy in Tchaikovsky's \"Nutcracker\" and of course: A Visit from St. Nicholas by Clement C. Moore 'Twas the night before Christmas, when all thro' the house. Not a creature was stirring, not even a mouse; The stockings were hung by the chimney with care, In hopes that St. Nicholas soon would be there; The children were nestled all snug in their beds, While visions of sugar plums danc'd in their heads."}, {"name": "Motts Cinnamon Applesauce, Pack of 18 -4.0 oz Containers", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 6 x 3.5 x 6.5 inches; 3.4 Pounds", "UPC\n \u200f": "\u200e\n 014800002102", "Manufacturer\n \u200f": "\u200e\n Motts LLP", "ASIN\n \u200f": "\u200e\n B00HWHS3ZS", "Best Sellers Rank": "#34,122 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#32 in Applesauce Snack Cups & Pouches", "#32 in Applesauce Snack Cups & Pouches": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Mott's Store", "brand_url": "https://www.amazon.com/stores/Motts/page/D313B3CA-E1D5-47BE-999F-82DE46AD57A9?ref_=ast_bln", "full_description": "18 - 4.0 oz containers of Motts Cinnamon Flavored Applesauce. This product is made from real fruit and may contain seeds, stems, or other pieces of natural fruit.", "pricing": "$17.53", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41+6gFVbY5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Applesauce & Fruit Cups \u203a Applesauce", "average_rating": 4.7, "small_description": ["18 containers of Motts Cinnamon Applesauce ", "Excellent source of Vitamin C ", "Fat free, cholesterol free, sodium free ", "Natural cinnamon flavored applesauce ", "Great addition to kid's lunches! "], "total_reviews": 191, "total_answered_questions": "", "customization_options": "", "seller_id": "A7PMRZP4ANGFA", "seller_name": "Rasmar Unlimited", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00HWHS3ZS", "category": "grocery", "query": "Applesauce & Fruit Cups", "page": 3, "small_description_old": "About this item 18 containers of Motts Cinnamon Applesauce Excellent source of Vitamin C Fat free, cholesterol free, sodium free Natural cinnamon flavored applesauce Great addition to kid's lunches!"}, {"name": "Abbey Avenue Grace Upholstered Queen Platform Bed, Blue", "product_information": {"Item Weight": "\u200e89 pounds", "Product Dimensions": "\u200e86 x 64 x 53 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eU-GRA-080QB", "ASIN": "B0769HRGD2", "Customer Reviews": {"ratings_count": 6, "stars": "3.8 out of 5 stars"}, "Best Sellers Rank": ["#3,534,830 in Home & Kitchen (See Top 100 in Home & Kitchen) #7,497 in Beds"], "Date First Available": "October 8, 2017"}, "brand": "Visit the Abbey Avenue Store", "brand_url": "https://www.amazon.com/stores/Abbey+Avenue/page/A7F29EB6-9A29-4CD9-9FEB-421A041483DA?ref_=ast_bln", "full_description": "The Abbey Avenue grace upholstered Queen platform bed in heirloom Blue will modernize your bedroom and make your d\u00e9cor Dreams come to fruition. Metal stud trim perfectly embellishes the sumptuous upholstery. Pair the grace bed with the grace chair to create a cozy reading corner in your bedroom.", "pricing": "$376.46", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock (more on the way).", "images": ["https://m.media-amazon.com/images/I/41bgWni7lIL.jpg", "https://m.media-amazon.com/images/I/41Fvv2rCPQL.jpg", "https://m.media-amazon.com/images/I/51uNTgE6yDL.jpg", "https://m.media-amazon.com/images/I/51mgtbHgaxL.jpg", "https://m.media-amazon.com/images/I/41WaKz58GkL.jpg", "https://m.media-amazon.com/images/I/41R6l4uDR-L.jpg", "https://m.media-amazon.com/images/G/01/showroom/icon-lightbulb.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Beds", "average_rating": 3.8, "small_description": ["The Abbey Avenue grace upholstered Queen platform bed in heirloom Blue will modernize your bedroom and make your d\u00e9cor Dreams come to fruition. Metal stud trim perfectly embellishes the sumptuous upholstery. Pair the grace bed with the grace chair to create a cozy reading corner in your bedroom. ", "Euro slats, chrome silver nail head trim, Part of emery collection, ships in one box, no box Spring required, straight Leg feet ", "Wood frame: eucalyptus/plywood; feet: poplar solid wood; Cushion filling: foam ", "Heirloom. The Product Weight is 89 pounds ", "Metal stud trim perfectly embellishes the sumptuous upholstery "], "total_reviews": 6, "total_answered_questions": "", "model": "\u200eU-GRA-080QB", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0769HWY65/ref=twister_B0776Y9D1N", "value": "Twin", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0769GF3YL/ref=twister_B0776Y9D1N?_encoding=UTF8&psc=1", "value": "Full", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Queen", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41+ydMfhcXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0769HWY65/ref=twister_B0776Y9D1N", "value": "Charcoal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GauLu3KtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0769HYKQ9/ref=twister_B0776Y9D1N?_encoding=UTF8&psc=1", "value": "Natural", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412PyUk-GOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0769HWY64/ref=twister_B0776Y9D1N", "value": "Teal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41c7P-F2kNL.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0769HRGD2", "category": "garden", "query": "Beds", "page": 232, "small_description_old": "About this item The Abbey Avenue grace upholstered Queen platform bed in heirloom Blue will modernize your bedroom and make your d\u00e9cor Dreams come to fruition. Metal stud trim perfectly embellishes the sumptuous upholstery. Pair the grace bed with the grace chair to create a cozy reading corner in your bedroom. Euro slats, chrome silver nail head trim, Part of emery collection, ships in one box, no box Spring required, straight Leg feet Wood frame: eucalyptus/plywood; feet: poplar solid wood; Cushion filling: foam Heirloom. The Product Weight is 89 pounds Metal stud trim perfectly embellishes the sumptuous upholstery \n \u203a See more product details"}, {"name": "Baxton Studio Brandy Light Beige Fabric Upholstered Queen Size Storage Platform Bed", "product_information": {"Item Weight": "\u200e147 pounds", "Product Dimensions": "\u200e87.4 x 64.17 x 39.57 inches", "ASIN": "B071S7GPMS", "Customer Reviews": {"ratings_count": 2, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#3,812,792 in Home & Kitchen (See Top 100 in Home & Kitchen) #8,271 in Beds"], "Date First Available": "March 20, 2017"}, "brand": "Visit the Baxton Studio Store", "brand_url": "https://www.amazon.com/stores/Baxton+Studio/page/B74D640F-4D9C-4FDA-84A3-498F20DD4F80?ref_=ast_bln", "full_description": "Baxton Studio Brandy Light Beige Fabric Upholstered Queen Size Storage Platform Bed", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41RjCn64YxL.jpg", "https://m.media-amazon.com/images/I/418fr4JBMFL.jpg", "https://m.media-amazon.com/images/I/31bbcn1JUoL.jpg", "https://m.media-amazon.com/images/I/41TtdlZJ8eL.jpg", "https://m.media-amazon.com/images/I/41P75xzs+1L.jpg", "https://m.media-amazon.com/images/I/51DBm2tcBZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Beds", "average_rating": 4.7, "small_description": ["Finish: Beige ", "Material: Fabric \"Polyester 100%\"/MDF/Foam ", "Modern and contemporary fabric upholstered bed ", "Beige polyester upholstery with polyurethane foam padding ", "Slats (included) eliminate the need for a box spring "], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B071S7GPMS", "category": "garden", "query": "Beds", "page": 372, "small_description_old": "About this item Finish: Beige Material: Fabric \"Polyester 100%\"/MDF/Foam Modern and contemporary fabric upholstered bed Beige polyester upholstery with polyurethane foam padding Slats (included) eliminate the need for a box spring \n \u203a See more product details"}, {"name": "Junior's Cheesecake 8\" Apple Crumb Cheesecake (Serves 12-14)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 10 x 5 inches; 3 Pounds", "ASIN\n \u200f": "\u200e\n B07WDRM4HG", "Best Sellers Rank": "#203,217 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#48 in Cheesecakes", "#48 in Cheesecakes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Junior's Store", "brand_url": "https://www.amazon.com/stores/Junior%27s/page/FFE26F2D-65DC-4B57-90B0-568F1EA81B0A?ref_=ast_bln", "full_description": "From the Legendary Brooklyn institution, Junior's Restaurant, our world popular New York cheesecake is baked on a bed of homemade apple pie filling made with cinnamon and spices and is finished with handmade streusel topping. It's the perfect combination of flavors.All of our desserts are homemade with premium ingredients in small batches and mixed for over 40 minutes; no water or fillers added. Made in a family-owned bakery with premium cream cheese, fresh heavy cream, eggs, and a touch of vanilla. The cheesecake is frozen and arrives in a special, protective, stay-fresh container guaranteeing your Junior\u2019s cheesecake arrives in perfect condition. May arrive defrosted but cool to the touch. Net Weight 3lbs, Serves 12-14. We ship Mondays, Tuesdays and Wednesdays via 2-day service. Orders must be received by Wednesday at 6am EST to ship that day. Order deadline for Christmas delivery is Tuesday 12/17 at 10pm EST.", "pricing": "$59.95", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/41hVPuqZDWL.jpg", "https://m.media-amazon.com/images/I/51hRQg3wI7L.jpg", "https://m.media-amazon.com/images/I/51yMvQBoxKL.jpg", "https://m.media-amazon.com/images/I/51RD9yNnBFL.jpg", "https://m.media-amazon.com/images/I/51sGXacLJRL.jpg", "https://m.media-amazon.com/images/I/512o2V3MSdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cakes \u203a Cheesecakes", "average_rating": 4.1, "small_description": ["Our original New York cheesecake is baked on a bed of homemade apple-pie filling, made with cinnamon and spices and sponge cake bottom, finished with homemade streusel crumb topping ", "What all New York-style cheesecakes aspire to be: creamy but not heavy, light without falling apart, and of course, that rich flavor ", "Makes for the perfect gift for holidays, birthdays, and corporate events ", "Made with premium ingredients in small batches in our family-owned bakery; baked in a time-honored tradition with premium cream cheese, heavy cream, eggs and a touch of vanilla; no water or fillers added ", "Shipped frozen in a special, protective, stay fresh container - may arrive cool to the touch; approx. Net weight 3 lbs, 8 inches in diameter; serves 12-14. Certified kosher-dairy by Kof-K. We ship Mondays, Tuesdays and Wednesdays via 2-day service. Orders must be received by Wednesday at 6am EST to ship that day. Order deadline for Christmas delivery is Tuesday 12/17 at 10pm EST. We will not be shipping the weeks of 12/23 and 12/30. "], "total_reviews": 52, "total_answered_questions": "", "customization_options": "", "seller_id": "A1ODNY5SL810IG", "seller_name": "Junior's Cheesecake", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07WDRM4HG", "category": "grocery", "query": "Breads & Bakery", "page": 164, "small_description_old": "About this item Our original New York cheesecake is baked on a bed of homemade apple-pie filling, made with cinnamon and spices and sponge cake bottom, finished with homemade streusel crumb topping What all New York-style cheesecakes aspire to be: creamy but not heavy, light without falling apart, and of course, that rich flavor Makes for the perfect gift for holidays, birthdays, and corporate events Made with premium ingredients in small batches in our family-owned bakery; baked in a time-honored tradition with premium cream cheese, heavy cream, eggs and a touch of vanilla; no water or fillers added Shipped frozen in a special, protective, stay fresh container - may arrive cool to the touch; approx. Net weight 3 lbs, 8 inches in diameter; serves 12-14. Certified kosher-dairy by Kof-K. We ship Mondays, Tuesdays and Wednesdays via 2-day service. Orders must be received by Wednesday at 6am EST to ship that day. Order deadline for Christmas delivery is Tuesday 12/17 at 10pm EST. We will not be shipping the weeks of 12/23 and 12/30."}, {"name": "Olympus Stylus 550 WP 10MP Waterproof Digital Camera with 3x Optical Zoom and 2.5-Inch LCD (Blue)", "product_information": {"Product Dimensions": "3.7 x 0.87 x 2.44 inches", "Item Weight": "5.9 ounces", "ASIN": "B001P06Q0W", "Item model number": "Stylus 550 Blue", "Batteries": "1 Lithium ion batteries required.", "Customer Reviews": {"ratings_count": 67, "stars": "3.8 out of 5 stars"}, "Best Sellers Rank": ["#315,610 in Electronics (See Top 100 in Electronics) #355 in Underwater Photography Cameras #2,993 in Digital Point & Shoot Cameras"], "Is Discontinued By Manufacturer": "No", "Date First Available": "January 7, 2008", "Manufacturer": "Olympus"}, "brand": "Visit the OLYMPUS Store", "brand_url": "https://www.amazon.com/stores/Olympus/page/194007F4-900D-462A-BD13-D0E06BA308BA?ref_=ast_bln", "full_description": "Thanks to waterproofing technology adopted from Olympus\u2019 Stylus Tough series cameras, the new 10-megapixel Stylus 550WP waterproof camera is optimized for those who want to take stunning images of their aquatic adventures, making it the perfect pool companion. Olympus Stylus 550WP Highlights Point-Dunk-and-Shoot Camera The Stylus-550WP can go where other cameras fear to tread and can perform as well under water as it does on land because of its slim lightweight, aluminum exterior that is sealed from the elements by interior rubber gaskets and O-rings. The Stylus-550WP can be submerged up to 10 feet under water, and the inclusion of an underwater scene mode makes it ideal for taking photos while snorkeling, in the pool, or riding the waterslide. Intelligent Auto Thinks for You In or out of the water, you won\u2019t miss the shot thanks to Intelligent Auto Mode. It automatically identifies what you are shooting (i.e. Portrait, Night + Portrait, Landscape, Macro and Sports) and adjusts the camera\u2019s settings to capture the best quality results. First-time users can dive into this quick and hassle-free feature that does the thinking for them and produces incredible images. Can\u2019t Hide with Face Detection! Portrait and group shots make family reunions live beyond the short event, and with Face Detection you\u2019ll capture even the shyest relatives. The new camera detects up to three faces within the frame and automatically focuses and optimizes exposure to capture sharp, brilliant portraits and group shots. With the waterproof Stylus-550WP, you\u2019ll capture amazing photos even if your next family reunion is at a water park! Versatile Memory All Olympus digital point-and-shoot cameras accept xD-Picture Card media. Starting with products available in August 2008, they also accept microSD memory cards to capture images. The Stylus-550WP offers the flexibility to use either xD-Picture Card or microSD memory cards, which is just one more advantage of Olympus point-and-shoot cameras. Freeze that Splash with Digital Image Stabilization The fast motion of moving sea life or paddling swimmers could easily cause blurry images. Digital Image Stabilization freezes the action with high ISO sensitivity and fast shutter speeds to help prevent blurry images often caused by a moving subject, resulting in crystal-clear snaps. Perfect Fix In-Camera Editing While it can\u2019t remove the red from your eyes caused by too much chlorine in the water, the Stylus-550WP offers Red-Eye Fix as well as other in-camera editing features such as Shadow Adjustment Edit, resizing and cropping, so you can edit photos right in the camera. With the Perfect Fix function, multiple editing features can be applied at once, so what you see on the 2.5-inch LCD will look amazing when you show it to your friends in the hot tub. Olympus Master 2 Software Olympus Master 2 Software provides the ultimate in digital imaging management. An intuitive user interface makes downloading to your computer quick and simple, and images are easily organized by folders or albums and searchable by date in Calendar view. A direct link makes uploading your images and videos to YouTube easier than ever. Additionally, with one-click editing tools, such as red-eye removal, images can be touched up before printing or emailing. Online support, templates, firmware upgrades and other user services are just a mouse-click away. Use the optional muvee Theater Pack to create professional quality slide shows and DVDs from your pictures using any of several built-in templates. Additionally, create scrapbooks, greeting cards and other fun prints using the optional ArcSoft Print Creations plug-in. What's in the Box Wrist strap, camera WIN/Mac USB cable, audio/video cable, Lithium-Ion Battery (LI-42B) & Charger (LI-41C), MASD-1 (microSD Adapter), manual, warranty card and Olympus Master 2 software (CD-ROM)", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41XKPabQHFL.jpg", "https://m.media-amazon.com/images/I/41nKUMsVXnL.jpg", "https://m.media-amazon.com/images/I/41tKzhCk3WL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a Point & Shoot Digital Cameras", "average_rating": 3.8, "small_description": ["10-megapixel resolution for photo-quality, poster-size prints ", "Lightweight, aluminum exterior; waterproof up to 10 feet ", "3x optical zoom; Face Detection ", "Perfect Fix in-camera editing ", "Compatible with xD Picture Cards and microSD memory cards (not included) "], "total_reviews": 67, "total_answered_questions": "", "model": "Stylus 550 Blue", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B001P06Q0C/ref=twister_B001P80G5A?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31n1qIllffL.jpg"}, {"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41XKPabQHFL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B001P06Q0W", "category": "electronics", "query": "Digital Cameras", "page": 140, "small_description_old": "About this item\n \n10-megapixel resolution for photo-quality, poster-size prints Lightweight, aluminum exterior; waterproof up to 10 feet 3x optical zoom; Face Detection Perfect Fix in-camera editing Compatible with xD Picture Cards and microSD memory cards (not included)"}, {"name": "GYYARSX Foot Stool Ottoman Home Plastic Environmental Protection Low Stool, Children Simplicity Lightweight Tread Footstool, White (Color : White, Size : 33X20X21CM)", "product_information": {"Item Weight": "\u200e10.6 ounces", "ASIN": "B08KLHMPP9", "Date First Available": "October 3, 2020"}, "brand": "Brand: GYYARSX-Rest Stool Seat", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=GYYARSX-Rest+Stool+Seat", "full_description": "Product descriptionIt's small enough to Pick up of the way easily, so it's suitable for anywhere in the home, office, or garageProduct DetailsName: plastic StoolColor: White(as shown)Material: plasticSize: (length X width X height): 33X20X21CMMaximum load: 80kgApplicable Object: adult / kidsPackage Includes1 X plastic StoolNote:Please allow slight dimension difference due to different manual measurementDue to factors such as shooting technology, light, display parameters, etc. the actual color received will be different from the photo. Please refer to the actual product. Thank you", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/31+QkV-g1UL.jpg", "https://m.media-amazon.com/images/I/51kl+u9qClL.jpg", "https://m.media-amazon.com/images/I/416MxKIIqaL.jpg", "https://m.media-amazon.com/images/I/31Kh2gZPclL.jpg", "https://m.media-amazon.com/images/I/311V+RhRNrL.jpg", "https://m.media-amazon.com/images/I/41nek7eRbaL.jpg", "https://m.media-amazon.com/images/I/3113OoS6XYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Accent Furniture \u203a Ottomans", "average_rating": "", "small_description": ["Convenient Foot Stool: high-quality plastic materials, environmentally friendly materials, healthy and safe, smooth and thick, no burrs, strong and durable, and strong materials ", "Non-slip rubber pad: wear-resistant, non-slip, non-scratch the ground; easy stacking, saving space, small size, easy to collect and easy to take ", "Easy to clean\uff1alightweight material, sturdy, comfortable and safe step stool for children all ages ", "Multifunctiop\uff1aIdeal step stool for potty training, washing hand or taking items on high place, for use in bedroom, bathroom, kitchen and living room etc ", "After-Sales Service: Customer satisfaction is our only purpose. If you have any questions, please contact us in time. We will reply to your email within 24 hours "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08KLHMPP9", "category": "garden", "query": "Ottomans", "page": 391, "small_description_old": "About this item Convenient Foot Stool: high-quality plastic materials, environmentally friendly materials, healthy and safe, smooth and thick, no burrs, strong and durable, and strong materials Non-slip rubber pad: wear-resistant, non-slip, non-scratch the ground; easy stacking, saving space, small size, easy to collect and easy to take Easy to clean\uff1alightweight material, sturdy, comfortable and safe step stool for children all ages Multifunctiop\uff1aIdeal step stool for potty training, washing hand or taking items on high place, for use in bedroom, bathroom, kitchen and living room etc After-Sales Service: Customer satisfaction is our only purpose. If you have any questions, please contact us in time. We will reply to your email within 24 hours \n \u203a See more product details"}, {"name": "Sandisk Ultra SDXC 64GB 80MB/S C10 Flash Memory Card (SDSDUNC-064G-AN6IN)", "product_information": {"RAM": "\u200e64 GB", "Brand": "\u200eSanDisk", "Series": "\u200eSandisk Ultra Gb 10 Memory Card ' G 1", "Item model number": "\u200eSDSDUNC-064G-AN6IN", "Item Weight": "\u200e0.48 ounces", "Product Dimensions": "\u200e6 x 4 x 0.2 inches", "Item Dimensions LxWxH": "\u200e6 x 4 x 0.2 inches", "Color": "\u200eRed", "Manufacturer": "\u200eSanDisk", "ASIN": "\u200eB013WXK2QI", "Is Discontinued By Manufacturer": "\u200eNo", "Date First Available": "\u200eAugust 14, 2015", "Customer Reviews": {"ratings_count": 147, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#505 in SecureDigital Memory Cards"]}, "brand": "Visit the SanDisk Store", "brand_url": "https://www.amazon.com/stores/SanDisk/page/CD971F4B-EE23-4EA1-96E3-567678AC9C0A?ref_=ast_bln", "full_description": "The SanDisk Ultra SDHC Memory Card is twice as fast as ordinary SDHC and SDXC cards, allowing it to take better pictures and Full HD videos. Its faster write speeds and Class 10 video recording performance make it a great choice for compact to mid-range point-and-shoot cameras and camcorders to capture top quality Full HD 1080p video and amazing pictures. This is the 64GB edition.", "pricing": "$13.85", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon. In Stock.", "images": ["https://m.media-amazon.com/images/I/51pvrWJX2sL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Memory Cards \u203a SD Cards", "average_rating": 4.6, "small_description": ["Twice As Fast As Ordinary Shdc & Sdxc Cards ", "Class 10 Performance For Full Hd Video (1080p) ", "Read Speeds Up To 80mbps ", "Engineered With Uhs-i Bus Architecture ", "Waterproof, Temperature proof, X-ray proof, Magnet proof & Shockproof "], "total_reviews": 147, "total_answered_questions": 9, "model": "\u200eSDSDUNC-064G-AN6IN", "customization_options": "", "seller_id": "AIIAYKZQOBT02", "seller_name": "OEMPCWorld", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B013WXK2QI", "category": "electronics", "query": "Flashes", "page": 279, "small_description_old": "About this item\n \nTwice As Fast As Ordinary Shdc & Sdxc Cards Class 10 Performance For Full Hd Video (1080p) Read Speeds Up To 80mbps Engineered With Uhs-i Bus Architecture Waterproof, Temperature proof, X-ray proof, Magnet proof & Shockproof"}, {"name": "ReadyWired HDMI Cord Cable for Apeman A80 Action Camera", "product_information": {"Manufacturer": "ReadyWired", "ASIN": "B07TPRMHFG", "Customer Reviews": {"ratings_count": null, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#14,718 in HDMI Cables"], "Is Discontinued By Manufacturer": "No", "Date First Available": "October 21, 2016"}, "brand": "Brand: ReadyWired", "brand_url": "https://www.amazon.com/ReadyWired/b/ref=bl_dp_s_web_20636303011?ie=UTF8&node=20636303011&field-lbr_brands_browse-bin=ReadyWired", "full_description": "Compatibility guaranteed * Length: 6 Ft.", "pricing": "$7.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41i3ZtYtlrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a HDMI Cables", "average_rating": 4, "small_description": ["Compatibility guaranteed ", "Length: 6 Ft. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A2T00D4QGA0SIZ", "seller_name": "River City Electronics", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07TPRMHFG", "category": "electronics", "query": "HDMI Cables", "page": 334, "small_description_old": "About this item\n \nCompatibility guaranteed Length: 6 Ft."}, {"name": "BioCorneum Advanced Scar Treatment Gel with SPF 30 - Silishield Patented Crosslinking Silicone - 50 gram - Certified Distributor", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.26 x 1.54 x 1.54 inches; 1.76 Ounces", "UPC\n \u200f": "\u200e\n 767571217366", "Manufacturer\n \u200f": "\u200e\n Enaltus", "ASIN\n \u200f": "\u200e\n B07VTR9SYD", "Best Sellers Rank": "#7,332 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#25 in Scar Reducing Treatments #782 in Body Skin Care Products", "#25 in Scar Reducing Treatments": "", "#782 in Body Skin Care Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: bioCorneum", "brand_url": "https://www.amazon.com/bioCorneum/b/ref=bl_dp_s_web_20694054011?ie=UTF8&node=20694054011&field-lbr_brands_browse-bin=bioCorneum", "full_description": "BIOCORNEUM is the only advanced scar treatment with FDA-Cleared Silishield patented crosslinking medical grade silicone and SPF 30 that: prevents and minimizes the formation of hypertrophic scars decreases the appearance of old scars protects scars from sun exposure\u2019s darkening effects dries quickly to adhere to skin for 12 to 24 hours BIOCORNEUM can be used on scars resulting from surgical and cosmetic procedures, trauma, wounds and burns, and it can be effective on old or new scars. Silishield Patented Crosslinking Silicone FDA-Cleared Silishield Technology advances the benefits of traditional silicone sheeting through the comfort and ease of a gel. Patented crosslinking silicone creates an invisible shield that feels like a second skin and helps reduce the appearance of scars. It can reduce redness and discoloration, soften and flatten new and older hypertrophic and keloid scars resulting from surgical procedures, injuries and burns. Why BIOCORNEUM? BIOCORNEUM gives you more control over your recovery process. Scars can be an unwanted visual reminder of a past procedure or injury. But scars are not simply cosmetic. Scar tissue lacks the full function of skin that hasn\u2019t been injured or involved in a surgery. For example, flexibility and the sense of touch may be diminished or completely lost in the scar area. Effectively treating a scar can help to complete your healing process.2,3 Easy, Effective Care for Scar Recovery FDA-Cleared Silishield Technology plus SPF 30 sunscreen Silky-smooth clear gel is simple to apply and dries quickly Forms a breathable, flexible protective shield that moves like a second skin Self-adhering \u2013 won\u2019t peel, no tape required Ideal for skin that must flex a lot (such as around joints), irregular surfaces, as well as large scar areas Ideal for face, neck, chest, hands, and other areas exposed to the sun Once dry, continues to work when makeup, lotion, or additional SPF protection is applied over it", "pricing": "$47.49", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41dLq9JQyEL.jpg", "https://m.media-amazon.com/images/I/51ArC0BEfAL.jpg", "https://m.media-amazon.com/images/I/41IFHuSB6OL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Health & Household \u203a Health Care \u203a First Aid \u203a Scars & Wounds", "average_rating": 4.6, "small_description": ["The only advanced scar treatment with FDA-Cleared Silishield patented crosslinking medical grade silicone and SPF 30 that prevents and minimizes the formation of hypertrophic scars ", "Decreases the appearance of old scars ", "Protects scars from sun exposure\u2019s darkening effects ", "Dries quickly to adhere to skin for 12 to 24 hours ", "BIOCORNEUM can be used on scars resulting from surgical and cosmetic procedures, trauma, wounds and burns, and it can be effective on old or new scars "], "total_reviews": 351, "total_answered_questions": 16, "customization_options": "", "seller_id": "A3KUOCZY7E9COL", "seller_name": "I\u2019M SHOPAHOLIC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07VTR9SYD", "category": "beauty", "query": "Body Makeup", "page": 162, "small_description_old": "The only advanced scar treatment with FDA-Cleared Silishield patented crosslinking medical grade silicone and SPF 30 that prevents and minimizes the formation of hypertrophic scars Decreases the appearance of old scars Protects scars from sun exposure\u2019s darkening effects Dries quickly to adhere to skin for 12 to 24 hours BIOCORNEUM can be used on scars resulting from surgical and cosmetic procedures, trauma, wounds and burns, and it can be effective on old or new scars"}, {"name": "yanw 12' 3-RCA Gold Plated Cord Male to Male Video Audio for PC TV CAM DVD VCR", "product_information": {"Manufacturer": "yanw", "ASIN": "B08H22ZV67", "Date First Available": "August 31, 2020"}, "brand": "Brand: yanw", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=yanw", "full_description": "12' 3-RCA Gold Plated Cord Male to Male Video Audio for PC TV CAM DVD VCR", "pricing": "$13.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41s+lYY6OzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Audio Cables \u203a RCA Cables", "average_rating": "", "small_description": ["100% Brand New, High Quality ", "Connector: 3 RCA Y/R/W Male to 3 RCA Y/R/W Male Length: 12 ft. Color: Black AWG: 28 AWG "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AXQT4CRB37RUF", "seller_name": "Yilin trade", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08H22ZV67", "category": "electronics", "query": "VCRs", "page": 151, "small_description_old": "100% Brand New, High Quality Connector: 3 RCA Y/R/W Male to 3 RCA Y/R/W Male Length: 12 ft. Color: Black AWG: 28 AWG"}, {"name": "Baseus Magnetic Power Bank, 10,000mAh MagSafe Wireless Portable Charger, PD 20W USB-C Battery Pack, Designed for iPhone iPhone 13/13 Pro Max/13 Mini/12/12 Pro/12 Pro Max/12 Mini", "product_information": {"Product Dimensions": "5.76 x 2.8 x 0.66 inches", "Item Weight": "8.1 ounces", "ASIN": "B09CPZH548", "Item model number": "PPCXW10", "Batteries": "2 Lithium Polymer batteries required. (included)", "Customer Reviews": {"ratings_count": 437, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#5,642 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #132 in Cell Phone Replacement Batteries #134 in Cell Phone Portable Power Banks"], "Other display features": "Wireless", "Colour": "Blue", "Manufacturer": "Baseus", "Date First Available": "August 16, 2021"}, "brand": "Visit the Baseus Store", "brand_url": "https://www.amazon.com/stores/Baseus/page/57F14E36-CF64-4705-828D-E0641A5338C6?ref_=ast_bln", "full_description": "", "pricing": "$39.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41hsRQSlACL.jpg", "https://m.media-amazon.com/images/I/51LFzxj2oNL.jpg", "https://m.media-amazon.com/images/I/417yfs4k46L.jpg", "https://m.media-amazon.com/images/I/51R3rb05ObL.jpg", "https://m.media-amazon.com/images/I/411KYz4AERL.jpg", "https://m.media-amazon.com/images/I/51Ya+wmiEkL.jpg", "https://m.media-amazon.com/images/I/613M9s-YS5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Maintenance, Upkeep & Repairs \u203a Replacement Parts \u203a Batteries", "average_rating": 4.1, "small_description": ["Snap and Charge \u2013 18 built-in magnets allow you precisely attach your phone that makes wireless charging a breeze ", "MagSafe for iPhone 12/13 \u2013 Works perfectly with iPhone 12/Pro/Pro Max/Mini, iPhone 13/Pro Max/Mini. (NOTE: except iPhone 13 Pro) There will appear MagSafe icon on iphone 12 series when charging wirelessly (Only compatible with MagSafe phone cases) ", "All-in-One \u2013 A magnetic power bank for MagSafe - compatible devices in addition with USB-A and Type-C ports to charge up to 3 devices simultaneously (max output 20W) ", "Large Battery \u2013 Special magnetic system for iPhone 12 series, 10000 mAh capacity allow to charge an iPhone 12 up to 2.4 times, 3 times for iPhone 12 mini, 1.6 times for a Samsung S20 ", "Safe-to-Use \u2013 The Baseus built-in protection chip prevents overcharge, short circuit, reboot, overheating, and combined with a status light to provide you a worry-free wireless charging experience ", "What You Get \u2013 Baseus Magnetic Power Bank, USB-A to USB-C cable, welcome guide, using manu, our 12-month warranty, and Baseus\u2019 friendly customer service. Please contact us when you have any problem about our product "], "total_reviews": 437, "total_answered_questions": 45, "model": "PPCXW10", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Blue", "price_string": "$39.99", "price": 39.99, "image": "https://m.media-amazon.com/images/I/41hsRQSlACL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PMF152X/ref=twister_B09HJYQNC2?_encoding=UTF8&psc=1", "value": "Purple", "price_string": "$40.99", "price": 40.99, "image": "https://m.media-amazon.com/images/I/41+DLl3pF3L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092MGGBG1/ref=twister_B09HJYQNC2?_encoding=UTF8&psc=1", "value": "White", "price_string": "$41.99", "price": 41.99, "image": "https://m.media-amazon.com/images/I/41-ZJxxIspL.jpg"}]}, "seller_id": "A33IAQUVRW6LGA", "seller_name": "Baseus US Tech", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09CPZH548", "category": "electronics", "query": "Power Protection", "page": 72, "small_description_old": "About this item Snap and Charge \u2013 18 built-in magnets allow you precisely attach your phone that makes wireless charging a breeze MagSafe for iPhone 12/13 \u2013 Works perfectly with iPhone 12/Pro/Pro Max/Mini, iPhone 13/Pro Max/Mini. (NOTE: except iPhone 13 Pro) There will appear MagSafe icon on iphone 12 series when charging wirelessly (Only compatible with MagSafe phone cases) All-in-One \u2013 A magnetic power bank for MagSafe - compatible devices in addition with USB-A and Type-C ports to charge up to 3 devices simultaneously (max output 20W) Large Battery \u2013 Special magnetic system for iPhone 12 series, 10000 mAh capacity allow to charge an iPhone 12 up to 2.4 times, 3 times for iPhone 12 mini, 1.6 times for a Samsung S20 Safe-to-Use \u2013 The Baseus built-in protection chip prevents overcharge, short circuit, reboot, overheating, and combined with a status light to provide you a worry-free wireless charging experience What You Get \u2013 Baseus Magnetic Power Bank, USB-A to USB-C cable, welcome guide, using manu, our 12-month warranty, and Baseus\u2019 friendly customer service. Please contact us when you have any problem about our product"}, {"name": "LALUZ Bathroom Light Fixtures, Gold Vanity Light Fixture with Clear Glass Shades ( L19.5\u201d\u00d7 W6\u201d\u00d7 H7.5\u201d)", "product_information": {"Brand": "\u200eLALUZ", "Manufacturer": "\u200eLALUZ", "Part Number": "\u200eBathroom Vanity Light Fixtures", "Item Weight": "\u200e3.29 pounds", "Product Dimensions": "\u200e19.5 x 6 x 7.5 inches", "Item model number": "\u200ebathroom vanity light", "Assembled Height": "\u200e7.5 inches", "Assembled Length": "\u200e19.5 inches", "Assembled Width": "\u200e6 inches", "Style": "\u200eModern", "Collection": "\u200eBathroom vanity light fixtures", "Color": "\u200eGold", "Shape": "\u200eCandle", "Material": "\u200eMetal", "Number of Lights": "\u200e3", "Included Components": "\u200eVanity light", "Maximum Compatible Wattage": "\u200e40 Watts", "Voltage": "\u200e120 Volts", "Special Features": "\u200eDimmable", "Shade Material": "\u200eGlass", "Light Direction": "\u200eDownlight", "Power Source": "\u200eCorded-electric", "Switch Style": "\u200eBathroom light", "Batteries Required?": "\u200eNo", "Certification": "\u200eUL Listed", "Type of Bulb": "\u200eHalogen", "Wattage": "\u200e40 watts", "ASIN": "B08DHS3TH5", "Customer Reviews": {"ratings_count": 35, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#234,631 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #1,052 in Vanity Lighting Fixtures"], "Date First Available": "July 23, 2020"}, "brand": "Visit the LALUZ Store", "brand_url": "https://www.amazon.com/stores/LALUZ/page/F339D644-AF8D-4EB6-B46B-A6CBD318CB26?ref_=ast_bln", "full_description": "LALUZ", "pricing": "$117.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Ak2sSeyRL.jpg", "https://m.media-amazon.com/images/I/51qpoiHSorL.jpg", "https://m.media-amazon.com/images/I/41DpfyF-YeL.jpg", "https://m.media-amazon.com/images/I/51eMJSM5u-L.jpg", "https://m.media-amazon.com/images/I/417NZzH09vL.jpg", "https://m.media-amazon.com/images/I/315PW1Bf7kL.jpg", "https://m.media-amazon.com/images/I/41sIy9AxqkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Vanity Lights", "average_rating": 4.5, "small_description": ["[ Classic & Modern ] The bathroom lights over mirror are defined by clean lines. Golden finish gives it an urban rustic appearance. Clear round glass shades give it a romance and elegance touch of mid-century. ", "[ Widely Usages ] The bathroom vanity light fixtures have a delightful appearance, making it a perfectly addition to your powder room, bathroom, entryway and bedroom. Just let it wake up your morning and company you to build a perfect makeup. ", "[ Perfect Size ] This bathroom light is 19.5\u201d in length, 6\u201d in width and 7.5\u201d in height, equipped with a canopy (5\u201d in diameter), coming with 3 clear glass shades. Just let the bathroom vanity light illuminate your places, decorate your home. ", "[ Easy Installation ] We have pre-assembled the bathroom lights, so just several simple assembly and installation steps are required. Wiring, screwing bulbs and shades in, then you can see how beautiful the bathroom lighting can be when shining. ", "[ Warm Tips ] This bathroom lighting fixtures over mirror are UL listed with 2 years warranty. Because of the unique glass shades, the vanity lighting requires 3\u00d7E12 Based regular incandescent bulbs (Max 40W). We recommend using E12 based Type B bulbs with this bathroom light fixture. "], "total_reviews": 35, "total_answered_questions": "", "model": "\u200ebathroom vanity light", "customization_options": "", "seller_id": "A2KSJDVYMJBVT9", "seller_name": "LALUZ LIGHTING", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08DHS3TH5", "category": "garden", "query": "Vanities", "page": 66, "small_description_old": "About this item [ Classic & Modern ] The bathroom lights over mirror are defined by clean lines. Golden finish gives it an urban rustic appearance. Clear round glass shades give it a romance and elegance touch of mid-century. [ Widely Usages ] The bathroom vanity light fixtures have a delightful appearance, making it a perfectly addition to your powder room, bathroom, entryway and bedroom. Just let it wake up your morning and company you to build a perfect makeup. [ Perfect Size ] This bathroom light is 19.5\u201d in length, 6\u201d in width and 7.5\u201d in height, equipped with a canopy (5\u201d in diameter), coming with 3 clear glass shades. Just let the bathroom vanity light illuminate your places, decorate your home. [ Easy Installation ] We have pre-assembled the bathroom lights, so just several simple assembly and installation steps are required. Wiring, screwing bulbs and shades in, then you can see how beautiful the bathroom lighting can be when shining. [ Warm Tips ] This bathroom lighting fixtures over mirror are UL listed with 2 years warranty. Because of the unique glass shades, the vanity lighting requires 3\u00d7E12 Based regular incandescent bulbs (Max 40W). We recommend using E12 based Type B bulbs with this bathroom light fixture. \n \u203a See more product details"}, {"name": "MIA Delena", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 13.9 x 7.9 x 4.8 inches; 1.5 Pounds", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n May 21, 2020", "ASIN\n \u200f": "\u200e\n B089234PQB", "Best Sellers Rank": "#1,620,916 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#24,496 in Women's Sandals", "#24,496 in Women's Sandals": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: MIA", "brand_url": "https://www.amazon.com/MIA/b/ref=bl_sl_s_sh_web_18203844011?ie=UTF8&node=18203844011&field-lbr_brands_browse-bin=MIA", "full_description": "", "pricing": "$21.89$55.08", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41K9TAZ-VML.jpg", "https://m.media-amazon.com/images/I/41lT+UVjNrL.jpg", "https://m.media-amazon.com/images/I/41fMMIioG9L.jpg", "https://m.media-amazon.com/images/I/41VCQNsP+dL.jpg", "https://m.media-amazon.com/images/I/418b4NXMkvL.jpg", "https://m.media-amazon.com/images/I/41oDxZjTMuL.jpg", "https://m.media-amazon.com/images/I/41oDxZjTMuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals", "average_rating": 4.6, "small_description": ["Synthetic upper ", "Ghillie lace-up closure ", "Lightly cushioned footbed ", "Jute-wrapped midsole ", "Lightly textured outsole "], "total_reviews": 7, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "6.5", "asin": "B089234PQB"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B088TWNTRB"}, {"is_selected": false, "is_available": false, "value": "7.5", "asin": "B0891Z9LGS"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B088TX6VRY"}, {"is_selected": false, "is_available": false, "value": "8.5", "asin": "B089231B1M"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B089234PQB/ref=twister_B0897DNRLW", "value": "Olive", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41kd1JMeYSL.jpg"}, {"is_selected": true, "url": null, "value": "Mustard", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41K9TAZ-VML.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B088TWNTRB", "category": "fashion", "query": "Women's Sandals", "page": 59, "small_description_old": "Made in USA or Imported From sneakers to stylish slip-ons, MIA Shoes are the best for all day comfort"}, {"name": "PONY DANCE Kitchen Curtain for Windows - Semi-Sheer Decorative Roman Shade for Bedroom Tie Up Blinds Short Window Covering, 42\" Wide by 45\" Long, Dark Blue, Set of 1", "product_information": {"Package Dimensions": "13.46 x 11.14 x 2.28 inches", "Item Weight": "12.8 ounces", "Manufacturer": "PONY DANCE", "ASIN": "B096RV56XP", "Country of Origin": "China", "Item model number": "PONY DANCE-Tie up shade", "Best Sellers Rank": ["#441,130 in Home & Kitchen (See Top 100 in Home & Kitchen) #32 in Balloon Window Shades #3,888 in Window Curtain Panels"], "Fabric Type": "100% Polyester", "Scent": "Unscented", "Material Care Instructions": "Machine Wash", "Batteries Required?": "No"}, "brand": "Visit the PONY DANCE Store", "brand_url": "https://www.amazon.com/stores/PONYDANCE/page/861E12AA-1A92-444C-93ED-48284279F3E5?ref_=ast_bln", "full_description": "", "pricing": "$16.95", "list_price": "", "availability_quantity": 20, "availability_status": "Only 20 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51aQ1mT1yHL.jpg", "https://m.media-amazon.com/images/I/51dg-9ZDE1L.jpg", "https://m.media-amazon.com/images/I/614XEUjbOqL.jpg", "https://m.media-amazon.com/images/I/61voP7mIavL.jpg", "https://m.media-amazon.com/images/I/61n1X8QUCTL.jpg", "https://m.media-amazon.com/images/I/61zBSCr6j6L.jpg", "https://m.media-amazon.com/images/I/91B4p95ZDyL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Window Treatments \u203a Blinds & Shades \u203a Balloon Shades", "average_rating": "", "small_description": ["Ready Made - Includes 1 Tie Up Shade measuring 42\"W by 45\"L. The WIDTH fit 40\" max window(the panels can't be fully unfolded due to grommet top). 1.6\"-inner diameter grommets fit most standard curtain rod/pole. ", "Elegant Design - Tie-ups at about 1/4 length of the blind from the top. Decorate windows with elegant ties and adjust the length of curtain easily according to the windows' height or your preference. ", "Good Performance - Sheer ballon shade is made of 100% polyester linen texture fabric, protect privacy from outside. Perfect for windows in the kitchen, living room, bathroom, bedroom... ", "Various Styles - The tie-up shades can be stylized with beautiful ties or without them. Decorate your home elegantly with the unique design. ", "Care Instruction - Machine washable, no bleaching, hang to dry, warm iron if needed. Welcome to our store to find out many more curtains and draperies. "], "total_reviews": "", "total_answered_questions": "", "model": "PONY DANCE-Tie up shade", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "42\"W x 45\"L", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096RY1LVZ/ref=twister_B09N3GVT82?_encoding=UTF8&psc=1", "value": "42\"W x 54\"L", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933HCY1L/ref=twister_B09N3GVT82", "value": "52\"W x 45\"L", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933FSNZJ/ref=twister_B09N3GVT82", "value": "52\"W x 54\"L", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933J2HR3/ref=twister_B09N3GVT82?_encoding=UTF8&psc=1", "value": "52\"W x 63\"L", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933J2HR5/ref=twister_B09N3GVT82", "value": "52\"W x 72\"L", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933GHQJ1/ref=twister_B09N3GVT82?_encoding=UTF8&psc=1", "value": "52\"W x 84\"L", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933FYS1W/ref=twister_B09N3GVT82?_encoding=UTF8&psc=1", "value": "52\"W x 96\"L", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933JQSHP/ref=twister_B09N3GVT82?_encoding=UTF8&psc=1", "value": "52\"W x 108\"L", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B096RZHD21/ref=twister_B09N3GVT82?_encoding=UTF8&psc=1", "value": "Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/510j2dBnD+S.jpg"}, {"is_selected": true, "url": null, "value": "Dark Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61h1ckP03YS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096RZRCF7/ref=twister_B09N3GVT82?_encoding=UTF8&psc=1", "value": "Dove Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61LEWH5535S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B096RXLKFZ/ref=twister_B09N3GVT82?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41h1Tg-5OXS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933GV2NX/ref=twister_B09N3GVT82", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61fI4juvbZS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933GZ9FD/ref=twister_B09N3GVT82", "value": "Charcoal Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61BXN5OceCS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933F7KBW/ref=twister_B09N3GVT82", "value": "Dusty Blush", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51rVMZgoVFS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933FPKJN/ref=twister_B09N3GVT82", "value": "Ivory", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41RDr+I1QbS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0933GKHF1/ref=twister_B09N3GVT82", "value": "Sea Mist", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61t52bWxnRS.jpg"}]}, "seller_id": "ABNEFWLI5HHKP", "seller_name": "PONY DANCE", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B096RV56XP", "category": "garden", "query": "Window Coverings", "page": 21, "small_description_old": "About this item 100% Polyester Ready Made - Includes 1 Tie Up Shade measuring 42\"W by 45\"L. The WIDTH fit 40\" max window(the panels can't be fully unfolded due to grommet top). 1.6\"-inner diameter grommets fit most standard curtain rod/pole. Elegant Design - Tie-ups at about 1/4 length of the blind from the top. Decorate windows with elegant ties and adjust the length of curtain easily according to the windows' height or your preference. Good Performance - Sheer ballon shade is made of 100% polyester linen texture fabric, protect privacy from outside. Perfect for windows in the kitchen, living room, bathroom, bedroom... Various Styles - The tie-up shades can be stylized with beautiful ties or without them. Decorate your home elegantly with the unique design. Care Instruction - Machine washable, no bleaching, hang to dry, warm iron if needed. Welcome to our store to find out many more curtains and draperies."}, {"name": "BAYCHEER Tiffany Style Stained Glass Bowl Shade Pendant Light Chandelier Decorative Hanging Lamp Pendant Lighting Adjustable Ceiling Fixture with Pull Chain 3 Lights for Living Room Dining Room", "product_information": {"Brand": "\u200eBAYCHEER", "Manufacturer": "\u200eBAYCHEER", "Part Number": "\u200e533053", "Item Weight": "\u200e6.6 pounds", "Package Dimensions": "\u200e20.3 x 20 x 16.2 inches", "Item model number": "\u200e533053", "Style": "\u200eTiffany", "Color": "\u200eE", "Shape": "\u200eBowl", "Material": "\u200eGlass", "Number of Lights": "\u200e1", "Voltage": "\u200e110 Volts", "Special Features": "\u200eNot Dimmable", "Shade Material": "\u200eGlass", "Light Direction": "\u200eUp/Down Light", "Power Source": "\u200eHardwire", "Switch Installation Type": "\u200eHanging", "Type of Bulb": "\u200eLED/Incandescent/Fluorescent", "Wattage": "\u200e60 watts", "ASIN": "B0854JTZMT", "Customer Reviews": {"ratings_count": 3, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#383,938 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #2,954 in Pendant Light Fixtures"], "Date First Available": "February 24, 2020"}, "brand": "Visit the BAYCHEER Store", "brand_url": "https://www.amazon.com/stores/BAYCHEER/page/7BA5389C-B783-4B58-8D83-9428F5D42322?ref_=ast_bln", "full_description": "Light Information Category: Chandeliers Lighting Theme: Period Lighting Styles: Victorian Shape: Dome Dimensions Canopy Width: 4\" (11 cm) Chain/cord Length: 19.5\" (50 cm) Shade Height: 8\" (21 cm) Shade Width: 16\" (40 cm) Shipping Weight: 3KG Chain/cord Adjustable Or Not: Chain/Cord Adjustable Bulb Information Bulb Base: E26/E27 Number Of Lights: 3 Lights Bulb Included Or Not: Bulb Not Included Wattage Per Bulb: Max 60W Bulb Type: LED/Incandescent/Fluorescent Color Finishes: Mutil-colored Others Colors: Yellow, Mutil-colored Materials: Art Glass, Metal Switch Types: Pull Chain, Hardwired Setting: Dining Room Lighting, Living Room Lighting, Bedroom Lighting Product Features: Switched Lighting Types: General Lighting", "pricing": "$169.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41lbxWcaUhL.jpg", "https://m.media-amazon.com/images/I/41pHd3JOBsL.jpg", "https://m.media-amazon.com/images/I/51Jxahv74WL.jpg", "https://m.media-amazon.com/images/I/51AeO8VZYhL.jpg", "https://m.media-amazon.com/images/I/61AKYm1GzuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Pendant Lights", "average_rating": 4.6, "small_description": ["Tiffany-style glass, assembled using the copper solder technique. ", "Pendant lighting fit in Bedroom, Study Room, Living Room,Restaurant, Hotel\u00a1\u00ea?Hallway ,Stairway ,Balcony ,Cloakroom and so on. ", "Special Style: The unique design comes with an Pull Chain to create a beautiful pendant lamp decor on your wall, the Edison LED light is also great with a sufficient amount of lighting, eye protection. ", "Handmade Lamp Shade with Colorful Design, Romantic and soft lighting,Tiffany glass lamps are considered part of the Art Nouveau movement,it is not only home furnishing,but also can be kept as collectibles. "], "total_reviews": 3, "total_answered_questions": "", "model": "\u200e533053", "customization_options": "", "seller_id": "A42Y74NIMB22L", "seller_name": "BAYCHEER", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0854JTZMT", "category": "garden", "query": "Pendants and Chandeliers", "page": 47, "small_description_old": "About this item Tiffany-style glass, assembled using the copper solder technique. Pendant lighting fit in Bedroom, Study Room, Living Room,Restaurant, Hotel\u00a1\u00ea?Hallway ,Stairway ,Balcony ,Cloakroom and so on. Special Style: The unique design comes with an Pull Chain to create a beautiful pendant lamp decor on your wall, the Edison LED light is also great with a sufficient amount of lighting, eye protection. Handmade Lamp Shade with Colorful Design, Romantic and soft lighting,Tiffany glass lamps are considered part of the Art Nouveau movement,it is not only home furnishing,but also can be kept as collectibles. \n \u203a See more product details"}, {"name": "10 Packs Hair Storage Carrying Bags Big Satin Drawstring Pouches Gift Bag for Hair Extentions, Bundles, Wigs, Hair Tools (Rose red)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.46 x 10.75 x 1.42 inches; 10.58 Ounces", "Manufacturer\n \u200f": "\u200e\n Sanmum", "ASIN\n \u200f": "\u200e\n B08PFRP4RN", "Best Sellers Rank": "#328,579 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#5,226 in Cosmetic Bags", "#5,226 in Cosmetic Bags": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Sanmum", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Sanmum", "full_description": "Description: You can get a lot of things into the bags with the very big size, not only the gifts, but also the daily small clothes, needle things or used as the knitting organization bag. It is perfect for hair bundles, wigs, gift wrapping, kitting bags, toys, small clothes bags, birthday, parties, celebrations, business and so on. The drawstring design offers your great convenience to carry or open the bag, and it can hold hair bundles, wigs or any other items. These were made to ensure and remain robust and durable for repeated use. Material: satin fabric Size: approx. 15.5 inch x 11.5 inch (40x30cm) Package includes: 10x Wig storage bags", "pricing": "$17.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41D9NFXqxXL.jpg", "https://m.media-amazon.com/images/I/41WlvQYjykL.jpg", "https://m.media-amazon.com/images/I/41EoXoGlVgL.jpg", "https://m.media-amazon.com/images/I/41l+DLO7Z9L.jpg", "https://m.media-amazon.com/images/I/411u+mMenVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Cosmetic Bags", "average_rating": 4.7, "small_description": ["Size: Approx. 15.5x11.5 Inch(40x30cm), Each Bag Can Hold 5-8 Bundles or 1-3 wigs, 10 Pieces/Package ", "High Quality: The bag is made of smooth satin fabric, very lightweight and ultra soft. Very convenient to carry wigs when travel. ", "Drawstring Design: These silky satin bags are designed with two flat satin drawstrings at the both end for secure keeping. Making the bags open or close conveniently. And it is very easy for you to carry your items in them with these two strings. ", "Application: Perfect for storaging hair bundles, wigs, gift wrapping, kitting bags, toys, birthday, parties, celebrations, business and so on. Keep Your Wig Protected, Safe, and Secure While You Travel. ", "Versatile: You can get a lot of things into the bags with the very big size, not only the gifts, but also the daily small clothes, needle things or used as the knitting organization bag. "], "total_reviews": 9, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B091HGLM7W/ref=twister_B08PFPMW12?_encoding=UTF8&psc=1", "value": "5pcs Black+5pcs Rose red", "price_string": "$19.99", "price": 19.99, "image": "https://m.media-amazon.com/images/I/51LMteue4+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PFSC8ZG/ref=twister_B08PFPMW12?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$18.99", "price": 18.99, "image": "https://m.media-amazon.com/images/I/41tF0IyV6OL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B091TQXJ6D/ref=twister_B08PFPMW12?_encoding=UTF8&psc=1", "value": "Purple", "price_string": "$17.99", "price": 17.99, "image": "https://m.media-amazon.com/images/I/41qJEnvKYkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B091TT9XK9/ref=twister_B08PFPMW12?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$17.99", "price": 17.99, "image": "https://m.media-amazon.com/images/I/41aua27qGjL.jpg"}, {"is_selected": true, "url": null, "value": "Rose red", "price_string": "$17.99", "price": 17.99, "image": "https://m.media-amazon.com/images/I/41D9NFXqxXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KTWVT1V/ref=twister_B08PFPMW12?_encoding=UTF8&psc=1", "value": "Yellow", "price_string": "$19.99", "price": 19.99, "image": "https://m.media-amazon.com/images/I/41r5N1wKA2L.jpg"}]}, "seller_id": "A2GCHPLGEGL6N0", "seller_name": "Sanmum-shop", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08PFRP4RN", "category": "beauty", "query": "Hair Extensions, Wigs & Accessories", "page": 48, "small_description_old": "About this item Size: Approx. 15.5x11.5 Inch(40x30cm), Each Bag Can Hold 5-8 Bundles or 1-3 wigs, 10 Pieces/Package High Quality: The bag is made of smooth satin fabric, very lightweight and ultra soft. Very convenient to carry wigs when travel. Drawstring Design: These silky satin bags are designed with two flat satin drawstrings at the both end for secure keeping. Making the bags open or close conveniently. And it is very easy for you to carry your items in them with these two strings. Application: Perfect for storaging hair bundles, wigs, gift wrapping, kitting bags, toys, birthday, parties, celebrations, business and so on. Keep Your Wig Protected, Safe, and Secure While You Travel. Versatile: You can get a lot of things into the bags with the very big size, not only the gifts, but also the daily small clothes, needle things or used as the knitting organization bag."}, {"name": "smaate 3D Screen Protector Compatible with CS201 CS201C Smartwatch MorePro 1.4inch and Kalinco Zoskvee UXD FITVII 1.3inch, 3-Pack, Square, Full Coverage, Curved Edge frame, Anti-shatter, Anti-scratch", "product_information": {"Package Dimensions": "3.82 x 3.74 x 0.59 inches", "Item Weight": "0.634 ounces", "ASIN": "B09JJWGGD9", "Item model number": "3DCS201PTR8", "Customer Reviews": {"ratings_count": 10, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#55,272 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #700 in Smartwatch Screen Protectors"], "Special Features": "Anti-Shatter", "Colour": "Black", "Manufacturer": "SMAATE", "Country of Origin": "China", "Date First Available": "October 15, 2021"}, "brand": "Visit the smaate Store", "brand_url": "https://www.amazon.com/stores/smaate/page/0CCED6A2-42E6-4DEC-BD2F-B71C923FA388?ref_=ast_bln", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41IX-Yt6pbL.jpg", "https://m.media-amazon.com/images/I/51wAeBK4RJL.jpg", "https://m.media-amazon.com/images/I/41nUWaRciML.jpg", "https://m.media-amazon.com/images/I/51BbCkKLeFL.jpg", "https://m.media-amazon.com/images/I/51820T-H+3L.jpg", "https://m.media-amazon.com/images/I/51ihWfjIEqL.jpg", "https://m.media-amazon.com/images/I/51fYDZnfqJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Smartwatch Accessories \u203a Smartwatch Screen Protectors", "average_rating": 4.7, "small_description": ["3D Screen protectors Compatible with Compatible with CS201 CS201C Zeroner Health Pro Smartwatch MorePro 1.4inch and Kalinco Zoskvee UXD 1.3inch, you must make sure your watch model number is same before buying ", "You must watch the instruction video here and read the instruction manual before you install the protector to watch\u2019s screen ", "3D Full covered screen protector: PMMA material, Fully Protect the screen of smart watch ", "HIGH SENSITIVITY: you can touch and control the screen fast and easily ", "HIGH TRANSPARENCY: you can see the screen display clearly ", "EASY INSTALLATION: If there are bubbles under the protector, please just peel off the protector and install it again ", "If you find that the bubbles appear again in the second day, you can put the watch on the table, with the screen side down. Then you put some heavy books on back of the watch, after 12 hours, the protector will keep on the screen tightly, bubbles will not appear again ", "If you finally finish all the proctors and still fail, please send message to smaate support in Amazon, they will supply fast and professional solution for you "], "total_reviews": 10, "total_answered_questions": "", "model": "3DCS201PTR8", "customization_options": {"Color": null}, "seller_id": "A3QCDLSUQX4XF2", "seller_name": "Smaate-US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09JJWGGD9", "category": "electronics", "query": "Screen Protectors", "page": 273, "small_description_old": "About this item 3D Screen protectors Compatible with Compatible with CS201 CS201C Zeroner Health Pro Smartwatch MorePro 1.4inch and Kalinco Zoskvee UXD 1.3inch, you must make sure your watch model number is same before buying You must watch the instruction video here and read the instruction manual before you install the protector to watch\u2019s screen 3D Full covered screen protector: PMMA material, Fully Protect the screen of smart watch HIGH SENSITIVITY: you can touch and control the screen fast and easily HIGH TRANSPARENCY: you can see the screen display clearly EASY INSTALLATION: If there are bubbles under the protector, please just peel off the protector and install it again If you find that the bubbles appear again in the second day, you can put the watch on the table, with the screen side down. Then you put some heavy books on back of the watch, after 12 hours, the protector will keep on the screen tightly, bubbles will not appear again If you finally finish all the proctors and still fail, please send message to smaate support in Amazon, they will supply fast and professional solution for you"}, {"name": "Revita Tablets Hair Growth Vitamins by DS Laboratories, Supports Healthy Hair and Nails in Women and Men, Hair Loss & Hair Thinning Supplement, Biotin, Vitamin D, Iron, 90 Day Supply", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 4.49 x 4.45 x 3.23 inches; 3.88 Ounces", "Manufacturer\n \u200f": "\u200e\n DS Laboratories", "ASIN\n \u200f": "\u200e\n B082WKKPDH", "Best Sellers Rank": "#463,703 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,129 in Hair Regrowth Treatments", "#2,129 in Hair Regrowth Treatments": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the DS LABORATORIES Store", "brand_url": "https://www.amazon.com/stores/DS+Laboratories/page/B21595AE-0435-4E8D-9BDC-7AFC34FAF756?ref_=ast_bln", "full_description": "Revita hair growth support tablets is a nutraceutical featuring a unique blend of clinically effective ingredients shown to improve hair growth and quality. Our proprietary blend features Zinc, which promotes protein synthesis and helps protect against oxidative damage, along with Biotin, which converts nutrients to energy and aids in the maintenance of hair. Keratin provides strength and improves hair flexibility while iron delivers oxygen to the hair root and helps reduce hair fallout, promoting healthier hair growth.", "pricing": "$96.00", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/417nXx0tPZL.jpg", "https://m.media-amazon.com/images/I/31DW+RsiKAL.jpg", "https://m.media-amazon.com/images/I/31iOrGtph+L.jpg", "https://m.media-amazon.com/images/I/41Xry24g5eL.jpg", "https://m.media-amazon.com/images/I/51SVt0keg6L.jpg", "https://m.media-amazon.com/images/I/41gQdjZKcFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Loss Products \u203a Hair Regrowth Treatments", "average_rating": 4.2, "small_description": ["1 Tablet a Day for Thicker, Fuller Hair: Revita Tablets are ideal for those concerned with hair loss, thinning hair, or excessive shedding. Our dietary supplement works on alopecia related factors such as oxidative damage, hormones, stress, and poor nutrition. With just 1 tablet a day you'll experience stronger, healthier hair growth. ", "Hair Growth Tablets for Women and Men: Our hair growth supplement for men and women is formulated to improve strength, texture, shine, and manageability of hair. Our formula is suitable for all hair types. ", "Reduce Hair Loss and Hair Thinning: Our hair growth supplement works from the inside out to promote healthier, stronger hair growth. It also helps to reduce future hair loss. ", "Effective Ingredients: Revita hair growth tablets feature a unique blend of ingredients that stimulate hair growth and improve quality. Our proprietary blend features Zinc to protect against oxidative damage, Biotin to aid in the maintenance of hair and Keratin to strengthen and improve flexibility. ", "How To Use: Take 1 Tablet a day at night preferably with a meal. For best results use within a full routine in combination with Revita Shampoo and Conditioner. See growth and fuller, thicker hair within 90 days of consistent use. *Results may vary. "], "total_reviews": 16, "total_answered_questions": "", "customization_options": "", "seller_id": "A1NB823A4GC6HZ", "seller_name": "DSLaboratories", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B082WKKPDH", "category": "beauty", "query": "Hair Loss Products", "page": 110, "small_description_old": "About this item Natural Hair Growth: Revita Tablets for hair growth and thinning hair are a dietary supplement that work on alopecia related factors such as oxidative damage, hormones, stress, and poor nutrition. Just 1 tablet a day supports healthier, fuller, longer hair. Healthy, Hair Growth Support: Designed to improve strength, texture, shine, and manageability of hair. Reduce Hair Loss and Hair Thinning: Our hair growth supplement works in the regrowth of hair, but also helps to reduce future hair loss. Our proprietary formula takes action from the inside out allowing you to achieve thicker, fuller, healthier hair. Effective Ingredients: Revita hair growth tablets feature a unique blend of ingredients that stimulate hair growth and improve quality. Our proprietary blend features Zinc to protect against oxidative damage, Biotin to aid in the maintenance of hair and Keratin to strengthen and improve flexibility. Nanosome Technology: DS Laboratories formulas feature our proprietary Nanosome Technology. This technology used for encapsulation allows for the continuous release of the active ingredients creating higher efficacy with longer lasting results."}, {"name": "Oculus Link Cable 16ft(5m), Recuown Oculus Quest 2 Link Cable, USB 3.2 Gen 1 Type A to C Cable, High Speed Data Transfer & Fast Charging Compatible with Oculus Quest / Quest 2 VR Headset and Gaming PC", "product_information": {"Package Dimensions": "8.7 x 6.46 x 2.05 inches", "Item Weight": "8.1 ounces", "ASIN": "B07H5GWRL4", "Customer Reviews": {"ratings_count": 19, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#65,715 in Video Games (See Top 100 in Video Games) #1,043 in PC Virtual Reality Headsets"], "Is Discontinued By Manufacturer": "No", "Date First Available": "February 4, 2021", "Manufacturer": "Recuown"}, "brand": "Brand: Recuown", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Recuown", "full_description": "Oculus Quest 2 Link Cable 16FT Compatible with Oculus Quest and Quest 2 Choose the cable that professional gamers trust the most! Specifications: Color: Black Length: 5 Meters/16FT Data Transfer Speed: Up to 5Gbps Material: TPE Interface: Type A to C Support Charge: Yes Current: 3A Packing includes: 16FT USB 3.2 Gen 1 Type A to C Oculus Quest Link Cable *1 How to use it: 1.Plug the USB C end of the Oculus link cable into Quest / Quest 2 headset, then make sure to plug the other end of the cable into USB 3.0 or above specifications slot on the motherboard to ensure optimal performance. 2.Make sure you have the latest Oculus Home App software. Note: This product is for the cable only and does not come with an Oculus Quest VR device.", "pricing": "$19.99", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/417RX8o5cSS.jpg", "https://m.media-amazon.com/images/I/51772cCHzUL.jpg", "https://m.media-amazon.com/images/I/51DUgj7h7+L.jpg", "https://m.media-amazon.com/images/I/51XUwkwkS6L.jpg", "https://m.media-amazon.com/images/I/41P3Ie13KlL.jpg", "https://m.media-amazon.com/images/I/51Pmq5kR6kL.jpg", "https://m.media-amazon.com/images/I/51AXRHdQ3IL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a PC \u203a Virtual Reality \u203a Headsets", "average_rating": 4.1, "small_description": ["\u3010Oculus Quest 2 Link Cable\u3011Perfect compatibility for Oculus Quest and Quest 2.The Oculus cable connects your Oculus Quest and Quest 2 to a gaming PC,you can enjoy your PC VR gaming time while simultaneously powering the Quest headset. ", "\u301016FT Optimal Length\u3011The Oculus link cable reaches 16 feet(5M),enables long-distance data transferring but not losing the signal,good flexibility while maintaining a consistent and robust connection.This lightweight and durable link cable is your best choice. ", "\u3010USB 3.2 Gen 1 Data Transfer\u3011The Quest link cable compatible with USB 3.2 gen 1,you can enjoy lightning-fast syncing connects Oculus Link Program with no lag.Please make sure to plug it into USB 3.0 or above specifications slot on the motherboard to ensure optimal performance. ", "\u301090 Degree Angle Friendly Design\u3011The USB C adopts a 90-degree bend design,and the Quest cable comes with a Velcro strap that you can use to hold it firmly on your Oculus Quest VR headset. ", "\u3010Wide Compatibility\u3011In addition to connecting Oculus Quest to your PC, it is also suitable for extended connection of USB device interfaces. ", "\u3010What You Get\u3011High quality USB-IF Certified Oculus Quest Link Cable 16FT *1,our worry-free WARRANTY and life-time customer service. "], "total_reviews": 19, "total_answered_questions": 6, "customization_options": "", "seller_id": "A2E326JD9IJWSF", "seller_name": "Hywanvest", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07H5GWRL4", "category": "electronics", "query": "Virtual Reality", "page": 263, "small_description_old": "About this item\n \n\u3010Oculus Quest 2 Link Cable\u3011Perfect compatibility for Oculus Quest and Quest 2.The Oculus cable connects your Oculus Quest and Quest 2 to a gaming PC,you can enjoy your PC VR gaming time while simultaneously powering the Quest headset. \u301016FT Optimal Length\u3011The Oculus link cable reaches 16 feet(5M),enables long-distance data transferring but not losing the signal,good flexibility while maintaining a consistent and robust connection.This lightweight and durable link cable is your best choice. \u3010USB 3.2 Gen 1 Data Transfer\u3011The Quest link cable compatible with USB 3.2 gen 1,you can enjoy lightning-fast syncing connects Oculus Link Program with no lag.Please make sure to plug it into USB 3.0 or above specifications slot on the motherboard to ensure optimal performance. \u301090 Degree Angle Friendly Design\u3011The USB C adopts a 90-degree bend design,and the Quest cable comes with a Velcro strap that you can use to hold it firmly on your Oculus Quest VR headset. \u3010Wide Compatibility\u3011In addition to connecting Oculus Quest to your PC, it is also suitable for extended connection of USB device interfaces. \u3010What You Get\u3011High quality USB-IF Certified Oculus Quest Link Cable 16FT *1,our worry-free WARRANTY and life-time customer service."}, {"name": "InterestPrint Gold Horse Pattern Men's 2-Piece Sleepwear Set, Long Sleeve Shirt with Pants Loungewear", "product_information": {"Item Weight\n \u200f": "\u200e\n 1.28 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 10, 2021", "Manufacturer\n \u200f": "\u200e\n InterestPrint", "ASIN\n \u200f": "\u200e\n B09NDBK6HY", "": ""}, "brand": "Visit the InterestPrint Store", "brand_url": "https://www.amazon.com/stores/InterestPrint/page/C4D01415-68A2-43C9-9276-762A7B2F1F7D?ref_=ast_bln", "full_description": "Two-Piece Men's All Over Print Pajama Set Comfortable Fit: This sleepwear is made of 100% polyester.The comfortable and smooth fabric is durable and feels great on the skin. Pajama has good air permeability ensures every moment is as comfy as can be and keep warm without overheating. Well-fitting Yet Loose Style: Men's pajama set includes long sleeve tee and full length trousers, breathable, extra-soft, and comfortably warm. The top of pajama sets is pullover round neck design, you can easily dress without much hassle. The trousers of pajama sets has elastic waistband and leg-retracting designs for easy relaxation. Warm Tips: Sizes: S, M, L, XL, 2XL.Please calculate your size from the measurement chart for perfect fit. Garment care: Machine wash. Hand wash in cold water is recommended. Line dry, do not bleach or dry clean.", "pricing": "$43.59", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41kEp7XJz7L.jpg", "https://m.media-amazon.com/images/I/41sGkkMsPUL.jpg", "https://m.media-amazon.com/images/I/41MgNTOfxkL.jpg", "https://m.media-amazon.com/images/I/41doRj0tSmL.jpg", "https://m.media-amazon.com/images/I/31YCHtYvraL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Sleep & Lounge \u203a Sleep Sets", "average_rating": "", "small_description": ["100% Polyester ", "Sizes: S, M, L, XL, 2XL.Please calculate your size from the measurement chart for perfect fit. ", "This mens casual sleepwear made from 100% polyester - feels great on the skin and provides warm whenever in use. ", "The pajama set for men includes long-sleeve round neck tee and elastic waistband trousers, well-fitting yet loose. ", "Suitable as home wear, lounge set, sleepwear set, nightwear for relaxing in the house or getting a great night sleep. ", "Perfect for you as daily wear or you can gift it as holiday, birthday present for your dad, brothers or friends. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09NDBD66C"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09ND8YQK9"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09ND9DP7J"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09ND9PSBV"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09ND8LRZJ"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09ND8HH5M/ref=twister_B09ND9W7CC", "value": "Multi 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41OVvDihIuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND8M41Q/ref=twister_B09ND9W7CC", "value": "Multi 10", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hdbHiI6QL.jpg"}, {"is_selected": true, "url": null, "value": "Multi 2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41kEp7XJz7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NDB83HR/ref=twister_B09ND9W7CC", "value": "Multi 3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41p8NEPHcpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND98L3B/ref=twister_B09ND9W7CC", "value": "Multi 5", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41pl694yeVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NDBDJXV/ref=twister_B09ND9W7CC", "value": "Multi 6", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Px2mbi9lL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND9Z617/ref=twister_B09ND9W7CC", "value": "Multi 7", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41bU3uJe6LL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND9DZ35/ref=twister_B09ND9W7CC", "value": "Multi 8", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41V4dAl+saL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND8QRFF/ref=twister_B09ND9W7CC", "value": "Multi 9", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hgNShWooL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09ND94HVM/ref=twister_B09ND9W7CC", "value": "Multi 4", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41vmL9Nx8oL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09ND9DP7J", "category": "fashion", "query": "Men's Sleep & Lounge", "page": 43, "small_description_old": "100% Polyester Sizes: S, M, L, XL, 2XL.Please calculate your size from the measurement chart for perfect fit. This mens casual sleepwear made from 100% polyester - feels great on the skin and provides warm whenever in use. The pajama set for men includes long-sleeve round neck tee and elastic waistband trousers, well-fitting yet loose. Suitable as home wear, lounge set, sleepwear set, nightwear for relaxing in the house or getting a great night sleep. Perfect for you as daily wear or you can gift it as holiday, birthday present for your dad, brothers or friends."}, {"name": "Naturtint Permanent Hair Color 6G Dark Golden Blonde (Pack of 1), Ammonia Free, Vegan, Cruelty Free, up to 100% Gray Coverage, Long Lasting Results", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 6.89 x 3.39 x 2.24 inches; 5.6 Ounces", "Item model number\n \u200f": "\u200e\n 6.61176E+11", "UPC\n \u200f": "\u200e\n 661176010103 796433459200", "Manufacturer\n \u200f": "\u200e\n Naturtint", "ASIN\n \u200f": "\u200e\n B005P0T90C", "Best Sellers Rank": "#139,436 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,329 in Hair Color", "#1,329 in Hair Color": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Naturtint Store", "brand_url": "https://www.amazon.com/stores/Naturtint/page/71541D1D-6EC3-4D24-BE37-0F414E558A78?ref_=ast_bln", "full_description": "Naturtint Permanent Hair Color is the first permanent hair color certified by the USDA BioPreferred program, exceeding minimum USDA certified biobased content for hair styling products by using less petroleum-derived and more naturally derived substitutes. The same amazing colors you love, but now with a 100% naturally derived propylene glycol alternative. Everything you need to color is included in each kit, and now with the all-new 1.69-fluid ounce tube of the Naturtint Quinoa Multi-care Mask proven to nourish and help increase color retention by up to 20%! Created by an independently owned, woman-run company in Madrid, Spain, Naturtint has been the leader in scientifically innovative hair color and cleaner hair care for over 25 years. Naturtint\u2019s botanical-inspired formulas contain only the highest quality ingredients and are designed to deliver and maintain radiant color and shine.", "pricing": "$13.60", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon. In Stock.", "images": ["https://m.media-amazon.com/images/I/51V1eVEBtUL.jpg", "https://m.media-amazon.com/images/I/51LpxJ4GD4L.jpg", "https://m.media-amazon.com/images/I/51jSaRto7vL.jpg", "https://m.media-amazon.com/images/I/51flUnQBL6L.jpg", "https://m.media-amazon.com/images/I/513RDJZowhL.jpg", "https://m.media-amazon.com/images/I/51pAMIJE+QL.jpg", "https://m.media-amazon.com/images/I/71uNpPuMXLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Coloring Products \u203a Hair Color", "average_rating": 4.4, "small_description": ["Easily apply from the comfort of your home. ", "Achieve unbeatable color, softness, and shine! ", "Formulated with high-quality ingredients for the very best results. ", "92% naturally derived using the ISO 16128 global standard. ", "No ammonia, no artificial fragrance, no parabens. ", "Forever Cruelty-free and Vegan. "], "total_reviews": 63, "total_answered_questions": "", "customization_options": "", "seller_id": "A3S3UA1JLT4HN5", "seller_name": "Heartland Mart", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B005P0T90C", "category": "beauty", "query": "Hair Coloring Products", "page": 98, "small_description_old": "About this item Easily apply from the comfort of your home. Achieve unbeatable color, softness, and shine! Formulated with high-quality ingredients for the very best results. 92% naturally derived using the ISO 16128 global standard. No ammonia, no artificial fragrance, no parabens. Up to 100% gray coverage. Forever Cruelty-free and Vegan."}, {"name": "Clarks Women's Un Adorn Sling Sandal", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.6 x 8.2 x 4 inches; 1.2 Pounds", "Item model number\n \u200f": "\u200e\n 26148269", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n September 3, 2019", "Manufacturer\n \u200f": "\u200e\n Clarks", "ASIN\n \u200f": "\u200e\n B07XBRF319", "Best Sellers Rank": "#220,424 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#652 in Women's Platform & Wedge Sandals", "#652 in Women's Platform & Wedge Sandals": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Clarks Store", "brand_url": "https://www.amazon.com/stores/Clarks/page/6E7F4396-6004-497C-B702-21B18368E819?ref_=ast_bln", "full_description": "This stylish slingback features an EVA insole and durable rubber outsole that ensures traction and cushioning. The hook-and-loop closure provides a secure fit. Looks great with denim or shorts for all your summer plans.", "pricing": "$34.99$99.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31vcfnQDItL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals \u203a Platforms & Wedges", "average_rating": 4.3, "small_description": ["Heel measures approximately 1.37\" ", "Comfort Features: Ortholite Footbed, Smooth Leather Linings, Durable Rubber Outsole, EVA Midsole, Arch Support ", "Adjustable Hook and Loop Straps ", "Premium Nubuck and Leather "], "total_reviews": 114, "total_answered_questions": 3, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "5", "asin": "B07X9RT1QZ"}, {"is_selected": false, "is_available": true, "value": "5.5", "asin": "B07XCVM2DV"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B07XCVK9YZ"}, {"is_selected": false, "is_available": true, "value": "6 Wide", "asin": "B07XDTTRQD"}, {"is_selected": false, "is_available": false, "value": "6.5 Wide", "asin": "B07X9RSVJD"}, {"is_selected": false, "is_available": false, "value": "7", "asin": "B07XCVL967"}, {"is_selected": false, "is_available": true, "value": "7 Wide", "asin": "B07X8N2LND"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B07XCVLTQX"}, {"is_selected": false, "is_available": false, "value": "7.5 Wide", "asin": "B07XDWRF4M"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B07X8N3M9L"}, {"is_selected": false, "is_available": false, "value": "8 Wide", "asin": "B07X8N1L4L"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B07X9RTGYV"}, {"is_selected": false, "is_available": true, "value": "8.5 Wide", "asin": "B07XDY99LT"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B07XDRVVYM"}, {"is_selected": false, "is_available": true, "value": "9 Wide", "asin": "B07X9RSNRP"}, {"is_selected": false, "is_available": false, "value": "10", "asin": "B07XBRFCYJ"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B07X8N38NH"}, {"is_selected": false, "is_available": false, "value": "11 Wide", "asin": "B07XDW3D27"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07XDW3D27/ref=twister_B09KHB1J4L", "value": "Taupe Metallic Combi", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ypSKYNaWL.jpg"}, {"is_selected": true, "url": null, "value": "Black Combi", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31vcfnQDItL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X8N2BNV/ref=twister_B09KHB1J4L", "value": "Navy Combi", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41dEHNLrrDL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07XDRVVYM", "category": "fashion", "query": "Women's Sandals", "page": 11, "small_description_old": "Rubber sole Heel measures approximately 1.37\" Comfort Features: Ortholite Footbed, Smooth Leather Linings, Durable Rubber Outsole, EVA Midsole, Arch Support Adjustable Hook and Loop Straps Premium Nubuck and Leather"}, {"name": "OMEALS Pasta Fagioli Six Vegetarian MRE Sustainable Premium Outdoor Fully Cooked Meals w/Heater - Extended Shelf Life - No Refrigeration - Perfect for Travelers, Emergency Supplies - USA 6 Pack", "product_information": {"Manufacturer\n \u200f": "\u200e\n OMEALS", "ASIN\n \u200f": "\u200e\n B097F54DT8", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#495,346 in Sports & Outdoors (See Top 100 in Sports & Outdoors)#279,666 in Outdoor Recreation (Sports & Outdoors)", "#279,666 in Outdoor Recreation (Sports & Outdoors)": ""}, "brand": "Brand: OMEALS", "brand_url": "https://www.amazon.com/OMEALS/b/ref=bl_dp_s_web_23712392011?ie=UTF8&node=23712392011&field-lbr_brands_browse-bin=OMEALS", "full_description": "OMEALS Pasta Fagioli-Vegetarian-MRE-Extended Shelf Life-Fully Cooked w/Heater-Perfect for Outdoor Enthusiasts, Travelers, Emergency Supplies-USA Made", "pricing": "$64.99", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/61zNAE551hL.jpg", "https://m.media-amazon.com/images/I/51iMmo1Ca2L.jpg", "https://m.media-amazon.com/images/I/51KO5c-fSwL.jpg", "https://m.media-amazon.com/images/I/61lcO02wENL.jpg", "https://m.media-amazon.com/images/I/61uS5Y757mL.jpg", "https://m.media-amazon.com/images/I/51JUC0wTByL.jpg", "https://m.media-amazon.com/images/I/61coFU9V+uL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Sports & Outdoors \u203a Outdoor Recreation", "average_rating": "", "small_description": ["HOMESTYLE & WHOLESOME: Pasta Fagioli-vegetarian, healthy & delicious--never frozen or freeze dried. Hearty pasta, savory marinara, vegetarian soy crumbles, beans and parmesan cheese. All natural, high in fiber, low in cholesterol and zero trans fat. ", "PORTABLE & CONVENIENT: Our specially patented pouch system is lightweight, pre-packaged w/utensils, tamper & water proof. Each meal kit can be eaten right out of the pouch minimizing meal prep & clean up time. No refrigeration or hydration needed! ", "SELF HEATING: Cold? Hungry? No stove? Our self heating system is state of the art and powered by NHX Heating Technology. Tested & certified, safe in confined spaces, non-flammable, odorless & non-toxic. Add any liquid and enjoy a hot meal in 5 minutes! ", "EXTENDED SHELF LIFE: Be prepared for life\u2019s unexpected circumstances and be stocked with OMEALS emergency shelf stable meals. Shelf life and fresh food guaranteed for three years or more with proper storage. ", "TRUSTED BRAND: Made in the USA, our team of outdoorsmen, athletes & chefs have worked together to deliver premium and HACCP certified meals ready to eat food components. Serving travelers, nature lovers, emergency, humanitarian groups & more. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01D3UJFR2/ref=twister_B098PLLQX3?_encoding=UTF8&psc=1", "value": "1 Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "6 Pack", "price_string": "$64.99", "price": 64.99, "image": null}]}, "seller_id": "A3VJEVLAWT2I1E", "seller_name": "GlobalEcom", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B097F54DT8", "category": "grocery", "query": "Fresh Meal Kits", "page": 8, "small_description_old": "About this item HOMESTYLE & WHOLESOME: Pasta Fagioli-vegetarian, healthy & delicious--never frozen or freeze dried. Hearty pasta, savory marinara, vegetarian soy crumbles, beans and parmesan cheese. All natural, high in fiber, low in cholesterol and zero trans fat. PORTABLE & CONVENIENT: Our specially patented pouch system is lightweight, pre-packaged w/utensils, tamper & water proof. Each meal kit can be eaten right out of the pouch minimizing meal prep & clean up time. No refrigeration or hydration needed! SELF HEATING: Cold? Hungry? No stove? Our self heating system is state of the art and powered by NHX Heating Technology. Tested & certified, safe in confined spaces, non-flammable, odorless & non-toxic. Add any liquid and enjoy a hot meal in 5 minutes! EXTENDED SHELF LIFE: Be prepared for life\u2019s unexpected circumstances and be stocked with OMEALS emergency shelf stable meals. Shelf life and fresh food guaranteed for three years or more with proper storage. TRUSTED BRAND: Made in the USA, our team of outdoorsmen, athletes & chefs have worked together to deliver premium and HACCP certified meals ready to eat food components. Serving travelers, nature lovers, emergency, humanitarian groups & more."}, {"name": "2 Pcs Eva Smokers with Fluorine Natural Herbal Halal Islamic Toothpowder Powder 40gm", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 15, 2014", "Manufacturer\n \u200f": "\u200e\n BonBalloon", "ASIN\n \u200f": "\u200e\n B07MJGQ6NK", "Country of Origin\n \u200f": "\u200e\n Egypt", "": ""}, "brand": "Brand: bonballoon", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=bonballoon", "full_description": "Item Description : 2 Pcs Eva Smokers With Fluorine Natural Herbal Halal Islamic Toothpowder Powder 40gm * Herbal Powder Toothpowder With Pure With Fluorine Extract * Removes Stains That Comes From Coffee And Smoking * Protect Your Teeth * These Toothpaste Do Not Contain Fluoride With Fluorine Extract Net Wt 40 gm . Storage Instructions : Store In A Cool Dry Place , Away From Strong Odor And Direct Sunlight . Made In Egypt !!! Quantity : ( 2 Pcs = 2.82 oz / 80 gm ) Color : See Pictures Weight (Approx.) : ( 1.41 - 1.76 oz / 40 - 50 gm ) Each Pack Material : 100% Natural - Manufacture & Expiration Dates Indicated On The Main Package Are In European Format Which Is DD/MM/YY .", "pricing": "$15.29", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/51xS3mBPlyL.jpg", "https://m.media-amazon.com/images/I/41nlriyUR6L.jpg", "https://m.media-amazon.com/images/I/41KpJhHoWGL.jpg", "https://m.media-amazon.com/images/I/41i6OknzasL.jpg", "https://m.media-amazon.com/images/I/511ODRy+9xL.jpg", "https://m.media-amazon.com/images/I/41tk0FvEkVL.jpg", "https://m.media-amazon.com/images/I/513xDEd-HUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": "", "small_description": ["2 Pcs Eva Smokers With Fluorine Natural Herbal Halal Islamic Toothpowder Powder 40gm ", "Quantity : 2 Pcs = 2.82 oz / 80 gm - Color : See Pictures . ", "Weight (Approx.) : ( 1.41 - 1.76 oz / 40 - 50 gm ) Each Pack ", "Material : 100% Natural ", "- Manufacture & Expiration Dates Indicated On The Main Package Are In European Format Which Is DD/MM/YY "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AZCSBCSKO20LZ", "seller_name": "BonBalloon", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07MJGQ6NK", "category": "beauty", "query": "Toothpaste", "page": 180, "small_description_old": "About this item 2 Pcs Eva Smokers With Fluorine Natural Herbal Halal Islamic Toothpowder Powder 40gm Quantity : 2 Pcs = 2.82 oz / 80 gm - Color : See Pictures . Weight (Approx.) : ( 1.41 - 1.76 oz / 40 - 50 gm ) Each Pack Material : 100% Natural - Manufacture & Expiration Dates Indicated On The Main Package Are In European Format Which Is DD/MM/YY"}, {"name": "Hillsdale Furniture Martino Bed Set with Rails, King, Smoke Silver", "product_information": {"Item Weight": "\u200e15.72 pounds", "Product Dimensions": "\u200e89.5 x 77.5 x 53.5 inches", "Country of Origin": "\u200eMalaysia", "Item model number": "\u200e1392BKR", "Assembled Height": "\u200e53.5 inches", "Assembled Width": "\u200e77.5 inches", "Assembled Length": "\u200e83.5 inches", "Weight": "\u200e77 Pounds", "ASIN": "B0048U51N4", "Customer Reviews": {"ratings_count": 42, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#368,100 in Home & Kitchen (See Top 100 in Home & Kitchen) #700 in Beds"], "Date First Available": "June 26, 2006"}, "brand": "Visit the Hillsdale Store", "brand_url": "https://www.amazon.com/stores/Hillsdale+Furniture/page/E747DF61-6C0E-4186-AA6F-DA2132FC3154?ref_=ast_bln", "full_description": "The martino bed is a perfect marriage of style and sophistication. the delicate scrollwork of the smoke silver grills in combination with the classic cherry finished posts create a unique design that compliments any home decor. available in smoke silver color and king size. set includes headboard, footboard and rails. headboard measures 53-1/2-inch height by 77-1/2-inch width. footboard measures 33-3/4-inch height by 77-1/2-inch width.", "pricing": "$353.26", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51bBqdwZyuL.jpg", "https://m.media-amazon.com/images/I/51cUIoIpI+L.jpg", "https://m.media-amazon.com/images/I/51SAAZ9JNuL.jpg", "https://m.media-amazon.com/images/I/41a88AKEomL.jpg", "https://m.media-amazon.com/images/I/51bBqdwZyuL.jpg", "https://m.media-amazon.com/images/I/61CzPe6B9EL.jpg", "https://m.media-amazon.com/images/G/01/showroom/icon-lightbulb.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Beds", "average_rating": 4, "small_description": ["Simple and sophisticated King bed with wood posts and a decorative metal frame ", "Cherry finished wood posts are complimented by a smoke silver metal frame ", "Includes headboard, footboard and bed frame; mattress and box spring required, not included ", "Overall Dimensions:53.50H x 77.50W x 89.50L; Footboard Height: 33.75H ", "Assembly required ", "Forged from heavy gauge tubular steel and wood posts ", "Item will ship in four boxes; which may arrive separately , The touch of a clean, dry cloth is the only care your furniture will ever need, Residential Use Only, Recommended Weight Limit: 600lbs"], "total_reviews": 42, "total_answered_questions": "", "model": "\u200e1392BKR", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0048U51N4", "category": "garden", "query": "Beds", "page": 137, "small_description_old": "About this item Simple and sophisticated King bed with wood posts and a decorative metal frame Cherry finished wood posts are complimented by a smoke silver metal frame Includes headboard, footboard and bed frame; mattress and box spring required, not included Overall Dimensions:53.50H x 77.50W x 89.50L; Footboard Height: 33.75H Assembly required Forged from heavy gauge tubular steel and wood posts Item will ship in four boxes; which may arrive separately \n The touch of a clean, dry cloth is the only care your furniture will ever needResidential Use OnlyRecommended Weight Limit: 600lbsShow more"}, {"name": "Greenberry's Coffee Co. - Fair Trade Honduras Whole Bean - Bold, Fresh, 100% Arabica, Medium Roast Beans, 12 oz", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5 x 3 x 7.5 inches; 12 Ounces", "UPC\n \u200f": "\u200e\n 661631239018", "Manufacturer\n \u200f": "\u200e\n Greenberry's Coffee Co.", "ASIN\n \u200f": "\u200e\n B07VT81LP5", "Best Sellers Rank": "#415,882 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#4,368 in Roasted Coffee Beans", "#4,368 in Roasted Coffee Beans": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Greenberry's Coffee Co. Store", "brand_url": "https://www.amazon.com/stores/Greenberry%27s+Coffee+Co./page/E456591F-C21B-41E5-BE01-BDF46B0C68C1?ref_=ast_bln", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/31SeQIX-5BL.jpg", "https://m.media-amazon.com/images/I/41TLdnwuQ1L.jpg", "https://m.media-amazon.com/images/I/51sJd0XrDOL.jpg", "https://m.media-amazon.com/images/I/416ljrrH1AL.jpg", "https://m.media-amazon.com/images/I/51Sw7qcjHhL.jpg", "https://m.media-amazon.com/images/I/41f+BcrXSwL.jpg", "https://m.media-amazon.com/images/I/31CbvNAdEnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Coffee, Tea & Cocoa \u203a Coffee \u203a Roasted Coffee Beans", "average_rating": 4.7, "small_description": ["HONDURAS: Full body with a sweet and mild taste ", "QUALITY YOU CAN TASTE: We only use the best! We meticulously source our beans from only the finest farms cultivated by skilled farmers in the finest growing regions in the world, covering all coffee growing continents. ", "FRESH & DELICIOUS: Our in house roasting and packaging ensures that your coffee will arrive fresh and delicious. Brew a pot at home or in the office and taste the difference. ", "WORKS WITH ALL COFFEE BREWERS: Our whole bean coffee is suitable for any coffee machine or coffee maker: drip coffee, espresso maker, French press, Aeropress, pour over and k-cup machine. ", "GREENBERRY'S COFFEE CO: With almost 30 years\u2019 experience of coffee sourcing and craft roasting, we are your source for high end, specialty coffees. "], "total_reviews": 9, "total_answered_questions": "", "customization_options": "", "seller_id": "A2VEBX4F3BCK3J", "seller_name": "Greenberry's Coffee Company", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07VT81LP5", "category": "grocery", "query": "Food & Beverage Gifts", "page": 245, "small_description_old": "About this item HONDURAS: Full body with a sweet and mild taste QUALITY YOU CAN TASTE: We only use the best! We meticulously source our beans from only the finest farms cultivated by skilled farmers in the finest growing regions in the world, covering all coffee growing continents. FRESH & DELICIOUS: Our in house roasting and packaging ensures that your coffee will arrive fresh and delicious. Brew a pot at home or in the office and taste the difference. WORKS WITH ALL COFFEE BREWERS: Our whole bean coffee is suitable for any coffee machine or coffee maker: drip coffee, espresso maker, French press, Aeropress, pour over and k-cup machine. GREENBERRY'S COFFEE CO: With almost 30 years\u2019 experience of coffee sourcing and craft roasting, we are your source for high end, specialty coffees."}, {"name": "XLBHLH Black LED Chandelier Circular Dimmable 40W 1 Linear Aluminum Pendant Lighting Hanging Ceiling Light for Contemporary Dining Table Entry Kitchen Island", "product_information": {"Department": "Unisex", "Manufacturer": "XLBHLH", "ASIN": "B09PGQQQDL", "Country of Origin": "China", "Best Sellers Rank": ["#1,171,024 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #11,430 in Pendant Light Fixtures"], "Specification met": "UL, FCC, ETL, ROHS"}, "brand": "Brand: XLBHLH", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=XLBHLH", "full_description": "Product Description:Type: Chandelier.Material: iron+aluminum+silicone strip.Color: gold. black.size:90x24cm (35.4x9.4in).Hanging wire: 100cm (39.4in) adjustable.Power: 40W (inclusive).Voltage: 110V\uff5e240V (inclusive).Number of light sources: 3.Light source type: LED.Color temperature: 3 shades of light.Space: 8-15 square meters.Average service life: more than 50,000 hours.Certification: EU, RoHS, FCC, ETL, NOM, CCC, UL and other certifications.Suggested spaces are suitable for: living room, study room, guest room, bedroom, dining room, restaurant, bar, hall, coffee shop, etc.Does the light source include: Yes.Packing: 1\u00d7chandelier.", "pricing": "$297.33", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31W0V-nIuLL.jpg", "https://m.media-amazon.com/images/I/41z3FGG0HtL.jpg", "https://m.media-amazon.com/images/I/41eG5l6gfZL.jpg", "https://m.media-amazon.com/images/I/41jXNcxre6L.jpg", "https://m.media-amazon.com/images/I/41wPOJFhunL.jpg", "https://m.media-amazon.com/images/I/31MBmlDm8uL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Pendant Lights", "average_rating": "", "small_description": ["\ud83d\udca1Iron art load-bearing suction cup, high load-bearing capacity, safe and stable, please rest assured to use. ", "\ud83d\udca1Iron art paint lamp body, forged paint fixation, after multiple paint processes, it is durable. ", "\ud83d\udca1Thick aluminum lamp body, selected high-quality aluminum materials, processed by more than 60 processes such as stamping, polishing, polishing, pickling, etc., the surface is smooth and delicate, and it is still as new for long-term use. ", "\ud83d\udca1High-permeability silicone mask, made of high-quality silicone, has good light transmittance, and the light is soft and not glaring. ", "\ud83d\udca1 Three-tone light: The chandelier uses 40W energy-saving LED light source, adjustable warm light, white light, and neutral light. Adapt to the atmosphere of life at any time. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$297.33", "price": 297.33, "image": "https://m.media-amazon.com/images/I/31W0V-nIuLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PGPYPLT/ref=twister_B09PGQZRRF?_encoding=UTF8&psc=1", "value": "Gold", "price_string": "$297.33", "price": 297.33, "image": "https://m.media-amazon.com/images/I/41Y85--ORBL.jpg"}]}, "seller_id": "A2R819R59W4X0E", "seller_name": "XILEBAIHUO", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PGQQQDL", "category": "garden", "query": "Kitchen Islands", "page": 296, "small_description_old": "About this item \ud83d\udca1Iron art load-bearing suction cup, high load-bearing capacity, safe and stable, please rest assured to use. \ud83d\udca1Iron art paint lamp body, forged paint fixation, after multiple paint processes, it is durable. \ud83d\udca1Thick aluminum lamp body, selected high-quality aluminum materials, processed by more than 60 processes such as stamping, polishing, polishing, pickling, etc., the surface is smooth and delicate, and it is still as new for long-term use. \ud83d\udca1High-permeability silicone mask, made of high-quality silicone, has good light transmittance, and the light is soft and not glaring. \ud83d\udca1 Three-tone light: The chandelier uses 40W energy-saving LED light source, adjustable warm light, white light, and neutral light. Adapt to the atmosphere of life at any time."}, {"name": "2 Pack Metal Hair Pick for Afro Hair, Hair Pick Afro Comb for Curly Hair, Afro Picks for Women/Men Hair Styling Hairdressing Tool (Black)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.03 x 5.75 x 0.71 inches; 1.76 Ounces", "UPC\n \u200f": "\u200e\n 673869995369", "Manufacturer\n \u200f": "\u200e\n Yidaimei", "ASIN\n \u200f": "\u200e\n B09NPZHTTY", "Best Sellers Rank": "#96,222 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#658 in Hair Combs", "#658 in Hair Combs": ""}, "brand": "Brand: N\\A", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=N%5CA", "full_description": "SPECIFICATIONSColor: Black Afro comb for curly hairMaterial: Metal hair pick, Plastic handleSize: 6.6 x 2.9 inch Afro picks Package Includes: 2 pack metal hair pick for Afro hairFEATURES1. Afro comb with black fist shape handle, metal wide tooth comb, small and safe;2. Professional hair styling Afro comb to detangle braid hair or men styling hair pick;3. Suitable for all-age people who want have their own Afro comb DIY hair style;4. Suitable for curly hair and Afro hair, also work well for natural black hair, straight hair, tangled hair.", "pricing": "$4.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41tx3nUei-L.jpg", "https://m.media-amazon.com/images/I/51nE73n-5VL.jpg", "https://m.media-amazon.com/images/I/41LklBODScL.jpg", "https://m.media-amazon.com/images/I/51p5MotHduL.jpg", "https://m.media-amazon.com/images/I/51iGmIVwPPL.jpg", "https://m.media-amazon.com/images/I/41+qdUWyYXL.jpg", "https://m.media-amazon.com/images/I/41eqADJ73LL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Styling Tools & Appliances \u203a Hair Combs", "average_rating": "", "small_description": ["\u3010YOU WILL GET\u30112 pack metal hair pick in classic black color. Great for making Afro braid hairdressing and different curl, ideal for daily use and necessary Afro Comb for DIY hairstyle. ", "\u3010UNIQUE DESIGN\u3011Metal Afro comb with black fist shape handle, look more attractive. Great for combing curly, thick, tangled hair which can hair picks well and comfortable for long time using. ", "\u3010MATERIAL\u3011Afro picks material is plastic handle and metal teeth. Afro comb plastic handle can be more convenient and stable to touch; metal hair pick teeth not hurt your hair and scalp. ", "\u3010APPLICATION\u3011Black metal Afro combs for curly hair, straight hair, tangled hair, detangle braid, Afro braid hairdressing, Afro picks for hair styling can help you create different DIY hairstyles. ", "\u3010CUSTOMER SERVICE\u3011We strive to provide our customers highest quality metal hair pick and best service, if you have any problem, plz contact us, and we will give you a satisfied experience. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3KMGJYCW8OVUR", "seller_name": "yidaimei", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09NPZHTTY", "category": "beauty", "query": "Styling Products", "page": 35, "small_description_old": "About this item \u3010YOU WILL GET\u30112 pack metal hair pick in classic black color. Great for making Afro braid hairdressing and different curl, ideal for daily use and necessary Afro Comb for DIY hairstyle. \u3010UNIQUE DESIGN\u3011Metal Afro comb with black fist shape handle, look more attractive. Great for combing curly, thick, tangled hair which can hair picks well and comfortable for long time using. \u3010MATERIAL\u3011Afro picks material is plastic handle and metal teeth. Afro comb plastic handle can be more convenient and stable to touch; metal hair pick teeth not hurt your hair and scalp. \u3010APPLICATION\u3011Black metal Afro combs for curly hair, straight hair, tangled hair, detangle braid, Afro braid hairdressing, Afro picks for hair styling can help you create different DIY hairstyles. \u3010CUSTOMER SERVICE\u3011We strive to provide our customers highest quality metal hair pick and best service, if you have any problem, plz contact us, and we will give you a satisfied experience."}, {"name": "Daily Ritual Women's Cozy Knit Puff-Shoulder Dress", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.6 x 12.4 x 1.9 inches; 9.59 Ounces", "Item model number\n \u200f": "\u200e\n DR19313984", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n February 27, 2020", "Manufacturer\n \u200f": "\u200e\n Daily Ritual", "ASIN\n \u200f": "\u200e\n B07YDHC6JX", "Best Sellers Rank": "#868,457 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#25,195 in Women's Dresses", "#25,195 in Women's Dresses": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Daily Ritual Store", "brand_url": "https://www.amazon.com/stores/DailyRitual/page/3E358E87-E334-42FA-BAFF-147AD1825C7D?ref_=ast_bln", "full_description": "An Amazon brand - This classic dress features a scoop-neck, puff shoulder, and a figure flattering fabric for an effortless look that's ready to style", "pricing": "$13.06$29.20", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/3144RK70aKL.jpg", "https://m.media-amazon.com/images/I/31bTlPKM6UL.jpg", "https://m.media-amazon.com/images/I/41YkmuJHAmL.jpg", "https://m.media-amazon.com/images/I/41ywIz6p8EL.jpg", "https://m.media-amazon.com/images/I/51AgbK01arL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Dresses", "average_rating": 4, "small_description": ["48% Polyester, 48% Viscose, 4% Elastane ", "Imported ", "No Closure closure ", "Machine Wash ", "This classic dress features a scoop-neck, puff shoulder, and a figure flattering fabric for an effortless look that's ready to style ", "Cozy Knit\u2019s extraordinarily soft brushed surface and perfect amount of stretch keep you cozy, comfortable, and pulled-together all day long ", "Model is 5'11\" and wearing a size Small ", "Start every outfit with Daily Ritual's range of elevated basics "], "total_reviews": 156, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B07YDJ5H2S"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B07YDHZ26N"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07YDK3ZR5"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07YDHR83R"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07YDHNZ6B"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07YDHXWDL"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07YDHC6JX/ref=twister_B07YDGX2LT", "value": "Black Marl", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31YuCfUrzYL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07YDJJNP8/ref=twister_B07YDGX2LT", "value": "Blue Marl", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31d8B7rGfGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07YDHVYHM/ref=twister_B07YDGX2LT", "value": "Heather Grey Marl", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31RpyvEPhXL.jpg"}, {"is_selected": true, "url": null, "value": "Heather Grey Marl/White Stripe", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/3144RK70aKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07YDHZ26K/ref=twister_B07YDGX2LT", "value": "Light Peach Marl", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/316p3vFQ0hL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07YDJ9BNG/ref=twister_B07YDGX2LT", "value": "Olive Marl", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/310Ymq5MLcL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07YDHNZ6B", "category": "fashion", "query": "Women's Dresses", "page": 11, "small_description_old": "48% Polyester, 48% Viscose, 4% Elastane Imported No Closure closure Machine Wash This classic dress features a scoop-neck, puff shoulder, and a figure flattering fabric for an effortless look that's ready to style Cozy Knit\u2019s extraordinarily soft brushed surface and perfect amount of stretch keep you cozy, comfortable, and pulled-together all day long Model is 5'11\" and wearing a size Small Start every outfit with Daily Ritual's range of elevated basics"}, {"name": "Sconza Candy Coated Milk Chocolate Almonds | Chocolate Covered Almonds with Shades of Blue & Silver Candy Shell | Pack of 1 (5 lbs. Bulk)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 9 x 3 x 13 inches; 5 Pounds", "UPC\n \u200f": "\u200e\n 041668756359", "Manufacturer\n \u200f": "\u200e\n Sconza", "ASIN\n \u200f": "\u200e\n B09K4S16YT", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#452,018 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#6,407 in Candy & Chocolate Assortments & Samplers", "#6,407 in Candy & Chocolate Assortments & Samplers": ""}, "brand": "Visit the Sconza Store", "brand_url": "https://www.amazon.com/stores/Sconza/page/14081A49-04BC-418F-A013-663AFDD116BF?ref_=ast_bln", "full_description": "", "pricing": "$41.99", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31QXnpfIp5L.jpg", "https://m.media-amazon.com/images/I/41M--VzemwL.jpg", "https://m.media-amazon.com/images/I/51FX6pw4+GL.jpg", "https://m.media-amazon.com/images/I/5134XcIM63L.jpg", "https://m.media-amazon.com/images/I/414wP+1gIiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Chocolate \u203a Candy & Chocolate Assortments", "average_rating": "", "small_description": ["MILK CHOCOLATE COVERED ALMONDS: Lightly-roasted California almonds, draped in creamy milk chocolate then covered with dark blue, light blue or shimmer gray candy shell ", "PREMIUM INGREDIENTS: We source the freshest ingredients available; Every Sconza Chocolate is handcrafted with premium ingredients and sustainable practices ", "COMMUNITY & FAMILY FIRST: Many of our suppliers are our neighbors which makes for a close-knit community of food lovers dedicated to the highest quality and freshest produce, nuts and fruits ", "MADE TO BE SAVORED & SHARED: We believe that every bite should spark joy; That\u2019s why, for nearly four generations, our family has poured our hearts into making the perfect candies; Bringing the flavors of Old World Italy right to your home "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A39ZPZ109RZ5V4", "seller_name": "Sconza", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09K4S16YT", "category": "grocery", "query": "Candy & Chocolate", "page": 120, "small_description_old": "About this item MILK CHOCOLATE COVERED ALMONDS: Lightly-roasted California almonds, draped in creamy milk chocolate then covered with dark blue, light blue or shimmer gray candy shell PREMIUM INGREDIENTS: We source the freshest ingredients available; Every Sconza Chocolate is handcrafted with premium ingredients and sustainable practices COMMUNITY & FAMILY FIRST: Many of our suppliers are our neighbors which makes for a close-knit community of food lovers dedicated to the highest quality and freshest produce, nuts and fruits MADE TO BE SAVORED & SHARED: We believe that every bite should spark joy; That\u2019s why, for nearly four generations, our family has poured our hearts into making the perfect candies; Bringing the flavors of Old World Italy right to your home"}, {"name": "JYMYGS VR Headsets, 3D Virtual Reality Glasses Headset VR Goggles for 4.0-6.5in iPhone 12/Pro/Max/Mini/11/X/Xs/8/7 & Android Phone, for 3D VR Movies Video Games- Gift for Kids and Adults, N039JL", "product_information": {"Package Dimensions": "7.48 x 5.91 x 3.94 inches", "Item Weight": "1.54 pounds", "Department": "Unisex-adult", "Manufacturer": "JYMYGS", "ASIN": "B08ZYQC4PL"}, "brand": "Brand: JYMYGS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JYMYGS", "full_description": "Product size: 20x17x12cmProduct weight: 270gApplicable age: over 18 years oldSuitable for myopia: below 600 degrees\u25c6 Tips:-Due to different lighting conditions and display methods, there may be color differences, please refer to the actual product.-The product size is manually measured, there may be a gap with the actual size, the error is about 0.5-1cm is normal.-If you encounter any problems, please contact us in time, when you provide it to us, we will provide customers with 24-hour quality service.", "pricing": "$71.51", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41iqusRum5L.jpg", "https://m.media-amazon.com/images/I/51WodSF57LL.jpg", "https://m.media-amazon.com/images/I/41BH7z3EhiL.jpg", "https://m.media-amazon.com/images/I/41FFBqRXhML.jpg", "https://m.media-amazon.com/images/I/51Jj8hbsRuL.jpg", "https://m.media-amazon.com/images/I/51HqiadolZL.jpg", "https://m.media-amazon.com/images/I/51EmhzAGw4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Virtual Reality (VR) Headsets", "average_rating": "", "small_description": ["\u2663 HD goggles- We insist on using lenses with a light transmittance of 94% or more, and use anti-reflection and anti-blue light coated lenses to prevent eye fatigue when using headphones. ", "\u2663 Support wearing glasses - Suitable for the nearsighted people with myopia under 600 degree. Also we designed the pupil distance button with a larger range to optimize your visual experience. ", "\u2663 Strong compatibility - VR goggles are compatible with iPhone ios, X, XR, XS, 8, 8 plus, 9, 9 plus, 10, 7, 7 plus, 6, 6s, 6s plus, 6 plus, 6, 5, 5 plus, 5c, 5s, SE, etc. Also compatible with Samsung Android Galaxy s8, s7, j3, s7 edge, s6, s6 edge, note5, a8+, note 3, note 4, note 5, note 7, note 8, note 9, s5 s6, s7, s8, s8 plus, s9, s9 plus, s10, s10 plus. ", "\u2663 Ergonomic Design - This adjustable T-shaped strap is made of lightweight material, which can decrease the pressure around your eyes, face and on your head, providing you more comfortable feeling. ", "\u2663 Download 3D Video Apps -- Works with over 500+ iOS/Android virtual reality apps. This VR can't automatically transform images to 3D format, you need to download APPs with 3D format video or watch panorama videos on YouTube, QR code, Apple Store or Google Play. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3VLB8GUWHMAU0", "seller_name": "taiyuanshiyijiamaoyiyouxianzerengongsi", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08ZYQC4PL", "category": "electronics", "query": "Virtual Reality", "page": 128, "small_description_old": "\u2663 HD goggles- We insist on using lenses with a light transmittance of 94% or more, and use anti-reflection and anti-blue light coated lenses to prevent eye fatigue when using headphones. \u2663 Support wearing glasses - Suitable for the nearsighted people with myopia under 600 degree. Also we designed the pupil distance button with a larger range to optimize your visual experience. \u2663 Strong compatibility - VR goggles are compatible with iPhone ios, X, XR, XS, 8, 8 plus, 9, 9 plus, 10, 7, 7 plus, 6, 6s, 6s plus, 6 plus, 6, 5, 5 plus, 5c, 5s, SE, etc. Also compatible with Samsung Android Galaxy s8, s7, j3, s7 edge, s6, s6 edge, note5, a8+, note 3, note 4, note 5, note 7, note 8, note 9, s5 s6, s7, s8, s8 plus, s9, s9 plus, s10, s10 plus. \u2663 Ergonomic Design - This adjustable T-shaped strap is made of lightweight material, which can decrease the pressure around your eyes, face and on your head, providing you more comfortable feeling. \u2663 Download 3D Video Apps -- Works with over 500+ iOS/Android virtual reality apps. This VR can't automatically transform images to 3D format, you need to download APPs with 3D format video or watch panorama videos on YouTube, QR code, Apple Store or Google Play."}, {"name": "Got Snow? Funny Snowmobile Snowboard Skiing Cold Weather Winter Sports Unisex Hooded Sweatshirt", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches", "Item model number\n \u200f": "\u200e\n gotsnowHD-frst-small", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n October 21, 2016", "ASIN\n \u200f": "\u200e\n B01MG1N8CH", "Best Sellers Rank": "#1,325,751 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#21,959 in Men's Novelty Hoodies #503,786 in Men's Fashion", "#21,959 in Men's Novelty Hoodies": "", "#503,786 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Trenz Shirt Company", "brand_url": "https://www.amazon.com/Trenz-Shirt-Company/b/ref=bl_sl_s_ap_web_20523857011?ie=UTF8&node=20523857011&field-lbr_brands_browse-bin=Trenz+Shirt+Company", "full_description": "", "pricing": "$24.99$29.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41fhP+qOeuL.jpg", "https://m.media-amazon.com/images/I/51+K+3CD8PL.jpg", "https://m.media-amazon.com/images/I/51egQzv1oNL.jpg", "https://m.media-amazon.com/images/I/51zKelI46iS.jpg", "https://m.media-amazon.com/images/I/41o2fc4SvRS.jpg", "https://m.media-amazon.com/images/I/31q6YleLEXS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 1, "small_description": ["AMZAZING FIT: This shirt has a great look and cool fit. Whether you are into pop culture, politics, political, patriotic, military, Christian, or funny graphic tees, we have it all! We are constantly evolving and growing to keep up with the high demand for unique and trendy apparel. Graphic t shirts are the perfect way to make a statement. T-shirts make a great gift for friends and family! Perfect gift for your wife, mom, daughter, son, father, husband, grandpa, grandma, co-workers, and friends. ", "AMZAZING FIT: This shirt has a great look and cool fit. Whether you are into pop culture, politics, political, patriotic, military, Christian, or funny graphic tees, we have it all! We are constantly evolving and growing to keep up with the high demand for unique and trendy apparel. Graphic t shirts are the perfect way to make a statement. T-shirts make a great gift for friends and family! Perfect gift for your wife, mom, daughter, son, father, husband, grandpa, grandma, co-workers, and friends. ", "AMZAZING FIT: This shirt has a great look and cool fit. Whether you are into pop culture, politics, political, patriotic, military, Christian, or funny graphic tees, we have it all! We are constantly evolving and growing to keep up with the high demand for unique and trendy apparel. Graphic t shirts are the perfect way to make a statement. T-shirts make a great gift for friends and family! Perfect gift for your wife, mom, daughter, son, father, husband, grandpa, grandma, co-workers, and friends. ", "HIGH QUALITY: We carry a giant selection of apparel to suit the needs of the whole family. All of our tshirts are printed in-house by our professional production team. This ensures that you are getting a unique, one-of-a-kind design. Our graphic t-shirts are printed in the USA with state of the art equipment to ensure vibrant colors and lasting durability. We have shirts for all occasions birthdays, Christmas, holidays, fathers day, mothers day, anniversary, and seasonal shirts. ", "GREAT FEEL: Our shirts are made of 6 oz., 100% preshrunk cotton for the perfect fit. Ash Grey is 99% cotton and 1% polyester. Sport Grey and antique colors are made of a 90% cotton and 10% polyester blend. All Heather and safety colors are made of a 50% cotton, 50% polyester blend. Features a tear-away label, double-needle sleeve and bottom hem, seamless double-needle collar, and a taped neck and shoulders. Our neon safety green is compliant with with ANSI / ISEA 107 high visibility standards. ", "HUGE SELECTION: Sarcastic, punny, or slightly offensive, we have something for every type of humor. Our tees are a great conversation starter that will get some laughs and turn heads everywhere you go. We cover a wide range of topics: Christian, military, patriotic, political, awareness, pop culture, pet rescue shirts and more. Share your sense of humor or advocate for your beliefs with our selection of hats, tees, hoodies, sweatshirts, tank tops, dolman tops, tumblers, and more! ", "UNISEX FIT: Unisex sizing fits both men and women but is based on standard mens sizing. Larger size t-shirts may cause the print to appear smaller. Oversized t-shirts are bvery popular, size up if you prefer a more relaxed fit. Size chart: small L28xW18, Medium, L29xW20, Large L30xW22, XL L31xW24, XXL L32xW26, 3XL L33xW28, 4XL L34xW30, 5XL L35x32. NOTE: A portion of all sales of our Canine Pet Rescue apparel is donated to animal shelters. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B01MG1K5E6"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B01M27NST3"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B01M5EGMDQ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B01MG1LTMS"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B01M8LFFI0"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B01M8LF5I1"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B01M3T0RUG"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B01M7SS80C"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01M675A8P/ref=twister_B09BDG1FSP", "value": "Forest Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11kPObdhQCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MFAUKWZ/ref=twister_B09BDG1FSP", "value": "Heather Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51sMhLhVwKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MG1R1FQ/ref=twister_B09BDG1FSP", "value": "Kelly Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11+Eiju-TgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01M3T0UDC/ref=twister_B09BDG1FSP", "value": "Maroon", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/111aJXxaVzL.jpg"}, {"is_selected": true, "url": null, "value": "Navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11q6DTkSKgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01M3T0LPG/ref=twister_B09BDG1FSP", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11QQqs5mgGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MCWR3J7/ref=twister_B09BDG1FSP", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11y1flH993L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01M5EDSGR/ref=twister_B09BDG1FSP", "value": "Military Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11IgukbqAvL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01MG1LTMS", "category": "fashion", "query": "Men's Polos", "page": 43, "small_description_old": "AMZAZING FIT: This shirt has a great look and cool fit. Whether you are into pop culture, politics, political, patriotic, military, Christian, or funny graphic tees, we have it all! We are constantly evolving and growing to keep up with the high demand for unique and trendy apparel. Graphic t shirts are the perfect way to make a statement. T-shirts make a great gift for friends and family! Perfect gift for your wife, mom, daughter, son, father, husband, grandpa, grandma, co-workers, and friends. AMZAZING FIT: This shirt has a great look and cool fit. Whether you are into pop culture, politics, political, patriotic, military, Christian, or funny graphic tees, we have it all! We are constantly evolving and growing to keep up with the high demand for unique and trendy apparel. Graphic t shirts are the perfect way to make a statement. T-shirts make a great gift for friends and family! Perfect gift for your wife, mom, daughter, son, father, husband, grandpa, grandma, co-workers, and friends. AMZAZING FIT: This shirt has a great look and cool fit. Whether you are into pop culture, politics, political, patriotic, military, Christian, or funny graphic tees, we have it all! We are constantly evolving and growing to keep up with the high demand for unique and trendy apparel. Graphic t shirts are the perfect way to make a statement. T-shirts make a great gift for friends and family! Perfect gift for your wife, mom, daughter, son, father, husband, grandpa, grandma, co-workers, and friends. HIGH QUALITY: We carry a giant selection of apparel to suit the needs of the whole family. All of our tshirts are printed in-house by our professional production team. This ensures that you are getting a unique, one-of-a-kind design. Our graphic t-shirts are printed in the USA with state of the art equipment to ensure vibrant colors and lasting durability. We have shirts for all occasions birthdays, Christmas, holidays, fathers day, mothers day, anniversary, and seasonal shirts. GREAT FEEL: Our shirts are made of 6 oz., 100% preshrunk cotton for the perfect fit. Ash Grey is 99% cotton and 1% polyester. Sport Grey and antique colors are made of a 90% cotton and 10% polyester blend. All Heather and safety colors are made of a 50% cotton, 50% polyester blend. Features a tear-away label, double-needle sleeve and bottom hem, seamless double-needle collar, and a taped neck and shoulders. Our neon safety green is compliant with with ANSI / ISEA 107 high visibility standards. HUGE SELECTION: Sarcastic, punny, or slightly offensive, we have something for every type of humor. Our tees are a great conversation starter that will get some laughs and turn heads everywhere you go. We cover a wide range of topics: Christian, military, patriotic, political, awareness, pop culture, pet rescue shirts and more. Share your sense of humor or advocate for your beliefs with our selection of hats, tees, hoodies, sweatshirts, tank tops, dolman tops, tumblers, and more! UNISEX FIT: Unisex sizing fits both men and women but is based on standard mens sizing. Larger size t-shirts may cause the print to appear smaller. Oversized t-shirts are bvery popular, size up if you prefer a more relaxed fit. Size chart: small L28xW18, Medium, L29xW20, Large L30xW22, XL L31xW24, XXL L32xW26, 3XL L33xW28, 4XL L34xW30, 5XL L35x32. NOTE: A portion of all sales of our Canine Pet Rescue apparel is donated to animal shelters."}, {"name": "Deodorant Stone Crystal Mist Natural Deodorant Spray 8 oz. Bundle, Pack of 4", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 7.3 x 4.3 x 1.7 inches; 1.25 Pounds", "Item model number\n \u200f": "\u200e\n SG_B01M0FH8J8_US", "UPC\n \u200f": "\u200e\n 816946020749", "ASIN\n \u200f": "\u200e\n B01M0FH8J8", "Best Sellers Rank": "#106,585 in Health & Household (See Top 100 in Health & Household)#912 in Deodorant", "#912 in Deodorant": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Unknown", "brand_url": "https://www.amazon.com/Unknown/b/ref=bl_dp_s_web_23515638011?ie=UTF8&node=23515638011&field-lbr_brands_browse-bin=Unknown", "full_description": "100% Natural Unscented Crystal Deodorant Mist - 24 Hour Protection - No aluminum chlorohydrate - Fragrance free - Non-Staining", "pricing": "$25.62", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41QkWVcVhIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Deodorant", "average_rating": 4.8, "small_description": [""], "total_reviews": 360, "total_answered_questions": "", "customization_options": "", "seller_id": "A1AKT0EVAUPPAX", "seller_name": "Amazing Pride", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B01M0FH8J8", "category": "beauty", "query": "Deodorants & Antiperspirants", "page": 83, "small_description_old": ""}, {"name": "3dRose Social Butterfly with a stamp on a monarch butterfly on... - Coffee Gift Baskets (cgb_349228_1)", "product_information": {"Item Weight\n \u200f": "\u200e\n 3 Pounds", "Manufacturer\n \u200f": "\u200e\n 3dRose", "ASIN\n \u200f": "\u200e\n B09D4L5H3V", "Country of Origin\n \u200f": "\u200e\n USA", "": ""}, "brand": "Visit the 3dRose Store", "brand_url": "https://www.amazon.com/stores/Budgie+Budgerigar/page/BE0ECDEA-FC51-4E2C-B041-4FCCEB91DA8E?ref_=ast_bln", "full_description": "Social Butterfly with a stamp on a monarch butterfly on white. Coffee Gift Basket is great for any occasion. This elegantly presented gift box comes with a 15oz mug, a biscotti cookie, 5 blends of gourmet coffee and includes a BONUS set of 4 soft coasters. Coffee selection includes French Vanilla, Kenya AA, Decaf Colombian Supremo, Chocolate and Italian Roast Espresso, sure to please a variety of coffee connoisseurs. All packaged in our signature 9\" x 9\" x 4\" black box.", "pricing": "$44.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51XMdlcQ6BL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Food & Beverage Gifts \u203a Coffee & Tea Gifts", "average_rating": "", "small_description": ["Includes: 1 15oz mug ", "4 soft coasters ", "5 - 2 oz bags of gourmet coffee ", "1 of each: French Vanilla, Kenya AA, Decaf Colombian Supremo, Chocolate, and Italian Roast Espresso ", "1 Biscotti cookie "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1Q4A7YXTO45KY", "seller_name": "3dRose LLC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09D4L5H3V", "category": "grocery", "query": "Food & Beverage Gifts", "page": 321, "small_description_old": "About this item Includes: 1 15oz mug 4 soft coasters 5 - 2 oz bags of gourmet coffee 1 of each: French Vanilla, Kenya AA, Decaf Colombian Supremo, Chocolate, and Italian Roast Espresso 1 Biscotti cookie"}, {"name": "One Piece Swimsuit for Women Halter Cut Out Bathing Suit Sexy Criss Cross Swimwear Backless Tie Dye Monokini Beachwear", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 3.94 x 1.97 x 1.18 inches", "Item model number\n \u200f": "\u200e\n Amazon Eessential", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n February 10, 2022", "Manufacturer\n \u200f": "\u200e\n 10-20 Days Delivery", "ASIN\n \u200f": "\u200e\n B09S6MC95P", "": ""}, "brand": "Brand: Haozin", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Haozin", "full_description": "(\u10da\u2579\u25e1\u2579\u10da) Hello, Dear Customer, Welcome to \ud83c\udf34 Haozin \ud83c\udf34 Store, Your satisfaction is our eternal pursuit !\u00a0 \u25c4): Please allow 0.5-1cm difference due to manual measurement.\u00a0 \u25c4): Colors may appear slightly different via website due to computer picture resolution and monitor settings.\u00a0 \u25c4): Each of our products is attached with a size table, please select your appropriate size before ordering.Size: S --- Size: Small --- Cup: A/B --- Bust: 81-86cm/31.89-33.86'' --- Waist: 56-61cm/22.05-24.02'' --- Hip: 86-91cm/33.86-35.83'' Size: M --- Size: Medium --- Cup: B/C --- Bust: 86-91cm/33.86-35.83'' --- Waist: 61-66cm/24.02-25.98'' --- Hip: 91-97cm/35.83-38.19'' Size: L --- Size: Large --- Cup: C/D --- Bust: 91-97cm/35.83-38.19'' --- Waist: 66-71cm/25.98-27.95'' --- Hip: 97-102cm/38.19-40.16''swimsuit women 2 piece swimsuit for women 3 piece swimsuits for women baby boy swimsuit baby girl swimsuit baby swimsuit boy baby swimsuit girl black one piece swimsuits for women black swimsuit girls swimsuit girls swimsuits size 10-12 girls swimsuits size 14-16 high waisted swimsuits for women kids swimsuits long sleeve swimsuit long sleeve swimsuits for women matching swimsuits for couples maternity swimsuit two piece modest swimsuits for women", "pricing": "$14.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41yepTt+ahL.jpg", "https://m.media-amazon.com/images/I/51kZFyIaVxL.jpg", "https://m.media-amazon.com/images/I/51gQknHep9L.jpg", "https://m.media-amazon.com/images/I/51bjYxeszjL.jpg", "https://m.media-amazon.com/images/I/517lERBispL.jpg", "https://m.media-amazon.com/images/I/51CzaJQYOzL.jpg", "https://m.media-amazon.com/images/I/51n+J4MBNzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Swimsuits & Cover Ups \u203a One-Pieces", "average_rating": "", "small_description": ["\ud83d\udc59The swimsuit is made of high-quality fabric. Soft, breathable, very comfortable to wear.Lightweight fabric, perfect for hot summer. ", "\ud83d\udc59Made in USA ", "\ud83d\udc59Just contact us immediately if you are not satisfied with this clothing, we will try our best to satisfy your request ", "\ud83d\udc59Summer essentials, suitable for swimming wear, beach party, hot spring, vacation, seaside, surfing and pool party closure ", "\ud83d\udc59Please check the size chart in the product description carefully before buying. If you are plump, I suggest you choose a larger size\uff0cbecause it is an Asian size and will be smaller than the American size\uff01\uff01\uff01\uff01 ", "plus size tankini bathing suits for women plus size tankini tops swimsuits women tankini swimsuits for women tankini swimsuit for women tankini bandeau tankini swim suits women tankini womens tankini swim top blouson tankini swimsuits for women bathing suits women 2 piece tankini tankinis swimwear for women tummy control girls tankini swimsuits 7-16 tankini for women womens tankini swimsuits with shorts black tankini bathing suits for women tummy control ", "womens rash guard shirts long sleeve zipper front one piece rash guard women rash guard shirt rash guard long sleeve rash guard womens under rash guard women womens rash guard swim shirt long sleeve womens rash guard shirt rash guard pants rash guard plus size women girl rash guard swimwear womens rash guards short sleeve women rash guard swimsuit women long sleeve rash guard surf rash guard women rash guard girls long sleeve crop rash guard , high waisted bikini blue and floral lace up bikini patriotic bikini women blue high waisted bikini bottoms maternity bikini swimsuit high leg high waist bikini big bust bikini tops for women bikini for women push up cheecky bikini bottoms high waist black bikini bottom high cut bikini bottoms surf bikini swimsuits bikini for women women two piece bathing suit bikini set bikini hight waisted bikinis for women body glove bikini bottoms, tankini shorts ruffle tankini high neck tankini top tankini sets for women juniors tankini swimsuits high waist tankini overlay tankini set sporty tankini swimsuits for women women tankini top tankini swimwear bathing suit tankini off shoulder tankini american flag tankini tankini tops for women tummy control ruffled tankini swimsuits for women plus size swimsuits for women tankini bra sized tankini tops maternity tankini top, women rash guard women womens rash guards long sleeve womens rash guards girls rash guard set womens' rash guard short sleeve rash guard woman rash guard long sleeve big and tall rash guard swim shirt loose fit rash guard women short sleeve rash guard womens bikinis for girls size 10-12 womens tankini swimsuits tops plaid bikini thong bikinis"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yepTt+ahL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09S6KVT6C/ref=twister_B09S6LX4W2", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41+ldy7BqUL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09S6MC95P"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09S6MR9PY"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09S6LZYHQ"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S6LZYHQ", "category": "fashion", "query": "Women's Swimsuits & Cover Ups", "page": 140, "small_description_old": "\ud83d\udc59The swimsuit is made of high-quality fabric. Soft, breathable, very comfortable to wear.Lightweight fabric, perfect for hot summer. \ud83d\udc59Made in USA \ud83d\udc59Just contact us immediately if you are not satisfied with this clothing, we will try our best to satisfy your request \ud83d\udc59Summer essentials, suitable for swimming wear, beach party, hot spring, vacation, seaside, surfing and pool party closure \ud83d\udc59Please check the size chart in the product description carefully before buying. If you are plump, I suggest you choose a larger size\uff0cbecause it is an Asian size and will be smaller than the American size\uff01\uff01\uff01\uff01 one piece swimsuits for women plus size 26 one piece swimsuits for women plus size tummy control one piece swimsuits for teen girls one piece swimsuits for teen girls with padding one piece swimsuits for teen girls with skirt one piece swimsuits for teen girls black one piece swimsuits for teens cheap one piece swimsuits for teens athletic one piece swimsuits for teens juniors one piece swimsuits for teens black two piece swimsuits for women high waisted two piece swimsuits for women two piece swimsuits for women high cut two piece swimsuits for women strapless two piece swimsuits for women plus size two piece swimsuits for women plus size high waisted two piece swimsuits for women tummy control two piece swimsuits for women high waisted thong two piece swimsuits for women with skirt two piece swimsuits for women with shorts two piece swimsuits for women high waisted two piece swimsuits for women high waisted tummy control prime \n high waisted two piece swimsuits for women two piece swimsuits for women high cut two piece swimsuits for women strapless two piece swimsuits for women plus size two piece swimsuits for women plus size high waisted two piece swimsuits for women tummy control two piece swimsuits for women high waisted thong two piece swimsuits for women with skirt two piece swimsuits for women with shorts two piece swimsuits for women high waisted two piece swimsuits for women high waisted tummy control primeswimsuits for women plus size tummy control two piece swimsuits for women high waisted plus size two piece swimsuits for women two piece swimsuits for women high cut two piece swimsuits for women strapless two piece swimsuits for women plus size two piece swimsuit black two piece swimsuits for women tummy control two piece swimsuits for women high cut two piece swimsuits for women strapless two piece swimsuits for women plus size two piece swimsuits for women plus size high waisted two pieceplus size tankinis for plus size women two piece swimsuits for women plus size high waisted two piece swimsuit black two piece swimsuits for women tummy control two piece swimsuits for women tummy control push up bra two-piece suits for women tankinis swimwear for women tankinis swimwear for women plus size tankinis swimwear for women underwire tankinis swimwear for women adjustable strap tankinis for women with tummy control tankinis for girls tankinis plus size tankinisShow more"}, {"name": "ASICS mens Gel-cumulus 22", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 3, 2021", "Manufacturer\n \u200f": "\u200e\n ASICS", "ASIN\n \u200f": "\u200e\n B098LYVRDZ", "Best Sellers Rank": "#2,354,648 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#6,743 in Men's Running Shoes", "#6,743 in Men's Running Shoes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the ASICS Store", "brand_url": "https://www.amazon.com/stores/ASICS/page/3D51EC88-4320-4F70-8CAF-9E7C77D723E2?ref_=ast_bln", "full_description": "", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/21Xm3fmDnFL.jpg", "https://m.media-amazon.com/images/I/21pkKzcxWdL.jpg", "https://m.media-amazon.com/images/I/31GH0xdgfBL.jpg", "https://m.media-amazon.com/images/I/31aXHqIFbeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Athletic \u203a Running", "average_rating": 4.1, "small_description": ["Contains reflective materials designed to enhance visibility during low light hours ", "Flytefoam Lyte midsole provides continuous cushion thanks to organic nano fibers ", "Vertical flex groove decouples the tooling along the line of progression for enhanced gait efficiency ", "ASICS high abrasion resistant (AHAR) rubber on the outsole that is softer and lighter to deliver a plush ride flexibility and overall comfort ", "Rearfoot and Forefoot GEL Cushioning Systems attenuates shock during impact and toe-off phases and allows movement in multiple planes as the foot transitions through the gait cycle "], "total_reviews": 4, "total_answered_questions": "", "customization_options": {"Size": null, "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0821674CT", "category": "fashion", "query": "Men's Athletic Shoes", "page": 200, "small_description_old": "Synthetic-and-mesh Imported Rubber sole Contains reflective materials designed to enhance visibility during low light hours Flytefoam Lyte midsole provides continuous cushion thanks to organic nano fibers Vertical flex groove decouples the tooling along the line of progression for enhanced gait efficiency ASICS high abrasion resistant (AHAR) rubber on the outsole that is softer and lighter to deliver a plush ride flexibility and overall comfort Rearfoot and Forefoot GEL Cushioning Systems attenuates shock during impact and toe-off phases and allows movement in multiple planes as the foot transitions through the gait cycle"}, {"name": "yanw DC Power Cable Cord for Panasonic AG Mini-DV Camcorder K2GJ2DZ00023 VCR DC Out", "product_information": {"Manufacturer": "yanw", "ASIN": "B08HR1P3Z9", "Date First Available": "September 9, 2020"}, "brand": "Brand: yanw", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=yanw", "full_description": "DC Power Cable Cord For Panasonic AG Mini-DV Camcorder K2GJ2DZ00023 VCR DC OUT", "pricing": "$26.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41uAIjDgKZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Cables & Accessories \u203a Cables & Interconnects \u203a USB Cables", "average_rating": "", "small_description": ["100% Brand New, High Quality ", "Tip Size: Ref to the pictures Cable Length: 6ft Manufactured with the Highest Quality Materials Overvoltage, Shortcircuit protection and Over Temperature Protection. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AXQT4CRB37RUF", "seller_name": "Yilin trade", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08HR1P3Z9", "category": "electronics", "query": "VCRs", "page": 150, "small_description_old": "100% Brand New, High Quality Tip Size: Ref to the pictures Cable Length: 6ft Manufactured with the Highest Quality Materials Overvoltage, Shortcircuit protection and Over Temperature Protection."}, {"name": "LAGOM 5 Layer Cotton Pad 100% Natural Hypoallergenic Separable Cleansing Puff Lint-Free Soft Facial Square Wipe Eye Cosmetic Toner Makeup Nail Polish Remover Sensitive Dry Oily Skin 2\"x2.75\" 80 Count", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5.9 x 4.05 x 2.82 inches; 4.16 Ounces", "Item model number\n \u200f": "\u200e\n LGM-5LC-PAD-80", "Manufacturer\n \u200f": "\u200e\n LAGOM", "ASIN\n \u200f": "\u200e\n B09BW4S48B", "Country of Origin\n \u200f": "\u200e\n Korea, Republic of", "Best Sellers Rank": "#117,692 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#90 in Manual Facial Cleansing Brushes #173 in Cotton Pads & Rounds #461 in Skin Care Sets & Kits", "#90 in Manual Facial Cleansing Brushes": "", "#173 in Cotton Pads & Rounds": "", "#461 in Skin Care Sets & Kits": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the LAGOM Store", "brand_url": "https://www.amazon.com/stores/LAGOM/page/D28CB25E-FDDA-4D83-9781-EEE2CB7BC116?ref_=ast_bln", "full_description": "", "pricing": "$9.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21yKOeWcg8L.jpg", "https://m.media-amazon.com/images/I/31l7rFSr4ML.jpg", "https://m.media-amazon.com/images/I/31zT+-HQ6gL.jpg", "https://m.media-amazon.com/images/I/31M7s6hflcL.jpg", "https://m.media-amazon.com/images/I/31J+i2pfsmL.jpg", "https://m.media-amazon.com/images/I/31fLf6CkJUL.jpg", "https://m.media-amazon.com/images/I/31sMO51YeuL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Cotton Balls & Swabs \u203a Cotton Pads & Rounds", "average_rating": 4.7, "small_description": ["100% PURE COTTON: Premium lint-free cotton pads to gently apply skin care products and wipe away dull skin cells. ", "MULTI LAYERS FOR PREMIUM ABSORBENCY: Its 5 layers help to absorb sufficiently and wipe gently against the skin. ", "FIRM AND DURABLE: The cotton pads are compressed and sealed at each end to ensure durability when using them. ", "SAFE FOR SENSITIVE SKIN: A soft and smooth surface that is safe to be used on even sensitive skin. ", "CUSTOMIZABLE USAGE: Separate the layers into the desired thickness from 1 to 5 layers depending on use purposes. ", "HOW TO USE: Separate into 2-3 layers for makeup and nail remover. You can soak the 5 layers with toner, separate and put each layer on the skin as if using a sheet mask. ", "SPECIAL INGREDIENTS: 100% Organic Premium Cotton "], "total_reviews": 38, "total_answered_questions": "", "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "LAGOM 5 LAYER COTTON PAD", "price_string": "$9.00", "price": 9, "image": "https://m.media-amazon.com/images/I/21yKOeWcg8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BW2GVM9/ref=twister_B09R453YQT?_encoding=UTF8&psc=1", "value": "CELLUP FACIAL CLEANSING BRUSH", "price_string": "$9.00", "price": 9, "image": "https://m.media-amazon.com/images/I/314kf+l50mL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07PX31XCM/ref=twister_B09R453YQT?_encoding=UTF8&psc=1", "value": "LAGOM TRAVEL KIT", "price_string": "$28.00", "price": 28, "image": "https://m.media-amazon.com/images/I/41DlHR0WGyL.jpg"}]}, "seller_id": "A3EV9THW1FQ5YC", "seller_name": "LAGOM AMERICA", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09BW4S48B", "category": "beauty", "query": "Makeup Remover", "page": 72, "small_description_old": "About this item 100% PURE COTTON: Premium lint-free cotton pads to gently apply skin care products and wipe away dull skin cells. MULTI LAYERS FOR PREMIUM ABSORBENCY: Its 5 layers help to absorb sufficiently and wipe gently against the skin. FIRM AND DURABLE: The cotton pads are compressed and sealed at each end to ensure durability when using them. SAFE FOR SENSITIVE SKIN: A soft and smooth surface that is safe to be used on even sensitive skin. CUSTOMIZABLE USAGE: Separate the layers into the desired thickness from 1 to 5 layers depending on use purposes. HOW TO USE: Separate into 2-3 layers for makeup and nail remover. You can soak the 5 layers with toner, separate and put each layer on the skin as if using a sheet mask. SPECIAL INGREDIENTS: 100% Organic Premium Cotton"}, {"name": "Jamo Studio Series S 803 HCS-WH White Home Cinema System & S 808 SUB White NA", "product_information": {"ASIN": "B08XXDGPKR", "Customer Reviews": {"ratings_count": null, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#287,190 in Electronics (See Top 100 in Electronics) #355 in Surround Sound Systems"], "Date First Available": "March 2, 2021"}, "brand": "Visit the Klipsch Store", "brand_url": "https://www.amazon.com/stores/Klipsch/page/4EE1E351-44E9-487A-B65F-92CCEB62C19A?ref_=ast_bln", "full_description": "Jamo Studio Series S 803 HCS-WH White Home Cinema SystemYou will receive: 1 Jamo Studio Series S 803 HCS-WH White home cinema system The S 803 HCS is the most compact system of the Jamo Studio 8 Series. Dual S 803 Dolby Atmos ready bookshelf speakers, a perfectly tuned center channel speaker, and two S 801 speakers for surround sound add up to and incredible yet compact home Theater. Complete 5.0 home theater contemporary design2 x s 803 Bookshelf speakers2 x s 801 speakers for surround sound1 x s 81 Cen center channel speaker Dolby Atmos ready for s 8 ATM speakers compact, yet powerfulfront-firing tube port allows for versatility in placement (in cabinets, against walls, etc.) and enhanced, cleaner bass response. Studio 8 waveguide technology focuses high frequencies for dynamic, powerful sound.beautiful, contemporary designfully magnetic grilles - no mounting holds or push pins - for a clean, minimalist front baffle design.Large, woven pattern linen grilles create visual interest with heavy texture and come in two unique colors - heather gray with white models, and charcoal Gray for black or walnut finishes. Wood grain accents around the tweeters, at the bases and feet give a handcrafted, natural look. A 3\" Taper on the cabinet accentuates the slim design aesthetic of studio 8 speakers.dolby Atmos readydolby Atmos ready speakers deliver sound that comes alive from all directions, including overhead, to fill any room with astonishing clarity, detail and depth.s 8 ATM Atmos moduledolby Atmos topper's metal feet innovatively align with patent-pending integrated conductive metal contacts on Capable tower and bookshelf speakers, so the back of the topper has a clean design, free from any inputs or wires.S 808 SUB White NAS 808 sub - Slim line subwoofer designed to maximize output in small spaces. Side firing 8\" Woofer with downward firing ports and a 100 watt amplifier.", "pricing": "$493.44", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31vSFeACDQL.jpg", "https://m.media-amazon.com/images/I/41FXEOQQp+L.jpg", "https://m.media-amazon.com/images/I/314gUfNYSZL.jpg", "https://m.media-amazon.com/images/I/31-+3sW3Y+L.jpg", "https://m.media-amazon.com/images/I/31o+UC1vUpL.jpg", "https://m.media-amazon.com/images/I/41cxtwhWcVL.jpg", "https://m.media-amazon.com/images/I/31ESd8lhr4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Speakers \u203a Surround Sound Systems", "average_rating": 4, "small_description": ["Product 1: Package Dimensions: 35.04 L x 11.02 H x 24.41 W (inches) ", "Product 1: Package Weight : 54.78 pounds ", "Product 1: Country of Origin : China ", "Product 2: Perfect combination of style and performance "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Style": null}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08XXDGPKR", "category": "electronics", "query": "Surround Sound Systems", "page": 87, "small_description_old": "About this item Product 1: Package Dimensions: 35.04 L x 11.02 H x 24.41 W (inches) Product 1: Package Weight : 54.78 pounds Product 1: Country of Origin : China Product 2: Perfect combination of style and performance"}, {"name": "Welchs Orange Pineapple Juice Drink Blend, 16 Fluid Ounce -- 12 per case.", "product_information": {"ASIN\n \u200f": "\u200e\n B073J29HJW", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$49.99", "list_price": "", "availability_quantity": 13, "availability_status": "Only 13 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41e3AlYYKVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.3, "small_description": [""], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "A1PTN6GZHAH0WE", "seller_name": "YUM YUM SHOPPE", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B073J29HJW", "category": "grocery", "query": "Beverages", "page": 244, "small_description_old": ""}, {"name": "Designers Impressions Juno Oil Rubbed Bronze 2 Light Wall Sconce/Bathroom Fixture with Clear and Frosted Glass: 73470", "product_information": {"Brand": "\u200eDesigners Impressions", "Manufacturer": "\u200eDesigners Impressions", "Part Number": "\u200e73470", "Item Weight": "\u200e5.84 pounds", "Package Dimensions": "\u200e16.3 x 11.4 x 9.1 inches", "Item model number": "\u200e73470", "Is Discontinued By Manufacturer": "\u200eNo", "Style": "\u200eModern", "Color": "\u200eOil-rubbed Bronze", "Material": "\u200eMetal", "Finish Types": "\u200eBronze", "Number of Lights": "\u200e2", "Shade Material": "\u200eGlass", "Light Direction": "\u200eUplight", "Power Source": "\u200eAC", "Switch Installation Type": "\u200eWall Mount", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Type of Bulb": "\u200eUp Light", "Wattage": "\u200e60 Watts", "ASIN": "B01NCQLFPH", "Customer Reviews": {"ratings_count": 309, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#232,717 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #1,426 in Wall Sconces"], "Date First Available": "December 28, 2016"}, "brand": "Brand: Designers Impressions", "brand_url": "https://www.amazon.com/Designers-Impressions/b/ref=bl_dp_s_web_20687231011?ie=UTF8&node=20687231011&field-lbr_brands_browse-bin=Designers+Impressions", "full_description": "", "pricing": "$55.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41gDGht3eVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Wall Lamps & Sconces", "average_rating": 4.7, "small_description": ["Finish: Oil Rubbed Bronze --- Glass: Clear and Frosted ", "Height: 8-1/4\" ---- Width: 14-1/2\" ", "Bulb Requirements (Not Included): (2) Two Medium Base 60 Watt ", "All Mounting Hardware Included ---- Can only be mounted facing up ", "15 Year Warranty "], "total_reviews": 309, "total_answered_questions": 46, "model": "\u200e73470", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01MY2P1N4/ref=twister_B08HSMQ2KB?_encoding=UTF8&psc=1", "value": "1 Light", "price_string": "$43.95", "price": 43.95, "image": null}, {"is_selected": true, "url": null, "value": "2 Light", "price_string": "$55.95", "price": 55.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01N1WTNQ6/ref=twister_B08HSMQ2KB?_encoding=UTF8&psc=1", "value": "3 Light", "price_string": "$69.95", "price": 69.95, "image": null}]}, "seller_id": "AMPOJ0D1ISDS0", "seller_name": "Cabinet Hardware 4 Less", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B01NCQLFPH", "category": "garden", "query": "Sconces", "page": 71, "small_description_old": "About this item Finish: Oil Rubbed Bronze --- Glass: Clear and Frosted Height: 8-1/4\" ---- Width: 14-1/2\" Bulb Requirements (Not Included): (2) Two Medium Base 60 Watt All Mounting Hardware Included ---- Can only be mounted facing up 15 Year Warranty \n \u203a See more product details"}, {"name": "Fab Habitat Seagrass Storage Basket Set - Wicker Pattern Baskets, Strong Handles - Organizer for Blankets, Towels, Pillows, Toys, Laundry, Baby, Kids, Home D\u00e9cor - Harlem - XL", "product_information": {"Item Weight": "\u200e2.25 pounds", "Product Dimensions": "\u200e19 x 19 x 16 inches", "Assembled Height": "\u200e16 inches", "Assembled Width": "\u200e19 inches", "Assembled Length": "\u200e19 inches", "Weight": "\u200e4 Pounds", "ASIN": "B07SXRVKZ2", "Customer Reviews": {"ratings_count": 85, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#27,409 in Baby (See Top 100 in Baby) #79 in Nursery Baskets & Liners #38,669 in Home Storage & Organization (Home & Kitchen)"], "Date First Available": "June 7, 2019"}, "brand": "Visit the Fab Habitat Store", "brand_url": "https://www.amazon.com/stores/Fab+Habitat/page/B22B9204-5D1A-43A3-9D38-E06130750A8B?ref_=ast_bln", "full_description": "The Harlem basket is the trendy solution for storing all those bits and bobs scattered around the house! In true Fab Habitat style, we added a pop of color to create a stylish and versatile storage solution. Firmly woven with 100% sustainable seagrass, this round-tapered basket is eco-friendly and incredibly durable so you can count on it to last. Use it for laundry, clean towels, freshly folded sheets, toy room, or any of the many of goods you would like to store away. The Harlem basket even makes a perfect large or small plant pot for indoor house plants. Ethically-sourced and Fairtrade, our baskets are handmade with love by local artisans. Strong, tightly-woven handles mean you can easily carry the basket around the home.", "pricing": "$69.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51GW7LT2-aL.jpg", "https://m.media-amazon.com/images/I/518AQ0V99QL.jpg", "https://m.media-amazon.com/images/I/5119UwaTSlL.jpg", "https://m.media-amazon.com/images/I/41NlnXCEdEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Baby Products \u203a Nursery \u203a D\u00e9cor \u203a Baskets & Liners", "average_rating": 4.7, "small_description": ["HANDMADE WITH RECYCLE PLASTIC AND SUSTAINABLE SEAGRASS: Eco-Friendly Storage Basket Set with Handle. Basket Size - Height: 16\", Diameter: 19\". Actual colors and size may vary from the image(s) shown due to manufacturing limitations with natural materials. ", "STYLE THAT FITS MANY HOME STYLES: The earth tones match many different home styles, making storage more chic and fabulous in both modern and traditional homes. ", "MULTI-USE: These baskets are versatile enough to be used to store laundry, clean towels, freshly folded sheets, children's toys, as a plant pot or whatever you need to store away. ", "STORAGE MADE TO LAST: Because quality is just as important as style, our eco-friendly baskets are tightly woven from fibers made up of sustainable seasgrass and recycle plastic for added durability you can count on. For indoor use only. Strong, tightly-woven handles mean you can easily carry the baskets around the home. ", "CERTIFIED FAIR TRADE: Our baskets have been approved by the World Fair Trade Organization. We set high standards to ensure everything we sell has been made with respect to people and our planet. "], "total_reviews": 85, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B079ZSBPVG/ref=twister_B08PC17SCT?_encoding=UTF8&psc=1", "value": "Large", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "X-Large", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51y9S0m11uL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PC2FF2H/ref=twister_B08PC17SCT", "value": "Harlem", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51OluMT3cNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BP21HML/ref=twister_B08PC17SCT?_encoding=UTF8&psc=1", "value": "Harlem - Sunset", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/510L0RWVIaL.jpg"}]}, "seller_id": "A27ALMBM57HK47", "seller_name": "Fab Habitat", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07SXRVKZ2", "category": "garden", "query": "Baskets and Storage", "page": 20, "small_description_old": "About this item HANDMADE WITH RECYCLE PLASTIC AND SUSTAINABLE SEAGRASS: Eco-Friendly Storage Basket Set with Handle. Basket Size - Height: 16\", Diameter: 19\". Actual colors and size may vary from the image(s) shown due to manufacturing limitations with natural materials. STYLE THAT FITS MANY HOME STYLES: The earth tones match many different home styles, making storage more chic and fabulous in both modern and traditional homes. MULTI-USE: These baskets are versatile enough to be used to store laundry, clean towels, freshly folded sheets, children's toys, as a plant pot or whatever you need to store away. STORAGE MADE TO LAST: Because quality is just as important as style, our eco-friendly baskets are tightly woven from fibers made up of sustainable seasgrass and recycle plastic for added durability you can count on. For indoor use only. Strong, tightly-woven handles mean you can easily carry the baskets around the home. CERTIFIED FAIR TRADE: Our baskets have been approved by the World Fair Trade Organization. We set high standards to ensure everything we sell has been made with respect to people and our planet. \n \u203a See more product details"}, {"name": "KAWIHEN Silicone Key Fob Cover Compatible with Chevrolet Chevy Cruze Equinox Impala Malibu Sonic Spark Volt Camaro 4 Buttons Key Fob Case Cover OHT01060512 KR55WK50073", "product_information": {"Manufacturer": "\u200eKAWIHEN", "Brand": "\u200eKAWIHEN", "Item Weight": "\u200e0.422 ounces", "Package Dimensions": "\u200e5 x 1.46 x 0.43 inches", "Is Discontinued By Manufacturer": "\u200eNo", "Manufacturer Part Number": "\u200eSG0704G", "OEM Part Number": "\u200eAVL-B01T1AC 5913598 20873621 20873623, OHT01060512 KR55WK50073 5913596 V2T01060512 V2T01060514", "ASIN": "B083G2416L", "Customer Reviews": {"ratings_count": 318, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#26,192 in Automotive (See Top 100 in Automotive) #253 in Antitheft Keyless Entry Systems #8,049 in Automotive Replacement Parts"], "Date First Available": "September 15, 2017"}, "brand": "Brand: KAWIHEN", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=KAWIHEN", "full_description": "The Silicone key fob Cover will save your money. Compatible with Chevrolet Compatible with 2010-2014 Chevrolet Camaro Compatible with 2011-2013 Chevrolet Cruze Compatible with 2010-2014 Chevrolet Equinox Compatible with 2014-2016 Chevrolet Impala Compatible with 2012-2014 Chevrolet Malibu Compatible with 2012-2014 Chevrolet Sonic Compatible with 2013 Chevrolet Spark Compatible with 2011-2013 Chevrolet Volt Compatible with Compatible with OHT01060512 KR55WK50073 5913596 V2T01060512 V2T01060514 AVL-B01T1AC 5913598 20873621 20873623 Compatible with Chevrolet 4 buttons key fob cover", "pricing": "$6.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31xSkXDiapL.jpg", "https://m.media-amazon.com/images/I/31XF0Z3n3vL.jpg", "https://m.media-amazon.com/images/I/41iJZxkIexL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Automotive \u203a Interior Accessories \u203a Anti-Theft \u203a Keyless Entry Systems", "average_rating": 4.6, "small_description": ["Silicone Rubber Protector Cover Fit for Remote Key Fob. ", "Perfect fit pretects from dust and dirt.Also with the buttons fading, it helps to see what one you are using. Highly recommend picking them up from the get to keep your key fob from deteriorating. ", "More thicker, More better hand-touching,More quality. ", "Conspicuous colors,The color of the easy to find. ", "Please refer to product description for applicable models.Compatible with OHT01060512 KR55WK50073 5913596 V2T01060512 V2T01060514 AVL-B01T1AC 5913598 20873621 20873623. "], "total_reviews": 318, "total_answered_questions": "", "customization_options": "", "seller_id": "A3EIVOZPK5BET2", "seller_name": "KAWIHEN", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B083G2416L", "category": "electronics", "query": "Car Accessories", "page": 154, "small_description_old": "Silicone Rubber Protector Cover Fit for Remote Key Fob. Perfect fit pretects from dust and dirt.Also with the buttons fading, it helps to see what one you are using. Highly recommend picking them up from the get to keep your key fob from deteriorating. More thicker, More better hand-touching,More quality. Conspicuous colors,The color of the easy to find. Please refer to product description for applicable models.Compatible with OHT01060512 KR55WK50073 5913596 V2T01060512 V2T01060514 AVL-B01T1AC 5913598 20873621 20873623. \n \u203a See more product details"}, {"name": "ClosetMaid 1312 4-Tier Wood Ladder Shelf Bookcase, Natural", "product_information": {"Product Dimensions": "19.69 x 23.62 x 70.87 inches", "Item Weight": "26 pounds", "Manufacturer": "ClosetMaid", "ASIN": "B01N9RL0AX", "Country of Origin": "China", "Item model number": "1312", "Customer Reviews": {"ratings_count": 1414, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#66,958 in Home & Kitchen (See Top 100 in Home & Kitchen) #17 in Ladder Shelves"], "Is Discontinued By Manufacturer": "No", "Specification met": "(unset)", "Assembly Required": "Yes", "Batteries Required?": "No", "Included Components": "Upper Metal Frame (2)^Metal Frame Leg (4)^Metal X Wire (1)^Metal Joint (4)^X-Large Shelf^Large Shelf^Medium Shelf^Small Shelf^Shelf Screws (16)^Outer Joint Screw (8)^Inner Joint Screw (8)^X Wire Screw (4)^X Wire Cap Nut (4)^Hex Key (2)^Hex Key^Wrench^L-Bracket (2)^Shelf Screw (2)^Wall Screw (2)^Drywall Anchor (2)", "Import Designation": "Imported"}, "brand": "Visit the ClosetMaid Store", "brand_url": "https://www.amazon.com/stores/ClosetMaid/page/378C77C4-E95C-428E-9A2F-AEBA489E8E3E?ref_=ast_bln", "full_description": "Add this ladder shelf from ClosetMaid to your home or office for sleek, stylish organization! designed with retro yet modern, simple appeal, this ladder shelf would fit in any room of your home, like the living area or office. This 4-Tier, A-line style shelf looks great with magazines, photo frames, decor and so much more", "pricing": "$73.99", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31e-Y6HTJHL.jpg", "https://m.media-amazon.com/images/I/41yodvQlNDL.jpg", "https://m.media-amazon.com/images/I/51CzaC3Td7L.jpg", "https://m.media-amazon.com/images/I/51wbV0IFbgL.jpg", "https://m.media-amazon.com/images/I/31T5p9uvLKL.jpg", "https://m.media-amazon.com/images/I/41EpusqGElL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Accent Furniture \u203a Ladder Shelves", "average_rating": 4.7, "small_description": ["Measures 70.87H x 23.62W x 19.69D ", "Create decorative storage and display space for any Area of the home with this 4-tier, a-frame style shelf ", "Ideal for books, photo frames, magazines and more ", "Distance between top shelves measures 15.43\"; Distance between lower shelf measures 14.49\" ", "Materials: Laminate wood and powder-coated steel base; All hardware included "], "total_reviews": 1414, "total_answered_questions": "", "model": "1312", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01N7S3EJS/ref=twister_B09J19DYZP?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "$73.99", "price": 73.99, "image": "https://m.media-amazon.com/images/I/31wlr7-evCL.jpg"}, {"is_selected": true, "url": null, "value": "Natural", "price_string": "$73.99", "price": 73.99, "image": "https://m.media-amazon.com/images/I/31e-Y6HTJHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HJLB3M9/ref=twister_B09J19DYZP?_encoding=UTF8&psc=1", "value": "Taupe", "price_string": "$85.99", "price": 85.99, "image": "https://m.media-amazon.com/images/I/31z28cT0HbL.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B01N9RL0AX", "category": "garden", "query": "Book Cases", "page": 54, "small_description_old": "About this item Measures 70.87H x 23.62W x 19.69D Create decorative storage and display space for any Area of the home with this 4-tier, a-frame style shelf Ideal for books, photo frames, magazines and more Distance between top shelves measures 15.43\"; Distance between lower shelf measures 14.49\" Materials: Laminate wood and powder-coated steel base; All hardware included"}, {"name": "Spigen U100 Universal Kickstand Compatible with Any Cellphone - Black (US Patent Pending)", "product_information": {"Product Dimensions": "10 x 2 x 15 inches", "Item Weight": "0.634 ounces", "ASIN": "B01LW6NN8T", "Item model number": "000EM20860", "Customer Reviews": {"ratings_count": 3281, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#7,725 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #213 in Cell Phone Stands"], "Is Discontinued By Manufacturer": "No", "Other display features": "CE", "Colour": "Black", "Manufacturer": "Spigen", "Date First Available": "September 9, 2016"}, "brand": "Visit the Spigen Store", "brand_url": "https://www.amazon.com/stores/Spigen/page/1B6B4933-0D21-4FF4-AB37-F74CD4F5CB1C?ref_=ast_bln", "full_description": "", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31T4nypeStL.jpg", "https://m.media-amazon.com/images/I/51pIga9oadL.jpg", "https://m.media-amazon.com/images/I/41PeeFcEuFL.jpg", "https://m.media-amazon.com/images/I/41pnUUEvgHL.jpg", "https://m.media-amazon.com/images/I/417tzlcZ5bL.jpg", "https://m.media-amazon.com/images/I/41CKyQ-cUlL.jpg", "https://m.media-amazon.com/images/I/41xjF0WUW4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Stands", "average_rating": 4.2, "small_description": ["One-touch Technology with semi-automatic spring tension for easy opening ", "Premium metal minimalistic design with secure magnet closure ", "Universal compatibility with majority of mobile devices and phone cases ", "Durable 3M adhesive for secure attachment ", "Hands free viewing experience for your everyday convenience. (Landscape) "], "total_reviews": 3281, "total_answered_questions": 101, "model": "000EM20860", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "$11.99", "price": 11.99, "image": "https://m.media-amazon.com/images/I/31T4nypeStL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01N1JNAAK/ref=twister_B01LY8WFVF?_encoding=UTF8&psc=1", "value": "Rose Gold", "price_string": "$11.99", "price": 11.99, "image": "https://m.media-amazon.com/images/I/31Va8lbrnML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HP15P60/ref=twister_B01LY8WFVF?_encoding=UTF8&psc=1", "value": "Silver", "price_string": "$11.99", "price": 11.99, "image": "https://m.media-amazon.com/images/I/311qH3n+GkL.jpg"}]}, "seller_id": "A2SFKRF5TPZMT5", "seller_name": "Spigen Inc", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01LW6NN8T", "category": "electronics", "query": "Cell Phones", "page": 110, "small_description_old": "About this item One-touch Technology with semi-automatic spring tension for easy opening Premium metal minimalistic design with secure magnet closure Universal compatibility with majority of mobile devices and phone cases Durable 3M adhesive for secure attachment Hands free viewing experience for your everyday convenience. (Landscape)"}, {"name": "Stylus Pens for iPad, Touch Screens Stylus Pencils High Sensitivity Disc & Fiber Tip Universal Stylus with Magnetic Cap Compatible with iPad, iPhone, Android, Microsoft Tablets", "product_information": {"Product Dimensions": "6.4 x 2.6 x 0.39 inches", "Item Weight": "2.39 ounces", "ASIN": "B08T6Y8VVT", "Customer Reviews": {"ratings_count": 1419, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#18 in Styluses"], "Date First Available": "January 16, 2021", "Manufacturer": "OOCLCURFUL"}, "brand": "Brand: OOCLCURFUL", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=OOCLCURFUL", "full_description": "", "pricing": "$13.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41cG+1M-wGL.jpg", "https://m.media-amazon.com/images/I/51xDVUOxeGL.jpg", "https://m.media-amazon.com/images/I/41hUTbDQNML.jpg", "https://m.media-amazon.com/images/I/41eGkf3tCVL.jpg", "https://m.media-amazon.com/images/I/41c0xbziyQL.jpg", "https://m.media-amazon.com/images/I/51AfJXznxZL.jpg", "https://m.media-amazon.com/images/I/51ijB8sDCLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Tablet Accessories \u203a Styluses", "average_rating": 4.6, "small_description": ["\u3010Two-Way Magnetic Cap Features\u3011 - Magnetically attached cap will absorb in each end of stylus pens. Maximum protection on both sides of the pen. Makes it feels more like a real pen, durable and convenient ", "\u30102 in 1 Design\u3011 - One end is disc tip, perfect for handwriting and detail drawing; The other end is durable fiber tip (just like you fingers but more accuracy ) perfect for normal use such as scroll webpage, gaming ", "\u3010Accuracy & Sensitivity\u3011 - Touch screen pencil tip is clear and thin which allows you to see through and point to right position. You can get a quieter and more accurate writing or painting experience ", "\u3010Universal Stylus\u3011 - All Touch Screens including iPhone, iPad, iPad pro, iPad mini, Cellphones, notes, Tablets, Touch screen computers, Kindles and all other touch screens ", "\u3010Replaceable Tips\u3011 - The two stylus pencils come with 4 spare disc tips and 2 spare fiber tips. The two ends of the stylus pen are replaceable "], "total_reviews": 1419, "total_answered_questions": 16, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09G6GD8Z1/ref=twister_B09T6TCTGQ?_encoding=UTF8&psc=1", "value": "Black/Blue", "price_string": "$19.99", "price": 19.99, "image": "https://m.media-amazon.com/images/I/31SlwUX65OL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08T7CH16L/ref=twister_B09T6TCTGQ?_encoding=UTF8&psc=1", "value": "Jet Black/Off White", "price_string": "$18.99", "price": 18.99, "image": "https://m.media-amazon.com/images/I/31mxvADjezL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09G6G9LF2/ref=twister_B09T6TCTGQ?_encoding=UTF8&psc=1", "value": "White/Blue", "price_string": "$17.99", "price": 17.99, "image": "https://m.media-amazon.com/images/I/316Uu8P7CJL.jpg"}, {"is_selected": true, "url": null, "value": "white/rose gold", "price_string": "$13.99", "price": 13.99, "image": "https://m.media-amazon.com/images/I/41cG+1M-wGL.jpg"}]}, "seller_id": "A1LUD5NVDGTV07", "seller_name": "OOCLCURFUL", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08T6Y8VVT", "category": "electronics", "query": "iPhone Accessories", "page": 316, "small_description_old": "About this item\n \n\u3010Two-Way Magnetic Cap Features\u3011 - Magnetically attached cap will absorb in each end of stylus pens. Maximum protection on both sides of the pen. Makes it feels more like a real pen, durable and convenient \u30102 in 1 Design\u3011 - One end is disc tip, perfect for handwriting and detail drawing; The other end is durable fiber tip (just like you fingers but more accuracy ) perfect for normal use such as scroll webpage, gaming \u3010Accuracy & Sensitivity\u3011 - Touch screen pencil tip is clear and thin which allows you to see through and point to right position. You can get a quieter and more accurate writing or painting experience \u3010Universal Stylus\u3011 - All Touch Screens including iPhone, iPad, iPad pro, iPad mini, Cellphones, notes, Tablets, Touch screen computers, Kindles and all other touch screens \u3010Replaceable Tips\u3011 - The two stylus pencils come with 4 spare disc tips and 2 spare fiber tips. The two ends of the stylus pen are replaceable"}, {"name": "Rivetino Eyeshadow Palette, Professional 30 Color Spotlight Eye Shadow Matte Shimmer Makeup Pallet Highly Pigmented Colorful Powder Long Lasting Waterproof Eye Shadow", "product_information": {"Package Dimensions": "10.75 x 7.36 x 0.43 inches", "Item model number": "KJ2YPGIKS220HP7UT3UV", "ASIN": "B08RCVFMQ7", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#952,424 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #11,013 in Eyeshadow"], "Item Weight": "6.4 ounces", "Department": "Eyeshadow", "Manufacturer": "Rivetino", "Date First Available": "December 27, 2020"}, "brand": "Visit the Rivetino Store", "brand_url": "https://www.amazon.com/stores/Sazemood/page/C680F611-B67E-4462-A815-BE1E75734610?ref_=ast_bln", "full_description": "Features: Rich colors, long-lasting and waterproof.Specification: Name: 30-color Eyeshadow PalettePacking List:Eyeshadow Palette*1", "pricing": "$15.87", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41HGaOa3miL.jpg", "https://m.media-amazon.com/images/I/51vv8Aw-yyL.jpg", "https://m.media-amazon.com/images/I/51QNczCBMNL.jpg", "https://m.media-amazon.com/images/I/514yd-auL+L.jpg", "https://m.media-amazon.com/images/I/41j6ySfxRtL.jpg", "https://m.media-amazon.com/images/I/51KVQtXoSPL.jpg", "https://m.media-amazon.com/images/I/419Ae4vTVTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Eyes \u203a Eyeshadow", "average_rating": 5, "small_description": ["\u2605 1 . Rich colors and multiple styles: Single color or mixed color use, can produce changeable effects, match your own colors. ", "\u2605 2 . Easily outline deep and enchanting eye makeup: Matte, pearlescent combination, suitable for professional makeup or daily makeup. ", "\u2605 3 . Both matte and shimmer tones have smooth powder, creamy and velvety softness. The powdery texture is fine and easy to color and blend evenly with skin. The color transition is natural. ", "\u2605 4 . Super soft and easy to mix, suitable for daily makeup, such as smoky eye makeup, wedding makeup, party makeup, casual makeup, etc. ", "\u2605 5 . Smooth, delicate texture, long shiny effect and shiny luster, giving you comfortable user experience and shiny eyes. Highly pigmented and durable colors, keep your eye shadow makeup for a long time. "], "total_reviews": 1, "total_answered_questions": "", "model": "KJ2YPGIKS220HP7UT3UV", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "01", "price_string": "$15.87", "price": 15.87, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08RCV253M/ref=twister_B08RCT29JD?_encoding=UTF8&psc=1", "value": "02", "price_string": "$8.73", "price": 8.73, "image": null}]}, "seller_id": "A25FT91HFTVLS0", "seller_name": "Rivetino", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08RCVFMQ7", "category": "beauty", "query": "Makeup Palettes", "page": 164, "small_description_old": "About this item \u2605 1 . Rich colors and multiple styles: Single color or mixed color use, can produce changeable effects, match your own colors. \u2605 2 . Easily outline deep and enchanting eye makeup: Matte, pearlescent combination, suitable for professional makeup or daily makeup. \u2605 3 . Both matte and shimmer tones have smooth powder, creamy and velvety softness. The powdery texture is fine and easy to color and blend evenly with skin. The color transition is natural. \u2605 4 . Super soft and easy to mix, suitable for daily makeup, such as smoky eye makeup, wedding makeup, party makeup, casual makeup, etc. \u2605 5 . Smooth, delicate texture, long shiny effect and shiny luster, giving you comfortable user experience and shiny eyes. Highly pigmented and durable colors, keep your eye shadow makeup for a long time."}, {"name": "Onkyo 5.2 Channel Full 4K Bluetooth AV Home Theater Receiver + Polk 8\" 2 Way High-Performance Natural Surround Sound in-Wall Speaker System (Set of 6)", "product_information": {"Manufacturer": "ONKYO", "ASIN": "B074PBDJG9", "Is Discontinued By Manufacturer": "No", "Date First Available": "August 9, 2017"}, "brand": "Visit the Onkyo Store", "brand_url": "https://www.amazon.com/stores/Onkyo/page/53779672-BBC0-427B-97A1-90A646894D54?ref_=ast_bln", "full_description": "Onkyo 5.2 Channel Surround Sound Multimedia Home Theater Speaker SystemPower your party with the Onkyo 5.2 Channel Full 4K Ultra HD A/V Receiver. It outputs 80W per channel. With 4K Ultra HD and 3D pass-through via HDMI, and a total of four HDMI inputs with one HDMI output, you can connect many sources to your display and speakers. For additional connectivity, this system has Bluetooth and a front-panel USB input, which will accept portable USB devices and is compatible with MP3, WMA, and MPEG-4/AAC tracks.AV Receiver5.2 channel A/V Receiver with 70W per channel4K Ultra HD and 3D Pass-Through via HDMIBuilt-in Wireless BluetoothLatest HDMI 2.0a and HDCP 2.2 SpecificationsDual Subwoofer OutputsDolby TruHD, DTS-HD Master AudioAM & FM Direct TuningConnectivityInputs4 x HDMI2 x composite video1 x USB (front)1 x digital coaxial1 x optical TOSLINK3 x stereo RCAOutputs1 x HDMI1 x composite video2 x subwoofer pre-out1 x 1/4\" (6.4 mm) headphone (front)Polk 8\" 100 Watt 2 WAY In-Wall front/center speaker systemNatural Sound In-Wall speaker systemVersatile, Perfect Design for Front and Center ChannelsHigh-Capacity, High-Quality Customized Crossover Network8\" Kevlar Cone Woofer1-5/8\" Aluminum Dome Midrange Driver1\" Titanium Dome TweeterSwivel Tweeter and Midrange Driver100 W Maximum Input CapabilityPaintable Grille with Protective Cover IncludedSpeaker Dimensions (W x H x D) 8-3/4\" X 12-3/4\" X 3-1/8\"", "pricing": "$1,099.95", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/414NZb9C0dL.jpg", "https://m.media-amazon.com/images/I/41bWz5NTfyL.jpg", "https://m.media-amazon.com/images/I/41xj5FLFlNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio", "average_rating": "", "small_description": ["Compact and powerful - Enhance your TV experience with rich, dynamic sound of the Onkyo 5.1 Channel Built In Surround Sound Multimedia Home Theater Speaker System ", "Bluetooth Wireless - Wireless connectivity for streaming from your Bluetooth compatible mobile device; smartphone, tablet, music player ", "AM/FM Tuner - A built-in digital FM/AM Stereo Tuner with 60 station preset memory (30 FM, 30 AM) lets you choose from a wide variety of radio, talk and music programming ", "In-Wall Speakers - An easy-to-install in-Wall speaker system that has magnetic grilles and high sound quality designed to meet various custom installation requirements ", "Speaker Wire - Includes 100ft CubeCable High Speed Speaker Wire "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ADJ3LLQFDHE8C", "seller_name": "superior sales", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B074PBDJG9", "category": "electronics", "query": "Surround Sound Systems", "page": 130, "small_description_old": "About this item Compact and powerful - Enhance your TV experience with rich, dynamic sound of the Onkyo 5.1 Channel Built In Surround Sound Multimedia Home Theater Speaker System Bluetooth Wireless - Wireless connectivity for streaming from your Bluetooth compatible mobile device; smartphone, tablet, music player AM/FM Tuner - A built-in digital FM/AM Stereo Tuner with 60 station preset memory (30 FM, 30 AM) lets you choose from a wide variety of radio, talk and music programming In-Wall Speakers - An easy-to-install in-Wall speaker system that has magnetic grilles and high sound quality designed to meet various custom installation requirements Speaker Wire - Includes 100ft CubeCable High Speed Speaker Wire"}, {"name": "Permo Vintage Rustic Industrial 3-Lights Kitchen Island Chandelier Triple 3 Heads Pendant Hanging Ceiling Lighting Fixture with Oval Cone Clear Glass Shade (Antique)", "product_information": {"Brand": "\u200ePERMO", "Manufacturer": "\u200ePermo", "Item Weight": "\u200e9.28 pounds", "Package Dimensions": "\u200e34.1 x 9.7 x 8.5 inches", "Is Discontinued By Manufacturer": "\u200eNo", "Style": "\u200eAntique", "Color": "\u200eOval-antique", "Shape": "\u200eOval", "Material": "\u200eGlass, Metal", "Finish Types": "\u200eAntique", "Number of Lights": "\u200e3", "Voltage": "\u200e110 Volts", "Special Features": "\u200eNot Dimmable", "Shade Material": "\u200eGlass", "Light Direction": "\u200eDownlight", "Power Source": "\u200eHardwired", "Switch Installation Type": "\u200eCeiling Mount", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Type of Bulb": "\u200eLED; Compact Fluorescent; Halogen; Incandescent", "Wattage": "\u200e60 watts", "ASIN": "B07Q87P8DQ", "Customer Reviews": {"ratings_count": 171, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#236,217 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #1,656 in Pendant Light Fixtures"], "Date First Available": "May 27, 2015"}, "brand": "Visit the PERMO Store", "brand_url": "https://www.amazon.com/stores/PERMO/page/B382FCBC-9006-4ED1-AC6C-D2C7BA80F9C1?ref_=ast_bln", "full_description": "Master Your D\u00e9cor with Exciting Permo Lighting! -Only your imagination will limit you. 1.Perfect for large entertaining spaces to sparkle like an airborne jewel. 2.Perfect for your beautiful kitchen appliances shine with updated kitchen lighting. 3.Perfect for dining room lighting to add warmth and atmosphere to your family's meals. 4.Perfect for living room to give an instant contemporary feel to your loved ones and guests. 5.Perfect for warehouse barn around a bright light fixture,you'll find that this seemingly small change has a huge impact on the space. 6.Perfect for kitchen, kitchen counter,kitchen island,bedroom,dining room,living room, reading corner,Brooklyn cafe,craft room,bar,restaurant,club,hallway,staircase... etc -Care instructions: 1.Wipe clean using a soft, dry cloth or static duster. 2.Avoid using harsh chemicals and abrasives as they may damage the finish. 3.Do not exceed specified wattage. 4.Please keep in mind that none of the lighting products that we sell include light bulbs. If you're interested in purchasing a bulb, you can search for \"vintage edison bulb\" on Amazon. You can also search for \"permo lighting\" on Amazon as a quick way to find all of our other great products. -Return Policy: We want you to love it. If you don't, please feel free contact us for the after-sales-services.", "pricing": "$94.99", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31Q8ry7stvL.jpg", "https://m.media-amazon.com/images/I/41WTOCwF9aL.jpg", "https://m.media-amazon.com/images/I/31gi5ek0i8L.jpg", "https://m.media-amazon.com/images/I/31VuRAJlC5L.jpg", "https://m.media-amazon.com/images/I/31ulp6yYBCL.jpg", "https://m.media-amazon.com/images/I/31xv8j40gVL.jpg", "https://m.media-amazon.com/images/I/A1moX8360zL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Pendant Lights", "average_rating": 4.6, "small_description": ["E26, bulb NOT included. Compatible bulb Type: LED; Compact Fluorescent (CFL); Halogen; Incandescent. (60W max) ", "Black hanging cord, hard wired fixture. Cord can be professionally shortened to the desired length up to 78.7\" (200 cm) for versatile placement options. ", "On/off switch located on socket. If you have a wall switch or dimmer already in place then just leave the twist switch in the on position and control it with your wall switch. ", "Straight bar ceiling plate length 33.5\" (85 cm) x height 2.5\" (6.3 cm). Shade diameter 5.6\" (14.3 cm); Hardwired (Installation Required); Includes all mounting hardware for quick and easy installation. ", "One year warranty against defects in materials and workmanship. Replacement can be applied for any shade damaged or missing parts upon open box. For more spare replacement glass shade,please search ASIN: B073S38J3N. "], "total_reviews": 171, "total_answered_questions": 51, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07Q71LX2V/ref=twister_B00YC94Z24?_encoding=UTF8&psc=1", "value": "Funnel-antique", "price_string": "$132.99", "price": 132.99, "image": "https://m.media-amazon.com/images/I/31SyTeeFYOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075TZPQMY/ref=twister_B00YC94Z24?_encoding=UTF8&psc=1", "value": "Funnel-black", "price_string": "$189.99", "price": 189.99, "image": "https://m.media-amazon.com/images/I/31BA+mnhNaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07Q4S4PR6/ref=twister_B00YC94Z24?_encoding=UTF8&psc=1", "value": "Globe-antique", "price_string": "$189.99", "price": 189.99, "image": "https://m.media-amazon.com/images/I/31Xd4rs9yLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075TZLXTB/ref=twister_B00YC94Z24?_encoding=UTF8&psc=1", "value": "Globe-black", "price_string": "$189.99", "price": 189.99, "image": "https://m.media-amazon.com/images/I/31So+zZ8NZL.jpg"}, {"is_selected": true, "url": null, "value": "Oval-antique", "price_string": "$94.99", "price": 94.99, "image": "https://m.media-amazon.com/images/I/31Q8ry7stvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075TZ2L2G/ref=twister_B00YC94Z24?_encoding=UTF8&psc=1", "value": "Oval-black", "price_string": "$189.99", "price": 189.99, "image": "https://m.media-amazon.com/images/I/31Qw7RwPGaL.jpg"}]}, "seller_id": "A2T7G9Q3QJ4JUS", "seller_name": "Permo Lighting", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07Q87P8DQ", "category": "garden", "query": "Pendants and Chandeliers", "page": 55, "small_description_old": "About this item E26, bulb NOT included. Compatible bulb Type: LED; Compact Fluorescent (CFL); Halogen; Incandescent. (60W max) Black hanging cord, hard wired fixture. Cord can be professionally shortened to the desired length up to 78.7\" (200 cm) for versatile placement options. On/off switch located on socket. If you have a wall switch or dimmer already in place then just leave the twist switch in the on position and control it with your wall switch. Straight bar ceiling plate length 33.5\" (85 cm) x height 2.5\" (6.3 cm). Shade diameter 5.6\" (14.3 cm); Hardwired (Installation Required); Includes all mounting hardware for quick and easy installation. One year warranty against defects in materials and workmanship. Replacement can be applied for any shade damaged or missing parts upon open box. For more spare replacement glass shade,please search ASIN: B073S38J3N. \n \u203a See more product details"}, {"name": "It's In My DNA Palestinian Shirt Arabic Gifts Palestine Flag Tank Top", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n December 26, 2021", "Manufacturer\n \u200f": "\u200e\n It's In My DNA Tee", "ASIN\n \u200f": "\u200e\n B09P7H5YK7", "": ""}, "brand": "Brand: It's In My DNA Tee", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=It%27s+In+My+DNA+Tee", "full_description": "", "pricing": "$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A1Ig7DnP6sL.png", "https://m.media-amazon.com/images/I/31tbrimDw7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a Tanks & Camis", "average_rating": "", "small_description": ["Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester ", "Imported ", "Machine Wash ", "Perfect Gift Idea for Men, Women, Kids - It's In My Palestinian T-Shirt. Great Present for Natives of Palestine, human rights activists, muslims, Football fan, Soccer lover, basketball player, tourist, traveler on Birthday, Christmas, Thanksgiving, Ramadan ", "I love Gaza City | Gaza City | Jerusalem TShirt for trip to Islamic Country, Retirement parents, dad, mom, mother, father, son, daughter, grandma, grandpa, brother, boyfriend, wife, husband. Combine This tee with jewelry, dress, key chain, scarf, hijab ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P7H5YK7?_encoding=UTF8&customId=B07MZQH9ZH", "value": "Women", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1Ig7DnP6sL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P7H5YK7?_encoding=UTF8&customId=B07MZQFLP1", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1FAfhw%2B74L.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P7H5YK7?_encoding=UTF8&customId=B07MZQFLPZ", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1ZqcntcDVL.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07MZP9QWJ"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07MZPH245"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07MZPVTSY"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07MZQH9YH"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07MZQ58TP"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P7H5YK7", "category": "fashion", "query": "Men's Dress Shirts", "page": 198, "small_description_old": "Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester Imported Machine Wash Perfect Gift Idea for Men, Women, Kids - It's In My Palestinian T-Shirt. Great Present for Natives of Palestine, human rights activists, muslims, Football fan, Soccer lover, basketball player, tourist, traveler on Birthday, Christmas, Thanksgiving, Ramadan I love Gaza City | Gaza City | Jerusalem TShirt for trip to Islamic Country, Retirement parents, dad, mom, mother, father, son, daughter, grandma, grandpa, brother, boyfriend, wife, husband. Combine This tee with jewelry, dress, key chain, scarf, hijab Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": ":ratio PROTEIN Yogurt Cultured Dairy Snack, Vanilla, Low Sugar, 24 oz", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 4.62 x 4.5 x 4.62 inches; 1.5 Pounds", "UPC\n \u200f": "\u200e\n 070470181387", "Manufacturer\n \u200f": "\u200e\n General Mills", "ASIN\n \u200f": "\u200e\n B08X6N3L2Z", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the :ratio Store", "brand_url": "https://www.amazon.com/stores/+%3Aratio/page/DCBC09C0-77A0-47CF-AEA1-72FB84FA5233?ref_=ast_bln", "full_description": "At :ratio\u2122, we've done the math for you so you can spend less time reading labels and more time living. Made with ultra-filtered milk, we make it simple for you to strike a unique combination of protein, carbs, and sugar to keep you going.", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/51xHvdWQwQS.jpg", "https://m.media-amazon.com/images/I/41xKqQGmZkS.jpg", "https://m.media-amazon.com/images/I/419l747G9SS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Dairy, Cheese & Eggs \u203a Yogurt", "average_rating": 4.6, "small_description": ["PROTEIN: :ratio Protein has 28G protein, 4x the protein of leading traditional yogurt ", "DELICIOUS TASTE: Enjoy :ratio, a yogurt cultured dairy snack, featuring a creamy texture and ultra-smooth vanilla taste ", "GREAT BREAKFAST: With 28g protein, 4g sugar, 8g net carbs (8g net carbs = 10g total carbs - 2g sugar alcohol) :ratio Protein dairy snack is a great option for breakfast or an on-the-go snack ", "ENDLESS OPTIONS: Try :ratio Protein yogurt cultured dairy snacks in Strawberry, Blueberry, Key Lime and Coconut flavors ", "CONTAINS: 24 oz "], "total_reviews": 18, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08X6N3L2Z", "category": "grocery", "query": "Yogurt", "page": 13, "small_description_old": "About this item PROTEIN: :ratio Protein has 28G protein, 4x the protein of leading traditional yogurt DELICIOUS TASTE: Enjoy :ratio, a yogurt cultured dairy snack, featuring a creamy texture and ultra-smooth vanilla taste GREAT BREAKFAST: With 28g protein, 4g sugar, 8g net carbs (8g net carbs = 10g total carbs - 2g sugar alcohol) :ratio Protein dairy snack is a great option for breakfast or an on-the-go snack ENDLESS OPTIONS: Try :ratio Protein yogurt cultured dairy snacks in Strawberry, Blueberry, Key Lime and Coconut flavors CONTAINS: 24 oz"}, {"name": "T54FJ 8858x Laptop Battery for Dell Latitude E6420 E6430 E6440 E6520 E6530 E6540 E5520 E5530 E5420 E5430, Inspiron 17r-7720 17r-se-7720 17r-5720 15r-5520 15r-7520 [65Wh 11.1V 6 Cell]", "product_information": {"Package Dimensions": "9.72 x 3.62 x 1.93 inches", "Item Weight": "12.7 ounces", "ASIN": "B07WV38GWM", "Item model number": "E6420", "Batteries": "1 Lithium ion batteries required. (included)", "Customer Reviews": {"ratings_count": 153, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#11,597 in Electronics (See Top 100 in Electronics) #164 in Laptop Batteries"], "Date First Available": "August 22, 2019", "Manufacturer": "DongGuan Simer Electronics Co.,LTD", "Country of Origin": "China"}, "brand": "Brand: NATNO", "brand_url": "https://www.amazon.com/NATNO/b/ref=bl_dp_s_web_20552216011?ie=UTF8&node=20552216011&field-lbr_brands_browse-bin=NATNO", "full_description": "", "pricing": "$26.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/3113FA0N8RL.jpg", "https://m.media-amazon.com/images/I/41E3BWvo4tL.jpg", "https://m.media-amazon.com/images/I/51oi+h-yvpL.jpg", "https://m.media-amazon.com/images/I/41Y8e6sFYRL.jpg", "https://m.media-amazon.com/images/I/41fArpsy2LL.jpg", "https://m.media-amazon.com/images/I/412neAokmeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Laptop Accessories \u203a Batteries", "average_rating": 4.2, "small_description": ["Battery type: Li-ion / Capacity: 65Wh / Voltage: 11.1 V / 6-cell ", "Compatible Model:Dell Latitude E6520 E6530 E6540 E6420 E6430 E6440 E6330 E6320 E6230 E6220 E5520 E5530 E5420 E5430 / Precision M2800 / Dell inspiron 14R 15R 17R 17R-SE Series 15R-4520 15R-5520 15R-5525 15R-7520 15R-SE-4520 15R-SE-5520 15R-SE-7520 15R-SE 15R Turbo 17R-4720 17R-5720 17R-7720 17R-SE-4720 17R-SE-5720 17R-SE-7720 17R Turbo 14R-4420 14R-5420 14R-5425 14R-7420 ", "Compatible P/N:N3X1D 71R31 P8TC7 P9TJ0 R48V3 PRRRF RU485 T54F3 T54FJ UJ499 YKF0M X57F1 04NW9 312-1163 312-1242 312-1310 312-1311 451-11947 8858X 8P3YX 911MD HCJWT KJ321 M5Y0X NHXVW 2P2MJ 312-1165 312-1323 312-1324 12-1325 451-11704 4YRJH CWVXW DHT0W M1Y7N PRV1Y 911MD ", "100% Brand NEW replacement / CE,FCC,RoHS Certified for Safety ", "30 Days Money Back or Free Exchange Guarantee,12 Months Warranty "], "total_reviews": 153, "total_answered_questions": 7, "model": "E6420", "customization_options": "", "seller_id": "A3VQWEI3QA784S", "seller_name": "Natno", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07WV38GWM", "category": "electronics", "query": "Batteries", "page": 142, "small_description_old": "About this item\n \nBattery type: Li-ion / Capacity: 65Wh / Voltage: 11.1 V / 6-cell Compatible Model:Dell Latitude E6520 E6530 E6540 E6420 E6430 E6440 E6330 E6320 E6230 E6220 E5520 E5530 E5420 E5430 / Precision M2800 / Dell inspiron 14R 15R 17R 17R-SE Series 15R-4520 15R-5520 15R-5525 15R-7520 15R-SE-4520 15R-SE-5520 15R-SE-7520 15R-SE 15R Turbo 17R-4720 17R-5720 17R-7720 17R-SE-4720 17R-SE-5720 17R-SE-7720 17R Turbo 14R-4420 14R-5420 14R-5425 14R-7420 Compatible P/N:N3X1D 71R31 P8TC7 P9TJ0 R48V3 PRRRF RU485 T54F3 T54FJ UJ499 YKF0M X57F1 04NW9 312-1163 312-1242 312-1310 312-1311 451-11947 8858X 8P3YX 911MD HCJWT KJ321 M5Y0X NHXVW 2P2MJ 312-1165 312-1323 312-1324 12-1325 451-11704 4YRJH CWVXW DHT0W M1Y7N PRV1Y 911MD 100% Brand NEW replacement / CE,FCC,RoHS Certified for Safety 30 Days Money Back or Free Exchange Guarantee,12 Months Warranty"}, {"name": "Seki Japan Face Beauty Trimmer, Women's Facial Razor, Disposable Facial Hair Removal Groomer, with Safety Cover 3 Pieces", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5.83 x 2.36 x 0.28 inches; 0.71 Ounces", "UPC\n \u200f": "\u200e\n 191308814267", "Manufacturer\n \u200f": "\u200e\n Seki Japan", "ASIN\n \u200f": "\u200e\n B08NB29KXH", "Best Sellers Rank": "#403,982 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#377 in Eyebrow Hair Trimmers", "#377 in Eyebrow Hair Trimmers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Seki Japan", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Seki+Japan", "full_description": "Seki Japan Face Beauty Trimmer , Women's Facial Razor, Disposable Facial Hair Removal Groomer, with Safety Cover 3 PiecesPerfect for removing facial hair from the cheeks, chin, forehead, and eyebrows. It can also remove unwanted hair from your legs, arms, and armpits. Also good for shaping eyebrows and sideburns with ease. It is not only popular among women but also men with sensitive skin.The blade is made with high-quality stainless steel. Once it touches the hair, it can cut it off right away. It easily smooths away peach fuzz and also cuts thick unwanted hair off. There is an angle between the handle and the blade. The blade with the uneven surface has a safeguard to protect your skin from damage. You can use it safely.The safety cap makes it easy to carry around while traveling with your family or partners. You can put it in your bag and use it whenever you need. It is disposable, so you can throw it away after use.Handle: 8.5cm(3.3inch), Blade: 4cm(1.6inch), Weight: 8g(0.3oz)Seki city is known for its cutlery industry and manufactures the majority of cutlery, such as kitchen knives, Japanese swords, pocket knives, scissors, letter openers, etc., within the nation. The Seki cutlery is famous for its high quality not only domestically but also overseas. These strong and precise knives are made one by one by Japanese craftsmen.", "pricing": "$8.10", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31l7EEaDyRL.jpg", "https://m.media-amazon.com/images/I/4182I0q3riL.jpg", "https://m.media-amazon.com/images/I/41aj1eyyyLL.jpg", "https://m.media-amazon.com/images/I/41GlVa8dOzL.jpg", "https://m.media-amazon.com/images/I/416aGNwkZ7L.jpg", "https://m.media-amazon.com/images/I/31oUJpnGNpL.jpg", "https://m.media-amazon.com/images/I/41moWt6ab0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Men's \u203a Eyebrow Trimmers", "average_rating": 5, "small_description": ["Perfect for removing facial hair from the cheeks, chin, forehead, and eyebrows. It can also remove unwanted hair from your legs, arms, and armpits. Also good for shaping eyebrows and sideburns with ease. It is not only popular among women but also men with sensitive skin. ", "The blade is made with high-quality stainless steel. Once it touches the hair, it can cut it off right away. It easily smooths away peach fuzz and also cuts thick unwanted hair off. There is an angle between the handle and the blade. The blade with the uneven surface has a safeguard to protect your skin from damage. You can use it safely. ", "The safety cap makes it easy to carry around while traveling with your family or partners. You can put it in your bag and use it whenever you need. It is disposable, so you can throw it away after use. ", "Handle: 8.5cm(3.3inch), Blade: 4cm(1.6inch), Weight: 8g(0.3oz) ", "Seki city is known for its cutlery industry and manufactures the majority of cutlery, such as kitchen knives, Japanese swords, pocket knives, scissors, letter openers, etc., within the nation. The Seki cutlery is famous for its high quality not only domestically but also overseas. These strong and precise knives are made one by one by Japanese craftsmen. "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "A2IHFYXL8J5X97", "seller_name": "zipangu com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08NB29KXH", "category": "beauty", "query": "Shave & Hair Removal", "page": 42, "small_description_old": "About this item Perfect for removing facial hair from the cheeks, chin, forehead, and eyebrows. It can also remove unwanted hair from your legs, arms, and armpits. Also good for shaping eyebrows and sideburns with ease. It is not only popular among women but also men with sensitive skin. The blade is made with high-quality stainless steel. Once it touches the hair, it can cut it off right away. It easily smooths away peach fuzz and also cuts thick unwanted hair off. There is an angle between the handle and the blade. The blade with the uneven surface has a safeguard to protect your skin from damage. You can use it safely. The safety cap makes it easy to carry around while traveling with your family or partners. You can put it in your bag and use it whenever you need. It is disposable, so you can throw it away after use. Handle: 8.5cm(3.3inch), Blade: 4cm(1.6inch), Weight: 8g(0.3oz) Seki city is known for its cutlery industry and manufactures the majority of cutlery, such as kitchen knives, Japanese swords, pocket knives, scissors, letter openers, etc., within the nation. The Seki cutlery is famous for its high quality not only domestically but also overseas. These strong and precise knives are made one by one by Japanese craftsmen."}, {"name": "IETONE 3 Pcs Portable Cylinder Face Oil-Absorbing Volcanic Roller, Reusable Volcanic Stone Facial Oil Remover Tools, Women Face Care Makeup Styling Keeper, Skincare Massage T-zone Oil Control Tools", "product_information": {"Manufacturer\n \u200f": "\u200e\n IETONE", "ASIN\n \u200f": "\u200e\n B09QMGM5S3", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Visit the IETONE Store", "brand_url": "https://www.amazon.com/stores/IETONE/page/C10E7F47-7138-4965-BF35-23F6E6A19F96?ref_=ast_bln", "full_description": "Material:Plastic, Volcanic Size:7 x 2.5cm Color: Black, Pink, White Package included: 3 x Multicolor Women Face Care Oil Remover Sticks HOW TO USE You just need to aim it gently at the oily area on your face and gently roll and massage it to easily absorb the excess oil. After use, cover the lid and put it back to the original place without occupying any space. EASY TO USE Built-in special ball design, rolling is silkier and easier, gently or wherever the skin is shiny, rolling the face rollers. The oil on the face will disappear. PORTABLE This oil-absorbing roller is reusable and has a small and fashionable appearance. The mini size can be carried around, allowing you to massage your face or remove excess oil from your face before travel or parties. MASSAGE SKIN There are many small pores on the surface, just like pores on the skin. Soaking in essential oils can gradually absorb essential oil components. Combined with the modulated essential oils, it can solve many annoying skin problems. EASY TO CLEAN Unlike blotting papers for oily skin that are used once and thrown out, this oil-absorbing roller is reusable. To clean, twist the roller\u2019s ring to unlock, and pull out the stone. Wash with a gentle cleanser, rinse, and air-dry before locking it back in.", "pricing": "$10.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/31TNzn3k5wL.jpg", "https://m.media-amazon.com/images/I/41-VuHJ+2gL.jpg", "https://m.media-amazon.com/images/I/41Kv28jkpaL.jpg", "https://m.media-amazon.com/images/I/41nCm1vXX4L.jpg", "https://m.media-amazon.com/images/I/31BbcL-5gwL.jpg", "https://m.media-amazon.com/images/I/31nleqx08YL.jpg", "https://m.media-amazon.com/images/I/31g5hSBqMxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Creams & Moisturizers \u203a Face Oil", "average_rating": "", "small_description": "HOW TO USE -- You just need to aim it gently at the oily area on your face and gently roll and massage it to easily absorb the excess oil. After use, cover the lid and put it back to the original place without occupying any space. EASY TO USE -- Built-in special ball design, rolling is silkier and easier, gently or wherever the skin is shiny, rolling the face rollers. The oil on the face will disappear. PORTABLE -- This oil-absorbing roller is reusable and has a small and fashionable appearance. The mini size can be carried around, allowing you to massage your face or remove excess oil from your face before travel or parties. MASSAGE SKIN -- There are many small pores on the surface, just like pores on the skin. Soaking in essential oils can gradually absorb essential oil components. Combined with the modulated essential oils, it can solve many annoying skin problems. EASY TO CLEAN -- Unlike blotting papers for oily skin that are used once and thrown out, this oil-absorbing roller is reusable. To clean, twist the roller\u2019s ring to unlock, and pull out the stone. Wash with a gentle cleanser, rinse, and air-dry before locking it back in.", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AN3ZMEIQ7XRN7", "seller_name": "IETONE", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QMGM5S3", "category": "beauty", "query": "Makeup Remover", "page": 189, "small_description_old": "HOW TO USE -- You just need to aim it gently at the oily area on your face and gently roll and massage it to easily absorb the excess oil. After use, cover the lid and put it back to the original place without occupying any space. EASY TO USE -- Built-in special ball design, rolling is silkier and easier, gently or wherever the skin is shiny, rolling the face rollers. The oil on the face will disappear. PORTABLE -- This oil-absorbing roller is reusable and has a small and fashionable appearance. The mini size can be carried around, allowing you to massage your face or remove excess oil from your face before travel or parties. MASSAGE SKIN -- There are many small pores on the surface, just like pores on the skin. Soaking in essential oils can gradually absorb essential oil components. Combined with the modulated essential oils, it can solve many annoying skin problems. EASY TO CLEAN -- Unlike blotting papers for oily skin that are used once and thrown out, this oil-absorbing roller is reusable. To clean, twist the roller\u2019s ring to unlock, and pull out the stone. Wash with a gentle cleanser, rinse, and air-dry before locking it back in."}, {"name": "Oral Prevent Interdental Brushes Smart Grip 0.80\u00a0mm Green, 1 Pack of 6 Pieces", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 5.51 x 2.95 x 0.51 inches; 0.71 Ounces", "Item model number\n \u200f": "\u200e\n 65000", "Date First Available\n \u200f": "\u200e\n August 8, 2019", "Manufacturer\n \u200f": "\u200e\n Oral Prevent", "ASIN\n \u200f": "\u200e\n B081QR9F3V", "Best Sellers Rank": "#1,029,944 in Health & Household (See Top 100 in Health & Household)#60 in Gum Stimulators", "#60 in Gum Stimulators": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Oral Prevent", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Oral+Prevent", "full_description": "Professional and sustainable Dental Care does not have a interdental brushes not really. Inter clean oral prevent\u00a0\u2013\u00a0the injury for a lifetime of healthy teeth. A stronger effect Easy to use, as well as Plaquereduzierende speak oral prevent", "pricing": "$15.72", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41txhzRJR4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Gum Stimulators", "average_rating": 5, "small_description": ["6\u00a0Brushes Per Blister Packaging with 1SCHUTZKAPPE ", "Hygienic grip seal packaging ", "Includes usage Description and size guide "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "AP3VA1GJZM3EQ", "seller_name": "Amazon Global Store UK", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B081QR9F3V", "category": "beauty", "query": "Gum Stimulators", "page": 5, "small_description_old": "6\u00a0Brushes Per Blister Packaging with 1SCHUTZKAPPE Hygienic grip seal packaging Includes usage Description and size guide"}, {"name": "2 Pack - Stirrings Simple Classic Cocktail Mix Mojito -- 25.4 fl oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 10.28 x 8.39 x 6.81 inches; 6.05 Pounds", "UPC\n \u200f": "\u200e\n 618020799455", "Manufacturer\n \u200f": "\u200e\n Stirrings", "ASIN\n \u200f": "\u200e\n B07KK49655", "Best Sellers Rank": "#360,358 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#129 in Martini Cocktail Mixers", "#129 in Martini Cocktail Mixers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Stirrings Store", "brand_url": "https://www.amazon.com/stores/Stirrings/page/2D772418-2CD7-4FFA-8DBF-730BDA75FCCC?ref_=ast_bln", "full_description": "Mix Up A Magnificent Mojito The Mojito is a cooling effervescent cocktail inspired by Havana's vibrant lifestyle in the 1920's. Today, it's spirit lives on in this sweet blend of natural mint flavor, cane sugar and lime juice. After its founding in Nantucket in 1997, Stirrings made it its mission to use only the very best ingredients - real juice, triple-filtered water and a touch of imagination - because after all, better ingredients, make better cocktails. Thank you for trying Stirrings products.", "pricing": "$16.36", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon. Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41I57tHKYGL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Cocktail Mixers \u203a Martini", "average_rating": 5, "small_description": ["Key Lime Juice Cocktail Blend from Concentrate ", "Simply Add Spirit To Make About 8 Cocktails ", "Non-Alcoholic Cocktail Mix "], "total_reviews": 6, "total_answered_questions": "", "customization_options": "", "seller_id": "A3AFTPXK3AVV55", "seller_name": "Naturals N' More", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B07KK49655", "category": "grocery", "query": "Alcoholic Beverages", "page": 81, "small_description_old": "Stirrings Mojito 25.4 Oz (Pack of 2) Key Lime Juice Cocktail Blend from Concentrate Simply Add Spirit To Make About 8 Cocktails Non-Alcoholic Cocktail Mix"}, {"name": "L'Erbolario - Iris - Deodorant Cream - Floral and Powdery Scent - Anti-perspirant Properties - Maintains Freshness, Protects Skin - Made with Marshmallow, 1.6 Oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.7 x 1.7 x 4.6 inches; 2.4 Ounces", "Item model number\n \u200f": "\u200e\n I0096290", "Manufacturer\n \u200f": "\u200e\n LErbolario", "ASIN\n \u200f": "\u200e\n B005X7IXTK", "Best Sellers Rank": "#538,665 in Health & Household (See Top 100 in Health & Household)#4,472 in Deodorant", "#4,472 in Deodorant": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the L'Erbolario Store", "brand_url": "https://www.amazon.com/stores/L%27Erbolario/page/B1101FA4-55E4-4C26-ADCF-EDF4AD855058?ref_=ast_bln", "full_description": "The inebriating scent of iris will provide long-lasting freshness, thanks to this pleasant deodorant Cream. With its very delicate formula, it effectively eliminates the unpleasant effects of perspiration and inhibits microbial growth and thus the degradation of sweat, without altering your skin's natural flora. All this combined with the aqueous extracts of iris and marsh mallow, which ensure gentle protection for the delicate skin of the underarm area.", "pricing": "$35.50", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41Kuvd3DMvL.jpg", "https://m.media-amazon.com/images/I/41EnIUmD27L.jpg", "https://m.media-amazon.com/images/I/61b-jVEamjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Deodorant", "average_rating": 4.7, "small_description": ["THE FLORAL SCENT OF IRIS - Rich and buttery body cream with sensual fragrance ", "SOFT, SMOOTHING PROPERTIES - This cream has softening properties that will leave you skin silly smooth ", "WE AIM TO MINIMIZE ALLERGIES - We monitor the content of seven heavy metals (Nickel, chromium, cadmium, lead, mercury, arsenic, antimony) on each batch of each of our products to minimize allergy ", "FOUNDED IN NORTHERN ITALY - Originating as a small artisian herbalist shop, L'Erbolario was born in Lodi, Italy by Franco Bergamaschi and his wife Daniela Villa in 1978 ", "ENVIRONMENTAL SUSTAINABILITY - All our products are made in Italy, are good for mankind, the environment, are organic, and are cruelty free. We believe in natural beauty and won\u2019t settle for anything less than certified quality "], "total_reviews": 327, "total_answered_questions": "", "customization_options": {"Scent": [{"is_selected": true, "url": null, "value": "Floral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Kuvd3DMvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00MBJM1A0/ref=twister_B09JX4MRW2", "value": "woody scent", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41I4RjYe71L.jpg"}], "Size": [{"is_selected": true, "url": null, "value": "1.7 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00MBJM1A0/ref=twister_B09JX4MRW2", "value": "1.6 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A34HEBEJQZW4CQ", "seller_name": "Solid blanc", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B005X7IXTK", "category": "beauty", "query": "Deodorants & Antiperspirants", "page": 22, "small_description_old": "About this item THE FLORAL SCENT OF IRIS - Rich and buttery body cream with sensual fragrance SOFT, SMOOTHING PROPERTIES - This cream has softening properties that will leave you skin silly smooth WE AIM TO MINIMIZE ALLERGIES - We monitor the content of seven heavy metals (Nickel, chromium, cadmium, lead, mercury, arsenic, antimony) on each batch of each of our products to minimize allergy FOUNDED IN NORTHERN ITALY - Originating as a small artisian herbalist shop, L'Erbolario was born in Lodi, Italy by Franco Bergamaschi and his wife Daniela Villa in 1978 ENVIRONMENTAL SUSTAINABILITY - All our products are made in Italy, are good for mankind, the environment, are organic, and are cruelty free. We believe in natural beauty and won\u2019t settle for anything less than certified quality"}, {"name": "Simayixx Christmas Gift Wigs Hair Extensions 24 Inches Synthetic Long Natural Black Thick Clip Straight Hair Stylish Fasionable Fabulous Hair Piece 6 Pieces Popular Hairstyle(E)", "product_information": {"Manufacturer\n \u200f": "\u200e\n Simayixx", "ASIN\n \u200f": "\u200e\n B09MM9NCQQ", "": ""}, "brand": "Brand: Simayixx", "brand_url": "https://www.amazon.com/Simayixx/b/ref=bl_dp_s_web_19621370011?ie=UTF8&node=19621370011&field-lbr_brands_browse-bin=Simayixx", "full_description": "Description:Weight:approx.144gLength : 23.6 InchesFeature:You can wash and drying it convenient.You can try different hair style,but needn\u2019t go to the hair salon.Use it all year round\uff0cwhether for costume\uff0cfashion\uff0cor just for fun\uff0ctable for/Party/Costume/Carnival/Masquerade.Feel very comfortable.How to wear extension properlyStep-1:Take hair extension and make sure the clip is open positionStep-2:Move up of the hair where you want to clip the extension and then clip it inStep-3:Move down the hair to cover up the extension to be more natural lookingStep-4 Repeat the same for the rest and check clips are clip in tight then you done changing a brand new pretty styleNote:1.The real color of the item may be slightly different from the pictures shown on websitecaused by many factors such as brightness of your monitor and light brightness.2.Please allow slight deviation for the measurement data.3.Please allow 1cm-2cm error due to the hand measurement .4.Don't curl it or straighten it by using any hair machinePackage:1 set x Hair Extensions Wig", "pricing": "$7.83", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41QD4AazubL.jpg", "https://m.media-amazon.com/images/I/51SUcHJAt1L.jpg", "https://m.media-amazon.com/images/I/31kIf+5VOyL.jpg", "https://m.media-amazon.com/images/I/41gUknbGnEL.jpg", "https://m.media-amazon.com/images/I/413BuNA6s9L.jpg", "https://m.media-amazon.com/images/I/51PVzI0XnIL.jpg", "https://m.media-amazon.com/images/I/41xQlbuNYSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Hairpieces", "average_rating": "", "small_description": ["HAIR MATERIAL: clips for hair extension product uses synthetic material. Suitable for ladies and girls who have less hair and need to increase hair volume. If you want to turn short hair into long hair. ", "AFTER WEARING EFFECT:It can make your hair look very real like your own hair. And this Hair Extension can make your hair look longer, thicker, which is very easy to wear. You can trim and reshape your hair style according to your own hair length. ", "Can be Restyle or Shorn into your favorite style. ", "Transforming your look in seconds, provides secure and comfortable attachment for all day wear. ", "THE CLEANING METHOD: First, soak the hair in warm water with moderate amount of shampoo for 5 minutes. Second, clean and comb the hair, and put it in warm water with proper amount of conditioner and then soak it for 10 minutes. Third, squeeze the water with your hand and put it in the ventilated shade area. Please do not blow with a hair dryer, and don't wear it when sleeping or swimming. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09MM9DW1N/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "A", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/41Vu4CR0pfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MM9VK2F/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "B", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/41OtLqu40NL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MMB9FVF/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "C", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/41wQ-7q8xnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MM94FHV/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "D", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/41JmSJBf7QL.jpg"}, {"is_selected": true, "url": null, "value": "E", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/41QD4AazubL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MM8M65X/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "F", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/41860fFODGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MMB5SGW/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "G", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/41UZp8HpJLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MMBCDN3/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "H", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/41Q6FU+xiIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MM9VK2D/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "I", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/31FJp1lqUEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MMBGKTR/ref=twister_B09MMCHF12?_encoding=UTF8&psc=1", "value": "J", "price_string": "$7.83", "price": 7.83, "image": "https://m.media-amazon.com/images/I/3183EZ039oL.jpg"}]}, "seller_id": "A3UHURKB8Z3LSH", "seller_name": "Simayixx", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MM9NCQQ", "category": "beauty", "query": "Hair Extensions, Wigs & Accessories", "page": 126, "small_description_old": "About this item HAIR MATERIAL: clips for hair extension product uses synthetic material. Suitable for ladies and girls who have less hair and need to increase hair volume. If you want to turn short hair into long hair. AFTER WEARING EFFECT:It can make your hair look very real like your own hair. And this Hair Extension can make your hair look longer, thicker, which is very easy to wear. You can trim and reshape your hair style according to your own hair length. Can be Restyle or Shorn into your favorite style. Transforming your look in seconds, provides secure and comfortable attachment for all day wear. THE CLEANING METHOD: First, soak the hair in warm water with moderate amount of shampoo for 5 minutes. Second, clean and comb the hair, and put it in warm water with proper amount of conditioner and then soak it for 10 minutes. Third, squeeze the water with your hand and put it in the ventilated shade area. Please do not blow with a hair dryer, and don't wear it when sleeping or swimming."}, {"name": "Rich's JW Allen Filling, Bavarian Cream, 496 Oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 12.76 x 12.4 x 10.98 inches; 31 Pounds", "UPC\n \u200f": "\u200e\n 750903028815", "Manufacturer\n \u200f": "\u200e\n Rich Products Food Service", "ASIN\n \u200f": "\u200e\n B00B04344Y", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#124,168 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#114 in Pie & Pastry Fillings", "#114 in Pie & Pastry Fillings": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Rich's Store", "brand_url": "https://www.amazon.com/stores/Rich+Products+Corporation/page/728986CE-7D9D-44B1-BF79-5D8B0B9F9FD6?ref_=ast_bln", "full_description": "Rich's, also known as rich products Corporation, is a family-owned food company dedicated to inspiring possibilities. From cakes and icings to pizza, appetizers and specialty toppings, our products are used in homes, restaurants and bakeries around the world. Beyond great food, Our customers also gain insights to help them stay competitive, no matter their size. Our portfolio includes creative solutions geared at helping food industry professionals compete in foodservice, retail, in-store bakery, Deli, and prepared foods, among others. Working in 100 locations globally, with annual sales exceeding $3.8 billion, Rich's is a global leader with a focus on everything that family makes possible. Rich\u2019s - infinite possibilities. One family. See images and bullets for more information.", "pricing": "$55.25", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock (more on the way).", "images": ["https://m.media-amazon.com/images/I/41eoPcuXY7L.jpg", "https://m.media-amazon.com/images/I/41oSB-vZwAL.jpg", "https://m.media-amazon.com/images/I/310lHbT38wL.jpg", "https://m.media-amazon.com/images/I/51ETMxXXhRL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Pie & Pastry Fillings", "average_rating": 3.9, "small_description": ["Amazing FLAVOR Our Bavarian creme filling is rich, creamy and ideal for spreading on sweet doughs, pastries, cakes and more. ", "Time saving convenience this ready-to-use filling will save you tons of prep time. Ideal for in-store bakery and foodservice use! ", "Versatility This Bavarian creme filling is great for spreading on everything from Sweet doughs and pastries to cakes and more. ", "Embrace your creativity our variety of icing and frosting flavors and colors provide you with the tools to create something remarkable. ", "Experience and Quality rich products Corporation is a trusted partner of exceptional products and business Solutions for leading bakery and foodservice outlets around the globe. "], "total_reviews": 35, "total_answered_questions": 6, "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B00B04344Y", "category": "grocery", "query": "Deli & Prepared Foods", "page": 42, "small_description_old": "About this item Amazing FLAVOR Our Bavarian creme filling is rich, creamy and ideal for spreading on sweet doughs, pastries, cakes and more. Time saving convenience this ready-to-use filling will save you tons of prep time. Ideal for in-store bakery and foodservice use! Versatility This Bavarian creme filling is great for spreading on everything from Sweet doughs and pastries to cakes and more. Embrace your creativity our variety of icing and frosting flavors and colors provide you with the tools to create something remarkable. Experience and Quality rich products Corporation is a trusted partner of exceptional products and business Solutions for leading bakery and foodservice outlets around the globe."}, {"name": "Gomadic Outdoor Waterproof Carrying case Suitable for The Samsung Acton to use Underwater - Keeps Device Clean and Dry", "product_information": {"Item Weight": "3.2 ounces", "ASIN": "B0049KSSKQ", "Item model number": "WPC-3554", "Date First Available": "January 1, 2009", "Manufacturer": "Gomadic"}, "brand": "Brand: Gomadic", "brand_url": "https://www.amazon.com/Gomadic/b/ref=bl_dp_s_web_2529501011?ie=UTF8&node=2529501011&field-lbr_brands_browse-bin=Gomadic", "full_description": "Whether you are heading to the beach or off on a camping trip, the Gomadic Waterproof bag is an effective and inexpensive way of protecting your Samsung Acton from the environment. Constructed of super strong TPU material and employing a simple and secure closure mechanism, our Gomadic Waterproof Case will provide unparalleled protection from sand, snow, rain, dust and water. Great for the beach, amusement park, swimming pool, camping, hiking, biking, and kayaking, to just name a few. Custom designed to safely and securely fit your Samsung Acton, it effectively acts as cost effective insurance in case of an accident!", "pricing": "$26.45", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/419X7wCI+8L.jpg", "https://m.media-amazon.com/images/I/51d8RR2-g+L.jpg", "https://m.media-amazon.com/images/I/51T9GFbhHtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Underwater Photography \u203a Housings", "average_rating": "", "small_description": ["Specifications: Inner dimensions (Samsung Acton specific) weight (Base 3oz. empty) / Cleaning Cloth (included) / Detachable Strap (Yes) ", "Case is easy to operate and can be safely opened and securely closed in seconds ", "Designed to accommodate 100.6 x 53.8 x 13.4 mm - perfect for the Samsung Acton ", "Perfect for the beach, waterparks, swimming pools or any place where the elements could potentially damage the Samsung Acton. ", "Case is UV Protected, Anti-Scratch, and Transparent soft with a neck strap and cleaning cloth included. "], "total_reviews": "", "total_answered_questions": "", "model": "WPC-3554", "customization_options": "", "seller_id": "A2A0S1EFTOKAMN", "seller_name": "Gomadic Corp.", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0049KSSKQ", "category": "electronics", "query": "Underwater Photography", "page": 374, "small_description_old": "About this item\n \nSpecifications: Inner dimensions (Samsung Acton specific) weight (Base 3oz. empty) / Cleaning Cloth (included) / Detachable Strap (Yes) Case is easy to operate and can be safely opened and securely closed in seconds Designed to accommodate 100.6 x 53.8 x 13.4 mm - perfect for the Samsung Acton Perfect for the beach, waterparks, swimming pools or any place where the elements could potentially damage the Samsung Acton. Case is UV Protected, Anti-Scratch, and Transparent soft with a neck strap and cleaning cloth included."}, {"name": "Modern Black Plug in Cord Pendant Lights with 11.5ft Cord LED Hanging Lamps for Ceiling Wall Mounted Industrial Chandelier Lighting Metal Aluminum Cylinder Nordic Design Included Warm Lighting 2700k", "product_information": {"Brand": "\u200eLUSTORM 1", "Manufacturer": "\u200eLUSTORM", "Item Weight": "\u200e1.3 pounds", "Package Dimensions": "\u200e11.5 x 3.6 x 3.6 inches", "Style": "\u200eArt Deco", "Material": "\u200eAluminum, Metal", "Finish Types": "\u200eAntique", "Voltage": "\u200e110 Volts (AC)", "Specific Uses": "\u200eIndoor use only", "Special Features": "\u200eCorded", "Shade Material": "\u200eMetal", "Light Direction": "\u200eAdjustable", "Switch Installation Type": "\u200eHanging,Ceiling,Wall", "Type of Bulb": "\u200eLED", "ASIN": "B09GK4XTJG", "Best Sellers Rank": ["#356,240 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #2,705 in Pendant Light Fixtures"], "Date First Available": "September 17, 2021"}, "brand": "Brand: LUSTORM 1", "brand_url": "https://www.amazon.com/LUSTORM-1/b/ref=bl_dp_s_web_23578869011?ie=UTF8&node=23578869011&field-lbr_brands_browse-bin=LUSTORM+1", "full_description": "black Cylinder\uf0b7Farmhouse style is a charming decor scheme that\u2019s as cozy as it is chic. Whether you have adopted the farmhouse trend for your entire home or you\u2019re looking for a dash of the style here and there, it\u2019s compatible with almost any decor. Farmhouse style is superbly versatile, and it\u2019s a great choice to pull together an eclectic collection or to add unexpected warmth to minimalist or modern schemes. \uf0b7If you love farmhouse decor but are not sure where to start, look at your lights! Lighting fixtures in the farmhouse style run the gamut from antique-inspired to warm industrial to shabby-chic. To nail your farmhouse lighting ideas, start with your materials: Hemp rope, metal, and glass. And don\u2019t forget the bulbs. An interesting shape or antique bulb can really make your farmhouse lighting ideas pop and give them an interesting focal point. \uf0b7Material: Plastic Rope+Metal Lamp body \uf0b7Light source:2700-2800k warm light \uf0b7Total Cord Length: 11.5Ft(350cm). \uf0b7Voltage: 110V \uf0b7Switch Type: On/Off switch (on the cord)", "pricing": "$27.99", "list_price": "", "availability_quantity": 19, "availability_status": "Only 19 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41-JBh1ahjL.jpg", "https://m.media-amazon.com/images/I/21IgyXT8EvL.jpg", "https://m.media-amazon.com/images/I/41-PNezmCgL.jpg", "https://m.media-amazon.com/images/I/31cLmEKF2xL.jpg", "https://m.media-amazon.com/images/I/31mPrgmeQqL.jpg", "https://m.media-amazon.com/images/I/31e7ZqOQf4L.jpg", "https://m.media-amazon.com/images/I/51FXM91mvtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Pendant Lights", "average_rating": "", "small_description": ["\u3010Premium Material\u3011Light cord is made of premium high temperature cable,The light body is made of metal with a layer of black anti-rust, the strong material of this metal lamp shade can ensure that you can install and remove easily.and also it will bringing a retro look to your area. ", "\u3010Size\u301111.5ft/350cm adjustable back rope with on/off switch design,Size of light body is 20cm/7.87\u201d*10cm/3.93\u201d,The pendant light is included the 2700k warm white lights source(5w LED 400 Lumens), the bulb is not replaceable. ", "\u3010Easy to use\u3011The package includes all mounting hardware for quick and easy installation. Hang the cord with 2 wall mounted connectors, then just plug and play. It only takes a few minutes to light up your area. ", "\u3010Free to Decorate\u3011This vintage pendant light cord kit will fulfill your DIY idea, Not only perfect for home decoration like living room, dining room, basement, farmhouse but also for the special occasions such as weddings, parties and celebrations as well. ", "\u3010 Best Retro Decor \u3011The modern pendant hanging light with the marvelous look are ideal for your hallway, farmhouse, stairway, kitchen, hallway, bedroom, dining room perfectly. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2W03GL5ONJ1D7", "seller_name": "LUSTORM", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09GK4XTJG", "category": "garden", "query": "Pendants and Chandeliers", "page": 150, "small_description_old": "About this item \u3010Premium Material\u3011Light cord is made of premium high temperature cable,The light body is made of metal with a layer of black anti-rust, the strong material of this metal lamp shade can ensure that you can install and remove easily.and also it will bringing a retro look to your area. \u3010Size\u301111.5ft/350cm adjustable back rope with on/off switch design,Size of light body is 20cm/7.87\u201d*10cm/3.93\u201d,The pendant light is included the 2700k warm white lights source(5w LED 400 Lumens), the bulb is not replaceable. \u3010Easy to use\u3011The package includes all mounting hardware for quick and easy installation. Hang the cord with 2 wall mounted connectors, then just plug and play. It only takes a few minutes to light up your area. \u3010Free to Decorate\u3011This vintage pendant light cord kit will fulfill your DIY idea, Not only perfect for home decoration like living room, dining room, basement, farmhouse but also for the special occasions such as weddings, parties and celebrations as well. \u3010 Best Retro Decor \u3011The modern pendant hanging light with the marvelous look are ideal for your hallway, farmhouse, stairway, kitchen, hallway, bedroom, dining room perfectly. \n \u203a See more product details"}, {"name": "Artificial Areca Palm Tree-Faux Tropical Fake Plant - Floor Dypsis Lutescens Silk Plants in Pot - 5 Ft Tall Fake Tree for Home Decor - Living Room, Patio, Office Indoor/Outdoor, K160", "product_information": {"Product Dimensions": "6 x 6 x 60 inches", "Item Weight": "11.1 pounds", "Manufacturer": "FLOWORLD", "ASIN": "B0943TLW3L", "Country of Origin": "China", "Customer Reviews": {"ratings_count": 19, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#21,438 in Home & Kitchen (See Top 100 in Home & Kitchen) #15 in Artificial Trees"], "Date First Available": "May 4, 2021"}, "brand": "Visit the FLOWORLD Store", "brand_url": "https://www.amazon.com/stores/Home/page/2167CC44-B192-43BF-AF59-0DA21AE1CB6F?ref_=ast_bln", "full_description": "", "pricing": "$99.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51nnEP9Cb7L.jpg", "https://m.media-amazon.com/images/I/51W3yCG9tnL.jpg", "https://m.media-amazon.com/images/I/51T9KUYYiNL.jpg", "https://m.media-amazon.com/images/I/51bmSYhcP8L.jpg", "https://m.media-amazon.com/images/I/518ftMd7xNL.jpg", "https://m.media-amazon.com/images/I/51QpydDbtwL.jpg", "https://m.media-amazon.com/images/I/81pOj0ncbJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Artificial Plants & Flowers \u203a Artificial Trees", "average_rating": 4.5, "small_description": ["All Season Green: Our artificial Dracaena plants are evergreen and do not change their appearance, color, or shed leaves due to weather fluctuations, not affected by seasonal changes. This indoor home decor artificial tree will give you the same perky and lively feel to your living room, kitchen, or dining room all year round. ", "Highly Simulated Design: The life-like trunk elevates your ensemble with an authentic appeal, while the silk green leaves lend a splash of color to any lackluster room. They are almost indistinguishable from real plants with their vivid color and exquisite workmanship. ", "Premium Quality: The material used in making this fake tall plant is long-lasting, safe and of advanced quality. They are water resistant due to the resilient coating applied to the leaves. And its base is made of solid cement which is not easy to be knocked down by children or pets. ", "Sturdy and Adjustable: When the artificial tree is taken out of the box, Simply bend, separate, and fluff the branches and leaves to achieve desired height and fullness. The tree in the pot can be placed into a larger planter. ", "Free Maintenance: There will be no requirement for you to water, feed, repot or prune for our faux floor plant. Our floor plant can cope with any fluctuations in temperature. All you have to do is turn the tree from time to time if it is in direct sunlight and brush the leaves to remove any dust or dirt. "], "total_reviews": 19, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "Areca", "price_string": "$99.99", "price": 99.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0943R9LYN/ref=twister_B09PQFS9YW?_encoding=UTF8&psc=1", "value": "Dracaena", "price_string": "$69.99", "price": 69.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0943W7216/ref=twister_B09PQFS9YW?_encoding=UTF8&psc=1", "value": "Elastica", "price_string": "$59.99", "price": 59.99, "image": null}]}, "seller_id": "A1GZNCWDLD6KNR", "seller_name": "Floworld store", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0943TLW3L", "category": "garden", "query": "Artificial Plants", "page": 5, "small_description_old": "About this item\n \nEvergreen Decor: Tired of your live plants seasonally shed their followers and leaves? Why not try our evergreen silk plants. Our faux tropical palm trees slanc are not affected by changes in seasons. This silk tree can be perfectly applied both indoor and outdoor. Highly Simulated Design: The life-like trunk elevates your ensemble with an authentic appeal, while the silk green leaves lend a splash of color to any lackluster room. They are almost indistinguishable from real plants with their vivid color and exquisite workmanship. Premium Quality: The material used in making this Areca Palm artificial is long-lasting, safe and of advanced quality. They are water resistant due to the resilient coating applied to the leaves. And its base is made of solid cement which is not easy to be knocked down by children or pets. Sturdy and Adjustable: When the large artificial tree is taken out of the box, Simply bend, separate, and fluff the branches and leaves to achieve desired height and fullness. The tree in the pot can be placed into a larger planter. Free Maintenance: There will be no requirement for you to water, feed, repot or prune for our fake tree. Our floor plant can cope with any fluctuations in temperature. All you have to do is turn the plant from time to time if it is in direct sunlight and brush the leaves to remove any dust or dirt."}, {"name": "Cottoncolors Brand Window Film 3D Ecology Non Toxic Static Decoration for UV Rejection Heat Control Energy Saving Privacy Glass Stickers,35.4x78.7 Inches", "product_information": {"Product Dimensions": "78.74 x 35.43 x 0.02 inches", "Item Weight": "1.1 pounds", "Manufacturer": "CottonColors", "ASIN": "B00KM40FHM", "Item model number": "BLKM012", "Customer Reviews": {"ratings_count": 172, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#926,707 in Home & Kitchen (See Top 100 in Home & Kitchen) #892 in Window Films"], "Is Discontinued By Manufacturer": "No", "Temperature rating degrees": "70 Degrees Celsius", "Ultraviolet light protection": "UV Protection", "Is Dishwasher Safe": "No", "Batteries Required?": "No"}, "brand": "Visit the CottonColors Store", "brand_url": "https://www.amazon.com/stores/CottonColors/page/EF89A44E-522E-4450-9032-2E0DDEBD8555?ref_=ast_bln", "full_description": "", "pricing": "$25.99", "list_price": "", "availability_quantity": 8, "availability_status": "Only 8 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/61ZBN99P2GS.jpg", "https://m.media-amazon.com/images/I/61DxDOzJfjL.jpg", "https://m.media-amazon.com/images/I/515Afdj3Z2L.jpg", "https://m.media-amazon.com/images/I/61sASjE68wL.jpg", "https://m.media-amazon.com/images/I/51k2eDTnHuL.jpg", "https://m.media-amazon.com/images/I/51S2pprYNzL.jpg", "https://m.media-amazon.com/images/I/A1GdeWSL6HL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Window Treatments \u203a Window Stickers & Films \u203a Window Films", "average_rating": 4.3, "small_description": ["Save Money For Air-conditions And Heaters: Blocking Out 45-85% Sunlight Heat In Summer; Reducing At Least 30% Warmness Lost In Winter. This One Is Environment Friendly, Contains NO DEHP,NO DBP,NO BBP,NO DINP,NO DIDP,NO DNOP; Size:35.4 In(W) x 78.7 In(L) Per Roll,Shipping Weight:About 700g. ", "Protect Your Body Health And Life Safety From Broken Glass: Increasing The Glass Strength Or Keeping Glass Fragments Tightly Attached On The Film By Its Original Shape, No Splashing And No Deformation. ", "Provide Good Privacy, Protect Skin And Eyes, And Prevent Furniture From Fading And Aging By Blocking Out More Than 96% Harmful Rays And Filtering Strong Light. Show You A Comfortable And Decorative Home Where Has no Disturbance From Dazzling Strong Light And UV Rays When You Are Enjoying The Natural Sunshine. ", "Easy To Fix, To Remove, And To Reuse. Get The Look Of Frosted Glass By Easy Do-it. No Fading, No Bubbles, Can Be Reused And Has A Long Using Time. ", "Widely Suitable For Any Places: Kitchen, Bedroom, Living Room, Dining Room, Office, Hotels, Classroom, Lobby, etc. But This One Is Not Recommended For A Total Privacy Needed Place Such As The Bathroom, For It Is A Little Seen Through Within A Close Distance. "], "total_reviews": 172, "total_answered_questions": "", "model": "BLKM012", "customization_options": "", "seller_id": "A1FEUI37C2J734", "seller_name": "Kingmax Products US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B00KM40FHM", "category": "garden", "query": "Window Coverings", "page": 232, "small_description_old": "About this item\n \nSave Money For Air-conditions And Heaters: Blocking Out 45-85% Sunlight Heat In Summer; Reducing At Least 30% Warmness Lost In Winter. This One Is Environment Friendly, Contains NO DEHP,NO DBP,NO BBP,NO DINP,NO DIDP,NO DNOP; Size:35.4 In(W) x 78.7 In(L) Per Roll,Shipping Weight:About 700g. Protect Your Body Health And Life Safety From Broken Glass: Increasing The Glass Strength Or Keeping Glass Fragments Tightly Attached On The Film By Its Original Shape, No Splashing And No Deformation. Provide Good Privacy, Protect Skin And Eyes, And Prevent Furniture From Fading And Aging By Blocking Out More Than 96% Harmful Rays And Filtering Strong Light. Show You A Comfortable And Decorative Home Where Has no Disturbance From Dazzling Strong Light And UV Rays When You Are Enjoying The Natural Sunshine. Easy To Fix, To Remove, And To Reuse. Get The Look Of Frosted Glass By Easy Do-it. No Fading, No Bubbles, Can Be Reused And Has A Long Using Time. Widely Suitable For Any Places: Kitchen, Bedroom, Living Room, Dining Room, Office, Hotels, Classroom, Lobby, etc. But This One Is Not Recommended For A Total Privacy Needed Place Such As The Bathroom, For It Is A Little Seen Through Within A Close Distance."}, {"name": "Waterbridge Wave Milk Chocolate Hazelnut Crunch | Milk Chocolate | Hazelnut Crunch | Imported From Canada | 115g (pack of 1)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.02 x 2.72 x 2.56 inches; 5.29 Ounces", "UPC\n \u200f": "\u200e\n 777034013459", "ASIN\n \u200f": "\u200e\n B0916MNM1W", "Best Sellers Rank": "#579,633 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#7,918 in Candy & Chocolate Gifts", "#7,918 in Candy & Chocolate Gifts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Waterbridge", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Waterbridge", "full_description": "Waterbridge delivers a unique chocolate experience with a distinctly smooth taste, a delicious creamy hazelnut filling, a crisp wafer shell covered with chocolate. Hazelnut makes a toasty, buttery contribution to this elegant flavor pairing. A delicate milk chocolate shell with hazelnut pieces surrounds a smooth hazelnut-flavored milk chocolate center. Perfect for candy dishes and buffets, Birthday gifts, party bags, store counters, displays, parties, family get togethers, and more. Your satisfaction is our greatest concern!", "pricing": "$9.99", "list_price": "", "availability_quantity": 9, "availability_status": "Only 9 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31e8FHImltL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Candy & Chocolate \u203a Candy & Chocolate Gifts", "average_rating": 5, "small_description": ["Get Back To Chocolate: We couldn\u2019t find delicious chocolate that fit our specs, so we made our own! ", "Wave Milk Chocolate is a crispy, creamy, and delicious chocolate bar - an unexpected combination of tastes and textures perfect for sharing, gifts, and party favors for boys and girls. ", "The ingredients are chosen according to our high standards of excellence in quality, freshness, and commitment to environmental sustainability. ", "Hazelnut Crunch: Our most indulgent chocolate bar. Enjoy a rich hazelnut crunch inside dark chocolate. ", "Tempting Combination: A tempting combination of smooth chocolaty cream surrounding a whole hazelnut, within a delicate, crisp wafer all enveloped in milk chocolate and finely chopped hazelnuts. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Flavor Name": null}, "seller_id": "A3CJPS5XE2XP03", "seller_name": "Biggie online store", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B0916MNM1W", "category": "grocery", "query": "Milks & Creams", "page": 136, "small_description_old": "About this item Get Back To Chocolate: We couldn\u2019t find delicious chocolate that fit our specs, so we made our own! Wave Milk Chocolate is a crispy, creamy, and delicious chocolate bar - an unexpected combination of tastes and textures perfect for sharing, gifts, and party favors for boys and girls. The ingredients are chosen according to our high standards of excellence in quality, freshness, and commitment to environmental sustainability. Hazelnut Crunch: Our most indulgent chocolate bar. Enjoy a rich hazelnut crunch inside dark chocolate. Tempting Combination: A tempting combination of smooth chocolaty cream surrounding a whole hazelnut, within a delicate, crisp wafer all enveloped in milk chocolate and finely chopped hazelnuts."}, {"name": "4-Light Wall Sconces Vintage Bathroom Vanity Light Over Mirror in Brushed Nickel Finish", "product_information": {"Brand": "\u200eHOLKIRT", "Item Weight": "\u200e6.54 pounds", "Package Dimensions": "\u200e33 x 11.25 x 9 inches", "Item model number": "\u200eB3068-4BU-BN", "Style": "\u200eRetro", "Color": "\u200e4-light", "Material": "\u200eMetal", "Finish Types": "\u200eBrushed", "Number of Lights": "\u200e4", "Voltage": "\u200e110 Volts", "Special Features": "\u200eDimmable", "Shade Material": "\u200eGlass", "Light Direction": "\u200eUplight / Downlight", "Power Source": "\u200eAC", "Switch Installation Type": "\u200eWall Mount", "Type of Bulb": "\u200eLED, Fluorescent, Incandescent", "Wattage": "\u200e60 watts", "ASIN": "B08D74SKT2", "Customer Reviews": {"ratings_count": 42, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#461,210 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #3,016 in Wall Sconces"], "Date First Available": "July 18, 2020"}, "brand": "Visit the HOLKIRT Store", "brand_url": "https://www.amazon.com/stores/HOLKIRT/page/64CFEF91-03AD-4B82-9CC1-4A9C9023D233?ref_=ast_bln", "full_description": "Not just an ordinary vanity lights fixture, but also an art decoration.Light up your life,and bring you into a warm and wonderful exquisite home. Specification: Type:Industrial 4-Light Bath Vanity Wall Light Material: Glass,Metal Color: Clear,Brushed Nickel Bulb Base: E26 Bulb Type: Incandescent, LED,CFL NOTE: Bulb NOT Included Voltage:120V Watts: 60W Max. Features: Clear glass shade on brushed bickel metal back plate,brings contemporary and industrial style SUGGESTION:We suggest installation by a licensed electrician. Package Included: 1 x Glass Vanity Wall Light Warm Tips: *WE SUGGEST INSTALLATION BY A LICENSED ELECTRICIAN.This vanity wall light has been rated for up to 60-watt maximum for A bulb (NOT included). *Please cut off the electricity supply when you install it. *Please use it in dry environment. Note: *Compatible with E26 base bulb,up to 60 watts maximum(Not include). *Fully dimmable when used with a dimmer bulb and compatible dimmer switch(Not include). Return Policy: 1)All non-defective, undamaged products must be returned within 30 days after delivery. 2)Everything should be returned in original box if you don't need/want it. 3)If the product is damaged when you receive,or you have any other questions about the product,please email us first.We will reply you within 24 hours and take action to protect your profits.Thanks for your understanding and cooperation!!!", "pricing": "$119.00", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31ZRNoAHnnL.jpg", "https://m.media-amazon.com/images/I/416ITlcOt0L.jpg", "https://m.media-amazon.com/images/I/410AWZqKGTL.jpg", "https://m.media-amazon.com/images/I/31wCkJAJVvL.jpg", "https://m.media-amazon.com/images/I/41HlM0kFS1L.jpg", "https://m.media-amazon.com/images/I/31Ftk6vBouL.jpg", "https://m.media-amazon.com/images/I/41fzf3UdnDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Wall Lamps & Sconces", "average_rating": 4.8, "small_description": ["Bathroom vanity light features a minimalist design in brushed nickel finish and clear glass shades. This wall sconce makes a statement with its sleek curves. Easily installs up or down and fits styles like industrial,farmhouse and traditional. ", "Applications:Perfect for use in bathrooms and over vanities. Adds charm to any interior ", "Dimension:10.23\"(H)*14.8\"(W) Overall;6.1\"(H)*4.9(W)Lamp shade. ", "Safety Use: ETL listed for dry locations, hardwired connection,mounted facing up and down direction ", "Bulb Require:ETL listed,hardwired,2*E26 bulb,60W MAX(Bulb NOT Included) "], "total_reviews": 42, "total_answered_questions": "", "model": "\u200eB3068-4BU-BN", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08NT1K4HZ/ref=twister_B09R3QNSBL?_encoding=UTF8&psc=1", "value": "1-Light", "price_string": "$49.99", "price": 49.99, "image": null}, {"is_selected": true, "url": null, "value": "4-Light", "price_string": "$119.00", "price": 119, "image": null}]}, "seller_id": "A3DVP2XQ5GDTN6", "seller_name": "HK LIGHTING", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": "", "asin": "B08D74SKT2", "category": "garden", "query": "Sconces", "page": 53, "small_description_old": "About this item Style:Red wine shape,clear glass lampshade on brushed nickel back plate,brings more shine to your life and easily to match any modern,vintage classic or farmhouse style decor. Bulb Require:ETL listed,hardwired,4*E26 bulb,60W MAX(Bulb NOT Included). Dimension: Light:29.13\"(L)*10.15\"(H);Glass shade:4.92\"(D)x 6.1\"(H);Canopy:6.3\"(H) x 4.72\"(W). Perfect fixtures for your master bathroom lights over mirror cabinet, vanity mirrors, makeup dressing table, bedroom, hallway and art display etc. \n \u203a See more product details"}, {"name": "LOP Legacy 12324 - Printable Table of Contents Dividers, White, 15-Tab, 3-Hole, Assorted Tab Colors", "product_information": {"Manufacturer": "\u200eLEGACY OFFICE PRODUCTS", "Brand": "\u200eLegacy", "Item Weight": "\u200e12.3 ounces", "Is Discontinued By Manufacturer": "\u200eNo", "Manufacturer Part Number": "\u200eLOP12324", "ASIN": "B004N1T7VK", "Date First Available": "November 11, 2010"}, "brand": "Brand: Legacy", "brand_url": "https://www.amazon.com/Legacy/b/ref=bl_dp_s_web_9306008011?ie=UTF8&node=9306008011&field-lbr_brands_browse-bin=Legacy", "full_description": "Divider set featuring a laser and inkjet printable contents page.", "pricing": "$11.98", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51H67WgWs+L.jpg", "https://m.media-amazon.com/images/I/31gSdARjH4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Office Electronics Accessories \u203a Presentation Supplies \u203a Binding Machine Supplies", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3SQCSYVT0I3M9", "seller_name": "Linton Mailing Supplies", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B004N1T7VK", "category": "electronics", "query": "Legacy Systems", "page": 55, "small_description_old": ""}, {"name": "Salt & Sugar Bundle Kit, Lemon Mint Dead Sea Salt Scrub & Papaya Brown Sugar Scrub. Exfoliate Face & Body", "product_information": {"ASIN\n \u200f": "\u200e\n B094JTNPWK", "Best Sellers Rank": "#452,260 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,757 in Body Scrubs #2,058 in Body Scrubs & Treatments", "#1,757 in Body Scrubs": "", "#2,058 in Body Scrubs & Treatments": ""}, "brand": "Visit the O Naturals Store", "brand_url": "https://www.amazon.com/stores/O+NATURALS/page/D3E914C1-AF61-4960-944B-40998A2E517E?ref_=ast_bln", "full_description": "", "pricing": "$26.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41CSHsyZr9S.jpg", "https://m.media-amazon.com/images/I/41Y3mEQkLfS.jpg", "https://m.media-amazon.com/images/I/51ylKiETGlS.jpg", "https://m.media-amazon.com/images/I/51uLmmfcHrS.jpg", "https://m.media-amazon.com/images/I/51uwgr-k6eS.jpg", "https://m.media-amazon.com/images/I/41c2WSIinBS.jpg", "https://m.media-amazon.com/images/I/51rcqj0yb2S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Body Scrubs", "average_rating": "", "small_description": ["MOISTURIZES DRY SKIN: Sweet Almond, Vitamin E, and Jojoba Oil will deeply moisturize the skin, making this the perfect hydrating scrub. ", "REDUCE BLEMISHES & MORE: Brown Sugar and Papaya help to reduce the appearance of acne scars, stretch marks, varicose veins, and other blemishes to leave you with clear skin. ", "ANTI CELLULITE: Brown Sugar and Papaya scrub away the appearance of cellulite with Papaya Brown Sugar smooths over cellulite marks, making this the perfect anti-cellulite scrub. ", "EXFOLIATING: This is a natural exfoliating skin scrub featuring Dead Sea Salt which exfoliates away dead skin and other debris from the skin\u2019s surface and pores making this face and body scrub the best natural exfoliant. ", "ANTI-AGING: Anti-oxidant rich essential oils reduce the signs of aging like wrinkles and fine lines. Cellulite massager leaving the skin refreshed, vibrant and smooth. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A16FXJBXHZ7USK", "seller_name": "ONE NATURALS", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B094JTNPWK", "category": "beauty", "query": "Scrubs & Body Treatments", "page": 28, "small_description_old": "About this item MOISTURIZES DRY SKIN: Sweet Almond, Vitamin E, and Jojoba Oil will deeply moisturize the skin, making this the perfect hydrating scrub. REDUCE BLEMISHES & MORE: Brown Sugar and Papaya help to reduce the appearance of acne scars, stretch marks, varicose veins, and other blemishes to leave you with clear skin. ANTI CELLULITE: Brown Sugar and Papaya scrub away the appearance of cellulite with Papaya Brown Sugar smooths over cellulite marks, making this the perfect anti-cellulite scrub. EXFOLIATING: This is a natural exfoliating skin scrub featuring Dead Sea Salt which exfoliates away dead skin and other debris from the skin\u2019s surface and pores making this face and body scrub the best natural exfoliant. ANTI-AGING: Anti-oxidant rich essential oils reduce the signs of aging like wrinkles and fine lines. Cellulite massager leaving the skin refreshed, vibrant and smooth."}, {"name": "Happy by Clinique Eau De Parfum Spray women,3.4 Fl Oz, Pack of 1", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.57 x 1.97 x 1.57 inches; 0.4 Ounces", "Item model number\n \u200f": "\u200e\n 422046", "UPC\n \u200f": "\u200e\n 027829255039 885115319670 020714218607", "Manufacturer\n \u200f": "\u200e\n Clinique", "ASIN\n \u200f": "\u200e\n B001B4NFV0", "Best Sellers Rank": "#107,202 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,185 in Women's Eau de Parfum", "#1,185 in Women's Eau de Parfum": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Clinique", "brand_url": "https://www.amazon.com/Clinique/b/ref=bl_dp_s_web_2587405011?ie=UTF8&node=2587405011&field-lbr_brands_browse-bin=Clinique", "full_description": "Happy to Be is a shimmering sexy different kind of floral scent for women. Beautiful notes of citrus pear hibiscus and syrigna flowers. Fun and flirty for every woman.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41O3g8CmOpL.jpg", "https://m.media-amazon.com/images/I/51KC8r9IbRL.jpg", "https://m.media-amazon.com/images/I/411c-0dnFDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Eau de Parfum", "average_rating": 4.7, "small_description": ["Clinique ", "Country of origin is United States ", "The package dimension of the product is 3.8cmL x 6.4cmW x 15.2cmH ", "The package weight of the product is 1 pounds "], "total_reviews": 1825, "total_answered_questions": 3, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08GYMW8RL/ref=twister_B07CKS1CP7?_encoding=UTF8&psc=1", "value": "2 Set", "price_string": "$25.00", "price": 25, "image": null}, {"is_selected": true, "url": null, "value": "3.4 Fl Oz (Pack of 1)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B001B4NFV0", "category": "beauty", "query": "Women's Fragrance", "page": 41, "small_description_old": "About this item Clinique Country of origin is United States The package dimension of the product is 3.8cmL x 6.4cmW x 15.2cmH The package weight of the product is 1 pounds"}, {"name": "SONY RMT-V504A VHS Video DVD Combo RMT-V501E SLV-D100 SLV-D36 TV Remote Control", "product_information": {"Package Dimensions": "8 x 3 x 0.5 inches", "ASIN": "B00VC425OM", "Item model number": "LYSB00VC425OM-ELECTRNCS", "Customer Reviews": {"ratings_count": 2, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#24,915 in Remote Controls (Electronics)"], "Is Discontinued By Manufacturer": "No", "Date First Available": "March 28, 2015", "Manufacturer": "Sony"}, "brand": "Visit the Sony Store", "brand_url": "https://www.amazon.com/stores/Sony/page/AEA5D08A-7FC6-45D4-B121-C8A6FA25219F?ref_=ast_bln", "full_description": "THIS AUCTION IS JUST FOR SONY RMT-V504A VHS Video DVD COMBO RMT-V501E SLV-D100 SLV-D36 TV REMOTE CONTROL, DO NOT INCLUDE ANYTHING ELSE. (NO TV BODY, NO POWER CORD, L) SOME SCRATCHES ON BACK", "pricing": "$18.97", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/513asRjq3tL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": 4.3, "small_description": [""], "total_reviews": 2, "total_answered_questions": "", "model": "LYSB00VC425OM-ELECTRNCS", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B00VC425OM", "category": "electronics", "query": "VCRs", "page": 274, "small_description_old": ""}, {"name": "Starburst Cherry Liquid Water Enhancer 1.62 Fluid Ounces", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 4.84 x 1.81 x 1.18 inches; 4.66 Ounces", "UPC\n \u200f": "\u200e\n 072392137251", "Manufacturer\n \u200f": "\u200e\n Starburst", "ASIN\n \u200f": "\u200e\n B085LSKHM6", "Best Sellers Rank": "#108,171 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#105 in Water Flavoring Drops", "#105 in Water Flavoring Drops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Starburst Store", "brand_url": "https://www.amazon.com/stores/STARBURST/page/EA1582BE-4222-4CC9-A715-51F2EEAC44FA?ref_=ast_bln", "full_description": "Starburst Water Enhancer transforms plain water into a refreshing, flavorful drink to mirror your favorite candy. A single squeeze of the bottle delivers a burst of the sweet flavor. The portable 1.62 fluid ounce bottle is perfect for your on the go life. This candy flavored drink mix is perfect for everyday life.", "pricing": "$6.80", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41JQmW+dYgL.jpg", "https://m.media-amazon.com/images/I/41IQ4pATNUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Powdered Drink Mixes & Flavorings \u203a Water Flavoring Drops", "average_rating": 4.3, "small_description": ["One 1.62 fl. oz. bottle of Cherry Liquid Drink Mix ", "Drink mix delivers candy flavor to any bottle of water ", "Convenient squeeze bottle can be taken anywhere ", "These bottles contain zero sugar "], "total_reviews": 88, "total_answered_questions": "", "customization_options": "", "seller_id": "A17YLQHBN6TBTE", "seller_name": "Coynebits", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B085LSKHM6", "category": "grocery", "query": "Beverages", "page": 212, "small_description_old": "About this item One 1.62 fl. oz. bottle of Cherry Liquid Drink Mix Drink mix delivers candy flavor to any bottle of water Convenient squeeze bottle can be taken anywhere These bottles contain zero sugar"}, {"name": "CMA Stockroom Kids Wood 5-Pocket Sling Bookshelf Book Display Rack Color Walnut", "product_information": {"Item Weight": "7 pounds", "ASIN": "B06XDG8XFX", "Customer Reviews": {"ratings_count": 3, "stars": "3.2 out of 5 stars"}, "Best Sellers Rank": ["#3,876,686 in Home & Kitchen (See Top 100 in Home & Kitchen) #717 in Kids' Bookcases, Cabinets & Shelves"], "Is Discontinued By Manufacturer": "No", "Date First Available": "March 2, 2017"}, "brand": "Brand: CMA Stockroom", "brand_url": "https://www.amazon.com/CMA-Stockroom/b/ref=bl_dp_s_web_13452853011?ie=UTF8&node=13452853011&field-lbr_brands_browse-bin=CMA+Stockroom", "full_description": "24\" High Kids Sling Bookshelf in Walnut with sturdy wood construction. 5 nylon fabric pockets designed for easy book storage and organization.High Quality:* Kids Book Shelf Sling Storage Bookcase Display Holder * Wood Construction - Firmly and Steady* Smooth cambered edges protect kids from being scratched * Collapsible Cubes - Space Saving and Easy Installation * Suitable for Books Storage in Kid bedroom, drawing room, etc Product Details: * Overall Dimension(LxWxH): 24-7/16\"x 10-7/16\"x 24\" * Pocket size(LxW): 23-5/8\" x 26-3/8\" * Pocket Depth: Approx. 6 11/16\" * Pocket Material: Polyester Fabric * Side Boards Thickness: 1/2''(1.24cm) * Tubes Size: 3/4\"Dia. x 23 5/8\"L (1.98 x 60cm) Also In The Box: * 5x Tubes * 2x Side boards * 1x Pocket Fabric * 1x Screw Sets * 1x Manual", "pricing": "$44.32", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41d6hJx3BoL.jpg", "https://m.media-amazon.com/images/I/41N+8eNt9oL.jpg", "https://m.media-amazon.com/images/I/41NQke9DPrL.jpg", "https://m.media-amazon.com/images/I/419jFDkZXUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Kids' Furniture \u203a Bookcases, Cabinets & Shelves", "average_rating": 3.2, "small_description": ["Kids Book Shelf Sling Storage Bookcase Display Holder ", "Wood Construction - Firmly and Steady ", "Smooth cambered edges protect kids from being scratched ", "Collapsible Cubes - Space Saving and Easy Installation ", "Suitable for Books Storage in Kid bedroom, drawing room, etc "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "A12SV6RINCZJP5", "seller_name": "LeeMas Inc", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B06XDG8XFX", "category": "garden", "query": "Bookcases", "page": 146, "small_description_old": "About this item\n \nKids Book Shelf Sling Storage Bookcase Display Holder Wood Construction - Firmly and Steady Smooth cambered edges protect kids from being scratched Collapsible Cubes - Space Saving and Easy Installation Suitable for Books Storage in Kid bedroom, drawing room, etc"}, {"name": "V-MORO HomePod Mini Wall Mount Holder, Outlet Mount Stand Hidden Cable Management for Apple HomePod Mini Smart Speaker Shelf Without Messy Wires Excellent Space Saving Punch-Free 2-Pack White", "product_information": {"Package Dimensions": "7.2 x 4.33 x 3.19 inches", "Item Weight": "7.3 ounces", "ASIN": "B0924PKLQ4", "Customer Reviews": {"ratings_count": 75, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#160 in Speaker Mounts"], "Colour": "White", "Manufacturer": "V-MORO", "Country of Origin": "China", "Date First Available": "April 9, 2021"}, "brand": "Visit the V-MORO Store", "brand_url": "https://www.amazon.com/stores/V-MORO/page/09B18574-5158-4AED-B8C5-53E7E79CF8B2?ref_=ast_bln", "full_description": "", "pricing": "$19.99", "list_price": "", "availability_quantity": 2, "availability_status": "In Stock. Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51iF4wj2tOS.jpg", "https://m.media-amazon.com/images/I/51-Y0HMFwbS.jpg", "https://m.media-amazon.com/images/I/41xm4rAHL3S.jpg", "https://m.media-amazon.com/images/I/51Kukl7ElPS.jpg", "https://m.media-amazon.com/images/I/51AjGiWkEKS.jpg", "https://m.media-amazon.com/images/I/31PTfRqst9S.jpg", "https://m.media-amazon.com/images/I/51pCgDs0ZkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Mounts \u203a Speaker Mounts", "average_rating": 4.6, "small_description": ["ENJOY FREEDOM-Our stand is tailor-made for HomePod Mini Speaker and give your outlet a lot cleaner and tidier appearance. You can use it in the kitchen, bathroom, study, living room, bedroom, and enjoy music at picnic party or cocktail party.(HomePod Mini is not included) ", "PERFECT CORD ARRANGEMENT-Different from other HomePod Mini mounts on the market,unique hidden cable management design keeps the cord neatly tucked away, avoid ugly hanging cords.Perfectly hides the charging cable at the backside,No Messy Wires! ", "PREMIUM MATERIAL-The anti-silp silicone pad can prevent your device from unnecessary moving while it will not cause unwanted scratches. And the stable PC+ABS plastic frame can offer durable and long-lasting support. ", "EASY TO USE-No tools or accessories are needed, and the wall-mounted design does not cause damage to the wall. Just follow the steps in our manual for installation and it can be completed in 5 minutes. ", "AMAZING SOUND -The outlet wall mount helps HomePod Mini speaker system horizontally to receive and transmit stronger and more realistic sound, make sure your talking go smooth and accurate. "], "total_reviews": 75, "total_answered_questions": 4, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09K393KZB/ref=twister_B09MT139DS?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$19.99", "price": 19.99, "image": "https://m.media-amazon.com/images/I/51dGYad0FJL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$19.99", "price": 19.99, "image": "https://m.media-amazon.com/images/I/51iF4wj2tOS.jpg"}]}, "seller_id": "A2E8K5Z6UKD07N", "seller_name": "V-moro", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B0924PKLQ4", "category": "electronics", "query": "Mounts", "page": 380, "small_description_old": "About this item ENJOY FREEDOM-Our stand is tailor-made for HomePod Mini Speaker and give your outlet a lot cleaner and tidier appearance. You can use it in the kitchen, bathroom, study, living room, bedroom, and enjoy music at picnic party or cocktail party.(HomePod Mini is not included) PERFECT CORD ARRANGEMENT-Different from other HomePod Mini mounts on the market,unique hidden cable management design keeps the cord neatly tucked away, avoid ugly hanging cords.Perfectly hides the charging cable at the backside,No Messy Wires! PREMIUM MATERIAL-The anti-silp silicone pad can prevent your device from unnecessary moving while it will not cause unwanted scratches. And the stable PC+ABS plastic frame can offer durable and long-lasting support. EASY TO USE-No tools or accessories are needed, and the wall-mounted design does not cause damage to the wall. Just follow the steps in our manual for installation and it can be completed in 5 minutes. AMAZING SOUND -The outlet wall mount helps HomePod Mini speaker system horizontally to receive and transmit stronger and more realistic sound, make sure your talking go smooth and accurate."}, {"name": "Women's Coat, FORUU Winter Faux Fur Fleece Outwear Warm Lapel Biker Motor Aviator Jacket", "product_information": {"Item model number\n \u200f": "\u200e\n ZYH20181011", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 12, 2018", "Manufacturer\n \u200f": "\u200e\n FORUU", "ASIN\n \u200f": "\u200e\n B07JCCL2CT", "Best Sellers Rank": "#1,941,008 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,278 in Women's Fur & Faux Fur Jackets & Coats", "#1,278 in Women's Fur & Faux Fur Jackets & Coats": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: FORUU womens Tops & Tees", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=FORUU+womens+Tops+%26+Tees", "full_description": "FORUU\u2014\u2014For You Features: 1.It is made of high quality materials,durable enought for your daily wearing 2.Stylish and fashion make you more attractive 3.Great for Everywhere in Winter,I am sure you will like it! Product information: Season: Winter Gender: Women Occasion: Casual Clothing Length: Regular Style: Fashion,Causal Our Product Fit:Fits ture to size Our Product Elasticity:Medium Our Product Feature:Fashion:Novelty Our Product Style:Casual Comfort Fashion Sport Our Product Thickness:Standard How to wash:Wash in Cold Water, Mild Soap Lay and Hang Dry.", "pricing": "$21.49$24.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51modP3dIdL.jpg", "https://m.media-amazon.com/images/I/51BlWGoaxqL.jpg", "https://m.media-amazon.com/images/I/51qJd5Att+L.jpg", "https://m.media-amazon.com/images/I/41Oo1T4n-GL.jpg", "https://m.media-amazon.com/images/I/419BLcgaN1L.jpg", "https://m.media-amazon.com/images/I/51r5uuzs4CL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Coats, Jackets & Vests \u203a Fur & Faux Fur", "average_rating": 2.4, "small_description": ["Elastic closure ", "This item is fit for workout working wedding visits vacation trips travel theater swimming studios sport sleep shopping running romantic party park outside outdoor opera office nightclubs night meetings life leisure jogging interview indoor honeymoon home holiday hiking hawaii hang gym fitness fishing first festivals family exercise evening dinner days dating date dance daily concert company cocktail club casual camping business boating birthday beach barbecue bar bang anniversary wear. ", "This item is suitable for dressing at Fourth of July honeymoon wedding anniversary Valentine's Day Christmas Mother's Day Thanksgiving Day Anniversary New Year's Day Easter Halloween St. Patrick's Day Christmas Eve Birthday April Fool Father's Day Independence Day Labor Day Spring Summer Autumn Winter National Day four seasons Back to school Black Friday and Cyber Monday Week BFCM Memorial Day Hanukkah time. ", "This item has a casual chiffon cotton linen 3/4 long short sleeves soft comfortable breathable v-neck o-neck solid stylish sexy cute chic elegant retro lace nylon blend silk zipper pocket striped hooded patchwork leopard printed floral batwing butterfly ruffled swing off shoulder polka dot classic lightweight plaid sleeveless loose fit buttons tunic tight slim cheap shiny thick smooth warm thin sweat-absorbent sun-proof denim yarn ethnic style mesh mini backless feature. ", "This item is fit for matching with a wigs watches vests underwear tunics tops tees tanks tankinis swimsuits sweatshirts sweatpants sweaters sunglasses socks sleepshirts skirts shorts shoes shirts scarves sandals pullovers polos pants pajamas nightgowns necklaces nail polish lipstick lingerie leggings knits jeans jackets hoodies high heels headscarf hats gowns glasses false eyelashes earrings dresses corsets cardigans cap camisoles camis bras bracelets blouse bikinis belts bags backpacks. ", "This item is the best gift for friends family mother sister lover girlfriend wife partner daughter classmate couple colleague work birthday present anniversary gift lovers parents fathers mothers children daughters sons girlfriend boyfriend uncles aunts child husband bride bridegroom baby boys girls teens junior grandfather grandmother 30th 40th 50th 60th 70th 80th birthday. "], "total_reviews": 39, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07JB9347Z"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07ZXBGDXF"}, {"is_selected": false, "is_available": false, "value": "Large", "asin": "B07VM4Q54K"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07JCCKZT5"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07JCC6DQF"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B07JD6PZPG"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B07JVRZ7JH"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B07JB92J5Z"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07JCCL2CT/ref=twister_B07JCTMMGH", "value": "Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51FKdDgYFNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07JVQFNRK/ref=twister_B07JCTMMGH", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51hxGgZ5+zL.jpg"}, {"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51modP3dIdL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07ZXBGDXF", "category": "fashion", "query": "Women's Shorts", "page": 64, "small_description_old": "100% Cotton Imported Elastic closure This item is fit for workout working wedding visits vacation trips travel theater swimming studios sport sleep shopping running romantic party park outside outdoor opera office nightclubs night meetings life leisure jogging interview indoor honeymoon home holiday hiking hawaii hang gym fitness fishing first festivals family exercise evening dinner days dating date dance daily concert company cocktail club casual camping business boating birthday beach barbecue bar bang anniversary wear. This item is suitable for dressing at Fourth of July honeymoon wedding anniversary Valentine's Day Christmas Mother's Day Thanksgiving Day Anniversary New Year's Day Easter Halloween St. Patrick's Day Christmas Eve Birthday April Fool Father's Day Independence Day Labor Day Spring Summer Autumn Winter National Day four seasons Back to school Black Friday and Cyber Monday Week BFCM Memorial Day Hanukkah time. This item has a casual chiffon cotton linen 3/4 long short sleeves soft comfortable breathable v-neck o-neck solid stylish sexy cute chic elegant retro lace nylon blend silk zipper pocket striped hooded patchwork leopard printed floral batwing butterfly ruffled swing off shoulder polka dot classic lightweight plaid sleeveless loose fit buttons tunic tight slim cheap shiny thick smooth warm thin sweat-absorbent sun-proof denim yarn ethnic style mesh mini backless feature. This item is fit for matching with a wigs watches vests underwear tunics tops tees tanks tankinis swimsuits sweatshirts sweatpants sweaters sunglasses socks sleepshirts skirts shorts shoes shirts scarves sandals pullovers polos pants pajamas nightgowns necklaces nail polish lipstick lingerie leggings knits jeans jackets hoodies high heels headscarf hats gowns glasses false eyelashes earrings dresses corsets cardigans cap camisoles camis bras bracelets blouse bikinis belts bags backpacks. This item is the best gift for friends family mother sister lover girlfriend wife partner daughter classmate couple colleague work birthday present anniversary gift lovers parents fathers mothers children daughters sons girlfriend boyfriend uncles aunts child husband bride bridegroom baby boys girls teens junior grandfather grandmother 30th 40th 50th 60th 70th 80th birthday."}, {"name": "Artificial Plant Lifelike Fake Plants, Artificial Hanging Plants Fake Fern Plant, Wall Decoration for Indoor Outdoor, Home Store Decor Centerpiece (Color : Persian Grass Leaf Fern, Size : Large)", "product_information": {"Item Weight": "0.035 ounces", "Department": "Unisex-adult", "Manufacturer": "SYXL", "ASIN": "B09PYR413Y", "Country of Origin": "China"}, "brand": "Brand: SYXL", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SYXL", "full_description": "The maintenance is simple, no watering and fertilization are required, and it is evergreen in all seasons. If there is dust, just wipe it off with a damp cloth or duster.Name: Fake PlantSize: Length 75~110cm/29.5~43.3inMaterial: Hand-feel glue, professionally made plasticFlower name: Persian grass leaf fern, Asparagus grass leaf fern, Fortune leaf fernApplicable scenarios: ground, balcony, shop, home decorationNote: The size and color may vary slightly, please refer to the actual product!Note: It may be squeezed during transportation, just adjust it slightly by hand.This is a good choice for people who like plants but don't have time to take care of them to maintain their beauty.", "pricing": "$113.71", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41C8-6QYsML.jpg", "https://m.media-amazon.com/images/I/51ob00zU-JL.jpg", "https://m.media-amazon.com/images/I/513zj-qw3bL.jpg", "https://m.media-amazon.com/images/I/41qbypggZnL.jpg", "https://m.media-amazon.com/images/I/41LSmFV1OIL.jpg", "https://m.media-amazon.com/images/I/41rAZCpswqL.jpg", "https://m.media-amazon.com/images/I/51qWSC87DeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Artificial Plants & Flowers \u203a Artificial Plants & Greenery", "average_rating": "", "small_description": ["Fake Plants Tall Indoor and Outdoor Spaces-These decorative artificial plants indoor gives your home the relaxing atmosphere and calming ambiance of live real plants, minus the hassle of upkeep and maintenance. ", "Highly realistic design: these fake hanging plants are exquisite craftsmanship and attention to detail. Their leaves are thick and look very natural. They will not wilt or fade. ", "Used for: The design style is modern and fashionable. It is a fake plant for bedroom aesthetics and kitchen decoration wall, outdoor decoration, porch decoration, balcony decoration, and indoor home decoration artificial plants. ", "No maintenance: It is a practical substitute for living plants. They will remain fresh and beautiful year after year. You don't have to worry about sunlight, water, pruning, fertilizing, or other maintenance efforts. ", "Multi-purpose: fake hanging ivy vines can be easily organized and fixed on hanging baskets, wall basins, wooden boxes, outdoor containers, hanging basins and fences. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "Large", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PYPCH43/ref=twister_B09PYN2GV2?_encoding=UTF8&psc=1", "value": "Medium", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PY7P99L/ref=twister_B09PYN2GV2?_encoding=UTF8&psc=1", "value": "Small", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PY5NJFP/ref=twister_B09PYN2GV2?_encoding=UTF8&psc=1", "value": "Asparagus Grass Leaf Fern", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yeSwkxj7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PY6FDPR/ref=twister_B09PYN2GV2?_encoding=UTF8&psc=1", "value": "Fortune Leaf Fern", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Yy5p3Cr0L.jpg"}, {"is_selected": true, "url": null, "value": "Persian Grass Leaf Fern", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41C8-6QYsML.jpg"}]}, "seller_id": "A3MXD7ROXLC9LR", "seller_name": "BENJISTORE", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PYR413Y", "category": "garden", "query": "Live Plants", "page": 315, "small_description_old": "About this item Fake Plants Tall Indoor and Outdoor Spaces-These decorative artificial plants indoor gives your home the relaxing atmosphere and calming ambiance of live real plants, minus the hassle of upkeep and maintenance. Highly realistic design: these fake hanging plants are exquisite craftsmanship and attention to detail. Their leaves are thick and look very natural. They will not wilt or fade. Used for: The design style is modern and fashionable. It is a fake plant for bedroom aesthetics and kitchen decoration wall, outdoor decoration, porch decoration, balcony decoration, and indoor home decoration artificial plants. No maintenance: It is a practical substitute for living plants. They will remain fresh and beautiful year after year. You don't have to worry about sunlight, water, pruning, fertilizing, or other maintenance efforts. Multi-purpose: fake hanging ivy vines can be easily organized and fixed on hanging baskets, wall basins, wooden boxes, outdoor containers, hanging basins and fences."}, {"name": "Morton & Basset Spices, Organic Italian Seasoning, 1.5 Ounce (Pack of 3)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 6.9 x 6.4 x 3.1 inches; 1.15 Pounds", "Item model number\n \u200f": "\u200e\n 617977", "UPC\n \u200f": "\u200e\n 162914426274 016291442627", "Manufacturer\n \u200f": "\u200e\n Morton & Bassett", "ASIN\n \u200f": "\u200e\n B004K6B5TK", "Best Sellers Rank": "#516,520 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#570 in Italian Seasonings", "#570 in Italian Seasonings": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Morton & Bassett Store", "brand_url": "https://www.amazon.com/stores/MortonBassett/page/8B02531C-790F-48C2-A8EE-767AB9A29326?ref_=ast_bln", "full_description": "What's the secret to making exceptional foods? Using exceptional ingredients! Morton Gothelf, the founder of Morton & Bassett Spices, had always been a great cook and always seemed to be entertaining friends. He was passionate about finding just the right ingredients to create the perfect combination of flavors. In searching for superior ingredients, he found that the best quality spices were difficult to obtain in a typical grocery or gourmet store. Morton began to find sources for the best spices and then started Morton & Bassett Spices in 1986, hoping to fill this niche. The combination of great ingredients, good value and clear bottles that showcased the product was a hit. Since 1986 the business has grown quickly thanks to the growing numbers of loyal Morton & Bassett customers. Once a good cook tries Morton & Bassett they inevitably become loyal fans. Today there are over 100 world class spices in the product line and more flavors are in the works.", "pricing": "$37.09", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/415f4IpLaSL.jpg", "https://m.media-amazon.com/images/I/51+VERG1QvL.jpg", "https://m.media-amazon.com/images/I/31adN0xYAtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Herbs, Spices & Seasonings \u203a Mixed Spices & Seasonings \u203a Italian Seasoning", "average_rating": 3.5, "small_description": ["Premium quality spices ", "Perfect for use in all your favorite recipes ", "All natural ", "Truly a pantry staple ", "Great for baking, cooking, and more "], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A3SBDOAENTRT1F", "seller_name": "VirVentures", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B004K6B5TK", "category": "grocery", "query": "Pantry Staples", "page": 153, "small_description_old": "About this item Premium quality spices Perfect for use in all your favorite recipes All natural Truly a pantry staple Great for baking, cooking, and more"}, {"name": "Replacement 60W Power Adapter L-Tip Connector for MacBook Pro Charger (Previous Generation 13.3-inch and13-inch)", "product_information": {"Package Dimensions": "5.39 x 3.98 x 2.05 inches", "Item Weight": "8.4 ounces", "ASIN": "B09HK6JF63", "Item model number": "A1184A1330A1344A1435", "Customer Reviews": {"ratings_count": 342, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#388 in Electronics (See Top 100 in Electronics) #11 in Laptop Chargers & Adapters"], "Date First Available": "September 30, 2021", "Manufacturer": "Dongguan Yanzi Electronic Technology Co., Ltd", "Country of Origin": "China"}, "brand": "Brand: Kivkny", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Kivkny", "full_description": "60 power Replacement charger first generation of power adapter L-type connector", "pricing": "$20.98", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21GY4f-+G5S.jpg", "https://m.media-amazon.com/images/I/31KJm2Y6bOS.jpg", "https://m.media-amazon.com/images/I/31+j8JX2sgL.jpg", "https://m.media-amazon.com/images/I/41lUGqha4tL.jpg", "https://m.media-amazon.com/images/I/51h+8lqD7JL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Laptop Accessories \u203a Chargers & Adapters", "average_rating": 4.6, "small_description": "About this item\n \nReplacement charger AC adapter for notebook Pro 13\" Inch before Mid 2012 Input \uff1a AC 100-240V, 1.5a, 50-60Hz/output: 16.5V, 3.65a After-Sales Service: If anything goes wrong with the item, please do not hesitate to send email or contact us. We will reply you within 12 hours Safety: advanced technology and certificated with UL/CE/FCC/RoHS standard, can protect your equipment from over current, over voltage, over load, short-circuit Note:This is the first generation of charger, not the second. Knowing which Mac notebook model you have is important. Please check clearly before buying.", "total_reviews": 342, "total_answered_questions": 6, "model": "A1184A1330A1344A1435", "customization_options": "", "seller_id": "A2C8W87CQT057J", "seller_name": "Jo Hopkins", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09HK6JF63", "category": "electronics", "query": "Chargers", "page": 9, "small_description_old": "About this item\n \nReplacement charger AC adapter for notebook Pro 13\" Inch before Mid 2012 Input \uff1a AC 100-240V, 1.5a, 50-60Hz/output: 16.5V, 3.65a After-Sales Service: If anything goes wrong with the item, please do not hesitate to send email or contact us. We will reply you within 12 hours Safety: advanced technology and certificated with UL/CE/FCC/RoHS standard, can protect your equipment from over current, over voltage, over load, short-circuit Note:This is the first generation of charger, not the second. Knowing which Mac notebook model you have is important. Please check clearly before buying."}, {"name": "Colossal Innovative Nano Glass Callus Remover Foot File - Coarse Foot Rasp Colossal Foot Scrubber Salon Home Pedicure Foot Care Tool for Soft Feet (1PC)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 5.55 x 3.58 x 0.75 inches; 2.4 Ounces", "UPC\n \u200f": "\u200e\n 192354076050", "Manufacturer\n \u200f": "\u200e\n Sumi Eco", "ASIN\n \u200f": "\u200e\n B084PCSG5H", "Best Sellers Rank": "#34,767 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#119 in Foot Files", "#119 in Foot Files": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: SUMI ECO ECO-FRIENDLY", "brand_url": "https://www.amazon.com/SUMI-ECO-ECO-FRIENDLY/b/ref=bl_dp_s_web_20774419011?ie=UTF8&node=20774419011&field-lbr_brands_browse-bin=SUMI+ECO+ECO-FRIENDLY", "full_description": "", "pricing": "$9.90", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41CW3F9tV5L.jpg", "https://m.media-amazon.com/images/I/511pbbEvzOL.jpg", "https://m.media-amazon.com/images/I/41OuMgblSFL.jpg", "https://m.media-amazon.com/images/I/41yJ4wwYcEL.jpg", "https://m.media-amazon.com/images/I/41y3B416+LL.jpg", "https://m.media-amazon.com/images/I/415ryCJCtML.jpg", "https://m.media-amazon.com/images/I/91c8QiXSN6L.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Foot, Hand & Nail Care \u203a Tools & Accessories \u203a Foot Files", "average_rating": 4.4, "small_description": ["3D Nano Laser Cutting: Glass Pedicure foot file is adopting advanced laser-plating techniques which is the latest technology in the world to ensure 100% waterproof and safety. ", "Ultra Tempered Safe Glass: Blade is made of 100% professional surgical grade glass to allow safe sterilization, prevent corrosion. Sturdy design it's not easy to break off with long durability. Ergonomic Design, which is more convenient for you when using. Non-slip design ensure you can grip the foot file to remove the dry skin quickly and effective! ", "Perfect Solution to Remove Callus: Professional foot file is designed with 3D Nano Glass dot pattern surface, which can help you easily remove the thick callus, bad heel and tough deep skin, let your feet become baby-soft, smooth and beautiful again. ", "Work Well in Both Wet and Dry: Made of Top Grade Tempered Glass, which make it can be used on wet foot or any wet condition, giving equal good results on both wet and dry foot. ", "Save Your Money and TIme: Enjoy the Best quality pedicure at home! Just only several minutes, all calluses will be taken off! Clean with brush after use and it will like brand new in the next time, saving much time and money for you! Wonder Gift for families and friends! "], "total_reviews": 992, "total_answered_questions": 5, "customization_options": {"Color": null}, "seller_id": "A3SBT2PXLV7OIQ", "seller_name": "TOP10 SHOP", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B084PCSG5H", "category": "beauty", "query": "Foot, Hand & Nail Care", "page": 16, "small_description_old": "About this item 3D Nano Laser Cutting: Glass Pedicure foot file is adopting advanced laser-plating techniques which is the latest technology in the world to ensure 100% waterproof and safety. Ultra Tempered Safe Glass: Blade is made of 100% professional surgical grade glass to allow safe sterilization, prevent corrosion. Sturdy design it's not easy to break off with long durability. Ergonomic Design, which is more convenient for you when using. Non-slip design ensure you can grip the foot file to remove the dry skin quickly and effective! Perfect Solution to Remove Callus: Professional foot file is designed with 3D Nano Glass dot pattern surface, which can help you easily remove the thick callus, bad heel and tough deep skin, let your feet become baby-soft, smooth and beautiful again. Work Well in Both Wet and Dry: Made of Top Grade Tempered Glass, which make it can be used on wet foot or any wet condition, giving equal good results on both wet and dry foot. Save Your Money and TIme: Enjoy the Best quality pedicure at home! Just only several minutes, all calluses will be taken off! Clean with brush after use and it will like brand new in the next time, saving much time and money for you! Wonder Gift for families and friends!"}, {"name": "Phantasy Star Portable PSP", "product_information": {"ASIN": "B001JEPWD6", "Customer Reviews": {"ratings_count": 3, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#158,441 in Video Games (See Top 100 in Video Games) #1,113 in Sony PSP Accessories"], "Pricing": "The strikethrough price is the List Price. Savings represents a discount off the List Price.", "Package Dimensions": "6.9 x 4.1 x 0.6 inches; 3.68 Ounces", "Binding": "Video Game", "Is Discontinued By Manufacturer": "No", "Item Weight": "3.68 ounces", "Date First Available": "July 27, 2010"}, "brand": "Brand: SEGA", "brand_url": "https://www.amazon.com/SEGA/b/ref=bl_dp_s_web_3041165011?ie=UTF8&node=3041165011&field-lbr_brands_browse-bin=SEGA", "full_description": "", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51TPJVm3uQL.jpg", "https://m.media-amazon.com/images/I/519NYdI1DNL.jpg", "https://m.media-amazon.com/images/I/41TtFzbNjXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a Legacy Systems \u203a PlayStation Systems \u203a Sony PSP \u203a Accessories", "average_rating": 5, "small_description": [""], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B001JEPWD6", "category": "electronics", "query": "PlayStation", "page": 274, "small_description_old": ""}, {"name": "Yinimo Mens Gym Shorts Fashionable Loose Beach Drawstring Turkey Print Beach Cool Shorts", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.81 x 7.87 x 3.94 inches; 12.35 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 1, 2021", "Manufacturer\n \u200f": "\u200e\n Yinimo", "ASIN\n \u200f": "\u200e\n B09Q619YP7", "Best Sellers Rank": "#1,059,185 in Sports & Outdoors (See Top 100 in Sports & Outdoors)#1,413 in Sports Fan Shorts #2,821 in Men's Flat Front Shorts", "#1,413 in Sports Fan Shorts": "", "#2,821 in Men's Flat Front Shorts": ""}, "brand": "Brand: Yinimo", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Yinimo", "full_description": "\ud83d\ude08\ud83d\ude08 \u261e Welcome, we sincerely serve every customer, we are updating our products every day\u2714 \ud83d\udc29\ud83d\udc29 \ud83c\udf1f \u3010Product Information\u3011: \ud83d\udc7f Seasons: Autumn, Winter \ud83c\udf1f Gender: Male \ud83c\udf1fStyle: Fashion \ud83c\udf1fMaterial: Polyester \ud83c\udf1fPants length: shorts \ud83c\udf1f Pattern Type: None \ud83c\udf1fNeckline: As shown \ud83c\udf1fLength: normal \ud83c\udf1fDecoration: none \ud83c\udf1fSilhouette: none \ud83c\udf1f You will get: 1 x Men's Shorts \ud83c\udf1f \ud83d\udc7f\ud83d\udc7f\u3010Size Guide\u3011: It is recommended to take one size largerSize chart:Size: S EU: 72 US: 29 Waist: 74cm/29.13'' Hip: 106cm/41.73'' Inseam: 30cm/11.81'' Length: 52cm/20.47'' Size: M EU: 74 US: 30 Waist: 78cm/30.71'' Hip: 110cm/43.31'' Inseam: 31cm/12.20'' Length: 53cm/20.87'' Size: L EU: 76 US: 31 Waist: 82cm/32.28'' Hip: 114cm/44.88'' Inseam: 32cm/12.60'' Length: 54cm/21.26'' Size: XL EU: 78 US: 32 Waist: 86cm/33.86'' Hip: 118cm/46.46'' Inseam: 33cm/12.99'' Length: 55cm/21.65'' Size: XXL EU: 80 US: 33 Waist: 90cm/35.43'' Hip: 122cm/48.03'' Inseam: 34cm/13.39'' Length: 56cm/22.05'' Size: XXXL EU: 82 US: 34 Waist: 94cm/37.01'' Hip: 126cm/49.61'' Inseam: 35cm/13.78'' Length: 57cm/22.44'' Size: XXXXL EU: 84 US: 36 Waist: 98cm/38.58'' Hip: 130cm/51.18'' Inseam: 36cm/14.17'' Length: 58cm/22.83'' Size: XXXXXL EU: 86 US: 40 Waist: 102cm/40.16'' Hip: 134cm/52.76'' Inseam: 37cm/14.57'' Length: 59cm/23.23'' Product description:Product type: shortsPattern type: SolidSleeve type: Short SleeveNeck style: CrewneckClosure type: Pull-OnStyle name: CasualFront style: Flat FrontTarget gender: MaleAge range description: AdultFit type: RegularTheme: Alphabets", "pricing": "$19.19", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51O1+tw-amL.jpg", "https://m.media-amazon.com/images/I/51qgs5pk17L.jpg", "https://m.media-amazon.com/images/I/511nz5F0c4L.jpg", "https://m.media-amazon.com/images/I/51oD28kjapL.jpg", "https://m.media-amazon.com/images/I/51jB8RKvU-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shorts \u203a Flat Front", "average_rating": "", "small_description": "75% Polyester, 25% Cotton TIP - If you like a loose fit, please order one size up, thanks. HIGH QUALITY - These cotton casual shorts are very cool and stylish. High-quality materials ensure long-lasting flexibility to protect your skin from the sun's rays. Pull On closure COMFORT - Made of comfortable materials for gym workouts. The smooth fabric is comfortable enough to wear all day, ensuring you have a great wearing experience. Elastic waistband and adjustable drawstring fit your preference. Features - Elastic Waistband/External Drawcord/Comfort/Capri Length/Elastic Ankle Cuffs/Moisture Wicking/High Quality. Great for - Gym, Jogging, Workout, Training, Bodybuilding, Walking, Fitness, Running, Hiking, Holiday, Outdoor, Indoor and Casual Wear. \n 511 cargo shorts short romper 5 mesh shorts flex yoga shorts v3 shorts dry shorts tiewaist shorts binpaw shorts buttlifter shorts 14w shorts buds shorts short curtains laced up shorts 8x shorts lg cycling shorts oh shorts 56 shorts men tecrd shorts 0 short pants short sets 5 board shorts holligraphic shorts 3 board shorts ahapermint shorts aau shorts 24w shorts 10 athletic shorts xl gym shorts black cargo shorts kyaking shorts cargart shorts d1 shorts marurnity shorts 15-loohorts for men men nylon shorts 4x shorts for men mensyoga shorts 21 shorts for men mens soccer shorts wokout shorts men men short sleeve shirts mensbeach shorts bib overall shorts for men men knit shorts 4 x shorts for men 29 mens shorts meShow more", "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09Q619YP7/ref=twister_B09Q611Z12", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51piwj6CCQL.jpg"}, {"is_selected": true, "url": null, "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51O1+tw-amL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q637VT1/ref=twister_B09Q611Z12", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51GZVq3YH5L.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09Q61DTZ6"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09Q62NNW3"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09Q5ZQQFX"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09Q62JSKS"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09Q5ZRH89"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09Q5ZHRVM"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B09Q5ZVLBS"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B09Q61L75M"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q5ZHRVM", "category": "fashion", "query": "Men's Shorts", "page": 66, "small_description_old": "75% Polyester, 25% Cotton TIP - If you like a loose fit, please order one size up, thanks. HIGH QUALITY - These cotton casual shorts are very cool and stylish. High-quality materials ensure long-lasting flexibility to protect your skin from the sun's rays. Pull On closure COMFORT - Made of comfortable materials for gym workouts. The smooth fabric is comfortable enough to wear all day, ensuring you have a great wearing experience. Elastic waistband and adjustable drawstring fit your preference. Features - Elastic Waistband/External Drawcord/Comfort/Capri Length/Elastic Ankle Cuffs/Moisture Wicking/High Quality. Great for - Gym, Jogging, Workout, Training, Bodybuilding, Walking, Fitness, Running, Hiking, Holiday, Outdoor, Indoor and Casual Wear. \n 511 cargo shorts short romper 5 mesh shorts flex yoga shorts v3 shorts dry shorts tiewaist shorts binpaw shorts buttlifter shorts 14w shorts buds shorts short curtains laced up shorts 8x shorts lg cycling shorts oh shorts 56 shorts men tecrd shorts 0 short pants short sets 5 board shorts holligraphic shorts 3 board shorts ahapermint shorts aau shorts 24w shorts 10 athletic shorts xl gym shorts black cargo shorts kyaking shorts cargart shorts d1 shorts marurnity shorts 15-loohorts for men men nylon shorts 4x shorts for men mensyoga shorts 21 shorts for men mens soccer shorts wokout shorts men men short sleeve shirts mensbeach shorts bib overall shorts for men men knit shorts 4 x shorts for men 29 mens shorts meShow more"}, {"name": "JiuRui Leisure Shorts 2021 Newest Summer Casual Shorts Men' s Cotton Fashion Style Man Shorts Male Casual Beach Shorts Plus Size 4XL 5XL Short (Color : Black, Size : 3X-Large)", "product_information": {"Item Weight": "14.1 ounces", "Department": "Mens", "Manufacturer": "JiuRui Electronic Firm", "ASIN": "B092T8CY89", "Country of Origin": "China"}, "brand": "Brand: JiuRui-504", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JiuRui-504", "full_description": "Leisure swimsuits are perfect and well-fitting. It usually takes around 10- 25 days between shipment and delivery.Style: CasualMaterial: Cotton Applicable Season: summerLength: Knee Length Waist Type: MID Closure Type: Elastic waist Any question or problem, please feel free to contact us. We will reply within 24 hours.", "pricing": "$22.17", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31THlmtNerL.jpg", "https://m.media-amazon.com/images/I/411mGD+1tXL.jpg", "https://m.media-amazon.com/images/I/51cHg78qrrL.jpg", "https://m.media-amazon.com/images/I/41aqNOd1yIL.jpg", "https://m.media-amazon.com/images/I/41WCVt5z-JL.jpg", "https://m.media-amazon.com/images/I/51wtGAiM4uL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shorts \u203a Flat Front", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A12G0315K7QJ4U", "seller_name": "Longgang JiuRui Electronic Firm", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B092T8CY89", "category": "fashion", "query": "Men's Shorts", "page": 134, "small_description_old": ""}, {"name": "Canon EOS 80D DSLR Camera w/Canon 18-135mm is USM, Canon 100-400mm is II USM & Commander 420-800mm Telephoto Lens + Elegant Accessory Kit (2X 64GB Memory Card, Canon Backpack, TTL Flash & More.)", "product_information": {"ASIN": "B07YBM2JHT", "Item model number": "Canon EOS 80D", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#650,733 in Electronics (See Top 100 in Electronics) #4,184 in DSLR Cameras"], "Date First Available": "September 24, 2019", "Manufacturer": "Canon"}, "brand": "Visit the Canon Store", "brand_url": "https://www.amazon.com/stores/Canon/page/5FDDA83E-27A1-472F-8444-4828B50C4243?ref_=ast_bln", "full_description": "This Bundle includes :Camera :Canon EOS 80D DSLR CameraLens :Canon EF-S 18-135mm f/3.5-5.6 IS USM LensCanon EF 100-400mm f/4.5-5.6L IS II USM LensCommander 420-800mm f/8 Telephoto LensAccessories :Canon Gadget BackpackCanon LP-E6N Battery PackCanon LC-E6 ChargerCanon Neck Strap2x 64GB Transcend Memory CardCommander C613 Speedlite TTL AutoflashBattery GripMonopod3x UV Filters (77mm, 67mm, 62mm) 2x Tulip Lens Hoods (77mm, 67mm, 62mm) Extra Replacement LP-E6N Battery PackLens Pen and Air Blower kitCleaning Cloth", "pricing": "$3,449.00", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51YBrcmi50L.jpg", "https://m.media-amazon.com/images/I/51MlgaHD+uL.jpg", "https://m.media-amazon.com/images/I/61XmZI3+uTL.jpg", "https://m.media-amazon.com/images/I/51KnV8R7pNL.jpg", "https://m.media-amazon.com/images/I/61JSdwVJ1IL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a DSLR Cameras", "average_rating": 5, "small_description": ["This Canon Camera Bundle comes a One Year Seller Warranty; Canon EOS 80D DSLR Camera - 24.2MP APS-C CMOS Sensor - DIGIC 6 Image Processor - 3.0\" 1.04m-Dot Vari-Angle Touchscreen - Full HD 1080p Video Recording at 60 fps - Up to 7 fps Shooting - Built-In Wi-Fi with NFC - RGB+IR 7560-Pixel Metering Sensor ", "Canon EF-S 18-135mm f/3.5-5.6 IS USM Lens - EF-S Mount Lens/APS-C Format - 28.8-216mm (35mm Equivalent) - Aperture Range: f/3.5 to f/38 - One UD Element, One Aspherical Element - Super Spectra Coating - NANO USM Autofocus System - Optical Image Stabilizer - Rounded 7-Blade Diaphragm - Compatible with PZ-E1 Power Zoom Adapter ", "Canon EF 100-400mm f/4.5-5.6L IS II USM Lens - A long-reaching telephoto zoom positioned as a versatile option for sports and wildlife photographers, this lens' list of attributes make it a viable telephoto zoom for a variety of shooting applications. Zoom control is complemented by a dedicated tension ring for adjusting zoom torque. Additionally, includes a tripod collar that can be attached or detached with the lens mounted to the camera ", "Commander 420-800mm f/8-16 HD Telephoto Zoom - A versatile lens for photographing distant subjects, that features a convenient threaded T-mount for adapting to a wide variety of shoots. Its 4 elements, 2 groups optical design features a super HD multi-coating, and a lens hood is incorporated into the design, to suppress lens flare, ghosting, and surface reflections for increased contrast and color neutrality when working in strong lighting conditions ", "Also includes : Canon Gadget Backpack - Canon LP-E6N Battery Pack and LC-E6 Charger - Canon Neck Strap - 2x 64GB Transcend Memory Card - Commander C613 Speedlite TTL Autoflash (Good to 180 ft) - Battery Grip - Monopod - 3x UV Filters - 3x Tulip Lens Hoods - Extra Replacement LP-E6N Battery Pack - Lens Pen and Air Blower kit - Cleaning Cloth "], "total_reviews": 1, "total_answered_questions": "", "model": "Canon EOS 80D", "customization_options": "", "seller_id": "A3KTZ4MX8F6OME", "seller_name": "PAGING ZONE", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07YBM2JHT", "category": "electronics", "query": "Digital Cameras", "page": 387, "small_description_old": "About this item\n \nThis Canon Camera Bundle comes a One Year Seller Warranty; Canon EOS 80D DSLR Camera - 24.2MP APS-C CMOS Sensor - DIGIC 6 Image Processor - 3.0\" 1.04m-Dot Vari-Angle Touchscreen - Full HD 1080p Video Recording at 60 fps - Up to 7 fps Shooting - Built-In Wi-Fi with NFC - RGB+IR 7560-Pixel Metering Sensor Canon EF-S 18-135mm f/3.5-5.6 IS USM Lens - EF-S Mount Lens/APS-C Format - 28.8-216mm (35mm Equivalent) - Aperture Range: f/3.5 to f/38 - One UD Element, One Aspherical Element - Super Spectra Coating - NANO USM Autofocus System - Optical Image Stabilizer - Rounded 7-Blade Diaphragm - Compatible with PZ-E1 Power Zoom Adapter Canon EF 100-400mm f/4.5-5.6L IS II USM Lens - A long-reaching telephoto zoom positioned as a versatile option for sports and wildlife photographers, this lens' list of attributes make it a viable telephoto zoom for a variety of shooting applications. Zoom control is complemented by a dedicated tension ring for adjusting zoom torque. Additionally, includes a tripod collar that can be attached or detached with the lens mounted to the camera Commander 420-800mm f/8-16 HD Telephoto Zoom - A versatile lens for photographing distant subjects, that features a convenient threaded T-mount for adapting to a wide variety of shoots. Its 4 elements, 2 groups optical design features a super HD multi-coating, and a lens hood is incorporated into the design, to suppress lens flare, ghosting, and surface reflections for increased contrast and color neutrality when working in strong lighting conditions Also includes : Canon Gadget Backpack - Canon LP-E6N Battery Pack and LC-E6 Charger - Canon Neck Strap - 2x 64GB Transcend Memory Card - Commander C613 Speedlite TTL Autoflash (Good to 180 ft) - Battery Grip - Monopod - 3x UV Filters - 3x Tulip Lens Hoods - Extra Replacement LP-E6N Battery Pack - Lens Pen and Air Blower kit - Cleaning Cloth"}, {"name": "Leica V-LUX (Typ 114) Digital Camera Explorer Kit - 64GB - Memory Card Wallet - Reader - Battery", "product_information": {"Brand Name": "\u200eLeica", "Item Weight": "\u200e7.52 pounds", "Product Dimensions": "\u200e16.1 x 12.3 x 6.6 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eLEIVLUXTYP114EXPKIT", "Special Features": "\u200eImage Stabilization", "ASIN": "B07ZDJZJFD", "Date First Available": "October 21, 2019"}, "brand": "Brand: Leica", "brand_url": "https://www.amazon.com/Leica/b/ref=bl_dp_s_web_2529774011?ie=UTF8&node=2529774011&field-lbr_brands_browse-bin=Leica", "full_description": "Leica V-LUX (Typ 114) Digital Camera Explorer KitReady to join you on your next adventure is the V-LUX (Typ 114) Digital Camera Explorer Kit from Leica which features the versatile, long-zoom V-LUX camera along with a red COOPH Leica Rope Strap and an ONA Bowery for Leica canvas camera bag.This set is bundled in a limited-edition Explorer Kit box and is available in a limited edition of 1500.The V-LUX is an advanced point-and-shoot digital camera with the form factor of a DSLR. It has a 20MP, 1\" MOS sensor, a 16x zoom lens, and UHD 4K video capability.The built-in DC Vario-Elmarit zoom lens has an impressive 25-400mm equivalent focal length range and Optical Image Stabilization helps minimize the appearance of camera shake, resulting in sharper imagery. Items Included With Your Purchase: Leica V-LUX (Typ 114) Digital Camera Explorer Kit ONA Bowery for Leica System Bag (Canvas, Field Tan) COOPH Leica Rope Strap (Red) Leica BP-DC12 Lithium-Ion Battery for Select V-Lux Digital Cameras (7.2V/1200 mAh) Battery Charger USB Cable Lens Cap Lens Hood Hot Shoe CoverTable Top Tripod, Lens Cleaning Kit & LCD Screen Protectors Blower Brush Lens Pen64GBMemory Card WalletUSB Card ReaderBattery", "pricing": "$1,314.95", "list_price": "", "availability_quantity": 8, "availability_status": "Only 8 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51HjLcoQVjL.jpg", "https://m.media-amazon.com/images/I/51Pv2hiPN2L.jpg", "https://m.media-amazon.com/images/I/512pkTrvEZL.jpg", "https://m.media-amazon.com/images/I/416oL7vX5xS.jpg", "https://m.media-amazon.com/images/I/41rJrE7cfoL.jpg", "https://m.media-amazon.com/images/I/31it8io49PS.jpg", "https://m.media-amazon.com/images/I/41WvwisCPeS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a Point & Shoot Digital Cameras", "average_rating": "", "small_description": ["20MP 1\" MOS Sensor. ", "DC Vario-Elmarit Lens (25-400mm Equiv.). ", "2.36m-Dot OLED Electronic Viewfinder. ", "3.0\" 920k-Dot Swivel LCD Monitor. ", "Ready to join you on your next adventure is the V-LUX (Typ 114) Digital Camera Explorer Kit from Leica which features the versatile, long-zoom V-LUX camera along with a red COOPH Leica Rope Strap and an ONA Bowery for Leica canvas camera bag. "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eLEIVLUXTYP114EXPKIT", "customization_options": "", "seller_id": "A3DIJJ471X08L1", "seller_name": "Electronics Basket", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07ZDJZJFD", "category": "electronics", "query": "Digital Cameras", "page": 178, "small_description_old": "About this item 20MP 1\" MOS Sensor. DC Vario-Elmarit Lens (25-400mm Equiv.). 2.36m-Dot OLED Electronic Viewfinder. 3.0\" 920k-Dot Swivel LCD Monitor. Ready to join you on your next adventure is the V-LUX (Typ 114) Digital Camera Explorer Kit from Leica which features the versatile, long-zoom V-LUX camera along with a red COOPH Leica Rope Strap and an ONA Bowery for Leica canvas camera bag. \n \u203a See more product details"}, {"name": "Fujifilm T-160 VHS Videocassette", "product_information": {"Manufacturer": "\u200eFuji Photo Film Co. Ltd", "Brand": "\u200eFujifilm", "Package Dimensions": "\u200e8 x 4 x 1 inches", "Item model number": "\u200e600002347", "Is Discontinued By Manufacturer": "\u200eNo", "Manufacturer Part Number": "\u200e600002347", "ASIN": "B004EEG95I", "Best Sellers Rank": ["#341 in Camera & Photo VHS Blank Media #4,259 in Blank Media Products"], "Date First Available": "March 13, 2011"}, "brand": "Visit the Fujifilm Store", "brand_url": "https://www.amazon.com/stores/FUJIFILM/page/2528B9A9-8D24-443E-9D1B-EAFFFDE3CC60?ref_=ast_bln", "full_description": "VHS", "pricing": "$17.69", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41yrYhc2E1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Blank Video Media \u203a VHS", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "model": "\u200e600002347", "customization_options": "", "seller_id": "A1CWR5CPF5J747", "seller_name": "book-exchange", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B004EEG95I", "category": "electronics", "query": "VCRs", "page": 301, "small_description_old": ""}, {"name": "Tattoo Ink Cup Holder Tattoo Ink Cup Holder Stainless Steel Tattoo For Tattoo Machine Supply With 21 Holes Tattoo Piercing Tattoo Supplies Machine Supply", "product_information": {"Manufacturer\n \u200f": "\u200e\n Burappoi", "ASIN\n \u200f": "\u200e\n B09MM1S15K", "": ""}, "brand": "Visit the Sonew Store", "brand_url": "https://www.amazon.com/stores/Sonew/page/A0672D9F-6012-4B78-BCA7-C03E02BA40D1?ref_=ast_bln", "full_description": "Specification: Condition: 100% Brand New Item Type: Tattoo Ink Cup Holder Material: Stainless Steel Size: Approx.13x6cm/5.1x2.4in Function: Hold Pigment Cup Package List: 1 xTattoo Ink Cup Rack", "pricing": "$6.69", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/319Omm306LL.jpg", "https://m.media-amazon.com/images/I/31PfB0PkOlL.jpg", "https://m.media-amazon.com/images/I/41Vu5ySD7ML.jpg", "https://m.media-amazon.com/images/I/41OFAdO4C2L.jpg", "https://m.media-amazon.com/images/I/41VUAA4ppIL.jpg", "https://m.media-amazon.com/images/I/31OKwsFlCrL.jpg", "https://m.media-amazon.com/images/I/31vPL3r-jYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Piercing & Tattoo Supplies \u203a Tattoo Supplies \u203a Tattoo Inks", "average_rating": "", "small_description": ["Tattoo Cup Holder Stainless Steel Material: The Tattoo Paint Cup Holder Is Made Of Stainless Steel, High-Grade Quality, Sturdy And Durable, And Has A Long Service Life. The Bracket Is Sturdy And Stable, Which Can Prevent Accidental Damage During Operation. ", "Tattoo Ink Cup Trapezoidal Design: The Trapezoidal Rack Design Of The Tattoo Ink Cup Holder Makes The Cup Holder More Stable, Can Place The Ink Cups Well, And Can Also Be Better Classified. ", "Rack Tattoo Pigment Hole Shape Design: The Size Of The Tattoo Paint Pen Cap Holder Hole Size Is The Same As The General Market Size. It Can Be Applied To Small/Medium/Large Ink Caps To Fix The Tattoo Paint Cup And Effectively Prevent Accidental Overflow Of Tattoo Ink. ", "Cup Holder Stainless Large Capacity: The Tattoo Paint Cup Holder Has 6 Large Holes, 7 Middle Holes And 8 Small Holes, Which Can Hold 21 Tattoo Ink Or Paint Bottle Caps To Meet The Different Needs Of Tattoo Artists. ", "Steel Shelf Stand Wide Range Of Applications: The Tattoo Cup Holder Is Suitable For Storing Tattoo Pigments Or Inks. The Tattoo Ink Cup Holder Is A Necessary And Very Useful Tool For Tattoos Or Makeup, Suitable For Professional And Household Purposes. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1RSFLUUC6GGV9", "seller_name": "Burappoi dy", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MM1S15K", "category": "beauty", "query": "Piercing & Tattoo Supplies", "page": 34, "small_description_old": "Tattoo Cup Holder Stainless Steel Material: The Tattoo Paint Cup Holder Is Made Of Stainless Steel, High-Grade Quality, Sturdy And Durable, And Has A Long Service Life. The Bracket Is Sturdy And Stable, Which Can Prevent Accidental Damage During Operation. Tattoo Ink Cup Trapezoidal Design: The Trapezoidal Rack Design Of The Tattoo Ink Cup Holder Makes The Cup Holder More Stable, Can Place The Ink Cups Well, And Can Also Be Better Classified. Rack Tattoo Pigment Hole Shape Design: The Size Of The Tattoo Paint Pen Cap Holder Hole Size Is The Same As The General Market Size. It Can Be Applied To Small/Medium/Large Ink Caps To Fix The Tattoo Paint Cup And Effectively Prevent Accidental Overflow Of Tattoo Ink. Cup Holder Stainless Large Capacity: The Tattoo Paint Cup Holder Has 6 Large Holes, 7 Middle Holes And 8 Small Holes, Which Can Hold 21 Tattoo Ink Or Paint Bottle Caps To Meet The Different Needs Of Tattoo Artists. Steel Shelf Stand Wide Range Of Applications: The Tattoo Cup Holder Is Suitable For Storing Tattoo Pigments Or Inks. The Tattoo Ink Cup Holder Is A Necessary And Very Useful Tool For Tattoos Or Makeup, Suitable For Professional And Household Purposes."}, {"name": "Elecsung Smart Mirror TV for Bathroom IP66 Waterproof Android System with Integrated HDTV(ATSC) Tuner and Built-in Wi-Fi&Bluetooth (27 inch Mirror)", "product_information": {"Brand Name": "\u200eElecsung", "Item Weight": "\u200e19 pounds", "Package Dimensions": "\u200e27.6 x 19.6 x 5.2 inches", "Item model number": "\u200eM27", "Color Name": "\u200eMirror", "Special Features": "\u200eSmart", "Speaker Type": "\u200eBuilt-In", "ASIN": "B09J4RS3V1", "Customer Reviews": {"ratings_count": 7, "stars": "3.8 out of 5 stars"}, "Best Sellers Rank": ["#138,755 in Electronics (See Top 100 in Electronics) #1,104 in LED & LCD TVs"], "Date First Available": "May 20, 2021"}, "brand": "Brand: elecsung", "brand_url": "https://www.amazon.com/elecsung/b/ref=bl_dp_s_web_23542339011?ie=UTF8&node=23542339011&field-lbr_brands_browse-bin=elecsung", "full_description": "Why A waterproof television is needed? A waterproof TV that is safe to use around humid environment. The TV is typically sealed in such a way that they can be splashed, rained on, or, in some cases, submerged in water and other liquids and still function. Features: Functions:ATV/DTV/Monitor Protection Grade: IP66 Speaker: Built-in Waterproof Speaker Remote Controller: IP68 Waterproof HDMIx 2: Supported WiFi: Supported (Integrated) RAM: 1G DDR3 Nand Flash : 8GBLCD Size (Diagonal):27\" Unit Size: 612x372x48mm/24.1\"W x 14.64\"H x 1.88\"D Unit Weight:8.6KGs Package Size: 27.5\"W x 18\"H x 5\"D, 700x462x120mm Gross Weight:10.9kgs Finish: Mirror Front Panel Material: Glass Specifications: Interface: TV/USBx2/ HDMIx1/LAN / Integrated WiFi&Bluetooth/Audio Out Android System: Android 7.1 (APPS or GAMES download available ) Power Input: 12V (Adapter for 100-240V input is available as accessory) Display Type: LEDAspect Ratio: 16:9Brightness(Cd/m2): 250Resolution: 1920x1080Response Time: 3.6msViewing Angle (H/V): 178/178(H/V) Built-in Speakers: 2pcsStandby Power: under 1WPower Consumption: 48WWorking Environment: -30 to 50 degreeWorking Humidity: 10%-90%Install:Recess Dimensions for in-wall 438.4W x 276.2H x 30D (W17.2\u201dxH10.9\u201dxD1.2\u201d), or Wall Bracket Dimensions for on-wall 27\"(VESA100x100mm) Package Include: Television+Accessories: Waterproof Controller(Without batteries)/Manual/ 100-240V Adapter/Power Cord/Wall Bracket/Embedded Back/Install tool.", "pricing": "$689.00", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock - order soon. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41UiSKU2aHL.jpg", "https://m.media-amazon.com/images/I/41M2OhdZgaL.jpg", "https://m.media-amazon.com/images/I/51j8Mg3h-rL.jpg", "https://m.media-amazon.com/images/I/41UaBAJSm8L.jpg", "https://m.media-amazon.com/images/I/41EiswxUohL.jpg", "https://m.media-amazon.com/images/I/41c4XKN0+lL.jpg", "https://m.media-amazon.com/images/I/51+JysQ6euS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Televisions \u203a LED & LCD TVs", "average_rating": 3.8, "small_description": ["\u27a4MAGIC MIRROR TV-Mirror is always Up-to-Date, it presents TV programs when turned on and a mirror when turned off. The TV is IP66 waterproof and it is luxury installed in bathroom, hotel and kitchens. ", "\u27a4SMART FULL HD LED TV-Smart digital TV with Android 7.1 system, have access to channels without TV box. No Aerial Required! FULL HD ready TV, 16:9 screen, resolution:1920x1080, provides high quality and vivid pictures. For more specification, please refer to below product description. ", "\u27a4INTERFACE-TV/HDMI x 1/USB x 2/Audio Out Port/ LAN/Integrated Wi-Fi&Bluetooth. With Google Chromecast and Google Chrome, YouTube, NetFlix Download already. TV works on 12 Volt DC and mains 240-adaptors included. ", "\u27a4DIMENSION&INSTALLATION-Unit Size(WxHxD): 614x375x51mm/24.2\"W x 14.76\"H x 2\"D. Recess Dimensions for In-wall(mm): 575W x 276H x 30D (W22.63\u201dxH10.9\u201dxD1.2\u201d). Embedded bracket for in-wall and wall bracket for on-wall are included(provide installation instruction). ", "SHIPPING: Fullfilled by Amazon, 3 month Money back guarantee.Please contact us if need any assistance, all received message will be replied within 24 hours. All our TVs come with 1 year warranty. "], "total_reviews": 7, "total_answered_questions": 12, "model": "\u200eM27", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08S72RNJB/ref=twister_B09NPMCKDW?_encoding=UTF8&psc=1", "value": "22 inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09P343Q9J/ref=twister_B09NPMCKDW?_encoding=UTF8&psc=1", "value": "22 inch(without Bluetooth)", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "27 inch", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KRS2R4P/ref=twister_B09NPMCKDW?_encoding=UTF8&psc=1", "value": "32 inch", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PH8RDPR/ref=twister_B09NPMCKDW?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31bBnQLsXBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PH8MKXP/ref=twister_B09NPMCKDW?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gvtZTqAyL.jpg"}, {"is_selected": true, "url": null, "value": "Mirror", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21iQlYhiqVL.jpg"}]}, "seller_id": "A3VW456QORZP65", "seller_name": "Elecsung", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": "", "asin": "B09J4RS3V1", "category": "electronics", "query": "Televisions", "page": 6, "small_description_old": "About this item \u27a4MAGIC MIRROR TV-Mirror is always Up-to-Date, it presents TV programs when turned on and a mirror when turned off. The TV is IP66 waterproof and it is luxury installed in bathroom, hotel and kitchens. \u27a4SMART FULL HD LED TV-Smart digital TV with Android 7.1 system, have access to channels without TV box. No Aerial Required! FULL HD ready TV, 16:9 screen, resolution:1920x1080, provides high quality and vivid pictures. For more specification, please refer to below product description. \u27a4INTERFACE-TV/HDMI x 1/USB x 2/Audio Out Port/ LAN/Integrated Wi-Fi&Bluetooth. With Google Chromecast and Google Chrome, YouTube, NetFlix Download already. TV works on 12 Volt DC and mains 240-adaptors included. \u27a4DIMENSION&INSTALLATION-Unit Size(WxHxD): 612x372x48mm/24.1\"W x 14.64\"H x 1.88\"D. Recess Dimensions for In-wall(mm): 438.4W x 276.2H x 30D (W17.2\u201dxH10.9\u201dxD1.2\u201d). Embedded bracket for in-wall and wall bracket for on-wall are included(provide installation instruction). SHIPPING: Fullfilled by Amazon, 3 month Money back guarantee.Please contact us if need any assistance, all received message will be replied within 24 hours. All our TVs come with 1 year warranty. \n \u203a See more product details"}, {"name": "Small Stainless Steel Cosmetic Makeup Palette Spatula Rectangle Shape Foundation Mixing Plate Tool", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 4.72 x 2.76 x 0.12 inches; 1.41 Ounces", "UPC\n \u200f": "\u200e\n 741870117466", "Manufacturer\n \u200f": "\u200e\n Sonew", "ASIN\n \u200f": "\u200e\n B07CXTNVRJ", "Best Sellers Rank": "#380,530 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#957 in Makeup Palettes", "#957 in Makeup Palettes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Sonew Store", "brand_url": "https://www.amazon.com/stores/Sonew/page/A0672D9F-6012-4B78-BCA7-C03E02BA40D1?ref_=ast_bln", "full_description": "Description: This product is high quality Stainless Steel Makeup Palette Spatula. The palette has modern artistic temperament, smooth texture, which makes it practical and beautiful. Suitable for mixing foundation, lip colors, pigments, etc, and help you create your own beauty and fashion. Perfect for home and professional use. It is a small gift for your friends or yourself.\u00a0 So, what are you waiting for? You are worth it. Features: 1. Made of high quality stainless steel and durable enough for your daily use. 2. The palette has modern artistic temperament, smooth texture, which makes it practical and beautiful. 3. Suitable for mixing foundation, lip colors, pigments, etc, and help you create your own beauty and fashion. 4. Perfect for home and professional use. 5. It is a small gift for your friends or yourself. Specification: Material: Stainless Steel Palette Shape: Rectangle Color: As Pictures Show Package Weight: 83g Size of the Palette: approx. 11.5 * 7.5cm / 4.5 * 3.0inch Length of Spatula: approx. 11.7cm / 4.6inch Function: Mixing foundation, lip colors, pigments, etc Package Included: 1 x Palette ; 1 x Spatula Notes: 1. Please allow 1-3cm error due to manual measurement. Thanks for your understanding. 2. Monitors are not calibrated same, item color displayed in photos may be showing slightly different from the real object. Please take the real one as standard.", "pricing": "$11.49", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/21thyKlDpqL.jpg", "https://m.media-amazon.com/images/I/41NkkulyrWL.jpg", "https://m.media-amazon.com/images/I/41ImZkEUquL.jpg", "https://m.media-amazon.com/images/I/31b3gHDAfbL.jpg", "https://m.media-amazon.com/images/I/21dWyLBbR8L.jpg", "https://m.media-amazon.com/images/I/316HiabeBjL.jpg", "https://m.media-amazon.com/images/I/41ymmfi6FnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Makeup Palettes", "average_rating": 4.6, "small_description": ["The palette has modern artistic temperament, smooth texture, which makes it practical and beautiful. ", "Suitable for mixing foundation, lip colors, pigments, etc, and help you create your own beauty and fashion. ", "Use the Spatula to mix the cosmetic and makeup.It is smooth and professional texture, easy to clean with just water or with a little detergent as you like. ", "Perfect for home and professional use. ", "Perfect after-sales service and pre-consult. We will try our best to solve your problem. "], "total_reviews": 56, "total_answered_questions": "", "customization_options": "", "seller_id": "AA5A30IAB960V", "seller_name": "Vertigo us", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07CXTNVRJ", "category": "beauty", "query": "Makeup Palettes", "page": 45, "small_description_old": "The palette has modern artistic temperament, smooth texture, which makes it practical and beautiful. Suitable for mixing foundation, lip colors, pigments, etc, and help you create your own beauty and fashion. Use the Spatula to mix the cosmetic and makeup.It is smooth and professional texture, easy to clean with just water or with a little detergent as you like. Perfect for home and professional use. Perfect after-sales service and pre-consult. We will try our best to solve your problem."}, {"name": "ShiSyan Statue Sculpture Figurine Statuette,Republic Of China Style Small Blue And White Porcelain Beauty Cheongsam Ornament Sculpture Vase Home Wine Cabinet Living Room Study Display Tv Cabinet Craft", "product_information": {"Item Weight": "0.035 ounces", "Manufacturer": "ShiSyan", "ASIN": "B08MB4NQGQ"}, "brand": "Brand: ShiSyan", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ShiSyan", "full_description": "It is a fantastic and very detailed, ornament Suitable for home interior Decoration sculptureWe have commodity security services. If the product you received has quality problems, please feel free to contact us, we can provide you with a return service.", "pricing": "$229.37", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41oHRouvaJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Home D\u00e9cor Accents \u203a Sculptures \u203a Statues", "average_rating": "", "small_description": ["Material: Ceramic ", "Size: 40cm in height ", "This statue is perfect fo Collection sculpture thusiast It is a beautiful addition to your space. ", "A great gift idea for anyone who like Collecting people this beautiful sculpture, too Perfect for your home , office , restaurant\uff0ccabinet ,kitchen, Decoration statue Sculpture. ", "We have commodity security services. If the product you received has quality problems, please feel free to contact us, we can provide you with a return service. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2G7TWNE0N99WU", "seller_name": "SHIXIANGNG", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08MB4NQGQ", "category": "garden", "query": "China Cabinets", "page": 118, "small_description_old": "Material: Ceramic Size: 40cm in height This statue is perfect fo Collection sculpture thusiast It is a beautiful addition to your space. A great gift idea for anyone who like Collecting people this beautiful sculpture, too Perfect for your home , office , restaurant\uff0ccabinet ,kitchen, Decoration statue Sculpture. We have commodity security services. If the product you received has quality problems, please feel free to contact us, we can provide you with a return service."}, {"name": "Belvoir, Beverage Sparkling Elderflower Rose organic, 8.4 Fl Oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 6 x 2 x 2 inches; 1 Pounds", "ASIN\n \u200f": "\u200e\n B0121IVA5W", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Belvoir", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Belvoir", "full_description": "New Belvoir Elderflower and Rose Lemonade Presse Beverage, 8.4 Fluid Ounce -- 24 per case. \u2026", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31CRDrGsGkL.jpg", "https://m.media-amazon.com/images/I/31YsDqkw8bL.jpg", "https://m.media-amazon.com/images/I/51KG5WcWCDL.jpg", "https://m.media-amazon.com/images/I/41WRd1v4JNL.jpg", "https://m.media-amazon.com/images/I/31S+3ZQxJoL.jpg", "https://m.media-amazon.com/images/I/31cx3qH7JcL.jpg", "https://m.media-amazon.com/images/I/41mjDGFAo2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.9, "small_description": [""], "total_reviews": 13, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0121IVA5W", "category": "grocery", "query": "Alcoholic Beverages", "page": 77, "small_description_old": ""}, {"name": "Queen Size Tan Traditional Japanese Floor Futon Mattresses, Foldable Cushion Mats, Yoga, Meditaion 60\" Wide X 80\" Long", "product_information": {"Product Dimensions": "80 x 60 x 3 inches", "Item Weight": "26 pounds", "Manufacturer": "D&D Futon Furniture", "ASIN": "B009EEVDSQ", "Country of Origin": "USA", "Item model number": "JFM-36080", "Customer Reviews": {"ratings_count": 89, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#1,164,348 in Home & Kitchen (See Top 100 in Home & Kitchen) #208 in Futon Mattresses"], "Is Discontinued By Manufacturer": "No", "Date First Available": "December 6, 2013"}, "brand": "Brand: D&D Futon Furniture", "brand_url": "https://www.amazon.com/D-D-Futon-Furniture/b/ref=bl_dp_s_web_18746422011?ie=UTF8&node=18746422011&field-lbr_brands_browse-bin=D%26D+Futon+Furniture", "full_description": "This traditional Japanese futon mattress is made of cotton batting and able to be rolled up to keep in closet and rolled out right on the floor to sleep on. This makes for an efficient use of living space and storage, easily to move. This 3\" thickness futon mat is an ideal to sleep on floor. Moreover, it can be used in multi purposes such as for picnics, visitors, children playing games, taking a rest, massage, yoga, exercise .... You can use this Japanese futon mattress in any efficient places, such as guest room, living room, exercise room, patio, studio, dormitory, mobile house, massage studios and also bring it with you in your car when going to anywhere.", "pricing": "$149.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/411nRcojq1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Futons \u203a Futon Mattresses", "average_rating": 4.4, "small_description": ["Brand new floor futon mattress, made in USA. ", "Queen Size Bed sized 3\" thick x 60\" wide x 80\" long. ", "Mattress filled with white cotton, comforting fiber and resilient foam. ", "Cover material is made of 100% polyester. "], "total_reviews": 89, "total_answered_questions": "", "model": "JFM-36080", "customization_options": "", "seller_id": "A16KD7O2BZGIZO", "seller_name": "D&D Futon Furniture", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B009EEVDSQ", "category": "garden", "query": "Mattresses", "page": 124, "small_description_old": "About this item\n \nBrand new floor futon mattress, made in USA. Queen Size Bed sized 3\" thick x 60\" wide x 80\" long. Mattress filled with white cotton, comforting fiber and resilient foam. Cover material is made of 100% polyester."}, {"name": "Spring Coil 1 Mattress, Queen", "product_information": {"Item Weight": "\u200e70 pounds", "Product Dimensions": "\u200e79 x 59 x 20 inches", "Country of Origin": "\u200eUSA", "Item model number": "\u200e90000-5/0-2", "Is Discontinued By Manufacturer": "\u200eNo", "ASIN": "B01A0L5FXA", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#3,964,464 in Home & Kitchen (See Top 100 in Home & Kitchen) #2,919 in Mattresses"], "Date First Available": "December 30, 2015"}, "brand": "Brand: Spring Coil", "brand_url": "https://www.amazon.com/Spring-Coil/b/ref=bl_dp_s_web_12678197011?ie=UTF8&node=12678197011&field-lbr_brands_browse-bin=Spring+Coil", "full_description": "Spring coil is a proud manufacturer of the finest quality mattresses and box springs, with the highest standards in durability, quality, comfort and beauty. All of our products are made in the USA to ensure that you get only the best! this item is part of our foam encased collection. This mattress is uniquely designed to give you the kind of undisturbed sleep nature intended. 396 innerspring vertical unit, with 13 3/4 SH gauge unit. Foam encased with edges supported with high density foam.208 Pad.3-Inch High density firm foam on each side. 4-Inch one side euro pillow top attached. 3-Inch high density firm foam in pillow. Heavy damask fabric-class b. Quilted with 3x3/8-inch Polly foam and 1x.5 Whisper shield blue on the top. Tack and jump quilt. Non skid filler cloth heavy duty. Available in all sizes. Height 13-inch. Wood foundation 8-inch high. Continental box. Meets federal standards 1632 and 1633 fire code. Orthopedic type.", "pricing": "$565.71", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/514EN+9E+IL.jpg", "https://m.media-amazon.com/images/I/51W2S7LkdaL.jpg", "https://m.media-amazon.com/images/I/41uVZh3S5aL.jpg", "https://m.media-amazon.com/images/I/41e6CmR7TsL.jpg", "https://m.media-amazon.com/images/I/51uu84aQOTL.jpg", "https://m.media-amazon.com/images/I/41NHpdFGe6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Mattresses & Box Springs \u203a Mattresses", "average_rating": 5, "small_description": ["Orthopedic type mattress ", "Fully Assembled; mattress & box spring are ready to use ", "Firm pillow top mattress ", "418 innerspring verticoil unit for pressure point relief to reduce tossing & turning ", "Foam encased with edges supported with high density foam ", "Euro top for enhanced comfort ", "Strong & sturdy box spring "], "total_reviews": 1, "total_answered_questions": "", "model": "\u200e90000-5/0-2", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01A0L5G2U/ref=twister_B01IC2VLAU?_encoding=UTF8&psc=1", "value": "Twin", "price_string": "$407.48", "price": 407.48, "image": null}, {"is_selected": true, "url": null, "value": "Queen", "price_string": "$565.71", "price": 565.71, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01A0L5GAC/ref=twister_B01IC2VLAU?_encoding=UTF8&psc=1", "value": "King", "price_string": "$845.47", "price": 845.47, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01A0L5FXA", "category": "garden", "query": "Mattresses", "page": 190, "small_description_old": "About this item Orthopedic type mattress Fully Assembled; mattress & box spring are ready to use Firm pillow top mattress 418 innerspring verticoil unit for pressure point relief to reduce tossing & turning Foam encased with edges supported with high density foam Euro top for enhanced comfort Strong & sturdy box spring \n \u203a See more product details"}, {"name": "Noverlife Pure White Makeup Cape, Short Comb-Out Beard Shaving Smock, Beauty Salon Styling Bib for Client, Barber Shop Shampoo Cloth Makeover Shawl for Cosmetics Artist Beautician Hairdresser", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.9 x 6.77 x 0.63 inches; 2.12 Ounces", "Manufacturer\n \u200f": "\u200e\n Noverlife", "ASIN\n \u200f": "\u200e\n B08DQWNJPQ", "Best Sellers Rank": "#74,416 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#139 in Hair Cutting Kits", "#139 in Hair Cutting Kits": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Noverlife", "brand_url": "https://www.amazon.com/Noverlife/b/ref=bl_dp_s_web_19645971011?ie=UTF8&node=19645971011&field-lbr_brands_browse-bin=Noverlife", "full_description": "", "pricing": "$7.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/419oOyA5bzL.jpg", "https://m.media-amazon.com/images/I/412cN8C3DmL.jpg", "https://m.media-amazon.com/images/I/41zc6wjDBNL.jpg", "https://m.media-amazon.com/images/I/51UE78OXl7L.jpg", "https://m.media-amazon.com/images/I/51WmJ7BlDRL.jpg", "https://m.media-amazon.com/images/I/51DREQ6TsAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Cutting Tools \u203a Hair Cutting Kits", "average_rating": 4.7, "small_description": ["\u3010COMFORTABLE FABRIC\u3011-- Made from premium polyester, super lightweight to wear on, great for doing makeup on clients to catch any fallout and smudges. (NOTE: this cape is not water resistant.) ", "\u3010ADJUSTABLE NECKBAND\u3011-- Its one size fits all, and easy to custom fit with snap fasteners closure in the back. Measuring 67cm wide x 80cm long (26.5 x 31.5\"). ", "\u3010HANDY & CONVENIENT\u3011-- Mid length, falls just above the waistline, it's perfect for quick or light duty makeup applications and touch-ups, hair comb outs and styling, hair spray, or any other beauty tasks and allows for adequate coverage and protection. ", "\u3010WIDE USAGE\u3011-- Great for beautician, estheticians, makeup artists, hair and wardrobe stylists in makeup departments, hair styling stations, retail counters/salons, studio, performance or home use. ", "\u3010BENEFITS\u3011-- Draping your client in white will allow fuller light reflection into the face so that you can see the skin tonalities more clearly. This is especially important for novice makeup students/artists who are still learning to match skin tones in makeup. "], "total_reviews": 207, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08HMJ37Q7/ref=twister_B09NZJ5GT1?_encoding=UTF8&psc=1", "value": "Artsy (Snap Button Closure)", "price_string": "$6.99", "price": 6.99, "image": "https://m.media-amazon.com/images/I/51z9fZumDcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08DR1P9ZS/ref=twister_B09NZJ5GT1?_encoding=UTF8&psc=1", "value": "Black (Snap Button Closure)", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/31lyfJfiTfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08CDJ97D6/ref=twister_B09NZJ5GT1?_encoding=UTF8&psc=1", "value": "Blue Bohemian (Snap Button Closure)", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/51KdIvbVhdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08CDQ51LC/ref=twister_B09NZJ5GT1?_encoding=UTF8&psc=1", "value": "Hot Pink (Hook & Loop Closure)", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/41IIajYVs6L.jpg"}, {"is_selected": true, "url": null, "value": "White (Snap Button Closure)", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/419oOyA5bzL.jpg"}]}, "seller_id": "A3A5Q4GVX0DSZX", "seller_name": "Noverlife", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08DQWNJPQ", "category": "beauty", "query": "Hair Cutting Tools", "page": 24, "small_description_old": "\u3010COMFORTABLE FABRIC\u3011-- Made from premium polyester, super lightweight to wear on, great for doing makeup on clients to catch any fallout and smudges. (NOTE: this cape is not water resistant.) \u3010ADJUSTABLE NECKBAND\u3011-- Its one size fits all, and easy to custom fit with snap fasteners closure in the back. Measuring 67cm wide x 80cm long (26.5 x 31.5\"). \u3010HANDY & CONVENIENT\u3011-- Mid length, falls just above the waistline, it's perfect for quick or light duty makeup applications and touch-ups, hair comb outs and styling, hair spray, or any other beauty tasks and allows for adequate coverage and protection. \u3010WIDE USAGE\u3011-- Great for beautician, estheticians, makeup artists, hair and wardrobe stylists in makeup departments, hair styling stations, retail counters/salons, studio, performance or home use. \u3010BENEFITS\u3011-- Draping your client in white will allow fuller light reflection into the face so that you can see the skin tonalities more clearly. This is especially important for novice makeup students/artists who are still learning to match skin tones in makeup."}, {"name": "Warmter 32.5 Inch Large Elegant Bird of Paradise Artificial Flower for Home Office 3 Pcs (Yellow)", "product_information": {"Package Dimensions": "15.59 x 11.18 x 1.73 inches", "Item Weight": "11.3 ounces", "Manufacturer": "Warmter", "ASIN": "B07GLPCY1C", "Customer Reviews": {"ratings_count": 328, "stars": "4.1 out of 5 stars"}, "Best Sellers Rank": ["#153,329 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,729 in Artificial Flowers"], "Is Discontinued By Manufacturer": "No", "Specific Uses For Product": "Hotel Decor, Home Decor, Office Decor", "Batteries Required?": "No"}, "brand": "Brand: Warmter", "brand_url": "https://www.amazon.com/Warmter/b/ref=bl_dp_s_web_20793035011?ie=UTF8&node=20793035011&field-lbr_brands_browse-bin=Warmter", "full_description": "The bird of paradise have a flame like appearance,very tall and elegant, vibrantly real colors,giving hope and peace.Can be used in home, hotels,office,cafe,wedding,baby bathing.", "pricing": "$22.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51nj-iuUI0L.jpg", "https://m.media-amazon.com/images/I/41+NqVDZU8L.jpg", "https://m.media-amazon.com/images/I/61dYSjMG0hL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Artificial Plants & Flowers \u203a Artificial Flowers", "average_rating": 4.1, "small_description": ["The bird of paradise have a flame like appearance,very tall and elegant, vibrantly real colors,giving hope and peace. ", "32.5 inch large size,great colors and design.whether as a separate job or placing them in a large tropical arrangement of palm leaves, it is a good choice. ", "Material: plastic iron wire, the flower part is made of high quality plastic, and the branch part is made of plastic and iron wire,The iron wire is wrapped in the plastic to make it easy to bend or shape, which makes you satisfied. ", "Can be used in home, hotels,office,cafe,wedding,baby bathing.The bird of paradise have a flame like appearance,very tall and elegant, vibrantly real colors,giving hope and peace. ", "Approx height 32.5\",you will receive 3 items per pack. "], "total_reviews": 328, "total_answered_questions": "", "customization_options": "", "seller_id": "ALS54933CBK8Q", "seller_name": "Warmter", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07GLPCY1C", "category": "garden", "query": "Artificial Plants", "page": 48, "small_description_old": "About this item\n \nThe bird of paradise have a flame like appearance,very tall and elegant, vibrantly real colors,giving hope and peace. 32.5 inch large size,great colors and design.whether as a separate job or placing them in a large tropical arrangement of palm leaves, it is a good choice. Material: plastic iron wire, the flower part is made of high quality plastic, and the branch part is made of plastic and iron wire,The iron wire is wrapped in the plastic to make it easy to bend or shape, which makes you satisfied. Can be used in home, hotels,office,cafe,wedding,baby bathing.The bird of paradise have a flame like appearance,very tall and elegant, vibrantly real colors,giving hope and peace. Approx height 32.5\",you will receive 3 items per pack."}, {"name": "Kids Wireless Headphones, Adjustable Headband, Stereo Sound, 3.5mm Jack, Kids Bluetooth Headphones, Volume Control, Foldable, Build-in Microphone, Over-Ear Headphones for Kids for School Home, Travel", "product_information": {"Product Dimensions": "5.5 x 3.4 x 2.17 inches", "Item Weight": "9.9 ounces", "ASIN": "B09KQNH5C6", "Customer Reviews": {"ratings_count": 2, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#2,510 in Over-Ear Headphones"], "Date First Available": "January 1, 2022", "Manufacturer": "NVRADCHUA", "Country of Origin": "China"}, "brand": "Brand: NVRADCHUA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=NVRADCHUA", "full_description": "", "pricing": "$14.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41B+OC0qnOL.jpg", "https://m.media-amazon.com/images/I/51-CeHdjipL.jpg", "https://m.media-amazon.com/images/I/51emhfCzRCL.jpg", "https://m.media-amazon.com/images/I/41L6wMlQnnL.jpg", "https://m.media-amazon.com/images/I/412lJElSIKL.jpg", "https://m.media-amazon.com/images/I/41PW6vE51FL.jpg", "https://m.media-amazon.com/images/I/41DYJYHl7cL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Headphones \u203a Over-Ear Headphones", "average_rating": 4, "small_description": ["\u3010WIRELESS & WIRED KIDS HEADPHONES\u3011 Stunning kid headphones, built with the latest high quality 5.0 Bluetooth chip, which allows kids wireless headphones to connect fast and stable, also with 3.5mm jack to connect any device. You can use them as wireless headphones and wired headphones, compatible with smartphones, laptops, tablets, computers, TVs and many other Bluetooth-enabled devices, making it possible to provide you with great music anywhere in the occasion. ", "\u3010Cute cat headphones\u3011It is designed with cute cartoon pattern, you can use it in any venue. Our over-ear headphones provide you with easy to control high quality sound, comfortable and soft ear cushions can protect your child's ears well, it is a beautiful birthday or Christmas gift for girls, children, teenagers, adult women. ", "\u3010Excellent sound quality and adjustable headband\u3011 This baby headphones is designed for children, no need to worry about the damage caused by rough handling. Stretchable, foldable design is convenient for travel and storage. Clear stereo sound quality provides you with the best listening enjoyment, full sound, supports connection to Bluetooth, 3.5mm headphone jack, SD card, connect and enjoy all the favorite content for boys and girls. ", "\u3010Long battery life and built-in microphone\u3011Our toddler headphones have a battery capacity of up to 400mAh and last up to 7 hours, so even when the battery runs out, you can still use it through the audio hole. Built-in microphone for taking calls, video chats, or online lessons. Perfect for: kids headphones for school, outdoor headphones for boys and girls ", "\u3010100% satisfaction after-sales service\u3011 Our brand always puts customers first, if you have any problems with your headphones, please feel free to contact us through seller support, we will provide you with attentive customer service within 24 hours. "], "total_reviews": 2, "total_answered_questions": 5, "customization_options": "", "seller_id": "A2AYFQ8VIZ6PZH", "seller_name": "Manyutech", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09KQNH5C6", "category": "electronics", "query": "Headphones", "page": 55, "small_description_old": "About this item\n \n\u3010WIRELESS & WIRED KIDS HEADPHONES\u3011 Stunning kid headphones, built with the latest high quality 5.0 Bluetooth chip, which allows kids wireless headphones to connect fast and stable, also with 3.5mm jack to connect any device. You can use them as wireless headphones and wired headphones, compatible with smartphones, laptops, tablets, computers, TVs and many other Bluetooth-enabled devices, making it possible to provide you with great music anywhere in the occasion. \u3010Cute cat headphones\u3011It is designed with cute cartoon pattern, you can use it in any venue. Our over-ear headphones provide you with easy to control high quality sound, comfortable and soft ear cushions can protect your child's ears well, it is a beautiful birthday or Christmas gift for girls, children, teenagers, adult women. \u3010Excellent sound quality and adjustable headband\u3011 This baby headphones is designed for children, no need to worry about the damage caused by rough handling. Stretchable, foldable design is convenient for travel and storage. Clear stereo sound quality provides you with the best listening enjoyment, full sound, supports connection to Bluetooth, 3.5mm headphone jack, SD card, connect and enjoy all the favorite content for boys and girls. \u3010Long battery life and built-in microphone\u3011Our toddler headphones have a battery capacity of up to 400mAh and last up to 7 hours, so even when the battery runs out, you can still use it through the audio hole. Built-in microphone for taking calls, video chats, or online lessons. Perfect for: kids headphones for school, outdoor headphones for boys and girls \u3010100% satisfaction after-sales service\u3011 Our brand always puts customers first, if you have any problems with your headphones, please feel free to contact us through seller support, we will provide you with attentive customer service within 24 hours."}, {"name": "JSPOYOU 2022 Newly T-Shirt for Mens Funny 3D Graphics Pattern Crewneck Short Sleeve Tees Big and Tall Summer Casual Comfy Top", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 11, 2022", "Manufacturer\n \u200f": "\u200e\n JSPOYOU-2021-Mens", "ASIN\n \u200f": "\u200e\n B09Q67CNXP", "": ""}, "brand": "Brand: JSPOYOU", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=JSPOYOU", "full_description": "\u2764\u2764\u3010Product Information\u3011\u2764\u2764 Gender: Men Material: Polyester, Fleece,Faux Leather Pattern Type: Printed Style: Casual Fashion,Athletics Fit Type: Standard Closure Type: Elastic What you get: 1 PC Man T-shirt tops \u2764\u2764\u3010Note\u3011\u2764\u2764 Size chart carefully before order. Please allow 1-3cm differs due to manual measurement, thanks (1 cm=0.39 inch,1 inch=2.54 cm) Due to possible physical differences between different monitors, the product photography is illustrative only and may not precisely reflect the actual color of the item received. \u2764\u2764\u3010Service\u3011\u2764\u2764 If you have any problem about our items, please send message to us, we will try to our best service to resolve your issues. \u3010Purchase Guarantee\u3011 please rest assured to buy afterwards! after receiving the order, if you have any questions, please feel free to send us an email, thank you for choosing our products, the quality is guaranteed. \u3010Our Shop\u3011standard shipping:7-10 days;expedited shipping:3-5 days. \u3010Search Term\u3011men suits slim fit men suits slim fit plaid men suits slim fit prom men suits regular fit men suits for wedding men suits for wedding regular fit men suits for wedding white men suits for wedding fushia men suits for wedding on the beach men suits big and tall men suits big and tall long men suits \u3010Search Term\u3011men's pants casual men's pants casual jeans casual elastic waist men's pants casual relaxed fit men's pants casual stretch relax men's pants casual big and tall men's pants casual cool breathable men's pants casual cargo men's pants casual works pants men's pants jeans men's pants jeans men's pants jeans relaxed fit men's pants jeans big and tall men's pants jeans tee t shirt tee shirts", "pricing": "$1.99$8.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51XsoZdj1GL.jpg", "https://m.media-amazon.com/images/I/51aI7mkropL.jpg", "https://m.media-amazon.com/images/I/519JOsrT8WL.jpg", "https://m.media-amazon.com/images/I/51jvFgeSglL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a T-Shirts", "average_rating": "", "small_description": ["\u2192Note: Mens short/long sleeve shirt is Asian size,size runs small ,please refer to our size chart before purchase(NOT AMAZON SIZE) and choose 1-2 size up. ", "\u2192Fabric: High quality polo shirt fabric, 60% polyester & 40% cotton, breathable and comfortable, good for sports wear product,light and elastic, not easy to wrinkle,let you feel comfortable while during sports casual activities. ", "\u2192Feature: The men's athletic shirts come with long/short sleeves and a fitted design to your body, which will show your muscle lines and exercise results in the crowd. men's muscle t-shirts are perfect for sportswear and casual wear, provide exceptional comfort during your workouts. ", "\u2192Design: Short/long sleeve button down tshirts,big and tall tees,graphic print tops.a stylish round neck t-shirt decorated with abstract paintings to create a unique feeling, casual, comfortable, and not sultry in summer. it is also suitable for autumn wearing~ closure ", "\u2192Occasions: The men's 2022 Long sleeve tee shirts,great for beach, work,Christmas,loungewear,homewear,casual look,daily, dating,school,graduation day,party,holiday,gym workout,running, training,jogging.A great gifts for boy friend,friends,and families. ", "\u3010Search Term\u3011shorts cargo denim flat front pleated men's casual elastic waist outdoor comfy workout big and tall summer beach swimming outdoors lightweight multi-pocket stretchy cotton twill camo pants male running quick dry gym with pockets stretch bikers fashion ripped short jeans training yoga joggers capri slim fit tapered sweat capris slacks mens relaxed solid color shirt ", "\u3010Search Term\u3011tee shirts shirts for men hawaiian shirts flannel shirts long sleeve t shirts for mens dress shirts henley shirt mens tee shirts tuxedo shirt denim shirt tee t shirts mens flannel shirts button up shirts golf shirts compression shirt fishing shirts button down shirt oxford shirt men's clothing near me white long sleeve shirt long sleeve tee shirts , \u3010Search Term\u3011women graphic tees shirts for men blouse t shirt custom shirt shirts t shirt design hawaiian shirts shirts & tops off the shoulder tops t shirts for men tie dye shirts flannel shirts long sleeve shirts shirts mens shirt shirts christmas shirts plus size tops womens shirts t shirts for women tunic tops for women mens long sleeve shirts mens graphic tees workout tops women's tops and blouses, \u3010Search Term\u3011shirt blouse top shirts and blouses pajama tops white t cold shoulder black tunic funny plaid ladies bikini denim henley tuxedo vintage striped friends for girls crop big sister cute long sleeve oversized collared women graphic halloween lace tee cool mesh band design your own golf hoodie hawaiian men compression button up down yellow st patrick's day baseball cheap fishing oxford casual wife one family birthday tee pride 4th of july blouse, \u3010Search Term\u3011men's premium classic button down short sleeve dress shirt mens nightclub printed dress shirts non-iron regular fit button down party men shirt mens premium casual inner contrast dress shirt mens long sleeve henley shirts casual mandarin collar loose fit summer beach solid plain cotton shirt men casual solid color loose button cotton casual spring top mens cotton vest workout tank tops henley shirt v-neck sleeveless beach yoga casual tops"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "A-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51XsoZdj1GL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q66TM1Q/ref=twister_B09Q6716KT", "value": "B-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517w-X7NvdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q66HPZY/ref=twister_B09Q6716KT", "value": "C-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51b4-5PLZhL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q67NJ8H/ref=twister_B09Q6716KT", "value": "D-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/5153Ojs-bvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q66SXS8/ref=twister_B09Q6716KT", "value": "D-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41esuV8WpqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q66TT1N/ref=twister_B09Q6716KT", "value": "D-navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yKbe8tOZL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09Q67CNXP"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09Q66PBR8"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09Q67H373"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09Q683XN5"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09Q66FFDV"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q67H373", "category": "fashion", "query": "Men's Tuxedo Shirts", "page": 179, "small_description_old": "\u2192Note: Mens short/long sleeve shirt is Asian size,size runs small ,please refer to our size chart before purchase(NOT AMAZON SIZE) and choose 1-2 size up. \u2192Fabric: High quality polo shirt fabric, 60% polyester & 40% cotton, breathable and comfortable, good for sports wear product,light and elastic, not easy to wrinkle,let you feel comfortable while during sports casual activities. \u2192Feature: The men's athletic shirts come with long/short sleeves and a fitted design to your body, which will show your muscle lines and exercise results in the crowd. men's muscle t-shirts are perfect for sportswear and casual wear, provide exceptional comfort during your workouts. \u2192Design: Short/long sleeve button down tshirts,big and tall tees,graphic print tops.a stylish round neck t-shirt decorated with abstract paintings to create a unique feeling, casual, comfortable, and not sultry in summer. it is also suitable for autumn wearing~ closure \u2192Occasions: The men's 2022 Long sleeve tee shirts,great for beach, work,Christmas,loungewear,homewear,casual look,daily, dating,school,graduation day,party,holiday,gym workout,running, training,jogging.A great gifts for boy friend,friends,and families. \u3010Search Term\u3011shorts cargo denim flat front pleated men's casual elastic waist outdoor comfy workout big and tall summer beach swimming outdoors lightweight multi-pocket stretchy cotton twill camo pants male running quick dry gym with pockets stretch bikers fashion ripped short jeans training yoga joggers capri slim fit tapered sweat capris slacks mens relaxed solid color shirt \u3010Search Term\u3011tee shirts shirts for men hawaiian shirts flannel shirts long sleeve t shirts for mens dress shirts henley shirt mens tee shirts tuxedo shirt denim shirt tee t shirts mens flannel shirts button up shirts golf shirts compression shirt fishing shirts button down shirt oxford shirt men's clothing near me white long sleeve shirt long sleeve tee shirts \n \u3010Search Term\u3011women graphic tees shirts for men blouse t shirt custom shirt shirts t shirt design hawaiian shirts shirts & tops off the shoulder tops t shirts for men tie dye shirts flannel shirts long sleeve shirts shirts mens shirt shirts christmas shirts plus size tops womens shirts t shirts for women tunic tops for women mens long sleeve shirts mens graphic tees workout tops women's tops and blouses\u3010Search Term\u3011shirt blouse top shirts and blouses pajama tops white t cold shoulder black tunic funny plaid ladies bikini denim henley tuxedo vintage striped friends for girls crop big sister cute long sleeve oversized collared women graphic halloween lace tee cool mesh band design your own golf hoodie hawaiian men compression button up down yellow st patrick's day baseball cheap fishing oxford casual wife one family birthday tee pride 4th of july blouse\u3010Search Term\u3011men's premium classic button down short sleeve dress shirt mens nightclub printed dress shirts non-iron regular fit button down party men shirt mens premium casual inner contrast dress shirt mens long sleeve henley shirts casual mandarin collar loose fit summer beach solid plain cotton shirt men casual solid color loose button cotton casual spring top mens cotton vest workout tank tops henley shirt v-neck sleeveless beach yoga casual topsShow more"}, {"name": "Garnier Nutrisse Haircolor, 111 Extra-Light Ash Blonde 1 Each (Pack of 2)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.4 x 5 x 3.5 inches; 1 Pounds", "Date First Available\n \u200f": "\u200e\n July 11, 2016", "ASIN\n \u200f": "\u200e\n B01IA9EC06", "Best Sellers Rank": "#321,820 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#5,884 in Hair Coloring Products", "#5,884 in Hair Coloring Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Garnier", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Garnier", "full_description": "Size:Pack of 2 INDICATIONS:Garnier Nutrisse Nourishing Color Creme, 111 Extra- Light Ash BlondeExperience Garnier Nutrisse, a Nourishing Color Cream that gives you rich, healthy-looking color that really lasts. The exclusive color cream, enriched with conditioners and fruit-oil concentrate, penetrates into the hair fibers to nourish deep down while delivering rich, long-lasting color.", "pricing": "$17.96", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41CsyocagsL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Coloring Products", "average_rating": 3.9, "small_description": ["Garnier Nutrisse Nourishing Color, Extra Light Ash Blonde gives you rich, healthy looking color that really lasts. ", "Nourishing, protective conditioners. ", "Extra lightening formula. "], "total_reviews": 20, "total_answered_questions": "", "customization_options": "", "seller_id": "ASEVS99O6FS73", "seller_name": "Pharmapacks_", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01IA9EC06", "category": "beauty", "query": "Hair Coloring Products", "page": 160, "small_description_old": "Garnier Nutrisse Nourishing Color, Extra Light Ash Blonde gives you rich, healthy looking color that really lasts. Nourishing, protective conditioners. Extra lightening formula."}, {"name": "Terry Jacobs Honey Cleansing Milk Clover Blossom Extract | Moisturizing Skin Care Facial Cleanser for Normal and Dry Skin | Gentle Face Wash and Make Up Remover, Promotes Soft and Smooth Skin 8oz", "product_information": {"Manufacturer\n \u200f": "\u200e\n LE TROPIQUE, INC.", "ASIN\n \u200f": "\u200e\n B08FY843HB", "Best Sellers Rank": "#1,077,048 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#16,315 in Face Moisturizers", "#16,315 in Face Moisturizers": ""}, "brand": "Visit the Terry Jacobs Cosmetics for the Tropics Store", "brand_url": "https://www.amazon.com/stores/Terry+Jacobs+Cosmetics+for+the+Tropics/page/67F6D885-E289-408A-9645-982B7334FF25?ref_=ast_bln", "full_description": "", "pricing": "$29.95", "list_price": "", "availability_quantity": 5, "availability_status": "Only 5 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31H6QaKjjRL.jpg", "https://m.media-amazon.com/images/I/41VVtt28+pL.jpg", "https://m.media-amazon.com/images/I/41D4ma76MXL.jpg", "https://m.media-amazon.com/images/I/41uUypL2-0L.jpg", "https://m.media-amazon.com/images/I/41OiTPBzKvL.jpg", "https://m.media-amazon.com/images/I/41ojJWNk+ZL.jpg", "https://m.media-amazon.com/images/I/51fuqbMce5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Cleansers \u203a Washes", "average_rating": "", "small_description": ["NON GREASY AND MOISTURIZING - Gentle Honey Cleansing Milk, dissolves make-up instantly and leaving skin soft and smooth. ", "COMBINATION OF CLOVER BLOSSOM EXTRACT AND HONEY - Gently removes even the toughest long-wear make up without drying, leaving skin hyrdated, fresh and smooth. ", "PERFECT CLEANSER FOR NORMAL AND DRY SKIN - Suitable cleanser for normal and dry skin. Great choice for ages 16-90 years old. ", "HOW TO USE- Massage into your skin and you make-up will dissolve beneath your fingertips. Wash or tissue off and your face is clean. Follow with oil-blotting astringent or Robert\u2019s Rose Water. ", "Honey Cleansing Milk is non-greasy and moisturizing, dissolving make-up instantly and leaving skin soft and smooth. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Scent": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08FY7RGH5/ref=twister_B08SGPDJ7X?_encoding=UTF8&psc=1", "value": "Calming Toner", "price_string": "$29.95", "price": 29.95, "image": "https://m.media-amazon.com/images/I/316PQhM6iTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FY83JF2/ref=twister_B08SGPDJ7X?_encoding=UTF8&psc=1", "value": "Citrus Rinse Toner", "price_string": "$29.95", "price": 29.95, "image": "https://m.media-amazon.com/images/I/31QP9axRQGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FY6L6WW/ref=twister_B08SGPDJ7X?_encoding=UTF8&psc=1", "value": "Foaming Cucumber Cleanser", "price_string": "$29.95", "price": 29.95, "image": "https://m.media-amazon.com/images/I/31Pv267jywL.jpg"}, {"is_selected": true, "url": null, "value": "Honey Cleansing Milk", "price_string": "$29.95", "price": 29.95, "image": "https://m.media-amazon.com/images/I/31H6QaKjjRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08FY7KKSR/ref=twister_B08SGPDJ7X?_encoding=UTF8&psc=1", "value": "Non-Oily Eye Make-up Remover", "price_string": "$29.95", "price": 29.95, "image": "https://m.media-amazon.com/images/I/31a51Ycw3BL.jpg"}]}, "seller_id": "A396S2KHJQ83XJ", "seller_name": "Cosmetics for the Tropics by Terry Jacobs", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08FY843HB", "category": "beauty", "query": "Makeup Remover", "page": 118, "small_description_old": "About this item NON GREASY AND MOISTURIZING - Gentle Honey Cleansing Milk, dissolves make-up instantly and leaving skin soft and smooth. COMBINATION OF CLOVER BLOSSOM EXTRACT AND HONEY - Gently removes even the toughest long-wear make up without drying, leaving skin hyrdated, fresh and smooth. PERFECT CLEANSER FOR NORMAL AND DRY SKIN - Suitable cleanser for normal and dry skin. Great choice for ages 16-90 years old. HOW TO USE- Massage into your skin and you make-up will dissolve beneath your fingertips. Wash or tissue off and your face is clean. Follow with oil-blotting astringent or Robert\u2019s Rose Water. Honey Cleansing Milk is non-greasy and moisturizing, dissolving make-up instantly and leaving skin soft and smooth."}, {"name": "INOAR PROFESSIONAL - Smoothing System - Deep Cleansing Shampoo & Treatment Set (8.45 oz x 2)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 10.63 x 9.06 x 5.51 inches; 9.52 Ounces", "Manufacturer\n \u200f": "\u200e\n Inoar", "ASIN\n \u200f": "\u200e\n B079Y4B4YP", "Best Sellers Rank": "#101,162 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#32,873 in Hair Care Products", "#32,873 in Hair Care Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Inoar Store", "brand_url": "https://www.amazon.com/stores/INOAR+/page/89028011-4538-4B2C-BB03-CE514F8E6143?ref_=ast_bln", "full_description": "Inoar products are inspired by you! Our mission is to offer innovative beauty products that focus on quality, effectiveness, safety and socio-environmental responsibility, all with superior quality and an affordable price for all of our consumers.The Moroccan Keratin Smoothing System is a revolutionary treatment specially created to eliminate up to 95% of frizz and curls. This product restores hydration and instantly adds amazing shine and silkiness to the hair. Its formula is enriched with white clay and cocoa oil that provide rich conditioning and frizz reduction, promoting an elegant transformation of your hair for a sleek, smooth, and radiant finish. Enjoy ultra-luxurious hair with minimal effort and maximum impact! Depending on your hair type and hairstyle, after the first treatment there is already a straightening effect of 40% to 100% for a duration of 3 to 5 months.*Keratin treatment *Intense hydration *For silky, smooth & shiny hair *Nourishes & strengthens the hair *Enriched with white clay & cocoa oil *Cruelty-freeHOW TO USE: STEP 1 - Deep Cleansing Shampoo: Gently shampoo hair and work it through the scalp, massaging thoroughly. Repeat 2-3 times if necessary. Dry hair using a blowdryer at 80% if hair is moderately curly, and 100% if very curly. STEP 2 - Moroccan Keratin Smoothing Treatment: ALWAYS wear gloves during the application. Section the hair into 4 equal parts. Apply the Smoothing Treatment into thin sections of hair. Begin with \u00bd inch sections, working from scalp to ends, keeping \u00bd inch away from the scalp. Let sit for 20 minutes. After 20 minutes, blow hair 100% dry. Divide the hair into thin sections and flat iron 7-10 times. After the application and flat ironing (ideal iron temp: 400 \u00b0F), let it cool for 5 minutes. Rinse with lukewarm water, do not shampoo. Blow dry the hair using a paddle brush to obtain optimal results and shine.", "pricing": "$70.00", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/519K9HzUMBL.jpg", "https://m.media-amazon.com/images/I/516G5OtVYdL.jpg", "https://m.media-amazon.com/images/I/51nuhScKECL.jpg", "https://m.media-amazon.com/images/I/51ynoqHLawL.jpg", "https://m.media-amazon.com/images/I/51H50wMM1IL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care", "average_rating": 4.6, "small_description": ["STRAIGHTENING FOR THE CURLIEST HAIR TYPES: Moroccan Deep Cleansing Shampoo & Keratin Treatment was designed for curly and frizzy hair types. Their formulations are enriched with a special component that has a straightening effect from 40% to 100%! ", "ENRICHED WITH KERATIN TO HYDRATE & SMOOTH YOUR HAIR: Moroccan Deep Cleansing Shampoo & Keratin Treatment is the perfect combo to nourish and moisturize your hair. This revolutionary formulation infuses keratin deep into the hair's cuticle, promoting intense hydration and remarkable shine. ", "NO MORE FRIZZY HAIR: Unlike other salon treatments, the more often hair is treated with Moroccan Deep Cleansing Shampoo & Keratin Treatment, the healthier it becomes. Its formula is enriched with white clay and cocoa oil that provide rich conditioning and frizz reduction, promoting an elegant transformation of your hair for a sleek, smooth, and radiant finish. ", "FOR PROFESSIONAL USE ONLY: This keratin hair system is intended for use by hair care professionals only for a sleek, smooth, and radiant finish. ", "RESPECT FOR THE ENVIRONMENT: Inoar prioritizes the sustainable use of water and energy, ensuring a proper treatment of industrial waste. Our commitment to responsible social and environmental management has been recognized worldwide, and our company has obtained the 2015 and 2016 Chico Mendes Seal. "], "total_reviews": 134, "total_answered_questions": 10, "customization_options": "", "seller_id": "A2BGK80ZBB6CF7", "seller_name": "BIG HAIR", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B079Y4B4YP", "category": "beauty", "query": "Scalp Treatments", "page": 44, "small_description_old": "STRAIGHTENING FOR THE CURLIEST HAIR TYPES: Moroccan Deep Cleansing Shampoo & Keratin Treatment was designed for curly and frizzy hair types. Their formulations are enriched with a special component that has a straightening effect from 40% to 100%! ENRICHED WITH KERATIN TO HYDRATE & SMOOTH YOUR HAIR: Moroccan Deep Cleansing Shampoo & Keratin Treatment is the perfect combo to nourish and moisturize your hair. This revolutionary formulation infuses keratin deep into the hair's cuticle, promoting intense hydration and remarkable shine. NO MORE FRIZZY HAIR: Unlike other salon treatments, the more often hair is treated with Moroccan Deep Cleansing Shampoo & Keratin Treatment, the healthier it becomes. Its formula is enriched with white clay and cocoa oil that provide rich conditioning and frizz reduction, promoting an elegant transformation of your hair for a sleek, smooth, and radiant finish. FOR PROFESSIONAL USE ONLY: This keratin hair system is intended for use by hair care professionals only for a sleek, smooth, and radiant finish. RESPECT FOR THE ENVIRONMENT: Inoar prioritizes the sustainable use of water and energy, ensuring a proper treatment of industrial waste. Our commitment to responsible social and environmental management has been recognized worldwide, and our company has obtained the 2015 and 2016 Chico Mendes Seal."}, {"name": "Micvtve Key Holder for Wall Mount Sweet Home Organizer Decorative, Metal Wall Coat Rack Key Hanger for Front Door,Kitchen Holder", "product_information": {"Product Dimensions": "13.78 x 5.51 x 1.57 inches", "Item Weight": "11.7 ounces", "Manufacturer": "Micvtve", "ASIN": "B09PFWVXVS", "Country of Origin": "China", "Batteries Required?": "No"}, "brand": "Brand: Micvtve", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Micvtve", "full_description": "Micvtve Function: wall-mounted drying rack, coat rack, key rack.Weight: 325GColour: blackMaterial: ironSize: 35x18x3cmPackage Contents:1 * Key holderOnly the above package content, other products are not included.Note: Light shooting and different displays may cause the color of the item in the picture a little different from the real thing. The measurement allowed error is +/- 1-3cm.", "pricing": "$16.25", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31d5hKwVNgS.jpg", "https://m.media-amazon.com/images/I/31FTBKsS4OS.jpg", "https://m.media-amazon.com/images/I/41WJHt8XYPS.jpg", "https://m.media-amazon.com/images/I/41gARB2Y0-S.jpg", "https://m.media-amazon.com/images/I/51jhb1tGxgS.jpg", "https://m.media-amazon.com/images/I/51wdUpneJuS.jpg", "https://m.media-amazon.com/images/I/31ym0F0jCTS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Storage & Organization \u203a Home Storage Hooks \u203a Key Hooks", "average_rating": "", "small_description": "About this item\n \nWonderful blessing gifts: Very suitable for newlyweds, friends and family; for people with large families or multiple cars, these gifts are a great gift. Decorative key hook holder: This beautiful key holder \"Home Sweet Home\" provides 5 individual hooks for storing keys, earphones or small personal items. Includes mounting accessories: Each keychain used for wall, kitchen or interior decoration is also equipped with screws and pins for quick and easy installation. Comfortable and practical decoration: The slender black design allows these house and car keychains to be placed wherever you want to better organize the keys. Exquisite handcrafting places high demands on steel: These metal keychains are made of steel and have a unique style, function and durability.", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A31ZXL2DEUVGVK", "seller_name": "RGRW", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09PFWVXVS", "category": "garden", "query": "Coat Racks", "page": 116, "small_description_old": "About this item\n \nWonderful blessing gifts: Very suitable for newlyweds, friends and family; for people with large families or multiple cars, these gifts are a great gift. Decorative key hook holder: This beautiful key holder \"Home Sweet Home\" provides 5 individual hooks for storing keys, earphones or small personal items. Includes mounting accessories: Each keychain used for wall, kitchen or interior decoration is also equipped with screws and pins for quick and easy installation. Comfortable and practical decoration: The slender black design allows these house and car keychains to be placed wherever you want to better organize the keys. Exquisite handcrafting places high demands on steel: These metal keychains are made of steel and have a unique style, function and durability."}, {"name": "Cracker Jack, Regular, 4.125 Ounce (Pack of 24)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 20.98 x 16.42 x 8.82 inches; 6.19 Pounds", "UPC\n \u200f": "\u200e\n 028400172516", "Manufacturer\n \u200f": "\u200e\n Cracker Jack", "ASIN\n \u200f": "\u200e\n B00NCSNO78", "Best Sellers Rank": "#546,585 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#837 in Wheat Crackers", "#837 in Wheat Crackers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Cracker Jack", "brand_url": "https://www.amazon.com/Cracker-Jack/b/ref=bl_dp_s_web_3023277011?ie=UTF8&node=3023277011&field-lbr_brands_browse-bin=Cracker+Jack", "full_description": "Cracker Jack, Regular, 4.125 Ounce (Pack of 24)", "pricing": "$87.00", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51F6dpxU3KL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Crackers \u203a Wheat", "average_rating": 5, "small_description": ["Pack of 24, 4.125 Ounce bags "], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A1AKNTGVSLJNE3", "seller_name": "Speedy sale co", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00NCSNO78", "category": "grocery", "query": "Snack Crackers", "page": 176, "small_description_old": "About this item Pack of 24, 4.125 Ounce bags"}, {"name": "International Concepts 3-Tier X-Sided Bookcase, Unfinished", "product_information": {"Item Weight": "\u200e39.6 pounds", "Product Dimensions": "\u200e12 x 30 x 36 inches", "Country of Origin": "\u200eVietnam", "Item model number": "\u200eSH-3630X", "Assembled Height": "\u200e36 inches", "Assembled Width": "\u200e30 inches", "Assembled Length": "\u200e12 inches", "Weight": "\u200e40 Pounds", "ASIN": "B0029LHT7A", "Customer Reviews": {"ratings_count": 34, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#1,114,366 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,982 in Bookcases"], "Date First Available": "November 1, 2000"}, "brand": "Brand: International Concepts", "brand_url": "https://www.amazon.com/International-Concepts/b/ref=bl_dp_s_web_11351329011?ie=UTF8&node=11351329011&field-lbr_brands_browse-bin=International+Concepts", "full_description": "Your home is a natural extension of you. Add these innovative designs from International Concepts to spruce up any decor.", "pricing": "$130.76", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41rcHKnCPGL.jpg", "https://m.media-amazon.com/images/I/31Je9CV0p8L.jpg", "https://m.media-amazon.com/images/I/317BMFwcr3L.jpg", "https://m.media-amazon.com/images/I/41H5d7Ry2wL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": 4.7, "small_description": ["Made from solid parawood ", "Ready to assemble ", "Unfinished, finishing kit is available for purchase ", "Rated for residential use only, not intended for commercial use "], "total_reviews": 34, "total_answered_questions": "", "model": "\u200eSH-3630X", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B0029LHT7A", "category": "garden", "query": "Book Cases", "page": 100, "small_description_old": "About this item Made from solid parawood Ready to assemble Unfinished, finishing kit is available for purchase Rated for residential use only, not intended for commercial use \n \u203a See more product details"}, {"name": "Baja Night Stand / 2 Drawer / Solid Wood / Rustic Bedside Table for Bedroom, Living Room, Sofa Couch, Hall / Metal Drawer Pulls, Barnwood Finish", "product_information": {"Item Weight": "\u200e34.1 pounds", "Product Dimensions": "\u200e16.5 x 22.5 x 25 inches", "Country of Origin": "\u200eBrazil", "Item model number": "\u200eBJ208", "ASIN": "B079N3VLRJ", "Customer Reviews": {"ratings_count": 202, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#148,610 in Home & Kitchen (See Top 100 in Home & Kitchen) #9,618 in Furniture"], "Date First Available": "November 1, 2011"}, "brand": "Visit the Camaflexi Store", "brand_url": "https://www.amazon.com/stores/Camaflexi/page/F8137312-A749-4162-9CCE-137C79D92EF9?ref_=ast_bln", "full_description": "Rustic elegance and contemporary style combine in the Baja nightstand by Camaflexi to create the perfect balance of sophistication and warmth in your bedroom. Constructed of 100% solid pine wood, the water based distressed finish showcases the natural beauty of the wood grains and decorative steel accents add additional appeal. Featuring two deep, extra generous size drawers, The Baja nightstand is perfectly designed for easy access storage at your bedside. Sturdy, durable and built to last \u2013 the quality and workmanship you\u2019ve come to expect from Camaflexi. Concerned for the environment, All Camaflexi furniture is eco-safe and crafted of solid pine wood sourced from renewable pine plantations. Outer distance between two front legs: 21. 8\u201d; outer distance between two side legs: 16. 5\u201d; drawer weight capacity: 40 lbs. Water based protective finish - non toxic, no VOC's.", "pricing": "$237.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51RQODFu7kL.jpg", "https://m.media-amazon.com/images/I/41sZ5oPBDVL.jpg", "https://m.media-amazon.com/images/I/41SZ3w7NDTL.jpg", "https://m.media-amazon.com/images/I/51xs0Gv54uL.jpg", "https://m.media-amazon.com/images/I/4145L8sJp7L.jpg", "https://m.media-amazon.com/images/I/51jaInc8c1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture", "average_rating": 4.4, "small_description": ["Constructed of 100% solid wood - No MDF, No Particle Board, No Plywood ", "Easy to clean, water based, non-toxic, protective finish ", "Features two large pull out drawers for ample storage ", "Drawers feature attractive, easy to grasp, metal drawer pulls ", "Extra durable metal glides with safety stops for smooth and effortless motion on all drawers ", "Included components: Hardware "], "total_reviews": 202, "total_answered_questions": "", "model": "\u200eBJ208", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Brown", "price_string": "$237.00", "price": 237, "image": "https://m.media-amazon.com/images/I/51RQODFu7kL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079N7Y1PY/ref=twister_B09B5VY39C?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "$197.92", "price": 197.92, "image": "https://m.media-amazon.com/images/I/417bCHkc8lL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07TB9D4ZG/ref=twister_B09B5VY39C?_encoding=UTF8&psc=1", "value": "Walnut", "price_string": "$189.56", "price": 189.56, "image": "https://m.media-amazon.com/images/I/41QQY890mKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B079NCTBGN/ref=twister_B09B5VY39C?_encoding=UTF8&psc=1", "value": "White", "price_string": "$237.00", "price": 237, "image": "https://m.media-amazon.com/images/I/41z3GHa0K8L.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B079N3VLRJ", "category": "garden", "query": "Sofa Tables", "page": 192, "small_description_old": "About this item Constructed of 100% solid wood - No MDF, No Particle Board, No Plywood Easy to clean, water based, non-toxic, protective finish Features two large pull out drawers for ample storage Drawers feature attractive, easy to grasp, metal drawer pulls Extra durable metal glides with safety stops for smooth and effortless motion on all drawers Included components: Hardware \n \u203a See more product details"}, {"name": "Trail Mix On The Go Sweet & Salty-Peanuts Chocolate Gems & Sunflower Kernels", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.72 x 6.22 x 4.57 inches; 1.5 Ounces", "UPC\n \u200f": "\u200e\n 731299998302", "ASIN\n \u200f": "\u200e\n B08WKT3X4Z", "Best Sellers Rank": "#123,101 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#230 in Snack & Trail Mixes #2,694 in Snack Nuts & Seeds", "#230 in Snack & Trail Mixes": "", "#2,694 in Snack Nuts & Seeds": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Southern Grove", "brand_url": "https://www.amazon.com/Southern-Grove/b/ref=bl_dp_s_web_9175724011?ie=UTF8&node=9175724011&field-lbr_brands_browse-bin=Southern+Grove", "full_description": "Sweet and Salty Trail Mix On The Go (Peanuts Raisins Chocolate Gems and Sunflower Kernels). Two Packs, each with 8 bags.", "pricing": "$21.92", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/5115ohFo3JL.jpg", "https://m.media-amazon.com/images/I/51su4CrQNyL.jpg", "https://m.media-amazon.com/images/I/41PkXXb-XvL.jpg", "https://m.media-amazon.com/images/I/51VJmx-EnJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Snack & Trail Mixes", "average_rating": 5, "small_description": ["Two Packs of 8 pouches each (Total 16) Trail Mix Snack ", "Contains Peanuts, Raisins, Chcolate Gems and Sunflower Kernels ", "Pouches packed in small sizes (1.5oz) to ensure freshness ", "Grab a Bag On The Go Sweet & Salty Snack "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "A1DSBB7ZHML7HO", "seller_name": "Coop & Hunt", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08WKT3X4Z", "category": "grocery", "query": "Snack & Trail Mixes", "page": 17, "small_description_old": "About this item Two Packs of 8 pouches each (Total 16) Trail Mix Snack Contains Peanuts, Raisins, Chcolate Gems and Sunflower Kernels Pouches packed in small sizes (1.5oz) to ensure freshness Grab a Bag On The Go Sweet & Salty Snack"}, {"name": "Zermat Xtreme Roll-On Antiperspirant Deodorant for Boys 1.06 oz. Set of 2", "product_information": {"UPC\n \u200f": "\u200e\n 754169472825", "Manufacturer\n \u200f": "\u200e\n Zerma", "ASIN\n \u200f": "\u200e\n B08X31TV2P", "Best Sellers Rank": "#451,288 in Health & Household (See Top 100 in Health & Household)#2,386 in Antiperspirant Deodorant", "#2,386 in Antiperspirant Deodorant": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Zerma", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Zerma", "full_description": "2 Deodorants", "pricing": "$15.79", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41LhutDzhIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Antiperspirant Deodorant", "average_rating": 4.5, "small_description": [""], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A38J0ZPFT60DQT", "seller_name": "Mega Fountain", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08X31TV2P", "category": "beauty", "query": "Deodorants & Antiperspirants", "page": 60, "small_description_old": ""}, {"name": "4 Way AudioSwitch Board High Reliability Audio Signal Input Switch Module Stable Performance for Audio Input Switch", "product_information": {"Date First Available\n \u200f": "\u200e\n February 7, 2021", "Manufacturer\n \u200f": "\u200e\n Jeanoko", "ASIN\n \u200f": "\u200e\n B08W4H39JR", "": ""}, "brand": "Brand: Jeanoko", "brand_url": "https://www.amazon.com/Jeanoko/b/ref=bl_dp_s_web_23731519011?ie=UTF8&node=23731519011&field-lbr_brands_browse-bin=Jeanoko", "full_description": "Feature:Specification:Item Type:\u00a0Audio\u00a0Input\u00a0Switch\u00a0ModuleVoltage: DC 7V-30V, AC 6V-20VFunction: Four inputs and one output (four groups of audio signals are simultaneously connected to one group of signal outputs)Method: Manual switchSequence: Clockwise A\u2192B\u2192C\u2192Dor counterclockwise D\u2192C\u2192B\u2192AFeatures: loss of relay switchingApplication: PC, TV, mobile phone, for\u00a0Xbox, home theater, etc.Package List:1 x Volume Adjustment Board1 x Audio Source Switching Board1 x Signal Board6 x Line", "pricing": "$16.09", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41W9r2eWXpL.jpg", "https://m.media-amazon.com/images/I/51iRevKNrXL.jpg", "https://m.media-amazon.com/images/I/51hmKYuyttL.jpg", "https://m.media-amazon.com/images/I/41JF5scmBlL.jpg", "https://m.media-amazon.com/images/I/41sx6FZVttL.jpg", "https://m.media-amazon.com/images/I/51ZprBCmg2L.jpg", "https://m.media-amazon.com/images/I/513VK1pLlrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Wireless & Streaming Audio \u203a Wireless Audio Receivers & Adapters", "average_rating": "", "small_description": ["The input signal interface board is a small board composed of two groups of signals, and the input interface of each group of small boards has screw holes for flexible installation and fixation. ", "There are high quantity terminal blocks for easy wire connection. The audio input switch module is lightweight and easy to install ", "The audio input switch module is compact, with more convenient installation! ", "This product uses relays to switch various signals, basically achieving zero loss. Wide range of applications, suitable for computers, TVs, mobile phones, for Xbox, home theaters, etc. ", "Support four groups of input signals, with the signal switch knob, you can choose to make one of the signal output work. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1RXXB9HOC6W7Z", "seller_name": "LOPRGJO-US", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08W4H39JR", "category": "electronics", "query": "Receivers & Amplifiers", "page": 186, "small_description_old": "The input signal interface board is a small board composed of two groups of signals, and the input interface of each group of small boards has screw holes for flexible installation and fixation. There are high quantity terminal blocks for easy wire connection. The audio input switch module is lightweight and easy to install The audio input switch module is compact, with more convenient installation! This product uses relays to switch various signals, basically achieving zero loss. Wide range of applications, suitable for computers, TVs, mobile phones, for Xbox, home theaters, etc. Support four groups of input signals, with the signal switch knob, you can choose to make one of the signal output work."}, {"name": "MAPOLO Hand Drawn Christmas Elements Collection Men's Boys Casual Walking Shoes Sneaker Lightweight Stylish Athletic Tennis Sports Running Shoes for Outdoor Hiking Travel Driving", "product_information": {"Item Weight\n \u200f": "\u200e\n 2.12 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n September 29, 2021", "Manufacturer\n \u200f": "\u200e\n MAPOLO", "ASIN\n \u200f": "\u200e\n B09HGJ2HZX", "": ""}, "brand": "Brand: MAPOLO", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=MAPOLO", "full_description": "Welcome to MAPOLO store and choosing what you want! MAPOLO sneaker shoes are fashionable and chic. Slip into sneaker for a comfortable classic. Let comfort go hand in hand with beauty. \u2714Features: Convenient lace up design, with soft foam, offers foot comforts Comfortable non-slip sole and soft canvas insole can relieve foot pressure and fatigue during walking Exquisite craftsmanship. Not easy to go offline Products Content: Sneaker shoes X1 pair \u2714Daily Care Tips: Tips for anti-wear feet (new shoes may have a slight abrasion, the following methods are recommended): \u2605 Gently knead and rub the part of the foot with your hands to make the shoe soft, but do not use too much force \u2605 Cover the rubbing area with a wet and dry towel to soften it, and dry it in a cool place \u2605 Use white wine or alcohol to apply to the rubbing place in the shoes, soak it for about 5-15 minutes, wait for the shoes to become soft, and then put them on for walking \u2714Notes: When washing, do not soak it for a long time; place it in a ventilated place to air dry to avoid exposure to the sun; when not wearing it, put a few paper balls into the shoe to shape it \u2714Warm Tips: \u2605 Customers with generous feet are recommended to choose a larger size \u2605There are deviations in manual data measurement \u2605 The real color of the item may be slightly different from the pictures shown on website caused by many factors such as brightness of your monitor and light brightness \u2605Normally we will ship in 3-5 days according to your order status, and it will take about 2-3 weeks to delivery after shipping \u2605We always provide high quality service for the customer. Any question, please feel free to contact us. We appreciate every customer is important for us and we will help you solve it actively. Thanks!", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41cbGDdQlmL.jpg", "https://m.media-amazon.com/images/I/51XIvOs95IL.jpg", "https://m.media-amazon.com/images/I/31PKTFRuRuL.jpg", "https://m.media-amazon.com/images/I/41iuDEYObTL.jpg", "https://m.media-amazon.com/images/I/31W5uveaBpL.jpg", "https://m.media-amazon.com/images/I/41c4TnWw4sL.jpg", "https://m.media-amazon.com/images/I/41wF1Cjys1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Athletic \u203a Walking", "average_rating": "", "small_description": ["Imported ", "Rubber sole ", "\u2611MATERIAL: Textured breathable canvas insole, oxford cloth, strong and durable; raw rubber sole, Soft and non-slip EVA/MD sole + breathable air mesh upper, lightweight and comfortable. ", "\u2611CONVENIENT: This casual sneaker shoes offers a comfortable fit and durability. Wearing these shoes, it will reflect your most excellent and personal fashion style. ", "\u2611OCCASION: Designed for fashion men, stylish and personalized that will easily match your relaxed style, slip on loafers perfect for indoor and outdoor activities like shopping running, jogging, walking, cycling, driving, active sports various occasions. ", "\u2611UNIQUE DESIGN: Personalized stylish sneakers designs. Men's canvas sneaker shoes with unique printing design is the best gift for your friends, boyfriend or your men's elder. Printing on shoes tongue and shoes body. Customized support. ", "\u2611PLEASE NOTE: US size 6-13.5. Please refer to our Size Chart to choose the suitable one for you before purchasing an order. Please choose shoes size that are 9mm longer than your feet(Measure your feet in the afternoon, because feet typically swell during the day). "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "6", "asin": "B09HGJ2HZX"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B09HGN4DB6"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B09HC62BR1"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09HH2M5JK"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B09HC892LR"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B09HGNB1L3"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B09HC2PSSG"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B09HGPTJJJ"}, {"is_selected": false, "is_available": true, "value": "10.5", "asin": "B09HC79T6T"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B09HH6P68W"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B09HC4XG39"}, {"is_selected": false, "is_available": true, "value": "12.5", "asin": "B09HC4LRCY"}, {"is_selected": false, "is_available": true, "value": "13.5", "asin": "B09HC53GH2"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09HH6P68W", "category": "fashion", "query": "Men's Outdoor Shoes", "page": 169, "small_description_old": "Imported Rubber sole \u2611MATERIAL: Textured breathable canvas insole, oxford cloth, strong and durable; raw rubber sole, Soft and non-slip EVA/MD sole + breathable air mesh upper, lightweight and comfortable. \u2611CONVENIENT: This casual sneaker shoes offers a comfortable fit and durability. Wearing these shoes, it will reflect your most excellent and personal fashion style. \u2611OCCASION: Designed for fashion men, stylish and personalized that will easily match your relaxed style, slip on loafers perfect for indoor and outdoor activities like shopping running, jogging, walking, cycling, driving, active sports various occasions. \u2611UNIQUE DESIGN: Personalized stylish sneakers designs. Men's canvas sneaker shoes with unique printing design is the best gift for your friends, boyfriend or your men's elder. Printing on shoes tongue and shoes body. Customized support. \u2611PLEASE NOTE: US size 6-13.5. Please refer to our Size Chart to choose the suitable one for you before purchasing an order. Please choose shoes size that are 9mm longer than your feet(Measure your feet in the afternoon, because feet typically swell during the day)."}, {"name": "Type-C USB Charger Cable for TCL Flip Pro, Flip, Alcatel Go Flip 4", "product_information": {"Item model number\n \u200f": "\u200e\n TYPE-C USB", "Date First Available\n \u200f": "\u200e\n July 30, 2020", "Manufacturer\n \u200f": "\u200e\n AIPA", "ASIN\n \u200f": "\u200e\n B09GRD2SK4", "Best Sellers Rank": "#78,116 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories)#1,116 in Cell Phone Automobile Chargers", "#1,116 in Cell Phone Automobile Chargers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: AIPA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=AIPA", "full_description": "", "pricing": "$8.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21FpMjG2DnL.jpg", "https://m.media-amazon.com/images/I/31eTbZIqzpS.jpg", "https://m.media-amazon.com/images/I/41ATQ4CKZ1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Chargers & Power Adapters \u203a Automobile Chargers", "average_rating": 5, "small_description": ["Type-C USB 2.0 Hi-speed data transmission rate and charging; supports up to 480 Mbps data transmission speed ", "Length: 3 ft; Color: Black ", "Plug and play ready to any USB power adapter for charging. ", "Compatible with PC/MAC for data transfer or software updates. ", "Number of items: 1 "], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A1TJL0OMHBDH6Y", "seller_name": "AIPA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GRD2SK4", "category": "electronics", "query": "Chargers", "page": 394, "small_description_old": "About this item\n \nType-C USB 2.0 Hi-speed data transmission rate and charging; supports up to 480 Mbps data transmission speed Length: 3 ft; Color: Black Plug and play ready to any USB power adapter for charging. Compatible with PC/MAC for data transfer or software updates."}, {"name": "AODONG Onesie Pajamas for Women Onesies Romper Pajamas Printed Bodycon Jumpsuit Shorts Sexy One Piece Pjs Overall", "product_information": {"Item model number\n \u200f": "\u200e\n Gibobby Womens Pajamas", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 10, 2021", "Manufacturer\n \u200f": "\u200e\n Womens Onesie Pajamas", "ASIN\n \u200f": "\u200e\n B09NDRBS28", "": ""}, "brand": "Brand: AODONG", "brand_url": "https://www.amazon.com/AODONG/b/ref=bl_sl_s_ap_web_21412088011?ie=UTF8&node=21412088011&field-lbr_brands_browse-bin=AODONG", "full_description": "womens tie dye pajamas for women pj sets for women loungewear pajamas set short sleeve sleepwear shorts pjs lounge sets 12 piece short pajama set loose top and shorts sleepwear nightwear loungewear pj set two piece night shirt for sleeping plus size womens pajama set shorts small womens pajama sets cotton women pajamas set shorts womens loungewear sets shorts and crop top tie dye pajamas for women shorts set women pajamas set cotton capri Pajamas set for women shorts cotton plus size pajamas for women 2x set pajama sets for women shorts plus size pajamas for women capri set bamboo pajama set for women shorts tie dye pajama sets for women cotton capri loungewear for women plus sets pajama set for women pants 10\u00a0 pajamas soft striped womens short sleeve button sleepwear shorts shirt pj set womens silk satin pajamas set two-piece pj sets sleepwear loungewear button-down pj sets womens short sleeve tie dye long pajamas set one piece jumpsuit loose sleepwear night shirts with pockets womens short sleeve sleepwear button down satin 186 piece pajama set pajamas set", "pricing": "$2.99$7.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/512d-wcLRAL.jpg", "https://m.media-amazon.com/images/I/511C1WQJVoL.jpg", "https://m.media-amazon.com/images/I/51l3wtoxcOL.jpg", "https://m.media-amazon.com/images/I/51CpvkbhCIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Sleep & Lounge \u203a Sets", "average_rating": "", "small_description": ["onesie pajamas for women ", "\ud83d\udc95Best Gifts for Women/Wife/Girlfriend/\ud83d\udc95Buy it Now\ud83d\udc95 Today's Deals Big Promotion\ud83d\udc95Buy 2 get 8% off Buy 3 get 10% off Buy 4 get 12% off,Buy 5 get 16% off ", "Delivery Date Reference:Standard shipping:15-28 days Expedited shipping:3-5 days ", "\u2665Material: Sexy bodycon jumpsuits is made of high quality Polyester and Spandex. Super soft and comfortable to wear. Stretchy fabrics can show the curves of your figure. ", "\u2665Faeture:Women overalls romper suit, deep V neck homewear, butt button back flap, long sleeve trousers pajamas, button up closure front,provide a comfortable feeling. ", "\u2665Occasion: Women casual tracksuit one piece suit for spring, autumn, winter, daily wear, pilates, yoga, sports, tracksuits, club, party, shopping, beach, holiday, festivals, work office, sleeping wear. ", "\u2665Design: Button closure. Sexy one piece romper outfits for women clubwear. Deep V neck, long sleeves, christmas tree/candy/reindeer print long pants bodysuit. This causal jumpsuit makes you more lovely and beautiful. ", "\u2665\u3010Size\u3011Please refer to the size chart on the picture and choose your own body data, If you have any questions, please tell us at any time, we will reply as soon as possible within 24 hours. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09NDRBS28/ref=twister_B09NDR4CRP", "value": "Hot Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51s9WTadlNL.jpg"}, {"is_selected": true, "url": null, "value": "Wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/512d-wcLRAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NDR9GDN/ref=twister_B09NDR4CRP", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Hy5aeRdUL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09NDPW53Y"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09NDQZM17"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09NDS8F4V"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09NDRT9LX"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NDS8F4V", "category": "fashion", "query": "Women's Jumpsuits, Rompers & Overalls", "page": 84, "small_description_old": "onesie pajamas for women \ud83d\udc95Best Gifts for Women/Wife/Girlfriend/\ud83d\udc95Buy it Now\ud83d\udc95 Today's Deals Big Promotion\ud83d\udc95Buy 2 get 8% off Buy 3 get 10% off Buy 4 get 12% off,Buy 5 get 16% off Delivery Date Reference:Standard shipping:15-28 days Expedited shipping:3-5 days \u2665Material: Sexy bodycon jumpsuits is made of high quality Polyester and Spandex. Super soft and comfortable to wear. Stretchy fabrics can show the curves of your figure. \u2665Faeture:Women overalls romper suit, deep V neck homewear, butt button back flap, long sleeve trousers pajamas, button up closure front,provide a comfortable feeling. \u2665Occasion: Women casual tracksuit one piece suit for spring, autumn, winter, daily wear, pilates, yoga, sports, tracksuits, club, party, shopping, beach, holiday, festivals, work office, sleeping wear. \u2665Design: Button closure. Sexy one piece romper outfits for women clubwear. Deep V neck, long sleeves, christmas tree/candy/reindeer print long pants bodysuit. This causal jumpsuit makes you more lovely and beautiful. \u2665\u3010Size\u3011Please refer to the size chart on the picture and choose your own body data, If you have any questions, please tell us at any time, we will reply as soon as possible within 24 hours."}, {"name": "(3 Pack) Supershieldz Designed for Samsung Galaxy Tab 4 7.0 inch Screen Protector, High Definition Clear Shield (PET)", "product_information": {"Product Dimensions": "8.7 x 6 x 0.2 inches", "Item Weight": "1.6 ounces", "ASIN": "B00JH23QMQ", "Item model number": "4328650293", "Customer Reviews": {"ratings_count": 1431, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#457 in Tablet Screen Protectors"], "Is Discontinued By Manufacturer": "No", "Special Features": "Scratch Resistant", "Other display features": "Wireless", "Colour": "HD Clear", "Manufacturer": "Supershieldz", "Date First Available": "March 26, 2015"}, "brand": "Visit the Supershieldz Store", "brand_url": "https://www.amazon.com/stores/Supershieldz/page/6879B3A0-989B-4F5A-8620-A88FE36AB21A?ref_=ast_bln", "full_description": "", "pricing": "$6.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51oz4I3+INL.jpg", "https://m.media-amazon.com/images/I/41O94YZc7qL.jpg", "https://m.media-amazon.com/images/I/81nFJcPDIAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Tablet Accessories \u203a Screen Protectors", "average_rating": 4.5, "small_description": ["Made from the high quality Japanese PET film for easy installation and no residue when removed ", "High definition transparency film that ensures maximum resolution ", "Real touch sensitivity for a natural feel that provides flawless touch screen accuracy ", "Protects your screen from daily scratches, dust and scrapes ", "Include 3 pcs screen protectors "], "total_reviews": 1431, "total_answered_questions": 10, "model": "4328650293", "customization_options": "", "seller_id": "A279LIVC2BRR8I", "seller_name": "Supershieldz", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B00JH23QMQ", "category": "electronics", "query": "Screen Protectors", "page": 119, "small_description_old": "About this item Made from the high quality Japanese PET film for easy installation and no residue when removed High definition transparency film that ensures maximum resolution Real touch sensitivity for a natural feel that provides flawless touch screen accuracy Protects your screen from daily scratches, dust and scrapes Include 3 pcs screen protectors"}, {"name": "Dukhni Pure Attar Oil Blends - Alcohol Free, Vegan & Pure. Set of 6 x 6ml (0.2 Fl Oz Each) - Oud Mukhallat, Oud Mubakhar, Oud Abyad (White Oud), Oud Ya Aini, Attar Al Bakhoor, Ambar Oud", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.27 x 7.91 x 4.49 inches; 9.91 Ounces", "Manufacturer\n \u200f": "\u200e\n Aromatan Cosmetics Pvt. Ltd", "ASIN\n \u200f": "\u200e\n B089VWZB64", "Country of Origin\n \u200f": "\u200e\n India", "Best Sellers Rank": "#48,916 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#49 in Women's Fragrance Sets", "#49 in Women's Fragrance Sets": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Dukhni Store", "brand_url": "https://www.amazon.com/stores/DUKHNI/page/AAC70C2D-927D-4AA5-8395-1F39B7118D98?ref_=ast_bln", "full_description": "Why Dukhni? Dukhni is run by a family owned company founded in 1900 with lineage extending over 5 generations in traditional method of attar extraction, bakhoor incense for burning and blending perfumery products. Each Attar is enriched with Natural and blended oils. Dukhni Attar is 100% Halal and Alchohol Free", "pricing": "$21.99", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51Yt+2IqB3L.jpg", "https://m.media-amazon.com/images/I/41SpPEOUpjL.jpg", "https://m.media-amazon.com/images/I/31NrA5YnLnL.jpg", "https://m.media-amazon.com/images/I/311FqapfPpL.jpg", "https://m.media-amazon.com/images/I/31hz8as09ZL.jpg", "https://m.media-amazon.com/images/I/31j8Bikmw1L.jpg", "https://m.media-amazon.com/images/I/31I3jqvfnpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Sets", "average_rating": 4.1, "small_description": ["Contents: 6 Bottles of Pure Oil Blends x 6ml (0.2fl Oz) each. Oud Mukhallat, Oud Mubakhar, Oud Abyad (White Oud), Oud Ya Aini, Attar Al Bakhoor, Ambar ", "PURE OILS: Dukhni Attar Oils are all rigorously tested for the highest quality standards and blended by artisanal perfumers who have a deep understanding of pure oils. Alcohol Free, Vegan & Pure - Free from any nasty chemicals ", "PERFORMANCE: Very long lasting with a great propensity for short distance diffusion. Dukhni's Artisnal Perfume Oils should have longevity of upto 13-14 hours on your clothes. We are a FAIR TRADE focused company so all of our supplies are obtained through fair business practices, we do not test any products on animals and we do not harm the environment in any way with our products, our manufacturing or our business ", "EXPERIENCE the Aromatic Heritage of the Middle East! Dukhni's Artisanal Oils are produced by a family owned company with lineage in incense & perfumery making dating back to 1900 and extending over 5 generations. Each Attar is enriched with various natural ingredients including but not limited to aromatic woods, exotic flowers, natural barks, tree and tree extracts, resins, leaves & flowers; ", "Makes a fantastic gift and a super happy recipient! ENGAGE WITH US. WE WANT TO HEAR FROM YOU "], "total_reviews": 338, "total_answered_questions": "", "customization_options": {"Scent": [{"is_selected": false, "url": "https://www.amazon.com/dp/B089W84287/ref=twister_B089VN7LXN?_encoding=UTF8&psc=1", "value": "Ibt+Kha+Hab+Kas+Amb+BluG", "price_string": "$21.99", "price": 21.99, "image": "https://m.media-amazon.com/images/I/51YIouj-VFL.jpg"}, {"is_selected": true, "url": null, "value": "Muk+Mub+Abyad+Aini+Bak+AmbOud", "price_string": "$21.99", "price": 21.99, "image": "https://m.media-amazon.com/images/I/51Yt+2IqB3L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089VWNT3C/ref=twister_B089VN7LXN?_encoding=UTF8&psc=1", "value": "Open+Ful+Dove+Shahi+Qamar+Ragh", "price_string": "$21.99", "price": 21.99, "image": "https://m.media-amazon.com/images/I/51LSUyoOdCL.jpg"}]}, "seller_id": "A1PE6B22I8JVUC", "seller_name": "Aromatan Cosmetics - USA", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B089VWZB64", "category": "beauty", "query": "Men's Fragrance", "page": 49, "small_description_old": "About this item Contents: 6 Bottles of Pure Oil Blends x 6ml (0.2fl Oz) each. Oud Mukhallat, Oud Mubakhar, Oud Abyad (White Oud), Oud Ya Aini, Attar Al Bakhoor, Ambar PURE OILS: Dukhni Attar Oils are all rigorously tested for the highest quality standards and blended by artisanal perfumers who have a deep understanding of pure oils. Alcohol Free, Vegan & Pure - Free from any nasty chemicals PERFORMANCE: Very long lasting with a great propensity for short distance diffusion. Dukhni's Artisnal Perfume Oils should have longevity of upto 13-14 hours on your clothes. We are a FAIR TRADE focused company so all of our supplies are obtained through fair business practices, we do not test any products on animals and we do not harm the environment in any way with our products, our manufacturing or our business EXPERIENCE the Aromatic Heritage of the Middle East! Dukhni's Artisanal Oils are produced by a family owned company with lineage in incense & perfumery making dating back to 1900 and extending over 5 generations. Each Attar is enriched with various natural ingredients including but not limited to aromatic woods, exotic flowers, natural barks, tree and tree extracts, resins, leaves & flowers; Makes a fantastic gift and a super happy recipient! ENGAGE WITH US. WE WANT TO HEAR FROM YOU"}, {"name": "Nintendo Switch Game Traveler Donkey Kong Country Tropical Freeze Deluxe Travel Case - Donkey Kong Surfer", "product_information": {"ASIN": "B07D4JGPHM", "Customer Reviews": {"ratings_count": 5, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#118,791 in Video Games (See Top 100 in Video Games) #14,973 in Nintendo Switch Accessories"], "Pricing": "The strikethrough price is the List Price. Savings represents a discount off the List Price.", "Product Dimensions": "10.5 x 2 x 5 inches; 12.8 Ounces", "Binding": "Video Game", "Item model number": "NNS52D", "Is Discontinued By Manufacturer": "No", "Item Weight": "12.8 ounces", "Manufacturer": "Nintendo Switch", "Date First Available": "September 23, 2018"}, "brand": "Visit the Nintendo Store", "brand_url": "https://www.amazon.com/stores/Nintendo/page/BE0EB5D0-0AD6-4564-8BC5-4A129A3A9CFD?ref_=ast_bln", "full_description": "Nintendo Switch Game Traveler Deluxe Travel Case features an image of Donkey Kong in Donkey Kong Country: Tropical Freeze. The case includes two red transparent game card cases and two red transparent SD card cases.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41D-Vt4YlUL.jpg", "https://m.media-amazon.com/images/I/41vMDdssivL.jpg", "https://m.media-amazon.com/images/I/41jl7Gju6pL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a Nintendo Switch \u203a Accessories", "average_rating": 5, "small_description": ["Brand New in box. The product ships with all relevant accessories "], "total_reviews": 5, "total_answered_questions": "", "model": "NNS52D", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07D4JGPHM", "category": "electronics", "query": "Nintendo Switch", "page": 9, "small_description_old": "Brand New in box. The product ships with all relevant accessories"}, {"name": "Rimmel Oh My Lip Gloss, Stay My Rose, 0.22 Fluid Ounce", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 0.75 x 4.52 x 0.75 inches; 0.35 Ounces", "Item model number\n \u200f": "\u200e\n 34667354160", "Manufacturer\n \u200f": "\u200e\n Coty Beauty", "ASIN\n \u200f": "\u200e\n B00UYJEU8A", "Best Sellers Rank": "#66,390 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#270 in Lip Gloss", "#270 in Lip Gloss": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Rimmel Store", "brand_url": "https://www.amazon.com/stores/Rimmel/page/04CBA9CD-5FB3-4F55-ADCD-45D14428C64E?ref_=ast_bln", "full_description": "Rimmel stay glossy lip-gloss gives up to six-hour shine and color and contains soft silk and natural cotton. The lip sculpting wand provides precise definition.", "pricing": "$5.95", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31fSg8LIiSS.jpg", "https://m.media-amazon.com/images/I/31UhufWVcCL.jpg", "https://m.media-amazon.com/images/I/31TfBKR2GIL.jpg", "https://m.media-amazon.com/images/I/419sxZ7AdaS.jpg", "https://m.media-amazon.com/images/I/41u+MwYH+TL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Lips \u203a Lip Glosses", "average_rating": 4.5, "small_description": ["6-hour lip shine and color ", "Soft silk and natural cotton ", "Precise definition "], "total_reviews": 1559, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B019F0FGLI/ref=twister_B01BD86OPW?_encoding=UTF8&psc=1", "value": "All Night Long", "price_string": "$18.99", "price": 18.99, "image": "https://m.media-amazon.com/images/I/31Zqzq8l1rL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00UYJDX4C/ref=twister_B01BD86OPW?_encoding=UTF8&psc=1", "value": "Captivate Me", "price_string": "$8.95", "price": 8.95, "image": "https://m.media-amazon.com/images/I/21or8tQk3aL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00UYJDATA/ref=twister_B01BD86OPW?_encoding=UTF8&psc=1", "value": "Non Stop Glamour", "price_string": "$5.95", "price": 5.95, "image": "https://m.media-amazon.com/images/I/21PjXznAS2L.jpg"}, {"is_selected": true, "url": null, "value": "Stay My Rose", "price_string": "$5.95", "price": 5.95, "image": "https://m.media-amazon.com/images/I/31TfBKR2GIL.jpg"}]}, "seller_id": "A3SMGWNWXI7VZT", "seller_name": "Premium Buys LLC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00UYJEU8A", "category": "beauty", "query": "Lips Makeup", "page": 142, "small_description_old": "About this item 6-hour lip shine and color Soft silk and natural cotton Precise definition"}, {"name": "Dr. Ohhira's Probiotic Magoroku Skin Care Treatment ProFormula - 1 - Tube", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.3 x 2.1 x 5 inches; 2.08 Ounces", "Department\n \u200f": "\u200e\n Men, women, unisex-adult", "UPC\n \u200f": "\u200e\n 695927121435 787734679398", "Manufacturer\n \u200f": "\u200e\n Essential Formulas", "ASIN\n \u200f": "\u200e\n B000JS0V70", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Essential Formulas Store", "brand_url": "https://www.amazon.com/stores/ESSENTIAL+FORMULAS/page/46F210F0-7F4F-4C26-A866-609CAF5A3142?ref_=ast_bln", "full_description": "", "pricing": "$30.76", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41vUHwL0tyL.jpg", "https://m.media-amazon.com/images/I/415Jg51iy3L.jpg", "https://m.media-amazon.com/images/I/3170qZRIGPL.jpg", "https://m.media-amazon.com/images/I/518CjA-wC4L.jpg", "https://m.media-amazon.com/images/I/41bgEleNsXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.3, "small_description": ["A superior clarifying, moisturizing and revitalizing skin lotion produced from a combination of the rejuvenating powers of natural ingredients, ancient Japanese fermentation skills, and 21st century technology ", "The proprietary blend of botanical ingredients and probiotics with prebiotic nutrients provides pH-balancing effects along with vital saccharides, amino acids, and antioxidants, contributing to the cycle of dermal health ", "This dermal probiotic balance can help maintain the appearance and integrity of collagen fibers, promote healthy skin cell rejuvenation, hydrate and replenish the skin, support the skin\u2019s healthy barrier function, and maintain radiant looking skin ", "All-natural ingredients from the Earth\u2019s bounty. Does not contain any synthetic fragrances, stabilizers, deodorants, preservatives, chemicals, or artificial colors. Not tested on animals "], "total_reviews": 101, "total_answered_questions": 13, "customization_options": {"Item Package Quantity": null}, "seller_id": "A1SGUUCL70EYZE", "seller_name": "Peak10 Health LLC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B000JS0V70", "category": "beauty", "query": "Eyes Care", "page": 171, "small_description_old": "About this item A superior clarifying, moisturizing and revitalizing skin lotion produced from a combination of the rejuvenating powers of natural ingredients, ancient Japanese fermentation skills, and 21st century technology The proprietary blend of botanical ingredients and probiotics with prebiotic nutrients provides pH-balancing effects along with vital saccharides, amino acids, and antioxidants, contributing to the cycle of dermal health This dermal probiotic balance can help maintain the appearance and integrity of collagen fibers, promote healthy skin cell rejuvenation, hydrate and replenish the skin, support the skin\u2019s healthy barrier function, and maintain radiant looking skin All-natural ingredients from the Earth\u2019s bounty. Does not contain any synthetic fragrances, stabilizers, deodorants, preservatives, chemicals, or artificial colors. Not tested on animals"}, {"name": "Yaheetech Swivel Accent Chair Height Adjustable Modern Round Back Tilt Chair with Chrome Frame for Lounge, Pub, Bar - Dark Grey", "product_information": {"Product Dimensions": "28.15 x 22.64 x 36.02 inches", "Item Weight": "17.2 pounds", "Manufacturer": "Yaheetech", "ASIN": "B08FQTMCNM", "Customer Reviews": {"ratings_count": 2870, "stars": "4.7 out of 5 stars"}, "Best Sellers Rank": ["#24,277 in Home & Kitchen (See Top 100 in Home & Kitchen) #12 in Living Room Chairs"], "Date First Available": "May 28, 2020"}, "brand": "Visit the Yaheetech Store", "brand_url": "https://www.amazon.com/stores/Makeyourlifecomfortable/page/45E49FA9-D441-4518-9236-4BBE8AE0C8CD?ref_=ast_bln", "full_description": "", "pricing": "$109.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41+VUb+PLGL.jpg", "https://m.media-amazon.com/images/I/51nzUR3DO0L.jpg", "https://m.media-amazon.com/images/I/51KcJrgcieL.jpg", "https://m.media-amazon.com/images/I/41hv2-msHzL.jpg", "https://m.media-amazon.com/images/I/41+wJuERZgL.jpg", "https://m.media-amazon.com/images/I/41uqbZOWoLL.jpg", "https://m.media-amazon.com/images/I/51zGljUrXgL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Chairs", "average_rating": 4.7, "small_description": ["QUALITY TUFTED CHAIR: Our round-back swivel chair is founded atop a polished chrome finished metal pedestal base, and its seat is wrapped in luxurious-looking PU leather upholstery with great texture.\u00a0The strong structure can hold up to 125kg/275.6lb. ", "HEIGHT ADJUSTABLE: The seat height can be adjusted from 32cm/12.6\" to 46cm/18\" through a simple push/pull of the lever beneath the seat. The SGS-certified pneumatic cylinder is adopted to ensure your adjustment safety. ", "SIMPLE ASSEMBLY REQUIRED: This barrel chair comes in 4 parts, and tools, hardware and a step-by-step instruction manual are also included. It only takes you a few minutes to set up. ", "360-DEGREE SWIVEL CHAIR: The faux-leather wrapped round seat is founded atop a posh 360-degree swivel pedestal base, which allows effortlessly sitting, leaving the seat and changing sitting position without moving the base, especially practical in workspace and kitchen counter. ", "EASY CLEANING: The water-resistant PU leather surface and rustproof chrome finished pedestal base can be easily wiped clean with a damp cloth and mild cleansers. "], "total_reviews": 2870, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08625RGJN/ref=twister_B09HZRN1H4?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41CdIAXRRGL.jpg"}, {"is_selected": true, "url": null, "value": "Dark Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41+VUb+PLGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HC5JYKZ/ref=twister_B09HZRN1H4", "value": "Light Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31RwObU32fL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HC3F2JT/ref=twister_B09HZRN1H4", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31n7aIOTFSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F7PWF1D/ref=twister_B09HZRN1H4?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MH6KAPrcL.jpg"}], "Style": [{"is_selected": true, "url": null, "value": "PU Leather", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HC5JYKZ/ref=twister_B09HZRN1H4", "value": "Velvet", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A3AN9QJNQ0FYAY", "seller_name": "Yaheetech", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08FQTMCNM", "category": "garden", "query": "Bases", "page": 59, "small_description_old": "About this item\n \nQUALITY TUFTED CHAIR: Our round-back swivel chair is founded atop a polished chrome finished metal pedestal base, and its seat is wrapped in luxurious-looking PU leather upholstery with great texture.\u00a0The strong structure can hold up to 125kg/275.6lb. HEIGHT ADJUSTABLE: The seat height can be adjusted from 32cm/12.6\" to 46cm/18\" through a simple push/pull of the lever beneath the seat. The SGS-certified pneumatic cylinder is adopted to ensure your adjustment safety. SIMPLE ASSEMBLY REQUIRED: This barrel chair comes in 4 parts, and tools, hardware and a step-by-step instruction manual are also included. It only takes you a few minutes to set up. 360-DEGREE SWIVEL CHAIR: The faux-leather wrapped round seat is founded atop a posh 360-degree swivel pedestal base, which allows effortlessly sitting, leaving the seat and changing sitting position without moving the base, especially practical in workspace and kitchen counter. EASY CLEANING: The water-resistant PU leather surface and rustproof chrome finished pedestal base can be easily wiped clean with a damp cloth and mild cleansers."}, {"name": "Easy Replacement Remote Control Suitable for Sony HCD-DX315 HCD-HDX475 HCD-HDZ230 DVD Home Theater System Receiver", "product_information": {"ASIN": "B01MSXI9M5", "Date First Available": "December 10, 2016", "Manufacturer": "EREMOTE"}, "brand": "Brand: EREMOTE", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=EREMOTE", "full_description": "Remote Control For SONY HCD-DX315 HCD-HDX475 HCD-HDZ230 DVD Home Theater System Receiver", "pricing": "$14.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31Zdgq3g22L.jpg", "https://m.media-amazon.com/images/I/317edrPTwXL.jpg", "https://m.media-amazon.com/images/I/31kkcMbhsvL.jpg", "https://m.media-amazon.com/images/I/31VUVSd0BdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Electronics \u203a Video Projectors & Accessories \u203a Video Projector Accessories \u203a Remote Controls", "average_rating": "", "small_description": ["Easy to use ", "Replacement part,battery not include ", "3-6 days to delivery USA ", "Remote Control For SONY HCD-DX315 HCD-HDX475 HCD-HDZ230 DVD Home Theater System Receiver ", "Please note: The system shows that the product arrival time is 15-30 days. In fact, it only takes 4-7 days to arrive in the US states. If you have not arrived within 8 days, please contact us. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2VQ4DWMDRCEAD", "seller_name": "Easy-Remote", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01MSXI9M5", "category": "electronics", "query": "Home Theater Systems", "page": 367, "small_description_old": "Easy to use Replacement part,battery not include 3-6 days to delivery USA Remote Control For SONY HCD-DX315 HCD-HDX475 HCD-HDZ230 DVD Home Theater System Receiver Please note: The system shows that the product arrival time is 15-30 days. In fact, it only takes 4-7 days to arrive in the US states. If you have not arrived within 8 days, please contact us."}, {"name": "Orbecco WiFi Smart IR Remote Controller, Universal Control TV Air Conditioning Electric Fan Heater, Smart Home Infrared Universal Remote Controller Compatible with Alexa & Google Assistant, White", "product_information": {"Manufacturer": "\u200eOrbecco", "Part Number": "\u200eP723314111087", "Item Weight": "\u200e0.704 ounces", "Product Dimensions": "\u200e2.64 x 1.65 x 2.01 inches", "Material": "\u200eABS+PC", "Item Package Quantity": "\u200e1", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "ASIN": "B08GZ88BLT", "Customer Reviews": {"ratings_count": 73, "stars": "3.8 out of 5 stars"}, "Best Sellers Rank": ["#9,802 in Remote Controls (Electronics)"], "Date First Available": "August 29, 2020"}, "brand": "Brand: Orbecco", "brand_url": "https://www.amazon.com/Orbecco/b/ref=bl_dp_s_web_23697296011?ie=UTF8&node=23697296011&field-lbr_brands_browse-bin=Orbecco", "full_description": "", "pricing": "$16.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31ag+8T4o4L.jpg", "https://m.media-amazon.com/images/I/516A8UeKILL.jpg", "https://m.media-amazon.com/images/I/51lzTyGYQeL.jpg", "https://m.media-amazon.com/images/I/51fYJzKL-nL.jpg", "https://m.media-amazon.com/images/I/51HUOBcUR0L.jpg", "https://m.media-amazon.com/images/I/51NNo-cF38L.jpg", "https://m.media-amazon.com/images/I/51s6TYyRajL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": 3.8, "small_description": ["Compatibility: Widely Compatible with Amazon Echo (1st Gen.), Echo Plus (1st Gen.), Echo (2nd Gen.), Echo Plus (2nd Gen.), Echo Dot (1st Gen.), Echo Dot (2nd Gen.), Echo Dot (3nd Gen.), Echo Input, Echo Spot, Echo Show 5, Echo Show (1st Gen.), Echo Show (2nd Gen.), Echo Flex; Google Home, Google Home Mini. ", "APP Remote Control: Anytime and anywhere, enjoy more flexible control of your home appliance via linking infrared remote controller. Requires Android 4.4/iOS 8.0 Above and 2.4GHz WiFi ONLY. ", "Hands-free Voice Control: Complete hands-free control by means of simple voice commands to remotely control most infrared control device. Such as TV, Air Conditioning, Electric Fan, Heater, Air Purifier, Projector etc. Say goodbye to cumbersome manual control. ", "DIY Learning Function: If you cannot find IR device brand in [Smart Life] APP, Orbecco WiFi smart IR remote controller can Learn and copy the same function from original remote. ", "Technical Specifications: Power Input: DC 5V/1A; IR Frequency: 38-56kHz; Infrared Distance: 7M; Range Coverage: 360\u00b0; Max Current: 110mA; Max Power: 0.55W; Wireless Standard: WIFI 2.4G 802.11 b/g/n; Material: ABS+PC; Operating Temperature: -10\u2103 - 50\u2103; Operating Humidity: \u226485%RH. "], "total_reviews": 73, "total_answered_questions": "", "customization_options": "", "seller_id": "A2D5XVOTTAZFBV", "seller_name": "WingIdeas NA", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08GZ88BLT", "category": "electronics", "query": "Remotes", "page": 378, "small_description_old": "About this item\n \nCompatibility: Widely Compatible with Amazon Echo (1st Gen.), Echo Plus (1st Gen.), Echo (2nd Gen.), Echo Plus (2nd Gen.), Echo Dot (1st Gen.), Echo Dot (2nd Gen.), Echo Dot (3nd Gen.), Echo Input, Echo Spot, Echo Show 5, Echo Show (1st Gen.), Echo Show (2nd Gen.), Echo Flex; Google Home, Google Home Mini. APP Remote Control: Anytime and anywhere, enjoy more flexible control of your home appliance via linking infrared remote controller. Requires Android 4.4/iOS 8.0 Above and 2.4GHz WiFi ONLY. Hands-free Voice Control: Complete hands-free control by means of simple voice commands to remotely control most infrared control device. Such as TV, Air Conditioning, Electric Fan, Heater, Air Purifier, Projector etc. Say goodbye to cumbersome manual control. DIY Learning Function: If you cannot find IR device brand in [Smart Life] APP, Orbecco WiFi smart IR remote controller can Learn and copy the same function from original remote. Technical Specifications: Power Input: DC 5V/1A; IR Frequency: 38-56kHz; Infrared Distance: 7M; Range Coverage: 360\u00b0; Max Current: 110mA; Max Power: 0.55W; Wireless Standard: WIFI 2.4G 802.11 b/g/n; Material: ABS+PC; Operating Temperature: -10\u2103 - 50\u2103; Operating Humidity: \u226485%RH. \n \u203a See more product details"}, {"name": "Men's 3/4 Workout Training Jogger Capri Pants Running Track Sweatpants Shorts with Pockets Summer Casual Sports Pants", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 0.39 x 0.39 x 0.39 inches; 0.35 Ounces", "Item model number\n \u200f": "\u200e\n Clearance!Hot Sale!Cheap!", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 22, 2021", "Manufacturer\n \u200f": "\u200e\n aihihe", "ASIN\n \u200f": "\u200e\n B09B2HJGJD", "Best Sellers Rank": "#928,212 in Sports & Outdoors (See Top 100 in Sports & Outdoors)#540 in Men's Golf Pants #1,167 in Sports Fan Shorts #1,723 in Cheerleading Clothing", "#540 in Men's Golf Pants": "", "#1,167 in Sports Fan Shorts": "", "#1,723 in Cheerleading Clothing": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: aihihe", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=aihihe", "full_description": "\u203b\u203b\u3010SIZE CHART\u3011\u203b\u203bSize:M/US:6 Waist:70cm/27.56'' Hip:102cm/40.16'' Pants length:61.5cm/24.21'' Size:L/US:8 Waist:70cm/27.56'' Hip:106cm/41.73'' Pants length:64cm/25.20'' Size:XL/US:10 Waist:72cm/28.35'' Hip:110cm/43.31'' Pants length:66.5cm/26.18'' Size:XXL/US:12 Waist:72cm/28.35'' Hip:114cm/44.88'' Pants length:69cm/27.17'' Size:XXXL/US:14 Waist:74cm/29.13'' Hip:118cm/46.46'' Pants length:71.5cm/28.15'' \u203b\u203b\u3010Product Information\u3011\u203b\u203b\ud83c\udf37Brand Name:aihihe\ud83c\udf37Gender:mens\ud83c\udf37Pants Length:Short\ud83c\udf37Season:Summer/Spring/Fall\ud83c\udf37Pocket Description:Cargo\ud83c\udf37Closure Type:Drawstring\ud83c\udf37Opacity Transparency: Non see-through\ud83c\udf37Material:Cotton BlendQ&AQuestion:Is the color a true colorAnswer:Yes they are a true colorQuestion:Do they fade after washing?Answer:they didn't fade.Question:Do they have front pockets can't tell in picturesAnswer:Yes,they do. Question:what happens if you put them in the dryer?Answer:They wrinkle but the dryer did not damage my shorts.Question:I wear american size 12. should i or should i go up to large?Answer:You can buy according to the size chart provided by the seller not amazon.", "pricing": "$7.99$14.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31VrqXy-n9S.jpg", "https://m.media-amazon.com/images/I/31Ox7FtTTOS.jpg", "https://m.media-amazon.com/images/I/51AjlBXJAyS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Active Pants", "average_rating": 1, "small_description": ["Cotton Blend ", "\u2714Note :Please refer to your waistline and check the size chart from the product picture before ordering. ", "Drawstring closure ", "\u2714Wash Tipe:Machine Wash,Normal Cycle,Hang Dry ", "\u2714Material: 95% Polyester, 5% Spandex. 02 is 95% Cotton, 5% Other Drawstring closure ", "\u2714Features:Mens juniors classic 3/4 joggers capri pants, elastic waist with drawstring allows custom fit, makes you comfort anytime anywhere. ", "\u2714CCASION:This is a thoughtful gift for your families, perfect for casual daily life, school, sports, running, fitness, yoga, track etc. , \u2714Shipping:Items will arrive in 15-20 business days (Standard Shipping) or in 3-5 business days (Expedited Shipping) .It\u2019s up to which shipping ways you chose., \u10e6\u3010Search\u3011short tops for women 3x plus size short tops for women summer plus size short tops for women c plus size short tops for women 2x plus size short tops for women pink plus size short tops for women 4x plus size short tops for women dressy plus size short tops for women button down tunic plus size short dresses plus size short dresses for women plus size short dresses summer plus size short dresses 5x plus size short dresses for a wedding plus size short dresses with pockets"], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09B2J66TG"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09B2KP244"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09B2JJLK9"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09B2H1523"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09B2HN6NN"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09B2HJGJD/ref=twister_B09B2J2NZ3", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31jqOJoch+S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09B2JWK5C/ref=twister_B09B2J2NZ3", "value": "Dark Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/513yLp47XDS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09B2JN5C3/ref=twister_B09B2J2NZ3", "value": "Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/512pDO5WZKS.jpg"}, {"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31VrqXy-n9S.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09B2HN6NN", "category": "fashion", "query": "Men's Pants", "page": 142, "small_description_old": "Cotton Blend \u2714Note :Please refer to your waistline and check the size chart from the product picture before ordering. Drawstring closure \u2714Wash Tipe:Machine Wash,Normal Cycle,Hang Dry \u2714Material: 95% Polyester, 5% Spandex. 02 is 95% Cotton, 5% Other Drawstring closure \u2714Features:Mens juniors classic 3/4 joggers capri pants, elastic waist with drawstring allows custom fit, makes you comfort anytime anywhere. \u2714CCASION:This is a thoughtful gift for your families, perfect for casual daily life, school, sports, running, fitness, yoga, track etc. \n \u2714Shipping:Items will arrive in 15-20 business days (Standard Shipping) or in 3-5 business days (Expedited Shipping) .It\u2019s up to which shipping ways you chose.\u10e6\u3010Search\u3011short tops for women 3x plus size short tops for women summer plus size short tops for women c plus size short tops for women 2x plus size short tops for women pink plus size short tops for women 4x plus size short tops for women dressy plus size short tops for women button down tunic plus size short dresses plus size short dresses for women plus size short dresses summer plus size short dresses 5x plus size short dresses for a wedding plus size short dresses with pocketsShow more"}, {"name": "jojofuny 27pcs Checkered Flag Race Flag Cupcake Topper Picks Toothpick Flag Dinner Flags Chequered Flag Race Car Themed Party Supplies for Car Lover Cake Decorations", "product_information": {"Product Dimensions": "2.56 x 1.38 x 0.04 inches", "Item Weight": "0.635 ounces", "ASIN": "B08W2WTW4Z", "Manufacturer recommended age": "12 months and up", "Best Sellers Rank": ["#979,312 in Toys & Games (See Top 100 in Toys & Games) #11,983 in Cake Toppers (Toys & Games) #37,564 in Cake Toppers (Grocery & Gourmet Food) #316,207 in Preschool Toys"], "Mfg Recommended age": "12 months and up", "Manufacturer": "jojofuny"}, "brand": "Brand: jojofuny", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=jojofuny", "full_description": "Description This item is designed specially for cakes decoration. It is crafted in chic car racing themed patterns, and will help you to create a beautiful cake scenic. It can also be used as funny appetizer picks, fruit picks, party food picks, cupcake picks, etc. Suitable for birthday, theme party, etc. Features- Color: Assorted Color- Material: paper+ bamboo stick- Size: 6. 50X3. 50X0. 10cm/ 2. 55X1. 38X0. 04in- Note: Contains 3 big cake flags and 24 small cake flags- Made by materials for safe and durable use. -: first- class safe food decoration materials. Excellent construction and perfect workmanship.- Wide range of application: suitable for birthday, wedding and other occasions.- These foods can also be used to decorate cookies, cakes, fruit, chocolate cakes, ice cream and more!- Decorate your foods to make them more unique and special.- Color: Assorted Color.- Size: 6. 5\u00c3\u20143. 5cm. Package Including 27 x cake toppers", "pricing": "$9.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51bl43dAVPL.jpg", "https://m.media-amazon.com/images/I/51FGXlmVguL.jpg", "https://m.media-amazon.com/images/I/51sIWs1vzCL.jpg", "https://m.media-amazon.com/images/I/51ebnDERzdL.jpg", "https://m.media-amazon.com/images/I/31nY4POvN2L.jpg", "https://m.media-amazon.com/images/I/51KKHbkEc9L.jpg", "https://m.media-amazon.com/images/I/41HLYx3iATL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Frosting, Icing & Decorations \u203a Cake Toppers", "average_rating": "", "small_description": ["Made by materials for safe and durable use. ", "Wide range of application: suitable for birthday, wedding and other occasions. ", "These foods can also be used to decorate cookies, cakes, fruit, chocolate cakes, ice cream and more! ", ": first- class safe food decoration materials. Excellent construction and perfect workmanship. ", "Decorate your foods to make them more unique and special. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2M32LDHISYHL6", "seller_name": "ZHONG ROY", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08W2WTW4Z", "category": "grocery", "query": "Toothpicks", "page": 24, "small_description_old": "About this item\n \nMade by materials for safe and durable use. Wide range of application: suitable for birthday, wedding and other occasions. These foods can also be used to decorate cookies, cakes, fruit, chocolate cakes, ice cream and more! : first- class safe food decoration materials. Excellent construction and perfect workmanship. Decorate your foods to make them more unique and special."}, {"name": "Perfume for women one day one love 3.4 oz eau de toilette spray girl perfume eau de toilette spray \u300cElegant fragrance\u300d", "product_information": {"Item model number\n \u200f": "\u200e\n AXCF79B6F3", "UPC\n \u200f": "\u200e\n 762779825719", "Manufacturer\n \u200f": "\u200e\n N\\B", "ASIN\n \u200f": "\u200e\n B09QYN9MYN", "": ""}, "brand": "Brand: N\\B", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=N%5CB", "full_description": "\u300cElegant fragrance\u300d", "pricing": "$33.49", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51evoNuGvfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance", "average_rating": "", "small_description": "About this item \u300c\u300dPerfume for Women one day one love 3.4 oz Eau De Toilette Spray Guess Girl Perfume By Guess Eau De Toilette Spray \u300cThe advanced fragrance can bring out your charm perfectly.\u300d", "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ARJHF0AJ3S07T", "seller_name": "linlihongsds", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QYN9MYN", "category": "beauty", "query": "Children's Fragrance", "page": 15, "small_description_old": "About this item \u300c\u300dPerfume for Women one day one love 3.4 oz Eau De Toilette Spray Guess Girl Perfume By Guess Eau De Toilette Spray \u300cThe advanced fragrance can bring out your charm perfectly.\u300d"}, {"name": "Sony Extra Bass Portable Bluetooth Speaker Black - SRS-XB33/BC (Renewed)", "product_information": {"Product Dimensions": "4.09 x 1.95 x 2.11 inches", "Item Weight": "3.04 pounds", "Manufacturer": "Sony", "ASIN": "B08FZDJRQ7", "Item model number": "SRSXB33/B-cr", "Batteries": "1 A batteries required.", "Customer Reviews": {"ratings_count": 962, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#724 in Portable Bluetooth Speakers #7,958 in MP3 & MP4 Player Accessories"], "Date First Available": "September 2, 2020"}, "brand": "Visit the Amazon Renewed Store", "brand_url": "https://www.amazon.com/Amazon-Renewed/b/ref=bl_dp_s_web_12653393011?ie=UTF8&node=12653393011&field-lbr_brands_browse-bin=Amazon+Renewed", "full_description": "This pre-owned or refurbished product has been professionally inspected and tested to work and look like new. How a product becomes part of Amazon Renewed, your destination for pre-owned, refurbished products: A customer buys a new product and returns it or trades it in for a newer or different model. That product is inspected and tested to work and look like new by Amazon-qualified suppliers. Then, the product is sold as an Amazon Renewed product on Amazon. If not satisfied with the purchase, renewed products are eligible for replacement or refund under the Amazon Renewed Guarantee.", "pricing": "$108.49", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41+lMIUpYbL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Portable Audio & Video \u203a Portable Speakers & Docks \u203a Portable Bluetooth Speakers", "average_rating": 4.5, "small_description": ["Play it loud with EXTRA BASS sound and LIVE SOUND mode ", "Built to last with a IP67 waterproof rustproof dustproof and shockproof design ", "Lasts all day long with up to 24 hours of battery life ", "X-Balanced Speaker Unit enhances sound quality and power ", "Boost your music with two speaker lights and multi-colored line lights and turn the lights on or off via the Fiestable App ", "Get things booming with Party Connect and sync up to 100 speakers ", "The speakerphone function offers a convenient way to talk hands-free, whether it\u2019s a conference call for work or a chat with friends , Efficiently charge with USB Type-C and use the XB33 to charge your smartphone or other small devices via USB connection, Control the party with the Sony Music Center app and the Fiestable app, Wireless with BLUETOOTH technology and NFC"], "total_reviews": 962, "total_answered_questions": 27, "model": "SRSXB33/B-cr", "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "SRSXB33", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08G8CNP8M/ref=twister_B08H8MS84D?_encoding=UTF8&psc=1", "value": "SRSXB43", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08GM8M3YH/ref=twister_B08H8MS84D", "value": "SRSXB23", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ajrCi4-wL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08GM8M3YH/ref=twister_B08H8MS84D", "value": "Black XB23", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41FR1rMxkmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JFC3KFL/ref=twister_B08H8MS84D?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41aAEKED9RL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08GZVX7SG/ref=twister_B08H8MS84D", "value": "Coral Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41PXPMQHDLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08DNH2YPZ/ref=twister_B08H8MS84D", "value": "Light Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41v1dNPakTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JM6WVT8/ref=twister_B08H8MS84D", "value": "Olive Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41R8HgN9C4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08HJ4R3CG/ref=twister_B08H8MS84D?_encoding=UTF8&psc=1", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41X0NLtv97L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08JD357ZZ/ref=twister_B08H8MS84D?_encoding=UTF8&psc=1", "value": "Taupe", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wtW7EfqOL.jpg"}]}, "seller_id": "A3D9SO4E4YL9QC", "seller_name": "Planet Open Box", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08FZDJRQ7", "category": "electronics", "query": "Boomboxes & Portable Radios", "page": 67, "small_description_old": "About this item Play it loud with EXTRA BASS sound and LIVE SOUND mode Built to last with a IP67 waterproof rustproof dustproof and shockproof design Lasts all day long with up to 24 hours of battery life X-Balanced Speaker Unit enhances sound quality and power Boost your music with two speaker lights and multi-colored line lights and turn the lights on or off via the Fiestable App Get things booming with Party Connect and sync up to 100 speakers The speakerphone function offers a convenient way to talk hands-free, whether it\u2019s a conference call for work or a chat with friends \n Efficiently charge with USB Type-C and use the XB33 to charge your smartphone or other small devices via USB connectionControl the party with the Sony Music Center app and the Fiestable appWireless with BLUETOOTH technology and NFCShow more"}, {"name": "8 Colors Blush Palette, 4 Powder + 4 Cream Blush Palette, Contour and Highlight Blush Palette, Natural Nude Makeup Brighten Skin Tone Portable Makeup Blush, Professional Facial Makeup Blush", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 7.01 x 4.13 x 0.63 inches; 5.01 Ounces", "Manufacturer\n \u200f": "\u200e\n LANGMANNI", "ASIN\n \u200f": "\u200e\n B09NYHTCVX", "Country of Origin\n \u200f": "\u200e\n China", "Best Sellers Rank": "#77,238 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#223 in Face Blushes", "#223 in Face Blushes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the LANGMANNI Store", "brand_url": "https://www.amazon.com/stores/LANGMANNI/page/0E3858C3-4F52-4954-BD68-B9EB5F0DB417?ref_=ast_bln", "full_description": "", "pricing": "$6.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51yGyhJO0jL.jpg", "https://m.media-amazon.com/images/I/41PnWDvLDzL.jpg", "https://m.media-amazon.com/images/I/41wJUniQR0L.jpg", "https://m.media-amazon.com/images/I/51Boq+PKSML.jpg", "https://m.media-amazon.com/images/I/41oyl87t1xL.jpg", "https://m.media-amazon.com/images/I/41g62dvVE4L.jpg", "https://m.media-amazon.com/images/I/51zVJ3E6PhL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Face \u203a Blush", "average_rating": 4.4, "small_description": ["[ 8-Color Blush Palette ] There are 8 colors in the blush palette, divided into 4 dry powders and 4 blush creams, with a variety of combinations that are easy to color, and intelligent color toning factors make the color rosy and translucent, and bring a natural matte effect to your skin tone. ", "[ Easy to Makeup ] It\u2019s texture is smooth and fine, has a super smooth and soft powder texture makes the makeup light and smooth, which allows it to blend evenly with the skin without flying powder and makes the makeup more exquisite, gives the skin a transparent texture, It can be mixed to create natural matte and highlight effects. ", "[ Waterproof Long Lasting ] The blush highlighter palette is rich in color and has good color rendering, waterproof. you can apply it evenly and colored well on your face, no need to worry about water and sweat, let you keep beautiful makeup all the time. ", "[ Perfect gift ] It\u2019s ready for as a Birthday gift to friends or families. Perfect for various occasions, such as dating, party, wedding, bar, ball, camping, office, school, or daily makeups. ", "[ Risk -free Money Back Guarantee ] We offers an unconditional 100% satisfaction guarantee. just contact us to get a refund. all you need to do is return it within 30 DAYS, and we will issue you a full refund. "], "total_reviews": 15, "total_answered_questions": 3, "customization_options": "", "seller_id": "A17Q7UW8KYABAJ", "seller_name": "LANGMANNI OFFICIAL STORE", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09NYHTCVX", "category": "beauty", "query": "Makeup Palettes", "page": 9, "small_description_old": "About this item [ 8-Color Blush Palette ] There are 8 colors in the blush palette, divided into 4 dry powders and 4 blush creams, with a variety of combinations that are easy to color, and intelligent color toning factors make the color rosy and translucent, and bring a natural matte effect to your skin tone. [ Easy to Makeup ] It\u2019s texture is smooth and fine, has a super smooth and soft powder texture makes the makeup light and smooth, which allows it to blend evenly with the skin without flying powder and makes the makeup more exquisite, gives the skin a transparent texture, It can be mixed to create natural matte and highlight effects. [ Waterproof Long Lasting ] The blush highlighter palette is rich in color and has good color rendering, waterproof. you can apply it evenly and colored well on your face, no need to worry about water and sweat, let you keep beautiful makeup all the time. [ Perfect gift ] It\u2019s ready for as a Birthday gift to friends or families. Perfect for various occasions, such as dating, party, wedding, bar, ball, camping, office, school, or daily makeups. [ Risk -free Money Back Guarantee ] We offers an unconditional 100% satisfaction guarantee. just contact us to get a refund. all you need to do is return it within 30 DAYS, and we will issue you a full refund."}, {"name": "Legendary Whitetails Men's Non-Typical Long Sleeve T-Shirt", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1 x 1 x 1 inches; 8.78 Ounces", "Item model number\n \u200f": "\u200e\n 5933", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n September 7, 2017", "Manufacturer\n \u200f": "\u200e\n Legendary Whitetails", "ASIN\n \u200f": "\u200e\n B075G1H3HB", "Best Sellers Rank": "#19,814 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#156 in Men's T-Shirts #190 in Men's Novelty T-Shirts", "#156 in Men's T-Shirts": "", "#190 in Men's Novelty T-Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Legendary Whitetails Store", "brand_url": "https://www.amazon.com/stores/LegendaryWhitetails/page/91DE944D-E499-4629-BE35-6FE0BEEBF513?ref_=ast_bln", "full_description": "The best, most comfortable long sleeve tee you can buy. Built with Legendary style. 100% preshrunk heavyweight cotton with seamless ribbed collar, set-in sleeves and relaxed cuff. Detailed with camo fabric inside the neck and side vents. Graphics on both sleeves and left chest. Big & Tall sizes are designed for men over 6'2\" and add 2\" in body length and 1-1\u20442\" in sleeve length.", "pricing": "$10.52$40.50", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41HD+WH998S.jpg", "https://m.media-amazon.com/images/I/51jV2h85wOS.jpg", "https://m.media-amazon.com/images/I/417jt6LQArS.jpg", "https://m.media-amazon.com/images/I/51-B78gADAS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Shirts \u203a T-Shirts", "average_rating": 4.7, "small_description": ["Tagless Label, eliminates scratching ", "Double needle stitching ", "Screen printed sleeves and left chest design ", "Extended tail and side vents ", "Camo collar, extended tail, and side vent taping "], "total_reviews": 7183, "total_answered_questions": 33, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B075FZ5THV/ref=twister_B08ZJVTFGJ", "value": "Army", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41SxIOMtqjL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075G2FM7D/ref=twister_B08ZJVTFGJ", "value": "Big Game Field Camo", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61Fx6-JMD8S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075FZ62ZM/ref=twister_B08ZJVTFGJ", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yv2sMd5LS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00EUHECK8/ref=twister_B08ZJVTFGJ", "value": "Cardinal", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/418aK2XBHmL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075G3JZ77/ref=twister_B08ZJVTFGJ", "value": "Charcoal Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GjLAqYsUL.jpg"}, {"is_selected": true, "url": null, "value": "Inferno", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41HD+WH998S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0893DNDNG/ref=twister_B08ZJVTFGJ", "value": "Mossy Oak Bottomland", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51xONW2t-nL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0846PRKGV/ref=twister_B08ZJVTFGJ", "value": "Mossy Oak Country", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51MSu94a6IS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08P3XGKKQ/ref=twister_B08ZJVTFGJ", "value": "Mossy Oak Country Dna", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61JPqxmJSNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0893D649Z/ref=twister_B08ZJVTFGJ", "value": "Mossy Oak Coyote", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pOF5S5XPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07G5FW2M8/ref=twister_B08ZJVTFGJ", "value": "Slate", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41SslSjz7RS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075G28PJ7/ref=twister_B08ZJVTFGJ", "value": "Swamp", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41KyfPEGsaS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089WPJH9J/ref=twister_B08ZJVTFGJ", "value": "Turkey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41pXFVyf-uS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089WQRW4P/ref=twister_B08ZJVTFGJ", "value": "Flag", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4160K7tNFZS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089WQXBV5/ref=twister_B08ZJVTFGJ", "value": "Country", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31RlQv-xAzS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089WQXBST/ref=twister_B08ZJVTFGJ", "value": "Fish", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/416bTqEZfdS.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B00O30JKEU"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B00O30J87Y"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B00O30JLDK"}, {"is_selected": false, "is_available": true, "value": "Large Tall", "asin": "B00O30JCXY"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B00O30JBBM"}, {"is_selected": false, "is_available": true, "value": "X-Large Tall", "asin": "B00O30J9G4"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B00O30JF04"}, {"is_selected": false, "is_available": true, "value": "XX-Large Big Tall", "asin": "B00O30J70C"}, {"is_selected": false, "is_available": true, "value": "3X-Large Big", "asin": "B00O30JAFE"}, {"is_selected": false, "is_available": true, "value": "3X-Large Big Tall", "asin": "B075G12Q2H"}, {"is_selected": false, "is_available": true, "value": "4X-Large Big", "asin": "B075G26VHN"}, {"is_selected": false, "is_available": true, "value": "4X-Large Big Tall", "asin": "B075G1Q8MY"}, {"is_selected": false, "is_available": true, "value": "5X-Large Big", "asin": "B075G1SQ7T"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00O30JLDK", "category": "fashion", "query": "Men's T-Shirts", "page": 25, "small_description_old": "100% Cotton Imported Pull On closure Machine Wash Tagless Label, eliminates scratching Double needle stitching Screen printed sleeves and left chest design \n Extended tail and side ventsCamo collar, extended tail, and side vent tapingShow more"}, {"name": "Look Bella 10x Magnifying Compact Folding Double Mirror. Magnification for Hair Removal. Perfect for Purses. Distortion Free - Rose Gold", "product_information": {"Item Weight": "\u200e4.3 ounces", "Package Dimensions": "\u200e4.33 x 4.29 x 0.75 inches", "ASIN": "B084VWH12H", "Customer Reviews": {"ratings_count": 11, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#491,353 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #1,278 in Compact & Travel Mirrors"], "Date First Available": "February 17, 2020"}, "brand": "Brand: Look Bella", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Look+Bella", "full_description": "", "pricing": "$11.99", "list_price": "", "availability_quantity": 13, "availability_status": "Only 13 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41cTfTyL+NL.jpg", "https://m.media-amazon.com/images/I/41cGpXedahL.jpg", "https://m.media-amazon.com/images/I/41XPHtUg6rL.jpg", "https://m.media-amazon.com/images/I/41HKmRTvv5L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Mirrors \u203a Compact & Travel Mirrors", "average_rating": 4.8, "small_description": ["ULTRA SLIM & LIGHTWEIGHT - 4\" diameter and only 3/8\" thick. Compact size and powerful magnification make it the perfect companion in your luggage when traveling or in your purse when running errands. ", "STYLISH POUCH: Folds flat for storage in the included microfiber travel pouch with drawstring closure, letting you keep it close at hand at all times. Perfect for corporate or party gifts. ", "ANTI-DISTORTION 1X / 10X: Get a crystal clear view of your face. Ideal for applying make-up flawlessly, eyebrow tweezing or facial hair removal. ", "HANDS-FREE DESIGN! It fits perfectly in one hand but also stays open when resting on a table. "], "total_reviews": 11, "total_answered_questions": "", "customization_options": "", "seller_id": "A1RAJFABGG43ED", "seller_name": "FabLife", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B084VWH12H", "category": "beauty", "query": "Mirrors", "page": 63, "small_description_old": "About this item ULTRA SLIM & LIGHTWEIGHT - 4\" diameter and only 3/8\" thick. Compact size and powerful magnification make it the perfect companion in your luggage when traveling or in your purse when running errands. STYLISH POUCH: Folds flat for storage in the included microfiber travel pouch with drawstring closure, letting you keep it close at hand at all times. Perfect for corporate or party gifts. ANTI-DISTORTION 1X / 10X: Get a crystal clear view of your face. Ideal for applying make-up flawlessly, eyebrow tweezing or facial hair removal. HANDS-FREE DESIGN! It fits perfectly in one hand but also stays open when resting on a table. \n \u203a See more product details"}, {"name": "Paldo Fun & Yum Il Poom Seafood Instant Noodles with Spicy Seafood Based Broth, Best Oriental Style, Original Korean Ramyun, Spicy Ramen Challenge, K-Food, \uc77c\ud488 \ud574\ubb3c\ub77c\uba74 Family Pack, 120g (4.23 oz) x 20 PK", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 15.98 x 12.36 x 5.91 inches; 6.37 Pounds", "UPC\n \u200f": "\u200e\n 803211654778", "Manufacturer\n \u200f": "\u200e\n PALDO FUN & YUM", "ASIN\n \u200f": "\u200e\n B085W9G2QY", "Best Sellers Rank": "#125,527 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#408 in Packaged Noodle Soups", "#408 in Packaged Noodle Soups": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the PALDO FUN & YUM Store", "brand_url": "https://www.amazon.com/stores/PaldoFunYum/page/2528F987-E8E5-4727-9E1A-2C7B5F4F3FF3?ref_=ast_bln", "full_description": "", "pricing": "$39.93", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/518KAqhARsL.jpg", "https://m.media-amazon.com/images/I/513TEHxRmrL.jpg", "https://m.media-amazon.com/images/I/51A1FhF2PDL.jpg", "https://m.media-amazon.com/images/I/41C0hO5TFrL.jpg", "https://m.media-amazon.com/images/I/51Rc1NpwGIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Soups, Stocks & Broths \u203a Noodle Soups", "average_rating": 4.1, "small_description": ["A TASTE OF KOREA: We have captures the delicious taste of various Korean dishes so that they can be prepared in minutes but accessible anywhere in the world. This particular dish is the best oriental style and original Korean Ramyun. We strive to satisfy the cravings for tasty food, K-food favorites. ", "INGREDIENTS: The wheat flour noodles here are regular ramen noodles, they cooked well and had a decent bite and flavor. We carefully select the highest quality ingredients of hot and spicy noodles. This noodle contains solid blocks of ocean delicacies such as squid, shrimp, mussel, and wrinkled sea squirt in a refreshing and spicy soup. No meat, no trans-fat, and no cholesterol. ", "QUICK AND EASY DIRECTIONS: Simply put the noodles and flakes in a pot. Cook for 5 minutes, stirring occasionally. Remove from heat, serve, and enjoy! With the mission of providing better food and services, we continue our efforts to create a variety of noodles, high quality, packed with delicious and unique flavors. Net weight 120 grams (4.23 oz) pack of 20. ", "ENJOY AS MEAL OR SNACK: Enjoy authentic Korean flavor in the comfort of your own home! Make a full meal by adding your favorite meat along with some vegetables. The bowl contains the noodle block, a sachet of seasoning powder and sachet of dried garnish. ", "PALDO FUN & YUM: At Paldo Fun & Yum, it is our priority to produce products that are safe and delicious to eat and we stand behind all of our high-quality products. Your feedback is very important as we are always looking for ways to improve our services and products. We always hope you are highly satisfied with our high quality and unique flavored food. Directly from the manufacturer - Official Paldo Fun & Yum. "], "total_reviews": 11, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B085WB952G/ref=twister_B085WBC7S9?_encoding=UTF8&psc=1", "value": "4.23 Ounce (Pack of 5)", "price_string": "$18.75", "price": 18.75, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085W9Z8T7/ref=twister_B085WBC7S9?_encoding=UTF8&psc=1", "value": "Jang Ramen 10 Pack", "price_string": "$25.48", "price": 25.48, "image": null}, {"is_selected": true, "url": null, "value": "Jang Ramen 20 Pack", "price_string": "$39.93", "price": 39.93, "image": null}]}, "seller_id": "A2QRBSXH3ZC81S", "seller_name": "H2H Trading", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B085W9G2QY", "category": "grocery", "query": "Meat Snacks", "page": 333, "small_description_old": "About this item A TASTE OF KOREA: We have captures the delicious taste of various Korean dishes so that they can be prepared in minutes but accessible anywhere in the world. This particular dish is the best oriental style and original Korean Ramyun. We strive to satisfy the cravings for tasty food, K-food favorites. INGREDIENTS: The wheat flour noodles here are regular ramen noodles, they cooked well and had a decent bite and flavor. We carefully select the highest quality ingredients of hot and spicy noodles. This noodle contains solid blocks of ocean delicacies such as squid, shrimp, mussel, and wrinkled sea squirt in a refreshing and spicy soup. No meat, no trans-fat, and no cholesterol. QUICK AND EASY DIRECTIONS: Simply put the noodles and flakes in a pot. Cook for 5 minutes, stirring occasionally. Remove from heat, serve, and enjoy! With the mission of providing better food and services, we continue our efforts to create a variety of noodles, high quality, packed with delicious and unique flavors. Net weight 120 grams (4.23 oz) pack of 20. ENJOY AS MEAL OR SNACK: Enjoy authentic Korean flavor in the comfort of your own home! Make a full meal by adding your favorite meat along with some vegetables. The bowl contains the noodle block, a sachet of seasoning powder and sachet of dried garnish. PALDO FUN & YUM: At Paldo Fun & Yum, it is our priority to produce products that are safe and delicious to eat and we stand behind all of our high-quality products. Your feedback is very important as we are always looking for ways to improve our services and products. We always hope you are highly satisfied with our high quality and unique flavored food. Directly from the manufacturer - Official Paldo Fun & Yum."}, {"name": "Copercn Dress Ankle Booties For Women Ladies Fashion Casual Chunky Block High Heels Dress Pump Thermal Short Boots Winter Fall Dressy Short Boots For Business Work Wedding Party Dresses", "product_information": {"Item Weight\n \u200f": "\u200e\n 1.1 Pounds", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 1, 2021", "Manufacturer\n \u200f": "\u200e\n Women's Boots", "ASIN\n \u200f": "\u200e\n B09HLK159K", "Best Sellers Rank": "#3,821,375 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#23,993 in Women's Ankle Boots & Booties", "#23,993 in Women's Ankle Boots & Booties": ""}, "brand": "Brand: Copercn", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Copercn", "full_description": "\ud83d\udc9eProduct Details:1.Comfortable: Padded and footbed will mold to the shape of your foot, perfect for long distance walking, stop your feet from getting tired and reduce heel pain.2.Super Lightweight: Soft flexible and easy to carry, washable. Soft & non-slip rubber outsole gives you safe and secure footing and prevents from abrasion.3.Occasion: Summer essential, whether you wear shorts,T-shirts or skirts, simple sandals to make it look instantly stylish. Perfect for hiking, beach, leisure, work and so on.\ud83d\udc9eNOTE:1.Please refer to the SIZE CHART of SELLER in product images before ordering. (Not Amazon Size Chart).2.The shoes print CN Size, not EU Size!3.The size is manually measured, there will be an error of about 0.5 cm and you can choose a bigger size.4.Colors may appear slightly different via website due to computer picture resolution and monitor settings.5.If you have any doubts, please contact customer service for suggestions; We will reply you within 24 hours.", "pricing": "$17.99$23.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31wFlw8gJ4L.jpg", "https://m.media-amazon.com/images/I/41O0qrP7G6L.jpg", "https://m.media-amazon.com/images/I/41VjNhLjqbL.jpg", "https://m.media-amazon.com/images/I/415wTeEsZeL.jpg", "https://m.media-amazon.com/images/I/313K5-pcEVL.jpg", "https://m.media-amazon.com/images/I/51VN9Z42+BL.jpg", "https://m.media-amazon.com/images/I/41uQ+g8AZrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Boots \u203a Ankle & Bootie", "average_rating": "", "small_description": ["Pu ", "Rubber sole ", "\ud83c\udf3a\u3010Unique Style\u3011 Stay comfortable and on-trend, available in varieties color to pair, perfect with your daily outfits, whether in casual or dressing up!\ud83c\udf3a\u3010Non-slip\u3011 Wear resistant rubber outsole, textured, maintain grip on uneven and smooth terrain, walk safely on slippery and wet, adapt to different weather.\ud83c\udf3a\u3010Occasion\u3011 Suit for spring, summer and sutumn wear. Perfect paired with dresses, skirts, shorts, and denim. Suitable for work, shopping, date, hiking, comfort for all-day wear. ", "professional black white pink sunflower blue low heel sandals for women high size stripes stuart jewel wide comfortable plattform color block width heels dress closed toe dressy platform with arch support wedge flower lace up multicolor peep wedges shoes red bows womens slip and slides strappy summer women's gladiator flip flops ankle strap flat animal print brown leather thong open elastic hiking jeweled 1/2 slippers woman waterproof walking comfort shoe floral fun mid-height rain boots jaunt ", "shorty boot stylish light outdoor work mid calf lightweight cute booties fashion out garden tall anti-slipping ladies insoles piccadilly hunter short purple pool slide bow gold silver flats party leopard price girls beach clarks buck chunky lugged sole fly knit casual gore heeled round lengthens legs plaid more possibility clothes enough look great closet in wardrobe jeans overcoat sweater the are suitable street club school wedding office leisure ", "women boot leather shoes sneaker casual heels sandal work flat slip wide width clearance new comfort sexy pumps dressy platform business heel chunky low closed toe ankle knee high girl hiking fashion open winter short waterproof lightweight brown ", "western booties for women snip toe with heel womens fringe leather sole boot side zipper ankle boots white low black square waterproof dressy wedge high open heels knee block chunky cowgirl soda cheap wide calf round cowboy chelsea construction pointed brown sexy toes out short turquoise stitch red flats width tall squared wedding no cutouts platform pointy flat gray blue pink sparkle floral bottom jeans rise socks mid calves inch foot sunflower sprained slip plathform cutout green lace up "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "6.5", "asin": "B09HLK159K"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B09HMCKZQW"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09HMCFZWG"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B09HMCRNWH"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B09HLL2VWR"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B09HM94ZPR"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09HMCKZQW", "category": "fashion", "query": "Women's Pumps", "page": 30, "small_description_old": "\ud83c\udf3a\u3010Unique Style\u3011 Stay comfortable and on-trend, available in varieties color to pair, perfect with your daily outfits, whether in casual or dressing up!\ud83c\udf3a\u3010Non-slip\u3011 Wear resistant rubber outsole, textured, maintain grip on uneven and smooth terrain, walk safely on slippery and wet, adapt to different weather.\ud83c\udf3a\u3010Occasion\u3011 Suit for spring, summer and sutumn wear. Perfect paired with dresses, skirts, shorts, and denim. Suitable for work, shopping, date, hiking, comfort for all-day wear. professional black white pink sunflower blue low heel sandals for women high size stripes stuart jewel wide comfortable plattform color block width heels dress closed toe dressy platform with arch support wedge flower lace up multicolor peep wedges shoes red bows womens slip and slides strappy summer women's gladiator flip flops ankle strap flat animal print brown leather thong open elastic hiking jeweled 1/2 slippers woman waterproof walking comfort shoe floral fun mid-height rain boots jaunt shorty boot stylish light outdoor work mid calf lightweight cute booties fashion out garden tall anti-slipping ladies insoles piccadilly hunter short purple pool slide bow gold silver flats party leopard price girls beach clarks buck chunky lugged sole fly knit casual gore heeled round lengthens legs plaid more possibility clothes enough look great closet in wardrobe jeans overcoat sweater the are suitable street club school wedding office leisure women boot leather shoes sneaker casual heels sandal work flat slip wide width clearance new comfort sexy pumps dressy platform business heel chunky low closed toe ankle knee high girl hiking fashion open winter short waterproof lightweight brown western booties for women snip toe with heel womens fringe leather sole boot side zipper ankle boots white low black square waterproof dressy wedge high open heels knee block chunky cowgirl soda cheap wide calf round cowboy chelsea construction pointed brown sexy toes out short turquoise stitch red flats width tall squared wedding no cutouts platform pointy flat gray blue pink sparkle floral bottom jeans rise socks mid calves inch foot sunflower sprained slip plathform cutout green lace up"}, {"name": "CLAIR BEAUTY Hemp & Rose Nourishing Under Eye Mask Patches - Moisturizing & Replenishing | Reduces Fine Lines & Wrinkles | Reduces Dehydration & Puffiness | Made in Korea - 5 Pairs", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3 x 1 x 5 inches; 2.26 Ounces", "UPC\n \u200f": "\u200e\n 689513271659", "ASIN\n \u200f": "\u200e\n B082T4FKHD", "Best Sellers Rank": "#379,292 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,001 in Eye Masks", "#1,001 in Eye Masks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Clair Beauty", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Clair+Beauty", "full_description": "Formulation is nourishing to the eye area. Will help soothe and give moisture to tired eyes. Great for fine lines and wrinkles.", "pricing": "$14.25", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51oDNQEuf+L.jpg", "https://m.media-amazon.com/images/I/51gWy9pqMLL.jpg", "https://m.media-amazon.com/images/I/51dtm4FtY5L.jpg", "https://m.media-amazon.com/images/I/516qj288c3L.jpg", "https://m.media-amazon.com/images/I/41LCkmOJg-L.jpg", "https://m.media-amazon.com/images/I/51t+Gsf+7gL.jpg", "https://m.media-amazon.com/images/I/51EY2lnBknL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Eyes \u203a Masks", "average_rating": 3.8, "small_description": [""], "total_reviews": 17, "total_answered_questions": "", "customization_options": "", "seller_id": "A1IQK78BGCHH16", "seller_name": "Connor Easton", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B082T4FKHD", "category": "beauty", "query": "Eyes Care", "page": 123, "small_description_old": ""}, {"name": "meyarn Interdental Brush for Braces Toothpick 50Count Tooth Floss Oral Hygiene Interdental Brush Toothpick Teeth Healthy Care Tight 0.8mm", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 2.36 x 0.2 x 2.36 inches; 3.53 Ounces", "UPC\n \u200f": "\u200e\n 785986325315", "Manufacturer\n \u200f": "\u200e\n meyarn", "ASIN\n \u200f": "\u200e\n B08XH9JMTG", "Best Sellers Rank": "#42,934 in Health & Household (See Top 100 in Health & Household)#205 in Dental Floss", "#205 in Dental Floss": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the meyarn Store", "brand_url": "https://www.amazon.com/stores/meyarn/page/1289E19E-704A-433E-8F2F-A6AA5C1481DB?ref_=ast_bln", "full_description": "", "pricing": "$11.89", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51P6MlkplmS.jpg", "https://m.media-amazon.com/images/I/419RGE9eIwS.jpg", "https://m.media-amazon.com/images/I/41bp0zTiIiS.jpg", "https://m.media-amazon.com/images/I/512BnajRcdS.jpg", "https://m.media-amazon.com/images/I/51qF7L8KgHS.jpg", "https://m.media-amazon.com/images/I/41rGi9DjK-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Dental Floss & Picks \u203a Dental Floss", "average_rating": 4.4, "small_description": ["The round joint at the top is matched with DuPont filament bristles, flexible and resistant to breakage, and protects the gums from damage. Custom size, easy to clean the bracket residue. Non-slip I-shaped handle, comfortable and easy to hold without slipping. Individual package, hygienic, and portable. ", "According to the teeth gaps of different groups of people, we have different thicknesses of 0.6mm, 0.7mm, 0.8mm, 1.0mm, 1.2mm. It is recommended to choose 0.7mm for the first use. ", "Triangular-shaped nylon bristles increase plaque removal effectiveness ", "The ergonomically designed handle is easy to use, has high density, and is not easy to fall off, and it will not slip during use. ", "Independent packaging, clean and hygienic, fully guarantee the cleanliness of the product. "], "total_reviews": 54, "total_answered_questions": 10, "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08XJ71XLP/ref=twister_B08Y5C1T7X?_encoding=UTF8&psc=1", "value": "0.6mm", "price_string": "$8.49", "price": 8.49, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08XJ388B3/ref=twister_B08Y5C1T7X?_encoding=UTF8&psc=1", "value": "0.7mm", "price_string": "$8.49", "price": 8.49, "image": null}, {"is_selected": true, "url": null, "value": "0.8mm", "price_string": "$11.89", "price": 11.89, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08XJF919X/ref=twister_B08Y5C1T7X?_encoding=UTF8&psc=1", "value": "1.0mm", "price_string": "$8.49", "price": 8.49, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08XGRYWCV/ref=twister_B08Y5C1T7X?_encoding=UTF8&psc=1", "value": "1.2mm", "price_string": "$13.59", "price": 13.59, "image": null}]}, "seller_id": "A31FZEP9VRYXSN", "seller_name": "Meyarn", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08XH9JMTG", "category": "beauty", "query": "Lip Care", "page": 72, "small_description_old": "About this item The round joint at the top is matched with DuPont filament bristles, flexible and resistant to breakage, and protects the gums from damage. Custom size, easy to clean the bracket residue. Non-slip I-shaped handle, comfortable and easy to hold without slipping. Individual package, hygienic, and portable. According to the teeth gaps of different groups of people, we have different thicknesses of 0.6mm, 0.7mm, 0.8mm, 1.0mm, 1.2mm. It is recommended to choose 0.7mm for the first use. Triangular-shaped nylon bristles increase plaque removal effectiveness The ergonomically designed handle is easy to use, has high density, and is not easy to fall off, and it will not slip during use. Independent packaging, clean and hygienic, fully guarantee the cleanliness of the product."}, {"name": "Canadian Tuxedo T Shirt - Novelty Denim Tux T-Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n October 9, 2018", "Manufacturer\n \u200f": "\u200e\n TUX-TEES", "ASIN\n \u200f": "\u200e\n B07JVVDJ6L", "Best Sellers Rank": "#5,328,894 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#485,102 in Girls' Novelty Clothing #489,260 in Boys' Novelty Clothing #716,845 in Boys' Fashion", "#485,102 in Girls' Novelty Clothing": "", "#489,260 in Boys' Novelty Clothing": "", "#716,845 in Boys' Fashion": ""}, "brand": "Brand: TUX-TEES", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=TUX-TEES", "full_description": "", "pricing": "$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/B1EryObaEWS.png", "https://m.media-amazon.com/images/I/417S+7cf-vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Shirts \u203a T-Shirts", "average_rating": "", "small_description": ["Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester ", "Imported ", "Machine Wash ", "Get this Canadian Tuxedo T Shirt as a gift for your favorite Canadian, cowboy, lumberjack, casual tuxedo wearer, denim lover, or jean fanatic. If you love dressing up while dressing down, sleeveless denim or bolo ties, this is the tshirt for you. ", "Wear this hilarious ironic t-shirt while, tapping maple trees, being polite, or wrestling moose in Quebec, Ontario, New Brunswick, Nova Scotia or British Columbia. Show your maple leaf and Canook pride. Perfect for a halloween costume or fancy dress party. ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07JVVDJ6L?_encoding=UTF8&customId=B07HPYXX91", "value": "Women", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07JVVDJ6L?_encoding=UTF8&customId=B0752XJZ5Z", "value": "Youth", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1rRKBtT74S.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07JVVDJ6L?_encoding=UTF8&customId=B0752XK16C", "value": "Baby Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1%2BX4VYCfoS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07JVVDJ6L?_encoding=UTF8&customId=B07537TZ66", "value": "Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/C1xk9V1QWKS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07JVVDJ6L?_encoding=UTF8&customId=B07537PBB4", "value": "Heather Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1Rv34VM9pS.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07537NG8H"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B0752XM8L9"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B0753882Y7"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07537TZ16"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07537PB3M"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B07537HNTB"}, {"is_selected": false, "is_available": false, "value": "2T", "asin": "B07HPZ61T9"}, {"is_selected": false, "is_available": false, "value": "3T", "asin": "B07HPX9TBH"}, {"is_selected": false, "is_available": false, "value": "4T", "asin": "B0752XJZ5Z"}, {"is_selected": false, "is_available": false, "value": "X-Small", "asin": "B07537RLH9"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07JVVDJ6L", "category": "fashion", "query": "Men's Tuxedo Shirts", "page": 11, "small_description_old": "Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester Imported Machine Wash Get this Canadian Tuxedo T Shirt as a gift for your favorite Canadian, cowboy, lumberjack, casual tuxedo wearer, denim lover, or jean fanatic. If you love dressing up while dressing down, sleeveless denim or bolo ties, this is the tshirt for you. Wear this hilarious ironic t-shirt while, tapping maple trees, being polite, or wrestling moose in Quebec, Ontario, New Brunswick, Nova Scotia or British Columbia. Show your maple leaf and Canook pride. Perfect for a halloween costume or fancy dress party. Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "MNBVCXZ Watch Bands Compatible for Apple Watch Band 44mm 45mm 40mm 41mm with Protective Case for Men & Women, Sport Waterproof Strap for iWatch SE Series 7/6/5/4 (40mm 41mm,Midnight blue)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 9.76 x 1.8 x 0.7 inches; 1.13 Ounces", "Department\n \u200f": "\u200e\n All", "Date First Available\n \u200f": "\u200e\n August 15, 2021", "Manufacturer\n \u200f": "\u200e\n MNBVCXZ-US", "ASIN\n \u200f": "\u200e\n B09B7551X2", "Best Sellers Rank": "#170,668 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories)#8,067 in Smartwatch Bands", "#8,067 in Smartwatch Bands": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the MNBVCXZ Store", "brand_url": "https://www.amazon.com/stores/MNBVCXZ/page/A5D24F62-58FC-48C6-8473-766FE16B79B0?ref_=ast_bln", "full_description": "", "pricing": "$10.99", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41t98EQf1fL.jpg", "https://m.media-amazon.com/images/I/41kh83-qvvL.jpg", "https://m.media-amazon.com/images/I/511-CVyHQAL.jpg", "https://m.media-amazon.com/images/I/51IOPKQNazL.jpg", "https://m.media-amazon.com/images/I/514Ute3bQDL.jpg", "https://m.media-amazon.com/images/I/51q0bTJMvKL.jpg", "https://m.media-amazon.com/images/I/51yZoG+9OzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Smartwatch Accessories \u203a Smartwatch Bands", "average_rating": 3.7, "small_description": [""], "total_reviews": 6, "total_answered_questions": "", "customization_options": "", "seller_id": "A2FSS8BZE9Z9RA", "seller_name": "BestMan-US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09B7551X2", "category": "electronics", "query": "Wearable Technology", "page": 72, "small_description_old": "[Soft and breathable] Soft and breathable sports strap, you can use it in daily life such as trimming lawn branches, picnics with your family, and also perfect for men or women who have outdoor sports, like swimming, climbing and running, etc. [High-quality material] Designed with high-quality TPU material, soft and breathable sports strap. Lightweight design is not bulky, no matter how long you use it, you will feel comfortable. It is very suitable for women or men who have outdoor activities. [Full body protection] The 360-degree integrated protective cover can completely cover the edge of the watch, effectively protecting your iwatch from scratches and scratches on the surface. The protective cover and watch strap made of soft and elastic TPU are the first choice to prevent falling and damage. [Easy to install/remove] The soft frame is not easy to damage, it is quick and easy to install or remove, and it will never fall off. Note: The screen protector is not included. [Compatibility] Designed for Apple Watch 40mm 41mm Band. Compatible with iWatch SE / Series 7/ Series 6 / Series 5 / Series 4. Fits 5.51\"-8.27\" (140mm-210mm) wrist size."}, {"name": "Woolrich Women's Autumn Ridge Ii Slipper", "product_information": {"Item model number\n \u200f": "\u200e\n WW7725", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n November 8, 2018", "Manufacturer\n \u200f": "\u200e\n Woolrich", "ASIN\n \u200f": "\u200e\n B07KBQJV59", "Best Sellers Rank": "#1,985,987 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#8,491 in Women's Slippers", "#8,491 in Women's Slippers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Woolrich Store", "brand_url": "https://www.amazon.com/stores/WOOLRICH/page/5E7E6777-7C24-4797-AABD-EFA2EFFFF989?ref_=ast_bln", "full_description": "Woolrich, the original outdoor clothing company, was founded on the principals of solid outdoor gear for real outdoorsmen and women; real, functional product that solves problems and creates an emotional connection.", "pricing": "$24.99", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41DsD53YecL.jpg", "https://m.media-amazon.com/images/I/51XNpShi7tL.jpg", "https://m.media-amazon.com/images/I/51gbykLIuJL.jpg", "https://m.media-amazon.com/images/I/41F44gu6V+L.jpg", "https://m.media-amazon.com/images/I/41SnqmF0faL.jpg", "https://m.media-amazon.com/images/I/41Ag9zhZseL.jpg", "https://m.media-amazon.com/images/I/41cco7bJ8xL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Slippers", "average_rating": 4.3, "small_description": ["100% Suede/Faux Fur ", "Imported ", "Rubber sole ", "Suede upper and warm fleece lining. faux fur cuff. comfort-cushion insole. durable indoor/outdoor sole. ", "Suede upper and warm fleece lining ", "Faux fur cuff ", "Comfort-cushion insole ", "Durable indoor/outdoor sole "], "total_reviews": 33, "total_answered_questions": "", "customization_options": {"Size": null, "Color": null}, "seller_id": "A3V17JP5RCORRR", "seller_name": "Fanletic", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01N9I1E62", "category": "fashion", "query": "Women's Slippers", "page": 29, "small_description_old": "100% Suede/Faux Fur Imported Rubber sole Suede upper and warm fleece lining. faux fur cuff. comfort-cushion insole. durable indoor/outdoor sole. Suede upper and warm fleece lining Faux fur cuff Comfort-cushion insole Durable indoor/outdoor sole"}, {"name": "Digipartspower AC in Power Cord Outlet Socket Cable Plug Lead Compatible for Panasonic DMR-EH69 DMR-EH69GC-K DMR 69EH DVD VHS Combo Player-Recorder", "product_information": {"Item Weight": "3 ounces", "ASIN": "B0972M4N2W", "Date First Available": "June 11, 2021", "Manufacturer": "Digipartspower"}, "brand": "Brand: Digipartspower", "brand_url": "https://www.amazon.com/Digipartspower/b/ref=bl_dp_s_web_10217583011?ie=UTF8&node=10217583011&field-lbr_brands_browse-bin=Digipartspower", "full_description": "Digipartspower AC IN Power Cord Outlet Socket Cable Plug Lead compatible for Panasonic DMR-EH69 DMR-EH69GC-K DMR 69EH DVD VHS Combo Player-recorder", "pricing": "$10.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41kQKk7KoiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Power Cables", "average_rating": "", "small_description": ["This is a BRAND NEW( Non-OEM ), Black, Double Barrel, 2 prong AC Power Cord with high quality for Printers, Laptops and many other electronics that use AC Adapters. ", "Use this cable with laptop computers, notebooks, game consoles, printers and any other electronic devices that use a 2-prong power cord. Plugs into any US standard wall outlet. ", "This product has good compatibility, so it can work well with other devices that fits it.(If you cannot sure the device type, please contact us.) ", "Confirmed Compatible with: Work with most brands PC like Toshiba, IBM, Sony, DELL, Compaq, HP, NEC, Acer, AST, etc. ", "\u3010NOTE\u3011\uff1aPlease ensure that you have ordered the right type before purchsing. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ADB3XES086OPI", "seller_name": "Digipartspower", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0972M4N2W", "category": "electronics", "query": "DVD Players & Recorders", "page": 123, "small_description_old": "This is a BRAND NEW( Non-OEM ), Black, Double Barrel, 2 prong AC Power Cord with high quality for Printers, Laptops and many other electronics that use AC Adapters. Use this cable with laptop computers, notebooks, game consoles, printers and any other electronic devices that use a 2-prong power cord. Plugs into any US standard wall outlet. This product has good compatibility, so it can work well with other devices that fits it.(If you cannot sure the device type, please contact us.) Confirmed Compatible with: Work with most brands PC like Toshiba, IBM, Sony, DELL, Compaq, HP, NEC, Acer, AST, etc. \u3010NOTE\u3011\uff1aPlease ensure that you have ordered the right type before purchsing."}, {"name": "Amazon Brand - Happy Belly Amazon Brand Sliced Almonds, 12 Ounce", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 6.5 x 3.25 x 9.13 inches; 1 Pounds", "UPC\n \u200f": "\u200e\n 842379102073", "Manufacturer\n \u200f": "\u200e\n AFS Brands LLC", "ASIN\n \u200f": "\u200e\n B072MR7PPJ", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#15,570 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#47 in Almonds", "#47 in Almonds": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Happy Belly Store", "brand_url": "https://www.amazon.com/stores/HappyBelly/page/35E92FB8-2CD1-4FDA-87AE-5122F4A1A0F9?ref_=ast_bln", "full_description": "Happy Belly Sliced Almonds are pure almonds with nothing added. Thinly sliced and recipe-ready in a stand-up, resealable bag to help ensure maximum deliciousness in between openings.", "pricing": "$5.46", "list_price": "", "availability_status": "Usually ships within 8 days.", "images": ["https://m.media-amazon.com/images/I/418+htbGRaL.jpg", "https://m.media-amazon.com/images/I/31aahtXoqmL.jpg", "https://m.media-amazon.com/images/I/412UXGVvydL.jpg", "https://m.media-amazon.com/images/I/51dE7swOPrL.jpg", "https://m.media-amazon.com/images/I/31+TeZjEwZL.jpg", "https://m.media-amazon.com/images/I/31U0-5apPjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Nuts & Seeds \u203a Almonds", "average_rating": 4.7, "small_description": ["One 12-ounce stand-up, resealable bag. ", "Pure almonds, nothing added. ", "Happy Belly Sliced Almonds are ready to go for all your recipe and snacking needs. ", "Satisfaction Guarantee: We're proud of our products. If you aren't satisfied, we'll refund you for any reason within a year of purchase. 1-877-485-0385 "], "total_reviews": 1262, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B072MR7PPJ", "category": "grocery", "query": "Dried Fruits & Raisins", "page": 122, "small_description_old": "About this item One 12-ounce stand-up, resealable bag. Pure almonds, nothing added. Happy Belly Sliced Almonds are ready to go for all your recipe and snacking needs. Satisfaction Guarantee: We're proud of our products. If you aren't satisfied, we'll refund you for any reason within a year of purchase. 1-877-485-0385 An Amazon brand"}, {"name": "AMONIDA LED Digital Clock, Adjustable Brightness Digital Alarm Clock Auto Dimming Multi Functional Decorative USB Charging for Bedroom for Office(White)", "product_information": {"Package Dimensions": "7.87 x 3.94 x 1.97 inches", "Item Weight": "8 ounces", "Manufacturer": "AMONIDA", "ASIN": "B09P8JXLSY"}, "brand": "Brand: AMONIDA", "brand_url": "https://www.amazon.com/AMONIDA/b/ref=bl_dp_s_web_20241647011?ie=UTF8&node=20241647011&field-lbr_brands_browse-bin=AMONIDA", "full_description": "Feature:1. Mirror Screen: This digital alarm clock uses a unique LED mirror design, in addition to being your daily clock, it can also be used as a makeup mirror.2. Temperature Display: Electronic alarm clock with temperature display function, two modes of Celsius \u2103 and Fahrenheit \u2109 can be switched to meet different needs.3. Automatic Dimming: High sensitivity light sensor, automatically adjust the display brightness according to the environment, you can also set it manually.4. Rechargeable: Built in 250mAhCE2032 button battery in mirror alarm clock, 5V voltage, support USB charging, and can be charged by computer, power bank, etc.5. Time Display: Digital clock with time display function, including month, day, and year (from 2000 to 2099) display, suitable for use in bedrooms, offices, studies, etc.How to Use:After\u00a0unplugging\u00a0the\u00a0isolation\u00a0sheet,\u00a0the\u00a0LED\u00a0display\u00a0rapidly\u00a0changes\u00a0from\u00a00000\u00a0to\u00a09999,\u00a0and\u00a0then\u00a0enters\u00a0the\u00a0normal\u00a0clock\u00a0mode\u00a0with\u00a0a\u00a0beep.Specification:Item Type: Digital Alarm ClockMaterial: ABSProduct Size: Approx. 18.4 x 9.4 x 4.2cm / 7.2 x 3.7 x 1.7inVoltage: 5VTime Display: (Month, Day, Year, From 2000 to 2099)Temperature Display: -10\u2103\uff5e50\u2103 (14\u2109\uff5e122\u2109)Mode Selection: dP-1, dP-2, dP-3Battery: CE2032 Button Battery 250mAh (Included)Weight: Approx. 227g/8.0oz Package List:1 x\u00a0Digital Alarm Clock1 x USB Power Cord1 x ManualNote:Manual measurement, please allow 0.4\u20110.7in error.", "pricing": "$19.69", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31Wf3lXlwQL.jpg", "https://m.media-amazon.com/images/I/41QHGrHUiJL.jpg", "https://m.media-amazon.com/images/I/51LA2m37LmL.jpg", "https://m.media-amazon.com/images/I/51SiGgUYNhL.jpg", "https://m.media-amazon.com/images/I/41Yiq2x70uL.jpg", "https://m.media-amazon.com/images/I/31he2nnKNKL.jpg", "https://m.media-amazon.com/images/I/41JyFHWF3CL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Compact Radios & Stereos \u203a Clock Radios", "average_rating": "", "small_description": ["Mirror Screen: This digital alarm clock uses a unique LED mirror design, in addition to being your daily clock, it can also be used as a makeup mirror. ", "Time Display: Digital clock with time display function, including month, day, and year (from 2000 to 2099) display, suitable for use in bedrooms, offices, studies, etc. ", "Rechargeable: Built in 250mAhCE2032 button battery in mirror alarm clock, 5V voltage, support USB charging, and can be charged by computer, power bank, etc. ", "Automatic Dimming: High sensitivity light sensor, automatically adjust the display brightness according to the environment, you can also set it manually. ", "Temperature Display: Electronic alarm clock with temperature display function, two modes of Celsius \u2103 and Fahrenheit \u2109 can be switched to meet different needs. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09P8J9TPN/ref=twister_B09PKTHS7G?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$19.69", "price": 19.69, "image": "https://m.media-amazon.com/images/I/31MdolnuoZL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$19.69", "price": 19.69, "image": "https://m.media-amazon.com/images/I/31Wf3lXlwQL.jpg"}]}, "seller_id": "A2Q0PAAJNHHY5M", "seller_name": "Juicemo66", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P8JXLSY", "category": "electronics", "query": "Clock Radios", "page": 137, "small_description_old": "Mirror Screen: This digital alarm clock uses a unique LED mirror design, in addition to being your daily clock, it can also be used as a makeup mirror. Time Display: Digital clock with time display function, including month, day, and year (from 2000 to 2099) display, suitable for use in bedrooms, offices, studies, etc. Rechargeable: Built in 250mAhCE2032 button battery in mirror alarm clock, 5V voltage, support USB charging, and can be charged by computer, power bank, etc. Automatic Dimming: High sensitivity light sensor, automatically adjust the display brightness according to the environment, you can also set it manually. Temperature Display: Electronic alarm clock with temperature display function, two modes of Celsius \u2103 and Fahrenheit \u2109 can be switched to meet different needs."}, {"name": "Can Organizer for Pantry Stackable Can Storage Dispenser Rack 2 Pack 3 Tier Can Holder for Pantry Hold up to 72 cans for Kitchen Cabinet, Black", "product_information": {"Product Dimensions": "16.5 x 13.3 x 14.7 inches", "Item Weight": "6.71 pounds", "ASIN": "B09LVDSDQG", "Best Sellers Rank": ["#91,994 in Kitchen & Dining (See Top 100 in Kitchen & Dining) #87 in Stacking Can Dispensers #2,541 in Home Cabinet Organizers"], "Date First Available": "November 15, 2021"}, "brand": "Visit the CADUKE Store", "brand_url": "https://www.amazon.com/stores/CADUKE/page/378286F0-37E9-47F2-81A6-EA190FBC38C0?ref_=ast_bln", "full_description": "", "pricing": "$45.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/61sBe+OMfLL.jpg", "https://m.media-amazon.com/images/I/51ahO7emvQL.jpg", "https://m.media-amazon.com/images/I/51PKlQQuzML.jpg", "https://m.media-amazon.com/images/I/51HAi-APKfL.jpg", "https://m.media-amazon.com/images/I/51miQotVQzL.jpg", "https://m.media-amazon.com/images/I/519Y7WGpXhL.jpg", "https://m.media-amazon.com/images/I/51H2UDr5p3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Kitchen & Dining \u203a Storage & Organization \u203a Food Storage \u203a Stacking Can Dispensers", "average_rating": "", "small_description": ["Stackable & Tilt Design: The can rack organizer for pantry adopts stackable design allows flexible storage of various canned products or jars. This organizer is an essential addition to your kitchen. It can be placed anywhere, whether it\u2019s your pantry shelf, kitchen cabinet, countertop or restaurant. Tilt degrees when you remove the front cans; the back cans will roll to the front for easy removal and putting down when you remove the front cans. ", "Free Up Space: The size of the 3 tier can storage dispenser is 16.5*13.3*14.7 in, holding up to 72 cans. Reduce the occupation of countertop space and make messy cabinets or countertops tidy. Suitable for kitchen living room pantry cabinet. ", "Six Adjustable Dividers: The six adjustable dividers provide more flexibility to store different cans, jars, beverages that can be aligned and organized. It is practicable, and the can storage organizer rack is perfect for adding storage to your home. An excellent gift for family and friends. ", "Stable Structure: This stackable can rack is made of sturdy durable metal material and strong iron pipes. strong and durable. And the legs with rubber pads to prevent it from sliding or scratching the surface. ", "Easy to Assemble: The stacking can storage dispenser rack adopts an assembled design; tools and fittings are provided. You can complete it by following the detailed graphical assembly instructions. You will have a perfect can rack. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09LV9XF1H/ref=twister_B09T5NC1G4?_encoding=UTF8&psc=1", "value": "1 pack", "price_string": "$25.99", "price": 25.99, "image": null}, {"is_selected": true, "url": null, "value": "2 pack", "price_string": "$45.99", "price": 45.99, "image": null}]}, "seller_id": "A1SEZ9R7JEXTO6", "seller_name": "CADUKE Direct", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09LVDSDQG", "category": "garden", "query": "Cabinets", "page": 170, "small_description_old": "Stackable & Tilt Design: The can rack organizer for pantry adopts stackable design allows flexible storage of various canned products or jars. This organizer is an essential addition to your kitchen. It can be placed anywhere, whether it\u2019s your pantry shelf, kitchen cabinet, countertop or restaurant. Tilt degrees when you remove the front cans; the back cans will roll to the front for easy removal and putting down when you remove the front cans. Free Up Space: The size of the 3 tier can storage dispenser is 16.5*13.3*14.7 in, holding up to 72 cans. Reduce the occupation of countertop space and make messy cabinets or countertops tidy. Suitable for kitchen living room pantry cabinet. Six Adjustable Dividers: The six adjustable dividers provide more flexibility to store different cans, jars, beverages that can be aligned and organized. It is practicable, and the can storage organizer rack is perfect for adding storage to your home. An excellent gift for family and friends. Stable Structure: This stackable can rack is made of sturdy durable metal material and strong iron pipes. strong and durable. And the legs with rubber pads to prevent it from sliding or scratching the surface. Easy to Assemble: The stacking can storage dispenser rack adopts an assembled design; tools and fittings are provided. You can complete it by following the detailed graphical assembly instructions. You will have a perfect can rack."}, {"name": "FOHOG Collection Flannel Fleece Silky Soft Throw Shaggy Blanket Lightweight Comfy and Cozy Plush Microfiber Travel Silk 50\" X 60\" for Sofa Couch Bed (127 cm X 152 cm) (Buffalo Plaid)", "product_information": {"Package Dimensions": "9 x 6.5 x 4.5 inches", "Item Weight": "11 ounces", "Manufacturer": "FOHOG Collection", "ASIN": "B09KTB1VG6", "Customer Reviews": {"ratings_count": 13, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#1,008,083 in Home & Kitchen (See Top 100 in Home & Kitchen) #8,694 in Bed Throws"], "Fabric Type": "100% Microfiber Polyester", "Fill material Type": "100% Microfiber Polyester", "Material Care Instructions": "Machine Wash", "Warranty Description": "MONEY BACK GUARANTEE : If you are not satisfied with this blanket for any reason, just return it within 30 days for a full refund, no questions asked", "Batteries Required?": "No"}, "brand": "Brand: FOHOG Collection", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=FOHOG+Collection", "full_description": "* FOHOG Collection - Qualified Brand Products selection* Made of 100% Microfiber Polyester.* This blanket will make you feel warm just looking at it and once your cover yourself with it you will be pleasantly toasty and comfortable.* Specially made for all year round.* Can be used while snuggling and watching your favorite TV shows on the couch - Bring extra soft and comfort for an afternoon nap in bed covering with our fleece blanket - Perfect for indoor and outdoor use to provide continuous warmth in chilly weather, especially for camping and picnic * Perfect for using on couch sofa bed or Use the throw blankets in the car for travel, curl up on your back patio, spread them out at the beach for a nap. Also, it is perfect for animals such as dogs and ferrets, to warm them up in their crates * They're easy to take care for, and they are machine washable.* FOHOG Collection lasts a long time.", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41q5PCDmRML.jpg", "https://m.media-amazon.com/images/I/51pG8oGkeuL.jpg", "https://m.media-amazon.com/images/I/51lFsInCkCL.jpg", "https://m.media-amazon.com/images/I/41Dd2XaCjFL.jpg", "https://m.media-amazon.com/images/I/41azoaM45QL.jpg", "https://m.media-amazon.com/images/I/41gtRsLkhZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Blankets & Throws \u203a Throws", "average_rating": 4.6, "small_description": ["100% Microfiber Polyester ", "Material: the warm plush throw blanket is made of 100% Microfiber Polyester for long use ", "Versatile Usage: Enjoy your family happy hours with FOHOG Collection plush and warm flannel fleece throw blankets while snuggling and watching your favorite TV shows on the couch - Bring extra soft and comfort for an afternoon nap in bed covering with our fleece blanket - Perfect for indoor and outdoor use to provide continuous warmth in chilly weather, especially for camping and picnic ", "Vibrant Decor: FOHOG Collection flannel fleece blanket is perfect for using on couch sofa bed or Use the throw blankets in the car for travel, curl up on your back patio, spread them out at the beach for a nap. Also, it is perfect for animals such as dogs and ferrets, to warm them up in their crates ", "Lightweight But Keep Warm: FOHOG Collection cozy fleece blanket makes you feel more breathable and lightweight to keep your body warm. Neat stitches enhance strong connections at seams and better structural strength with integrated outlook. FOHOG Collection makes your feel warm and soft always ", "Satisfaction Guaranteed: If you are not happy with your throw blanket for any reason, please contact us at customer service at any time. We will refund your money back with no questions asked - FOHOG Collection strives to provide 60 days return and replacement service & life-time free customer service - We want our customers to be 100% happy and satisfied "], "total_reviews": 13, "total_answered_questions": "", "customization_options": "", "seller_id": "ADYHFBWZVSE7P", "seller_name": "Urbanity Trading", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09KTB1VG6", "category": "garden", "query": "Throw Blankets", "page": 5, "small_description_old": "About this item\n \nMaterial: the warm plush throw blanket is made of 100% Microfiber Polyester for long use Versatile Usage: Enjoy your family happy hours with FOHOG Collection plush and warm flannel fleece throw blankets while snuggling and watching your favorite TV shows on the couch - Bring extra soft and comfort for an afternoon nap in bed covering with our fleece blanket - Perfect for indoor and outdoor use to provide continuous warmth in chilly weather, especially for camping and picnic Vibrant Decor: FOHOG Collection flannel fleece blanket is perfect for using on couch sofa bed or Use the throw blankets in the car for travel, curl up on your back patio, spread them out at the beach for a nap. Also, it is perfect for animals such as dogs and ferrets, to warm them up in their crates Lightweight But Keep Warm: FOHOG Collection cozy fleece blanket makes you feel more breathable and lightweight to keep your body warm. Neat stitches enhance strong connections at seams and better structural strength with integrated outlook. FOHOG Collection makes your feel warm and soft always Satisfaction Guaranteed: If you are not happy with your throw blanket for any reason, please contact us at customer service at any time. We will refund your money back with no questions asked - FOHOG Collection strives to provide 60 days return and replacement service & life-time free customer service - We want our customers to be 100% happy and satisfied"}, {"name": "Beaupretty 8pcs Kids Nightcaps Hair Bonnets Sleeping Caps Hair Protection Wide Rim Hat Bath Shower Accessories for Home", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 10.63 x 3.94 x 0.79 inches; 6.7 Ounces", "Manufacturer\n \u200f": "\u200e\n Beaupretty", "ASIN\n \u200f": "\u200e\n B09DD2C1XD", "": ""}, "brand": "Brand: Beaupretty", "brand_url": "https://www.amazon.com/Beaupretty/b/ref=bl_dp_s_web_23453093011?ie=UTF8&node=23453093011&field-lbr_brands_browse-bin=Beaupretty", "full_description": "DescriptionOur elastic sleeping caps are not canbe applied when sleeping, but also suitable to wear while washing face,taking shower, eating and so on, useful to keep their hair tidy and clean. The band with good elastic, fit for almost all sizes of kids forehead. Features- Color: Purple, yellow, black, white, pink, claret, rosy, light blue.- Material: Polyester.- Size: About 27. 00X10. 00X2. 00 cm/10. 61X3. 93X0. 79inch.- With elastic design, suitable for the different head circumference.- Hair caps are very soft, can be folded to very small size, lightweight, easy to carry at travel.- These elastic sleeping caps are made of polyester material, which is safe and reliable.- Kids hair bonnet for sleeping is lightweight, breathable and skin friend, easily wrap your kids hair with moderate tightness and keep your little one hairstyles easier in the morning.- Kids sleep cap can be applied for children' s sleeping cap, washing cap, and tools for girls to fix their hair while they are making up, washing face, or showering. Package Including 8 x hair bonnets", "pricing": "$19.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41iUG47dADL.jpg", "https://m.media-amazon.com/images/I/51Z-FQICdBL.jpg", "https://m.media-amazon.com/images/I/4147BKCU9iL.jpg", "https://m.media-amazon.com/images/I/41BaxJxYTxS.jpg", "https://m.media-amazon.com/images/I/41OVslFiWiL.jpg", "https://m.media-amazon.com/images/I/412v1-Vx7fL.jpg", "https://m.media-amazon.com/images/I/41riASYi1ZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Shower Caps", "average_rating": "", "small_description": ["Kids sleep cap can be applied for children' s sleeping cap, washing cap, and tools for girls to fix their hair while they are making up, washing face, or showering. ", "Hair caps are very soft, can be folded to very small size, lightweight, easy to carry at travel. ", "With elastic design, suitable for the different head circumference. ", "Kids hair bonnet for sleeping is lightweight, breathable and skin friend, easily wrap your kids hair with moderate tightness and keep your little one hairstyles easier in the morning. ", "These elastic sleeping caps are made of polyester material, which is safe and reliable. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A4EPCLNLR8WA6", "seller_name": "DealPe", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09DD2C1XD", "category": "beauty", "query": "Bath & Bathing Accessories", "page": 167, "small_description_old": "About this item Kids sleep cap can be applied for children' s sleeping cap, washing cap, and tools for girls to fix their hair while they are making up, washing face, or showering. Hair caps are very soft, can be folded to very small size, lightweight, easy to carry at travel. With elastic design, suitable for the different head circumference. Kids hair bonnet for sleeping is lightweight, breathable and skin friend, easily wrap your kids hair with moderate tightness and keep your little one hairstyles easier in the morning. These elastic sleeping caps are made of polyester material, which is safe and reliable."}, {"name": "Gwenie's Pastries Roasted Peanuts (Spicy Roasted, 1 Pack) Filipino Style Seasoning\u2026", "product_information": {"ASIN\n \u200f": "\u200e\n B07KYC4B45", "Best Sellers Rank": "#123,312 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#391 in Peanuts", "#391 in Peanuts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Gwenie's Pastries Store", "brand_url": "https://www.amazon.com/stores/Gwenie%E2%80%99sPastries/page/064D3EF6-2A36-4E0E-A642-342A05B4DB93?ref_=ast_bln", "full_description": "Gwenie's Pastries peanuts are roasted to perfection to satisfy all your sweet nutty cravings!Gwenie's peanuts delicous taste comes from our unique filipino style seasoning that includes garlic, salt, and soy oil.Our special recipe was perfected and honed over many months and hours of trials to deliver our unique taste that is loved by our customers.Gwenie's strives to make the finest treats on the market guaranteed to please your taste buds.These peanuts are freshly made with no added preservatives or artificial flavors just like home made and delivered to your door.Bring these peanuts to your next party event and you\u2019re sure to be a hit with these delicious treats, click \"Add to Cart\" right now to order yours today!", "pricing": "$5.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41uiNRGLvqL.jpg", "https://m.media-amazon.com/images/I/41hRcUH4WdL.jpg", "https://m.media-amazon.com/images/I/41jtm0fY7fL.jpg", "https://m.media-amazon.com/images/I/41vTz-Bq7+L.jpg", "https://m.media-amazon.com/images/I/51lF7+wUjPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Nuts & Seeds \u203a Peanuts", "average_rating": 4.5, "small_description": ["\u2714\ufe0f\u00a0DELICIOUSNESS -\u00a0Perfectly seasonsed peanuts roasted to perfection by Gwenie's Pastries ", "\u2714\ufe0f\u00a0OUR QUALITY -\u00a0Ingredients procured only from the highest quality sources available ", "\u2714\ufe0f\u00a0FRESHNESS -\u00a0Our products are always fresh baked made to order ", "\u2714\ufe0f\u00a0FAST SHIPPING -\u00a02-3 day shipping on all orders delivered fast to your door to ensure freshness. Please allow 2 days prep time. ", "\u2714\ufe0f\u00a0Guarantee -\u00a0Satisfaction guaranteed or your money back no questions asked! Gwenie's Pastries\u00a0peanuts are roasted to perfection to satisfy all your sweet nutty cravings! "], "total_reviews": 117, "total_answered_questions": "", "customization_options": {"Flavor": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07KY8PVSL/ref=twister_B086MM5RYD?_encoding=UTF8&psc=1", "value": "Original", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Spicy", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": true, "url": null, "value": "5 Ounce (Pack of 1)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KX7BXHY/ref=twister_B086MM5RYD?_encoding=UTF8&psc=1", "value": "5 Ounce (Pack of 5)", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A1A7DFF2GKNDAF", "seller_name": "Gwenie's Pastries", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07KYC4B45", "category": "grocery", "query": "Breads & Bakery", "page": 238, "small_description_old": "About this item \u2714\ufe0f\u00a0DELICIOUSNESS -\u00a0Perfectly seasonsed peanuts roasted to perfection by Gwenie's Pastries \u2714\ufe0f\u00a0OUR QUALITY -\u00a0Ingredients procured only from the highest quality sources available \u2714\ufe0f\u00a0FRESHNESS -\u00a0Our products are always fresh baked made to order \u2714\ufe0f\u00a0FAST SHIPPING -\u00a02-3 day shipping on all orders delivered fast to your door to ensure freshness. Please allow 2 days prep time. \u2714\ufe0f\u00a0Guarantee -\u00a0Satisfaction guaranteed or your money back no questions asked! Gwenie's Pastries\u00a0peanuts are roasted to perfection to satisfy all your sweet nutty cravings!"}, {"name": "Mariani, Premium Sweetened Dried Cranberries, 30 Ounce", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.4 x 5.9 x 4.1 inches; 3.88 Pounds", "Manufacturer recommended age\n \u200f": "\u200e\n 3 months and up", "Manufacturer\n \u200f": "\u200e\n Mariani Nut Company", "ASIN\n \u200f": "\u200e\n B002AO9GSG", "Best Sellers Rank": "#485,335 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#429 in Dried Berries #2,722 in Dried Fruits & Raisins", "#429 in Dried Berries": "", "#2,722 in Dried Fruits & Raisins": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Mariani Nut Company", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Mariani+Nut+Company", "full_description": "Mariani, Premium Sweetened Dried Cranberries, 30oz Bag (Pack of 2)", "pricing": "$49.99", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51OTuHWoupL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Produce \u203a Dried Fruits & Vegetables \u203a Dried Fruits \u203a Dried Berries", "average_rating": 4.1, "small_description": [""], "total_reviews": 2, "total_answered_questions": "", "customization_options": "", "seller_id": "A35LCAOGWWYJSY", "seller_name": "Grocery Deals", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B002AO9GSG", "category": "grocery", "query": "Dried Fruits & Raisins", "page": 94, "small_description_old": ""}, {"name": "Set of 2 Mesh Laundry Bags Cute Colorful Llama-1 Medium & 1 Small Bags Laundry,Blouse, Hosiery, Stocking, Underwear, Bra Lingerie, Travel Laundry Bag(8rp7d)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 24 x 20 x 0.2 inches", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n April 27, 2021", "Manufacturer\n \u200f": "\u200e\n Bolaz", "ASIN\n \u200f": "\u200e\n B093KBGC44", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Bolaz", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Bolaz", "full_description": "\u3010Printing\u3011One-sided full printing [Material] Polyester [Size] Two packs, one large and one small. M: 20x24in/50.8x60.96cm; S: 20x16in/50.8x40.46cm [Packing size] OPP bag, 24x28x1cm \u3010Product description\u3011Using polyester fabric, dense mesh, high-speed rotation in the washing machine, durable and avoid to be thrown; plastic pull and lock positions are sewn with protective elastic bands to make clothing avoid to be scratched and to be thrown out by the zipper . The use of laundry bags protects clothes to avoid entanglement, reduces deformation and wear, and protects clothes with metal zippers or buttons from damaging the inner wall of the washing machine. [Applicable scenarios] Washing machine, home storage, luggage storage, etc.", "pricing": "$15.99", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41jkjNpCjRS.jpg", "https://m.media-amazon.com/images/I/41xDEQjuKpS.jpg", "https://m.media-amazon.com/images/I/51hIyrxDqCS.jpg", "https://m.media-amazon.com/images/I/51Sg9YVU5AS.jpg", "https://m.media-amazon.com/images/I/516NeuZalxS.jpg", "https://m.media-amazon.com/images/I/51t9sh8-LrS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Accessories \u203a Wallets, Card Cases & Money Organizers \u203a Wallets", "average_rating": "", "small_description": ["Fiber ", "Imported ", "Zipper closure ", "Set of 2 Mesh Laundry Bags-1 Medium & 1 Small for Laundry,Blouse, Hosiery, Stocking, Underwear, Bra and Lingerie, Travel Laundry Bag. ", "Durable and breathable polyester fibre material, healthy and clean. These Lingerie Bags for Laundry perform perfectly every time protecting your delicates, and keeping them like new. Use in the Dryer too. ", "You & your clothes will LOVE the premium, Strong mesh protecting your finest garments, it is the first choice to protect delicates, extend the life of lingerie, hosiery, intimates and more. ", "DELICATES LAUNDRY BAGS KEEP COLORS SEPARATE & SAFE ", "Multipurpose - Travel Organizer Bag: Ideal for packaging clothing. When you arecamping and traveling with friends, you can easily separate yours and yourfriends' clothes with travel laundry bag. When you share a washing machine with your roommate, you can easily identify your clothes with our DIY Printed laundry bags. It can be used for storage as well to sort your clothes in anorganised way in wardrobe. It is also a great helper for house moving. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1KITK4A5218C8", "seller_name": "SKYDA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B093KBGC44", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 187, "small_description_old": "About this item Fiber Imported Set of 2 Mesh Laundry Bags-1 Medium & 1 Small for Laundry,Blouse, Hosiery, Stocking, Underwear, Bra and Lingerie, Travel Laundry Bag. Durable and breathable polyester fibre material, healthy and clean. These Lingerie Bags for Laundry perform perfectly every time protecting your delicates, and keeping them like new. Use in the Dryer too. You & your clothes will LOVE the premium, Strong mesh protecting your finest garments, it is the first choice to protect delicates, extend the life of lingerie, hosiery, intimates and more. DELICATES LAUNDRY BAGS KEEP COLORS SEPARATE & SAFE Multipurpose - Travel Organizer Bag: Ideal for packaging clothing. When you arecamping and traveling with friends, you can easily separate yours and yourfriends' clothes with travel laundry bag. When you share a washing machine with your roommate, you can easily identify your clothes with our DIY Printed laundry bags. It can be used for storage as well to sort your clothes in anorganised way in wardrobe. It is also a great helper for house moving."}, {"name": "Melange Amber Notes No. 1 Solid Perfume Blending Palette .69 ounces", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Item Weight\n \u200f": "\u200e\n 0.63 Ounces", "Manufacturer\n \u200f": "\u200e\n Melange Perfume", "ASIN\n \u200f": "\u200e\n B01L2JKW6E", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#601,072 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#30,154 in Perfumes & Fragrances", "#30,154 in Perfumes & Fragrances": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Melange Perfume Store", "brand_url": "https://www.amazon.com/stores/Melange+Perfume/page/FABFB58F-B3A2-4C24-9021-86A31AA09B34?ref_=ast_bln", "full_description": "", "pricing": "$30.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51S5HfV+GUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance", "average_rating": 3.7, "small_description": ["Four hand poured solid perfumes designed to be worn alone or layered to create a custom fragrance. "], "total_reviews": 7, "total_answered_questions": "", "customization_options": "", "seller_id": "A1WE8QOT4TFON3", "seller_name": "Melange Perfume", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B01L2JKW6E", "category": "beauty", "query": "Sets Fragrance", "page": 120, "small_description_old": "About this item Four hand poured solid perfumes designed to be worn alone or layered to create a custom fragrance."}, {"name": "MEETWARM 16 inch Table Legs Wood Furniture Legs Tapered Round for Coffee End Tables Side Table Chair Mid-Century Modern DIY Furniture Leg Natural M8 Hanger Bolts, Set of 4", "product_information": {"Package Dimensions": "16.89 x 3.27 x 3.19 inches", "Item Weight": "2.1 pounds", "Manufacturer": "MEETWARM", "ASIN": "B085RBZCHH", "Customer Reviews": {"ratings_count": 179, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#675,158 in Home & Kitchen (See Top 100 in Home & Kitchen) #237 in Sofa Replacement Parts"], "Date First Available": "March 11, 2020"}, "brand": "Visit the MEETWARM Store", "brand_url": "https://www.amazon.com/stores/MEETWARM/page/3CDC71E7-4BF2-415A-8960-2FC669D95F63?ref_=ast_bln", "full_description": "", "pricing": "$23.99$21.59", "list_price": "", "availability_quantity": 3, "availability_status": "In Stock. Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41dGCRKV-jL.jpg", "https://m.media-amazon.com/images/I/41RbpeWqkzL.jpg", "https://m.media-amazon.com/images/I/51GCA3QUtQL.jpg", "https://m.media-amazon.com/images/I/51zixRTl7fL.jpg", "https://m.media-amazon.com/images/I/51tChWnvZ0L.jpg", "https://m.media-amazon.com/images/I/51H8yc7rwBL.jpg", "https://m.media-amazon.com/images/I/41bAns7AIrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Replacement Parts \u203a Sofa Parts", "average_rating": 4.4, "small_description": ["\u2764 PERFECT SIZE- Top diameter: 1-5/8\" (4 cm), Bottom diameter: 1\" (2.5 cm), Height for wood part: 16\"(40cm) ", "\u2764 RELIABLE QUALITY- These 16\" tall tapered wood legs made from 100% solid rubber hardwood in natural wood color with clear coated, heavy duty and sturdy. ", "\u2764 EASY TO INSTALL & PAINTED- Each leg is attached with a 5/16\" (M8 Metric) hanger bolt, and it can be stained and painted any color you like. Perfect for your DIY project, with the flexibility to make the piece your own style. ", "\u2764 BEAUTIFUL LOOK- This mid-century modern style furniture legs are classical,fashion and durable. Perfect choice for your coffee table, night stand, end tables and more. Replace the old legs with these wood furniture legs to make your furniture unique and distinctive. ", "\u2764 MULTIPURPOSE FURNITURE FEET- Solid wooden legs are also perfet for media console, benches, self-designed desk and chair. Wood is a natural material, every wood leg is unique. Variations in color and grain pattern is typical . Color and variation of the grain are normal and since wood is a natural material, each leg may differ slightly from the stock photo. "], "total_reviews": 179, "total_answered_questions": "", "customization_options": "", "seller_id": "A3MODDZ6MOVVN4", "seller_name": "Meetwarm", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B085RBZCHH", "category": "garden", "query": "Furniture Sets", "page": 81, "small_description_old": "About this item\n \n\u2764 PERFECT SIZE- Top diameter: 1-5/8\" (4 cm), Bottom diameter: 1\" (2.5 cm), Height for wood part: 16\"(40cm) \u2764 RELIABLE QUALITY- These 16\" tall tapered wood legs made from 100% solid rubber hardwood in natural wood color with clear coated, heavy duty and sturdy. \u2764 EASY TO INSTALL & PAINTED- Each leg is attached with a 5/16\" (M8 Metric) hanger bolt, and it can be stained and painted any color you like. Perfect for your DIY project, with the flexibility to make the piece your own style. \u2764 BEAUTIFUL LOOK- This mid-century modern style furniture legs are classical,fashion and durable. Perfect choice for your coffee table, night stand, end tables and more. Replace the old legs with these wood furniture legs to make your furniture unique and distinctive. \u2764 MULTIPURPOSE FURNITURE FEET- Solid wooden legs are also perfet for media console, benches, self-designed desk and chair. Wood is a natural material, every wood leg is unique. Variations in color and grain pattern is typical . Color and variation of the grain are normal and since wood is a natural material, each leg may differ slightly from the stock photo."}, {"name": "ZYUN Bathtub Cushion, Full Body Spa Bath Mat with Cushion, 3D Breathable Bathtub Mat, Non-Slip Bath Pillows, Neck and Back Support, for Parents, Children", "product_information": {"Manufacturer": "ZYUN", "ASIN": "B094QGVQLK"}, "brand": "Brand: ZYUN", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ZYUN", "full_description": "Name: Adult bath cushionMaterial: Polyester + Poly Dragon particlesColor: pinkSize: 93*40cmApplication: adultWeight: 0.5KG (without packaging)Great helper for bath time!This bath pillow will last longer and we are confident that you will love and enjoy it, this really is a luxurious addition to your bathroom accessory and it will make a great gift for your friends and loved ones.Super enjoyableIt is a comfortable and relaxing bath to bathe that has bath accessories for women in the bathtub. Leaning on an edge of the tub for a long period of time will hurt your neck, but these pillows can stay on as long as you are without the back pain want.Pefect gift choices.Note:Always let it dry naturally in a ventilated environment after each bath. Don't iron or expose to sunlight directly, don't dry it with a dryer.Since the product is manually measured, the actual product may have an error of 1-3cm (about 0.4*1.2inch), please confirm and purchase.", "pricing": "$32.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51PWa8FDeUS.jpg", "https://m.media-amazon.com/images/I/51T98+Pq4ES.jpg", "https://m.media-amazon.com/images/I/4119k8EyBxS.jpg", "https://m.media-amazon.com/images/I/415bnEOJV4S.jpg", "https://m.media-amazon.com/images/I/51PWa8FDeUS.jpg", "https://m.media-amazon.com/images/I/51+AgknLEbS.jpg", "https://m.media-amazon.com/images/I/41ybRr1fDpS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath Pillows", "average_rating": "", "small_description": ["Ergonomic Design: SPA pillow's unique rebound structure advantage can support your head, neck and back, enjoy with hot water bubble bath, and make your body comfortable and comfortable in the open air. ", "Explanation: 100% polyester, unlike various bathroom pillows, the bathroom mat is made of skin-friendly swimwear, which is healthy and does not irritate the skin, the interior is filled with expanded polystyrene particles, which is comfortable, highly elastic and safe. ", "Large size fits all: 36.6 inches * 15.7 inches, the bathtub pillow for the back and head can accommodate the head, neck, shoulders, and tailbone, and provides excellent back support for most adults and children. Pregnant women, bath accessories for the whole family! ", "Fits every tub: Spa experience guarantee: When soaking in the whirlpool, you can enjoy the soft fluff, soothing warm water and foam on the soft bed to completely relax. ", "Suitable for All Bathtub Types: Our handy portable bath pillow fits perfectly into all bathtub types and can be used by adults and children, it's also great for all body sizes and shapes. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3J2ZAPCGKW40L", "seller_name": "LLSLSQGZ", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B094QGVQLK", "category": "beauty", "query": "Bath & Bathing Accessories", "page": 202, "small_description_old": "Ergonomic Design: SPA pillow's unique rebound structure advantage can support your head, neck and back, enjoy with hot water bubble bath, and make your body comfortable and comfortable in the open air. Explanation: 100% polyester, unlike various bathroom pillows, the bathroom mat is made of skin-friendly swimwear, which is healthy and does not irritate the skin, the interior is filled with expanded polystyrene particles, which is comfortable, highly elastic and safe. Large size fits all: 36.6 inches * 15.7 inches, the bathtub pillow for the back and head can accommodate the head, neck, shoulders, and tailbone, and provides excellent back support for most adults and children. Pregnant women, bath accessories for the whole family! Fits every tub: Spa experience guarantee: When soaking in the whirlpool, you can enjoy the soft fluff, soothing warm water and foam on the soft bed to completely relax. Suitable for All Bathtub Types: Our handy portable bath pillow fits perfectly into all bathtub types and can be used by adults and children, it's also great for all body sizes and shapes."}, {"name": "Ethika Mens Mid Boxer Briefs | Cayenne Red", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.41 x 7.28 x 1.18 inches; 3.77 Ounces", "Item model number\n \u200f": "\u200e\n UMM1666-RED-S", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n November 21, 2019", "ASIN\n \u200f": "\u200e\n B07YYNLGSB", "Best Sellers Rank": "#348,010 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,254 in Men's Boxer Briefs", "#1,254 in Men's Boxer Briefs": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Ethika Store", "brand_url": "https://www.amazon.com/stores/Ethika/page/2D2B33BF-9449-4B53-8AFC-DB3EE38EAE42?ref_=ast_bln", "full_description": "", "pricing": "$17.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31ae32lH5jL.jpg", "https://m.media-amazon.com/images/I/31dBSQNdnpL.jpg", "https://m.media-amazon.com/images/I/31DDQC5ax1L.jpg", "https://m.media-amazon.com/images/I/310mJ41Z1jL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a Boxer Briefs", "average_rating": 4.8, "small_description": ["The Mid, Shorter Mid Length Fit ", "No Pull-Down, No Gathering, Soft 4-Way Stretch Fabric ", "92% Cotton 8% Spandex Blend ", "Size Chart: S: 28-30 M: 30-32 L: 33-35 XL: 36-38 2XL: 39-41 3XL: 42-44 "], "total_reviews": 658, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07YYNLGSB"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07YYNGTB2"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07YYPB289"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07YYNY2ZZ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07YYNNH33"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07YYNY2ZZ", "category": "fashion", "query": "Men's Underwear", "page": 25, "small_description_old": "The Mid, Shorter Mid Length Fit No Pull-Down, No Gathering, Soft 4-Way Stretch Fabric 92% Cotton 8% Spandex Blend Size Chart: S: 28-30 M: 30-32 L: 33-35 XL: 36-38 2XL: 39-41 3XL: 42-44"}, {"name": "Merry Christmas Kitchen Mat 2 PCS Cushioned Anti Fatigue Kitchen Runner Rugs Truck with Xmas Tree Red and Black Buffalo Plaid Comfort Standing Desk Mat for Office Floor Mat 19.7\"x31.5\"+19.7\"x47.2\"", "product_information": {"Product Dimensions": "47.2 x 19.7 x 0.01 inches", "Item Weight": "1.97 pounds", "Manufacturer": "Gogobebe", "ASIN": "B09CQ45ZRB", "Item model number": "FBAGOOGMX20210816BHSWXF04743MDDBGOO", "Customer Reviews": {"ratings_count": 50, "stars": "3.6 out of 5 stars"}, "Best Sellers Rank": ["#189,430 in Kitchen & Dining (See Top 100 in Kitchen & Dining) #414 in Floor Comfort Mats #835 in Kitchen Rugs"], "Batteries Required?": "No"}, "brand": "Brand: Gogobebe", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Gogobebe", "full_description": "This is a kitchen mat that allows you to standing and working in the kitchen or laundry without fatigueKITCHEN SINK MAT SET DIMENSIONkitchen floor mat+kitchen runner rug\u25cf15.7x23.6in+15.7x47.2in\u25cf19.7x31.5in+19.7x47.2in\u25cf19.7x31.5in+19.7x63in\u25cf23.6x35.4in+23.6x70.9in\u25cf20x24in+20x48inKITCHEN RUG SET QUALITYNon-woven soft surface,thick and no deformationRubber polka dot backing,non-slip and prevent the carpet from shifting aroundLow profile design to be placed in any setting under doors wellKITCHEN MAT SET FEATURESNon-slip:Ensure standing,walking safetyAnti fatigue:Provide soft,comfortable support to help improve circulation and relieve pressure on your feet,knees,lower back,and jointsAPPLICABLE PLACESIndoor/Outdoor mat-Perfect for kitchen sink,living room,bathroom,hallway,entryway,patio,garden,terrace,garage,etc or hair salons,restaurants,offices,front desks,clubs,dormitory etc placeAPPLICABLE OCCASIONHoliday decoration-Perfect for birthday,family party,theme party\uff0canniversary,wedding,Halloween,Thanksgiving,Christmas and other occasionsSTYLE CHOICEModern,abstract,vintage,farmhouse,boho,fresh,rustic,buffalo plaid etc kitchen matCOLOR CHOICEblack,yellow,red,navy blue,teal,grey,turquoise,pink ect kitchen matNOTEUse handheld vacuum cleaner to remove surface dustUse cold water machine wash for deep cleaning,no bleaching,no wringing,dry flat or dry at low temperature for best results.Use a few days later ,the creases will disappear", "pricing": "$15.90", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51wK9c4Xk4L.jpg", "https://m.media-amazon.com/images/I/51Jvtzxof4L.jpg", "https://m.media-amazon.com/images/I/61w9lYSBa-L.jpg", "https://m.media-amazon.com/images/I/517N8C0d6zL.jpg", "https://m.media-amazon.com/images/I/61WZq82gYUL.jpg", "https://m.media-amazon.com/images/I/61YDOSuiSPL.jpg", "https://m.media-amazon.com/images/I/51CYJu0Q9zL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Kitchen & Dining \u203a Kitchen Utensils & Gadgets \u203a Kitchen Accessories \u203a Comfort Mats", "average_rating": 3.6, "small_description": ["\u3010Kitchen Floor Mat Package\u30111 pcs kitchen runner rug 19.7\"x47.2\",1 pcs rectangular floor mat 19.7\"x31.5\";This rug mat set is not only suitable for indoor kitchen sink,living room,bathroom makeup counter,hallway,entryway,but also for outdoor patio,garden,terrace,garage,etc anywhere you want to place it. ", "\u3010Premium Kitchen Rug Set\u3011Non-woven surface soft to stand on,no deformation,rubber polka dot backing,non-slip and prevent the carpet from shifting around,ensure standing,walking safety,place on dry floor,water under rug may result in slippage,rug must be placed on dry surface during use;Low profile design to be placed in any setting under doors well,not so thick and bulky that you would trip on it ", "\u3010Cozy Anti Fatigue Standing Mats\u3011The anti fatigue kitchen mat provide soft,comfortable support to help improve circulation and relieve pressure on your feet,knees,lower back,and joints.Ideal for kitchen front of the stove,counter/bench space,hair salons,restaurants,offices,front desks,laundry etc other places where people have to stand for long periods of time. ", "\u3010Stylish Kitchen Mat Set\u3011The exquisite carpet set fit various styles of home decor,perfect for birthday,family party,theme party,anniversary,wedding,Halloween,Thanksgiving,Christmas,etc occasions while washing dishes or getting dinner ready decorate your holiday life ", "\u3010Washable Kitchen Rug\u3011Kitchen mats and rugs are easy care,use handheld vacuum cleaner to remove surface dust or use cold water machine wash for deep cleaning,no bleaching,no wringing,dry flat or dry at low temperature for best results. "], "total_reviews": 50, "total_answered_questions": "", "model": "FBAGOOGMX20210816BHSWXF04743MDDBGOO", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09CQ3GNNF/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "15.7x23.6in+15.7x47.2in", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "19.7x31.5in+19.7x47.2in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09CQ2JXJ9/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "19.7x31.5in+19.7x63in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09CQ4ZRLV/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "20x24in+20x48in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JG4WYV9/ref=twister_B09CQ4LF6D", "value": "23.6x35.4in+23.6x70.9in", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JG4TB4J/ref=twister_B09CQ4LF6D", "value": "Cargoo5209", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51V3PUKY7LL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09CQ5FX5R/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Christmas-005goo7317", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hGL+8xjEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09CQ3Y977/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Christmas-010goo9911", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51IK+L6T96L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JG5P75S/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Christmasgoo1729", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51TkrTNHbTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JG5MXBQ/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Christmasgoo3302", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51p4xFbQ0lL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JG6PJG8/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Christmasgoo3848", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ABduhmKCL.jpg"}, {"is_selected": true, "url": null, "value": "Christmasgoo6658", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Jvtzxof4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PFXGK61/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Easter3540lgoo6518", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41AMSkYfiCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PFXNY71/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Eastergoo0555", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51mFlyDRDpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PFXMDGS/ref=twister_B09CQ4LF6D", "value": "Luckygoo4356", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Hz7yCbjfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PFX7NRF/ref=twister_B09CQ4LF6D", "value": "Luckygoo4796", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WpZjOYUPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PFXVZQJ/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Rabbit3555lgoo1957", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ZtpWrCdgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JG4VN23/ref=twister_B09CQ4LF6D?_encoding=UTF8&psc=1", "value": "Snowmangoo0240", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51eHrBr17XL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PFXXFNM/ref=twister_B09CQ4LF6D", "value": "Spt-026goo3844", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51CXqvndz4L.jpg"}]}, "seller_id": "A1LBGXO68G0FZP", "seller_name": "Gogobebe", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09CQ45ZRB", "category": "garden", "query": "Desks", "page": 255, "small_description_old": "\u3010Kitchen Floor Mat Package\u30111 pcs kitchen runner rug 19.7\"x47.2\",1 pcs rectangular floor mat 19.7\"x31.5\";This rug mat set is not only suitable for indoor kitchen sink,living room,bathroom makeup counter,hallway,entryway,but also for outdoor patio,garden,terrace,garage,etc anywhere you want to place it. \u3010Premium Kitchen Rug Set\u3011Non-woven surface soft to stand on,no deformation,rubber polka dot backing,non-slip and prevent the carpet from shifting around,ensure standing,walking safety,place on dry floor,water under rug may result in slippage,rug must be placed on dry surface during use;Low profile design to be placed in any setting under doors well,not so thick and bulky that you would trip on it \u3010Cozy Anti Fatigue Standing Mats\u3011The anti fatigue kitchen mat provide soft,comfortable support to help improve circulation and relieve pressure on your feet,knees,lower back,and joints.Ideal for kitchen front of the stove,counter/bench space,hair salons,restaurants,offices,front desks,laundry etc other places where people have to stand for long periods of time. \u3010Stylish Kitchen Mat Set\u3011The exquisite carpet set fit various styles of home decor,perfect for birthday,family party,theme party,anniversary,wedding,Halloween,Thanksgiving,Christmas,etc occasions while washing dishes or getting dinner ready decorate your holiday life \u3010Washable Kitchen Rug\u3011Kitchen mats and rugs are easy care,use handheld vacuum cleaner to remove surface dust or use cold water machine wash for deep cleaning,no bleaching,no wringing,dry flat or dry at low temperature for best results."}, {"name": "Bungo Stray Anime Dogs Anime Character, Long Sleeve, Sweatshirt, Hoodie, T shirt", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 12, 2022", "Manufacturer\n \u200f": "\u200e\n Generic", "ASIN\n \u200f": "\u200e\n B09Q8RD8YN", "": ""}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_sl_s_ap_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "Description: T-Shirt Handmade - Design color will be black or white depending on shirt color you choose.\u25c6\u25c6 PREMIUM UNISEX: Unisex, ultra soft hand, tightly knit Shoulder to shoulder taping Cover stitched collar and sleeves Shoulder to shoulder taping Retail fit, side seams.\u25c6 SIZE AND COLOR: These shirts are unisex sizes so they are for both men and women Measurement and color charts are located in the listing photos Select size and color from the drop-down boxes.\u25c6 FABRIC CONTENT: 100% combed ring-spun cotton for solid colors Cotton and polyester blended for heathered colors.\u25c6 CARE INSTRUCTION: Turn garment inside out Machine wash cold with similar colors. Use mild detergent No Bleach Tumble dry low Do not iron if decorated Do not dry clean.", "pricing": "$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41IzOzebb-L.jpg", "https://m.media-amazon.com/images/I/51h-Z6p1McL.jpg", "https://m.media-amazon.com/images/I/61cwLi653YL.jpg", "https://m.media-amazon.com/images/I/61nW-FlTiGL.jpg", "https://m.media-amazon.com/images/I/61xiadvZZFL.jpg", "https://m.media-amazon.com/images/I/51Zv3PAalhL.jpg", "https://m.media-amazon.com/images/I/61VXhEECjAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Hoodies", "average_rating": "", "small_description": ["100% Cotton ", "Machine Wash ", "\"MATERIAL: 100% soft cotton American Apparel mens or womens t-shirt. Printed with environmentally friendly water based inks. FAST SHIPPING: Shipped directly from USA.\" ", "100% SATISFACTION GUARANTEE: If you are not happy with our product, please feel free to contact us, we will give the best solution to you within 24 hours. ", "GREAT GIFT IDEAS: Buy it now and make it a great gift for yourself or your beloved ones on Birthday, Halloween, Christmas, New year, Father's day, Mother's day, Anniversary day, Valentine, New Year\u2019s Day, April Fools\u2019 Day, Easter, Good Friday, Easter Monday, May Day, Christmas Eve, Christmas Day, Boxing Day, New Year\u2019s Eve, Mother\u2019s Day, Father\u2019s Day, Valentine\u2019s Day, Bank holiday (public holiday), Chinese New Year, Independence Day, Thanksgiving, Halloween, Saint Patrick\u2019s Day... ", "\"SIZE: Standard fit t-shirt. Please see more details in our size picture chart for accurate sizes. INSTRUCTIONS: Wash cold and hang dry for best results SPECIAL T-SHIRT: You will become The Focus Of Attention when you wear our T-shirts.\" ", "Click Customize Now. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q8RD8YN", "category": "fashion", "query": "Men's Fashion Hoodies & Sweatshirts", "page": 45, "small_description_old": "100% Cotton Machine Wash \"MATERIAL: 100% soft cotton American Apparel mens or womens t-shirt. Printed with environmentally friendly water based inks. FAST SHIPPING: Shipped directly from USA.\" 100% SATISFACTION GUARANTEE: If you are not happy with our product, please feel free to contact us, we will give the best solution to you within 24 hours. GREAT GIFT IDEAS: Buy it now and make it a great gift for yourself or your beloved ones on Birthday, Halloween, Christmas, New year, Father's day, Mother's day, Anniversary day, Valentine, New Year\u2019s Day, April Fools\u2019 Day, Easter, Good Friday, Easter Monday, May Day, Christmas Eve, Christmas Day, Boxing Day, New Year\u2019s Eve, Mother\u2019s Day, Father\u2019s Day, Valentine\u2019s Day, Bank holiday (public holiday), Chinese New Year, Independence Day, Thanksgiving, Halloween, Saint Patrick\u2019s Day... \"SIZE: Standard fit t-shirt. Please see more details in our size picture chart for accurate sizes. INSTRUCTIONS: Wash cold and hang dry for best results SPECIAL T-SHIRT: You will become The Focus Of Attention when you wear our T-shirts.\" Click Customize Now."}, {"name": "HMR 500 Chocolate Shake Meal Replacement Triple Pack, 10g Protein, 100 Cal, 3 Boxes of 18 Single-Serve Powder Packets", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 11.25 x 8.75 x 5.5 inches; 1.15 Pounds", "Date First Available\n \u200f": "\u200e\n July 16, 2018", "Manufacturer\n \u200f": "\u200e\n HMR Weight Management Services Corp", "ASIN\n \u200f": "\u200e\n B07FM9K5S3", "Best Sellers Rank": "#14,472 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#70 in Meal Replacement Drinks", "#70 in Meal Replacement Drinks": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the HMR Store", "brand_url": "https://www.amazon.com/stores/HMR/page/37277A53-47BA-410F-83F0-872A73746533?ref_=ast_bln", "full_description": "", "pricing": "$126.75", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/41L2FGLH3jL.jpg", "https://m.media-amazon.com/images/I/41a+8S4tlVL.jpg", "https://m.media-amazon.com/images/I/51rJMvcLEqL.jpg", "https://m.media-amazon.com/images/I/51w3b1is+VL.jpg", "https://m.media-amazon.com/images/I/41Yp+WlsSLL.jpg", "https://m.media-amazon.com/images/I/41D1xUGSJRL.jpg", "https://m.media-amazon.com/images/I/61kpSjsSumL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Meal Replacement & Protein Drinks \u203a Meal Replacement Drinks", "average_rating": 4.7, "small_description": ["The original HMR shake with the fewest calories of all HMR diet foods, the HMR 500 shake is deliciously creamy with a rich cocoa flavor. ", "Easy to make \u2013 just blend with ice for a filling shake or prepare as a tasty hot drink. ", "Support you weight loss goals swapping your higher-calorie meals or snacks with this lower calorie option \u2013 10 grams protein, 0 grams fat, and 100 calories per serving. ", "Add fruit or your favorite low-calorie flavoring for a quick smoothie or unlimited shake recipe options. ", "Single-serve packets (54 packets total) make this convenient to grab-and-go for travel, the office, or the gym. "], "total_reviews": 273, "total_answered_questions": 9, "customization_options": {"Flavor Name": [{"is_selected": true, "url": null, "value": "Chocolate", "price_string": "$126.75", "price": 126.75, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FMMTQP3/ref=twister_B07FMKMPJM?_encoding=UTF8&psc=1", "value": "Vanilla", "price_string": "$126.75", "price": 126.75, "image": null}], "Size": null}, "seller_id": "A23B0QGLKFB2EB", "seller_name": "HMR Weight Management", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07FM9K5S3", "category": "grocery", "query": "Frozen", "page": 303, "small_description_old": "About this item The original HMR shake with the fewest calories of all HMR diet foods, the HMR 500 shake is deliciously creamy with a rich cocoa flavor. Easy to make \u2013 just blend with ice for a filling shake or prepare as a tasty hot drink. Support you weight loss goals swapping your higher-calorie meals or snacks with this lower calorie option \u2013 10 grams protein, 0 grams fat, and 100 calories per serving. Add fruit or your favorite low-calorie flavoring for a quick smoothie or unlimited shake recipe options. Single-serve packets (54 packets total) make this convenient to grab-and-go for travel, the office, or the gym."}, {"name": "Porthos Home Delilah Office Chair", "product_information": {"Item Weight": "\u200e24.6 pounds", "Product Dimensions": "\u200e20 x 22.44 x 35.4 inches", "Item model number": "\u200eSKC027A GRY", "ASIN": "B06XG74CXC", "Customer Reviews": {"ratings_count": 18, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#2,538,715 in Home & Kitchen (See Top 100 in Home & Kitchen) #4,755 in Home Office Desk Chairs"], "Date First Available": "March 6, 2017"}, "brand": "Visit the Porthos Home Store", "brand_url": "https://www.amazon.com/stores/PorthosHome/page/F2BEA44A-3345-4DED-B64A-A0BB34B58574?ref_=ast_bln", "full_description": "Brighten your home office with the delilah office chair from Porthos Home. The sleek armless design and caster wheels encourage mobility without keeping you confined to one position, while the gas lift allows you to customize the chair to your particular work space. The decorative brass studs add energy and boldness to any room, while the linen seat Insures all-day comfort. Ideal for the multitasker, this chair will help you stay productive and comfortable.", "pricing": "$154.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41SnZ1sHRlL.jpg", "https://m.media-amazon.com/images/I/411U5yLlXWL.jpg", "https://m.media-amazon.com/images/I/51BwrjV5dhL.jpg", "https://m.media-amazon.com/images/I/51uEbW6TWPL.jpg", "https://m.media-amazon.com/images/I/51Yj7KqnEwL.jpg", "https://m.media-amazon.com/images/I/518fHCU0AsL.jpg", "https://m.media-amazon.com/images/I/31RRt-ISrvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Chairs \u203a Home Office Desk Chairs", "average_rating": 4.2, "small_description": ["Decorative brass Studs ", "Weight capacity: 286lbs ", "Adjustable Seat Height: 18.9-22.8 ", "The sleek armless design and caster wheels encourage mobility without keeping you confined to one position, while the gas lift allows you to customize the chair to your particular work space ", "The decorative brass studs add energy and boldness to any room, while the linen seat Insures all-day comfort "], "total_reviews": 18, "total_answered_questions": "", "model": "\u200eSKC027A GRY", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B06XG58DLW/ref=twister_B06Y2CYYMY?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$105.98", "price": 105.98, "image": "https://m.media-amazon.com/images/I/41HpCq-5fKL.jpg"}, {"is_selected": true, "url": null, "value": "Grey", "price_string": "$154.99", "price": 154.99, "image": "https://m.media-amazon.com/images/I/41SnZ1sHRlL.jpg"}]}, "seller_id": "ACGAF9ED1O5NI", "seller_name": "Porthos Home", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B06XG74CXC", "category": "garden", "query": "Home Office Chairs", "page": 83, "small_description_old": "About this item Decorative brass Studs Weight capacity: 286lbs Adjustable Seat Height: 18.9-22.8 The sleek armless design and caster wheels encourage mobility without keeping you confined to one position, while the gas lift allows you to customize the chair to your particular work space The decorative brass studs add energy and boldness to any room, while the linen seat Insures all-day comfort \n \u203a See more product details"}, {"name": "Beekman 1802 Hotel Adler Bed Frame, Queen", "product_information": {"Item Weight": "\u200e150 pounds", "Product Dimensions": "\u200e84.5 x 64.25 x 59 inches", "Item model number": "\u200eM1K HI P", "ASIN": "B00KL9G3Z6", "Date First Available": "May 20, 2014"}, "brand": "Brand: Beekman 1802", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Beekman+1802", "full_description": "Beekman 1802 Hotel Adler Bed. Sleep is sweet and sleek on this bed frame crafted using slender iron bars. The head, foot and sideboards feature lovely linen panels adorned with brass tacks for just the right mix of fashion and formality. It's a piece that will make you wish you had more bedrooms in your home.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41CDKLZ+ptL.jpg", "https://m.media-amazon.com/images/I/41xJku7FVdL.jpg", "https://m.media-amazon.com/images/I/41xfkP3YlIL.jpg", "https://m.media-amazon.com/images/I/41EH+ody5ML.jpg", "https://m.media-amazon.com/images/I/41wfBunEdDL.jpg", "https://m.media-amazon.com/images/I/41284qSpb8L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Bed Frames", "average_rating": "", "small_description": ["Beekman 1802 Hotel Adler Bed ", "Bed frame crafted using slender iron bars ", "Head, foot and sideboards feature lovely linen panels adorned with brass tacks "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eM1K HI P", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00KL9G3Z6", "category": "garden", "query": "Bedframes", "page": 83, "small_description_old": "About this item Beekman 1802 Hotel Adler Bed Bed frame crafted using slender iron bars Head, foot and sideboards feature lovely linen panels adorned with brass tacks \n \u203a See more product details"}, {"name": "E.L.F. Cosmetics, Lip Primer & Plumper, Clear/Natural, 0.05 oz (1.6 g)/0.06 oz (1.7 g)", "product_information": {"ASIN\n \u200f": "\u200e\n B01LR85M1U", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the e.l.f. Store", "brand_url": "https://www.amazon.com/stores/elf/page/0D20CBB2-BB73-4B24-9CFB-34A96815C14A?ref_=ast_bln", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31o1KgehyEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.2, "small_description": [""], "total_reviews": 5, "total_answered_questions": "", "customization_options": "", "seller_id": "AG7X8DOJKUODM", "seller_name": "YoneLay", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01LR85M1U", "category": "beauty", "query": "Lips Makeup", "page": 94, "small_description_old": ""}, {"name": "Father Daughter Tshirt Player 1 Tshirt, Player 2, Mens 2XL & Pink Youth", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.5 x 7 x 1.4 inches; 8 Ounces", "Item model number\n \u200f": "\u200e\n Blk_SmMenPlayer1_s2_HPnk_Player2_PCS", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 21, 2016", "ASIN\n \u200f": "\u200e\n B01AX3JTN2", "Best Sellers Rank": "#303,388 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#16,283 in Men's Novelty T-Shirts #93,889 in Men's Fashion", "#16,283 in Men's Novelty T-Shirts": "", "#93,889 in Men's Fashion": ""}, "brand": "Visit the Texas Tees Store", "brand_url": "https://www.amazon.com/stores/Texas+Tees/page/7AF6BAD0-9190-41EF-B560-8FE91ADAD143?ref_=ast_bln", "full_description": "", "pricing": "$27.99$29.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/519l8azN+DS.jpg", "https://m.media-amazon.com/images/I/515-ZlHghJL.jpg", "https://m.media-amazon.com/images/I/514PMrXp8SL.jpg", "https://m.media-amazon.com/images/I/51POBUFRz5L.jpg", "https://m.media-amazon.com/images/I/517ketSQ-sL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Shirts \u203a T-Shirts", "average_rating": "", "small_description": ["100% Cotton ", "Made in the USA ", "Pull On closure ", "Machine Wash ", "Designed and Printed in the USA. Our dad daughter matching shirts make great gifts. ", "Please see additional images for size charts. We feel the shirts are normal sizing. If you are close to the end of a size range then we recommend ordering up 1 size. ", "Our daddy and daughter matching clothes have a screen printed design on a cotton shirt for comfort and softness. ", "Soft, preshrunk 100% ring-spun cotton jersey knit (blended cotton/polyester in heather colors). "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Adult (S)|Child (2T)", "asin": "B01AX3IX5M"}, {"is_selected": false, "is_available": true, "value": "Adult (S)|Child (3T)", "asin": "B01AX3IY06"}, {"is_selected": false, "is_available": true, "value": "Adult (S)|Child (4T)", "asin": "B01AX3IZ50"}, {"is_selected": false, "is_available": true, "value": "Adult (M)|Child (2T)", "asin": "B01AX3J3U6"}, {"is_selected": false, "is_available": true, "value": "Adult (M)|Child (3T)", "asin": "B01AX3J4TG"}, {"is_selected": false, "is_available": true, "value": "Adult (M)|Child (4T)", "asin": "B01AX3J5T0"}, {"is_selected": false, "is_available": true, "value": "Adult (L)|Child (2T)", "asin": "B01AX3JAS6"}, {"is_selected": false, "is_available": true, "value": "Adult (L)|Child (3T)", "asin": "B01AX3JBLC"}, {"is_selected": false, "is_available": true, "value": "Adult (L)|Child (4T)", "asin": "B01AX3JCD4"}, {"is_selected": false, "is_available": true, "value": "Adult (XL)|Child (2T)", "asin": "B01AX3JGO4"}, {"is_selected": false, "is_available": true, "value": "Adult (XL)|Child (3T)", "asin": "B01AX3JHHA"}, {"is_selected": false, "is_available": true, "value": "Adult (XL)|Child (4T)", "asin": "B01AX3JI9W"}, {"is_selected": false, "is_available": true, "value": "Adult (2X)|Child (2T)", "asin": "B01AX3JND8"}, {"is_selected": false, "is_available": true, "value": "Adult (2X)|Child (3T)", "asin": "B01AX3JO5A"}, {"is_selected": false, "is_available": true, "value": "Adult (2X)|Child (4T)", "asin": "B01AX3JP3G"}, {"is_selected": false, "is_available": true, "value": "Adult (3X)|Child (2T)", "asin": "B071YWZ6C9"}, {"is_selected": false, "is_available": true, "value": "Adult (3X)|Child (3T)", "asin": "B071L43V12"}, {"is_selected": false, "is_available": true, "value": "Adult (3X)|Child (4T)", "asin": "B071VGMCG3"}, {"is_selected": false, "is_available": true, "value": "Adult (S)|Child (10/12) YM", "asin": "B01AX3J1VC"}, {"is_selected": false, "is_available": true, "value": "Adult (S)|Child (12-18M)", "asin": "B01AX3IW1W"}, {"is_selected": false, "is_available": true, "value": "Adult (S)|Child (5/6)", "asin": "B01AX3J00Y"}, {"is_selected": false, "is_available": true, "value": "Adult (S)|Child (6/8) YS", "asin": "B01AX3J0V8"}, {"is_selected": false, "is_available": true, "value": "Adult (M)|Child (10/12) YM", "asin": "B01AX3J8TC"}, {"is_selected": false, "is_available": true, "value": "Adult (M)|Child (12-18M)", "asin": "B01AX3J306"}, {"is_selected": false, "is_available": true, "value": "Adult (M)|Child (5/6)", "asin": "B01AX3J6WQ"}, {"is_selected": false, "is_available": true, "value": "Adult (M)|Child (6/8) YS", "asin": "B01AX3J7SE"}, {"is_selected": false, "is_available": true, "value": "Adult (L)|Child (10/12) YM", "asin": "B01AX3JF2C"}, {"is_selected": false, "is_available": true, "value": "Adult (L)|Child (12-18M)", "asin": "B01AX3J9PA"}, {"is_selected": false, "is_available": true, "value": "Adult (L)|Child (5/6)", "asin": "B01AX3JD7E"}, {"is_selected": false, "is_available": true, "value": "Adult (L)|Child (6/8) YS", "asin": "B01AX3JE3W"}, {"is_selected": false, "is_available": true, "value": "Adult (XL)|Child (10/12) YM", "asin": "B01AX3JLEY"}, {"is_selected": false, "is_available": true, "value": "Adult (XL)|Child (12-18M)", "asin": "B01AX3JFWC"}, {"is_selected": false, "is_available": true, "value": "Adult (XL)|Child (5/6)", "asin": "B01AX3JJBE"}, {"is_selected": false, "is_available": true, "value": "Adult (XL)|Child (6/8) YS", "asin": "B01AX3JK72"}, {"is_selected": false, "is_available": true, "value": "Adult (2X)|Child (5/6)", "asin": "B01AX3JPVS"}, {"is_selected": false, "is_available": true, "value": "Adult (2X)|Child (6/8) YS", "asin": "B01AX3JQNU"}, {"is_selected": false, "is_available": true, "value": "Adult (2X)|Child (10/12) YM", "asin": "B01AX3JRIE"}, {"is_selected": false, "is_available": true, "value": "Adult (2X)|Child (12-18M)", "asin": "B01AX3JMGG"}, {"is_selected": false, "is_available": true, "value": "Adult (3X)|Child (5/6)", "asin": "B072F4TXZ6"}, {"is_selected": false, "is_available": true, "value": "Adult (3X)|Child (6/8) YS", "asin": "B0716M59JK"}, {"is_selected": false, "is_available": true, "value": "Adult (3X)|Child (10/12) YM", "asin": "B0727YS6N3"}, {"is_selected": false, "is_available": true, "value": "Adult (3X)|Child (12-18M)", "asin": "B072F4Q6P6"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0711FL4VV/ref=twister_B0973Z8XLH", "value": "Pink Player 2 & Player 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51yxyVklLPL.jpg"}, {"is_selected": true, "url": null, "value": "Red Player 2 & Player 1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51EXWs58VsL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01AX3JMGG", "category": "fashion", "query": "Men's Dress Shirts", "page": 99, "small_description_old": "100% Cotton Made in the USA Pull On closure Machine Wash Designed and Printed in the USA. Our dad daughter matching shirts make great gifts. Please see additional images for size charts. We feel the shirts are normal sizing. If you are close to the end of a size range then we recommend ordering up 1 size. Our daddy and daughter matching clothes have a screen printed design on a cotton shirt for comfort and softness. Soft, preshrunk 100% ring-spun cotton jersey knit (blended cotton/polyester in heather colors)."}, {"name": "YEAQING Women's Sweatpants Pockets High Waist Gym Athletic Cinch Bottom Jogger Pants Baggy Lounge Trousers", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 1 x 2 x 1 inches; 12.63 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n June 5, 2020", "ASIN\n \u200f": "\u200e\n B08M5RCVB2", "Best Sellers Rank": "#590,925 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#919 in Women's Sweatpants #10,869 in Women's Shops", "#919 in Women's Sweatpants": "", "#10,869 in Women's Shops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the YEAQING Store", "brand_url": "https://www.amazon.com/stores/YEAQING/page/8C729749-9666-4C46-AE6D-97533A055B87?ref_=ast_bln", "full_description": "", "pricing": "$19.99$21.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/416OxLiuM3L.jpg", "https://m.media-amazon.com/images/I/41Xo-euPOZL.jpg", "https://m.media-amazon.com/images/I/41FWq1B14QL.jpg", "https://m.media-amazon.com/images/I/41SVJvGdH0L.jpg", "https://m.media-amazon.com/images/I/413o0UpLeDL.jpg", "https://m.media-amazon.com/images/I/41aag9Vg6OL.jpg", "https://m.media-amazon.com/images/I/410GKHdFFeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Pants \u203a Sweatpants", "average_rating": 4.1, "small_description": ["Please refer to our size chart: S (Waist 27.56\", Length 37.76\"); M (Waist 29.53\", Length 40.16\"); L (Waist 31.5\", Length 40.55\"); XL (Waist 33.46\", Length 40.94\"). ", "Features: Classic high-waisted Sweatpants with pockets, Ankle-banded, Elastic High Waist, Yoga Workout Jogger Pants Lounge Trousers, Comfy to wear in summer spring or fall. ", "Occasion: This kind of casual sweatpants is very suitable for Mother's Day gifts, sports, fitness, workout, work, daily clothing, jogging, rock climbing, party, clubs, riding bike and motorcycles, travel, vacation, gym ", "Garment Care: Hand/Machine washing in cold water, Do not bleach, Hang dry is preferred. ", "Perfect After-Sales Service: We provide a 100% satisfaction guarantee for all yoga pants. If you have any questions about your products, please feel free to contact us. Your problem will be solved within 24 hours, so you don't have to worry about buying at all. "], "total_reviews": 145, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08M5RCVB2/ref=twister_B09BJM9PV4", "value": "A-pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41IbzTstCSL.jpg"}, {"is_selected": true, "url": null, "value": "Army Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/416OxLiuM3L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PTVR26L/ref=twister_B09BJM9PV4", "value": "C-grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gmpQhEJpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PTVVKVG/ref=twister_B09BJM9PV4", "value": "C-navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Ebn+dwb9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L3BVHDK/ref=twister_B09BJM9PV4", "value": "A-navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/417MuAhpBQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089R83Q2W/ref=twister_B09BJM9PV4", "value": "A-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41SSWooQXoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089R82WQF/ref=twister_B09BJM9PV4", "value": "A-grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41aK1FEplPL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B08BCG734W"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08BCDTDF5"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08BC7JRLQ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B08BCCKMFN"}, {"is_selected": false, "is_available": false, "value": "XX-Large", "asin": "B08PTNHMDW"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08BC7JRLQ", "category": "fashion", "query": "Women's Pants", "page": 93, "small_description_old": "Elastic closure Machine Wash Please refer to our size chart: S (Waist 27.56\", Length 37.76\"); M (Waist 29.53\", Length 40.16\"); L (Waist 31.5\", Length 40.55\"); XL (Waist 33.46\", Length 40.94\"). Features: Classic high-waisted Sweatpants with pockets, Ankle-banded, Elastic High Waist, Yoga Workout Jogger Pants Lounge Trousers, Comfy to wear in summer spring or fall. Occasion: This kind of casual sweatpants is very suitable for Mother's Day gifts, sports, fitness, workout, work, daily clothing, jogging, rock climbing, party, clubs, riding bike and motorcycles, travel, vacation, gym Garment Care: Hand/Machine washing in cold water, Do not bleach, Hang dry is preferred. Perfect After-Sales Service: We provide a 100% satisfaction guarantee for all yoga pants. If you have any questions about your products, please feel free to contact us. Your problem will be solved within 24 hours, so you don't have to worry about buying at all."}, {"name": "Premier HiDef Grey Electric Projection Screen with Low Voltage Motor Viewing Area: 50\" H x 80\" W", "product_information": {"Item Weight": "69 pounds", "Department": "Mounts", "Manufacturer": "Draper", "ASIN": "B001C6JXJU", "Item model number": "101646LP", "Date First Available": "October 1, 2009"}, "brand": "Brand: Draper Inc", "brand_url": "https://www.amazon.com/Draper-Inc/b/ref=bl_dp_s_web_9460892011?ie=UTF8&node=9460892011&field-lbr_brands_browse-bin=Draper+Inc", "full_description": "101646L Viewing Area: 50\" H x 80\" W Features: -16:10 format.-Motorized.-Ceiling trim kit for ceiling recessed installation.-12'' black drop is standard.-Black case with matching end caps.-With control options, it can be operated from any remote location.-Warranted for one year against defects in materials and workmanship.-Plug and Play with built-in Low Voltage Controller.-Product Type: Electric.-Mount Type: Wall/Ceiling mounted; Ceiling recessed.-Screen Format: 16:10.-Screen Surface: Grey.-Screen Gain: 1.0 (Standard); Less than 1.0.-Plug and Play Option: Yes.-Screen Tension: Tensioned screen.-Country of Manufacture: United States. Options: -Screen Material: HiDef GreyA grey front projection surface that provides greater contrast and black reproduction than standard surfaces, with a lower gain to handle today's super-bright projectors. The grey color enhances color contrast and black levels in the projected image and also allows for more ambient light in the audience area than traditional surfaces. Available on all tab-tensioned and permanently tensioned screens. Peak gain of 0.9.. Dimensions: -67'' Image Area: 35.25'' H x 56.5'' W.-67'' Product weight: 34 lbs.-76'' Image Area: 40'' H x 64'' W.-76'' Product weight: 36 lbs.-85'' Image Area: 45'' H x 72'' W.-85'' Product weight: 38 lbs.-94'' Image Area: 50'' H x 80'' W.-94'' product weight: 50 lbs.-109'' Image Area: 57.5'' H x 92'' W.-109'' Product weight: 58 lbs.-123'' Image Area: 65'' H x 104'' W.-123'' Product weight: 65 lbs.-137'' Image Area: 72.5'' H x 116'' W.-137'' Product weight: 75 lbs.-165'' Image Area: 87.5'' H x 140'' W.-165'' Product weight: 80 lbs. Collection: -Premier collection.-Collection: Premier.", "pricing": "$2,721.34", "list_price": "", "availability_status": "Usually ships within 3 to 5 weeks.", "images": ["https://m.media-amazon.com/images/I/31GASN8EhrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Projection Screens", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "model": "101646LP", "customization_options": "", "seller_id": "A3NW5CBEVB81WR", "seller_name": "ACMElectronics", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B001C6JXJU", "category": "electronics", "query": "Projection Screens", "page": 270, "small_description_old": ""}, {"name": "Bifesta Mandom Eye Makeup Remover, 145ml", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 6.22 x 3.19 x 1.81 inches; 5.6 Ounces", "Item model number\n \u200f": "\u200e\n 52051", "UPC\n \u200f": "\u200e\n 787734529334 799457636459 787734796538 798813052872 885761175132 753927529221 783318849973 795864738526 885795591564", "Manufacturer\n \u200f": "\u200e\n Mandom", "ASIN\n \u200f": "\u200e\n B005F2EVMQ", "Best Sellers Rank": "#32,077 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#87 in Makeup Remover", "#87 in Makeup Remover": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Bifesta", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Bifesta", "full_description": "Cleansing Eye Make-Up Remover Size: 145Ml New Water Based. Cleansing Eye Make-Up Remover. Made In Japan.", "pricing": "$12.35", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41RREiNZwjL.jpg", "https://m.media-amazon.com/images/I/51D7BHIoIjL.jpg", "https://m.media-amazon.com/images/I/51b0TeKvIiL.jpg", "https://m.media-amazon.com/images/I/512VYwojeXL.jpg", "https://m.media-amazon.com/images/I/51nHr6Br18L.jpg", "https://m.media-amazon.com/images/I/51y1E6cWplL.jpg", "https://m.media-amazon.com/images/I/51xD+bEJC+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Makeup Remover", "average_rating": 4.6, "small_description": ["Cleansing Eye Make-Up Remover ", "Size - 145 Ml ", "New Water Based "], "total_reviews": 428, "total_answered_questions": 4, "customization_options": "", "seller_id": "A3VB74EWP1LXTO", "seller_name": "Mayuko shop", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B005F2EVMQ", "category": "beauty", "query": "Lips Makeup", "page": 7, "small_description_old": "About this item Cleansing Eye Make-Up Remover Size - 145 Ml New Water Based"}, {"name": "Ed Hardy Men's Glory Lounge Shorts - Sand Storm - Large", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 11 x 10.1 x 10 inches; 0.81 Ounces", "Item model number\n \u200f": "\u200e\n EH81236JJ", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n July 6, 2018", "ASIN\n \u200f": "\u200e\n B00JGBJD3E", "Best Sellers Rank": "#3,366,408 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#3,501 in Men's Pajama Bottoms", "#3,501 in Men's Pajama Bottoms": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Ed Hardy Store", "brand_url": "https://www.amazon.com/stores/EdHardy/page/17E7AFCF-5B01-4ABE-9483-E2B1C24DBD02?ref_=ast_bln", "full_description": "", "pricing": "$43.00", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41BBQxA6s4L.jpg", "https://m.media-amazon.com/images/I/41IOJ2cqK4L.jpg", "https://m.media-amazon.com/images/I/41YvPOlgThL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Sleep & Lounge \u203a Sleep Bottoms", "average_rating": 4.8, "small_description": ["100% Cotton ", "Drawstring closure ", "Machine Wash "], "total_reviews": 8, "total_answered_questions": "", "customization_options": "", "seller_id": "AKKWP6ANN5CZF", "seller_name": "ricjoslope", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00JGBJD3E", "category": "fashion", "query": "Men's Shorts", "page": 106, "small_description_old": "100% Cotton Drawstring closure Machine Wash"}, {"name": "PRO OTG Adapter Works for LG V30 for OTG and USB Type-C Braided Cable. Use with Devices Like Keyboard, Mouse, Zip, Gamepad, hdmi, More (Gray)", "product_information": {"Item Weight": "0.5 ounces", "ASIN": "B085VFMXMZ", "Best Sellers Rank": ["#440,070 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #42,075 in Cell Phone Cables & Adapters"], "Date First Available": "January 21, 2022", "Manufacturer": "Big-E"}, "brand": "Brand: Big-E", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Big-E", "full_description": "\u26a1Professional Braided New USB-C OTG Works for LG V30 SmartPhone includes USB Female USB Type-C 2.0 Male OTG On-The-Go Cable! (New Style)Comes you direct from the manufacturer so we can deliver you a 100% quality item! What we like about this is that it features custom plug and play circuitry, plug it in, it works!\u2705SPECIFICATIONS:\u25cfUnleash the power of Works for your phone by giving it access the same USB peripherals that make Works for your PC easier use!\u25cfWorks with keyboards, mice, flash drives, game controllers, almost ANY USB Device that is set for OTG / On-The-Go\u25cfThe 4 Inch Cable is original standardized guaranteed the best results while making access easier.\u25cfConsider getting one for home, office and travel so you\u2019ll always be close a quick charge.\u25cfProvide power for USB peripherals so that the battery of Works for your android smart phone or tablet will not be drained so quickly like others ordinary OTG cable. Note: This Device can not power Works for your android smart phone or tablet itself.\u2705ENHANCEMENTS:\u25cfThe Big-E\u2122 OTG adapter gives Works for your host devices an opportunity add on any USB peripherals such as keyboards, mice, USB Hub, flash drives, external hard drives, USB card readers, game controllers or whatever.\u25cfCompatible with TV Stick, PlayStation Classic, Google Chromecast, android devices, Raspberry Pi Zero, NES N64 Nintendo Devices and MORE. Suitable for Android, Windows and other systems, no system restrictions.\u25cfThis can provide OTG ability Works for Works for your TV Stick, PlayStation Classic, Google Chromecast, Raspberry Pi Zero, NES N64 Nintendo Devices and many other streaming media player, and other items that have a USB Type-C Port with OTG Capabilities.", "pricing": "$7.99", "list_price": "", "availability_quantity": 19, "availability_status": "Only 19 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31OejFUJIIL.jpg", "https://m.media-amazon.com/images/I/51djD9Y3tOL.jpg", "https://m.media-amazon.com/images/I/41GLx3AiwWL.jpg", "https://m.media-amazon.com/images/I/41iGTRoSUjL.jpg", "https://m.media-amazon.com/images/I/41BLzAKjitL.jpg", "https://m.media-amazon.com/images/I/41LaJbaHv6L.jpg", "https://m.media-amazon.com/images/I/41lvh9ddTTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Cables & Adapters", "average_rating": "", "small_description": ["USB On-The-Go\u2b50 : Plug in and use Works for your LG V30 with computer peripherals, such as flash drive, keyboard, hub, mouse and more, makes Works for your USB-C devices compatible with USB drives and any other USB devices that support USB On-The-Go. ", "USB 3.0 Super Speed Transfer\u2b50 : Full USB 3.0 super speed data transfer up 5Gbps, 10x faster than USB 2.0. Transfer files, HD movies and songs Works for your USB-C devices in seconds. ", "Tangle-free Design\u2b50 : Tangle-free Design, this USB 3.0 Cord is far more dependable than others in its price range. Premium cable adds additional durability and tangle free. ", "Durable ABS Nylon Body\u2b50 : Made out of durable ABS Plastic alloys, innovative engineering ensures durability and a long life span. ", "What is Included\u2b50 : Provided is this USB C OTG Adapter with 12-Month Warranty and 24/7 customer service, if you have any questions,we will resolve Works for your issue within 24 hours. Compatible with all USB C devices. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QLK7NLK/ref=twister_B09QXT8L5F?_encoding=UTF8&psc=1", "value": "Gold", "price_string": "$12.99", "price": 12.99, "image": "https://m.media-amazon.com/images/I/31cGlenaBxL.jpg"}, {"is_selected": true, "url": null, "value": "Gray", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/31OejFUJIIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085VG974D/ref=twister_B09QXT8L5F?_encoding=UTF8&psc=1", "value": "Silver", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/31chDDrv8UL.jpg"}]}, "seller_id": "A12HMNHPYHRY4W", "seller_name": "Big Eventures", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B085VFMXMZ", "category": "electronics", "query": "Streaming Media Players", "page": 136, "small_description_old": "USB On-The-Go\u2b50 : Plug in and use Works for your LG V30 with computer peripherals, such as flash drive, keyboard, hub, mouse and more, makes Works for your USB-C devices compatible with USB drives and any other USB devices that support USB On-The-Go. USB 3.0 Super Speed Transfer\u2b50 : Full USB 3.0 super speed data transfer up 5Gbps, 10x faster than USB 2.0. Transfer files, HD movies and songs Works for your USB-C devices in seconds. Tangle-free Design\u2b50 : Tangle-free Design, this USB 3.0 Cord is far more dependable than others in its price range. Premium cable adds additional durability and tangle free. Durable ABS Nylon Body\u2b50 : Made out of durable ABS Plastic alloys, innovative engineering ensures durability and a long life span. What is Included\u2b50 : Provided is this USB C OTG Adapter with 12-Month Warranty and 24/7 customer service, if you have any questions,we will resolve Works for your issue within 24 hours. Compatible with all USB C devices."}, {"name": "L'Occitane Citrus Verbena Eau de Toilette, 3.3 fl. oz.", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.2 x 1.33 x 5.7 inches; 7.04 Ounces", "Manufacturer\n \u200f": "\u200e\n AmazonUs/LOCAH", "ASIN\n \u200f": "\u200e\n B08X93ZXR5", "Country of Origin\n \u200f": "\u200e\n France", "Best Sellers Rank": "#63,541 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#249 in Women's Eau de Toilette", "#249 in Women's Eau de Toilette": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$75.00", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/31U-uDCCcML.jpg", "https://m.media-amazon.com/images/I/312hwIpP7EL.jpg", "https://m.media-amazon.com/images/I/31PNA-GHTWL.jpg", "https://m.media-amazon.com/images/I/414Qt63dmoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Eau de Toilette", "average_rating": 4.6, "small_description": [""], "total_reviews": 123, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08X93ZXR5", "category": "beauty", "query": "Men's Fragrance", "page": 51, "small_description_old": ""}, {"name": "Signature Shakes\u2122 Seasoning Mix, 18oz (Sour Cream & Chives)", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 4.25 x 4.25 x 6.75 inches; 1.95 Pounds", "Manufacturer\n \u200f": "\u200e\n Gold Medal Products", "ASIN\n \u200f": "\u200e\n B08ZHP2QQG", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#536,306 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#676 in Unpopped Popcorn Kernels", "#676 in Unpopped Popcorn Kernels": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Popcorn Supply Company", "brand_url": "https://www.amazon.com/Popcorn-Supply-Company/b/ref=bl_dp_s_web_21612480011?ie=UTF8&node=21612480011&field-lbr_brands_browse-bin=Popcorn+Supply+Company", "full_description": "Mix this seasoning into dips, shake on fries, flavor up mashed potatoes, top popcorn, and more! You'll love the original flavor of Sour Cream & Chive Seasoning Signature Shakes Flavor #2351S. Restaurant style, also perfectly sized for self-service or resale. (18-oz bottle - Count: 1)", "pricing": "$28.99", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/41EnoND2QPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Popcorn \u203a Unpopped", "average_rating": 1, "small_description": ["Gold Medal's Seasoning Signature Shakes. ", "Try it with popcorn, mac and cheese, potatoes, dips, and more. ", "Restaurant-style, also perfectly sized for self-service or resale. ", "(18-oz bottle - Count: 1) ", "Made in USA "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08ZHQWJZ5/ref=twister_B08ZHKPXMV?_encoding=UTF8&psc=1", "value": "Bacon & Cheese", "price_string": "$28.99", "price": 28.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZHFFCPJ/ref=twister_B08ZHKPXMV?_encoding=UTF8&psc=1", "value": "Barbecue", "price_string": "$28.99", "price": 28.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZH8RY6L/ref=twister_B08ZHKPXMV?_encoding=UTF8&psc=1", "value": "Cheddar-Cheese", "price_string": "$32.99", "price": 32.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZHF35R7/ref=twister_B08ZHKPXMV?_encoding=UTF8&psc=1", "value": "Hot Jalapeno", "price_string": "$28.99", "price": 28.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZHJB2NB/ref=twister_B08ZHKPXMV?_encoding=UTF8&psc=1", "value": "Parmesan Garlic", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZHJV5WV/ref=twister_B08ZHKPXMV?_encoding=UTF8&psc=1", "value": "Ranch", "price_string": "$32.99", "price": 32.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZHLFGQM/ref=twister_B08ZHKPXMV?_encoding=UTF8&psc=1", "value": "Salt-And-Vinegar", "price_string": "$32.99", "price": 32.99, "image": null}, {"is_selected": true, "url": null, "value": "Sour Cream & Chives", "price_string": "$28.99", "price": 28.99, "image": null}]}, "seller_id": "A3NI681A613SJA", "seller_name": "bc brands, inc.", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08ZHP2QQG", "category": "grocery", "query": "Sour Creams", "page": 39, "small_description_old": "About this item Gold Medal's Seasoning Signature Shakes. Try it with popcorn, mac and cheese, potatoes, dips, and more. Restaurant-style, also perfectly sized for self-service or resale. (18-oz bottle - Count: 1) Made in USA"}, {"name": "Womens Short Sleeve Tops, Womens Casual Dandelion Printing T-Shirts Loose O-Neck Blouse Tops Funny Graphic Tee Shirts", "product_information": {"Item model number\n \u200f": "\u200e\n Womens Tee Shirts", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n December 7, 2021", "Manufacturer\n \u200f": "\u200e\n Shirts for Women", "ASIN\n \u200f": "\u200e\n B09N79394P", "Best Sellers Rank": "#1,292,517 in Sports & Outdoors (See Top 100 in Sports & Outdoors)#421 in Women's Diving Rash Guard Shirts #68,262 in Women's T-Shirts", "#421 in Women's Diving Rash Guard Shirts": "", "#68,262 in Women's T-Shirts": ""}, "brand": "Brand: POTO", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=POTO", "full_description": "", "pricing": "$1.01$1.74", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51iy+5gsVpL.jpg", "https://m.media-amazon.com/images/I/51Eq8PbHxpL.jpg", "https://m.media-amazon.com/images/I/41kh5U4tqZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Tops, Tees & Blouses \u203a T-Shirts", "average_rating": "", "small_description": ["Short Sleeve Tops for Women ", "BIG Promotion: Buy 2 get 8% off; Buy 3 get 10% off; Buy 4 get 12%; Buy 5 get 15%; Buy 7 get 20% off!!! The more you buy, the bigger the discount! ", "\u3010Shipping\u3011\uff1aItems will arrive in 10-18 business days. ", "\u3010Size Notice\u3011\uff1aOur products are in Asian sizes, which run smaller 1-2 size than the US size.Please refer to the size chart in the picture.For example, if you are M size in US, we advise L or XL for our size. closure ", "\u3010Ultral Soft T-Shirts\u3011: Polyester and Spandex. This casual tops is lightweight, skin-friendly and comfortable for all-day comfort wear and durability. Funny graphic Tops for women plus size, butterfly printed shirts, women's basic v neck short sleeve t shirts, youth & adult tie dye t-shirt, vintage floral graphic top, summer casual loose fit tunics, funny graphics o-neck tees, vintage tshirts for women, cute printed tunic shirts. ", "\u3010Funny Graphic Tops Features\u3011: Cute printed / 3D graphic / tie dye / floral / animal / butterfly short sleeve shirts. Women graphic tshirts,letter printed novelty loose fit, vintage printed t-shirts, casual plus size tunic tops. Be kind tshirt, happy camper t shirt, womens camping graphic tshirt, classic o-neck tees, women's cute juniors tops teen girl, happy camper short sleeve tunics, loose casual style, travel tees for women, funny tees for women with sayings. ", "\u3010Occasions and All-Match Tees\u3011: This tops for women suitable for any occasions and all season! Perfect for casual, streetwear, dance, clubwear, office, school, outdoor, lounge, vacation, outdoor, beach, workout, yoga, ,etc. Easy to match with any pants, leggings, jeans, shorts, skirts, dress etc. This cute o-neck tees make you look young and stylish and will be a favorite in your loungewear wardrobe. , \u3010Perfect Gift\u3011: A great gift for womens, juniors, teen girls, ladies, wife, girlfriend, mom, daughter for Easter, Birthday, Anniversary, Graduation, Valentines Day, Christmas, Mothers Day, Thanksgiving, etc. Recommend the opposite gentle washing. hand wash would be better., graphic t-shirts for women funny t-shirts for women t-shirts for women cotton t-shirts for women plus size t-shirts for women graphic vintage White black t-shirts for women tee for women short sleeve tee for women graphic tee for women plus size tee for women loose fit women tee shirts graphic oversize graphic t-shirts women graphic t-shirts teen girls graphic t-shirts trendy graphic tees for women vintage graphic tops for women sexy graphic tops for women plus size graphic tee shirts, tee shirts for women graphic tee shirts for women loose fit plus size tee shirts for women with sayings tee shirts for women plus size tee shirts for women short sleeve women's tee shirts v neck women's tee shirts 3/4 sleeve womens tee shirts tall women tee shirts tunic tops for women sexy casual summer yoga tops for women activewear crewneck t-shirts for women pack crewneck tees for women cotton white crew neck tees for women crewneck tops for women short sleeve crewneck tunic tops for leggings"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09N79394P/ref=twister_B09N79BMLT", "value": "A1-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51bXyITsCIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79QMPJ/ref=twister_B09N79BMLT", "value": "A1-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ygz+QF4JL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79S43F/ref=twister_B09N79BMLT", "value": "A1-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51NW8y4ib7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79PXGB/ref=twister_B09N79BMLT", "value": "A1-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51akyVjB5aL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N78QK8J/ref=twister_B09N79BMLT", "value": "A1-purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51aa2IQtdOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79RJQ6/ref=twister_B09N79BMLT", "value": "A1-wine\u00a0red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51YZDfzv7ZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79HL6C/ref=twister_B09N79BMLT", "value": "A1-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51JD0IjIxsL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N78WN85/ref=twister_B09N79BMLT", "value": "A2-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51zCNbXxxAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N7B77PM/ref=twister_B09N79BMLT", "value": "A2-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517UBaWAMrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79LKML/ref=twister_B09N79BMLT", "value": "A2-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51IL+rWj3zL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N7BQM85/ref=twister_B09N79BMLT", "value": "A2-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51+I-NDlMdL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79ZQ9S/ref=twister_B09N79BMLT", "value": "A2-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/516vQi6P5gL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N7CMRVC/ref=twister_B09N79BMLT", "value": "A3-army\u00a0green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/519L9iVGepL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N7BB1MP/ref=twister_B09N79BMLT", "value": "A3-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51HIK0B3-lL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79N2HT/ref=twister_B09N79BMLT", "value": "A3-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/517fHuFCYiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N79K587/ref=twister_B09N79BMLT", "value": "A3-navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/514pzeG1BgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N7C8YKH/ref=twister_B09N79BMLT", "value": "A3-orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51AIi0+xZ9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N7B3B1H/ref=twister_B09N79BMLT", "value": "A3-wine\u00a0red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51QqGtYvuYL.jpg"}, {"is_selected": true, "url": null, "value": "A4-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51iy+5gsVpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NPN5BG8/ref=twister_B09N79BMLT", "value": "A6-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/519JPaU-95L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NPNRNR2/ref=twister_B09N79BMLT", "value": "A6-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pfV465wIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NPM8HG7/ref=twister_B09N79BMLT", "value": "A6-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51aSoQL4pfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NPNSF3Y/ref=twister_B09N79BMLT", "value": "A7-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ZZZbizrqL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NPMJR3Z/ref=twister_B09N79BMLT", "value": "A7-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51YEiNz8iBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NPN99XD/ref=twister_B09N79BMLT", "value": "A7-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51GBewD7FfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRRRL5Y/ref=twister_B09N79BMLT", "value": "B15-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51BAf4JtwvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRR1C7C/ref=twister_B09N79BMLT", "value": "B15-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51blYN+OILL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRQTMBV/ref=twister_B09N79BMLT", "value": "B15-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51H4pSv9z+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRQJ745/ref=twister_B09N79BMLT", "value": "B16-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51O-lOcU4dL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRSBSND/ref=twister_B09N79BMLT", "value": "B16-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/5157OMCunML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRRG83S/ref=twister_B09N79BMLT", "value": "B16-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51BXyDTuukL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRQRGYH/ref=twister_B09N79BMLT", "value": "B17-army\u00a0green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EolG-eyHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRRTSKH/ref=twister_B09N79BMLT", "value": "B17-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41DF5+BtP5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRRJYV8/ref=twister_B09N79BMLT", "value": "B17-red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41YBzUpUKbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRSBB8B/ref=twister_B09N79BMLT", "value": "B17-wine\u00a0red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41m6lmtN2uL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRQKF55/ref=twister_B09N79BMLT", "value": "B18-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41xwBwk+NJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRR5XB1/ref=twister_B09N79BMLT", "value": "B11-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31LTd8KPqAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRRLMCY/ref=twister_B09N79BMLT", "value": "B13-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21YZs1y7vyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRR7L6Q/ref=twister_B09N79BMLT", "value": "B19-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/313MYVGrKbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRQX9K6/ref=twister_B09N79BMLT", "value": "B14-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/313XOtuikML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRQKT2P/ref=twister_B09N79BMLT", "value": "B21-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31c38QC+mPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NRQR7JM/ref=twister_B09N79BMLT", "value": "B12-a", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31YPa9ZtXBL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09NPNLQBK"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09NPMW9PW"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09NPN7FSP"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09NPMNDNK"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09NPNTLWQ"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09NPML43M"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09NPML43M", "category": "fashion", "query": "Women's Tops, Tees & Blouses", "page": 103, "small_description_old": "Short Sleeve Tops for Women BIG Promotion: Buy 2 get 8% off; Buy 3 get 10% off; Buy 4 get 12%; Buy 5 get 15%; Buy 7 get 20% off!!! The more you buy, the bigger the discount! \u3010Shipping\u3011\uff1aItems will arrive in 10-18 business days. \u3010Size Notice\u3011\uff1aOur products are in Asian sizes, which run smaller 1-2 size than the US size.Please refer to the size chart in the picture.For example, if you are M size in US, we advise L or XL for our size. closure \u3010Ultral Soft T-Shirts\u3011: Polyester and Spandex. This casual tops is lightweight, skin-friendly and comfortable for all-day comfort wear and durability. Funny graphic Tops for women plus size, butterfly printed shirts, women's basic v neck short sleeve t shirts, youth & adult tie dye t-shirt, vintage floral graphic top, summer casual loose fit tunics, funny graphics o-neck tees, vintage tshirts for women, cute printed tunic shirts. \u3010Funny Graphic Tops Features\u3011: Cute printed / 3D graphic / tie dye / floral / animal / butterfly short sleeve shirts. Women graphic tshirts,letter printed novelty loose fit, vintage printed t-shirts, casual plus size tunic tops. Be kind tshirt, happy camper t shirt, womens camping graphic tshirt, classic o-neck tees, women's cute juniors tops teen girl, happy camper short sleeve tunics, loose casual style, travel tees for women, funny tees for women with sayings. \u3010Occasions and All-Match Tees\u3011: This tops for women suitable for any occasions and all season! Perfect for casual, streetwear, dance, clubwear, office, school, outdoor, lounge, vacation, outdoor, beach, workout, yoga, ,etc. Easy to match with any pants, leggings, jeans, shorts, skirts, dress etc. This cute o-neck tees make you look young and stylish and will be a favorite in your loungewear wardrobe. \n \u3010Perfect Gift\u3011: A great gift for womens, juniors, teen girls, ladies, wife, girlfriend, mom, daughter for Easter, Birthday, Anniversary, Graduation, Valentines Day, Christmas, Mothers Day, Thanksgiving, etc. Recommend the opposite gentle washing. hand wash would be better.graphic t-shirts for women funny t-shirts for women t-shirts for women cotton t-shirts for women plus size t-shirts for women graphic vintage White black t-shirts for women tee for women short sleeve tee for women graphic tee for women plus size tee for women loose fit women tee shirts graphic oversize graphic t-shirts women graphic t-shirts teen girls graphic t-shirts trendy graphic tees for women vintage graphic tops for women sexy graphic tops for women plus size graphic tee shirtstee shirts for women graphic tee shirts for women loose fit plus size tee shirts for women with sayings tee shirts for women plus size tee shirts for women short sleeve women's tee shirts v neck women's tee shirts 3/4 sleeve womens tee shirts tall women tee shirts tunic tops for women sexy casual summer yoga tops for women activewear crewneck t-shirts for women pack crewneck tees for women cotton white crew neck tees for women crewneck tops for women short sleeve crewneck tunic tops for leggingsShow more"}, {"name": "French Connection Women's Zelda Sequin Dress", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 15.2 x 13.5 x 3.31 inches; 1.35 Pounds", "Item model number\n \u200f": "\u200e\n 71IEX", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n September 29, 2017", "Manufacturer\n \u200f": "\u200e\n French Connection Women's Collection", "ASIN\n \u200f": "\u200e\n B0756KN2XZ", "Best Sellers Rank": "#4,517,856 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#16,226 in Women's Club & Night Out Dresses", "#16,226 in Women's Club & Night Out Dresses": ""}, "brand": "Visit the French Connection Store", "brand_url": "https://www.amazon.com/stores/French+Connection/page/6FF6A981-5DDF-45B5-B93C-AE869E4CEDF3?ref_=ast_bln", "full_description": "This eye catching Zelda sequin dress is the perfect dress to make you feel sexy and chic at the same time.", "pricing": "$197.40$203.44", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41SrtDIknIL.jpg", "https://m.media-amazon.com/images/I/41ZXXD-RZNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Dresses \u203a Club & Night Out", "average_rating": "", "small_description": ["100% Nylon ", "Imported ", "Dry Clean Only ", "Sequin dress ", "Long sleeved sequin dress ", "Colorful sequin dress ", "Sparkly dress ", "Mini dress "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "2", "asin": "B0756KN2XZ"}, {"is_selected": false, "is_available": true, "value": "6", "asin": "B0756N4SP2"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B0756KQCQY"}], "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0756KQCQY", "category": "fashion", "query": "Women's Dresses", "page": 130, "small_description_old": "100% Nylon Imported Dry Clean Only Sequin dress Long sleeved sequin dress Colorful sequin dress Sparkly dress Mini dress"}, {"name": "The Cajun Spoon Chicken & Dumplings Mix", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 5.2 x 4.57 x 1.65 inches; 5.6 Ounces", "UPC\n \u200f": "\u200e\n 863219000236", "Manufacturer\n \u200f": "\u200e\n The Cajun Spoon", "ASIN\n \u200f": "\u200e\n B07G2SC9HW", "Best Sellers Rank": "#210,475 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#534 in Cajun Seasonings", "#534 in Cajun Seasonings": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: The Cajun Spoon", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=The+Cajun+Spoon", "full_description": "The Cajun Spoon's authentic Louisiana cuisine can now be made in your own home in 30 minutes or less! Our dry mixes are blended with the freshest ingredients with no MSG or artificial flavors, ensuring top quality easy-made meals for all to enjoy. Let us make your next dinner a success!", "pricing": "$11.94", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/516wyMxvkdL.jpg", "https://m.media-amazon.com/images/I/510J7Ix4kVL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Herbs, Spices & Seasonings \u203a Mixed Spices & Seasonings \u203a Cajun Seasoning", "average_rating": 4.5, "small_description": ["no MSG ", "no artificial flavors "], "total_reviews": 40, "total_answered_questions": "", "customization_options": "", "seller_id": "A1PCAUDZMYXM7B", "seller_name": "Grapes on Sale", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07G2SC9HW", "category": "grocery", "query": "Frozen", "page": 152, "small_description_old": "About this item no MSG no artificial flavors"}, {"name": "Wyndenhall 54-Inch Mansfield Solid Wood Console Sofa Table Rustic - Natural Aged Brown", "product_information": {"Product Dimensions": "16 x 54 x 30 inches", "Manufacturer": "WyndenHall", "ASIN": "B084HBQYTD", "Date First Available": "February 4, 2020"}, "brand": "Brand: CCT Global Sourcing", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=CCT+Global+Sourcing", "full_description": "Mansfield Solid Wood 54 inch Wide Rustic Console Sofa Table in Rustic Natural Aged Brown. . Features four drawers and open shelves. Handcrafted with care using the finest quality solid wood. . . Efforts are made to reproduce accurate colors, variations in color may occur due to computer monitor and photography. The product is warranted to be free from defects in material and workmanship for a period of (1) year from the date of purchase to the original owner.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/313kmfr3bRL.jpg", "https://m.media-amazon.com/images/I/31W7PFksoIL.jpg", "https://m.media-amazon.com/images/I/41nahAPCR7L.jpg", "https://m.media-amazon.com/images/I/31Qu1jLfkhL.jpg", "https://m.media-amazon.com/images/I/410yzkQ24TL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": "", "small_description": ["Handcrafted with care using the finest quality solid wood ", "Hand-finished with a Rustic Natural Aged Brown stain and a protective NC lacquer to accentuate and highlight the grain and the uniqueness of each piece of furniture ", "Features four drawers and open shelves ", "Style includes elegantly tapered legs, molded crown edged table top and Antique Brass hardware. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B084HBQYTD", "category": "garden", "query": "Console tables", "page": 308, "small_description_old": "About this item\n \nHandcrafted with care using the finest quality solid wood Hand-finished with a Rustic Natural Aged Brown stain and a protective NC lacquer to accentuate and highlight the grain and the uniqueness of each piece of furniture Features four drawers and open shelves Style includes elegantly tapered legs, molded crown edged table top and Antique Brass hardware."}, {"name": "FUERMOR Light Purple Flash Backdrops 5x7ft Background for Wedding Photography Birthday Cake Table Home Decor YouTube Videos Photo Props FUTJ011", "product_information": {"Package Dimensions": "10.94 x 10.59 x 1.38 inches", "Item Weight": "10.8 ounces", "ASIN": "B07X9623L4", "Customer Reviews": {"ratings_count": 644, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#3,287 in Photographic Studio Photo Backgrounds"], "Date First Available": "July 1, 2019", "Manufacturer": "FUERMOR"}, "brand": "Visit the FUERMOR Store", "brand_url": "https://www.amazon.com/stores/FUERMOR/page/CB394195-0371-4ECD-A0D5-C6A9FB38D903?ref_=ast_bln", "full_description": "", "pricing": "$19.99", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51LaUFE9yPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Lighting & Studio \u203a Photo Studio \u203a Backgrounds", "average_rating": 4.6, "small_description": ["\u25c6Material: Smooth,Feels like silk.Anti-wrinkle,Great quality,Lightweight fabric,Durable,Reusable.It can be washed and ironed. ", "\u25c6Pls noted:It's thin, can usuallybe seen through,therefore, we suggest that customers can buy two to use together. ", "\u25c6Size:5x7 ft(1.5mx2.1m),there is a rod pocket on the top for easy hanging.Manual measurement,there may be 1-3cm deviation exist, hope you can understand. ", "\u25c6Finish along all edges to prevent burrs.Each side is locked. ", "\u25c6Apply:It can be used for wedding,event party,birthday party,youtube videos,toy shooting,makeup videos,character portraits,business background and so on. "], "total_reviews": 644, "total_answered_questions": 18, "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "5x7ft", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B092HWLJXF/ref=twister_B092JBKZTL?_encoding=UTF8&psc=1", "value": "5x10ft", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07L6BLW8K/ref=twister_B092JBKZTL?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51QNIFCzR1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07L6BXKBX/ref=twister_B092JBKZTL?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61bUBUHkSnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07L6CP1TB/ref=twister_B092JBKZTL?_encoding=UTF8&psc=1", "value": "Dark Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61fbLElO7-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07X7MVCFM/ref=twister_B092JBKZTL?_encoding=UTF8&psc=1", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51jqQ7gurPL.jpg"}, {"is_selected": true, "url": null, "value": "Light Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LaUFE9yPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BHD8RZK/ref=twister_B092JBKZTL?_encoding=UTF8&psc=1", "value": "Light Silver", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41uPQaF1S+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B7HPGDT/ref=twister_B092JBKZTL?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51EuWSehFAL.jpg"}]}, "seller_id": "A1PQNKCYOMPWDE", "seller_name": "FUERMOR", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07X9623L4", "category": "electronics", "query": "Flashes", "page": 340, "small_description_old": "About this item\n \n\u25c6Material: Smooth,Feels like silk.Anti-wrinkle,Great quality,Lightweight fabric,Durable,Reusable.It can be washed and ironed. \u25c6Pls noted:It's thin, can usuallybe seen through,therefore, we suggest that customers can buy two to use together. \u25c6Size:5x7 ft(1.5mx2.1m),there is a rod pocket on the top for easy hanging.Manual measurement,there may be 1-3cm deviation exist, hope you can understand. \u25c6Finish along all edges to prevent burrs.Each side is locked. \u25c6Apply:It can be used for wedding,event party,birthday party,youtube videos,toy shooting,makeup videos,character portraits,business background and so on."}, {"name": "Btaidi 60PCS Retro 80s Aesthetic Picture for Wall Collage, 60 Set 4x6 inch, Colorful Collage Kit, Retro Room Decor for Girls, Wall Art Prints for Room, Dorm Photo Display, VSCO Posters for Bedroom", "product_information": {"Product Dimensions": "6 x 4 x 0.01 inches", "Item Weight": "9.6 ounces", "ASIN": "B08XZ58NCK", "Customer Reviews": {"ratings_count": 78, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#427,004 in Home & Kitchen (See Top 100 in Home & Kitchen) #12,778 in Posters & Prints"], "Date First Available": "March 4, 2021"}, "brand": "Visit the Btaidi Store", "brand_url": "https://www.amazon.com/stores/Btaidi/page/458AF87A-7975-4727-93DB-844657AAA29B?ref_=ast_bln", "full_description": "Btaidi 60 Set 80s 90s Retro Aesthetic Picture Cute Room Decor For Teen Girls Bedroom Aesthetic Wall Collage Kit,The Photo Collage Kit Vsco Room Decor,We Will Continue To Design Black And White Wall Collage Photo Kit\u3001Boho Aesthetic Wall Collage Kit \u3001Wall Collage Kit Aesthetic Pictures Beige\u3001 Vintage\u3001Beach Blue\u3001Neon Pink\u3001Purple\u3001White 80s 90s Retro Aesthetic Picture And So On,Please Follow Our Store And Brand Btaidi. The Wall Collage Kit Applicable For Wall Window Door Shelf Or You Could Use Strings And Clothespins To Hang Your Prints Above The Bed Or A Study Desk Or Use A Regular Scotch Tape Or Glue And A Large Poster Board To Curate An Aesthetic Photo Wall For Your Dorm Room Decor A Versatile Gift Perfect for Any Birthday, Christmas, Housewarming Gift That Shows Your Thoughtfulness And Flair For Gift Giving. Specifications: Material: Card-Stock Paper, Printed On Thick 14 Point Semi-Gloss Paper Size: Each Card Measures Approx. 4x6inch/10x15cm Color:As Picture Shown Because Of The Different Display Of Each Computer, The Pictures And Objects Will Be Slightly Different. Package Includes: 60 Set Pictures With 60 Different Style Photo Size Of Each Card: 4x6 Inch Coverage Of Whole Pack: 4.3*4.3 Ft ADD IT TO CART, GET START FOR YOUR FUNNY TIME!!!", "pricing": "$13.99$12.26", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/61lp2Ihq5YS.jpg", "https://m.media-amazon.com/images/I/51LdPsMctSS.jpg", "https://m.media-amazon.com/images/I/61OOucL2u7L.jpg", "https://m.media-amazon.com/images/I/613cik4FhBS.jpg", "https://m.media-amazon.com/images/I/61gW7A7x7iL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Wall Art \u203a Posters & Prints", "average_rating": 4.5, "small_description": ["\u3010PICTURES FOR BEDROOM WALL DECOR AESTHETIC\u3011This Photo Collage Kit For Teen Girls Bedroom Wall Aesthetic,The Package Include 60 Set 80s 90s Retro Aesthetic Picture Themed Wall Collage Kit .Printed On Card-stock 4x6 Inch ,Extra Sturdy,Fade-Resistant And Well-Printed. ", "\u3010 VISUALLY PHOTO COLLAGE KIT AESTHETIC FOR GIRLS\u3011 The Collage Kit Aesthetic Room Decor For Teen Girls Is The Newest Trends Interior Decorations. These Modern Style Wall Decor Photo Will Surely Make You Feel Relax And Inspire Every Day.You Could Create Your Own Aesthetic Masterpiece And Your Unique Personality And Style And Create Your Favorite Atmosphere In Your Own Space. ", "\u3010 UNLIMITED CREATIVITY FOR BEDROOM WALL\u3011 The Wall Collage Kit Pictures Decor For Bedroom Aesthetic,You Could Make It Easy To Set Up A Beautiful Collage Artwork On Your Bedroom Walls.Hang Your Aesthetic Posters Using Sticky Tack, Stick Them On The Wall, Put Them In Collage Frame, Or Hang Them!Add To The Aesthetic By Hanging Up String Lights. ", "\u3010 PERFECT GIFT IDEA CUTE ROOM DECOR\u3011 The Photo Wall Art Is A Gift Packaged With Its Beautiful And High Quality Packaging Box, It Not Only Makes The Gift Ready To Give, But Also Protect Your Wall Collage Kit Aesthetic Pictures From Any Possible Damage Or Bending.Makes A Great Gift For Girls That Love To Decorate Their Bedroom! ", "\u3010 100% SATISFACTION\u3011 If The Wall Collage Kit Don't Meet Your Expectations, Please Contact Our Customer Service And We Will Reply Shortly. We Care Deeply For Our Customers And Make You Our Top Priority! "], "total_reviews": 78, "total_answered_questions": "", "customization_options": "", "seller_id": "A17CUQ0MFBES74", "seller_name": "Btaidi", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": "", "asin": "B08XZ58NCK", "category": "garden", "query": "Wall art", "page": 248, "small_description_old": "About this item\n \n\u3010PICTURES FOR BEDROOM WALL DECOR AESTHETIC\u3011This Photo Collage Kit For Teen Girls Bedroom Wall Aesthetic,The Package Include 60 Set 80s 90s Retro Aesthetic Picture Themed Wall Collage Kit .Printed On Card-stock 4x6 Inch ,Extra Sturdy,Fade-Resistant And Well-Printed. \u3010 VISUALLY PHOTO COLLAGE KIT AESTHETIC FOR GIRLS\u3011 The Collage Kit Aesthetic Room Decor For Teen Girls Is The Newest Trends Interior Decorations. These Modern Style Wall Decor Photo Will Surely Make You Feel Relax And Inspire Every Day.You Could Create Your Own Aesthetic Masterpiece And Your Unique Personality And Style And Create Your Favorite Atmosphere In Your Own Space. \u3010 UNLIMITED CREATIVITY FOR BEDROOM WALL\u3011 The Wall Collage Kit Pictures Decor For Bedroom Aesthetic,You Could Make It Easy To Set Up A Beautiful Collage Artwork On Your Bedroom Walls.Hang Your Aesthetic Posters Using Sticky Tack, Stick Them On The Wall, Put Them In Collage Frame, Or Hang Them!Add To The Aesthetic By Hanging Up String Lights. \u3010 PERFECT GIFT IDEA CUTE ROOM DECOR\u3011 The Photo Wall Art Is A Gift Packaged With Its Beautiful And High Quality Packaging Box, It Not Only Makes The Gift Ready To Give, But Also Protect Your Wall Collage Kit Aesthetic Pictures From Any Possible Damage Or Bending.Makes A Great Gift For Girls That Love To Decorate Their Bedroom! \u3010 100% SATISFACTION\u3011 If The Wall Collage Kit Don't Meet Your Expectations, Please Contact Our Customer Service And We Will Reply Shortly. We Care Deeply For Our Customers And Make You Our Top Priority!"}, {"name": "Simply Smooth Xtend Keratin Replenishing Shampoo - Collagen Soothing, Moisturizing, Volumizing Daily Haircare Shampoo for All Hair Types - Sodium Chloride Free - 8.5 Oz", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 8.43 x 4.21 x 2.91 inches; 8.5 Ounces", "UPC\n \u200f": "\u200e\n 856836000154", "Manufacturer\n \u200f": "\u200e\n Simply Smooth", "ASIN\n \u200f": "\u200e\n B00NYLV8EY", "Best Sellers Rank": "#156,129 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#3,939 in Hair Shampoo", "#3,939 in Hair Shampoo": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$25.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31CPXJDyl1L.jpg", "https://m.media-amazon.com/images/I/51ARlqoJuTL.jpg", "https://m.media-amazon.com/images/I/51KsphK7O6L.jpg", "https://m.media-amazon.com/images/I/51--EdBP0FL.jpg", "https://m.media-amazon.com/images/I/51HLZPdI3AL.jpg", "https://m.media-amazon.com/images/I/51gYWByca-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Shampoos", "average_rating": 5, "small_description": [""], "total_reviews": 4, "total_answered_questions": "", "customization_options": "", "seller_id": "A2I438L31NUQ1K", "seller_name": "American Culture Brands", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00NYLV8EY", "category": "beauty", "query": "Shampoo & Conditioner", "page": 105, "small_description_old": ""}, {"name": "Nautica Men's Solid Crew Neck Short-Sleeve Pocket T-Shirt", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.01 x 10 x 2.99 inches; 4.8 Ounces", "Item model number\n \u200f": "\u200e\n V41050", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n October 20, 2017", "Manufacturer\n \u200f": "\u200e\n Nautica", "ASIN\n \u200f": "\u200e\n B071L72WD4", "Best Sellers Rank": "#1,955 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#30 in Men's T-Shirts", "#30 in Men's T-Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Nautica Store", "brand_url": "https://www.amazon.com/stores/Nautica/page/AE6F8A7E-6EEF-4FB0-8A5D-0ACDEA2E0DE4?ref_=ast_bln", "full_description": "Simply put, every guy needs a solid collection of pocket t-shirts in his collection. This cotton style from Nautica one ups its classic roots with a touch of stretch so you know it'll fit great and keep its shape for a long time to come.", "pricing": "$16.05$40.98", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31M-Cz1Y0YL.jpg", "https://m.media-amazon.com/images/I/21LHL1oDfiL.jpg", "https://m.media-amazon.com/images/I/21yHaHyvEOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a T-Shirts", "average_rating": 4.6, "small_description": ["Casual crew-neck styling ", "Short sleeves; pocket at chest with Nautica logo ", "One fit ", "Classic/one fit "], "total_reviews": 9347, "total_answered_questions": 45, "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "X-Small", "asin": "B071L72WD4"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B07HRC2DX2"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07HRCFGG7"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07HRFW1GZ"}, {"is_selected": false, "is_available": false, "value": "Large Tall", "asin": "B075LJSXZ3"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07HRFSNL4"}, {"is_selected": false, "is_available": false, "value": "X-Large Tall", "asin": "B075LH5LWQ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07HR8C86D"}, {"is_selected": false, "is_available": false, "value": "XX-Large Tall", "asin": "B075LPQXG2"}, {"is_selected": false, "is_available": false, "value": "3X-Large Tall", "asin": "B075LJQC6S"}, {"is_selected": false, "is_available": false, "value": "4X-Large Tall", "asin": "B075LTSTBN"}, {"is_selected": false, "is_available": false, "value": "5X-Large Tall", "asin": "B075LRNQ82"}, {"is_selected": false, "is_available": false, "value": "1X", "asin": "B075LJQC6F"}, {"is_selected": false, "is_available": false, "value": "2X", "asin": "B075LH3YLP"}, {"is_selected": false, "is_available": false, "value": "3X", "asin": "B075LTXHTN"}, {"is_selected": false, "is_available": false, "value": "4X", "asin": "B075LJ2M69"}, {"is_selected": false, "is_available": false, "value": "5X", "asin": "B075LQZX1K"}, {"is_selected": false, "is_available": false, "value": "6X", "asin": "B075LRGYCS"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B075LTSTBN/ref=twister_B06XWRBDL3", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11t+Y6SX3sL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075LJSY6G/ref=twister_B06XWRBDL3", "value": "Noon Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11v6kyeDopL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075LQMLX5/ref=twister_B06XWRBDL3", "value": "Grey Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/216TtrsbgML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075LH5LX3/ref=twister_B06XWRBDL3", "value": "Nautica Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41cPON7Xx0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075LJ2M99/ref=twister_B06XWRBDL3", "value": "Bright White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11B-JdMFrwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075LQJXVB/ref=twister_B06XWRBDL3", "value": "True Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01rdxxMaLRL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07J9PZH32/ref=twister_B06XWRBDL3", "value": "Pale Coral", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31FsRoICwIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HRBKZ5J/ref=twister_B06XWRBDL3", "value": "Cradle Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/312cUZf7sXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HRBKZ9M/ref=twister_B06XWRBDL3", "value": "Bright Aqua", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31uZk51gz+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HRC27HF/ref=twister_B06XWRBDL3", "value": "Mint Spring", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31WGCQzx+EL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HR86ZV2/ref=twister_B06XWRBDL3", "value": "Monaco Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31JWylcvuSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HR877R1/ref=twister_B06XWRBDL3", "value": "Charcoal Heather (Dark)", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-vuPu+14L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HR86ZPW/ref=twister_B06XWRBDL3", "value": "Barolo", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41RAj46+1iL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HRBB388/ref=twister_B06XWRBDL3", "value": "Tidal Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/416QK-CAjzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075LPLM8V/ref=twister_B06XWRBDL3", "value": "Charcoal Heather (Light)", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/414qjCZixXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075LRDXD8/ref=twister_B06XWRBDL3", "value": "Estate Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ZVrvTfDtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01M60PQZP/ref=twister_B06XWRBDL3", "value": "Patina Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Kqux4yjvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00JN3CCEW/ref=twister_B06XWRBDL3", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01daL7jNBAL.jpg"}, {"is_selected": true, "url": null, "value": "Bright Aqua Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31M-Cz1Y0YL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HR8LSR5/ref=twister_B06XWRBDL3", "value": "Bright Cobalt", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qB4-HDNzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HR8LPYJ/ref=twister_B06XWRBDL3", "value": "Coral Sands", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31F42XSzh1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HRBWDQS/ref=twister_B06XWRBDL3", "value": "Deep Anchor Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41lVSkgGQ8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HRBN2B2/ref=twister_B06XWRBDL3", "value": "Hawaiian Ocean", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41YOjG8AdXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HRCFGTN/ref=twister_B06XWRBDL3", "value": "Melon Berry", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/316pHRjLaZS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HR8PN1L/ref=twister_B06XWRBDL3", "value": "Pine Forest Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31-Uy020LiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HRGMK3L/ref=twister_B06XWRBDL3", "value": "Shipwreck Burgundy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31BYXjRXheL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00JN3CFSK/ref=twister_B06XWRBDL3", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/11B-JdMFrwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HR8LPWL/ref=twister_B06XWRBDL3", "value": "Zest", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Cqo-nsIBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08KQK3S2R/ref=twister_B06XWRBDL3", "value": "Deep Atlantic", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31jlXQpu2LL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08KQL4NCR/ref=twister_B06XWRBDL3", "value": "Delft", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UZomRuhHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01M7MF7PP/ref=twister_B06XWRBDL3", "value": "Pale Coral Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31FsRoICwIL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07HRFSNL4", "category": "fashion", "query": "Men's Dress Shirts", "page": 3, "small_description_old": "95% Cotton, 5% Spandex Imported Pull On closure Machine Wash Casual crew-neck styling Short sleeves; pocket at chest with Nautica logo One fit Classic/one fit"}, {"name": "COSRX Acne Blemish Spot Drying Lotion 1.01 fl. oz / 30ml Dry and Reduce Blemish Spot, Pimple, Whitehead, Spot Treatment", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.23 x 1.97 x 3.15 inches; 0.28 Ounces", "Manufacturer\n \u200f": "\u200e\n COSRX INC.", "ASIN\n \u200f": "\u200e\n B09B321GS4", "Best Sellers Rank": "#21,949 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#436 in Body Lotions", "#436 in Body Lotions": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the COSRX Store", "brand_url": "https://www.amazon.com/stores/COSRX/page/C65C37C6-99CB-4105-9EFE-3E0C3F377888?ref_=ast_bln", "full_description": "", "pricing": "$16.00", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/316p731wosL.jpg", "https://m.media-amazon.com/images/I/31rE71ZDW5L.jpg", "https://m.media-amazon.com/images/I/41vTHz5qwfL.jpg", "https://m.media-amazon.com/images/I/41XkABP9HML.jpg", "https://m.media-amazon.com/images/I/41htO9PJe1L.jpg", "https://m.media-amazon.com/images/I/41cImVRZrgL.jpg", "https://m.media-amazon.com/images/I/41qqYV0TSJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Moisturizers \u203a Lotions", "average_rating": 4.4, "small_description": ["ACNE Treating Blemish Lotion: Spot treat your acne concerns! ", "Calm and Dry: For deep to surface level breakouts, apply to calm and dry out the gunk. ", "Key Ingredients: Calamine 12% Zinc Oxide 6% Salicylic Acid 1,500 ppm Vitamin B12 (Cyanocobalamin) ", "Spot and Blemish Free: Leave and let it do its work to clear your skin. ", "COSRX Standards:All COSRX products are formulated with skin-friendly ingredients that alleviate irritated skin. Hypoallergenic, Dermatologist tested, Animal Testing-FREE, Parabens-FREE, Sulfates-FREE, Phthalates-FREE "], "total_reviews": 67, "total_answered_questions": "", "customization_options": "", "seller_id": "A2E3ILYZ70ZIBL", "seller_name": "COSRX", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09B321GS4", "category": "beauty", "query": "Body Care", "page": 13, "small_description_old": "About this item ACNE Treating Blemish Lotion: Spot treat your acne concerns! Calm and Dry: For deep to surface level breakouts, apply to calm and dry out the gunk. Key Ingredients: Calamine 12% Zinc Oxide 6% Salicylic Acid 1,500 ppm Vitamin B12 (Cyanocobalamin) Spot and Blemish Free: Leave and let it do its work to clear your skin. COSRX Standards: Clean Beauty - All COSRX products are formulated with skin-friendly ingredients that alleviate irritated skin. Hypoallergenic, Dermatologist tested, Cruelty-FREE, Parabens-FREE, Sulfates-FREE, Phthalates-FREE"}, {"name": "Woody BL-EF Electric Fireplace 77\" TV Stand (White/Gray)", "product_information": {"Item Weight": "\u200e150 pounds", "Product Dimensions": "\u200e15.8 x 77.2 x 23.4 inches", "ASIN": "B09MNNBDTJ", "Customer Reviews": {"ratings_count": null, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#2,093,169 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,850 in Television Stands"], "Date First Available": "November 27, 2021"}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_dp_s_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "Woody BL-EF Electric Fireplace 77\" TV Stand - Modern TV Stand / TV Console / TV Cabinet / Central Entertainment Center Fits up to 85 inch TVs White/Black and White/Gray: high gloss fronts, legs, and body Oak/Gray: high gloss legs, matte fronts and body 40\" wide electric fireplace insert included with glass fronts, remote control and on/off control, 3 changeable flame colors, temperature control, timer setting, and dimmer Manufactured in and imported from the European Union Modern and unique contemporary design Perfect for those in need of living room storage space Flat packed and ready to ship Dimensions: 23.4 inches height x 77.2 inches width x 15.8 inches depth", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/21Y1ve72QDL.jpg", "https://m.media-amazon.com/images/I/41WKHNzuamL.jpg", "https://m.media-amazon.com/images/I/21sqjBO0LZL.jpg", "https://m.media-amazon.com/images/I/41j8b4F2IfL.jpg", "https://m.media-amazon.com/images/I/21VftGF0NeL.jpg", "https://m.media-amazon.com/images/I/31qa2o-agiL.jpg", "https://m.media-amazon.com/images/I/41wl9kgSQ4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a TV & Media Furniture \u203a Television Stands & Entertainment Centers", "average_rating": 4, "small_description": ["Woody BL-EF Electric Fireplace 77\" TV Stand - Modern TV Stand / TV Console / TV Cabinet / Central Entertainment Center ", "Fits up to 85 inch TVs ", "White/Black and White/Gray: high gloss fronts, legs, and body ", "Oak/Gray: high gloss legs, matte fronts and body ", "40\" wide electric fireplace insert included with glass fronts, remote control and on/off control, 3 changeable flame colors, temperature control, timer setting, and dimmer ", "Manufactured in and imported from the European Union ", "Dimensions: 23.4 inches height x 77.2 inches width x 15.8 inches depth "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09MNNBDTJ", "category": "garden", "query": "TV Stands", "page": 305, "small_description_old": "About this item Woody BL-EF Electric Fireplace 77\" TV Stand - Modern TV Stand / TV Console / TV Cabinet / Central Entertainment Center Fits up to 85 inch TVs White/Black and White/Gray: high gloss fronts, legs, and body Oak/Gray: high gloss legs, matte fronts and body 40\" wide electric fireplace insert included with glass fronts, remote control and on/off control, 3 changeable flame colors, temperature control, timer setting, and dimmer Manufactured in and imported from the European Union Dimensions: 23.4 inches height x 77.2 inches width x 15.8 inches depth \n \u203a See more product details"}, {"name": "Christmastime Treasures - 1 LB Resealable Bag - Christmas Themed Sprinkle Mix - Features Snowflake Quins, Santa Boot Quins, Red, Silver, and Green Pearls and More - Ice Cream and Cake Sprinkles", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 9.17 x 6.34 x 1.65 inches; 1.01 Pounds", "UPC\n \u200f": "\u200e\n 764227315834", "Manufacturer\n \u200f": "\u200e\n Sprinkle Me This", "ASIN\n \u200f": "\u200e\n B09FK6LQ59", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#270,198 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#1,640 in Dessert Sprinkles", "#1,640 in Dessert Sprinkles": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Sprinkle Me This Store", "brand_url": "https://www.amazon.com/stores/SprinkleMeThis/page/023F835B-1515-496C-B06E-4CF9D3CB0910?ref_=ast_bln", "full_description": "We gathered up all the things that make Christmas special and filled a bag full of treasures! This 1lb resealable bag features a ton of Christmas themed sprinkles including stocking quins, snowflake quins, pearls in green, red, silver, and gold and so much more. Christmastime Treasurers will the be the sprinkle mix that will leave your guests amazed of everything in it. It's a great decoration for Christmas parties, holiday parties, office parties, birthday parties, baby showers, Chrismas festivals, and bake sales. Every time you sprinkle Christmastime Treasures, you'll find something you didn't see before such as gingerbread stars and men. mini red nonpareils, and green, white and gold jimmies. The mix of colors and quins is a great blend of Christmas sprinkles that is sure to be an amazing decoration for your cakes, cupcakes, pastries, donuts, and other holiday desserts. And if you and your guests can't get enough, use your Christmastime Treasures to decorate other tasty treats such as ice cream, ice cream cakes, milkshakes, sundaes, and even on your next gingerbread house.", "pricing": "$14.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/61vITVrLXuL.jpg", "https://m.media-amazon.com/images/I/51+YjzgEn2L.jpg", "https://m.media-amazon.com/images/I/51eUzmyDezL.jpg", "https://m.media-amazon.com/images/I/41dCH8umK+L.jpg", "https://m.media-amazon.com/images/I/51Tg7DQ05yL.jpg", "https://m.media-amazon.com/images/I/5137VvwTBQL.jpg", "https://m.media-amazon.com/images/I/61qDVKCK56L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Cooking & Baking \u203a Frosting, Icing & Decorations \u203a Sprinkles", "average_rating": 4, "small_description": ["We gathered up all the things that make Christmas special and filled a bag full of treasures! This 1lb resealable bag features a ton of Christmas themed sprinkles including stocking quins, snowflake quins, pearls in green, red, silver, and gold and so much more. ", "Christmastime Treasurers will the be the sprinkle mix that will leave your guests amazed of everything in it. It's a great decoration for Christmas parties, holiday parties, office parties, birthday parties, baby showers, Christmas festivals, and bake sales. ", "Every time you sprinkle Christmastime Treasures, you'll find something you didn't see before such as gingerbread stars and men. mini red nonpareils, and green, white and gold jimmies. ", "The mix of colors and quins is a great blend of Christmas sprinkles that is sure to be an amazing decoration for your cakes, cupcakes, pastries, donuts, and other holiday desserts. ", "And if you and your guests can't get enough, use your Christmastime Treasures to decorate other tasty treats such as ice cream, ice cream cakes, milkshakes, sundaes, and even on your next gingerbread house. "], "total_reviews": 11, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09FK738RS/ref=twister_B09FK7P2ZL?_encoding=UTF8&psc=1", "value": "4 Oz", "price_string": "$9.99", "price": 9.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FK8HDZ9/ref=twister_B09FK7P2ZL?_encoding=UTF8&psc=1", "value": "8 Oz", "price_string": "$12.99", "price": 12.99, "image": null}, {"is_selected": true, "url": null, "value": "16 Oz (1 LB)", "price_string": "$14.99", "price": 14.99, "image": null}]}, "seller_id": "A1O85R2X252EWG", "seller_name": "The Wright Sales", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09FK6LQ59", "category": "grocery", "query": "Party Mix", "page": 51, "small_description_old": "We gathered up all the things that make Christmas special and filled a bag full of treasures! This 1lb resealable bag features a ton of Christmas themed sprinkles including stocking quins, snowflake quins, pearls in green, red, silver, and gold and so much more. Christmastime Treasurers will the be the sprinkle mix that will leave your guests amazed of everything in it. It's a great decoration for Christmas parties, holiday parties, office parties, birthday parties, baby showers, Christmas festivals, and bake sales. Every time you sprinkle Christmastime Treasures, you'll find something you didn't see before such as gingerbread stars and men. mini red nonpareils, and green, white and gold jimmies. The mix of colors and quins is a great blend of Christmas sprinkles that is sure to be an amazing decoration for your cakes, cupcakes, pastries, donuts, and other holiday desserts. And if you and your guests can't get enough, use your Christmastime Treasures to decorate other tasty treats such as ice cream, ice cream cakes, milkshakes, sundaes, and even on your next gingerbread house."}, {"name": "Dark Spot Remover for Face and Body,Brighten & Moisturizes Armpit, Neck, Knees, Private Parts - Body Moisturizer Intimate Skin Cream (orange)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 5.08 x 1.69 x 1.65 inches; 2.89 Ounces", "UPC\n \u200f": "\u200e\n 761865925517", "Manufacturer\n \u200f": "\u200e\n elvanya", "ASIN\n \u200f": "\u200e\n B08HNFTG83", "Best Sellers Rank": "#4,563 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#60 in Body Creams", "#60 in Body Creams": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Elvanya Store", "brand_url": "https://www.amazon.com/stores/Elvanya/page/7DFE7C3D-4EB9-462F-9246-1678D9C6D7B0?ref_=ast_bln", "full_description": "", "pricing": "$15.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51Ha78XQyDL.jpg", "https://m.media-amazon.com/images/I/41uNYAKC4EL.jpg", "https://m.media-amazon.com/images/I/41bnD6FvwHL.jpg", "https://m.media-amazon.com/images/I/41t-6yLGX6L.jpg", "https://m.media-amazon.com/images/I/41jzJ4hzFLL.jpg", "https://m.media-amazon.com/images/I/41V+uYPCj6L.jpg", "https://m.media-amazon.com/images/I/51FEhNJtSkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Moisturizers \u203a Creams", "average_rating": 4, "small_description": ["Collagen and Bamboo Charcoal Infused - The natural based ingredients of this product such as collagen and bamboo charcoal helps the skin get more nourishment. The additional collagen provided by this product can help repair broken skin and tighten big pores. The bamboo charcoal infused in this product helps remove dirt, dust and unwanted smell. ", "Brighten the Skin - Achieve a more fairer skin with this product. Brightening cream that helps the skin achieve a shine glow in a short period of time. ", "Moisturizing the Skin - This product doesn't only brighten your skin but it also promotes skin moisturization with continued use. The scientifically formulated cream helps keep the skin moisturized and for a healthier you. ", "Can Be Used All Over the Body - Essential for making up those private areas such as the underarms, knees, elbows, neck, and in-between your legs. This body cream helps brighten those dark spots and keep skin moisturized to maintain healthier skin. ", "Get Your Beach Body Ready - Have your summer body, beach body ready in no time. Achieve the summer body you want while using this cream on those problem areas and be ready to flaunt your beach ready body. "], "total_reviews": 3665, "total_answered_questions": 30, "customization_options": {"Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09SGMQNF1/ref=twister_B09SMXKSMC?_encoding=UTF8&psc=1", "value": "greenset", "price_string": "$30.99", "price": 30.99, "image": "https://m.media-amazon.com/images/I/51ZNHh3-R1L.jpg"}, {"is_selected": true, "url": null, "value": "orange", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/51Ha78XQyDL.jpg"}]}, "seller_id": "A1MSO4H43JWEWZ", "seller_name": "Glamhiv", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08HNFTG83", "category": "beauty", "query": "Body Makeup", "page": 13, "small_description_old": "About this item Collagen and Bamboo Charcoal Infused - The natural based ingredients of this product such as collagen and bamboo charcoal helps the skin get more nourishment. The additional collagen provided by this product can help repair broken skin and tighten big pores. The bamboo charcoal infused in this product helps remove dirt, dust and unwanted smell. Brighten the Skin - Achieve a more fairer skin with this product. Brightening cream that helps the skin achieve a shine glow in a short period of time. Moisturizing the Skin - This product doesn't only brighten your skin but it also promotes skin moisturization with continued use. The scientifically formulated cream helps keep the skin moisturized and for a healthier you. Can Be Used All Over the Body - Essential for making up those private areas such as the underarms, knees, elbows, neck, and in-between your legs. This body cream helps brighten those dark spots and keep skin moisturized to maintain healthier skin. Get Your Beach Body Ready - Have your summer body, beach body ready in no time. Achieve the summer body you want while using this cream on those problem areas and be ready to flaunt your beach ready body."}, {"name": "XUHUI Bookshelf for Office Plastic Desktop File Small Bookshelf, Desktop Creative Bookshelf for Office Storage Organizer, Thicker File Basket with Handle Bookcase (Color : Green)", "product_information": {"Item Weight": "\u200e2.2 pounds", "Country of Origin": "\u200eChina", "ASIN": "B09S5KV1MY", "Date First Available": "January 7, 2022"}, "brand": "Brand: XUHUI", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=XUHUI", "full_description": "Will bring a natural aesthetic style to your home. It also adds a sense of fashion and appeal to your space.Product: BookshelfMaterial: PSColor classification: green, blueWeight: 1000gSize: 6.2x10x12.5inOrigin: South KoreaProduct specifications: single packageIf you have any questions, please feel free to contact us via email and we will get back to you as soon as possible.", "pricing": "$88.03", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31abL+DKapL.jpg", "https://m.media-amazon.com/images/I/3162u04ikuL.jpg", "https://m.media-amazon.com/images/I/31Rvq4tVKSL.jpg", "https://m.media-amazon.com/images/I/41lQsYCr41L.jpg", "https://m.media-amazon.com/images/I/41omnZ8lEcL.jpg", "https://m.media-amazon.com/images/I/41d7Wmk6TcL.jpg", "https://m.media-amazon.com/images/I/41-o1wwgy1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office & School Supplies \u203a Desk Accessories & Workspace Organizers \u203a Platforms, Stands & Shelves \u203a Desktop & Off-Surface Shelves", "average_rating": "", "small_description": ["It is not only a place to store books, but also decorations that can make your house unique. ", "Organize and store, separate the small partition design in the middle, separate and organize files and books, and tidy your desktop space. ", "Handle design, open your mobile storage for easy access, move at any time, dust is not easy to accumulate and wash, the design is ventilated and not easy to get dirty. Ventilation and moisture resistance are simple and modern. ", "Multifunctional bookshelf mobile book basket, hand-held on both sides, convenient to move and take on more classified storage, single combination single combination design, classification combination makes storage clear. ", "Made of high-quality PS material, durable, odorless, hygienic and environmentally friendly, non-toxic, environmentally friendly When you open your mobile storage, you can easily carry and move it at any time. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09S5PFT8Z/ref=twister_B09SCZWZ5Z?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "$88.03", "price": 88.03, "image": "https://m.media-amazon.com/images/I/31L5oty0lEL.jpg"}, {"is_selected": true, "url": null, "value": "Green", "price_string": "$88.03", "price": 88.03, "image": "https://m.media-amazon.com/images/I/31abL+DKapL.jpg"}]}, "seller_id": "A1D4V62U85ASRU", "seller_name": "YUYUMINGMING", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09S5KV1MY", "category": "garden", "query": "Book Cases", "page": 179, "small_description_old": "About this item It adopts a simple and modern design, which is very suitable for any room, creating more storage space for your home without taking up too much space. Organize and store, separate the small partition design in the middle, separate and organize files and books, and tidy your desktop space. Handle design, open your mobile storage for easy access, move at any time, dust is not easy to accumulate and wash, the design is ventilated and not easy to get dirty. Ventilation and moisture resistance are simple and modern. Multifunctional bookshelf mobile book basket, hand-held on both sides, convenient to move and take on more classified storage, single combination single combination design, classification combination makes storage clear. Made of high-quality PS material, durable, odorless, hygienic and environmentally friendly, non-toxic, environmentally friendly When you open your mobile storage, you can easily carry and move it at any time. \n \u203a See more product details"}, {"name": "Hstore Life Skull Bluetooth Speakers, Portable Wireless Speaker Built-in Mic, Cool Creative Design Bass Stereo Speaker for Halloween, Party, Travel, Outdoor, Home Decor, Support TF/U Disk/AUX", "product_information": {"Product Dimensions": "2.9 x 2.6 x 3.5 inches", "Item Weight": "7.9 ounces", "Manufacturer": "Hstore Life", "ASIN": "B09RF2DLZX", "Best Sellers Rank": ["#3,859 in Portable Bluetooth Speakers #34,081 in MP3 & MP4 Player Accessories"]}, "brand": "Brand: Hstore Life", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Hstore+Life", "full_description": "\u25b6Brand\u25c0 Hstore Life Product Name: Skull Bluetooth Speaker Unique Bluetooth Skull Speaker A Unique Gift for Your Family and Friends This skull speaker is the Newest Designed, the unique artistic modeling is very attractive, Sunglasses-Skull Speaker. It's your best choice as a cool creative gift to your friends and family. Portable Nice Little Bluetooth Speaker with Amazing Sound This little portable speaker has a 8W loudspeaker, it features super cool skull shape and stereo sound quality, this speaker not only plays high quality music, but also very collectible. It also can be used for home decoration or marvelous party playtime. Support TWS Dual Wireless Stereo Pairing You can order 2 pieces of this speaker, and pair 2 speakers with a single device to enjoy the perfect stereo sound at the same time. The stereo sounds will be more wonderful. Please follow these steps: 1. Remove the previous Bluetooth connection records of these two speakers on your phone or bluetooth devices. 2. Turn on the two speakers at the same time. 3. Selecting one speaker and press the \"model\" button and hold on, You will hear a beeping sound within three seconds, which means that the two speakers are automatically paired successfully. When you hear the beep release the \"model\" button. 4. connect your device via bluetooth, then you can now enjoy the sound effects of the two speakers at the same time. Package included: 1 x Skull Bluetooth Speaker 1 x USB Cable", "pricing": "$129.59", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/411Yt2TjnfL.jpg", "https://m.media-amazon.com/images/I/41-IdnPgBzL.jpg", "https://m.media-amazon.com/images/I/41pFdlTvU0L.jpg", "https://m.media-amazon.com/images/I/51XpwBPP2rL.jpg", "https://m.media-amazon.com/images/I/41TYt4KO5BL.jpg", "https://m.media-amazon.com/images/I/41HLS5pWAKL.jpg", "https://m.media-amazon.com/images/I/412HWjKs3UL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Portable Audio & Video \u203a Portable Speakers & Docks \u203a Portable Bluetooth Speakers", "average_rating": "", "small_description": ["\u3010Attractive Creative Art Design\u3011TOUMENY Unique, innovative, outstanding skull head with glasses design, Perfectly Portable fits easily inside backpacks or computer bags. Easy to switch the songs and volume control and take the call and also good for home decoration or gift. ", "\u3010Extraordinary sound quality\u3011Built-in Hi-Fi chip and subwoofer chip, Smart noise-cancelling, and stereo enhancement technology, you will get clear uniform and amazing sound quality. The advanced audio processing tech, larger drivers, and more powerful amplifier modules results in a fully articulate sound at all volumes. ", "\u3010HAND MADE\u3011Hand-filling with the polymer resin, integral forming under vacuum at-0.2 MPA and then hand-painting. The matte black surface is particularly textured and makes you adore it. The material is lightweight and its total weight is only about 420g. ", "\u3010Long Playtime, Fast Recharge\u3011Built in 1200mah battery. lasts up to 6-7 hours of music playtime with full charge, recharge just 2 hours,Highly Durable Constructed with premium materials to keep you charging again and again,universal micro USB charging port design, and support TF card, U disk, Audio cable connection playing. ", "\u3010TRUE WIRELESS STEREO\u30118W audio level still not enough Loud? Thanks to TWS function, If you pair two this model speakers, you can achieve real wireless Bluetooth playing for left and right channels separated of two Bluetooth speakers. Just control the TWS master device, then music can be played in sync on both devices with double enhanced stereo sound, your space will be filled with music. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ALQEQB23C43SS", "seller_name": "Lisin", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RF2DLZX", "category": "electronics", "query": "Bluetooth Speakers", "page": 73, "small_description_old": "About this item\n \n\u3010Attractive Creative Art Design\u3011Unique, innovative, outstanding skull head with glasses design, Perfectly Portable fits easily inside backpacks or computer bags. Easy to switch the songs and volume control and take the call and also good for home decoration or gift. \u3010Extraordinary sound quality\u3011Built-in Hi-Fi chip and subwoofer chip, Smart noise-cancelling, and stereo enhancement technology, you will get clear uniform and amazing sound quality. The advanced audio processing tech, larger drivers, and more powerful amplifier modules results in a fully articulate sound at all volumes. \u3010HAND MADE\u3011Hand-filling with the polymer resin, integral forming under vacuum at-0.2 MPA and then hand-painting. The matte black surface is particularly textured and makes you adore it. The material is lightweight and its total weight is only about 420g. \u3010Long Playtime, Fast Recharge\u3011Built in 1200mah battery. lasts up to 6-7 hours of music playtime with full charge, recharge just 2 hours,Highly Durable Constructed with premium materials to keep you charging again and again,universal micro USB charging port design, and support TF card, U disk, Audio cable connection playing. \u3010TRUE WIRELESS STEREO\u30118W audio level still not enough Loud? Thanks to TWS function, If you pair two this model speakers, you can achieve real wireless Bluetooth playing for left and right channels separated of two Bluetooth speakers. Just control the TWS master device, then music can be played in sync on both devices with double enhanced stereo sound, your space will be filled with music."}, {"name": "ZGF face Massager Facial Lifting Skin Microcurrent Tightening Reduce Wrinkle Galvanic Spa Face Body Care Massager Home Use Beauty Device Tool. (Color : White)", "product_information": {"Item Weight": "0.035 ounces", "Department": "Unisex-adult", "Manufacturer": "ZGF", "ASIN": "B097TTFZ43", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#281,039 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #94 in Wrinkle & Anti-Aging Devices"]}, "brand": "Brand: ZGF", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ZGF", "full_description": "Thanks to its small size and wireless design, you can either use it at home and enjoy beauty salon at home, or carry it with you whenever you are on business travel or on vacation.Packing list:1x Microcurrent Beauty Device3x Replaceable Heads1x Base1x Charging Cord1x Storage Bag1x User ManualNote:Please allow some deviation due to manual measurement and make sure you do not mind before purchase.The color of the actual item may slightly vary from the images due to different computer screens and display settings.Thanks for your understanding!", "pricing": "$79.78", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/31-al-v+uMS.jpg", "https://m.media-amazon.com/images/I/413Fn7tXnKS.jpg", "https://m.media-amazon.com/images/I/51P5mZW7KBS.jpg", "https://m.media-amazon.com/images/I/510A-TOcmoS.jpg", "https://m.media-amazon.com/images/I/51mainQP8QS.jpg", "https://m.media-amazon.com/images/I/41BjPrRjHpS.jpg", "https://m.media-amazon.com/images/I/41SY6dcdsQS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Skin Care Tools \u203a Wrinkle & Anti-Aging Devices", "average_rating": 5, "small_description": ["The bio microcurrent device is multifunctional and capable of solving a various of skin problems including: lift and tighten skin, reduce fine lines and wrinkles, shrink large pores, stimulate collagen, elastin, circulation, and penetration, moisturize and rejuvenate skin. ", "It allows the introduction of essence, toner, lotion, facial mask, etc., which will promote the skin absorption of nutrients and largely improve your skin condition. "], "total_reviews": 1, "total_answered_questions": "", "customization_options": {"Color": null}, "seller_id": "A2IMH0FMZYLBJ5", "seller_name": "Xuan shop", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B097TTFZ43", "category": "beauty", "query": "Skin Care Tools", "page": 133, "small_description_old": "About this item The bio microcurrent device is multifunctional and capable of solving a various of skin problems including: lift and tighten skin, reduce fine lines and wrinkles, shrink large pores, stimulate collagen, elastin, circulation, and penetration, moisturize and rejuvenate skin. It allows the introduction of essence, toner, lotion, facial mask, etc., which will promote the skin absorption of nutrients and largely improve your skin condition."}, {"name": "Womens Mens house slippers Memory Foam Garden Plush Lining Slip On Rubber sole Indoor Outdoor House Casual Shoes \uff08Black adult-10.5-11)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 13.58 x 6.14 x 3.78 inches; 1.1 Pounds", "Date First Available\n \u200f": "\u200e\n October 6, 2021", "ASIN\n \u200f": "\u200e\n B09F2MFG1Q", "": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: ODOUK", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_sh_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=ODOUK", "full_description": "", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/417wl6qwtUL.jpg", "https://m.media-amazon.com/images/I/31LiLzAhpzL.jpg", "https://m.media-amazon.com/images/I/31ZSNNMeLgL.jpg", "https://m.media-amazon.com/images/I/41FGrhY0AHL.jpg", "https://m.media-amazon.com/images/I/41yt+4Z5vgL.jpg", "https://m.media-amazon.com/images/I/41sL5Nm1P4L.jpg", "https://m.media-amazon.com/images/I/41TwelZcV3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 3.3, "small_description": [""], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09F2MFG1Q", "category": "fashion", "query": "Men's Slippers", "page": 93, "small_description_old": ""}, {"name": "Touch Screen Replacement Parts Digitizer Glass Assembly Kit for iPad 2 2nd Gen 2011 (A1397 A1395 A1396) with Home Button + Camera Holder Adhesive Stickers Professional Tools (White)", "product_information": {"Package Dimensions": "10.98 x 8.43 x 0.87 inches", "Item Weight": "9.9 ounces", "Manufacturer": "Antrix", "ASIN": "B09G2ZL7CP", "Item model number": "screen-2w", "Customer Reviews": {"ratings_count": 5, "stars": "3.2 out of 5 stars"}, "Best Sellers Rank": ["#537 in Tablet Replacement Screens #63,161 in Tablet Accessories"], "Date First Available": "September 13, 2021"}, "brand": "Visit the Antrix Store", "brand_url": "https://www.amazon.com/stores/antrixpatch/page/55A48CE9-86D5-4713-8EAE-799F4EDC19EF?ref_=ast_bln", "full_description": "This premium iPad 2 Model A1397 A1395 A1396 (2011 model) touch screen is the perfect screen replacement for cracked screen/glass or non-functioning / unresponsive touch screen. We only use factroy OEM components that very similar to those used by the original manufacturer. We hope that your damaged ipad can be restored to a completely new state. *PLEASE NOTE* This is ONLY a front glass replacement digitizer for the iPad 2 Model A1397 A1395 A1396 (2011 model) . The LCD screen is not included.Compatibility\uff1aOnly Compatible with iPad 2 2011 Model A1397 A1395 A1396 (2011 model) WIFI GSM CDMA High quality product! Not Compatible with iPad Mini 2 or iPad Air 2. (Carefully check model number on back of device)Packaging Includes:Compatible for iPad 2 2011 Model A1397 A1395 A1396 (2011 model) Glass Screen Digitizer Complete Full Assembly Kit with Home Button, Camera Bracket and Adhesive PreInstalled.Tool kit included\uff1a3x1.5mm screwdriver 2x Plastics pry bar 2xOpen shell fragments 1xSuction cup 1* frameInstallation guide is Not included.The LCD screen is not included.Please NOTE:DO NOT glue the touch screen with your ipad until you TEST and make sure it works with your ipad. We recommend that you watch online video installation on youtube or consult professionals for help to ensure a successful installation. If you don't know how to install it, please dont take a risk, we suggest you to find a professional technician to do that. For any inquiries regarding the product or service, please contact us and we will do our best to solve your problem within 24 Hours. Thank you.", "pricing": "$14.95", "list_price": "", "availability_quantity": 13, "availability_status": "Only 13 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41bpVGt8LnL.jpg", "https://m.media-amazon.com/images/I/31WGHk1SeRL.jpg", "https://m.media-amazon.com/images/I/31m18K1TMnL.jpg", "https://m.media-amazon.com/images/I/41UztPDyeYL.jpg", "https://m.media-amazon.com/images/I/31pOar+lIeL.jpg", "https://m.media-amazon.com/images/I/31F2th46h1L.jpg", "https://m.media-amazon.com/images/I/51-29E8TnXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Tablet Replacement Parts \u203a Screens", "average_rating": 3.2, "small_description": ["Compatible Model: Only for White iPad 2 2011 Model A1397 A1395 A1396 (2011 model).Please check the Model Number before purchasing this Item. You will find the Model Number on the back of your device.The wrong model could damage your pad. ", "Strict Quality Guarantee: All of digitiaers have passed strictly QC tested and 100% in good condition before shipment. Make sure no scratch/no dead area in touch screen and home button .We refuse any flaw digitizers, only provide A+ quality products. ", "Please Note: Item does not included LCD screen and install Instructions,but you can find lots of installation videos on YouTube. Install under professional guidance is a best choice. Please email to our service team If you need install help , We will do our best to help you repair it. ", "Double Packaging: The ipad digitizer is sent in double-layer packaging, hard airplane box + protective cotton, which can protect the digitizer from damage during transportation. ", "Package Included:1 * white iPad 2 2011 Model A1397 A1395 A1396 (2011 model) Gen Glass Touch Screen Digitizer Replacement, 1*Professional tools kit set.1* frame. "], "total_reviews": 5, "total_answered_questions": "", "model": "screen-2w", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "2 white", "price_string": "$14.95", "price": 14.95, "image": "https://m.media-amazon.com/images/I/41bpVGt8LnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09G31XD56/ref=twister_B09NRDK9W6?_encoding=UTF8&psc=1", "value": "3 black", "price_string": "$13.95", "price": 13.95, "image": "https://m.media-amazon.com/images/I/41JlDw-UH+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09G2ZY96Y/ref=twister_B09NRDK9W6?_encoding=UTF8&psc=1", "value": "3 white", "price_string": "$14.95", "price": 14.95, "image": "https://m.media-amazon.com/images/I/41R5k1upWGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JSSHLQH/ref=twister_B09NRDK9W6?_encoding=UTF8&psc=1", "value": "4 black", "price_string": "$9.95", "price": 9.95, "image": "https://m.media-amazon.com/images/I/41RtoO4snUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09G2ZQMVJ/ref=twister_B09NRDK9W6?_encoding=UTF8&psc=1", "value": "4 white", "price_string": "$13.95", "price": 13.95, "image": "https://m.media-amazon.com/images/I/415PZtO1K0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09G2ZP82D/ref=twister_B09NRDK9W6?_encoding=UTF8&psc=1", "value": "5 Cable", "price_string": "$3.95", "price": 3.95, "image": "https://m.media-amazon.com/images/I/21s-iPyL+BL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09G2ZBYDX/ref=twister_B09NRDK9W6?_encoding=UTF8&psc=1", "value": "5 black", "price_string": "$17.95", "price": 17.95, "image": "https://m.media-amazon.com/images/I/41Q-+T-FU1L.jpg"}]}, "seller_id": "A2BJM5WALYVYJQ", "seller_name": "T&T-US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09G2ZL7CP", "category": "electronics", "query": "Video Glasses", "page": 110, "small_description_old": "Compatible Model: Only for White iPad 2 2011 Model A1397 A1395 A1396 (2011 model).Please check the Model Number before purchasing this Item. You will find the Model Number on the back of your device.The wrong model could damage your pad. Strict Quality Guarantee: All of digitiaers have passed strictly QC tested and 100% in good condition before shipment. Make sure no scratch/no dead area in touch screen and home button .We refuse any flaw digitizers, only provide A+ quality products. Please Note: Item does not included LCD screen and install Instructions,but you can find lots of installation videos on YouTube. Install under professional guidance is a best choice. Please email to our service team If you need install help , We will do our best to help you repair it. Double Packaging: The ipad digitizer is sent in double-layer packaging, hard airplane box + protective cotton, which can protect the digitizer from damage during transportation. Package Included:1 * white iPad 2 2011 Model A1397 A1395 A1396 (2011 model) Gen Glass Touch Screen Digitizer Replacement, 1*Professional tools kit set.1* frame."}, {"name": "Safco Products Napoli Bookcase, Sierra Cherry Veneer", "product_information": {"Item Weight": "\u200e136 pounds", "Product Dimensions": "\u200e16 x 36 x 68 inches", "Country of Origin": "\u200eChina", "Item model number": "\u200eVB5CRY", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Height": "\u200e68 inches", "Assembled Width": "\u200e36 inches", "Assembled Length": "\u200e16 inches", "Weight": "\u200e146 Pounds", "ASIN": "B000GLTJ3M", "Customer Reviews": {"ratings_count": null, "stars": "4.0 out of 5 stars"}, "Best Sellers Rank": ["#6,368,035 in Home & Kitchen (See Top 100 in Home & Kitchen) #9,446 in Bookcases"], "Date First Available": "June 26, 2006"}, "brand": "Visit the Safco Products Store", "brand_url": "https://www.amazon.com/stores/SafcoProducts/page/E8685520-E005-4038-8D57-A7CD3C31B71A?ref_=ast_bln", "full_description": "The Corsica Series Bookcases has open shelves for convenient storage. There is a choice of two, four or five shelf units. It comes with adjustable shelves. Mayline Heritage began in 1939, manufacturing drafting tables as the Engineering Supply company.\u00a0 today Mayline is one of the leading mid-market contract furniture Manufacturers in the U.S., offering a complete collection of office furniture, filing, storage, and customized solutions.\u00a0 Mayline understands you have unique workplace needs, so every effort is made to optimize the environment to fit both your style and your space.", "pricing": "$267.60", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41ZkV97GLDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": 4, "small_description": ["The Corsica Series Bookcases Has Open Shelves For Convenient Storage ", "There Is a Choice of Two, Four Or Five Shelf Units ", "It Comes With Adjustable Shelves ", "From The Brand Name: Mayline ", "Assembly Required: Yes "], "total_reviews": 1, "total_answered_questions": "", "model": "\u200eVB5CRY", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B000GLTJ3M", "category": "garden", "query": "Bookcases", "page": 143, "small_description_old": "About this item The Corsica Series Bookcases Has Open Shelves For Convenient Storage There Is a Choice of Two, Four Or Five Shelf Units It Comes With Adjustable Shelves From The Brand Name: Mayline Assembly Required: Yes \n \u203a See more product details"}, {"name": "CRAVINGS BY ZOE Valentine\u2019s Day Chocolate Truffles | Assorted Chocolate Gift Box Red | Gourmet Chocolate | Delicious Milk Chocolate, Dark Chocolate and White Chocolate Flavors with 16 Assorted Toppings - 7.5 oz, 16 Count", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.79 x 5.2 x 1.34 inches; 12.31 Ounces", "UPC\n \u200f": "\u200e\n 860007436369", "ASIN\n \u200f": "\u200e\n B09LM3H2F5", "Best Sellers Rank": "#9,370 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#49 in Candy & Chocolate Gifts", "#49 in Candy & Chocolate Gifts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the CRAVINGS BY ZOE Store", "brand_url": "https://www.amazon.com/stores/CravingsbyZoe/page/27D31ACD-1761-4B77-9E34-0CAF3104AA15?ref_=ast_bln", "full_description": "", "pricing": "$24.95", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51bOWOTdbTL.jpg", "https://m.media-amazon.com/images/I/41zO7miJt-L.jpg", "https://m.media-amazon.com/images/I/41ikxqMbZPL.jpg", "https://m.media-amazon.com/images/I/514IUOOPyBL.jpg", "https://m.media-amazon.com/images/I/51SitFi5SVL.jpg", "https://m.media-amazon.com/images/I/419isK2SLCL.jpg", "https://m.media-amazon.com/images/I/41p-7yndkIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Candy & Chocolate \u203a Candy & Chocolate Gifts", "average_rating": 4.4, "small_description": ["MOUTHWATERING ASSORTMENT - This irresistible chocolate gift box comes complete with a rich mixture of 16 savory gourmet chocolates in a lovely 7.5 ounce chocolate gift box. The assortment includes milk chocolate, dark chocolate and white chocolate shells with 16 delicious flavors. ", "GIFTING MADE EASY: Perfect for Valentines Day, Mother's Day or any occasion! Surprise someone special with this sweet Chocolate Truffles Gift Set presented in an impressive red and gold chocolate gift box. ", "DELICIOUS FILLINGS: Every last gourmet chocolate in the bunch is a mouthwatering treat that is filled with premium ingredients and flavors you can only dream of; including including Amaretto, Caramel, Champagne, Coffee, Hazelnut, Irish Cream, Raspberry, Sea Salt Caramel, and Tiramisu. ", "HAND-CRAFTED WITH LOVE IN THE USA: Our Craving's By Zoe chocolate truffles are hand crafted by our chocolatier in New Jersey, USA. Each bite is made with a velvety and rich chocolate using our family recipe. ", "ZOE'S PROMISE: Our customer's satisfaction is of utmost importance to us, that's why every piece is made with the finest ingredients and is carefully packaged and sealed in a luxury chocolate gift box. If you are not happy with your order, contact us and we'll make it right! "], "total_reviews": 113, "total_answered_questions": "", "customization_options": {"Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09LLTNP4F/ref=twister_B09NGGKC4H?_encoding=UTF8&psc=1", "value": "Happy Birthday Truffle Chocolate", "price_string": "$24.95", "price": 24.95, "image": "https://m.media-amazon.com/images/I/51SgznUgrML.jpg"}, {"is_selected": true, "url": null, "value": "Holiday Truffle Chocolate", "price_string": "$24.95", "price": 24.95, "image": "https://m.media-amazon.com/images/I/51bOWOTdbTL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LL9NHMF/ref=twister_B09NGGKC4H?_encoding=UTF8&psc=1", "value": "Truffle Collection Chocolate", "price_string": "$24.95", "price": 24.95, "image": "https://m.media-amazon.com/images/I/51O6BzK8fYL.jpg"}]}, "seller_id": "A3LGX7J4WBPWW3", "seller_name": "PriceFair", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09LM3H2F5", "category": "grocery", "query": "Candy & Chocolate", "page": 14, "small_description_old": "About this item MOUTHWATERING ASSORTMENT - This irresistible chocolate gift box comes complete with a rich mixture of 16 savory gourmet chocolates in a lovely 7.5 ounce chocolate gift box. The assortment includes milk chocolate, dark chocolate and white chocolate shells with 16 delicious flavors. GIFTING MADE EASY: Perfect for Valentines Day, Mother's Day or any occasion! Surprise someone special with this sweet Chocolate Truffles Gift Set presented in an impressive red and gold chocolate gift box. DELICIOUS FILLINGS: Every last gourmet chocolate in the bunch is a mouthwatering treat that is filled with premium ingredients and flavors you can only dream of; including including Amaretto, Caramel, Champagne, Coffee, Hazelnut, Irish Cream, Raspberry, Sea Salt Caramel, and Tiramisu. HAND-CRAFTED WITH LOVE IN THE USA: Our Craving's By Zoe chocolate truffles are hand crafted by our chocolatier in New Jersey, USA. Each bite is made with a velvety and rich chocolate using our family recipe. ZOE'S PROMISE: Our customer's satisfaction is of utmost importance to us, that's why every piece is made with the finest ingredients and is carefully packaged and sealed in a luxury chocolate gift box. If you are not happy with your order, contact us and we'll make it right!"}, {"name": "Grommet Blackout Curtains for Bedroom and Living Room - 2 Panels Set Thermal Insulated Room Darkening Curtains (52 x 84 Inch, Navy Blue, 2 Panels)", "product_information": {"Package Dimensions": "14.65 x 11.57 x 3.03 inches", "Item Weight": "10.6 ounces", "Manufacturer": "Tony's collection", "ASIN": "B09BYX42DW", "Customer Reviews": {"ratings_count": 19, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#132,442 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,534 in Window Curtain Panels"], "Date First Available": "August 5, 2021"}, "brand": "Visit the Tony's collection Store", "brand_url": "https://www.amazon.com/stores/Tonyscollection/page/67323EA6-CC31-40D7-A640-BAE49210EE93?ref_=ast_bln", "full_description": "", "pricing": "$28.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51blEZ0zvHL.jpg", "https://m.media-amazon.com/images/I/51p-znuOJSL.jpg", "https://m.media-amazon.com/images/I/519AJaPj5dL.jpg", "https://m.media-amazon.com/images/I/51-mTQAroAL.jpg", "https://m.media-amazon.com/images/I/51L0MmNF6pL.jpg", "https://m.media-amazon.com/images/I/514EyDA-K1L.jpg", "https://m.media-amazon.com/images/I/71jfbtR8C9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Window Treatments \u203a Curtains & Drapes \u203a Panels", "average_rating": 4.8, "small_description": ["\ud83c\udfe1Blackout Curtains Package Includes: Set of 2 navy blue curtains & drapes; Each panel measures 52 Inches Wide by 82 Inches Long. Each panel integrates 8 stainless grommets suitable for most curtain rods on the market for hassle-free usage. ", "\ud83c\udfe1Window Curtains Design: Features one of the special patterns designed to add character to your home without clashing with your decor. The silver foil printed wave pattern will fit perfectly your bedroom, living room, home office, kitchen, kids room, nursey room, etc. ", "\ud83c\udfe1Blackout Effect: High-quality fabric construction that darkens considerably your room and provides a certain level of noise reduction and thermal insulation for improved privacy and comfort. Choose a darker color for up to 98% light blocking capacity. ", "\ud83c\udfe1Thermal Insulated: These Thermal Insulated Curtains help prevent energy losses by insulating hot summers and cold winters.They can reduce heat loss and penetration into any room. ", "\ud83c\udfe1Care Instructions: Our room darkening blackout curtain machine is washable, do not bleach, Iron at low. "], "total_reviews": 19, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09BYSPY16/ref=twister_B09BYMZBF1?_encoding=UTF8&psc=1", "value": "Beige", "price_string": "$30.99", "price": 30.99, "image": "https://m.media-amazon.com/images/I/51QdDYITXxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BZ1C7J8/ref=twister_B09BYMZBF1?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$26.99", "price": 26.99, "image": "https://m.media-amazon.com/images/I/519EGD4XHVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BZ3LD83/ref=twister_B09BYMZBF1?_encoding=UTF8&psc=1", "value": "Blush", "price_string": "$30.99", "price": 30.99, "image": "https://m.media-amazon.com/images/I/51ivHQWr5zL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BZ46S5C/ref=twister_B09BYMZBF1?_encoding=UTF8&psc=1", "value": "Christmas Red", "price_string": "$30.99", "price": 30.99, "image": "https://m.media-amazon.com/images/I/51iHd7dVv2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BZ6463J/ref=twister_B09BYMZBF1?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "$30.99", "price": 30.99, "image": "https://m.media-amazon.com/images/I/516KtGNWx+L.jpg"}, {"is_selected": true, "url": null, "value": "Navy Blue", "price_string": "$28.99", "price": 28.99, "image": "https://m.media-amazon.com/images/I/51iboxQernL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BYSBXZB/ref=twister_B09BYMZBF1?_encoding=UTF8&psc=1", "value": "Sliver", "price_string": "$28.99", "price": 28.99, "image": "https://m.media-amazon.com/images/I/51QyQ2nHX+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09BZ45R98/ref=twister_B09BYMZBF1?_encoding=UTF8&psc=1", "value": "Yellow", "price_string": "$30.99", "price": 30.99, "image": "https://m.media-amazon.com/images/I/51SUnwVEO5L.jpg"}], "Size": null}, "seller_id": "A2N28Y60VOGBOS", "seller_name": "Tony's collection", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09BYX42DW", "category": "garden", "query": "Living room Sets", "page": 161, "small_description_old": "About this item\n \n\ud83c\udfe1Blackout Curtains Package Includes:Set of 2 navy blue curtains & drapes; Each panel measures 52 Inch wide by 82 Inch long.Each panel integrate 8 stainless grommets suitable for most curtain rods on the market for a hassle-free usage. \ud83c\udfe1Window Curtains Design:Features one of special patterns designed to add character to your home without clashing with your decor.The silver foil printed wave pattern will fit perfectly your bedroom, living room, home office, kitchen,kids room and nursey room etc. \ud83c\udfe1Blackout Effect:High quality fabric construction that darkens considerably your room and provide a certain level of noise reduction and thermal insulation for improved privacy and comfort. Choose a darker color for up to 98% light blocking capacity. \ud83c\udfe1Thermal Insulated:These Thermal Insulated Curtains help prevent energy loses by insulating hot summers and cold winters.They can reduce heat loss and penetration into any room.and \ud83c\udfe1Care Instructions: Our room darkening blackout curtain machine washable, do not bleach, Iron at low."}, {"name": "LG UBK90 Streaming 4k Ultra-HD Blu-Ray Player with Dolby Vision Bundle with 1 YR CPS Enhanced Protection Pack", "product_information": {"Product Dimensions": "16.9 x 8.1 x 1.8 inches", "Item Weight": "3.6 pounds", "ASIN": "B07GH3J1Z1", "Item model number": "E3LGUBK90", "Customer Reviews": {"ratings_count": 22, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#104,288 in Electronics (See Top 100 in Electronics) #164 in Blu-Ray Disc Players"], "Is Discontinued By Manufacturer": "No", "Date First Available": "April 9, 2021", "Manufacturer": "LG"}, "brand": "Visit the LG Store", "brand_url": "https://www.amazon.com/stores/LGElectronicsSTG/page/E8585304-4D77-4965-9D22-B5F2CF409E38?ref_=ast_bln", "full_description": "Product Specifications PRODUCT HIGHLIGHTS Ultra HD Premium: Yes Multi-HDR: Yes 4K Blu-Ray Disc Playback: Yes 3D Blu-Ray/DVD Playback: Yes 4K Streaming Content: Netflix, YouTube Built-in Wi-Fi: Yes STREAMING CONTENT PROVIDERS Netflix: Yes YouTube: Yes FEATURES 3D: Yes SIMPLINK: Yes USB Playback: Yes External HDD Playback: Yes 4K Upscaling: Yes Noise Reduction: Yes NTSC-PAL Conversion: Yes FCC TTS: Yes FCC Closed Caption: Yes PLAYABLE DISC TYPE BD-ROM: Yes BD-R: Yes BD-RE: Yes DVD-ROM: Yes DVD-R: Yes DVD+R: Yes DVD+RW: Yes DVD-RW: Yes Audio CD: Yes CD-R: Yes CD-RW: Yes DTS-CD: Yes UBD-ROM/UBD-R/UBD-RE: Yes VIDEO FORMAT MPEG-1: Yes MPEG2 PS/TS: Yes MPEG4 AVC (H.264): Yes SMPTE: Yes H.265: Yes Xvid: Yes MKV: Yes AVC Rec: Yes AVCHD: Yes M4V: Yes WMV: Yes 3GP: Yes MP4: Yes MOV: Yes FLV: Yes VOB: Yes TS: Yes DAT: Yes AUDIO FORMAT LPCM: Yes Dolby TrueHD: Yes Dolby Digital Plus: Yes Dolby Digital: Yes Dolby Atmos: Yes DTS: Yes DTS 2.0 + Digital Out: No DTS-HD Master Audio: Yes FLAC: Yes AAC: Yes WMA: Yes MPEG 1/2 L2: Yes MP3: Yes CONNECTIVITY Ethernet: Yes HDMI Out: HDMI 2.0a x 1, HDMI 1.4 x 1 Optical Audio Output: Yes USB: Yes POWER Power Consumption: 17W Standby Power Consumption: <0.5W Voltage: 110-240V 50/60Hz Type: SMPS DIMENSIONS / WEIGHTS Product (WxHxD): 16.9\" x 1.8\" x 8.1\" Shipping Size (WxHxD): 18.9\" x 4.2\" x 11.1\" Product Weight: 3.6 lbs Shipping Weight: 5.7 lbs INCLUDED ACCESSORIES Remote C...", "pricing": "$245.00", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31XQG6mXCGL.jpg", "https://m.media-amazon.com/images/I/31Hl1BzwNBL.jpg", "https://m.media-amazon.com/images/I/31PS4wGlkqL.jpg", "https://m.media-amazon.com/images/I/31TuMLtRAgL.jpg", "https://m.media-amazon.com/images/I/31ou5FpFvwL.jpg", "https://m.media-amazon.com/images/I/318ZmDddc4L.jpg", "https://m.media-amazon.com/images/I/314i9QvwlPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Blu-ray Players & Recorders \u203a Blu-ray Players", "average_rating": 4.2, "small_description": ["Ultra HD Premium | Multi-HDR | 4K Blu-Ray Disc Playback | 3D Blu-Ray/DVD Playback | 4K Streaming Content | Built-in Wi-Fi ", "IN THE BOX: Remote Control | Batteries | Protection ", "1 Year Extended Protection Plan in ADDITION to the Included FULL Manufacturer Protection "], "total_reviews": 22, "total_answered_questions": 4, "model": "E3LGUBK90", "customization_options": "", "seller_id": "A1X0R2HE02EA1P", "seller_name": "Acme Products Inc.", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07GH3J1Z1", "category": "electronics", "query": "Blu-ray Players & Recorders", "page": 2, "small_description_old": "About this item\n \nLG Streaming 4k Ultra-HD Blu-Ray Player with Dolby Vision Ultra HD Premium | Multi-HDR | 4K Blu-Ray Disc Playback | 3D Blu-Ray/DVD Playback | 4K Streaming Content | Built-in Wi-Fi IN THE BOX: Remote Control | Batteries | Protection BUNDLE INCLUDES: LG Streaming 4k Ultra-HD Blu-Ray Player with Dolby Vision 1 Year Extended Protection Plan in ADDITION to the Included FULL Manufacturer Protection"}, {"name": "WYS-SIWA, Fashion Sexy Womens Lingerie Net Lace Top Thigh Stocking Pantyhose Hosiery collants Mulher Knee Socks (Color : Purple)", "product_information": {"Item Weight": "0.035 ounces", "Department": "Womens", "Manufacturer": "WYS-SIWA,", "ASIN": "B0897M3HYM"}, "brand": "Brand: Nologo", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Nologo", "full_description": "Item Type: StockingsFabric Type: BroadclothModel Number: 08YPattern Type: SolidItem Length: 59Obscene Picture: NoSexually Suggestive: NoSize: 120cmA: Sexy Lace Bowknot PantiesB: G-String Briefs Breathable UnderwearC: Hollow Cross Bandage KnickersD: sexy exotic thong adult plastic pantsE: incontinence pantiesF: Sexy Women's Underwear BriefsG: T-back Underwear Women SexyH: Female Seamless Lace LingerieI: Strappy Sexy Panties Intimates SexyJ: Lady Underwear Lingerie Briefs Sexy", "pricing": "$12.21", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/416bNxwnNYL.jpg", "https://m.media-amazon.com/images/I/41u5NREhTqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Exotic Apparel \u203a Women \u203a Hosiery", "average_rating": "", "small_description": ["We will make every effort to you 5-star service. ", "Special Use: Exotic Apparel.Material: lace.Gender: Women ", "Very flexible\uff0cFree Size Fits Most Women/Girls,Suitable for 40-75kg(88.2-165.35lb) ", "Bring you the most comfortable enjoyment ", "Hot sexy, very charming "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0897LYRWT/ref=twister_B0897MM3XK?_encoding=UTF8&psc=1", "value": "Khaki", "price_string": "$6.80", "price": 6.8, "image": "https://m.media-amazon.com/images/I/31Ha21qoAxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0897M4HKP/ref=twister_B0897MM3XK?_encoding=UTF8&psc=1", "value": "Pink", "price_string": "$6.80", "price": 6.8, "image": "https://m.media-amazon.com/images/I/31005zoIQOL.jpg"}, {"is_selected": true, "url": null, "value": "Purple", "price_string": "$12.21", "price": 12.21, "image": "https://m.media-amazon.com/images/I/416bNxwnNYL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0897LRGSL/ref=twister_B0897MM3XK?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$6.80", "price": 6.8, "image": "https://m.media-amazon.com/images/I/31y1UW2GsnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0897LBRQ4/ref=twister_B0897MM3XK?_encoding=UTF8&psc=1", "value": "White", "price_string": "$6.80", "price": 6.8, "image": "https://m.media-amazon.com/images/I/31anR2jZauL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0897M4YNF/ref=twister_B0897MM3XK?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$6.42", "price": 6.42, "image": "https://m.media-amazon.com/images/I/31t6q7NLcoL.jpg"}]}, "seller_id": "A16LKLLY0MPVHG", "seller_name": "ZITENGZHAI WENHUA", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0897M3HYM", "category": "fashion", "query": "Women's Socks & Hosiery", "page": 58, "small_description_old": "We will make every effort to you 5-star service. Special Use: Exotic Apparel.Material: lace.Gender: Women Very flexible\uff0cFree Size Fits Most Women/Girls,Suitable for 40-75kg(88.2-165.35lb) Bring you the most comfortable enjoyment Hot sexy, very charming"}, {"name": "JOLLY CHEF Shot Glass Set with Heavy Base, 2 Ounce 20 Pack Tequila Shot Glasses, Clear Shot Glass for Whiskey and Liqueurs,Ideal for Halloween ,Thanksgiving,Christmas (20 Pack)", "product_information": {"Package Dimensions": "11.14 x 6.46 x 4.76 inches", "Item Weight": "2 ounces", "ASIN": "B08D3GRMHK", "Customer Reviews": {"ratings_count": 423, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#23,296 in Kitchen & Dining (See Top 100 in Kitchen & Dining) #87 in Shot Glasses"], "Date First Available": "July 16, 2020"}, "brand": "Visit the JOLLY CHEF Store", "brand_url": "https://www.amazon.com/stores/JOLLYCHEF/page/8CF36ADB-836F-4CE5-9E64-CD0BEF8F49D5?ref_=ast_bln", "full_description": "Jolly Chef -Buy with confidence! Your JOLLY CHEF shot glasses arrive as a set of 20 and holds (2.0 oz.) each. They are well packaged in a thicken carton box and are the perfect gift for yourself or anyone who enjoys fine drinkware. What You Get. 1. Comes in a set of 20, holds 2.0 oz. 2. Solid rim with no bumps 3. Solid base is designed to be easy on the hand 4.Dishwasher safe without any worry 5.Here at Jolly Chef, we stand by the unparalleled quality of our products, if you are Quality Matters: Made of high-quality lead-free glass, strong, durable, and dishwasher safe. After use simply wash the shot glasses bulk with little soap and warm water or place them in your dishwasher. It is perfect for consistent use. Classic Look: Make a lasting first impression with this elegant shot glass. these 2.0 oz heavy base shot glass set having the best size for a perfect shot of your favorite drinking, not too flimsy, not too heavy.Ideal for Halloween, Thanksgiving, Christmas Multiple Uses : JOLLY CHEF shot glasses is perfect for whiskey, tequila, vodka, rum, liqueur, spirit, sake, alcohol, espressos, party decorations, gifting, bars, hotels, restaurants, nightclubs, catering, home, kitchen, housewarming, birthday, wedding, anniversary, retirement, etc.", "pricing": "$15.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/410z8+MvWEL.jpg", "https://m.media-amazon.com/images/I/51wb-+BUsQL.jpg", "https://m.media-amazon.com/images/I/51y4dUymAeL.jpg", "https://m.media-amazon.com/images/I/51CnSToc2xL.jpg", "https://m.media-amazon.com/images/I/512JBKau18L.jpg", "https://m.media-amazon.com/images/I/51vPdzHFwXL.jpg", "https://m.media-amazon.com/images/I/51Wbs5Ot6hL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Kitchen & Dining \u203a Dining & Entertaining \u203a Glassware & Drinkware \u203a Liqueur & Spirits Glasses \u203a Shot Glasses", "average_rating": 4.8, "small_description": ["\u3010Set of 20 pack\u3011- High quality shot glasses set of 20 ,made of high quality environmental protection lead-free crystal glass material. Sturdy and Durable ", "\u3010Heavy Base \u3011Add sophistication to your shot glass collection with JOLLY CHEF heavy-bottom design glass 20 piece set .The weighted base helps reduce tipping for less mess, which is always a good addition everywhere .Ideal for Hallowen ,Thanksgiving, Christmas . ", "\u3010Easy to Wash \u3011After used simply wash clear shot glasses with little soap and warm water or place them in your dishwasher.These party shot glasses are well-made and fuctional ,perfect for consistent use. ", "\u3010Perfect for\u3011whiskey, tequila, vodka, espressos, desserts, party decorations, gifting, bars, hotels, restaurants, night clubs, catering, home, kitchen, housewarming, birthday, wedding, anniversary, retirement, graduation, ", "\u3010100% Quality Gurantee\u3011Here at JOLLY CHEF, we stand by the unparalleled quality of our products .If you are not satisfied with these mall shot glasses set,contact us with in 30 days for a hassle-free full refund. "], "total_reviews": 423, "total_answered_questions": "", "customization_options": "", "seller_id": "A3RBQY1C1FM23S", "seller_name": "JOLLY CHEF", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08D3GRMHK", "category": "garden", "query": "Bases", "page": 104, "small_description_old": "About this item\n \n\u3010Set of 20 pack\u3011- High quality shot glasses set of 20 ,made of high quality environmental protection lead-free crystal glass material. Sturdy and Durable \u3010Heavy Base \u3011Add sophistication to your shot glass collection with JOLLY CHEF heavy-bottom design glass 20 piece set .The weighted base helps reduce tipping for less mess, which is always a good addition everywhere .Ideal for Hallowen ,Thanksgiving, Christmas . \u3010Easy to Wash \u3011After used simply wash clear shot glasses with little soap and warm water or place them in your dishwasher.These party shot glasses are well-made and fuctional ,perfect for consistent use. \u3010Perfect for\u3011whiskey, tequila, vodka, espressos, desserts, party decorations, gifting, bars, hotels, restaurants, night clubs, catering, home, kitchen, housewarming, birthday, wedding, anniversary, retirement, graduation, \u3010100% Quality Gurantee\u3011Here at JOLLY CHEF, we stand by the unparalleled quality of our products .If you are not satisfied with these mall shot glasses set,contact us with in 30 days for a hassle-free full refund."}, {"name": "SONY 3T120VR 6hrs. EP T-120 VHS Tapes (3-Pack)", "product_information": {"Product Dimensions": "7.5 x 4.05 x 3 inches", "Item Weight": "1.84 pounds", "ASIN": "B00UVRUFNE", "Item model number": "FBA_3T120VR", "Customer Reviews": {"ratings_count": 95, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#20 in Camera & Photo VHS Blank Media #310 in Blank Media Products"], "Is Discontinued By Manufacturer": "No", "Date First Available": "June 1, 2013", "Manufacturer": "Sony"}, "brand": "Visit the Sony Store", "brand_url": "https://www.amazon.com/stores/Sony/page/AEA5D08A-7FC6-45D4-B121-C8A6FA25219F?ref_=ast_bln", "full_description": "SONY 3T120VR 6hrs. EP T-120 VHS Tapes (3-pack)", "pricing": "$27.97", "list_price": "", "availability_quantity": 16, "availability_status": "Only 16 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51q7bK7JVRL.jpg", "https://m.media-amazon.com/images/I/51qeRs3C95L.jpg", "https://m.media-amazon.com/images/I/41ZFWhws1DL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Blank Video Media \u203a VHS", "average_rating": 4.2, "small_description": ["Packaging covering design may vary "], "total_reviews": 95, "total_answered_questions": "", "model": "FBA_3T120VR", "customization_options": "", "seller_id": "A3R8D3MFJ9733Y", "seller_name": "ABCX DIRECT", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B00UVRUFNE", "category": "electronics", "query": "VCRs", "page": 301, "small_description_old": "Packaging covering design may vary"}, {"name": "True + Luscious Sheer Halo Velvet Matte Oil-Control Face Powder Compact - Vegan, Cruelty Free, Talc Free. Multi-use Powder Foundation - 0.35 oz (Shade 0: Porcelain w/Neutral to Pink Undertones)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.18 x 1.18 x 1.18 inches; 0.01 Ounces", "Item model number\n \u200f": "\u200e\n 794504084108", "UPC\n \u200f": "\u200e\n 794504084108", "Manufacturer\n \u200f": "\u200e\n True + Luscious", "ASIN\n \u200f": "\u200e\n B075GC6LWC", "Best Sellers Rank": "#90,051 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#358 in Face Powder", "#358 in Face Powder": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the True + Luscious Store", "brand_url": "https://www.amazon.com/stores/TrueLuscious/page/1A2A4F50-9EC0-46F0-B6AE-D1C049D7446E?ref_=ast_bln", "full_description": "", "pricing": "$32.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31F8gxACDxL.jpg", "https://m.media-amazon.com/images/I/41JHn7eovLL.jpg", "https://m.media-amazon.com/images/I/51V5cPbH71L.jpg", "https://m.media-amazon.com/images/I/4109bwJpNsL.jpg", "https://m.media-amazon.com/images/I/51HFlk0wsPL.jpg", "https://m.media-amazon.com/images/I/51LR+BFdQ+L.jpg", "https://m.media-amazon.com/images/I/41kYwdHQ9wL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Face \u203a Powder", "average_rating": 4.1, "small_description": ["\u2714\ufe0f CLEAN FORMULA: Formulated without talc, mineral oil, gluten, phthalates, parabens, sulfates, fragrance. We use certified ethically sourced Mica. ", "\u2714\ufe0f OIL BALANCING, SKIN-LOVING: Infused with minerals, vitamins and oil-absorbing kaolin clay, this translucent powder will keep your complexion looking naturally matte and shine-free all day. Triple-milled powder looks natural, never cakey or dry. ", "\u2714\ufe0f MULTI-TASKING: Perfect for use over liquid or cream makeup as a setting powder, or on its own over your skincare as a powder foundation. ", "\u2714\ufe0f FRESH, MATTE, ALL DAY SHINE CONTROL: A silky, talc-free powder that creates smooth, buildable sheer-to-medium coverage to minimize pores, blur imperfections and even out skin tone. Calms redness and safe for use on acne-prone skin. Non-comedogenic. Suitable for all skin types. ", "\u2714\ufe0f ALL-VEGAN & CRUELTY FREE: True + Luscious is an all-vegan, certified cruelty-free, clean beauty brand. We never test on animals or use animal-derived ingredients at any point in our supply chain. Our mission: Good. Clean. Glam "], "total_reviews": 340, "total_answered_questions": 14, "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Shade 0: Porcelain w/ Neutral to Pink Undertones", "price_string": "$32.00", "price": 32, "image": "https://m.media-amazon.com/images/I/01jbwvf5+LL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075G9GVH6/ref=twister_B09RN9ZY1Y?_encoding=UTF8&psc=1", "value": "Shade 1: Ivory w/ Neutral Undertones", "price_string": "$32.00", "price": 32, "image": "https://m.media-amazon.com/images/I/012O0KYylFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075GDY3B1/ref=twister_B09RN9ZY1Y?_encoding=UTF8&psc=1", "value": "Shade 2: Light Beige w/ Neutral Undertones", "price_string": "$32.00", "price": 32, "image": "https://m.media-amazon.com/images/I/01qwk7bGd-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075GDK1P3/ref=twister_B09RN9ZY1Y?_encoding=UTF8&psc=1", "value": "Shade 3: Warm Beige w/ Golden Undertones", "price_string": "$32.00", "price": 32, "image": "https://m.media-amazon.com/images/I/01RmjalHudL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07J2T9H76/ref=twister_B09RN9ZY1Y?_encoding=UTF8&psc=1", "value": "Shade 4: Tan Beige w/ Neutral Undertones", "price_string": "$32.00", "price": 32, "image": "https://m.media-amazon.com/images/I/01i8d5EuhkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07J2SPSRS/ref=twister_B09RN9ZY1Y?_encoding=UTF8&psc=1", "value": "Shade 5: Rich Tan w/ Neutral Undertones", "price_string": "$32.00", "price": 32, "image": "https://m.media-amazon.com/images/I/01F-HMtXwJL.jpg"}]}, "seller_id": "A38V1C9CKIQ8IG", "seller_name": "True + Luscious", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B075GC6LWC", "category": "beauty", "query": "Eyes Makeup", "page": 166, "small_description_old": "About this item \u2714\ufe0f CLEAN FORMULA: Formulated without talc, mineral oil, gluten, phthalates, parabens, sulfates, fragrance. We use certified ethically sourced Mica. \u2714\ufe0f OIL BALANCING, SKIN-LOVING: Infused with minerals, vitamins and oil-absorbing kaolin clay, this translucent powder will keep your complexion looking naturally matte and shine-free all day. Triple-milled powder looks natural, never cakey or dry. \u2714\ufe0f MULTI-TASKING: Perfect for use over liquid or cream makeup as a setting powder, or on its own over your skincare as a powder foundation. \u2714\ufe0f FRESH, MATTE, ALL DAY SHINE CONTROL: A silky, talc-free powder that creates smooth, buildable sheer-to-medium coverage to minimize pores, blur imperfections and even out skin tone. Calms redness and safe for use on acne-prone skin. Non-comedogenic. Suitable for all skin types. \u2714\ufe0f ALL-VEGAN & CRUELTY FREE: True + Luscious is an all-vegan, certified cruelty-free, clean beauty brand. We never test on animals or use animal-derived ingredients at any point in our supply chain. Our mission: Good. Clean. Glam"}, {"name": "Vamp Up Love is in the Hair! Castor Oil Hair Shampoo, Hair Conditioner and Hair Styling Spray with Natural Ingredients Smooth, Nourishes, Strengthen & Silky to Touch Hair (Shampoo)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 10 x 4 x 4 inches; 3 Pounds", "UPC\n \u200f": "\u200e\n 813842026516", "Manufacturer\n \u200f": "\u200e\n Kira Labs Inc", "ASIN\n \u200f": "\u200e\n B07FLKB8CV", "Best Sellers Rank": "#621,804 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#5,394 in Hair Sprays", "#5,394 in Hair Sprays": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: #Vamp Up", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=%23Vamp+Up", "full_description": "#Vamp Up Love is in the Hair! Natural Castor & Coconut Oil Super Strength Hair Shampoo gently cleans without causing dryness. Fortifies each strand against breakage and split ends. Leaves hair soft and silky with added shine and bounce.WHAT'S INSIDE?", "pricing": "$22.99", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41CKOPz716L.jpg", "https://m.media-amazon.com/images/I/41FbgpqEskL.jpg", "https://m.media-amazon.com/images/I/41g6LeEB55L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Styling Products \u203a Hair Sprays", "average_rating": 4.6, "small_description": ["Gently cleans without causing dryness. Fortifies each strand against breakage and split ends. Leaves hair soft and silky with added shine and bounce. ", "Helps strengthen hair and prevent split ends. Leaves hair silky & shiny. ", "Apply to wet hair, work into a lather, then rinse. Repeat as necessary. ", "Made in the USA according to FDA regulation. Bottle Size 32oz (960ml). "], "total_reviews": 8, "total_answered_questions": "", "customization_options": "", "seller_id": "A1XJ529DXMHVIR", "seller_name": "buvtz", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07FLKB8CV", "category": "beauty", "query": "Hair Loss Products", "page": 127, "small_description_old": "About this item Gently cleans without causing dryness. Fortifies each strand against breakage and split ends. Leaves hair soft and silky with added shine and bounce. Helps strengthen hair and prevent split ends. Leaves hair silky & shiny. Apply to wet hair, work into a lather, then rinse. Repeat as necessary. Made in the USA according to FDA regulation. Bottle Size 32oz (960ml)."}, {"name": "Women's V-Neck Rompers Printed Jumpsuit Long Sleeve Homewear Butt Flap Pajamas One-Piece Onesies Nightwear Sexy Bodysuit", "product_information": {"Item model number\n \u200f": "\u200e\n onesies with opening for women", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 6, 2022", "Manufacturer\n \u200f": "\u200e\n cotton adult onsie", "ASIN\n \u200f": "\u200e\n B09PVP9P28", "": ""}, "brand": "Visit the MITCOWBOYS Store", "brand_url": "https://www.amazon.com/stores/MITCOWBOYS/page/C6C4ADE1-48B8-40D9-8BEE-C1A094DE99FD?ref_=ast_bln", "full_description": "\u2b50 Size runs small, please refer to the size chart before selecting the size.Size:S US:4 UK:8 EU:34Bust:90cm/35.43'' Hip:98cm/38.58'' Length:141cm/55.51'' Shoulder:37cm/14.57'' Sleeve:59cm/23.23''Size:M\u00a0US:6 UK:10 EU:36Bust:86\u00a0cm/33.86'' Hip:94cm/37.01'' Length:140cm/55.12'' Shoulder:36cm/14.17'' Sleeve:58cm/22.83''Size:L US:8 UK:12 EU:38Bust:94cm/37.01'' Hip:102cm/40.16'' Length:142cm/55.91'' Shoulder:38cm/14.96'' Sleeve:60cm/23.62''Size:XL US:10 UK:14 EU:40Bust:98cm/38.58' 'Hip:106cm/41.73'' Length:143cm/56.30'' Shoulder:39cm/15.35'' Sleeve:61cm/24.02''Size:XXL US:12 UK:16 EU:42Bust:102cm/40.16'' Hip:110cm/43.31'' Length:144cm/56.69'' Shoulder:40cm/15.75'' Sleeve:62cm/24.41''Size:XXXL US:14 UK:18 EU:44Bust:106cm/41.73'' Hip:114cm/44.88'' Length:145cm/57.09'' Shoulder:41cm/16.14'' Sleeve:63cm/24.80''\u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014 \ud83d\udc97 \u2014\u2014onesie pajamas for women adult onesie pajamas for women cute onesie pajamas for women onesie pajamas for women christmas onesie pajamas for women with butt flap adult onesie pajamas for women with butt flap womens onesies pajamas womens onesies pajamas sexy womens onesies pajamas butt flap womens onesies pajamas christmas womens onesies pajamas shorts onesie for women onesie for women sexy adult onesie for women onesie for women pajamas", "pricing": "$17.40$28.67", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41qhmQh1NLL.jpg", "https://m.media-amazon.com/images/I/41tnU1ar6hL.jpg", "https://m.media-amazon.com/images/I/41C0+5kIhyL.jpg", "https://m.media-amazon.com/images/I/31Mg1FJEnvL.jpg", "https://m.media-amazon.com/images/I/31M-ig35WQL.jpg", "https://m.media-amazon.com/images/I/41n4E++BcmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Jumpsuits, Rompers & Overalls \u203a Jumpsuits", "average_rating": "", "small_description": ["women jumpsuit clearance ", "jumpsuits for women jumpsuit for women sexy women's jumpsuits, rompers & overalls jumpsuits for women dressy black jumpsuits for women sexy jumpsuits for women bodycon jumpsuits for women white jumpsuit for women womens jumpsuit sexy jumpsuit for men rompers and jumpsuits for women red jumpsuit for women long sleeve jumpsuit for women jumpsuits for women elegant women jumpsuit jumpsuits lucky label jumpsuit for women christmas jumpsuit for women sequin jumpsuits for women jumpsuit for women ", "unicorn onies women closure ", "sexy christmas outfits for women ", "\ud83d\udca5Package Included: 1 * Women's Fashion Adults Pajamas. The best choice for gifts\uff01Women's One-Piece Jumpsuit Pajamas ", "\ud83d\udca5Material: Made of polyester, Breathable and durable quality fabric, Soft and comfortable to wear.Some styles contain 90% plush, flannel, velvet! Absolutely warm, breathable and comfortable! ", "\ud83d\udca5Features: Solid, Print, Long Sleeve, V-Neck, Buttoned, Flap, Functional, Slim Fit, Casual, Home, Daily, Fashion, Long. , \ud83d\udca5Occasion: Perfect for Home, Christmas, Leisure, Sleepwear, Bedroom, Casual, Living room, Lounge, Daily wear, etc., \ud83d\udca5Attention: If you are not satisfied with your clothes, contact us any time, we will get you back within 24 hours try our best to make things right."], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PVP9P28/ref=twister_B09PVN8JP3", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31mUmamphgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PVNWWFC/ref=twister_B09PVN8JP3", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41hwDE9G-tL.jpg"}, {"is_selected": true, "url": null, "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qhmQh1NLL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PVL5JSZ"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PVP4G3T"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PVNLVRW"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PVPK93F"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09PVNRGVS"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PVNLVRW", "category": "fashion", "query": "Women's Jumpsuits, Rompers & Overalls", "page": 88, "small_description_old": "women jumpsuit clearance jumpsuits for women jumpsuit for women sexy women's jumpsuits, rompers & overalls jumpsuits for women dressy black jumpsuits for women sexy jumpsuits for women bodycon jumpsuits for women white jumpsuit for women womens jumpsuit sexy jumpsuit for men rompers and jumpsuits for women red jumpsuit for women long sleeve jumpsuit for women jumpsuits for women elegant women jumpsuit jumpsuits lucky label jumpsuit for women christmas jumpsuit for women sequin jumpsuits for women jumpsuit for women unicorn onies women closure sexy christmas outfits for women \ud83d\udca5Package Included: 1 * Women's Fashion Adults Pajamas. The best choice for gifts\uff01Women's One-Piece Jumpsuit Pajamas \ud83d\udca5Material: Made of polyester, Breathable and durable quality fabric, Soft and comfortable to wear.Some styles contain 90% plush, flannel, velvet! Absolutely warm, breathable and comfortable! \ud83d\udca5Features: Solid, Print, Long Sleeve, V-Neck, Buttoned, Flap, Functional, Slim Fit, Casual, Home, Daily, Fashion, Long. \n \ud83d\udca5Occasion: Perfect for Home, Christmas, Leisure, Sleepwear, Bedroom, Casual, Living room, Lounge, Daily wear, etc.\ud83d\udca5Attention: If you are not satisfied with your clothes, contact us any time, we will get you back within 24 hours try our best to make things right.Show more"}, {"name": "WYSTAO Decorative Mirror Modern Minimalist Living Room Metal Mirror Wall Hanging Hall Pendant Iron Golden Soft Decoration 40/50/60/70cm (Size : 70x70cm/27.6x27.6in)", "product_information": {"Item Weight": "13.23 pounds", "Manufacturer": "JUNGLE LEOPARD", "ASIN": "B082KBN23S"}, "brand": "Brand: WYSTAO", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=WYSTAO", "full_description": "Wall decorations can be double-decorated because they fill your space with stylish wall elements, and can also help by reflecting light in the room and visually extending the wall beyond the actual location. Dark or smaller rooms look brighter and brighter.Product Name: Wall-mounted decorative mirrorSize: 40x40cm/15.7x15.7in , 50x50cm/19.7x19.7in , 60x60cm/23.62x23.62in , 70x70cm/27.6x27.6inSupport customization, please contact usPacking: product + foam + carton + wooden frameMaterial: high quality mirror + MDF + hardwareFeatures: 1. Dust that can be treated with toothpaste or 30% cleaning solution2. Do not place the contact surface directly with overheated materials for a long time.3. Do not scratch and beat with sharp objectsprompt:\u25b2 We only sell decorative mirrors and measure products manually. The error is 1-2 cm is normal. There are some errors in photos and objects. This is normal and does not affect the use of the product.\u25b2If you have not received the goods within 30 days, or have any questions about the products, you can contact our customer service, your trust is our pursuit.\u25b2 If you are satisfied with our products, please leave your praise, this is the driving force for our progress.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/418Ayl5utiL.jpg", "https://m.media-amazon.com/images/I/41+YzJIDY0L.jpg", "https://m.media-amazon.com/images/I/51AWnDKyXrL.jpg", "https://m.media-amazon.com/images/I/51AGUF1VmBL.jpg", "https://m.media-amazon.com/images/I/51K74xLYecL.jpg", "https://m.media-amazon.com/images/I/412H55TlNdL.jpg", "https://m.media-amazon.com/images/I/41QJX80vp6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Mirrors \u203a Wall-Mounted Mirrors", "average_rating": "", "small_description": ["\u25b2 High-definition crystal silver mirror: Select high-quality silver mirror to better reflect indoor light, achieve high-definition imaging, show the aesthetic pleasure of the head of the individual, and convey a sense of calm and elegant space. ", "\u25b2 Scene versatile: suitable for a variety of scenes, the matching effect will have a different feeling, or make people shine, or light luxury or art... support custom size ", "\u25b2 European creative decorative mirror: simple and creative, style is versatile, champagne border is more noble, luxurious quality ", "\u25b2 Metal wall-mounted mirror: can be placed according to the design of their own home, such as living room, bedroom, restaurant, etc. ", "\u25b2 Color border: The border has a good texture and a natural atmosphere. The color is colored with healthy environmentally friendly paint. It does not fade and is healthier. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B082J9W2BQ/ref=twister_B082K6SY6J?_encoding=UTF8&psc=1", "value": "40x40cm/15.7x15.7in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B082J8L643/ref=twister_B082K6SY6J?_encoding=UTF8&psc=1", "value": "50x50cm/19.7x19.7in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B082J8RWGF/ref=twister_B082K6SY6J?_encoding=UTF8&psc=1", "value": "60x60cm/23.62x23.62in", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "70x70cm/27.6x27.6in", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B082KBN23S", "category": "garden", "query": "Decorative Mirrors", "page": 63, "small_description_old": "About this item \u25b2 High-definition crystal silver mirror: Select high-quality silver mirror to better reflect indoor light, achieve high-definition imaging, show the aesthetic pleasure of the head of the individual, and convey a sense of calm and elegant space. \u25b2 Scene versatile: suitable for a variety of scenes, the matching effect will have a different feeling, or make people shine, or light luxury or art... support custom size \u25b2 European creative decorative mirror: simple and creative, style is versatile, champagne border is more noble, luxurious quality \u25b2 Metal wall-mounted mirror: can be placed according to the design of their own home, such as living room, bedroom, restaurant, etc. \u25b2 Color border: The border has a good texture and a natural atmosphere. The color is colored with healthy environmentally friendly paint. It does not fade and is healthier."}, {"name": "[Herbloom] Organic Kombucha Serum & Collagen Cream for Face, Nourishing Set, Deep Hydrating Face Moisturizer with Triple Hyaluronic & Ceramide & Vegan Collagen, Organic Vegan Korean Skincare", "product_information": {"ASIN\n \u200f": "\u200e\n B09RFDP1C3", "Best Sellers Rank": "#315,935 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,134 in Facial Skin Care Sets & Kits", "#1,134 in Facial Skin Care Sets & Kits": ""}, "brand": "Visit the herbloom Store", "brand_url": "https://www.amazon.com/stores/HerbloomWemakeyoubloom/page/88799F69-FEB1-4FD7-A797-A8DFB52A61BC?ref_=ast_bln", "full_description": "", "pricing": "$63.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31iioZJ-VRL.jpg", "https://m.media-amazon.com/images/I/41HibRn6MXL.jpg", "https://m.media-amazon.com/images/I/41N7-IxoA1L.jpg", "https://m.media-amazon.com/images/I/41d995C63YL.jpg", "https://m.media-amazon.com/images/I/41lr3hF3iIL.jpg", "https://m.media-amazon.com/images/I/415MRmK17IL.jpg", "https://m.media-amazon.com/images/I/51-Eromr10L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Sets & Kits", "average_rating": "", "small_description": ["100% Natural Ingredients: KOREAN ORGANIC KOMBUCHA; Herbloom's Kombucha Face Toner & Serum; Herbloom's Kombucha Serum & Cream are mainly formulated with Kombucha Extract (Serum 70.5% & Cream 40.53%). We use organically grown fermented green tea for SUSTAINABLE SKIN and environment. ", "What KOMBUCHA Facial Serum & Cream are Includes: Kombucha contains antioxidants (4 times that of green tea), including probiotics, glucuronic acid, polyphenols and vitamins, produced during fermentation to help eliminate free radicals. ", "Benefit of Face Serum; The complex beneficial bacteria strengthens the skin's moisture barrier. With the powerful hydration of Triple Hyaluronic acid, ceramide, it helps provide deep moisturizing care. Dual functional cosmetic with anti-wrinkle/brightening. ", "Benefit of Face Cream; Light and gentle Moisturizer, this Vegan Collagen moisturizer for face has a lightweight, non-greasy texture that feels fresf on all skin type; Kombucha facial moisturizer can help contribute to smoothing out skin tone and texture, making your skin look firmer and more elastic. ", "Vegan and Cruelty Free face Toner & Serum; free of dyes, parabens, sulfates, phthalates, alcohol and Artificial fragrance. A reliable EWG green grade essence that is also supplied to postpartum care centers, facials and spas. (*Results may differ based on the individual, so it is essential that you do a patch test before use.) "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2A7OF607DTMKO", "seller_name": "Herbloom Korea", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09RFDP1C3", "category": "beauty", "query": "Skin Care Sets & Kits", "page": 131, "small_description_old": "About this item 100% Natural Ingredients: KOREAN ORGANIC KOMBUCHA; Herbloom's Kombucha Face Toner & Serum; Herbloom's Kombucha Serum & Cream are mainly formulated with Kombucha Extract (Serum 70.5% & Cream 40.53%). We use organically grown fermented green tea for SUSTAINABLE SKIN and environment. What KOMBUCHA Facial Serum & Cream are Includes: Kombucha contains antioxidants (4 times that of green tea), including probiotics, glucuronic acid, polyphenols and vitamins, produced during fermentation to help eliminate free radicals. Benefit of Face Serum; The complex beneficial bacteria strengthens the skin's moisture barrier. With the powerful hydration of Triple Hyaluronic acid, ceramide, it helps provide deep moisturizing care. Dual functional cosmetic with anti-wrinkle/brightening. Benefit of Face Cream; Light and gentle Moisturizer, this Vegan Collagen moisturizer for face has a lightweight, non-greasy texture that feels fresf on all skin type; Kombucha facial moisturizer can help contribute to smoothing out skin tone and texture, making your skin look firmer and more elastic. Vegan and Cruelty Free face Toner & Serum; free of dyes, parabens, sulfates, phthalates, alcohol and Artificial fragrance. A reliable EWG green grade essence that is also supplied to postpartum care centers, facials and spas. (*Results may differ based on the individual, so it is essential that you do a patch test before use.)"}, {"name": "SapplySource 6ft/1.8m UL Listed AC in Power Cord for Jensen CD-560 Wireless Bluetooth Boombox Portable CD Player AM/FM Radio Stereo Speaker System CD560 CD-560BLK JEN-CD-560", "product_information": {"ASIN": "B08SM5R231", "Date First Available": "January 11, 2021", "Manufacturer": "SapplySource"}, "brand": "Brand: SapplySource", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SapplySource", "full_description": "SapplySource 6ft/1.8m UL Listed AC IN Power Cord Outlet Socket Cable Plug Lead For Jensen CD-560 Wireless Bluetooth Boombox Portable CD Player AM/FM Radio Stereo Speaker System CD560 CD-560BLK JEN-CD-560Notice:1. Please make sure the DC output and tip size of ac adapter are accordant before you order.2. If you use the adapter for a long time, please keep it suitable ventilating and humidity. Do not put it on the skin products.3. Please feel free to contact us if you have further questions.We will be more than happy to assist you", "pricing": "$18.94", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41JvsSMlkPL.jpg", "https://m.media-amazon.com/images/I/51TSjeOBKYL.jpg", "https://m.media-amazon.com/images/I/4110u9zSnYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Power Cables", "average_rating": "", "small_description": ["\u2714SAFETY: SapplySource Products manufactured with the highest quality materials and include multiple smart features safeguarding against IV - incorrect voltage, SC - short circuit, IO - internal overheating.\u00a0Chargers are certificated with CE FCC etc. ", "\u2714Figure 8 Power Cords ,125V 10A NEMA 1-15P to IEC320 C7,Non-Polarized,NISPT-2 18AWG(approx.0.824mm2) extension cable connects from your equipment socket to a standard 2 pronged AC outlet receptacle. ", "\u2714NOTE: This Adapter is Brand New, High Quality Never USED (non-OEM). Please make sure the model of your device before buying ", "\u27146ft/1.8m UL Listed AC IN Power Cord Outlet Socket Cable Plug Lead For Jensen CD-560 Wireless Bluetooth Boombox Portable CD Player AM/FM Radio Stereo Speaker System CD560 CD-560BLK JEN-CD-560 ", "\u2714Replace your overused, old, broken, damaged, or misplaced power cable or add extra distance / extension between devices for convenience "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AB222WYDODEET", "seller_name": "Power Supply Source", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08SM5R231", "category": "electronics", "query": "Boomboxes & Portable Radios", "page": 91, "small_description_old": "\u2714SAFETY: SapplySource Products manufactured with the highest quality materials and include multiple smart features safeguarding against IV - incorrect voltage, SC - short circuit, IO - internal overheating.\u00a0Chargers are certificated with CE FCC etc. \u2714Figure 8 Power Cords ,125V 10A NEMA 1-15P to IEC320 C7,Non-Polarized,NISPT-2 18AWG(approx.0.824mm2) extension cable connects from your equipment socket to a standard 2 pronged AC outlet receptacle. \u2714NOTE: This Adapter is Brand New, High Quality Never USED (non-OEM). Please make sure the model of your device before buying \u27146ft/1.8m UL Listed AC IN Power Cord Outlet Socket Cable Plug Lead For Jensen CD-560 Wireless Bluetooth Boombox Portable CD Player AM/FM Radio Stereo Speaker System CD560 CD-560BLK JEN-CD-560 \u2714Replace your overused, old, broken, damaged, or misplaced power cable or add extra distance / extension between devices for convenience"}, {"name": "Non Sorbate Prunes 3lb Bags \u2014 Individual Bags", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Item Weight\n \u200f": "\u200e\n 3 Pounds", "UPC\n \u200f": "\u200e\n 028744331617", "Manufacturer\n \u200f": "\u200e\n Regal Gourmet Snacks", "ASIN\n \u200f": "\u200e\n B09LDGGBS8", "Best Sellers Rank": "#409,018 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#200 in Dried Prunes", "#200 in Dried Prunes": ""}, "brand": "Brand: Nutstop.com", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Nutstop.com", "full_description": "Non sorbate prunes are dried prunes that contain no preservatives. They provide extensive health benefits and are a versatile kitchen staple. Individual packing, 3lb Bags \u2014 Non Sorbate Prunes. Storage \u2022 Store in a cool, dry place. Shelf Life \u2022 Bags \u2013 up to 1 year. Allergen Information Manufactured on shared equipment with peanuts, soybeans, tree nuts, milk, eggs, wheat and whey.", "pricing": "$21.96", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41jxBN8Sp7L.jpg", "https://m.media-amazon.com/images/I/41Miyow4l+L.jpg", "https://m.media-amazon.com/images/I/51lq3OBCVIL.jpg", "https://m.media-amazon.com/images/I/51xK1pHGpKL.jpg", "https://m.media-amazon.com/images/I/41boOsDfZIL.jpg", "https://m.media-amazon.com/images/I/31QN81xYB3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Produce \u203a Dried Fruits & Vegetables \u203a Dried Fruits \u203a Dried Prunes", "average_rating": "", "small_description": ["Individual packing 1lb Bag \u2014 3 Bags Non Sorbate Prunes. ", "Reach for a handful of prunes instead of candy when you want a sweet treat. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07KFPTVQN/ref=twister_B07KFN6Q61?_encoding=UTF8&psc=1", "value": "1 Pound Bag", "price_string": "$9.89", "price": 9.89, "image": null}, {"is_selected": true, "url": null, "value": "3 Pound Bags", "price_string": "$21.96", "price": 21.96, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LDF91LC/ref=twister_B07KFN6Q61?_encoding=UTF8&psc=1", "value": "5 Pound Bags", "price_string": "$31.94", "price": 31.94, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KFQ6CYG/ref=twister_B07KFN6Q61?_encoding=UTF8&psc=1", "value": "10 Pound Case", "price_string": "$47.39", "price": 47.39, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KFNMR3Y/ref=twister_B07KFN6Q61?_encoding=UTF8&psc=1", "value": "25 Pound Case", "price_string": "$90.50", "price": 90.5, "image": null}]}, "seller_id": "A3UFWWLV33YLRY", "seller_name": "Nutstop", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09LDGGBS8", "category": "grocery", "query": "Dried Fruits & Raisins", "page": 69, "small_description_old": "Individual packing 1lb Bag \u2014 3 Bags Non Sorbate Prunes. Reach for a handful of prunes instead of candy when you want a sweet treat."}, {"name": "SKNG U-Shaped Children's Soft Silicone Toothbrush, 360\u00b0 Silicone Toothbrush Set 2-6 Years Old Baby Toothbrush (Pink)", "product_information": {"Manufacturer\n \u200f": "\u200e\n SKNG", "ASIN\n \u200f": "\u200e\n B09GXPBPLG", "": ""}, "brand": "Brand: SKNG", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=SKNG", "full_description": "", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31HTbRUjC1L.jpg", "https://m.media-amazon.com/images/I/51lr8YiE9OL.jpg", "https://m.media-amazon.com/images/I/419rWpv1RsL.jpg", "https://m.media-amazon.com/images/I/41oiHdGownL.jpg", "https://m.media-amazon.com/images/I/41cIX899Z6L.jpg", "https://m.media-amazon.com/images/I/41SP+S3D0QL.jpg", "https://m.media-amazon.com/images/I/41c6DRWCboL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothbrushes & Accessories \u203a Manual Toothbrushes", "average_rating": "", "small_description": ["[Size]: 2-6 years old: the size of the toothbrush is 1.96*3.93, choose a U-shaped children's toothbrush of the appropriate size according to the age of the child. (If you need a 6-12 year old toothbrush, please enter my shop to search and place an order) ", "[Material]: U-shaped children's toothbrush uses food-grade silica gel +pp, and the product uses U-shaped soft rubber brush heads, smart teeth cleaning, safer and more assured. ", "[Cleaning function]: Starting from the baby's first tooth, mothers need to guide the child to develop good oral hygiene habits. ", "[Applicable people]: Silicone soft toothbrush is suitable for 2-6 years old baby. ", "[Comfortable grip]: Children's toothbrush has a comfortable round handle, which can be brushed with one twist and one turn. It is brushed twice a day. It is recommended to replace the toothbrush every 1-2 months. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09GX9VCGN/ref=twister_B09GXC5WN1?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41SEzBExYSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GX9ZLF8/ref=twister_B09GXC5WN1?_encoding=UTF8&psc=1", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/311mgnBdwYL.jpg"}, {"is_selected": true, "url": null, "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31HTbRUjC1L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GXJ9WRX/ref=twister_B09GXC5WN1?_encoding=UTF8&psc=1", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ia1BDG4OL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GXPBPLG", "category": "beauty", "query": "Children's Dental Care", "page": 124, "small_description_old": "About this item [Size]: 2-6 years old: the size of the toothbrush is 1.96*3.93, choose a U-shaped children's toothbrush of the appropriate size according to the age of the child. (If you need a 6-12 year old toothbrush, please enter my shop to search and place an order) [Material]: U-shaped children's toothbrush uses food-grade silica gel +pp, and the product uses U-shaped soft rubber brush heads, smart teeth cleaning, safer and more assured. [Cleaning function]: Starting from the baby's first tooth, mothers need to guide the child to develop good oral hygiene habits. [Applicable people]: Silicone soft toothbrush is suitable for 2-6 years old baby. [Comfortable grip]: Children's toothbrush has a comfortable round handle, which can be brushed with one twist and one turn. It is brushed twice a day. It is recommended to replace the toothbrush every 1-2 months."}, {"name": "Meijunter Islamic Women Swimwear Burkini Muslim Hijab Swimsuit Modest Swim Surf Wear Sun Protection Swimming 3 Pieces Suit", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 11.81 x 7.87 x 1.97 inches; 15.87 Ounces", "Item model number\n \u200f": "\u200e\n Meijunter", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n March 17, 2020", "Manufacturer\n \u200f": "\u200e\n Huizhou City Junsi Electronics Co., Ltd.", "ASIN\n \u200f": "\u200e\n B085ZY9357", "": ""}, "brand": "Brand: Meijunter", "brand_url": "https://www.amazon.com/Meijunter/b/ref=bl_sl_s_ap_web_20388779011?ie=UTF8&node=20388779011&field-lbr_brands_browse-bin=Meijunter", "full_description": "Description: Feature: \u25c6Gender: Women \u25c6Material: Synthetic. Main fabric nylon and spandex \u25c6Whether with steel ring: no underwire no chest pad \u25c6Sleeve Length: Long \u25c6Pants Length: Long \u25c6Applicable scene: swimming, wading or other sports Attention Please: \u25cfPlease allow 1~3cm difference due to manual measurements. \u25cfDue to colors of different displays are different, the actual product colour may be slightly different from the above images. Package Content: 1 * Tops 1 * Pants 1 * Cap", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41v6CZixxLL.jpg", "https://m.media-amazon.com/images/I/516+fJpP1EL.jpg", "https://m.media-amazon.com/images/I/41ns3ZnSSyL.jpg", "https://m.media-amazon.com/images/I/61ziHJaH+LL.jpg", "https://m.media-amazon.com/images/I/41iXBa0sWoL.jpg", "https://m.media-amazon.com/images/I/41Nmx0Sx7hL.jpg", "https://m.media-amazon.com/images/I/31uJvjXbqfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Swimsuits & Cover Ups \u203a Cover-Ups", "average_rating": "", "small_description": ["Note: Before order, please follow the size chart that we provide (We provide the image size table), Don't read Amazon Size Chart. Please especially pay attention to the bust size. ", "Excellent quality material: 80% nylon + 20% Spandex. UV protection, high stretchy, durable and easy to dry ", "Stylish: The swimsuits not only fit for Muslim female, but also for other ladies who love the fashion and personalized design or need full coverage to escape ultraviolet rays and sunlight ", "Washing Care: Do not wash your swimsuit in warm or hot water. Use cold water to ensure the original color and shape of your swimsuit. Hand washing is recommended ", "Features: Durable, environmental protection, conservative full coverage, quick-drying, no underwire, no chest pad, long sleeve, trousers "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41v6CZixxLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085ZY1TX5/ref=twister_B085ZYBMT6", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41YswcBkKiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085ZXMS14/ref=twister_B085ZYBMT6", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4111Wj+6VVL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Tag S = US 4", "asin": "B085ZY9357"}, {"is_selected": false, "is_available": true, "value": "Tag M = US 6", "asin": "B0861CVFS2"}, {"is_selected": false, "is_available": true, "value": "Tag L = US 8", "asin": "B085ZXRDZL"}, {"is_selected": false, "is_available": true, "value": "Tag 2XL = US 12", "asin": "B085ZXZPS9"}, {"is_selected": false, "is_available": true, "value": "Tag 3XL = US 14", "asin": "B085ZXLM7M"}, {"is_selected": false, "is_available": true, "value": "Tag 4XL = US 16", "asin": "B0861GWJV2"}, {"is_selected": false, "is_available": true, "value": "Tag XL = US 10", "asin": "B08612CR8R"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0861GWJV2", "category": "fashion", "query": "Women's Swimsuits & Cover Ups", "page": 101, "small_description_old": "Note: Before order, please follow the size chart that we provide (We provide the image size table), Don't read Amazon Size Chart. Please especially pay attention to the bust size. Excellent quality material: 80% nylon + 20% Spandex. UV protection, high stretchy, durable and easy to dry Stylish: The swimsuits not only fit for Muslim female, but also for other ladies who love the fashion and personalized design or need full coverage to escape ultraviolet rays and sunlight Washing Care: Do not wash your swimsuit in warm or hot water. Use cold water to ensure the original color and shape of your swimsuit. Hand washing is recommended Features: Durable, environmental protection, conservative full coverage, quick-drying, no underwire, no chest pad, long sleeve, trousers"}, {"name": "Laeacco Steampunk Clock Backdrops 6.5x6.5ft Vinyl Photography Background Shabby Clock Photo Backdrop Old Clock Punk Grunge Culture Adults Brave Boy Portraits Photo Studio Props", "product_information": {"Package Dimensions": "10 x 9 x 0.5 inches", "Item Weight": "3.36 ounces", "ASIN": "B07KK7G5YJ", "Item model number": "2x2NBK10650AA", "Customer Reviews": {"ratings_count": 10, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#67,120 in Photographic Studio Photo Backgrounds"], "Date First Available": "November 15, 2018", "Manufacturer": "Laeacco"}, "brand": "Visit the Laeacco Store", "brand_url": "https://www.amazon.com/stores/Laeacco/page/2C446C50-0D3E-4CFD-874D-A4CE97CFF4F8?ref_=ast_bln", "full_description": "Detail information:Material: Vinyl & Computer Painted(Not Washable)Color:As picture shownFeatures:Light Absorption,Non-reflectiveSize: 6.5 * 6.5 FT (2 * 2 M).Customized per Your Request Preparation: 2-3 daysUsage: For the Photography for Adults,Children,Newborn Baby,Toddlers,Lovers Families,Perfect for TV/Film Production,All Kinds of Wedding,Party,Event,Festival,Activities,Artistics Portraits.Advantage:Vinyl Cloth Backdrops Is Our Latest And Greatest Computer Painted Wrinkle-Free Fleece-Like Fabric. This Lightweight Fabric Will Give You The Intense Vivid Color That You Have Been Looking For A Backdrop.It Is An Ideal Property To Record Your Unforgettable Moments.We Also Supply Other Size of the Same Picture:3x3ft,5x3ft,4x5ft,5x5ft,4x6.5ft,5x6.5ft,8x10ft,10x10ft,6.5x10ft,8x8ft,8x15ft.How do I Customize? 1)Contact us by email and tell us the size/style that you need, then we can make it for you. 2)Or if you want to print your own pictures,pixel must be large enough,more than 1Mbit.Attention:According to rule of post office, length of item cannot be more than 1.2m. Items will be sent folded.So there may be creases.Here we suggest:1) Roll it up tightly with a cylinder for 3-4 days, it will be ok.2) Heat it with a steam iron on the back of item, then it will be smooth again.3) Stretch it and clamp it to a back drop stand for 3-4 days, it also works.4) Haning it for a few days.Notes:Please stand the right distance when u take photos. Don't stand too close to have a good shooting effects.Please understand that every computer screen is different, therefore,colors may vary slightly. Laeacco will always adhere the Customes is God service purpose .If you have any questions or needs ,just feel free to contact us,we will give you a satisfactory solution ASAP we can.", "pricing": "$24.59", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/61lV1rUjz6L.jpg", "https://m.media-amazon.com/images/I/51-qbszDZOL.jpg", "https://m.media-amazon.com/images/I/51yDRjcohlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Lighting & Studio \u203a Photo Studio \u203a Backgrounds", "average_rating": 4.8, "small_description": ["Size: 6.5(W)*6.5(H)FT / 2(W)x 2(H)M(2meter wide x2meter high). ", "Material: Vinyl;light weight;It can be folded & easy to carry (Pictorial cloth). ", "Fetures: High resolution,Strong articulation,High quality & not easy fade;Can swab with water,easy to keep clean;Glare free and roll out flat;It is great for photo studio photography;Excellent color treatment and realistic detail. ", "Type: Computer Painted/Printed;Printed on chemical fiber material;Using a series of high-tech digital production equipment carefully made digital pictures inkjet pictures.If necessary,please iron the back surface with steam iron but not dry iron. ", "Photography for event,home,festival,holiday,family,wedding,video studio,photo studio,club,school,and all kind of party;children kids newborn baby adults portraits or product photography;video backdrops or displays;TV &film production;used as wallpaper,curtain,tablecloth,ecoration and so on;digital photography;versatile backdrop and a work of art. "], "total_reviews": 10, "total_answered_questions": "", "model": "2x2NBK10650AA", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07KK8H1KH/ref=twister_B086JXQKJZ?_encoding=UTF8&psc=1", "value": "5x5FT", "price_string": "$17.99", "price": 17.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KK6PN2W/ref=twister_B086JXQKJZ?_encoding=UTF8&psc=1", "value": "6x6FT", "price_string": "$23.29", "price": 23.29, "image": null}, {"is_selected": true, "url": null, "value": "6.5x6.5FT", "price_string": "$24.59", "price": 24.59, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KK6KN46/ref=twister_B086JXQKJZ?_encoding=UTF8&psc=1", "value": "8x8FT", "price_string": "$34.89", "price": 34.89, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KK6NMD5/ref=twister_B086JXQKJZ?_encoding=UTF8&psc=1", "value": "10x10FT", "price_string": "$55.99", "price": 55.99, "image": null}]}, "seller_id": "AQ6ITA2LVFXVN", "seller_name": "DEBRA ROBERTS", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07KK7G5YJ", "category": "electronics", "query": "Underwater Photography", "page": 169, "small_description_old": "About this item\n \nSize: 6.5(W)*6.5(H)FT / 2(W)x 2(H)M(2meter wide x2meter high). Material: Vinyl;light weight;It can be folded & easy to carry (Pictorial cloth). Fetures: High resolution,Strong articulation,High quality & not easy fade;Can swab with water,easy to keep clean;Glare free and roll out flat;It is great for photo studio photography;Excellent color treatment and realistic detail. Type: Computer Painted/Printed;Printed on chemical fiber material;Using a series of high-tech digital production equipment carefully made digital pictures inkjet pictures.If necessary,please iron the back surface with steam iron but not dry iron. Photography for event,home,festival,holiday,family,wedding,video studio,photo studio,club,school,and all kind of party;children kids newborn baby adults portraits or product photography;video backdrops or displays;TV &film production;used as wallpaper,curtain,tablecloth,ecoration and so on;digital photography;versatile backdrop and a work of art."}, {"name": "Universal TV Stand/ Base Tabletop TV Stand with Wall Mount for 40 to 86 inch 5 Level Height Adjustable, Heavy Duty Tempered Glass Base, Holds up to 132lbs Screens, HT03B-003", "product_information": {"Brand Name": "\u200eHemudu", "Item Weight": "\u200e20.3 pounds", "Product Dimensions": "\u200e22.8 x 13 x 34.2 inches", "Item model number": "\u200eHT03B-003", "Color Name": "\u200eBlack", "ASIN": "B07ZYVWCZ7", "Customer Reviews": {"ratings_count": 443, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#330 in TV Mounts #481 in Electronics Mounts"], "Date First Available": "November 3, 2019"}, "brand": "Visit the Hemudu Store", "brand_url": "https://www.amazon.com/stores/Hemudu/page/26856B9B-4D16-4DB6-BC69-309C929ACA82?ref_=ast_bln", "full_description": "", "pricing": "$73.95", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41C9ouL1A5S.jpg", "https://m.media-amazon.com/images/I/518aVOIdwRL.jpg", "https://m.media-amazon.com/images/I/41fWLDfTC6S.jpg", "https://m.media-amazon.com/images/I/51pB0vNQXjL.jpg", "https://m.media-amazon.com/images/I/51UnpDr3BbL.jpg", "https://m.media-amazon.com/images/I/41s7l5yV1BL.jpg", "https://m.media-amazon.com/images/I/71KVCyXxKFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Television Accessories \u203a TV Mounts, Stands & Turntables \u203a TV Ceiling & Wall Mounts", "average_rating": 4.4, "small_description": ["UNIVERSAL TABLE TOP TV STAND WITHOUT DRILLING HOLE ON WALL \u261e Designed with a heavy duty steel pole and 10mm thickness tempered glass base, this universal table top TV stand can easily hold your TV on your table with safety and stability, you don't need drill holes on your wall,besides this table top TV stand fits 40 to 86 inch TVs with VESA pattern from 100mmx100mm to 600mmx400mm, holds up to 132lbs screens ", "HEAVY DUTY TV STAND WITH EASY ASSEMBLY \u261e My intelligent stand can be installed within 15 minutes according to a detailed instruction manual, the tools and television screws included ", "FUNCTIONAL TV STAND WITH HEIGHT ADJUSTABLE AND CABLE MANAGEMENT \u261e My functional TV mount have 5 level height adjustment in order to choose your best space, besides integrated cable pass through port and collect the messy cables allows you to tidy your room clean ", "UNIVERSAL AND DURABILITY \u261e Our TV mounting bracket is compatible with Samsung, Sony, LG, Sharp, Insignia, Vizio, Haier, Toshiba, Sharp, Element, and TCL. Black tempered glass gives an added touch to your home theater system while providing security and stability when mounting your devices ", "SMART DESIGN \u261e This tabletop TV stand with black tempered glass base looks simple and elegant "], "total_reviews": 443, "total_answered_questions": 18, "model": "\u200eHT03B-003", "customization_options": "", "seller_id": "A1VGYYY1EQIBD2", "seller_name": "Hemudu", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B07ZYVWCZ7", "category": "electronics", "query": "Television Accessories", "page": 92, "small_description_old": "About this item UNIVERSAL TABLE TOP TV STAND WITHOUT DRILLING HOLE ON WALL \u261e Designed with a heavy duty steel pole and 10mm thickness tempered glass base, this universal table top TV stand can easily hold your TV on your table with safety and stability, you don't need drill holes on your wall,besides this table top TV stand fits 40 to 86 inch TVs with VESA pattern from 100mmx100mm to 600mmx400mm, holds up to 132lbs screens HEAVY DUTY TV STAND WITH EASY ASSEMBLY \u261e My intelligent stand can be installed within 15 minutes according to a detailed instruction manual, the tools and television screws included FUNCTIONAL TV STAND WITH HEIGHT ADJUSTABLE AND CABLE MANAGEMENT \u261e My functional TV mount have 5 level height adjustment in order to choose your best space, besides integrated cable pass through port and collect the messy cables allows you to tidy your room clean UNIVERSAL AND DURABILITY \u261e Our TV mounting bracket is compatible with Samsung, Sony, LG, Sharp, Insignia, Vizio, Haier, Toshiba, Sharp, Element, and TCL. Black tempered glass gives an added touch to your home theater system while providing security and stability when mounting your devices SMART DESIGN \u261e This tabletop TV stand with black tempered glass base looks simple and elegant \n \u203a See more product details"}, {"name": "DiGiorno Original Rising Crust Three Meat Frozen Pizza - 5 Pack (29.8 oz Each) - Crispy Crust - No Artificial Flavors", "product_information": {"Manufacturer\n \u200f": "\u200e\n Gourmet Kitchn", "ASIN\n \u200f": "\u200e\n B097DSB79F", "Best Sellers Rank": "#411,745 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#48 in Frozen Meat Pizzas", "#48 in Frozen Meat Pizzas": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Gourmet Kitchn", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Gourmet+Kitchn", "full_description": "HEALTHY GOURMET FOODS READY TO EATIn Gourmet Kitchn, we started as a frozen food company, but soon we realized how important it is to provide our clients with natural and healthy options.We want to connect people with the best artisan and gourmet foods ready to eat, including pet snacks and treats.", "pricing": "$119.99", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/512TuiOB6HL.jpg", "https://m.media-amazon.com/images/I/61Qy8zq-JKL.jpg", "https://m.media-amazon.com/images/I/41xYn5IXvLL.jpg", "https://m.media-amazon.com/images/I/31GgPMW08sL.jpg", "https://m.media-amazon.com/images/I/517OJ2PvbXL.jpg", "https://m.media-amazon.com/images/I/51bUV6gTryL.jpg", "https://m.media-amazon.com/images/I/31+w-b-CviL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Frozen \u203a Pizza \u203a Meat", "average_rating": 3.4, "small_description": ["ONLY NATURAL INGREDIENTS: Preservative-free rising crust, top it with DiGiorno signature sauce, made from scratch using California vine-ripened tomatoes and 100 percent real cheese. ", "QUICK AND EASY PREPARATION: Bake it in conventional oven and you get a quality-restaurant pizza right at home. ", "PARTY FAVORITE: Serve this easy and convenient pizza at your next pizza party as a meal, or heat it up for an afternoon snack any day of the week. ", "16G OF PROTEIN PER SERVING: A perfect combination is one serving, a fresh salad and great company. ", "KEEP FROZEN: Cook until cheese in center is melted. ", "Unit count type: Ounce "], "total_reviews": 5, "total_answered_questions": "", "customization_options": {"Flavor": [{"is_selected": false, "url": "https://www.amazon.com/dp/B097DTFMLV/ref=twister_B097F4YMQ9?_encoding=UTF8&psc=1", "value": "Pepperoni", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B097DSW96F/ref=twister_B097F4YMQ9?_encoding=UTF8&psc=1", "value": "Supreme", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Three Meat", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B097DSS5YM/ref=twister_B097F4YMQ9?_encoding=UTF8&psc=1", "value": "3 Pack", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "5 Pack", "price_string": "", "price": 0, "image": null}]}, "seller_id": "A28Z54X6O7TYDI", "seller_name": "Ready Set Gourmet", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B097DSB79F", "category": "grocery", "query": "Meat Snacks", "page": 67, "small_description_old": "ONLY NATURAL INGREDIENTS: Preservative-free rising crust, top it with DiGiorno signature sauce, made from scratch using California vine-ripened tomatoes and 100 percent real cheese. QUICK AND EASY PREPARATION: Bake it in conventional oven and you get a quality-restaurant pizza right at home. PARTY FAVORITE: Serve this easy and convenient pizza at your next pizza party as a meal, or heat it up for an afternoon snack any day of the week. 16G OF PROTEIN PER SERVING: A perfect combination is one serving, a fresh salad and great company. KEEP FROZEN: Cook until cheese in center is melted. Unit count type: Ounce"}, {"name": "Leopard Print Makeup Bag Cheetah Small Cosmetic Bags for Women Cosmetics Pouch Travel Accessories Case Portable Zippered Cosmetic Storage Organizer for Purse", "product_information": {"Product Dimensions": "9 x 6 x 2 inches", "Item Weight": "3.2 ounces", "Department": "Women", "ASIN": "B09MCF64RM", "Country of Origin": "China", "Best Sellers Rank": ["#281,005 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care) #4,301 in Cosmetic Bags"]}, "brand": "Visit the Baobeily Store", "brand_url": "https://www.amazon.com/stores/Baobeily/page/B04BE9FC-85C4-48D1-A99E-34389FAB2D7C?ref_=ast_bln", "full_description": "", "pricing": "$15.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51ma1lERh8L.jpg", "https://m.media-amazon.com/images/I/51CAKi9riUL.jpg", "https://m.media-amazon.com/images/I/41iIxfcWQTL.jpg", "https://m.media-amazon.com/images/I/51fxkn9HKNL.jpg", "https://m.media-amazon.com/images/I/514IQFOeh0L.jpg", "https://m.media-amazon.com/images/I/51+3itdCzUL.jpg", "https://m.media-amazon.com/images/I/B1Qic9NN0QS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases \u203a Cosmetic Bags", "average_rating": "", "small_description": ["\u3010DURABLE COSMETIC BAGS\u3011- Fashion makeup bags are easily pack and carry makeup, jewelry, cosmetic products, and hair accessories; these cosmetic pouches are the perfect balance between function and style ", "\u3010TRAVEL BAGS\u3011- Organization has never been easier, use these makeup bags for toiletries or small knick-knacks while traveling and they can also be easily stored in any purse, backpack, tote bag or suitcase. Sleek shape fits anywhere while on the go ", "\u3010HIGH QUALITY\u3011- Made of soft polyester material and with a fully lined interiors. With a zipper closure for keeping contents secure, and flat base for a freestanding handsfree design allowing easier access to your items while going through any routine ", "\u3010PERFECT SIZE\u3011-Each pouch measures approximately 8.26 x 5.51 x 3.34 inches. Easily carry cosmetics makeup tools like lipstick, eye shadow, or men's shaving kit, fit 7 inches makeup brush and 5 inches lipstick ", "\u3010MULTI-PURPOSE Cosmetic Pouch\u3011-Stash your odds and ends with the Baobeily cosmetic bags! As beautiful as they are functional, these makeup bags are perfect for both travel & everyday use. And the cosmetic bag makes a great gift for members of your bridal party, for birthdays, Christmas, or graduation! "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09MCG4H36/ref=twister_B09SZ75VBZ?_encoding=UTF8&psc=1", "value": "001 Leopard Print", "price_string": "$13.99", "price": 13.99, "image": "https://m.media-amazon.com/images/I/41YiqmH3jtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MCDPYXQ/ref=twister_B09SZ75VBZ?_encoding=UTF8&psc=1", "value": "001 Zebra Print", "price_string": "$13.99", "price": 13.99, "image": "https://m.media-amazon.com/images/I/41mu1YCClJL.jpg"}, {"is_selected": true, "url": null, "value": "002 Leopard Print", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/51ma1lERh8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MCFWBB5/ref=twister_B09SZ75VBZ?_encoding=UTF8&psc=1", "value": "002 Zebra Print", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/41GSGv2cmVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09MCGMF42/ref=twister_B09SZ75VBZ?_encoding=UTF8&psc=1", "value": "003 Zebra Print", "price_string": "$17.99", "price": 17.99, "image": "https://m.media-amazon.com/images/I/51ihxRed7nL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NVWFMDW/ref=twister_B09SZ75VBZ?_encoding=UTF8&psc=1", "value": "A", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/51hwRgC1eEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NVWDVL8/ref=twister_B09SZ75VBZ?_encoding=UTF8&psc=1", "value": "B", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/51xuaNGzOxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NVWK1B6/ref=twister_B09SZ75VBZ?_encoding=UTF8&psc=1", "value": "C", "price_string": "$5.99", "price": 5.99, "image": "https://m.media-amazon.com/images/I/41jIpQAuNPL.jpg"}]}, "seller_id": "A27UYH8Q4Q7HVK", "seller_name": "Bravoheart", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09MCF64RM", "category": "beauty", "query": "Bags & Cases", "page": 43, "small_description_old": "\u3010DURABLE COSMETIC BAGS\u3011- Fashion makeup bags are easily pack and carry makeup, jewelry, cosmetic products, and hair accessories; these cosmetic pouches are the perfect balance between function and style \u3010TRAVEL BAGS\u3011- Organization has never been easier, use these makeup bags for toiletries or small knick-knacks while traveling and they can also be easily stored in any purse, backpack, tote bag or suitcase. Sleek shape fits anywhere while on the go \u3010HIGH QUALITY\u3011- Made of soft polyester material and with a fully lined interiors. With a zipper closure for keeping contents secure, and flat base for a freestanding handsfree design allowing easier access to your items while going through any routine \u3010PERFECT SIZE\u3011-Each pouch measures approximately 8.26 x 5.51 x 3.34 inches. Easily carry cosmetics makeup tools like lipstick, eye shadow, or men's shaving kit, fit 7 inches makeup brush and 5 inches lipstick \u3010MULTI-PURPOSE Cosmetic Pouch\u3011-Stash your odds and ends with the Baobeily cosmetic bags! As beautiful as they are functional, these makeup bags are perfect for both travel & everyday use. And the cosmetic bag makes a great gift for members of your bridal party, for birthdays, Christmas, or graduation!"}, {"name": "Gefen Pitted Sweet Cherries Kosher For Passover 15 Oz. Pack Of 6.", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 4.4 x 3 x 4.4 inches; 15 Ounces", "UPC\n \u200f": "\u200e\n 670628965137", "Manufacturer\n \u200f": "\u200e\n Joycie Foods", "ASIN\n \u200f": "\u200e\n B079ZBPR2X", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#748,528 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#374 in Canned & Jarred Cherries", "#374 in Canned & Jarred Cherries": ""}, "brand": "Brand: Gefen", "brand_url": "https://www.amazon.com/Gefen/b/ref=bl_dp_s_web_2529465011?ie=UTF8&node=2529465011&field-lbr_brands_browse-bin=Gefen", "full_description": "Product of USA. Pack of 6. Kosher for Passover. Pitted Sweet Cherries. This is a natural product, pitted mechanically & may contain occasional pits. Ingredients: Cherries, Water & Sugar.", "pricing": "$37.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/215XbR9msAL.jpg", "https://m.media-amazon.com/images/I/51YTVVit+gL.jpg", "https://m.media-amazon.com/images/I/31-SbhRo0KL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Canned, Jarred & Packaged Foods \u203a Fruits \u203a Cherries", "average_rating": "", "small_description": ["Product of USA. Pack of 6. ", "Kosher for Passover. ", "Pitted Sweet Cherries. ", "This is a natural product, pitted mechanically & may contain occasional pits. ", "Ingredients: Cherries, Water & Sugar. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1I7ZRDT3ARVVS", "seller_name": "joycepantry", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B079ZBPR2X", "category": "grocery", "query": "Fruit Snacks", "page": 285, "small_description_old": "About this item Product of USA. Pack of 6. Kosher for Passover. Pitted Sweet Cherries. This is a natural product, pitted mechanically & may contain occasional pits. Ingredients: Cherries, Water & Sugar."}, {"name": "PZCXBFH Women Sexy Sparkle Rhinestone Teddy Fishnet Bodysuit", "product_information": "", "brand": "Brand: PZCXBFH", "brand_url": "https://www.amazon.com/PZCXBFH/b/ref=bl_sl_s_ap_web_21578240011?ie=UTF8&node=21578240011&field-lbr_brands_browse-bin=PZCXBFH", "full_description": "", "pricing": "$7.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/511CznndbAL.jpg", "https://m.media-amazon.com/images/I/41nsgTcSCCS.jpg", "https://m.media-amazon.com/images/I/41siE-OmK0S.jpg", "https://m.media-amazon.com/images/I/51pnEi+17vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Exotic Apparel \u203a Women \u203a Teddies & Bodysuits", "average_rating": 4.4, "small_description": ["Pull-on seal closure ", "Lingerie for women :black bodysuits pair well with any dress, skirt, shorts and pants. Suitable for night party, club, clubwear or casual. ", "Super cute and sexy, soft and comfortable for wear. A perfect accessory with other lingeries for a more sexy hot look. ", "Stretch and comfortable fabric with rhinestones on the surface which shows your curve and make you extremely sexy,All over seductive bright rhinestone embellished ", "FREE SIZE: The size is average, most women can wear it, the elastic fabric makes you comfortable to wear,One size is best for weights under 154 lbs. ", "Material: nylon and spandex.KINDLY REMIND: It is recommended to clean by hand, because machine wash may damage the lace; please note that low temperature washed, do not bleach and place under the blazing sun for quite a long time "], "total_reviews": 1371, "total_answered_questions": 6, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B0971H6ZBL/ref=twister_B08R91Q169?_encoding=UTF8&psc=1", "value": "Black", "price_string": "$6.99", "price": 6.99, "image": "https://m.media-amazon.com/images/I/41-rVB76NAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B089ZZ7SRM/ref=twister_B08R91Q169?_encoding=UTF8&psc=1", "value": "4 Pieces", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/51t4fRpESAL.jpg"}, {"is_selected": true, "url": null, "value": "Black Sleeveless", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/511CznndbAL.jpg"}], "Size": null}, "seller_id": "A20GMH052DHGGW", "seller_name": "PZCXBFH", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08NTPQ4KP", "category": "fashion", "query": "Women's Bodysuit Tops", "page": 27, "small_description_old": "Nylon/Spandex Imported Pull-on seal closure Hand Wash Only Lingerie for women :black bodysuits pair well with any dress, skirt, shorts and pants. Suitable for night party, club, clubwear or casual. Super cute and sexy, soft and comfortable for wear. A perfect accessory with other lingeries for a more sexy hot look. Stretch and comfortable fabric with rhinestones on the surface which shows your curve and make you extremely sexy,All over seductive bright rhinestone embellished \n FREE SIZE: The size is average, most women can wear it, the elastic fabric makes you comfortable to wear,One size is best for weights under 154 lbs.Material: nylon and spandex.KINDLY REMIND: It is recommended to clean by hand, because machine wash may damage the lace; please note that low temperature washed, do not bleach and place under the blazing sun for quite a long timeShow more"}, {"name": "CubiCubi Computer Desk with Shelves, Office Desk with Drawers, 47 Inch Writing Desk with Storage Study Table for Home Office, Living Room, Bedroom, Rustic Brown", "product_information": {"Product Dimensions": "23.6 x 47.2 x 46.5 inches", "Item Weight": "60.5 pounds", "ASIN": "B09Q2ZBB1G", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#1,548,998 in Home & Kitchen (See Top 100 in Home & Kitchen) #5,487 in Home Office Desks"], "Date First Available": "January 10, 2022"}, "brand": "Visit the CubiCubi Store", "brand_url": "https://www.amazon.com/stores/CubiCubi/page/2BCA7720-8455-4DC6-8731-A1FFEF27BF7F?ref_=ast_bln", "full_description": "", "pricing": "", "list_price": "", "availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.", "images": ["https://m.media-amazon.com/images/I/41PRkxWvSnL.jpg", "https://m.media-amazon.com/images/I/41Ox2VCKJ4L.jpg", "https://m.media-amazon.com/images/I/51xDV-ZI91L.jpg", "https://m.media-amazon.com/images/I/51OJLCtIq-L.jpg", "https://m.media-amazon.com/images/I/51xCVu9uyOL.jpg", "https://m.media-amazon.com/images/I/41KlvTG2wBL.jpg", "https://m.media-amazon.com/images/I/41jsfyeGtGL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Desks", "average_rating": 5, "small_description": ["Functional Computer Desk with Shelves and Drawers: Equipped with 3 Tier Storage Shelves, can efficiently store various items ", "Modern Simple Style computer desk has an industrial charm appearance, will be a beautiful d\u00e9cor for your home ", "Spacious & Sturdy: This desk provides ample space for writing, studying, gaming and other home office activities ", "Installation Guide\uff1aExcept for the manual, you can also refer to the installation video on the page ", "Materials\uff1aMelamine-faced board, Steel "], "total_reviews": 1, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09Q2ZBB1G", "category": "garden", "query": "Desks", "page": 100, "small_description_old": "About this item\n \nFunctional Computer Desk with Shelves and Drawers: Equipped with 3 Tier Storage Shelves, can efficiently store various items Modern Simple Style computer desk has an industrial charm appearance, will be a beautiful d\u00e9cor for your home Spacious & Sturdy: This desk provides ample space for writing, studying, gaming and other home office activities Installation Guide\uff1aExcept for the manual, you can also refer to the installation video on the page Materials\uff1aMelamine-faced board, Steel"}, {"name": "Cameron Sino Rechargeble Battery for Sony PSP-3000 (1800mAh/6.66Wh)", "product_information": {"Product Dimensions": "2.29 x 1.43 x 0.51 inches", "Item Weight": "2.4 ounces", "ASIN": "B01DNNKHBC", "Item model number": "CS-SP112XL-6", "Date First Available": "March 31, 2016", "Manufacturer": "Cameron Sino"}, "brand": "Brand: Cameron Sino", "brand_url": "https://www.amazon.com/Cameron-Sino/b/ref=bl_dp_s_web_2529110011?ie=UTF8&node=2529110011&field-lbr_brands_browse-bin=Cameron+Sino", "full_description": "Cameron Sino Rechargeble Battery for Sony PSP-3000 (1800mAh/6.66Wh)\u00a0Cameron Sino designed specifically for you. All Products are Certificated with ISO9007,RoHS, and CE", "pricing": "$19.50", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41KC2BzM5sL.jpg", "https://m.media-amazon.com/images/I/41kp95fXOoL.jpg", "https://m.media-amazon.com/images/I/41HtxIvAOCL.jpg", "https://m.media-amazon.com/images/I/41MjQnNJTOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "model": "CS-SP112XL-6", "customization_options": "", "seller_id": "A3ACR1CKYGTNCQ", "seller_name": "Record", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01DNNKHBC", "category": "electronics", "query": "PlayStation", "page": 363, "small_description_old": ""}, {"name": "FLAVIA DOVE Hot Chocolate, 18-Count Fresh Packs (Pack of 4)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 13.6 x 6.2 x 5 inches; 3.75 Pounds", "Item model number\n \u200f": "\u200e\n A117", "Date First Available\n \u200f": "\u200e\n February 24, 2011", "Manufacturer\n \u200f": "\u200e\n FLAVIA", "ASIN\n \u200f": "\u200e\n B004PD3K46", "Best Sellers Rank": "#73,648 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#118 in Powdered Chocolate Drink Mixes", "#118 in Powdered Chocolate Drink Mixes": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Flavia", "brand_url": "https://www.amazon.com/Flavia/b/ref=bl_dp_s_web_3028514011?ie=UTF8&node=3028514011&field-lbr_brands_browse-bin=Flavia", "full_description": "\"Silky smooth, delicious hot chocolate is made with the finest ingredients, including real chocolate liquor. Indulge yourself in an unforgettable chocolaty Dove experience. Each Freshpack contains the exact amount to brew a perfect single cup of hot chocolate and acts as the brew chamber for your drink so your cup never tastes like the last beverage that was brewed. Freshpacks are used in Flavia Creation 150, Creation 200 and Creation 500 (all sold separately). Simply slip the pouch into the pack door, and the machine pierces the pack seal to create your delicious beverage. For single-serve sustainability, innovative pouches are 100 percent recyclable through Terracycle. More from the Manufacturer \"", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41hA8J0gkmL.jpg", "https://m.media-amazon.com/images/I/51nZjnHHAkL.jpg", "https://m.media-amazon.com/images/I/51+Ep37gziL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Powdered Drink Mixes & Flavorings \u203a Chocolate Drink Mixes", "average_rating": 4.7, "small_description": ["Fresh, convenient single-servings ", "Sealed from light and air to ensure perfect cup every time ", "No cross-contamination for drink purity ", "Silky smooth, Dove chocolate experience ", "Works in Flavia Creation 150, Creation 200 and Creation 500 "], "total_reviews": 121, "total_answered_questions": 10, "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B004PD3K46", "category": "grocery", "query": "Beverages", "page": 379, "small_description_old": "About this item\n \nFresh, convenient single-servings Sealed from light and air to ensure perfect cup every time No cross-contamination for drink purity Silky smooth, Dove chocolate experience Works in Flavia Creation 150, Creation 200 and Creation 500"}, {"name": "Armchair Makeup Stool Lounge Stools Home Office Desk Chair Dining Chair Home Office Chair Floor Chair Computer Chair Ergonomic Learning Back Desk", "product_information": {"Item Weight": "\u200e11.02 pounds", "Package Dimensions": "\u200e21.65 x 19.69 x 16.14 inches", "ASIN": "B08LNFNXSD", "Date First Available": "October 22, 2020"}, "brand": "Brand: Mgo", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Mgo", "full_description": "The elegant and fashionable design makes it suitable for any room. Simple but not simple. High-quality thick, durable, warm and not easily deformed. It provides comfortable support in a comfortable and convenient design. \u2605 Why Choose Us:- Ergonomic curved back is not only beautiful but also comfortable.- Very suitable for living room, bedroom, office, reception area, dormitory.- The padded middle back provides good and comfortable support when you tilt back.\u2605 Specifications: - Product Name: Stools- Set includes: 1 x Stools- Weight: 5kg / 11lb- Maximum weight: 300 lb\u2605 Benefits you will get:- Thick cushions provide a comfortable experience when working or playing video games.- It is easy to assemble and usually takes only 15 minutes to complete.- Add different colors and stylish atmosphere to your room.\u2605 Excellent Service:- We offer 100% Money Back or Exchange if the product has any quality issues, you can buy with confidence.- We offer 24 hours online customer service, please feel free to message us if you have any questions. Thanks for good communication!- We promises to ship within 24 hours, and the delivery time is 7-20 working days.", "pricing": "$381.81", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31Xgu6jgPjL.jpg", "https://m.media-amazon.com/images/I/41xbMJyiW6L.jpg", "https://m.media-amazon.com/images/I/517sBMF3G2L.jpg", "https://m.media-amazon.com/images/I/51YU+--JtkL.jpg", "https://m.media-amazon.com/images/I/51WBXAW2S9L.jpg", "https://m.media-amazon.com/images/I/41L9OjhJ1WL.jpg", "https://m.media-amazon.com/images/I/31aisH87BlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Chairs \u203a Home Office Desk Chairs", "average_rating": "", "small_description": ["\u2605[high quality] - fabric more comfortable, high quality accessories. ", "\u2605[easy to install] - this office chair is super easy to assemble. It took about 10-15 minutes. ", "\u2605[Classic appearance] - Modern design with a modern sense, clear lines, simple, adding color and chic elegance. ", "\u2605[ergonomic office chair] - this office chair adopts humanized ergonomic design to provide comfortable sitting position. ", "\u2605[we guarantee] - we guarantee that you will like this ergonomic stool. However, if you are not satisfied with this chair, please contact us. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1DUXSP6CCYQSJ", "seller_name": "YGo", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08LNFNXSD", "category": "garden", "query": "Home Office Chairs", "page": 312, "small_description_old": "About this item \u2605[high quality] - fabric more comfortable, high quality accessories. \u2605[easy to install] - this office chair is super easy to assemble. It took about 10-15 minutes. \u2605[Classic appearance] - Modern design with a modern sense, clear lines, simple, adding color and chic elegance. \u2605[ergonomic office chair] - this office chair adopts humanized ergonomic design to provide comfortable sitting position. \u2605[we guarantee] - we guarantee that you will like this ergonomic stool. However, if you are not satisfied with this chair, please contact us. \n \u203a See more product details"}, {"name": "hongxinq Floating TV Stand with Storage Shelves, Chipboard Wall Mounted Hanging Television Cabinet, Modern Storage Cabinet for Living Room, Bedroom, 12Inx11.8Inx35.4In, White", "product_information": {"Product Dimensions": "\u200e11.8 x 12 x 35.4 inches", "ASIN": "B09F6SCW47", "Best Sellers Rank": ["#1,831,122 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,673 in Television Stands"], "Date First Available": "September 1, 2021"}, "brand": "Brand: hongxinq", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=hongxinq", "full_description": "Color: WhiteMaterial: ChipboardDimensions: 12inch x 11.8inch x 35.4inch (W x D x H)Assembly required: YesPackage: 1 TV Cabinet", "pricing": "$90.79", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41oG8oesYaL.jpg", "https://m.media-amazon.com/images/I/417hI3UR34L.jpg", "https://m.media-amazon.com/images/I/41HpKNSNHCL.jpg", "https://m.media-amazon.com/images/I/31Czmi4feoL.jpg", "https://m.media-amazon.com/images/I/31IicXbeSbL.jpg", "https://m.media-amazon.com/images/I/31uIvhyBTOL.jpg", "https://m.media-amazon.com/images/I/11nHnnuBdBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a TV & Media Furniture \u203a Television Stands & Entertainment Centers", "average_rating": "", "small_description": ["\ud83c\udf8d\u3010Simple & Elegant\u3011: This hanging TV cabinet set is meant to be a focal point of your living room with a trendy yet practical design. ", "\ud83c\udf8d\u3010Provide Ample Space\u3011: Each cabinet has 2 shelves, making it an ideal place for storing all your books, magazines, DVDs or other items. ", "\ud83c\udf8d\u3010Premium Board Material\u3011: These wall-mounted TV cabinets are made of quality board, making them sturdy and stable. ", "\ud83c\udf8d\u3010Easy To Maintain\u3011: These wall cabinets are also easy to clean with a damp cloth. ", "\ud83c\udf8d\u3010Quality Service\u3011: This wall cabinet is shipped from United States,usually ships within 4-7 days. If you have any questions or problems about our product, do not hesitate to contact us by email, we will do our best to help you! "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09F6VD353/ref=twister_B09F6W3JZM?_encoding=UTF8&psc=1", "value": "Brown", "price_string": "$88.79", "price": 88.79, "image": "https://m.media-amazon.com/images/I/41wkj-PPtNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F6SFB5L/ref=twister_B09F6W3JZM?_encoding=UTF8&psc=1", "value": "Concrete Gray", "price_string": "$87.79", "price": 87.79, "image": "https://m.media-amazon.com/images/I/41blkIAFd-S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F6VKLPH/ref=twister_B09F6W3JZM?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "$84.79", "price": 84.79, "image": "https://m.media-amazon.com/images/I/41lRiL4Uu+L.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$90.79", "price": 90.79, "image": "https://m.media-amazon.com/images/I/41oG8oesYaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F6WDCYQ/ref=twister_B09F6W3JZM?_encoding=UTF8&psc=1", "value": "White+brown", "price_string": "$86.79", "price": 86.79, "image": "https://m.media-amazon.com/images/I/41oG8oesYaL.jpg"}]}, "seller_id": "A14GUM04S65I83", "seller_name": "hongxinq", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09F6SCW47", "category": "garden", "query": "TV Stands", "page": 121, "small_description_old": "About this item \ud83e\uddf8This hanging TV cabinet set is meant to be a focal point of your living room with a trendy yet practical design. \ud83e\uddf8Each cabinet has 2 shelves, making it an ideal place for storing all your books, magazines, DVDs or other items. \ud83e\uddf8These wall-mounted TV cabinets are made of board, making them sturdy and stable. \ud83e\uddf8These wall cabinets are also easy to clean with a damp cloth. \ud83e\uddf8 Please be assured that this product is shipped from US, You can see your product asap. If you have any questions or problems about our product, do not hesitate to contact us by email, we will do our best to help you! \n \u203a See more product details"}, {"name": "Mattress Twin Full Queen King Floor Mat Foldable Mattress Futon Bed Futon Mattress Guest Bed Bed Tatami Mattress-C-150X200Cm(59X79Inch)", "product_information": {"Manufacturer": "QNMD", "ASIN": "B098M9KX7K", "Date First Available": "July 4, 2021"}, "brand": "Brand: QNMD", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=QNMD", "full_description": "Welcome to browse this shopProduct Description:The tatami mattress pad protectors is soft comfortable and breathable. It can be rolled up in a closet and then spread out on the floor to sleep. It can effectively use living space and storage space and move easily.Size Description:Twin: 90x200cm(35x79inch)Full: 120x200cm(47x79inch)Queen: 150x200cm(59x79inch)King: 180x200cm(71x79inch)Tips:Please note that the futon mattress is vacuum sealed at the time of delivery. When the package is opened, the futon mattress will be expanded back to the normal size.Our service aim is to satisfy every customer. If you have any questions, please feel free to contact us. We will do our best to solve the problem for you until you are satisfied.", "pricing": "$129.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51NcLVyB3uS.jpg", "https://m.media-amazon.com/images/I/51yKRTrirUS.jpg", "https://m.media-amazon.com/images/I/51AVnhemIVS.jpg", "https://m.media-amazon.com/images/I/51JnSbkhNgS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Futons \u203a Futon Mattresses", "average_rating": "", "small_description": ["Comfortable materials: high-quality materials, soft and comfortable, this futon pillow can provide a comfortable sleeping experience on the bed and the floor. ", "Multifunctional mattress-can be used as mattress cover, bedroom futon, living room futon, matt mat, floor mat, sleeping mat, tent mat, guest mattress. This mattress can be easily folded for travel or storage. ", "Cleaning: We always recommend using any mattress cover cloth to protect the mattress, only partially clean it, and then air it in a sunny day, or close the open windows for airing and drying. ", "Widely used: Bedding can be folded and stored. Let us make your room simple, clean and relaxing. It is also good to take the portable futon outdoors like camping. ", "Important note: The soft mattress has been folded and compressed for transportation, so when the product arrives, there may be some creases, so it takes 2-3 days to return to its normal thickness after opening the package. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "AKCIDZ4UZHDIL", "seller_name": "HP-BAIHUOGONGSI", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B098M9KX7K", "category": "garden", "query": "Mattresses", "page": 342, "small_description_old": "About this item\n \nComfortable materials: high-quality materials, soft and comfortable, this futon pillow can provide a comfortable sleeping experience on the bed and the floor. Multifunctional mattress-can be used as mattress cover, bedroom futon, living room futon, matt mat, floor mat, sleeping mat, tent mat, guest mattress. This mattress can be easily folded for travel or storage. Cleaning: We always recommend using any mattress cover cloth to protect the mattress, only partially clean it, and then air it in a sunny day, or close the open windows for airing and drying. Widely used: Bedding can be folded and stored. Let us make your room simple, clean and relaxing. It is also good to take the portable futon outdoors like camping. Important note: The soft mattress has been folded and compressed for transportation, so when the product arrives, there may be some creases, so it takes 2-3 days to return to its normal thickness after opening the package."}, {"name": "DANA MEN'S HOLIDAY COLLECTION Fragrance, Sampler Holiday Collection, 5 Piece", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 12 x 2 x 7 inches; 11.04 Ounces", "Item model number\n \u200f": "\u200e\n 16067CV", "UPC\n \u200f": "\u200e\n 046447160679", "Manufacturer\n \u200f": "\u200e\n DANA CLASSIC FRAGRANCES, INC.", "ASIN\n \u200f": "\u200e\n B01N9HLYS1", "Best Sellers Rank": "#269,018 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#484 in Women's Fragrance Sets", "#484 in Women's Fragrance Sets": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Dana Store", "brand_url": "https://www.amazon.com/stores/DANAClassicFragrances/page/C850645F-1EB0-49B4-9FE3-7E62155226F9?ref_=ast_bln", "full_description": "Collection includes: 1 - 0.5 fl. Oz. British sterling cologne splash 1 - 0.6 fl. Oz. English leather cologne splash 1 - 0.5 fl. Oz. Canoe eau de toilette splash 1 - 0.5 fl. Oz. British sterling h.I.M. Reserve eau de toilette splash 1 - 0.5 fl. Oz. Valor eau de toilette splash.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/414aywpL3OL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Sets", "average_rating": 4.3, "small_description": ["This is a brand new 100% authentic dana gift set made and sold by dana classic fragrances ", "5 travel-size dana fragrances, including iconic classic favorites and exciting new editions ", "Great to take along wherever you go ", "Our sampler collection makes the perfect holiday gift "], "total_reviews": 351, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01N9HLYS1", "category": "beauty", "query": "Sets Fragrance", "page": 74, "small_description_old": "About this item This is a brand new 100% authentic dana gift set made and sold by dana classic fragrances 5 travel-size dana fragrances, including iconic classic favorites and exciting new editions Great to take along wherever you go Our sampler collection makes the perfect holiday gift"}, {"name": "Sealy Baby Select 2-Cool 2-Stage Dual Firmness Lightweight Waterproof Standard Toddler & Baby Crib Mattress, Soybean Foam-Core, 51.63\u201d x 27.25\u201d", "product_information": {"Product Dimensions": "\u200e51.63 x 27.25 x 5.5 inches", "Item model number": "\u200eEM817-KJO1", "Is Discontinued By Manufacturer": "\u200eNo", "Care instructions": "\u200eWipe clean with damp cloth", "Number Of Items": "\u200e1", "Style": "\u200eMattress", "Batteries required": "\u200eNo", "Item Weight": "\u200e6.01 pounds", "ASIN": "B077KJXD99", "Customer Reviews": {"ratings_count": 349, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#19,189 in Baby (See Top 100 in Baby) #62 in Crib Mattresses"]}, "brand": "Visit the Sealy Store", "brand_url": "https://www.amazon.com/stores/Sealy/page/C36084AB-B70F-46BA-BC8A-42D47D3EDBF3?ref_=ast_bln", "full_description": "Kolcraft is a third-generation, family-owned company that has been dedicated to creating innovative baby products for more than 70 years. From our start in 1946, we began with baby steps\u2014specializing in pads for cribs, playards, and high chairs. For over 130 years, Sealy has been a proud supporter of you, bringing great rest to every kind of sleeper in the family. Sealy infant and toddler sleep products have been synonymous with comfort, quality and support, combining sleep innovations with premium materials to keep baby cozy, comfortable and well supported.", "pricing": "$179.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/410mffJ71xL.jpg", "https://m.media-amazon.com/images/I/51mf-6feGoL.jpg", "https://m.media-amazon.com/images/I/41QRLM9MMyL.jpg", "https://m.media-amazon.com/images/I/414Tusr26wL.jpg", "https://m.media-amazon.com/images/I/51tuTsfZWRL.jpg", "https://m.media-amazon.com/images/I/41cFJ3w8JIL.jpg", "https://m.media-amazon.com/images/I/41VBndfRlrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Baby Products \u203a Nursery \u203a Bedding \u203a Mattresses \u203a Crib Mattresses", "average_rating": 4.8, "small_description": ["2-STAGE DESIGN -- Firmer infant side made from high-density soy-enhanced foam. Sealy mattresses are tagged with a firmer infant side and softer comfort side for toddlers on the tag ", "WATERPROOF & STAIN RESISTANT -- Cool-Tex waterproof and stain-resistant fabric cover for luxury and comfort ", "COOL & BREATHABLE -- Exclusive infused soybean cool gel memory foam technology creates a cooler feeling top layer that absorbs baby\u2019s movement and responds with increased comfort. Lock-stitched binding will not unravel and won\u2019t trap liquids and odors ", "SAFETY & QUALITY -- This crib mattress passes safety, quality, and chemical tests to ensure your baby is safe and sound on a Sealy. CertiPUR-US Certified foam for durability and tested for chemical emissions ", "MADE IN THE USA -- Sealy Crib and Toddler Mattresses are designed, engineered and proudly made in the USA of U.S. and imported parts. Lifetime warranty on workmanship and materials "], "total_reviews": 349, "total_answered_questions": 11, "model": "\u200eEM817-KJO1", "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "Mattress", "price_string": "$179.99", "price": 179.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08L4QHB39/ref=twister_B08M6SWH2T?_encoding=UTF8&psc=1", "value": "Mattriess+Pad Bundle", "price_string": "$199.98", "price": 199.98, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B077KJXD99", "category": "garden", "query": "Mattresses", "page": 38, "small_description_old": "About this item 2-STAGE DESIGN -- Firmer infant side made from high-density soy-enhanced foam. Sealy mattresses are tagged with a firmer infant side and softer comfort side for toddlers on the tag WATERPROOF & STAIN RESISTANT -- Cool-Tex waterproof and stain-resistant fabric cover for luxury and comfort COOL & BREATHABLE -- Exclusive infused soybean cool gel memory foam technology creates a cooler feeling top layer that absorbs baby\u2019s movement and responds with increased comfort. Lock-stitched binding will not unravel and won\u2019t trap liquids and odors SAFETY & QUALITY -- This crib mattress passes safety, quality, and chemical tests to ensure your baby is safe and sound on a Sealy. CertiPUR-US Certified foam for durability and tested for chemical emissions MADE IN THE USA -- Sealy Crib and Toddler Mattresses are designed, engineered and proudly made in the USA of U.S. and imported parts. Lifetime warranty on workmanship and materials \n \u203a See more product details"}, {"name": "PATOPO Valentine Lingerie for Women for Sex Naughty Cami Crop Tops And Shorts Set 2 Pieces Sleepwear Set Heart Print Pajamas", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 6, 2022", "Manufacturer\n \u200f": "\u200e\n PATOPO", "ASIN\n \u200f": "\u200e\n B09PV9W2W7", "": ""}, "brand": "Brand: PATOPO", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=PATOPO", "full_description": "\u2764\u2764Gender:Women\u2764\u2764Occasion:Daily,casual,honeymoon,anniversaries,valentine's day,christmas day,date night or every special nights,wedding nght.\u2764\u2764Material:High quality lace and polyester,soft,stretchable,breathable and comfortable to wear\u2764\u2764Style:Sexy\u2764\u2764Thickness:Standard\u2764\u2764How to wash:Hand wash Cold,Hang or Line Dry\u2764\u2764When will you get it:15-25 days\u2764\u2764Service:If you need help,please let us know by email,we will help within 24 hours,and I wish you a happy shopping.\u2764\u2764What you get:Sexy lingerie for women\u2764Keywords\u2764(lingerie for women Lace Babydoll Strap Teddy V Neck Sleepwear lingerie for women plus size for sex naughty crotchless bodysuit elastic floral lace Lace Kimono Robe Mesh Nightgown Self Knot Front Teddy Lingerie One Piece Baby doll Chemises & Negligees lingerie for women for sex naughty Open Crotch Lingerie Sexy Lace Bodysuit Deep V Teddy One Piece Lace Babydoll Women's Pajama Sets Everyday Bras Women's Exotic Lingerie Sets Women's Exotic Teddies & Bodysuits Women's Exotic Costumes Silky Satin lingerie for women for sex play Nightie Backless Lingerie for Women Loose Sleepwear Mini Nightgown Solid Spaghetti Strap Chemise Dress Mini Slip Chemise Nightwear Deep V Lingerie Sleepwear See Through Lingerie One Piece Bodysuit Nightwear Onesies lingerie for women crotchless for sex Lace Bodysuit Deep V Teddy Mini Babydoll Outfits Plus Size Garter Belts Lace Lingerie Set with Removable Choker Strappy Bra and Panty Set Stockings Front Closure Nightwear Sexy Chemise Nightie Exotic NightgownsWomen's Plus Size Mesh Satin Lingerie Underwire Lace Up Halter Sleepwear Hollow Nightwear Backless Chemise Dress black bodysuit gifts for her Women's Exotic Lingerie Bodystockings Satin Sleepwear Lace Chemise Mini Teddy Halter Halter Embroidered)", "pricing": "$12.06", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41MPbjp1JEL.jpg", "https://m.media-amazon.com/images/I/41Ap+H7cdAL.jpg", "https://m.media-amazon.com/images/I/41Zf7TA9qRL.jpg", "https://m.media-amazon.com/images/I/41TyAZFdS2L.jpg", "https://m.media-amazon.com/images/I/41DB+u+MG9L.jpg", "https://m.media-amazon.com/images/I/41kPznOjxWL.jpg", "https://m.media-amazon.com/images/I/41rsx1ufPtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Sleep & Lounge \u203a Sets", "average_rating": "", "small_description": ["\u2765\u2765[Product]\u2767Valentine Lingerie for Women for Sex Naughty Cami Crop Tops And Shorts Set 2 Pieces Sleepwear Set Heart Print Pajamas,valentine's day day gifts for her,A variety of colors and styles are available,Hope you have a good shopping time.\u2618 ", "\u2765\u2765[Materials]\u2767Sexy lingerie for women,which made of high quality lace and polyester,the high quality fabric is soft,stretchable,breathable and comfortable to wear,perfect as sleepwear.\u2618 ", "\u2765\u2765[Occassions]\u2767Lingerie for women teddy nightwear perfect for wedding night,honeymoon,lingerie party,anniversaries,valentine's day,christmas day,date night or every special night,valentine's day gifts for her,lovely lingerie for women,which makes you more attractive and charming.\u2618 ", "\u2765\u2765[Varieties]\u2767A variety of colors and styles are available,such as lace red babydolls,sheer floral lace fabric,teddy nightwear,one piece bodysuit,deep v mini babydoll,backless sexy lace garter lingerie set,christmas lingerie,lace chemise,black lingerie,lace kimono robe,sheer robes,sexy nightgowns for women,wedding lingerie,lingerie cover up,holiday lingerie,sexy santa lingerie for women and so on.\u2618 ", "\u2765\u2765[Service]\u2767Please check the size chart before order.If you are not sure about the size,or any other questions,please send message to us,we are happy to serve you.\u2618 "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PV9244F"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PV8VFNJ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PVCMWWZ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PV9J15D"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09PVB4VMD"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09PV9W2W7/ref=twister_B09PV92QPS", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/418j32XtVvL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MPbjp1JEL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PV9J15D", "category": "fashion", "query": "Women's Lingerie, Sleep & Lounge", "page": 109, "small_description_old": "\u2765\u2765[Product]\u2767Valentine Lingerie for Women for Sex Naughty Cami Crop Tops And Shorts Set 2 Pieces Sleepwear Set Heart Print Pajamas,valentine's day day gifts for her,A variety of colors and styles are available,Hope you have a good shopping time.\u2618 \u2765\u2765[Materials]\u2767Sexy lingerie for women,which made of high quality lace and polyester,the high quality fabric is soft,stretchable,breathable and comfortable to wear,perfect as sleepwear.\u2618 \u2765\u2765[Occassions]\u2767Lingerie for women teddy nightwear perfect for wedding night,honeymoon,lingerie party,anniversaries,valentine's day,christmas day,date night or every special night,valentine's day gifts for her,lovely lingerie for women,which makes you more attractive and charming.\u2618 \u2765\u2765[Varieties]\u2767A variety of colors and styles are available,such as lace red babydolls,sheer floral lace fabric,teddy nightwear,one piece bodysuit,deep v mini babydoll,backless sexy lace garter lingerie set,christmas lingerie,lace chemise,black lingerie,lace kimono robe,sheer robes,sexy nightgowns for women,wedding lingerie,lingerie cover up,holiday lingerie,sexy santa lingerie for women and so on.\u2618 \u2765\u2765[Service]\u2767Please check the size chart before order.If you are not sure about the size,or any other questions,please send message to us,we are happy to serve you.\u2618"}, {"name": "Lurrose 1 Set Empty Mascara Tubes Bottles Vials with Eyelash Wand Mini Funnels Reusable Refillable Eyelash Cream Container Bottle for DIY Cosmetics Travel", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 3.07 x 0.43 x 0.43 inches; 1.23 Ounces", "Item model number\n \u200f": "\u200e\n U043MU35513Y2Z3111N", "Manufacturer\n \u200f": "\u200e\n Lurrose", "ASIN\n \u200f": "\u200e\n B09Q53YH1W", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Visit the Lurrose Store", "brand_url": "https://www.amazon.com/stores/Lurrose/page/4CD32519-0F99-4F89-9BB9-7EFBF13048A8?ref_=ast_bln", "full_description": "Description This item is a set of portable mascara bottles, lip gloss and shadow tip liners. Made of premium material, they are durable and practical. Very easy to carry, compact and light, easy to put into the makeup bag. These empty bottles are suitable for making your DIY cosmetics tubes. Features- Color: As shown- Material: ABS, PETG, PP- Capacity: 4ml.- Size: 7. 80X1. 10X1. 10cm/ 3. 07X0. 43X0. 43in- Our cosmetics bottles are washable and reusable, and which can be used over and over again.- The transparent bottle allows you to check the remaining volume and color at any time. You can also choose your favorite color without opening, which makes it easy to dispense liquid.- Portable and lightweight, they are easy to carry. These tubes are small and can be carried in your pocket.- They can be used as a container for liquid cosmetics of various colors; a good choice for beginners to practice, daily use.- The empty cosmetics tube is made of high- grade and safe materials, very durable to use. a must for home travel.- Color: As Shown 1.- Size: 7. 8x1. 1cm. Package Including 2 x mascara tubes 2 x lip gloss bottles 2 x liquid eyeliner bottles 5 x funnels 6 x transparent inserts", "pricing": "$13.89", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31hLA0Qq+iL.jpg", "https://m.media-amazon.com/images/I/31Ymih2PqyL.jpg", "https://m.media-amazon.com/images/I/31vjaDo7ThL.jpg", "https://m.media-amazon.com/images/I/31esuLpBUQL.jpg", "https://m.media-amazon.com/images/I/316DCSOMpyL.jpg", "https://m.media-amazon.com/images/I/41rCZX2KgAL.jpg", "https://m.media-amazon.com/images/I/41yy7OWKadL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": "", "small_description": ["Portable and lightweight, they are easy to carry. These tubes are small and can be carried in your pocket. ", "The empty cosmetics tube is made of high- grade and safe materials, very durable to use. a must for home travel. ", "The transparent bottle allows you to check the remaining volume and color at any time. You can also choose your favorite color without opening, which makes it easy to dispense liquid. ", "They can be used as a container for liquid cosmetics of various colors; a good choice for beginners to practice, daily use. ", "Our cosmetics bottles are washable and reusable, and which can be used over and over again. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A21CBG44KIFSH1", "seller_name": "WANGYULONG333", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q53YH1W", "category": "beauty", "query": "Refillable Containers", "page": 88, "small_description_old": "Portable and lightweight, they are easy to carry. These tubes are small and can be carried in your pocket. The empty cosmetics tube is made of high- grade and safe materials, very durable to use. a must for home travel. The transparent bottle allows you to check the remaining volume and color at any time. You can also choose your favorite color without opening, which makes it easy to dispense liquid. They can be used as a container for liquid cosmetics of various colors; a good choice for beginners to practice, daily use. Our cosmetics bottles are washable and reusable, and which can be used over and over again."}, {"name": "Projector Screen 100 Inch, 60-100 Inch Portable Foldable Non-crease White Projector Curtain Projection Screen 4:3, Portable Projection Screen HD 4K Foldable for Home Theater Cinema Indoor(84in)", "product_information": {"Product Dimensions": "0.39 x 0.39 x 0.39 inches", "Item Weight": "10.1 ounces", "ASIN": "B09476F64C", "Date First Available": "May 5, 2021", "Manufacturer": "Heayzoki"}, "brand": "Brand: Heayzoki", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Heayzoki", "full_description": "Features: Made of high quality synthetic polyester fabric, this projection screen are strong and durable. It is portable and can be folded into small volume packing, convenient to carry. No matter how you fold it, there will be no folding crease left. Designed with black edging and hanging holes, normally hung on wall or bound onto a frame. Suitable for outdoor camping movie, open-air cinema, translucent screen is designed for front or back projection. Specifications: Material: Synthetic polyester fabric Length-to-width Ratio: 4:3 Option(diagonal) Size(length x width) 60in 122 x 91cm/48 x 35.8in 72in 146 x 110cm/57.5 x 43.3in 84in 171 x 128cm/67.3 x 50.4in 100in 203 x 152cm/79.9 x 59.8in Black Edging Size: 3cm/1.2in Quantity: 1pc Package Includes: 1 x Projection Screen 8 x Adhesive 8 x Hooks Note: Please wipe the screen with wet cloth to clean it. Do not wash it by hand or machine.", "pricing": "$16.21", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/21MAVW4nv9S.jpg", "https://m.media-amazon.com/images/I/31lNhv2xycL.jpg", "https://m.media-amazon.com/images/I/51grEjDEpcL.jpg", "https://m.media-amazon.com/images/I/51Wp-n1aYGS.jpg", "https://m.media-amazon.com/images/I/41FCwXM9NFL.jpg", "https://m.media-amazon.com/images/I/31S5JdU5MEL.jpg", "https://m.media-amazon.com/images/I/31dpmxkGIEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Projection Screens", "average_rating": "", "small_description": ["Made of high quality synthetic polyester fabric, this projection screen are strong and durable ", "It is portable and can be folded into small volume packing, convenient to carry ", "No matter how you fold it, there will be no folding crease left ", "Designed with black edging and hanging holes, normally hung on wall or bound onto a frame ", "Suitable for outdoor camping movie, open-air cinema, translucent screen is designed for front or back projection "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B094756PC5/ref=twister_B09474QV1B?_encoding=UTF8&psc=1", "value": "100in", "price_string": "$18.41", "price": 18.41, "image": "https://m.media-amazon.com/images/I/21p+TqQ2OzS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B094761RVN/ref=twister_B09474QV1B?_encoding=UTF8&psc=1", "value": "60in", "price_string": "$13.31", "price": 13.31, "image": "https://m.media-amazon.com/images/I/31OrhzBLbWL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09474VQ11/ref=twister_B09474QV1B?_encoding=UTF8&psc=1", "value": "72in", "price_string": "$14.33", "price": 14.33, "image": "https://m.media-amazon.com/images/I/31MvnBUdesL.jpg"}, {"is_selected": true, "url": null, "value": "84in", "price_string": "$16.21", "price": 16.21, "image": "https://m.media-amazon.com/images/I/21MAVW4nv9S.jpg"}]}, "seller_id": "A1PRM9BYROQZA0", "seller_name": "Heayzokia", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09476F64C", "category": "electronics", "query": "Projection Screens", "page": 160, "small_description_old": "About this item\n \nMade of high quality synthetic polyester fabric, this projection screen are strong and durable It is portable and can be folded into small volume packing, convenient to carry No matter how you fold it, there will be no folding crease left Designed with black edging and hanging holes, normally hung on wall or bound onto a frame Suitable for outdoor camping movie, open-air cinema, translucent screen is designed for front or back projection"}, {"name": "Acer P6500 Large Venue 1080p Video Projector", "product_information": {"Brand Name": "\u200eAcer", "Item Weight": "\u200e9.92 pounds", "Product Dimensions": "\u200e14.5 x 11.6 x 4.6 inches", "Item model number": "\u200eMR.JMG11.007", "Is Discontinued By Manufacturer": "\u200eNo", "Color Name": "\u200eBlack", "Speaker Type": "\u200eStereo, Built-In", "Item display height": "\u200e22 inches", "ASIN": "B01C8RQ1NM", "Customer Reviews": {"ratings_count": 8, "stars": "3.1 out of 5 stars"}, "Best Sellers Rank": ["#2,476 in Video Projectors"], "Date First Available": "February 26, 2016"}, "brand": "Visit the Acer Store", "brand_url": "https://www.amazon.com/stores/Acer/page/0074ABD9-06D1-469D-B509-C3134D6FFFF2?ref_=ast_bln", "full_description": "The black P6500 Full HD DLP 3D Projector from Acer provides 5,000 lumens of brightness and a 20,000:1 contrast ratio for clear, bright 2D or 3D presentations, regardless of the ambient light in the room. It features Full HD 1920 x 1080 native resolution, a DLP chip system, and an ExtremeEco Mode that supports a long lamp life up to 4500 hours. The P6500 can project up to a 300\" diagonal image and features a variety of inputs, including three HDMI ports, two VGA terminals, and more. Other features include RJ-45 wired network connectivity, vertical keystone correction, and a built-in stereo speaker system. Temperature:32\u00b0F (0\u00b0C) to 104\u00b0F (40\u00b0C)", "pricing": "$1,619.94", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41pqrwY7-GL.jpg", "https://m.media-amazon.com/images/I/31CLFu527rL.jpg", "https://m.media-amazon.com/images/I/31mqB7hVDWL.jpg", "https://m.media-amazon.com/images/I/31FzwWLSs4L.jpg", "https://m.media-amazon.com/images/I/31VzMkZmCbL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Video Projectors", "average_rating": 3.1, "small_description": ["Standard Mode Brightness: 5000 lm ", "16:9 (Native), 4:3 (Compatible) ", "3000 Hour (Normal Mode); 4000 Hour (Economy Mode) ", "Full HD (1920 x 1080) "], "total_reviews": 8, "total_answered_questions": 4, "model": "\u200eMR.JMG11.007", "customization_options": "", "seller_id": "A1P2B8BHEL53LO", "seller_name": "altexnet", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B01C8RQ1NM", "category": "electronics", "query": "Projectors", "page": 92, "small_description_old": "About this item Standard Mode Brightness: 5000 lm 16:9 (Native), 4:3 (Compatible) 3000 Hour (Normal Mode); 4000 Hour (Economy Mode) Full HD (1920 x 1080) \n \u203a See more product details"}, {"name": "Ochine Folding Massage Table Professional Portable Massage Bed 84 Inch Fold Salon Bed Face Cradle Bed 3 Folding Portable Massage Table Facial Salon Spa Tattoo Bed with Aluminium Leg", "product_information": {"Manufacturer": "Ochine", "ASIN": "B099F1NHY1", "Best Sellers Rank": ["#983,676 in Health & Household (See Top 100 in Health & Household) #1,377 in Spa Beds & Tables #197,672 in Beauty Tools & Accessories"]}, "brand": "Brand: Ochine", "brand_url": "https://www.amazon.com/Ochine/b/ref=bl_dp_s_web_14108493011?ie=UTF8&node=14108493011&field-lbr_brands_browse-bin=Ochine", "full_description": "Folding Massage Table Professional Portable Massage Bed 84 Inch Fold Salon Bed Face Cradle Bed 3 Folding Portable Massage Table Facial Salon Spa Tattoo Bed with Aluminium LegIntroductions:Here comes this 3 Sections Folding Aluminum Tube SPA Bodybuilding Massage Table Kit, a fully-equipped plat for bodycare. Particularly designed into 3-section folding style, it is easy to fold and unfold for convenience. Also, the folded one wont take up too much space. It is in high strength and good hardness with the adopted wooden frame. Besides, premium leather also ensure its great softness and comfort. You will not feel any pain or hurt while lying on this massage table. Portable and convenient! Just take a try!Specifications:1. Material: Synthetic Leather  Aluminum2. Color: Black3. Dimensions: 73*24*32 Inch / 185*60*81cm (L x W x H)4. Weight Capacity: 226.8kg / 500lbs 5. Face Cradle Length: 84\" / 213cm6. Side Arms Width: 32\" / 81cm7. Range of Height: (24\"-32\") / (60-81)cm8. Subtype: 3 SectionsFeatures:1. Specially designed into 3-section folding style2. Aluminum tube ensures more solid and strong strength and stability3. It also delivers comfort with meticulous treatment4. Foldable design makes this table room-saving and convenient to use5. Adjustable headrest for convenience6. A fully-equipped massage table for SPAPackage includes\uff1a1 x Portable Massage Table 1 x Deluxe Multi Adjustable Headrest 1 x Front Armrest Sling2 x Side Arm-supports 1 x Face Hole Plug 1 x Standard Deluxe Carrying Bag", "pricing": "$129.99", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41PSMZ0Cj4L.jpg", "https://m.media-amazon.com/images/I/31cPGCuiUmL.jpg", "https://m.media-amazon.com/images/I/41ZHrWXALfL.jpg", "https://m.media-amazon.com/images/I/41Q-UwlTTdL.jpg", "https://m.media-amazon.com/images/I/41qIyzYQxhL.jpg", "https://m.media-amazon.com/images/I/31vtip6FAnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Salon & Spa Equipment \u203a Spa Beds & Tables", "average_rating": "", "small_description": ["Folding Massage Table Professional Portable Massage Bed, Dimensions: 73*24*32 Inch (L x W x H), Face Cradle Length: 84 Inch, Weight Capacity: 500Lbs ", "Foldable design makes this table room-saving and convenient to use, Specially designed into 3-section folding style ", "Aluminum tube ensures more solid and strong strength and stability ", "Adjustable headrest for convenience. It also delivers comfort with meticulous treatment ", "A fully-equipped massage table for SPA "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B099F18LBJ/ref=twister_B099F2MB7J?_encoding=UTF8&psc=1", "value": "A", "price_string": "$139.99", "price": 139.99, "image": "https://m.media-amazon.com/images/I/41koDhKQJaL.jpg"}, {"is_selected": true, "url": null, "value": "B", "price_string": "$129.99", "price": 129.99, "image": "https://m.media-amazon.com/images/I/41PSMZ0Cj4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099F19N24/ref=twister_B099F2MB7J?_encoding=UTF8&psc=1", "value": "C", "price_string": "$139.99", "price": 139.99, "image": "https://m.media-amazon.com/images/I/41T9WRi8GLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PL5YZ6J/ref=twister_B099F2MB7J?_encoding=UTF8&psc=1", "value": "D", "price_string": "$139.99", "price": 139.99, "image": "https://m.media-amazon.com/images/I/41v+6Tp5lwL.jpg"}]}, "seller_id": "A3P5M4LZMRGOCY", "seller_name": "Forart", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B099F1NHY1", "category": "beauty", "query": "Salon & Spa Equipment", "page": 38, "small_description_old": "Folding Massage Table Professional Portable Massage Bed, Dimensions: 73*24*32 Inch (L x W x H), Face Cradle Length: 84 Inch, Weight Capacity: 500Lbs Foldable design makes this table room-saving and convenient to use, Specially designed into 3-section folding style Aluminum tube ensures more solid and strong strength and stability Adjustable headrest for convenience. It also delivers comfort with meticulous treatment A fully-equipped massage table for SPA"}, {"name": "450 Bluetooth Marine Gauge Receiver and 6.5-Inch Speaker Package", "product_information": {"Date First Available\n \u200f": "\u200e\n March 25, 2021", "Manufacturer\n \u200f": "\u200e\n IM VERA", "ASIN\n \u200f": "\u200e\n B0912FQSMT", "": ""}, "brand": "Brand: IM VERA", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=IM+VERA", "full_description": "Brand by BOSS Audio", "pricing": "$224.02", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41omlEgTk9L.jpg", "https://m.media-amazon.com/images/I/517-4ODFZYL.jpg", "https://m.media-amazon.com/images/I/51v5wOaxVuL.jpg", "https://m.media-amazon.com/images/I/51jUVLdxlVL.jpg", "https://m.media-amazon.com/images/I/51m+MRe9WAL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Vehicle Electronics Accessories \u203a Vehicle Audio & Video Installation \u203a Speaker Installation \u203a Speaker Wire", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A284PRV19Y1MTF", "seller_name": "IPC-STORE\u2705", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B0912FQSMT", "category": "electronics", "query": "AV Receivers & Amplifiers", "page": 110, "small_description_old": "Brand: BOSS Audio Model: MCKGB450W.6 MPN: MCKGB450W.6 UPC: 791489125390 Features Marine gauge speaker and receiver package Features pair of 6.5-inch full range marine speakers with polypropylene cones and rubber surrounds 450-watt max power for amplified sound Compatible with audio out from smartphones and MP3 players White finish blends seamlessly with any marine vehicle USB, aux inputs and front, rear/subwoofer switchable preamp outputs Plays USB / MP3 / WMA, FM/AM, smartphones Bluetooth audio streaming allows you to play and control music and apps like Spotify/Pandora wirelessly Mount in 3-inch holes Dimensions: (L x W x H) 15 x 9 x 7 inches Weight: 6 pounds Item Specifics Brand BOSS Audio MPN MCKGB450W.6 Model MCKGB450W.6"}, {"name": "Padaleks Elastic Cute Flat Sandals for Women Comfortable Summer Beach Shoes Wedges Flip Flop Dressy Thong Sandal", "product_information": {"Item model number\n \u200f": "\u200e\n Sandals for Women", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 17, 2022", "Manufacturer\n \u200f": "\u200e\n Big promotion in Women Shoes", "ASIN\n \u200f": "\u200e\n B09QL5XVGG", "": ""}, "brand": "Brand: Padaleks", "brand_url": "https://www.amazon.com/Padaleks/b/ref=bl_sl_s_ap_web_19645877011?ie=UTF8&node=19645877011&field-lbr_brands_browse-bin=Padaleks", "full_description": "\u2603\u2603 Note: Before buying, please follow the size chart on the side to make a purchase.\u2603 Manual measurement please allow 1 - 3cm Size differences .\u2603 Due to the difference in the display, please allow a slight color difference. Thank you for your understanding. \u2731About Us \u2731If it is the quality question,we will resend or refund to you;If you receive damaged or wrong items,please contact me and attach some pictures about your product and packages to us,we will solve it for you If you have problems with your order, please contact us first before asking for help Amazon . We will solve it effectively for you. Thanks a lot.", "pricing": "$23.29", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41OIfpkVuUL.jpg", "https://m.media-amazon.com/images/I/41ZFCvHtlLL.jpg", "https://m.media-amazon.com/images/I/51YRWb0MGwL.jpg", "https://m.media-amazon.com/images/I/41ORmLTVx4L.jpg", "https://m.media-amazon.com/images/I/41ouvT1x12L.jpg", "https://m.media-amazon.com/images/I/51M14YyDbcL.jpg", "https://m.media-amazon.com/images/I/411YdZcthJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Sandals \u203a Flats", "average_rating": "", "small_description": ["Best Gifts for Women/Mom/Friends/Girl/Girlfriend ", "Imported ", "Sandals Clearance On Sale, Buy 2 get 8% off, Buy 3 get 10% off, Buy 5 get 15% off, Buy 20 get 30% off, Buy 50 get 50% off. ", "Buckle closure ", "Hand Wash Only ", "Keyword: beach shoes hiking shoes soft shoes ladies shoes shoes nude shoes square head shoes platform shoes high heeled shoes high heels flip folds platform flip folds beach flip flops wedges flip flops thick heels flip flops comfortable slippers thong slippers bath slippers indoor slippers outdoor slippers women flip flop croc women flip flops with arch support women flip flops with heel women flip flops wedge women flip flops with strap ", "women flip flops white women flip flops with flower sandals women platform women's platform women platforms shoes 2 inch platform shoes for women yellow platform heels for women womens shoes platform dress women wedges close toes heeled sandals for women beach slippers wedges slippers thick heels slippers teen slippers peep toe slippers fish mouth slippers boy flip flops teen flip flops casual flip flops beach flip flops non slip flip flops , summer shoes breathable shoes soft shoes comfortable shoes platform shoes rhinestone shoes pointed toe shoes wedding shoes classic shoes mountain shoes rhinestone sandals pointed toe sandals shopping sandals wedding sandals classic sandals zipper sandals cross strap sandals ladies sandals mesh sandals flat sandals dress high sandals wedding flat sandals maternity sandals outdoor sandals children sandals canvas shoes pu leather shoes ladies shoes, summer sandals breathable sandals soft sandals comfortable sandals soft shoes comfortable shoes platform shoes rhinestone shoes pointed toe shoes wedding shoes teen flip flops casual flip flops beach flip flops non slip flip flops floral print flip flops kids slippers soft slippers comfortable slippers thong slippers bath slippers beach shoes hiking shoes soft shoes women hollow sandal women ankle flat sandal men sandal boy sandals, women flat sandal men flat sandal lace up sandal women size 9 sandal women size 6 sandal teen sandal girl flat sandal boy flat sandal wedding sandal wedding high sandal women flip flops sandals dress flat sandal dress high sandal wedding flat sandal men flat shoes outdoors shoes embroidery slippers black slippers cute slippers simple slippers floral slippers platform beach flip flops wedges flip flops thick heels flip flops low heel shoes teen shoes"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QL5XVGG/ref=twister_B09QL6Y1T1", "value": "Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/419OqCpCN+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QL6CJV7/ref=twister_B09QL6Y1T1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41i4zHi1K9L.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41OIfpkVuUL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "7", "asin": "B09QL753VH"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B09QL8C83Z"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B09QL74ZL9"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B09QL82H1L"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B09QL7S8XQ"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B09QL86FL1"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QL82H1L", "category": "fashion", "query": "Women's Loafers & Slip-Ons", "page": 184, "small_description_old": "Best Gifts for Women/Mom/Friends/Girl/Girlfriend Imported Sandals Clearance On Sale, Buy 2 get 8% off, Buy 3 get 10% off, Buy 5 get 15% off, Buy 20 get 30% off, Buy 50 get 50% off. Buckle closure Hand Wash Only Keyword: beach shoes hiking shoes soft shoes ladies shoes shoes nude shoes square head shoes platform shoes high heeled shoes high heels flip folds platform flip folds beach flip flops wedges flip flops thick heels flip flops comfortable slippers thong slippers bath slippers indoor slippers outdoor slippers women flip flop croc women flip flops with arch support women flip flops with heel women flip flops wedge women flip flops with strap women flip flops white women flip flops with flower sandals women platform women's platform women platforms shoes 2 inch platform shoes for women yellow platform heels for women womens shoes platform dress women wedges close toes heeled sandals for women beach slippers wedges slippers thick heels slippers teen slippers peep toe slippers fish mouth slippers boy flip flops teen flip flops casual flip flops beach flip flops non slip flip flops \n summer shoes breathable shoes soft shoes comfortable shoes platform shoes rhinestone shoes pointed toe shoes wedding shoes classic shoes mountain shoes rhinestone sandals pointed toe sandals shopping sandals wedding sandals classic sandals zipper sandals cross strap sandals ladies sandals mesh sandals flat sandals dress high sandals wedding flat sandals maternity sandals outdoor sandals children sandals canvas shoes pu leather shoes ladies shoessummer sandals breathable sandals soft sandals comfortable sandals soft shoes comfortable shoes platform shoes rhinestone shoes pointed toe shoes wedding shoes teen flip flops casual flip flops beach flip flops non slip flip flops floral print flip flops kids slippers soft slippers comfortable slippers thong slippers bath slippers beach shoes hiking shoes soft shoes women hollow sandal women ankle flat sandal men sandal boy sandalswomen flat sandal men flat sandal lace up sandal women size 9 sandal women size 6 sandal teen sandal girl flat sandal boy flat sandal wedding sandal wedding high sandal women flip flops sandals dress flat sandal dress high sandal wedding flat sandal men flat shoes outdoors shoes embroidery slippers black slippers cute slippers simple slippers floral slippers platform beach flip flops wedges flip flops thick heels flip flops low heel shoes teen shoesShow more"}, {"name": "Laredo Womens Spellbound Studded Square Toe Dress Boots Mid Calf Low Heel 1-2\" - Black", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 12 x 4 x 8 inches; 1.3 Pounds", "Item model number\n \u200f": "\u200e\n Spellbound", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n March 19, 2014", "Manufacturer\n \u200f": "\u200e\n Laredo", "ASIN\n \u200f": "\u200e\n B00ITCBA8C", "Best Sellers Rank": "#199,962 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#508 in Women's Mid-Calf Boots", "#508 in Women's Mid-Calf Boots": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Laredo Store", "brand_url": "https://www.amazon.com/stores/Laredo+Boots/page/8003AFC9-083D-4467-8B0A-3A063B6FCB62?ref_=ast_bln", "full_description": "Laredo is known for its popular prices, authentic Western styling and excellent fit in men, women and children's boots. Every boot in the Laredo line offers excellent quality and style at an affordable price. They cover the style spectrum from ropers to classic Western to buckaroo styles, always keeping you in mind.", "pricing": "$132.00$150.26", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51egJTRNbXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Boots \u203a Mid-Calf", "average_rating": 4.6, "small_description": ["Shaft measures approximately 11\" from arch ", "Heel measures approximately 1.5\" ", "Boot opening measures approximately 14\" around ", "Made in USA or Imported "], "total_reviews": 410, "total_answered_questions": 31, "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "6", "asin": "B00ITCB9K6"}, {"is_selected": false, "is_available": true, "value": "6.5", "asin": "B00ITCBA8C"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B00ITCBARS"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B00ITCBBI6"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B00ITCBC1C"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B00ITCBCJY"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B00ITCBD3Y"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B00ITCBDP2"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B00ITCBERE"}, {"is_selected": false, "is_available": true, "value": "11", "asin": "B00KVW8UUE"}, {"is_selected": false, "is_available": false, "value": "12", "asin": "B07TKZ9571"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51egJTRNbXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00ITCB9K6/ref=twister_B00J9DQTKE", "value": "Black/Tan", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Gw71n6klL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07TKZ9571/ref=twister_B00J9DQTKE", "value": "Off White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51GJh2F7DRL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B00ITCBD3Y", "category": "fashion", "query": "Women's Boots", "page": 20, "small_description_old": "100% Leather Imported Manmade sole Shaft measures approximately 11\" from arch Heel measures approximately 1.5\" Boot opening measures approximately 14\" around Made in USA or Imported"}, {"name": "Custom Polo Shirts for Men Design Your Own Personalized Logo Text Photo Polo Shirt Customize Classic Polo Shirt", "product_information": {"Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n November 3, 2021", "ASIN\n \u200f": "\u200e\n B09KX5VHCH", "Best Sellers Rank": "#1,503,090 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#153 in Men's Novelty Polo Shirts #574,519 in Men's Fashion", "#153 in Men's Novelty Polo Shirts": "", "#574,519 in Men's Fashion": ""}, "brand": "Brand: RNANVI", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=RNANVI", "full_description": "Custom Cotton Polo Men Shirts Take your style and outfit to the next level with our mens fashion polo summer shirts! Look classy and elegant wherever you go. Walk down the street and receive compliments on your new polo shirt! Our designs are professionally embroidered with state-of-the-art equipment guaranteed with the highest quality and best results. Our embroidery will continue to look great after many years. We have more than 5 years of experience in the embroidery/printing industry to offer you stunning detail and rich lifelike colors. ADD SOME CLASS & STYLE TO YOUR OUTFIT! Made from high quality 100% cotton (90% cotton/10% Polyester in Oxford Gray color) for your comfort Resistant while still giving you free range of movement Lightweight to keep you fresh & dry Washer & dryer friendly for an easy care Design professionally embroidered GREAT GIFTS FOR MEN IDEA: Give a gift to your friends and loved ones that they will actually wear and enjoy. Our classy and casual polo shirt is the perfect mens gifts for birthdays, anniversaries, graduations, Christmas, bachelor party, Father\u2019s Day, Mother\u2019s Day or any other celebrations.", "pricing": "$5.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31PrgTdKd6L.jpg", "https://m.media-amazon.com/images/I/31AtIDzW82L.jpg", "https://m.media-amazon.com/images/I/31AtIDzW82L.jpg", "https://m.media-amazon.com/images/I/41Koz51KPsL.jpg", "https://m.media-amazon.com/images/I/51WlOFm0zYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Shirts \u203a Polos", "average_rating": "", "small_description": ["Button closure ", "Custom Premium Quality Shirts: Take your outfit and style to the next level with our breathable 100% cotton ring-spun short sleeve polo mens shirts that bring you maximum comfort with elegance. ", "Resistant & Lightweight: Our mens polo shirts are light to keep you fresh and dry all day long but made to be resistant with double needle stitching all around while still giving you full flexibility and free range of movement. ", "Perfect Gift: Get one of our personalize polo shirts for yourself or as a thoughtful birthday, Christmas, or anniversary present for your loved ones. ", "Easy Everyday Care: Easy to wash and to re-use. Can be washed by hand or simply throw our mens shirts short sleeve casual polo into your washer and dryer and call it a day! ", "How To Customize: Click the yellow {CUSTOMIZE NEW} button on the right to start your customization and upload your photos or text. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09KXQ7PTZ/ref=twister_B09KX5VHCH?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31C0uoc6bVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KX5RD6Y/ref=twister_B09KX5VHCH?_encoding=UTF8&psc=1", "value": "Dark Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31jjdB1walL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KXCJKNM/ref=twister_B09KX5VHCH?_encoding=UTF8&psc=1", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31O86GjBl9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KX3S2MJ/ref=twister_B09KX5VHCH?_encoding=UTF8&psc=1", "value": "Light Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31T2WVd1pJL.jpg"}, {"is_selected": true, "url": null, "value": "Navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31PrgTdKd6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KX99L1Z/ref=twister_B09KX5VHCH?_encoding=UTF8&psc=1", "value": "Orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31rTB0o5AJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KX5P6W3/ref=twister_B09KX5VHCH?_encoding=UTF8&psc=1", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31ywm6wvC6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KXFFMB4/ref=twister_B09KX5VHCH?_encoding=UTF8&psc=1", "value": "Wine Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31OfZWRgW2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KWYG77B/ref=twister_B09KX5VHCH?_encoding=UTF8&psc=1", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31i4rvVLDPL.jpg"}], "Size": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09KXCHWGD", "category": "fashion", "query": "Men's Polos", "page": 34, "small_description_old": "Button closure Custom Premium Quality Shirts: Take your outfit and style to the next level with our breathable 100% cotton ring-spun short sleeve polo mens shirts that bring you maximum comfort with elegance. Resistant & Lightweight: Our mens polo shirts are light to keep you fresh and dry all day long but made to be resistant with double needle stitching all around while still giving you full flexibility and free range of movement. Perfect Gift: Get one of our personalize polo shirts for yourself or as a thoughtful birthday, Christmas, or anniversary present for your loved ones. Easy Everyday Care: Easy to wash and to re-use. Can be washed by hand or simply throw our mens shirts short sleeve casual polo into your washer and dryer and call it a day! How To Customize: Click the yellow {CUSTOMIZE NEW} button on the right to start your customization and upload your photos or text."}, {"name": "LENOVO TWS Earbuds", "product_information": {"Package Dimensions": "6.77 x 3.86 x 1.54 inches", "Item Weight": "4.8 ounces", "ASIN": "B08NWDG4N4", "Item model number": "ZA800000WW", "Batteries": "1 Lithium ion batteries required. (included)", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#6,462 in Earbud & In-Ear Headphones"], "Date First Available": "November 19, 2020", "Manufacturer": "Lenovo", "Country of Origin": "China"}, "brand": "Visit the Lenovo Store", "brand_url": "https://www.amazon.com/stores/LENOVO/page/2C6395BA-C701-4025-9D7E-BAE1BD647EEE?ref_=ast_bln", "full_description": "Lenovo TWS Earbuds", "pricing": "$25.78", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31l1ZPPWSeL.jpg", "https://m.media-amazon.com/images/I/316rKT837bL.jpg", "https://m.media-amazon.com/images/I/21g7f3D00XL.jpg", "https://m.media-amazon.com/images/I/21Zf-P-FCuL.jpg", "https://m.media-amazon.com/images/I/31tWINomC+L.jpg", "https://m.media-amazon.com/images/I/31pYl0caM1L.jpg", "https://m.media-amazon.com/images/I/31MI8gSCqcL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Headphones \u203a Earbud Headphones", "average_rating": 5, "small_description": ["UPC: 195348955232 ", "Weight: 0.3 lbs "], "total_reviews": 1, "total_answered_questions": "", "model": "ZA800000WW", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08NWDG4N4", "category": "electronics", "query": "Bluetooth Headsets", "page": 367, "small_description_old": "About this item\n \nUPC: 195348955232 Weight: 0.3 lbs"}, {"name": "Good Catch Plant-Based Seafood Sandwich Variety Pack | 6 Boxes of Frozen Vegan and Vegetarian Salmon Burgers, Fish Burgers, and Fish Fillets |Kosher, Fish-Free & Crab-Free| 12 Total Servings", "product_information": {"UPC\n \u200f": "\u200e\n 859543007621", "Manufacturer\n \u200f": "\u200e\n Gathered Foods", "ASIN\n \u200f": "\u200e\n B09NX4RGK7", "Best Sellers Rank": "#461,314 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#637 in Meat Substitutes", "#637 in Meat Substitutes": ""}, "brand": "Visit the GOOD CATCH Store", "brand_url": "https://www.amazon.com/stores/GoodCatch/page/9DA8763A-9E4A-4E35-AA14-7C9925E86187?ref_=ast_bln", "full_description": "", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51d+Or3BGXL.jpg", "https://m.media-amazon.com/images/I/51-lRiUM7BL.jpg", "https://m.media-amazon.com/images/I/41HpH0cg1cL.jpg", "https://m.media-amazon.com/images/I/41SuGBbDSjL.jpg", "https://m.media-amazon.com/images/I/61Ka-NK0j+L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Meat Substitutes", "average_rating": "", "small_description": ["PLANT-BASED SEAFOOD IS NOW A THING \u2014 Good Catch delivers chef-mastered rich flavors and flaky textures of seafood without the bycatch. The best part? Our products are friendlier to the oceans and the creatures that call our oceans home. ", "MADE WITH PROTEIN-POWERED INGREDIENTS \u2014 Our six-legume blend of peas, chickpeas, lentils, soy, fava beans and navy beans help us deliver the eating experience of real seafood. Taste, texture, protein\u2026everything but the fish. ", "THE SEAFOOD YOU CRAVE, WITHOUT THE STUFF YOU DON\u2019T \u2014 Think crispy, crunchy breaded fish fillets. Savory fish burgers and salmon burgers. It doesn\u2019t get much better than having restaurant-quality seafood meals on hand in your freezer. No GMO- or animal-derived ingredients, artificial flavors, palm or canola oil, hydrogenated fats, synthetic colors or mercury here ", "THE FROZEN SANDWICH VARIETY PACK INCLUDES \u2014 12 servings of freezer-to-skillet meals! 2 boxes (4 patties total) of our all-new Plant-Based Salmon Burgers, 2 boxes (4 fillets total) Plant-Based Breaded Fish Fillets, and 2 boxes (4 patties total) Plant-Based Fish Burgers. ", "GOOD FOR THE PLANET \u2014 Good Catch plant-based seafood is part of the solution to overfishing, polluted oceans and animal welfare concerns. We\u2019re on a mission to save our oceans and we believe plant-based foods can feed and help save the world. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B09NX4RGK7", "category": "grocery", "query": "Meat & Seafood", "page": 40, "small_description_old": "About this item PLANT-BASED SEAFOOD IS NOW A THING \u2014 Good Catch delivers chef-mastered rich flavors and flaky textures of seafood without the bycatch. The best part? Our products are friendlier to the oceans and the creatures that call our oceans home. MADE WITH PROTEIN-POWERED INGREDIENTS \u2014 Our six-legume blend of peas, chickpeas, lentils, soy, fava beans and navy beans help us deliver the eating experience of real seafood. Taste, texture, protein\u2026everything but the fish. THE SEAFOOD YOU CRAVE, WITHOUT THE STUFF YOU DON\u2019T \u2014 Think crispy, crunchy breaded fish fillets. Savory fish burgers and salmon burgers. It doesn\u2019t get much better than having restaurant-quality seafood meals on hand in your freezer. No GMO- or animal-derived ingredients, artificial flavors, palm or canola oil, hydrogenated fats, synthetic colors or mercury here THE FROZEN SANDWICH VARIETY PACK INCLUDES \u2014 12 servings of freezer-to-skillet meals! 2 boxes (4 patties total) of our all-new Plant-Based Salmon Burgers, 2 boxes (4 fillets total) Plant-Based Breaded Fish Fillets, and 2 boxes (4 patties total) Plant-Based Fish Burgers. GOOD FOR THE PLANET \u2014 Good Catch plant-based seafood is part of the solution to overfishing, polluted oceans and animal welfare concerns. We\u2019re on a mission to save our oceans and we believe plant-based foods can feed and help save the world."}, {"name": "ngruama8 USB Portable Mini Vinyl Turntable Audio Player Vinyl Turntable to MP3/WAV/CD Converter with PC 33RPM CRP008 Portable DVD Player for Car", "product_information": {"Item Weight": "2.2 pounds", "ASIN": "B09Q6CZ59K", "Date First Available": "January 11, 2022", "Department": "Unisex-adult", "Manufacturer": "kangruama", "Country of Origin": "China"}, "brand": "Brand: ngruama8", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ngruama8", "full_description": "USB powered operation.Compact and portable design.Can be used as personal vinyl record player.Notes: The vinyl records is not included.Port: 3.5mm,USB 2.0 Material: Plastic Package Contents: 1 x Mini USB Turntable,1 x CD-ROM,", "pricing": "$110.54", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41IEmzqx7bL.jpg", "https://m.media-amazon.com/images/I/31tBgKFGIML.jpg", "https://m.media-amazon.com/images/I/41aeabCyJGL.jpg", "https://m.media-amazon.com/images/I/31zjlTbBNgL.jpg", "https://m.media-amazon.com/images/I/31eh6nyxSsL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Turntables & Accessories \u203a Turntables", "average_rating": "", "small_description": ["33 / 45 PRM phonograph turn to MP3 converter. ", "Converts your precious vinyl record collection to MP3 standalone, no computer required. ", "Also can convert vinyl record to MP3 by computer and software. ", "Plug and play, easy to use. ", "With playback, can check the recorded music on device directly. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1YHLT3A54ATFZ", "seller_name": "kangruama", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09Q6CZ59K", "category": "electronics", "query": "Turntables", "page": 136, "small_description_old": "33 / 45 PRM phonograph turn to MP3 converter. Converts your precious vinyl record collection to MP3 standalone, no computer required. Also can convert vinyl record to MP3 by computer and software. Plug and play, easy to use. With playback, can check the recorded music on device directly."}, {"name": "iiniim Men's Sexy Fishnet Stretch Bodysuit Underwear Mankini Wrestling Thong", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 6.5 x 5 x 1.4 inches; 0.81 Ounces", "Item model number\n \u200f": "\u200e\n YD10015793-10105390-US", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n March 4, 2020", "Manufacturer\n \u200f": "\u200e\n iiniim", "ASIN\n \u200f": "\u200e\n B085G4WYWM", "Best Sellers Rank": "#863,126 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#245 in Men's Exotic G-Strings & Thongs #318,337 in Men's Fashion", "#245 in Men's Exotic G-Strings & Thongs": "", "#318,337 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: iiniim", "brand_url": "https://www.amazon.com/iiniim/b/ref=bl_sl_s_ap_web_20518430011?ie=UTF8&node=20518430011&field-lbr_brands_browse-bin=iiniim", "full_description": "Set Include: 1Pc Bodysuit Condition: New with tag Material: Polyester Color: Black(as pictures show) Tag No.---|---Adult Recommended Size---|-----------Chest----------|----------Waist----------|-----Length-- ---M------|-----------Medium-----------|----35.0-45.0\"/88-114cm---|---32.0-43.0\"/82-110cm---|---32.0\"/82cm ---L------|------------Large-----------|----37.0-47.0\"/93-120cm---|---34.0-46.0\"/87-116cm---|---33.5\"/85cm ---XL-----|-----------X-Large----------|----38.5-50.0\"/98-126cm---|---36.0-48.0\"/92-122cm---|---34.0\"/87cm --XXL-----|----------XX-Large----------|---40.5-52.0\"/103-132cm---|---38.0-50.0\"/97-128cm---|---35.5\"/90cm", "pricing": "$10.95", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51N8dxKfM4L.jpg", "https://m.media-amazon.com/images/I/51yuOmiJNcL.jpg", "https://m.media-amazon.com/images/I/41ztZr6lV+L.jpg", "https://m.media-amazon.com/images/I/51HlQibIHCL.jpg", "https://m.media-amazon.com/images/I/51aMFObBx-L.jpg", "https://m.media-amazon.com/images/I/51bnEwS3ScL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Exotic Apparel \u203a Men \u203a G-Strings & Thongs", "average_rating": 4.4, "small_description": ["Men's sexy mankini thong costume. ", "One side design,very special. ", "Perfect for lingerie night and self pleasure. ", "One Size fits most. Thigh circumference: 44-64cm/17.0-25.0\". "], "total_reviews": 22, "total_answered_questions": "", "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B085G4WYWM"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B085FSLMKP"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B085FQ4YL5"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B085FY6CN3"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B085FQ4YL5", "category": "fashion", "query": "Men's Underwear", "page": 121, "small_description_old": "Material: Polyester Men's sexy mankini thong costume. One side design,very special. Perfect for lingerie night and self pleasure. One Size fits most. Thigh circumference: 44-64cm/17.0-25.0\"."}, {"name": "Women Aesthetic Short Sleeve Jumpsuit Bodycon Sexy V Neck Button Shorts Rompers Knitted One Piece Bodysuit Overall", "product_information": {"Item model number\n \u200f": "\u200e\n XDFH", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n July 20, 2021", "ASIN\n \u200f": "\u200e\n B099WX8JPZ", "Best Sellers Rank": "#3,548,542 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#12,142 in Women's Jumpsuits", "#12,142 in Women's Jumpsuits": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the FULA-bao Store", "brand_url": "https://www.amazon.com/stores/FULA-bao/page/3D45D8C2-0A7B-4F5A-BD46-27897854D0B8?ref_=ast_bln", "full_description": "", "pricing": "$13.99$24.89", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41UWOa7ceJS.jpg", "https://m.media-amazon.com/images/I/41mlyrW166S.jpg", "https://m.media-amazon.com/images/I/411bR-vQvQS.jpg", "https://m.media-amazon.com/images/I/31cnqf9GlRS.jpg", "https://m.media-amazon.com/images/I/61baeCCY1VS.jpg", "https://m.media-amazon.com/images/I/41lZPEObVvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Jumpsuits, Rompers & Overalls \u203a Jumpsuits", "average_rating": 1.5, "small_description": ["100% Polyester ", "Imported ", "Pull On closure ", "Machine Wash ", "Material: This women onesies shorts make from polyester+ spandex, soft and breathable. casual v neck romper bodysuits, aesthetic clothes, Aesthetic summer streetwear. ", "Features: Turn down collar jumpsuit playsuit, slim fit romper shorts, knitted v neck jumpsuit romper, close-fitting style, short sleeve, zipper front or button down. Bodycon knitted outfits, floral print/solid color/ tie dye/letters printed jumpsuit, Aesthetic fashion. ", "Occasions: Bodycon romper clubwear outfit perfect for casual, daily wear, club, party, photoo shoot, shopping, home, work, party, birthday, BBQ, lounge, carnival, dinner, dating, honeymoon, weekend, rave, night out, sleep, pjs, workout, yoga, travel, vacation, seaside, beachwear , Style: This sexy women onesies shorts perfect to match with jeans ,skirts, high-waist pants. Also could be wear as jumpsuit or top shirt. Give you flattered look., Package incloud 1* Women Bodycon Short Jumpsut, Pls refer our size chart before order it. Short pants romper jumpsuit for women, polo shirt, single breasted, striped, open front, cute bodysuits catsuit, show off your sexy body curves, one piece set."], "total_reviews": 2, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B099WX8JPZ/ref=twister_B099WXPCDL", "value": "Green Stripe", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41mmiXvc5DS.jpg"}, {"is_selected": true, "url": null, "value": "Letter Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UWOa7ceJS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WYCQ7J/ref=twister_B099WXPCDL", "value": "Letter Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412PtgXEAqS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WZGY7D/ref=twister_B099WXPCDL", "value": "Floral Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41y3gwynr-S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WZPKWJ/ref=twister_B099WXPCDL", "value": "Floral Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41iFCBeTOVS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WXWCNB/ref=twister_B099WXPCDL", "value": "Letter Green B", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ElpPzUd-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WX1HM9/ref=twister_B099WXPCDL", "value": "Tie Dye Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41SSVe0GcPS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WY9PDV/ref=twister_B099WXPCDL", "value": "Green Whirlpool", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41BxVIcJ87S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WXTDBY/ref=twister_B099WXPCDL", "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UnSFZXznS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B099WXPHQ9/ref=twister_B099WXPCDL", "value": "Tie Dye Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41yH71bDELS.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B099WX3CV5"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B099WZNN15"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B099WXZN99"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B099WX981B"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B099WYDYM7"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B099WX3CV5", "category": "fashion", "query": "Women's Jumpsuits, Rompers & Overalls", "page": 77, "small_description_old": "100% Polyester Imported Pull On closure Machine Wash Material: This women onesies shorts make from polyester+ spandex, soft and breathable. casual v neck romper bodysuits, aesthetic clothes, Aesthetic summer streetwear. Features: Turn down collar jumpsuit playsuit, slim fit romper shorts, knitted v neck jumpsuit romper, close-fitting style, short sleeve, zipper front or button down. Bodycon knitted outfits, floral print/solid color/ tie dye/letters printed jumpsuit, Aesthetic fashion. Occasions: Bodycon romper clubwear outfit perfect for casual, daily wear, club, party, photoo shoot, shopping, home, work, party, birthday, BBQ, lounge, carnival, dinner, dating, honeymoon, weekend, rave, night out, sleep, pjs, workout, yoga, travel, vacation, seaside, beachwear \n Style: This sexy women onesies shorts perfect to match with jeans ,skirts, high-waist pants. Also could be wear as jumpsuit or top shirt. Give you flattered look.Package incloud 1* Women Bodycon Short Jumpsut, Pls refer our size chart before order it. Short pants romper jumpsuit for women, polo shirt, single breasted, striped, open front, cute bodysuits catsuit, show off your sexy body curves, one piece set.Show more"}, {"name": "Memphis Audio MXASB35 35\" 10-Speaker ATV/UTV Sound Bar Bundle with Bar 2.1 Deep Bass Home Theater Bluetooth Soundbar with Wireless Sub Movies/Music", "product_information": {"Package Dimensions": "45.1 x 7.2 x 6.9 inches", "Item Weight": "42 pounds", "ASIN": "B09B4YH4RG", "Item model number": "MXASB35+Bar 2.1 Deep Bass", "Date First Available": "July 24, 2021", "Manufacturer": "Memphis Audio"}, "brand": "Brand: Memphis Audio", "brand_url": "https://www.amazon.com/Memphis-Audio/b/ref=bl_dp_s_web_8151049011?ie=UTF8&node=8151049011&field-lbr_brands_browse-bin=Memphis+Audio", "full_description": "Description of MXASB35:Memphis Xtreme Soundbars are the best performance powersports soundbar on the market. We utilized passive radiator technology to maximize the bass response of the soundbar for rich full sound on the trails. Each bar consists of 2 tweeters and 8 mids housed in a self powered plug and play soundbar. Simply bolt on, hook up the power and ground wires and hit the trails. Controling the MXASB35 sound bar is simple courtesy of the on board Bluetooth system allowing you to tuck your phone or device away safely and control your music on wet and muddy rides. Our soundbars are equipped with 2-channel outputs allowing you to expand your system with additional audio components. Pair the MXASB35 with an Xtreme Nanoboxx Bass System for the ulitmate offroad audio combo. Our reinforced clamp fits any bar between 1.25\"-2.5\" and is trail tested to handle the most extreme conditions.Features of Bar 2.1 Deep Bass:Bring the power: An impressive 300W of total system power puts you in control. Your movies and music have never sounded so good.Surround yourself with sound: JBI Surround Sound instantly brings movies, games, sports and music to life. Upgrade to an immersive sound experience for your TV without any extra wires or speakers.All about the bass: Why just listen to the bass when you can experience it? The 6.5'' wireless subwoofer delivers deep, thrilling sound.", "pricing": "$699.95", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31AkA+iirHL.jpg", "https://m.media-amazon.com/images/I/21KCPLWKUsL.jpg", "https://m.media-amazon.com/images/I/51fIZi0S6DL.jpg", "https://m.media-amazon.com/images/I/41tkqwZpDUL.jpg", "https://m.media-amazon.com/images/I/415ze7yEqjL.jpg", "https://m.media-amazon.com/images/I/31cxSqDEEPL.jpg", "https://m.media-amazon.com/images/I/314TbQ-B7vL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Speakers \u203a Sound Bars", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "model": "MXASB35+Bar 2.1 Deep Bass", "customization_options": "", "seller_id": "A3LLMZ9K72U9P2", "seller_name": "Audiosavings", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09B4YH4RG", "category": "electronics", "query": "Soundbars", "page": 132, "small_description_old": "About this item\n \nPackage Includes: (1) Memphis Audio MXASB35 35\" 10-Speaker Powered Sound Bar w/Bluetooth Compatible with ATV/UTV, (1) JBI Bar 2.1 Deep Bass Home Theater Bluetooth Soundbar+Wireless Sub Movies/Music. What's in the box: Soundbar, Wireless subwoofer, Remote control with batteries, Power cord, HDMI cable, Wall-mount bracket kit with screws, Quick start guide, Warranty card, Safety sheet. Features of MXASB35: Passive radiators for enhanced mid bass, 10 Speaker soundbar system, Water and element resistant, Self powered plug & play solutions, Aux input, 2-channel output. Specifications: Size (in): 20\", RMS Power (w): 300, Peak Power (w): 600, Dimensions (in): 35.75 x 3.5 x 3.9, Clamp Fit: 1.25\" - 2.75\", Warranty (yrs): 1, Grill Included. Specifications of Bar 2.1 Deep Bass: Model: Bar 2.1 Deep Bass CNTR (Soundbar Unit), Bar 2.1 Deep Bass SUB (Subwoofer Unit), Power supply: 100 - 240V AC, ~ 50/60Hz, Total speaker power output (Max. @THD 1%): 300W, Output power (Max. @THD 1%), 2 x 50W (Soundbar); 200W (Subwoofer), Transducer: 4 x race track drivers + 2 x 1\u201d tweeter (Soundbar); 6.5\u201d (Subwoofer), Soundbar and Subwoofer standby power: <0.5W, Operating temperature: 0\u00b0C - 45\u00b0C, HDMI version: 1.4. Audio: HDMI Video input: 1, Frequency response: 40Hz - 20KHz, Audio inputs: 1 Optical, Bluetooth, USB (USB playback is available in US version. For other versions, USB is for Service only.) Dimensions: 965 x 58 x 85 (mm) / 38\u201d x 2.28\u201d x 3.35\u201d (Soundbar), 240 x 240 x 379 (mm) / 8.9\u201d x 8.9\u201d x 14.6\u201d (Subwoofer). Weight: 2.16 kg (Soundbar), 5.67 kg (Subwoofer), Packaging dimensions: 1045 x 310 x 405mm, Packaging weight (Gross weight): 10.4kg. Control and Connection: USB port: Type A, USB rating: 5V DC/ 0.5A, Supporting file format: mp3, wav, MP3 Codec: MPEG 1 Layer 2/3, MPEG 2 Layer 3, MPEG 2.5 Layer 3, MP3 sampling rate: 16KHz - 48 KHz, MP3 bitrate: 80kbps - 320kbps, WAV sample rate: 16KHz - 48 KHz, WAV bitrate: Up to 3000kbps, Bluetooth version: 4.2, Bluetooth profile: A2DP V1.3, AVRCP V1.5, Bluetooth frequency range: 2402MHz-2480MHz, Bluetooth Max. transmitting power: <10dBm (EIRP), Modulation Type: p/4 DQPSK."}, {"name": "Sheer Window Curtain Panels Cute Snowman Red Scarf Winter Snowflake,Semi Sheer Window Covering Privacy Drapes 2 Panel Sets Farm Vintage Board Green Grid Window Treatment for Kitchen/Living Room", "product_information": {"Package Dimensions": "9 x 6 x 0.6 inches", "Item Weight": "1.12 pounds", "Manufacturer": "Possta Decor", "ASIN": "B09LCM3NKN", "Date First Available": "November 9, 2021"}, "brand": "Brand: Possta Decor", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Possta+Decor", "full_description": "Material:Chiffon fabric is different from other materials. It is smooth and textured. It is even shiny under light,durable and not easy to spread. Semi-Sheer Window Curtain can make air circulate, it is ideal for decorating bedrooms, living rooms, and kitchens. Size: Gauze window panels have many sizes, you can choose according to your needs,52x45inx2(132x115cmx2)52x54inx2(132x137cmx2)52x63inx2(132x160cmx2)52x72inx2(132x182cmx2)52x84inx2(132x213cmx2)52x96inx2(132x243cmx2)52x108inx2(132x274cmx2)Important advantage: Our curtains can partially transmit light,provide proper brightness to the room,but it can hide the portrait inside to protect your privacy.Holiday dress up: The window treatment are suitable for Halloween, Thanksgiving Day, Christmas, graduation parties, birthday party, coffee shops and other festivals, and also can be used as gifts for friends and familys housewarming.Note: The material of the gauze curtain is relatively light and thin, please handle with care, not to pull it hard, does not affect normal and circular use.All dimensions are measured manually, and the deviation (range) is 1-2 cm. Due to the display differences of computer monitors, there may be slight color changes between the actual product and the screen.", "pricing": "$44.05", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51zMlk1EZAL.jpg", "https://m.media-amazon.com/images/I/51ymLDMOSfL.jpg", "https://m.media-amazon.com/images/I/51KwnGgenvL.jpg", "https://m.media-amazon.com/images/I/51stxUzF5WL.jpg", "https://m.media-amazon.com/images/I/51dJ1Qs9T9L.jpg", "https://m.media-amazon.com/images/I/41uzcA+Y5BS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Window Treatments \u203a Curtains & Drapes \u203a Panels", "average_rating": "", "small_description": ["\u2714Material: The translucent voile tulle curtain is made of chiffon fabric. Compared with other materials, chiffon is an ideal translucent fabric, smooth and textured, durable and airy. ", "\u2714Features: Window treatment semi-sheer curtain can filter sunlight and balance the light level indoors and outdoors. window panels allows you to enjoy the beautiful scenery outside the window and prevents people from directly seeing your indoor room. ", "\u2714Size: 2 pieces of curtains measure - 52x72inx2(132x182cmx2)The well-made window drapes support customized design. You can choose various styles from our store, such as: landscape, farm animal, farmhouse scenery, floral, blossoms flower, sea ocean beach, etc. ", "\u2714Occasion: The curtains are suitable for home/kitchen/living room/bedroom/coffee shop/bathroom/sliding door/child room/nursery/hotel or any other places, which can create a romantic and elegant atmosphere and make you feel comfortable. ", "\u2714Cleaning: Gauze drapes support hand wash or machine wash, gentle cycle, easy to dry, and can be recycled multiple times. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09LBZXCMM/ref=twister_B09LCC33KN?_encoding=UTF8&psc=1", "value": "52x45inx2", "price_string": "$32.47", "price": 32.47, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LCH8FD4/ref=twister_B09LCC33KN?_encoding=UTF8&psc=1", "value": "52x54inx2", "price_string": "$36.03", "price": 36.03, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LC2ZZ7G/ref=twister_B09LCC33KN?_encoding=UTF8&psc=1", "value": "52x63inx2", "price_string": "$40.29", "price": 40.29, "image": null}, {"is_selected": true, "url": null, "value": "52x72inx2", "price_string": "$44.05", "price": 44.05, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LCJC2PD/ref=twister_B09LCC33KN?_encoding=UTF8&psc=1", "value": "52x84inx2", "price_string": "$48.09", "price": 48.09, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LC7G143/ref=twister_B09LCC33KN?_encoding=UTF8&psc=1", "value": "52x96inx2", "price_string": "$53.68", "price": 53.68, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LCFZJFT/ref=twister_B09LCC33KN?_encoding=UTF8&psc=1", "value": "52x108inx2", "price_string": "$62.37", "price": 62.37, "image": null}], "Color": null}, "seller_id": "A3OU3P5TP046FM", "seller_name": "Possta Decor", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09LCM3NKN", "category": "garden", "query": "Window Coverings", "page": 108, "small_description_old": "About this item\n \n\u2714Material: The translucent voile tulle curtain is made of chiffon fabric. Compared with other materials, chiffon is an ideal translucent fabric, smooth and textured, durable and airy. \u2714Features: Window treatment semi-sheer curtain can filter sunlight and balance the light level indoors and outdoors. window panels allows you to enjoy the beautiful scenery outside the window and prevents people from directly seeing your indoor room. \u2714Size: 2 pieces of curtains measure - 52x72inx2(132x182cmx2)The well-made window drapes support customized design. You can choose various styles from our store, such as: landscape, farm animal, farmhouse scenery, floral, blossoms flower, sea ocean beach, etc. \u2714Occasion: The curtains are suitable for home/kitchen/living room/bedroom/coffee shop/bathroom/sliding door/child room/nursery/hotel or any other places, which can create a romantic and elegant atmosphere and make you feel comfortable. \u2714Cleaning: Gauze drapes support hand wash or machine wash, gentle cycle, easy to dry, and can be recycled multiple times."}, {"name": "Yeele 5x7ft Photography Backdrops - Magical The Underwater World Octopus Sea Turtle Castle Photo Background Newborn Baby Boy Portrait Pictures Photo Booth Shooting Studio Props", "product_information": {"Product Dimensions": "11 x 10 x 0.4 inches", "Item Weight": "5.3 ounces", "ASIN": "B07F6MN8RH", "Date First Available": "June 20, 2018", "Manufacturer": "Yeele", "Country of Origin": "China"}, "brand": "Brand: Yeele", "brand_url": "https://www.amazon.com/Yeele/b/ref=bl_dp_s_web_19834580011?ie=UTF8&node=19834580011&field-lbr_brands_browse-bin=Yeele", "full_description": "Customize Accepted\uff1a We company accept customization order according to your request!Just email us your picture and the size of it. FYI:Usually customize orders takes 1-3 days to produce and 2 weeks of delivery. Features: Material:Thin vinyl fabric. Type: Computer-printed. Size type: 3\u00d75 Ft=1\u00d71.5 Meters 5\u00d77 Ft=1.5\u00d72.2 Meters 6\u00d79 Ft=1.8\u00d72.7 Meters 8\u00d710 Ft=2.5\u00d73 Meters Light absorbant Non-reflective. No pocket no hole Package: 1x Photography backdrop. Suitable for: All kinds of business/commercial use,like wedding, studio,party etc. Vinyl backdrops are our latest and greatest computer painted wrinkle-free fleece-like fabric. Tips: 1.Vinyl fabrics are not washable.If there is a stain,take a damp cloth with little water or entle cleaner(like soap) and wipe clean. 2. All backdrop will send by folded.Here are the ways of removing the creases. a. Roll it up tightly with a cylinder, and waiting for 3-4days. b. Heat it with a steam iron on the back of item, then it will be smooth again.If necessary, please iron the back surface with steam iron but not dry iron.(Note: IP65 of waterproof). 3.We can customized any size for you,also we can print your own picture as backdrop;Double-face vinyl backdrop also available for selling; contact with us if you needs. About Color: Please note that every computer has different color and resolution settings so colors shown on your screen may vary slightly from the actual print depending on your setting.", "pricing": "$19.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/51CIrgB97nL.jpg", "https://m.media-amazon.com/images/I/51JsZJTlKBL.jpg", "https://m.media-amazon.com/images/I/517OpdWwv+L.jpg", "https://m.media-amazon.com/images/I/61frltno8IL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Lighting & Studio \u203a Photo Studio \u203a Backgrounds", "average_rating": "", "small_description": ["Versatile: Suitable for newborn children baby shower birthday party decorations,personal portrait product and family group photo.Can also be used for studio, booths, parties, and for weddings & business/commercial use\uff0cvideo recording. ", "Environmental Friendly:Made by Vinyl fabric, non-toxic harmless material,acid-free, recyclable! ", "HD backdrops:Using a series of high-tech digital production equipment carefully made digital pictures inkjet pictures.If necessary, please iron the back surface with steam iron but not dry iron. ", "Non reflective: Design is printed on vinyl cloth and helps minimize light reflection\uff0cno worry of ruining your pictures anymore! ", "Fade resistant:Pattern in our vinyl backdrop is realistic and fade-resistant; Color fidelity and artistic effect. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07F689H6F/ref=twister_B08LB9D1KF?_encoding=UTF8&psc=1", "value": "3x5ft", "price_string": "$11.99", "price": 11.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F6LL22P/ref=twister_B08LB9D1KF?_encoding=UTF8&psc=1", "value": "4x5ft", "price_string": "$14.99", "price": 14.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F69B9CQ/ref=twister_B08LB9D1KF?_encoding=UTF8&psc=1", "value": "4x6ft", "price_string": "$15.99", "price": 15.99, "image": null}, {"is_selected": true, "url": null, "value": "5x7ft", "price_string": "$19.99", "price": 19.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F67QDD2/ref=twister_B08LB9D1KF?_encoding=UTF8&psc=1", "value": "6x8ft", "price_string": "$27.99", "price": 27.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F682TW5/ref=twister_B08LB9D1KF?_encoding=UTF8&psc=1", "value": "6x9ft", "price_string": "$30.99", "price": 30.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F67G8VB/ref=twister_B08LB9D1KF?_encoding=UTF8&psc=1", "value": "6.5x10ft", "price_string": "$33.99", "price": 33.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07F6GSG7N/ref=twister_B08LB9D1KF?_encoding=UTF8&psc=1", "value": "8x10ft", "price_string": "$43.99", "price": 43.99, "image": null}]}, "seller_id": "A14BCGE4EJFTMN", "seller_name": "Mr. Minh", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B07F6MN8RH", "category": "electronics", "query": "Underwater Photography", "page": 225, "small_description_old": "About this item\n \nVersatile: Suitable for newborn children baby shower birthday party decorations,personal portrait product and family group photo.Can also be used for studio, booths, parties, and for weddings & business/commercial use\uff0cvideo recording. Environmental Friendly:Made by Vinyl fabric, non-toxic harmless material,acid-free, recyclable! HD backdrops:Using a series of high-tech digital production equipment carefully made digital pictures inkjet pictures.If necessary, please iron the back surface with steam iron but not dry iron. Non reflective: Design is printed on vinyl cloth and helps minimize light reflection\uff0cno worry of ruining your pictures anymore! Fade resistant:Pattern in our vinyl backdrop is realistic and fade-resistant; Color fidelity and artistic effect."}, {"name": "Lice Shield Shampoo & Conditioner 2 in 1 - 10 oz - 2 pk", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 6.7 x 5.2 x 1.6 inches; 10 Ounces", "Item model number\n \u200f": "\u200e\n SG_B00JISMSG4_US", "Manufacturer\n \u200f": "\u200e\n Lice Shield", "ASIN\n \u200f": "\u200e\n B00JISMSG4", "Best Sellers Rank": "#294,853 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#562 in 2-in-1 Shampoo & Conditioner", "#562 in 2-in-1 Shampoo & Conditioner": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Lice Shield", "brand_url": "https://www.amazon.com/Lice-Shield/b/ref=bl_dp_s_web_20068112011?ie=UTF8&node=20068112011&field-lbr_brands_browse-bin=Lice+Shield", "full_description": "", "pricing": "$18.87", "list_price": "", "availability_quantity": 4, "availability_status": "Only 4 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/515sTMAU7JL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a 2-in-1 Shampoo & Conditioner", "average_rating": 4.5, "small_description": [""], "total_reviews": 37, "total_answered_questions": "", "customization_options": "", "seller_id": "ASEVS99O6FS73", "seller_name": "Pharmapacks_", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00JISMSG4", "category": "beauty", "query": "Shampoo & Conditioner", "page": 82, "small_description_old": ""}, {"name": "Once Upon A Time Queen Born In 1982 T Shirts It Was Me Tank Top", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 5, 2022", "Manufacturer\n \u200f": "\u200e\n 40th Birthday Queen T Shirts", "ASIN\n \u200f": "\u200e\n B09RVF4JP1", "": ""}, "brand": "Brand: 40th Birthday Queen T Shirts", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=40th+Birthday+Queen+T+Shirts", "full_description": "Once Upon A Time Queen Born In 1982 T Shirts It Was Me. This storytime shirt will make the perfect cute gift for any men or women who are turning 40 and was born in 1982. Wear this top paired with whatever style clothes in your favorite to make an amazing outfit for a birthday celebration. Grandparents and parents will love this T Shirt for their 40th birthday. Toddlers, kids, youth, boys, and girls can get this tee for their family born in 1982. This t shirt is the perfect clothing piece to bring together any birthday look for anyone.", "pricing": "$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A1Ig7DnP6sL.png", "https://m.media-amazon.com/images/I/31tbrimDw7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a Tanks & Camis", "average_rating": "", "small_description": ["Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester ", "Imported ", "Machine Wash ", "This storytime shirt will make the perfect cute gift for any men or women who are turning 40 and was born in 1982. Wear this top paired with whatever style clothes in your favorite to make an amazing outfit for a birthday celebration. ", "Grandparents and parents will love this T Shirt for their 40th birthday. Toddlers, kids, youth, boys, and girls can get this tee for their family born in 1982. This t shirt is the perfect clothing piece to bring together any birthday look for anyone. ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RVF4JP1?_encoding=UTF8&customId=B07MZQH9ZH", "value": "Women", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1Ig7DnP6sL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RVF4JP1?_encoding=UTF8&customId=B07MZQFLP1", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1FAfhw%2B74L.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RVF4JP1?_encoding=UTF8&customId=B07MZPNB6H", "value": "Dark Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1XUGBPoYSS.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RVF4JP1?_encoding=UTF8&customId=B07MZQN1SQ", "value": "Neon Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A12bY8bnkeL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RVF4JP1?_encoding=UTF8&customId=B07MZP9QX2", "value": "Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/B1Mrzcr47BS.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07MZP9QWJ"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07MZPH245"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07MZPVTSY"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07MZQH9YH"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07MZQ58TP"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09RVF4JP1", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 203, "small_description_old": "Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester Imported Machine Wash This storytime shirt will make the perfect cute gift for any men or women who are turning 40 and was born in 1982. Wear this top paired with whatever style clothes in your favorite to make an amazing outfit for a birthday celebration. Grandparents and parents will love this T Shirt for their 40th birthday. Toddlers, kids, youth, boys, and girls can get this tee for their family born in 1982. This t shirt is the perfect clothing piece to bring together any birthday look for anyone. Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "FOREST DESIGNS Bull Nose Bookcase (Two Shelves) Ebony Oak", "product_information": {"Product Dimensions": "\u200e13 x 36 x 36 inches", "Country of Origin": "\u200eUSA", "Is Discontinued By Manufacturer": "\u200eNo", "ASIN": "B00RIK1LI0", "Date First Available": "January 2, 2015"}, "brand": "Visit the FOREST DESIGNS Store", "brand_url": "https://www.amazon.com/stores/Forest+Designs/page/2F3160CA-11B3-4BB8-9DC7-6970E45551DE?ref_=ast_bln", "full_description": "Since 1991 our experienced craftsmen have produced high quality furniture that is made in the USA. We use only premium quality solids and veneers. No particle board! To control quality we mill the wood in our modern manufacturing facility. From doors to moldings, every part is manufactured on-site. Every drawer features full extension glides. Exposed shelves have solid front moldings. Drawer boxes are constructed from Baltic Birch. A multiple step sanding process ensures a consistent surface for finishing. We use Sherwin Williams stains, sealants, and lacquers to complete the manufacturing process. And a lifetime warranty backs our workmanship.", "pricing": "$359.00", "list_price": "", "availability_status": "Usually ships within 3 to 5 weeks.", "images": ["https://m.media-amazon.com/images/I/41Dn6l1j5vL.jpg", "https://m.media-amazon.com/images/I/41fH5aObR2L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": "", "small_description": ["Two Adjustable Shelves ", "Real Wood ", "Made in the USA ", "Custom Available ", "Lifetime Warranty "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2KUECQXWC0811", "seller_name": "Oak Arizona Furniture", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00RIK1LI0", "category": "garden", "query": "Bookcases", "page": 113, "small_description_old": "About this item Two Adjustable Shelves Real Wood Made in the USA Custom Available Lifetime Warranty \n \u203a See more product details"}, {"name": "KETO BARS : The Original High Fat, Low Carb, Ketogenic Bar. Gluten Free, Vegan, Homemade with simple ingredients. [Chocolate Peanut Butter, 10 Pack]", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 6.5 x 5.25 x 2 inches; 1.19 Pounds", "UPC\n \u200f": "\u200e\n 860000542616", "Manufacturer\n \u200f": "\u200e\n Keto Bars", "ASIN\n \u200f": "\u200e\n B07HYF111T", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#11,431 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#38 in Deli & Prepared Foods #164 in Sports Nutrition Protein Bars #560 in Sports Nutrition Protein", "#38 in Deli & Prepared Foods": "", "#164 in Sports Nutrition Protein Bars": "", "#560 in Sports Nutrition Protein": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Keto Bars Store", "brand_url": "https://www.amazon.com/stores/Keto+Bars+/page/D3BC1374-232B-48A3-BDF8-99F5C14162C5?ref_=ast_bln", "full_description": "", "pricing": "$29.95", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/51Ldigu9knL.jpg", "https://m.media-amazon.com/images/I/514J8KmAhfL.jpg", "https://m.media-amazon.com/images/I/41jMP1UdlcL.jpg", "https://m.media-amazon.com/images/I/51wuBz2pIwL.jpg", "https://m.media-amazon.com/images/I/51GIOk3KmLL.jpg", "https://m.media-amazon.com/images/I/41ttKc-uyjL.jpg", "https://m.media-amazon.com/images/I/41fTamgs0UL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Deli & Prepared Foods", "average_rating": 3.8, "small_description": ["\u2713 RECEIVE a box of 10-Keto Bars, 1.65 oz each in choice of flavors. WE KNOW KETO Our bars are \u2714\ufe0fLow Carbohydrates \u2714\ufe0fNo Sugar Added \u2714\ufe0fRich in Ketogenic Fats \u2714\ufe0fDairy Free \u2714\ufe0fGluten Free \u2714\ufe0fModerate Protein \u2714\ufe0fVegan \u2714\ufe0fNo Fiber Syrups. Perfect for ketogenic dieters and anyone looking for healthy snack alternative. Look no further, our snack is the perfect smart keto food choice. ", "\u2713 100% KETO That's right! Unlike competition, Keto Bars are actually 100% Keto! Up to 21g fat, only 3g net carbs, moderate protein & no sugar added. There are a lot of snack bars in the market claiming to be KETO, however, there is only ONE trusted keto bar brand. KETO BARS IS THE ORIGINAL keto bar. Our bars are a delicious blend of wholesome ingredients, rich in flavor that's both satisfying & delicious. Satisfy your cravings for treats with our mouthwatering, gourmet, good-for-you snack bars. ", "\u2713 RICH, DENSE AND JUST OHHH SO DELICIOUS Keto Bars. Eat it for breakfast, snacks in between meals, with coffee, we're that easy on the go, anytime-type of snack! Our healthy snacks are the perfect sweet treat for ketogenic dieters or anyone looking for low-carb, low-sugar, gluten and grain-free delicious sweet treats. ", "\u2713 SIMPLE INGREDIENTS @ Keto Bars, we only believe in wholesome ingredients. Check our nutritional facts, trust us, you will know how to pronounce alllll the ingredients. Choose between 4 delicious flavors: Chocolate Covered Strawberry, Chocolate Peanut Butter, Dark Chocolate Coconut Almond & Mint Chocolate OR sample them all with our sample pack variety. All of our bars are made in the USA & tested by our dream team of keto-believers. ", "\u2713 MADE IN OUR USA KITCHEN and made by true Keto believers. Our company concentrates on one-thing only \u2013 and that's making Keto Bars! Our community of Keto believers is everything to us! TRY our products with confidence, knowing that this is all we do, keto snacks. If you are not satisfied with our product or have questions regarding our product WE ARE HERE! So please reach out to us! "], "total_reviews": 2845, "total_answered_questions": 48, "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B082DRYJYR/ref=twister_B07MLDH4KK?_encoding=UTF8&psc=1", "value": "Chocolate Covered Strawberry", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Chocolate Peanut Butter", "price_string": "$29.95", "price": 29.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07LGD6QK6/ref=twister_B07MLDH4KK?_encoding=UTF8&psc=1", "value": "Dark Chocolate Coconut Almond", "price_string": "$29.95", "price": 29.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07KJTJV86/ref=twister_B07MLDH4KK?_encoding=UTF8&psc=1", "value": "Mint Chocolate", "price_string": "$29.50", "price": 29.5, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07P89RG7L/ref=twister_B07MLDH4KK?_encoding=UTF8&psc=1", "value": "Sampler Pack", "price_string": "$35.95", "price": 35.95, "image": null}]}, "seller_id": "A2YVXFSFCBV1ST", "seller_name": "Keto Bars", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07HYF111T", "category": "grocery", "query": "Granola & Nutrition Bars", "page": 46, "small_description_old": "About this item \u2713 RECEIVE a box of 10-Keto Bars, 1.65 oz each in choice of flavors. WE KNOW KETO Our bars are \u2714\ufe0fLow Carbohydrates \u2714\ufe0fNo Sugar Added \u2714\ufe0fRich in Ketogenic Fats \u2714\ufe0fDairy Free \u2714\ufe0fGluten Free \u2714\ufe0fModerate Protein \u2714\ufe0fVegan \u2714\ufe0fNo Fiber Syrups. Perfect for ketogenic dieters and anyone looking for healthy snack alternative. Look no further, our snack is the perfect smart keto food choice. \u2713 100% KETO That's right! Unlike competition, Keto Bars are actually 100% Keto! Up to 21g fat, only 3g net carbs, moderate protein & no sugar added. There are a lot of snack bars in the market claiming to be KETO, however, there is only ONE trusted keto bar brand. KETO BARS IS THE ORIGINAL keto bar. Our bars are a delicious blend of wholesome ingredients, rich in flavor that's both satisfying & delicious. Satisfy your cravings for treats with our mouthwatering, gourmet, good-for-you snack bars. \u2713 RICH, DENSE AND JUST OHHH SO DELICIOUS Keto Bars. Eat it for breakfast, snacks in between meals, with coffee, we're that easy on the go, anytime-type of snack! Our healthy snacks are the perfect sweet treat for ketogenic dieters or anyone looking for low-carb, low-sugar, gluten and grain-free delicious sweet treats. \u2713 SIMPLE INGREDIENTS @ Keto Bars, we only believe in wholesome ingredients. Check our nutritional facts, trust us, you will know how to pronounce alllll the ingredients. Choose between 4 delicious flavors: Chocolate Covered Strawberry, Chocolate Peanut Butter, Dark Chocolate Coconut Almond & Mint Chocolate OR sample them all with our sample pack variety. All of our bars are made in the USA & tested by our dream team of keto-believers. \u2713 MADE IN OUR USA KITCHEN and made by true Keto believers. Our company concentrates on one-thing only \u2013 and that's making Keto Bars! Our community of Keto believers is everything to us! TRY our products with confidence, knowing that this is all we do, keto snacks. If you are not satisfied with our product or have questions regarding our product WE ARE HERE! So please reach out to us!"}, {"name": "Replacement Remote Control for Sharp MDR3, RRMCG0142AWSA", "product_information": {"Product Dimensions": "7 x 2.5 x 1 inches", "Item Weight": "4.5 ounces", "ASIN": "B00CHSKYKE", "Item model number": "RTRRMCG0142AWSA", "Best Sellers Rank": ["#48,292 in Remote Controls (Electronics)"], "Date First Available": "April 23, 2013", "Manufacturer": "Redi-Remote"}, "brand": "Brand: REDI REMOTE", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=REDI+REMOTE", "full_description": "This is a custom built replacement remote made by Redi Remote for the SHARP remote control number RRMCG0142AWSA. *This is NOT an original remote control. It is a custom replacement remote made by Redi-Remote* This remote control is specifically designed to be compatible with the following models of SHARP units: MDR3, RRMCG0142AWSA *If you have any concerns with the remote after purchase, please contact me directly* There is a cover over the lower half of the remote. This will slide down to reveal the lower half buttons.", "pricing": "$29.95", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/415XTc8ivvL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Remote Controls & Accessories \u203a Remote Controls", "average_rating": "", "small_description": ["Redi-Remotes cannot be programmed to control any auxillary devices. They will do every function for the specific unit they are designed to control. ", "Remote measures 7 1/2\" x 2 1/4\" x 3/4\" ", "Redi-Remotes are not equipped with laser pointers or LED lights. "], "total_reviews": "", "total_answered_questions": "", "model": "RTRRMCG0142AWSA", "customization_options": "", "seller_id": "AGRI50LQ7GYAC", "seller_name": "RemotesPro", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00CHSKYKE", "category": "electronics", "query": "VCRs", "page": 374, "small_description_old": "Redi-Remotes cannot be programmed to control any auxillary devices. They will do every function for the specific unit they are designed to control. Remote measures 7 1/2\" x 2 1/4\" x 3/4\" Redi-Remotes are not equipped with laser pointers or LED lights."}, {"name": "4-Channel Wireless Bluetooth Power Amplifier - 1000W Stereo Speaker Home Audio Receiver w/FM Radio, USB, Headphone, 2 Mic w/Echo, Front Loading CD DVD Player, LED, Rack Mount - Pyle PD1000BA.5", "product_information": {"Package Dimensions": "20.5 x 17.25 x 9.25 inches", "Item Weight": "23 pounds", "ASIN": "B096L3FNMR", "Customer Reviews": {"ratings_count": 26, "stars": "4.2 out of 5 stars"}, "Best Sellers Rank": ["#141,259 in Electronics (See Top 100 in Electronics) #989 in Audio Component Amplifiers"], "Date First Available": "June 3, 2021", "Manufacturer": "Pyle", "Country of Origin": "China"}, "brand": "Visit the Pyle Store", "brand_url": "https://www.amazon.com/stores/PyleUSA/page/D79E9149-99F8-49A4-8E8C-D24560694FC2?ref_=ast_bln", "full_description": "Features: - Audio / Video Home Theater Pre-Amplifier - 4-Ch. Pro Audio Receiver System - Connects to TVs Soundbars Speaker Systems - Built-in Bluetooth for Wireless Music Streaming - Front Loading CD/DVD Player - Powers up to (4) Loud Speakers - Front Panel Control Center with Dynamic VFD Display - AM/FM Stereo Radio - USB Flash Drive Reader - MP3 Digital Audio File Compatibility - (4) Pair Speaker Terminal Binding Posts - (2) Pair RCA (L/R) Audio Inputs - Aux (3.5mm) Input Jack - (2) 1/4'' Microphone Inputs - 1/4'' Headphone Jack - Subwoofer RCA (L/R) Output - Optical (Digital) Audio Output - Video Outputs: S-Video RCA YPbPr (Component Video) - Output dB (Decibel) Level LED Display - Mic Echo Treble Bass Volume Subwoofer Controls - Sleek Brushed Aluminum and Metal Chassis Housing - Built-in Ventilation Cooling Fan - Universal Rack Mountable Bluetooth Connectivity: - Works with All of Your Favorite Bluetooth Devices - (iPhone Android Smartphones iPad Tablets etc.) - Bluetooth Network Name: 'PYLE PRO' - Bluetooth Network Password: Not Required - Bluetooth Version: 5.0 - Bluetooth Wireless Range: 40'+ ft. What's in the Box: - Preamplifier Receiver - Remote Control - Detachable Rack Mount Brackets - RCA Connection Cables - AM + FM Antennas - Power Cable Technical Specs: - Amplifier Receiver Type: 4-Channel - Power Output: 1000 Watt MAX - 360 Watts x 2 @ 4 Ohm - 200 Watts x 2 @ 8 Ohm - Impedance: 8 Ohm - Aspect Ratio: 4:3/16:9 - Video System: PAL/NTSC - Audio S/N Ratio: >90dB - Frequency Range: +/-14 dB - Quartz Synthesized Radio Tuner - Radio Presets: 30 Station Memory - CD/DVD Disc Compatibility: DVD/CD/VCD/CD-R/CD-RW/MP4 - Power Supply: 115/230V, Switchable - Dimensions (L x W x H): 16.9\u2019\u2019 x 13.8\u2019\u2019 x 5.6\u2019\u2019 -inches", "pricing": "$242.99", "list_price": "", "availability_quantity": 1, "availability_status": "Temporarily out of stock. We are working hard to be back in stock. Place your order and we\u2019ll email you when we have an estimated delivery date. You won\u2019t be charged until the item ships. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41MZ-pT96uS.jpg", "https://m.media-amazon.com/images/I/51rmPOlZ86S.jpg", "https://m.media-amazon.com/images/I/51iG1hDDVWS.jpg", "https://m.media-amazon.com/images/I/51eXuCghZsS.jpg", "https://m.media-amazon.com/images/I/51eSOKrWZRS.jpg", "https://m.media-amazon.com/images/I/51kwScAPpPS.jpg", "https://m.media-amazon.com/images/I/51nuMwuTeYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Home Audio \u203a Home Theater \u203a Receivers & Amplifiers \u203a Amplifiers", "average_rating": 4.2, "small_description": ["1000 WATT POWER: The Pyle 4 Channel Pre-Amplifier is perfect for your karaoke and home entertainment sound system. It gives you 1000W peak power to be used for multi speakers with 2-8 ohms impedance allowing you to enjoy high-quality audio ", "7 INPUTS: The personal digital amp box supports headphones, USB, iPod or MP3, FM tuner, AUX, with front loading CD DVD player, 2 microphone inputs with an echo effect for karaoke, 1 RCA preamp output and 2 mono RCA dedicated for subwoofer ", "BLUETOOTH-COMPATIBLE: The professional integrated indoor house stereo receiver is equipped with bluetooth wireless music streaming. Works with today\u2019s latest devices including smartphones, tablets, laptops and computers w/ hassle-free receiver pairing ", "EQ CONTROLS: The speaker sound amplifying device has crisp buttons for the audio sources and selectors, rotary knob for equalization and master volume adjustments. It also features blue LED illuminated buttons and knobs for high visibility ", "DISPLAY METER: The compact and rack mount amplifier has a built-in digital fluorescent display meter which displays all the functions and input used. A remote control is also included in the package for distant audio adjustments "], "total_reviews": 26, "total_answered_questions": 7, "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B096L3FNMR", "category": "electronics", "query": "AV Receivers & Amplifiers", "page": 139, "small_description_old": "1000 WATT POWER: The Pyle 4 Channel Pre-Amplifier is perfect for your karaoke and home entertainment sound system. It gives you 1000W peak power to be used for multi speakers with 2-8 ohms impedance allowing you to enjoy high-quality audio 7 INPUTS: The personal digital amp box supports headphones, USB, iPod or MP3, FM tuner, AUX, with front loading CD DVD player, 2 microphone inputs with an echo effect for karaoke, 1 RCA preamp output and 2 mono RCA dedicated for subwoofer BLUETOOTH-COMPATIBLE: The professional integrated indoor house stereo receiver is equipped with bluetooth wireless music streaming. Works with today\u2019s latest devices including smartphones, tablets, laptops and computers w/ hassle-free receiver pairing EQ CONTROLS: The speaker sound amplifying device has crisp buttons for the audio sources and selectors, rotary knob for equalization and master volume adjustments. It also features blue LED illuminated buttons and knobs for high visibility DISPLAY METER: The compact and rack mount amplifier has a built-in digital fluorescent display meter which displays all the functions and input used. A remote control is also included in the package for distant audio adjustments"}, {"name": "One Lucky Teacher St Patrick Day Shamrock Tee Teachers Custom Personalized Unisex T-Shirts Long Sleeve Hoodie Sweatshirt Gifts", "product_information": {"Department": "Womens, Mens, Unisex-Adult, Unisex-Child, Baby", "Manufacturer": "Generic", "ASIN": "B09QQJJ3KM", "Date First Available": "January 19, 2022"}, "brand": "Brand: Generic", "brand_url": "https://www.amazon.com/Generic/b/ref=bl_dp_s_web_2529470011?ie=UTF8&node=2529470011&field-lbr_brands_browse-bin=Generic", "full_description": "\u2b50 MATERIAL: - Cotton Spun Ring - Extremely smooth and soft. - Ventilated, creating a comfortable feeling for the wearer. - High ability to absorb moisture, absorb sweat. \u2b50 USER MANUAL: - You can wash in a washing machine but should be turned upside down to keep the prints longer. - Do not wash white shirts and dark shirts together. - Do not rub the print hard. - Do not pour detergent directly on the printed image. - Do not dry clean. - Use an iron with a moderate temperature.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51oD3tHBGxL.jpg", "https://m.media-amazon.com/images/I/513f7zFlG6L.jpg", "https://m.media-amazon.com/images/I/61S79QSajwL.jpg", "https://m.media-amazon.com/images/I/61BYHjkkYnL.jpg", "https://m.media-amazon.com/images/I/41uVA6nSuqL.jpg", "https://m.media-amazon.com/images/I/51HNocWbNhL.jpg", "https://m.media-amazon.com/images/I/51zQ5fSSxpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Hoodies", "average_rating": "", "small_description": ["\u2b50Made in USA. How to measure the Size & available Colors to each type will be appear after click \"Customize\". ", "\u2b50Available products for this Design: T-Shirt, 3/4 Sleeve Baseball Tee, V-Neck, Long Sleeve, Tank top, Racerback Tank, Sweatshirt, Hoodie for Baby, Kids, Youth, Adult. ", "\u2b50All designs are printed on-site at our high-tech printing facility on the highest quality and most durable fabrics. Full sizes from XS to 5XL. Light fabric, 100% Cotton, durable and comfortable. Machine wash by cold water with shirts of the same color. When washing, turn the shirt inside out. Dry low heat. ", "\u2b50You can customize the picture or add the name, age,quotes... you want to print on the shirt. Perfect Gifts Mother's Day, Father's Day, Christmas, Holidays, Birthdays, ... great gifts for friends, family, childrens, parents. ", "\u2b50Costumes for men and women. You will be the center of attention wearing our t-shirts. Customize Now! "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QQJJ3KM", "category": "fashion", "query": "Men's Fashion Hoodies & Sweatshirts", "page": 51, "small_description_old": "\u2b50Made in USA. How to measure the Size & available Colors to each type will be appear after click \"Customize\". \u2b50Available products for this Design: T-Shirt, 3/4 Sleeve Baseball Tee, V-Neck, Long Sleeve, Tank top, Racerback Tank, Sweatshirt, Hoodie for Baby, Kids, Youth, Adult. \u2b50All designs are printed on-site at our high-tech printing facility on the highest quality and most durable fabrics. Full sizes from XS to 5XL. Light fabric, 100% Cotton, durable and comfortable. Machine wash by cold water with shirts of the same color. When washing, turn the shirt inside out. Dry low heat. \u2b50You can customize the picture or add the name, age,quotes... you want to print on the shirt. Perfect Gifts Mother's Day, Father's Day, Christmas, Holidays, Birthdays, ... great gifts for friends, family, childrens, parents. \u2b50Costumes for men and women. You will be the center of attention wearing our t-shirts. Customize Now!"}, {"name": "80W Bluetooth Speaker,Desong Portable Wireless Bluetooth Speaker TWS Subwoofer with Battery Capacity 10400mAh Power Bank Function TWS Mic, EQ Sound,IPX5 Waterproof Portable Speaker for Home,Party", "product_information": {"Product Dimensions": "9.72 x 5.12 x 2.8 inches", "Item Weight": "4.38 pounds", "ASIN": "B09DVS5MQW", "Item model number": "S02", "Batteries": "1 Lithium Polymer batteries required. (included)", "Customer Reviews": {"ratings_count": 5, "stars": "3.4 out of 5 stars"}, "Best Sellers Rank": ["#2,872 in Portable Bluetooth Speakers #26,027 in MP3 & MP4 Player Accessories"], "Is Discontinued By Manufacturer": "No", "Date First Available": "August 28, 2021", "Manufacturer": "Desong", "Country of Origin": "China"}, "brand": "Visit the Desong Store", "brand_url": "https://www.amazon.com/stores/DESONG/page/39285778-618F-453C-8500-A3F72F541319?ref_=ast_bln", "full_description": "", "pricing": "$99.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/31hcGMRIcJL.jpg", "https://m.media-amazon.com/images/I/51vPkFWul-L.jpg", "https://m.media-amazon.com/images/I/51S15bwvpXL.jpg", "https://m.media-amazon.com/images/I/41iFJ9chd4L.jpg", "https://m.media-amazon.com/images/I/41x0piM9U2L.jpg", "https://m.media-amazon.com/images/I/41+kOEvbMQL.jpg", "https://m.media-amazon.com/images/I/41pu9gmkzoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Portable Audio & Video \u203a Portable Speakers & Docks \u203a Portable Bluetooth Speakers", "average_rating": 3.4, "small_description": ["\u301080W High Power Speaker\u301180W Surging Volume, 2.1 Surround Sound ,Combination of single 50W wooferand dual15W tweeter Transparenttreble,naturalmidrange,full bass. 80W (Max 100W) 3 drivers and large subwoofer provides full spectrum audio with incredible bass effect and clarity. ", "\u3010TWS Interconnection \u3011 360\u00b0 Panoramic Sound Two Desong S02 Can Form a huge160W sound field TWS supports BT wireless and AUX plug-in playback TWS technology.Just control the master device, then audio can be played in sync on both devices. ", "\u3010Lager Battery\u3011Bluetooth Speaker with rechargeable battery, one full charge lets you play music for up to 18 straight hours at 30% volume(Playtime varies according to volume level and audio content). You can use the S02 to charge your tablet and smartphone at any time. ", "\u30103 Sound Effects\u30113 Sound Effects ,The Speaker Can be switched to Full Frequency, Surround, Heawy Bass, through the EQ button. Satisfies all your music needs. "], "total_reviews": 5, "total_answered_questions": "", "model": "S02", "customization_options": "", "seller_id": "A1W942NKGQGF0Q", "seller_name": "DESONG US", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09DVS5MQW", "category": "electronics", "query": "Bluetooth Speakers", "page": 116, "small_description_old": "About this item\n \n\u301080W High Power Speaker\u301180W Surging Volume, 2.1 Surround Sound ,Combination of single 50W wooferand dual15W tweeter Transparenttreble,naturalmidrange,full bass. 80W (Max 100W) 3 drivers and large subwoofer provides full spectrum audio with incredible bass effect and clarity. \u3010TWS Interconnection \u3011 360\u00b0 Panoramic Sound Two Desong S02 Can Form a huge160W sound field TWS supports BT wireless and AUX plug-in playback TWS technology.Just control the master device, then audio can be played in sync on both devices. \u3010Lager Battery\u3011Bluetooth Speaker with 10400mAh rechargeable battery, one full charge lets you play music for up to 18 straight hours at 30% volume(Playtime varies according to volume level and audio content). You can use the S02 to charge your tablet and smartphone at any time. \u30103 Sound Effects\u30113 Sound Effects ,The Speaker Can be switched to Full Frequency, Surround, Heawy Bass, through the EQ button. Satisfies all your music needs."}, {"name": "Ellie Shoes Women's 414-Wonder Boot", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 13.7 x 12.3 x 5.25 inches; 1.25 Pounds", "Item model number\n \u200f": "\u200e\n 414-WONDERRED", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n May 2, 2017", "Manufacturer\n \u200f": "\u200e\n Ellie Shoes", "ASIN\n \u200f": "\u200e\n B06Y55RLKX", "Best Sellers Rank": "#279,408 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#149 in Women's Over-the-Knee Boots", "#149 in Women's Over-the-Knee Boots": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Ellie Shoes Store", "brand_url": "https://www.amazon.com/stores/Ellie+Shoes/page/951823F0-1C71-4FFC-8146-21A371ED64A3?ref_=ast_bln", "full_description": "4 inch Our household brand offers pumps, platforms, sling back, peep-toe, & boots with various heel heights ranging from 3\" to 8\". This line of shoes caters to the boudoir, fetish and sexy communities as well as dancers and performers.", "pricing": "$59.99$107.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31eyfyzz-5L.jpg", "https://m.media-amazon.com/images/I/31CRP1PHPQL.jpg", "https://m.media-amazon.com/images/I/31dDN8n2YkL.jpg", "https://m.media-amazon.com/images/I/31HMMVd37TL.jpg", "https://m.media-amazon.com/images/I/51WDWtCfYIL.jpg", "https://m.media-amazon.com/images/I/31j6cIgTnOL.jpg", "https://m.media-amazon.com/images/I/41QgB12WHHL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Costumes & Accessories \u203a Women \u203a Footwear", "average_rating": 3.9, "small_description": ["100% Polyurethane ", "Imported ", "Rubber sole ", "Shaft measures approximately 24\" from arch ", "Heel measures approximately 3 inches\" ", "Platform measures approximately 1.0 inches ", "Boot opening measures approximately 18\" around , Great for halloween, Superhero womens boot, Wonder"], "total_reviews": 25, "total_answered_questions": 6, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "6", "asin": "B06Y55RLKX"}, {"is_selected": false, "is_available": true, "value": "7", "asin": "B06Y52T6KC"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B06Y4VYJ5Q"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B06Y532XCY"}, {"is_selected": false, "is_available": false, "value": "11", "asin": "B01JAU9588"}, {"is_selected": false, "is_available": false, "value": "12", "asin": "B01LQHHDHS"}, {"is_selected": false, "is_available": true, "value": "8 US/8 M US", "asin": "B06Y56YLP7"}], "Color": [{"is_selected": true, "url": null, "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31eyfyzz-5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07XGN2P3K/ref=twister_B06Y4BJKTZ", "value": "Multi-colored", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31o7P+vrUZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B001D0H5QS/ref=twister_B06Y4BJKTZ", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/314QKaU8skL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01JAU9588/ref=twister_B06Y4BJKTZ", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41zZ-0+v5KL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B06Y52T6KC", "category": "fashion", "query": "Women's Boots", "page": 28, "small_description_old": "100% Polyurethane Imported Rubber sole Shaft measures approximately 24\" from arch Heel measures approximately 3 inches\" Platform measures approximately 1.0 inches Boot opening measures approximately 18\" around \n Great for halloweenSuperhero womens bootWonderShow more"}, {"name": "Taykoo All in One Eyeshadow Powder Makeup Kit, 20g Pressed Powder Blusher Cosmetic Palette Kit Makeup Sets", "product_information": {"Manufacturer\n \u200f": "\u200e\n Taykoo", "ASIN\n \u200f": "\u200e\n B09NSMMHTY", "Country of Origin\n \u200f": "\u200e\n China", "": ""}, "brand": "Brand: Taykoo", "brand_url": "https://www.amazon.com/Taykoo/b/ref=bl_dp_s_web_20119520011?ie=UTF8&node=20119520011&field-lbr_brands_browse-bin=Taykoo", "full_description": "Specification:Color: as shownSize: 12.9*9.3*2.8(cm)Net content: 20gFeatures:1. All-in-One Makeup Kit: They include eye shadow palette, blushers, lip glaze, pressed powder, etc. This multi-purpose kit is perfect for achieving any full- face look.2. Waterproof and long-lasting-shiny colors and high-quality ingredients of the skin, which can last all day. Highly coloured and durable colors keep your perfect eye shadow make-up for a long time. Smooth texture powder has waterproof features, unique technology improvement, and let your eye shadow makeup last a long time.3. Rich colors, mixing ability-feel light and soft, and easily create clear and bright makeup. Turn any night into a wonderful thing to adapt to these dazzling ranges. For people over the age of 12, created with neutral ingredients, our eye shadow is designed for all ages.4. Suitable for most skin-separate containers for each color. Suitable for a variety of skin colors; Easy to use and easy to wear. You can now create the same famous T-shape you see in fashion magazines and TV, from classic eyes to sexy cat eyes and sexy smoke eyes!5. Wide application-perfect party makeup / leisure makeup / wedding makeup, etc. The Makeup Palette includes a variety of colors, including neutrality, vitality, shimmer and spots. Whether it's dark or mysterious or daring, this series of eye shadows can attract people's attention. Different colors are suitable for different appearances. Suitable for professional salons, personal use, parties, festivals-Christmas, Halloween, birthday, Valentine's day, etc.Package Includes:1 * All-in-One Makeup KitNotes:1. 1 inch = 2.54 cm2. Please allow 2-3cm error due to manual measurement. Please make sure you do not mind before purchasing.3. Color may not appear as exactly as in real life due to variations between the computer monitors.", "pricing": "$15.69", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41WXblK1lRL.jpg", "https://m.media-amazon.com/images/I/51hxz5fWdkL.jpg", "https://m.media-amazon.com/images/I/41O0ZHZCoDL.jpg", "https://m.media-amazon.com/images/I/51JJFmHAKwL.jpg", "https://m.media-amazon.com/images/I/410FoT6BKEL.jpg", "https://m.media-amazon.com/images/I/41H09SQulpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Eyes \u203a Eyeshadow", "average_rating": "", "small_description": ["All-in-One Makeup Kit: They include eye shadow palette, blushers, lip glaze, pressed powder, etc. This multi-purpose kit is perfect for achieving any full- face look. ", "Waterproof and long-lasting-shiny colors and high-quality ingredients of the skin, which can last all day. Highly coloured and durable colors keep your perfect eye shadow make-up for a long time. Smooth texture powder has waterproof features, unique technology improvement, and let your eye shadow makeup last a long time. ", "Rich colors, mixing ability-feel light and soft, and easily create clear and bright makeup. Turn any night into a wonderful thing to adapt to these dazzling ranges. For people over the age of 12, created with neutral ingredients, our eye shadow is designed for all ages. ", "Suitable for most skin-separate containers for each color. Suitable for a variety of skin colors; Easy to use and easy to wear. You can now create the same famous T-shape you see in fashion magazines and TV, from classic eyes to sexy cat eyes and sexy smoke eyes! ", "Wide application-perfect party makeup / leisure makeup / wedding makeup, etc. The Makeup Palette includes a variety of colors, including neutrality, vitality, shimmer and spots. Whether it's dark or mysterious or daring, this series of eye shadows can attract people's attention. Different colors are suitable for different appearances. Suitable for professional salons, personal use, parties, festivals-Christmas, Halloween, birthday, Valentine's day, etc. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A39JOC8PKQIH1G", "seller_name": "Cullya", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NSMMHTY", "category": "beauty", "query": "Makeup Palettes", "page": 135, "small_description_old": "All-in-One Makeup Kit: They include eye shadow palette, blushers, lip glaze, pressed powder, etc. This multi-purpose kit is perfect for achieving any full- face look. Waterproof and long-lasting-shiny colors and high-quality ingredients of the skin, which can last all day. Highly coloured and durable colors keep your perfect eye shadow make-up for a long time. Smooth texture powder has waterproof features, unique technology improvement, and let your eye shadow makeup last a long time. Rich colors, mixing ability-feel light and soft, and easily create clear and bright makeup. Turn any night into a wonderful thing to adapt to these dazzling ranges. For people over the age of 12, created with neutral ingredients, our eye shadow is designed for all ages. Suitable for most skin-separate containers for each color. Suitable for a variety of skin colors; Easy to use and easy to wear. You can now create the same famous T-shape you see in fashion magazines and TV, from classic eyes to sexy cat eyes and sexy smoke eyes! Wide application-perfect party makeup / leisure makeup / wedding makeup, etc. The Makeup Palette includes a variety of colors, including neutrality, vitality, shimmer and spots. Whether it's dark or mysterious or daring, this series of eye shadows can attract people's attention. Different colors are suitable for different appearances. Suitable for professional salons, personal use, parties, festivals-Christmas, Halloween, birthday, Valentine's day, etc."}, {"name": "Riffi Body & Shoulder Massage (767) - Massage Belt for Body and Shoulder, Riffi Shower and Massage Accessories for Men & Women - 2 Pack", "product_information": {"Manufacturer\n \u200f": "\u200e\n Riffi", "ASIN\n \u200f": "\u200e\n B083WSK6F2", "": ""}, "brand": "Brand: Riffi", "brand_url": "https://www.amazon.com/Riffi/b/ref=bl_dp_s_web_19261907011?ie=UTF8&node=19261907011&field-lbr_brands_browse-bin=Riffi", "full_description": "WHY RIFFI BODY & SHOULDER MASSAGE STRIP?Daily massage with Riffi products gets the circulation going, invigorates blood flow, strengthens your immune system, and releases muscular tension. Riffi massage revitalizes and stimulates the entire blood circulatory system via opening the pores of your skin to absorb more oxygen, while providing you with a deep cleaning for healthier and younger looking skin. Ideal for Fa Shower Gel/Body Wash usage. Note: The picture displayed above is to illustrate the size and style of the Riffi product. The color of your ordered Riffi product may differ.", "pricing": "$23.45", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31BiVSEUa1L.jpg", "https://m.media-amazon.com/images/I/41IfRYgG-4L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories", "average_rating": "", "small_description": ["EFFECTIVE MASSAGE BELT: Comes in 2 Pack. Experience Spa treatment at home with our Riffi shoulder massage belt. It gently peals of dead skin and makes you love the way your skin feels. Best body-exfoliating scrub belt that lifts away dead skin. Color may vary! ", "SKIN TEXTURE IMPROVEMENT: These Riffi body and shoulder massage belt works well on different skin textures. We recommend repeated use for rough/dry skin to soften it. These deep exfoliating belts promote blood circulation to outer skin. Very effective in combating rashes, acne, and issues of such sort. ", "PERFECT SIZE: Riffi exfoliating body and shoulder massage belt comes in a universal size and works well for both men & women. ", "SUPER EASY CLEANUP: Once done using, simply rinse it in clean. No special care needed for this Riffi shower massage belt. ", "VARIETY OF RIFFI SHOWER ACCESSORIES: Along with body and shoulder massage strips, we offer other Riffi bath and shower accessories such as back brush, body and shoulder massage belt, massage brush double sided, and much more. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2B996SBT66OUH", "seller_name": "Fa Bath & Body Products", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B083WSK6F2", "category": "beauty", "query": "Bathing Accessories", "page": 124, "small_description_old": "EFFECTIVE MASSAGE BELT: Comes in 2 Pack. Experience Spa treatment at home with our Riffi shoulder massage belt. It gently peals of dead skin and makes you love the way your skin feels. Best body-exfoliating scrub belt that lifts away dead skin. Color may vary! SKIN TEXTURE IMPROVEMENT: These Riffi body and shoulder massage belt works well on different skin textures. We recommend repeated use for rough/dry skin to soften it. These deep exfoliating belts promote blood circulation to outer skin. Very effective in combating rashes, acne, and issues of such sort. PERFECT SIZE: Riffi exfoliating body and shoulder massage belt comes in a universal size and works well for both men & women. SUPER EASY CLEANUP: Once done using, simply rinse it in clean. No special care needed for this Riffi shower massage belt. VARIETY OF RIFFI SHOWER ACCESSORIES: Along with body and shoulder massage strips, we offer other Riffi bath and shower accessories such as back brush, body and shoulder massage belt, massage brush double sided, and much more."}, {"name": "Amazon Brand - Daily Ritual Women's 100% Cotton Oversized Fit V-Neck Pullover Sweater", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 11 x 13 x 1 inches; 13.83 Ounces", "Item model number\n \u200f": "\u200e\n DR1892220", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n October 25, 2018", "Manufacturer\n \u200f": "\u200e\n Daily Ritual", "ASIN\n \u200f": "\u200e\n B07DKCN8CF", "Best Sellers Rank": "#35,198 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#248 in Women's Pullover Sweaters #1,195 in Women's Shops", "#248 in Women's Pullover Sweaters": "", "#1,195 in Women's Shops": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Daily Ritual Store", "brand_url": "https://www.amazon.com/stores/DailyRitual/page/3E358E87-E334-42FA-BAFF-147AD1825C7D?ref_=ast_bln", "full_description": "An Amazon brand - Made from a thicker 100% cotton knit, this long-sleeve v-neck sweater features a comfortable, relaxed fit Lark & Ro\u2019s collection of women\u2019s dresses, blouses, dress shirts, cardigans, jackets, outerwear, and more marries soft fabrics with classic designs for easily paired pieces that take care of business. Our stylish selection includes office clothes for work, warm coats, and 100% cashmere sweaters as well as casual tops and formal dresses for parties and wedding guests", "pricing": "$20.66$29.20", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41D54yBGD-L.jpg", "https://m.media-amazon.com/images/I/41kS12q27dL.jpg", "https://m.media-amazon.com/images/I/41VDNN1TFEL.jpg", "https://m.media-amazon.com/images/I/319CVF1eGLL.jpg", "https://m.media-amazon.com/images/I/51qWxGRY2HL.jpg", "https://m.media-amazon.com/images/I/41JfFlGwL8L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Sweaters \u203a Pullovers", "average_rating": 3.9, "small_description": ["Imported ", "No Closure closure ", "Machine Wash ", "Made from a thicker 100% cotton knit, this long-sleeve v-neck sweater features a comfortable, relaxed fit ", "Defined ribbing at neckline, cuffs, and hem; slightly cropped length ", "Start every outfit with Daily Ritual's range of elevated basics ", "Model is 5'11\" and wearing a size Small; we recommend sizing down in this style if you prefer a closer to body fit "], "total_reviews": 799, "total_answered_questions": 14, "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B07DKGVDZK"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B07DKDRQ5V"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07DKCS3YX"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07DK869KV"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07DKGJR74"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07DKDKQ2M"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07DKGVYRD/ref=twister_B07DKGFJGB", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31QbEtQ4CKL.jpg"}, {"is_selected": true, "url": null, "value": "Burgundy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41D54yBGD-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DKFCGTW/ref=twister_B07DKGFJGB", "value": "Charcoal Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41cn5LGMtyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DKJCTG1/ref=twister_B07DKGFJGB", "value": "Light Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41egkcVXTgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DK81HZ6/ref=twister_B07DKGFJGB", "value": "Lilac", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41BumJwQFYL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DKCDXZJ/ref=twister_B07DKGFJGB", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Q7esJsHKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DLGG4LG/ref=twister_B07DKGFJGB", "value": "Oatmeal Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31K04r2VIyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DKH6M3B/ref=twister_B07DKGFJGB", "value": "Olive", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EefABNmAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DKDM2FZ/ref=twister_B07DKGFJGB", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31022GR-kSL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B07DKGJR74", "category": "fashion", "query": "Women's Sweaters", "page": 1, "small_description_old": "Made from a thicker 100% cotton knit, this long-sleeve v-neck sweater features a comfortable, relaxed fit Defined ribbing at neckline, cuffs, and hem; slightly cropped length Start every outfit with Daily Ritual's range of elevated basics Model is 5'11\" and wearing a size Small; we recommend sizing down in this style if you prefer a closer to body fit"}, {"name": "XXBR Summer T-shirts for Mens, Soldier Short Sleeve 3D Street Vintage Printed Shirt Slim Fit Muscle Casual Tee Tops", "product_information": {"Item Weight\n \u200f": "\u200e\n 5.64 Ounces", "Item model number\n \u200f": "\u200e\n PDFME-220127", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n January 27, 2022", "Manufacturer\n \u200f": "\u200e\n XXVR", "ASIN\n \u200f": "\u200e\n B09R9ZZR82", "": ""}, "brand": "Brand: XXVR", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=XXVR", "full_description": "Hi! We've waited so long for you\uff0cWelcome to PDFME Store.Sincerity, enthusiasm and professional are our service tenet, you can create your own fashion in our store. I believe you can be satisfied with this experience!Gender: Mens / Teen BoysSeason: Spring / Summer / WinterOccasion: Daily, Sports, Workout, Holiday Vacation, Beach, Office, Casual, Party, Gym, StreetMaterial: Polyester, Cotton, SpandexStyle: Cool, Causal, Fashion, Outdoor LifeStyle, StylishFeatures:\u3010Material\u3011Material: 90% Polyester, 10% Cotton, super comfy, soft and skin friendly.\u3010Fashion Tops\u3011These trendy shirts tee tops are prefect with sports pants, shorts, jeans, sandals, sneakers for a trendy look;\u3010Occasions\u3011Fashion Spring Casual Shirts/Workout Athletic T-Shirt/Slim Fit Sports Zipper Tee Tops, bring you men's athletic performance shirts that deliver more flexibility and a wider range of motions. Suitable for daily wear, Running, cycling,gym,training or yoga,boxing, casual, street. Perfect gifts for your boyfriend, son, husband.\u3010Size\u3011Size: Asian Size; Before ordering, please carefully check the size chart; Please allow 1-2cm differences due to manual measurementSize Chart:Size: M Bust: 100cm/39.37'' Sleeve: 19cm/7.48'' Length: 67cm/26.38''\u00a0Size: L Bust: 104cm/40.94'' Sleeve: 19.5cm/7.68'' Length: 69cm/27.17''\u00a0Size: XL Bust: 108cm/42.52'' Sleeve: 20cm/7.87'' Length: 71cm/27.95''\u00a0Size: XXL Bust: 112cm/44.09'' Sleeve: 20.5cm/8.07'' Length: 73cm/28.74''\u00a0Size: XXXL Bust: 118cm/46.46'' Sleeve: 21cm/8.27'' Length: 75cm/29.53''", "pricing": "$8.98$11.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/51LcvCR84iL.jpg", "https://m.media-amazon.com/images/I/51htmswcEAL.jpg", "https://m.media-amazon.com/images/I/51X+pWk0ezL.jpg", "https://m.media-amazon.com/images/I/51Q-poAZuTL.jpg", "https://m.media-amazon.com/images/I/5193K+1bAEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Active \u203a Sets \u203a Active Tracksuits", "average_rating": "", "small_description": ["About shipping: Standard Shipping 7-21 Days,within 48 hours Shipping Out. ", "S=US 4-6, M=US 6-8, L=US 8-10, XL=US 10-12, XXL=US 12-14, 3XL=US 14-16. Our size is Asian Size, please try to choose one size larger when ordering. ", "Mens Spring T-shirts Short Sleeve Shirts Polo Button Down Summer Tshirt Tops Promotion Cheap Discount Clearance Hot Sale ", "spring graphic t-shirts/father's day casual shirts/summer zipper tee tops/button down shirt for mens/juniors/male/teens closure ", "\u2714 Today's Big Promotion \u2714 Buy 3 get 15% off, Buy 6 get 35% off Buy 10 get 50% off. ", "short sleeve tee mens,hooded short sleeve shirt,men's casual button down shirts,hawaiian shirts near me,navy blue button up shirt,vintage short sleeve shirts,short sleeve hawaiian shirt,red and white t shirt,athletic fit dress shirts,camo shirts for men,t shirt cotton,green collared shirt,camo short sleeve shirt,4x t shirts,woven shirt,mens waffle shirt,short sleeve work shirt,red and black flannel shirt,waffle thermal shirt,viscose shirt men,vertical striped shirt mens ", "flannel jackets mens,hooded flannels,white shirt with collar,tee s,button up shirts white,button down shirts white,shirts for men short sleeve,fall shirts for men,jeans shirt,check shirt,plain white t shirt,navy blue shirt,printed shirts for men,sports t shirts,short sleeve tops,red t shirt,branded shirts for men,plain black t shirt,button down,collar t shirt,crew neck t shirt,best shirts for men,olive green shirt,blue t shirt,light blue shirt,gym t shirt,sky blue shirt,half sleeve shirt , black graphic tees,mens rugby shirts,dashiki shirt,red shirt for men,merino t shirt,printed t shirts for men,charlie brown shirt,red short sleeve shirt,best flannel shirts,blue shirts,plain black shirt,brown t shirt,camouflage t shirt,mens oversized t shirt,slim fit shirts,cool shirts for men,striped short sleeve shirt,french cuff,mens shirts sale,white short sleeve,navy blue t shirt,merino wool t shirt,chinese collar shirts,vertical striped shirt,men's v neck t shirts,green shirt men, t shirts cotton short sleeve shirts white plain shirt tri blend t shirt mens longline t shirt striped short sleeve black and white graphic tee cool shirts plain tee shirts royal blue graphic tee no sleeve shirt muscle fit shirt t shirts mens type of shirt grey graphic tee green t shirt mens long tees vintage tees men grey shirt mens nirvana in utero shirt for men orange shirt mens style t shirt golf tee shirts black and red graphic tee white designer t shirt fish shirt 5x t shirts, button up t shirt black graphic t shirt 3xlt t shirts king shirt white designer shirt 6xl shirts black and white shirt graphic tees near me red white and blue shirts 6xl t shirts short sleeve hoodie black and yellow graphic tee black and white striped shirt mens orange t shirt mens crew shirts large tall t shirts 1776 t shirt mens mesh shirt green t shirts best graphic tees for men hooded t shirt mens mens green shirt white graphic t shirt navy blue short sleeve shirt men's"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09R9ZZR82/ref=twister_B09R9YHW82", "value": "152- Coffee", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51erecxWRmL.jpg"}, {"is_selected": true, "url": null, "value": "152- Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LcvCR84iL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9YFJFG/ref=twister_B09R9YHW82", "value": "153- Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MZ3IvZ1QL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9XGDJL/ref=twister_B09R9YHW82", "value": "153- Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41azQW7uVKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9Z87M6/ref=twister_B09R9YHW82", "value": "154- Coffee", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gz2fRl3TL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RB1BST1/ref=twister_B09R9YHW82", "value": "154- Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UtFciDe4L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RB4LXX1/ref=twister_B09R9YHW82", "value": "155- Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41cMmZzD4hL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9ZV87K/ref=twister_B09R9YHW82", "value": "155- Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/414Ux1yMcuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9YMG7L/ref=twister_B09R9YHW82", "value": "156- Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41df6uHSPJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9YQXRR/ref=twister_B09R9YHW82", "value": "156- Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41cUsdQtouL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9YPWNQ/ref=twister_B09R9YHW82", "value": "157- Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41oSTyqSnyL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9ZZ2QC/ref=twister_B09R9YHW82", "value": "157- Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41wmeJEMOGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09RB18SR7/ref=twister_B09R9YHW82", "value": "158- Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41jAC4hGpxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09R9YJN4R/ref=twister_B09R9YHW82", "value": "159- Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/418X1qDLV9L.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09R9ZF84H"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09R9YXTG5"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09R9YCM6R"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09R9XTHR7"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09R9XKKHN"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09R9YCM6R", "category": "fashion", "query": "Men's Henleys", "page": 121, "small_description_old": "About shipping: Standard Shipping 7-21 Days,within 48 hours Shipping Out. S=US 4-6, M=US 6-8, L=US 8-10, XL=US 10-12, XXL=US 12-14, 3XL=US 14-16. Our size is Asian Size, please try to choose one size larger when ordering. Mens Spring T-shirts Short Sleeve Shirts Polo Button Down Summer Tshirt Tops Promotion Cheap Discount Clearance Hot Sale spring graphic t-shirts/father's day casual shirts/summer zipper tee tops/button down shirt for mens/juniors/male/teens closure \u2714 Today's Big Promotion \u2714 Buy 3 get 15% off, Buy 6 get 35% off Buy 10 get 50% off. short sleeve tee mens,hooded short sleeve shirt,men's casual button down shirts,hawaiian shirts near me,navy blue button up shirt,vintage short sleeve shirts,short sleeve hawaiian shirt,red and white t shirt,athletic fit dress shirts,camo shirts for men,t shirt cotton,green collared shirt,camo short sleeve shirt,4x t shirts,woven shirt,mens waffle shirt,short sleeve work shirt,red and black flannel shirt,waffle thermal shirt,viscose shirt men,vertical striped shirt mens flannel jackets mens,hooded flannels,white shirt with collar,tee s,button up shirts white,button down shirts white,shirts for men short sleeve,fall shirts for men,jeans shirt,check shirt,plain white t shirt,navy blue shirt,printed shirts for men,sports t shirts,short sleeve tops,red t shirt,branded shirts for men,plain black t shirt,button down,collar t shirt,crew neck t shirt,best shirts for men,olive green shirt,blue t shirt,light blue shirt,gym t shirt,sky blue shirt,half sleeve shirt \n black graphic tees,mens rugby shirts,dashiki shirt,red shirt for men,merino t shirt,printed t shirts for men,charlie brown shirt,red short sleeve shirt,best flannel shirts,blue shirts,plain black shirt,brown t shirt,camouflage t shirt,mens oversized t shirt,slim fit shirts,cool shirts for men,striped short sleeve shirt,french cuff,mens shirts sale,white short sleeve,navy blue t shirt,merino wool t shirt,chinese collar shirts,vertical striped shirt,men's v neck t shirts,green shirt ment shirts cotton short sleeve shirts white plain shirt tri blend t shirt mens longline t shirt striped short sleeve black and white graphic tee cool shirts plain tee shirts royal blue graphic tee no sleeve shirt muscle fit shirt t shirts mens type of shirt grey graphic tee green t shirt mens long tees vintage tees men grey shirt mens nirvana in utero shirt for men orange shirt mens style t shirt golf tee shirts black and red graphic tee white designer t shirt fish shirt 5x t shirtsbutton up t shirt black graphic t shirt 3xlt t shirts king shirt white designer shirt 6xl shirts black and white shirt graphic tees near me red white and blue shirts 6xl t shirts short sleeve hoodie black and yellow graphic tee black and white striped shirt mens orange t shirt mens crew shirts large tall t shirts 1776 t shirt mens mesh shirt green t shirts best graphic tees for men hooded t shirt mens mens green shirt white graphic t shirt navy blue short sleeve shirt men'sShow more"}, {"name": "Trupedic x Mozaic -\u00a010 inch Queen Size Standard Futon Mattress (Frame Not Included) | Basic Midnight Black | Great for Kid's Rooms or Guest Areas - Many Color Options", "product_information": {"Item Weight": "\u200e69 pounds", "Product Dimensions": "\u200e80 x 60 x 10 inches", "Country of Origin": "\u200eUSA", "Item model number": "\u200eAMZ940001SF1", "ASIN": "B09B7ZKMVY", "Customer Reviews": {"ratings_count": null, "stars": "5.0 out of 5 stars"}, "Best Sellers Rank": ["#3,124,162 in Home & Kitchen (See Top 100 in Home & Kitchen) #655 in Futon Mattresses"], "Date First Available": "July 26, 2021"}, "brand": "Brand: Mozaic Company", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Mozaic+Company", "full_description": "Unlike other futon mattresses, Trupedic offers a wide variety of colors that is fit for any room! Our durable polyester fabric comes in colors that will work for a child's room, guest area, craft room, and so much more! Trupedic's futon mattresses are next level comfort. Our fill material includes CertiPUR-US certified foam wrapped in cotton, which is naturally breathable to reduce heat absorption. The Trupedic futon mattress will fit most futon frames on the market. Pair your favorite color with your favorite futon frame, and you are set for a great nights sleep! Life happens, and you may need to clean up a mess here and there. No fear! Our durable polyester fabric is easy to clean. Just spot clean with cold water and mild detergent. The cover is not removable. [WARRANTY] - All Trupedic items come with a limited 90 day manufacturer's warranty. Hurry, don\u2019t wait! Get the Trupedic experience NOW!\"", "pricing": "$272.10", "list_price": "", "availability_status": "Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/31Ha-dh1S6L.jpg", "https://m.media-amazon.com/images/I/41zfSkbH9qL.jpg", "https://m.media-amazon.com/images/I/31+ezBePRML.jpg", "https://m.media-amazon.com/images/I/21GsBjhxonL.jpg", "https://m.media-amazon.com/images/I/31EwCqUE69L.jpg", "https://m.media-amazon.com/images/I/210HI+FT9pL.jpg", "https://m.media-amazon.com/images/I/41x3CNZJfKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Futons \u203a Futon Mattresses", "average_rating": 5, "small_description": ["[UNIVERSAL USE] - Unlike other futon mattresses, Trupedic offers a wide variety of colors that is fit for any room! Our durable polyester fabric comes in colors that will work for a child's room, guest area, craft room, and so much more! ", "[UNMATCHED COMFORT LEVEL] - Trupedic's futon mattresses are next level comfort. Our fill material includes CertiPUR-US certified foam wrapped in cotton, which is naturally breathable to reduce heat absorption. ", "[FITS MOST FRAMES] - The Trupedic futon mattress will fit most futon frames on the market. Pair your favorite color with your favorite futon frame, and you are set for a great nights sleep! ", "[HOW TO TAKE CARE OF YOUR FUTON MATTRESS] - Life happens, and you may need to clean up a mess here and there. No fear! Our durable polyester fabric is easy to clean. Just spot clean with cold water and mild detergent. The cover is not removable. [WARRANTY] - All Trupedic items come with a limited 90 day manufacturer's warranty. Hurry, don\u2019t wait! Get the Trupedic experience NOW!\" ", "[WHAT IS INCLUDED] - One (1) Queen Size Standard Futon Mattress measuring 80 in x 60 in x 10 in. Frame is NOT included with purchase. "], "total_reviews": 1, "total_answered_questions": "", "model": "\u200eAMZ940001SF1", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09B827ZR5/ref=twister_B09L21VWYP", "value": "Basil Suede", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41ymR4DU2ML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08K99LJPC/ref=twister_B09L21VWYP", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31tsaZre+CL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09B7XFJ9C/ref=twister_B09L21VWYP?_encoding=UTF8&psc=1", "value": "Icey Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31tsaZre+CL.jpg"}, {"is_selected": true, "url": null, "value": "Midnight Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01D7VVeME8L.jpg"}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09B827ZR5/ref=twister_B09L21VWYP", "value": "Full", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Queen", "price_string": "", "price": 0, "image": null}], "Style": [{"is_selected": true, "url": null, "value": "Contemporary", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08K99LJPC/ref=twister_B09L21VWYP", "value": "Casual", "price_string": "", "price": 0, "image": null}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09B7ZKMVY", "category": "garden", "query": "Mattresses", "page": 29, "small_description_old": "About this item [UNIVERSAL USE] - Unlike other futon mattresses, Trupedic offers a wide variety of colors that is fit for any room! Our durable polyester fabric comes in colors that will work for a child's room, guest area, craft room, and so much more! [UNMATCHED COMFORT LEVEL] - Trupedic's futon mattresses are next level comfort. Our fill material includes CertiPUR-US certified foam wrapped in cotton, which is naturally breathable to reduce heat absorption. [FITS MOST FRAMES] - The Trupedic futon mattress will fit most futon frames on the market. Pair your favorite color with your favorite futon frame, and you are set for a great nights sleep! [HOW TO TAKE CARE OF YOUR FUTON MATTRESS] - Life happens, and you may need to clean up a mess here and there. No fear! Our durable polyester fabric is easy to clean. Just spot clean with cold water and mild detergent. The cover is not removable. [WARRANTY] - All Trupedic items come with a limited 90 day manufacturer's warranty. Hurry, don\u2019t wait! Get the Trupedic experience NOW!\" [WHAT IS INCLUDED] - One (1) Queen Size Standard Futon Mattress measuring 80 in x 60 in x 10 in. Frame is NOT included with purchase. \n \u203a See more product details"}, {"name": "Michael Kors Mix Media Full Zip", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 15.24 x 12.52 x 2.83 inches; 1.43 Pounds", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n February 22, 2021", "ASIN\n \u200f": "\u200e\n B08X4GMMZV", "Best Sellers Rank": "#2,096,630 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#41,695 in Men's Shirts", "#41,695 in Men's Shirts": ""}, "brand": "Visit the Michael Kors Store", "brand_url": "https://www.amazon.com/stores/MichaelKors/page/A9D4BA20-3814-439B-982C-F41837F1C8DF?ref_=ast_bln", "full_description": "", "pricing": "$68.23", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31pJqi3rV5S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": "", "small_description": ["Heather ", "Made in USA or Imported ", "Zipper closure "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Large", "asin": "B08X4GMMZV"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B08X4GPXSR"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B08X4F97ZR"}], "Color": [{"is_selected": true, "url": null, "value": "Opal Heather", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31pJqi3rV5S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08X4F7YDF/ref=twister_B08X78W365", "value": "Tide Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Vyzs5NxLS.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08X4GMMZV", "category": "fashion", "query": "Men's Dress Shirts", "page": 75, "small_description_old": "Heather Made in USA or Imported Zipper closure"}, {"name": "G710EM Glass Battery Back Cover Compatible with LG G7 ThinQ G710EM G710PM G710VMP G710ULM G710EMW G710EAW G710AWM G710N (Raspberry Rose)", "product_information": {"Product Dimensions": "7.48 x 3.15 x 0.59 inches", "Item Weight": "3.2 ounces", "ASIN": "B07S7D6RQC", "Item model number": "L569", "Customer Reviews": {"ratings_count": 16, "stars": "4.8 out of 5 stars"}, "Best Sellers Rank": ["#181,140 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #764 in Replacement Cell Phone Backs"], "Other display features": "Wireless", "Colour": "Raspberry Rose", "Manufacturer": "sunrise glow", "Date First Available": "May 24, 2019"}, "brand": "Visit the Sunrise glow Store", "brand_url": "https://www.amazon.com/stores/SUNRISE+GLOW/page/E0B471E5-B533-4AC6-B5DC-089FCE103F61?ref_=ast_bln", "full_description": "", "pricing": "$14.99", "list_price": "", "availability_quantity": 14, "availability_status": "Only 14 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41rFoiR7IKL.jpg", "https://m.media-amazon.com/images/I/41X2-xdXzUL.jpg", "https://m.media-amazon.com/images/I/31RRNib+ymL.jpg", "https://m.media-amazon.com/images/I/31abaX8DQ1L.jpg", "https://m.media-amazon.com/images/I/31RvMN6RGfL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Maintenance, Upkeep & Repairs \u203a Replacement Parts \u203a Back Covers", "average_rating": 4.8, "small_description": ["\u3010pay attention Please \u3011This is a glass battery back cover replacement part for LG G7 ThinQ does not include the battery. ", "\u3010 About the product \u3011This is a glass battery back cover replacement part for LG G7 ThinQ. It can be used to replace your damaged glass battery back cover ,Please check if the model is correct before purchase. ", "\u3010 About use\u3011The package contains tools. Please watch the operation video on YouTube before using it. If you have any questions, please contact us in time, we will reply you within 24 hours. ", "\u3010 About after-sales\u3011 If there are any non-human factors quality problems, the warranty period is 180 days. Please contact us in time, we will reply you within 24 hours. ", "\u3010 Disclaimer \u3011We are not responsible for the damage caused during the installation process. If you have any questions, please contact us in time, we will reply you within 24 hours. "], "total_reviews": 16, "total_answered_questions": "", "model": "L569", "customization_options": "", "seller_id": "A1XH8XQCCV83JG", "seller_name": "Niubeer", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07S7D6RQC", "category": "electronics", "query": "Video Glasses", "page": 118, "small_description_old": "About this item \u3010pay attention Please \u3011This is a glass battery back cover replacement part for LG G7 ThinQ does not include the battery. \u3010 About the product \u3011This is a glass battery back cover replacement part for LG G7 ThinQ. It can be used to replace your damaged glass battery back cover ,Please check if the model is correct before purchase. \u3010 About use\u3011The package contains tools. Please watch the operation video on YouTube before using it. If you have any questions, please contact us in time, we will reply you within 24 hours. \u3010 About after-sales\u3011 If there are any non-human factors quality problems, the warranty period is 180 days. Please contact us in time, we will reply you within 24 hours. \u3010 Disclaimer \u3011We are not responsible for the damage caused during the installation process. If you have any questions, please contact us in time, we will reply you within 24 hours."}, {"name": "YADSHENG Bed Frame Contemporary Veritcal Slat Accent Metal Home Bedroom Bed Frame Full Size Black Finish Beds (Color : Black, Size : One Size)", "product_information": {"Item Weight": "\u200e110.2 pounds", "Package Dimensions": "\u200e33.07 x 24.41 x 21.26 inches", "ASIN": "B083ZPYNHH", "Date First Available": "January 18, 2020"}, "brand": "Brand: YADSHENG", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=YADSHENG", "full_description": "Vintage design of headboard make a cozy and sweet sleeping environment in bedroom, guest room, dorm or hotel.In a beautiful transitional style, this black metal full size bedframe will set the tone in a master bedroom or guestroom. The elegant open arch accents along the headboard and footboard gives a contemporary upgrade to this classic design bringing an instant makeover to any bedroom. Constructed from sturdy metal tube with strong metal slats along the base for firm mattress support and no box spring required. Easy to assemble, you'll be ready for a restful sleep in your new bed in no time! Mattress is not included.Specifications- Materials: Metal- Weight Capacity: 400lbs", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41tWZPr61oL.jpg", "https://m.media-amazon.com/images/I/41yIKpqP8GL.jpg", "https://m.media-amazon.com/images/I/51NSdBOo7PL.jpg", "https://m.media-amazon.com/images/I/51R0kmytzXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Bed Frames", "average_rating": "", "small_description": ["Headboard and Footboard Design:The bed frame is designed with a headboard & footboard to meet your sufficient needs, bringing a warm and elegant feel to your sweet home. ", "- Bed frame is constructed from sturdy metal tube in a matte black finish. ", "- Fits standard full/double size mattress (not included). ", "- Strong metal slats along the entire base for a mattress, no box spring required. ", "- Suitable for any d\u00e9cor in a bedroom or guest room. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": null, "Color": null}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B083ZPYNHH", "category": "garden", "query": "Bedframes", "page": 355, "small_description_old": "About this item Headboard and Footboard Design:The bed frame is designed with a headboard & footboard to meet your sufficient needs, bringing a warm and elegant feel to your sweet home. - Bed frame is constructed from sturdy metal tube in a matte black finish. - Fits standard full/double size mattress (not included). - Strong metal slats along the entire base for a mattress, no box spring required. - Suitable for any d\u00e9cor in a bedroom or guest room. \n \u203a See more product details"}, {"name": "Robert Piguet Fracas Extrait De Parfum Spray for Women", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 3.39 x 2.56 x 2.52 inches; 3 Ounces", "UPC\n \u200f": "\u200e\n 838184002448", "ASIN\n \u200f": "\u200e\n B08QDRGTDY", "Country of Origin\n \u200f": "\u200e\n France", "Best Sellers Rank": "#417,079 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#6,178 in Women's Eau de Parfum", "#6,178 in Women's Eau de Parfum": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$150.00", "list_price": "", "availability_quantity": 10, "availability_status": "Only 10 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31v5heVn+xL.jpg", "https://m.media-amazon.com/images/I/510qIrRVc0L.jpg", "https://m.media-amazon.com/images/I/51EWZhKLYAL.jpg", "https://m.media-amazon.com/images/I/A1mMxRcKmjL.png", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance \u203a Women's \u203a Eau de Parfum", "average_rating": 4, "small_description": [""], "total_reviews": 8, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "0.25 Fl Oz", "price_string": "$150.00", "price": 150, "image": "https://m.media-amazon.com/images/I/31v5heVn+xL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B075V9R1RY/ref=twister_B08W2BR179?_encoding=UTF8&psc=1", "value": "1.7 Fl Oz", "price_string": "$400.00", "price": 400, "image": "https://m.media-amazon.com/images/I/31HPci6ww8L.jpg"}]}, "seller_id": "A2S5ZN23G9MYPP", "seller_name": "Robert Piguet Parfums", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B08QDRGTDY", "category": "beauty", "query": "Sets Fragrance", "page": 161, "small_description_old": ""}, {"name": "MTFY Cute Faux Fur Desk Chair for Girls Women, Comfy Fluffy Modern Home Office Chair with Wheels, Elegant Swivel Fuzzy Vanity Chair Makeup Arm Chair for Living Room, Bedroom", "product_information": {"Product Dimensions": "23 x 23 x 32 inches", "Manufacturer": "MTFY", "ASIN": "B08P8LRFZ4", "Customer Reviews": {"ratings_count": 11, "stars": "4.9 out of 5 stars"}, "Best Sellers Rank": ["#711,689 in Home & Kitchen (See Top 100 in Home & Kitchen) #1,519 in Home Office Desk Chairs"], "Date First Available": "November 28, 2020"}, "brand": "Brand: MTFY", "brand_url": "https://www.amazon.com/MTFY/b/ref=bl_dp_s_web_19835606011?ie=UTF8&node=19835606011&field-lbr_brands_browse-bin=MTFY", "full_description": "", "pricing": "$95.99", "list_price": "", "availability_status": "In stock. Usually ships within 4 to 5 days.", "images": ["https://m.media-amazon.com/images/I/51N6n2g7nNL.jpg", "https://m.media-amazon.com/images/I/41kyKIYnaUL.jpg", "https://m.media-amazon.com/images/I/51WweZsJ8GL.jpg", "https://m.media-amazon.com/images/I/513hsPvL1aL.jpg", "https://m.media-amazon.com/images/I/51tMaNnE1hL.jpg", "https://m.media-amazon.com/images/I/51gy1QWLgbL.jpg", "https://m.media-amazon.com/images/I/517HEHz7TqL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Chairs \u203a Home Office Desk Chairs", "average_rating": 4.9, "small_description": ["\u3010MODERN & ERGONOMIC DESK CHAIR\u3011- This desk chair perfectly blends modern and stylish elements which makes the desk chair complement a variety of home decoration styles like living room, office, or bedroom decor. With upholstered seat and ergonomi backrest/armrest, our ergonomic desk chair can perfectly fit the curve of human body and relieve back fatigue. ", "\u3010COMFORTABLE FAUX FUR CHAIR\u3011- Covered with soft and comfortable faux fur and filled with high density cotton, this modern office desk chair provides a soft touch and comfortable sitting. The wide base ensures extraordinary stability, which makes the computer chair strong enough to support up to 250 pounds. ", "\u3010HEIGHT ADJUSTABLE & 360 SWIVEL\u3011- The home office chair adopt high-quality gas cylinder to adjust the seat height to help you find the most comfortable position base on various needs. And the tilt mechanism allows you to lean back for extra comfort. The swivel desk chair has 5 mute universal wheels which is very convenient for movement. Smooth c ", "\u3010WIDELY USE DESK CHAIR\u3011- The modern desk chair with the furry cover and metal base adapts ideally to any office and home furniture and can be used in a variety of ways. It could be a computer chair, desk chair, office chair, leisure chair, armrest chair whatever you want to be. It also can a ", "\u3010EASY TO ASSEMBLE DESK CHAIR\u3011- The home office desk chair is easy to install, just spend 10 minutes to finish them. US Warehouse stock for quick delivery. We will provide you with professional customer service both before and after your purchase. Please contact us freely if you have any problem on this product. "], "total_reviews": 11, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QL1B4SR/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 1-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Ab67QVfrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QL18564/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 2-brown Pu", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/511l-5o7DfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QL25LG9/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 2-grey Fabric", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51yjUNdBQAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QKZDW4M/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 2-grey Pu", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UlM6jTJvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QKYZ498/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 2-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51R6QZ3VlWL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SD5WQ2Y/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 3-camel", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41GWNSR3vpL.jpg"}, {"is_selected": true, "url": null, "value": "Type 3-pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51N6n2g7nNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QKYXRT8/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 3-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51r6BpWrkEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QKZ6JXW/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 3-white3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412+NoaUpVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QKZY2QP/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 3-white4", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/516VFKuYhbL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SCQRYLW/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 3-white5", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/519mbIJnC6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QKZWSXX/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 4-yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51dAFb7sGYS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QL1ZDYH/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 6-grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51ei6ArWyzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QL22C1Z/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 6-navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51mfGy+654L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SCKLKTC/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 7-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31eMUYF3zfL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SDBGM55/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 7-fushia", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Qpom-nfnS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SCXWX98/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 7-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31wFcGuzUkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SDBJKDW/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 7-grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31HXtZxmroL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SD7HNHD/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 7-ivory", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/319eo6S2FuL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SCTW5LC/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 7-mustard", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31DUC+uTNBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SCXV8LL/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 7-navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31Bb-HJTOYL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09SDG5D1M/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type 7-pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31igDT1sydL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08GG7TCW9/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type21-bean Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Cn8QdykpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08GG722WB/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type21-grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51-ZROXqoGL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08M423L1N/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type22-beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4184xyydHxL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08M3XBBB1/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type22-navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51u+QQY+QaL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08M3ZP8CR/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type22-pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/519MC2t6-2L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TWPKTF3/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type24-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51rk8mKGVcL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TWQFGVG/ref=twister_B08GG7TZ1G?_encoding=UTF8&psc=1", "value": "Type24-orange", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LGd3tvN8L.jpg"}]}, "seller_id": "A1NA5ATA1CGHVJ", "seller_name": "huaxinstore", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08P8LRFZ4", "category": "garden", "query": "Home Office Chairs", "page": 97, "small_description_old": "About this item\n \n\u3010MODERN & ERGONOMIC DESK CHAIR\u3011- This desk chair perfectly blends modern and stylish elements which makes the desk chair complement a variety of home decoration styles like living room, office, or bedroom decor. With upholstered seat and ergonomi backrest/armrest, our ergonomic desk chair can perfectly fit the curve of human body and relieve back fatigue. \u3010COMFORTABLE FAUX FUR CHAIR\u3011- Covered with soft and comfortable faux fur and filled with high density cotton, this modern office desk chair provides a soft touch and comfortable sitting. The wide base ensures extraordinary stability, which makes the computer chair strong enough to support up to 250 pounds. \u3010HEIGHT ADJUSTABLE & 360 SWIVEL\u3011- The home office chair adopt high-quality gas cylinder to adjust the seat height to help you find the most comfortable position base on various needs. And the tilt mechanism allows you to lean back for extra comfort. The swivel desk chair has 5 mute universal wheels which is very convenient for movement. Smooth c \u3010WIDELY USE DESK CHAIR\u3011- The modern desk chair with the furry cover and metal base adapts ideally to any office and home furniture and can be used in a variety of ways. It could be a computer chair, desk chair, office chair, leisure chair, armrest chair whatever you want to be. It also can a \u3010EASY TO ASSEMBLE DESK CHAIR\u3011- The home office desk chair is easy to install, just spend 10 minutes to finish them. US Warehouse stock for quick delivery. We will provide you with professional customer service both before and after your purchase. Please contact us freely if you have any problem on this product."}, {"name": "100 Pieces -50 Peanut Butter Packets WITH 25 each Strawberry and Grape Jelly Individual Servings", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Package Dimensions\n \u200f": "\u200e\n 9.33 x 9.33 x 6.57 inches; 4.54 Pounds", "UPC\n \u200f": "\u200e\n 601202916368", "Manufacturer\n \u200f": "\u200e\n Smuckers JAK", "ASIN\n \u200f": "\u200e\n B07BHQ6ZFT", "Best Sellers Rank": "#34,887 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#150 in Peanut Butter #651 in Jams, Jellies & Sweet Spreads", "#150 in Peanut Butter": "", "#651 in Jams, Jellies & Sweet Spreads": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: JA Kitchens", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JA+Kitchens", "full_description": "100 packets of individual serving size condiments included in this package. Each box contains 50 servings of peanut butter, 25 packets of Strawberry Jelly, and 25 Packets of Grape Concord Jelly. Make a sandwich easily and quickly. Take these camping with you as they are shelf stable! Simply pack bread and the included scraper, and lunch is ready for the day! This specially packed box includes a small, white scraper that is designed specifically for removing the condiments from their packets and spreading it on your bread.", "pricing": "$36.97", "list_price": "", "availability_quantity": 15, "availability_status": "Only 15 left in stock - order soon. Only 15 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51q0whtKABL.jpg", "https://m.media-amazon.com/images/I/61qdboborJL.jpg", "https://m.media-amazon.com/images/I/51vT-EiNeqL.jpg", "https://m.media-amazon.com/images/I/310juSJbnTL.jpg", "https://m.media-amazon.com/images/I/51dpZ7cC31L.jpg", "https://m.media-amazon.com/images/I/51lxNBWh7yL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Nut & Seed Butters \u203a Peanut Butter", "average_rating": 4.5, "small_description": ["Included is the perfect size scraper/spreader to spread your jams and jellies! ", "Condiments are packed in a sturdy box to prevent damage during shipping. ", "Single servings of Peanut Butter and Jelly allow for easy sandwiches on the go. ", "Ideal for school lunches, travel, or to keep at work for a quick sandwich. ", "Individual servings of assorted packs allow for variety with the classic PB&J. "], "total_reviews": 225, "total_answered_questions": 6, "customization_options": "", "seller_id": "A14BRFEUEV81YJ", "seller_name": "Kneaded Kitchens", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B07BHQ6ZFT", "category": "grocery", "query": "Pantry Staples", "page": 40, "small_description_old": "About this item Included is the perfect size scraper/spreader to spread your jams and jellies! Condiments are packed in a sturdy box to prevent damage during shipping. Single servings of Peanut Butter and Jelly allow for easy sandwiches on the go. Ideal for school lunches, travel, or to keep at work for a quick sandwich. Individual servings of assorted packs allow for variety with the classic PB&J."}, {"name": "Axe Excite Deodorant Anti-perspirant Body Spray 5 Oz/150 Ml &.", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 1.97 x 1.97 x 5.63 inches; 4.73 Ounces", "Item model number\n \u200f": "\u200e\n CGAXE184", "Manufacturer\n \u200f": "\u200e\n Axe Dry", "ASIN\n \u200f": "\u200e\n B004Q5CYH2", "Best Sellers Rank": "#476,710 in Health & Household (See Top 100 in Health & Household)#4,001 in Deodorant", "#4,001 in Deodorant": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the AXE Store", "brand_url": "https://www.amazon.com/stores/Axe/page/754088FC-DF60-4B39-80C1-2B01D5EB486A?ref_=ast_bln", "full_description": "Axe Excite Deodorant Body Spray. 5 oz.", "pricing": "$8.98", "list_price": "", "availability_status": "In stock. Usually ships within 2 to 3 days.", "images": ["https://m.media-amazon.com/images/I/41XTshtYdzL.jpg", "https://m.media-amazon.com/images/I/41XTshtYdzL.jpg", "https://m.media-amazon.com/images/I/41XTshtYdzL.jpg", "https://m.media-amazon.com/images/I/41cgaFvqL8L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Deodorant", "average_rating": 4.4, "small_description": ["Fresh Smooth Antiperspirant Spray. ", "Stay Dry For 48 Hours. ", "Complete Deodorant Protection. "], "total_reviews": 52, "total_answered_questions": "", "customization_options": "", "seller_id": "A1CCMYZ90QAIFA", "seller_name": "G.S. Sales15", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B004Q5CYH2", "category": "beauty", "query": "Deodorants & Antiperspirants", "page": 46, "small_description_old": "About this item Axe Excite Deodorant Body Spray 5 oz. Fresh Smooth Antiperspirant Spray. Stay Dry For 48 Hours. Complete Deodorant Protection."}, {"name": "FAMILIFE Manicure Pedicure Kit Professional Nail Clippers Set Men and Women 12 Pieces and Nail Clippers Set 11 in 1 Stainless Steel Pedicure Tools", "product_information": {"ASIN\n \u200f": "\u200e\n B09JNRTFGQ", "Best Sellers Rank": "#785,997 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#1,824 in Manicure & Pedicure Kits", "#1,824 in Manicure & Pedicure Kits": ""}, "brand": "Visit the FAMILIFE Store", "brand_url": "https://www.amazon.com/stores/FAMILIFE/page/1125791C-77A1-4034-B53F-CB8BF04ADAD2?ref_=ast_bln", "full_description": "FAMILIFE Brown Men and Women Manicure SetFAMILIFE introduces a professional manicure set for Men and Women. Complete with 12 stainless steel manicure instruments, the manicure kit features immaculate sharpness and long-lasting durability. Brown PU leather case makes it an elegant accessory for your nail care regimen and a luxury gift for woman and men on Thanksgiving Day, Birthday, or Christmas", "pricing": "$42.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41fSG5OiXWL.jpg", "https://m.media-amazon.com/images/I/51Cfm3PuwZL.jpg", "https://m.media-amazon.com/images/I/51eOXzdeljL.jpg", "https://m.media-amazon.com/images/I/41CeZwiII2L.jpg", "https://m.media-amazon.com/images/I/51GG+YBUwAL.jpg", "https://m.media-amazon.com/images/I/51wqS+bCnzL.jpg", "https://m.media-amazon.com/images/I/41vqAZCyvDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Foot, Hand & Nail Care \u203a Tools & Accessories \u203a Sets & Kits", "average_rating": "", "small_description": ["11 pcs Manicure tools: FAMILIFE stainless steel manicure tools kit concludes 11 tools, 1x Fingernail Clipper, 1x Toenail Clipper, 1x Cuticle Nipper, 1x Obtuse Push Broach, 1X Nail File, 1x Eyebrow Tweezers, 1x V-Shape Push Stick, 1x Ingrown Toenail Clipper, 1xBeauty Scissors, 1xCuticle Knife, 1xEar Pick, equipped with care tools for hands, feet, and face ", "12 in 1 Manicure Pedicure Kit : Our stainless steel manicure tools are made of high-quality steel, which is strong and durable, and it will not fade, extremely hard, and sharp. The clippers are very comfortable in your hands and do not struggle on thick nails. A set of hand tools, pedicure tools and facial cleaning tools. ", "Mani Pedi Kit with Luxury Fashion Case: Our Stainless Steel Manicure Kit with a brown gorgeous leather case makes it a fashionable and popular gift for your relatives, friends, parents, and the husband; Lightweight in design makes it be your perfect travel partner or travel size toiletries, offering exceptional foot, hand, and facial grooming tools. ", "High Quality Manicure Kits : Our manicure and pedicure tools are made of professional Stainless Steel, which is hygiene, strong, durable, and minimize the risk of infections, perfect for all types of nails and trims. Easy to Ca ", "Best gifts for nail accessories : 12-piece grooming kit with exquisite gift box. It is the best gift for men and women, family and friends, such as Valentine's Day gifts and birthday gifts. Include instructions: Our nail clippers kit comes with instructions and logos for each tool, allowing you to more easily identify the purpose of the tool and more convenient for you "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2RELGW0SDTJXD", "seller_name": "Yangbo Trading", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09JNRTFGQ", "category": "beauty", "query": "Foot, Hand & Nail Care", "page": 154, "small_description_old": "11 pcs Manicure tools: FAMILIFE stainless steel manicure tools kit concludes 11 tools, 1x Fingernail Clipper, 1x Toenail Clipper, 1x Cuticle Nipper, 1x Obtuse Push Broach, 1X Nail File, 1x Eyebrow Tweezers, 1x V-Shape Push Stick, 1x Ingrown Toenail Clipper, 1xBeauty Scissors, 1xCuticle Knife, 1xEar Pick, equipped with care tools for hands, feet, and face 12 in 1 Manicure Pedicure Kit : Our stainless steel manicure tools are made of high-quality steel, which is strong and durable, and it will not fade, extremely hard, and sharp. The clippers are very comfortable in your hands and do not struggle on thick nails. A set of hand tools, pedicure tools and facial cleaning tools. Mani Pedi Kit with Luxury Fashion Case: Our Stainless Steel Manicure Kit with a brown gorgeous leather case makes it a fashionable and popular gift for your relatives, friends, parents, and the husband; Lightweight in design makes it be your perfect travel partner or travel size toiletries, offering exceptional foot, hand, and facial grooming tools. High Quality Manicure Kits : Our manicure and pedicure tools are made of professional Stainless Steel, which is hygiene, strong, durable, and minimize the risk of infections, perfect for all types of nails and trims. Easy to Ca Best gifts for nail accessories : 12-piece grooming kit with exquisite gift box. It is the best gift for men and women, family and friends, such as Valentine's Day gifts and birthday gifts. Include instructions: Our nail clippers kit comes with instructions and logos for each tool, allowing you to more easily identify the purpose of the tool and more convenient for you"}, {"name": "Hoomall Kids U-Shaped Toothbrush, Manual Toothbrush with U-Shaped Bristles Food Grade Silicone Toothbrush Head, 360\u00b0 Oral Teeth Cleaning Design for Toddlers and Children(Blue-Dinosaur\uff0c9545mm)", "product_information": {"Package Dimensions": "5.91 x 2.95 x 1.18 inches", "ASIN": "B09JT22PGY", "Best Sellers Rank": ["#789,631 in Health & Household (See Top 100 in Health & Household) #3,947 in Manual Toothbrushes"], "Item Weight": "1.13 ounces", "Manufacturer": "Hoomall", "Country of Origin": "China", "Date First Available": "October 19, 2021"}, "brand": "Visit the Hoomall Store", "brand_url": "https://www.amazon.com/stores/Hoomall/page/F53928D7-CA61-42BA-B9E6-355335B57EE6?ref_=ast_bln", "full_description": "\ud83c\udf40Product informationColor: pink , blue, white Material: Silicone Suitable for children: 2-8 years old\ud83c\udf40Notes:1. Due to manual measurement, please allow a difference of 1-3mm, thank you for your understanding!2. Please note that due to the difference of different monitors, the picture may not reflect the actual color of the product.\ud83c\udf40Set includes: 1x children's toothbrush\"\"", "pricing": "$10.95", "list_price": "", "availability_quantity": 3, "availability_status": "Only 3 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31UcTKpsAZL.jpg", "https://m.media-amazon.com/images/I/41vDKRrK5YL.jpg", "https://m.media-amazon.com/images/I/41wZIB0UG0L.jpg", "https://m.media-amazon.com/images/I/31F87IG1qTL.jpg", "https://m.media-amazon.com/images/I/51q6O33XzfL.jpg", "https://m.media-amazon.com/images/I/41SuSYvLAWL.jpg", "https://m.media-amazon.com/images/I/4111pNyYqpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothbrushes & Accessories \u203a Manual Toothbrushes", "average_rating": "", "small_description": ["\u2714 Elaborate design: This U-shaped brush head is made of high-quality silica gel. It can clean the brush head 360\u00b0 completely. It can clean teeth correctly without twisting the wrist. It is specially designed for children's delicate and sensitive teeth. ", "\u2714 Gentle teeth: This whitening massage toothbrush uses high-quality, soft bristles, which can gently stimulate and massage the gums while preventing overload operation. It is suitable for those who are too sensitive to brushing and have oral problems. ", "\u2714 Creative design: The ergonomic U-shaped brush head is very suitable for the shape of children's tooth structure, specially designed for children's delicate gums and sensitive teeth. And the soft brush head helps to enter hard-to-reach areas and achieve more thorough cleaning. ", "\u2714 Comfortable handle: The handle of this toothbrush is made of high-quality materials, which is sturdy and durable; it does not need to be strenuous, it can be held firmly when brushing, and it is designed for children, which is light and comfortable. ", "\u2714 Quality assurance service: If you have any questions about this toothbrush, please feel free to contact us. The email will be processed within 24 hours. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": null, "Color": [{"is_selected": true, "url": null, "value": "Blue-dinosaur", "price_string": "$10.95", "price": 10.95, "image": "https://m.media-amazon.com/images/I/31UcTKpsAZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JT3FK7Z/ref=twister_B09JT3LDLV?_encoding=UTF8&psc=1", "value": "Blue-donut", "price_string": "$10.95", "price": 10.95, "image": "https://m.media-amazon.com/images/I/41CCM2DE0sL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JT3H9DD/ref=twister_B09JT3LDLV?_encoding=UTF8&psc=1", "value": "Pink-dinosaur", "price_string": "$10.95", "price": 10.95, "image": "https://m.media-amazon.com/images/I/31810TiXmNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JT54SPV/ref=twister_B09JT3LDLV?_encoding=UTF8&psc=1", "value": "Pink-donut", "price_string": "$10.95", "price": 10.95, "image": "https://m.media-amazon.com/images/I/31MIAhjnrQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JT5VT18/ref=twister_B09JT3LDLV?_encoding=UTF8&psc=1", "value": "White-dinosaur", "price_string": "$10.95", "price": 10.95, "image": "https://m.media-amazon.com/images/I/313yuCL+yfL.jpg"}]}, "seller_id": "AJ9UH7MIPMFFE", "seller_name": "HOMELEYSC", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09JT3Z6JV", "category": "beauty", "query": "Children's Dental Care", "page": 156, "small_description_old": "About this item \u2714 Elaborate design: This U-shaped brush head is made of high-quality silica gel. It can clean the brush head 360\u00b0 completely. It can clean teeth correctly without twisting the wrist. It is specially designed for children's delicate and sensitive teeth. \u2714 Gentle teeth: This whitening massage toothbrush uses high-quality, soft bristles, which can gently stimulate and massage the gums while preventing overload operation. It is suitable for those who are too sensitive to brushing and have oral problems. \u2714 Creative design: The ergonomic U-shaped brush head is very suitable for the shape of children's tooth structure, specially designed for children's delicate gums and sensitive teeth. And the soft brush head helps to enter hard-to-reach areas and achieve more thorough cleaning. \u2714 Comfortable handle: The handle of this toothbrush is made of high-quality materials, which is sturdy and durable; it does not need to be strenuous, it can be held firmly when brushing, and it is designed for children, which is light and comfortable. \u2714 Quality assurance service: If you have any questions about this toothbrush, please feel free to contact us. The email will be processed within 24 hours."}, {"name": "Dead End Adult Comical Boxer Shorts and Tote - Multi-Pack", "product_information": {"Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n April 7, 2021", "ASIN\n \u200f": "\u200e\n B0921YZ2DZ", "Best Sellers Rank": "#3,437,252 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,754 in Men's Boxer Shorts", "#1,754 in Men's Boxer Shorts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Lazy One Store", "brand_url": "https://www.amazon.com/stores/LazyOne/page/1DF90DC5-51D9-41E7-9F4E-96992E42C8CA?ref_=ast_bln", "full_description": "Dead End Adult Comical Boxer Shorts and Tote - Multi-Pack", "pricing": "$15.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41ulWPdV8JL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a Boxers", "average_rating": 4.9, "small_description": ["Set Includes: Boxer Shorts and 13\"x14\" Reusable Tote ", "Dead End Print with Skeleton and Volture Comical Design ", "Elastic waistband ", "Button Fly ", "For Both Men and Women "], "total_reviews": 5, "total_answered_questions": "", "customization_options": {"Size": null, "Color": null}, "seller_id": "A3RQ2JQOONCGQ2", "seller_name": "BAKK Enterprise", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B01GEVN2HG", "category": "fashion", "query": "Men's Underwear", "page": 196, "small_description_old": "100% Cotton Imported Machine Wash Set Includes: Boxer Shorts and 13\"x14\" Reusable Tote Dead End Print with Skeleton and Volture Comical Design Elastic waistband Button Fly For Both Men and Women"}, {"name": "Burband Womens High Waist Bike Shorts Tummy Control Workout Yoga Pants Running Exercise Running Shorts with Side Pockets", "product_information": {"Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n January 13, 2022", "Manufacturer\n \u200f": "\u200e\n Burband", "ASIN\n \u200f": "\u200e\n B09QCSCTBL", "Best Sellers Rank": "#902,363 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#1,363 in Women's Athletic Swimwear #3,080 in Women's Athletic Shorts #5,463 in Women's Cycling Clothing", "#1,363 in Women's Athletic Swimwear": "", "#3,080 in Women's Athletic Shorts": "", "#5,463 in Women's Cycling Clothing": ""}, "brand": "Brand: Burband", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=Burband", "full_description": "\u00b7Material: High-quality Cotton, Polyester,Spandex, Soft/ Lightweight/Breathable/Stretchy fabric, make you feel comfortable when wearing. \u00b7Features: Burband Women's pants combines comfort and beauty style comfort fit and performance high rise curvy mid-rise slim destroyed flare elastic waist bell bottom pants bootcut jean high waisted-rise stretch skinny ripped distressed pull-on leggings. \u00b7Occasion: Suitable for a casual everyday look OOTD and any occasions especially for office parties clubbing cossplay office for work dating yoga dance school vacation. Great for winter summer fall spring. \u00b7Burband Womens Pants are so easy to care, machine wash in cold water or hand wash. Summer shorts beach shorts denim jeans shorts active shorts plus size shorts comfy shorts.You can pair this tops with jackets jeans shorts and joggers. \u00b7Note: Size runs small,Please check the size chart before purchase and choose 1-2 size up. Please allow 0.5-1.0 inches measuring deviation due to manual measurement and different stretch of fabrics \u00b7womens pants for work bell bottom jeans flare jeans summer shorts denim shorts linen pants yoga pantsworkout leggings pants jeans denim joggers capris shorts slacks pants for work high waist relaxed fit linen plus size loose fit yoga pants skinny jeans ripped. womens comfy casual pajama pants floral print drawstring palazzo lounge pants wide leg stretch comfort office pants boot cut super comfy pull-on twill pants capri bermuda relaxed stretch twill pants casual comfy solid tie dye wide leg regular fit straight leg pants bootcut elastic waist pants jersey. \u00b7Others:womens destroyed flare jeans elastic waist bell bottom raw hem denim pants modern bootcut jean high waisted-rise stretch destroyed ripped distressed jeans skinny jeggings plus size totally shaping bootcut jeans ripped slim fit jeans boyfriend distressed ankle denim pants womens fringe cuff boyfriend jean", "pricing": "$6.82", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/31IBFWvlQtL.jpg", "https://m.media-amazon.com/images/I/317t0WDkq7L.jpg", "https://m.media-amazon.com/images/I/310KD08WSTL.jpg", "https://m.media-amazon.com/images/I/51rZBHLy0NL.jpg", "https://m.media-amazon.com/images/I/41IiBPVWnkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Shorts", "average_rating": "", "small_description": ["\u3010Design\u3011- Soft, lightweight, breathable. Burband Women's pants combines comfort and beauty style comfort fit performance high rise curvy mid-rise slim destroyed flare elastic waist bell bottom pants bootcut jean high waisted-rise stretch skinny ripped distressed pull-on leggings. ", "\u3010Pair with\u3011- This lounge pants are perfect to pair with short sleeve t-shirt,summer tank tops,jackets,cardigan, jeans, shorts,casual sweatpants,suitable for spring,summer,autumn. ", "\u3010Occasion\u3011- The top is ideal for casual activities and work occasion, such as dating, clubbing, working, traveling, homewear, beach Etc. closure ", "\u3010Garment Care\u3011- Wash Recommended With Cold Water/Do Not Bleach/Hang Or Line Dry/Wash. ", "\u3010Feature\u3011- Casual baggy wide leg elastic waist straight leg skinny leg loose fitting high waist elastic waist drawstring bootcut deep pockets joggers lounge flannel pants yoga traning workout pants running pants outdoor lounge sets pants pajamas plaid pants sleep night lounge pants workout leggings for women. ", "\u3010Feature\u3011- Burband womens pants cotton linen capri flannel sleepwear family matching pajamas running workout jogger lounge sweatpants palazzo pajamas pants bell bottoms denim pants flare jeans skinny jeans wide leg pants cargo pants ripped jeans with holes. ", "christmas pajamas for family christmas pj's matching sets for women men with cartoon printed top and pants 2 pieces matching family christmas pajamas holiday sleepwear jammies clothes xmas printed and plaid long sleeve pjs set family christmas pjs matching sets christmas pajamas for family plaid sleepwear pants matching xmas pjs for family matching christmas pajamas for family funny holiday cute print tops and plaid pants xmas sleepwear pjs set ugly christmas sweaters for women , waist plaid ski rain waterproof 2020 mens jackets coats hoodie lightweight causal fashion butterfly ruffled swing off shoulder polka dot classic lightweight plaid sleeveless loose fit buttons tunic tight slim shirt mens long sleeve shirts casual shirts for men stylish windbreaker slim fit winter fur hood outwear motorcycle rain sport jackets tops for women men graphic tees shirts, mens flannel plaid shirts button down long sleeve casual shirts fleece jogger pants for men- mens sweatpants with adjustable drawstring for workout running unisex adults fashion off striped hoodie sweatshirt hip hop pullover sweater shirt trendy hooded top men's turtleneck t-shirt slim fit long sleeve basic thermal casual pullover shirts plain sweatshirts for men crewneck long sleeve with color block strips designs fall clothes men's crewneck sweater"], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31IBFWvlQtL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCSY1CF/ref=twister_B09QCS4VKW", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412wUeRkSLL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCVZ7F8/ref=twister_B09QCS4VKW", "value": "Dark Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31mh8tqoxoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCT73RP/ref=twister_B09QCS4VKW", "value": "Gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/317nHr5vqsL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCTT3BZ/ref=twister_B09QCS4VKW", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31d6Mq2cf6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCSV5F1/ref=twister_B09QCS4VKW", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31zBJ2y0rzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QCTBYFM/ref=twister_B09QCS4VKW", "value": "Silver", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51F8oH9Ko0L.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09QCSCTBL"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09QCVCYVY"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09QCSFSK5"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09QCT3MYV"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09QCS5GYQ"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QCVCYVY", "category": "fashion", "query": "Women's Shorts", "page": 76, "small_description_old": "\u3010Design\u3011- Soft, lightweight, breathable. Burband Women's pants combines comfort and beauty style comfort fit performance high rise curvy mid-rise slim destroyed flare elastic waist bell bottom pants bootcut jean high waisted-rise stretch skinny ripped distressed pull-on leggings. \u3010Pair with\u3011- This lounge pants are perfect to pair with short sleeve t-shirt,summer tank tops,jackets,cardigan, jeans, shorts,casual sweatpants,suitable for spring,summer,autumn. \u3010Occasion\u3011- The top is ideal for casual activities and work occasion, such as dating, clubbing, working, traveling, homewear, beach Etc. closure \u3010Garment Care\u3011- Wash Recommended With Cold Water/Do Not Bleach/Hang Or Line Dry/Wash. \u3010Feature\u3011- Casual baggy wide leg elastic waist straight leg skinny leg loose fitting high waist elastic waist drawstring bootcut deep pockets joggers lounge flannel pants yoga traning workout pants running pants outdoor lounge sets pants pajamas plaid pants sleep night lounge pants workout leggings for women. \u3010Feature\u3011- Burband womens pants cotton linen capri flannel sleepwear family matching pajamas running workout jogger lounge sweatpants palazzo pajamas pants bell bottoms denim pants flare jeans skinny jeans wide leg pants cargo pants ripped jeans with holes. christmas pajamas for family christmas pj's matching sets for women men with cartoon printed top and pants 2 pieces matching family christmas pajamas holiday sleepwear jammies clothes xmas printed and plaid long sleeve pjs set family christmas pjs matching sets christmas pajamas for family plaid sleepwear pants matching xmas pjs for family matching christmas pajamas for family funny holiday cute print tops and plaid pants xmas sleepwear pjs set ugly christmas sweaters for women \n waist plaid ski rain waterproof 2020 mens jackets coats hoodie lightweight causal fashion butterfly ruffled swing off shoulder polka dot classic lightweight plaid sleeveless loose fit buttons tunic tight slim shirt mens long sleeve shirts casual shirts for men stylish windbreaker slim fit winter fur hood outwear motorcycle rain sport jackets tops for women men graphic tees shirtsmens flannel plaid shirts button down long sleeve casual shirts fleece jogger pants for men- mens sweatpants with adjustable drawstring for workout running unisex adults fashion off striped hoodie sweatshirt hip hop pullover sweater shirt trendy hooded top men's turtleneck t-shirt slim fit long sleeve basic thermal casual pullover shirts plain sweatshirts for men crewneck long sleeve with color block strips designs fall clothes men's crewneck sweaterShow more"}, {"name": "Nikon 50mm f/1.8G AF-S NIKKOR Lens U.S.A. Warranty with Free 58mm Filter Kit (UV/CPL/ND2)", "product_information": {"Product Dimensions": "6.8 x 5.1 x 5 inches", "Item Weight": "2.25 pounds", "ASIN": "B006G5CYAM", "Item model number": "50mm f/1.8G AF-S", "Customer Reviews": {"ratings_count": 33, "stars": "4.5 out of 5 stars"}, "Best Sellers Rank": ["#399 in Digital Camera Accessory Kits"], "Date First Available": "May 1, 2020", "Manufacturer": "Nikon"}, "brand": "Visit the Nikon Store", "brand_url": "https://www.amazon.com/stores/Nikon/page/A0A04D76-D946-42B4-A00A-7B9D20E8B166?ref_=ast_bln", "full_description": "Your DSLR's best friend A must-have for standard portraits and everyday use, the AF-S NIKKOR 50mm f/1.8G is a lens that will absolutely surprise you. The 50mm focal length (75mm equivalent on DX format cameras) with a fast f/1.8 aperture allows you to capture stunning images with a shallow depth-of-field, letting your subjects stand out from their backgrounds. The AF-S NIKKOR 50mm f/1.8G may soon become your new favorite lens. Brilliance In Any Light - Get astonishing low light results This lightweight standard lens is a great travel companion because you never know when a beautiful, sunny day will turn cloudy and rainy. With its fast f/1.8 aperture, the AF-S NIKKOR 50mm f/1.8G will capture even low-light situations with stunning brilliance. Beautiful Background Blur - Achieve more natural depth of field Whether you're shooting portraits, food or nature - indoors or outdoors - the AF-S NIKKOR 50mm f/1.8G renders a beautiful, natural background blur (Bokeh) at its wider aperture settings. And its 50mm focal length is perfect for creating natural perspective in your photographs. Capture Every Detail - Shoot tack-sharp portraits every time Nikon's Super Integrated Coating (SIC) enhances light transmission efficiency and offers superior color consistency and reduced flare, while the AF-S NIKKOR 50mm f/1.8G's Aspherical Lens Element (AS) virtually eliminates coma and other types of aberrations, eve", "pricing": "$216.95", "list_price": "", "availability_quantity": 7, "availability_status": "Only 7 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31D1ljxOBvL.jpg", "https://m.media-amazon.com/images/I/51r5V-BQ5aL.jpg", "https://m.media-amazon.com/images/I/519X2n0miQL.jpg", "https://m.media-amazon.com/images/I/313VnaClBwL.jpg", "https://m.media-amazon.com/images/I/4185tqjOR9L.jpg", "https://m.media-amazon.com/images/I/41hBFh5TQ-L.jpg", "https://m.media-amazon.com/images/I/21osBtw-ShL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Digital Camera Accessories \u203a Accessory Kits", "average_rating": 4.5, "small_description": ["Nikon AF-S NIKKOR 50mm f/1.8G Lens - LC-58C 58mm Lens Cap - LF-4 Rear Lens Cap - HB-47 Bayonet Lens Hood for AF-S 50mm f/1.4G - CL-1013 Soft Lens Case - Nikon 5 Year USA Warranty (1 Year International + 4 Year USA Extension) - Bundle Includes: - 58mm Filter Kit (UV/CPL/ND2) ", "This updated classic with a fast maximum aperture is ideal for everyday shooting, perfect in low lighting situations and great for producing images with beautiful background blur (Bokeh) ", "The AF-S NIKKOR 50mm f/1.8G includes Silent Wave Motor technology (SWM) for fast and precise autofocus, M/A Focus Mode Switch for seamless changes between manual and autofocus operation and an aspherical lens element for outstanding optical performance with high contrast ", "This lightweight standard lens is a great travel companion because you never know when a beautiful, sunny day will turn cloudy and rainy. With its fast f/1.8 aperture, the AF-S NIKKOR 50mm f/1.8G will capture even low-light situations with stunning brilliance ", "Whether you're shooting portraits, food or nature-indoors or outdoors-the AF-S NIKKOR 50mm f/1.8G renders a beautiful, natural background blur (Bokeh) at its wider aperture settings "], "total_reviews": 33, "total_answered_questions": 7, "model": "50mm f/1.8G AF-S", "customization_options": "", "seller_id": "A17MC6HOH9AVE6", "seller_name": "Adorama", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B006G5CYAM", "category": "electronics", "query": "Lenses", "page": 56, "small_description_old": "About this item\n \nNikon AF-S NIKKOR 50mm f/1.8G Lens - LC-58C 58mm Lens Cap - LF-4 Rear Lens Cap - HB-47 Bayonet Lens Hood for AF-S 50mm f/1.4G - CL-1013 Soft Lens Case - Nikon 5 Year USA Warranty (1 Year International + 4 Year USA Extension) - Bundle Includes: - 58mm Filter Kit (UV/CPL/ND2) This updated classic with a fast maximum aperture is ideal for everyday shooting, perfect in low lighting situations and great for producing images with beautiful background blur (Bokeh) The AF-S NIKKOR 50mm f/1.8G includes Silent Wave Motor technology (SWM) for fast and precise autofocus, M/A Focus Mode Switch for seamless changes between manual and autofocus operation and an aspherical lens element for outstanding optical performance with high contrast This lightweight standard lens is a great travel companion because you never know when a beautiful, sunny day will turn cloudy and rainy. With its fast f/1.8 aperture, the AF-S NIKKOR 50mm f/1.8G will capture even low-light situations with stunning brilliance Whether you're shooting portraits, food or nature-indoors or outdoors-the AF-S NIKKOR 50mm f/1.8G renders a beautiful, natural background blur (Bokeh) at its wider aperture settings"}, {"name": "Cubes Storage Organizer DIY Plastic Stackable Shelves Multifunctional Modular Bookcase Closet Cabinet Interlocking Plastic Cubes with Divider Design Modular Cabinet for Books Clothes Toys Artworks", "product_information": {"Product Dimensions": "35.43 x 11.81 x 35.43 inches", "Item Weight": "8.8 pounds", "Department": "Organizer Wardrobe Closet", "Manufacturer": "Houssem", "ASIN": "B09J4RH84G", "Country of Origin": "China", "material_composition": "PP & ABS & Metal"}, "brand": "Brand: Houssem", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Houssem", "full_description": "Specification:Name: ShelfMaterial: PP combination sheet, ABS buckle, iron wire frame.Color: black, transparent whiteThe product size is divided into 4 types: 6 grids, 9 grids, 12 grids, 16 grids (without door, refer to the picture)Single piece combination piece size: about 30x30cm/11.81x11.81inch - 6 grid: product size: 60 x 30 x 90cm(LxWxH), Net weight: 2.6kg packing size: 37x32x9cm/14.57x12.60x3.54inch, gross weight: 3kg - 9 grids: product size: 90 x 30 x 90cm(LxWxH), Net weight: 3.6kgpacking size: 37x32x11cm/14.57x12.60x4.33inch, gross weight: 4kg - 12 grid: product size: 90 x 30 x 120cm(LxWxH), Net weight: 4.6kg packing size: 37x32x14cm/14.57x12.60x5.51inch, gross weight: 5kg - 16 grid: product size: 120 x 30 x 120cm(LxWxH), Net weight: 6.6kg packing size: 37x32x19cm/14.57x12.60x7.48inch, gross weight: 7kgThe packaging must pass the international carton drop test.Packing List:1 x Organizer Wardrobe Closet1 x User Manual", "pricing": "$15.99", "list_price": "", "availability_quantity": 19, "availability_status": "Only 19 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/412+rnm7wCL.jpg", "https://m.media-amazon.com/images/I/41q1Io90akL.jpg", "https://m.media-amazon.com/images/I/41HUvdcUO4L.jpg", "https://m.media-amazon.com/images/I/41MKvHmPQxL.jpg", "https://m.media-amazon.com/images/I/41D5-oXOtHL.jpg", "https://m.media-amazon.com/images/I/51w+7NKza6L.jpg", "https://m.media-amazon.com/images/I/41Wm3Jg-HrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Storage & Organization \u203a Clothing & Closet Storage \u203a Mounted Closet Systems", "average_rating": "", "small_description": ["\u2605Easy Installation: We have configured the rubber mallet, which is better than the ordinary wooden hammers on the market, making your installation easier. Includes the accessories of the product itself, The ABS connectors and PP plastic plates, giving you multi-way DIY assembly methods. you can combine them into different shapes to fit your space. We have attached detailed instructions to the product, we hope you can read the product description carefully before assembly. ", "\u2605DIY Storage Cubes: Made of PP plastic, the sheet is waterproof, moisture-proof and anti-dust.We have 6 cubes, 9 cubes, 12 cubes to meet any storage needs of you. ", "\u2605Prevent Dumping and Ensure Safe Use: Anti-toppling fittings are provided to fix it on the wall for safety, loading capacity of each grid: 10 lbs. Even if you have children at home, you don't need to worry about the safety of using Storage Cubes . ", "\u2605Multiple Ways of Using: Not only can be placed anywhere in your house or office, but also can be used as a partition to provide the private space for you , You can store all sort of items as you want: books, clothes, toys, artworks, decorations and more. ", "\u2605After-sale Guarantee: Shipped from US, You can receive package within 3-5 Business Days. If you have any problems with the kitchen sink you can feel free to contact us and we are happy to solve them for you in any time "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09J4RT7KG/ref=twister_B09J4RCDFF?_encoding=UTF8&psc=1", "value": "Black 9-Cube", "price_string": "$16.99", "price": 16.99, "image": null}, {"is_selected": true, "url": null, "value": "White 9-Cube", "price_string": "$15.99", "price": 15.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J4RJ8T3/ref=twister_B09J4RCDFF?_encoding=UTF8&psc=1", "value": "Black 12-Cube", "price_string": "$25.99", "price": 25.99, "image": null}]}, "seller_id": "A5TKNQP907K0R", "seller_name": "Middays", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09J4RH84G", "category": "garden", "query": "Book Cases", "page": 198, "small_description_old": "\u2605Easy Installation: We have configured the rubber mallet, which is better than the ordinary wooden hammers on the market, making your installation easier. Includes the accessories of the product itself, The ABS connectors and PP plastic plates, giving you multi-way DIY assembly methods. you can combine them into different shapes to fit your space. We have attached detailed instructions to the product, we hope you can read the product description carefully before assembly. \u2605DIY Storage Cubes: Made of PP plastic, the sheet is waterproof, moisture-proof and anti-dust.We have 6 cubes, 9 cubes, 12 cubes to meet any storage needs of you. \u2605Prevent Dumping and Ensure Safe Use: Anti-toppling fittings are provided to fix it on the wall for safety, loading capacity of each grid: 10 lbs. Even if you have children at home, you don't need to worry about the safety of using Storage Cubes . \u2605Multiple Ways of Using: Not only can be placed anywhere in your house or office, but also can be used as a partition to provide the private space for you , You can store all sort of items as you want: books, clothes, toys, artworks, decorations and more. \u2605After-sale Guarantee: Shipped from US, You can receive package within 3-5 Business Days. If you have any problems with the kitchen sink you can feel free to contact us and we are happy to solve them for you in any time"}, {"name": "Valentine\u2018s Day Love Blue Throw Pillow Covers 18x18 for Home Decor- Love Heart Flower - Modern Linen Cushion Cover Square Home Pillowcase Love Theme Decorative Pillow Covers for Sofa Bed Chair Car", "product_information": {"Package Dimensions": "8.98 x 8.9 x 0.87 inches", "Item Weight": "2.89 ounces", "Manufacturer": "Belamour", "ASIN": "B08QVDNJC7", "Customer Reviews": {"ratings_count": 3, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#2,124,979 in Home & Kitchen (See Top 100 in Home & Kitchen) #33,646 in Throw Pillow Covers"], "Batteries Required?": "No"}, "brand": "Brand: Hying", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Hying", "full_description": "Heart Flower Valentine\u2018s Day Throw Pillow Covers (Blue). Modern Cushion Cover Square Indoor Outdoor Home Pillowcase Decoration for Sofa Bed Chair Car, 18 x 18 Inch Type: Valentines Day Pillow Covers/Shell, Farmhouse Pillow Covers, Pillowcase of Love Theme Size: 18\" x 18\", compatible with 18\" x 18\" pillow inserts. Pattern: As the picture shows Quantity: 1 Piece of Pillow Cover of Love Theme (18\u201d x 18\u201d) Occasion: Perfect valentines home decorations for your sofa, couch, bench, patio, living room, car ect indoors and outdoors. Cutest home d\u00e9cor for you and your lover. This series of pillow covers is not only suitable for Valentine's day, but also suitable for any season and holiday. Hideen Zipper: Premium quality concealed zipper for an elegant look and easily insert the pillows. Tight zigzag over-lock stitches to avoid fraying and ripping. Material and No Inserts: Made of soft and durable cotton linen, with vibrant pictures. Decor your home with such a cute thing! Add warm touch to your home decor. Tips: 1.There may be dimension errors to some degree due to manual measurement. 2.There are only 1 piece of pillow covers and the inserts are not included! 3.There may be some slight differences between the color tone of the pictures and that of the actual items due to lighting effects, monitor's brightness and contrast 4.We suggest hand Wash or machine wash in cold water Separately, gently cycle only, Dot Not Bleach, Tumble Dry Low, Do Not Iron.", "pricing": "$7.99", "list_price": "", "availability_quantity": 13, "availability_status": "Only 13 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41OJE+O61rL.jpg", "https://m.media-amazon.com/images/I/51UVRkZ4SQL.jpg", "https://m.media-amazon.com/images/I/41UO+ZcZ8dL.jpg", "https://m.media-amazon.com/images/I/41NqhKg3h4L.jpg", "https://m.media-amazon.com/images/I/41sArE5ud-L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": 4.6, "small_description": ["\u3010Package Includes\u30111 Piece of Love Throw Pillow Cover 18 x 18 (Heart shape Flowers) Inches around (45cm x 45cm), 1~2 cm deviation is allowed due to hand-cutting and sewing.No Insert or Filler.Pattern is only on the front and the other side is natural burlap color. ", "\u3010Material\u3011Valentine's day Love themed decoration pillowcase is made of cotton linen, keep natural texture also soft, durable, comfortable and very healthy and eco-friendly. ", "\u3010 Unique Valentine's Day Decorations Pillows Covers Home Decor\u3011Heart Shape Flowers pattern clearly printed on the throw pillow covers, vivid colors is just as picture shows. Perfect valentines home decorations for living room, couch, sofa, patio bench, loveseat, car ect indoor and outdoor. This series of pillow covers is not only suitable for Valentine's day, but also suitable for any season and holiday. ", "\u3010Convenient & Durable\u3011This pillow cover has an invisible zipper. Easy to put your pillow insert on/ off. Washable in the cold water, dry it like other daily things, color will keep freash new, would not fade. ", "\u3010Valentine's Day Love Pillow Cover\u3011Use this series of romantic love design Valentines Day Love theme pattern helps you creating perfect warm atmosphere and get a lot of compliments. Our creative valentine's day decorative pillow covers also would be a perfect home decor gift for family/ friends. "], "total_reviews": 3, "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Love Heart Flower", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/41OJE+O61rL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08QV7HRHH/ref=twister_B08V1R3ZFG?_encoding=UTF8&psc=1", "value": "Love You Forever", "price_string": "$7.99", "price": 7.99, "image": "https://m.media-amazon.com/images/I/51RsoAZpZ7L.jpg"}]}, "seller_id": "A2P4FKWZI12DOJ", "seller_name": "Belamour", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08QVDNJC7", "category": "garden", "query": "Decorative Pillows", "page": 277, "small_description_old": "About this item \u3010Package Includes\u30111 Piece of Love Throw Pillow Cover 18 x 18 (Heart shape Flowers) Inches around (45cm x 45cm), 1~2 cm deviation is allowed due to hand-cutting and sewing.No Insert or Filler.Pattern is only on the front and the other side is natural burlap color. \u3010Material\u3011Valentine's day Love themed decoration pillowcase is made of cotton linen, keep natural texture also soft, durable, comfortable and very healthy and eco-friendly. \u3010 Unique Valentine's Day Decorations Pillows Covers Home Decor\u3011Heart Shape Flowers pattern clearly printed on the throw pillow covers, vivid colors is just as picture shows. Perfect valentines home decorations for living room, couch, sofa, patio bench, loveseat, car ect indoor and outdoor. This series of pillow covers is not only suitable for Valentine's day, but also suitable for any season and holiday. \u3010Convenient & Durable\u3011This pillow cover has an invisible zipper. Easy to put your pillow insert on/ off. Washable in the cold water, dry it like other daily things, color will keep freash new, would not fade. \u3010Valentine's Day Love Pillow Cover\u3011Use this series of romantic love design Valentines Day Love theme pattern helps you creating perfect warm atmosphere and get a lot of compliments. Our creative valentine's day decorative pillow covers also would be a perfect home decor gift for family/ friends."}, {"name": "KCB Karachi Biscuit 200 Grams", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 6 x 2 x 4 inches; 8.8 Ounces", "UPC\n \u200f": "\u200e\n 812042002443", "Manufacturer\n \u200f": "\u200e\n KCB", "ASIN\n \u200f": "\u200e\n B01ITTAW1U", "Best Sellers Rank": "#387,247 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#9,518 in Grocery Cookies", "#9,518 in Grocery Cookies": ""}, "brand": "Brand: KCB", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=KCB", "full_description": "Karachi Biscuit is a famous product from the connoisseur of baking. Located in Hyderabad, Karachi Bakery has been delighting hearts since 1952. These Fruit Biscuits are nutty and buttery and are baked with fresh ingredients. These biscuits are absolutely", "pricing": "$7.58", "list_price": "", "availability_quantity": 8, "availability_status": "Only 8 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51kYgOlymhL.jpg", "https://m.media-amazon.com/images/I/41s+zbyPUsL.jpg", "https://m.media-amazon.com/images/I/51i3cyqq-sL.jpg", "https://m.media-amazon.com/images/I/51GePnVIRoL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cookies", "average_rating": "", "small_description": ["Karachi Fruit Biscuits ", "100 % Vegetarian ", "Protein Rich. ", "Egg free recipe ", "Longer shelf life "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A1VQ7U1SVA2NIF", "seller_name": "Tez Pharmacy", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B01ITTAW1U", "category": "grocery", "query": "Grocery Cookies", "page": 253, "small_description_old": "About this item Karachi Fruit Biscuits 100 % Vegetarian Protein Rich. Egg free recipe Longer shelf life"}, {"name": "LALUZ Faux-Wood Pendant Lighting, Farmhouse Hanging Lamp with Water Glass Shade for Kitchen Island, Living Room, Foyer, A03182", "product_information": {"Brand": "\u200eLALUZ", "Manufacturer": "\u200eLALUZ", "Part Number": "\u200eA03182", "Item Weight": "\u200e9.53 pounds", "Product Dimensions": "\u200e7 x 7 x 13 inches", "Item model number": "\u200eA03182", "Is Discontinued By Manufacturer": "\u200eNo", "Assembled Height": "\u200e13 inches", "Assembled Length": "\u200e7 inches", "Assembled Width": "\u200e7 inches", "Item Package Quantity": "\u200e1", "Style": "\u200eRustic", "Color": "\u200eA03182", "Shape": "\u200eLantern", "Material": "\u200eGlass, Metal", "Number of Lights": "\u200e1", "Included Components": "\u200ePendant lighting shade;screw;wire connector;user instruction", "Maximum Compatible Wattage": "\u200e60 Watts", "Voltage": "\u200e120 Volts", "Specific Uses": "\u200eHanging lantern light, Kitchen island lighting, Foyer lighting, Pendant lighting, Farmhouse lighting for kitchen island, Hanging lantern pendant", "Special Features": "\u200e\u2b50 Farmhouse pendant light, \u2b50 Adjustable height, \u2b50 High-temperature resistance, \u2b50 Ideal for kitchen island, living room, bedroom, dining room, \u2b50 Easy to install, \u2b50 24-Month warranty type", "Shade Material": "\u200eGlass", "Light Direction": "\u200eDownlight", "Power Source": "\u200eHardwire", "Switch Installation Type": "\u200eHanging,Pendant Lighting", "Batteries Included?": "\u200eNo", "Batteries Required?": "\u200eNo", "Certification": "\u200eUL Listed", "Type of Bulb": "\u200eIncandescent", "Wattage": "\u200e60 watts", "ASIN": "B06ZYS6NW4", "Customer Reviews": {"ratings_count": 11, "stars": "3.9 out of 5 stars"}, "Date First Available": "April 19, 2017"}, "brand": "Visit the LALUZ Store", "brand_url": "https://www.amazon.com/stores/LALUZ/page/F339D644-AF8D-4EB6-B46B-A6CBD318CB26?ref_=ast_bln", "full_description": "", "pricing": "$59.99", "list_price": "", "availability_quantity": 2, "availability_status": "Only 2 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/51RDv5pBbbL.jpg", "https://m.media-amazon.com/images/I/51Jm4NvhbzL.jpg", "https://m.media-amazon.com/images/I/51e-dtEZYEL.jpg", "https://m.media-amazon.com/images/I/51JoIdQ6RNL.jpg", "https://m.media-amazon.com/images/I/51yPY9avjfL.jpg", "https://m.media-amazon.com/images/I/51H5HxBt1-L.jpg", "https://m.media-amazon.com/images/I/41N-bu5s0tL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Pendant Lights", "average_rating": 3.9, "small_description": ["\u2b50[ FARMHOUSE PENDANT LIGHTING ]: Characteristic of a rustic faux-wood rectangular frame and enveloped of ripple glass panels, this farmhouse lighting creates a natural atmosphere around your room, adding a fresh look to your overall decoration. ", "\u2b50[ FEEL FREE TO INSTALL ]: With our detailed instruction, you can totally be your own electrician. Every pendant light comes from handmade design, thus providing simple but efficient steps for your installation. ", "\u2b50[ ADJUSTABLE HEIGHT ]: Round Canopy: 4. 7\" in diameter; Product Dimension: 7\"L x 7\"W x 11\"H; Chain: 59\u201d. This kitchen lighting can be adjusted from 6\u201d to 59\u201d to decorate your room and create multiple styles of lighting. ", "\u2b50[ WHERE WE SUGGEST TO HANG ]: This hanging lantern pendant is suitable for kitchen island, living room, reading room, foyer, entry, door way and so on, whether flat, sloped, slanted or vaulted ceiling. ", "\u2b50[ BUY WITH CONFIDENCE ]: Works with E26 base max 60w bulbs (not included) and fully dimmable with compatible dimmer switch. UL listed for safety. 24 months warranty. "], "total_reviews": 11, "total_answered_questions": 8, "model": "\u200eA03182", "customization_options": {"Color": null}, "seller_id": "A2KSJDVYMJBVT9", "seller_name": "LALUZ LIGHTING", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B06ZYS6NW4", "category": "garden", "query": "Kitchen Islands", "page": 296, "small_description_old": "About this item \u2b50[ FARMHOUSE PENDANT LIGHTING ]: Characteristic of a rustic faux-wood rectangular frame and enveloped of ripple glass panels, this farmhouse lighting creates a natural atmosphere around your room, adding a fresh look to your overall decoration. \u2b50[ FEEL FREE TO INSTALL ]: With our detailed instruction, you can totally be your own electrician. Every pendant light comes from handmade design, thus providing simple but efficient steps for your installation. \u2b50[ ADJUSTABLE HEIGHT ]: Round Canopy: 4. 7\" in diameter; Product Dimension: 7\"L x 7\"W x 11\"H; Chain: 59\u201d. This kitchen lighting can be adjusted from 6\u201d to 59\u201d to decorate your room and create multiple styles of lighting. \u2b50[ WHERE WE SUGGEST TO HANG ]: This hanging lantern pendant is suitable for kitchen island, living room, reading room, foyer, entry, door way and so on, whether flat, sloped, slanted or vaulted ceiling. \u2b50[ BUY WITH CONFIDENCE ]: Works with E26 base max 60w bulbs (not included) and fully dimmable with compatible dimmer switch. UL listed for safety. 24 months warranty. \n \u203a See more product details"}, {"name": "SHOWV Face_Masks for Adult,Unisex Face_Masks 50 PCs Breathable Comfortable Facial Mouth Cover with High Filtration Cover", "product_information": {"Department\n \u200f": "\u200e\n Unisex-adult", "Date First Available\n \u200f": "\u200e\n January 18, 2022", "Manufacturer\n \u200f": "\u200e\n SHOWV", "ASIN\n \u200f": "\u200e\n B09QMGN5GP", "": ""}, "brand": "Brand: SHOWV", "brand_url": "https://www.amazon.com/s/ref=bl_sl_s_ap_web_7141123011?ie=UTF8&node=7141123011&field-brandtextbin=SHOWV", "full_description": "\u273fSHOWV 3Ply\u00a0Disposable\u00a0Face_Masks\u273f Choose the color and size you want and buy it! \u273fGuarantee of Quality \u273f If you have received our goods and found that you are not satisfied with the quality, color or size, do not worry, we offer a free return service within 30 days! \u273fFull of Sincerity\u273f SHOWV\u00a0hopes that every customer who comes to our store can take the goods they really love and have a pleasant shopping experience. \u273f\u00a0Description:\u00a0 The 3 ply non-woven disposable mask is made of 3 ply non-woven material, it is healthy and safe for you to use. Breathable material and cute patterns, which makes it useful and fashionable. Special 3 ply non-woven design, provides some protections against dust, automobile exhaust, pollen, etc. Elastic ear loop, easy to wear and no pressure to the ears. nail salon or any other areas where protection might be required \u273f\u00a0Features:\u00a0 1. Made of environmental friendly material, moisture-proof, non-toxic, non-irritating, soft and comfortable. 2. Breathable material and cute patterns, which makes it useful and fashionable. 3. Special 3 ply non-woven design, provides protections against dust, automobile exhaust, pollen, etc. 4. Perfect design, when you wear it , it fits seamlessly into your face. Elastic ear loop is easy to wear and no pressure to the ears. 5. Nail salon or any other areas where protection might be required. 6. Package included: 10/30/50/100pcs masks.", "pricing": "$11.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41Py7sQCVfL.jpg", "https://m.media-amazon.com/images/I/41fDGx+dRiL.jpg", "https://m.media-amazon.com/images/I/41J5H0RKBTL.jpg", "https://m.media-amazon.com/images/I/41GznIUdy6L.jpg", "https://m.media-amazon.com/images/I/41GznIUdy6L.jpg", "https://m.media-amazon.com/images/I/41JvjuM9jKL.jpg", "https://m.media-amazon.com/images/I/41I5HDDd4mL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Face \u203a Treatments & Masks \u203a Masks", "average_rating": "", "small_description": ["90% cotton/10% rayon ", "Fitted elastic ear loops closure ", "Suitable for: adults/teens ", "Package including 50PCs face_masks. 3Ply face protection masks. ", "Made of skin-friendly material, smelless. ", "Take good care of your yourself and your family during this special time. ", "100% Satisfaction Guarantee: Your safety and health we care most, please feel free to contact us if you have any questions. We will do whatever necessary to resolve your problem to ensure you get the best shopping experience. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": null, "Size": null}, "seller_id": "A3IFIG8JUWPZCV", "seller_name": "SHOWV", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09QMGX7V3", "category": "beauty", "query": "Skin Care Maternity", "page": 35, "small_description_old": "90% Cotton, 10% Rayon Fitted elastic ear loops closure Suitable for: adults/teens Package including 50PCs face_masks. 3Ply face protection masks. Made of skin-friendly material, smelless. Take good care of your yourself and your family during this special time. 100% Satisfaction Guarantee: Your safety and health we care most, please feel free to contact us if you have any questions. We will do whatever necessary to resolve your problem to ensure you get the best shopping experience."}, {"name": "Jacques Torres Chocolate - Caramel Popcorn 6 oz Bag", "product_information": "", "brand": "Visit the Jacques Torres Chocolate Store", "brand_url": "https://www.amazon.com/stores/JacquesTorresChocolate/page/280084DB-51DE-4E17-9EAB-EDD29323E8D0?ref_=ast_bln", "full_description": "", "pricing": "$11.00", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": ["https://m.media-amazon.com/images/I/41UouKLFJKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Food & Beverage Gifts \u203a Snack Gifts", "average_rating": 3.5, "small_description": ["A crunchy, buttery delight ", "Drizzled with Jacques Torres' signature dark chocolate ", "Perfect as a gift, or a snack for yourself ", "Delicious blend of sweet and salty "], "total_reviews": 3, "total_answered_questions": "", "customization_options": "", "seller_id": "A2XULX9WCCBH32", "seller_name": "Jacques Torres Chocolate", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00VQJ07CA", "category": "grocery", "query": "Popcorn", "page": 130, "small_description_old": "About this item A crunchy, buttery delight Drizzled with Jacques Torres' signature dark chocolate Perfect as a gift, or a snack for yourself Delicious blend of sweet and salty"}, {"name": "ONGHAHYIS Shower Scrubbing Mitt Gloves Body Brush Take A Shower in 1 Minute Exfoliating Scrub Foot Scrubber Cath Sponge High-Elastic Five-Finger Bath Towel (Color : Random Color 1pc)", "product_information": {"Item Weight": "1.1 pounds", "Department": "Unisex-adult", "Manufacturer": "ONGHAHYIS", "ASIN": "B09NLZFMRG", "Country of Origin": "China"}, "brand": "Brand: ONGHAHYIS", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=ONGHAHYIS", "full_description": "High elasticity five-finger nylon bath towel, bath gloves, back towel can be hung to remove ash, exfoliate and exfoliate.Using environmentally friendly nylon material, combined with shower gel/soap, it produces a lot of foam, five fingers move freely, and the whole body is easy to take a bath with no dead ends, super easy to use!Matte towel cloth, effective decontaminationThe secret weapon for smoothing the skin is more comprehensive than the traditional scrubbing towel. It also has a massage effect and increases blood circulation in the skin.Made of highly elastic nylon material, suitable for all kinds of peopleTake a quick and clean bath in 1 minute to wipe off body dirt, make bathing easier, and make bathing time simple and happy", "pricing": "$22.16", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41c9qDtrT-L.jpg", "https://m.media-amazon.com/images/I/41dmyMAkd9L.jpg", "https://m.media-amazon.com/images/I/51iJNox3UyL.jpg", "https://m.media-amazon.com/images/I/41c9qDtrT-L.jpg", "https://m.media-amazon.com/images/I/41l7KWcLEyL.jpg", "https://m.media-amazon.com/images/I/51Qqh-eVclL.jpg", "https://m.media-amazon.com/images/I/51bvj1fc7ZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Bath Sponges", "average_rating": "", "small_description": ["ONGHAHYIS ", "\"Our body scrub exfoliating mitts provide deep exfoliation to visibly remove dead skin.Your skin will look smoother and feel softer. ", "After taking a hot shower or sauna or soak for 5-10 minutes, Working it over your body in circular motions until the skin gets crumpling in nasty pieces. ", "After regular periodic use, skin will benefit from deep clean-feeling soft, smooth, and healthy.Replace traditional bath towel, easy to clean, to grasp, good for removing dirt off. ", "perfect for both men and women of all ages. Healthier and Safer. more effective than other exfoliating washcloth. You can use it long time for Bath, Hammam and Sauna. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09NLYG95Z/ref=twister_B09NLZVFNJ?_encoding=UTF8&psc=1", "value": "Beige 1 Pair", "price_string": "$22.86", "price": 22.86, "image": "https://m.media-amazon.com/images/I/41dmyMAkd9L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NLZ3SSC/ref=twister_B09NLZVFNJ?_encoding=UTF8&psc=1", "value": "Pink 1 Pair", "price_string": "$22.86", "price": 22.86, "image": "https://m.media-amazon.com/images/I/51TcLldxABL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NLZ6GM8/ref=twister_B09NLZVFNJ?_encoding=UTF8&psc=1", "value": "Purple 1 Pair", "price_string": "$22.86", "price": 22.86, "image": "https://m.media-amazon.com/images/I/51xfIEVBubL.jpg"}, {"is_selected": true, "url": null, "value": "Random Color 1pc", "price_string": "$22.16", "price": 22.16, "image": "https://m.media-amazon.com/images/I/41c9qDtrT-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NLZ7BF6/ref=twister_B09NLZVFNJ?_encoding=UTF8&psc=1", "value": "Rose Red 1 Pair", "price_string": "$22.86", "price": 22.86, "image": "https://m.media-amazon.com/images/I/51LuQCHkbCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NLZNQM7/ref=twister_B09NLZVFNJ?_encoding=UTF8&psc=1", "value": "Tea Green 1 Pair", "price_string": "$22.86", "price": 22.86, "image": "https://m.media-amazon.com/images/I/41dmyMAkd9L.jpg"}]}, "seller_id": "A2PW0ZKQTWUWHA", "seller_name": "sunjinfangamz", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09NLZFMRG", "category": "beauty", "query": "Bathing Accessories", "page": 172, "small_description_old": "ONGHAHYIS \"Our body scrub exfoliating mitts provide deep exfoliation to visibly remove dead skin.Your skin will look smoother and feel softer. After taking a hot shower or sauna or soak for 5-10 minutes, Working it over your body in circular motions until the skin gets crumpling in nasty pieces. After regular periodic use, skin will benefit from deep clean-feeling soft, smooth, and healthy.Replace traditional bath towel, easy to clean, to grasp, good for removing dirt off. perfect for both men and women of all ages. Healthier and Safer. more effective than other exfoliating washcloth. You can use it long time for Bath, Hammam and Sauna."}, {"name": "CLANMILUMS Men's Classic Comfort Soft Regular Fit Short Sleeve Henley T-Shirt Tee", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 12.08 x 10.04 x 2.32 inches; 7.76 Ounces", "Department\n \u200f": "\u200e\n Mens", "Date First Available\n \u200f": "\u200e\n March 14, 2020", "ASIN\n \u200f": "\u200e\n B085WR1RJ4", "Best Sellers Rank": "#524,908 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#474 in Men's Henley Shirts", "#474 in Men's Henley Shirts": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the CLANMILUMS Store", "brand_url": "https://www.amazon.com/stores/CLANMILUMS/page/E9CC1472-7B82-443D-B0B2-341B1FE10281?ref_=ast_bln", "full_description": "", "pricing": "$17.99$19.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41fbW+1v2IL.jpg", "https://m.media-amazon.com/images/I/41ONv6eQguL.jpg", "https://m.media-amazon.com/images/I/61e55N1fO6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a Henleys", "average_rating": 4.3, "small_description": ["65%COTTON\uff0c35%POLYESTER ", "Wash cold ", "Material: 65%COTTON\uff0c35%POLYESTER ", "Short sleeve & casual slim fit henley shirts, comfortable and slim fit casual wear, lightweight, basic designed. High Softness & Wearability. ", "Casual slim fit short sleeve henley T-Shirts soft to the touch for comfy wearing, pure cotton feels terrific all day long. ", "Suitable Occasion: Casual, Office, Work, Date, Party, Travel, Street, etc. Looking handsome while retaining ease of movement and added comfort. ", "Garment Care: Hand Wash Recommended / Machine Wash Cold "], "total_reviews": 123, "total_answered_questions": "", "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B085WR3G15"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07R5HDZNG"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07R9THP5L"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B085WQKRRJ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B085WQL482"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B085WR1RJ4/ref=twister_B085WSFMGG", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qnAlnQY5L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085WR3BK2/ref=twister_B085WSFMGG", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/417dvyazG4L.jpg"}, {"is_selected": true, "url": null, "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fbW+1v2IL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09N72B1HV/ref=twister_B085WSFMGG", "value": "Light Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412yIb8PQgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085WQHFBJ/ref=twister_B085WSFMGG", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41znYjbpYIL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085WQ8K21/ref=twister_B085WSFMGG", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21Bda6Lt2ML.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B085WQKRRJ", "category": "fashion", "query": "Men's Henleys", "page": 10, "small_description_old": "65%COTTON\uff0c35%POLYESTER Wash cold Material: 65%COTTON\uff0c35%POLYESTER Short sleeve & casual slim fit henley shirts, comfortable and slim fit casual wear, lightweight, basic designed. High Softness & Wearability. Casual slim fit short sleeve henley T-Shirts soft to the touch for comfy wearing, pure cotton feels terrific all day long. Suitable Occasion: Casual, Office, Work, Date, Party, Travel, Street, etc. Looking handsome while retaining ease of movement and added comfort. Garment Care: Hand Wash Recommended / Machine Wash Cold"}, {"name": "Calista Embellish Texturizing Definer Travel Size, Salon Quality Lightweight Styling Paste for All Hair Types, 1.7 oz (Packaging May Vary)", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.55 x 2.55 x 1 inches; 0.35 Ounces", "Item model number\n \u200f": "\u200e\n ETR111", "UPC\n \u200f": "\u200e\n 856482001512", "Manufacturer\n \u200f": "\u200e\n calista", "ASIN\n \u200f": "\u200e\n B01E7UY7AC", "Country of Origin\n \u200f": "\u200e\n USA", "Best Sellers Rank": "#47,531 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#2,298 in Hair Styling Products", "#2,298 in Hair Styling Products": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "", "brand_url": "", "full_description": "", "pricing": "$18.00", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/21Hb1cswEyL.jpg", "https://m.media-amazon.com/images/I/31w0-UCBSAL.jpg", "https://m.media-amazon.com/images/I/51Fmmgg-QFL.jpg", "https://m.media-amazon.com/images/I/41hCg0HgDZL.jpg", "https://m.media-amazon.com/images/I/41rwwddiI7L.jpg", "https://m.media-amazon.com/images/I/31kYIWwWucL.jpg", "https://m.media-amazon.com/images/I/51G41XAoovL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Styling Products", "average_rating": 4.2, "small_description": [""], "total_reviews": 458, "total_answered_questions": 11, "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B01E7UY7AC", "category": "beauty", "query": "Styling Products", "page": 9, "small_description_old": ""}, {"name": "Henn&Hart Contemporary Metal Floor Lamp in Blackened Bronze, (FL0656)", "product_information": {"Manufacturer": "\u200eHenn & Hart", "Brand": "\u200eHenn&Hart", "Item Weight": "\u200e9.92 pounds", "Product Dimensions": "\u200e14.25 x 14.25 x 60 inches", "Item model number": "\u200eFL0656", "Color": "\u200eBlackened Bronze", "Shape": "\u200eRound", "Material Type": "\u200eMetal", "Number of Items": "\u200e1", "Manufacturer Part Number": "\u200eFL0656", "ASIN": "B08TR23329", "Best Sellers Rank": ["#680,730 in Tools & Home Improvement (See Top 100 in Tools & Home Improvement) #3,721 in Floor Lamps"], "Date First Available": "January 21, 2021"}, "brand": "Visit the Henn&Hart Store", "brand_url": "https://www.amazon.com/stores/HennHart/page/D6B7BC7B-D72C-4A1A-BADE-006342C737A7?ref_=ast_bln", "full_description": "This contemporary floor lamp takes simplicity to a new level of sophistication with a blend of softly tapered shapes. This perfectly balanced design features a tulip-shaped base in blackened bronze or golden brass. An elongated shade of chiffon white linen shade emphasizes the lamp's verticality and creates a column of glowing light to illuminate any corner of your home.", "pricing": "$79.00", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock (more on the way).", "images": ["https://m.media-amazon.com/images/I/41wuSV8jkqL.jpg", "https://m.media-amazon.com/images/I/118oYDhZN4L.jpg", "https://m.media-amazon.com/images/I/21t4z-nvMNL.jpg", "https://m.media-amazon.com/images/I/41FVy58u0LL.jpg", "https://m.media-amazon.com/images/I/31uxnSedpEL.jpg", "https://m.media-amazon.com/images/I/41sPNBODqSS.jpg", "https://m.media-amazon.com/images/I/51aaL7Q9eKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Lamps & Shades \u203a Floor Lamps", "average_rating": "", "small_description": ["Handcrafted blackened bronze finish is applied to the steel frame ", "Paired with an elongated tapered cylindrical shade ", "Includes an 8 ft. cord ", "Foot switch on Cord ", "Rated for one 100W incandescent bulb; 9W LED bulb, 23W fluorescent CFL bulb, or 9W self-ballasted LED bulb. E26-base bulb ", "Included components: lamp and shade "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eFL0656", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Blackened Bronze", "price_string": "$79.00", "price": 79, "image": "https://m.media-amazon.com/images/I/21aE8khyZLS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08TQJHN5H/ref=twister_B093P2QPZL?_encoding=UTF8&psc=1", "value": "Brass", "price_string": "$129.99", "price": 129.99, "image": "https://m.media-amazon.com/images/I/31No833qkHS.jpg"}]}, "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B08TR23329", "category": "garden", "query": "Floor lamps", "page": 189, "small_description_old": "About this item\n \nHandcrafted blackened bronze finish is applied to the steel frame Paired with an elongated tapered cylindrical shade Includes an 8 ft. cord Foot switch on Cord Rated for one 100W incandescent bulb; 9W LED bulb, 23W fluorescent CFL bulb, or 9W self-ballasted LED bulb. E26-base bulb Included components: lamp and shade"}, {"name": "Pinsofy Underwater Ball Arm Adapter, Diving Ball Head Base Adapter High Strength for Underwater Photography", "product_information": {"Package Dimensions": "2.76 x 1.57 x 1.57 inches", "Item Weight": "2.12 ounces", "ASIN": "B09PKHJN8P", "Date First Available": "January 2, 2022", "Manufacturer": "Pinsofy"}, "brand": "Brand: Pinsofy", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Pinsofy", "full_description": "Feature:1. Aluminum Material: Adopts high quality aluminum alloy material with integrated design for high hardness and strength.2. Harden Processing: Has hard coating and anodized treatment, making the ball arm adapter connector durable for long term use.3. Hot Shoe Connector: Has a hot shoe base at the bottom that can be fixed directly to the waterproof housing or other hot shoe equipment.4. Portable: Compact in size, light in weight, so that the diving ball head adapter easy to carry.5. Applicable Situation: Suitable for diving, underwater photography and other underwater shooting.Specification:Item Type: Underwater Ball Arm AdapterMaterial: Aluminum AlloyColor: BlackApplication: For Diving, Underwater PhotographyWeight: Approx.54g/1.9oz Package List:1 x Ball Arm Adapter", "pricing": "$18.36", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/315f-9r3baL.jpg", "https://m.media-amazon.com/images/I/41CmQTdg4ZL.jpg", "https://m.media-amazon.com/images/I/31cTeAQabqL.jpg", "https://m.media-amazon.com/images/I/51fokiFO0jL.jpg", "https://m.media-amazon.com/images/I/315MH+NRgbL.jpg", "https://m.media-amazon.com/images/I/31SPEBzgG8L.jpg", "https://m.media-amazon.com/images/I/41M8eENceSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Underwater Photography \u203a Underwater Lighting \u203a Parts & Accessories", "average_rating": "", "small_description": ["Aluminum Material: Adopts high quality aluminum alloy material with integrated design for high hardness and strength. ", "Portable: Compact in size, light in weight, so that the diving ball head adapter easy to carry. ", "Harden Processing: Has hard coating and anodized treatment, making the ball arm adapter connector durable for long term use. ", "Hot Shoe Connector: Has a hot shoe base at the bottom that can be fixed directly to the waterproof housing or other hot shoe equipment. ", "Applicable Situation: Suitable for diving, underwater photography and other underwater shooting. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A2I7XCKXB4ZTQC", "seller_name": "Pinsofk", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09PKHJN8P", "category": "electronics", "query": "Underwater Photography", "page": 45, "small_description_old": "Aluminum Material: Adopts high quality aluminum alloy material with integrated design for high hardness and strength. Portable: Compact in size, light in weight, so that the diving ball head adapter easy to carry. Harden Processing: Has hard coating and anodized treatment, making the ball arm adapter connector durable for long term use. Hot Shoe Connector: Has a hot shoe base at the bottom that can be fixed directly to the waterproof housing or other hot shoe equipment. Applicable Situation: Suitable for diving, underwater photography and other underwater shooting."}, {"name": "Disney Winnie The Pooh Tigger Upside Down Portrait Tank Top", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10 x 8 x 1 inches; 4.8 Ounces", "Department\n \u200f": "\u200e\n Womens", "Date First Available\n \u200f": "\u200e\n November 26, 2019", "Manufacturer\n \u200f": "\u200e\n Disney", "ASIN\n \u200f": "\u200e\n B08226NDZW", "Best Sellers Rank": "#1,383,132 in Clothing, Shoes & Jewelry (See Top 100 in Clothing, Shoes & Jewelry)#7,711 in Women's Novelty Tanks & Camis #241,176 in Men's Novelty Clothing #526,407 in Men's Fashion", "#7,711 in Women's Novelty Tanks & Camis": "", "#241,176 in Men's Novelty Clothing": "", "#526,407 in Men's Fashion": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Brand: Disney", "brand_url": "https://www.amazon.com/Disney/b/ref=bl_sl_s_ap_web_18726768011?ie=UTF8&node=18726768011&field-lbr_brands_browse-bin=Disney", "full_description": "Explore the wonderful world of Disney with your friends from Winnie The Pooh, The Aristocats, Lilo & Stitch, and more! Don't forget to pack these officially licensed graphic tees, hoodies, and sweatshirts for your adventure!", "pricing": "$25.99", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/A1Ig7DnP6sL.png", "https://m.media-amazon.com/images/I/31tbrimDw7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Tops & Tees \u203a Tanks & Camis", "average_rating": 4.6, "small_description": ["Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester ", "Imported ", "Machine Wash ", "Officially Licensed Disney Winnie The Pooh Apparel ", "19DNWP00021A-002 ", "Lightweight, Classic fit, Double-needle sleeve and bottom hem "], "total_reviews": 25, "total_answered_questions": "", "customization_options": {"Fit Type": [{"is_selected": true, "url": null, "value": "Men", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08226NDZW?_encoding=UTF8&customId=B07MZQH9ZH", "value": "Women", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1Ig7DnP6sL.png"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08226NDZW?_encoding=UTF8&customId=B07MZQFLP1", "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/A1FAfhw%2B74L.png"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B07MZP9QWJ"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07MZPH245"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07MZPVTSY"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07MZQH9YH"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07MZQ58TP"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": true, "asin": "B08226NDZW", "category": "fashion", "query": "Men's T-Shirts & Tanks", "page": 11, "small_description_old": "Solid colors: 100% Cotton; Heather Grey: 90% Cotton, 10% Polyester; All Other Heathers: 50% Cotton, 50% Polyester Imported Machine Wash Officially Licensed Disney Winnie The Pooh Apparel 19DNWP00021A-002 Lightweight, Classic fit, Double-needle sleeve and bottom hem"}, {"name": "", "product_information": {"Manufacturer": "\u200eGGACEN", "ASIN": "\u200eB09P71WY8C", "": "", "Item model number": "\u200eWindow Sticker", "Date First Available": "\u200eDecember 20, 2021"}, "brand": "Brand: GGACEN", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_mw_0?ie=UTF8&search-alias=aps&field-keywords=GGACEN", "full_description": "", "pricing": "$18.00", "list_price": "", "availability_status": "In stock. Usually ships within 3 to 4 days.", "images": [""], "product_category": "", "average_rating": "", "small_description": ["\u2714 Technique: Decorative window film is Digital Printing,the color is more brighter than traditional printing\u3002 size:L23.6 x H35.4 inch ", "\u2714 Economical and practical\uff1aNo more heavy troublesome curtains or blinds, the high quality window privacy film helps decorate your space at a minimum cost. ", "\u2714 Applicable scene:smooth and clean Glass Surfaces in the Bathroom, Balcony, Living Room, Bedroom, Bathroom, Office. ", "\u2714 Operate\uff1a\u2605Cleaning windows\u2605 tearing off the base film\u2605Products and glass should be sprayed with a lot of water at installation then Secure the film by squeegeeing from center to edge\u2605remove all water and air bubbles ", "\u2714 Window Film: Independent designer team and factory production, to provide high-quality products while ensuring timely delivery. If you have any questions or suggestions during the purchase process, please contact us immediately. "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eWindow Sticker", "customization_options": "", "seller_id": "A1BTQRLYXVC1JR", "seller_name": "CanKan Technology limited123", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09P71WY8C", "category": "garden", "query": "Window Coverings", "page": 215, "small_description_old": "\u2714 Technique: Decorative window film is Digital Printing,the color is more brighter than traditional printing\u3002 size:L23.6 x H35.4 inch\u2714 Economical and practical\uff1aNo more heavy troublesome curtains or blinds, the high quality window privacy film helps decorate your space at a minimum cost.\u2714 Applicable scene:smooth and clean Glass Surfaces in the Bathroom, Balcony, Living Room, Bedroom, Bathroom, Office.\u2714 Operate\uff1a\u2605Cleaning windows\u2605 tearing off the base film\u2605Products and glass should be sprayed with a lot of water at installation then Secure the film by squeegeeing from center to edge\u2605remove all water and air bubbles\u2714 Window Film: Independent designer team and factory production, to provide high-quality products while ensuring timely delivery. If you have any questions or suggestions during the purchase process, please contact us immediately."}, {"name": "Remote for RCA Wi-fi Streaming Media Player DSB772E with 1080p HDMI output", "product_information": {"Brand Name": "\u200eRCA", "Item model number": "\u200eDSB772E", "ASIN": "B00R249C5G", "Date First Available": "December 16, 2014"}, "brand": "Visit the RCA Store", "brand_url": "https://www.amazon.com/stores/RCATVs/page/3E34B8D8-734C-41A9-BDE2-4E14527E2992?ref_=ast_bln", "full_description": "This remote is the one shown in image 2. Apparently there are 3 remotes for this media player. This remote is the most reliable and has physical soft touch buttons. Unlike the flat one that comes with the unit. It is rounded at the bottom and is a replacement for the original.", "pricing": "$49.95", "list_price": "", "availability_quantity": 18, "availability_status": "Only 18 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/211g8Qdr8zL.jpg", "https://m.media-amazon.com/images/I/21QKklm8oFL.jpg", "https://m.media-amazon.com/images/I/41knQdQ+PVL.jpg", "https://m.media-amazon.com/images/I/41s0JK6HiWL.jpg", "https://m.media-amazon.com/images/I/41-ZqJrXZPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Audio Cables \u203a RCA Cables", "average_rating": "", "small_description": [""], "total_reviews": "", "total_answered_questions": "", "model": "\u200eDSB772E", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B00R249C5G", "category": "electronics", "query": "Streaming Media Players", "page": 19, "small_description_old": ""}, {"name": "Laptop Battery Compatible with HP 807956-001 807957-001 HS04 HS03 240 245 246 250 255 256 G4 G5 807612-421 807611-421 807611-131 TPN-I119 HSTNN-LB6U 15-AY039WM 807611-421 15-AY041WM 15-AY009DX", "product_information": "", "brand": "Brand: Boyuteceer", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=Boyuteceer", "full_description": "", "pricing": "$22.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41T9v6TingL.jpg", "https://m.media-amazon.com/images/I/31BQA-QZF9L.jpg", "https://m.media-amazon.com/images/I/41sgHwhmF4L.jpg", "https://m.media-amazon.com/images/I/41nn475d76L.jpg", "https://m.media-amazon.com/images/I/41axUXcdBzL.jpg", "https://m.media-amazon.com/images/I/41px7QTko2L.jpg", "https://m.media-amazon.com/images/I/41sbimojfEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Laptop Accessories \u203a Batteries", "average_rating": 4.6, "small_description": ["\u3010Specifications\u3011: Battery type: Lithium ion / Voltage:14.8V / Capacity: 2600mAh /Cells: 4-cell/ Color: Black.As a professional laptop battery seller, we we focus on our battery quality all the time. Built-in circuit protection, overcharge protection, over voltage protection ensures both safety and stability. Products are CE-/FCC-/RoHS-Certified. ", "\u3010Compatible P/N\u3011: 807611-131 , 807611-141 , 807611-221 , 807611-241 , 807611-251 , 807611-421 , 807611-831 , 807612-131 , 807612-141 , 807612-221 , 807612-241 , 807612-251 , 807612-421 , 807612-422 , 807612-831 , 807956-001 , 807957-001 , 843532-851 , 843533-851. ", "\u3010Compatible P/N\u3011: HS03 , HSO3 , HS03031-CL , HS04 , HS04041 , HS04041-CL , HSTNN-DB7I , HSTNN-LB6U , HSTNN-LB6V , HSTNN-PB6S , HSTNN-PB6T , HSTNN-PB6V , M2Q95AA#ABA , M2Q95AA , MT245 , N2L85AA#ABB , N2L85AA , TPN-C125 , TPN-C126 , TPN-I119 , TPN-I120 , TPN-I124. ", "\u3010Compatible Model\u3011:HP 240 G4 , HP 240 G5 , HP 245 G4 , HP 245 G5 , HP 246 G4 , HP 246 G5 , HP 250 G4 , HP 250 G5 , HP 255 G4 , HP 255 G5 , HP 256 G4 , HP 256 G5 , HP 340 G3 , HP 346 G3 , HP 348 G3 , HP 348 G4 , HP Pavilion 14-ac0XX, 14-ac1XX, 14-af0XX, 14g-ad1XX, 14q-aj1XX, 15-ac0XX, 15-af0XX, 15g-ad0XX, 15q-aj0XX 15-ac 15-af 15-ay 15-ba 15g-ad 15q-aj 14-ac 14-af 14-am 14-ad 14q-aj 17-x 17-y. ", "\u3010Warranty\u3011: Your shopping experience is important to us. Any questions, please feel free to contact us. we promise that we will help you to solve questions ASAP. 24 x 7 Email Support, free exchange in 12 months, 60 days money back guarantee. "], "total_reviews": 30, "total_answered_questions": "", "customization_options": "", "seller_id": "AF12JYSOLQL02", "seller_name": "BYTEC", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09CYYD51R", "category": "electronics", "query": "Batteries", "page": 72, "small_description_old": "About this item\n \n\u3010Specifications\u3011: Battery type: Lithium ion / Voltage:14.8V / Capacity: 2600mAh /Cells: 4-cell/ Color: Black.As a professional laptop battery seller, we we focus on our battery quality all the time. Built-in circuit protection, overcharge protection, over voltage protection ensures both safety and stability. Products are CE-/FCC-/RoHS-Certified. \u3010Compatible P/N\u3011: 807611-131 , 807611-141 , 807611-221 , 807611-241 , 807611-251 , 807611-421 , 807611-831 , 807612-131 , 807612-141 , 807612-221 , 807612-241 , 807612-251 , 807612-421 , 807612-422 , 807612-831 , 807956-001 , 807957-001 , 843532-851 , 843533-851. \u3010Compatible P/N\u3011: HS03 , HSO3 , HS03031-CL , HS04 , HS04041 , HS04041-CL , HSTNN-DB7I , HSTNN-LB6U , HSTNN-LB6V , HSTNN-PB6S , HSTNN-PB6T , HSTNN-PB6V , M2Q95AA#ABA , M2Q95AA , MT245 , N2L85AA#ABB , N2L85AA , TPN-C125 , TPN-C126 , TPN-I119 , TPN-I120 , TPN-I124. \u3010Compatible Model\u3011:HP 240 G4 , HP 240 G5 , HP 245 G4 , HP 245 G5 , HP 246 G4 , HP 246 G5 , HP 250 G4 , HP 250 G5 , HP 255 G4 , HP 255 G5 , HP 256 G4 , HP 256 G5 , HP 340 G3 , HP 346 G3 , HP 348 G3 , HP 348 G4 , HP Pavilion 14-ac0XX, 14-ac1XX, 14-af0XX, 14g-ad1XX, 14q-aj1XX, 15-ac0XX, 15-af0XX, 15g-ad0XX, 15q-aj0XX 15-ac 15-af 15-ay 15-ba 15g-ad 15q-aj 14-ac 14-af 14-am 14-ad 14q-aj 17-x 17-y. \u3010Warranty\u3011: Your shopping experience is important to us. Any questions, please feel free to contact us. we promise that we will help you to solve questions ASAP. 24 x 7 Email Support, free exchange in 12 months, 60 days money back guarantee."}, {"name": "Hair Cutting Scissors Shears, Professional Hairdressing Scissors Kit Hair Cutting Thinning Scissors Barber/Salon/Home Styling Tool Hairdressing Shears BY JJKY (Color : Scissors Blue)", "product_information": {"Item Weight": "0.035 ounces", "Department": "Unisex-adult", "Manufacturer": "Baaileyzaa", "ASIN": "B09GP6G1MT", "Date First Available": "September 20, 2021"}, "brand": "Brand: JJKY", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=JJKY", "full_description": "Professional Hairdressing Scissors Kit Hair Cutting Thinning Scissors Barber/Salon/Home Styling Tool Hairdressing Shears7PCS/Kit Package Included: 1 x regular hair scissors;1 x thinning scissor; 1 x cleaning cloth; 1 x grooming comb; 2 x hairpins; 1 x cover case.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41gJ34H79SL.jpg", "https://m.media-amazon.com/images/I/41rqtJBTJYL.jpg", "https://m.media-amazon.com/images/I/51HRuSatc4L.jpg", "https://m.media-amazon.com/images/I/41iyF4IvNLL.jpg", "https://m.media-amazon.com/images/I/417WybRb4hL.jpg", "https://m.media-amazon.com/images/I/41lPKq46+EL.jpg", "https://m.media-amazon.com/images/I/31o0uYOdAjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Cutting Tools \u203a Shears", "average_rating": "", "small_description": ["High-Quality Hair Cutting Scissors: The hair cutting scissors are made of high-quality Japanese stainless steel. Hair cutting scissors have the characteristics of heat resistance, corrosion resistance, rust resistance, and colorfastness. The hair cutting scissors use precision blades and hand-polished blades to reconcile, which can cut hair easily and evenly. ", "Extremely Sharp And Fine Cutting: The blades of this professional hairdressing scissors are extremely sharp and durable, thanks to the extremely fine grinding and heat treatment process. The most obvious characteristics of these hair cutting scissors are extremely fine cut, ergonomic, easy to operate, sharp and durable, and unique in appearance. ", "Ergonomic Handle: The hairdressing scissors adopt a non-slip handle, an ergonomic shape, and an integrated finger rest, which is comfortable and easy to cut. The eccentric handle of the hair cutting scissors adopts an anatomical thumb grip design, which can reduce thumb pressure, reduce the risk of fatigue after long-term use, and prevent carpal tunnel syndrome. Barber scissors provide stylists with more freedom of movement. ", "Designed for Precision Trimming: This hair cutting scissors is designed for professionals who pay attention to weight, maneuverability, durability and ergonomics. This incredible hair cutting scissors can cut all kinds of hair easily. It is lighter than other hair clippers, passes through the hair easier, does not have more damage, has no split ends, and no pulls. Barber scissors are suitable for amateurs or professionals, hairdressers or salons. ", "Lifetime Warranty: We fully believe in the quality, durability and practicality of these hair cutting scissors, so we provide a lifetime warranty. Time will prove that these hair cutting scissors are very good, very durable, and can effectively perform their functions. We provide 100% satisfaction or refund. Investment is risk-free. "], "total_reviews": "", "total_answered_questions": "", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09GP654TN/ref=twister_B09GP6VXTW?_encoding=UTF8&psc=1", "value": "7PCS", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qR90L97SL.jpg"}, {"is_selected": true, "url": null, "value": "Scissors Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41gJ34H79SL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GP583RB/ref=twister_B09GP6VXTW?_encoding=UTF8&psc=1", "value": "Scissors White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41J6ChDsukL.jpg"}]}, "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B09GP6G1MT", "category": "beauty", "query": "Hair Cutting Tools", "page": 132, "small_description_old": "About this item\n \nHigh-Quality Hair Cutting Scissors: The hair cutting scissors are made of high-quality Japanese stainless steel. Hair cutting scissors have the characteristics of heat resistance, corrosion resistance, rust resistance, and colorfastness. The hair cutting scissors use precision blades and hand-polished blades to reconcile, which can cut hair easily and evenly. Extremely Sharp And Fine Cutting: The blades of this professional hairdressing scissors are extremely sharp and durable, thanks to the extremely fine grinding and heat treatment process. The most obvious characteristics of these hair cutting scissors are extremely fine cut, ergonomic, easy to operate, sharp and durable, and unique in appearance. Ergonomic Handle: The hairdressing scissors adopt a non-slip handle, an ergonomic shape, and an integrated finger rest, which is comfortable and easy to cut. The eccentric handle of the hair cutting scissors adopts an anatomical thumb grip design, which can reduce thumb pressure, reduce the risk of fatigue after long-term use, and prevent carpal tunnel syndrome. Barber scissors provide stylists with more freedom of movement. Designed for Precision Trimming: This hair cutting scissors is designed for professionals who pay attention to weight, maneuverability, durability and ergonomics. This incredible hair cutting scissors can cut all kinds of hair easily. It is lighter than other hair clippers, passes through the hair easier, does not have more damage, has no split ends, and no pulls. Barber scissors are suitable for amateurs or professionals, hairdressers or salons. Lifetime Warranty: We fully believe in the quality, durability and practicality of these hair cutting scissors, so we provide a lifetime warranty. Time will prove that these hair cutting scissors are very good, very durable, and can effectively perform their functions. We provide 100% satisfaction or refund. Investment is risk-free."}, {"name": "MCK95701700 - Mckesson Brand Toothpaste McKesson Mint Flavor 2.75 oz. Tube", "product_information": {"Manufacturer\n \u200f": "\u200e\n Mckesson Brand", "ASIN\n \u200f": "\u200e\n B00Q5DO1KQ", "Best Sellers Rank": "#1,151,064 in Health & Household (See Top 100 in Health & Household)#6,371 in Toothpaste", "#6,371 in Toothpaste": ""}, "brand": "Visit the McKesson Store", "brand_url": "https://www.amazon.com/stores/McKesson/page/23D9C9DC-B946-439A-B154-AD86255E3D5E?ref_=ast_bln", "full_description": "McKesson Fluoride Toothpaste. 2.75 oz. (78 g). Mint Flavor. Helps protect against cavities.. Not Made With Natural Rubber Latex.", "pricing": "$6.27", "list_price": "", "availability_quantity": 6, "availability_status": "Only 6 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/41UOn-xw6JL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": "", "small_description": ["Application - Toothpaste ", "Container_Type - Tube ", "Size - 2.75 oz. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "ABOPLAY6RS86X", "seller_name": "global-wholesale", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00Q5DO1KQ", "category": "beauty", "query": "Toothpaste", "page": 101, "small_description_old": "About this item Application - Toothpaste Container_Type - Tube Flavor - Mint Flavor Size - 2.75 oz. Type - Paste"}, {"name": "tgin Miracle Repairx Protective Leave In Conditioner For Natural Hair - Dry Hair - Curly Hair - 13 Oz", "product_information": {"Is Discontinued By Manufacturer\n \u200f": "\u200e\n No", "Product Dimensions\n \u200f": "\u200e\n 2.5 x 2.5 x 6 inches; 13 Ounces", "UPC\n \u200f": "\u200e\n 858999006370", "Manufacturer\n \u200f": "\u200e\n tgin (Thank God It's Natural)", "ASIN\n \u200f": "\u200e\n B07K6TCDR9", "Best Sellers Rank": "#7,260 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)#220 in Hair Conditioner", "#220 in Hair Conditioner": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the Thank God It's Natural Store", "brand_url": "https://www.amazon.com/stores/Thank+God+It%27s+Natural/page/A7FA8546-1259-430F-A4A3-36113CF33ED9?ref_=ast_bln", "full_description": "", "pricing": "$11.59", "list_price": "", "availability_status": "In Stock. In Stock.", "images": ["https://m.media-amazon.com/images/I/31dRz-1UGWL.jpg", "https://m.media-amazon.com/images/I/41nEa9qOmLS.jpg", "https://m.media-amazon.com/images/I/41uhjUFpSsL.jpg", "https://m.media-amazon.com/images/I/41NHfRlOUtL.jpg", "https://m.media-amazon.com/images/I/414IhfBxfIS.jpg", "https://m.media-amazon.com/images/I/41L4quoyd6S.jpg", "https://m.media-amazon.com/images/I/51Klu-92xtL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Conditioners", "average_rating": 4.6, "small_description": ["Miracle RepaiRx Protective Leave In Conditioner adds definition while replenishing moisture to hair, restoring softness and shine. This intense conditioner uses black castor oil and biotin to treat hair, reducing split ends and promoting hair growth. ", "Our MRx leave in conditioner is a lightweight formula with no build -up that leaves hair feeling soft and manageable. ", "Penetrates hair\u2019s cuticle to allow for thorough conditioning ", "Miracle RepaiRx Collection, like our other tgin products, do not have parabens, sulfates, petrolatum, lanolin, artificial colors, animal testing. ", "Black, Women Owned: Our team at tgin is 96% women and 100% black-owned. "], "total_reviews": 1563, "total_answered_questions": 20, "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "13 Fl Oz (Pack of 1)", "price_string": "$11.59", "price": 11.59, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08ZR7G1NV/ref=twister_B097Z2ZGWV?_encoding=UTF8&psc=1", "value": "32 Fl Oz (Pack of 1)", "price_string": "$29.99", "price": 29.99, "image": null}]}, "seller_id": "A31XD1D9G4DTZQ", "seller_name": "Thank God It's Natural", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07K6TCDR9", "category": "beauty", "query": "Hair Loss Products", "page": 9, "small_description_old": "About this item Miracle RepaiRx Protective Leave In Conditioner adds definition while replenishing moisture to hair, restoring softness and shine. This intense conditioner uses black castor oil and biotin to treat hair, reducing split ends and promoting hair growth. Our MRx leave in conditioner is a lightweight formula with no build -up that leaves hair feeling soft and manageable. Penetrates hair\u2019s cuticle to allow for thorough conditioning Miracle RepaiRx Collection, like our other tgin products, do not have parabens, sulfates, petrolatum, lanolin, artificial colors, animal testing. Black, Women Owned: Our team at tgin is 96% women and 100% black-owned."}, {"name": "Square iPhone 11 Case,Tzomsze Cute Full Camera Lens Protection & Electroplate Reinforced Corners Shockproof Edge Bumper Case Compatible with iPhone 11 [6.1 inches] -Candy Pink", "product_information": {"Product Dimensions": "6 x 3.2 x 0.48 inches", "Item Weight": "1.5 ounces", "ASIN": "B098SV78BW", "Customer Reviews": {"ratings_count": 1444, "stars": "4.6 out of 5 stars"}, "Best Sellers Rank": ["#2,227 in Cell Phones & Accessories (See Top 100 in Cell Phones & Accessories) #723 in Cell Phone Basic Cases"], "Special Features": "TPU Cushion, Plain, Reinforced Corners, Shockproof, Square,Candy", "Other display features": "Wireless", "Form Factor": "Bumper", "Colour": "Electroplate Pink-11", "Included Components": "Phone case", "Manufacturer": "Tzomsze", "Date First Available": "July 7, 2021"}, "brand": "Visit the Tzomsze Store", "brand_url": "https://www.amazon.com/stores/Tzomsze/page/7A3064DF-F05C-461B-905E-09BABDA1ACDA?ref_=ast_bln", "full_description": "", "pricing": "$10.59", "list_price": "", "availability_quantity": 1, "availability_status": "In Stock. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31iiIxdxD9S.jpg", "https://m.media-amazon.com/images/I/41IiCqSbFHS.jpg", "https://m.media-amazon.com/images/I/51bV+24e6bS.jpg", "https://m.media-amazon.com/images/I/512l11Y-WdS.jpg", "https://m.media-amazon.com/images/I/41e3jLzvlHS.jpg", "https://m.media-amazon.com/images/I/41KNIMivqFS.jpg", "https://m.media-amazon.com/images/I/61ujVlnf4TL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Cases, Holsters & Sleeves \u203a Basic Cases", "average_rating": 4.6, "small_description": ["\u3010Compatible models\u3011Designed specifically for Apple iPhone 11 (6.1 inches), only applicable to iPhone 11, not compatible with any other models. Please confirm your phone model before purchasing. Can work with wireless charging. ", "\u3010Square Love Heart Plating Design\u3011The love-heart square iPhone 11 case is made of flexible TPU and bumper edge & camera edge adopts electroplating Gold Technology, does not fade, and feels soft and comfortable makes your iphone look unique, and has a beautiful Elegant shiny appearance. Slim profile and snug-fit with sleek grip, provide you with a high-quality touch. ", "\u3010Camera Lens Protection\u3011Cover with raised lips on front and back camera lens protector, provide full body heavy duty drop protection without bulk. This luxury phone case Camera lens has an upgraded design, compared with regular cases, this case equipped with an installed lens protection cover that is higher than the lens which makes your lens dust free and enhance lens protection. ", "\u3010Luxurious and Exquisite Design\u3011The back cover case for iPhone 12 ProMax is thoughtfully designed with precise cutouts of speakers, camera, audio, and other functional ports so that you can enjoy easy and precise access to all ports and functionality controls without having to remove the phone back case. lanyard hole on the side is used to attach accessories like ring holder strap or wristlet. Elegant design is perfect to be a gift for men, women, girls, and boys. ", "\u3010Square Corner Drop Protection\u3011 : This square case combines 4 square TPU air guard corners and edges which act as the bumper frame. Soft TPU material can provides your precious iPhone 11 with full degree protection against drops, scrapes and other impacts.The easy-to-grip and anti-slip design make it easy for you to hold and use your iPhone. "], "total_reviews": 1444, "total_answered_questions": 8, "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B098SX5ZML/ref=twister_B098SYQLG5?_encoding=UTF8&psc=1", "value": "Electroplate Black-11", "price_string": "$10.59", "price": 10.59, "image": "https://m.media-amazon.com/images/I/51jbN7rfQlS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098T1PCWC/ref=twister_B098SYQLG5?_encoding=UTF8&psc=1", "value": "Electroplate Dark Green-11", "price_string": "$10.59", "price": 10.59, "image": "https://m.media-amazon.com/images/I/51qdKYIbTBS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098SZN2C7/ref=twister_B098SYQLG5?_encoding=UTF8&psc=1", "value": "Electroplate Green-11", "price_string": "$10.99", "price": 10.99, "image": "https://m.media-amazon.com/images/I/51okwIiAYfS.jpg"}, {"is_selected": true, "url": null, "value": "Electroplate Pink-11", "price_string": "$10.59", "price": 10.59, "image": "https://m.media-amazon.com/images/I/51MSDyV4Q1S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098SZFG2R/ref=twister_B098SYQLG5?_encoding=UTF8&psc=1", "value": "Electroplate Purple-11", "price_string": "$10.99", "price": 10.99, "image": "https://m.media-amazon.com/images/I/51OUgHi65YS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098SY7M1W/ref=twister_B098SYQLG5?_encoding=UTF8&psc=1", "value": "Electroplate Red-11", "price_string": "$10.59", "price": 10.59, "image": "https://m.media-amazon.com/images/I/51SlIZyJRZS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098SYYW37/ref=twister_B098SYQLG5?_encoding=UTF8&psc=1", "value": "Electroplate Sea Blue-11", "price_string": "$10.99", "price": 10.99, "image": "https://m.media-amazon.com/images/I/51Y+Kjuqx+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098SYQKZR/ref=twister_B098SYQLG5?_encoding=UTF8&psc=1", "value": "Electroplate Whitte-11", "price_string": "$10.59", "price": 10.59, "image": "https://m.media-amazon.com/images/I/51Vq2WWxjGS.jpg"}]}, "seller_id": "A3OYVXWWCIMOF4", "seller_name": "TZOMSZE", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": true, "asin": "B098SV78BW", "category": "electronics", "query": "iPhone Accessories", "page": 400, "small_description_old": "About this item \u3010Compatible models\u3011Designed specifically for Apple iPhone 11 (6.1 inches), only applicable to iPhone 11, not compatible with any other models. Please confirm your phone model before purchasing. Can work with wireless charging. \u3010Square Love Heart Plating Design\u3011The love-heart square iPhone 11 case is made of flexible TPU and bumper edge & camera edge adopts electroplating Gold Technology, does not fade, and feels soft and comfortable makes your iphone look unique, and has a beautiful Elegant shiny appearance. Slim profile and snug-fit with sleek grip, provide you with a high-quality touch. \u3010Camera Lens Protection\u3011Cover with raised lips on front and back camera lens protector, provide full body heavy duty drop protection without bulk. This luxury phone case Camera lens has an upgraded design, compared with regular cases, this case equipped with an installed lens protection cover that is higher than the lens which makes your lens dust free and enhance lens protection. \u3010Luxurious and Exquisite Design\u3011The back cover case for iPhone 12 ProMax is thoughtfully designed with precise cutouts of speakers, camera, audio, and other functional ports so that you can enjoy easy and precise access to all ports and functionality controls without having to remove the phone back case. lanyard hole on the side is used to attach accessories like ring holder strap or wristlet. Elegant design is perfect to be a gift for men, women, girls, and boys. \u3010Square Corner Drop Protection\u3011 : This square case combines 4 square TPU air guard corners and edges which act as the bumper frame. Soft TPU material can provides your precious iPhone 11 with full degree protection against drops, scrapes and other impacts.The easy-to-grip and anti-slip design make it easy for you to hold and use your iPhone."}, {"name": "Benro A2573F Aluminium Tripod with S6PRO Video Head", "product_information": {"Product Dimensions": "35.8 x 8.3 x 8.2 inches", "Item Weight": "7.87 pounds", "ASIN": "B082HFQM2B", "Item model number": "A2573FS6PRO", "Customer Reviews": {"ratings_count": 19, "stars": "4.3 out of 5 stars"}, "Best Sellers Rank": ["#539 in Complete Tripod Units"], "Date First Available": "November 28, 2019", "Manufacturer": "Benro"}, "brand": "Visit the Benro Store", "brand_url": "https://www.amazon.com/stores/Benro/page/908D5620-E372-41CB-BF22-11919B2BA742?ref_=ast_bln", "full_description": "The Benro A2573F Aluminum Single Tube Tripod with S6Pro Fluid Video Head is a versatile system supporting up to 13.2 lb loads. It has a compact design with single-tube legs, and it features a 65mm flat base that allows moving the head from the tripod directly to sliders, jibs, and other support gear.", "pricing": "$314.95", "list_price": "", "availability_quantity": 1, "availability_status": "Only 1 left in stock - order soon. Only 1 left in stock - order soon.", "images": ["https://m.media-amazon.com/images/I/31KMUQTAoDL.jpg", "https://m.media-amazon.com/images/I/21zCVAsz6DL.jpg", "https://m.media-amazon.com/images/I/3111mh7gDzL.jpg", "https://m.media-amazon.com/images/I/415uz5ARJUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Tripods & Monopods \u203a Complete Tripods", "average_rating": 4.3, "small_description": ["13.2 lb Payload/5+0 Steps Counterbalance ", "65mm Flat Base with 3/8\"-16 Thread ", "Low-Angle 17.5\" to 71\" Height (2 Stages) ", "Three Leg Positions; Leveling Adapter "], "total_reviews": 19, "total_answered_questions": "", "model": "A2573FS6PRO", "customization_options": "", "seller_id": "A3FR7YOQDCCAIT", "seller_name": "Dodd Camera", "fulfilled_by_amazon": true, "fast_track_message": " \n \n", "aplus_present": "", "asin": "B082HFQM2B", "category": "electronics", "query": "Tripods & Monopods", "page": 56, "small_description_old": "About this item\n \n13.2 lb Payload/5+0 Steps Counterbalance 65mm Flat Base with 3/8\"-16 Thread Low-Angle 17.5\" to 71\" Height (2 Stages) Three Leg Positions; Leveling Adapter"}, {"name": "Xerox AltaLink B8055 A3 Mono Laser Multifunction Copier - 55ppm, Copy, Print, Scan, Email, Auto Duplex, Network, Single Pass Duplex Auto Doc Feeder, 2 Trays, High Capacity Tandem Tray", "product_information": {"ASIN": "B07JMS4SL4", "Item model number": "B8055", "Is Discontinued By Manufacturer": "No", "Date First Available": "October 22, 2018", "Manufacturer": "Xerox"}, "brand": "Brand: ABD Office Solutions", "brand_url": "https://www.amazon.com/ABD-Office-Solutions/b/ref=bl_dp_s_web_14259388011?ie=UTF8&node=14259388011&field-lbr_brands_browse-bin=ABD+Office+Solutions", "full_description": "Xerox AltaLink B8055: 55ppm tabloid/ledger-size black and white MFP laser ideal for large-sized offices. 200K Monthly Duty Cycle, Auto Duplex Print/Scan, Copy, 1200 x 1200 dpi Image Quality, Up to 11x17 Media Size, Single Pass Duplex Document Feeder, 4600-sheet Paper Input Capacity, 110 -127 VAC 50/60 Hz, Power Cord. Fully refurbished in-house with 30-Day Parts Warranty. This machine is built with Xerox ConnectKey Technology. It enables powerful, single-touch scanning workflows in various formats such as text searchable and single/multi-page PDFs. You can also scan, fax and print directly from your phone or tablet by connecting with the printer using Xerox Mobile Link App. This app sends data to and prints data from cloud storage. Specifications: Standard: Copy, Print, Scan, 2 Trays, High Capacity Tandem Tray Print speed: Up to 55 ppm Duty cycle: Up to 200,000 pages/month Print resolution: Up to 1200 x 1200 dpi Paper size: Up to 11 x 17 in. / A3 Paper input capacity (std / max.): 4,600 sheets / 8,000 sheets with options Warranty: 30-Day Parts Warranty What's Included: Xerox AltaLink B8055 Average 30% consumables Power cord Optional Accessories: Contact us for availability and pricing Feeders: High Capacity Feeder, Envelope Tray Finishers: Sort and Collate, Staple, Hole Punch, Booklet, Z Fold, C Fold Internal Accessories: Fax, Wireless Adapter, Software Packages", "pricing": "$4,299.99", "list_price": "", "availability_status": "Usually ships within 6 to 10 days.", "images": ["https://m.media-amazon.com/images/I/31eArzcnSCL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office Electronics \u203a Copiers", "average_rating": "", "small_description": ["Standard Functions: Copy, Print, Scan, Network, Single Pass Duplex Automatic Document Feeder, NFC Tap-to-Pair ", "Print Speed: Up to 55 pages per minute ", "Media Sizes: 11\" x 17\", 8.5\" x 11\", 8.5\" x 14\" (A3/Tabloid or Ledger, A4/Letter and Legal) ", "Paper Input Capacity (std. / max.): 4,600 sheets / 8,000 sheets with options ", "This is a used machine that has been fully refurbished and checked by our in-house certified technicians. Standard Configuration: Print / Copy / Scan / 2 Trays / High Capacity Tandem Tray. Machine ships with average 30% consumables and power cord only. Comes with 30-Day Parts Warranty. "], "total_reviews": "", "total_answered_questions": "", "model": "B8055", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": " \n \n", "aplus_present": "", "asin": "B07JMS4SL4", "category": "electronics", "query": "Printers & Scanners", "page": 215, "small_description_old": "About this item\n \nStandard Functions: Copy, Print, Scan, Network, Single Pass Duplex Automatic Document Feeder, NFC Tap-to-Pair Print Speed: Up to 55 pages per minute Media Sizes: 11\" x 17\", 8.5\" x 11\", 8.5\" x 14\" (A3/Tabloid or Ledger, A4/Letter and Legal) Paper Input Capacity (std. / max.): 4,600 sheets / 8,000 sheets with options This is a used machine that has been fully refurbished and checked by our in-house certified technicians. Standard Configuration: Print / Copy / Scan / 2 Trays / High Capacity Tandem Tray. Machine ships with average 30% consumables and power cord only. Comes with 30-Day Parts Warranty."}, {"name": "Professional Clean Flossers Extra Strong Flosser Pick, Fresh Mint, 100 Count (Pack of 6)", "product_information": {"Package Dimensions\n \u200f": "\u200e\n 10.79 x 7.87 x 2.83 inches; 15.87 Ounces", "Date First Available\n \u200f": "\u200e\n October 30, 2019", "Manufacturer\n \u200f": "\u200e\n VINSULLA", "ASIN\n \u200f": "\u200e\n B09JBZQJ9M", "Best Sellers Rank": "#269,203 in Health & Household (See Top 100 in Health & Household)#924 in Dental Floss", "#924 in Dental Floss": ""}, "brand": "Brand: VINSULLA", "brand_url": "https://www.amazon.com/VINSULLA/b/ref=bl_dp_s_web_21397761011?ie=UTF8&node=21397761011&field-lbr_brands_browse-bin=VINSULLA", "full_description": "", "pricing": "$18.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/41bcYec+2yL.jpg", "https://m.media-amazon.com/images/I/41iLGanLKHL.jpg", "https://m.media-amazon.com/images/I/41bUyTLTLdL.jpg", "https://m.media-amazon.com/images/I/51Mt+-09afL.jpg", "https://m.media-amazon.com/images/I/51IgajU2aNL.jpg", "https://m.media-amazon.com/images/I/41OufSsNeuL.jpg", "https://m.media-amazon.com/images/I/41LzrSEWPiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Dental Floss & Picks \u203a Dental Floss", "average_rating": "", "small_description": ["Ergonomic Design: Widened finger rest for greater comfort and control. Ribbed grip and wider handle for improved control. ", "High Quality: The Dental floss is made of food-grade polymer scribed.It is high Toughness strong rally and smooth round wire, it will not hurt the teeth. Not easy to break and bending resistance.The floss handle is made of polystyrene and is extremely durable. ", "Easily Remove Plaque: Extra strong floss effectively removes plaque and food particles.Easily slides between teeth to remove unwanted and unsightly food debris. ", "Fresh Mint: Minty flavor leaves your mouth and gums feeling clean and refreshed. ", "Satisfaction Guarantee: We're proud of our products. If you aren't satisfied,or have any questions about our products, please feel free to contact us. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A240XKQA2DV1DP", "seller_name": "AlwaysDeals4You", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B09JBZQJ9M", "category": "beauty", "query": "Dental Floss & Picks", "page": 30, "small_description_old": "About this item Ergonomic Design: Widened finger rest for greater comfort and control. Ribbed grip and wider handle for improved control. High Quality: The Dental floss is made of food-grade polymer scribed.It is high Toughness strong rally and smooth round wire, it will not hurt the teeth. Not easy to break and bending resistance.The floss handle is made of polystyrene and is extremely durable. Easily Remove Plaque: Extra strong floss effectively removes plaque and food particles.Easily slides between teeth to remove unwanted and unsightly food debris. Fresh Mint: Minty flavor leaves your mouth and gums feeling clean and refreshed. Satisfaction Guarantee: We're proud of our products. If you aren't satisfied,or have any questions about our products, please feel free to contact us."}, {"name": "OS Home and Office Sierra Writing Desk, Medium, Mission Ash", "product_information": {"Item Weight": "\u200e49 pounds", "Product Dimensions": "\u200e20 x 40 x 30 inches", "Country of Origin": "\u200eVietnam", "Item model number": "\u200eSRA25-AH", "ASIN": "B09DZVSFJL", "Best Sellers Rank": ["#5,203,174 in Home & Kitchen (See Top 100 in Home & Kitchen) #16,809 in Home Office Desks"], "Date First Available": "August 30, 2021"}, "brand": "Brand: OS Home and Office", "brand_url": "https://www.amazon.com/OS-Home-and-Office/b/ref=bl_dp_s_web_7494434011?ie=UTF8&node=7494434011&field-lbr_brands_browse-bin=OS+Home+and+Office", "full_description": "Imagine how impressed your friends will be when they see the new Sierra Mission Desk in your home office. Certain to proclaim your taste for serious style; this craftsman style desk is a winner on so many levels. Envision this mature yet down-home desk housing your tablets, paperwork or laptop as you sit before it in classic style. Studies have proven that more than half of American workers judge others on how clean or dirty their workspaces are, but with an Oak finish in an Ash Stain, this desk is easy to clean and is outfitted with an attractive metal handle drawer to keep your documents and pens in the perfect place. Whether you homes style is mature and Transitional, urban and Contemporary, or cultured and Cosmopolitan, the all new Sierra Mission Desk is the perfect style statement for your d\u00e9cor that is as attractive as it is affordable. Add to cart now and start enjoying this precocious specimen of home office chattel for years to come.", "pricing": "$199.64", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51Na9jDZ7CL.jpg", "https://m.media-amazon.com/images/I/31eUW1iFevL.jpg", "https://m.media-amazon.com/images/I/51GS1RDmYlL.jpg", "https://m.media-amazon.com/images/I/31kzTNJAftL.jpg", "https://m.media-amazon.com/images/I/41+BhmhWz7L.jpg", "https://m.media-amazon.com/images/I/61obkBuQ2WL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Home Office Desks", "average_rating": "", "small_description": ["Constructed from Solid wood and Wood Veneers ", "Attractive Ash Furniture Grade Finish ", "Interesting Mission Style ", "Attractive metal pewter drawer pull ", "Spacious pencil drawer operates on sturdy metal drawer guides "], "total_reviews": "", "total_answered_questions": "", "model": "\u200eSRA25-AH", "customization_options": "", "seller_id": "", "seller_name": "Amazon.com", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": "", "asin": "B09DZVSFJL", "category": "garden", "query": "Home Office Desks", "page": 160, "small_description_old": "About this item Constructed from Solid wood and Wood Veneers Attractive Ash Furniture Grade Finish Interesting Mission Style Attractive metal pewter drawer pull Spacious pencil drawer operates on sturdy metal drawer guides \n \u203a See more product details"}, {"name": "XWZH Mirrors for Wall Mirrors for Living Room Nordic Style Decorative Mirror Creative Bedroom Washroom Bathroom Wall Hanging Round Mirror", "product_information": {"Item Weight": "0.035 ounces", "Manufacturer": "XWZH", "ASIN": "B08TGV7SP2"}, "brand": "Brand: XWZH", "brand_url": "https://www.amazon.com/s/ref=bl_dp_s_web_0?ie=UTF8&search-alias=aps&field-keywords=XWZH", "full_description": "Wall mirror Wooden Mirror Wall Decorative Hotel Home Vanity Sliver MirrorProduct Name: MirrorMaterial:Wood frame+glassSize:56CMApplicable space: Hotel, bar, restaurant, bathroom, dressing table, bedroom, living room, entrance, etc.Style: modern minimalist, American, European", "pricing": "$513.08", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/319pHlO3RFL.jpg", "https://m.media-amazon.com/images/I/31aw8c3Pv7L.jpg", "https://m.media-amazon.com/images/I/31kCg0bzt0L.jpg", "https://m.media-amazon.com/images/I/512veWSZenL.jpg", "https://m.media-amazon.com/images/I/41PLFauK+CL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Mirrors \u203a Wall-Mounted Mirrors", "average_rating": "", "small_description": ["Every large mirror has sleek 1-inch beveled edge it gives the feeling of even more light and depth, ", "Use it as a decorative wall mirror in your living room, entryway, or bedroom, or use it as a bathroom vanity mirror ", "D-ring hangers already attached for easy wall mounting. Hangs vertical or horizontal ", "The mirror can be hung either landscape or portrait depending on available wall space, either way the mirror will create a wonderful look. "], "total_reviews": "", "total_answered_questions": "", "customization_options": "", "seller_id": "A3CF2O9ZIEDICD", "seller_name": "RED LIGHTING FAN", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B08TGV7SP2", "category": "garden", "query": "Decorative Mirrors", "page": 320, "small_description_old": "About this item\n \nEvery large mirror has sleek 1-inch beveled edge it gives the feeling of even more light and depth, Use it as a decorative wall mirror in your living room, entryway, or bedroom, or use it as a bathroom vanity mirror D-ring hangers already attached for easy wall mounting. Hangs vertical or horizontal The mirror can be hung either landscape or portrait depending on available wall space, either way the mirror will create a wonderful look."}, {"name": "JINCHAN Tie Up Valance Moroccan Tile Print Curtain Valance Bedroom Curtain Quatrefoil Flax Linen Blend Textured Geometry Lattice Rod Pocket Window Treatment Set Living Room 1 Panel 18\" L Grey", "product_information": {"Product Dimensions": "18 x 52 x 0.01 inches", "Item Weight": "10.5 ounces", "Manufacturer": "CKNY HOME FASHION", "ASIN": "B07DRFDWVT", "Country of Origin": "China", "Item model number": "009MRCATIEUP-5018C01", "Customer Reviews": {"ratings_count": 206, "stars": "4.4 out of 5 stars"}, "Best Sellers Rank": ["#333,969 in Home & Kitchen (See Top 100 in Home & Kitchen) #3,087 in Window Curtain Panels"], "Is Discontinued By Manufacturer": "No", "Date First Available": "January 7, 2019"}, "brand": "Visit the jinchan Store", "brand_url": "https://www.amazon.com/stores/JINCHAN/page/10C0A298-9E63-42AB-B2FE-37E13854E2B8?ref_=ast_bln", "full_description": "", "pricing": "$12.99", "list_price": "", "availability_status": "In Stock.", "images": ["https://m.media-amazon.com/images/I/51FMGcayk7L.jpg", "https://m.media-amazon.com/images/I/51Xkk89lNgL.jpg", "https://m.media-amazon.com/images/I/51FxGDUjaVL.jpg", "https://m.media-amazon.com/images/I/51mFB9vpjlL.jpg", "https://m.media-amazon.com/images/I/51jwEpsJJgL.jpg", "https://m.media-amazon.com/images/I/51N2ub1nkuL.jpg", "https://m.media-amazon.com/images/I/51D7jGkDTeL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Window Treatments \u203a Curtains & Drapes \u203a Panels", "average_rating": 4.4, "small_description": ["Geometric Style: Moroccan print design with its visually clean lines gives the curtain a modern twist from a rustic flax linen look. ", "Light Reducing: These curtains allows for privacy while allowing some light to filter through. Enjoy your favorite show with no glare on your screen. ", "Easy Care: Machine washable in cold water, gentle cycle, tumble dry low. light iron if needed. "], "total_reviews": 206, "total_answered_questions": "", "model": "009MRCATIEUP-5018C01", "customization_options": {"Size": null, "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QCPQ1HM/ref=twister_B08Q75N1HC?_encoding=UTF8&psc=1", "value": "*Soft Grey", "price_string": "$12.99", "price": 12.99, "image": "https://m.media-amazon.com/images/I/61dJvsxVT5L.jpg"}, {"is_selected": true, "url": null, "value": "Soft Grey", "price_string": "$12.99", "price": 12.99, "image": "https://m.media-amazon.com/images/I/61clNT5ROkL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07DRCCDJ5/ref=twister_B08Q75N1HC?_encoding=UTF8&psc=1", "value": "Taupe", "price_string": "$11.99", "price": 11.99, "image": "https://m.media-amazon.com/images/I/61jd2WK+J8L.jpg"}]}, "seller_id": "A4IAF22BU8ZKC", "seller_name": "CKNY", "fulfilled_by_amazon": true, "fast_track_message": "", "aplus_present": true, "asin": "B07DRFDWVT", "category": "garden", "query": "Living room Sets", "page": 186, "small_description_old": "About this item\n \nGeometric Style: Moroccan print design with its visually clean lines gives the curtain a modern twist from a rustic flax linen look. Light Reducing: These curtains allows for privacy while allowing some light to filter through. Enjoy your favorite show with no glare on your screen. Easy Care: Machine washable in cold water, gentle cycle, tumble dry low. light iron if needed."}, {"name": "AriZona Arnold Palmer Zero Half & Half Iced Tea Lemonade", "product_information": {"Product Dimensions\n \u200f": "\u200e\n 5.6 x 7.15 x 10.25 inches; 8.69 Pounds", "UPC\n \u200f": "\u200e\n 613008730444", "Manufacturer\n \u200f": "\u200e\n Arizona Beverages USA", "ASIN\n \u200f": "\u200e\n B00BT1QVW0", "Best Sellers Rank": "#106,492 in Grocery & Gourmet Food (See Top 100 in Grocery & Gourmet Food)#1,248 in Tea Samplers", "#1,248 in Tea Samplers": "", "Customer Reviews": {"ratings_count": null, "stars": null}}, "brand": "Visit the AriZona Store", "brand_url": "https://www.amazon.com/stores/AriZona/page/A324D639-8C2F-467A-A9BC-A054A93595FF?ref_=ast_bln", "full_description": "AriZona Arnold Palmer Zero No Calories Half & Half Iced Tea Lemonade.", "pricing": "", "list_price": "", "availability_status": "", "images": ["https://m.media-amazon.com/images/I/41QmPfNOleL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Coffee, Tea & Cocoa \u203a Tea \u203a Tea Samplers", "average_rating": 3.2, "small_description": [""], "total_reviews": 19, "total_answered_questions": "", "customization_options": "", "seller_id": "", "seller_name": "", "fulfilled_by_amazon": "", "fast_track_message": "", "aplus_present": "", "asin": "B00BT1QVW0", "category": "grocery", "query": "Beverages", "page": 397, "small_description_old": ""}] \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/engine.py b/external/webshop-minimal/webshop_minimal/engine.py new file mode 100644 index 0000000000000000000000000000000000000000..eaacd432c1edb728151c4657a73d786ed45c92b3 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/engine.py @@ -0,0 +1,355 @@ +""" +""" +import os +import re +import json +import random +from collections import defaultdict +from ast import literal_eval +from decimal import Decimal + +import cleantext +from tqdm import tqdm +from rank_bm25 import BM25Okapi +from flask import render_template_string +from rich import print +from pyserini.search.lucene import LuceneSearcher + +from webshop_minimal.utils import ( + get_base_dir, + get_attr_path, + get_human_attr_path +) +def get_template_dir(): + return os.path.join(get_base_dir(), 'templates') + +SEARCH_RETURN_N = 50 +PRODUCT_WINDOW = 10 +TOP_K_ATTR = 10 + +END_BUTTON = 'Buy Now' +NEXT_PAGE = 'Next >' +PREV_PAGE = '< Prev' +BACK_TO_SEARCH = 'Back to Search' + +ACTION_TO_TEMPLATE = { + 'Description': 'description_page.html', + 'Features': 'features_page.html', + 'Reviews': 'review_page.html', + 'Attributes': 'attributes_page.html', +} + +def map_action_to_html(action, **kwargs): + action_name, action_arg = parse_action(action) + if action_name == 'start': + path = os.path.join(get_template_dir(), 'search_page.html') + html = render_template_string( + read_html_template(path=path), + session_id=kwargs['session_id'], + instruction_text=kwargs['instruction_text'], + ) + elif action_name == 'search': + path = os.path.join(get_template_dir(), 'results_page.html') + html = render_template_string( + read_html_template(path=path), + session_id=kwargs['session_id'], + products=kwargs['products'], + keywords=kwargs['keywords'], + page=kwargs['page'], + total=kwargs['total'], + instruction_text=kwargs['instruction_text'], + ) + elif action_name == 'click' and action_arg == END_BUTTON: + path = os.path.join(get_template_dir(), 'done_page.html') + html = render_template_string( + read_html_template(path), + session_id=kwargs['session_id'], + reward=kwargs['reward'], + asin=kwargs['asin'], + options=kwargs['options'], + reward_info=kwargs.get('reward_info'), + goal_attrs=kwargs.get('goal_attrs'), + purchased_attrs=kwargs.get('purchased_attrs'), + goal=kwargs.get('goal'), + mturk_code=kwargs.get('mturk_code'), + query=kwargs.get('query'), + category=kwargs.get('category'), + product_category=kwargs.get('product_category'), + ) + elif action_name == 'click' and action_arg in ACTION_TO_TEMPLATE: + path = os.path.join(get_template_dir(), ACTION_TO_TEMPLATE[action_arg]) + html = render_template_string( + read_html_template(path), + session_id=kwargs['session_id'], + product_info=kwargs['product_info'], + keywords=kwargs['keywords'], + page=kwargs['page'], + asin=kwargs['asin'], + options=kwargs['options'], + instruction_text=kwargs.get('instruction_text') + ) + elif action_name == 'click': + path = os.path.join(get_template_dir(), 'item_page.html') + html = render_template_string( + read_html_template(path), + session_id=kwargs['session_id'], + product_info=kwargs['product_info'], + keywords=kwargs['keywords'], + page=kwargs['page'], + asin=kwargs['asin'], + options=kwargs['options'], + instruction_text=kwargs.get('instruction_text'), + show_attrs=kwargs['show_attrs'] + ) + else: + raise ValueError('Action name not recognized.') + return html + + +def read_html_template(path): + with open(path) as f: + template = f.read() + return template + + +def parse_action(action): + """ + Parse action string to action name and its arguments. + """ + pattern = re.compile(r'(.+)\[(.+)\]') + m = re.match(pattern, action) + if m is None: + action_name = action + action_arg = None + else: + action_name, action_arg = m.groups() + return action_name, action_arg + + +def convert_web_app_string_to_var(name, string): + if name == 'keywords': + keywords = string + if keywords.startswith('['): + keywords = literal_eval(keywords) + else: + keywords = [keywords] + var = keywords + elif name == 'page': + page = string + page = int(page) + var = page + else: + raise ValueError('Name of variable not recognized.') + return var + + +def get_top_n_product_from_keywords( + keywords, + search_engine, + all_products, + product_item_dict, + attribute_to_asins=None, + ): + if keywords[0] == '': + top_n_products = random.sample(all_products, k=SEARCH_RETURN_N) + elif keywords[0] == '': + attribute = ' '.join(keywords[1:]).strip() + asins = attribute_to_asins[attribute] + top_n_products = [p for p in all_products if p['asin'] in asins] + elif keywords[0] == '': + category = keywords[1].strip() + top_n_products = [p for p in all_products if p['category'] == category] + elif keywords[0] == '': + query = ' '.join(keywords[1:]).strip() + top_n_products = [p for p in all_products if p['query'] == query] + else: + keywords = ' '.join(keywords) + hits = search_engine.search(keywords, k=SEARCH_RETURN_N) + docs = [search_engine.doc(hit.docid) for hit in hits] + top_n_asins = [json.loads(doc.raw())['id'] for doc in docs] + top_n_products = [product_item_dict[asin] for asin in top_n_asins if asin in product_item_dict] + return top_n_products + + +def get_product_per_page(top_n_products, page): + return top_n_products[(page - 1) * PRODUCT_WINDOW:page * PRODUCT_WINDOW] + + +def generate_product_prices(all_products): + product_prices = dict() + for product in all_products: + asin = product['asin'] + pricing = product['pricing'] + if not pricing: + price = 100.0 + elif len(pricing) == 1: + price = pricing[0] + else: + price = random.uniform(*pricing[:2]) + product_prices[asin] = price + return product_prices + + +def init_search_engine(num_products=None): + if num_products == 100: + indexes = 'indexes_100' + elif num_products == 1000: + indexes = 'indexes_1k' + elif num_products == 100000: + indexes = 'indexes_100k' + elif num_products is None: + indexes = 'indexes' + else: + raise NotImplementedError(f'num_products being {num_products} is not supported yet.') + search_engine = LuceneSearcher(os.path.join(get_base_dir(), f'search_engine/{indexes}')) + return search_engine + + +def clean_product_keys(products): + for product in products: + product.pop('product_information', None) + product.pop('brand', None) + product.pop('brand_url', None) + product.pop('list_price', None) + product.pop('availability_quantity', None) + product.pop('availability_status', None) + product.pop('total_reviews', None) + product.pop('total_answered_questions', None) + product.pop('seller_id', None) + product.pop('seller_name', None) + product.pop('fulfilled_by_amazon', None) + product.pop('fast_track_message', None) + product.pop('aplus_present', None) + product.pop('small_description_old', None) + print('Keys cleaned.') + return products + + +def load_products(filepath, num_products=None, human_goals=True): + # TODO: move to preprocessing step -> enforce single source of truth + with open(filepath) as f: + products = json.load(f) + print('Products loaded.') + products = clean_product_keys(products) + + all_reviews = dict() + all_ratings = dict() + + if human_goals: + with open(get_human_attr_path()) as f: + human_attributes = json.load(f) + with open(get_attr_path()) as f: + attributes = json.load(f) + with open(get_human_attr_path()) as f: + human_attributes = json.load(f) + print('Attributes loaded.') + + asins = set() + all_products = [] + attribute_to_asins = defaultdict(set) + if num_products is not None: + # using item_shuffle.json, we assume products already shuffled + products = products[:num_products] + for i, p in tqdm(enumerate(products), total=len(products)): + asin = p['asin'] + if asin == 'nan' or len(asin) > 10: + continue + + if asin in asins: + continue + else: + asins.add(asin) + + products[i]['category'] = p['category'] + products[i]['query'] = p['query'] + products[i]['product_category'] = p['product_category'] + + products[i]['Title'] = p['name'] + products[i]['Description'] = p['full_description'] + products[i]['Reviews'] = all_reviews.get(asin, []) + products[i]['Rating'] = all_ratings.get(asin, 'N.A.') + for r in products[i]['Reviews']: + if 'score' not in r: + r['score'] = r.pop('stars') + if 'review' not in r: + r['body'] = '' + else: + r['body'] = r.pop('review') + products[i]['BulletPoints'] = p['small_description'] \ + if isinstance(p['small_description'], list) else [p['small_description']] + + pricing = p.get('pricing') + if pricing is None or not pricing: + pricing = [100.0] + price_tag = '$100.0' + else: + pricing = [ + float(Decimal(re.sub(r'[^\d.]', '', price))) + for price in pricing.split('$')[1:] + ] + if len(pricing) == 1: + price_tag = f"${pricing[0]}" + else: + price_tag = f"${pricing[0]} to ${pricing[1]}" + pricing = pricing[:2] + products[i]['pricing'] = pricing + products[i]['Price'] = price_tag + + options = dict() + customization_options = p['customization_options'] + option_to_image = dict() + if customization_options: + for option_name, option_contents in customization_options.items(): + if option_contents is None: + continue + option_name = option_name.lower() + + option_values = [] + for option_content in option_contents: + option_value = option_content['value'].strip().replace('/', ' | ').lower() + option_image = option_content.get('image', None) + + option_values.append(option_value) + option_to_image[option_value] = option_image + options[option_name] = option_values + products[i]['options'] = options + products[i]['option_to_image'] = option_to_image + + # without color, size, price, availability + # if asin in attributes and 'attributes' in attributes[asin]: + # products[i]['Attributes'] = attributes[asin]['attributes'] + # else: + # products[i]['Attributes'] = ['DUMMY_ATTR'] + # products[i]['instruction_text'] = \ + # attributes[asin].get('instruction', None) + # products[i]['instruction_attributes'] = \ + # attributes[asin].get('instruction_attributes', None) + + # without color, size, price, availability + if asin in attributes and 'attributes' in attributes[asin]: + products[i]['Attributes'] = attributes[asin]['attributes'] + else: + products[i]['Attributes'] = ['DUMMY_ATTR'] + + if human_goals: + if asin in human_attributes: + products[i]['instructions'] = human_attributes[asin] + else: + products[i]['instruction_text'] = \ + attributes[asin].get('instruction', None) + + products[i]['instruction_attributes'] = \ + attributes[asin].get('instruction_attributes', None) + + products[i]['MainImage'] = p['images'][0] + products[i]['query'] = p['query'].lower().strip() + + all_products.append(products[i]) + + for p in all_products: + for a in p['Attributes']: + attribute_to_asins[a].add(p['asin']) + + product_item_dict = {p['asin']: p for p in all_products} + product_prices = generate_product_prices(all_products) + return all_products, product_item_dict, product_prices, attribute_to_asins \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/env.py b/external/webshop-minimal/webshop_minimal/env.py new file mode 100644 index 0000000000000000000000000000000000000000..dc9149bec61fb6c018ab723c9a18fab5e1b75dfe --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/env.py @@ -0,0 +1,665 @@ +import gym +import json +import random +import string +import time +import torch + +import numpy as np + +from bs4 import BeautifulSoup +from bs4.element import Comment +from collections import defaultdict +from flask import Flask +from webshop_minimal.engine import ( + load_products, + init_search_engine, + get_top_n_product_from_keywords, + map_action_to_html, + parse_action, + get_product_per_page, + ACTION_TO_TEMPLATE, + END_BUTTON, NEXT_PAGE, PREV_PAGE, BACK_TO_SEARCH, +) +from webshop_minimal.goal import get_reward, get_goals +from webshop_minimal.utils import ( + get_file_path, + get_feat_conv_path, + get_feat_ids_path, + random_idx, + html_to_markdown +) + +app = Flask(__name__) +class WebAgentTextEnv(gym.Env): + """Gym environment for Text mode of WebShop environment""" + def __init__( + self, + observation_mode='html', + file_path="", + server=None, + **kwargs + ): + """ + Constructor for text environment + + Arguments: + observation_mode (`str`) -- ['html' | 'text'] (default 'html') + get_image + filter_goals + limit_goals + num_products + human_goals + session + session_prefix + show_attrs + """ + if file_path == "": + file_path = get_file_path() + super(WebAgentTextEnv, self).__init__() + self.observation_mode = observation_mode + self.kwargs = kwargs + + self.file_path = file_path + + self.base_url = 'http://127.0.0.1:3000' + self.server = SimServer( + self.base_url, + self.file_path, + self.kwargs.get('filter_goals'), + self.kwargs.get('limit_goals', -1), + self.kwargs.get('num_products'), + self.kwargs.get('human_goals'), + self.kwargs.get('show_attrs', False), + ) if server is None else server + self.browser = SimBrowser(self.server) + + self.session = self.kwargs.get('session') + self.session_prefix = self.kwargs.get('session_prefix') + if self.kwargs.get('get_image', 0): + self.feats = torch.load(get_feat_conv_path()) + self.ids = torch.load(get_feat_ids_path()) + self.ids = {url: idx for idx, url in enumerate(self.ids)} + self.prev_obs = [] + self.prev_actions = [] + self.num_prev_obs = self.kwargs.get('num_prev_obs', 0) + self.num_prev_actions = self.kwargs.get('num_prev_actions', 0) + self.reset() + + def step(self, action): + """ + Takes an action, updates WebShop environment, and returns (observation, reward, done, info) + + Arguments: + action (`str`): An action should be of the following structure: + - search[keywords] + - click[value] + If action not valid, perform nothing. + """ + info = None + self.get_available_actions() + + # Determine action type (click, search) and argument + action_name, action_arg = parse_action(action) + if action_arg is not None: + action_arg = action_arg.lower() + if (action_name == 'search' and + action_arg is not None and + action_arg != ''): + status = self.browser.search(action_arg) + elif (action_name == 'click' and + action_arg in self.text_to_clickable.keys() and + action_arg != 'search'): + status = self.browser.click(action_arg, self.text_to_clickable) + else: + status = dict(reward=0, done=False) + + # Update observation, state with the new action + ob = self.observation + text_list = [ob] + self.prev_actions.append(action) + for i in range(1, 1 + max(self.num_prev_obs, self.num_prev_actions)): + if len(self.prev_actions) >= i and self.num_prev_actions >= i: + text_list.append(self.prev_actions[-i]) + if len(self.prev_obs) >= i and self.num_prev_obs >= i: + text_list.append(self.prev_obs[-i]) + state = ' [SEP] '.join(text_list[::-1]) + self.prev_obs.append(ob) + return state, status['reward'], status['done'], status['info'] if 'info' in status else None + + def get_available_actions(self): + """Returns list of available actions at the current step""" + html_obj = self._parse_html() + + # Collect search bar, buttons, links, and options as clickables + search_bar = html_obj.find(id='search_input') + has_search_bar = True if search_bar is not None else False + buttons = html_obj.find_all(class_='btn') + product_links = html_obj.find_all(class_='product-link') + buying_options = html_obj.select('input[type="radio"]') + + self.text_to_clickable = { + f'{b.get_text()}'.lower(): b + for b in buttons + product_links + } + for opt in buying_options: + opt_value = opt.get('value') + self.text_to_clickable[f'{opt_value}'] = opt + return dict( + has_search_bar=has_search_bar, + clickables=list(self.text_to_clickable.keys()), + ) + + def get_image(self): + """Scrape image from page HTML and return as a list of pixel values""" + html_obj = self._parse_html(self.browser.page_source) + image_url = html_obj.find(id='product-image') + if image_url is not None: + image_url = image_url['src'] + if image_url in self.ids: + image_idx = self.ids[image_url] + image = self.feats[image_idx] + return image + return torch.zeros(512) + + def get_instruction_text(self): + """Get corresponding instruction text for current environment session""" + html_obj = self._parse_html(self.browser.page_source) + instruction_text = html_obj.find(id='instruction-text').h4.text + return instruction_text + + def _parse_html(self, html=None): + """ + Returns web request result wrapped in BeautifulSoup object + + Arguments: + url (`str`): If no url or html is provided, use the current + observation (HTML) for parsing. + """ + if html is None: + html = self.state['html'] + html_obj = BeautifulSoup(html, 'html.parser') + return html_obj + + @property + def observation(self): + """Compiles state into either the `html` or `text` observation mode""" + html = self.state['html'] + if self.observation_mode == 'html': + return html + elif self.observation_mode == 'text': + return self.convert_html_to_text(html, simple=True) + elif self.observation_mode == 'text_rich': + return self.convert_html_to_text(html, simple=False) + elif self.observation_mode == 'url': + return self.state['url'] + else: + raise ValueError( + f'Observation mode {self.observation_mode} not supported.' + ) + + @property + def state(self): + """ + State that includes all information. The actual observation are + likely to be a subset or reduced form of the state. + """ + return dict( + url=self.browser.current_url, + html=self.browser.page_source, + instruction_text=self.instruction_text, + ) + + def convert_html_to_text(self, html, simple=False): + """Strip HTML of tags and add separators to convert observation into simple mode""" + texts = self._parse_html(html).findAll(text=True) + visible_texts = filter(tag_visible, texts) + if simple: + # For `simple` mode, return just [SEP] separators + return ' [SEP] '.join(t.strip() for t in visible_texts if t != '\n') + else: + # Otherwise, return an observation with tags mapped to specific, unique separators + observation = '' + for t in visible_texts: + if t == '\n': continue + if t.parent.name == 'button': # button + processed_t = f'[button] {t} [button_]' + elif t.parent.name == 'label': # options + if f'"{t}"' in self.state['url']: + processed_t = f' [clicked button] {t} [clicked button_]' + observation = f'You have clicked {t}.\n' + observation + else: + processed_t = f' [button] {t} [button_]' + elif t.parent.get('class') == ["product-link"]: # product asins + if f'{t}' in self.server.user_sessions[self.session]['asins']: + processed_t = f'\n[clicked button] {t} [clicked button_]' + else: + processed_t = f'\n[button] {t} [button_]' + else: # regular, unclickable text + processed_t = str(t) + observation += processed_t + '\n' + return observation + + def reset(self, session=None, instruction_text=None): + """Create a new session and reset environment variables""" + session_int = None + if session is not None: + self.session = str(session) + if isinstance(session, int): + session_int = session + else: + self.session = ''.join(random.choices(string.ascii_lowercase, k=10)) + if self.session_prefix is not None: + self.session = self.session_prefix + self.session + + init_url = f'{self.base_url}/{self.session}' + self.browser.get(init_url, session_id=self.session, session_int=session_int) + + self.text_to_clickable = None + self.instruction_text = self.get_instruction_text() if instruction_text is None else instruction_text + obs = self.observation + self.prev_obs = [obs] + self.prev_actions = [] + obs = html_to_markdown(obs) + return obs, None + + def render(self, mode='human'): + pass + + def close(self): + pass + + +def tag_visible(element): + ignore = {'style', 'script', 'head', 'title', 'meta', '[document]'} + return ( + element.parent.name not in ignore and not isinstance(element, Comment) + ) + + +class SimServer: + """Lightweight simulator of WebShop Flask application for generating HTML observations""" + + _instance = None # Class variable to store the single instance + _initialized = False # Flag to ensure __init__ is called only once + + def __new__(cls, *args, **kwargs): + """ + Override __new__ to control instance creation. + If an instance doesn't exist, it creates one. Otherwise, it returns the existing instance. + """ + if not cls._instance: + cls._instance = super(SimServer, cls).__new__(cls) + print("SimServer: Creating new instance.") + else: + print("SimServer: Returning existing instance.") + return cls._instance + + def __init__( + self, + base_url, + file_path, + filter_goals=None, + limit_goals=-1, + num_products=None, + human_goals=0, + show_attrs=False, + ): + """ + Constructor for simulated server serving WebShop application + + Arguments: + filter_goals (`func`) -- Select specific goal(s) for consideration based on criteria of custom function + limit_goals (`int`) -- Limit to number of goals available + num_products (`int`) -- Number of products to search across + human_goals (`bool`) -- If true, load human goals; otherwise, load synthetic goals + """ + if SimServer._initialized: + return + # Load all products, goals, and search engine + self.base_url = base_url + self.all_products, self.product_item_dict, self.product_prices, _ = \ + load_products(filepath=file_path, num_products=num_products, human_goals=human_goals) + self.search_engine = init_search_engine(num_products=num_products) + self.goals = get_goals(self.all_products, self.product_prices, human_goals) + self.show_attrs = show_attrs + + # Fix outcome for random shuffling of goals + random.seed(233) + random.shuffle(self.goals) + + # Apply `filter_goals` parameter if exists to select speific goal(s) + if filter_goals is not None: + self.goals = [ + goal for (i, goal) in enumerate(self.goals) + if filter_goals(i, goal) + ] + + # Imposes `limit` on goals via random selection + if limit_goals != -1 and limit_goals < len(self.goals): + self.weights = [goal['weight'] for goal in self.goals] + self.cum_weights = [0] + np.cumsum(self.weights).tolist() + idxs = [] + while len(idxs) < limit_goals: + idx = random_idx(self.cum_weights) + if idx not in idxs: + idxs.append(idx) + self.goals = [self.goals[i] for i in idxs] + print(f'Loaded {len(self.goals)} goals.') + + # Set extraneous housekeeping variables + self.weights = [goal['weight'] for goal in self.goals] + self.cum_weights = [0] + np.cumsum(self.weights).tolist() + self.user_sessions = dict() + self.search_time = 0 + self.render_time = 0 + self.sample_time = 0 + self.assigned_instruction_text = None # TODO: very hacky, should remove + SimServer._initialized = True # Mark as initialized + + @app.route('/', methods=['GET', 'POST']) + def index(self, session_id, **kwargs): + """Redirect to the search page with the given session ID""" + html = map_action_to_html( + 'start', + session_id=session_id, + instruction_text=kwargs['instruction_text'], + ) + url = f'{self.base_url}/{session_id}' + return html, url + + @app.route('/', methods=['GET', 'POST']) + def search_results(self, session_id, **kwargs): + """Initialize session and return the search results page""" + session = self.user_sessions[session_id] + keywords = kwargs['keywords'] # TODO: why is this using kwargs? why not session? + assert isinstance(keywords, list) + page = 1 if 'page' not in kwargs else kwargs['page'] + session["page"] = page + session["keywords"] = keywords + session["actions"]["search"] += 1 + session["asin"] = None + session["options"] = {} + + # Perform search on keywords from items and record amount of time it takes + old_time = time.time() + top_n_products = get_top_n_product_from_keywords( + keywords, + self.search_engine, + self.all_products, + self.product_item_dict, + ) + self.search_time += time.time() - old_time + + # Get product list from search result asins and get list of corresponding URLs + products = get_product_per_page(top_n_products, page) + + keywords_url_string = '+'.join(keywords) + url = ( + f'{self.base_url}/search_results/{session_id}/' + f'{keywords_url_string}/{page}' + ) + + # Render HTML search page and record amount of time taken + old_time = time.time() + html = map_action_to_html( + 'search', + session_id=session_id, + products=products, + keywords=session["keywords"], + page=page, + total=len(top_n_products), + instruction_text=session["goal"]["instruction_text"], + ) + self.render_time += time.time() - old_time + return html, url + + @app.route('/', methods=['GET', 'POST']) + def item_page(self, session_id, **kwargs): + """Render and return the HTML for a product item page""" + session = self.user_sessions[session_id] + clickable_name = kwargs['clickable_name'] + text_to_clickable = kwargs['text_to_clickable'] + clickable = text_to_clickable[clickable_name] + + # Update session logs with information of last product asin selected + if (clickable.get('class') is not None and + clickable.get('class')[0] == 'product-link'): + session["asin"] = clickable_name.upper() + session["actions"]["asin"] += 1 + session["asins"].add(session["asin"]) + elif clickable.get('name') is not None: + clickable_key = clickable['name'].lower() + session["options"][clickable_key] = clickable_name + session["actions"]["options"] += 1 + + # Set fields + url of page, then render page's HTML + product_info = self.product_item_dict[session["asin"]] + keywords_url_string = '+'.join(session["keywords"]) + option_string = json.dumps(session['options']) + + url = ( + f'{self.base_url}/item_page/{session_id}/' + f'{session["asin"]}/{keywords_url_string}/' + f'{session["page"]}/{option_string}' + ) + + html = map_action_to_html( + 'click', + session_id=session_id, + product_info=product_info, + keywords=session["keywords"], + page=session["page"], + asin=session["asin"], + options=session["options"], + instruction_text=session["goal"]["instruction_text"], + show_attrs=self.show_attrs, + ) + return html, url + + @app.route('/', methods=['GET', 'POST']) + def item_sub_page(self, session_id, **kwargs): + """Render and return the HTML for a product's sub page (i.e. description, features)""" + session = self.user_sessions[session_id] + clickable_name = kwargs['clickable_name'] + for k in ACTION_TO_TEMPLATE: + if clickable_name.lower() == k.lower(): + clickable_name = k + break + + # Set fields + url of page, then render page's HTML + product_info = self.product_item_dict[session["asin"]] + session["actions"][clickable_name] += 1 + keywords_url_string = '+'.join(session["keywords"]) + url = ( + f'{self.base_url}/item_sub_page/{session_id}/' + f'{session["asin"]}/{keywords_url_string}/{session["page"]}/' + f'{clickable_name}/{session["options"]}' + ) + html = map_action_to_html( + f'click[{clickable_name}]', + session_id=session_id, + product_info=product_info, + keywords=session["keywords"], + page=session["page"], + asin=session["asin"], + options=session["options"], + instruction_text=session["goal"]["instruction_text"], + ) + return html, url + + @app.route('/', methods=['GET', 'POST']) + def done(self, session_id, **kwargs): + """Render and return HTML for done page""" + session = self.user_sessions[session_id] + goal = self.user_sessions[session_id]['goal'] + purchased_product = self.product_item_dict[session["asin"]] + session["actions"]["purchase"] += 1 + price = self.product_prices.get(session["asin"]) + + # Calculate reward for selected product and set variables for page details + reward, info = get_reward( + purchased_product, + goal, + price=price, + options=session["options"], + verbose=True + ) + + self.user_sessions[session_id]['verbose_info'] = info + self.user_sessions[session_id]['done'] = True + self.user_sessions[session_id]['reward'] = reward + + url = ( + f'{self.base_url}/done/{session_id}/' + f'{session["asin"]}/{session["options"]}' + ) + html = map_action_to_html( + f'click[{END_BUTTON}]', + session_id=session_id, + reward=reward, + asin=session["asin"], + options=session["options"], + instruction_text=session["goal"]["instruction_text"], + ) + return html, url, reward, info + + def receive(self, session_id, current_url, session_int=None, **kwargs): + """Map action to the corresponding page""" + status = dict(reward=0.0, done=False) + + with app.app_context(), app.test_request_context(): + # Create/determine goal, instruction_text from current session + if session_id not in self.user_sessions: + idx = session_int if (session_int is not None and isinstance(session_int, int)) else random_idx(self.cum_weights) + goal = self.goals[idx] + instruction_text = goal['instruction_text'] + self.user_sessions[session_id] = {'goal': goal, 'done': False} + else: + instruction_text = \ + self.user_sessions[session_id]['goal']['instruction_text'] + if self.assigned_instruction_text is not None: + instruction_text = self.assigned_instruction_text # TODO: very hacky, should remove + self.user_sessions[session_id]['goal']['instruction_text'] = instruction_text + session = self.user_sessions[session_id] + + if not kwargs: + # If no action, reset the session variables + kwargs['instruction_text'] = instruction_text + html, url = self.index(session_id, **kwargs) + self.user_sessions[session_id].update( + { + 'keywords': None, + 'page': None, + 'asin': None, + 'asins': set(), + 'options': dict(), + 'actions': defaultdict(int) + } + ) + elif 'keywords' in kwargs: + # If search keywords are available, run a search + html, url = self.search_results(session_id, **kwargs) + elif 'clickable_name' in kwargs: + clickable_name = kwargs['clickable_name'].lower() + if clickable_name == END_BUTTON.lower(): + # If "buy now" clicked, calculate reward and flag session as terminated + html, url, reward, info = self.done(session_id, **kwargs) + status['info'] = info + status['reward'] = reward + status['done'] = True + elif clickable_name == BACK_TO_SEARCH.lower(): + # If "back to search" clicked, recursively reset the session back to search page + html, url, status = self.receive(session_id, current_url) + elif (clickable_name == NEXT_PAGE.lower() and + self.get_page_name(current_url) == 'search_results'): + # If "next page" clicked from search results, re-render with `page` enumerated + html, url, status = self.receive( + session_id, + current_url, + keywords=session["keywords"], + page=session["page"] + 1, + ) + elif (clickable_name == PREV_PAGE.lower() and + self.get_page_name(current_url) == 'search_results'): + # If "prev page" clicked from search results, re-render with `page` denumerated + html, url, status = self.receive( + session_id, + current_url, + keywords=session["keywords"], + page=session["page"] - 1, + ) + elif (clickable_name == PREV_PAGE.lower() and + self.get_page_name(current_url) == 'item_sub_page'): + # If "prev page" clicked from sub page, return to corresponding item page + html, url = self.item_page(session_id, **kwargs) + elif (clickable_name == PREV_PAGE.lower() and + self.get_page_name(current_url) == 'item_page'): + # If "prev page" clicked from item page, return to search results page + html, url = self.search_results( + session_id, + keywords=session["keywords"], + page=session["page"], + **kwargs + ) + elif clickable_name in [k.lower() for k in ACTION_TO_TEMPLATE]: + # Render item_sub_page if clickable is description, features, or reviews + html, url = self.item_sub_page(session_id, **kwargs) + else: + # Otherwise, render current item page + html, url = self.item_page(session_id, **kwargs) + return html, url, status + + def get_page_name(self, url): + """Determine which page (i.e. item_page, search_results) the given URL is pointing at""" + if url is None: + return None + page_names = [ + 'search_results', + 'item_page', + 'item_sub_page', + 'done' + ] + for page_name in page_names: + if page_name in url: + return page_name + return '' # index page + + +class SimBrowser: + """Simulated browser for rendering the HTML source of WebShop environment pages""" + def __init__(self, server): + self.server = server + self.current_url = None + self.page_source = None + self.session_id = None + + def get(self, url, session_id=None, session_int=None): + """Set browser variables to corresponding link, page HTML for URL""" + self.session_id = url.split('/')[-1] if session_id is None else session_id + self.page_source, _, _ = \ + self.server.receive(self.session_id, self.current_url, session_int=session_int) + self.current_url = url + + def click(self, clickable_name, text_to_clickable): + """Wrapper for `receive` handler for performing click action on current page""" + self.page_source, self.current_url, status = \ + self.server.receive( + self.session_id, + current_url=self.current_url, + clickable_name=clickable_name, + text_to_clickable=text_to_clickable, + ) + return status + + def search(self, keywords): + """Wrapper for `receive` handler for performing search action on current page""" + if isinstance(keywords, str): + keywords = keywords.split(' ') + self.page_source, self.current_url, status = \ + self.server.receive( + self.session_id, + current_url=self.current_url, + keywords=keywords, + ) + return status \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/goal.py b/external/webshop-minimal/webshop_minimal/goal.py new file mode 100644 index 0000000000000000000000000000000000000000..3b30721eba80dfa8dac3dcffbf244a033aac475a --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/goal.py @@ -0,0 +1,266 @@ +import itertools +import random +import spacy +from collections import defaultdict +from rich import print +from thefuzz import fuzz +from webshop_minimal.normalize import normalize_color + +nlp = spacy.load("en_core_web_sm") + +PRICE_RANGE = [10.0 * i for i in range(1, 100)] + +def get_goals(all_products, product_prices, human_goals=True): + if human_goals: + return get_human_goals(all_products, product_prices) + else: + return get_synthetic_goals(all_products, product_prices) + +def get_human_goals(all_products, product_prices): + goals = [] + cnt_atts = defaultdict(int) + cnt = 0 + for item in all_products: + asin = item['asin'] + if 'instructions' not in item: continue + for product in item['instructions']: + attributes = product['instruction_attributes'] + if len(attributes) == 0: + cnt += 1 + continue + + if product_prices is not None: + price = product_prices[asin] + price_range = [p for p in PRICE_RANGE if p > price][:4] + if len(price_range) >= 2: + _, price_upper = sorted(random.sample(price_range, 2)) + price_text = \ + f', and price lower than {price_upper:.2f} dollars' + else: + price_upper = 1000000 + price_text = '' + else: + price_upper = 1000000 + + goals.append({ + 'asin': asin, + 'category': item['category'], + 'query': item['query'], + 'name': item['name'], + 'product_category': item['product_category'], + 'instruction_text': product['instruction'].strip('.') + price_text, + 'attributes': attributes, + 'price_upper': price_upper, + 'goal_options': product['instruction_options'], + }) + for att in attributes: + cnt_atts[att] += 1 + # goals += product_goals + for goal in goals: + goal['weight'] = 1 + print(cnt, 'skipped') + return goals + + +def get_synthetic_goals(all_products, product_prices): + goals = [] + cnt_atts = defaultdict(int) + for product in all_products: + if ('instruction_text' not in product or + product['instruction_text'] is None): + continue + product_goals = [] + asin = product['asin'] + attributes = product['instruction_attributes'] + assert len(attributes) > 0 + + if product_prices is not None: + price = product_prices[asin] + price_range = [p for p in PRICE_RANGE if p > price][:4] + if len(price_range) >= 2: + _, price_upper = sorted(random.sample(price_range, 2)) + price_text = \ + f', and price lower than {price_upper:.2f} dollars' + else: + price_upper = 1000000 + price_text = '' + else: + price_upper = 1000000 + price_text = '' + + instruction_text = product['instruction_text'] + + options = product['options'] + option_names = sorted(options) + combinations = list(itertools.product( + *(options[option_name] for option_name in option_names) + )) + for combination in combinations: + goal_options = dict() + for i, o in enumerate(combination): +# option_text.append(f'{option_names[i]}: {o}') + goal_options[option_names[i]] = o + option_text = ', and '.join([ + f'{k}: {v}' for k, v in goal_options.items() + ]) + option_text = ' with ' + option_text if option_text else '' + product_goals.append({ + 'asin': asin, + 'category': product['category'], + 'query': product['query'], + 'name': product['name'], + 'product_category': product['product_category'], + 'instruction_text': f'{instruction_text}{option_text}{price_text}', + 'attributes': attributes, + 'price_upper': price_upper, + 'goal_options': goal_options, + 'name': product['Title'], + }) + for att in attributes: + cnt_atts[att] += 1 + goals += product_goals + for goal in goals: + goal['weight'] = sum(1. / cnt_atts[att] for att in goal['attributes']) / len(goal['attributes']) + return goals + + +def get_type_reward(purchased_product, goal): + """Determines the type reward - captures whether chosen product is in the same category""" + query_match = purchased_product['query'] == goal['query'] + + # Check number of unique categories that match, ignoring order + purchased_product_category = [x.strip() for x in purchased_product['product_category'].split('›')] + goal_product_category = [x.strip() for x in goal['product_category'].split('›')] + category_match = len(set(purchased_product_category) & set(goal_product_category)) >= 2 + + # Determine whether types align based on product name similarity + purchased_type = purchased_product['name'] + desired_type = goal['name'] + + purchased_type_parse = nlp(purchased_type) + desired_type_parse = nlp(desired_type) + + purchased_type_parse = [t.text.lower() for t in purchased_type_parse if t.pos_ in ('PNOUN', 'NOUN', 'PROPN')] + desired_type_parse = [t.text.lower() for t in desired_type_parse if t.pos_ in ('PNOUN', 'NOUN', 'PROPN')] + + n_intersect_type = len( + set(purchased_type_parse) & set(desired_type_parse) + ) + if len(desired_type_parse) == 0: + title_score = 0.2 + else: + title_score = n_intersect_type / len(desired_type_parse) + + r_type = 1.0 + + # Adjust r_type score based on query, category title matching/scores + match = query_match or category_match or title_score > 0.2 + if not match: + r_type = 0.5 + + if title_score < 0.1: + r_type = 0.1 + + if title_score == 0.0: + r_type = 0.0 + + return dict( + r_type=r_type, + query_match=query_match, + category_match=category_match, + title_score=title_score, + ) + + +def get_attribute_reward(purchased_product, goal): + """Determines whether purchased products shares same attributes as goal""" + purchased_attrs = purchased_product['Attributes'] + goal_attrs = goal['attributes'] + + num_attr_matches = 0 + for g_attr in goal_attrs: + matched = False + # Check whether goal attribute found in purchased product attribute list + for p_attr in purchased_attrs: + score = fuzz.token_set_ratio(p_attr, g_attr) + if score > 85: + num_attr_matches += 1 + matched = True + break + # If not in purchased attrs, check Title, Bullet Points (Features), Desc + if ( + not matched and + ( + g_attr in purchased_product['Title'].lower() or + g_attr in ' '.join(purchased_product['BulletPoints']).lower() or + g_attr in purchased_product['Description'].lower() + ) + ): + num_attr_matches += 1 + matched = True + + r_attr = num_attr_matches / len(goal_attrs) + return r_attr, num_attr_matches + + +def get_option_reward(purchased_options, goal_options): + """Calculate reward for purchased product's options w.r.t. goal options""" + purchased_options = [normalize_color(o) for o in purchased_options] + goal_options = [normalize_color(o) for o in goal_options] + + # Perform fuzzy matching of each purchased option against each goal option + num_option_matches = 0 + for g_option in goal_options: + for p_option in purchased_options: + score = fuzz.token_set_ratio(p_option, g_option) + if score > 85: + num_option_matches += 1 + break + + # Calculate option reward as fraction of goal options hit + r_option = num_option_matches / len(goal_options) if len(goal_options) > 0 else None + return r_option, num_option_matches + + +def get_reward(purchased_product, goal, price, options, **kwargs): + """Get cumulative reward score for purchased product and goal""" + r_type_dict = get_type_reward(purchased_product, goal) + + r_price = ( + price <= goal['price_upper'] + ) if goal['price_upper'] > 0 else None + + r_att, num_attr_matches = get_attribute_reward(purchased_product, goal) + + r_option, num_option_matches = get_option_reward( + list(options.values()), + goal['goal_options'].items() + if isinstance(goal['goal_options'], dict) + else goal['goal_options'] + ) + + total_reward = ( + (num_attr_matches + num_option_matches + r_price) \ + / (len(goal['attributes']) + len(goal['goal_options']) + 1) + ) + + total_reward *= r_type_dict['r_type'] + + # If verbose flag enabled, store score sub-components into dictionary + if kwargs.get('verbose', False): + info = { + 'r_type': r_type_dict['r_type'], + 'r_att': r_att, + 'w_att': len(goal['attributes']) / (len(goal['attributes']) + len(goal['goal_options']) + 1), + 'query_match': r_type_dict['query_match'], + 'category_match': r_type_dict['category_match'], + 'title_score': r_type_dict['title_score'], + } + if r_option is not None: + info['r_option'] = r_option + info['w_option'] = len(goal['goal_options']) / (len(goal['attributes']) + len(goal['goal_options']) + 1) + if r_price is not None: + info['r_price'] = r_price + info['w_price'] = 1 / (len(goal['attributes']) + len(goal['goal_options']) + 1) + return total_reward, info + return total_reward \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/normalize.py b/external/webshop-minimal/webshop_minimal/normalize.py new file mode 100644 index 0000000000000000000000000000000000000000..30ca46ea611e5235b182da747dd9f2c344d08351 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/normalize.py @@ -0,0 +1,102 @@ +import re +from typing import Tuple + +COLOR_SET = [ + 'alabaster', 'apricot', 'aqua', 'ash', 'asphalt', 'azure', + 'banana', 'beige', 'black', 'blue', 'blush', 'bordeaux', 'bronze', + 'brown', 'burgundy', 'camel', 'camo', 'caramel', 'champagne', + 'charcoal', 'cheetah', 'chestnut', 'chocolate', 'christmas', 'coffee', + 'cognac', 'copper', 'coral', 'cranberry', 'cream', 'crystal', 'dark', + 'denim', 'eggplant', 'elephant', 'espresso', 'fuchsia', 'gold', 'granite', + 'grape', 'graphite', 'grass', 'gray', 'green', 'grey', 'heather', 'indigo', + 'ivory', 'ivy', 'khaki', 'lavender', 'lemon', 'leopard', 'light', 'lilac', + 'lime', 'magenta', 'maroon', 'mauve', 'merlot', 'midnight', 'mint', 'mocha', + 'multicolor', 'mushroom', 'mustard', 'natural', 'navy', 'nude', 'olive', + 'orange', 'peach', 'pewter', 'pink', 'plum', 'purple', 'rainbow', 'red', + 'rose', 'royal', 'rust', 'sand', 'sapphire', 'seashell', 'silver', 'skull', + 'slate', 'steel', 'stone', 'stonewash', 'sunflower', 'tan', 'taupe', 'teal', + 'tiger', 'turquoise', 'violet', 'walnut', 'wheat', 'white', 'wine', 'yellow', +] + +SIZE_SET = [ + 'xx-large', '3x-large', '4x-large', '5x-large', 'x-large', 'x-small', + 'medium', 'large', 'small', + 'queen', 'twin', 'full', 'king', 'one size', + 'pack', +] + +SIZE_PATTERNS = [ + re.compile(r'(.*)neck(.*)sleeve'), + re.compile(r'(.*) women \| (.*) men'), + re.compile(r'(.*)w x(.*)l'), + re.compile(r'(.*)w by (.*)l'), + re.compile(r'(.*)w x(.*)h'), + re.compile(r'(.*)wide'), + re.compile(r'(.*)x-wide'), + re.compile(r'(.*)narrow'), + re.compile(r'(.*)petite'), + re.compile(r'(.*)inch'), + re.compile(r'(.*)plus'), + re.compile(r'(.*)mm'), + re.compile(r'women(.*)'), + re.compile(r'(.*)x(.*)'), + re.compile(r'(.*)ft'), + re.compile(r'(.*)feet'), + re.compile(r'(.*)meter'), + re.compile(r'(.*)yards'), + re.compile(r'(.*)\*(.*)'), + re.compile(r'(.*)\-(.*)'), + re.compile(r'(\d+)"$'), + re.compile(r'(\d+)f$'), + re.compile(r'(\d+)m$'), + re.compile(r'(\d+)cm$'), + re.compile(r'(\d+)g$'), +] +SIZE_PATTERNS = [re.compile(s) for s in SIZE_SET] + SIZE_PATTERNS + +def normalize_color(color_string: str) -> str: + """Extracts the first color found if exists""" + for norm_color in COLOR_SET: + if norm_color in color_string: + return norm_color + return color_string + +def normalize_color_size(product_prices: dict) -> Tuple[dict, dict]: + """Get mappings of all colors, sizes to corresponding values in COLOR_SET, SIZE_PATTERNS""" + + # Get all colors, sizes from list of all products + all_colors, all_sizes = set(), set() + for (_, color, size), _ in product_prices.items(): + all_colors.add(color.lower()) + all_sizes.add(size.lower()) + + # Create mapping of each original color value to corresponding set value + color_mapping = {'N.A.': 'not_matched'} + for c in all_colors: + matched = False + for base in COLOR_SET: + if base in c: + color_mapping[c] = base + matched = True + break + if not matched: + color_mapping[c] = 'not_matched' + + # Create mapping of each original size value to corresponding set value + size_mapping = {'N.A.': 'not_matched'} + for s in all_sizes: + matched = False + for pattern in SIZE_PATTERNS: + m = re.search(pattern, s) + if m is not None: + matched = True + size_mapping[s] = pattern.pattern + break + if not matched: + if s.replace('.', '', 1).isdigit(): + size_mapping[s] = 'numeric_size' + matched= True + if not matched: + size_mapping[s] = 'not_matched' + + return color_mapping, size_mapping \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fdm b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fdm new file mode 100644 index 0000000000000000000000000000000000000000..e418e280572b9d7321cec948ecf1bef757dc08a7 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fdm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fdx b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fdx new file mode 100644 index 0000000000000000000000000000000000000000..dbe90be89127310d39872ee2d0cbcd556c9926dd Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fdx differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fnm b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fnm new file mode 100644 index 0000000000000000000000000000000000000000..2ce53daeaf5aa00f68c14b58e8a8de139b424350 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.fnm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.nvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.nvd new file mode 100644 index 0000000000000000000000000000000000000000..4f91f8c0e46dc67fdb1a30d11e6de7bc5db9d06a Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.nvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.nvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.nvm new file mode 100644 index 0000000000000000000000000000000000000000..d72263de840f54a4203e8622298577c00dfcd49e Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.nvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.si b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.si new file mode 100644 index 0000000000000000000000000000000000000000..290cb9022f971866915bc3ae891b645e36de3814 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.si differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.tvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.tvm new file mode 100644 index 0000000000000000000000000000000000000000..2d607e9153fa44320c89d45bb081e28215f92d77 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.tvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.tvx b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.tvx new file mode 100644 index 0000000000000000000000000000000000000000..c38ddac4f58c22494d608bb3c1c0be645fbd4ce3 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1.tvx differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.doc b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.doc new file mode 100644 index 0000000000000000000000000000000000000000..96cc69cf6fa6ecbb2e59c3d994c1b077c10762f8 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.doc differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.dvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.dvd new file mode 100644 index 0000000000000000000000000000000000000000..5d71016e6e7575fa313cfd54971131842df62cc5 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.dvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.dvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.dvm new file mode 100644 index 0000000000000000000000000000000000000000..2537e2d99895cc1fad0aab33ebf96d15515217d6 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.dvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.tip b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.tip new file mode 100644 index 0000000000000000000000000000000000000000..4fc73c82301ee455c98bdb56f9c70d13a9d7f9cf Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.tip differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.tmd b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.tmd new file mode 100644 index 0000000000000000000000000000000000000000..0d568e02e1bb6749b360f4755c606a676cec4246 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/_1_Lucene90_0.tmd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/segments_2 b/external/webshop-minimal/webshop_minimal/search_engine/indexes/segments_2 new file mode 100644 index 0000000000000000000000000000000000000000..93bc569f2c23d4065164bb5cca4236a32fd3fee0 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes/segments_2 differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes/write.lock b/external/webshop-minimal/webshop_minimal/search_engine/indexes/write.lock new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fdm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fdm new file mode 100644 index 0000000000000000000000000000000000000000..f9050c7ef53e8b0ec14fe94e36788ed47a6dd8e8 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fdm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fdx b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fdx new file mode 100644 index 0000000000000000000000000000000000000000..3a052b5a91eddbc83690ee8d1346dfc0f3d6db73 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fdx differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fnm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fnm new file mode 100644 index 0000000000000000000000000000000000000000..6bb54ba4920faf248d23ed8a7970c37b2196fb3b Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.fnm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.nvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.nvd new file mode 100644 index 0000000000000000000000000000000000000000..908ed1931154b51dc77d161469ba2d5d741ec2f6 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.nvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.nvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.nvm new file mode 100644 index 0000000000000000000000000000000000000000..02a51355d51aa703ecfb085841b035250f78ae32 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.nvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.si b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.si new file mode 100644 index 0000000000000000000000000000000000000000..56212351604dcec752bce0068890dc76067ab955 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.si differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvd new file mode 100644 index 0000000000000000000000000000000000000000..295fab30de972b4285ba6a15f839524493c5e28a Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvm new file mode 100644 index 0000000000000000000000000000000000000000..28c12902d562186a83a3a1009f4b2f8a4cfd5da0 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvx b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvx new file mode 100644 index 0000000000000000000000000000000000000000..b213123cfa96de54387decff35924539840349af Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1.tvx differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.doc b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.doc new file mode 100644 index 0000000000000000000000000000000000000000..29d8c21ea9515f24b09f25d17a10e71724d54971 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.doc differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.dvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.dvd new file mode 100644 index 0000000000000000000000000000000000000000..833908e5057b19bde53d11e27b2a3aac53853c14 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.dvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.dvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.dvm new file mode 100644 index 0000000000000000000000000000000000000000..c375d43f77056838d7d1bea7b55da38c00051f3e Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.dvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.pos b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.pos new file mode 100644 index 0000000000000000000000000000000000000000..2ada0729d2b52f02fccc733840142871487d7474 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.pos differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tim b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tim new file mode 100644 index 0000000000000000000000000000000000000000..e8d7e9a42f83357d7aa1f2619876451eaf4950bc Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tim differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tip b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tip new file mode 100644 index 0000000000000000000000000000000000000000..05f087416e9f0394314652548844f8f57ce5763e Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tip differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tmd b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tmd new file mode 100644 index 0000000000000000000000000000000000000000..e53030419d6a8ec54b12b8fd55cdc6690651a387 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/_1_Lucene90_0.tmd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/segments_2 b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/segments_2 new file mode 100644 index 0000000000000000000000000000000000000000..b6c4a272facfdef0a92ce0106bbda9de5680ef01 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/segments_2 differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/write.lock b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100/write.lock new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fdm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fdm new file mode 100644 index 0000000000000000000000000000000000000000..26ea8dff5068ad70229c167a460400d6e72d7cae Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fdm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fdx b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fdx new file mode 100644 index 0000000000000000000000000000000000000000..b97bd5bb2a8a8b3eb5a709e3b703c841db837c36 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fdx differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fnm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fnm new file mode 100644 index 0000000000000000000000000000000000000000..0238726d3a167724b409f643ac696ad209b20be7 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.fnm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.nvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.nvd new file mode 100644 index 0000000000000000000000000000000000000000..41974eb48e7b66a57cdf6a0753bef51db482f42f Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.nvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.nvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.nvm new file mode 100644 index 0000000000000000000000000000000000000000..31bee4c56d29ad21dbab23567a2fb79b972e527c Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.nvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.si b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.si new file mode 100644 index 0000000000000000000000000000000000000000..ea0e651f17719eddfe3ba9426d337ce435be8d03 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.si differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.tvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.tvm new file mode 100644 index 0000000000000000000000000000000000000000..c1de327c1aeae3b5834e6aa7849408808325d503 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.tvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.tvx b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.tvx new file mode 100644 index 0000000000000000000000000000000000000000..433dc22a56a5d33853af2231e4268cc15182b8b8 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1.tvx differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.doc b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.doc new file mode 100644 index 0000000000000000000000000000000000000000..564a5b583e42340c78dc52e11db41f234deb545f Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.doc differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.dvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.dvd new file mode 100644 index 0000000000000000000000000000000000000000..ec7b2353d2e2d709ba8e65a9b37dd3500ca03613 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.dvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.dvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.dvm new file mode 100644 index 0000000000000000000000000000000000000000..72e95e63e220f8df1717743c4180138bfa118285 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_100k/_1_Lucene90_0.dvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.fdm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.fdm new file mode 100644 index 0000000000000000000000000000000000000000..4fa98fa62fc85e6d2decb3663bc520b9d2309190 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.fdm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.fdx b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.fdx new file mode 100644 index 0000000000000000000000000000000000000000..46df1bb852b871a5f6f611f14621d9ab33125858 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.fdx differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.nvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.nvd new file mode 100644 index 0000000000000000000000000000000000000000..b6319fcfdbc3e9210920123caeffde1e2ad02f66 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.nvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.nvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.nvm new file mode 100644 index 0000000000000000000000000000000000000000..138fee404093a21de13183c6c66078b526d9dea2 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.nvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.si b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.si new file mode 100644 index 0000000000000000000000000000000000000000..52092f13568238bd6572460f6b0a31cffeeac2e4 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.si differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.tvm b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.tvm new file mode 100644 index 0000000000000000000000000000000000000000..34bc1208b83d7e4174a2e4ffb7a734e1ffedd2f3 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.tvm differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.tvx b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.tvx new file mode 100644 index 0000000000000000000000000000000000000000..37f18572ddef7c2d2b7da751e3b943ccdd69e068 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1.tvx differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.doc b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.doc new file mode 100644 index 0000000000000000000000000000000000000000..0cbe6d827a752c4abaf1ecab3475a62275d9d422 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.doc differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.dvd b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.dvd new file mode 100644 index 0000000000000000000000000000000000000000..03976edd4fa2e78eaafac72cf9cfbd8593e2af31 Binary files /dev/null and b/external/webshop-minimal/webshop_minimal/search_engine/indexes_1k/_1_Lucene90_0.dvd differ diff --git a/external/webshop-minimal/webshop_minimal/search_engine/resources_100/documents.jsonl b/external/webshop-minimal/webshop_minimal/search_engine/resources_100/documents.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..7622ec9d5d9d6a432618edf78d34e242da1bb40a --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/search_engine/resources_100/documents.jsonl @@ -0,0 +1,100 @@ +{"id": "B06Y3VLDFB", "contents": "vhomes lights reclaimed wood console table the genessis collection sofa-tables solid, reclaimed fir wood in natural, sun bleached finish with light antiquing glaze. finish/frame description:solid, reclaimed fir wood in natural, sun bleached finish with light antiquing glaze. ", "product": {"name": "Vhomes Lights Reclaimed Wood Console Table The Genessis Collection Sofa-Tables", "full_description": "Solid, Reclaimed Fir Wood In Natural, Sun Bleached Finish With Light Antiquing Glaze.", "pricing": [877.8], "images": ["https://m.media-amazon.com/images/I/51Y1zY1ZdZL.jpg", "https://m.media-amazon.com/images/I/41fbRZ6LKlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": "", "small_description": ["Finish/Frame Description:Solid, Reclaimed Fir Wood In Natural, Sun Bleached Finish With Light Antiquing Glaze. ", "Material:SOLID WOOD ", "Dimensions (Inches): 14.125 Depth 54 Width 33 Height ", "Weight:41 "], "customization_options": "", "asin": "B06Y3VLDFB", "category": "garden", "query": "console tables", "page": 378, "Title": "Vhomes Lights Reclaimed Wood Console Table The Genessis Collection Sofa-Tables", "Description": "Solid, Reclaimed Fir Wood In Natural, Sun Bleached Finish With Light Antiquing Glaze.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Finish/Frame Description:Solid, Reclaimed Fir Wood In Natural, Sun Bleached Finish With Light Antiquing Glaze. ", "Material:SOLID WOOD ", "Dimensions (Inches): 14.125 Depth 54 Width 33 Height ", "Weight:41 "], "Price": "$877.8", "options": {}, "option_to_image": {}, "Attributes": ["console table", "solid wood"], "MainImage": "https://m.media-amazon.com/images/I/51Y1zY1ZdZL.jpg"}} +{"id": "B08R3XSC65", "contents": "pointed toe pumps shoes, stiletto plaid leather high heels, sexy elegant party wedding work court shoes,wine red,40 \u2605detailed parameters:upper material: microfiber check patterninside material: leathershoe sole material: rubber soletoe shape: pointedheel shape: stilettoheel height: super high heelsuitable season: spring, autumnwearing style: sleeve/overshoesupper height: lowcolor: beige, apricot, bronze, wine redshoe size: 34-46heel height: 9.5 cmpalm width: 7.8 cm\u2605reminder:1. all sizes need to be customized and will be shipped 7-10 days after purchase. please wait patiently2. due to the different reasons of the shooting light and the monitor, there may be chromatic aberration, please refer to the actual color, thank you for your understanding3. due to manual measurement, there may be some errors, which belong to the normal range, please understand\u2605after-sales service: if you have any questions about the product, please contact us by email, we will give you a satisfactory answer within 24 hours\u2605i wish you a happy life! \u2605fashionable upper: shallow mouth upper plaid design, exquisite and elegant, sexy and fashionable stiletto heel, modified leg shape, fashionable legs look more slender and slender. ", "product": {"name": "Pointed Toe Pumps Shoes, Stiletto Plaid Leather High Heels, Sexy Elegant Party Wedding Work Court Shoes,Wine red,40", "full_description": "\u2605Detailed parameters:Upper material: microfiber check patternInside material: leatherShoe sole material: rubber soleToe shape: pointedHeel shape: stilettoHeel height: super high heelsuitable season: spring, autumnWearing style: sleeve/overshoesUpper height: lowColor: beige, apricot, bronze, wine redShoe size: 34-46Heel height: 9.5 cmPalm width: 7.8 cm\u2605Reminder:1. All sizes need to be customized and will be shipped 7-10 days after purchase. Please wait patiently2. Due to the different reasons of the shooting light and the monitor, there may be chromatic aberration, please refer to the actual color, thank you for your understanding3. Due to manual measurement, there may be some errors, which belong to the normal range, please understand\u2605After-sales service: If you have any questions about the product, please contact us by email, we will give you a satisfactory answer within 24 hours\u2605I wish you a happy life!", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/41+l47A+ltL.jpg", "https://m.media-amazon.com/images/I/41qop4KW0HL.jpg", "https://m.media-amazon.com/images/I/41hn0R1OFbL.jpg", "https://m.media-amazon.com/images/I/41h7zrrg9PL.jpg", "https://m.media-amazon.com/images/I/51uFTTHzDYL.jpg", "https://m.media-amazon.com/images/I/51aXEEvfkiL.jpg", "https://m.media-amazon.com/images/I/51osJ--BLPL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Pumps", "average_rating": "", "small_description": ["\u2605Fashionable upper: Shallow mouth upper plaid design, exquisite and elegant, sexy and fashionable stiletto heel, modified leg shape, fashionable legs look more slender and slender. ", "\u2605Shoe upper material: The upper is made of super-fiber material, soft and delicate, comfortable and breathable, wear-resistant and cold-resistant, beautiful and aging-resistant, and has good water resistance. ", "\u2605Fashionable all-match: Fashionable stilettos are very versatile. You can perfectly match any outfit for leisure, party, work, dating, wedding, bar, school or other special occasions. ", "\u2605Comfortable design: The design of high-heeled shoes conforms to the comfortable curvature of human feet, and naturally fits the feet. Relieve foot fatigue and give you a comfortable and stable walking feeling. ", "\u2605Customization: All sizes are custom sizes and will be shipped within 7-10 days after ordering. Please refer to the foot length in the size chart, and then choose the appropriate size according to your foot type. "], "customization_options": "", "asin": "B08R3XSC65", "category": "fashion", "query": "women's pumps", "page": 130, "Title": "Pointed Toe Pumps Shoes, Stiletto Plaid Leather High Heels, Sexy Elegant Party Wedding Work Court Shoes,Wine red,40", "Description": "\u2605Detailed parameters:Upper material: microfiber check patternInside material: leatherShoe sole material: rubber soleToe shape: pointedHeel shape: stilettoHeel height: super high heelsuitable season: spring, autumnWearing style: sleeve/overshoesUpper height: lowColor: beige, apricot, bronze, wine redShoe size: 34-46Heel height: 9.5 cmPalm width: 7.8 cm\u2605Reminder:1. All sizes need to be customized and will be shipped 7-10 days after purchase. Please wait patiently2. Due to the different reasons of the shooting light and the monitor, there may be chromatic aberration, please refer to the actual color, thank you for your understanding3. Due to manual measurement, there may be some errors, which belong to the normal range, please understand\u2605After-sales service: If you have any questions about the product, please contact us by email, we will give you a satisfactory answer within 24 hours\u2605I wish you a happy life!", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u2605Fashionable upper: Shallow mouth upper plaid design, exquisite and elegant, sexy and fashionable stiletto heel, modified leg shape, fashionable legs look more slender and slender. ", "\u2605Shoe upper material: The upper is made of super-fiber material, soft and delicate, comfortable and breathable, wear-resistant and cold-resistant, beautiful and aging-resistant, and has good water resistance. ", "\u2605Fashionable all-match: Fashionable stilettos are very versatile. You can perfectly match any outfit for leisure, party, work, dating, wedding, bar, school or other special occasions. ", "\u2605Comfortable design: The design of high-heeled shoes conforms to the comfortable curvature of human feet, and naturally fits the feet. Relieve foot fatigue and give you a comfortable and stable walking feeling. ", "\u2605Customization: All sizes are custom sizes and will be shipped within 7-10 days after ordering. Please refer to the foot length in the size chart, and then choose the appropriate size according to your foot type. "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41+l47A+ltL.jpg"}} +{"id": "B09DG92LJL", "contents": "hsjwosa decorative rustic entryway console table, 60\" long sofa table with two different size drawers and bottom shelf for storage ornamental (color : black) a solid beauty with a frame and legs constructed of solid timber, and coated with a beautiful distressed finish, this occasional console table is reinforced in order to require low maintenance and be long-lasting and sturdy for a long time to come.assembly this versatile and stylish piece is designed to provide customers with a hassle-free setup experience. only the four legs and bottom shelf are in need of assembly. anyone can begin enjoying this elegant and understated table in just a few minutes.overall dimension60.03\u201cl x 11.02\u201dw x 34\u201dhdetail dimensionplease refer to the image.package dimension63\u201cl x 15\u201dw x14\u201dhoverall weight46.7lbspackage weight53.8lbsweight capacitytop shelf:45kgbottom shelf:18kgdrawer:8kgspecifications:product nameconsole tablematerialsolid wood frame and legsmdf panelsthicknesstop shelf:15mm bottom shelf\uff1a30mmfinishdistressed finishcolorblackassembly required20minspackage number1 long, narrow, elegant design designed with a clean silhouette in an elegant, understated espresso color. it imbues any space with an atmosphere of class, and showcases the taste of it\u2019s owner. the desktop measures 60.03 x 10 inches (l x w), making it the perfect space-saver for any room \u2013 including hallways. ", "product": {"name": "HSJWOSA Decorative Rustic Entryway Console Table, 60\" Long Sofa Table with Two Different Size Drawers and Bottom Shelf for Storage Ornamental (Color : Black)", "full_description": "A SOLID BEAUTY With a frame and legs constructed of solid timber, and coated with a beautiful distressed finish, this occasional console table is reinforced in order to require low maintenance and be long-lasting and sturdy for a long time to come.ASSEMBLY This versatile and stylish piece is designed to provide customers with a hassle-free setup experience. Only the four legs and bottom shelf are in need of assembly. Anyone can begin enjoying this elegant and understated table in just a few minutes.Overall Dimension60.03\u201cL x 11.02\u201dW x 34\u201dHDetail DimensionPlease refer to the image.Package Dimension63\u201cL x 15\u201dW x14\u201dHOverall Weight46.7LBSPackage Weight53.8LBSWeight CapacityTop shelf:45KGBottom shelf:18KGDrawer:8KGSpecifications:Product NameConsole TableMaterialSolid wood frame and legsMDF panelsThicknessTop shelf:15mm Bottom shelf\uff1a30mmFinishDistressed FinishColorBlackAssembly Required20minsPackage Number1", "pricing": [557.72], "images": ["https://m.media-amazon.com/images/I/31C3K0QAnvL.jpg", "https://m.media-amazon.com/images/I/418xzIMt2EL.jpg", "https://m.media-amazon.com/images/I/51MbRZbEbvL.jpg", "https://m.media-amazon.com/images/I/51vqsWxVawL.jpg", "https://m.media-amazon.com/images/I/41CR-BaH0PL.jpg", "https://m.media-amazon.com/images/I/51IvSDjrzAL.jpg", "https://m.media-amazon.com/images/I/51byzaZMuYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Tables \u203a Sofa & Console Tables", "average_rating": "", "small_description": ["LONG, NARROW, ELEGANT DESIGN Designed with a clean silhouette in an elegant, understated espresso color. It imbues any space with an atmosphere of class, and showcases the taste of it\u2019s owner. The desktop measures 60.03 x 10 inches (L x W), making it the perfect space-saver for any room \u2013 including hallways. ", "TWO DRAWER SIZES FOR STORAGE CONVENIENCE This side console table features two small drawers and two bigger drawers, perfect for you to organize your necessities and accessories of all different sizes - such as remote controls, cables, keys or coffee cups. With smooth opening and closing, these drawers will keep the dust off, while also providing beautiful external decorations in the form of uniquely patterned knobs. ", "A SPACIOUS, STYLISH DISPLAY SPACE A sleek and wide desktop, complemented with a clean and simple bottom shelf is great for displaying decorations such as paintings, photos, flowers and everything else you can think of. The perfect blend of storage and display means this piece has both style and functionality for all occasions and all spaces. ", "Crafted with metal legs that are connected with a round lower frame for maximum stability, fusing durability with a modern-contemporary appearance ", "Designed with non-marring foot glides, this side table protects floors from scuffs, scratches, and other potential damages "], "customization_options": {"Color": null}, "asin": "B09DG92LJL", "category": "garden", "query": "console tables", "page": 238, "Title": "HSJWOSA Decorative Rustic Entryway Console Table, 60\" Long Sofa Table with Two Different Size Drawers and Bottom Shelf for Storage Ornamental (Color : Black)", "Description": "A SOLID BEAUTY With a frame and legs constructed of solid timber, and coated with a beautiful distressed finish, this occasional console table is reinforced in order to require low maintenance and be long-lasting and sturdy for a long time to come.ASSEMBLY This versatile and stylish piece is designed to provide customers with a hassle-free setup experience. Only the four legs and bottom shelf are in need of assembly. Anyone can begin enjoying this elegant and understated table in just a few minutes.Overall Dimension60.03\u201cL x 11.02\u201dW x 34\u201dHDetail DimensionPlease refer to the image.Package Dimension63\u201cL x 15\u201dW x14\u201dHOverall Weight46.7LBSPackage Weight53.8LBSWeight CapacityTop shelf:45KGBottom shelf:18KGDrawer:8KGSpecifications:Product NameConsole TableMaterialSolid wood frame and legsMDF panelsThicknessTop shelf:15mm Bottom shelf\uff1a30mmFinishDistressed FinishColorBlackAssembly Required20minsPackage Number1", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["LONG, NARROW, ELEGANT DESIGN Designed with a clean silhouette in an elegant, understated espresso color. It imbues any space with an atmosphere of class, and showcases the taste of it\u2019s owner. The desktop measures 60.03 x 10 inches (L x W), making it the perfect space-saver for any room \u2013 including hallways. ", "TWO DRAWER SIZES FOR STORAGE CONVENIENCE This side console table features two small drawers and two bigger drawers, perfect for you to organize your necessities and accessories of all different sizes - such as remote controls, cables, keys or coffee cups. With smooth opening and closing, these drawers will keep the dust off, while also providing beautiful external decorations in the form of uniquely patterned knobs. ", "A SPACIOUS, STYLISH DISPLAY SPACE A sleek and wide desktop, complemented with a clean and simple bottom shelf is great for displaying decorations such as paintings, photos, flowers and everything else you can think of. The perfect blend of storage and display means this piece has both style and functionality for all occasions and all spaces. ", "Crafted with metal legs that are connected with a round lower frame for maximum stability, fusing durability with a modern-contemporary appearance ", "Designed with non-marring foot glides, this side table protects floors from scuffs, scratches, and other potential damages "], "Price": "$557.72", "options": {}, "option_to_image": {}, "Attributes": ["console table", "metal legs", "sofa table"], "MainImage": "https://m.media-amazon.com/images/I/31C3K0QAnvL.jpg"}} +{"id": "B07B6DVG41", "contents": "100% pure glossy locks: repair shampoo (13.5 fl oz), sulfate free shampoo, restores damaged hair, moisturizing, improves hair growth, made with biotin, coconut oil nutrient dense to repair damaged hair - our paraben-free shampoo formula uses biotin and ceramides to repair and restore damaged hair cuticles, to protect against further breakage, tangling, or hair loss ", "product": {"name": "100% PURE Glossy Locks: Repair Shampoo (13.5 Fl Oz), Sulfate Free Shampoo, Restores Damaged Hair, Moisturizing, Improves Hair Growth, Made with Biotin, Coconut Oil", "full_description": "", "pricing": [34.0], "images": ["https://m.media-amazon.com/images/I/315li5K4j4L.jpg", "https://m.media-amazon.com/images/I/41e6UH9joCL.jpg", "https://m.media-amazon.com/images/I/41+ZZJ9qIQL.jpg", "https://m.media-amazon.com/images/I/415am-XO9bL.jpg", "https://m.media-amazon.com/images/I/41RfOQC+wVL.jpg", "https://m.media-amazon.com/images/I/418615MWxVL.jpg", "https://m.media-amazon.com/images/I/41VPvYicTrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Shampoos", "average_rating": 4.8, "small_description": ["NUTRIENT DENSE TO REPAIR DAMAGED HAIR - Our paraben-free shampoo formula uses biotin and ceramides to repair and restore damaged hair cuticles, to protect against further breakage, tangling, or hair loss ", "PERFECT FOR COLOR TREATED HAIR - For those who use hair color, bleach, and other chemical hair treatments, this shampoo for color treated hair can help to reverse long term chemical damage ", "MADE TO MOISTURIZE - To heal damaged hair cuticles, we add ingredients like hydrating aloe juice and hyaluronic acid paired with plant cellulose and vegetable glycerin to lock in essential moisture for softer strands ", "HEALTHY HAIR FROM HONEY - We use both honey and royal jelly in this ultra moisturizing shampoo to coat hair with emollient moisture and protect each delicate strand with strengthening vitamins and keratin ", "MADE WITHOUT HAIR HARMING INGREDIENTS - Our sulfate-free shampoos and conditioners are free of moisture-stripping detergents, harmful parabens, phthalates, PEGs, and artificial fragrances "], "customization_options": "", "asin": "B07B6DVG41", "category": "beauty", "query": "shampoo & conditioner", "page": 135, "Title": "100% PURE Glossy Locks: Repair Shampoo (13.5 Fl Oz), Sulfate Free Shampoo, Restores Damaged Hair, Moisturizing, Improves Hair Growth, Made with Biotin, Coconut Oil", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["NUTRIENT DENSE TO REPAIR DAMAGED HAIR - Our paraben-free shampoo formula uses biotin and ceramides to repair and restore damaged hair cuticles, to protect against further breakage, tangling, or hair loss ", "PERFECT FOR COLOR TREATED HAIR - For those who use hair color, bleach, and other chemical hair treatments, this shampoo for color treated hair can help to reverse long term chemical damage ", "MADE TO MOISTURIZE - To heal damaged hair cuticles, we add ingredients like hydrating aloe juice and hyaluronic acid paired with plant cellulose and vegetable glycerin to lock in essential moisture for softer strands ", "HEALTHY HAIR FROM HONEY - We use both honey and royal jelly in this ultra moisturizing shampoo to coat hair with emollient moisture and protect each delicate strand with strengthening vitamins and keratin ", "MADE WITHOUT HAIR HARMING INGREDIENTS - Our sulfate-free shampoos and conditioners are free of moisture-stripping detergents, harmful parabens, phthalates, PEGs, and artificial fragrances "], "Price": "$34.0", "options": {}, "option_to_image": {}, "Attributes": ["damaged hair", "sulfate free", "hyaluronic acid", "coconut oil", "hair growth", "hair loss", "paraben free"], "MainImage": "https://m.media-amazon.com/images/I/315li5K4j4L.jpg"}} +{"id": "B087TR48KK", "contents": "minkissy eyebrow hair razors eyebrow trimmer portable facial hair remover facail hair trimmer hair beauty grooming tool for women and men 4pcs descriptionthis eyebrow razor set is made of high-quality of stainless steel, hard edge and sharp enough to trim eyebrow. this product is easy to use with a plastic handle, which can protect you hand from hurt. please follow the brows growth direction when you use the razor and it will not hurt your skin easily. the small design makes it convenient to be stored in your handbag.features- color: assorted.- material: stainless steel and abs.- size: about 15x1x0.4cm.- being made of premium stainless steel, you can safely clean hair in seconds to get neat and decent eyebrow shape without wasting time.- lightweight and non-slip grip for easy control.- convenient to clean after using.- small appearance with cover fit in your make-up bag, perfect for travelling.- perfect beauty tool that gives you professional salon style results for home use.package including4 x eyebrow razors small appearance with cover fit in your make-up bag, perfect for travelling. ", "product": {"name": "Minkissy Eyebrow Hair Razors Eyebrow Trimmer Portable Facial Hair Remover Facail Hair Trimmer Hair Beauty Grooming Tool for Women and Men 4pcs", "full_description": "DescriptionThis eyebrow razor set is made of high-quality of stainless steel, hard edge and sharp enough to trim eyebrow. This product is easy to use with a plastic handle, which can protect you hand from hurt. Please follow the brows growth direction when you use the razor and it will not hurt your skin easily. The small design makes it convenient to be stored in your handbag.Features- Color: assorted.- Material: Stainless Steel and ABS.- Size: About 15x1x0.4cm.- Being made of premium stainless steel, you can safely clean hair in seconds to get neat and decent eyebrow shape without wasting time.- Lightweight and non-slip grip for easy control.- Convenient to clean after using.- Small appearance with Cover fit in your make-up bag, perfect for travelling.- Perfect beauty tool that gives you professional salon style results for home use.Package Including4 x eyebrow razors", "pricing": [11.99], "images": ["https://m.media-amazon.com/images/I/31rv1QPuSDL.jpg", "https://m.media-amazon.com/images/I/410Co04WjqL.jpg", "https://m.media-amazon.com/images/I/41becJBdZrL.jpg", "https://m.media-amazon.com/images/I/41YQo3FPrUL.jpg", "https://m.media-amazon.com/images/I/41crD0k2ZNL.jpg", "https://m.media-amazon.com/images/I/31vr0R6jE4L.jpg", "https://m.media-amazon.com/images/I/31IulnxRXwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Men's \u203a Eyebrow Trimmers", "average_rating": "", "small_description": ["Small appearance with Cover fit in your make-up bag, perfect for travelling. ", "Perfect beauty tool that gives you professional salon style results for home use. ", "Convenient to clean after using. ", "Lightweight and non-slip grip for easy control. ", "Being made of premium stainless steel, you can safely clean hair in seconds to get neat and decent eyebrow shape without wasting time. "], "customization_options": "", "asin": "B087TR48KK", "category": "beauty", "query": "shave & hair removal", "page": 121, "Title": "Minkissy Eyebrow Hair Razors Eyebrow Trimmer Portable Facial Hair Remover Facail Hair Trimmer Hair Beauty Grooming Tool for Women and Men 4pcs", "Description": "DescriptionThis eyebrow razor set is made of high-quality of stainless steel, hard edge and sharp enough to trim eyebrow. This product is easy to use with a plastic handle, which can protect you hand from hurt. Please follow the brows growth direction when you use the razor and it will not hurt your skin easily. The small design makes it convenient to be stored in your handbag.Features- Color: assorted.- Material: Stainless Steel and ABS.- Size: About 15x1x0.4cm.- Being made of premium stainless steel, you can safely clean hair in seconds to get neat and decent eyebrow shape without wasting time.- Lightweight and non-slip grip for easy control.- Convenient to clean after using.- Small appearance with Cover fit in your make-up bag, perfect for travelling.- Perfect beauty tool that gives you professional salon style results for home use.Package Including4 x eyebrow razors", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Small appearance with Cover fit in your make-up bag, perfect for travelling. ", "Perfect beauty tool that gives you professional salon style results for home use. ", "Convenient to clean after using. ", "Lightweight and non-slip grip for easy control. ", "Being made of premium stainless steel, you can safely clean hair in seconds to get neat and decent eyebrow shape without wasting time. "], "Price": "$11.99", "options": {}, "option_to_image": {}, "Attributes": ["hair trimmer", "non slip", "stainless steel"], "MainImage": "https://m.media-amazon.com/images/I/31rv1QPuSDL.jpg"}} +{"id": "B08ZRR3DZT", "contents": "shein women's sexy one shoulder sleeveless cutout mini club pencil bodycon dress one shoulder dresses for women/ black mini dress/ sleeveless bodycon dress/ make for 95% polyester, 5% spandex size: x-small, small, medium, large, x-large, and color: black, light blue, pink, plain black, red, white, chocolate brown, khaki", "product": {"name": "SheIn Women's Sexy One Shoulder Sleeveless Cutout Mini Club Pencil Bodycon Dress", "full_description": "", "pricing": [19.99, 27.99], "images": ["https://m.media-amazon.com/images/I/4195PqQ185L.jpg", "https://m.media-amazon.com/images/I/317R4Ssn4BL.jpg", "https://m.media-amazon.com/images/I/41kido9FM-L.jpg", "https://m.media-amazon.com/images/I/41ElSj8HW9L.jpg", "https://m.media-amazon.com/images/I/418SIVnOHjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Dresses \u203a Club & Night Out", "average_rating": 3.9, "small_description": ["One shoulder dresses for women/ Black mini dress/ Sleeveless bodycon dress/ Make for 95% Polyester, 5% Spandex ", "Pull On closure ", "Cutout dresses for women/ Black cutout dress for women/ Very soft fabric, high stretch and comfortable material to wear ", "One shoulder dresses for women/ Designs with sleeveless coutouts, bodycon mini dress, solid color, sexy cut out club dress for women / Cut out dress for women summer ", "Sexy dresses for women part night sexy, suit for spring, summer days, perfect beach, shopping, dating, vacation, club and daily wear, being a going out dresses for women ", "Pencil dress for women can be easily dress up and dress down, perfect to match with your rhinestone drop earrings and heels in summer for girls for dating for party for outgoing ", "Dresses for women party night sexy/ Tight fitted dress for women. Please kindly check the SIZE CHART below before you ordering "], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B08ZSMVXPB"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B08ZSJ3CHK"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08ZRR3DZT"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08ZSNGZWN"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09NBWC2T1"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4195PqQ185L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J4YK4G7/ref=twister_B08ZSK67GP", "value": "Light Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fmYlplW0L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C7SWH2T/ref=twister_B08ZSK67GP", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41nExbIsnSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09TFDV93J/ref=twister_B08ZSK67GP", "value": "Plain Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EjINyiiNL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09F66V4TH/ref=twister_B08ZSK67GP", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41h9pNliLZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B098F66VR3/ref=twister_B08ZSK67GP", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31FPFT22-sS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09D7FQGYC/ref=twister_B08ZSK67GP", "value": "Chocolate Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qkyQCoPeL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09J4YFX8T/ref=twister_B08ZSK67GP", "value": "Khaki", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41o-L7KFmDL.jpg"}]}, "asin": "B08ZRR3DZT", "category": "fashion", "query": "women's dresses", "page": 8, "Title": "SheIn Women's Sexy One Shoulder Sleeveless Cutout Mini Club Pencil Bodycon Dress", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["One shoulder dresses for women/ Black mini dress/ Sleeveless bodycon dress/ Make for 95% Polyester, 5% Spandex ", "Pull On closure ", "Cutout dresses for women/ Black cutout dress for women/ Very soft fabric, high stretch and comfortable material to wear ", "One shoulder dresses for women/ Designs with sleeveless coutouts, bodycon mini dress, solid color, sexy cut out club dress for women / Cut out dress for women summer ", "Sexy dresses for women part night sexy, suit for spring, summer days, perfect beach, shopping, dating, vacation, club and daily wear, being a going out dresses for women ", "Pencil dress for women can be easily dress up and dress down, perfect to match with your rhinestone drop earrings and heels in summer for girls for dating for party for outgoing ", "Dresses for women party night sexy/ Tight fitted dress for women. Please kindly check the SIZE CHART below before you ordering "], "Price": "$19.99 to $27.99", "options": {"size": ["x-small", "small", "medium", "large", "x-large"], "color": ["black", "light blue", "pink", "plain black", "red", "white", "chocolate brown", "khaki"]}, "option_to_image": {"x-small": null, "small": null, "medium": null, "large": null, "x-large": null, "black": "https://m.media-amazon.com/images/I/4195PqQ185L.jpg", "light blue": "https://m.media-amazon.com/images/I/41fmYlplW0L.jpg", "pink": "https://m.media-amazon.com/images/I/41nExbIsnSL.jpg", "plain black": "https://m.media-amazon.com/images/I/41EjINyiiNL.jpg", "red": "https://m.media-amazon.com/images/I/41h9pNliLZL.jpg", "white": "https://m.media-amazon.com/images/I/31FPFT22-sS.jpg", "chocolate brown": "https://m.media-amazon.com/images/I/31qkyQCoPeL.jpg", "khaki": "https://m.media-amazon.com/images/I/41o-L7KFmDL.jpg"}, "Attributes": ["polyester spandex", "daily wear"], "MainImage": "https://m.media-amazon.com/images/I/4195PqQ185L.jpg"}} +{"id": "B08T9KJJPZ", "contents": "avon anew dark circle corrector dual eye system 2 phase care against dark circles 20ml - 0.68 fl.oz highly effective innovative eye system care for day and night against eye shadow and dark circles. suitable for all ages and skin tones. effect: for a radiant, beautiful eye area without shadow. the 2-phase eye care instantly improves the appearance of the eye area and reduces dark circles, shadows and crow's feet. it is mild and suitable for sensitive skin around the eyes. the day cream contains brightening ingredients that adapt to every skin tone, make dark circles and shadows brighter and prevent aggravation. the night gel intensively moisturises into deeper skin layers, regenerates and smooths the delicate eye area. for a younger, fresh and radiant look. application: apply the cream (white) to the lower eye area in the morning. the cream can be used ideally under daily make-up. apply the gel to the lower eye area in the evening. suitable for those who wear contact lenses. contents: 20 ml with colour correcting technology and seaweed, sweep dark circles and eye shadows. ", "product": {"name": "Avon Anew Dark Circle Corrector Dual Eye System 2 Phase Care Against Dark Circles 20ml - 0.68 fl.oz", "full_description": "Highly effective innovative eye system care for day and night against eye shadow and dark circles. Suitable for all ages and skin tones. Effect: For a radiant, beautiful eye area without shadow. The 2-phase eye care instantly improves the appearance of the eye area and reduces dark circles, shadows and crow's feet. It is mild and suitable for sensitive skin around the eyes. The day cream contains brightening ingredients that adapt to every skin tone, make dark circles and shadows brighter and prevent aggravation. The night gel intensively moisturises into deeper skin layers, regenerates and smooths the delicate eye area. For a younger, fresh and radiant look. Application: Apply the cream (white) to the lower eye area in the morning. The cream can be used ideally under daily make-up. Apply the gel to the lower eye area in the evening. Suitable for those who wear contact lenses. Contents: 20 ml", "pricing": [8.5], "images": ["https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Eyes \u203a Creams", "average_rating": 3.5, "small_description": ["With colour correcting technology and seaweed, sweep dark circles and eye shadows. ", "Suitable for all ages and skin tones. ", "Application: apply the cream (white) to the lower eye area in the morning. In the evening, apply the gel (green) to the lower eye area. "], "customization_options": "", "asin": "B08T9KJJPZ", "category": "beauty", "query": "eyes care", "page": 34, "Title": "Avon Anew Dark Circle Corrector Dual Eye System 2 Phase Care Against Dark Circles 20ml - 0.68 fl.oz", "Description": "Highly effective innovative eye system care for day and night against eye shadow and dark circles. Suitable for all ages and skin tones. Effect: For a radiant, beautiful eye area without shadow. The 2-phase eye care instantly improves the appearance of the eye area and reduces dark circles, shadows and crow's feet. It is mild and suitable for sensitive skin around the eyes. The day cream contains brightening ingredients that adapt to every skin tone, make dark circles and shadows brighter and prevent aggravation. The night gel intensively moisturises into deeper skin layers, regenerates and smooths the delicate eye area. For a younger, fresh and radiant look. Application: Apply the cream (white) to the lower eye area in the morning. The cream can be used ideally under daily make-up. Apply the gel to the lower eye area in the evening. Suitable for those who wear contact lenses. Contents: 20 ml", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["With colour correcting technology and seaweed, sweep dark circles and eye shadows. ", "Suitable for all ages and skin tones. ", "Application: apply the cream (white) to the lower eye area in the morning. In the evening, apply the gel (green) to the lower eye area. "], "Price": "$8.5", "options": {}, "option_to_image": {}, "Attributes": ["dark circles"], "MainImage": "https://m.media-amazon.com/images/I/415nrR9xqwL.jpg"}} +{"id": "B08SKT2TCH", "contents": "jylrx natural loofah sponge,very suitable for kitchen household use and personal skin care products with cleanser pack of 4 (white) material: made of natural organic loofah, green and environmentally friendly, without adding any irritating chemicals color: bath ball, bath towel, cleansing brush, flower bath towel, primary, white", "product": {"name": "JYLRX natural loofah sponge,Very Suitable for Kitchen Household use and Personal Skin Care Products with Cleanser Pack of 4 (white)", "full_description": "", "pricing": [12.98], "images": ["https://m.media-amazon.com/images/I/41gM96tD+OL.jpg", "https://m.media-amazon.com/images/I/51T1H9G2EWL.jpg", "https://m.media-amazon.com/images/I/516EzGE+TwL.jpg", "https://m.media-amazon.com/images/I/51Rs1etT3EL.jpg", "https://m.media-amazon.com/images/I/41sNSFeIfnL.jpg", "https://m.media-amazon.com/images/I/41UkWPTJ7PL.jpg", "https://m.media-amazon.com/images/I/51ggS1jBcgL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Bath & Bathing Accessories \u203a Bathing Accessories \u203a Loofahs", "average_rating": 5, "small_description": ["Material: Made of natural organic loofah, green and environmentally friendly, without adding any irritating chemicals ", "Packaging: Includes 4 pieces of loofah sponge, 6 inches in length, each is individually packaged, convenient for storage and cleaner ", "Advantages: According to the \"Compendium of Materia Medica\" written by the ancient famous doctor Li Shizhen: Loofah has the effect of strengthening the body and strengthening the brain. It is the first choice for bathing and beauty care products. ", "Uses: Suitable for kitchen and household cleaning products, to clean pots, dishes, barbecue racks, bathroom tiles, etc., but also for bathing and beauty. ", "Service: I hope you can like our JYLRX products. If you have any questions, please contact us and we will answer you as soon as possible. If the products have any defects, we will replace them with new ones or refund the purchase price. "], "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09JSVQYJT/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Bath Ball", "price_string": "$12.80", "price": 12.8, "image": "https://m.media-amazon.com/images/I/51mXeNhOAXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JSTCFWZ/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Bath Towel", "price_string": "$14.80", "price": 14.8, "image": "https://m.media-amazon.com/images/I/41VxekX7UKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JST53C9/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Cleansing Brush", "price_string": "$9.90", "price": 9.9, "image": "https://m.media-amazon.com/images/I/51hLS+etadL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09JST2Z8P/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Flower Bath Towel", "price_string": "$14.80", "price": 14.8, "image": "https://m.media-amazon.com/images/I/517ps3NhSrL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08SKVD4M1/ref=twister_B08SKVHTCN?_encoding=UTF8&psc=1", "value": "Primary", "price_string": "$12.98", "price": 12.98, "image": "https://m.media-amazon.com/images/I/51ggS1jBcgL.jpg"}, {"is_selected": true, "url": null, "value": "White", "price_string": "$12.98", "price": 12.98, "image": "https://m.media-amazon.com/images/I/51ggS1jBcgL.jpg"}]}, "asin": "B08SKT2TCH", "category": "beauty", "query": "bathing accessories", "page": 121, "Title": "JYLRX natural loofah sponge,Very Suitable for Kitchen Household use and Personal Skin Care Products with Cleanser Pack of 4 (white)", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Material: Made of natural organic loofah, green and environmentally friendly, without adding any irritating chemicals ", "Packaging: Includes 4 pieces of loofah sponge, 6 inches in length, each is individually packaged, convenient for storage and cleaner ", "Advantages: According to the \"Compendium of Materia Medica\" written by the ancient famous doctor Li Shizhen: Loofah has the effect of strengthening the body and strengthening the brain. It is the first choice for bathing and beauty care products. ", "Uses: Suitable for kitchen and household cleaning products, to clean pots, dishes, barbecue racks, bathroom tiles, etc., but also for bathing and beauty. ", "Service: I hope you can like our JYLRX products. If you have any questions, please contact us and we will answer you as soon as possible. If the products have any defects, we will replace them with new ones or refund the purchase price. "], "Price": "$12.98", "options": {"color": ["bath ball", "bath towel", "cleansing brush", "flower bath towel", "primary", "white"]}, "option_to_image": {"bath ball": "https://m.media-amazon.com/images/I/51mXeNhOAXL.jpg", "bath towel": "https://m.media-amazon.com/images/I/41VxekX7UKL.jpg", "cleansing brush": "https://m.media-amazon.com/images/I/51hLS+etadL.jpg", "flower bath towel": "https://m.media-amazon.com/images/I/517ps3NhSrL.jpg", "primary": "https://m.media-amazon.com/images/I/51ggS1jBcgL.jpg", "white": "https://m.media-amazon.com/images/I/51ggS1jBcgL.jpg"}, "Attributes": ["skin care"], "MainImage": "https://m.media-amazon.com/images/I/41gM96tD+OL.jpg"}} +{"id": "B08533PJ4S", "contents": "saireed ul listed 2 prong power cord for jbl bar 3.1 bar 2.1 channel 4k ultra hd soundbar home theater system subwoofer ac 5.5ft power cord iec c7 cable replacement replacement figure 8 ac 2 prong iec c7 125v 10a / 7a power cord cable for jbl bar 2.1/3.1 soundbar (compatible with the mentioned model only) ", "product": {"name": "Saireed UL Listed 2 Prong Power Cord for JBL Bar 3.1 Bar 2.1 Channel 4K Ultra HD Soundbar Home Theater System Subwoofer AC 5.5ft Power Cord IEC C7 Cable Replacement", "full_description": "", "pricing": [9.99], "images": ["https://m.media-amazon.com/images/I/31oU0XoegzL.jpg", "https://m.media-amazon.com/images/I/41EjiEn8LiL.jpg", "https://m.media-amazon.com/images/I/51Ve1u0WmJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Power Cables", "average_rating": 4.4, "small_description": ["Replacement Figure 8 AC 2 prong IEC C7 125V 10A / 7A power cord cable for JBL Bar 2.1/3.1 Soundbar (Compatible with the Mentioned MODEL ONLY) ", "Replace your overused, old, broken, damaged, or misplaced power cable or add extra distance / extension between devices for convenience ", "Figure 8 Power Cords ,NEMA 1-15P to IEC320 C7,Non-Polarized,NISPT-2 18AWG(approx.0.824mm2) extension cable connects from your equipment socket to a standard 2 pronged AC outlet receptacle. ", "(Compatible with the Mentioned MODEL ONLY) 5.5 Foot ac cable two prong power cord for \"JBL Bar 2.1 Deep Bass Soundbar with 6.5\"\" Wireless Subwoofer\uff0cJBL Bar 2.1 Home Theater Starter System with Soundbar and Wireless Subwoofer with Bluetooth,JBL Bar 3.1 - Channel 4K Ultra HD Soundbar with 10\u201d Wireless Subwoofer\uff0c JBL Bar 3.1 Home Theater System w/ Soundbar & Wireless Subwoofer\" ", "Package content: 1 x 5.5 Foot length Figure 8 Extension AC Power Cord for JBL Bar 2.1/3.1 Sound Bar "], "customization_options": "", "asin": "B08533PJ4S", "category": "electronics", "query": "home theater systems", "page": 11, "Title": "Saireed UL Listed 2 Prong Power Cord for JBL Bar 3.1 Bar 2.1 Channel 4K Ultra HD Soundbar Home Theater System Subwoofer AC 5.5ft Power Cord IEC C7 Cable Replacement", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Replacement Figure 8 AC 2 prong IEC C7 125V 10A / 7A power cord cable for JBL Bar 2.1/3.1 Soundbar (Compatible with the Mentioned MODEL ONLY) ", "Replace your overused, old, broken, damaged, or misplaced power cable or add extra distance / extension between devices for convenience ", "Figure 8 Power Cords ,NEMA 1-15P to IEC320 C7,Non-Polarized,NISPT-2 18AWG(approx.0.824mm2) extension cable connects from your equipment socket to a standard 2 pronged AC outlet receptacle. ", "(Compatible with the Mentioned MODEL ONLY) 5.5 Foot ac cable two prong power cord for \"JBL Bar 2.1 Deep Bass Soundbar with 6.5\"\" Wireless Subwoofer\uff0cJBL Bar 2.1 Home Theater Starter System with Soundbar and Wireless Subwoofer with Bluetooth,JBL Bar 3.1 - Channel 4K Ultra HD Soundbar with 10\u201d Wireless Subwoofer\uff0c JBL Bar 3.1 Home Theater System w/ Soundbar & Wireless Subwoofer\" ", "Package content: 1 x 5.5 Foot length Figure 8 Extension AC Power Cord for JBL Bar 2.1/3.1 Sound Bar "], "Price": "$9.99", "options": {}, "option_to_image": {}, "Attributes": ["power cord", "home theater", "ultra hd", "extension cable", "power cable", "ac power", "sound bar"], "MainImage": "https://m.media-amazon.com/images/I/31oU0XoegzL.jpg"}} +{"id": "B09B7G7P58", "contents": "3-piece dining table set, farmhouse counter height dining table set, wood dining table set with drop leaf table/2 cross back padded chairs/one shelf \u266c offer 2 great dining chairs and an attractive kitchen table,this refined dinette set will reinvent your dining room with its extendable drop leaf design. featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed.upgrade your seating experience with these padded chairs. each ergonomically designed chair is completed with a high cross-designed backrest and splayed legs to keep your body supported when you lean back to ensure comfort. the 4 spindles are designed for increased stability while also providing a place to prop your feet up. \u2714 weight & dimensions overall product dimension: extended table dimensions: dia 42.3\" x 35.3\"(diaxh) folded table size: 34.6\" x 24\" x 35.3\"(lxwxh) chair dimensions: 15.8\" x 18.2\" x 40\"(lxwxh) seat depth: 16.2\" seat to floor: 22.8\" cushion thickness: 1.8\" tabletop thickness: 0.7\" number of package: 2 overall weight: table net weight: 50.7 lbs each chair new weight: 16.3 lbs weight capacity: table weight capacity: 200lbs each chair capacity: 250lbs \u2714 specifications product name: 3 piece counter height table material: table top: mdf+ acaia veneer table legs: rubber wood chair cushion: linen fabric + foam chair legs: rubber pieces included: 1 table and 2 chairs color: gray+gray cushion assembly required: yes additional tools required: all tools included country of origin: vietnam \u2714 notice: manual measurement has been used, there may be some reasonable error. items may slightly differ from photo in terms of color due to the lighting or your monitor display. \ud83e\udd1e [extendable drop leaf design] - offer 2 great dining chairs and an attractive kitchen table, this refined dinette set will reinvent your dining room with its extendable drop leaf design. featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed. color: antique graywash, brown finish+black cushion, brown-1, brown-6, cherry + white, espresso, espresso + beige 9, gray + beige, gray finish+black cushion, gray+beige cushion, gray+gray cushion, gray-1, grey", "product": {"name": "3-Piece Dining Table Set, Farmhouse Counter Height Dining Table Set, Wood Dining Table Set with Drop Leaf Table/2 Cross Back Padded Chairs/One Shelf", "full_description": "\u266c Offer 2 great dining chairs and an attractive kitchen table,this refined dinette set will reinvent your dining room with its extendable drop leaf design. Featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed.Upgrade your seating experience with these padded chairs. Each ergonomically designed chair is completed with a high cross-designed backrest and splayed legs to keep your body supported when you lean back to ensure comfort. The 4 spindles are designed for increased stability while also providing a place to prop your feet up. \u2714 Weight & Dimensions Overall Product Dimension: Extended Table Dimensions: Dia 42.3\" x 35.3\"(DiaXH) Folded Table Size: 34.6\" x 24\" x 35.3\"(LXWXH) Chair Dimensions: 15.8\" x 18.2\" x 40\"(LXWXH) Seat Depth: 16.2\" Seat to Floor: 22.8\" Cushion Thickness: 1.8\" Tabletop Thickness: 0.7\" Number of Package: 2 Overall Weight: Table Net weight: 50.7 lbs Each Chair New Weight: 16.3 lbs Weight Capacity: Table Weight Capacity: 200LBS Each Chair Capacity: 250LBS \u2714 Specifications Product Name: 3 Piece Counter Height Table Material: Table Top: MDF+ Acaia Veneer Table Legs: Rubber Wood Chair Cushion: Linen Fabric + Foam Chair Legs: Rubber Pieces Included: 1 Table and 2 Chairs Color: Gray+Gray Cushion Assembly Required: Yes Additional Tools Required: All Tools Included Country of Origin: Vietnam \u2714 Notice: Manual measurement has been used, there may be some reasonable error. Items may slightly differ from photo in terms of color due to the lighting or your monitor display.", "pricing": [319.0], "images": ["https://m.media-amazon.com/images/I/51oBcRkCySL.jpg", "https://m.media-amazon.com/images/I/515IkvFOzDL.jpg", "https://m.media-amazon.com/images/I/41sQxaMuIkL.jpg", "https://m.media-amazon.com/images/I/517q7ijP4ZL.jpg", "https://m.media-amazon.com/images/I/51zyI9znpcL.jpg", "https://m.media-amazon.com/images/I/51blkYGaNWL.jpg", "https://m.media-amazon.com/images/I/41NbZmX6sRL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Dining Room Furniture \u203a Table & Chair Sets", "average_rating": 4, "small_description": ["\ud83e\udd1e [Extendable Drop Leaf Design] - Offer 2 great dining chairs and an attractive kitchen table, this refined dinette set will reinvent your dining room with its extendable drop leaf design. Featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed. ", "\ud83e\udd1e [Extra Shelf Table] - The shelf on the bottom creates a display area for your magazines, decorative baskets and other daily essentials within arm reach while also a providing space-saving solution. The compact round structure neatly fits into small spaces without compromising the function. ", "\ud83e\udd1e [Wooden Dining Table Set] - Built with high quality solid rubber wood legs with MDF tabletop, the tabletop is strong and smooth for easy cleaning, the rubber wood table legs are solid to ensure a stable construction. The chair and bench legs are made of plywood with strong bending resistance, and the rubber wood seat is wear-resistant, built for a long-time use. This set is designed to hold 200lbs maximum capacity for its table and last for years. ", "\ud83e\udd1e [Farmhouse Dining Table set] - Finished with retro and graceful antique graywash coating as well as classical cross back, this eye-catching dining table and bench set serves up irresistible charm and a home-grown cottage aesthetic for your dining room.\u00a0 ", "\ud83e\udd1e [Easy to Assemble] - All parts, tools and instructions are shipped straight to your door in efficiently packed box. If you have any questions, please feel free to contact us. We will contact you within 6 hours. After placing the order, it will be shipped from the US local warehouse. The package will be delivered to your home in the shortest time. Extended Table Dimensions: Dia 42.3\" x 35.3\" Folded Table Size: 34.6\" x 24\" x 35.3\" Chair Dimensions: 15.8\" x 18.2\" x 40\" "], "model": "\u200eDining Table Set", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09CYZQCQ1/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Antique Graywash", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/510-GFcmL7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B0882NKDXH/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Brown Finish+black Cushion", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LcvjRRuES.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HC6F76X/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Brown-1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LqR2r6u-S.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NM69XYW/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Brown-6", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51JQearZUMS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LLN3DS1/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Cherry + White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51LBU2uViVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FHKQ1R6/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Espresso", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51qMlWnC7tS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PFPCYBX/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Espresso + Beige 9", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51VpxwCfuJL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09LLQKYL7/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Gray + Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/514eUP2KIzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QC8FS36/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Gray Finish+black Cushion", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Na44WLHqS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09B8XG8PR/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Gray+beige Cushion", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51MvYc-VxfS.jpg"}, {"is_selected": true, "url": null, "value": "Gray+gray Cushion", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oBcRkCySL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09HC82P8T/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Gray-1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51S2WL+6vsS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09FHK5479/ref=twister_B09G95LHDD?_encoding=UTF8&psc=1", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51Xpr-hK5aS.jpg"}]}, "asin": "B09B7G7P58", "category": "garden", "query": "living room sets", "page": 24, "Title": "3-Piece Dining Table Set, Farmhouse Counter Height Dining Table Set, Wood Dining Table Set with Drop Leaf Table/2 Cross Back Padded Chairs/One Shelf", "Description": "\u266c Offer 2 great dining chairs and an attractive kitchen table,this refined dinette set will reinvent your dining room with its extendable drop leaf design. Featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed.Upgrade your seating experience with these padded chairs. Each ergonomically designed chair is completed with a high cross-designed backrest and splayed legs to keep your body supported when you lean back to ensure comfort. The 4 spindles are designed for increased stability while also providing a place to prop your feet up. \u2714 Weight & Dimensions Overall Product Dimension: Extended Table Dimensions: Dia 42.3\" x 35.3\"(DiaXH) Folded Table Size: 34.6\" x 24\" x 35.3\"(LXWXH) Chair Dimensions: 15.8\" x 18.2\" x 40\"(LXWXH) Seat Depth: 16.2\" Seat to Floor: 22.8\" Cushion Thickness: 1.8\" Tabletop Thickness: 0.7\" Number of Package: 2 Overall Weight: Table Net weight: 50.7 lbs Each Chair New Weight: 16.3 lbs Weight Capacity: Table Weight Capacity: 200LBS Each Chair Capacity: 250LBS \u2714 Specifications Product Name: 3 Piece Counter Height Table Material: Table Top: MDF+ Acaia Veneer Table Legs: Rubber Wood Chair Cushion: Linen Fabric + Foam Chair Legs: Rubber Pieces Included: 1 Table and 2 Chairs Color: Gray+Gray Cushion Assembly Required: Yes Additional Tools Required: All Tools Included Country of Origin: Vietnam \u2714 Notice: Manual measurement has been used, there may be some reasonable error. Items may slightly differ from photo in terms of color due to the lighting or your monitor display.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\ud83e\udd1e [Extendable Drop Leaf Design] - Offer 2 great dining chairs and an attractive kitchen table, this refined dinette set will reinvent your dining room with its extendable drop leaf design. Featured with two foldable sides, this table provides you with the flexibility of creating more living space or eating space as needed. ", "\ud83e\udd1e [Extra Shelf Table] - The shelf on the bottom creates a display area for your magazines, decorative baskets and other daily essentials within arm reach while also a providing space-saving solution. The compact round structure neatly fits into small spaces without compromising the function. ", "\ud83e\udd1e [Wooden Dining Table Set] - Built with high quality solid rubber wood legs with MDF tabletop, the tabletop is strong and smooth for easy cleaning, the rubber wood table legs are solid to ensure a stable construction. The chair and bench legs are made of plywood with strong bending resistance, and the rubber wood seat is wear-resistant, built for a long-time use. This set is designed to hold 200lbs maximum capacity for its table and last for years. ", "\ud83e\udd1e [Farmhouse Dining Table set] - Finished with retro and graceful antique graywash coating as well as classical cross back, this eye-catching dining table and bench set serves up irresistible charm and a home-grown cottage aesthetic for your dining room.\u00a0 ", "\ud83e\udd1e [Easy to Assemble] - All parts, tools and instructions are shipped straight to your door in efficiently packed box. If you have any questions, please feel free to contact us. We will contact you within 6 hours. After placing the order, it will be shipped from the US local warehouse. The package will be delivered to your home in the shortest time. Extended Table Dimensions: Dia 42.3\" x 35.3\" Folded Table Size: 34.6\" x 24\" x 35.3\" Chair Dimensions: 15.8\" x 18.2\" x 40\" "], "Price": "$319.0", "options": {"color": ["antique graywash", "brown finish+black cushion", "brown-1", "brown-6", "cherry + white", "espresso", "espresso + beige 9", "gray + beige", "gray finish+black cushion", "gray+beige cushion", "gray+gray cushion", "gray-1", "grey"]}, "option_to_image": {"antique graywash": "https://m.media-amazon.com/images/I/510-GFcmL7L.jpg", "brown finish+black cushion": "https://m.media-amazon.com/images/I/51LcvjRRuES.jpg", "brown-1": "https://m.media-amazon.com/images/I/51LqR2r6u-S.jpg", "brown-6": "https://m.media-amazon.com/images/I/51JQearZUMS.jpg", "cherry + white": "https://m.media-amazon.com/images/I/51LBU2uViVL.jpg", "espresso": "https://m.media-amazon.com/images/I/51qMlWnC7tS.jpg", "espresso + beige 9": "https://m.media-amazon.com/images/I/51VpxwCfuJL.jpg", "gray + beige": "https://m.media-amazon.com/images/I/514eUP2KIzL.jpg", "gray finish+black cushion": "https://m.media-amazon.com/images/I/51Na44WLHqS.jpg", "gray+beige cushion": "https://m.media-amazon.com/images/I/51MvYc-VxfS.jpg", "gray+gray cushion": "https://m.media-amazon.com/images/I/51oBcRkCySL.jpg", "gray-1": "https://m.media-amazon.com/images/I/51S2WL+6vsS.jpg", "grey": "https://m.media-amazon.com/images/I/51Xpr-hK5aS.jpg"}, "Attributes": ["dining table", "table set", "dining room", "space saving", "easy assemble"], "MainImage": "https://m.media-amazon.com/images/I/51oBcRkCySL.jpg"}} +{"id": "B08SMS3CNY", "contents": "level 3 temporary beard color - for black hair beards - full beard in minutes - easy to apply and no mixing required l3 - level three natural looking black dye ready to apply, no mixing required - our beard color bottle is ready to apply with no mixing required. ", "product": {"name": "Level 3 Temporary Beard Color - For Black Hair Beards - Full Beard in Minutes - Easy to Apply and No Mixing Required L3 - Level Three Natural Looking Black Dye", "full_description": "", "pricing": [18.32], "images": ["https://m.media-amazon.com/images/I/31kPs4o3ELL.jpg", "https://m.media-amazon.com/images/I/41pgDpbge1L.jpg", "https://m.media-amazon.com/images/I/41xKVHhPzpL.jpg", "https://m.media-amazon.com/images/I/51EAaUWv3OL.jpg", "https://m.media-amazon.com/images/I/416srvGnyaL.jpg", "https://m.media-amazon.com/images/I/51mR0306m6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Coloring Products", "average_rating": 3.5, "small_description": ["READY TO APPLY, NO MIXING REQUIRED - Our beard color bottle is ready to apply with no mixing required. ", "FULL BEARD APPEARANCE IN MINUTES - The men beard dye gives you a nice full beard within minutes! ", "NATURAL-LOOKING RESULTS - We made sure to formulate the beard dye that lead to natural looking results and that's what you will get with usage. ", "COVERS WHITE/GRAY HAIR - The beard dye works easily on covering white and grey hair. ", "NO HARSH CHEMICAL INGREDIENTS - There is no harsh chemicals that will irritate our redden your beard. "], "customization_options": "", "asin": "B08SMS3CNY", "category": "beauty", "query": "hair coloring products", "page": 8, "Title": "Level 3 Temporary Beard Color - For Black Hair Beards - Full Beard in Minutes - Easy to Apply and No Mixing Required L3 - Level Three Natural Looking Black Dye", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["READY TO APPLY, NO MIXING REQUIRED - Our beard color bottle is ready to apply with no mixing required. ", "FULL BEARD APPEARANCE IN MINUTES - The men beard dye gives you a nice full beard within minutes! ", "NATURAL-LOOKING RESULTS - We made sure to formulate the beard dye that lead to natural looking results and that's what you will get with usage. ", "COVERS WHITE/GRAY HAIR - The beard dye works easily on covering white and grey hair. ", "NO HARSH CHEMICAL INGREDIENTS - There is no harsh chemicals that will irritate our redden your beard. "], "Price": "$18.32", "options": {}, "option_to_image": {}, "Attributes": ["easy apply"], "MainImage": "https://m.media-amazon.com/images/I/31kPs4o3ELL.jpg"}} +{"id": "B08XQRDDT1", "contents": "young vision cream blush stick, all-in-one natural makeup stick for cheeks, lips, eyes and contour, matte pink/peach/brown face blushes, highlighter and contour for mature skin, long lasting \u3010multi use\u3011this lip and cheek tint set can be multi used for eyes, cheeks and lips, include a highlight and 3 matte colors. whether you want to make eyeshadow, blush, contour or color your lips, it can help you achieve it. there are not only 4 colors' combination, but also countless beautiful makeup results color: set-a, set-b", "product": {"name": "YOUNG VISION Cream Blush Stick, All-in-One Natural Makeup Stick for Cheeks, Lips, Eyes and Contour, Matte Pink/Peach/Brown Face Blushes, Highlighter and Contour for Mature Skin, Long Lasting", "full_description": "", "pricing": [15.99], "images": ["https://m.media-amazon.com/images/I/514+C3RAjsL.jpg", "https://m.media-amazon.com/images/I/511Ax8Yg46L.jpg", "https://m.media-amazon.com/images/I/41XeMC79tCL.jpg", "https://m.media-amazon.com/images/I/51cKskEUmUL.jpg", "https://m.media-amazon.com/images/I/41ZsRjvxEIL.jpg", "https://m.media-amazon.com/images/I/81VYQtskLZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Face \u203a Blush", "average_rating": 3.9, "small_description": ["\u3010MULTI USE\u3011This lip and cheek tint set can be multi used for eyes, cheeks and lips, include a highlight and 3 matte colors. Whether you want to make eyeshadow, blush, contour or color your lips, it can help you achieve it. There are not only 4 colors' combination, but also countless beautiful makeup results ", "\u3010EASY TO APPLY\u3011Lightweight and portable multi-sticks, go on smoothly and long lasting, very suitable for temporary touch-ups ", "\u3010PERFECT BLENDING\u3011Thsi creamy tinted blush set have sheer and natural texture\uff0cWhether it is highlight or soft matte peach colors, it can have a good blending effect into skin, making you look younger, more energetic, and more aura. ", "\u3010SAFE AND RELIABLE INGREDIENTS\u3011We Have used an upgraded natural ingredient formula for this Creamy bronzer set, and follows cruelty-free and vegan principles, eliminating harmful substances while making its texture lighter and thinner "], "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08XQQWZ3L/ref=twister_B08XQR5C1R?_encoding=UTF8&psc=1", "value": "SET-A", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/51DI6L0k87L.jpg"}, {"is_selected": true, "url": null, "value": "Set-B", "price_string": "$15.99", "price": 15.99, "image": "https://m.media-amazon.com/images/I/514+C3RAjsL.jpg"}]}, "asin": "B08XQRDDT1", "category": "beauty", "query": "lips makeup", "page": 34, "Title": "YOUNG VISION Cream Blush Stick, All-in-One Natural Makeup Stick for Cheeks, Lips, Eyes and Contour, Matte Pink/Peach/Brown Face Blushes, Highlighter and Contour for Mature Skin, Long Lasting", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u3010MULTI USE\u3011This lip and cheek tint set can be multi used for eyes, cheeks and lips, include a highlight and 3 matte colors. Whether you want to make eyeshadow, blush, contour or color your lips, it can help you achieve it. There are not only 4 colors' combination, but also countless beautiful makeup results ", "\u3010EASY TO APPLY\u3011Lightweight and portable multi-sticks, go on smoothly and long lasting, very suitable for temporary touch-ups ", "\u3010PERFECT BLENDING\u3011Thsi creamy tinted blush set have sheer and natural texture\uff0cWhether it is highlight or soft matte peach colors, it can have a good blending effect into skin, making you look younger, more energetic, and more aura. ", "\u3010SAFE AND RELIABLE INGREDIENTS\u3011We Have used an upgraded natural ingredient formula for this Creamy bronzer set, and follows cruelty-free and vegan principles, eliminating harmful substances while making its texture lighter and thinner "], "Price": "$15.99", "options": {"color": ["set-a", "set-b"]}, "option_to_image": {"set-a": "https://m.media-amazon.com/images/I/51DI6L0k87L.jpg", "set-b": "https://m.media-amazon.com/images/I/514+C3RAjsL.jpg"}, "Attributes": ["long lasting", "easy apply", "cruelty free"], "MainImage": "https://m.media-amazon.com/images/I/514+C3RAjsL.jpg"}} +{"id": "B079HGJ5MH", "contents": "linange milk and keratin mask 500ml; softening, strengthening, moisturizing, nourishing, hair care product; hair mask w/proteins for men and women \u2013 for dry, frizzy, damaged, curly hair milk and keratin mask (masque) 500ml. this mask hair care product is a revitalizing mask enriched with milk and keratin extracts, & proteins. size: 500ml, 1000ml", "product": {"name": "Linange Milk and Keratin Mask 500ml; Softening, Strengthening, Moisturizing, Nourishing, Hair Care Product; Hair Mask w/Proteins for Men and Women \u2013 for Dry, Frizzy, Damaged, Curly Hair", "full_description": "", "pricing": [49.95], "images": ["https://m.media-amazon.com/images/I/31exEDc8HEL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Masks", "average_rating": 4.3, "small_description": ["Milk and Keratin Mask (masque) 500ml. This mask hair care product is a revitalizing mask enriched with Milk and Keratin extracts, & proteins. ", "Milk and Keratin: Milk and Keratin extracts are loaded with proteins and amino acids that can help to assist in revitalizing and nourishing hair, head and scalp. Milk is high in lactic acid amino acids, proteins, vitamins and minerals. Keratin can help protect cells from stress or damage. Used by professionals in salons and in homes, alike. ", "Features/Hair Type: Infused with our renovation technology. Excellent softener for dry and frizzy hair. Gently nourishes hair structure, restores shine, and eliminates static electricity. This is an amazing hair care product masque that is enriched with Milk and Keratin extracts, and its rebalancing, anti-flyaway action makes it especially suited for dry and frizzy hair ", "Directions: Apply this hair mask after shampooing hair. Leave on for 10-15 minutes. Massage into hair and rinse off well. ", "Uses: This softening and strengthening mask can be used for all types of hair \u2013 dry, frizzy, thin, medium, thick, healthy, damaged, normal and curly. Great for treated hair, or after a haircut. Can be used by men \u2013 males, women \u2013 females, professionals, amateurs; in salons, homes, showers, and baths. For clarifying, hydrating, moisturizing, cleansing, nourishing, and revitalizing. "], "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "500ml", "price_string": "$49.95", "price": 49.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B008SEX82C/ref=twister_B079HD19JG?_encoding=UTF8&psc=1", "value": "1000ml", "price_string": "$79.95", "price": 79.95, "image": null}]}, "asin": "B079HGJ5MH", "category": "beauty", "query": "hair masks", "page": 13, "Title": "Linange Milk and Keratin Mask 500ml; Softening, Strengthening, Moisturizing, Nourishing, Hair Care Product; Hair Mask w/Proteins for Men and Women \u2013 for Dry, Frizzy, Damaged, Curly Hair", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Milk and Keratin Mask (masque) 500ml. This mask hair care product is a revitalizing mask enriched with Milk and Keratin extracts, & proteins. ", "Milk and Keratin: Milk and Keratin extracts are loaded with proteins and amino acids that can help to assist in revitalizing and nourishing hair, head and scalp. Milk is high in lactic acid amino acids, proteins, vitamins and minerals. Keratin can help protect cells from stress or damage. Used by professionals in salons and in homes, alike. ", "Features/Hair Type: Infused with our renovation technology. Excellent softener for dry and frizzy hair. Gently nourishes hair structure, restores shine, and eliminates static electricity. This is an amazing hair care product masque that is enriched with Milk and Keratin extracts, and its rebalancing, anti-flyaway action makes it especially suited for dry and frizzy hair ", "Directions: Apply this hair mask after shampooing hair. Leave on for 10-15 minutes. Massage into hair and rinse off well. ", "Uses: This softening and strengthening mask can be used for all types of hair \u2013 dry, frizzy, thin, medium, thick, healthy, damaged, normal and curly. Great for treated hair, or after a haircut. Can be used by men \u2013 males, women \u2013 females, professionals, amateurs; in salons, homes, showers, and baths. For clarifying, hydrating, moisturizing, cleansing, nourishing, and revitalizing. "], "Price": "$49.95", "options": {"size": ["500ml", "1000ml"]}, "option_to_image": {"500ml": null, "1000ml": null}, "Attributes": ["hair care", "hair mask"], "MainImage": "https://m.media-amazon.com/images/I/31exEDc8HEL.jpg"}} +{"id": "B07MGB73NJ", "contents": "viracy women's short sleeve v-neck casual flowy tunic shirt (m-3xl) unique design - short sleeve/ v neck/ button trim/ subtle pleats/ flare silhouette/ high elasticity/ relaxed fit/ fashion casual style/ floral print/ solid color size: medium, large, x-large, xx-large, 3x-large, and color: black, blue, green, green2, sunflowers, tie dye, white, wine", "product": {"name": "Viracy Women's Short Sleeve V-Neck Casual Flowy Tunic Shirt (M-3XL)", "full_description": "", "pricing": [16.99, 26.99], "images": ["https://m.media-amazon.com/images/I/51VXn21pnSL.jpg", "https://m.media-amazon.com/images/I/51Qhr2vfWhL.jpg", "https://m.media-amazon.com/images/I/51j5gw4B51L.jpg", "https://m.media-amazon.com/images/I/51ydeuMmpaL.jpg", "https://m.media-amazon.com/images/I/51GB0KHRuOL.jpg", "https://m.media-amazon.com/images/I/41dc+dV2awL.jpg", "https://m.media-amazon.com/images/I/51r7z5Gh99L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.1, "small_description": ["Unique Design - Short Sleeve/ V Neck/ Button Trim/ Subtle Pleats/ Flare Silhouette/ High Elasticity/ Relaxed Fit/ Fashion Casual Style/ Floral Print/ Solid Color ", "Stylish V Neck - Modest V neckline is neither too low to be revealing,nor too high to make busty women look weird,it is elegant and just fits right .This sparkly design can easily catch people's eyes. ", "A line Silhouette - Cute front ruffle and flare hem can perfectly modify the belly,show off your feminine curve.Good tunic length can cover hips,make you looking more elegant and charming. ", "Easy To Pair - This nice tunic blouse is easy to go with Any Pants, Jeans, leggings,Pencil Skirt.You can wear it for Home,Office and Casual. An essential shirt in women wardrobe. ", "Style: Swing Tunic Tops/ Short Sleeve Tunics for Women/ Casual Loose Tops/ V Neck Tunics to wear with Leggings/ Women Tops and Blouses Fashion 2019/ Flowy Top "], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B07MGB73NJ"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B07MCP7F5G"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B07MJVHCSQ"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B07M7ZC7H5"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B0936SPQXG"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51VXn21pnSL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07MCN7NBX/ref=twister_B07MMFQ762", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/417fcOtO+cS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07MMF7QJD/ref=twister_B07MMFQ762", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/519jMYp4KgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07P8ZRTMC/ref=twister_B07MMFQ762", "value": "Green2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51BburPjsDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08Y6MFQSG/ref=twister_B07MMFQ762", "value": "Sunflowers", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51z-zxJ8qvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08Y6LBTN1/ref=twister_B07MMFQ762", "value": "Tie Dye", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51AMzm6Pc6L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SJ7NBL8/ref=twister_B07MMFQ762", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51aryiL9zUL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SJ87FLJ/ref=twister_B07MMFQ762", "value": "Wine", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pLKVczQ6L.jpg"}]}, "asin": "B07MGB73NJ", "category": "fashion", "query": "women's tops, tees & blouses", "page": 31, "Title": "Viracy Women's Short Sleeve V-Neck Casual Flowy Tunic Shirt (M-3XL)", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Unique Design - Short Sleeve/ V Neck/ Button Trim/ Subtle Pleats/ Flare Silhouette/ High Elasticity/ Relaxed Fit/ Fashion Casual Style/ Floral Print/ Solid Color ", "Stylish V Neck - Modest V neckline is neither too low to be revealing,nor too high to make busty women look weird,it is elegant and just fits right .This sparkly design can easily catch people's eyes. ", "A line Silhouette - Cute front ruffle and flare hem can perfectly modify the belly,show off your feminine curve.Good tunic length can cover hips,make you looking more elegant and charming. ", "Easy To Pair - This nice tunic blouse is easy to go with Any Pants, Jeans, leggings,Pencil Skirt.You can wear it for Home,Office and Casual. An essential shirt in women wardrobe. ", "Style: Swing Tunic Tops/ Short Sleeve Tunics for Women/ Casual Loose Tops/ V Neck Tunics to wear with Leggings/ Women Tops and Blouses Fashion 2019/ Flowy Top "], "Price": "$16.99 to $26.99", "options": {"size": ["medium", "large", "x-large", "xx-large", "3x-large"], "color": ["black", "blue", "green", "green2", "sunflowers", "tie dye", "white", "wine"]}, "option_to_image": {"medium": null, "large": null, "x-large": null, "xx-large": null, "3x-large": null, "black": "https://m.media-amazon.com/images/I/51VXn21pnSL.jpg", "blue": "https://m.media-amazon.com/images/I/417fcOtO+cS.jpg", "green": "https://m.media-amazon.com/images/I/519jMYp4KgL.jpg", "green2": "https://m.media-amazon.com/images/I/51BburPjsDL.jpg", "sunflowers": "https://m.media-amazon.com/images/I/51z-zxJ8qvL.jpg", "tie dye": "https://m.media-amazon.com/images/I/51AMzm6Pc6L.jpg", "white": "https://m.media-amazon.com/images/I/51aryiL9zUL.jpg", "wine": "https://m.media-amazon.com/images/I/51pLKVczQ6L.jpg"}, "Attributes": ["short sleeve", "unique design", "leggings women", "relaxed fit", "tunic tops", "button closure", "polyester spandex", "machine wash"], "MainImage": "https://m.media-amazon.com/images/I/51VXn21pnSL.jpg"}} +{"id": "B001EHF3KK", "contents": "listerine smart rinse kids mouthwash mild mint listerine smart children mint fun & easy way to protect teeth helps protect against cavities cleans what brushing misses alcohol & sugar free mouthwash ", "product": {"name": "Listerine Smart Rinse Kids Mouthwash Mild Mint", "full_description": "Listerine Smart Children Mint", "pricing": [14.7], "images": ["https://m.media-amazon.com/images/I/41GBWR2V1nL.jpg", "https://m.media-amazon.com/images/I/418pQcZRPcL.jpg", "https://m.media-amazon.com/images/I/31Mj9maXPOL.jpg", "https://m.media-amazon.com/images/I/31pip1Ap4CL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Mouthwash", "average_rating": 3.8, "small_description": ["Fun & easy way to protect teeth Helps protect against cavities Cleans what brushing misses Alcohol & sugar free mouthwash "], "customization_options": "", "asin": "B001EHF3KK", "category": "beauty", "query": "mouthwash", "page": 20, "Title": "Listerine Smart Rinse Kids Mouthwash Mild Mint", "Description": "Listerine Smart Children Mint", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Fun & easy way to protect teeth Helps protect against cavities Cleans what brushing misses Alcohol & sugar free mouthwash "], "Price": "$14.7", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41GBWR2V1nL.jpg"}} +{"id": "B09KQQNRRM", "contents": "rustic wooden chandelier,1-light farmhouse chandelier hanging light fixture antique wood vintage pendant light for dining room,kitchen island,foyer small wood chandelier vintage style wooden chandelier:the cylindrical rustic chandelier lighting dimension d7 x h20 (inch) with adjustable chain 59 inch, 1 e26 socket, compatible with max 60w incandescent light bulb and dimmer switch (both switch and bulbs not included). color: antique wood, distressed white", "product": {"name": "Rustic Wooden Chandelier,1-Light Farmhouse Chandelier Hanging Light Fixture Antique Wood Vintage Pendant Light for Dining Room,Kitchen Island,Foyer", "full_description": "small wood chandelier", "pricing": [65.99], "images": ["https://m.media-amazon.com/images/I/51-OZrJ+VwL.jpg", "https://m.media-amazon.com/images/I/31pKtv4zNYL.jpg", "https://m.media-amazon.com/images/I/21arqgK7lCL.jpg", "https://m.media-amazon.com/images/I/516zz7w+D9L.jpg", "https://m.media-amazon.com/images/I/514KfAxxArL.jpg", "https://m.media-amazon.com/images/I/51gDmeFNURL.jpg", "https://m.media-amazon.com/images/I/51hUsI9gT9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Ceiling Lights \u203a Chandeliers", "average_rating": "", "small_description": ["Vintage style wooden chandelier:The cylindrical rustic chandelier lighting dimension D7 x H20 (inch) with adjustable chain 59 inch, 1 E26 socket, compatible with Max 60w incandescent light bulb and dimmer switch (Both switch and Bulbs Not Included). ", "Excellent Surface Treatment Process:This rustic\u00a0chandeliers\u00a0farmhouse is constructed of a quality wood frame and a premium black metal finish, the grain of the wood look adds a vintage, artistic and charming appeal, the rustproof material brings you a durable wood pendant light that will decorate your space for years to come! ", "Adjustable Height:The adjustable boom creates a flexible farmhouse light fixtures. 59\" boom is made of high quality metal so you don't have to worry about rust or breakage. You can adjust the most appropriate height according to your desire. ", "Wide range of applications:This rustic chandelier is perfectly applied to bar, living room, entryway, corridor, hallway, kitchen island, foyer, farmhouse etc. Hanging in group of two or more to creating warm atmosphere,Perfect decoration indoor space. ", "Buy with confidence:We are committed to providing the best user experience and service. This wood chandelier is UL listed. If you have any questions during the installation process, you can contact us via email and we will get back to you within 24 hours, so buy with confidence. "], "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Antique Wood", "price_string": "$65.99", "price": 65.99, "image": "https://m.media-amazon.com/images/I/51-OZrJ+VwL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KQQ24B7/ref=twister_B09TPSBCCN?_encoding=UTF8&psc=1", "value": "Distressed White", "price_string": "$65.99", "price": 65.99, "image": "https://m.media-amazon.com/images/I/515fkdzcCEL.jpg"}]}, "asin": "B09KQQNRRM", "category": "garden", "query": "pendants and chandeliers", "page": 64, "Title": "Rustic Wooden Chandelier,1-Light Farmhouse Chandelier Hanging Light Fixture Antique Wood Vintage Pendant Light for Dining Room,Kitchen Island,Foyer", "Description": "small wood chandelier", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Vintage style wooden chandelier:The cylindrical rustic chandelier lighting dimension D7 x H20 (inch) with adjustable chain 59 inch, 1 E26 socket, compatible with Max 60w incandescent light bulb and dimmer switch (Both switch and Bulbs Not Included). ", "Excellent Surface Treatment Process:This rustic\u00a0chandeliers\u00a0farmhouse is constructed of a quality wood frame and a premium black metal finish, the grain of the wood look adds a vintage, artistic and charming appeal, the rustproof material brings you a durable wood pendant light that will decorate your space for years to come! ", "Adjustable Height:The adjustable boom creates a flexible farmhouse light fixtures. 59\" boom is made of high quality metal so you don't have to worry about rust or breakage. You can adjust the most appropriate height according to your desire. ", "Wide range of applications:This rustic chandelier is perfectly applied to bar, living room, entryway, corridor, hallway, kitchen island, foyer, farmhouse etc. Hanging in group of two or more to creating warm atmosphere,Perfect decoration indoor space. ", "Buy with confidence:We are committed to providing the best user experience and service. This wood chandelier is UL listed. If you have any questions during the installation process, you can contact us via email and we will get back to you within 24 hours, so buy with confidence. "], "Price": "$65.99", "options": {"color": ["antique wood", "distressed white"]}, "option_to_image": {"antique wood": "https://m.media-amazon.com/images/I/51-OZrJ+VwL.jpg", "distressed white": "https://m.media-amazon.com/images/I/515fkdzcCEL.jpg"}, "Attributes": ["pendant light", "kitchen island", "height adjustable", "light fixture", "wood frame", "dining room", "living room"], "MainImage": "https://m.media-amazon.com/images/I/51-OZrJ+VwL.jpg"}} +{"id": "B074F9FBV3", "contents": "e.l.f. makeup mist and set, clear, 2.02 ounce, 3 pack ", "product": {"name": "e.l.f. Makeup Mist and Set, Clear, 2.02 Ounce, 3 Pack", "full_description": "", "pricing": [19.97], "images": ["https://m.media-amazon.com/images/I/515qkubOA-L.jpg", "https://m.media-amazon.com/images/I/41cLVnDjLJL.jpg", "https://m.media-amazon.com/images/I/51CFYG2nMnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Face \u203a Foundation Primers", "average_rating": 4.4, "small_description": [""], "customization_options": "", "asin": "B074F9FBV3", "category": "beauty", "query": "makeup sets", "page": 95, "Title": "e.l.f. Makeup Mist and Set, Clear, 2.02 Ounce, 3 Pack", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": [""], "Price": "$19.97", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/515qkubOA-L.jpg"}} +{"id": "B008QYOGZ2", "contents": "olukai mea ola - men's supportive sandal charcoal/dkjava - 14 slip into the olukai men's mea ola sandal when you have a relaxing day to look forward to. premium full-grain leather wraps the straps, footbed, and sole for smooth comfort, and the microfiber lining is soft against the tops of your feet. this sandal's compression-molded eva midsole features an anatomically correct contour for sustained comfort overtime. olukai added non-marking rubber lugs underneath the leather sole in order to give you some grippy traction while you walk the boardwalk. made in the usa or imported ", "product": {"name": "OluKai MEA Ola - Men's Supportive Sandal Charcoal/Dkjava - 14", "full_description": "Slip into the Olukai Men's Mea Ola Sandal when you have a relaxing day to look forward to. Premium full-grain leather wraps the straps, footbed, and sole for smooth comfort, and the microfiber lining is soft against the tops of your feet. This sandal's compression-molded EVA midsole features an anatomically correct contour for sustained comfort overtime. Olukai added non-marking rubber lugs underneath the leather sole in order to give you some grippy traction while you walk the boardwalk.", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/31xUAsoyosL.jpg", "https://m.media-amazon.com/images/I/41+dzc0zRyL.jpg", "https://m.media-amazon.com/images/I/41yD5cpqo0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Athletic \u203a Running", "average_rating": 4.5, "small_description": ["Made in the USA or imported ", "Leather sole ", "Upper Material: [face fabric] full-grain leather, [lining] microfiber ", "Footbed: full-grain leather ", "Midsole: compression-molded EVA ", "Sole: full-grain leather, non-marking rubber ", "Recommended Use: casual "], "customization_options": "", "asin": "B008QYOGZ2", "category": "fashion", "query": "men's sandals", "page": 131, "Title": "OluKai MEA Ola - Men's Supportive Sandal Charcoal/Dkjava - 14", "Description": "Slip into the Olukai Men's Mea Ola Sandal when you have a relaxing day to look forward to. Premium full-grain leather wraps the straps, footbed, and sole for smooth comfort, and the microfiber lining is soft against the tops of your feet. This sandal's compression-molded EVA midsole features an anatomically correct contour for sustained comfort overtime. Olukai added non-marking rubber lugs underneath the leather sole in order to give you some grippy traction while you walk the boardwalk.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Made in the USA or imported ", "Leather sole ", "Upper Material: [face fabric] full-grain leather, [lining] microfiber ", "Footbed: full-grain leather ", "Midsole: compression-molded EVA ", "Sole: full-grain leather, non-marking rubber ", "Recommended Use: casual "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": ["leather sole"], "MainImage": "https://m.media-amazon.com/images/I/31xUAsoyosL.jpg"}} +{"id": "B09QXG3BM2", "contents": "women lingerie sexy sets - cage bra + corset bandage hollow g string thong panties racy muslin sleepwear underwear ---- -------- -------- ------ --- --- \u2764\ufe0f \u2764\ufe0fsize:s --- us:4 --- uk:8 --- eu:34 --- under bust:64cm/25.2\" --- fit bust:86-92cm/33.9-36.2\" --- waist:64cm/25.2\" \u2764\ufe0f \u2764\ufe0fsize:m --- us:6 --- uk:10 --- eu:36 --- under bust:68cm/26.8\" --- fit bust:92-98cm/36.2-38.6\" --- waist:68cm/26.8\" \u2764\ufe0f \u2764\ufe0fsize:l --- us:8 --- uk:12 --- eu:38 --- under bust:72cm/28.3\" --- fit bust:98-104cm/38.6-40.9\" --- waist:72cm/28.3\" \u2764\ufe0f \u2764\ufe0fsize:xl --- us:10 --- uk:14 --- eu:40 --- under bust:76cm/29.9\" --- fit bust:104-110cm/40.9-43.3\" --- waist:76cm/29.9\" \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f \" --- \u3010note: \u3011this is asian size ,run small.if you want looser ,please choose 1-3 size larger.please check with our size chart before buying.petite or full bodied, all will find a size. \" --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- material:spandex --- --- --- --- --- 100% polyester size: small, medium, large, x-large", "product": {"name": "Women Lingerie Sexy Sets - Cage Bra + Corset Bandage Hollow G String Thong Panties Racy Muslin Sleepwear Underwear", "full_description": "---- -------- -------- ------ --- --- \u2764\ufe0f \u2764\ufe0fSize:S --- US:4 --- UK:8 --- EU:34 --- Under Bust:64cm/25.2\" --- Fit Bust:86-92cm/33.9-36.2\" --- Waist:64cm/25.2\" \u2764\ufe0f \u2764\ufe0fSize:M --- US:6 --- UK:10 --- EU:36 --- Under Bust:68cm/26.8\" --- Fit Bust:92-98cm/36.2-38.6\" --- Waist:68cm/26.8\" \u2764\ufe0f \u2764\ufe0fSize:L --- US:8 --- UK:12 --- EU:38 --- Under Bust:72cm/28.3\" --- Fit Bust:98-104cm/38.6-40.9\" --- Waist:72cm/28.3\" \u2764\ufe0f \u2764\ufe0fSize:XL --- US:10 --- UK:14 --- EU:40 --- Under Bust:76cm/29.9\" --- Fit Bust:104-110cm/40.9-43.3\" --- Waist:76cm/29.9\" \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f \" --- \u3010Note: \u3011This is asian size ,run small.If you want looser ,please choose 1-3 size larger.Please check with our size chart before buying.Petite or full bodied, all will find a size. \" --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- Material:Spandex --- --- --- --- ---", "pricing": [10.3], "images": ["https://m.media-amazon.com/images/I/41YzaEIf-lL.jpg", "https://m.media-amazon.com/images/I/51-o4xw+Q4L.jpg", "https://m.media-amazon.com/images/I/41H1YVitUUL.jpg", "https://m.media-amazon.com/images/I/513sCbEM-5L.jpg", "https://m.media-amazon.com/images/I/51AXSE7y7EL.jpg", "https://m.media-amazon.com/images/I/51U6+nkpLNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Exotic Apparel \u203a Women \u203a Lingerie Sets", "average_rating": "", "small_description": ["100% Polyester ", "\u00b7 \ud83c\udf3b\ud83d\udc1d Fast Delivery :FAST SHIPPING,DELIVERY TIME:7-15 DAYS!!!.So Don't Worry About The Estimated Delivery Time, We Will Choose the Fastest Logistics, Usually it Will be Delivered in Advance.the delivery time is much less than the time marked by Amazon. ", "\ud83c\udf3b\ud83d\udc1d Adorn your green house, yard and general landscaping with these cute metal bumble bees for the garden. They add a stylish lawn accent for anytime of the year and you use them inside. ", "\u00b7 \ud83c\udf3b\ud83d\udc1dThese metal garden decorations can be hung on fences and posts throughout the yard instead of being placed on the ground. Place them around the yard for a busy bee atmosphere for spring. ", "\ud83c\udf3b\ud83d\udc1dBecause these metal bumble bee ornaments are so stylish and have a versatile design scheme, you can use them inside the home too. Place them through the home for an outdoors vibe. ", "\ud83c\udf3b\ud83d\udc1dPlace these cute little metal garden critters around your own gardening areas and fences or give them as a planting season gift for the home gardener with a green thumb. "], "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09QXG3BM2"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09QWZ7ZVL"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09QX3P2YJ"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09QXHN7PT"}]}, "asin": "B09QXG3BM2", "category": "fashion", "query": "women's lingerie, sleep & lounge", "page": 94, "Title": "Women Lingerie Sexy Sets - Cage Bra + Corset Bandage Hollow G String Thong Panties Racy Muslin Sleepwear Underwear", "Description": "---- -------- -------- ------ --- --- \u2764\ufe0f \u2764\ufe0fSize:S --- US:4 --- UK:8 --- EU:34 --- Under Bust:64cm/25.2\" --- Fit Bust:86-92cm/33.9-36.2\" --- Waist:64cm/25.2\" \u2764\ufe0f \u2764\ufe0fSize:M --- US:6 --- UK:10 --- EU:36 --- Under Bust:68cm/26.8\" --- Fit Bust:92-98cm/36.2-38.6\" --- Waist:68cm/26.8\" \u2764\ufe0f \u2764\ufe0fSize:L --- US:8 --- UK:12 --- EU:38 --- Under Bust:72cm/28.3\" --- Fit Bust:98-104cm/38.6-40.9\" --- Waist:72cm/28.3\" \u2764\ufe0f \u2764\ufe0fSize:XL --- US:10 --- UK:14 --- EU:40 --- Under Bust:76cm/29.9\" --- Fit Bust:104-110cm/40.9-43.3\" --- Waist:76cm/29.9\" \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f \" --- \u3010Note: \u3011This is asian size ,run small.If you want looser ,please choose 1-3 size larger.Please check with our size chart before buying.Petite or full bodied, all will find a size. \" --- --- --- --- --- \u2764\ufe0f \u2764\ufe0f --- Material:Spandex --- --- --- --- ---", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["100% Polyester ", "\u00b7 \ud83c\udf3b\ud83d\udc1d Fast Delivery :FAST SHIPPING,DELIVERY TIME:7-15 DAYS!!!.So Don't Worry About The Estimated Delivery Time, We Will Choose the Fastest Logistics, Usually it Will be Delivered in Advance.the delivery time is much less than the time marked by Amazon. ", "\ud83c\udf3b\ud83d\udc1d Adorn your green house, yard and general landscaping with these cute metal bumble bees for the garden. They add a stylish lawn accent for anytime of the year and you use them inside. ", "\u00b7 \ud83c\udf3b\ud83d\udc1dThese metal garden decorations can be hung on fences and posts throughout the yard instead of being placed on the ground. Place them around the yard for a busy bee atmosphere for spring. ", "\ud83c\udf3b\ud83d\udc1dBecause these metal bumble bee ornaments are so stylish and have a versatile design scheme, you can use them inside the home too. Place them through the home for an outdoors vibe. ", "\ud83c\udf3b\ud83d\udc1dPlace these cute little metal garden critters around your own gardening areas and fences or give them as a planting season gift for the home gardener with a green thumb. "], "Price": "$10.3", "options": {"size": ["small", "medium", "large", "x-large"]}, "option_to_image": {"small": null, "medium": null, "large": null, "x-large": null}, "Attributes": ["women lingerie"], "MainImage": "https://m.media-amazon.com/images/I/41YzaEIf-lL.jpg"}} +{"id": "B08QRHVS6N", "contents": "nite ize steelie squeeze windshield kit, universal windshield magnetic car mount holder, compatible with magsafe iphone 12 pro max/mini/galaxy/edge/google pixel and more \"dock your phone for the long haul and navigate hands-free with just a squeeze\u2122. the steelie squeeze windshield kit pairs the modern squeeze clamp with the classic steelie windshield mount for space-saving attachment, smooth 360\u00ba rotation, and a strong hold. virtually any phone is secured between the grippy squeeze arms and magnetically attached to the windshield mount for adjustable viewing. to secure your phone for the drive ahead, easily pinch the levers to open the squeeze arms, place your phone, and release the levers to secure\u2014no extra grip strength needed. as an added bonus, when the squeeze clamp is on your phone, it can magnetically connect to other steelie mounts and magnetic surfaces such as your refrigerator, car, or toolbox for hands-free viewing. in addition to allowing for endless interchanging between multiple phones and cases, squeeze is also compatible with magsafe phones, cases and wireless chargers. the magnetic socket plus on the squeeze clamp features a silicone center, providing a smooth glide and firm grip when connected to the windshield mount while allowing for easy 360\u00ba rotation and adjustment. the windshield mount features an adjustable aluminum arm and suspended steelie ball design which can be securely adjusted to your ideal angle. the patented suction cup design features an easy-to-use locking lever that engages the suction cup for ultimate holding power to your windshield, also acting as a quick release lever when you want to transfer it to another vehicle. the steelie squeeze clamp contains a strong magnet. this magnet will not damage your mobile device; however, do not place it near magnetically sensitive objects such as credit cards, pacemakers, or computer hard drives. nite ize assumes no liability for damage to such products.\" universal fit - the squeeze clamp fits most standard and plus-sized phones, including a case and accessories, up to 2.3\u201d \u2013 3.6\u201d wide | 60mm \u2013 93mm, including the iphone 12 pro max, iphone 12 mini, samsung galaxy, and more style: squeeze, dash, vent, windshield, and color: dash kit, freemount, orbiter, original, plus, vent kit, windshield kit", "product": {"name": "Nite Ize Steelie Squeeze Windshield Kit, Universal Windshield Magnetic Car Mount Holder, Compatible With MagSafe iPhone 12 Pro Max/Mini/Galaxy/Edge/Google Pixel and more", "full_description": "\"Dock your phone for the long haul and navigate hands-free with just a Squeeze\u2122. The Steelie Squeeze Windshield Kit pairs the modern Squeeze Clamp with the classic Steelie Windshield Mount for space-saving attachment, smooth 360\u00ba rotation, and a strong hold. Virtually any phone is secured between the grippy Squeeze arms and magnetically attached to the Windshield Mount for adjustable viewing. To secure your phone for the drive ahead, easily pinch the levers to open the Squeeze arms, place your phone, and release the levers to secure\u2014no extra grip strength needed. As an added bonus, when the Squeeze Clamp is on your phone, it can magnetically connect to other Steelie mounts and magnetic surfaces such as your refrigerator, car, or toolbox for hands-free viewing. In addition to allowing for endless interchanging between multiple phones and cases, Squeeze is also compatible with MagSafe phones, cases and wireless chargers. The Magnetic Socket Plus on the Squeeze Clamp features a silicone center, providing a smooth glide and firm grip when connected to the Windshield Mount while allowing for easy 360\u00ba rotation and adjustment. The Windshield Mount features an adjustable aluminum arm and suspended Steelie ball design which can be securely adjusted to your ideal angle. The patented suction cup design features an easy-to-use locking lever that engages the suction cup for ultimate holding power to your windshield, also acting as a quick release lever when you want to transfer it to another vehicle. The Steelie Squeeze Clamp contains a strong magnet. This magnet will NOT damage your mobile device; however, do not place it near magnetically sensitive objects such as credit cards, pacemakers, or computer hard drives. Nite Ize assumes no liability for damage to such products.\"", "pricing": [36.73], "images": ["https://m.media-amazon.com/images/I/31UcOuutGZL.jpg", "https://m.media-amazon.com/images/I/41QODzHCT7L.jpg", "https://m.media-amazon.com/images/I/41yEN5fZUNL.jpg", "https://m.media-amazon.com/images/I/51VmC44rnmL.jpg", "https://m.media-amazon.com/images/I/51skYwOAbRL.jpg", "https://m.media-amazon.com/images/I/41mfKEdOtFL.jpg", "https://m.media-amazon.com/images/I/91-NnTFi38L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Automobile Accessories \u203a Cradles", "average_rating": 4.5, "small_description": ["UNIVERSAL FIT - The Squeeze Clamp fits most standard and plus-sized phones, including a case and accessories, up to 2.3\u201d \u2013 3.6\u201d wide | 60mm \u2013 93mm, including the iPhone 12 Pro Max, iPhone 12 Mini, Samsung Galaxy, and more ", "EASY TO SQUEEZE - The Squeeze car mount holder features two levers at its base that require a simple pinch of your thumb and index finger to open the clamp and place your phone, no extra grip needed ", "HOLDS STRONG THROUGH IT ALL -Don't be fooled by its easy-to-squeeze nature - the Squeeze Clamp features inner continuous force springs that amplify the hold of your phone, along with grippy arms to keep it in place through every twist and turn ", "COMPATIBLE WITH MAGSAFE + MORE - Squeeze is compatible with MagSafe chargers, accessories, and other wireless charging pads, while also allowing you to easily change your case or phone ", "SMOOTH ADJUSTMENT + 360\u00b0 ROTATION - The Squeeze Clamp magnetically attaches onto the steel ball of the Windshield Mount, allowing for smooth adjustment and hands-free viewing at any angle ", "PATENTED SUCTION TECHNOLOGY - The adjustable aluminum arm and suspended Steelie ball design adheres to any windshield with a patented suction cup design for ultimate holding power, with a lever for engagement/quick release "], "model": "STSWK-01-R8", "customization_options": {"Style": [{"is_selected": true, "url": null, "value": "Squeeze", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MSZY38J/ref=twister_B09QRXQ4YC", "value": "Dash", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01JJP5CT0/ref=twister_B09QRXQ4YC", "value": "Vent", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07485TKQJ/ref=twister_B09QRXQ4YC", "value": "Windshield", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08QR1PCMJ/ref=twister_B09QRXQ4YC?_encoding=UTF8&psc=1", "value": "Dash Kit", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31jNCCiABCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MSZY38J/ref=twister_B09QRXQ4YC", "value": "Freemount", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31WxrnVB+8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07FQVR54F/ref=twister_B09QRXQ4YC", "value": "Orbiter", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Whg09W8cL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00BAQKRHY/ref=twister_B09QRXQ4YC", "value": "Original", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qxbZ5VFOL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B078NPFFDP/ref=twister_B09QRXQ4YC", "value": "Plus", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31nA9SjkF8L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08QRNP22N/ref=twister_B09QRXQ4YC?_encoding=UTF8&psc=1", "value": "Vent Kit", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31TB-4b-4zL.jpg"}, {"is_selected": true, "url": null, "value": "Windshield Kit", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41QODzHCT7L.jpg"}]}, "asin": "B08QRHVS6N", "category": "electronics", "query": "iphone accessories", "page": 232, "Title": "Nite Ize Steelie Squeeze Windshield Kit, Universal Windshield Magnetic Car Mount Holder, Compatible With MagSafe iPhone 12 Pro Max/Mini/Galaxy/Edge/Google Pixel and more", "Description": "\"Dock your phone for the long haul and navigate hands-free with just a Squeeze\u2122. The Steelie Squeeze Windshield Kit pairs the modern Squeeze Clamp with the classic Steelie Windshield Mount for space-saving attachment, smooth 360\u00ba rotation, and a strong hold. Virtually any phone is secured between the grippy Squeeze arms and magnetically attached to the Windshield Mount for adjustable viewing. To secure your phone for the drive ahead, easily pinch the levers to open the Squeeze arms, place your phone, and release the levers to secure\u2014no extra grip strength needed. As an added bonus, when the Squeeze Clamp is on your phone, it can magnetically connect to other Steelie mounts and magnetic surfaces such as your refrigerator, car, or toolbox for hands-free viewing. In addition to allowing for endless interchanging between multiple phones and cases, Squeeze is also compatible with MagSafe phones, cases and wireless chargers. The Magnetic Socket Plus on the Squeeze Clamp features a silicone center, providing a smooth glide and firm grip when connected to the Windshield Mount while allowing for easy 360\u00ba rotation and adjustment. The Windshield Mount features an adjustable aluminum arm and suspended Steelie ball design which can be securely adjusted to your ideal angle. The patented suction cup design features an easy-to-use locking lever that engages the suction cup for ultimate holding power to your windshield, also acting as a quick release lever when you want to transfer it to another vehicle. The Steelie Squeeze Clamp contains a strong magnet. This magnet will NOT damage your mobile device; however, do not place it near magnetically sensitive objects such as credit cards, pacemakers, or computer hard drives. Nite Ize assumes no liability for damage to such products.\"", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["UNIVERSAL FIT - The Squeeze Clamp fits most standard and plus-sized phones, including a case and accessories, up to 2.3\u201d \u2013 3.6\u201d wide | 60mm \u2013 93mm, including the iPhone 12 Pro Max, iPhone 12 Mini, Samsung Galaxy, and more ", "EASY TO SQUEEZE - The Squeeze car mount holder features two levers at its base that require a simple pinch of your thumb and index finger to open the clamp and place your phone, no extra grip needed ", "HOLDS STRONG THROUGH IT ALL -Don't be fooled by its easy-to-squeeze nature - the Squeeze Clamp features inner continuous force springs that amplify the hold of your phone, along with grippy arms to keep it in place through every twist and turn ", "COMPATIBLE WITH MAGSAFE + MORE - Squeeze is compatible with MagSafe chargers, accessories, and other wireless charging pads, while also allowing you to easily change your case or phone ", "SMOOTH ADJUSTMENT + 360\u00b0 ROTATION - The Squeeze Clamp magnetically attaches onto the steel ball of the Windshield Mount, allowing for smooth adjustment and hands-free viewing at any angle ", "PATENTED SUCTION TECHNOLOGY - The adjustable aluminum arm and suspended Steelie ball design adheres to any windshield with a patented suction cup design for ultimate holding power, with a lever for engagement/quick release "], "Price": "$36.73", "options": {"style": ["squeeze", "dash", "vent", "windshield"], "color": ["dash kit", "freemount", "orbiter", "original", "plus", "vent kit", "windshield kit"]}, "option_to_image": {"squeeze": null, "dash": null, "vent": null, "windshield": null, "dash kit": "https://m.media-amazon.com/images/I/31jNCCiABCL.jpg", "freemount": "https://m.media-amazon.com/images/I/31WxrnVB+8L.jpg", "orbiter": "https://m.media-amazon.com/images/I/41Whg09W8cL.jpg", "original": "https://m.media-amazon.com/images/I/31qxbZ5VFOL.jpg", "plus": "https://m.media-amazon.com/images/I/31nA9SjkF8L.jpg", "vent kit": "https://m.media-amazon.com/images/I/31TB-4b-4zL.jpg", "windshield kit": "https://m.media-amazon.com/images/I/41QODzHCT7L.jpg"}, "Attributes": ["pro max", "iphone pro", "quick release", "wireless charging", "hands free", "samsung galaxy"], "MainImage": "https://m.media-amazon.com/images/I/31UcOuutGZL.jpg"}} +{"id": "B09PLBDCBY", "contents": "lingerie for women faux leather teddy bodysuit halter tops sleepwear sexy one piece babydoll exotic nightwear bodycon product information: 1.material: polyester/ leather 2.season: spring,summer,autumn,winter 3.style: sexy style 4.type: lingerie 5.how to wash:hand wash cold 6.place: honeymoon, wedding night, lingerie party, sleepwear,valentine's day.etc 7.package: 1pc lingerie suit 1.if you want a more relaxed and comfortable feeling, you can buy a larger size. 2.different monitors have slight chromatic aberration. don't mind. details: beautiful designed, very exquisite and fancy; occasions: a well-made quality bustier, shows your stunning golden figure. occasions perfectly like wedding, halloween, christmas, black friday, party, evening, cocktail, wedding, dinner, date, home and it's a special surprise gift for women. more: women's costumes exotic lingerie bodystockings nightgowns bustiers corsets plus size costumeswomens open back halter plunging teddy,comfortable scalloped trim lace women teddy one piece babydoll mini bodysuit for deep v backless slip floral see through v-neck sexy lingerie-deep neck perspective underwear hollow out crotch sex cup crotchless men set sleepwear adult exotic negligees size: small, medium, large, x-large", "product": {"name": "Lingerie for Women Faux Leather Teddy Bodysuit Halter Tops Sleepwear Sexy One Piece Babydoll Exotic Nightwear Bodycon", "full_description": "product information: 1.Material: Polyester/ Leather 2.Season: Spring,Summer,Autumn,Winter 3.Style: Sexy style 4.Type: Lingerie 5.How to wash:Hand wash Cold 6.Place: Honeymoon, Wedding night, lingerie Party, sleepwear,Valentine's Day.etc 7.Package: 1PC Lingerie Suit 1.If you want a more relaxed and comfortable feeling, you can buy a larger size. 2.Different monitors have slight chromatic aberration. Don't mind. Details: beautiful designed, very exquisite and fancy; Occasions: A well-made quality bustier, shows your stunning golden figure. Occasions perfectly like wedding, Halloween, Christmas, Black Friday, party, evening, cocktail, wedding, dinner, date, home and it's a special surprise gift for women. More: women's costumes exotic lingerie bodystockings nightgowns bustiers corsets plus size costumeswomens open back halter plunging teddy,comfortable scalloped trim lace women teddy one piece babydoll mini bodysuit for deep v backless slip floral see through v-neck sexy lingerie-deep neck perspective underwear hollow out crotch sex cup crotchless men set sleepwear", "pricing": [2.99, 6.99], "images": ["https://m.media-amazon.com/images/I/41uV5eJkeCL.jpg", "https://m.media-amazon.com/images/I/516xGfvi9jL.jpg", "https://m.media-amazon.com/images/I/51EiJRWJpgL.jpg", "https://m.media-amazon.com/images/I/41khtLrQlLL.jpg", "https://m.media-amazon.com/images/I/41YsIq6Po-L.jpg", "https://m.media-amazon.com/images/I/413uABj2w5L.jpg", "https://m.media-amazon.com/images/I/3136eP+b3aL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Lingerie, Sleep & Lounge \u203a Lingerie \u203a Baby Dolls & Chemises", "average_rating": "", "small_description": ["adult exotic negligees ", "Made in USA or Imported ", "Dear Queen, please check our size chart, we suggest buy One size Up ", "Prime Wardrobe closure ", "Machine Wash ", "Gift -- It is Very Suitable for Birthdays, Valentine's Day, Anniversary, Halloween, Christmas and Other Special Days as a Gift to Your Lover and Girlfriend. This is a Good Gift for Lovers to Show Her Charming and Sexy Side. ", "Match -- Gorgeous, hollow out lace bralette push up bra, matching with a thong high cut panty, the perfect sexy lace nightwear for women. This boudoir babydoll lingerie can be wear as lingerie for women, sexy lace bra and panty set, g-string thongs for women, two pieces lingerie set, hollow out lace nightwear. , Occasion -- Suitable for babydoll lingerie, underwear, nightwear, sleepwear, lingerie set, honeymoon lingerie for women, bridal lingerie set, bra and panty set, and even pair with skinny pants, jackets and high heels for a hot sexy look in the night party. Perfect for special night, valentine's day, honeymoon gifts, wedding night, bridal gifts, anniversary, bedroom and every hot moment., valentines day women babydoll mesh lingerie strap chemise lace sleepwear halter nighties women satin lingerie bodysuit deep-v stretch teddy one piece lace babydoll short jumpsuit pajamas women lingerie halter chemise lace babydoll mesh nightwear v neck teddy women's modal sleepwear full slips strap nightgown v neck chemise lace lingerie women sexy bridal lingerie lace floral babydoll stretch strappy set with cute bowknot mesh thong sexy lingerie for women, 2 women lace sleepwear set v neck solid color adjustable straps sexy camisole top and elastic short pants piece nightwear for the black deco make you elegant seductive womens pajamas sets satin sleep shorts with pajama woman cami crotchless lingerie blue plus size red purple bodysuit halter garter stockings robe teddy xl sex corset chest 4x underwear 50s 36dd boudoir panties chemise 1x 28h romper corsette 3pc women's exotic lingerie bodystockings nightgowns bustiers corsets negligees"], "customization_options": {"Color": null, "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09PLCDDBV"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09PLCRXJ4"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09PLBDCBY"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09PLC7C5X"}]}, "asin": "B09PLBDCBY", "category": "fashion", "query": "women's bodysuit tops", "page": 117, "Title": "Lingerie for Women Faux Leather Teddy Bodysuit Halter Tops Sleepwear Sexy One Piece Babydoll Exotic Nightwear Bodycon", "Description": "product information: 1.Material: Polyester/ Leather 2.Season: Spring,Summer,Autumn,Winter 3.Style: Sexy style 4.Type: Lingerie 5.How to wash:Hand wash Cold 6.Place: Honeymoon, Wedding night, lingerie Party, sleepwear,Valentine's Day.etc 7.Package: 1PC Lingerie Suit 1.If you want a more relaxed and comfortable feeling, you can buy a larger size. 2.Different monitors have slight chromatic aberration. Don't mind. Details: beautiful designed, very exquisite and fancy; Occasions: A well-made quality bustier, shows your stunning golden figure. Occasions perfectly like wedding, Halloween, Christmas, Black Friday, party, evening, cocktail, wedding, dinner, date, home and it's a special surprise gift for women. More: women's costumes exotic lingerie bodystockings nightgowns bustiers corsets plus size costumeswomens open back halter plunging teddy,comfortable scalloped trim lace women teddy one piece babydoll mini bodysuit for deep v backless slip floral see through v-neck sexy lingerie-deep neck perspective underwear hollow out crotch sex cup crotchless men set sleepwear", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["adult exotic negligees ", "Made in USA or Imported ", "Dear Queen, please check our size chart, we suggest buy One size Up ", "Prime Wardrobe closure ", "Machine Wash ", "Gift -- It is Very Suitable for Birthdays, Valentine's Day, Anniversary, Halloween, Christmas and Other Special Days as a Gift to Your Lover and Girlfriend. This is a Good Gift for Lovers to Show Her Charming and Sexy Side. ", "Match -- Gorgeous, hollow out lace bralette push up bra, matching with a thong high cut panty, the perfect sexy lace nightwear for women. This boudoir babydoll lingerie can be wear as lingerie for women, sexy lace bra and panty set, g-string thongs for women, two pieces lingerie set, hollow out lace nightwear. , Occasion -- Suitable for babydoll lingerie, underwear, nightwear, sleepwear, lingerie set, honeymoon lingerie for women, bridal lingerie set, bra and panty set, and even pair with skinny pants, jackets and high heels for a hot sexy look in the night party. Perfect for special night, valentine's day, honeymoon gifts, wedding night, bridal gifts, anniversary, bedroom and every hot moment., valentines day women babydoll mesh lingerie strap chemise lace sleepwear halter nighties women satin lingerie bodysuit deep-v stretch teddy one piece lace babydoll short jumpsuit pajamas women lingerie halter chemise lace babydoll mesh nightwear v neck teddy women's modal sleepwear full slips strap nightgown v neck chemise lace lingerie women sexy bridal lingerie lace floral babydoll stretch strappy set with cute bowknot mesh thong sexy lingerie for women, 2 women lace sleepwear set v neck solid color adjustable straps sexy camisole top and elastic short pants piece nightwear for the black deco make you elegant seductive womens pajamas sets satin sleep shorts with pajama woman cami crotchless lingerie blue plus size red purple bodysuit halter garter stockings robe teddy xl sex corset chest 4x underwear 50s 36dd boudoir panties chemise 1x 28h romper corsette 3pc women's exotic lingerie bodystockings nightgowns bustiers corsets negligees"], "Price": "$2.99 to $6.99", "options": {"size": ["small", "medium", "large", "x-large"]}, "option_to_image": {"small": null, "medium": null, "large": null, "x-large": null}, "Attributes": ["lingerie women", "lingerie set", "women lingerie", "pajamas women", "sexy lingerie", "machine wash"], "MainImage": "https://m.media-amazon.com/images/I/41uV5eJkeCL.jpg"}} +{"id": "B004FG6BV2", "contents": "rusticware 921orb kitchen and bath cabinet knob the rusticware collection of cabinet hardware features multiple styles of knobs and pulls as well as a versatile knob backplate. knobs and pulls are available in oil rubbed bronze, satin nickel, weathered pewter, iron, black and chrome. all knobs & pulls are solid zinc die cast and are packed with standard 8/32\" screws and screws that are 1/2\" longer to fit most applications. packaged with fasteners ", "product": {"name": "Rusticware 921ORB Kitchen and Bath Cabinet Knob", "full_description": "The Rusticware collection of cabinet hardware features multiple styles of knobs and pulls as well as a versatile knob backplate. Knobs and pulls are available in Oil Rubbed Bronze, Satin Nickel, Weathered Pewter, Iron, Black and Chrome. All knobs & pulls are solid zinc die cast and are packed with standard 8/32\" screws and screws that are 1/2\" longer to fit most applications.", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/41EiXSU7jOL.jpg", "https://m.media-amazon.com/images/I/214R0QvW1nL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Hardware \u203a Cabinet Hardware \u203a Knobs", "average_rating": 5, "small_description": ["Packaged with fasteners ", "Made from zinc dia cast ", "Multiple designs to fit any style decoration ", "Made in China "], "model": "\u200e921ORB", "customization_options": "", "asin": "B004FG6BV2", "category": "garden", "query": "china cabinets", "page": 307, "Title": "Rusticware 921ORB Kitchen and Bath Cabinet Knob", "Description": "The Rusticware collection of cabinet hardware features multiple styles of knobs and pulls as well as a versatile knob backplate. Knobs and pulls are available in Oil Rubbed Bronze, Satin Nickel, Weathered Pewter, Iron, Black and Chrome. All knobs & pulls are solid zinc die cast and are packed with standard 8/32\" screws and screws that are 1/2\" longer to fit most applications.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Packaged with fasteners ", "Made from zinc dia cast ", "Multiple designs to fit any style decoration ", "Made in China "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41EiXSU7jOL.jpg"}} +{"id": "B088X39YNP", "contents": "new compatible for sony playstation 4 ps4 pro cuh-7015b cuh-7115b 7000 7500 g95c12ms1aj-56j14 cooling fan ps4 pro 7000 cpu fan ", "product": {"name": "New Compatible for Sony Playstation 4 PS4 Pro CUH-7015b CUH-7115b 7000 7500 G95C12MS1AJ-56J14 Cooling Fan", "full_description": "PS4 PRO 7000 CPU FAN", "pricing": [19.99], "images": ["https://m.media-amazon.com/images/I/41pThgsyveL.jpg", "https://m.media-amazon.com/images/I/41d9nK8qAoL.jpg", "https://m.media-amazon.com/images/I/41XEvoB4WSL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Video Games \u203a PlayStation 4 \u203a Accessories \u203a Cooling Systems", "average_rating": 4.2, "small_description": [""], "customization_options": "", "asin": "B088X39YNP", "category": "electronics", "query": "playstation", "page": 168, "Title": "New Compatible for Sony Playstation 4 PS4 Pro CUH-7015b CUH-7115b 7000 7500 G95C12MS1AJ-56J14 Cooling Fan", "Description": "PS4 PRO 7000 CPU FAN", "Reviews": [], "Rating": "N.A.", "BulletPoints": [""], "Price": "$19.99", "options": {}, "option_to_image": {}, "Attributes": ["sony playstation"], "MainImage": "https://m.media-amazon.com/images/I/41pThgsyveL.jpg"}} +{"id": "B01LM6W7Z6", "contents": "by alegory acrylic makeup wall organizing shelves nail polish, eyelashes, foundations cosmetics | 12 inch shelf (pack of 4) hardware incl'd designed w/ a front lip to keep nail polish bottles, eyelash containers, nail art tools, nail stamps from falling forward. pre-drilled holes for wall hanging size: 3 shelves, 4 shelves, 5 shelves", "product": {"name": "BY ALEGORY Acrylic Makeup Wall Organizing Shelves Nail Polish, Eyelashes, Foundations Cosmetics | 12 inch shelf (Pack of 4) Hardware Incl'd", "full_description": "", "pricing": [16.99], "images": ["https://m.media-amazon.com/images/I/51jmgjYAF9L.jpg", "https://m.media-amazon.com/images/I/21lbEBMpkWL.jpg", "https://m.media-amazon.com/images/I/41HJr6thtVL.jpg", "https://m.media-amazon.com/images/I/41sbWrOgIRL.jpg", "https://m.media-amazon.com/images/I/41umDy+f4qL.jpg", "https://m.media-amazon.com/images/I/41-sbmlSwTL.jpg", "https://m.media-amazon.com/images/I/41cGaycMtBL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Foot, Hand & Nail Care \u203a Nail Art & Polish \u203a Nail Art Accessories \u203a Nail Art Equipment", "average_rating": 4.3, "small_description": ["DESIGNED w/ a Front Lip to Keep Nail Polish Bottles, Eyelash Containers, Nail Art Tools, Nail Stamps From Falling Forward. Pre-drilled Holes For Wall Hanging ", "MADE From A Single Piece With The Highest Quality Crystalline Acrylic for a Flawless Clear Look & No Glued Pieces ", "SIZE 12L x 1W x .59H Inches per Single Shelf | Available In 3, 4 or 5 Shelf Packs (Please Also See The Dimension Photo) ", "ORGANIZE Infinite Amounts of Cosmetics - Made w/ a Flush Flat Edge to Put Them Side by Side to Create Unlimited Shelf Widths ", "THICK Acrylic With Rounded Edges Offers a Beautiful Look and Feel ", "PACKAGED In Soft Protective Foam Within a Black and Metallic Silver Box "], "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01LM6W814/ref=twister_B087YW343S?_encoding=UTF8&psc=1", "value": "3 Shelves", "price_string": "$13.99", "price": 13.99, "image": null}, {"is_selected": true, "url": null, "value": "4 Shelves", "price_string": "$16.99", "price": 16.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B27J6W9/ref=twister_B087YW343S?_encoding=UTF8&psc=1", "value": "5 Shelves", "price_string": "$19.99", "price": 19.99, "image": null}], "Color": null}, "asin": "B01LM6W7Z6", "category": "beauty", "query": "eyes makeup", "page": 167, "Title": "BY ALEGORY Acrylic Makeup Wall Organizing Shelves Nail Polish, Eyelashes, Foundations Cosmetics | 12 inch shelf (Pack of 4) Hardware Incl'd", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["DESIGNED w/ a Front Lip to Keep Nail Polish Bottles, Eyelash Containers, Nail Art Tools, Nail Stamps From Falling Forward. Pre-drilled Holes For Wall Hanging ", "MADE From A Single Piece With The Highest Quality Crystalline Acrylic for a Flawless Clear Look & No Glued Pieces ", "SIZE 12L x 1W x .59H Inches per Single Shelf | Available In 3, 4 or 5 Shelf Packs (Please Also See The Dimension Photo) ", "ORGANIZE Infinite Amounts of Cosmetics - Made w/ a Flush Flat Edge to Put Them Side by Side to Create Unlimited Shelf Widths ", "THICK Acrylic With Rounded Edges Offers a Beautiful Look and Feel ", "PACKAGED In Soft Protective Foam Within a Black and Metallic Silver Box "], "Price": "$16.99", "options": {"size": ["3 shelves", "4 shelves", "5 shelves"]}, "option_to_image": {"3 shelves": null, "4 shelves": null, "5 shelves": null}, "Attributes": ["nail polish", "nail art"], "MainImage": "https://m.media-amazon.com/images/I/51jmgjYAF9L.jpg"}} +{"id": "B09CDRQGLS", "contents": "a novel ; still life with bread crumbs author: anna quindlen publication year: 2014 format: hardcover number of pages: 272 pages language: english isbn: 9781400065752 ean: 9781400065752 ", "product": {"name": "A Novel ; Still Life with Bread Crumbs", "full_description": "", "pricing": [17.38], "images": ["https://m.media-amazon.com/images/I/21060v3xWYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Breadsticks", "average_rating": "", "small_description": ["Author: Anna Quindlen Publication Year: 2014 Format: Hardcover Number of Pages: 272 Pages Language: English ISBN: 9781400065752 EAN: 9781400065752 ", "Still Life with Bread Crumbs begins with an imagined gunshot and ends with a new tin roof. Between the two is a wry and knowing portrait of Rebecca Winter, a photographer whose work made her an unlikely heroine for many women. Her career is now descendent, her bank balance shaky, and she has fled the city for the middle of nowhere. ", "There she discovers, in a tree stand with a roofer named Jim Bates, that what she sees through a camera lens is not all there is to life. Brilliantly written, powerfully observed, Still Life with Bread Crumbs is a deeply moving and often very funny story of unexpected love, and a stunningly crafted journey into the life of a woman, her heart, her mind, her days, as she discovers that life is a story with many levels, a story that is longer and more exciting than she ever imagined. ", "Dimensions Weight 18 Oz Height 1in. Width 6.6in. Length 9.6in. ", "Product Key Features Author Anna Quindlen Format Hardcover Language English Publication Year 2014 Number of Pages 272 Pages "], "customization_options": "", "asin": "B09CDRQGLS", "category": "grocery", "query": "breads & bakery", "page": 148, "Title": "A Novel ; Still Life with Bread Crumbs", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Author: Anna Quindlen Publication Year: 2014 Format: Hardcover Number of Pages: 272 Pages Language: English ISBN: 9781400065752 EAN: 9781400065752 ", "Still Life with Bread Crumbs begins with an imagined gunshot and ends with a new tin roof. Between the two is a wry and knowing portrait of Rebecca Winter, a photographer whose work made her an unlikely heroine for many women. Her career is now descendent, her bank balance shaky, and she has fled the city for the middle of nowhere. ", "There she discovers, in a tree stand with a roofer named Jim Bates, that what she sees through a camera lens is not all there is to life. Brilliantly written, powerfully observed, Still Life with Bread Crumbs is a deeply moving and often very funny story of unexpected love, and a stunningly crafted journey into the life of a woman, her heart, her mind, her days, as she discovers that life is a story with many levels, a story that is longer and more exciting than she ever imagined. ", "Dimensions Weight 18 Oz Height 1in. Width 6.6in. Length 9.6in. ", "Product Key Features Author Anna Quindlen Format Hardcover Language English Publication Year 2014 Number of Pages 272 Pages "], "Price": "$17.38", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/21060v3xWYL.jpg"}} +{"id": "B00ZDEDVBI", "contents": "star wars i am furry chewbacca womens costume zip-up jacket the 100% polyester star wars chewbacca women's costume hoodie is a great hoodie for the ladies who happen to love wookiees! roar! ", "product": {"name": "Star Wars I Am Furry Chewbacca Womens Costume Zip-Up Jacket", "full_description": "The 100% polyester Star Wars Chewbacca Women's Costume Hoodie is a great hoodie for the ladies who happen to love Wookiees! Roar!", "pricing": [69.99], "images": ["https://m.media-amazon.com/images/I/51fDh0zQV7L.jpg", "https://m.media-amazon.com/images/I/41u1HtW4wFL.jpg", "https://m.media-amazon.com/images/I/41uFj7L-5iL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Fashion Hoodies & Sweatshirts", "average_rating": 4.3, "small_description": [""], "customization_options": {"Size": null, "Color": null}, "asin": "B00ZDEDVBI", "category": "fashion", "query": "women's fashion hoodies & sweatshirts", "page": 7, "Title": "Star Wars I Am Furry Chewbacca Womens Costume Zip-Up Jacket", "Description": "The 100% polyester Star Wars Chewbacca Women's Costume Hoodie is a great hoodie for the ladies who happen to love Wookiees! Roar!", "Reviews": [], "Rating": "N.A.", "BulletPoints": [""], "Price": "$69.99", "options": {}, "option_to_image": {}, "Attributes": ["star wars"], "MainImage": "https://m.media-amazon.com/images/I/51fDh0zQV7L.jpg"}} +{"id": "B01MQH5VGR", "contents": "qualgear high speed long hdmi 2.0 cable with ethernet (50 feet) - 100% ofc copper, 24 awg, 24k gold plated contacts, cl3 rated, triple-shielded. supports 4k uhd, 3d, 18 gbps, arc (qg-cbl-hd20-50ft) enjoy high-quality picture and pure audio by implementing the qualgear 50' (feet) hdmi cable with ethernet in your av setup. this all-in-one video plus audio cable features 100% oxygen free copper (ofc), 24awg thick bare copper for higher bandwidths up to 18gbps. it features 24k gold plated contacts for improved signal clarity. this hdmi cable is triple shielded for maximum protection from electromagnetic interference (emi) and to achieve ultra-low signal to noise ratio (snr). at 50' (feet) in length, this cable is flexible and convenient when making connections. it features hdmi type a male connector on either end and plugs into any hdmi port. it works with a variety of devices, including ultra hd 4k tvs, a/v receivers, blu-ray players, cable / satellite boxes, gaming systems, apple tv, roku, computers and more. the cl3 fire safety rating means that the cable jacket has been treated with a fire-retardant, which ensures that it meets fire safety standards for use in and through the walls of residential class buildings. this cable meets hdmi 2. 0b specification and is backward compatible with all previous specifications - hdmi 1. 4, 1. 3, and 1. 0. this hdmi cable supports ethernet and audio return channels (arc) so no separate cables are needed for ethernet and audio return capabilities. qualgear hdmi cables are also available in 3ft , 6ft , 10ft , 25ft , 75ft , 100ft lengths. bandwidth up to 18gbps size: 25 feet, 30 feet, 40 feet, 50 feet, 60 feet, 75 feet, 100 feet", "product": {"name": "QualGear High Speed Long HDMI 2.0 Cable with Ethernet (50 Feet) - 100% OFC Copper, 24 Awg, 24K Gold Plated Contacts, CL3 Rated, Triple-Shielded. Supports 4K UHD, 3D, 18 Gbps, ARC (QG-CBL-HD20-50FT)", "full_description": "Enjoy high-quality picture and pure audio by implementing the QualGear 50' (feet) HDMI cable with Ethernet in your AV setup. This all-in-one video plus audio cable Features 100% oxygen free copper (OFC), 24Awg thick bare copper for higher bandwidths up to 18Gbps. It Features 24K gold plated contacts for improved signal clarity. This HDMI cable is triple shielded for maximum protection from electromagnetic interference (EMI) and to achieve ultra-low signal to noise ratio (SNR). at 50' (feet) in length, this cable is flexible and convenient when making connections. It Features HDMI type a male connector on either end and plugs into any HDMI port. It Works with a variety of devices, including Ultra HD 4K TVs, a/V receivers, blu-ray players, cable / satellite boxes, gaming systems, Apple TV, Roku, computers and more. The CL3 fire safety rating means that the cable jacket has been treated with a fire-retardant, which ensures that it meets fire safety standards for use in and through the walls of residential class buildings. This cable meets HDMI 2. 0B specification and is backward compatible with all previous specifications - HDMI 1. 4, 1. 3, and 1. 0. This HDMI cable supports Ethernet and audio Return channels (ARC) so no separate cables are needed for Ethernet and audio Return capabilities. QualGear HDMI cables are also available in 3ft , 6ft , 10ft , 25ft , 75ft , 100ft lengths.", "pricing": [39.45], "images": ["https://m.media-amazon.com/images/I/51eMyHuztmL.jpg", "https://m.media-amazon.com/images/I/413Zf8gxLwL.jpg", "https://m.media-amazon.com/images/I/41zQ9DWcRaL.jpg", "https://m.media-amazon.com/images/I/411wRQuF48L.jpg", "https://m.media-amazon.com/images/I/41FUe-+O7tL.jpg", "https://m.media-amazon.com/images/I/41ej6Bz93sL.jpg", "https://m.media-amazon.com/images/I/51e0mxckHaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories \u203a Cables & Interconnects \u203a Video Cables \u203a HDMI Cables", "average_rating": 4.4, "small_description": ["Bandwidth up to 18Gbps ", "Hdmi Type a Male to HDMI Type a Male cable ", "Supports 4K at50/60 (2160p), which is 4 times the clarity of 1080p/60 Video resolution ", "Supports Ethernet, 3D, 4K video and Audio Return Channel (ARC). up to 32 Audio channels for a multi-dimensional immersive Audio experience. 24K gold-plated contacts ", "Each cable Meets HDMI 2. 0 specification, and Supports sharing an internet Connection among multiple devices without the need for a separate Ethernet cable ", "Constructed with full-metal connectors, double-shielding (alu mylar foil & aluminium braiding), 24k gold-plated connectors, and oxygen-free copper, you can buy with confidence knowing you\u2019ll get pristine pictures and sound with a loss-free transmission. ", "Gold-plated, corrosion-resistant connectors deliver optimal signal transfer with lower distortion. "], "model": "QG-CBL-HD20-50FT", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B01MQH5S8Z/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "25 Feet", "price_string": "$18.95", "price": 18.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073V5S5Q8/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "30 Feet", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073V637RH/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "40 Feet", "price_string": "$27.15", "price": 27.15, "image": null}, {"is_selected": true, "url": null, "value": "50 Feet", "price_string": "$39.45", "price": 39.45, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B073V62BJ5/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "60 Feet", "price_string": "$46.67", "price": 46.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01N3QONAP/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "75 Feet", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01MTLOK5Q/ref=twister_B0747H6ZSP?_encoding=UTF8&psc=1", "value": "100 Feet", "price_string": "", "price": 0, "image": null}]}, "asin": "B01MQH5VGR", "category": "electronics", "query": "hdmi cables", "page": 186, "Title": "QualGear High Speed Long HDMI 2.0 Cable with Ethernet (50 Feet) - 100% OFC Copper, 24 Awg, 24K Gold Plated Contacts, CL3 Rated, Triple-Shielded. Supports 4K UHD, 3D, 18 Gbps, ARC (QG-CBL-HD20-50FT)", "Description": "Enjoy high-quality picture and pure audio by implementing the QualGear 50' (feet) HDMI cable with Ethernet in your AV setup. This all-in-one video plus audio cable Features 100% oxygen free copper (OFC), 24Awg thick bare copper for higher bandwidths up to 18Gbps. It Features 24K gold plated contacts for improved signal clarity. This HDMI cable is triple shielded for maximum protection from electromagnetic interference (EMI) and to achieve ultra-low signal to noise ratio (SNR). at 50' (feet) in length, this cable is flexible and convenient when making connections. It Features HDMI type a male connector on either end and plugs into any HDMI port. It Works with a variety of devices, including Ultra HD 4K TVs, a/V receivers, blu-ray players, cable / satellite boxes, gaming systems, Apple TV, Roku, computers and more. The CL3 fire safety rating means that the cable jacket has been treated with a fire-retardant, which ensures that it meets fire safety standards for use in and through the walls of residential class buildings. This cable meets HDMI 2. 0B specification and is backward compatible with all previous specifications - HDMI 1. 4, 1. 3, and 1. 0. This HDMI cable supports Ethernet and audio Return channels (ARC) so no separate cables are needed for Ethernet and audio Return capabilities. QualGear HDMI cables are also available in 3ft , 6ft , 10ft , 25ft , 75ft , 100ft lengths.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Bandwidth up to 18Gbps ", "Hdmi Type a Male to HDMI Type a Male cable ", "Supports 4K at50/60 (2160p), which is 4 times the clarity of 1080p/60 Video resolution ", "Supports Ethernet, 3D, 4K video and Audio Return Channel (ARC). up to 32 Audio channels for a multi-dimensional immersive Audio experience. 24K gold-plated contacts ", "Each cable Meets HDMI 2. 0 specification, and Supports sharing an internet Connection among multiple devices without the need for a separate Ethernet cable ", "Constructed with full-metal connectors, double-shielding (alu mylar foil & aluminium braiding), 24k gold-plated connectors, and oxygen-free copper, you can buy with confidence knowing you\u2019ll get pristine pictures and sound with a loss-free transmission. ", "Gold-plated, corrosion-resistant connectors deliver optimal signal transfer with lower distortion. "], "Price": "$39.45", "options": {"size": ["25 feet", "30 feet", "40 feet", "50 feet", "60 feet", "75 feet", "100 feet"]}, "option_to_image": {"25 feet": null, "30 feet": null, "40 feet": null, "50 feet": null, "60 feet": null, "75 feet": null, "100 feet": null}, "Attributes": ["gold plated", "hdmi cable", "high speed"], "MainImage": "https://m.media-amazon.com/images/I/51eMyHuztmL.jpg"}} +{"id": "B08KYBVQ46", "contents": "adidas originals women's adicolor essentials tights casual tights with plenty of style. these women's adidas tights have a trefoil logo on the hip and a high-rise waist for added coverage. super-soft cotton and a tight fit keep everything as comfortable as it gets. women's tights for casual wear size: xx-small, x-small, small, medium, large, x-large, and color: orbit green, victory crimson", "product": {"name": "adidas Originals Women's Adicolor Essentials Tights", "full_description": "Casual tights with plenty of style. These women's adidas tights have a Trefoil logo on the hip and a high-rise waist for added coverage. Super-soft cotton and a tight fit keep everything as comfortable as it gets.", "pricing": [16.82, 35.0], "images": ["https://m.media-amazon.com/images/I/31TTQjQco+L.jpg", "https://m.media-amazon.com/images/I/31bkJEM7jdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Leggings", "average_rating": 4.2, "small_description": ["Women's tights for casual wear ", "TIGHT FIT: Wears close but is not restrictive, and hugs the legs almost like a second skin ", "ELASTIC WAIST: High-rise elastic waist for extra coverage ", "BETTER COTTON INITIATIVE: By buying cotton products from us, you're supporting more sustainable cotton farming "], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "XX-Small", "asin": "B08KYBLWDC"}, {"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B08KYFD8SQ"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B08KYCF5XZ"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B08KYBVQ46"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B08KYDDQSD"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B08KZ1GWV3"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08KYDFCKC/ref=twister_B08SH44K67", "value": "Orbit Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31IOpmf4sYL.jpg"}, {"is_selected": true, "url": null, "value": "Victory Crimson", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31TTQjQco+L.jpg"}]}, "asin": "B08KYBVQ46", "category": "fashion", "query": "women's pants", "page": 16, "Title": "adidas Originals Women's Adicolor Essentials Tights", "Description": "Casual tights with plenty of style. These women's adidas tights have a Trefoil logo on the hip and a high-rise waist for added coverage. Super-soft cotton and a tight fit keep everything as comfortable as it gets.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Women's tights for casual wear ", "TIGHT FIT: Wears close but is not restrictive, and hugs the legs almost like a second skin ", "ELASTIC WAIST: High-rise elastic waist for extra coverage ", "BETTER COTTON INITIATIVE: By buying cotton products from us, you're supporting more sustainable cotton farming "], "Price": "$16.82 to $35.0", "options": {"size": ["xx-small", "x-small", "small", "medium", "large", "x-large"], "color": ["orbit green", "victory crimson"]}, "option_to_image": {"xx-small": null, "x-small": null, "small": null, "medium": null, "large": null, "x-large": null, "orbit green": "https://m.media-amazon.com/images/I/31IOpmf4sYL.jpg", "victory crimson": "https://m.media-amazon.com/images/I/31TTQjQco+L.jpg"}, "Attributes": ["elastic waist", "machine wash"], "MainImage": "https://m.media-amazon.com/images/I/31TTQjQco+L.jpg"}} +{"id": "B08K7LDM7Q", "contents": "2 pcs cowhide throw pillow covers decorative pillow cases farm animal brown cow hide skin print pillow case 18 x 18 inch velvet square cushion cover for sofa bedroom set of 2 decorative animal skin throw pillow covers brown and whiteyou will get: 2 brown and white animal print throw pillows, standard size 18*18 inches, invisible zipper, easy to clean pillowcases.this 18x18 brown leather pillowcase adds a lot of color to your home decoration and immediately enhances the unique style of your room!not only is it very suitable for decorating sofas, chairs, sofas, cars, beds, offices, but also a perfect gift for family and friends for christmas and birthday!feature:set of 2 cow print throw pillow coversdouble-sided printinghigh-quality soft velvet materialhidden zipper design18*18 inch cowhide decorative cushion coverswe use soft swan material that will not irritate the skin, high quality, environmentally friendly ink.printing uses high temperature to make the ink penetrate into the material fibers and will not fade after washing.it looks beautiful after repeated washing. an easy and cheap way to add decorations to the living room, bedroom, study, and sofa.prompt:machine wash in cold water or hand wash.machine dry or natural dry.only abstract throw pillow covers, no plug-ins.1. due to different computer pixels, the actual color may be slightly different, which is normal. please allow.2. due to manual measurement, a difference of 1-2cm is allowed. \ud83c\udf3bfashion style:brown and white cowhide printed pillowcase patterns make the whole pillowcase full of fashion and brighten your home. size: 18 x 18-inch, 20\"x20\"", "product": {"name": "2 Pcs Cowhide Throw Pillow Covers Decorative Pillow Cases Farm Animal Brown Cow Hide Skin Print Pillow Case 18 X 18 Inch Velvet Square Cushion Cover for Sofa Bedroom", "full_description": "SET OF 2 DECORATIVE ANIMAL SKIN THROW PILLOW COVERS BROWN AND WHITEYOU WILL GET: 2 brown and white animal print throw pillows, standard size 18*18 inches, invisible zipper, easy to clean pillowcases.This 18x18 brown leather pillowcase adds a lot of color to your home decoration and immediately enhances the unique style of your room!Not only is it very suitable for decorating sofas, chairs, sofas, cars, beds, offices, but also a perfect gift for family and friends for Christmas and birthday!FEATURE:set of 2 cow print throw pillow coversDouble-sided printingHigh-quality soft velvet materialHidden zipper design18*18 inch cowhide decorative cushion coversWe use soft swan material that will not irritate the skin, high quality, environmentally friendly ink.Printing uses high temperature to make the ink penetrate into the material fibers and will not fade after washing.It looks beautiful after repeated washing. An easy and cheap way to add decorations to the living room, bedroom, study, and sofa.PROMPT:Machine wash in cold water or hand wash.Machine dry or natural dry.Only abstract throw pillow covers, no plug-ins.1. Due to different computer pixels, the actual color may be slightly different, which is normal. please allow.2. Due to manual measurement, a difference of 1-2CM is allowed.", "pricing": [17.99], "images": ["https://m.media-amazon.com/images/I/414UNymlFJL.jpg", "https://m.media-amazon.com/images/I/51VQrWgoe-L.jpg", "https://m.media-amazon.com/images/I/511iEartsQL.jpg", "https://m.media-amazon.com/images/I/41-1z4zo6rL.jpg", "https://m.media-amazon.com/images/I/51IZEjix4IL.jpg", "https://m.media-amazon.com/images/I/51exIu7Rj2L.jpg", "https://m.media-amazon.com/images/I/51R44CgNsdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Decorative Pillows, Inserts & Covers \u203a Throw Pillow Covers", "average_rating": 4.5, "small_description": ["\ud83c\udf3bFASHION STYLE:Brown and white cowhide printed pillowcase patterns make the whole pillowcase full of fashion and brighten your home. ", "\ud83c\udf3bATERIALS:The cowhide throw pillow case is made of velvet. Softness, comfort and durability are the most prominent features of this fabric. x 20 are made of smooth and soft velvet fabric.The tightly woven short and tight soft pillowcases are comfortable,strong and durable,which is the most prominent of the fabric feature. ", "\ud83c\udf3bSIZE:18x18 inches / 45x45cm. The package includes set of 2 animal print pillow case, excluding inserts.. ", "\ud83c\udf3bFARM ANIMAL PRINT DECOR PILLOW COVERS:Double-sided pattern printed animal skin pillow covers, with invisible zipper on the side. ", "\ud83c\udf3bSATISFYING SERVICE:We hope that it will be our honor for customers to feel 100% satisfied with square pillow covers. If you have any questions about our 2 pack hidden zippered pillowcase, please consult. Take it home if you like it. "], "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "18 x 18-Inch", "price_string": "$17.99", "price": 17.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GRNB7QT/ref=twister_B09GRJJCRH?_encoding=UTF8&psc=1", "value": "20\"x20\"", "price_string": "$20.99", "price": 20.99, "image": null}]}, "asin": "B08K7LDM7Q", "category": "garden", "query": "decorative pillows", "page": 55, "Title": "2 Pcs Cowhide Throw Pillow Covers Decorative Pillow Cases Farm Animal Brown Cow Hide Skin Print Pillow Case 18 X 18 Inch Velvet Square Cushion Cover for Sofa Bedroom", "Description": "SET OF 2 DECORATIVE ANIMAL SKIN THROW PILLOW COVERS BROWN AND WHITEYOU WILL GET: 2 brown and white animal print throw pillows, standard size 18*18 inches, invisible zipper, easy to clean pillowcases.This 18x18 brown leather pillowcase adds a lot of color to your home decoration and immediately enhances the unique style of your room!Not only is it very suitable for decorating sofas, chairs, sofas, cars, beds, offices, but also a perfect gift for family and friends for Christmas and birthday!FEATURE:set of 2 cow print throw pillow coversDouble-sided printingHigh-quality soft velvet materialHidden zipper design18*18 inch cowhide decorative cushion coversWe use soft swan material that will not irritate the skin, high quality, environmentally friendly ink.Printing uses high temperature to make the ink penetrate into the material fibers and will not fade after washing.It looks beautiful after repeated washing. An easy and cheap way to add decorations to the living room, bedroom, study, and sofa.PROMPT:Machine wash in cold water or hand wash.Machine dry or natural dry.Only abstract throw pillow covers, no plug-ins.1. Due to different computer pixels, the actual color may be slightly different, which is normal. please allow.2. Due to manual measurement, a difference of 1-2CM is allowed.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\ud83c\udf3bFASHION STYLE:Brown and white cowhide printed pillowcase patterns make the whole pillowcase full of fashion and brighten your home. ", "\ud83c\udf3bATERIALS:The cowhide throw pillow case is made of velvet. Softness, comfort and durability are the most prominent features of this fabric. x 20 are made of smooth and soft velvet fabric.The tightly woven short and tight soft pillowcases are comfortable,strong and durable,which is the most prominent of the fabric feature. ", "\ud83c\udf3bSIZE:18x18 inches / 45x45cm. The package includes set of 2 animal print pillow case, excluding inserts.. ", "\ud83c\udf3bFARM ANIMAL PRINT DECOR PILLOW COVERS:Double-sided pattern printed animal skin pillow covers, with invisible zipper on the side. ", "\ud83c\udf3bSATISFYING SERVICE:We hope that it will be our honor for customers to feel 100% satisfied with square pillow covers. If you have any questions about our 2 pack hidden zippered pillowcase, please consult. Take it home if you like it. "], "Price": "$17.99", "options": {"size": ["18 x 18-inch", "20\"x20\""]}, "option_to_image": {"18 x 18-inch": null, "20\"x20\"": null}, "Attributes": ["pillow covers", "throw pillow", "double sided"], "MainImage": "https://m.media-amazon.com/images/I/414UNymlFJL.jpg"}} +{"id": "B085RG99KT", "contents": "bifesta micellar water dual phase pore clear 360ml-effectively removes waterproof & heavy makeup. dual effect water-based remover which contains moisturizing cleansing ingredients and botanical oil layer that effectively removes waterproof & heavy makeup ", "product": {"name": "BIFESTA Micellar Water Dual Phase Pore Clear 360ml-Effectively removes Waterproof & Heavy Makeup.", "full_description": "Dual Effect Water-based remover which contains moisturizing cleansing ingredients and botanical oil layer that effectively removes waterproof & heavy makeup", "pricing": [33.99], "images": ["https://m.media-amazon.com/images/I/41jBbA-5KuS.jpg", "https://m.media-amazon.com/images/I/51eNydlsl4S.jpg", "https://m.media-amazon.com/images/I/51fF6+41EYS.jpg", "https://m.media-amazon.com/images/I/51VmkI97kNS.jpg", "https://m.media-amazon.com/images/I/51GnfTMAIqS.jpg", "https://m.media-amazon.com/images/I/417klPb9WAS.jpg", "https://m.media-amazon.com/images/I/41PMAKOWmZS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Makeup \u203a Makeup Remover \u203a Makeup Cleansing Water", "average_rating": "", "small_description": [""], "customization_options": "", "asin": "B085RG99KT", "category": "beauty", "query": "makeup remover", "page": 108, "Title": "BIFESTA Micellar Water Dual Phase Pore Clear 360ml-Effectively removes Waterproof & Heavy Makeup.", "Description": "Dual Effect Water-based remover which contains moisturizing cleansing ingredients and botanical oil layer that effectively removes waterproof & heavy makeup", "Reviews": [], "Rating": "N.A.", "BulletPoints": [""], "Price": "$33.99", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41jBbA-5KuS.jpg"}} +{"id": "B09Q3PZ8JK", "contents": "c.o. bigelow hair & body wash, elixir black, no. 1605, 8 fl oz our aromatic, rich-lathering hair & body wash is a 2-in-1 cleanser, making for a highly efficient shower regimen to effectively cleanse both the hair and body. infused with our elixir cologne, the aromatic rich-lathering formula lightly scents the skin as it washes. elixir black blends exotic agar wood and tonka bean with undertones of amber, musk and vanilla. pair it with elixir cologne for a perfect gift. rich lathering mens body wash and shampoo 2 in 1 cleanser makes a highly effective shower regimen to cleanse the hair and body ", "product": {"name": "C.O. Bigelow Hair & Body Wash, Elixir Black, No. 1605, 8 fl oz", "full_description": "Our aromatic, rich-lathering hair & body wash is a 2-in-1 cleanser, making for a highly efficient shower regimen to effectively cleanse both the hair and body. Infused with our Elixir Cologne, the aromatic rich-lathering formula lightly scents the skin as it washes. Elixir Black blends exotic Agar Wood and Tonka Bean with undertones of Amber, Musk and Vanilla. Pair it with Elixir Cologne for a perfect gift.", "pricing": [18.0], "images": ["https://m.media-amazon.com/images/I/31PEYdJptZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Cleansers \u203a Body Washes", "average_rating": "", "small_description": ["Rich lathering mens body wash and shampoo 2 in 1 cleanser makes a highly effective shower regimen to cleanse the hair and body ", "Formulated with Aloe Vera 0.5% and Pro Vitamin B5 1% and infused with Bigelow's Elixir Cologne, the aromatic shampoo and bath soap combination lightly scents skin and hair as it washes ", "Elixir Black is confident, exotic and rich, blending exotic agar wood and tonka bean with undertones of amber, musk and vanilla ", "Pair Elixir Hair & Body Wash with our Elixir Cologne for a perfect gift for men ", "Made in the USA, SLS Free, Paraben Free, Cruelty Free, No artificial colors "], "customization_options": "", "asin": "B09Q3PZ8JK", "category": "beauty", "query": "body care", "page": 30, "Title": "C.O. Bigelow Hair & Body Wash, Elixir Black, No. 1605, 8 fl oz", "Description": "Our aromatic, rich-lathering hair & body wash is a 2-in-1 cleanser, making for a highly efficient shower regimen to effectively cleanse both the hair and body. Infused with our Elixir Cologne, the aromatic rich-lathering formula lightly scents the skin as it washes. Elixir Black blends exotic Agar Wood and Tonka Bean with undertones of Amber, Musk and Vanilla. Pair it with Elixir Cologne for a perfect gift.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Rich lathering mens body wash and shampoo 2 in 1 cleanser makes a highly effective shower regimen to cleanse the hair and body ", "Formulated with Aloe Vera 0.5% and Pro Vitamin B5 1% and infused with Bigelow's Elixir Cologne, the aromatic shampoo and bath soap combination lightly scents skin and hair as it washes ", "Elixir Black is confident, exotic and rich, blending exotic agar wood and tonka bean with undertones of amber, musk and vanilla ", "Pair Elixir Hair & Body Wash with our Elixir Cologne for a perfect gift for men ", "Made in the USA, SLS Free, Paraben Free, Cruelty Free, No artificial colors "], "Price": "$18.0", "options": {}, "option_to_image": {}, "Attributes": ["body wash", "aloe vera"], "MainImage": "https://m.media-amazon.com/images/I/31PEYdJptZL.jpg"}} +{"id": "B08NPQT5TW", "contents": "cabilock metal vanity tray rectangle decorative tray jewelry tray trinket ring dish black food serving plate for bathroom kitchen counter dresser 22x9.5x2cm descriptionthis tray can be a jewelry tray for necklace, bracelet, earrings, ring, etc. also can be a great storage tool for wallets, glasses, keys. this trays is a great transporting and displaying showcase for your jewelry, suitable\u00a0for personal use at home, also a perfect countertop jewelry display tray in stores or trade shows.features-material:\u00a0iron-color: black- size: 22x9.5x2cm.-\u00a0perfect to storage your daily essentials such as creams, lotions, oils, etc, and make your tabletop look so tidy.- can also be used as jewelry organizer, perfume trays, vanity trays, dresser tray, decorative tray, bathroom vanity tray, makeup tray organizer, etc.-\u00a0a perfect gift for the one who appreciates exclusive-looking home decor items.- a perfect gift for birthday, christmas, thanksgiving, wedding registry, housewarming, and so on.-\u00a0allows you to have jewelry, rings, earrings, necklace, trinkets within reach. offers a stylish way to keep organized and a perfect choice for home decor!package including1 x jewelry tray a perfect gift for birthday, christmas, thanksgiving, wedding registry, housewarming, and so on. ", "product": {"name": "Cabilock Metal Vanity Tray Rectangle Decorative Tray Jewelry Tray Trinket Ring Dish Black Food Serving Plate for Bathroom Kitchen Counter Dresser 22x9.5x2cm", "full_description": "DescriptionThis tray can be a jewelry tray for necklace, bracelet, earrings, ring, etc. Also can be a great storage tool for wallets, glasses, keys. This trays is a great transporting and displaying showcase for your jewelry, suitable\u00a0for personal use at home, also a perfect countertop jewelry display tray in stores or trade shows.Features-Material:\u00a0iron-Color: black- Size: 22x9.5x2cm.-\u00a0Perfect to storage your daily essentials such as creams, lotions, oils, etc, And make your tabletop look so tidy.- Can also be used as jewelry organizer, perfume trays, vanity trays, dresser tray, decorative tray, bathroom vanity tray, makeup tray organizer, etc.-\u00a0A perfect gift for the one who appreciates exclusive-looking home decor items.- A perfect gift for birthday, Christmas, thanksgiving, wedding registry, housewarming, and so on.-\u00a0Allows you to have jewelry, rings, earrings, necklace, trinkets within reach. Offers a stylish way to keep organized and a perfect choice for home decor!Package Including1 x jewelry tray", "pricing": [13.99], "images": ["https://m.media-amazon.com/images/I/31zcr7Got2L.jpg", "https://m.media-amazon.com/images/I/315m8DNgFML.jpg", "https://m.media-amazon.com/images/I/41x7KzGPvgL.jpg", "https://m.media-amazon.com/images/I/415ieZzR0OL.jpg", "https://m.media-amazon.com/images/I/41FjThzTveL.jpg", "https://m.media-amazon.com/images/I/4150xsuqIwL.jpg", "https://m.media-amazon.com/images/I/31FnOyZqeNL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bath \u203a Bathroom Accessories \u203a Holders & Dispensers \u203a Vanity Trays", "average_rating": "", "small_description": ["A perfect gift for birthday, Christmas, thanksgiving, wedding registry, housewarming, and so on. ", "Allows you to have jewelry, rings, earrings, necklace, trinkets within reach. Offers a stylish way to keep organized and a perfect choice for home decor! ", "A perfect gift for the one who appreciates exclusive-looking home decor items. ", "Can also be used as jewelry organizer, perfume trays, vanity trays, dresser tray, decorative tray, bathroom vanity tray, makeup tray organizer, etc. ", "Perfect to storage your daily essentials such as creams, lotions, oils, etc, And make your tabletop look so tidy. "], "model": "NSJCXOG6109R4618TJJ20E5AG", "customization_options": {"Size": null}, "asin": "B08NPQT5TW", "category": "garden", "query": "vanities", "page": 355, "Title": "Cabilock Metal Vanity Tray Rectangle Decorative Tray Jewelry Tray Trinket Ring Dish Black Food Serving Plate for Bathroom Kitchen Counter Dresser 22x9.5x2cm", "Description": "DescriptionThis tray can be a jewelry tray for necklace, bracelet, earrings, ring, etc. Also can be a great storage tool for wallets, glasses, keys. This trays is a great transporting and displaying showcase for your jewelry, suitable\u00a0for personal use at home, also a perfect countertop jewelry display tray in stores or trade shows.Features-Material:\u00a0iron-Color: black- Size: 22x9.5x2cm.-\u00a0Perfect to storage your daily essentials such as creams, lotions, oils, etc, And make your tabletop look so tidy.- Can also be used as jewelry organizer, perfume trays, vanity trays, dresser tray, decorative tray, bathroom vanity tray, makeup tray organizer, etc.-\u00a0A perfect gift for the one who appreciates exclusive-looking home decor items.- A perfect gift for birthday, Christmas, thanksgiving, wedding registry, housewarming, and so on.-\u00a0Allows you to have jewelry, rings, earrings, necklace, trinkets within reach. Offers a stylish way to keep organized and a perfect choice for home decor!Package Including1 x jewelry tray", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["A perfect gift for birthday, Christmas, thanksgiving, wedding registry, housewarming, and so on. ", "Allows you to have jewelry, rings, earrings, necklace, trinkets within reach. Offers a stylish way to keep organized and a perfect choice for home decor! ", "A perfect gift for the one who appreciates exclusive-looking home decor items. ", "Can also be used as jewelry organizer, perfume trays, vanity trays, dresser tray, decorative tray, bathroom vanity tray, makeup tray organizer, etc. ", "Perfect to storage your daily essentials such as creams, lotions, oils, etc, And make your tabletop look so tidy. "], "Price": "$13.99", "options": {}, "option_to_image": {}, "Attributes": ["home decor"], "MainImage": "https://m.media-amazon.com/images/I/31zcr7Got2L.jpg"}} +{"id": "B07N33BPQ6", "contents": "acme furniture sofa, velvet & antique silver traditional style. exclusive design. button tufted. nail head. oversized molding trim. tight back and loose seat cushions. seat construction: pocket coil. armrest: rolled and scrolled-floral front trim. upholstered. made from velvet and poly-resin. no assembly required. seat: 24 in. w x 20 in. h. overall: 100 in. l x 42 in. w x 42 in. h (185 lbs. ). the northville sofa is exclusively designed and filled with romantic spirit. this beautiful velvet upholstered sofa features carved legs, apron, and trim, decorated with raised and scrolled floral motifs in an antique champagne finish. this sophisticated sofa boasts of curved and rolled arms, oversized molding and button tufted backrests with nail head trim. this collection with contrasting accent pillows will bring sophistication to your living room and will add elegance to any room decor. sit back and relax on this sophisticated collection that will instantly bring style to your living area. traditional style ", "product": {"name": "Acme Furniture Sofa, Velvet & Antique Silver", "full_description": "Traditional style. Exclusive design. Button tufted. Nail head. Oversized molding trim. Tight back and loose seat cushions. Seat construction: Pocket coil. Armrest: Rolled and scrolled-floral front trim. Upholstered. Made from velvet and poly-resin. No assembly required. Seat: 24 in. W x 20 in. H. Overall: 100 in. L x 42 in. W x 42 in. H (185 lbs. ). The Northville sofa is exclusively designed and filled with romantic spirit. This beautiful velvet upholstered sofa features carved legs, apron, and trim, decorated with raised and scrolled floral motifs in an antique champagne finish. This sophisticated sofa boasts of curved and rolled arms, oversized molding and button tufted backrests with nail head trim. This collection with contrasting accent pillows will bring sophistication to your living room and will add elegance to any room Decor. Sit back and relax on this sophisticated collection that will instantly bring style to your living area.", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/41ayTN2g6sL.jpg", "https://m.media-amazon.com/images/I/31XoMu33itL.jpg", "https://m.media-amazon.com/images/I/41USzvVCg8L.jpg", "https://m.media-amazon.com/images/I/41eeS7tBcbL.jpg", "https://m.media-amazon.com/images/I/41re3ElXXuL.jpg", "https://m.media-amazon.com/images/I/41scUseGbML.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Sofas & Couches", "average_rating": "", "small_description": ["Traditional style ", "Exclusive design ", "Satisfaction Ensured ", "Package Dimensions : 105\" L x 45\" W x 45\" H "], "model": "\u200e56930", "customization_options": "", "asin": "B07N33BPQ6", "category": "garden", "query": "sofas and couches", "page": 166, "Title": "Acme Furniture Sofa, Velvet & Antique Silver", "Description": "Traditional style. Exclusive design. Button tufted. Nail head. Oversized molding trim. Tight back and loose seat cushions. Seat construction: Pocket coil. Armrest: Rolled and scrolled-floral front trim. Upholstered. Made from velvet and poly-resin. No assembly required. Seat: 24 in. W x 20 in. H. Overall: 100 in. L x 42 in. W x 42 in. H (185 lbs. ). The Northville sofa is exclusively designed and filled with romantic spirit. This beautiful velvet upholstered sofa features carved legs, apron, and trim, decorated with raised and scrolled floral motifs in an antique champagne finish. This sophisticated sofa boasts of curved and rolled arms, oversized molding and button tufted backrests with nail head trim. This collection with contrasting accent pillows will bring sophistication to your living room and will add elegance to any room Decor. Sit back and relax on this sophisticated collection that will instantly bring style to your living area.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Traditional style ", "Exclusive design ", "Satisfaction Ensured ", "Package Dimensions : 105\" L x 45\" W x 45\" H "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41ayTN2g6sL.jpg"}} +{"id": "B07NZ173GY", "contents": "fitflop men's hollis neoprene sport sandal these cut-out kicks deliver a 'hole' lot: the sporty athleisure vibe of sneakers and the breeziness of sandals (while keeping your toes out of sight). then there are cool style details imported size: 11, 12, 12.5, 13, and color: black, light grey", "product": {"name": "FitFlop Men's Hollis Neoprene Sport Sandal", "full_description": "These cut-out kicks deliver a 'hole' lot: the sporty athleisure vibe of sneakers and the breeziness of sandals (while keeping your toes out of sight). Then there are cool style details", "pricing": [26.44, 69.99], "images": ["https://m.media-amazon.com/images/I/31slmiLPkAL.jpg", "https://m.media-amazon.com/images/I/4113YvlsfOL.jpg", "https://m.media-amazon.com/images/I/313UcvWh9zL.jpg", "https://m.media-amazon.com/images/I/31DoNJXURmL.jpg", "https://m.media-amazon.com/images/I/318qcfFVrdL.jpg", "https://m.media-amazon.com/images/I/31iaZgrH0IL.jpg", "https://m.media-amazon.com/images/I/31hmxK7cGQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Sandals", "average_rating": 4.2, "small_description": ["Imported ", "Rubber sole ", "on FitFlop\u2019s superlight, hyper-flexible Anatomiflex midsoles for all-day comfort ", "made of 'bouncy' high-rebound cushioning that feels great to walk on ", "average to wide fit ", "APMA Seal of Acceptance, for footwear found to promote good foot health "], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "11", "asin": "B07NZ173GY"}, {"is_selected": false, "is_available": true, "value": "12", "asin": "B07P13L855"}, {"is_selected": false, "is_available": true, "value": "12.5", "asin": "B07WW6RG3T"}, {"is_selected": false, "is_available": true, "value": "13", "asin": "B07P124Z6X"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31slmiLPkAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08S45C33R/ref=twister_B07WY5ZWJD", "value": "Light Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31eTYpTg4OL.jpg"}]}, "asin": "B07NZ173GY", "category": "fashion", "query": "men's sandals", "page": 23, "Title": "FitFlop Men's Hollis Neoprene Sport Sandal", "Description": "These cut-out kicks deliver a 'hole' lot: the sporty athleisure vibe of sneakers and the breeziness of sandals (while keeping your toes out of sight). Then there are cool style details", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Imported ", "Rubber sole ", "on FitFlop\u2019s superlight, hyper-flexible Anatomiflex midsoles for all-day comfort ", "made of 'bouncy' high-rebound cushioning that feels great to walk on ", "average to wide fit ", "APMA Seal of Acceptance, for footwear found to promote good foot health "], "Price": "$26.44 to $69.99", "options": {"size": ["11", "12", "12.5", "13"], "color": ["black", "light grey"]}, "option_to_image": {"11": null, "12": null, "12.5": null, "13": null, "black": "https://m.media-amazon.com/images/I/31slmiLPkAL.jpg", "light grey": "https://m.media-amazon.com/images/I/31eTYpTg4OL.jpg"}, "Attributes": ["day comfort", "rubber sole"], "MainImage": "https://m.media-amazon.com/images/I/31slmiLPkAL.jpg"}} +{"id": "B07CYXLSF2", "contents": "temptu airbrush makeup system 2.0 premier kit: airbrush makeup set for professionals includes s/b silicone-based foundation starter set & cleaning kit, travel-friendly ", "product": {"name": "TEMPTU Airbrush Makeup System 2.0 Premier Kit: Airbrush Makeup Set for Professionals Includes S/B Silicone-Based Foundation Starter Set & Cleaning Kit, Travel-Friendly", "full_description": "", "pricing": [250.0], "images": ["https://m.media-amazon.com/images/I/41qtWvtRqpL.jpg", "https://m.media-amazon.com/images/I/41+ZcnkDbZL.jpg", "https://m.media-amazon.com/images/I/41paLE-vu+L.jpg", "https://m.media-amazon.com/images/I/511XfqNsrzL.jpg", "https://m.media-amazon.com/images/I/41I+RwicMqL.jpg", "https://m.media-amazon.com/images/I/41Zb7xEfGEL.jpg", "https://m.media-amazon.com/images/I/4117yPDDrkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Makeup Brushes & Tools \u203a Makeup Airbrushes", "average_rating": 4.2, "small_description": [""], "customization_options": "", "asin": "B07CYXLSF2", "category": "beauty", "query": "makeup sets", "page": 62, "Title": "TEMPTU Airbrush Makeup System 2.0 Premier Kit: Airbrush Makeup Set for Professionals Includes S/B Silicone-Based Foundation Starter Set & Cleaning Kit, Travel-Friendly", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": [""], "Price": "$250.0", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41qtWvtRqpL.jpg"}} +{"id": "B01N37FSYX", "contents": "delicious & sons - organic - non-gmo - gluten-free - italian basil pesto genovese sauce with parmigiano reggiano pdo cheese (6.70 oz.) organic italian sauce made with high-quality natural ingredients: organic basil, organic sunflower oil, parmigiano reggiano cheese pdo (cow's milk, salt, rennet), salt, organic potato starch, organic pine nuts, acidity regulator: lactic acid, antioxidant: ascorbic acid. made in italy. 6.70 oz. ", "product": {"name": "Delicious & Sons - Organic - Non-GMO - Gluten-free - Italian Basil Pesto Genovese Sauce with Parmigiano Reggiano PDO Cheese (6.70 oz.)", "full_description": "", "pricing": [14.99], "images": ["https://m.media-amazon.com/images/I/51AJ1BpnuPL.jpg", "https://m.media-amazon.com/images/I/51esKyfoDgL.jpg", "https://m.media-amazon.com/images/I/41O7nMVy31L.jpg", "https://m.media-amazon.com/images/I/31pnIUolgZL.jpg", "https://m.media-amazon.com/images/I/31N9VsJvK9L.jpg", "https://m.media-amazon.com/images/I/41PzeqYR9mL.jpg", "https://m.media-amazon.com/images/I/9103aClmS3L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Sauces, Gravies & Marinades \u203a Sauces \u203a Italian \u203a Pesto", "average_rating": 3.9, "small_description": ["Organic Italian Sauce made with high-quality natural Ingredients: organic basil, organic sunflower oil, Parmigiano Reggiano cheese PDO (cow's milk, salt, rennet), salt, organic potato starch, organic pine nuts, acidity regulator: lactic acid, antioxidant: ascorbic acid. Made in Italy. 6.70 oz. ", "Non-GMO Pesto Sauce Organic. Can be used as: Pasta Sauce (Spaghetti Sauce, Linguine Sauce...), Fish Sauce, Meat Sauce, Salad Dressing, Vegetable Dip, Pesto Spread... ", "We want everyone to enjoy our products: Our Organic Pesto is a Gluten-free Sauce, Non-GMO, Keto Sauce, without added sugars! ", "Our Basil Pesto Sauce is produced in Italy. All of the ingredients used are 100% traceable and had been locally sourced, supporting organic local farmers. Minimal waste is done during harvest. ", "Delicious & Sons is a Certified B Corp. We offer high quality, honest, natural sauces. Our products are easy to use and even easier to love. "], "customization_options": "", "asin": "B01N37FSYX", "category": "grocery", "query": "cheeses", "page": 286, "Title": "Delicious & Sons - Organic - Non-GMO - Gluten-free - Italian Basil Pesto Genovese Sauce with Parmigiano Reggiano PDO Cheese (6.70 oz.)", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Organic Italian Sauce made with high-quality natural Ingredients: organic basil, organic sunflower oil, Parmigiano Reggiano cheese PDO (cow's milk, salt, rennet), salt, organic potato starch, organic pine nuts, acidity regulator: lactic acid, antioxidant: ascorbic acid. Made in Italy. 6.70 oz. ", "Non-GMO Pesto Sauce Organic. Can be used as: Pasta Sauce (Spaghetti Sauce, Linguine Sauce...), Fish Sauce, Meat Sauce, Salad Dressing, Vegetable Dip, Pesto Spread... ", "We want everyone to enjoy our products: Our Organic Pesto is a Gluten-free Sauce, Non-GMO, Keto Sauce, without added sugars! ", "Our Basil Pesto Sauce is produced in Italy. All of the ingredients used are 100% traceable and had been locally sourced, supporting organic local farmers. Minimal waste is done during harvest. ", "Delicious & Sons is a Certified B Corp. We offer high quality, honest, natural sauces. Our products are easy to use and even easier to love. "], "Price": "$14.99", "options": {}, "option_to_image": {}, "Attributes": ["non gmo", "gluten free", "easy use", "natural ingredients"], "MainImage": "https://m.media-amazon.com/images/I/51AJ1BpnuPL.jpg"}} +{"id": "B092LSVMTY", "contents": "yhjic helmet virtual reality headset press for smartphone cardboard casque phone android 3d lense yhjic parameters:name: model: ar-xmaterial: abs+pu leatherbattery capacity: no batterycamera: no cameramain body: visual lens, reflection (plane mirror), face-contact leatherwearing mode: head-mounted typeviewing angle: high definition magnification, 2.8 times, 69\u00b0 panoramic viewing angleadapt to mobile phone configuration: best effect configuration: resolution 1080p and above, processor: 4 cores and abovemyopia: support to wear glassessupport systems: for android, , android, ios, systemcolor: blacklist:1 * 1 * lens cloth1 * manualonly the above package content, other products are not included.note: light shooting and different displays may cause the color of the item in the picture a little different from the real thing. the measurement allowed error is +/- 1-3cm. 1. the product is clearly imaged and does not damage eyes, thus reducing optical energy loss to a greater extent, and the color is more saturated and bright. ", "product": {"name": "YHJIC Helmet Virtual Reality Headset Press for Smartphone Cardboard Casque Phone Android 3D Lense", "full_description": "YHJIC Parameters:Name: Model: AR-XMaterial: ABS+PU leatherBattery Capacity: No BatteryCamera: No cameraMain body: visual lens, reflection (plane mirror), face-contact leatherWearing mode: head-mounted typeViewing angle: high definition magnification, 2.8 times, 69\u00b0 panoramic viewing angleAdapt to mobile phone configuration: best effect configuration: resolution 1080P and above, processor: 4 cores and aboveMyopia: support to wear glassesSupport systems: for Android, , Android, IOS, systemColor: blackList:1 * 1 * lens cloth1 * ManualOnly the above package content, other products are not included.Note: Light shooting and different displays may cause the color of the item in the picture a little different from the real thing. The measurement allowed error is +/- 1-3cm.", "pricing": [22.57], "images": ["https://m.media-amazon.com/images/I/414DxMTw+-L.jpg", "https://m.media-amazon.com/images/I/511CW2dZWiL.jpg", "https://m.media-amazon.com/images/I/51R5r6MyHXL.jpg", "https://m.media-amazon.com/images/I/51kLfOi-QJL.jpg", "https://m.media-amazon.com/images/I/51npVxWd3DL.jpg", "https://m.media-amazon.com/images/I/41SidDCu0eL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Audio & Video Accessories", "average_rating": "", "small_description": ["1. The product is clearly imaged and does not damage eyes, thus reducing optical energy loss to a greater extent, and the color is more saturated and bright. ", "2. Compatible with 4.7-6.0 inch cell phones, with expanded use range ", "3. Portable and foldable will bring you more convenience ", "4. The product is small in size, light in weight and more convenient to use ", "5. With its own amplification effect, it can enable you to enjoy the shocking experience of being personally on the scene. "], "model": "400500", "customization_options": "", "asin": "B092LSVMTY", "category": "electronics", "query": "virtual reality", "page": 131, "Title": "YHJIC Helmet Virtual Reality Headset Press for Smartphone Cardboard Casque Phone Android 3D Lense", "Description": "YHJIC Parameters:Name: Model: AR-XMaterial: ABS+PU leatherBattery Capacity: No BatteryCamera: No cameraMain body: visual lens, reflection (plane mirror), face-contact leatherWearing mode: head-mounted typeViewing angle: high definition magnification, 2.8 times, 69\u00b0 panoramic viewing angleAdapt to mobile phone configuration: best effect configuration: resolution 1080P and above, processor: 4 cores and aboveMyopia: support to wear glassesSupport systems: for Android, , Android, IOS, systemColor: blackList:1 * 1 * lens cloth1 * ManualOnly the above package content, other products are not included.Note: Light shooting and different displays may cause the color of the item in the picture a little different from the real thing. The measurement allowed error is +/- 1-3cm.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["1. The product is clearly imaged and does not damage eyes, thus reducing optical energy loss to a greater extent, and the color is more saturated and bright. ", "2. Compatible with 4.7-6.0 inch cell phones, with expanded use range ", "3. Portable and foldable will bring you more convenience ", "4. The product is small in size, light in weight and more convenient to use ", "5. With its own amplification effect, it can enable you to enjoy the shocking experience of being personally on the scene. "], "Price": "$22.57", "options": {}, "option_to_image": {}, "Attributes": ["reality headset", "virtual reality", "light weight"], "MainImage": "https://m.media-amazon.com/images/I/414DxMTw+-L.jpg"}} +{"id": "B09688C4XM", "contents": "lifestyle furniture sectional recliner sofa set living room reclining couch with drop down table (single piece or combination) (gs2900, 3pcs) ??????welcome to lifestyle furniture?product feature? faux bonded leather wooden frame high density foam popup footrest?dimensions?3seat sofa: 82 x 37 x 40inch, 2seater loveseat: 61.5 x 37 x 40inch, 1seater chair: 38.5 x 37 x 40inch ?package?1 x 3seat sofa1 x 2seat loveseat1 x 1seat chair??easy assemblyunpack all needed assembly components from the underside zipper compartment (located on the underside of the sofa body)??shipping servicelifestyle only offer curbside only shipping trucking service. customer is required to move it into your home. carrier will contact you prior to help you set up a delivery time. \u2611luxury comfort\uff1abringing a simplistic style into the home, soft bonded leather upholstery with high-density padding provides a relaxed way to spend an evening at home. color: gs2900, gs2900b, and size: 3psc, c, large, small", "product": {"name": "Lifestyle Furniture Sectional Recliner Sofa Set Living Room Reclining Couch with Drop Down Table (Single Piece or Combination) (GS2900, 3PCS)", "full_description": "??????Welcome to Lifestyle Furniture?Product Feature? Faux Bonded Leather Wooden Frame High Density Foam PopUp Footrest?Dimensions?3seat Sofa: 82 x 37 x 40Inch, 2seater Loveseat: 61.5 x 37 x 40Inch, 1seater Chair: 38.5 x 37 x 40Inch ?Package?1 x 3Seat Sofa1 x 2Seat Loveseat1 x 1Seat Chair??Easy AssemblyUnpack all needed assembly components from the underside zipper compartment (Located on the underside of the sofa body)??Shipping ServiceLifestyle only offer Curbside Only Shipping trucking service. Customer is REQUIRED to move it into your home. Carrier will contact you prior to help you set up a delivery time.", "pricing": [1847.0], "images": ["https://m.media-amazon.com/images/I/31k1bZtxHfS.jpg", "https://m.media-amazon.com/images/I/31CJTfL8ZOS.jpg", "https://m.media-amazon.com/images/I/31uf8EvwOLS.jpg", "https://m.media-amazon.com/images/I/31+F49yQbMS.jpg", "https://m.media-amazon.com/images/I/41rY2f0ZLeS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Living Room Furniture \u203a Living Room Sets", "average_rating": "", "small_description": ["\u2611LUXURY COMFORT\uff1aBringing a simplistic style into the home, soft bonded leather upholstery with high-density padding provides a relaxed way to spend an evening at home. ", "\u2611EASY TO THROUGH THE DOOR\uff1aCome with 3 boxes. It's easy to get in the 30\" door. All parts are in the zipper compartment under the sofa. Just assembly according to the instructions. ", "\u2611RECLINING MOTION SET\uff1aReclining functions are all manual, very easy to use. You only need to pull the switch on the recliner couch lightly. It also can be easily returned to sit-up position. ", "\u2611SPACE SAVING\uff1aThis recliner sofa set can be placed closer to the wall because they do not require as much space between the back of the recliner and the wall. Required back clearance to recline:7\u201d-7.5\u201d. ", "\ud83d\ude9aCurbside Only Shipping Trucking: \u2460Outdoor delivery. Customer is REQUIRED to move the furniture into your home. \u2461The LTL carrier will contact customers to set up delivery. \u2462You MUST email us a valid/direct phone number when placing an order as invalid phone will cause a delay in your shipment. "], "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Gs2900", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31sn4GMfaGS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09687XG4G/ref=twister_B09688T4PG?_encoding=UTF8&psc=1", "value": "Gs2900b", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41b14WqRapL.jpg"}], "Size": [{"is_selected": true, "url": null, "value": "3PSC", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09687JS71/ref=twister_B09688T4PG?_encoding=UTF8&psc=1", "value": "C", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09686FM9P/ref=twister_B09688T4PG?_encoding=UTF8&psc=1", "value": "Large", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09685KWPV/ref=twister_B09688T4PG?_encoding=UTF8&psc=1", "value": "Small", "price_string": "", "price": 0, "image": null}]}, "asin": "B09688C4XM", "category": "garden", "query": "sofa tables", "page": 199, "Title": "Lifestyle Furniture Sectional Recliner Sofa Set Living Room Reclining Couch with Drop Down Table (Single Piece or Combination) (GS2900, 3PCS)", "Description": "??????Welcome to Lifestyle Furniture?Product Feature? Faux Bonded Leather Wooden Frame High Density Foam PopUp Footrest?Dimensions?3seat Sofa: 82 x 37 x 40Inch, 2seater Loveseat: 61.5 x 37 x 40Inch, 1seater Chair: 38.5 x 37 x 40Inch ?Package?1 x 3Seat Sofa1 x 2Seat Loveseat1 x 1Seat Chair??Easy AssemblyUnpack all needed assembly components from the underside zipper compartment (Located on the underside of the sofa body)??Shipping ServiceLifestyle only offer Curbside Only Shipping trucking service. Customer is REQUIRED to move it into your home. Carrier will contact you prior to help you set up a delivery time.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u2611LUXURY COMFORT\uff1aBringing a simplistic style into the home, soft bonded leather upholstery with high-density padding provides a relaxed way to spend an evening at home. ", "\u2611EASY TO THROUGH THE DOOR\uff1aCome with 3 boxes. It's easy to get in the 30\" door. All parts are in the zipper compartment under the sofa. Just assembly according to the instructions. ", "\u2611RECLINING MOTION SET\uff1aReclining functions are all manual, very easy to use. You only need to pull the switch on the recliner couch lightly. It also can be easily returned to sit-up position. ", "\u2611SPACE SAVING\uff1aThis recliner sofa set can be placed closer to the wall because they do not require as much space between the back of the recliner and the wall. Required back clearance to recline:7\u201d-7.5\u201d. ", "\ud83d\ude9aCurbside Only Shipping Trucking: \u2460Outdoor delivery. Customer is REQUIRED to move the furniture into your home. \u2461The LTL carrier will contact customers to set up delivery. \u2462You MUST email us a valid/direct phone number when placing an order as invalid phone will cause a delay in your shipment. "], "Price": "$1847.0", "options": {"color": ["gs2900", "gs2900b"], "size": ["3psc", "c", "large", "small"]}, "option_to_image": {"gs2900": "https://m.media-amazon.com/images/I/31sn4GMfaGS.jpg", "gs2900b": "https://m.media-amazon.com/images/I/41b14WqRapL.jpg", "3psc": null, "c": null, "large": null, "small": null}, "Attributes": ["high density", "space saving", "living room"], "MainImage": "https://m.media-amazon.com/images/I/31k1bZtxHfS.jpg"}} +{"id": "B08XQWJX8P", "contents": "oriental eau de toilette \u2013 natural eau de toilette for men woody eau de toilette infused with essential oils fragrance for men with oriental woody tones nou oliban eau de toilette for men \u2013 1.7 fl oz nou oliban oriental scent for men \u2013 this fragrance for men has been perfectly blended and infused with essential oils, resulting in an intriguing, mysterious scent that is powerful and appealing to women. in the beautiful catalan language, nou means \u201cnew\u201d \u2013 a new fragrance, sparking new emotions for a new you! ", "product": {"name": "Oriental Eau de Toilette \u2013 Natural Eau de Toilette for Men Woody Eau de Toilette Infused with Essential Oils Fragrance for Men with Oriental Woody Tones NOU Oliban Eau de Toilette for Men \u2013 1.7 Fl Oz", "full_description": "", "pricing": [21.95], "images": ["https://m.media-amazon.com/images/I/51gDhcURgKL.jpg", "https://m.media-amazon.com/images/I/51s8RKl5asL.jpg", "https://m.media-amazon.com/images/I/51QARgyv75L.jpg", "https://m.media-amazon.com/images/I/41ndpUPxnPL.jpg", "https://m.media-amazon.com/images/I/41gEIkhqz3L.jpg", "https://m.media-amazon.com/images/I/51lQc4bzneL.jpg", "https://m.media-amazon.com/images/I/61vejBEoo9L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Fragrance", "average_rating": 4, "small_description": ["NOU OLIBAN ORIENTAL SCENT FOR MEN \u2013 this fragrance for men has been perfectly blended and infused with essential oils, resulting in an intriguing, mysterious scent that is powerful and appealing to women. In the beautiful Catalan language, NOU means \u201cnew\u201d \u2013 a new fragrance, sparking new emotions for a new you! ", "ORIENTAL EAU DE TOILETTE CRAFTED BY FRENCH PERFUMERS \u2013 expertly crafted by French perfumers, this natural fragrance for men is created with pure and natural ingredients and infused with aromatic essential oils. Our Oliban natural Eau de Toilette for men is designed for the elegant, modern man who is determined and exudes confidence ", "OLIBAN WOODY FRAGRANCE NOTES \u2013 this natural Eau de Toilette for men is mysterious and adventurous giving a sense of both power and safety. NOU Oliban Eau de Toilette features elemi and olibanum, toned down by the relaxing scent of chamomile. The heart notes are patchouli and cistus, with raised notes of sandalwood, leather, vanilla and benzoin resulting in a masculine, powerful fragrance for men ", "NATURAL EAU DE TOILETTE FOR MEN WITH ESSENTIAL OILS \u2013 each of the NOU Eau de toilette perfumes in our range includes 10% natural essential oils, which are long-lasting and highly fragrant too. Containing no synthetic pigments and featuring its\u2019 natural colour, this oriental scent is safe to use on all skin types ", "INCLUDED IN YOUR PURCHASE \u2013 you will receive 1 x NOU Oriental 50ml fragrance for men in your purchase. This powerful, masculine fragrance for men is packaged in a modern, minimalistic glass flacon which is both presentable as a gift or as a wonderful treat for yourself to wear every day! "], "customization_options": "", "asin": "B08XQWJX8P", "category": "beauty", "query": "men's fragrance", "page": 41, "Title": "Oriental Eau de Toilette \u2013 Natural Eau de Toilette for Men Woody Eau de Toilette Infused with Essential Oils Fragrance for Men with Oriental Woody Tones NOU Oliban Eau de Toilette for Men \u2013 1.7 Fl Oz", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["NOU OLIBAN ORIENTAL SCENT FOR MEN \u2013 this fragrance for men has been perfectly blended and infused with essential oils, resulting in an intriguing, mysterious scent that is powerful and appealing to women. In the beautiful Catalan language, NOU means \u201cnew\u201d \u2013 a new fragrance, sparking new emotions for a new you! ", "ORIENTAL EAU DE TOILETTE CRAFTED BY FRENCH PERFUMERS \u2013 expertly crafted by French perfumers, this natural fragrance for men is created with pure and natural ingredients and infused with aromatic essential oils. Our Oliban natural Eau de Toilette for men is designed for the elegant, modern man who is determined and exudes confidence ", "OLIBAN WOODY FRAGRANCE NOTES \u2013 this natural Eau de Toilette for men is mysterious and adventurous giving a sense of both power and safety. NOU Oliban Eau de Toilette features elemi and olibanum, toned down by the relaxing scent of chamomile. The heart notes are patchouli and cistus, with raised notes of sandalwood, leather, vanilla and benzoin resulting in a masculine, powerful fragrance for men ", "NATURAL EAU DE TOILETTE FOR MEN WITH ESSENTIAL OILS \u2013 each of the NOU Eau de toilette perfumes in our range includes 10% natural essential oils, which are long-lasting and highly fragrant too. Containing no synthetic pigments and featuring its\u2019 natural colour, this oriental scent is safe to use on all skin types ", "INCLUDED IN YOUR PURCHASE \u2013 you will receive 1 x NOU Oriental 50ml fragrance for men in your purchase. This powerful, masculine fragrance for men is packaged in a modern, minimalistic glass flacon which is both presentable as a gift or as a wonderful treat for yourself to wear every day! "], "Price": "$21.95", "options": {}, "option_to_image": {}, "Attributes": ["eau toilette", "essential oils", "natural ingredients", "long lasting"], "MainImage": "https://m.media-amazon.com/images/I/51gDhcURgKL.jpg"}} +{"id": "B08LF355G2", "contents": "walker edison addison urban industrial metal and wood 5-shelf bookcase, 64 inch, grey wash sick of small shelves, running out of room, or getting startled in the middle of the night when your books fall off the side of your old bookcase? now you don\u2019t have to. feel satisfied with your new 64 inch tall, metal and wood bookshelf. these deep box shelves come with raised edges, and with five tiers total, imagine all the new organizing capabilities. craft a mini library or use the shelf depth to display a layered interior design style. a contemporary design makes this bookcase a breeze to match most home looks. try out a farmhouse look, an industrial atmosphere, or a boho vibe. dimensions: 64\u201d h x 25\u201d l x 13\u201d w ", "product": {"name": "Walker Edison Addison Urban Industrial Metal and Wood 5-Shelf Bookcase, 64 Inch, Grey Wash", "full_description": "Sick of small shelves, running out of room, or getting startled in the middle of the night when your books fall off the side of your old bookcase? Now you don\u2019t have to. Feel satisfied with your new 64 inch tall, metal and wood bookshelf. These deep box shelves come with raised edges, and with five tiers total, imagine all the new organizing capabilities. Craft a mini library or use the shelf depth to display a layered interior design style. A contemporary design makes this bookcase a breeze to match most home looks. Try out a farmhouse look, an industrial atmosphere, or a boho vibe.", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/513chD0bYrL.jpg", "https://m.media-amazon.com/images/I/41SWWNKorUL.jpg", "https://m.media-amazon.com/images/I/41hjZSb6lEL.jpg", "https://m.media-amazon.com/images/I/31onAsa-b4L.jpg", "https://m.media-amazon.com/images/I/41HVD4Y9H6L.jpg", "https://m.media-amazon.com/images/I/51GTdLQhIWL.jpg", "https://m.media-amazon.com/images/I/51aMSbA9RrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": 3.2, "small_description": ["Dimensions: 64\u201d H x 25\u201d L x 13\u201d W ", "Shelf dimensions: 5\u201d H x 23\u201d L x 12.5\u201d W ", "Warp-resistant MDF and long-lasting laminate coating ", "Five fixed shelves ", "Shelves support up to 50 Ibs. each "], "model": "\u200eAZS64MOR5GW", "customization_options": "", "asin": "B08LF355G2", "category": "garden", "query": "book cases", "page": 96, "Title": "Walker Edison Addison Urban Industrial Metal and Wood 5-Shelf Bookcase, 64 Inch, Grey Wash", "Description": "Sick of small shelves, running out of room, or getting startled in the middle of the night when your books fall off the side of your old bookcase? Now you don\u2019t have to. Feel satisfied with your new 64 inch tall, metal and wood bookshelf. These deep box shelves come with raised edges, and with five tiers total, imagine all the new organizing capabilities. Craft a mini library or use the shelf depth to display a layered interior design style. A contemporary design makes this bookcase a breeze to match most home looks. Try out a farmhouse look, an industrial atmosphere, or a boho vibe.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Dimensions: 64\u201d H x 25\u201d L x 13\u201d W ", "Shelf dimensions: 5\u201d H x 23\u201d L x 12.5\u201d W ", "Warp-resistant MDF and long-lasting laminate coating ", "Five fixed shelves ", "Shelves support up to 50 Ibs. each "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": ["shelf bookcase", "long lasting"], "MainImage": "https://m.media-amazon.com/images/I/513chD0bYrL.jpg"}} +{"id": "B09R1T2P6V", "contents": "bling charm pendant bracelet band compatible with apple watch bands 38mm 40mm 42mm 44mm,adjustable stainless steel smartwatch band with bling diamond case for iwatch series se series 7 6 5 4 3 2 1 unique hanging charms :we add beautiful four leaf clover&angel wings&bird&tree of life to our watch bands,there still have more space to add your own lovely charms. color: gold, rose gold, silver, and size: 38mm, 40mm, 42mm, 44mm", "product": {"name": "Bling Charm Pendant Bracelet Band Compatible with Apple Watch Bands 38mm 40mm 42mm 44mm,Adjustable Stainless Steel Smartwatch Band with Bling Diamond Case for iwatch Series SE Series 7 6 5 4 3 2 1", "full_description": "", "pricing": [13.99, 16.99], "images": ["https://m.media-amazon.com/images/I/41POWql2otL.jpg", "https://m.media-amazon.com/images/I/51IB+vAO7xL.jpg", "https://m.media-amazon.com/images/I/61vS5mSDfUL.jpg", "https://m.media-amazon.com/images/I/41Xd7VmO8AL.jpg", "https://m.media-amazon.com/images/I/418vGQhC7RL.jpg", "https://m.media-amazon.com/images/I/41KRevVmeOL.jpg", "https://m.media-amazon.com/images/I/51hPL-WtBpL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Smartwatch Accessories \u203a Smartwatch Bands", "average_rating": "", "small_description": ["Unique Hanging Charms :We add beautiful Four Leaf Clover&Angel wings&Bird&Tree of life to our watch bands,there still have more space to add your own lovely charms. ", "Bling Diamond Watch Case:Come with a transparent Bling Watch Case to match this bling watch band.Please choose the right watch case size you need. ", "Adjustable Chain Length:Easy to adjust the wrist size with push-button.No tools Needed. ", "Compatibility:Compatible with Apple Watch 42mm 44mm 45mm Series 7/6/5/4/3/2/1/SE; Fits 5.5-8.1 inch wrists. ", "18 months Promise : Unconditional refund or replacement for any quality issues. Life-long friendly protection and you will get What you get: 1* Charms apple watch band + 1* Bling protective watch case(no screen protector). "], "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09QSL1ZZ3/ref=twister_B09QRWRPF3", "value": "Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410-v7h6H7L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09QSJQMGL/ref=twister_B09QRWRPF3", "value": "Rose Gold", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41rpZrPHH7L.jpg"}, {"is_selected": true, "url": null, "value": "Silver", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41POWql2otL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "38mm", "asin": "B09R1SXHW4"}, {"is_selected": false, "is_available": true, "value": "40mm", "asin": "B09R1T2P6V"}, {"is_selected": false, "is_available": true, "value": "42mm", "asin": "B09QSH75VN"}, {"is_selected": false, "is_available": true, "value": "44mm", "asin": "B09QSJLSM9"}]}, "asin": "B09R1T2P6V", "category": "electronics", "query": "wearable technology", "page": 79, "Title": "Bling Charm Pendant Bracelet Band Compatible with Apple Watch Bands 38mm 40mm 42mm 44mm,Adjustable Stainless Steel Smartwatch Band with Bling Diamond Case for iwatch Series SE Series 7 6 5 4 3 2 1", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Unique Hanging Charms :We add beautiful Four Leaf Clover&Angel wings&Bird&Tree of life to our watch bands,there still have more space to add your own lovely charms. ", "Bling Diamond Watch Case:Come with a transparent Bling Watch Case to match this bling watch band.Please choose the right watch case size you need. ", "Adjustable Chain Length:Easy to adjust the wrist size with push-button.No tools Needed. ", "Compatibility:Compatible with Apple Watch 42mm 44mm 45mm Series 7/6/5/4/3/2/1/SE; Fits 5.5-8.1 inch wrists. ", "18 months Promise : Unconditional refund or replacement for any quality issues. Life-long friendly protection and you will get What you get: 1* Charms apple watch band + 1* Bling protective watch case(no screen protector). "], "Price": "$13.99 to $16.99", "options": {"color": ["gold", "rose gold", "silver"], "size": ["38mm", "40mm", "42mm", "44mm"]}, "option_to_image": {"gold": "https://m.media-amazon.com/images/I/410-v7h6H7L.jpg", "rose gold": "https://m.media-amazon.com/images/I/41rpZrPHH7L.jpg", "silver": "https://m.media-amazon.com/images/I/41POWql2otL.jpg", "38mm": null, "40mm": null, "42mm": null, "44mm": null}, "Attributes": ["apple watch", "compatible apple", "stainless steel", "screen protector"], "MainImage": "https://m.media-amazon.com/images/I/41POWql2otL.jpg"}} +{"id": "B09M4C31FL", "contents": "rootgrain baked organic whole grain crunch cereal 1.41oz 40g (pack of 10) sprouted germinated brown rice barley whole wheat oats sorghum healthy breakfast (0.53oz/15g x 10) germinated grains (brown rice, barley, whole wheat, oats and sorghum) sugar free cereal only 60 kcal non-frying baked cereals on-the-go packets (10packets) germination? the process by which a plant sprouts. nutrients increase or good ingredients that did not exist before are created. as the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. contains wheat. may contain traces of amount soybean, peanut, walnut, milk, egg, pork and sulfurous acids. root grain, a premium korean cereal brand that specializes in researching and developing healthy grain intake. germination? the process by which a plant sprouts. nutrients increase or good ingredients that did not exist before are created. as the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. size: 0.53oz | 15g x 10, 1.41oz | 40g x 10", "product": {"name": "RootGrain Baked Organic Whole Grain Crunch Cereal 1.41oz 40g (Pack of 10) Sprouted Germinated Brown Rice Barley Whole Wheat Oats Sorghum Healthy Breakfast (0.53oz/15g x 10)", "full_description": "Germinated grains (Brown rice, Barley, Whole Wheat, Oats and Sorghum) Sugar free cereal Only 60 kcal Non-Frying Baked Cereals On-the-go packets (10packets) Germination? The process by which a plant sprouts. Nutrients increase or good ingredients that did not exist before are created. As the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. Contains wheat. May contain traces of amount soybean, peanut, walnut, milk, egg, pork and sulfurous acids. Root Grain, a premium Korean cereal brand that specializes in researching and developing healthy grain intake.", "pricing": [21.99], "images": ["https://m.media-amazon.com/images/I/41YqH14wfmL.jpg", "https://m.media-amazon.com/images/I/51VZqGlv2tL.jpg", "https://m.media-amazon.com/images/I/51SHtmoxXoL.jpg", "https://m.media-amazon.com/images/I/51Ri8mQp1yL.jpg", "https://m.media-amazon.com/images/I/41QpUpp05OL.jpg", "https://m.media-amazon.com/images/I/41WLpM-UmSL.jpg", "https://m.media-amazon.com/images/I/418GpUhsKJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breakfast Foods \u203a Cereals \u203a Cold Cereals", "average_rating": 5, "small_description": ["Germination? The process by which a plant sprouts. Nutrients increase or good ingredients that did not exist before are created. As the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. ", "Only 60 kcal Germinated grains (Brown rice, Barley, Whole Wheat, Oats and Sorghum) ", "Have a bowl of healthy Non-Frying Baked Cereals with sugar free. ", "On-the-go packets (10packets). Packed in individual packet for easy portability ", "Root Grain, a premium Korean cereal brand that specializes in researching and developing healthy grain intake. "], "customization_options": {"Size": [{"is_selected": true, "url": null, "value": "0.53oz/15g x 10", "price_string": "$21.99", "price": 21.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09PZ8WYTW/ref=twister_B09PZ7ZDPY?_encoding=UTF8&psc=1", "value": "1.41oz/40g x 10", "price_string": "$49.99", "price": 49.99, "image": null}]}, "asin": "B09M4C31FL", "category": "grocery", "query": "breakfast foods", "page": 101, "Title": "RootGrain Baked Organic Whole Grain Crunch Cereal 1.41oz 40g (Pack of 10) Sprouted Germinated Brown Rice Barley Whole Wheat Oats Sorghum Healthy Breakfast (0.53oz/15g x 10)", "Description": "Germinated grains (Brown rice, Barley, Whole Wheat, Oats and Sorghum) Sugar free cereal Only 60 kcal Non-Frying Baked Cereals On-the-go packets (10packets) Germination? The process by which a plant sprouts. Nutrients increase or good ingredients that did not exist before are created. As the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. Contains wheat. May contain traces of amount soybean, peanut, walnut, milk, egg, pork and sulfurous acids. Root Grain, a premium Korean cereal brand that specializes in researching and developing healthy grain intake.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Germination? The process by which a plant sprouts. Nutrients increase or good ingredients that did not exist before are created. As the phytic acid, which makes the hard shell of the grain, is removed, the texture becomes softer and it is easily digested. ", "Only 60 kcal Germinated grains (Brown rice, Barley, Whole Wheat, Oats and Sorghum) ", "Have a bowl of healthy Non-Frying Baked Cereals with sugar free. ", "On-the-go packets (10packets). Packed in individual packet for easy portability ", "Root Grain, a premium Korean cereal brand that specializes in researching and developing healthy grain intake. "], "Price": "$21.99", "options": {"size": ["0.53oz | 15g x 10", "1.41oz | 40g x 10"]}, "option_to_image": {"0.53oz | 15g x 10": null, "1.41oz | 40g x 10": null}, "Attributes": ["brown rice", "sugar free"], "MainImage": "https://m.media-amazon.com/images/I/41YqH14wfmL.jpg"}} +{"id": "B09NNMV9LN", "contents": "jspoyou mens short sleeve crewneck 3d graphic tunic shirts big & tall tie dye summer top basic designed classic cotton shirt \u2764\u2764\u3010product information\u3011\u2764\u2764 gender: men material: polyester, fleece,faux leather pattern type: printed style: casual fashion,athletics fit type: standard closure type: elastic what you get: 1 pc man t-shirt tops \u2764\u2764\u3010note\u3011\u2764\u2764 size chart carefully before order. please allow 1-3cm differs due to manual measurement, thanks (1 cm=0.39 inch,1 inch=2.54 cm) due to possible physical differences between different monitors, the product photography is illustrative only and may not precisely reflect the actual color of the item received. \u2764\u2764\u3010service\u3011\u2764\u2764 if you have any problem about our items, please send message to us, we will try to our best service to resolve your issues. \u3010purchase guarantee\u3011 please rest assured to buy afterwards! after receiving the order, if you have any questions, please feel free to send us an email, thank you for choosing our products, the quality is guaranteed. \u3010our shop\u3011standard shipping:7-10 days;expedited shipping:3-5 days. \u3010search term\u3011men suits slim fit men suits slim fit plaid men suits slim fit prom men suits regular fit men suits for wedding men suits for wedding regular fit men suits for wedding white men suits for wedding fushia men suits for wedding on the beach men suits big and tall men suits big and tall long men suits \u3010search term\u3011men's pants casual men's pants casual jeans casual elastic waist men's pants casual relaxed fit men's pants casual stretch relax men's pants casual big and tall men's pants casual cool breathable men's pants casual cargo men's pants casual works pants men's pants jeans men's pants jeans men's pants jeans relaxed fit men's pants jeans big and tall men's pants jeans tee t shirt tee shirts \u3010note\u3011please check the size chart before purchase,if you want the mens shirts to be loose,choose 1-2 size up.if you are not sure about the size,please send us a message. color: a-blue, a-green, b-black, b-gray, c-gray, and size: medium, large, x-large, xx-large, 3x-large", "product": {"name": "JSPOYOU Mens Short Sleeve Crewneck 3D Graphic Tunic Shirts Big & Tall Tie Dye Summer Top Basic Designed Classic Cotton Shirt", "full_description": "\u2764\u2764\u3010Product Information\u3011\u2764\u2764 Gender: Men Material: Polyester, Fleece,Faux Leather Pattern Type: Printed Style: Casual Fashion,Athletics Fit Type: Standard Closure Type: Elastic What you get: 1 PC Man T-shirt tops \u2764\u2764\u3010Note\u3011\u2764\u2764 Size chart carefully before order. Please allow 1-3cm differs due to manual measurement, thanks (1 cm=0.39 inch,1 inch=2.54 cm) Due to possible physical differences between different monitors, the product photography is illustrative only and may not precisely reflect the actual color of the item received. \u2764\u2764\u3010Service\u3011\u2764\u2764 If you have any problem about our items, please send message to us, we will try to our best service to resolve your issues. \u3010Purchase Guarantee\u3011 please rest assured to buy afterwards! after receiving the order, if you have any questions, please feel free to send us an email, thank you for choosing our products, the quality is guaranteed. \u3010Our Shop\u3011standard shipping:7-10 days;expedited shipping:3-5 days. \u3010Search Term\u3011men suits slim fit men suits slim fit plaid men suits slim fit prom men suits regular fit men suits for wedding men suits for wedding regular fit men suits for wedding white men suits for wedding fushia men suits for wedding on the beach men suits big and tall men suits big and tall long men suits \u3010Search Term\u3011men's pants casual men's pants casual jeans casual elastic waist men's pants casual relaxed fit men's pants casual stretch relax men's pants casual big and tall men's pants casual cool breathable men's pants casual cargo men's pants casual works pants men's pants jeans men's pants jeans men's pants jeans relaxed fit men's pants jeans big and tall men's pants jeans tee t shirt tee shirts", "pricing": [3.99, 10.99], "images": ["https://m.media-amazon.com/images/I/41p9dAvjOoL.jpg", "https://m.media-amazon.com/images/I/518m8crf7QL.jpg", "https://m.media-amazon.com/images/I/41JKcrvfc-L.jpg", "https://m.media-amazon.com/images/I/41PL646alTL.jpg", "https://m.media-amazon.com/images/I/51mKtxtbLmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a Henleys", "average_rating": "", "small_description": ["\u3010Note\u3011Please check the size chart before purchase,If you want the mens shirts to be loose,choose 1-2 size up.If you are not sure about the size,please send us a message. ", "\u3010Material\u3011Stretch 60% cotton 40%.made of superior quality modal fiber,ultra light-weight,soft & smooth,feels really comfortable.soft and comfy,skin-friendly and lightweight. ", "\u3010Design\u3011short/long sleeve button down tshirts,big and tall tees,graphic print tops,hoodies zip up shirt top,fashion casual blouses,athletic running sweatshirt,workout pullover,cotton linen shirt,henley shirts, shirts,hawaiian shirts,tank tops,beach shirts,sweatshirts sweater,knit cardigans. ", "\u3010Feature\u30112021 Stylish and modern unique design.long sleeves button down design,not only convenient for relaxation,but also stylish. flowers print or striped plaid graphic prints,unique hawaiian style brings you different vibe. closure ", "\u3010Occasions\u3011The men's 2021 Long sleeve tee shirts,great for beach, work,Halloween,Christmas,loungewear,homewear,casual look,daily, dating,school,graduation day,party,holiday,gym workout,running, training,jogging.A great gifts for boy friend,friends,and families. ", "\u3010Search Term\u3011womens with built in bra plus size tops halter cold shoulder tops boho going out cropped sexy long sleeve 3/4 sleeve loose fit camisole off the shoulder tops womens racerback fashion shirts v neck hawaiian shirts button up shirts womens tee shirts western shirts blouses womens 3/4 sleeve work womens shirts and blouses womens tops and blouses womens summer autumn 2021 ", "\u3010Search Term\u3011women 2021 fashion long sleeve stand collar 1/4 zipper hoodies floral patchwork drawstring sweatshirts with kangaroo pockets women casual quilted lightweight pullover ladies button down lapel striped colorblock tie dye printed graphic pattern plain womens oversized sherpa fuzzy fleece sweatshirt women turtleneck contrast color cozy jacket coat womens casual loose fit batwing sleeve asymmetric hem sweater knit tops women's round neck 3/4 sleeve lace blouse tops , \u3010Search Term\u3011womens long sleeve hoodies sweatshirt jumper pullover cat heart printed cat ear hooded tunic blouses hoodies casual short sleeve graphic tee shirts tops crop girl cute novelty autumn winter teen girls sweater coats womens outwear junior sports women's sweatshirts zip up autumn lightweight with pocket plus size casual cartoon print short sleeve drawstring hoodies sweatshirt with pocket i do what i want letter print women's 3/4 sleeve cat and cup ear hoodies irregular tunic tops, \u3010Search Term\u3011womens oversized tie dye casual tops sweatshirts women cute raglan letter print solid shirts tops women long sleeve v neck button up blouses womens trendy slim fit lace sleeves tunic blouse women ribbed knit casual shirts women fashion cutout loose fit tops basic dress with side pockets women hoodies drawstring lightweight loose tops womens soft side split floral leopard printed chiffon blouses tops t shirts womens plus size fall henley shirts women french terry fleece, \u3010Search Term\u3011womens zip up hoodie pullover oversized sleeveless long short sleeve loose casual fit warm light weight lightweight crop long cropped tie dye camo fleece zipper workout vintage sweatshirts women full zip up white cotton jacket tops rain jackets for women waterproof evening formal plus size fleece vest cool wind braker fitted suit jackets coats indian designer flower print puff petite linen cardigan jackets women black yellow red grey sweater pullover"], "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B09NNLDF5D/ref=twister_B09NNMFWKZ", "value": "A-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41JTNIPuNHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NNM7HPF/ref=twister_B09NNMFWKZ", "value": "A-green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-0-bruaVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NNM4FCH/ref=twister_B09NNMFWKZ", "value": "B-black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/411IUX0+xFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09NNNRDKV/ref=twister_B09NNMFWKZ", "value": "B-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41BiCmOTANL.jpg"}, {"is_selected": true, "url": null, "value": "C-gray", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41p9dAvjOoL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09NNMV9LN"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09NNMS6FW"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09NNLW4FC"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09NNMTJRB"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09NNN8M87"}]}, "asin": "B09NNMV9LN", "category": "fashion", "query": "men's henleys", "page": 202, "Title": "JSPOYOU Mens Short Sleeve Crewneck 3D Graphic Tunic Shirts Big & Tall Tie Dye Summer Top Basic Designed Classic Cotton Shirt", "Description": "\u2764\u2764\u3010Product Information\u3011\u2764\u2764 Gender: Men Material: Polyester, Fleece,Faux Leather Pattern Type: Printed Style: Casual Fashion,Athletics Fit Type: Standard Closure Type: Elastic What you get: 1 PC Man T-shirt tops \u2764\u2764\u3010Note\u3011\u2764\u2764 Size chart carefully before order. Please allow 1-3cm differs due to manual measurement, thanks (1 cm=0.39 inch,1 inch=2.54 cm) Due to possible physical differences between different monitors, the product photography is illustrative only and may not precisely reflect the actual color of the item received. \u2764\u2764\u3010Service\u3011\u2764\u2764 If you have any problem about our items, please send message to us, we will try to our best service to resolve your issues. \u3010Purchase Guarantee\u3011 please rest assured to buy afterwards! after receiving the order, if you have any questions, please feel free to send us an email, thank you for choosing our products, the quality is guaranteed. \u3010Our Shop\u3011standard shipping:7-10 days;expedited shipping:3-5 days. \u3010Search Term\u3011men suits slim fit men suits slim fit plaid men suits slim fit prom men suits regular fit men suits for wedding men suits for wedding regular fit men suits for wedding white men suits for wedding fushia men suits for wedding on the beach men suits big and tall men suits big and tall long men suits \u3010Search Term\u3011men's pants casual men's pants casual jeans casual elastic waist men's pants casual relaxed fit men's pants casual stretch relax men's pants casual big and tall men's pants casual cool breathable men's pants casual cargo men's pants casual works pants men's pants jeans men's pants jeans men's pants jeans relaxed fit men's pants jeans big and tall men's pants jeans tee t shirt tee shirts", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u3010Note\u3011Please check the size chart before purchase,If you want the mens shirts to be loose,choose 1-2 size up.If you are not sure about the size,please send us a message. ", "\u3010Material\u3011Stretch 60% cotton 40%.made of superior quality modal fiber,ultra light-weight,soft & smooth,feels really comfortable.soft and comfy,skin-friendly and lightweight. ", "\u3010Design\u3011short/long sleeve button down tshirts,big and tall tees,graphic print tops,hoodies zip up shirt top,fashion casual blouses,athletic running sweatshirt,workout pullover,cotton linen shirt,henley shirts, shirts,hawaiian shirts,tank tops,beach shirts,sweatshirts sweater,knit cardigans. ", "\u3010Feature\u30112021 Stylish and modern unique design.long sleeves button down design,not only convenient for relaxation,but also stylish. flowers print or striped plaid graphic prints,unique hawaiian style brings you different vibe. closure ", "\u3010Occasions\u3011The men's 2021 Long sleeve tee shirts,great for beach, work,Halloween,Christmas,loungewear,homewear,casual look,daily, dating,school,graduation day,party,holiday,gym workout,running, training,jogging.A great gifts for boy friend,friends,and families. ", "\u3010Search Term\u3011womens with built in bra plus size tops halter cold shoulder tops boho going out cropped sexy long sleeve 3/4 sleeve loose fit camisole off the shoulder tops womens racerback fashion shirts v neck hawaiian shirts button up shirts womens tee shirts western shirts blouses womens 3/4 sleeve work womens shirts and blouses womens tops and blouses womens summer autumn 2021 ", "\u3010Search Term\u3011women 2021 fashion long sleeve stand collar 1/4 zipper hoodies floral patchwork drawstring sweatshirts with kangaroo pockets women casual quilted lightweight pullover ladies button down lapel striped colorblock tie dye printed graphic pattern plain womens oversized sherpa fuzzy fleece sweatshirt women turtleneck contrast color cozy jacket coat womens casual loose fit batwing sleeve asymmetric hem sweater knit tops women's round neck 3/4 sleeve lace blouse tops , \u3010Search Term\u3011womens long sleeve hoodies sweatshirt jumper pullover cat heart printed cat ear hooded tunic blouses hoodies casual short sleeve graphic tee shirts tops crop girl cute novelty autumn winter teen girls sweater coats womens outwear junior sports women's sweatshirts zip up autumn lightweight with pocket plus size casual cartoon print short sleeve drawstring hoodies sweatshirt with pocket i do what i want letter print women's 3/4 sleeve cat and cup ear hoodies irregular tunic tops, \u3010Search Term\u3011womens oversized tie dye casual tops sweatshirts women cute raglan letter print solid shirts tops women long sleeve v neck button up blouses womens trendy slim fit lace sleeves tunic blouse women ribbed knit casual shirts women fashion cutout loose fit tops basic dress with side pockets women hoodies drawstring lightweight loose tops womens soft side split floral leopard printed chiffon blouses tops t shirts womens plus size fall henley shirts women french terry fleece, \u3010Search Term\u3011womens zip up hoodie pullover oversized sleeveless long short sleeve loose casual fit warm light weight lightweight crop long cropped tie dye camo fleece zipper workout vintage sweatshirts women full zip up white cotton jacket tops rain jackets for women waterproof evening formal plus size fleece vest cool wind braker fitted suit jackets coats indian designer flower print puff petite linen cardigan jackets women black yellow red grey sweater pullover"], "Price": "$3.99 to $10.99", "options": {"color": ["a-blue", "a-green", "b-black", "b-gray", "c-gray"], "size": ["medium", "large", "x-large", "xx-large", "3x-large"]}, "option_to_image": {"a-blue": "https://m.media-amazon.com/images/I/41JTNIPuNHL.jpg", "a-green": "https://m.media-amazon.com/images/I/41-0-bruaVL.jpg", "b-black": "https://m.media-amazon.com/images/I/411IUX0+xFL.jpg", "b-gray": "https://m.media-amazon.com/images/I/41BiCmOTANL.jpg", "c-gray": "https://m.media-amazon.com/images/I/41p9dAvjOoL.jpg", "medium": null, "large": null, "x-large": null, "xx-large": null, "3x-large": null}, "Attributes": ["long sleeve", "short sleeve", "loose fit", "light weight", "sweatshirts women", "shirts women", "tops women", "contrast color", "unique design", "gym workout", "zip hoodie", "mens shirts", "teen girls", "tunic tops", "tank tops", "slim fit"], "MainImage": "https://m.media-amazon.com/images/I/41p9dAvjOoL.jpg"}} +{"id": "B08GS6B87J", "contents": "crimson trace brushline pro riflescope with lightweight solid construction, scope caps and lens cloth for hunting, shooting and outdoor specs: 2.5-10 magnification with a 42mm lens diameter, aerospace grade 1\" tube and weighs 16.6 oz - fov range: 40.3 ft min - 10.1 ft max style: 2-7x32mm bdc pro, 2-7x32mm bdc rimfire, 2.5-10x42mm bdc pro, 2.5-10x42mm plex, 2.5-8x28mm pistol bdc pro, 3-12x42mm bdc pro (1\" tube), 3-12x42mm bdc pro (30mm tube), 3-12x42mm plex, 3-9x40mm bdc .350 legend, 3-9x40mm bdc muzzleloader, 3-9x40mm bdc predator, 3-9x40mm bdc pro, 3-9x40mm bdc slugger, 3-9x40mm plex, 3-9x50mm bdc pro, 4-12x40mm bdc predator, 4-12x40mm bdc pro, 4-12x40mm plex, 4-16x42mm bdc pro, 4-16x50mm bdc pro (1\" tube), 4-16x50mm bdc pro (30mm tube), 6-24x50mm bdc pro", "product": {"name": "Crimson Trace Brushline Pro Riflescope with Lightweight Solid Construction, Scope Caps and Lens Cloth for Hunting, Shooting and Outdoor", "full_description": "", "pricing": [218.79], "images": ["https://m.media-amazon.com/images/I/31j7DdlfrOL.jpg", "https://m.media-amazon.com/images/I/31kluOH8MKL.jpg", "https://m.media-amazon.com/images/I/31wIIvbKKXL.jpg", "https://m.media-amazon.com/images/I/31IpXVotaHL.jpg", "https://m.media-amazon.com/images/I/216otY5T8cL.jpg", "https://m.media-amazon.com/images/I/31OVJk-FnJS.jpg", "https://m.media-amazon.com/images/I/41uJbDL2H4S.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Sports & Outdoors \u203a Hunting & Fishing \u203a Shooting \u203a Optics \u203a Gun Scopes \u203a Rifle Scopes", "average_rating": 4.3, "small_description": ["SPECS: 2.5-10 magnification with a 42mm lens diameter, aerospace grade 1\" tube and weighs 16.6 oz - FOV Range: 40.3 ft Min - 10.1 ft Max ", "ACCURACY: Features a second focal plane, non-illuminated, CT Plex reticle with a 4\" eye relief, 1/4\" click value and quick spring-loaded zero reset capped turrets ", "EASE OF USE: Windage (right side), elevation (top) knobs are capped and can be easily unscrewed and adjusted when sighting in at the range by turning with your fingers (no tool required) ", "DURABLE: Constructed of lightweight anodized aluminum with multi-coated lenses and is waterproof, shockproof and nitrogen purged to prevent fogging ", "INCLUDES: Lens cloth and scope caps "], "customization_options": {"Style": [{"is_selected": false, "is_available": true, "value": "2-7x32mm BDC Pro", "asin": "B08GQH4VDR"}, {"is_selected": false, "is_available": true, "value": "2-7x32mm BDC Rimfire", "asin": "B08GS1K2MM"}, {"is_selected": false, "is_available": true, "value": "2.5-10x42mm BDC Pro", "asin": "B08GRNWMPZ"}, {"is_selected": true, "is_available": false, "value": "2.5-10x42mm Plex", "asin": "B08GS6B87J"}, {"is_selected": false, "is_available": true, "value": "2.5-8x28mm Pistol BDC Pro", "asin": "B08GQHGYKM"}, {"is_selected": false, "is_available": true, "value": "3-12x42mm BDC Pro (1\" tube)", "asin": "B08GQGPKGP"}, {"is_selected": false, "is_available": true, "value": "3-12x42mm BDC Pro (30mm tube)", "asin": "B08GQGNK8C"}, {"is_selected": false, "is_available": true, "value": "3-12x42mm Plex", "asin": "B08GS1FBJD"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC .350 Legend", "asin": "B08GQGHVD6"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC Muzzleloader", "asin": "B08GQGYQ9N"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC Predator", "asin": "B08GQH5F6M"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC Pro", "asin": "B08GRYJSKD"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm BDC Slugger", "asin": "B08GRLRF51"}, {"is_selected": false, "is_available": true, "value": "3-9x40mm Plex", "asin": "B08GS5NRDY"}, {"is_selected": false, "is_available": true, "value": "3-9x50mm BDC Pro", "asin": "B08GQH2CNX"}, {"is_selected": false, "is_available": true, "value": "4-12x40mm BDC Predator", "asin": "B08GRP8FGM"}, {"is_selected": false, "is_available": true, "value": "4-12x40mm BDC Pro", "asin": "B08GQJD4TY"}, {"is_selected": false, "is_available": true, "value": "4-12x40mm Plex", "asin": "B08GQJL78C"}, {"is_selected": false, "is_available": true, "value": "4-16x42mm BDC Pro", "asin": "B08GQK4KCZ"}, {"is_selected": false, "is_available": true, "value": "4-16x50mm BDC Pro (1\" tube)", "asin": "B08GRZG7R5"}, {"is_selected": false, "is_available": true, "value": "4-16x50mm BDC Pro (30mm tube)", "asin": "B08GRP1XQG"}, {"is_selected": false, "is_available": true, "value": "6-24x50mm BDC Pro", "asin": "B08GS1TJST"}]}, "asin": "B08GS6B87J", "category": "electronics", "query": "lenses", "page": 327, "Title": "Crimson Trace Brushline Pro Riflescope with Lightweight Solid Construction, Scope Caps and Lens Cloth for Hunting, Shooting and Outdoor", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["SPECS: 2.5-10 magnification with a 42mm lens diameter, aerospace grade 1\" tube and weighs 16.6 oz - FOV Range: 40.3 ft Min - 10.1 ft Max ", "ACCURACY: Features a second focal plane, non-illuminated, CT Plex reticle with a 4\" eye relief, 1/4\" click value and quick spring-loaded zero reset capped turrets ", "EASE OF USE: Windage (right side), elevation (top) knobs are capped and can be easily unscrewed and adjusted when sighting in at the range by turning with your fingers (no tool required) ", "DURABLE: Constructed of lightweight anodized aluminum with multi-coated lenses and is waterproof, shockproof and nitrogen purged to prevent fogging ", "INCLUDES: Lens cloth and scope caps "], "Price": "$218.79", "options": {"style": ["2-7x32mm bdc pro", "2-7x32mm bdc rimfire", "2.5-10x42mm bdc pro", "2.5-10x42mm plex", "2.5-8x28mm pistol bdc pro", "3-12x42mm bdc pro (1\" tube)", "3-12x42mm bdc pro (30mm tube)", "3-12x42mm plex", "3-9x40mm bdc .350 legend", "3-9x40mm bdc muzzleloader", "3-9x40mm bdc predator", "3-9x40mm bdc pro", "3-9x40mm bdc slugger", "3-9x40mm plex", "3-9x50mm bdc pro", "4-12x40mm bdc predator", "4-12x40mm bdc pro", "4-12x40mm plex", "4-16x42mm bdc pro", "4-16x50mm bdc pro (1\" tube)", "4-16x50mm bdc pro (30mm tube)", "6-24x50mm bdc pro"]}, "option_to_image": {"2-7x32mm bdc pro": null, "2-7x32mm bdc rimfire": null, "2.5-10x42mm bdc pro": null, "2.5-10x42mm plex": null, "2.5-8x28mm pistol bdc pro": null, "3-12x42mm bdc pro (1\" tube)": null, "3-12x42mm bdc pro (30mm tube)": null, "3-12x42mm plex": null, "3-9x40mm bdc .350 legend": null, "3-9x40mm bdc muzzleloader": null, "3-9x40mm bdc predator": null, "3-9x40mm bdc pro": null, "3-9x40mm bdc slugger": null, "3-9x40mm plex": null, "3-9x50mm bdc pro": null, "4-12x40mm bdc predator": null, "4-12x40mm bdc pro": null, "4-12x40mm plex": null, "4-16x42mm bdc pro": null, "4-16x50mm bdc pro (1\" tube)": null, "4-16x50mm bdc pro (30mm tube)": null, "6-24x50mm bdc pro": null}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/31j7DdlfrOL.jpg"}} +{"id": "B004L4D6FW", "contents": "nature's guru instant tender coconut water powder original 10 count single serve on-the-go drink packets (pack of 4) excellent for replacing lost electrolytes due to exercise, fatigue, heat exhaustion, hangover, or illness. instant hydration on the go. allows coconut water to be with you on the go - perfect for running, biking, hiking, or traveling. affordable - cheaper per fluid ounce than any ready-to-drink natural coconut water. instant coconut water: our powdered coconut water lets you take the hydrating, electrolyte-rich benefits of coconut water anywhere. perfect for a pre-workout boost or post-workout recovery beverage. flavor: chocolate, mango, original, and size: 1 count, 8 count, 4 count", "product": {"name": "Nature's Guru Instant Tender Coconut Water Powder Original 10 Count Single Serve On-the-Go Drink Packets (Pack of 4)", "full_description": "Excellent for replacing lost electrolytes due to exercise, fatigue, heat exhaustion, hangover, or illness. Instant Hydration on the Go. Allows Coconut Water to be with you on the go - perfect for running, biking, hiking, or traveling. Affordable - Cheaper per fluid ounce than any Ready-to-Drink natural coconut water.", "pricing": [19.53], "images": ["https://m.media-amazon.com/images/I/51+7HSxB-LL.jpg", "https://m.media-amazon.com/images/I/51qLTDSVU7L.jpg", "https://m.media-amazon.com/images/I/41ieGqgS8EL.jpg", "https://m.media-amazon.com/images/I/41G19HAe52L.jpg", "https://m.media-amazon.com/images/I/51Zogz3rnUL.jpg", "https://m.media-amazon.com/images/I/41cU5k8MYML.jpg", "https://m.media-amazon.com/images/I/31DCUHR5-lL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Water \u203a Flavored Water", "average_rating": 3.7, "small_description": ["INSTANT COCONUT WATER: Our powdered coconut water lets you take the hydrating, electrolyte-rich benefits of coconut water anywhere. Perfect for a pre-workout boost or post-workout recovery beverage. ", "INSTANT HYDRATION: Whether you an electrolyte sports drink or just a delicious beverage, our Instant Coconut Water Powder in Mango, Chocolate, or Original flavor will quench your thirst, naturally. ", "INSTANT GRATIFICATION: With Nature's Guru Instant Chai Mix, organic whole leaf teas, Madras Coffee, & Tender Coconut Water powders, you're just moments away from a tasty, natural beverage, anytime. ", "TASTY & CONVENIENT: Our hot drink & latte mixes, Chai, tea bags, & coconut water powders can be mixed anywhere, anytime by adding hot or cold water. Individual packages are easy to enjoy on the go! ", "NATURE'S GURU: We are passionate about creating health & wellness foods & drinks with on-the-go, stash-in-your bag convenience. Try our instant chai, whole leaf tea, coconut water powder, & more! "], "customization_options": {"Flavor": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00TTYMXLM/ref=twister_B07KBQ9LQ9", "value": "Chocolate", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B006CSD5C4/ref=twister_B07KBQ9LQ9", "value": "Mango", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Original", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00FRYPZUO/ref=twister_B07KBQ9LQ9?_encoding=UTF8&psc=1", "value": "1 Count", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07HFK4RHX/ref=twister_B07KBQ9LQ9?_encoding=UTF8&psc=1", "value": "8 Count", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "4 Count", "price_string": "", "price": 0, "image": null}]}, "asin": "B004L4D6FW", "category": "grocery", "query": "alcoholic beverages", "page": 68, "Title": "Nature's Guru Instant Tender Coconut Water Powder Original 10 Count Single Serve On-the-Go Drink Packets (Pack of 4)", "Description": "Excellent for replacing lost electrolytes due to exercise, fatigue, heat exhaustion, hangover, or illness. Instant Hydration on the Go. Allows Coconut Water to be with you on the go - perfect for running, biking, hiking, or traveling. Affordable - Cheaper per fluid ounce than any Ready-to-Drink natural coconut water.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["INSTANT COCONUT WATER: Our powdered coconut water lets you take the hydrating, electrolyte-rich benefits of coconut water anywhere. Perfect for a pre-workout boost or post-workout recovery beverage. ", "INSTANT HYDRATION: Whether you an electrolyte sports drink or just a delicious beverage, our Instant Coconut Water Powder in Mango, Chocolate, or Original flavor will quench your thirst, naturally. ", "INSTANT GRATIFICATION: With Nature's Guru Instant Chai Mix, organic whole leaf teas, Madras Coffee, & Tender Coconut Water powders, you're just moments away from a tasty, natural beverage, anytime. ", "TASTY & CONVENIENT: Our hot drink & latte mixes, Chai, tea bags, & coconut water powders can be mixed anywhere, anytime by adding hot or cold water. Individual packages are easy to enjoy on the go! ", "NATURE'S GURU: We are passionate about creating health & wellness foods & drinks with on-the-go, stash-in-your bag convenience. Try our instant chai, whole leaf tea, coconut water powder, & more! "], "Price": "$19.53", "options": {"flavor": ["chocolate", "mango", "original"], "size": ["1 count", "8 count", "4 count"]}, "option_to_image": {"chocolate": null, "mango": null, "original": null, "1 count": null, "8 count": null, "4 count": null}, "Attributes": ["tea bags"], "MainImage": "https://m.media-amazon.com/images/I/51+7HSxB-LL.jpg"}} +{"id": "B09SWLPPVQ", "contents": "2022 wifi extender - wireless signal repeater booster up to 4500 sq.ft - 1200mbps wall-through strong wifi booster-dual band 2.4g and 5g - 4 antennas 360\u00b0 full c6541-11 easy set up1. plug in the extender near your current wireless network2. on your cell, turn off mobile data3. 2 green lites will blink in extender 2.4g and 5g4. enter your current wifi password5. turn on cell phone mobile data6. click on 2.4g and enter current wifi pw. click in 5g and do same7. remove extender and plug into deadzone room. ck that 3 green lites are blinking. you need to receive signal from main wifi8. ck phone that you can now switch to 3 different wifi accounts. it will have an extension ending with pro plus original9. you have completed setup. [1200mbps high-speed stable signal] : wifi extender wireless signal booster with lastest dual band technology can provide up to 300mbps for 2.4ghz, up to 867mbps for 5ghz, a total rate of about 1200mbps, maximizing reduces the loss of data transmission and enjoying hd video/game and fast speeds internet mode. [full signal coverage] : this wifi repeater equipped with 4 high gain external antenna, covering up to 360 degrees, up to 4000 square feet, higher penetration, no loss signal when passing through the wall , enhance the wifi network and eliminate dead zones, up to bedroom, floors, restroom, garage, basement and garden, allow you enjoy wifi throughout whole home. [repeater / ap mode / 2 ethernet ports] : repeater mode is for extending wifi coverage of an existing wireless network. ap mode is for covering a wired network to a wireless network. the two ethernet ports and 4 external antennas to achieve the best performance, being able to connect to any wired ethernet device such as smart tv, desktop and so on while boosting your existing wifi coverage. [universal compatibility & easy set up] : this wifi extender can be used with any 802.11b/g/n/a/ac wireless internet router, what means it works with any standard router or gateway. it can easily extend the wireless coverage by pressing the wps button. or set up via browser website(192.168.188.1) on almost any devices, including windows/android/ios mobile platforms. [safe network access] : this wifi extender can maximize the network security, ensure your network safety, prevent others stealing your net, protect your important data and avoid the interference and privacy problems of wi-fi. our team offers 180 days return or replacement quality warranty & lifetime technical supports. please contact us freely if you need any further assistance. ", "product": {"name": "2022 WiFi Extender - Wireless Signal Repeater Booster up to 4500 sq.ft - 1200Mbps Wall-Through Strong WiFi Booster-Dual Band 2.4G and 5G - 4 Antennas 360\u00b0 Full C6541-11", "full_description": "Easy set up1. Plug in the extender NEAR your current wireless network2. On your cell, turn off mobile data3. 2 green lites will blink in extender 2.4G and 5G4. Enter your CURRENT WiFi password5. Turn on cell phone mobile data6. Click on 2.4G and enter CURRENT WiFi PW. Click in 5G and do same7. Remove extender and plug into deadzone room. Ck that 3 green lites are blinking. You need to receive signal from main WiFi8. Ck phone that you can now switch to 3 different WiFi accounts. It will have an extension ending with PRO plus original9. You have completed setup.", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/417C92Ma1gL.jpg", "https://m.media-amazon.com/images/I/51y46lhWygL.jpg", "https://m.media-amazon.com/images/I/41h0ZHlNuxL.jpg", "https://m.media-amazon.com/images/I/41rCbTPKLqL.jpg", "https://m.media-amazon.com/images/I/41qudUTRYEL.jpg", "https://m.media-amazon.com/images/I/51SOrM5JcUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Networking Products \u203a Repeaters", "average_rating": "", "small_description": "[1200Mbps HIGH-SPEED STABLE SIGNAL] : Wifi Extender wireless signal booster with lastest dual band technology can provide up to 300Mbps for 2.4GHz, up to 867Mbps for 5Ghz, a total rate of about 1200Mbps, maximizing reduces the loss of data transmission and enjoying HD video/game and fast speeds internet mode. [Full Signal Coverage] : This WiFi repeater equipped with 4 high gain external antenna, covering up to 360 degrees, up to 4000 square feet, higher penetration, no loss signal when passing through the wall , enhance the WiFi network and eliminate dead zones, up to bedroom, floors, restroom, garage, basement and garden, allow you enjoy wifi throughout whole home. [Repeater / AP Mode / 2 Ethernet Ports] : Repeater Mode is for extending WiFi coverage of an existing wireless network. AP Mode is for covering a wired network to a wireless network. The two Ethernet ports and 4 External Antennas to achieve the best performance, being able to connect to any wired Ethernet device such as smart TV, desktop and so on while boosting your existing WiFi coverage. [Universal Compatibility & Easy set up] : This WiFi extender can be used with any 802.11b/g/n/a/ac wireless Internet router, what means it works with any standard router or gateway. It can easily extend the wireless coverage by pressing the WPS button. Or set up via browser website(192.168.188.1) on almost any devices, including Windows/Android/iOS mobile platforms. [Safe Network Access] : This wifi extender can maximize the network security, ensure your network safety, prevent others stealing your net, protect your important data and avoid the interference and privacy problems of Wi-Fi. Our team offers 180 days return or replacement quality warranty & lifetime technical supports. Please contact us freely if you need any further assistance.", "customization_options": "", "asin": "B09SWLPPVQ", "category": "electronics", "query": "signal boosters", "page": 122, "Title": "2022 WiFi Extender - Wireless Signal Repeater Booster up to 4500 sq.ft - 1200Mbps Wall-Through Strong WiFi Booster-Dual Band 2.4G and 5G - 4 Antennas 360\u00b0 Full C6541-11", "Description": "Easy set up1. Plug in the extender NEAR your current wireless network2. On your cell, turn off mobile data3. 2 green lites will blink in extender 2.4G and 5G4. Enter your CURRENT WiFi password5. Turn on cell phone mobile data6. Click on 2.4G and enter CURRENT WiFi PW. Click in 5G and do same7. Remove extender and plug into deadzone room. Ck that 3 green lites are blinking. You need to receive signal from main WiFi8. Ck phone that you can now switch to 3 different WiFi accounts. It will have an extension ending with PRO plus original9. You have completed setup.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["[1200Mbps HIGH-SPEED STABLE SIGNAL] : Wifi Extender wireless signal booster with lastest dual band technology can provide up to 300Mbps for 2.4GHz, up to 867Mbps for 5Ghz, a total rate of about 1200Mbps, maximizing reduces the loss of data transmission and enjoying HD video/game and fast speeds internet mode. [Full Signal Coverage] : This WiFi repeater equipped with 4 high gain external antenna, covering up to 360 degrees, up to 4000 square feet, higher penetration, no loss signal when passing through the wall , enhance the WiFi network and eliminate dead zones, up to bedroom, floors, restroom, garage, basement and garden, allow you enjoy wifi throughout whole home. [Repeater / AP Mode / 2 Ethernet Ports] : Repeater Mode is for extending WiFi coverage of an existing wireless network. AP Mode is for covering a wired network to a wireless network. The two Ethernet ports and 4 External Antennas to achieve the best performance, being able to connect to any wired Ethernet device such as smart TV, desktop and so on while boosting your existing WiFi coverage. [Universal Compatibility & Easy set up] : This WiFi extender can be used with any 802.11b/g/n/a/ac wireless Internet router, what means it works with any standard router or gateway. It can easily extend the wireless coverage by pressing the WPS button. Or set up via browser website(192.168.188.1) on almost any devices, including Windows/Android/iOS mobile platforms. [Safe Network Access] : This wifi extender can maximize the network security, ensure your network safety, prevent others stealing your net, protect your important data and avoid the interference and privacy problems of Wi-Fi. Our team offers 180 days return or replacement quality warranty & lifetime technical supports. Please contact us freely if you need any further assistance."], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": ["dual band", "smart tv", "signal booster", "high speed"], "MainImage": "https://m.media-amazon.com/images/I/417C92Ma1gL.jpg"}} +{"id": "B09P5CRVQ6", "contents": "womens tops casual, sweatshirt for women graphic, womens sweatshirt hoodie, women love print sweatshirt long sleeve cute heart sweater pullover tops blouse ladies tops and blouses with support layering summer work short sleeve workout silk camisole casual summer low cut chiffon tops for women plus size tops 3/4 sleeve leopard print tops scrub long tunic to wear with leggings off shoulder tops workout crop tops button up high crop tops flowy plus size tunic tops tops short sleeve and blouses black crop tops silk plus tops plus size off the shoulder tops tunic tops cute workout rayon print chiffon cropped for women tops valentines day sweater for women grinch ", "product": {"name": "Womens Tops Casual, Sweatshirt for Women Graphic, Womens Sweatshirt Hoodie, Women Love Print Sweatshirt Long Sleeve Cute Heart Sweater Pullover Tops Blouse", "full_description": "ladies tops and blouses with support layering summer work short sleeve workout silk camisole casual summer low cut chiffon tops for women plus size tops 3/4 sleeve leopard print tops scrub long tunic to wear with leggings off shoulder tops workout crop tops button up high crop tops flowy plus size tunic tops tops short sleeve and blouses black crop tops silk plus tops plus size off the shoulder tops tunic tops cute workout rayon print chiffon cropped for women tops", "pricing": [22.78], "images": ["https://m.media-amazon.com/images/I/51jf-yE0-eL.jpg", "https://m.media-amazon.com/images/I/51YDWOR-oEL.jpg", "https://m.media-amazon.com/images/I/51xQSY0xl4L.jpg", "https://m.media-amazon.com/images/I/5105a0RoNrL.jpg", "https://m.media-amazon.com/images/I/51rM9EkeSOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Active \u203a Active Base Layers", "average_rating": "", "small_description": ["valentines day sweater for women grinch ", "Gifts for Women--Big Promotion\ud83d\udca5NOTE: Most of our items are Asian size. Please reference to our Size Chart carefully before Purchasing, It may be a little Run Small ", "\u3010Fast Shipping\u3011 We ususally shipped out your items within 20 hours, and It usually takes 10-18 days for shipping to you. Please wait it more patience. Thanks. ", "womens valentines day tops cute printed tshirts long sleeve pullover casual crewneck sweatshirt loose comfy tops valentines day cardigan for women oversized open front printed coats fall long sleeve casual lightweight jackets shirt valentines day print cardigan for women,women solid color long-sleeved valentines day cardigan cotton mid-length cardigan women\u2019s long sleeve tops lace casual loose blouses t shirts women's crewneck sweatshirt women's comfort long sleeve t-shirt tee ", "fall jacket hoodies for women striped leopard print for choice zipper coat pullover hoodie for choice thin jackets jean jacket women winter jackets buttons casual plus velvet warm coat jeans long sleeve hooded blue black denim winter coats for women plus size thick fleece lined plush hooded windproof warm down outerwear jackets parka womens plush hooded sweatshirts long sleeve oversized hoodies zip hood sweater fall winter pullover zipper coats with pocket ", "women's sexy sleeveless racer back halter neck bodysuit tank tops women's fall casual tunic tops long sleeve tshirt crew neck ladys oversized pullover sweatshirt tops basic blouses women's tee crew neck long sleeve t-shirt womens turtleneck long batwing sleeve asymmetric hem casual pullover sweater knit tops women's turtleneck hoodie jackets long sleeve casual color block zip up drawstring sweatshirt coat with pockets women's jersey full zip hoodie ", "womens corduroy button down shirts boyfriend long sleeve oversized blouses tops women's waffle knit tunic blouse tie knot henley tops loose fitting bat wing plain shirts women's classic fit long-sleeve full-zip polar soft fleece jacket cardigan for women open front long sleeve casual fall lightweight cardigans with pockets womens casual blazers open front long sleeve work office jackets blazer women's benton springs full zip fleece jacket ", "above the knee length dress perfect for casual daily wear, party, club, work, office, business, vacation, beach, etc. perfect tunic dress for leggings, tights, or laying with coat, jackets, sweaters in spring, autumn and winter fashion ballon sleeve, easy dress up or down. perfect to paired with shorts, skinny jeans, boots, leggings for a chic look this womens top is very trendy and cute, suitable for casual, going out, school, office, daily wear, suit for all seasons "], "customization_options": "", "asin": "B09P5CRVQ6", "category": "fashion", "query": "women's activewear", "page": 113, "Title": "Womens Tops Casual, Sweatshirt for Women Graphic, Womens Sweatshirt Hoodie, Women Love Print Sweatshirt Long Sleeve Cute Heart Sweater Pullover Tops Blouse", "Description": "ladies tops and blouses with support layering summer work short sleeve workout silk camisole casual summer low cut chiffon tops for women plus size tops 3/4 sleeve leopard print tops scrub long tunic to wear with leggings off shoulder tops workout crop tops button up high crop tops flowy plus size tunic tops tops short sleeve and blouses black crop tops silk plus tops plus size off the shoulder tops tunic tops cute workout rayon print chiffon cropped for women tops", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["valentines day sweater for women grinch ", "Gifts for Women--Big Promotion\ud83d\udca5NOTE: Most of our items are Asian size. Please reference to our Size Chart carefully before Purchasing, It may be a little Run Small ", "\u3010Fast Shipping\u3011 We ususally shipped out your items within 20 hours, and It usually takes 10-18 days for shipping to you. Please wait it more patience. Thanks. ", "womens valentines day tops cute printed tshirts long sleeve pullover casual crewneck sweatshirt loose comfy tops valentines day cardigan for women oversized open front printed coats fall long sleeve casual lightweight jackets shirt valentines day print cardigan for women,women solid color long-sleeved valentines day cardigan cotton mid-length cardigan women\u2019s long sleeve tops lace casual loose blouses t shirts women's crewneck sweatshirt women's comfort long sleeve t-shirt tee ", "fall jacket hoodies for women striped leopard print for choice zipper coat pullover hoodie for choice thin jackets jean jacket women winter jackets buttons casual plus velvet warm coat jeans long sleeve hooded blue black denim winter coats for women plus size thick fleece lined plush hooded windproof warm down outerwear jackets parka womens plush hooded sweatshirts long sleeve oversized hoodies zip hood sweater fall winter pullover zipper coats with pocket ", "women's sexy sleeveless racer back halter neck bodysuit tank tops women's fall casual tunic tops long sleeve tshirt crew neck ladys oversized pullover sweatshirt tops basic blouses women's tee crew neck long sleeve t-shirt womens turtleneck long batwing sleeve asymmetric hem casual pullover sweater knit tops women's turtleneck hoodie jackets long sleeve casual color block zip up drawstring sweatshirt coat with pockets women's jersey full zip hoodie ", "womens corduroy button down shirts boyfriend long sleeve oversized blouses tops women's waffle knit tunic blouse tie knot henley tops loose fitting bat wing plain shirts women's classic fit long-sleeve full-zip polar soft fleece jacket cardigan for women open front long sleeve casual fall lightweight cardigans with pockets womens casual blazers open front long sleeve work office jackets blazer women's benton springs full zip fleece jacket ", "above the knee length dress perfect for casual daily wear, party, club, work, office, business, vacation, beach, etc. perfect tunic dress for leggings, tights, or laying with coat, jackets, sweaters in spring, autumn and winter fashion ballon sleeve, easy dress up or down. perfect to paired with shorts, skinny jeans, boots, leggings for a chic look this womens top is very trendy and cute, suitable for casual, going out, school, office, daily wear, suit for all seasons "], "Price": "$22.78", "options": {}, "option_to_image": {}, "Attributes": ["long sleeve", "tops women", "crewneck sweatshirt", "shirts women", "sleeve shirt", "daily wear", "sweatshirt hoodie", "pullover sweater", "hoodies women", "skinny jeans", "jacket women", "zip hoodie", "fleece lined", "pullover hoodie", "tunic tops", "tank tops", "classic fit"], "MainImage": "https://m.media-amazon.com/images/I/51jf-yE0-eL.jpg"}} +{"id": "B07GZLDJMC", "contents": "fitueyes universal tv stand/base tabletop tv stand with swivel mount for 32 to 65 inch flat screen tv height adjustable,tempered glass base \u3010tv stand\u3011universal tv stand/base tabletop stand to mount your tv and av components on an entertainment center or a desk/table. 8 mm thick sleek tempered glass shelf can store your cable tv box, satellite receiver, gaming consoles such as ps4, xbox, or apple tv ", "product": {"name": "FITUEYES Universal TV Stand/Base Tabletop TV Stand with Swivel Mount for 32 to 65 inch Flat Screen TV Height Adjustable,Tempered Glass Base", "full_description": "", "pricing": [42.99], "images": ["https://m.media-amazon.com/images/I/413EZxD1zsL.jpg", "https://m.media-amazon.com/images/I/41yUiOZFt1L.jpg", "https://m.media-amazon.com/images/I/51r+Gtxm4DL.jpg", "https://m.media-amazon.com/images/I/51IW3X4PXVL.jpg", "https://m.media-amazon.com/images/I/41RHmmRkNZL.jpg", "https://m.media-amazon.com/images/I/41twoekPJyL.jpg", "https://m.media-amazon.com/images/I/41TOmsv5p1L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Television & Video \u203a Television Accessories \u203a TV Mounts, Stands & Turntables \u203a TV Mount Stands", "average_rating": 4.6, "small_description": ["\u3010TV STAND\u3011Universal TV stand/base tabletop stand to mount your TV and AV components on an entertainment center or a desk/table. 8 mm thick sleek tempered glass shelf can store your cable tv box, satellite receiver, gaming consoles such as PS4, Xbox, or Apple TV ", "\u3010HEIGHT ADJUSTABLED DESKTOP TV MOUNT\u3011 TV bracket is height adjustable! 4 positions to suit different applications or TV sizes. The TV can be raised to install a sound bar or game console sensors like the Kinect. ", "\u3010VESA COMPATIBLE\u3011 Universal TV mounting bracket design fits most of 32'' to 65\" LCD/LED/Plasma TVs on the market up to VESA 600x400 and weighing up to 70 lbs. Fits VESA 600x400, 500x400, 400 x400 400x300, 400x200, 300x300, 200X200). Please check VESA (mounting hole pattern behind TV), possible blocked cable/input and TV weight prior to making purchase ", "\u3010UNIVERSAL FIT\u3011 TV mounting bracket is compatible with Samsung, Sony, LG, Sharp, Insignia, Vizio, Haier, Toshiba, Sharp, Element, TCL, Westinghouse 32, 36, 37, 40, 42, 47, 48, 49, 50, 55,60,65 inch TVs. Please ensure your TV has VESA 400x600mm pattern or smaller ", "\u3010A LIFETIME WARRANTY\u3011 Our TV stand includes an incredible a lifetime warranty and friendly customer service. We provide Standard mounting hardware to make installation as easy and convenient as possible, if you have any problem please feel free to contact us. "], "model": "\u200eFTT105202GB", "customization_options": "", "asin": "B07GZLDJMC", "category": "electronics", "query": "mounts", "page": 323, "Title": "FITUEYES Universal TV Stand/Base Tabletop TV Stand with Swivel Mount for 32 to 65 inch Flat Screen TV Height Adjustable,Tempered Glass Base", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u3010TV STAND\u3011Universal TV stand/base tabletop stand to mount your TV and AV components on an entertainment center or a desk/table. 8 mm thick sleek tempered glass shelf can store your cable tv box, satellite receiver, gaming consoles such as PS4, Xbox, or Apple TV ", "\u3010HEIGHT ADJUSTABLED DESKTOP TV MOUNT\u3011 TV bracket is height adjustable! 4 positions to suit different applications or TV sizes. The TV can be raised to install a sound bar or game console sensors like the Kinect. ", "\u3010VESA COMPATIBLE\u3011 Universal TV mounting bracket design fits most of 32'' to 65\" LCD/LED/Plasma TVs on the market up to VESA 600x400 and weighing up to 70 lbs. Fits VESA 600x400, 500x400, 400 x400 400x300, 400x200, 300x300, 200X200). Please check VESA (mounting hole pattern behind TV), possible blocked cable/input and TV weight prior to making purchase ", "\u3010UNIVERSAL FIT\u3011 TV mounting bracket is compatible with Samsung, Sony, LG, Sharp, Insignia, Vizio, Haier, Toshiba, Sharp, Element, TCL, Westinghouse 32, 36, 37, 40, 42, 47, 48, 49, 50, 55,60,65 inch TVs. Please ensure your TV has VESA 400x600mm pattern or smaller ", "\u3010A LIFETIME WARRANTY\u3011 Our TV stand includes an incredible a lifetime warranty and friendly customer service. We provide Standard mounting hardware to make installation as easy and convenient as possible, if you have any problem please feel free to contact us. "], "Price": "$42.99", "options": {}, "option_to_image": {}, "Attributes": ["tempered glass", "tv box", "sound bar"], "MainImage": "https://m.media-amazon.com/images/I/413EZxD1zsL.jpg"}} +{"id": "B07XRDD75B", "contents": "arya farm certified organic bajra flakes ( crunch ) 300 g ( pack of 2 ) breakfast cereal without chemicals arya farm certified organic jeera powder combo offer. the world is going organi. why choose arya? \u00e2rya is an ancient sanskrit word which means excellent! we at arya farm ensure we bring that excellence in each and every product we create for you by handpicking the farmers and also the ingredients. our products are fresher than others because of our short supply cycle to stores arya farm certified organic bajra flakes ( crunch ) 300 g - 2 pcs ", "product": {"name": "Arya Farm Certified Organic Bajra Flakes ( Crunch ) 300 g ( Pack of 2 ) Breakfast Cereal Without Chemicals", "full_description": "Arya Farm Certified Organic Jeera Powder Combo Offer. The World Is Going Organi. Why choose Arya? \u00e2rya is an ancient Sanskrit word which means Excellent! We at Arya Farm ensure we bring that excellence in each and every product we create for you by handpicking the farmers and also the ingredients. Our products are fresher than others because of our short supply cycle to stores", "pricing": [7.49], "images": ["https://m.media-amazon.com/images/I/51amfIEpFXL.jpg", "https://m.media-amazon.com/images/I/513Unr0ArjL.jpg", "https://m.media-amazon.com/images/I/5191XNIpS9L.jpg", "https://m.media-amazon.com/images/I/41rCPSqil7L.jpg", "https://m.media-amazon.com/images/I/41rCPSqil7L.jpg", "https://m.media-amazon.com/images/I/213YNOLmbjL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breakfast Foods \u203a Cereals \u203a Muesli", "average_rating": "", "small_description": ["Arya Farm Certified Organic Bajra Flakes ( Crunch ) 300 g - 2 pcs ", "Gluten free High in Protein Rich in Dietary Fiber ", "Organic. Free from Chemicals. Safe for Farmers. Good for Nature. ", "No preservatives artificial colours chemicals or any other flavours are used. ", "Product is Produced & Processed as per NOP / NPOP standards. "], "customization_options": "", "asin": "B07XRDD75B", "category": "grocery", "query": "breakfast foods", "page": 115, "Title": "Arya Farm Certified Organic Bajra Flakes ( Crunch ) 300 g ( Pack of 2 ) Breakfast Cereal Without Chemicals", "Description": "Arya Farm Certified Organic Jeera Powder Combo Offer. The World Is Going Organi. Why choose Arya? \u00e2rya is an ancient Sanskrit word which means Excellent! We at Arya Farm ensure we bring that excellence in each and every product we create for you by handpicking the farmers and also the ingredients. Our products are fresher than others because of our short supply cycle to stores", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Arya Farm Certified Organic Bajra Flakes ( Crunch ) 300 g - 2 pcs ", "Gluten free High in Protein Rich in Dietary Fiber ", "Organic. Free from Chemicals. Safe for Farmers. Good for Nature. ", "No preservatives artificial colours chemicals or any other flavours are used. ", "Product is Produced & Processed as per NOP / NPOP standards. "], "Price": "$7.49", "options": {}, "option_to_image": {}, "Attributes": ["certified organic", "dietary fiber", "high protein", "gluten free"], "MainImage": "https://m.media-amazon.com/images/I/51amfIEpFXL.jpg"}} +{"id": "B0912JD5KF", "contents": "starboosa rifle scope mount camera adapter - smartphone camera adapter for hunting teaching smart phone camera adapter can be connected to rifle scopes,so that you can easily take photos and videos with your mobile phone, and share the discovery with your family and friends. ", "product": {"name": "starboosa Rifle Scope Mount Camera Adapter - Smartphone Camera Adapter for Hunting Teaching", "full_description": "", "pricing": [36.59], "images": ["https://m.media-amazon.com/images/I/41PjzVjI46S.jpg", "https://m.media-amazon.com/images/I/41vg00hXRNS.jpg", "https://m.media-amazon.com/images/I/51FXissxj1S.jpg", "https://m.media-amazon.com/images/I/51TMDD8ffcS.jpg", "https://m.media-amazon.com/images/I/31yaIOiFuuS.jpg", "https://m.media-amazon.com/images/I/31Swox7l4tS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Accessories \u203a Telescope & Microscope Accessories \u203a Telescope Accessories \u203a Photo Adapters", "average_rating": 4.2, "small_description": ["Smart phone camera adapter can be connected to rifle scopes,so that you can easily take photos and videos with your mobile phone, and share the discovery with your family and friends. ", "The holder is suitable for almost all eyepieces with an outer diameter of 33mm-46mm, including eyepieces with simple rifle scopes, eyepieces with knobs, curved eyepieces, and even eyepieces with small rings and handles. Also suitable for telescope, monocular, binocular eyepieces. ", "It can be applied to various smart phones with a width of 58mm-100mm. For example, iphone 5, 5s, 6, 6s, etc. ", "It is made of durable aluminum and has been well anodized. ", "The firm PA plastic M5x8 screws (come with 6 pcs) will never scratch the surface of your eyepiece. Surface of the connected smartphone is covered with a soft material. No need to worry about the phone being scratched or damaged. "], "customization_options": "", "asin": "B0912JD5KF", "category": "electronics", "query": "binoculars & scopes", "page": 29, "Title": "starboosa Rifle Scope Mount Camera Adapter - Smartphone Camera Adapter for Hunting Teaching", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Smart phone camera adapter can be connected to rifle scopes,so that you can easily take photos and videos with your mobile phone, and share the discovery with your family and friends. ", "The holder is suitable for almost all eyepieces with an outer diameter of 33mm-46mm, including eyepieces with simple rifle scopes, eyepieces with knobs, curved eyepieces, and even eyepieces with small rings and handles. Also suitable for telescope, monocular, binocular eyepieces. ", "It can be applied to various smart phones with a width of 58mm-100mm. For example, iphone 5, 5s, 6, 6s, etc. ", "It is made of durable aluminum and has been well anodized. ", "The firm PA plastic M5x8 screws (come with 6 pcs) will never scratch the surface of your eyepiece. Surface of the connected smartphone is covered with a soft material. No need to worry about the phone being scratched or damaged. "], "Price": "$36.59", "options": {}, "option_to_image": {}, "Attributes": ["mobile phone"], "MainImage": "https://m.media-amazon.com/images/I/41PjzVjI46S.jpg"}} +{"id": "B07Z397262", "contents": "usb c magnetic charging cable 3 pack, 3 magnetic tips, cafele 6.6ft type c fast charging nylon braided cord for samsung galaxy s10 s10e s9 note 8 9 s8 s8 google pixel nexus lg motorola htc etc blue cafele type-c 3 pack 3 adapters fast charging magnetic charging cable for type-c devices specification: color: black length: 3 magnetic nylon braided cord, 6.6ft (2 meters) connector: 3 typec-c connectors usb charging current: 5a max compatibility\uff1acompatible with samsung lg xiaomi oneplus and other type-c smartphones such as samsung s10 s9 s8 note10 note 9 etc. product technologies - support qc 3.0 fast charging and data sync transmission what you get - magnetic charging cable x 3 - typec-c magnetic adapter/connect x 3 - lifetime technical support and 18 months of after-sales service - user guide manual support qc 3.0 fast charging: 3a maximum current fast charging, high-quality copper wire maximizes signal quality and increases durability, our technology teams make thousands of tests to ensure 100% safety for your device. ", "product": {"name": "USB C Magnetic Charging Cable 3 Pack, 3 Magnetic Tips, CAFELE 6.6ft Type C Fast Charging Nylon Braided Cord for Samsung Galaxy S10 S10e S9 Note 8 9 S8 S8 Google Pixel Nexus LG Motorola HTC etc Blue", "full_description": "CAFELE Type-C 3 Pack 3 Adapters Fast Charging Magnetic Charging Cable for Type-c Devices Specification: Color: Black Length: 3 magnetic nylon braided cord, 6.6ft (2 Meters) Connector: 3 Typec-C Connectors USB Charging Current: 5A Max compatibility\uff1aCompatible with Samsung LG XiaoMi Oneplus and Other Type-c Smartphones Such as Samsung s10 S9 S8 Note10 Note 9 etc. Product Technologies - Support QC 3.0 fast charging and data sync transmission What you get - Magnetic Charging Cable x 3 - Typec-C Magnetic Adapter/Connect x 3 - Lifetime technical support and 18 months of after-sales service - User guide manual", "pricing": [19.99], "images": ["https://m.media-amazon.com/images/I/51B4avzcGvL.jpg", "https://m.media-amazon.com/images/I/51qzxCLRmTL.jpg", "https://m.media-amazon.com/images/I/51kLb1j9HOL.jpg", "https://m.media-amazon.com/images/I/51kGyxZ9WTL.jpg", "https://m.media-amazon.com/images/I/51C07oPnhsL.jpg", "https://m.media-amazon.com/images/I/51p0ea+rGlL.jpg", "https://m.media-amazon.com/images/I/41jmkAs51tL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Cables & Accessories \u203a Cables & Interconnects \u203a USB Cables", "average_rating": 4.2, "small_description": ["Support QC 3.0 Fast Charging: 3A maximum current fast charging, high-quality copper wire maximizes signal quality and increases durability, our technology teams make thousands of tests to ensure 100% safety for your device. ", "Stable & Durable Nylon Braided Cord: CAFELE charging cable are well made with pretty braided neylon that could protect wire cores. CAFELE charging cables are reliable, sturdy and strong, tangle free and flexible, more than 10000+ bend lifespan. ", "Automatically Connectors: Super strong magnetic charging adapters/connectors/tips. While it is out of charging, the magnetic connector can be used as Anti-dust plug. Do not worry, the moderate magnetic force will not damage the mobile phone components. ", "Support Data Trasfer: Up to 480Mbps data sync. Videos photos, and all your data could be transferred and synced speedy stably. Data transfer and power charging 2 in 1 to save your much time. ", "Compatibility: 3 Magnetic charging cable and 3 Magnetic adapters/connectors included. CAFELE 3 in 1 magnetic cable is compatible with Type-C mobile devices. Made Samsung LG Nexus Google pixel and other Type-C devices such as Galaxy S8 S9 S10 Note10 Note9 Note8 etc. "], "model": "43191600", "customization_options": "", "asin": "B07Z397262", "category": "electronics", "query": "cell phones", "page": 271, "Title": "USB C Magnetic Charging Cable 3 Pack, 3 Magnetic Tips, CAFELE 6.6ft Type C Fast Charging Nylon Braided Cord for Samsung Galaxy S10 S10e S9 Note 8 9 S8 S8 Google Pixel Nexus LG Motorola HTC etc Blue", "Description": "CAFELE Type-C 3 Pack 3 Adapters Fast Charging Magnetic Charging Cable for Type-c Devices Specification: Color: Black Length: 3 magnetic nylon braided cord, 6.6ft (2 Meters) Connector: 3 Typec-C Connectors USB Charging Current: 5A Max compatibility\uff1aCompatible with Samsung LG XiaoMi Oneplus and Other Type-c Smartphones Such as Samsung s10 S9 S8 Note10 Note 9 etc. Product Technologies - Support QC 3.0 fast charging and data sync transmission What you get - Magnetic Charging Cable x 3 - Typec-C Magnetic Adapter/Connect x 3 - Lifetime technical support and 18 months of after-sales service - User guide manual", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Support QC 3.0 Fast Charging: 3A maximum current fast charging, high-quality copper wire maximizes signal quality and increases durability, our technology teams make thousands of tests to ensure 100% safety for your device. ", "Stable & Durable Nylon Braided Cord: CAFELE charging cable are well made with pretty braided neylon that could protect wire cores. CAFELE charging cables are reliable, sturdy and strong, tangle free and flexible, more than 10000+ bend lifespan. ", "Automatically Connectors: Super strong magnetic charging adapters/connectors/tips. While it is out of charging, the magnetic connector can be used as Anti-dust plug. Do not worry, the moderate magnetic force will not damage the mobile phone components. ", "Support Data Trasfer: Up to 480Mbps data sync. Videos photos, and all your data could be transferred and synced speedy stably. Data transfer and power charging 2 in 1 to save your much time. ", "Compatibility: 3 Magnetic charging cable and 3 Magnetic adapters/connectors included. CAFELE 3 in 1 magnetic cable is compatible with Type-C mobile devices. Made Samsung LG Nexus Google pixel and other Type-C devices such as Galaxy S8 S9 S10 Note10 Note9 Note8 etc. "], "Price": "$19.99", "options": {}, "option_to_image": {}, "Attributes": ["charging cable", "fast charging", "mobile phone", "samsung galaxy"], "MainImage": "https://m.media-amazon.com/images/I/51B4avzcGvL.jpg"}} +{"id": "B098B8KGMB", "contents": "sheer lace g-string for men floral briefs sexy t-back underwears see through g-strings jockstrap bikini briefs \ud83d\udc51\ud83d\udc51\ud83d\udc51product information\ud83d\udc51\ud83d\udc51\ud83d\udc51 \u25b8 season: spring,summer,autumn,winter \u25b8 gender: man \u25b8 style: sexy \u25b8 fit: fits ture to size \u25b8 occasion: various occasion \u25b8 fabric: soft,comfortable,breathable, skin-friendly. \u25b8 how to wash: hand wash cold,hang or line dry \u25b8 what you get: 1 piece lingerie \ud83d\udc51for what?????? you can buy for yourself or as a gift/birthday present for your lover. we hope it has been designed to make you look great. \ud83d\udc51who are we?????? we are a brand designed for men offering what style you want with highest qualities. we bring customers to a different outlook on life of fashion. \ud83d\udc51everyday made better!!!!!! we are focused on creating affordable, high-quality, and long-lasting everyday clothing you can rely on. also we hope the relationship between you and your love gets better and better. \ud83d\udc51easy care & world-class customer services: if you have any further questions please feel free to contact us we'll reply to you in 24 hours. good quality can machine wash with like color cold, tumble dry low, do not bleach. we support a 30-day replacement return service that allows you to shop without a worry. \ud83d\udc51other note : \u25ce the actual color may be slightly different from the image caused by different brightness of various monitors and brightness. \u25ce please refer to the size chart listed below or let us know your weight and height in or lbs and inches. \u25ce fits may vary by styles, body types, and manufacturer. \u25ce if you are in muscular shape, sturdy or plump shape,you'd better chooses 1 size larger than you usually wear. extreme shorts with large split sides jock strap plaid school boy lingerie boxer briefs back suspenders outfits set men sexy leather pants tight trousers harness nightclub wet look bikini swim ", "product": {"name": "Sheer Lace G-String For Men Floral Briefs Sexy T-Back Underwears See Through G-Strings Jockstrap Bikini Briefs", "full_description": "\ud83d\udc51\ud83d\udc51\ud83d\udc51Product information\ud83d\udc51\ud83d\udc51\ud83d\udc51 \u25b8 Season: Spring,Summer,Autumn,Winter \u25b8 Gender: Man \u25b8 Style: Sexy \u25b8 Fit: Fits ture to size \u25b8 Occasion: Various Occasion \u25b8 Fabric: Soft,comfortable,breathable, skin-friendly. \u25b8 How to wash: Hand wash Cold,Hang or Line Dry \u25b8 What you get: 1 piece lingerie \ud83d\udc51For What?????? You can buy for yourself or as a gift/birthday present for your lover. We hope it has been designed to make you look great. \ud83d\udc51Who Are We?????? We are a brand designed for men offering what style you want with highest qualities. We bring customers to a different outlook on life of fashion. \ud83d\udc51Everyday Made Better!!!!!! We are focused on creating affordable, high-quality, and long-lasting everyday clothing you can rely on. Also we hope the relationship between you and your love gets better and better. \ud83d\udc51Easy Care & World-Class Customer Services: If you have any further questions please feel free to contact us We'll reply to you in 24 hours. Good quality can Machine wash with like color cold, tumble dry low, do not bleach. We support a 30-day replacement return service that allows you to shop without a worry. \ud83d\udc51Other Note : \u25ce The actual color may be slightly different from the image caused by different brightness of various monitors and brightness. \u25ce Please refer to the size chart listed below or let us know your weight and height in or lbs and inches. \u25ce Fits may vary by styles, body types, and manufacturer. \u25ce If you are in muscular shape, sturdy or plump shape,you'd better chooses 1 size larger than you usually wear.", "pricing": [2.99], "images": ["https://m.media-amazon.com/images/I/41Y6AcUwn4S.jpg", "https://m.media-amazon.com/images/I/41MJ54u8ulS.jpg", "https://m.media-amazon.com/images/I/31hUDV4VxZS.jpg", "https://m.media-amazon.com/images/I/31awnWd4QZS.jpg", "https://m.media-amazon.com/images/I/31xlFrOtaBS.jpg", "https://m.media-amazon.com/images/I/31pEJXg111S.jpg", "https://m.media-amazon.com/images/I/218CzqOyFmS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Underwear \u203a G-Strings & Thongs", "average_rating": "", "small_description": ["extreme shorts with large split sides jock strap plaid school boy lingerie boxer briefs back suspenders outfits set men sexy leather pants tight trousers harness nightclub wet look bikini swim ", "for sex flower embroidery babydoll cutout g-string underwire shiny pu bodybuilding enhancing pouch short zipper lounge hollow pieces bow collar tuxedo supporter elastic waistband body modal underwear, style underpants drawstring smart g string full fully frilly imitation jockstraps jumpsuits wrestling singlet low rise open buttock bulge out rompers pantyhose tights stockings men's sexy lace thong bikini sissy briefs lingerie with garter mens up see through long sleeve t ", "\u3010High Quality\u3011: \ud83d\udc51Made with very stretchy and soft fabric that does not irritate skin, perfect for daily wear. The lingerie are soft to touch against the skin and smooth fitting. ", "\u3010Special Design\u3011: \ud83d\udc51This lingerie is a good choice to increase couple/lover's romantic moments, and it let your allure to be sexy,hot,enchanting and unstoppable. And to be glamorous and romantic. ", "\u3010Oaccasions\u3011: \ud83d\udc51Shiny Bottoms for Dancing, Raves, Party, Club, Festivals, Costumes.Suitable for Valentine's Day or Memorial day to increase desire. ", "\u3010Great Gift\u3011: \ud83d\udc51A perfect gift for yourself and a big surprise to spice up Valentines Days, Wedding Days, Honeymoon, Club, Private Day, Special Day, etc ", "\u3010Washing Recommended\u3011: \ud83d\udc51Hand Washing For Foam Pads, Washing Temperature Under 30 Degree Centigrade, Do Not Bleach, Hang Dry In Shade. "], "customization_options": {"Color": null, "Size": null}, "asin": "B098B8KGMB", "category": "fashion", "query": "men's underwear", "page": 24, "Title": "Sheer Lace G-String For Men Floral Briefs Sexy T-Back Underwears See Through G-Strings Jockstrap Bikini Briefs", "Description": "\ud83d\udc51\ud83d\udc51\ud83d\udc51Product information\ud83d\udc51\ud83d\udc51\ud83d\udc51 \u25b8 Season: Spring,Summer,Autumn,Winter \u25b8 Gender: Man \u25b8 Style: Sexy \u25b8 Fit: Fits ture to size \u25b8 Occasion: Various Occasion \u25b8 Fabric: Soft,comfortable,breathable, skin-friendly. \u25b8 How to wash: Hand wash Cold,Hang or Line Dry \u25b8 What you get: 1 piece lingerie \ud83d\udc51For What?????? You can buy for yourself or as a gift/birthday present for your lover. We hope it has been designed to make you look great. \ud83d\udc51Who Are We?????? We are a brand designed for men offering what style you want with highest qualities. We bring customers to a different outlook on life of fashion. \ud83d\udc51Everyday Made Better!!!!!! We are focused on creating affordable, high-quality, and long-lasting everyday clothing you can rely on. Also we hope the relationship between you and your love gets better and better. \ud83d\udc51Easy Care & World-Class Customer Services: If you have any further questions please feel free to contact us We'll reply to you in 24 hours. Good quality can Machine wash with like color cold, tumble dry low, do not bleach. We support a 30-day replacement return service that allows you to shop without a worry. \ud83d\udc51Other Note : \u25ce The actual color may be slightly different from the image caused by different brightness of various monitors and brightness. \u25ce Please refer to the size chart listed below or let us know your weight and height in or lbs and inches. \u25ce Fits may vary by styles, body types, and manufacturer. \u25ce If you are in muscular shape, sturdy or plump shape,you'd better chooses 1 size larger than you usually wear.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["extreme shorts with large split sides jock strap plaid school boy lingerie boxer briefs back suspenders outfits set men sexy leather pants tight trousers harness nightclub wet look bikini swim ", "for sex flower embroidery babydoll cutout g-string underwire shiny pu bodybuilding enhancing pouch short zipper lounge hollow pieces bow collar tuxedo supporter elastic waistband body modal underwear, style underpants drawstring smart g string full fully frilly imitation jockstraps jumpsuits wrestling singlet low rise open buttock bulge out rompers pantyhose tights stockings men's sexy lace thong bikini sissy briefs lingerie with garter mens up see through long sleeve t ", "\u3010High Quality\u3011: \ud83d\udc51Made with very stretchy and soft fabric that does not irritate skin, perfect for daily wear. The lingerie are soft to touch against the skin and smooth fitting. ", "\u3010Special Design\u3011: \ud83d\udc51This lingerie is a good choice to increase couple/lover's romantic moments, and it let your allure to be sexy,hot,enchanting and unstoppable. And to be glamorous and romantic. ", "\u3010Oaccasions\u3011: \ud83d\udc51Shiny Bottoms for Dancing, Raves, Party, Club, Festivals, Costumes.Suitable for Valentine's Day or Memorial day to increase desire. ", "\u3010Great Gift\u3011: \ud83d\udc51A perfect gift for yourself and a big surprise to spice up Valentines Days, Wedding Days, Honeymoon, Club, Private Day, Special Day, etc ", "\u3010Washing Recommended\u3011: \ud83d\udc51Hand Washing For Foam Pads, Washing Temperature Under 30 Degree Centigrade, Do Not Bleach, Hang Dry In Shade. "], "Price": "$2.99", "options": {}, "option_to_image": {}, "Attributes": ["daily wear"], "MainImage": "https://m.media-amazon.com/images/I/41Y6AcUwn4S.jpg"}} +{"id": "B07963ZMK6", "contents": "dove stick mix antiperspirant deodorants 40ml /1.76oz (dove stick mix, 12x40ml/1.4oz) if you ask us, antiperspirants shouldn\u2019t just protect: they should care for your underarm skin, too. we put care into the rest of our bodies, shouldn\u2019t our underarms get the same? after all, a lot of the best things in life lead to us throwing our arms in the air: great music, enthusiastic \u2013 if not particularly good \u2013 dancing, hugs with friends we haven\u2019t seen in ages. and in those moments, insecurities about our underarms definitely aren\u2019t welcome. which is why dove antiperspirant deodorants are created with our \u00bc moisturizing cream, to care for your underarm skin, leaving it soft and smooth. and there\u2019s a dove antiperspirant to suit every situation \u2013 like our dry spray range, extra strong dove clinical protection or advanced care range, to name a few of our favorites. because we know you want more from an antiperspirant than just protection, with dove you get care, too. the perfect combination. dove stick mix antiperspirant deodorants size: 6x40ml | 1.4 ounce, 12x40ml | 1.4 ounce", "product": {"name": "DOVE STICK Mix Antiperspirant deodorants 40Ml /1.76OZ (Dove Stick Mix, 12X40ML/1.4OZ)", "full_description": "If you ask us, antiperspirants shouldn\u2019t just protect: they should care for your underarm skin, too. We put care into the rest of our bodies, shouldn\u2019t our underarms get the same? After all, a lot of the best things in life lead to us throwing our arms in the air: great music, enthusiastic \u2013 if not particularly good \u2013 dancing, hugs with friends we haven\u2019t seen in ages. And in those moments, insecurities about our underarms definitely aren\u2019t welcome. Which is why Dove antiperspirant deodorants are created with our \u00bc moisturizing cream, to care for your underarm skin, leaving it soft and smooth. And there\u2019s a Dove antiperspirant to suit every situation \u2013 like our Dry Spray range, extra strong Dove Clinical Protection or Advanced Care range, to name a few of our favorites. Because we know you want more from an antiperspirant than just protection, with Dove you get care, too. The perfect combination.", "pricing": [28.99], "images": ["https://m.media-amazon.com/images/I/41OxNCi+LvL.jpg", "https://m.media-amazon.com/images/I/41qE6vHVxrL.jpg", "https://m.media-amazon.com/images/I/41xYARrFaaL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Antiperspirant Deodorant", "average_rating": 5, "small_description": ["DOVE STICK Mix Antiperspirant deodorants "], "customization_options": {"Color": null, "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07963JN58/ref=twister_B07963VCTJ?_encoding=UTF8&psc=1", "value": "6X40ML/1.4 Ounce", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "12X40ML/1.4 Ounce", "price_string": "$28.99", "price": 28.99, "image": null}]}, "asin": "B07963ZMK6", "category": "beauty", "query": "deodorants & antiperspirants", "page": 58, "Title": "DOVE STICK Mix Antiperspirant deodorants 40Ml /1.76OZ (Dove Stick Mix, 12X40ML/1.4OZ)", "Description": "If you ask us, antiperspirants shouldn\u2019t just protect: they should care for your underarm skin, too. We put care into the rest of our bodies, shouldn\u2019t our underarms get the same? After all, a lot of the best things in life lead to us throwing our arms in the air: great music, enthusiastic \u2013 if not particularly good \u2013 dancing, hugs with friends we haven\u2019t seen in ages. And in those moments, insecurities about our underarms definitely aren\u2019t welcome. Which is why Dove antiperspirant deodorants are created with our \u00bc moisturizing cream, to care for your underarm skin, leaving it soft and smooth. And there\u2019s a Dove antiperspirant to suit every situation \u2013 like our Dry Spray range, extra strong Dove Clinical Protection or Advanced Care range, to name a few of our favorites. Because we know you want more from an antiperspirant than just protection, with Dove you get care, too. The perfect combination.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["DOVE STICK Mix Antiperspirant deodorants "], "Price": "$28.99", "options": {"size": ["6x40ml | 1.4 ounce", "12x40ml | 1.4 ounce"]}, "option_to_image": {"6x40ml | 1.4 ounce": null, "12x40ml | 1.4 ounce": null}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41OxNCi+LvL.jpg"}} +{"id": "B0892Y9F83", "contents": "minkissy 2pcs stainless steel eyebrow tweezers blackhead acne remover portable makeup tweezers (silver) description2pcs stainless steel eyebrow tweezers blackhead acne remover portable makeup tweezers (silver)features-\u00a0 color:\u00a0 silver.-\u00a0 material:\u00a0 stainless steel.-\u00a0 packing size:\u00a0 about 11.4x0.8x0.6cm.-\u00a0warm tip: dear customer, due to lighting effect, monitor's brightness, and manual measurement, etc, there might be some slight differences in the color & size between the photo & the actual item. sincerely hope you can understand! thanks!package including2 x\u00a0 eyebrow tweezers different design to trim your eyebrows, apply for false eyelashes, clip double eyelids and more. ", "product": {"name": "Minkissy 2pcs Stainless Steel Eyebrow Tweezers Blackhead Acne Remover Portable Makeup Tweezers (Silver)", "full_description": "Description2pcs Stainless Steel Eyebrow Tweezers Blackhead Acne Remover Portable Makeup Tweezers (Silver)Features-\u00a0 Color:\u00a0 Silver.-\u00a0 Material:\u00a0 Stainless Steel.-\u00a0 Packing Size:\u00a0 About 11.4x0.8x0.6cm.-\u00a0Warm Tip: Dear customer, Due to lighting effect, monitor's brightness, and manual measurement, etc, there might be some slight differences in the color & size between the photo & the actual item. Sincerely hope you can understand! Thanks!Package Including2 x\u00a0 eyebrow tweezers", "pricing": [10.39], "images": ["https://m.media-amazon.com/images/I/31ky64jtqBL.jpg", "https://m.media-amazon.com/images/I/31VANU0gcIL.jpg", "https://m.media-amazon.com/images/I/31LMCKpcb2L.jpg", "https://m.media-amazon.com/images/I/51wQNcyRQTL.jpg", "https://m.media-amazon.com/images/I/314RGMlz1vL.jpg", "https://m.media-amazon.com/images/I/417ZL3P92vL.jpg", "https://m.media-amazon.com/images/I/316X7Ixf6QL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal \u203a Women's \u203a Tweezers", "average_rating": "", "small_description": ["Different design to trim your eyebrows, apply for false eyelashes, clip double eyelids and more. ", "Great for your eyebrow according to your eyebrow shape, outline different styles of eyebrow shapes. ", "Ergonomic design, easy to use, no harm your skin. ", "Easy and convenient to use, save your time and effort. Lightweight to carry out when travelling. ", "Made of high quality stainless steel, which is safe and durable. "], "customization_options": "", "asin": "B0892Y9F83", "category": "beauty", "query": "makeup remover", "page": 208, "Title": "Minkissy 2pcs Stainless Steel Eyebrow Tweezers Blackhead Acne Remover Portable Makeup Tweezers (Silver)", "Description": "Description2pcs Stainless Steel Eyebrow Tweezers Blackhead Acne Remover Portable Makeup Tweezers (Silver)Features-\u00a0 Color:\u00a0 Silver.-\u00a0 Material:\u00a0 Stainless Steel.-\u00a0 Packing Size:\u00a0 About 11.4x0.8x0.6cm.-\u00a0Warm Tip: Dear customer, Due to lighting effect, monitor's brightness, and manual measurement, etc, there might be some slight differences in the color & size between the photo & the actual item. Sincerely hope you can understand! Thanks!Package Including2 x\u00a0 eyebrow tweezers", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Different design to trim your eyebrows, apply for false eyelashes, clip double eyelids and more. ", "Great for your eyebrow according to your eyebrow shape, outline different styles of eyebrow shapes. ", "Ergonomic design, easy to use, no harm your skin. ", "Easy and convenient to use, save your time and effort. Lightweight to carry out when travelling. ", "Made of high quality stainless steel, which is safe and durable. "], "Price": "$10.39", "options": {}, "option_to_image": {}, "Attributes": ["stainless steel", "false eyelashes", "easy use", "high quality"], "MainImage": "https://m.media-amazon.com/images/I/31ky64jtqBL.jpg"}} +{"id": "B00V57WXMU", "contents": "tarragon leaves, dried - spiceology cut and sorted tarragon - 4 ounces spiceology tarragon leaves (ta) have an hints of anise, licorice and floral ", "product": {"name": "Tarragon Leaves, Dried - Spiceology Cut and Sorted Tarragon - 4 ounces", "full_description": "", "pricing": [23.12], "images": ["https://m.media-amazon.com/images/I/41FTD5VzNfL.jpg", "https://m.media-amazon.com/images/I/51Xo8pcf5VL.jpg", "https://m.media-amazon.com/images/I/61WuinYoXqL.jpg", "https://m.media-amazon.com/images/I/61A7-VYIFBL.jpg", "https://m.media-amazon.com/images/I/51u9O+Yfz6L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Pantry Staples \u203a Herbs, Spices & Seasonings \u203a Single Herbs & Spices \u203a Tarragon", "average_rating": 4.9, "small_description": ["Spiceology Tarragon Leaves (Ta) have an hints of anise, licorice and floral ", "Add dried Tarragon leaves to sauces, marinades, dressings, stews and sauces ", "Use Tarragon Leaves to impart anise flavor to spice seasonings and rubs for all meats and vegetables, including beef, chicken, fowl, pork, fish, seafood, game, and vegetables ", "Bulk container for chefs and commercial kitchens ", "Packed fresh in the USA "], "customization_options": "", "asin": "B00V57WXMU", "category": "grocery", "query": "meat & seafood", "page": 331, "Title": "Tarragon Leaves, Dried - Spiceology Cut and Sorted Tarragon - 4 ounces", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Spiceology Tarragon Leaves (Ta) have an hints of anise, licorice and floral ", "Add dried Tarragon leaves to sauces, marinades, dressings, stews and sauces ", "Use Tarragon Leaves to impart anise flavor to spice seasonings and rubs for all meats and vegetables, including beef, chicken, fowl, pork, fish, seafood, game, and vegetables ", "Bulk container for chefs and commercial kitchens ", "Packed fresh in the USA "], "Price": "$23.12", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41FTD5VzNfL.jpg"}} +{"id": "B08T84R7V2", "contents": "levi's mens lance lo mono ul casual sneaker shoe 100% synthetic size: 7, 7.5, 8, 8.5, 9, 9.5, 10, 10.5, 11, 12, 13, and color: black | white, white | black", "product": {"name": "Levi's Mens Lance Lo Mono UL Casual Sneaker Shoe", "full_description": "", "pricing": [29.99, 44.99], "images": ["https://m.media-amazon.com/images/I/31qjfqRTw5L.jpg", "https://m.media-amazon.com/images/I/318f89YH9SL.jpg", "https://m.media-amazon.com/images/I/31pcWGSk4HL.jpg", "https://m.media-amazon.com/images/I/310MvfbqR2L.jpg", "https://m.media-amazon.com/images/I/31m-Y6yaMjL.jpg", "https://m.media-amazon.com/images/I/31vC0nuqYkL.jpg", "https://m.media-amazon.com/images/I/41OnfnGt-yL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Fashion Sneakers", "average_rating": 4.1, "small_description": ["100% Synthetic ", "Imported ", "Rubber sole ", "Synthetic vegan leather upper ", "Soft, breathable fabric lining ", "Lightly cushioned footbed for excellent comfort ", "Lace-up closure with metal eyelets ", "Durable rubber outsole for added traction "], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "7", "asin": "B091V8T68Z"}, {"is_selected": false, "is_available": true, "value": "7.5", "asin": "B091V7MLFN"}, {"is_selected": false, "is_available": true, "value": "8", "asin": "B08VH1GXPK"}, {"is_selected": false, "is_available": true, "value": "8.5", "asin": "B08VH72GNH"}, {"is_selected": false, "is_available": true, "value": "9", "asin": "B08T84R7V2"}, {"is_selected": false, "is_available": true, "value": "9.5", "asin": "B08VHBB5ND"}, {"is_selected": false, "is_available": true, "value": "10", "asin": "B08VH8CCFW"}, {"is_selected": false, "is_available": false, "value": "10.5", "asin": "B08VHBK2YJ"}, {"is_selected": false, "is_available": false, "value": "11", "asin": "B08VH8HMFC"}, {"is_selected": false, "is_available": false, "value": "12", "asin": "B08VH7YPP5"}, {"is_selected": false, "is_available": true, "value": "13", "asin": "B08VHB69C4"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B091WP7DSJ/ref=twister_B095Z6YLYH", "value": "Black/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31njX07cXyL.jpg"}, {"is_selected": true, "url": null, "value": "White/Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/31qjfqRTw5L.jpg"}]}, "asin": "B08T84R7V2", "category": "fashion", "query": "men's fashion sneakers", "page": 13, "Title": "Levi's Mens Lance Lo Mono UL Casual Sneaker Shoe", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["100% Synthetic ", "Imported ", "Rubber sole ", "Synthetic vegan leather upper ", "Soft, breathable fabric lining ", "Lightly cushioned footbed for excellent comfort ", "Lace-up closure with metal eyelets ", "Durable rubber outsole for added traction "], "Price": "$29.99 to $44.99", "options": {"size": ["7", "7.5", "8", "8.5", "9", "9.5", "10", "10.5", "11", "12", "13"], "color": ["black | white", "white | black"]}, "option_to_image": {"7": null, "7.5": null, "8": null, "8.5": null, "9": null, "9.5": null, "10": null, "10.5": null, "11": null, "12": null, "13": null, "black | white": "https://m.media-amazon.com/images/I/31njX07cXyL.jpg", "white | black": "https://m.media-amazon.com/images/I/31qjfqRTw5L.jpg"}, "Attributes": ["lace closure", "rubber outsole", "rubber sole"], "MainImage": "https://m.media-amazon.com/images/I/31qjfqRTw5L.jpg"}} +{"id": "B08W568RSB", "contents": "rmisodo 15 pieces 50ml empty refillable roll on bottles, plastic roller bottles, reusable leak-proof deodorant containers with roller balls for essential oil perfume fragrance, white leak-proof design -- these empty bottles with roller ball design, which apply your blend smoothly and effortlessly. the threaded lid fits tightly and can effectively prevent liquid leakage. ", "product": {"name": "RMISODO 15 Pieces 50ml Empty Refillable Roll On Bottles, Plastic Roller Bottles, Reusable Leak-Proof Deodorant Containers with Roller Balls for Essential Oil Perfume Fragrance, White", "full_description": "", "pricing": [16.99], "images": ["https://m.media-amazon.com/images/I/310o3+lM2+L.jpg", "https://m.media-amazon.com/images/I/41-WxCDDeHL.jpg", "https://m.media-amazon.com/images/I/31vHrguAg9L.jpg", "https://m.media-amazon.com/images/I/41WwBjNU2jL.jpg", "https://m.media-amazon.com/images/I/41Jhg1+zsyL.jpg", "https://m.media-amazon.com/images/I/41J3yhdwfvL.jpg", "https://m.media-amazon.com/images/I/31AG++fFuOL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": 4.8, "small_description": ["LEAK-PROOF DESIGN -- These empty bottles with roller ball design, which apply your blend smoothly and effortlessly. The threaded lid fits tightly and can effectively prevent liquid leakage. ", "EXCELLENT QUALITY -- The roller bottle is made of high quality plastic material, sturdy and reliable, not easy to break, safe and durable to use. ", "WIDE APPLICATION -- Ideal for DIY your own essential oils, synthesis oil, essence, perfumes, lip balms, aromatherapy, fragrances, and other cosmetic liquids, meet your needs of daily care for eyes, faces and body. ", "TRAVEL FRIENDLY -- These rollerball bottles are portable and lightweight, conveniently fits in your purse, handbag or suitcase, very helpful especially when you are off for a business trip or travel. ", "SIZE & PACKAGE -- Size of the perfume container is about 10 x 3.8 cm/3.9 x 1.5 inches, the capacity is 50 ml. Package includes 15 pieces empty essential oil roller bottles. "], "customization_options": "", "asin": "B08W568RSB", "category": "beauty", "query": "refillable containers", "page": 12, "Title": "RMISODO 15 Pieces 50ml Empty Refillable Roll On Bottles, Plastic Roller Bottles, Reusable Leak-Proof Deodorant Containers with Roller Balls for Essential Oil Perfume Fragrance, White", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["LEAK-PROOF DESIGN -- These empty bottles with roller ball design, which apply your blend smoothly and effortlessly. The threaded lid fits tightly and can effectively prevent liquid leakage. ", "EXCELLENT QUALITY -- The roller bottle is made of high quality plastic material, sturdy and reliable, not easy to break, safe and durable to use. ", "WIDE APPLICATION -- Ideal for DIY your own essential oils, synthesis oil, essence, perfumes, lip balms, aromatherapy, fragrances, and other cosmetic liquids, meet your needs of daily care for eyes, faces and body. ", "TRAVEL FRIENDLY -- These rollerball bottles are portable and lightweight, conveniently fits in your purse, handbag or suitcase, very helpful especially when you are off for a business trip or travel. ", "SIZE & PACKAGE -- Size of the perfume container is about 10 x 3.8 cm/3.9 x 1.5 inches, the capacity is 50 ml. Package includes 15 pieces empty essential oil roller bottles. "], "Price": "$16.99", "options": {}, "option_to_image": {}, "Attributes": ["leak proof", "travel size", "essential oils", "high quality"], "MainImage": "https://m.media-amazon.com/images/I/310o3+lM2+L.jpg"}} +{"id": "B09KRLGSC5", "contents": "sweatyrocks women's oversized sweater crewneck long sleeve knit tops pullover jumper tops sweatyrocks women's oversized sweater crewneck long sleeve knit tops pullover jumper tops/ pattern type: plain/ length: regular/ season: spring/fall/ details: rib-knit/ fit type: regular fit/ neckline: round neck/ sleeve length: long sleeve/ sleeve type: drop shoulder/ sheer: no/ placket type: pullovers/ fabric: slight stretch/ material:the fabric is stretchy, breathable and very soft, very comfortable against skin size: x-small, small, medium, large, and color: black, coffee brown, mocha brown", "product": {"name": "SweatyRocks Women's Oversized Sweater Crewneck Long Sleeve Knit Tops Pullover Jumper Tops", "full_description": "SweatyRocks Women's Oversized Sweater Crewneck Long Sleeve Knit Tops Pullover Jumper Tops/ Pattern Type: Plain/ Length: Regular/ Season: Spring/Fall/ Details: Rib-Knit/ Fit Type: Regular Fit/ Neckline: Round Neck/ Sleeve Length: Long Sleeve/ Sleeve Type: Drop Shoulder/ Sheer: No/ Placket Type: Pullovers/ Fabric: Slight Stretch/", "pricing": [25.99], "images": ["https://m.media-amazon.com/images/I/41EIRDij3jL.jpg", "https://m.media-amazon.com/images/I/41g+f9p3uPL.jpg", "https://m.media-amazon.com/images/I/41h0ao+CawL.jpg", "https://m.media-amazon.com/images/I/41LkZviIGyL.jpg", "https://m.media-amazon.com/images/I/41Tf-Or6IpL.jpg", "https://m.media-amazon.com/images/I/31tWYUhzvLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Clothing \u203a Sweaters \u203a Pullovers", "average_rating": "", "small_description": ["Material:The fabric is stretchy, breathable and very soft, very comfortable against skin ", "Unique design: Solid color\uff0c loose ribbed knit shirt\uff0cbatwing long sleeve,cable slouchy sweater pullover,round neck,drop shoulder is more stylish and feminine, ", "Occasion: This casual pullover sweaters for women looks great with jeans, leggings, casual pant, scarf ,handbag ,backpack or boots,trendy and stylish look.Perfect sweater for spring,autumn and winter ", "Hand wash or machine wash, do not bleach ", "Please refer to the size measurement in image before ordering "], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "X-Small", "asin": "B09KRK9NC2"}, {"is_selected": false, "is_available": true, "value": "Small", "asin": "B09KRLGSC5"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09KRKNWLR"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09KRKQPLS"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41EIRDij3jL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09L88ZMHD/ref=twister_B09KRLNYCY", "value": "Coffee Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41WRK7ufjvL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09KRLYKRY/ref=twister_B09KRLNYCY", "value": "Mocha Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41VN-sheBuL.jpg"}]}, "asin": "B09KRLGSC5", "category": "fashion", "query": "women's sweaters", "page": 38, "Title": "SweatyRocks Women's Oversized Sweater Crewneck Long Sleeve Knit Tops Pullover Jumper Tops", "Description": "SweatyRocks Women's Oversized Sweater Crewneck Long Sleeve Knit Tops Pullover Jumper Tops/ Pattern Type: Plain/ Length: Regular/ Season: Spring/Fall/ Details: Rib-Knit/ Fit Type: Regular Fit/ Neckline: Round Neck/ Sleeve Length: Long Sleeve/ Sleeve Type: Drop Shoulder/ Sheer: No/ Placket Type: Pullovers/ Fabric: Slight Stretch/", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Material:The fabric is stretchy, breathable and very soft, very comfortable against skin ", "Unique design: Solid color\uff0c loose ribbed knit shirt\uff0cbatwing long sleeve,cable slouchy sweater pullover,round neck,drop shoulder is more stylish and feminine, ", "Occasion: This casual pullover sweaters for women looks great with jeans, leggings, casual pant, scarf ,handbag ,backpack or boots,trendy and stylish look.Perfect sweater for spring,autumn and winter ", "Hand wash or machine wash, do not bleach ", "Please refer to the size measurement in image before ordering "], "Price": "$25.99", "options": {"size": ["x-small", "small", "medium", "large"], "color": ["black", "coffee brown", "mocha brown"]}, "option_to_image": {"x-small": null, "small": null, "medium": null, "large": null, "black": "https://m.media-amazon.com/images/I/41EIRDij3jL.jpg", "coffee brown": "https://m.media-amazon.com/images/I/41WRK7ufjvL.jpg", "mocha brown": "https://m.media-amazon.com/images/I/41VN-sheBuL.jpg"}, "Attributes": ["long sleeve", "unique design", "sweaters women", "hand wash", "machine wash"], "MainImage": "https://m.media-amazon.com/images/I/41EIRDij3jL.jpg"}} +{"id": "B08HV9D6P3", "contents": "sit stand tabletop desk larger height adjustable standing desk converter laptop riser platform laptop desktop sit to stand up desk for home office computer workstation 32x24inch easy to assemble-just unpackage your updesk from the box and place it on your existing desk , you\u2019re done! ", "product": {"name": "Sit Stand Tabletop Desk Larger Height Adjustable Standing Desk Converter Laptop Riser Platform Laptop Desktop Sit to Stand Up Desk for Home Office Computer Workstation 32x24inch", "full_description": "", "pricing": [129.99], "images": ["https://m.media-amazon.com/images/I/41dSDXDY8OL.jpg", "https://m.media-amazon.com/images/I/412IrKRJpAL.jpg", "https://m.media-amazon.com/images/I/41VqcUQlr9L.jpg", "https://m.media-amazon.com/images/I/51q-QXTLecL.jpg", "https://m.media-amazon.com/images/I/41FdQFVonoL.jpg", "https://m.media-amazon.com/images/I/41R1rmKDQSL.jpg", "https://m.media-amazon.com/images/I/81S0iAL1JzL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Office Products \u203a Office & School Supplies \u203a Desk Accessories & Workspace Organizers \u203a Platforms, Stands & Shelves \u203a Desktop & Off-Surface Shelves", "average_rating": 4.2, "small_description": ["EASY TO ASSEMBLE-Just unpackage your Updesk from the box and place it on your existing desk , you\u2019re done! ", "EASY SIT STAND-Use the lever to raise the desk. Hold both side of the desk, squeeze the lever, and give a gentle lift. After the first few inches it will raise easily by itself. ", "SPACIOUS DESKTOP-The desktop is 31.5\"x 23.6\" (desktop Height:2.55\"-16.2\"). More larger than ordinary desk ,which accommodate two moderately sized monitors or a monitor and a laptop ", "BETTER QUALITY-Made of high-quality steel, More heavier and more stable ! Overall Weight Capacity: about 39Ibs , Suitable for most people ", "BEST SERVICE-Please contact us when you have any questions, we will try our best to help you to solve them "], "customization_options": "", "asin": "B08HV9D6P3", "category": "garden", "query": "desks", "page": 185, "Title": "Sit Stand Tabletop Desk Larger Height Adjustable Standing Desk Converter Laptop Riser Platform Laptop Desktop Sit to Stand Up Desk for Home Office Computer Workstation 32x24inch", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["EASY TO ASSEMBLE-Just unpackage your Updesk from the box and place it on your existing desk , you\u2019re done! ", "EASY SIT STAND-Use the lever to raise the desk. Hold both side of the desk, squeeze the lever, and give a gentle lift. After the first few inches it will raise easily by itself. ", "SPACIOUS DESKTOP-The desktop is 31.5\"x 23.6\" (desktop Height:2.55\"-16.2\"). More larger than ordinary desk ,which accommodate two moderately sized monitors or a monitor and a laptop ", "BETTER QUALITY-Made of high-quality steel, More heavier and more stable ! Overall Weight Capacity: about 39Ibs , Suitable for most people ", "BEST SERVICE-Please contact us when you have any questions, we will try our best to help you to solve them "], "Price": "$129.99", "options": {}, "option_to_image": {}, "Attributes": ["height adjustable", "easy assemble", "home office"], "MainImage": "https://m.media-amazon.com/images/I/41dSDXDY8OL.jpg"}} +{"id": "B06XQYN77L", "contents": "besign ground loop noise isolator for car audio/home stereo system with 3.5mm audio cable ground loop filter noise isolator, eliminating the hiss, buzz and interference caused by ground loops which happens when the audio source and the speaker use the same power source in some car speakers / home stereo systems when using the bluetooth receiver. ", "product": {"name": "BESIGN Ground Loop Noise Isolator for Car Audio/Home Stereo System with 3.5mm Audio Cable", "full_description": "", "pricing": [10.99], "images": ["https://m.media-amazon.com/images/I/41HZspghbBL.jpg", "https://m.media-amazon.com/images/I/41WPOgU5QnL.jpg", "https://m.media-amazon.com/images/I/51UTDmf-ZML.jpg", "https://m.media-amazon.com/images/I/31zDsqpz-ZL.jpg", "https://m.media-amazon.com/images/I/51Ck6aoDobL.jpg", "https://m.media-amazon.com/images/I/51xr8EzH+pL.jpg", "https://m.media-amazon.com/images/I/41uXBOFrvZL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Vehicle Electronics Accessories \u203a Vehicle Audio & Video Installation \u203a Amplifier Installation \u203a Noise Filters", "average_rating": 4.4, "small_description": ["Ground loop filter noise isolator, eliminating the hiss, buzz and interference caused by ground loops which happens when the audio source and the speaker use the same power source in some car speakers / home stereo systems when using the Bluetooth receiver. ", "You can enjoy the clean and clear music/audio by eliminating the current noise in some car speakers / home stereo systems. ", "Works with any device that has a 3.5mm jack including smartphones, tablets, mp3 player, speakers, when grounding issues persist. You could also use with a Bluetooth Receiver/Bluetooth Hands-free Car Kit in your Car Audio System/Home Stereo. ", "Being so mini, portable and light, plug and play, no battery need or button, all you need to do is to plug in the ground loop isolator ", "Portable, light-weight and plug and play without any complicated setup. Package Contents: Besign Ground Loop noise Isolator with 3.5mm Audio Cable, User Manual. "], "model": "GLNI01", "customization_options": "", "asin": "B06XQYN77L", "category": "electronics", "query": "bluetooth headsets", "page": 346, "Title": "BESIGN Ground Loop Noise Isolator for Car Audio/Home Stereo System with 3.5mm Audio Cable", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Ground loop filter noise isolator, eliminating the hiss, buzz and interference caused by ground loops which happens when the audio source and the speaker use the same power source in some car speakers / home stereo systems when using the Bluetooth receiver. ", "You can enjoy the clean and clear music/audio by eliminating the current noise in some car speakers / home stereo systems. ", "Works with any device that has a 3.5mm jack including smartphones, tablets, mp3 player, speakers, when grounding issues persist. You could also use with a Bluetooth Receiver/Bluetooth Hands-free Car Kit in your Car Audio System/Home Stereo. ", "Being so mini, portable and light, plug and play, no battery need or button, all you need to do is to plug in the ground loop isolator ", "Portable, light-weight and plug and play without any complicated setup. Package Contents: Besign Ground Loop noise Isolator with 3.5mm Audio Cable, User Manual. "], "Price": "$10.99", "options": {}, "option_to_image": {}, "Attributes": ["car audio", "audio cable", "plug play", "light weight", "hands free"], "MainImage": "https://m.media-amazon.com/images/I/41HZspghbBL.jpg"}} +{"id": "B01BV3XRG8", "contents": "ors hairestore hair mayonnaise with nettle leaf and horsetail extract 16 oz (pack of 4) deep conditioning, protein-rich treatment intensely moisturizes and helps strengthen damaged, weak and over-processed hair with a combination of hair-nourishing herbs, olive oil, egg protein and wheat germ oil. step 3 of the hairestore\u201a\u00f1 system designed to help fight hair loss and promote healthy hair growth, this hair-restoring treatment can be added to any haircare routine to help undo damage and maintain healthy, vibrant hair. perfect for: hair lacking moisture and strength ", "product": {"name": "ORS HAIRestore Hair Mayonnaise with Nettle Leaf and Horsetail Extract 16 oz (Pack of 4)", "full_description": "Deep conditioning, protein-rich treatment intensely moisturizes and helps strengthen damaged, weak and over-processed hair with a combination of hair-nourishing herbs, Olive Oil, Egg Protein and Wheat Germ Oil. Step 3 of the HAIRestore\u201a\u00d1 system designed to help fight hair loss and promote healthy hair growth, this hair-restoring treatment can be added to any haircare routine to help undo damage and maintain healthy, vibrant hair.", "pricing": [38.92], "images": ["https://m.media-amazon.com/images/I/51vQGvdW28L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Deep Conditioners", "average_rating": 3.9, "small_description": ["Perfect for: Hair lacking moisture and strength ", "Suitable for: Any hair type ", "Use as an intensive treatment to provide both strength and moisture ", "For hair breakage, damaged and weak hair ", "Combats chemical over-processing "], "customization_options": "", "asin": "B01BV3XRG8", "category": "beauty", "query": "hair treatment oils", "page": 108, "Title": "ORS HAIRestore Hair Mayonnaise with Nettle Leaf and Horsetail Extract 16 oz (Pack of 4)", "Description": "Deep conditioning, protein-rich treatment intensely moisturizes and helps strengthen damaged, weak and over-processed hair with a combination of hair-nourishing herbs, Olive Oil, Egg Protein and Wheat Germ Oil. Step 3 of the HAIRestore\u201a\u00d1 system designed to help fight hair loss and promote healthy hair growth, this hair-restoring treatment can be added to any haircare routine to help undo damage and maintain healthy, vibrant hair.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Perfect for: Hair lacking moisture and strength ", "Suitable for: Any hair type ", "Use as an intensive treatment to provide both strength and moisture ", "For hair breakage, damaged and weak hair ", "Combats chemical over-processing "], "Price": "$38.92", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/51vQGvdW28L.jpg"}} +{"id": "B01KI9HU1O", "contents": "grandfather italian mafia puppet men's crewneck sweatshirt 50% cotton, 50% polyester size: small, medium, xx-large, 3x-large, 4x-large, 5x-large", "product": {"name": "Grandfather Italian Mafia Puppet Men's Crewneck Sweatshirt", "full_description": "", "pricing": [23.99, 29.99], "images": ["https://m.media-amazon.com/images/I/419dYBykkGL.jpg", "https://m.media-amazon.com/images/I/41rEDVAOGpL.jpg", "https://m.media-amazon.com/images/I/41ZasDFOZ-L.jpg", "https://m.media-amazon.com/images/I/41zix8xbMgL.jpg", "https://m.media-amazon.com/images/I/416o2uSstVL.jpg", "https://m.media-amazon.com/images/I/31O6jHFkyAL.jpg", "https://m.media-amazon.com/images/I/6174I4g9-TL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Men \u203a Sweatshirts", "average_rating": 4.5, "small_description": ["50% Cotton, 50% Polyester ", "Made in the USA or Imported ", "Machine Wash ", "Size Small: Chest Width/Front Length 20\"x 27\" ", "Classic cut for looser fit | This is a unisex garment ", "Machine Wash Cold | Tumble Dry Low | Do Not Iron ", "Our graphic designs make unique gifts for every holiday and occasion ", "Please refer to images for more details "], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B01KI9HPK0"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B01KI9HMGM"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B01KI9H4JW"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B01KI9H8NO"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B01KI9HCLW"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B01KI9HGP4"}], "Color": null}, "asin": "B01KI9HU1O", "category": "fashion", "query": "men's sweaters", "page": 74, "Title": "Grandfather Italian Mafia Puppet Men's Crewneck Sweatshirt", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["50% Cotton, 50% Polyester ", "Made in the USA or Imported ", "Machine Wash ", "Size Small: Chest Width/Front Length 20\"x 27\" ", "Classic cut for looser fit | This is a unisex garment ", "Machine Wash Cold | Tumble Dry Low | Do Not Iron ", "Our graphic designs make unique gifts for every holiday and occasion ", "Please refer to images for more details "], "Price": "$23.99 to $29.99", "options": {"size": ["small", "medium", "xx-large", "3x-large", "4x-large", "5x-large"]}, "option_to_image": {"small": null, "medium": null, "xx-large": null, "3x-large": null, "4x-large": null, "5x-large": null}, "Attributes": ["crewneck sweatshirt", "machine wash", "polyester cotton", "tumble dry", "wash cold"], "MainImage": "https://m.media-amazon.com/images/I/419dYBykkGL.jpg"}} +{"id": "B000EMWBV0", "contents": "canon powershot pro series s3 is 6mp with 12x image stabilized zoom (discontinued by manufacturer) the sleek powershot s3 is digital camera offers you high resolution, an extra-long zoom, advanced yet easy-to-use movie functions plus great new shooting options. also, with image stabilizer technology, images and movies taken with the s3 is are sharp and smooth, even when the camera gets jostled. it's everything you need to capture the fun, excitement and beauty of your active life wherever it takes you. the sleek powershot s3 is digital camera offers you high resolution, an extra-long zoom, advanced yet easy-to-use movie functions plus great new shooting options. also, with image stabilizer technology, images and movies taken with the s3 is are sharp and smooth, even when the camera gets jostled. it's everything you need to capture the fun, excitement and beauty of your active life - wherever it takes you! successor to the popular powershot s2 is, the latest addition to the powershot s-series incorporates a 6.0-megapixel ccd sensor, canon's renowned optical image stabilizer technology, and video functionality rivalling that of dedicated digital video camcorders. sporting a striking new finish in gunmetal grey, the compact powershot s3 is answers the demands of advanced photographers with several improvements over its predecessor, including an increased sensitivity range of iso 80 to iso 800, a larger 2.0-inch vari-angle lcd screen, widescreen (16:9) recording, new movie features, and an additional sports mode. canon powershot s3 is features: 12x optical zoom lens with usm and ud lens element optical image stabilizer 6.0-megapixel ccd larger size 2.0-inch vari-angle lcd 30-frame-per-second (fps) vga movies with stereo sound and photo in movie feature digic ii, isaps, and flexizone af/ae for fast, precise results and 2.3 fps continuous shooting performance 20 shooting modes and my colors photo effects high iso auto and iso 800 for low light flexibility widescreen (16:9) recording the powershot s3 is caters for serious photo enthusiasts seeking extended zooming flexibility and fully featured movie recording in a versatile compact digital stills camera. optics still the most powerful zoom in a canon digital compact camera (36 to 432mm, f2.7-f.3.5), the powershot s3 is's lens incorporates the same leading technologies used in canon's professional ef lenses. an ultra-sonic motor (usm) drives rapid and near-silent zoom operation; an ultra-low dispersion (ud) lens element significantly reduces chromatic aberration in telephoto shots; canon's optical image stabilizer (is) technology counteracts camera shake to reduce image blur when shooting stills or recording video, essential for handheld shots at longer focal lengths. is allows photographers to shoot at shutter speeds up to 3 stops slower for reliable flash-free photography in low light conditions. the powershot s3 is's 12x optical zoom combines with digital zoom to deliver 48x magnification for recording both stills and video. for even wider framing options, optional wide and telephoto converter lenses extend the focal length from wide 27mm to super-tele 648mm (35mm film equivalent) for an impressive 24x optical zoom. a super macro mode and optional close-up lens 500d (58mm) allow for detailed macro photography. (optional wide, telephoto, and close-up lenses not included--must be purchased separately.) increased iso speed in addition to image stabilization, the powershot s3 is features a new high iso auto setting and iso 800 to further extend the camera's low light shooting capabilities. high iso auto automatically sets exposure using the higher range of iso sensitivities, enabling faster shutter speeds in low light and increased image stability at the telephoto end. a dedicated iso button allows for easy switching between iso sensitivities. movie functions powerful video functions make the powershot s3 is far more than just a high-performance digital still camera. a dedicated movie button means users do not need to switch modes to start recording, so spontaneous moments can be instantly captured in full motion. users can record smooth 30-frame-per-second vga quality movies of up to 1 gb with stereo sound, or create 60-frame-per-second qvga clips for sharp slow-motion playback. the movie mode also allows users to pre-select exposure and white balance, zoom throughout the camera's focal range, and manually adjust focus while shooting. a photo in movie feature enables the capture of full resolution digital stills during video recording. creative shooting the powershot s3 is offers 20 shooting modes including full manual mode, aperture priority, and shutter speed priority. together with 2.3-frame-per-second continuous shooting, a new fast-shutter sports mode with improved autofocus accuracy provides unprecedented capabilities for capturing action sports sequences. special scene modes--such as night snapshot and snow--assist with tricky lighting conditions, while color accent and color swap modes enable dramatic color effects to be applied to both images and movies. canon's my colors photo effects have been enhanced for this model, and can now be applied to images both before and after shooting. the powershot s3 is features a new widescreen mode (2816 x 1584 recording pixels) for capturing still images in 16:9 format--perfect for viewing images on widescreen television or printing wide (10 x 20-centimeter) photos with a selphy compact photo printer. printing and other features a new, dedicated print menu simplifies printing of multiple images. full pictbridge support means users can print directly to any pictbridge compatible printer without the need for a pc. new pictbridge features include the ability to print shooting data and optimize faces in portrait shots when connected to a compatible canon pixma printer. the camera's id photo and movie stills features are also available when connected to a selphy cp series printer. a handy print/share button allows one-touch printing and easy uploads to windows or mac systems. (printer not included--must be purchased separately.) the camera's menu system now features support for arabic, bringing the total number of supported languages to 23. canon technologies explained optical image stabilizer canon's lens-shift-type optical image stabilizer counteracts the camera shake caused by slight hand movements. vibration sensors detect the angle and speed of movement and send this information to a processor, allowing the camera to compensate. this adds stability to hand-held, telephoto, or moving shots and enables shooting at shutter speeds of up to three stops slower with no noticeable increase in image blur. digic ii canon's purpose-built digic ii (digital imaging core) image processor links all primary camera functions for maximum efficiency. high-speed processing results in outstanding responsiveness, rapid autofocus, and extended continuous shooting ability. advanced image processing algorithms deliver superb image detail and color reproduction with accurate white balance and minimal noise. digic ii operates efficiently to extend battery life, for longer shooting on a single charge. isaps isaps (intelligent scene analysis based on photographic space) automatically optimizes key camera settings before every shot. each scene is analyzed and cross-referenced against photographic space--a vast in-camera library of photographic data. this enables the camera to make optimal adjustments to autoexposure, autofocus, and auto white balance before image capture occurs. 9-point aiaf canon's 9-point aiaf (artificial intelligence autofocus) automatically scans and selects subjects from a set of nine focusing areas across the scene. this ensures accurately focused images even when subjects are not in the centre of the frame. flexizone af/ae flexizone af/ae lets users manually select the focus point from almost any point in the frame by moving the autofocus window in the viewfinder. exposure is linked to the focus point to ensure that the chosen subject is accurately focused and exposed. ultra-low dispersion (ud) lens technology no matter how well engineered, conventional optical glass lens elements cause chromatic aberrations which can 'soften' images and appear in photographs as fringing around the outside edge of subjects. canon's ultra-low dispersion (ud) glass has special optical properties to successfully reduce these aberrations. especially effective in super telephoto lenses, ud glass helps to deliver crisp, sharp, high-contrast images. what's in the box powershot s3 is body, aa-size alkaline battery (x 4), sd memory card sdc-16mb, lens cap, neck strap ns-dc4, digital camera solution cd-rom, usb interface cable ifc-400pcu, stereo video cable stv-250n the powershot s3 is caters for serious photo enthusiasts seeking extended zooming flexibility and fully featured movie recording in a versatile compact digital stills camera. optics still the most powerful zoom in a canon digital compact camera (36 to 432mm, f2.7-f.3.5), the powershot s3 is's lens incorporates the same leading technologies used in canon's professional ef lenses. an ultra-sonic motor (usm) drives rapid and near-silent zoom operation; an ultra-low dispersion (ud) lens element significantly reduces chromatic aberration in telephoto shots; canon's optical image stabilizer (is) technology counteracts camera shake to reduce image blur when shooting stills or recording video, essential for handheld shots at longer focal lengths. is allows photographers to shoot at shutter speeds up to 3 stops slower for reliable flash-free photography in low light conditions. the powershot s3 is's 12x optical zoom combines with digital zoom to deliver 48x magnification for recording both stills and video. for even wider framing options, optional wide and telephoto converter lenses extend the focal length from wide 27mm to super-tele 648mm (35mm film equivalent) for an impressive 24x optical zoom. a super macro mode and optional close-up lens 500d (58mm) allow for detailed macro photography. (optional wide, telephoto, and close-up lenses not included--must be purchased separately.) increased iso speed in addition to image stabilization, the powershot s3 is features a new high iso auto setting and iso 800 to further extend the camera's low light shooting capabilities. high iso auto automatically sets exposure using the higher range of iso sensitivities, enabling faster shutter speeds in low light and increased image stability at the telephoto end. a dedicated iso button allows for easy switching between iso sensitivities. movie functions powerful video functions make the powershot s3 is far more than just a high-performance digital still camera. a dedicated movie button means users do not need to switch modes to start recording, so spontaneous moments can be instantly captured in full motion. users can record smooth 30-frame-per-second vga quality movies of up to 1 gb with stereo sound, or create 60-frame-per-second qvga clips for sharp slow-motion playback. the movie mode also allows users to pre-select exposure and white balance, zoom throughout the camera's focal range, and manually adjust focus while shooting. a photo in movie feature enables the capture of full resolution digital stills during video recording. creative shooting the powershot s3 is offers 20 shooting modes including full manual mode, aperture priority, and shutter speed priority. together with 2.3-frame-per-second continuous shooting, a new fast-shutter sports mode with improved autofocus accuracy provides unprecedented capabilities for capturing action sports sequences. special scene modes--such as night snapshot and snow--assist with tricky lighting conditions, while color accent and color swap modes enable dramatic color effects to be applied to both images and movies. canon's my colors photo effects have been enhanced for this model, and can now be applied to images both before and after shooting. the powershot s3 is features a new widescreen mode (2816 x 1584 recording pixels) for capturing still images in 16:9 format--perfect for viewing images on widescreen television or printing wide (10 x 20-centimeter) photos with a selphy compact photo printer. printing and other features a new, dedicated print menu simplifies printing of multiple images. full pictbridge support means users can print directly to any pictbridge compatible printer without the need for a pc. new pictbridge features include the ability to print shooting data and optimize faces in portrait shots when connected to a compatible canon pixma printer. the camera's id photo and movie stills features are also available when connected to a selphy cp series printer. a handy print/share button allows one-touch printing and easy uploads to windows or mac systems. (printer not included--must be purchased separately.) the camera's menu system now features support for arabic, bringing the total number of supported languages to 23. canon technologies explained optical image stabilizer canon's lens-shift-type optical image stabilizer counteracts the camera shake caused by slight hand movements. vibration sensors detect the angle and speed of movement and send this information to a processor, allowing the camera to compensate. this adds stability to hand-held, telephoto, or moving shots and enables shooting at shutter speeds of up to three stops slower with no noticeable increase in image blur. digic ii canon's purpose-built digic ii (digital imaging core) image processor links all primary camera functions for maximum efficiency. high-speed processing results in outstanding responsiveness, rapid autofocus, and extended continuous shooting ability. advanced image processing algorithms deliver superb image detail and color reproduction with accurate white balance and minimal noise. digic ii operates efficiently to extend battery life, for longer shooting on a single charge. isaps isaps (intelligent scene analysis based on photographic space) automatically optimizes key camera settings before every shot. each scene is analyzed and cross-referenced against photographic space--a vast in-camera library of photographic data. this enables the camera to make optimal adjustments to autoexposure, autofocus, and auto white balance before image capture occurs. 9-point aiaf canon's 9-point aiaf (artificial intelligence autofocus) automatically scans and selects subjects from a set of nine focusing areas across the scene. this ensures accurately focused images even when subjects are not in the centre of the frame. flexizone af/ae flexizone af/ae lets users manually select the focus point from almost any point in the frame by moving the autofocus window in the viewfinder. exposure is linked to the focus point to ensure that the chosen subject is accurately focused and exposed. ultra-low dispersion (ud) lens technology no matter how well engineered, conventional optical glass lens elements cause chromatic aberrations which can 'soften' images and appear in photographs as fringing around the outside edge of subjects. canon's ultra-low dispersion (ud) glass has special optical properties to successfully reduce these aberrations. especially effective in super telephoto lenses, ud glass helps to deliver crisp, sharp, high-contrast images. what's in the box powershot s3 is body, aa-size alkaline battery (x 4), sd memory card sdc-16mb, lens cap, neck strap ns-dc4, digital camera solution cd-rom, usb interface cable ifc-400pcu, stereo video cable stv-250n powered by 4 aa-size batteries (alkaline batteries supplied) , stores images on sd memory cards (16 mb card included) ", "product": {"name": "Canon PowerShot Pro Series S3 IS 6MP with 12x Image Stabilized Zoom (Discontinued by Manufacturer)", "full_description": "The sleek PowerShot S3 IS digital camera offers you high resolution, an extra-long zoom, advanced yet easy-to-use movie functions plus great new shooting options. Also, with Image Stabilizer technology, images and movies taken with the S3 IS are sharp and smooth, even when the camera gets jostled. It's everything you need to capture the fun, excitement and beauty of your active life wherever it takes you. The sleek PowerShot S3 IS digital camera offers you high resolution, an extra-long zoom, advanced yet easy-to-use movie functions plus great new shooting options. Also, with Image Stabilizer technology, images and movies taken with the S3 IS are sharp and smooth, even when the camera gets jostled. It's everything you need to capture the fun, excitement and beauty of your active life - wherever it takes you! Successor to the popular PowerShot S2 IS, the latest addition to the PowerShot S-series incorporates a 6.0-megapixel CCD sensor, Canon's renowned optical Image Stabilizer technology, and video functionality rivalling that of dedicated digital video camcorders. Sporting a striking new finish in gunmetal grey, the compact PowerShot S3 IS answers the demands of advanced photographers with several improvements over its predecessor, including an increased sensitivity range of ISO 80 to ISO 800, a larger 2.0-inch vari-angle LCD screen, widescreen (16:9) recording, new movie features, and an additional Sports mode. Canon PowerShot S3 IS features: 12x optical zoom lens with USM and UD lens element Optical Image Stabilizer 6.0-megapixel CCD Larger size 2.0-inch vari-angle LCD 30-frame-per-second (fps) VGA movies with stereo sound and Photo in Movie feature DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results and 2.3 fps continuous shooting performance 20 shooting modes and My Colors photo effects High ISO Auto and ISO 800 for low light flexibility Widescreen (16:9) recording The PowerShot S3 IS caters for serious photo enthusiasts seeking extended zooming flexibility and fully featured movie recording in a versatile compact digital stills camera. Optics Still the most powerful zoom in a Canon digital compact camera (36 to 432mm, f2.7-f.3.5), the PowerShot S3 IS's lens incorporates the same leading technologies used in Canon's professional EF lenses. An Ultra-Sonic Motor (USM) drives rapid and near-silent zoom operation; an Ultra-low Dispersion (UD) lens element significantly reduces chromatic aberration in telephoto shots; Canon's optical Image Stabilizer (IS) technology counteracts camera shake to reduce image blur when shooting stills or recording video, essential for handheld shots at longer focal lengths. IS allows photographers to shoot at shutter speeds up to 3 stops slower for reliable flash-free photography in low light conditions. The PowerShot S3 IS's 12x optical zoom combines with digital zoom to deliver 48x magnification for recording both stills and video. For even wider framing options, optional wide and telephoto converter lenses extend the focal length from wide 27mm to super-tele 648mm (35mm film equivalent) for an impressive 24x optical zoom. A Super Macro mode and optional Close-Up lens 500D (58mm) allow for detailed macro photography. (Optional wide, telephoto, and close-up lenses not included--must be purchased separately.) Increased ISO speed In addition to Image Stabilization, the PowerShot S3 IS features a new High ISO Auto setting and ISO 800 to further extend the camera's low light shooting capabilities. High ISO Auto automatically sets exposure using the higher range of ISO sensitivities, enabling faster shutter speeds in low light and increased image stability at the telephoto end. A dedicated ISO button allows for easy switching between ISO sensitivities. Movie functions Powerful video functions make the PowerShot S3 IS far more than just a high-performance digital still camera. A dedicated movie button means users do not need to switch modes to start recording, so spontaneous moments can be instantly captured in full motion. Users can record smooth 30-frame-per-second VGA quality movies of up to 1 GB with stereo sound, or create 60-frame-per-second QVGA clips for sharp slow-motion playback. The Movie mode also allows users to pre-select exposure and white balance, zoom throughout the camera's focal range, and manually adjust focus while shooting. A Photo In Movie feature enables the capture of full resolution digital stills during video recording. Creative shooting The PowerShot S3 IS offers 20 shooting modes including full Manual mode, Aperture Priority, and Shutter Speed Priority. Together with 2.3-frame-per-second continuous shooting, a new fast-shutter Sports mode with improved autofocus accuracy provides unprecedented capabilities for capturing action sports sequences. Special Scene modes--such as Night Snapshot and Snow--assist with tricky lighting conditions, while Color Accent and Color Swap modes enable dramatic color effects to be applied to both images and movies. Canon's My Colors photo effects have been enhanced for this model, and can now be applied to images both before and after shooting. The PowerShot S3 IS features a new Widescreen mode (2816 x 1584 recording pixels) for capturing still images in 16:9 format--perfect for viewing images on widescreen television or printing wide (10 x 20-centimeter) photos with a Selphy Compact Photo Printer. Printing and other features A new, dedicated Print menu simplifies printing of multiple images. Full PictBridge support means users can print directly to any PictBridge compatible printer without the need for a PC. New PictBridge features include the ability to print shooting data and optimize faces in portrait shots when connected to a compatible Canon PIXMA printer. The camera's ID photo and movie stills features are also available when connected to a Selphy CP Series Printer. A handy Print/Share button allows one-touch printing and easy uploads to Windows or Mac systems. (Printer not included--must be purchased separately.) The camera's menu system now features support for Arabic, bringing the total number of supported languages to 23. Canon technologies explained Optical Image Stabilizer Canon's lens-shift-type optical Image Stabilizer counteracts the camera shake caused by slight hand movements. Vibration sensors detect the angle and speed of movement and send this information to a processor, allowing the camera to compensate. This adds stability to hand-held, telephoto, or moving shots and enables shooting at shutter speeds of up to three stops slower with no noticeable increase in image blur. DIGIC II Canon's purpose-built DIGIC II (DIGital Imaging Core) image processor links all primary camera functions for maximum efficiency. High-speed processing results in outstanding responsiveness, rapid autofocus, and extended continuous shooting ability. Advanced image processing algorithms deliver superb image detail and color reproduction with accurate white balance and minimal noise. DIGIC II operates efficiently to extend battery life, for longer shooting on a single charge. iSAPS iSAPS (Intelligent Scene Analysis based on Photographic Space) automatically optimizes key camera settings before every shot. Each scene is analyzed and cross-referenced against Photographic Space--a vast in-camera library of photographic data. This enables the camera to make optimal adjustments to autoexposure, autofocus, and auto white balance before image capture occurs. 9-Point AiAF Canon's 9-point AiAF (Artificial Intelligence Autofocus) automatically scans and selects subjects from a set of nine focusing areas across the scene. This ensures accurately focused images even when subjects are not in the centre of the frame. FlexiZone AF/AE FlexiZone AF/AE lets users manually select the focus point from almost any point in the frame by moving the autofocus window in the viewfinder. Exposure is linked to the focus point to ensure that the chosen subject is accurately focused and exposed. Ultra-low Dispersion (UD) lens technology No matter how well engineered, conventional optical glass lens elements cause chromatic aberrations which can 'soften' images and appear in photographs as fringing around the outside edge of subjects. Canon's Ultra-low Dispersion (UD) glass has special optical properties to successfully reduce these aberrations. Especially effective in super telephoto lenses, UD glass helps to deliver crisp, sharp, high-contrast images. What's in the Box PowerShot S3 IS body, AA-size alkaline battery (x 4), SD memory card SDC-16MB, lens cap, neck strap NS-DC4, Digital Camera Solution CD-ROM, USB interface cable IFC-400PCU, stereo video cable STV-250N The PowerShot S3 IS caters for serious photo enthusiasts seeking extended zooming flexibility and fully featured movie recording in a versatile compact digital stills camera. Optics Still the most powerful zoom in a Canon digital compact camera (36 to 432mm, f2.7-f.3.5), the PowerShot S3 IS's lens incorporates the same leading technologies used in Canon's professional EF lenses. An Ultra-Sonic Motor (USM) drives rapid and near-silent zoom operation; an Ultra-low Dispersion (UD) lens element significantly reduces chromatic aberration in telephoto shots; Canon's optical Image Stabilizer (IS) technology counteracts camera shake to reduce image blur when shooting stills or recording video, essential for handheld shots at longer focal lengths. IS allows photographers to shoot at shutter speeds up to 3 stops slower for reliable flash-free photography in low light conditions. The PowerShot S3 IS's 12x optical zoom combines with digital zoom to deliver 48x magnification for recording both stills and video. For even wider framing options, optional wide and telephoto converter lenses extend the focal length from wide 27mm to super-tele 648mm (35mm film equivalent) for an impressive 24x optical zoom. A Super Macro mode and optional Close-Up lens 500D (58mm) allow for detailed macro photography. (Optional wide, telephoto, and close-up lenses not included--must be purchased separately.) Increased ISO speed In addition to Image Stabilization, the PowerShot S3 IS features a new High ISO Auto setting and ISO 800 to further extend the camera's low light shooting capabilities. High ISO Auto automatically sets exposure using the higher range of ISO sensitivities, enabling faster shutter speeds in low light and increased image stability at the telephoto end. A dedicated ISO button allows for easy switching between ISO sensitivities. Movie functions Powerful video functions make the PowerShot S3 IS far more than just a high-performance digital still camera. A dedicated movie button means users do not need to switch modes to start recording, so spontaneous moments can be instantly captured in full motion. Users can record smooth 30-frame-per-second VGA quality movies of up to 1 GB with stereo sound, or create 60-frame-per-second QVGA clips for sharp slow-motion playback. The Movie mode also allows users to pre-select exposure and white balance, zoom throughout the camera's focal range, and manually adjust focus while shooting. A Photo In Movie feature enables the capture of full resolution digital stills during video recording. Creative shooting The PowerShot S3 IS offers 20 shooting modes including full Manual mode, Aperture Priority, and Shutter Speed Priority. Together with 2.3-frame-per-second continuous shooting, a new fast-shutter Sports mode with improved autofocus accuracy provides unprecedented capabilities for capturing action sports sequences. Special Scene modes--such as Night Snapshot and Snow--assist with tricky lighting conditions, while Color Accent and Color Swap modes enable dramatic color effects to be applied to both images and movies. Canon's My Colors photo effects have been enhanced for this model, and can now be applied to images both before and after shooting. The PowerShot S3 IS features a new Widescreen mode (2816 x 1584 recording pixels) for capturing still images in 16:9 format--perfect for viewing images on widescreen television or printing wide (10 x 20-centimeter) photos with a Selphy Compact Photo Printer. Printing and other features A new, dedicated Print menu simplifies printing of multiple images. Full PictBridge support means users can print directly to any PictBridge compatible printer without the need for a PC. New PictBridge features include the ability to print shooting data and optimize faces in portrait shots when connected to a compatible Canon PIXMA printer. The camera's ID photo and movie stills features are also available when connected to a Selphy CP Series Printer. A handy Print/Share button allows one-touch printing and easy uploads to Windows or Mac systems. (Printer not included--must be purchased separately.) The camera's menu system now features support for Arabic, bringing the total number of supported languages to 23. Canon technologies explained Optical Image Stabilizer Canon's lens-shift-type optical Image Stabilizer counteracts the camera shake caused by slight hand movements. Vibration sensors detect the angle and speed of movement and send this information to a processor, allowing the camera to compensate. This adds stability to hand-held, telephoto, or moving shots and enables shooting at shutter speeds of up to three stops slower with no noticeable increase in image blur. DIGIC II Canon's purpose-built DIGIC II (DIGital Imaging Core) image processor links all primary camera functions for maximum efficiency. High-speed processing results in outstanding responsiveness, rapid autofocus, and extended continuous shooting ability. Advanced image processing algorithms deliver superb image detail and color reproduction with accurate white balance and minimal noise. DIGIC II operates efficiently to extend battery life, for longer shooting on a single charge. iSAPS iSAPS (Intelligent Scene Analysis based on Photographic Space) automatically optimizes key camera settings before every shot. Each scene is analyzed and cross-referenced against Photographic Space--a vast in-camera library of photographic data. This enables the camera to make optimal adjustments to autoexposure, autofocus, and auto white balance before image capture occurs. 9-Point AiAF Canon's 9-point AiAF (Artificial Intelligence Autofocus) automatically scans and selects subjects from a set of nine focusing areas across the scene. This ensures accurately focused images even when subjects are not in the centre of the frame. FlexiZone AF/AE FlexiZone AF/AE lets users manually select the focus point from almost any point in the frame by moving the autofocus window in the viewfinder. Exposure is linked to the focus point to ensure that the chosen subject is accurately focused and exposed. Ultra-low Dispersion (UD) lens technology No matter how well engineered, conventional optical glass lens elements cause chromatic aberrations which can 'soften' images and appear in photographs as fringing around the outside edge of subjects. Canon's Ultra-low Dispersion (UD) glass has special optical properties to successfully reduce these aberrations. Especially effective in super telephoto lenses, UD glass helps to deliver crisp, sharp, high-contrast images. What's in the Box PowerShot S3 IS body, AA-size alkaline battery (x 4), SD memory card SDC-16MB, lens cap, neck strap NS-DC4, Digital Camera Solution CD-ROM, USB interface cable IFC-400PCU, stereo video cable STV-250N", "pricing": [49.79], "images": ["https://m.media-amazon.com/images/I/41In54eEN3L.jpg", "https://m.media-amazon.com/images/I/41InVEpk7ZL.jpg", "https://m.media-amazon.com/images/I/41l0azIA69L.jpg", "https://m.media-amazon.com/images/I/4118vr4kzAL.jpg", "https://m.media-amazon.com/images/I/41I-32pCk1L.jpg", "https://m.media-amazon.com/images/I/41IqJHCNRKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a Point & Shoot Digital Cameras", "average_rating": 4.1, "small_description": ["Powered by 4 AA-size batteries (alkaline batteries supplied) , stores images on SD memory cards (16 MB card included) ", "DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results , 2.3-frame-per-second continuous shooting performance ", "12x optical zoom lens with USM and UD lens element , 2.0-inch vari-angle LCD display ", "6.0-megapixel CCD captures enough detail for photo-quality 14 x 19-inch prints ", "20 shooting modes and My Colors photo effects ", "6.0-megapixel CCD captures enough detail for photo-quality 14 x 19-inch prints ", "12x optical zoom lens with USM and UD lens element; 2.0-inch vari-angle LCD display , 20 shooting modes and My Colors photo effects, DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results; 2.3-frame-per-second continuous shooting performance, Powered by 4 AA-size batteries (alkaline batteries supplied); stores images on SD memory cards (16 MB card included)"], "model": "1101B001", "customization_options": "", "asin": "B000EMWBV0", "category": "electronics", "query": "digital cameras", "page": 137, "Title": "Canon PowerShot Pro Series S3 IS 6MP with 12x Image Stabilized Zoom (Discontinued by Manufacturer)", "Description": "The sleek PowerShot S3 IS digital camera offers you high resolution, an extra-long zoom, advanced yet easy-to-use movie functions plus great new shooting options. Also, with Image Stabilizer technology, images and movies taken with the S3 IS are sharp and smooth, even when the camera gets jostled. It's everything you need to capture the fun, excitement and beauty of your active life wherever it takes you. The sleek PowerShot S3 IS digital camera offers you high resolution, an extra-long zoom, advanced yet easy-to-use movie functions plus great new shooting options. Also, with Image Stabilizer technology, images and movies taken with the S3 IS are sharp and smooth, even when the camera gets jostled. It's everything you need to capture the fun, excitement and beauty of your active life - wherever it takes you! Successor to the popular PowerShot S2 IS, the latest addition to the PowerShot S-series incorporates a 6.0-megapixel CCD sensor, Canon's renowned optical Image Stabilizer technology, and video functionality rivalling that of dedicated digital video camcorders. Sporting a striking new finish in gunmetal grey, the compact PowerShot S3 IS answers the demands of advanced photographers with several improvements over its predecessor, including an increased sensitivity range of ISO 80 to ISO 800, a larger 2.0-inch vari-angle LCD screen, widescreen (16:9) recording, new movie features, and an additional Sports mode. Canon PowerShot S3 IS features: 12x optical zoom lens with USM and UD lens element Optical Image Stabilizer 6.0-megapixel CCD Larger size 2.0-inch vari-angle LCD 30-frame-per-second (fps) VGA movies with stereo sound and Photo in Movie feature DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results and 2.3 fps continuous shooting performance 20 shooting modes and My Colors photo effects High ISO Auto and ISO 800 for low light flexibility Widescreen (16:9) recording The PowerShot S3 IS caters for serious photo enthusiasts seeking extended zooming flexibility and fully featured movie recording in a versatile compact digital stills camera. Optics Still the most powerful zoom in a Canon digital compact camera (36 to 432mm, f2.7-f.3.5), the PowerShot S3 IS's lens incorporates the same leading technologies used in Canon's professional EF lenses. An Ultra-Sonic Motor (USM) drives rapid and near-silent zoom operation; an Ultra-low Dispersion (UD) lens element significantly reduces chromatic aberration in telephoto shots; Canon's optical Image Stabilizer (IS) technology counteracts camera shake to reduce image blur when shooting stills or recording video, essential for handheld shots at longer focal lengths. IS allows photographers to shoot at shutter speeds up to 3 stops slower for reliable flash-free photography in low light conditions. The PowerShot S3 IS's 12x optical zoom combines with digital zoom to deliver 48x magnification for recording both stills and video. For even wider framing options, optional wide and telephoto converter lenses extend the focal length from wide 27mm to super-tele 648mm (35mm film equivalent) for an impressive 24x optical zoom. A Super Macro mode and optional Close-Up lens 500D (58mm) allow for detailed macro photography. (Optional wide, telephoto, and close-up lenses not included--must be purchased separately.) Increased ISO speed In addition to Image Stabilization, the PowerShot S3 IS features a new High ISO Auto setting and ISO 800 to further extend the camera's low light shooting capabilities. High ISO Auto automatically sets exposure using the higher range of ISO sensitivities, enabling faster shutter speeds in low light and increased image stability at the telephoto end. A dedicated ISO button allows for easy switching between ISO sensitivities. Movie functions Powerful video functions make the PowerShot S3 IS far more than just a high-performance digital still camera. A dedicated movie button means users do not need to switch modes to start recording, so spontaneous moments can be instantly captured in full motion. Users can record smooth 30-frame-per-second VGA quality movies of up to 1 GB with stereo sound, or create 60-frame-per-second QVGA clips for sharp slow-motion playback. The Movie mode also allows users to pre-select exposure and white balance, zoom throughout the camera's focal range, and manually adjust focus while shooting. A Photo In Movie feature enables the capture of full resolution digital stills during video recording. Creative shooting The PowerShot S3 IS offers 20 shooting modes including full Manual mode, Aperture Priority, and Shutter Speed Priority. Together with 2.3-frame-per-second continuous shooting, a new fast-shutter Sports mode with improved autofocus accuracy provides unprecedented capabilities for capturing action sports sequences. Special Scene modes--such as Night Snapshot and Snow--assist with tricky lighting conditions, while Color Accent and Color Swap modes enable dramatic color effects to be applied to both images and movies. Canon's My Colors photo effects have been enhanced for this model, and can now be applied to images both before and after shooting. The PowerShot S3 IS features a new Widescreen mode (2816 x 1584 recording pixels) for capturing still images in 16:9 format--perfect for viewing images on widescreen television or printing wide (10 x 20-centimeter) photos with a Selphy Compact Photo Printer. Printing and other features A new, dedicated Print menu simplifies printing of multiple images. Full PictBridge support means users can print directly to any PictBridge compatible printer without the need for a PC. New PictBridge features include the ability to print shooting data and optimize faces in portrait shots when connected to a compatible Canon PIXMA printer. The camera's ID photo and movie stills features are also available when connected to a Selphy CP Series Printer. A handy Print/Share button allows one-touch printing and easy uploads to Windows or Mac systems. (Printer not included--must be purchased separately.) The camera's menu system now features support for Arabic, bringing the total number of supported languages to 23. Canon technologies explained Optical Image Stabilizer Canon's lens-shift-type optical Image Stabilizer counteracts the camera shake caused by slight hand movements. Vibration sensors detect the angle and speed of movement and send this information to a processor, allowing the camera to compensate. This adds stability to hand-held, telephoto, or moving shots and enables shooting at shutter speeds of up to three stops slower with no noticeable increase in image blur. DIGIC II Canon's purpose-built DIGIC II (DIGital Imaging Core) image processor links all primary camera functions for maximum efficiency. High-speed processing results in outstanding responsiveness, rapid autofocus, and extended continuous shooting ability. Advanced image processing algorithms deliver superb image detail and color reproduction with accurate white balance and minimal noise. DIGIC II operates efficiently to extend battery life, for longer shooting on a single charge. iSAPS iSAPS (Intelligent Scene Analysis based on Photographic Space) automatically optimizes key camera settings before every shot. Each scene is analyzed and cross-referenced against Photographic Space--a vast in-camera library of photographic data. This enables the camera to make optimal adjustments to autoexposure, autofocus, and auto white balance before image capture occurs. 9-Point AiAF Canon's 9-point AiAF (Artificial Intelligence Autofocus) automatically scans and selects subjects from a set of nine focusing areas across the scene. This ensures accurately focused images even when subjects are not in the centre of the frame. FlexiZone AF/AE FlexiZone AF/AE lets users manually select the focus point from almost any point in the frame by moving the autofocus window in the viewfinder. Exposure is linked to the focus point to ensure that the chosen subject is accurately focused and exposed. Ultra-low Dispersion (UD) lens technology No matter how well engineered, conventional optical glass lens elements cause chromatic aberrations which can 'soften' images and appear in photographs as fringing around the outside edge of subjects. Canon's Ultra-low Dispersion (UD) glass has special optical properties to successfully reduce these aberrations. Especially effective in super telephoto lenses, UD glass helps to deliver crisp, sharp, high-contrast images. What's in the Box PowerShot S3 IS body, AA-size alkaline battery (x 4), SD memory card SDC-16MB, lens cap, neck strap NS-DC4, Digital Camera Solution CD-ROM, USB interface cable IFC-400PCU, stereo video cable STV-250N The PowerShot S3 IS caters for serious photo enthusiasts seeking extended zooming flexibility and fully featured movie recording in a versatile compact digital stills camera. Optics Still the most powerful zoom in a Canon digital compact camera (36 to 432mm, f2.7-f.3.5), the PowerShot S3 IS's lens incorporates the same leading technologies used in Canon's professional EF lenses. An Ultra-Sonic Motor (USM) drives rapid and near-silent zoom operation; an Ultra-low Dispersion (UD) lens element significantly reduces chromatic aberration in telephoto shots; Canon's optical Image Stabilizer (IS) technology counteracts camera shake to reduce image blur when shooting stills or recording video, essential for handheld shots at longer focal lengths. IS allows photographers to shoot at shutter speeds up to 3 stops slower for reliable flash-free photography in low light conditions. The PowerShot S3 IS's 12x optical zoom combines with digital zoom to deliver 48x magnification for recording both stills and video. For even wider framing options, optional wide and telephoto converter lenses extend the focal length from wide 27mm to super-tele 648mm (35mm film equivalent) for an impressive 24x optical zoom. A Super Macro mode and optional Close-Up lens 500D (58mm) allow for detailed macro photography. (Optional wide, telephoto, and close-up lenses not included--must be purchased separately.) Increased ISO speed In addition to Image Stabilization, the PowerShot S3 IS features a new High ISO Auto setting and ISO 800 to further extend the camera's low light shooting capabilities. High ISO Auto automatically sets exposure using the higher range of ISO sensitivities, enabling faster shutter speeds in low light and increased image stability at the telephoto end. A dedicated ISO button allows for easy switching between ISO sensitivities. Movie functions Powerful video functions make the PowerShot S3 IS far more than just a high-performance digital still camera. A dedicated movie button means users do not need to switch modes to start recording, so spontaneous moments can be instantly captured in full motion. Users can record smooth 30-frame-per-second VGA quality movies of up to 1 GB with stereo sound, or create 60-frame-per-second QVGA clips for sharp slow-motion playback. The Movie mode also allows users to pre-select exposure and white balance, zoom throughout the camera's focal range, and manually adjust focus while shooting. A Photo In Movie feature enables the capture of full resolution digital stills during video recording. Creative shooting The PowerShot S3 IS offers 20 shooting modes including full Manual mode, Aperture Priority, and Shutter Speed Priority. Together with 2.3-frame-per-second continuous shooting, a new fast-shutter Sports mode with improved autofocus accuracy provides unprecedented capabilities for capturing action sports sequences. Special Scene modes--such as Night Snapshot and Snow--assist with tricky lighting conditions, while Color Accent and Color Swap modes enable dramatic color effects to be applied to both images and movies. Canon's My Colors photo effects have been enhanced for this model, and can now be applied to images both before and after shooting. The PowerShot S3 IS features a new Widescreen mode (2816 x 1584 recording pixels) for capturing still images in 16:9 format--perfect for viewing images on widescreen television or printing wide (10 x 20-centimeter) photos with a Selphy Compact Photo Printer. Printing and other features A new, dedicated Print menu simplifies printing of multiple images. Full PictBridge support means users can print directly to any PictBridge compatible printer without the need for a PC. New PictBridge features include the ability to print shooting data and optimize faces in portrait shots when connected to a compatible Canon PIXMA printer. The camera's ID photo and movie stills features are also available when connected to a Selphy CP Series Printer. A handy Print/Share button allows one-touch printing and easy uploads to Windows or Mac systems. (Printer not included--must be purchased separately.) The camera's menu system now features support for Arabic, bringing the total number of supported languages to 23. Canon technologies explained Optical Image Stabilizer Canon's lens-shift-type optical Image Stabilizer counteracts the camera shake caused by slight hand movements. Vibration sensors detect the angle and speed of movement and send this information to a processor, allowing the camera to compensate. This adds stability to hand-held, telephoto, or moving shots and enables shooting at shutter speeds of up to three stops slower with no noticeable increase in image blur. DIGIC II Canon's purpose-built DIGIC II (DIGital Imaging Core) image processor links all primary camera functions for maximum efficiency. High-speed processing results in outstanding responsiveness, rapid autofocus, and extended continuous shooting ability. Advanced image processing algorithms deliver superb image detail and color reproduction with accurate white balance and minimal noise. DIGIC II operates efficiently to extend battery life, for longer shooting on a single charge. iSAPS iSAPS (Intelligent Scene Analysis based on Photographic Space) automatically optimizes key camera settings before every shot. Each scene is analyzed and cross-referenced against Photographic Space--a vast in-camera library of photographic data. This enables the camera to make optimal adjustments to autoexposure, autofocus, and auto white balance before image capture occurs. 9-Point AiAF Canon's 9-point AiAF (Artificial Intelligence Autofocus) automatically scans and selects subjects from a set of nine focusing areas across the scene. This ensures accurately focused images even when subjects are not in the centre of the frame. FlexiZone AF/AE FlexiZone AF/AE lets users manually select the focus point from almost any point in the frame by moving the autofocus window in the viewfinder. Exposure is linked to the focus point to ensure that the chosen subject is accurately focused and exposed. Ultra-low Dispersion (UD) lens technology No matter how well engineered, conventional optical glass lens elements cause chromatic aberrations which can 'soften' images and appear in photographs as fringing around the outside edge of subjects. Canon's Ultra-low Dispersion (UD) glass has special optical properties to successfully reduce these aberrations. Especially effective in super telephoto lenses, UD glass helps to deliver crisp, sharp, high-contrast images. What's in the Box PowerShot S3 IS body, AA-size alkaline battery (x 4), SD memory card SDC-16MB, lens cap, neck strap NS-DC4, Digital Camera Solution CD-ROM, USB interface cable IFC-400PCU, stereo video cable STV-250N", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Powered by 4 AA-size batteries (alkaline batteries supplied) , stores images on SD memory cards (16 MB card included) ", "DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results , 2.3-frame-per-second continuous shooting performance ", "12x optical zoom lens with USM and UD lens element , 2.0-inch vari-angle LCD display ", "6.0-megapixel CCD captures enough detail for photo-quality 14 x 19-inch prints ", "20 shooting modes and My Colors photo effects ", "6.0-megapixel CCD captures enough detail for photo-quality 14 x 19-inch prints ", "12x optical zoom lens with USM and UD lens element; 2.0-inch vari-angle LCD display , 20 shooting modes and My Colors photo effects, DIGIC II, iSAPS, and Flexizone AF/AE for fast, precise results; 2.3-frame-per-second continuous shooting performance, Powered by 4 AA-size batteries (alkaline batteries supplied); stores images on SD memory cards (16 MB card included)"], "Price": "$49.79", "options": {}, "option_to_image": {}, "Attributes": ["optical zoom"], "MainImage": "https://m.media-amazon.com/images/I/41In54eEN3L.jpg"}} +{"id": "B07WH2WBF2", "contents": "9\u201d pure beeswax candle set of 20 pieces, deep yellow beeswax candles with natural honey scent and cotton wicks food grade tapers and toppers for everyday use 1102469 be sure you\u2019re getting a quality, healthy candles! there\u2019s something incredibly soothing about the soft warm glow of a candle at night that makes the world seem a little bit simpler and more pleasant. therefore, why not enjoy the charm of candlelight and be confident your indoor air quality is actually improving? it can happen, but not with your standard candle. this is because store-bought paraffin candles are made from chemical wax and are not good for your breathing. one fabulous alternative to paraffin candles is a natural beeswax candle. did you know that beeswax candles are a natural air-purifier? they work through a process called negative ionization when these negative ions will attach to positively charged particles in the air, such as dust and pollen. these new clumps of particles become heavier, allowing gravity to pull them down where they can be swept. but the golden glow and long burn time are just the beginning of a handmade beeswax candle\u2019s charm. unlike paraffin candles they burn clean and bright while releasing a faint honey scent. beeswax candles have a higher melting point than many other waxes, and so the candles remain upright in hot weather. yet you cannot just light your beeswax candle and walk away. all burning candles need some maintenance and they should never be left unattended. not all natural beeswax candles is the same color. if the bees were on clover the beeswax will be lighter than if they were on buckwheat. it is lighter or darker depending on the flowers the bees have been able to forage. enjoy the diversity! note: not everyone knows that \u2019bloom\u2019 on beeswax candles is a good thing. only 100% pure beeswax will \u2018bloom\u2019 as the candles have been subjected to many temperature changes. if you prefer your beeswax candles polished and shiny then just warm them to a room temperature or try a lifehack - use a hair fan and in no time candles will look fresh like they had been recently poured. natural beeswax candles, 20 pieces, 9 inches size: 7 in, 9 in, 12 in, and style: 30, 45, 10, 20, 40, 50", "product": {"name": "9\u201d Pure Beeswax Candle Set of 20 Pieces, deep Yellow Beeswax Candles with Natural Honey Scent and Cotton Wicks Food Grade tapers and Toppers for Everyday use 1102469", "full_description": "Be sure you\u2019re getting a quality, healthy candles! There\u2019s something incredibly soothing about the soft warm glow of a candle at night that makes the world seem a little bit simpler and more pleasant. Therefore, why not enjoy the charm of candlelight and be confident your indoor air quality is actually improving? It can happen, but not with your standard candle. This is because store-bought paraffin candles are made from chemical wax and are not good for your breathing. One fabulous alternative to paraffin candles is a natural beeswax candle. Did you know that beeswax candles are a natural air-purifier? They work through a process called negative ionization when these negative ions will attach to positively charged particles in the air, such as dust and pollen. These new clumps of particles become heavier, allowing gravity to pull them down where they can be swept. But the golden glow and long burn time are just the beginning of a handmade beeswax candle\u2019s charm. Unlike paraffin candles they burn clean and bright while releasing a faint honey scent. Beeswax candles have a higher melting point than many other waxes, and so the candles remain upright in hot weather. Yet you cannot just light your beeswax candle and walk away. All burning candles need some maintenance and they should NEVER BE LEFT UNATTENDED. Not all natural beeswax candles is the same color. If the bees were on clover the beeswax will be lighter than if they were on buckwheat. It is lighter or darker depending on the flowers the bees have been able to forage. Enjoy the diversity! NOTE: Not everyone knows that \u2019bloom\u2019 on beeswax candles is a good thing. Only 100% pure beeswax will \u2018bloom\u2019 as the candles have been subjected to many temperature changes. If you prefer your beeswax candles polished and shiny then just warm them to a room temperature or try a lifehack - use a hair fan and in no time candles will look fresh like they had been recently poured.", "pricing": [11.99], "images": ["https://m.media-amazon.com/images/I/51uXoatWECL.jpg", "https://m.media-amazon.com/images/I/41C8MSYW3DL.jpg", "https://m.media-amazon.com/images/I/41vn+f+eFIL.jpg", "https://m.media-amazon.com/images/I/51IwwmhbGxL.jpg", "https://m.media-amazon.com/images/I/41Gvz9mEnSL.jpg", "https://m.media-amazon.com/images/I/41o5PzT9bkL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Candles & Holders \u203a Candles \u203a Candle Sets", "average_rating": 3.4, "small_description": ["Natural Beeswax Candles, 20 pieces, 9 inches ", "Pure cotton wick - burn purely and dripless ", "Natural honey scent - healthy aromatherapy ", "Eco-friendly candles for home, decor, party and birthday cakes, religious purposes "], "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07QM7DFFG/ref=twister_B096W6M6JT", "value": "7 in", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "9 in", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08T5XP2TF/ref=twister_B096W6M6JT?_encoding=UTF8&psc=1", "value": "12 in", "price_string": "", "price": 0, "image": null}], "Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07WG33N1L/ref=twister_B096W6M6JT", "value": "30", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07QM7DFFG/ref=twister_B096W6M6JT", "value": "45", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WH2WTRQ/ref=twister_B096W6M6JT?_encoding=UTF8&psc=1", "value": "10", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "20", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WJ5XL4P/ref=twister_B096W6M6JT?_encoding=UTF8&psc=1", "value": "40", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WJ5MKTT/ref=twister_B096W6M6JT?_encoding=UTF8&psc=1", "value": "50", "price_string": "", "price": 0, "image": null}]}, "asin": "B07WH2WBF2", "category": "garden", "query": "candles", "page": 279, "Title": "9\u201d Pure Beeswax Candle Set of 20 Pieces, deep Yellow Beeswax Candles with Natural Honey Scent and Cotton Wicks Food Grade tapers and Toppers for Everyday use 1102469", "Description": "Be sure you\u2019re getting a quality, healthy candles! There\u2019s something incredibly soothing about the soft warm glow of a candle at night that makes the world seem a little bit simpler and more pleasant. Therefore, why not enjoy the charm of candlelight and be confident your indoor air quality is actually improving? It can happen, but not with your standard candle. This is because store-bought paraffin candles are made from chemical wax and are not good for your breathing. One fabulous alternative to paraffin candles is a natural beeswax candle. Did you know that beeswax candles are a natural air-purifier? They work through a process called negative ionization when these negative ions will attach to positively charged particles in the air, such as dust and pollen. These new clumps of particles become heavier, allowing gravity to pull them down where they can be swept. But the golden glow and long burn time are just the beginning of a handmade beeswax candle\u2019s charm. Unlike paraffin candles they burn clean and bright while releasing a faint honey scent. Beeswax candles have a higher melting point than many other waxes, and so the candles remain upright in hot weather. Yet you cannot just light your beeswax candle and walk away. All burning candles need some maintenance and they should NEVER BE LEFT UNATTENDED. Not all natural beeswax candles is the same color. If the bees were on clover the beeswax will be lighter than if they were on buckwheat. It is lighter or darker depending on the flowers the bees have been able to forage. Enjoy the diversity! NOTE: Not everyone knows that \u2019bloom\u2019 on beeswax candles is a good thing. Only 100% pure beeswax will \u2018bloom\u2019 as the candles have been subjected to many temperature changes. If you prefer your beeswax candles polished and shiny then just warm them to a room temperature or try a lifehack - use a hair fan and in no time candles will look fresh like they had been recently poured.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Natural Beeswax Candles, 20 pieces, 9 inches ", "Pure cotton wick - burn purely and dripless ", "Natural honey scent - healthy aromatherapy ", "Eco-friendly candles for home, decor, party and birthday cakes, religious purposes "], "Price": "$11.99", "options": {"size": ["7 in", "9 in", "12 in"], "style": ["30", "45", "10", "20", "40", "50"]}, "option_to_image": {"7 in": null, "9 in": null, "12 in": null, "30": null, "45": null, "10": null, "20": null, "40": null, "50": null}, "Attributes": ["eco friendly", "home decor"], "MainImage": "https://m.media-amazon.com/images/I/51uXoatWECL.jpg"}} +{"id": "B08NFLLK8P", "contents": "1 factory radio audio equipment radio amplifier compatible with 2001-2005 chevrolet cavalier 9393191 1 factory radio audio equipment radio amplifier compatible with 2001-2005 chevrolet cavalier 9393191. 2001-2005 chevrolet cavalier audio equipment radio amplifier -- no unlock code required -- professionally remanufactured and 100% working order. item may have normal signs of wear. part number: 9393191 interchange part number: 638-01348 compatible part number: 22670845, 22670845 option code: none this is a professionally remanufactured audio equipment radio amplifier that fits 2001-2005 chevrolet cavalier. please see pictures for more cosmetic details. this item has been cleaned, serviced as needed and thoroughly checked. function is in 100% working order! this unit is being sold as a replacement only! the part number is 9393191. if you do not have this exact part number, or compatible part number currently in your vehicle, it will likely not work. if you are unsure of your part number, contact us with your vin and they should be able to provide you with the correct part number. they may look the same and have the same plugs but data streams may be different, not allowing them to code. for example, external amps are used in some cars and will not allow interchange, etc. please verify that this is the item you require before purchase. the item you receive will be as pictured and described. thank you for your purchase! professionally remanufactured oem unit ", "product": {"name": "1 Factory Radio Audio Equipment Radio Amplifier Compatible with 2001-2005 Chevrolet Cavalier 9393191", "full_description": "1 Factory Radio Audio Equipment Radio Amplifier Compatible with 2001-2005 Chevrolet Cavalier 9393191. 2001-2005 Chevrolet Cavalier Audio Equipment Radio Amplifier -- No Unlock Code Required -- Professionally remanufactured and 100% working order. Item may have normal signs of wear. Part Number: 9393191 Interchange Part Number: 638-01348 Compatible Part Number: 22670845, 22670845 Option Code: None This is a Professionally Remanufactured Audio Equipment Radio Amplifier that fits 2001-2005 Chevrolet Cavalier. Please see pictures for more cosmetic details. This item has been cleaned, serviced as needed and thoroughly checked. Function is in 100% working order! This unit is being sold as a REPLACEMENT ONLY! The part number is 9393191. If you do not have this exact part number, or compatible part number currently in your vehicle, it will likely NOT WORK. If you are unsure of your part number, contact us with your VIN and they should be able to provide you with the correct part number. They may look the same and have the same plugs but data streams may be different, not allowing them to code. For example, external amps are used in some cars and will not allow interchange, etc. Please verify that this is the item you require before purchase. The item you receive will be as pictured and described. Thank you for your purchase!", "pricing": [75.0], "images": ["https://m.media-amazon.com/images/I/31+JYbiT+UL.jpg", "https://m.media-amazon.com/images/I/31YTSVR+5KL.jpg", "https://m.media-amazon.com/images/I/414EdXqoh5L.jpg", "https://m.media-amazon.com/images/I/31--MidU0rL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Car & Vehicle Electronics \u203a Car Electronics \u203a Car Audio \u203a Car Stereo Receivers", "average_rating": "", "small_description": ["Professionally Remanufactured OEM Unit ", "Audio Equipment Radio Amplifier ", "Part Number: 9393191 | Interchange Part Number: 638-01348 ", "Compatible with 2001-2005 Chevrolet Cavalier ", "Technical Support Powered By 1 Factory Radio "], "customization_options": "", "asin": "B08NFLLK8P", "category": "electronics", "query": "av receivers & amplifiers", "page": 112, "Title": "1 Factory Radio Audio Equipment Radio Amplifier Compatible with 2001-2005 Chevrolet Cavalier 9393191", "Description": "1 Factory Radio Audio Equipment Radio Amplifier Compatible with 2001-2005 Chevrolet Cavalier 9393191. 2001-2005 Chevrolet Cavalier Audio Equipment Radio Amplifier -- No Unlock Code Required -- Professionally remanufactured and 100% working order. Item may have normal signs of wear. Part Number: 9393191 Interchange Part Number: 638-01348 Compatible Part Number: 22670845, 22670845 Option Code: None This is a Professionally Remanufactured Audio Equipment Radio Amplifier that fits 2001-2005 Chevrolet Cavalier. Please see pictures for more cosmetic details. This item has been cleaned, serviced as needed and thoroughly checked. Function is in 100% working order! This unit is being sold as a REPLACEMENT ONLY! The part number is 9393191. If you do not have this exact part number, or compatible part number currently in your vehicle, it will likely NOT WORK. If you are unsure of your part number, contact us with your VIN and they should be able to provide you with the correct part number. They may look the same and have the same plugs but data streams may be different, not allowing them to code. For example, external amps are used in some cars and will not allow interchange, etc. Please verify that this is the item you require before purchase. The item you receive will be as pictured and described. Thank you for your purchase!", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Professionally Remanufactured OEM Unit ", "Audio Equipment Radio Amplifier ", "Part Number: 9393191 | Interchange Part Number: 638-01348 ", "Compatible with 2001-2005 Chevrolet Cavalier ", "Technical Support Powered By 1 Factory Radio "], "Price": "$75.0", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/31+JYbiT+UL.jpg"}} +{"id": "B07BB1FJV8", "contents": "edna wig color fs4/30 - foxy silver wigs short pixie wispy fringe synthetic straight layers african american women's machine wefted lightweight average cap bundle with maxwigs hairloss booklet the edna synthetic wig by alicia beauty is a short pixie style. this wig has shorter layers at the top to create volume and natural lift. the shorter straight side layers can be smoothed down or worn fuller. wispy fringe gives the perfect amount of coverage toward the front. it is made from superior synthetic kanekalon fibers. so the fibers hold the style all day long. edna features a machine wefted cap construction that is lightweight and comfortable. the foxy silver collection offer high quality wigs for women that feature machine wefted lightweight caps for fabulous hair - everyday. edna wig color fs4/30 - foxy silver wigs short pixie wispy fringe synthetic straight layers african american women's machine wefted lightweight average cap bundle with maxwigs hairloss booklet edna wig color fs4/30 - foxy silver wigs short pixie wispy fringe synthetic straight layers african american women's machine wefted lightweight average cap bundle with maxwigs hairloss booklet color: 1 black, 1b, 2, 3t280, 3t34, 3t44, 3t51, 4 medium dark brown, fs1b | 30, fs4 | 27, fs4 | 30, white", "product": {"name": "Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet", "full_description": "The Edna Synthetic Wig by Alicia Beauty is a short pixie style. This wig has shorter layers at the top to create volume and natural lift. The shorter straight side layers can be smoothed down or worn fuller. Wispy fringe gives the perfect amount of coverage toward the front. It is made from superior synthetic Kanekalon fibers. So the fibers hold the style all day long. Edna features a machine wefted cap construction that is lightweight and comfortable. The Foxy Silver Collection offer high quality wigs for women that feature machine wefted lightweight caps for fabulous hair - everyday. Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet", "pricing": [36.69], "images": ["https://m.media-amazon.com/images/I/512H6v6aqbL.jpg", "https://m.media-amazon.com/images/I/511YkccAuiL.jpg", "https://m.media-amazon.com/images/I/410KRXqpWXL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Wigs", "average_rating": 4, "small_description": ["Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet ", "Designed using only high quality Kanekalon synthetic fibers, this hair cut simulates the appearance of real human hair with lightweight precision and soft texture. ", "Model shows 3T34, but the listing is for FS4/30 ", "A machine-stitched standard wig cap allows long-lasting comfort, durability, and security which works as hard as you do. Available in several solid and highlighted colors, the Mary synthetic wig is one easy style that's ready to go whenever you are. ", "Short Length, Average Cap (21.5\" - 22.5\" Circumference), (13.5\" Ear to Ear), (14.5\" Front to Back) "], "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07B9ZD3J9/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "1 Black", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51v9Hn1YZXL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BB1BLM3/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "1B", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/5182CohvejL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9ZJXCS/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "2", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51LP7rKYWzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9YRTXY/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "3T280", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51Erptuz-ZL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9ZBLTQ/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "3T34", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51gOp16HgPL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9YHWJF/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "3T44", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51kydsFcIDL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9Z5R3Z/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "3T51", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51ENpVS23lL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9Z926N/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "4 Medium Dark Brown", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51xx+RYNMQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9YX9W7/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "FS1B/30", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51fFYjweylL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9ZV6VV/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "FS4/27", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/51R6YoMdO2L.jpg"}, {"is_selected": true, "url": null, "value": "FS4/30", "price_string": "$36.69", "price": 36.69, "image": "https://m.media-amazon.com/images/I/511YkccAuiL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07B9YLTPC/ref=twister_B07B9YWNDL?_encoding=UTF8&psc=1", "value": "White", "price_string": "$39.06", "price": 39.06, "image": "https://m.media-amazon.com/images/I/41B9gMDVRvL.jpg"}]}, "asin": "B07BB1FJV8", "category": "beauty", "query": "hair loss products", "page": 66, "Title": "Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet", "Description": "The Edna Synthetic Wig by Alicia Beauty is a short pixie style. This wig has shorter layers at the top to create volume and natural lift. The shorter straight side layers can be smoothed down or worn fuller. Wispy fringe gives the perfect amount of coverage toward the front. It is made from superior synthetic Kanekalon fibers. So the fibers hold the style all day long. Edna features a machine wefted cap construction that is lightweight and comfortable. The Foxy Silver Collection offer high quality wigs for women that feature machine wefted lightweight caps for fabulous hair - everyday. Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Edna Wig Color FS4/30 - Foxy Silver Wigs Short Pixie Wispy Fringe Synthetic Straight Layers African American Women's Machine Wefted Lightweight Average Cap Bundle with MaxWigs Hairloss Booklet ", "Designed using only high quality Kanekalon synthetic fibers, this hair cut simulates the appearance of real human hair with lightweight precision and soft texture. ", "Model shows 3T34, but the listing is for FS4/30 ", "A machine-stitched standard wig cap allows long-lasting comfort, durability, and security which works as hard as you do. Available in several solid and highlighted colors, the Mary synthetic wig is one easy style that's ready to go whenever you are. ", "Short Length, Average Cap (21.5\" - 22.5\" Circumference), (13.5\" Ear to Ear), (14.5\" Front to Back) "], "Price": "$36.69", "options": {"color": ["1 black", "1b", "2", "3t280", "3t34", "3t44", "3t51", "4 medium dark brown", "fs1b | 30", "fs4 | 27", "fs4 | 30", "white"]}, "option_to_image": {"1 black": "https://m.media-amazon.com/images/I/51v9Hn1YZXL.jpg", "1b": "https://m.media-amazon.com/images/I/5182CohvejL.jpg", "2": "https://m.media-amazon.com/images/I/51LP7rKYWzL.jpg", "3t280": "https://m.media-amazon.com/images/I/51Erptuz-ZL.jpg", "3t34": "https://m.media-amazon.com/images/I/51gOp16HgPL.jpg", "3t44": "https://m.media-amazon.com/images/I/51kydsFcIDL.jpg", "3t51": "https://m.media-amazon.com/images/I/51ENpVS23lL.jpg", "4 medium dark brown": "https://m.media-amazon.com/images/I/51xx+RYNMQL.jpg", "fs1b | 30": "https://m.media-amazon.com/images/I/51fFYjweylL.jpg", "fs4 | 27": "https://m.media-amazon.com/images/I/51R6YoMdO2L.jpg", "fs4 | 30": "https://m.media-amazon.com/images/I/511YkccAuiL.jpg", "white": "https://m.media-amazon.com/images/I/41B9gMDVRvL.jpg"}, "Attributes": ["long lasting", "high quality"], "MainImage": "https://m.media-amazon.com/images/I/512H6v6aqbL.jpg"}} +{"id": "B01HQTWL6S", "contents": "expression tees pug life funny thug life unisex adult hoodie our professionally printed adult hoodies are preshrunk 50% cotton/50% polyester pill-resistant fleece. they feature a double-ply hood, with matching tipped and knotted drawcord. ribbed cuffs and waistband and a front pouch pocket.printed and designed in the u.s.a. using top quality garments for comfort and style. we use state of the art equipment to ensure vibrant colors and lasting durability on every piece of clothing apparel we sell.recommended care instructions - machine wash cold, inside out, with like colors. only non-chlorine bleach. tumble dry medium. do not iron. do not dry clean. 50% polyester, 50% cotton size: small, medium, large, x-large, xx-large, 3x-large, 4x-large, and color: black, charcoal grey, forest green, heather grey, kelly green, maroon, navy blue, red, royal blue, white, cotton candy, sand camo, vintage camo", "product": {"name": "Expression Tees Pug Life Funny Thug Life Unisex Adult Hoodie", "full_description": "Our professionally printed Adult Hoodies are preshrunk 50% cotton/50% polyester pill-resistant fleece. They feature a double-ply hood, with matching tipped and knotted drawcord. Ribbed cuffs and waistband and a front pouch pocket.Printed and designed in the U.S.A. using top quality garments for comfort and style. We use state of the art equipment to ensure vibrant colors and lasting durability on every piece of clothing apparel we sell.Recommended Care Instructions - Machine wash cold, inside out, with like colors. Only non-chlorine bleach. Tumble dry medium. Do not iron. Do not dry clean.", "pricing": [36.99, 48.99], "images": ["https://m.media-amazon.com/images/I/41EG6AoafEL.jpg", "https://m.media-amazon.com/images/I/51IdjA754gL.jpg", "https://m.media-amazon.com/images/I/41mBNpHMQkL.jpg", "https://m.media-amazon.com/images/I/51q6X1+wT0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Novelty & More \u203a Clothing \u203a Novelty \u203a Women \u203a Hoodies", "average_rating": 4.6, "small_description": ["50% Polyester, 50% Cotton ", "Pull On closure ", "Machine Wash ", "Thug life? More like Pug Life ", "snug as a pug on a rug ", "Printed and designed in the U.S.A. using top quality garments for comfort and style. We use state of the art equipment to ensure vibrant colors and lasting durability on every piece of clothing apparel we sell ", "Our Adult Hoodies are 8 oz. preshrunk 50% cotton/50% polyester pill-resistant fleece. They feature a double-ply hood, with matching tipped and knotted drawcord. Ribbed cuffs and waistband and a front pouch pocket. ", "Recommended Care Instructions - Machine wash cold, inside out, with like colors. Only non-chlorine bleach. Tumble dry medium. Do not iron. Do not dry clean. Makes a perfect gift for Christmas, Birthdays or any Holiday or special event "], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B01HQTWIRK"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B01HQTWJD8"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B01HQTWK5K"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B01HQTWKLY"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B01HQTWL6S"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09Q4H2GQX"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B09Q49WR64"}], "Color": [{"is_selected": true, "url": null, "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51WJGS3SS-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTWM80/ref=twister_B01HQTWIGQ", "value": "Charcoal Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pHWclpVgL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTWUHS/ref=twister_B01HQTWIGQ", "value": "Forest Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51zTI74wysL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTX08Q/ref=twister_B01HQTWIGQ", "value": "Heather Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61Cm2muI2XL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTX4C8/ref=twister_B01HQTWIGQ", "value": "Kelly Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oaEJdo7cL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTX68U/ref=twister_B01HQTWIGQ", "value": "Maroon", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51pnmrCl7gL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTX8QK/ref=twister_B01HQTWIGQ", "value": "Navy Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51oGnpFEeFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTXESC/ref=twister_B01HQTWIGQ", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51yvSJ2v9NL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTXGKI/ref=twister_B01HQTWIGQ", "value": "Royal Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51n-zm5zCHL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01HQTUO5I/ref=twister_B01HQTWIGQ", "value": "White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41qWqY9uwML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07QGKQW3F/ref=twister_B01HQTWIGQ", "value": "Cotton Candy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41oXy4WLldL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09Q4WJNZX/ref=twister_B01HQTWIGQ", "value": "Sand Camo", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51jGSDdEGpL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09GGD279X/ref=twister_B01HQTWIGQ", "value": "Vintage Camo", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/61dEUFrJImS.jpg"}]}, "asin": "B01HQTWL6S", "category": "fashion", "query": "women's fashion hoodies & sweatshirts", "page": 191, "Title": "Expression Tees Pug Life Funny Thug Life Unisex Adult Hoodie", "Description": "Our professionally printed Adult Hoodies are preshrunk 50% cotton/50% polyester pill-resistant fleece. They feature a double-ply hood, with matching tipped and knotted drawcord. Ribbed cuffs and waistband and a front pouch pocket.Printed and designed in the U.S.A. using top quality garments for comfort and style. We use state of the art equipment to ensure vibrant colors and lasting durability on every piece of clothing apparel we sell.Recommended Care Instructions - Machine wash cold, inside out, with like colors. Only non-chlorine bleach. Tumble dry medium. Do not iron. Do not dry clean.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["50% Polyester, 50% Cotton ", "Pull On closure ", "Machine Wash ", "Thug life? More like Pug Life ", "snug as a pug on a rug ", "Printed and designed in the U.S.A. using top quality garments for comfort and style. We use state of the art equipment to ensure vibrant colors and lasting durability on every piece of clothing apparel we sell ", "Our Adult Hoodies are 8 oz. preshrunk 50% cotton/50% polyester pill-resistant fleece. They feature a double-ply hood, with matching tipped and knotted drawcord. Ribbed cuffs and waistband and a front pouch pocket. ", "Recommended Care Instructions - Machine wash cold, inside out, with like colors. Only non-chlorine bleach. Tumble dry medium. Do not iron. Do not dry clean. Makes a perfect gift for Christmas, Birthdays or any Holiday or special event "], "Price": "$36.99 to $48.99", "options": {"size": ["small", "medium", "large", "x-large", "xx-large", "3x-large", "4x-large"], "color": ["black", "charcoal grey", "forest green", "heather grey", "kelly green", "maroon", "navy blue", "red", "royal blue", "white", "cotton candy", "sand camo", "vintage camo"]}, "option_to_image": {"small": null, "medium": null, "large": null, "x-large": null, "xx-large": null, "3x-large": null, "4x-large": null, "black": "https://m.media-amazon.com/images/I/51WJGS3SS-L.jpg", "charcoal grey": "https://m.media-amazon.com/images/I/51pHWclpVgL.jpg", "forest green": "https://m.media-amazon.com/images/I/51zTI74wysL.jpg", "heather grey": "https://m.media-amazon.com/images/I/61Cm2muI2XL.jpg", "kelly green": "https://m.media-amazon.com/images/I/51oaEJdo7cL.jpg", "maroon": "https://m.media-amazon.com/images/I/51pnmrCl7gL.jpg", "navy blue": "https://m.media-amazon.com/images/I/51oGnpFEeFL.jpg", "red": "https://m.media-amazon.com/images/I/51yvSJ2v9NL.jpg", "royal blue": "https://m.media-amazon.com/images/I/51n-zm5zCHL.jpg", "white": "https://m.media-amazon.com/images/I/41qWqY9uwML.jpg", "cotton candy": "https://m.media-amazon.com/images/I/41oXy4WLldL.jpg", "sand camo": "https://m.media-amazon.com/images/I/51jGSDdEGpL.jpg", "vintage camo": "https://m.media-amazon.com/images/I/61dEUFrJImS.jpg"}, "Attributes": ["machine wash", "dry clean", "tumble dry", "wash cold"], "MainImage": "https://m.media-amazon.com/images/I/41EG6AoafEL.jpg"}} +{"id": "B09J5HJ8DL", "contents": "tasyl usb adapter for iphone ipad lightning camera adapter usb 3.0 otg cable supports camera, usb flash drive, keyboard, mouse, camera, wireless dongles, bluetooth dongles - multi device adapter cable with charging port for both iphone and ipad. - devices like usb flash drive, ssd drive, dslr camera, wireless keyboard/mouse dongle, printer usb cable, usb webcam, etc can be connected to the ipad or iphone whilst charging the iphone and ipad at the same time. - perfect for power intensive applications like connecting usb flash drives, ssd drives, etc for data transfer of example 4k videos etc wherein your iphone and ipad keeps on charging whilst the usb devices in constant use. - connect midi keyboard etc to your iphone or ipad using this tasyl otg adapter whilst also making sure your phone/tablet is charging. note: you would need respective midi app to work with your musical keyboard etc. [date transfer + charging] phones and tablets battery have limited capacity to power externally connected usb devices so this product is perfect in such situations wherein you can charge your iphone or ipad while also having power hungry usb devices connected. ", "product": {"name": "TASYL USB Adapter for iPhone iPad Lightning Camera Adapter USB 3.0 OTG Cable Supports Camera, USB Flash Drive, Keyboard, Mouse, Camera, Wireless dongles, Bluetooth Dongles", "full_description": "- Multi Device Adapter cable with charging port for both iPhone and iPAD. - Devices like USB Flash drive, SSD drive, DSLR camera, Wireless keyboard/Mouse Dongle, Printer USB cable, USB webcam, etc can be connected to the iPAD or iPhone whilst charging the iPhone and iPAD at the same time. - Perfect for power intensive applications like connecting USB Flash Drives, SSD drives, etc for data transfer of example 4K videos etc wherein your iPhone and iPAD keeps on charging whilst the USB devices in constant use. - Connect MIDI keyboard etc to your iPhone or iPad using this Tasyl OTG adapter whilst also making sure your phone/tablet is charging. Note: You would need respective MIDI App to work with your musical keyboard etc.", "pricing": [13.8], "images": ["https://m.media-amazon.com/images/I/21muq5x2vjL.jpg", "https://m.media-amazon.com/images/I/21Ge6pO0QfL.jpg", "https://m.media-amazon.com/images/I/41r+1az1X5L.jpg", "https://m.media-amazon.com/images/I/41md0DJ1PvL.jpg", "https://m.media-amazon.com/images/I/5161CpI2ldL.jpg", "https://m.media-amazon.com/images/I/31J-O-JXvLL.jpg", "https://m.media-amazon.com/images/I/519a97CkFIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Computers & Accessories \u203a Computer Accessories & Peripherals \u203a Computer Cable Adapters \u203a USB-to-USB Adapters", "average_rating": 4, "small_description": ["[Date transfer + Charging] Phones and tablets battery have limited capacity to power externally connected USB devices so this product is perfect in such situations wherein you can charge your iPhone or iPAD while also having power hungry USB devices connected. ", "[Data Transfer Only mode] You can also use this adapter with all it's features even if charger not connected. Note that for higher current drawing devices like SSD drive and DSLR camera you would need charger to be connected to this adapter charge port. ", "[PowerBank compatible] Charging port can be connected with standard mains powered supplies or even using a powerbank while the adapter feature of this product is in use. Note: This charging port requires a standard lightning connector cable which you use with your iphone/iPAD for charging. ", "[Files App Required] - You would need the free \"Files\" app from App store installed. When connect any device like flash drive to your iphone/iPad then within you will see this flash drive appear as a USB drive within Files App. You can then for example go to Gallery and \"Select\" one or more files from your iPhone or iPAD and then select \"Save to Files\" option and save it to USB drive from there. Any queries then please do contact us. Tested on latest iPAD Pro, iPad 2017, iPhone X and iPhone 13. "], "customization_options": "", "asin": "B09J5HJ8DL", "category": "electronics", "query": "flashes", "page": 162, "Title": "TASYL USB Adapter for iPhone iPad Lightning Camera Adapter USB 3.0 OTG Cable Supports Camera, USB Flash Drive, Keyboard, Mouse, Camera, Wireless dongles, Bluetooth Dongles", "Description": "- Multi Device Adapter cable with charging port for both iPhone and iPAD. - Devices like USB Flash drive, SSD drive, DSLR camera, Wireless keyboard/Mouse Dongle, Printer USB cable, USB webcam, etc can be connected to the iPAD or iPhone whilst charging the iPhone and iPAD at the same time. - Perfect for power intensive applications like connecting USB Flash Drives, SSD drives, etc for data transfer of example 4K videos etc wherein your iPhone and iPAD keeps on charging whilst the USB devices in constant use. - Connect MIDI keyboard etc to your iPhone or iPad using this Tasyl OTG adapter whilst also making sure your phone/tablet is charging. Note: You would need respective MIDI App to work with your musical keyboard etc.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["[Date transfer + Charging] Phones and tablets battery have limited capacity to power externally connected USB devices so this product is perfect in such situations wherein you can charge your iPhone or iPAD while also having power hungry USB devices connected. ", "[Data Transfer Only mode] You can also use this adapter with all it's features even if charger not connected. Note that for higher current drawing devices like SSD drive and DSLR camera you would need charger to be connected to this adapter charge port. ", "[PowerBank compatible] Charging port can be connected with standard mains powered supplies or even using a powerbank while the adapter feature of this product is in use. Note: This charging port requires a standard lightning connector cable which you use with your iphone/iPAD for charging. ", "[Files App Required] - You would need the free \"Files\" app from App store installed. When connect any device like flash drive to your iphone/iPad then within you will see this flash drive appear as a USB drive within Files App. You can then for example go to Gallery and \"Select\" one or more files from your iPhone or iPAD and then select \"Save to Files\" option and save it to USB drive from there. Any queries then please do contact us. Tested on latest iPAD Pro, iPad 2017, iPhone X and iPhone 13. "], "Price": "$13.8", "options": {}, "option_to_image": {}, "Attributes": ["flash drive", "ipad pro", "dslr camera", "usb flash"], "MainImage": "https://m.media-amazon.com/images/I/21muq5x2vjL.jpg"}} +{"id": "B07T3PZ3S9", "contents": "daeng gi meo ri jin gi vitalizing treatment 500 ml anti dandruff and itchiness made in korea (treatment) active ingredient of herbal uturn complex and keratin protein prevent static electicity by providing moisture to frizzy and split hair, and keep hair elastic and shiny. ", "product": {"name": "Daeng Gi Meo Ri Jin Gi Vitalizing Treatment 500 ML Anti Dandruff and Itchiness Made In Korea (Treatment)", "full_description": "", "pricing": [32.0], "images": ["https://m.media-amazon.com/images/I/31g6yDZKVbL.jpg", "https://m.media-amazon.com/images/I/4197+JKA7fL.jpg", "https://m.media-amazon.com/images/I/51175JB6wML.jpg", "https://m.media-amazon.com/images/I/51gcn47g3FL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Shampoo & Conditioner \u203a Shampoos", "average_rating": 4.4, "small_description": ["Active ingredient of herbal Uturn Complex and keratin protein prevent static electicity by providing moisture to frizzy and split hair, and keep hair elastic and shiny. ", "Active ingredient of Changpo(Acorus calamus Linne) water, which is known to be good for hair care traditionally, helps maintain hair's moisture and makes hair smooth and shiny ", "Minimize damage by preventing static hair. ", "How to Use : Apply an appropriate amount towet hair, gently massage the entire hair, leave it on for 1-2 minutes and wash off with lukewarm water. "], "customization_options": {"Scent": null}, "asin": "B07T3PZ3S9", "category": "beauty", "query": "scalp treatments", "page": 74, "Title": "Daeng Gi Meo Ri Jin Gi Vitalizing Treatment 500 ML Anti Dandruff and Itchiness Made In Korea (Treatment)", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Active ingredient of herbal Uturn Complex and keratin protein prevent static electicity by providing moisture to frizzy and split hair, and keep hair elastic and shiny. ", "Active ingredient of Changpo(Acorus calamus Linne) water, which is known to be good for hair care traditionally, helps maintain hair's moisture and makes hair smooth and shiny ", "Minimize damage by preventing static hair. ", "How to Use : Apply an appropriate amount towet hair, gently massage the entire hair, leave it on for 1-2 minutes and wash off with lukewarm water. "], "Price": "$32.0", "options": {}, "option_to_image": {}, "Attributes": ["hair care"], "MainImage": "https://m.media-amazon.com/images/I/31g6yDZKVbL.jpg"}} +{"id": "B07MNW91JH", "contents": "easy works by easy street womens leeza clog, black, 7.5 wide us the easy works \"leeza\" works for you with its twin gore silhouette that ensures it will stay perfectly on your foot throughout your busy day. a padded topline effectively reduces the pressure on your heel and ankle. a soft tricot lining envelopes your foot in cushioned comfort. the orthotic insole is built with a supportive arch cookie, and impact absorbing innovation. developed on a non-marking, slip-resistant outsole that is extremely lightweight making it good to wear for long periods of time. 100% synthetic ", "product": {"name": "Easy Works by Easy Street womens Leeza Clog, Black, 7.5 Wide US", "full_description": "The Easy Works \"Leeza\" works for you with its twin gore silhouette that ensures it will stay perfectly on your foot throughout your busy day. A padded topline effectively reduces the pressure on your heel and ankle. A soft tricot lining envelopes your foot in cushioned comfort. The orthotic insole is built with a supportive arch cookie, and impact absorbing innovation. Developed on a non-marking, slip-resistant outsole that is extremely lightweight making it good to wear for long periods of time.", "pricing": [69.97], "images": ["https://m.media-amazon.com/images/I/41MCUY6lRQL.jpg", "https://m.media-amazon.com/images/I/317obXhdkUL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Mules & Clogs", "average_rating": 3, "small_description": ["100% Synthetic ", "Imported ", "Synthetic sole ", "Slip Resistant Outsole ", "Easy Motion by Easy Street Pro Comfort System ", "Removable Footbed ", "Strap type: mary-jane "], "customization_options": "", "asin": "B07MNW91JH", "category": "fashion", "query": "women's mules & clogs", "page": 105, "Title": "Easy Works by Easy Street womens Leeza Clog, Black, 7.5 Wide US", "Description": "The Easy Works \"Leeza\" works for you with its twin gore silhouette that ensures it will stay perfectly on your foot throughout your busy day. A padded topline effectively reduces the pressure on your heel and ankle. A soft tricot lining envelopes your foot in cushioned comfort. The orthotic insole is built with a supportive arch cookie, and impact absorbing innovation. Developed on a non-marking, slip-resistant outsole that is extremely lightweight making it good to wear for long periods of time.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["100% Synthetic ", "Imported ", "Synthetic sole ", "Slip Resistant Outsole ", "Easy Motion by Easy Street Pro Comfort System ", "Removable Footbed ", "Strap type: mary-jane "], "Price": "$69.97", "options": {}, "option_to_image": {}, "Attributes": ["slip resistant", "synthetic sole"], "MainImage": "https://m.media-amazon.com/images/I/41MCUY6lRQL.jpg"}} +{"id": "B09T756KQ5", "contents": "wenkomg1 men's crewneck goth tee shirts skull print tops spring/summer long sleeve sports t-shirt baggy y2k soft streetwear season:all seasonsgender:menoccasion:daily,casualpattern type: solidstyle:casualsleeve length: fullcollar: crewneckfit:fits ture to sizethickness:standardhow to wash:hand wash cold,hang or line drywhat you get:1 x shirt \ud83d\udc55\ud83d\udc56logistics size\ud83d\udc55\ud83d\udc56standard lead time:8-16 days.expedited delivery:3-7 days.shipped within 24 hours. not us size, so i suggest you buy a size or two bigger. or check the size chart to buy. size: small, medium, large, x-large, xx-large, 3x-large, 4x-large, 5x-large, and color: a-bk1, a-bk2, a-bk3, a-bk4, a-bk5, a-blue, b-bk1, b-bk2, b-bk3, b-bk4, b-bk5, b-white", "product": {"name": "WENKOMG1 Men's Crewneck Goth Tee Shirts Skull Print Tops Spring/Summer Long Sleeve Sports T-Shirt Baggy Y2K Soft Streetwear", "full_description": "Season:All seasonsGender:MenOccasion:Daily,CasualPattern Type: SolidStyle:CasualSleeve length: FullCollar: CrewneckFit:Fits ture to sizeThickness:StandardHow to wash:Hand wash Cold,Hang or Line DryWhat you get:1 X Shirt", "pricing": [4.09, 8.09], "images": ["https://m.media-amazon.com/images/I/41vSoiTGj-L.jpg", "https://m.media-amazon.com/images/I/41yXTv07IJL.jpg", "https://m.media-amazon.com/images/I/41D812K5fEL.jpg", "https://m.media-amazon.com/images/I/41X22B+LiCL.jpg", "https://m.media-amazon.com/images/I/51-IT8l2WBL.jpg", "https://m.media-amazon.com/images/I/51U1wSByjxL.jpg", "https://m.media-amazon.com/images/I/512VGIaPv0L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Shirts \u203a T-Shirts", "average_rating": "", "small_description": ["\ud83d\udc55\ud83d\udc56Logistics size\ud83d\udc55\ud83d\udc56Standard lead time:8-16 days.Expedited delivery:3-7 days.Shipped within 24 hours. Not US size, So I suggest you buy a size or two bigger. Or check the size chart to buy. ", "Imported ", "Polyester lining ", "\ud83d\udc55\ud83d\udc56Best Gifts\ud83d\udc55\ud83d\udc56Great for Father's Day,Valentine's Day, Halloween, Christmas, 4th of july, Daily, Lounge Wear, Party, Hang Out With Friends, Dating, School, Holiday, Travel, Vacation, Office, Work, Also Great Gifts For Families/Friends. closure ", "\ud83d\udc55\ud83d\udc56100% satisfied\ud83d\udc55\ud83d\udc56 We sell men's clothing. If you have any questions, you can ask us and we will serve you within 24 hours. Search the WENKOMG1 store on Amazon to get more of our products. ", "tee shirts womens t shirts graphic tees graphic tees for women tee shirts womens slim fit tee shirts for men long sleeve tee shirts white shirt long sleeve tee shirts for women tees t-shirts for women graphic tees short sleeve tee shirts for women funny tee shirts men's t-shirts & tanks tshirt white tee shirts for women womens tee shirts mens funny tee shirts polo tee shirts for men tee shirts for girls mens long sleeve tee shirts tee shirts for women loose fit mens shirts ", "short sleeve tops for women basic crop top women clothing tops cold shoulder tops for women long sleeve crop tops tunic tops to wear with leggings leopard print tops for women tank top women's summer tops tank tops men long sleeve tops for girls spring tops for women 2021 red tops for women going out tops christmas tops for women white crop top long sleeve crop top tunic tops ladies tops womens crop top womens tunic tops crop tops for teen girls workout tank tops for women , blazers for women fashion casual jackets for women blazer dress blazer women casual blazer long blazer blazer for women red blazer for women mens blazer blue blazer sequin blazer blazer women's blazers & suit jackets blazer for men black blazer for women blazer for kids sequin jackets for women mens sport coats and blazers casual blazer for women blazer dress for women blazer jacket for men womens blazers and jackets professional womens blazer womens jackets and blazers men blazer, Mens Draped Cardigans Long Sleeve with Hooded Pockets Long Shawl Ruffle Men's S-5X Short/Long Sleeve Fashion Athletic Hoodies Sport Sweatshirt Hip Hop Pullover Mens Slim Fit Long Sleeve Lightweight Cotton Blend Pullover Hoodie With Kanga Pocket Men's Casual Hooded T-Shirts - Fashion Short Sleeve Solid Color Pullover Top Summer Blouse Men's Pullover Hoodies Plaid Jacquard Long Sleeve Drawstring Hipster Casual Hooded Sweatshirts with Kanga Pockets Men's Casual Long Sleeve Round, Quick Dry Short Sleeves Polo Tee T-Shirt Tops Men\u2019s Big and Tall Advantage Performance Stretch Short Sleeve Solid Polo Shirt Mens Summer Slim Fit Contrast Color Stitching Stripe Short Sleeve Polo Casual T-Shirts Men's Big & Tall Short Sleeve Jersey Knit Polo Shirt Men's Short Sleeve Sparkle Sequins Polo 70s Disco Nightclub Party T-Shirts Men's Big and Tall Classic Fit Short Sleeve Solid Performance Deck Polo Shirt Men's Polo Shirt Casual Long Short Sleeve Classic Fashion"], "customization_options": {"Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B09T712QVF"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B09T734C68"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B09T756KQ5"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B09T73PLTG"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B09T768BD6"}, {"is_selected": false, "is_available": true, "value": "3X-Large", "asin": "B09T73B9B7"}, {"is_selected": false, "is_available": true, "value": "4X-Large", "asin": "B09T75KJBF"}, {"is_selected": false, "is_available": true, "value": "5X-Large", "asin": "B09T72XHV8"}], "Color": [{"is_selected": true, "url": null, "value": "A-bk1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41vSoiTGj-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T73TNL2/ref=twister_B09T73JSTF", "value": "A-bk2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41fJXC+qKBL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T72JNPX/ref=twister_B09T73JSTF", "value": "A-bk3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51nJCBdwLML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T734S3Q/ref=twister_B09T73JSTF", "value": "A-bk4", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41pemK7Gp+L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T741D9S/ref=twister_B09T73JSTF", "value": "A-bk5", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/4101PF3SxFL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T738FNJ/ref=twister_B09T73JSTF", "value": "A-blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gHUYkEjML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T75T2MR/ref=twister_B09T73JSTF", "value": "B-bk1", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41-9pWocmCL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T74N92J/ref=twister_B09T73JSTF", "value": "B-bk2", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41LgCuiUg-L.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T74HSWY/ref=twister_B09T73JSTF", "value": "B-bk3", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41r1YD1vngL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T75C8XL/ref=twister_B09T73JSTF", "value": "B-bk4", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Gy1dQA3rL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T736VJ8/ref=twister_B09T73JSTF", "value": "B-bk5", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Rio4pyfnL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09T73N7F4/ref=twister_B09T73JSTF", "value": "B-white", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/413fD99xLnL.jpg"}]}, "asin": "B09T756KQ5", "category": "fashion", "query": "men's tuxedo shirts", "page": 205, "Title": "WENKOMG1 Men's Crewneck Goth Tee Shirts Skull Print Tops Spring/Summer Long Sleeve Sports T-Shirt Baggy Y2K Soft Streetwear", "Description": "Season:All seasonsGender:MenOccasion:Daily,CasualPattern Type: SolidStyle:CasualSleeve length: FullCollar: CrewneckFit:Fits ture to sizeThickness:StandardHow to wash:Hand wash Cold,Hang or Line DryWhat you get:1 X Shirt", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\ud83d\udc55\ud83d\udc56Logistics size\ud83d\udc55\ud83d\udc56Standard lead time:8-16 days.Expedited delivery:3-7 days.Shipped within 24 hours. Not US size, So I suggest you buy a size or two bigger. Or check the size chart to buy. ", "Imported ", "Polyester lining ", "\ud83d\udc55\ud83d\udc56Best Gifts\ud83d\udc55\ud83d\udc56Great for Father's Day,Valentine's Day, Halloween, Christmas, 4th of july, Daily, Lounge Wear, Party, Hang Out With Friends, Dating, School, Holiday, Travel, Vacation, Office, Work, Also Great Gifts For Families/Friends. closure ", "\ud83d\udc55\ud83d\udc56100% satisfied\ud83d\udc55\ud83d\udc56 We sell men's clothing. If you have any questions, you can ask us and we will serve you within 24 hours. Search the WENKOMG1 store on Amazon to get more of our products. ", "tee shirts womens t shirts graphic tees graphic tees for women tee shirts womens slim fit tee shirts for men long sleeve tee shirts white shirt long sleeve tee shirts for women tees t-shirts for women graphic tees short sleeve tee shirts for women funny tee shirts men's t-shirts & tanks tshirt white tee shirts for women womens tee shirts mens funny tee shirts polo tee shirts for men tee shirts for girls mens long sleeve tee shirts tee shirts for women loose fit mens shirts ", "short sleeve tops for women basic crop top women clothing tops cold shoulder tops for women long sleeve crop tops tunic tops to wear with leggings leopard print tops for women tank top women's summer tops tank tops men long sleeve tops for girls spring tops for women 2021 red tops for women going out tops christmas tops for women white crop top long sleeve crop top tunic tops ladies tops womens crop top womens tunic tops crop tops for teen girls workout tank tops for women , blazers for women fashion casual jackets for women blazer dress blazer women casual blazer long blazer blazer for women red blazer for women mens blazer blue blazer sequin blazer blazer women's blazers & suit jackets blazer for men black blazer for women blazer for kids sequin jackets for women mens sport coats and blazers casual blazer for women blazer dress for women blazer jacket for men womens blazers and jackets professional womens blazer womens jackets and blazers men blazer, Mens Draped Cardigans Long Sleeve with Hooded Pockets Long Shawl Ruffle Men's S-5X Short/Long Sleeve Fashion Athletic Hoodies Sport Sweatshirt Hip Hop Pullover Mens Slim Fit Long Sleeve Lightweight Cotton Blend Pullover Hoodie With Kanga Pocket Men's Casual Hooded T-Shirts - Fashion Short Sleeve Solid Color Pullover Top Summer Blouse Men's Pullover Hoodies Plaid Jacquard Long Sleeve Drawstring Hipster Casual Hooded Sweatshirts with Kanga Pockets Men's Casual Long Sleeve Round, Quick Dry Short Sleeves Polo Tee T-Shirt Tops Men\u2019s Big and Tall Advantage Performance Stretch Short Sleeve Solid Polo Shirt Mens Summer Slim Fit Contrast Color Stitching Stripe Short Sleeve Polo Casual T-Shirts Men's Big & Tall Short Sleeve Jersey Knit Polo Shirt Men's Short Sleeve Sparkle Sequins Polo 70s Disco Nightclub Party T-Shirts Men's Big and Tall Classic Fit Short Sleeve Solid Performance Deck Polo Shirt Men's Polo Shirt Casual Long Short Sleeve Classic Fashion"], "Price": "$4.09 to $8.09", "options": {"size": ["small", "medium", "large", "x-large", "xx-large", "3x-large", "4x-large", "5x-large"], "color": ["a-bk1", "a-bk2", "a-bk3", "a-bk4", "a-bk5", "a-blue", "b-bk1", "b-bk2", "b-bk3", "b-bk4", "b-bk5", "b-white"]}, "option_to_image": {"small": null, "medium": null, "large": null, "x-large": null, "xx-large": null, "3x-large": null, "4x-large": null, "5x-large": null, "a-bk1": "https://m.media-amazon.com/images/I/41vSoiTGj-L.jpg", "a-bk2": "https://m.media-amazon.com/images/I/41fJXC+qKBL.jpg", "a-bk3": "https://m.media-amazon.com/images/I/51nJCBdwLML.jpg", "a-bk4": "https://m.media-amazon.com/images/I/41pemK7Gp+L.jpg", "a-bk5": "https://m.media-amazon.com/images/I/4101PF3SxFL.jpg", "a-blue": "https://m.media-amazon.com/images/I/51gHUYkEjML.jpg", "b-bk1": "https://m.media-amazon.com/images/I/41-9pWocmCL.jpg", "b-bk2": "https://m.media-amazon.com/images/I/41LgCuiUg-L.jpg", "b-bk3": "https://m.media-amazon.com/images/I/41r1YD1vngL.jpg", "b-bk4": "https://m.media-amazon.com/images/I/41Gy1dQA3rL.jpg", "b-bk5": "https://m.media-amazon.com/images/I/41Rio4pyfnL.jpg", "b-white": "https://m.media-amazon.com/images/I/413fD99xLnL.jpg"}, "Attributes": ["long sleeve", "short sleeve", "tops women", "shirts women", "shirts men", "graphic tees", "tunic tops", "slim fit", "tank tops", "contrast color", "tees women", "pullover hoodie", "mens shirts", "tee shirt", "teen girls", "loose fit", "classic fit"], "MainImage": "https://m.media-amazon.com/images/I/41vSoiTGj-L.jpg"}} +{"id": "B095SX6366", "contents": "wytong women dress summer v neck swing dress fashion solid color tie the knot short sleeves leisure dress =====\u2600\u2600\u2600 features \u2600\u2600\u2600===== fashion design,100% brand new,high quality! season:summer gender: women occasion:casual material:polyester pattern type:solid thickness:standard package include:1 pc blouse please compare the detail sizes with yours before you buy!!! colors may be slightly different depending on computer and monitor settings please allow 1-3cm differs due to manual measurement, thanks (all measurement in cm and please note 1cm=0.39inch) =====\u2600\ufe0f\u2600\ufe0f\u2600\ufe0f size chart \u2600\ufe0f\u2600\ufe0f\u2600\ufe0f======= \u2764size: s us: 4 uk: 8 eu: 34 bust: 94cm/37.01'' sleeve: 19cm/7.48'' length: 87cm/34.25'' == \u2764size: m us: 6 uk: 10 eu: 36 bust: 98cm/38.58'' sleeve: 20cm/7.87'' length: 88cm/34.65'' == \u2764size: l us: 8 uk: 12 eu: 38 bust: 102cm/40.16'' sleeve: 21cm/8.27'' length: 89cm/35.04'' == \u2764size: xl us: 10 uk: 14 eu: 40 bust: 106cm/41.73'' sleeve: 22cm/8.66'' length: 90cm/35.43'' == \u2764size: xxl us: 12 uk: 16 eu: 42 bust: 110cm/43.31'' sleeve: 23cm/9.06'' length: 91cm/35.83'' 100% polyester color: black, coffee, green, pink, purple, yellow, and size: small, medium, large, x-large, xx-large", "product": {"name": "WYTong Women Dress Summer V Neck Swing Dress Fashion Solid Color Tie the knot Short sleeves Leisure Dress", "full_description": "=====\u2600\u2600\u2600 Features \u2600\u2600\u2600===== Fashion design,100% Brand New,high quality! Season:Summer Gender: Women Occasion:Casual Material:Polyester Pattern Type:Solid Thickness:Standard Package include:1 PC Blouse Please compare the detail sizes with yours before you buy!!! Colors may be slightly different depending on computer and monitor settings Please allow 1-3cm differs due to manual measurement, thanks (All measurement in cm and please note 1cm=0.39inch) =====\u2600\ufe0f\u2600\ufe0f\u2600\ufe0f Size chart \u2600\ufe0f\u2600\ufe0f\u2600\ufe0f======= \u2764Size: S US: 4 UK: 8 EU: 34 Bust: 94cm/37.01'' Sleeve: 19cm/7.48'' Length: 87cm/34.25'' == \u2764Size: M US: 6 UK: 10 EU: 36 Bust: 98cm/38.58'' Sleeve: 20cm/7.87'' Length: 88cm/34.65'' == \u2764Size: L US: 8 UK: 12 EU: 38 Bust: 102cm/40.16'' Sleeve: 21cm/8.27'' Length: 89cm/35.04'' == \u2764Size: XL US: 10 UK: 14 EU: 40 Bust: 106cm/41.73'' Sleeve: 22cm/8.66'' Length: 90cm/35.43'' == \u2764Size: XXL US: 12 UK: 16 EU: 42 Bust: 110cm/43.31'' Sleeve: 23cm/9.06'' Length: 91cm/35.83''", "pricing": [9.99, 11.99], "images": ["https://m.media-amazon.com/images/I/41UJTy2ViAL.jpg", "https://m.media-amazon.com/images/I/41BKYAMd3QL.jpg", "https://m.media-amazon.com/images/I/31Fi5ZKzOMS.jpg", "https://m.media-amazon.com/images/I/31Y0mep4NQS.jpg", "https://m.media-amazon.com/images/I/41qEicB8HdL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Patio, Lawn & Garden \u203a Gardening & Lawn Care \u203a Pots, Planters & Container Accessories \u203a Plant Container Accessories \u203a Hooks & Hangers", "average_rating": "", "small_description": ["100% Polyester ", "Imported ", "Tie closure ", "[Material]Soft material, light and comfortable, very suitable for the upcoming summer! Super soft, comfortable, breathable, not see-through, quality assurance ", "[Features]The cute summer mini dress is a casual style and does not fit snugly.Fashionable and unique ladies mini dresses. ", "[Style]The cute summer mini dress is a casual style and doesn't fit snugly. This dress is accurate in size, folds and folds are layered design, it is very easy to transition from business to casual occasions, and when you need to quickly accurate. ", "[Match]This floral print dress can be worn with sandals, beach slippers or high-heeled sunglasses. , [Occasions]High-quality women's dress, suitable for summer vacation, leisure beach, party, work, night out, daily wear, holiday, wedding party, home, lounge. Perfect for summer, spring, autumn and winter! This summer mini dress is a refreshing change-home or home style., Fit type: Regular"], "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B095SYFBBC/ref=twister_B095SVD6SC", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41Pxj9TbfuS.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095ST7HCR/ref=twister_B095SVD6SC", "value": "Coffee", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51gy0OoQRzL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095STH12Q/ref=twister_B095SVD6SC", "value": "Green", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41MxnK1tRAL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095SWK2DB/ref=twister_B095SVD6SC", "value": "Pink", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41YTWEhEndL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B095STY3LH/ref=twister_B095SVD6SC", "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41LsXRFXT7L.jpg"}, {"is_selected": true, "url": null, "value": "Yellow", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41UJTy2ViAL.jpg"}], "Size": [{"is_selected": false, "is_available": true, "value": "Small", "asin": "B095STZJ64"}, {"is_selected": false, "is_available": true, "value": "Medium", "asin": "B095SX6366"}, {"is_selected": false, "is_available": true, "value": "Large", "asin": "B095SV1XK8"}, {"is_selected": false, "is_available": true, "value": "X-Large", "asin": "B095SV1SD5"}, {"is_selected": false, "is_available": true, "value": "XX-Large", "asin": "B095SY4V3X"}]}, "asin": "B095SX6366", "category": "beauty", "query": "denture care", "page": 117, "Title": "WYTong Women Dress Summer V Neck Swing Dress Fashion Solid Color Tie the knot Short sleeves Leisure Dress", "Description": "=====\u2600\u2600\u2600 Features \u2600\u2600\u2600===== Fashion design,100% Brand New,high quality! Season:Summer Gender: Women Occasion:Casual Material:Polyester Pattern Type:Solid Thickness:Standard Package include:1 PC Blouse Please compare the detail sizes with yours before you buy!!! Colors may be slightly different depending on computer and monitor settings Please allow 1-3cm differs due to manual measurement, thanks (All measurement in cm and please note 1cm=0.39inch) =====\u2600\ufe0f\u2600\ufe0f\u2600\ufe0f Size chart \u2600\ufe0f\u2600\ufe0f\u2600\ufe0f======= \u2764Size: S US: 4 UK: 8 EU: 34 Bust: 94cm/37.01'' Sleeve: 19cm/7.48'' Length: 87cm/34.25'' == \u2764Size: M US: 6 UK: 10 EU: 36 Bust: 98cm/38.58'' Sleeve: 20cm/7.87'' Length: 88cm/34.65'' == \u2764Size: L US: 8 UK: 12 EU: 38 Bust: 102cm/40.16'' Sleeve: 21cm/8.27'' Length: 89cm/35.04'' == \u2764Size: XL US: 10 UK: 14 EU: 40 Bust: 106cm/41.73'' Sleeve: 22cm/8.66'' Length: 90cm/35.43'' == \u2764Size: XXL US: 12 UK: 16 EU: 42 Bust: 110cm/43.31'' Sleeve: 23cm/9.06'' Length: 91cm/35.83''", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["100% Polyester ", "Imported ", "Tie closure ", "[Material]Soft material, light and comfortable, very suitable for the upcoming summer! Super soft, comfortable, breathable, not see-through, quality assurance ", "[Features]The cute summer mini dress is a casual style and does not fit snugly.Fashionable and unique ladies mini dresses. ", "[Style]The cute summer mini dress is a casual style and doesn't fit snugly. This dress is accurate in size, folds and folds are layered design, it is very easy to transition from business to casual occasions, and when you need to quickly accurate. ", "[Match]This floral print dress can be worn with sandals, beach slippers or high-heeled sunglasses. , [Occasions]High-quality women's dress, suitable for summer vacation, leisure beach, party, work, night out, daily wear, holiday, wedding party, home, lounge. Perfect for summer, spring, autumn and winter! This summer mini dress is a refreshing change-home or home style., Fit type: Regular"], "Price": "$9.99 to $11.99", "options": {"color": ["black", "coffee", "green", "pink", "purple", "yellow"], "size": ["small", "medium", "large", "x-large", "xx-large"]}, "option_to_image": {"black": "https://m.media-amazon.com/images/I/41Pxj9TbfuS.jpg", "coffee": "https://m.media-amazon.com/images/I/51gy0OoQRzL.jpg", "green": "https://m.media-amazon.com/images/I/41MxnK1tRAL.jpg", "pink": "https://m.media-amazon.com/images/I/41YTWEhEndL.jpg", "purple": "https://m.media-amazon.com/images/I/41LsXRFXT7L.jpg", "yellow": "https://m.media-amazon.com/images/I/41UJTy2ViAL.jpg", "small": null, "medium": null, "large": null, "x-large": null, "xx-large": null}, "Attributes": ["high quality"], "MainImage": "https://m.media-amazon.com/images/I/41UJTy2ViAL.jpg"}} +{"id": "B08X2FSR21", "contents": "kianna heavy duty bed frame, overall product weight: 37 lb, wedge-lock connections can support any practical weight at a glance 1. heavy duty: heavy duty / squeak resistant whether you\u2019re refreshing the guest room or starting your own bedroom ensemble from scratch, this versatile bed frame is a fine foundation! crafted from metal, this piece features six adjustable leg glides that allow you to elevate your mattress to the height you prefer. universal brackets connect to a headboard and footboard, giving you the option to curate a look that you love, while a matte black finish helps this frame blend with existing decor. a box spring is required. overall dimension 1. overall: 7.5'''' h foot-board bracket included 1. can attach to footboard: yes product details 1. box spring required: yes 2. number of legs: 6 features 1. wedge-lock connections can support any practical weight 2. bed raisers can be used with this frame 3. use as a standalone bed frame or in place of bed rails twin size 1. overall width - side to side: 39'''' 2. overall product weight: 33 lb. full size 1. overall width - side to side: 54'''' 2. overall product weight: 37 lb. queen size 1. overall width - side to side: 60'''' 2. overall product weight: 34.5 lb. king size 1. overall product weight: 41 lb. california king size 1. overall width - side to side: 72'''' 2. overall product weight: 40 lb. other dimensions 1. overall: 7.5'''' h 2. clearance from floor to underside of bed: 7'''' 3. bottom of inside of frame to top of side rail: 1.5'''' 4. leg height: 5'''' features 1. product type: bed frame 2. material: metal 3. material details: steel 4. color: black matte 5. number of legs: 6 (central support leg) 6. box spring required: yes 7. headb overall product weight: 37 lb., wedge-lock connections can support any practical weight, commercial warranty: no, box spring required: yes, level of assembly: partial assembly, overall product weight: 33 lb., adult assembly required: yes, number of legs: 6 (central support leg), installation required: no, leg height: 5'''' ", "product": {"name": "Kianna Heavy Duty Bed Frame, Overall Product Weight: 37 lb, Wedge-Lock Connections can Support Any Practical Weight", "full_description": "AT A GLANCE 1. Heavy Duty: Heavy Duty / Squeak Resistant Whether you\u2019re refreshing the guest room or starting your own bedroom ensemble from scratch, this versatile bed frame is a fine foundation! Crafted from metal, this piece features six adjustable leg glides that allow you to elevate your mattress to the height you prefer. Universal brackets connect to a headboard and footboard, giving you the option to curate a look that you love, while a matte black finish helps this frame blend with existing decor. A box spring is required. OVERALL DIMENSION 1. Overall: 7.5'''' H FOOT-BOARD BRACKET INCLUDED 1. Can Attach to Footboard: Yes PRODUCT DETAILS 1. Box Spring Required: Yes 2. Number of Legs: 6 FEATURES 1. Wedge-lock connections can support any practical weight 2. Bed raisers can be used with this frame 3. Use as a standalone bed frame or in place of bed rails TWIN SIZE 1. Overall Width - Side to Side: 39'''' 2. Overall Product Weight: 33 lb. FULL SIZE 1. Overall Width - Side to Side: 54'''' 2. Overall Product Weight: 37 lb. QUEEN SIZE 1. Overall Width - Side to Side: 60'''' 2. Overall Product Weight: 34.5 lb. KING SIZE 1. Overall Product Weight: 41 lb. CALIFORNIA KING SIZE 1. Overall Width - Side to Side: 72'''' 2. Overall Product Weight: 40 lb. OTHER DIMENSIONS 1. Overall: 7.5'''' H 2. Clearance from Floor to Underside of Bed: 7'''' 3. Bottom of Inside of Frame to Top of Side Rail: 1.5'''' 4. Leg Height: 5'''' FEATURES 1. Product Type: Bed Frame 2. Material: Metal 3. Material Details: Steel 4. Color: Black Matte 5. Number of Legs: 6 (Central Support Leg) 6. Box Spring Required: Yes 7. Headb", "pricing": [291.9], "images": ["https://m.media-amazon.com/images/I/5126pBEQNDL.jpg", "https://m.media-amazon.com/images/I/41GP1-Ixs5L.jpg", "https://m.media-amazon.com/images/I/41+r0BWeg1L.jpg", "https://m.media-amazon.com/images/I/41HPgtsJg-L.jpg", "https://m.media-amazon.com/images/I/319sdVvYXFL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Bedroom Furniture \u203a Beds, Frames & Bases \u203a Bed Frames", "average_rating": "", "small_description": ["Overall Product Weight: 37 lb., Wedge-lock connections can support any practical weight, Commercial Warranty: No, Box Spring Required: Yes, Level of Assembly: Partial Assembly, Overall Product Weight: 33 lb., Adult Assembly Required: Yes, Number of Legs: 6 (Central Support Leg), Installation Required: No, Leg Height: 5''''"], "customization_options": "", "asin": "B08X2FSR21", "category": "garden", "query": "bedframes", "page": 323, "Title": "Kianna Heavy Duty Bed Frame, Overall Product Weight: 37 lb, Wedge-Lock Connections can Support Any Practical Weight", "Description": "AT A GLANCE 1. Heavy Duty: Heavy Duty / Squeak Resistant Whether you\u2019re refreshing the guest room or starting your own bedroom ensemble from scratch, this versatile bed frame is a fine foundation! Crafted from metal, this piece features six adjustable leg glides that allow you to elevate your mattress to the height you prefer. Universal brackets connect to a headboard and footboard, giving you the option to curate a look that you love, while a matte black finish helps this frame blend with existing decor. A box spring is required. OVERALL DIMENSION 1. Overall: 7.5'''' H FOOT-BOARD BRACKET INCLUDED 1. Can Attach to Footboard: Yes PRODUCT DETAILS 1. Box Spring Required: Yes 2. Number of Legs: 6 FEATURES 1. Wedge-lock connections can support any practical weight 2. Bed raisers can be used with this frame 3. Use as a standalone bed frame or in place of bed rails TWIN SIZE 1. Overall Width - Side to Side: 39'''' 2. Overall Product Weight: 33 lb. FULL SIZE 1. Overall Width - Side to Side: 54'''' 2. Overall Product Weight: 37 lb. QUEEN SIZE 1. Overall Width - Side to Side: 60'''' 2. Overall Product Weight: 34.5 lb. KING SIZE 1. Overall Product Weight: 41 lb. CALIFORNIA KING SIZE 1. Overall Width - Side to Side: 72'''' 2. Overall Product Weight: 40 lb. OTHER DIMENSIONS 1. Overall: 7.5'''' H 2. Clearance from Floor to Underside of Bed: 7'''' 3. Bottom of Inside of Frame to Top of Side Rail: 1.5'''' 4. Leg Height: 5'''' FEATURES 1. Product Type: Bed Frame 2. Material: Metal 3. Material Details: Steel 4. Color: Black Matte 5. Number of Legs: 6 (Central Support Leg) 6. Box Spring Required: Yes 7. Headb", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Overall Product Weight: 37 lb., Wedge-lock connections can support any practical weight, Commercial Warranty: No, Box Spring Required: Yes, Level of Assembly: Partial Assembly, Overall Product Weight: 33 lb., Adult Assembly Required: Yes, Number of Legs: 6 (Central Support Leg), Installation Required: No, Leg Height: 5''''"], "Price": "$291.9", "options": {}, "option_to_image": {}, "Attributes": ["box spring", "bed frame", "heavy duty", "assembly required"], "MainImage": "https://m.media-amazon.com/images/I/5126pBEQNDL.jpg"}} +{"id": "B00GMQ4WRI", "contents": "klik (party mix) kosher - dairy kosher - dairy flavor name: cornflakes, kariot - pillows, malt balls, vanilla 'n fudge, cookie, party mix", "product": {"name": "Klik (party mix)", "full_description": "Kosher - Dairy", "pricing": [7.99], "images": ["https://m.media-amazon.com/images/I/51vepPxs5EL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Breads & Bakery \u203a Cookies \u203a Chocolate", "average_rating": 4.8, "small_description": ["Kosher - Dairy "], "customization_options": {"Flavor Name": [{"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WSW/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "Cornflakes", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WVO/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "Kariot - Pillows", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WUA/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "Malt Balls", "price_string": "$7.95", "price": 7.95, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WWI/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "Vanilla 'n Fudge", "price_string": "$8.25", "price": 8.25, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B00GMQ4WT6/ref=twister_B07CR5R3H3?_encoding=UTF8&psc=1", "value": "cookie", "price_string": "$7.39", "price": 7.39, "image": null}, {"is_selected": true, "url": null, "value": "party mix", "price_string": "$7.99", "price": 7.99, "image": null}]}, "asin": "B00GMQ4WRI", "category": "grocery", "query": "party mix", "page": 42, "Title": "Klik (party mix)", "Description": "Kosher - Dairy", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Kosher - Dairy "], "Price": "$7.99", "options": {"flavor name": ["cornflakes", "kariot - pillows", "malt balls", "vanilla 'n fudge", "cookie", "party mix"]}, "option_to_image": {"cornflakes": null, "kariot - pillows": null, "malt balls": null, "vanilla 'n fudge": null, "cookie": null, "party mix": null}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/51vepPxs5EL.jpg"}} +{"id": "B07FYPSNH8", "contents": "owyn - 100% vegan plant-based protein shakes | cold brew coffee, 12 fl oz | dairy-free, gluten-free, soy-free, tree nut-free, egg-free, allergy-free, vegetarian 100% certified vegan, gluten-free: 100% plant-based protein shakes that provide superior health benefits & never compromises on taste. delicious nutrition made for active & healthy people who care about what they put in their body. ", "product": {"name": "OWYN - 100% Vegan Plant-Based Protein Shakes | Cold Brew Coffee, 12 Fl Oz | Dairy-Free, Gluten-Free, Soy-Free, Tree Nut-Free, Egg-Free, Allergy-Free, Vegetarian", "full_description": "", "pricing": [11.07], "images": ["https://m.media-amazon.com/images/I/41EFvqNqmwL.jpg", "https://m.media-amazon.com/images/I/511LPRBwXLL.jpg", "https://m.media-amazon.com/images/I/51hPpWPRZRL.jpg", "https://m.media-amazon.com/images/I/519-C-IqR3L.jpg", "https://m.media-amazon.com/images/I/51g5AU61oWL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Beverages \u203a Bottled Beverages, Water & Drink Mixes \u203a Meal Replacement & Protein Drinks \u203a Protein Drinks", "average_rating": 4.2, "small_description": ["100% CERTIFIED VEGAN, GLUTEN-FREE: 100% plant-based protein shakes that provide superior health benefits & never compromises on taste. Delicious nutrition made for active & healthy people who care about what they put in their body. ", "CONTAINS 20 GRAMS OF PLANT PROTEIN: Delivers all 9 essential amino acids and naturally occurring BCAAs (Branched Chain Amino Acids) to enhance muscle recovery and promote optimal daily health. ", "CONTAINS CAFFEINE: Each shake contains the energy equivalent of 1 cup of coffee (148mg caffeine). Start your morning off with a breakfast shake or enjoy after a workout. ", "GLUTEN, DAIRY & SOY FREE: Peanut & tree nut free, egg-free, non-GMO project verified, kosher, free of all artificial colors, flavors & preservatives, lactose free, low sugar content (4G Organic Cane Sugar), no sugar alcohols or stevia. ", "18 MONTH SHELF LIFE: Shelf stable without the need for refrigeration, except after opening. Contains twelve Cold Brew, 12 fl oz (355 ml) bottles. "], "customization_options": "", "asin": "B07FYPSNH8", "category": "grocery", "query": "beverages", "page": 343, "Title": "OWYN - 100% Vegan Plant-Based Protein Shakes | Cold Brew Coffee, 12 Fl Oz | Dairy-Free, Gluten-Free, Soy-Free, Tree Nut-Free, Egg-Free, Allergy-Free, Vegetarian", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["100% CERTIFIED VEGAN, GLUTEN-FREE: 100% plant-based protein shakes that provide superior health benefits & never compromises on taste. Delicious nutrition made for active & healthy people who care about what they put in their body. ", "CONTAINS 20 GRAMS OF PLANT PROTEIN: Delivers all 9 essential amino acids and naturally occurring BCAAs (Branched Chain Amino Acids) to enhance muscle recovery and promote optimal daily health. ", "CONTAINS CAFFEINE: Each shake contains the energy equivalent of 1 cup of coffee (148mg caffeine). Start your morning off with a breakfast shake or enjoy after a workout. ", "GLUTEN, DAIRY & SOY FREE: Peanut & tree nut free, egg-free, non-GMO project verified, kosher, free of all artificial colors, flavors & preservatives, lactose free, low sugar content (4G Organic Cane Sugar), no sugar alcohols or stevia. ", "18 MONTH SHELF LIFE: Shelf stable without the need for refrigeration, except after opening. Contains twelve Cold Brew, 12 fl oz (355 ml) bottles. "], "Price": "$11.07", "options": {}, "option_to_image": {}, "Attributes": ["nut free", "soy free", "plant based", "lactose free", "cane sugar", "low sugar", "gluten free", "shelf stable", "artificial colors", "dairy free", "non gmo"], "instructions": [{"asin": "B07FYPSNH8", "instruction": "i am looking for a gluten free, 100% vegan plant based protein shake that is soy-free.", "attributes": ["nut free", "soy free", "plant based", "lactose free", "low sugar", "gluten free", "shelf stable", "dairy free", "non gmo", "artificial colors"], "options": [""], "instruction_attributes": ["gluten free"], "instruction_options": [], "assignment_id": "3QEMNNSB2896M9IJWB6EAN3MKGXD7P", "worker_id": "A1EREKSZAA9V7B"}], "MainImage": "https://m.media-amazon.com/images/I/41EFvqNqmwL.jpg"}} +{"id": "B08ZKDQPZ3", "contents": "hair tinsel kit strands with tool 47 inch 12 colors 2100 strands fairy hair tinsel kit hair extensions sparkling glitter shiny silk tinsel (12 colors) hair tinsel kit strands with tool 47 inch 12 colors 2100 strands fairy tinsel hair extensions sparkling glitter shiny bling silk tinsel 1)12 colors: red, purple, pink, rose, sky blue, sapphire blue, green, rainbow, mixed colors, silver, yellow and champagne gold . can easy match your style, also can meet the girls and women fashion pursuit to highlight your elegant and confidence 2)size & strands: 12 color hair tinsel length is 47 inch, per color has 175 strands, total about is 2100 strands. you can cut the length of hair tinsel to fit your hair length . 3)easy to use: tie a knot and fix tinsel hair on your hair (you can find free tool in the package). you can use or not use the tool when install, it depends on your needs 4)material: fairy hair are made of polyester fiber. comfortable and fashion, sparkling and shiny strands hair tinsel is good for birthday party, daily hair beauty, halloween, daily hairdressing, making you outstanding in the crowd. 5) package: 12 colors in one set, each color is folded and packaged separately, a tool in one package, used for easy installation how to use 1. fold the hair tinsel strands 2. tie a slip knot, knotted into a small circle 3. fine the hair select 3 or 4 hairs, slide slip knot onto the hair 4. tie the hairs and the tinsel together in a knot, make sure the knot is close to the hair shaft 5.tie the hairs and the tinsel together in a knot 6. tie a knot again \u301012 color/set\u3011hair tinsel include colors: red, purple, pink, rose, sky blue, sapphire blue, green, rainbow, mixed colors, silver, yellow and champagne gold . can easy match your style, also can meet the girls and women fashion pursuit to highlight your elegant and confidence ", "product": {"name": "Hair Tinsel Kit Strands With Tool 47 Inch 12 Colors 2100 Strands Fairy Hair Tinsel Kit Hair Extensions Sparkling Glitter Shiny Silk Tinsel (12 colors)", "full_description": "Hair Tinsel Kit Strands With Tool 47 Inch 12 Colors 2100 Strands Fairy Tinsel Hair Extensions Sparkling Glitter Shiny Bling Silk Tinsel 1)12 colors: Red, Purple, Pink, Rose, Sky Blue, Sapphire Blue, Green, Rainbow, Mixed Colors, Silver, Yellow and Champagne Gold . Can easy match your style, also can meet the girls and women fashion pursuit to highlight your elegant and confidence 2)Size & strands: 12 color hair tinsel length is 47 inch, per color has 175 strands, total about is 2100 strands. You can cut the length of hair tinsel to fit your hair length . 3)Easy to use: Tie a knot and fix tinsel hair on your hair (you can find free tool in the package). You can use or not use the tool when install, it depends on your needs 4)Material: Fairy hair are made of polyester fiber. Comfortable and fashion, sparkling and shiny strands hair tinsel is good for birthday party, daily hair beauty, Halloween, daily hairdressing, making you outstanding in the crowd. 5) Package: 12 colors in one set, each color is folded and packaged separately, a tool in one package, used for easy installation How to use 1. Fold the hair tinsel strands 2. Tie a slip knot, Knotted into a small circle 3. Fine the hair select 3 or 4 hairs, slide slip knot onto the hair 4. Tie the hairs and the tinsel together in a knot, make sure the knot is close to the hair shaft 5.Tie the hairs and the tinsel together in a knot 6. Tie a knot again", "pricing": [13.96], "images": ["https://m.media-amazon.com/images/I/61gIelmK8yL.jpg", "https://m.media-amazon.com/images/I/51pNS6MCNhL.jpg", "https://m.media-amazon.com/images/I/51GtYFkNUKL.jpg", "https://m.media-amazon.com/images/I/61DfltYfgbL.jpg", "https://m.media-amazon.com/images/I/51+2lzMUsNL.jpg", "https://m.media-amazon.com/images/I/51X4-va+LPL.jpg", "https://m.media-amazon.com/images/I/61c-76v8jJL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Extensions, Wigs & Accessories \u203a Hair Extensions", "average_rating": 4.3, "small_description": ["\u301012 COLOR/SET\u3011Hair Tinsel Include Colors: Red, Purple, Pink, Rose, Sky Blue, Sapphire Blue, Green, Rainbow, Mixed Colors, Silver, Yellow and Champagne Gold . Can Easy Match Your Style, Also Can Meet The Girls And Women Fashion Pursuit To Highlight Your Elegant And Confidence ", "\u3010SIZE & STRANDS\u3011Fairy Hair Tinsel Extensions : 12 Color Hair Tinsel Length Is 47 Inch, Per Color Has 175 Strands, Total About Is 2100 Strands. You Can Cut The Length Of Hair Tinsel To Fit Your Hair Length . ", "\u3010EASY TO USE\u3011 Tie a Knot And Fix Tinsel Hair On Your Hair (You Can Find Free Tool In The Package). You Can Use Or Not Use The Tool When Install, It Depends On Your Needs ", "\u3010MATERIAL\u3011Fairy Hair Are Made Of Polyester Fiber. Comfortable And Fashion, Sparkling And Shiny Strands Hair Tinsel Is Good For Birthday Party, Daily Hair Beauty, Halloween, Daily Hairdressing, Making You Outstanding In The Crowd. ", "\u3010PACKAGE\u301112 Colors In One Set, Each Color Is Folded And Packaged Separately, a Tool In One Package, Used For Easy Installation "], "customization_options": {"Color": null}, "asin": "B08ZKDQPZ3", "category": "beauty", "query": "body care", "page": 193, "Title": "Hair Tinsel Kit Strands With Tool 47 Inch 12 Colors 2100 Strands Fairy Hair Tinsel Kit Hair Extensions Sparkling Glitter Shiny Silk Tinsel (12 colors)", "Description": "Hair Tinsel Kit Strands With Tool 47 Inch 12 Colors 2100 Strands Fairy Tinsel Hair Extensions Sparkling Glitter Shiny Bling Silk Tinsel 1)12 colors: Red, Purple, Pink, Rose, Sky Blue, Sapphire Blue, Green, Rainbow, Mixed Colors, Silver, Yellow and Champagne Gold . Can easy match your style, also can meet the girls and women fashion pursuit to highlight your elegant and confidence 2)Size & strands: 12 color hair tinsel length is 47 inch, per color has 175 strands, total about is 2100 strands. You can cut the length of hair tinsel to fit your hair length . 3)Easy to use: Tie a knot and fix tinsel hair on your hair (you can find free tool in the package). You can use or not use the tool when install, it depends on your needs 4)Material: Fairy hair are made of polyester fiber. Comfortable and fashion, sparkling and shiny strands hair tinsel is good for birthday party, daily hair beauty, Halloween, daily hairdressing, making you outstanding in the crowd. 5) Package: 12 colors in one set, each color is folded and packaged separately, a tool in one package, used for easy installation How to use 1. Fold the hair tinsel strands 2. Tie a slip knot, Knotted into a small circle 3. Fine the hair select 3 or 4 hairs, slide slip knot onto the hair 4. Tie the hairs and the tinsel together in a knot, make sure the knot is close to the hair shaft 5.Tie the hairs and the tinsel together in a knot 6. Tie a knot again", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u301012 COLOR/SET\u3011Hair Tinsel Include Colors: Red, Purple, Pink, Rose, Sky Blue, Sapphire Blue, Green, Rainbow, Mixed Colors, Silver, Yellow and Champagne Gold . Can Easy Match Your Style, Also Can Meet The Girls And Women Fashion Pursuit To Highlight Your Elegant And Confidence ", "\u3010SIZE & STRANDS\u3011Fairy Hair Tinsel Extensions : 12 Color Hair Tinsel Length Is 47 Inch, Per Color Has 175 Strands, Total About Is 2100 Strands. You Can Cut The Length Of Hair Tinsel To Fit Your Hair Length . ", "\u3010EASY TO USE\u3011 Tie a Knot And Fix Tinsel Hair On Your Hair (You Can Find Free Tool In The Package). You Can Use Or Not Use The Tool When Install, It Depends On Your Needs ", "\u3010MATERIAL\u3011Fairy Hair Are Made Of Polyester Fiber. Comfortable And Fashion, Sparkling And Shiny Strands Hair Tinsel Is Good For Birthday Party, Daily Hair Beauty, Halloween, Daily Hairdressing, Making You Outstanding In The Crowd. ", "\u3010PACKAGE\u301112 Colors In One Set, Each Color Is Folded And Packaged Separately, a Tool In One Package, Used For Easy Installation "], "Price": "$13.96", "options": {}, "option_to_image": {}, "Attributes": ["hair extensions", "easy use"], "MainImage": "https://m.media-amazon.com/images/I/61gIelmK8yL.jpg"}} +{"id": "B07SS8QC3G", "contents": "bayy 10 pcs tattoo piercing needles medical tattoo needle for navel nose lip ear piercing (20g) this items is one-time size: 12g, 14g, 16g, 18g, 20g", "product": {"name": "BAYY 10 pcs Tattoo Piercing Needles Medical Tattoo Needle for Navel Nose Lip Ear Piercing (20G)", "full_description": "This items is One-time", "pricing": [2.67], "images": ["https://m.media-amazon.com/images/I/31WLMPyMlSL.jpg", "https://m.media-amazon.com/images/I/21CBFH3IMDL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Piercing & Tattoo Supplies \u203a Piercing Supplies \u203a Piercing Needles", "average_rating": 4.4, "small_description": [""], "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07SSBH864/ref=twister_B081NGH7H9?_encoding=UTF8&psc=1", "value": "12G", "price_string": "$2.67", "price": 2.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SRBWJRN/ref=twister_B081NGH7H9?_encoding=UTF8&psc=1", "value": "14G", "price_string": "$2.67", "price": 2.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SS8Y178/ref=twister_B081NGH7H9?_encoding=UTF8&psc=1", "value": "16G", "price_string": "$2.67", "price": 2.67, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07SSBJB3P/ref=twister_B081NGH7H9?_encoding=UTF8&psc=1", "value": "18G", "price_string": "$2.67", "price": 2.67, "image": null}, {"is_selected": true, "url": null, "value": "20G", "price_string": "$2.67", "price": 2.67, "image": null}]}, "asin": "B07SS8QC3G", "category": "beauty", "query": "piercing & tattoo supplies", "page": 9, "Title": "BAYY 10 pcs Tattoo Piercing Needles Medical Tattoo Needle for Navel Nose Lip Ear Piercing (20G)", "Description": "This items is One-time", "Reviews": [], "Rating": "N.A.", "BulletPoints": [""], "Price": "$2.67", "options": {"size": ["12g", "14g", "16g", "18g", "20g"]}, "option_to_image": {"12g": null, "14g": null, "16g": null, "18g": null, "20g": null}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/31WLMPyMlSL.jpg"}} +{"id": "B09J9Y9H95", "contents": "kira home ainsley 21.5\" 3-light farmhouse vanity/bathroom light + clear cylinder glass shades, oil-rubbed bronze finish modern farmhouse design: metal wall vanity light showcases an oil-rubbed bronze finish with complementing clear cylinder shades, fitting styles such as rustic and industrial. the linear bar adds that extra wow factor and allows for up/down installation ", "product": {"name": "Kira Home Ainsley 21.5\" 3-Light Farmhouse Vanity/Bathroom Light + Clear Cylinder Glass Shades, Oil-Rubbed Bronze Finish", "full_description": "", "pricing": [77.99], "images": ["https://m.media-amazon.com/images/I/31S93pAKR7L.jpg", "https://m.media-amazon.com/images/I/41ZrRe+dxAL.jpg", "https://m.media-amazon.com/images/I/41OzKt9FMZL.jpg", "https://m.media-amazon.com/images/I/41Q4B2CB2FL.jpg", "https://m.media-amazon.com/images/I/417xWd8qRiL.jpg", "https://m.media-amazon.com/images/I/51h5htWxm-L.jpg", "https://m.media-amazon.com/images/I/81WkJmmJ-FL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Tools & Home Improvement \u203a Lighting & Ceiling Fans \u203a Wall Lights \u203a Vanity Lights", "average_rating": "", "small_description": ["MODERN FARMHOUSE DESIGN: Metal wall vanity light showcases an oil-rubbed bronze finish with complementing clear cylinder shades, fitting styles such as rustic and industrial. The linear bar adds that extra wow factor and allows for up/down installation ", "BRIGHTEN YOUR SPACE: Easily install this versatile, bathroom lighting fixture over mirrors and vanities, in a powder room or half bath or above a kitchen sink or bar area. Dress up hallways or mount in hospitality settings as well. Dimmer compatible ", "ETL LISTED FOR YOUR SAFETY: ETL listed for damp locations. Uses (3) LED, CFL or up to 60W traditional incandescent medium base bulb. Use with vintage style Edison bulbs to encompass that extra farmhouse vibe. Bulb sold separately ", "DIMENSIONS: Bathroom Light: 8.25\" (H) x 21.5\" (L) x 6.25\" Projection from wall, Backplate: 5\" (H) x 7\" (L) x 1\" (W), Glass Shades: 3.75\" (D) x 6.75\" (H) ", "UNMATCHED QUALITY AND CUSTOMER CARE: Designed and supported in California, we are a US based company with real local support. If you ever encounter any issues, feel free to reach out to us, as we provide a 1-year warranty. Shop with confidence! "], "model": "\u200eRV-WB4333-3-OB", "customization_options": "", "asin": "B09J9Y9H95", "category": "garden", "query": "vanities", "page": 173, "Title": "Kira Home Ainsley 21.5\" 3-Light Farmhouse Vanity/Bathroom Light + Clear Cylinder Glass Shades, Oil-Rubbed Bronze Finish", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["MODERN FARMHOUSE DESIGN: Metal wall vanity light showcases an oil-rubbed bronze finish with complementing clear cylinder shades, fitting styles such as rustic and industrial. The linear bar adds that extra wow factor and allows for up/down installation ", "BRIGHTEN YOUR SPACE: Easily install this versatile, bathroom lighting fixture over mirrors and vanities, in a powder room or half bath or above a kitchen sink or bar area. Dress up hallways or mount in hospitality settings as well. Dimmer compatible ", "ETL LISTED FOR YOUR SAFETY: ETL listed for damp locations. Uses (3) LED, CFL or up to 60W traditional incandescent medium base bulb. Use with vintage style Edison bulbs to encompass that extra farmhouse vibe. Bulb sold separately ", "DIMENSIONS: Bathroom Light: 8.25\" (H) x 21.5\" (L) x 6.25\" Projection from wall, Backplate: 5\" (H) x 7\" (L) x 1\" (W), Glass Shades: 3.75\" (D) x 6.75\" (H) ", "UNMATCHED QUALITY AND CUSTOMER CARE: Designed and supported in California, we are a US based company with real local support. If you ever encounter any issues, feel free to reach out to us, as we provide a 1-year warranty. Shop with confidence! "], "Price": "$77.99", "options": {}, "option_to_image": {}, "Attributes": ["bronze finish", "vanity light"], "MainImage": "https://m.media-amazon.com/images/I/31S93pAKR7L.jpg"}} +{"id": "B09S6VN97V", "contents": "skechers women's, relaxed fit: arch fit - commute clog taupe 11 m women's skechers, relaxed fit: arch fit - commute clog. take on your day with cushioning and comfort with the skechers relaxed fit: arch fit - commute shoe this sporty, open-back slip-on features a soft quilted synthetic and mesh upper with an arch fit memory foam insole. quilted synthetic mesh fabric upper slip-on styling for easy on and off arch fit contoured footbed patented skechers arch fit insole system with podiatrist-certified arch support relaxed fit design for a roomier fit at the toes shock-absorbing midsole flexible rubber traction outsole rubber sole ", "product": {"name": "Skechers Women's, Relaxed Fit: Arch Fit - Commute Clog Taupe 11 M", "full_description": "Women's Skechers, Relaxed Fit: Arch Fit - Commute Clog. Take on your day with cushioning and comfort with the Skechers Relaxed Fit: Arch Fit - Commute shoe This sporty, open-back slip-on features a soft quilted synthetic and mesh upper with an Arch Fit memory foam insole. Quilted synthetic mesh fabric upper Slip-on styling for easy on and off Arch Fit Contoured Footbed Patented Skechers Arch Fit insole system with podiatrist-certified arch support Relaxed Fit design for a roomier fit at the toes Shock-absorbing midsole Flexible rubber traction outsole", "pricing": [74.95], "images": ["https://m.media-amazon.com/images/I/41uw+fICClL.jpg", "https://m.media-amazon.com/images/I/31GeQkJ7D3L.jpg", "https://m.media-amazon.com/images/I/31dUysD7TqL.jpg", "https://m.media-amazon.com/images/I/31H1bfMijmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Mules & Clogs", "average_rating": "", "small_description": ["Rubber sole ", "Quilted synthetic mesh fabric upper ", "Slip-on styling for easy on and off ", "Arch Fit Contoured Footbed ", "Patented Skechers Arch Fit insole system with podiatrist-certified arch support ", "Relaxed Fit design for a roomier fit at the toes "], "customization_options": "", "asin": "B09S6VN97V", "category": "fashion", "query": "women's mules & clogs", "page": 112, "Title": "Skechers Women's, Relaxed Fit: Arch Fit - Commute Clog Taupe 11 M", "Description": "Women's Skechers, Relaxed Fit: Arch Fit - Commute Clog. Take on your day with cushioning and comfort with the Skechers Relaxed Fit: Arch Fit - Commute shoe This sporty, open-back slip-on features a soft quilted synthetic and mesh upper with an Arch Fit memory foam insole. Quilted synthetic mesh fabric upper Slip-on styling for easy on and off Arch Fit Contoured Footbed Patented Skechers Arch Fit insole system with podiatrist-certified arch support Relaxed Fit design for a roomier fit at the toes Shock-absorbing midsole Flexible rubber traction outsole", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Rubber sole ", "Quilted synthetic mesh fabric upper ", "Slip-on styling for easy on and off ", "Arch Fit Contoured Footbed ", "Patented Skechers Arch Fit insole system with podiatrist-certified arch support ", "Relaxed Fit design for a roomier fit at the toes "], "Price": "$74.95", "options": {}, "option_to_image": {}, "Attributes": ["relaxed fit", "arch support", "rubber sole"], "MainImage": "https://m.media-amazon.com/images/I/41uw+fICClL.jpg"}} +{"id": "B01DJGWDBA", "contents": "skechers originals men's retros og 90 fashion sneaker suede jogger with air cooled memory foam soft suede and mesh fabric upper size: 9.5, 10.5, 11.5, 12, 13, and color: black | white, burgundy, gray | navy, black", "product": {"name": "Skechers Originals Men's Retros OG 90 Fashion Sneaker", "full_description": "Suede jogger with air cooled memory foam", "pricing": [51.96, 55.0], "images": ["https://m.media-amazon.com/images/I/41M4zyqq4HL.jpg", "https://m.media-amazon.com/images/I/51O-IY3fOVL.jpg", "https://m.media-amazon.com/images/I/51u8yUXqpFL.jpg", "https://m.media-amazon.com/images/I/41bLKJdPA9L.jpg", "https://m.media-amazon.com/images/I/41G6WqIR6mL.jpg", "https://m.media-amazon.com/images/I/41E4SDj5rIL.jpg", "https://m.media-amazon.com/images/I/41wcUFJnr7L.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Shoes \u203a Fashion Sneakers", "average_rating": 4.4, "small_description": ["Soft suede and mesh fabric upper ", "Lace up sporty classic jogging sneaker design ", "Air-Cooled Memory Foam insole ", "Shock absorbing jogger-style midsole ", "Flexible rubber traction outsole "], "customization_options": {"Size": [{"is_selected": false, "is_available": false, "value": "9.5", "asin": "B014GT3FAW"}, {"is_selected": false, "is_available": false, "value": "10.5", "asin": "B01FMY0OR2"}, {"is_selected": false, "is_available": true, "value": "11.5", "asin": "B01DJGWDBA"}, {"is_selected": false, "is_available": false, "value": "12", "asin": "B014GT2TLS"}, {"is_selected": false, "is_available": false, "value": "13", "asin": "B014GT1OXW"}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B014GT3FAW/ref=twister_B014GT0AJG", "value": "Black/White", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/412X2G5K2aL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B014GT1I4W/ref=twister_B014GT0AJG", "value": "Burgundy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/410famaZnJL.jpg"}, {"is_selected": true, "url": null, "value": "Gray/Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41M4zyqq4HL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B01FMY0OR2/ref=twister_B014GT0AJG", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/41XCdbrciUL.jpg"}]}, "asin": "B01DJGWDBA", "category": "fashion", "query": "men's fashion sneakers", "page": 140, "Title": "Skechers Originals Men's Retros OG 90 Fashion Sneaker", "Description": "Suede jogger with air cooled memory foam", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Soft suede and mesh fabric upper ", "Lace up sporty classic jogging sneaker design ", "Air-Cooled Memory Foam insole ", "Shock absorbing jogger-style midsole ", "Flexible rubber traction outsole "], "Price": "$51.96 to $55.0", "options": {"size": ["9.5", "10.5", "11.5", "12", "13"], "color": ["black | white", "burgundy", "gray | navy", "black"]}, "option_to_image": {"9.5": null, "10.5": null, "11.5": null, "12": null, "13": null, "black | white": "https://m.media-amazon.com/images/I/412X2G5K2aL.jpg", "burgundy": "https://m.media-amazon.com/images/I/410famaZnJL.jpg", "gray | navy": "https://m.media-amazon.com/images/I/41M4zyqq4HL.jpg", "black": "https://m.media-amazon.com/images/I/41XCdbrciUL.jpg"}, "Attributes": ["memory foam", "rubber sole"], "MainImage": "https://m.media-amazon.com/images/I/41M4zyqq4HL.jpg"}} +{"id": "B09C1YWG8W", "contents": "soft plush electric heated blanket throw with foot pocket | navy blue 50 x 62 | 3 heat settings with 2 hour auto shut off, ul certified | machine washable protected and safe: we engineered our heating blankets to heat up while emitting the lowest possible emf energy. ul certified and guaranteed to give you peace of mind and the comfort of warmth. size: plush throw 50x60\", foot throw 50x62\", foot throw 60x70\", and color: beige, blue, grey, red, red plaid, brown, ivory, navy", "product": {"name": "Soft Plush Electric Heated Blanket Throw with Foot Pocket | Navy Blue 50 x 62 | 3 Heat Settings with 2 Hour Auto Shut Off, UL Certified | Machine Washable", "full_description": "", "pricing": [69.99], "images": ["https://m.media-amazon.com/images/I/510NpO6zSdL.jpg", "https://m.media-amazon.com/images/I/31q6XGRJErL.jpg", "https://m.media-amazon.com/images/I/51KWGLoztwL.jpg", "https://m.media-amazon.com/images/I/51UPLmRIBSL.jpg", "https://m.media-amazon.com/images/I/41HwSsQINQL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Blankets & Throws \u203a Throws", "average_rating": 4.2, "small_description": ["PROTECTED AND SAFE: We engineered our heating blankets to heat up while emitting the lowest possible EMF energy. UL Certified and guaranteed to give you peace of mind and the comfort of warmth. ", "LOWER YOUR ELECTRIC BILL \u2013 WHILE STAYING WARM ALL NIGHT: YOU GET TO CHOOSE how toasty warm you prefer to be when you sleep. Enjoy 3 different heating levels with our custom LED controller with also built in auto shut off. We know some of you LIKE IT HOT and you like to SAVE MONEY. Imagine this\u2026 turn off your homes heat at night and cuddle into our heated throw blanket. Then wake up to a reduced electric bill. ", "PERFECTLY POSITIONED CORD WON\u2019T POKE YOU AT NIGHT: 6FT LONG POWER CORD gives you plenty of reach to any nearby outlet whether you\u2019re in the bedroom, camping, RV, air mattress or carpet AND YOU WON\u2019T EVEN FEEL IT\u2019S THERE. The conveniently placed 3ft controller cord can easily be reached and tucked away as well. ", "SUPER SIMPLE TO WASH: Just disconnect the controller and power cables and simply throw the entire electric throw blanket into the wash. Use cold or lukewarm water and put it on a slow agitation cycle. Then toss it in the dryer on low heat or let it air dry. STAYS SILKY SOFT after many washes. ", "BUILT TO LAST: 5 YEAR WARRANTY \u2013 WE KNOW YOU\u2019RE TIRED OF buying inferior heated throws that stop working in only the first few uses. That\u2019s why we engineered our heated throw blanket to last in comfortable cozy conditions or even the most rugged adventurous settings. "], "model": "DC54-0493", "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07W95NB13/ref=twister_B083G7ZWKH", "value": "Plush Throw 50x60\"", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Foot Throw 50x62\"", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08HVWG6SJ/ref=twister_B083G7ZWKH", "value": "Foot Throw 60x70\"", "price_string": "", "price": 0, "image": null}], "Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07W95NB13/ref=twister_B083G7ZWKH", "value": "Beige", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/211S-Lv2YQL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07W6Y2TXS/ref=twister_B083G7ZWKH?_encoding=UTF8&psc=1", "value": "Blue", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21CtChQ17AL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WC36H5N/ref=twister_B083G7ZWKH", "value": "Grey", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21t6KonM3bL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WC6H2DN/ref=twister_B083G7ZWKH", "value": "Red", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21PUVF3lNKL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C1X3BBG/ref=twister_B083G7ZWKH", "value": "Red Plaid", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51vu2K-2XVL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07WC46VQ2/ref=twister_B083G7ZWKH?_encoding=UTF8&psc=1", "value": "Brown", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/21VOeM-hQEL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B09C1ZPNBC/ref=twister_B083G7ZWKH?_encoding=UTF8&psc=1", "value": "Ivory", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01AueyUjchL.jpg"}, {"is_selected": true, "url": null, "value": "Navy", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/01HengnxExL.jpg"}]}, "asin": "B09C1YWG8W", "category": "garden", "query": "throw blankets", "page": 12, "Title": "Soft Plush Electric Heated Blanket Throw with Foot Pocket | Navy Blue 50 x 62 | 3 Heat Settings with 2 Hour Auto Shut Off, UL Certified | Machine Washable", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["PROTECTED AND SAFE: We engineered our heating blankets to heat up while emitting the lowest possible EMF energy. UL Certified and guaranteed to give you peace of mind and the comfort of warmth. ", "LOWER YOUR ELECTRIC BILL \u2013 WHILE STAYING WARM ALL NIGHT: YOU GET TO CHOOSE how toasty warm you prefer to be when you sleep. Enjoy 3 different heating levels with our custom LED controller with also built in auto shut off. We know some of you LIKE IT HOT and you like to SAVE MONEY. Imagine this\u2026 turn off your homes heat at night and cuddle into our heated throw blanket. Then wake up to a reduced electric bill. ", "PERFECTLY POSITIONED CORD WON\u2019T POKE YOU AT NIGHT: 6FT LONG POWER CORD gives you plenty of reach to any nearby outlet whether you\u2019re in the bedroom, camping, RV, air mattress or carpet AND YOU WON\u2019T EVEN FEEL IT\u2019S THERE. The conveniently placed 3ft controller cord can easily be reached and tucked away as well. ", "SUPER SIMPLE TO WASH: Just disconnect the controller and power cables and simply throw the entire electric throw blanket into the wash. Use cold or lukewarm water and put it on a slow agitation cycle. Then toss it in the dryer on low heat or let it air dry. STAYS SILKY SOFT after many washes. ", "BUILT TO LAST: 5 YEAR WARRANTY \u2013 WE KNOW YOU\u2019RE TIRED OF buying inferior heated throws that stop working in only the first few uses. That\u2019s why we engineered our heated throw blanket to last in comfortable cozy conditions or even the most rugged adventurous settings. "], "Price": "$69.99", "options": {"size": ["plush throw 50x60\"", "foot throw 50x62\"", "foot throw 60x70\""], "color": ["beige", "blue", "grey", "red", "red plaid", "brown", "ivory", "navy"]}, "option_to_image": {"plush throw 50x60\"": null, "foot throw 50x62\"": null, "foot throw 60x70\"": null, "beige": "https://m.media-amazon.com/images/I/211S-Lv2YQL.jpg", "blue": "https://m.media-amazon.com/images/I/21CtChQ17AL.jpg", "grey": "https://m.media-amazon.com/images/I/21t6KonM3bL.jpg", "red": "https://m.media-amazon.com/images/I/21PUVF3lNKL.jpg", "red plaid": "https://m.media-amazon.com/images/I/51vu2K-2XVL.jpg", "brown": "https://m.media-amazon.com/images/I/21VOeM-hQEL.jpg", "ivory": "https://m.media-amazon.com/images/I/01AueyUjchL.jpg", "navy": "https://m.media-amazon.com/images/I/01HengnxExL.jpg"}, "Attributes": ["throw blanket", "machine washable"], "MainImage": "https://m.media-amazon.com/images/I/510NpO6zSdL.jpg"}} +{"id": "B08PYQVNBQ", "contents": "yitahome 5 tier bookshelf, open freestanding 5 shelf bookcase 5 tier storage shelf for display and collection, industrial decorative shelf for living room, home, office, retro brown bookshelf 5-tier ladder bookshelf- compared to others, this freestanding bookshelf is equipped with 5 open shelves to provide ample space. moreover, its stream-lined and multi-layer construction meet all your decorative and functional needs. color: retro brown, rustic brown", "product": {"name": "YITAHOME 5 Tier Bookshelf, Open Freestanding 5 Shelf Bookcase 5 Tier Storage Shelf for Display and Collection, Industrial Decorative Shelf for Living Room, Home, Office, Retro Brown Bookshelf", "full_description": "", "pricing": [159.99], "images": ["https://m.media-amazon.com/images/I/51X-xLIkQoL.jpg", "https://m.media-amazon.com/images/I/51GQrohUyVS.jpg", "https://m.media-amazon.com/images/I/518b9R7nT5S.jpg", "https://m.media-amazon.com/images/I/51rzKieaFbL.jpg", "https://m.media-amazon.com/images/I/41yoyWr5r1S.jpg", "https://m.media-amazon.com/images/I/51dU8WX2LDS.jpg", "https://m.media-amazon.com/images/I/51eG-3KDQcL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Furniture \u203a Home Office Furniture \u203a Bookcases", "average_rating": 4.7, "small_description": ["5-TIER LADDER BOOKSHELF- Compared to others, this freestanding bookshelf is equipped with 5 open shelves to provide ample space. Moreover, its stream-lined and multi-layer construction meet all your decorative and functional needs. ", "INDUSTRIAL & CHARMING STYLE- The optimal choice for people who want to invigorate home office. Enhance your work or study with the pleasure of compact organization and a clean-cut look to your room. ", "INNOVATIVE DETAILS- Rear X-shaped bracing enhances bookshelf stability so it doesn\u2019t wobble. The X-shaped side bar is used to prevent items from falling. The clear and comfortable finish increases coziness. ", "IMMENSE WEIGHT CAPACITY- Crafted from engineered particle board with fine finishing and a powerful metal frame. Each shelf can bear considerable weight and the adjustable foot pad keeps the product stable on uneven floors. Overall Size: 47\u201d x 11.8\u201d x 70.8\u201d (L\u00a0x\u00a0W\u00a0x\u00a0H) ", "WORRY-FREE ASSEMBLY- All necessary accessories, tools, and illustrated instruction are included. Please adjust the upper and lower connecting parts to make them level, and then tighten the screws. Remember to install the anti-tilting tool on the wall for better stability and less unexpected injuries. "], "model": "\u200eFTOFBC-9000", "customization_options": {"Color": [{"is_selected": true, "url": null, "value": "Retro Brown", "price_string": "$159.99", "price": 159.99, "image": "https://m.media-amazon.com/images/I/51X-xLIkQoL.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08PYCWPV2/ref=twister_B08XXND197?_encoding=UTF8&psc=1", "value": "Rustic Brown", "price_string": "$166.35", "price": 166.35, "image": "https://m.media-amazon.com/images/I/51n4DU+q1DS.jpg"}]}, "asin": "B08PYQVNBQ", "category": "garden", "query": "book cases", "page": 8, "Title": "YITAHOME 5 Tier Bookshelf, Open Freestanding 5 Shelf Bookcase 5 Tier Storage Shelf for Display and Collection, Industrial Decorative Shelf for Living Room, Home, Office, Retro Brown Bookshelf", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["5-TIER LADDER BOOKSHELF- Compared to others, this freestanding bookshelf is equipped with 5 open shelves to provide ample space. Moreover, its stream-lined and multi-layer construction meet all your decorative and functional needs. ", "INDUSTRIAL & CHARMING STYLE- The optimal choice for people who want to invigorate home office. Enhance your work or study with the pleasure of compact organization and a clean-cut look to your room. ", "INNOVATIVE DETAILS- Rear X-shaped bracing enhances bookshelf stability so it doesn\u2019t wobble. The X-shaped side bar is used to prevent items from falling. The clear and comfortable finish increases coziness. ", "IMMENSE WEIGHT CAPACITY- Crafted from engineered particle board with fine finishing and a powerful metal frame. Each shelf can bear considerable weight and the adjustable foot pad keeps the product stable on uneven floors. Overall Size: 47\u201d x 11.8\u201d x 70.8\u201d (L\u00a0x\u00a0W\u00a0x\u00a0H) ", "WORRY-FREE ASSEMBLY- All necessary accessories, tools, and illustrated instruction are included. Please adjust the upper and lower connecting parts to make them level, and then tighten the screws. Remember to install the anti-tilting tool on the wall for better stability and less unexpected injuries. "], "Price": "$159.99", "options": {"color": ["retro brown", "rustic brown"]}, "option_to_image": {"retro brown": "https://m.media-amazon.com/images/I/51X-xLIkQoL.jpg", "rustic brown": "https://m.media-amazon.com/images/I/51n4DU+q1DS.jpg"}, "Attributes": ["home office", "shelf bookcase", "storage shelf", "metal frame", "living room"], "MainImage": "https://m.media-amazon.com/images/I/51X-xLIkQoL.jpg"}} +{"id": "B00T9U3NA6", "contents": "hair removal pads 4 piece set (2-pack) the hair removal pads smooth away unwanted hair. each pad is covered with superfine crystals that buff away hair leaving your skin soft and incredibly smooth. pads gently exfoliate while removing hair. safe for upper lips, sensitive areas such as underarms and anywhere you need to remove hair or exfoliate. each pack has 1 large size pad for facial areas, legs, arms and underarms ", "product": {"name": "Hair Removal Pads 4 Piece Set (2-Pack)", "full_description": "The hair removal pads smooth away unwanted hair. Each pad is covered with superfine crystals that buff away hair leaving your skin soft and incredibly smooth. Pads gently exfoliate while removing hair. Safe for upper lips, sensitive areas such as underarms and anywhere you need to remove hair or exfoliate.", "pricing": [4.99], "images": ["https://m.media-amazon.com/images/I/51kaUIUcDmL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Shave & Hair Removal", "average_rating": 2.9, "small_description": ["Each pack has 1 large size pad for facial areas, legs, arms and underarms ", "1 small size pad for hard to reach areas ", "2 backing pads (buffer pads attach to the backing pads) ", "Gently exfoliate and buff away unwanted hair without razors or chemicals ", "Safe for upper lip, sensitive areas such as underarms "], "customization_options": "", "asin": "B00T9U3NA6", "category": "beauty", "query": "shave & hair removal", "page": 60, "Title": "Hair Removal Pads 4 Piece Set (2-Pack)", "Description": "The hair removal pads smooth away unwanted hair. Each pad is covered with superfine crystals that buff away hair leaving your skin soft and incredibly smooth. Pads gently exfoliate while removing hair. Safe for upper lips, sensitive areas such as underarms and anywhere you need to remove hair or exfoliate.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Each pack has 1 large size pad for facial areas, legs, arms and underarms ", "1 small size pad for hard to reach areas ", "2 backing pads (buffer pads attach to the backing pads) ", "Gently exfoliate and buff away unwanted hair without razors or chemicals ", "Safe for upper lip, sensitive areas such as underarms "], "Price": "$4.99", "options": {}, "option_to_image": {}, "Attributes": ["hair removal"], "MainImage": "https://m.media-amazon.com/images/I/51kaUIUcDmL.jpg"}} +{"id": "B00UETYYV8", "contents": "4 pack, russell stover milk chocolate coconut nests russel stover coconut nest covered in milk chocolate. pack of 4 individually wrapped coconut nests 1oz each (total of 4oz) russell stover delicious milk chocolate coconut nests ", "product": {"name": "4 Pack, Russell Stover Milk Chocolate Coconut Nests", "full_description": "Russel Stover Coconut Nest Covered in Milk Chocolate. Pack of 4 Individually Wrapped Coconut Nests 1oz each (Total of 4oz)", "pricing": [12.99], "images": ["https://m.media-amazon.com/images/I/51hYYszcNlL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.5, "small_description": ["Russell Stover Delicious Milk Chocolate Coconut Nests ", "4 Individually Wrapped Coconut Nests 1 oz each "], "customization_options": "", "asin": "B00UETYYV8", "category": "grocery", "query": "milks & creams", "page": 197, "Title": "4 Pack, Russell Stover Milk Chocolate Coconut Nests", "Description": "Russel Stover Coconut Nest Covered in Milk Chocolate. Pack of 4 Individually Wrapped Coconut Nests 1oz each (Total of 4oz)", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Russell Stover Delicious Milk Chocolate Coconut Nests ", "4 Individually Wrapped Coconut Nests 1 oz each "], "Price": "$12.99", "options": {}, "option_to_image": {}, "Attributes": ["milk chocolate", "individually wrapped"], "MainImage": "https://m.media-amazon.com/images/I/51hYYszcNlL.jpg"}} +{"id": "B08532HWVM", "contents": "beaupretty 7pcs silicone travel bottles set empty cosmetic bottles refillable toiletry containers squeezable travel tube for lotion shampoo toiletries descriptionthis is a set of 7 pieces travel bottles. perfect for shampoo, conditioner, body wash, lotion and more. large opening for easy refill with leak-proof cover. compact size, easy to store and carry, you can take your preferred brands of shampoo, condition, gel or other toiletries to gym, beach, travel, hotel, etc.features- color: as shown.- material: silicone.- size: 11x9x0.8cm.package including1 x set of 7pcs silicone travel bottles bright color and fruit shape design. ", "product": {"name": "Beaupretty 7Pcs Silicone Travel Bottles Set Empty Cosmetic Bottles Refillable Toiletry Containers Squeezable Travel Tube for Lotion Shampoo Toiletries", "full_description": "DescriptionThis is a set of 7 pieces travel bottles. Perfect for shampoo, conditioner, body wash, lotion and more. Large opening for easy refill with leak-proof cover. Compact size, easy to store and carry, you can take your preferred brands of shampoo, condition, gel or other toiletries to gym, beach, travel, hotel, etc.Features- Color: As shown.- Material: Silicone.- Size: 11x9x0.8cm.Package Including1 x set of 7Pcs Silicone Travel Bottles", "pricing": [9.29], "images": ["https://m.media-amazon.com/images/I/315TtSTAH+L.jpg", "https://m.media-amazon.com/images/I/41DjZt7cpxL.jpg", "https://m.media-amazon.com/images/I/31CZ1RK4NnL.jpg", "https://m.media-amazon.com/images/I/41bBSx+HM2L.jpg", "https://m.media-amazon.com/images/I/51TjCDw2hnL.jpg", "https://m.media-amazon.com/images/I/31tsgVAbXxL.jpg", "https://m.media-amazon.com/images/I/31zcwdGTrrL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Tools & Accessories \u203a Bags & Cases", "average_rating": "", "small_description": ["Bright color and fruit shape design. ", "Each bottle with the capacity of about 25ml-30ml. ", "Compact size, easy to store and carry, you can take your preferred brands of shampoo, condition, gel or other toiletries to gym, beach, travel, hotel, etc. ", "Large opening for easy refill with leak-proof cover. ", "Set of 7 travel bottles, perfect for shampoo, conditioner, body wash, lotion and more. "], "customization_options": "", "asin": "B08532HWVM", "category": "beauty", "query": "refillable containers", "page": 184, "Title": "Beaupretty 7Pcs Silicone Travel Bottles Set Empty Cosmetic Bottles Refillable Toiletry Containers Squeezable Travel Tube for Lotion Shampoo Toiletries", "Description": "DescriptionThis is a set of 7 pieces travel bottles. Perfect for shampoo, conditioner, body wash, lotion and more. Large opening for easy refill with leak-proof cover. Compact size, easy to store and carry, you can take your preferred brands of shampoo, condition, gel or other toiletries to gym, beach, travel, hotel, etc.Features- Color: As shown.- Material: Silicone.- Size: 11x9x0.8cm.Package Including1 x set of 7Pcs Silicone Travel Bottles", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Bright color and fruit shape design. ", "Each bottle with the capacity of about 25ml-30ml. ", "Compact size, easy to store and carry, you can take your preferred brands of shampoo, condition, gel or other toiletries to gym, beach, travel, hotel, etc. ", "Large opening for easy refill with leak-proof cover. ", "Set of 7 travel bottles, perfect for shampoo, conditioner, body wash, lotion and more. "], "Price": "$9.29", "options": {}, "option_to_image": {}, "Attributes": ["travel bottles", "leak proof", "body wash", "shampoo conditioner"], "MainImage": "https://m.media-amazon.com/images/I/315TtSTAH+L.jpg"}} +{"id": "B085RRL27J", "contents": "taali new sweet and savory variety popped water lily pops (6 resealable bags) - try 6 flavors! | sweet, salty, savory assortment | protein boost | snack on the go (2 oz/2.3 oz. bags) 6-flavor variety: enjoy 6 share sized bags. includes 1 himalayan pink salt, 1 white cheddar, 1 tikka masala, 1 tangy turmeric, 1 cinnamon vanilla and 1 cookie crunch. no need to choose between sweet and savory here! indulge your cravings and try them all! flavor: 3-flavor variety, 4-flavor variety, variety - sweet & savory, and size: 0.8 ounce (pack of 10), 0.8 ounce (pack of 20), 2.3 ounce (pack of 4), 2-2.3 ounce (pack of 6)", "product": {"name": "Taali NEW Sweet and Savory Variety Popped Water Lily Pops (6 Resealable Bags) - Try 6 Flavors! | Sweet, Salty, Savory Assortment | Protein Boost | Snack on the Go (2 oz/2.3 oz. bags)", "full_description": "", "pricing": [38.99], "images": ["https://m.media-amazon.com/images/I/51PyQPhMUOL.jpg", "https://m.media-amazon.com/images/I/51m8vnfGxDL.jpg", "https://m.media-amazon.com/images/I/51EaUs2gpUS.jpg", "https://m.media-amazon.com/images/I/51qbi32QhDL.jpg", "https://m.media-amazon.com/images/I/61tAhC6LFoL.jpg", "https://m.media-amazon.com/images/I/61+cosYt2dL.jpg", "https://m.media-amazon.com/images/I/61uhigWiDKL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Grocery & Gourmet Food \u203a Snacks & Sweets \u203a Snack Foods \u203a Puffed Snacks", "average_rating": 3.9, "small_description": ["6-FLAVOR VARIETY: Enjoy 6 share sized bags. Includes 1 Himalayan Pink Salt, 1 White Cheddar, 1 Tikka Masala, 1 Tangy Turmeric, 1 Cinnamon Vanilla and 1 Cookie Crunch. No need to choose between sweet and savory here! Indulge your cravings and try them all! ", "PLANT BASED PROTEIN: With 6-10 grams of vegetarian protein per bag, you will finally have a great answer to the dreaded question... \u201cbut where do you get your protein\u201d? ", "CLEAN EATING: Taali Water Lily Pops new sweet flavors fit into any healthy diet - they are gluten free, soy free, corn free, dairy free, certified non GMO, and do not contain artificial flavors or ingredients. Taali takes pride in using real ingredients that taste great! ", "POP. EAT. REPEAT: Rich in protein and antioxidants, Taali will leave you feeling satisfied with fewer calories. With 67% less fat & 20% less calories than the leading popcorn brand, you won\u2019t be able to get enough of this sweet guilt-free treat. ", "MORE OF WHAT YOU LOVE: With bigger bags than competitor products, there\u2019s more to love and more to share with Taali "], "customization_options": {"Flavor": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07PN7DXYV/ref=twister_B09HJPHM3F", "value": "3-Flavor Variety", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085RFK3CM/ref=twister_B09HJPHM3F", "value": "4-Flavor Variety", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "Variety - Sweet & Savory", "price_string": "", "price": 0, "image": null}], "Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07PN7DXYV/ref=twister_B09HJPHM3F", "value": "0.8 Ounce (Pack of 10)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B085R8FRMX/ref=twister_B09HJPHM3F", "value": "0.8 Ounce (Pack of 20)", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07RM57VTN/ref=twister_B09HJPHM3F", "value": "2.3 Ounce (Pack of 4)", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "2-2.3 Ounce (Pack of 6)", "price_string": "", "price": 0, "image": null}]}, "asin": "B085RRL27J", "category": "grocery", "query": "wasabi peas", "page": 10, "Title": "Taali NEW Sweet and Savory Variety Popped Water Lily Pops (6 Resealable Bags) - Try 6 Flavors! | Sweet, Salty, Savory Assortment | Protein Boost | Snack on the Go (2 oz/2.3 oz. bags)", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["6-FLAVOR VARIETY: Enjoy 6 share sized bags. Includes 1 Himalayan Pink Salt, 1 White Cheddar, 1 Tikka Masala, 1 Tangy Turmeric, 1 Cinnamon Vanilla and 1 Cookie Crunch. No need to choose between sweet and savory here! Indulge your cravings and try them all! ", "PLANT BASED PROTEIN: With 6-10 grams of vegetarian protein per bag, you will finally have a great answer to the dreaded question... \u201cbut where do you get your protein\u201d? ", "CLEAN EATING: Taali Water Lily Pops new sweet flavors fit into any healthy diet - they are gluten free, soy free, corn free, dairy free, certified non GMO, and do not contain artificial flavors or ingredients. Taali takes pride in using real ingredients that taste great! ", "POP. EAT. REPEAT: Rich in protein and antioxidants, Taali will leave you feeling satisfied with fewer calories. With 67% less fat & 20% less calories than the leading popcorn brand, you won\u2019t be able to get enough of this sweet guilt-free treat. ", "MORE OF WHAT YOU LOVE: With bigger bags than competitor products, there\u2019s more to love and more to share with Taali "], "Price": "$38.99", "options": {"flavor": ["3-flavor variety", "4-flavor variety", "variety - sweet & savory"], "size": ["0.8 ounce (pack of 10)", "0.8 ounce (pack of 20)", "2.3 ounce (pack of 4)", "2-2.3 ounce (pack of 6)"]}, "option_to_image": {"3-flavor variety": null, "4-flavor variety": null, "variety - sweet & savory": null, "0.8 ounce (pack of 10)": null, "0.8 ounce (pack of 20)": null, "2.3 ounce (pack of 4)": null, "2-2.3 ounce (pack of 6)": null}, "Attributes": ["white cheddar", "soy free", "plant based", "dairy free", "artificial flavors", "non gmo", "gluten free"], "MainImage": "https://m.media-amazon.com/images/I/51PyQPhMUOL.jpg"}} +{"id": "B00PZ006U4", "contents": "tycon systems poe-msplt-4824 poe splitter - 24v dc 12w features: very compact size converts an active poe input to a dc output various output voltages and usb available output power up to 15w short circuit, over current protectionpoe-msplt-4824 is a 10/100mb splitter to power a non-poe device using poe. it has an 802.3af/at or 48vdc passive poe input. the 12w dc output is via a standard 5.5mm/2.1mm barrel connector on a 6in cable. data output is thru a 6in cat5 cable terminated with an rj45 connector. these poe splitters are the perfect solution for running 24vdc devices like cameras, access points, switches and sensors from a 802.3af or 802.3at or 48vdc passive poe source. wide -25 to +50c temperature range enables outdoor applications when mounted in weatherproof enclosures.inputs and outputs are isolated. they have protections for short circuit and over-current.dimensions:65 x 45 x 26mm (2.6 x 1.8 x 1\u201d)weight: 62g (2.2oz) 802.3af/at poe input ", "product": {"name": "Tycon Systems POE-MSPLT-4824 POE Splitter - 24V DC 12W", "full_description": "Features: Very Compact Size Converts an Active PoE Input to a DC output Various Output Voltages and USB Available Output Power Up To 15W Short Circuit, Over Current ProtectionPOE-MSPLT-4824 is a 10/100Mb splitter to power a non-POE device using POE. It has an 802.3af/at or 48VDC Passive PoE input. The 12W DC output is via a standard 5.5mm/2.1mm barrel connector on a 6in cable. Data output is thru a 6in CAT5 cable terminated with an RJ45 connector. These POE splitters are the perfect solution for running 24VDC devices like cameras, access points, switches and sensors from a 802.3af or 802.3at or 48VDC Passive POE source. Wide -25 to +50C temperature range enables outdoor applications when mounted in weatherproof enclosures.Inputs and outputs are isolated. They have protections for short circuit and over-current.Dimensions:65 x 45 x 26mm (2.6 x 1.8 x 1\u201d)Weight: 62g (2.2oz)", "pricing": [46.5], "images": ["https://m.media-amazon.com/images/I/416ro4Sq8gL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Accessories & Supplies \u203a Power Strips & Surge Protectors \u203a Surge Protectors", "average_rating": "", "small_description": ["802.3af/at PoE Input ", "24VDC 12W out ", "10/100MB ", "Compact Size ", "Low Cost "], "model": "POE-MSPLT-4824", "customization_options": "", "asin": "B00PZ006U4", "category": "electronics", "query": "power protection", "page": 281, "Title": "Tycon Systems POE-MSPLT-4824 POE Splitter - 24V DC 12W", "Description": "Features: Very Compact Size Converts an Active PoE Input to a DC output Various Output Voltages and USB Available Output Power Up To 15W Short Circuit, Over Current ProtectionPOE-MSPLT-4824 is a 10/100Mb splitter to power a non-POE device using POE. It has an 802.3af/at or 48VDC Passive PoE input. The 12W DC output is via a standard 5.5mm/2.1mm barrel connector on a 6in cable. Data output is thru a 6in CAT5 cable terminated with an RJ45 connector. These POE splitters are the perfect solution for running 24VDC devices like cameras, access points, switches and sensors from a 802.3af or 802.3at or 48VDC Passive POE source. Wide -25 to +50C temperature range enables outdoor applications when mounted in weatherproof enclosures.Inputs and outputs are isolated. They have protections for short circuit and over-current.Dimensions:65 x 45 x 26mm (2.6 x 1.8 x 1\u201d)Weight: 62g (2.2oz)", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["802.3af/at PoE Input ", "24VDC 12W out ", "10/100MB ", "Compact Size ", "Low Cost "], "Price": "$46.5", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/416ro4Sq8gL.jpg"}} +{"id": "B09RYN5ZS7", "contents": "finchberry happy birthday gift set finchberry happy birthday gift set, gift basket for women, 3pcs with soap, fizzy salt soak & soap dish, home spa kit with sustainably sourced ingredients gifting sensation - elevate your gift-giving and brighten their special day with finchberry's happy birthday gift set! artfully curated and expertly handcrafted with sustainably sourced ingredients, this nourishing trio will be sure to leave a lasting impression. ", "product": {"name": "Finchberry Happy Birthday Gift Set", "full_description": "Finchberry Happy Birthday Gift Set, Gift Basket for Women, 3Pcs with Soap, Fizzy Salt Soak & Soap Dish, Home Spa Kit with Sustainably Sourced Ingredients", "pricing": [35.0], "images": ["https://m.media-amazon.com/images/I/41pxYAJDlnL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Skin Care \u203a Body \u203a Cleansers \u203a Soaps", "average_rating": "", "small_description": ["GIFTING SENSATION - Elevate your gift-giving and brighten their special day with Finchberry's Happy Birthday Gift Set! Artfully curated and expertly handcrafted with sustainably sourced ingredients, this nourishing trio will be sure to leave a lasting impression. ", "WHAT'S INCLUDED - Each Happy Birthday Gift Set includes: a Main Squeeze Bar Soap, a Renegade Honey Fizzy Salt Soak and a Pink Silicone Flower Soap Dish ", "UNIQUE & DECADENT - Perfectly packaged and delightfully decorated. Each box is printed with a thoughful saying and ready to be gifted to anyone who enjoys \u201cme time\u201d. **PLEASE NOTE: The sayings printed on the inside of each gift set are random. We cannot guarantee which saying you will receive. ", "PRETTY PERFECTION - Beautifully layered in eye-catching color combinations and highlighted in a decorative glass container, our lovely soaks are the perfect addition to any bathroom. ", "HIGH QUALITY - Our flower soap dish is made of high quality flexible silicone, soft and durable. Size: 4.9\" x 4.9\" "], "customization_options": "", "asin": "B09RYN5ZS7", "category": "beauty", "query": "skin care sets & kits", "page": 151, "Title": "Finchberry Happy Birthday Gift Set", "Description": "Finchberry Happy Birthday Gift Set, Gift Basket for Women, 3Pcs with Soap, Fizzy Salt Soak & Soap Dish, Home Spa Kit with Sustainably Sourced Ingredients", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["GIFTING SENSATION - Elevate your gift-giving and brighten their special day with Finchberry's Happy Birthday Gift Set! Artfully curated and expertly handcrafted with sustainably sourced ingredients, this nourishing trio will be sure to leave a lasting impression. ", "WHAT'S INCLUDED - Each Happy Birthday Gift Set includes: a Main Squeeze Bar Soap, a Renegade Honey Fizzy Salt Soak and a Pink Silicone Flower Soap Dish ", "UNIQUE & DECADENT - Perfectly packaged and delightfully decorated. Each box is printed with a thoughful saying and ready to be gifted to anyone who enjoys \u201cme time\u201d. **PLEASE NOTE: The sayings printed on the inside of each gift set are random. We cannot guarantee which saying you will receive. ", "PRETTY PERFECTION - Beautifully layered in eye-catching color combinations and highlighted in a decorative glass container, our lovely soaks are the perfect addition to any bathroom. ", "HIGH QUALITY - Our flower soap dish is made of high quality flexible silicone, soft and durable. Size: 4.9\" x 4.9\" "], "Price": "$35.0", "options": {}, "option_to_image": {}, "Attributes": ["high quality"], "MainImage": "https://m.media-amazon.com/images/I/41pxYAJDlnL.jpg"}} +{"id": "B08HN55NGW", "contents": "prepac entryway shoe cubby console, 60\", drifted gray the prepac 60\" shoe cubby console is a great option for organizing an entryway, mudroom or family room. there are 32 shoe cubbies to keep shoes from cluttering your floors and four large top compartments to stow books, bags and catch-all baskets. not just for shoes, the cubbies can also be used for scarves, gloves and other items. this versatile console could also be repurposed to hold yarn, fabric and craft supplies. at 35\" high, the large top surface is at an optimal height for setting down keys and other \"on the go\" items, or as a spot for your favorite lamp and decorative items. constructed from non-toxic, carb-2 compliant, laminated composite woods. ships ready to assemble, includes an instruction booklet for easy assembly and has a 5-year manufacturer\u2019s limited parts warranty. manufactured in canada and meets all north american safety standards. thirty-two storage cubbies are spacious enough to hold a pair of size 13 men's shoes (6.875 in. w x 4.875 in. h x 14 in. d) ", "product": {"name": "Prepac Entryway Shoe Cubby Console, 60\", Drifted Gray", "full_description": "The Prepac 60\" Shoe Cubby Console is a great option for organizing an entryway, mudroom or family room. There are 32 shoe cubbies to keep shoes from cluttering your floors and four large top compartments to stow books, bags and catch-all baskets. Not just for shoes, the cubbies can also be used for scarves, gloves and other items. This versatile console could also be repurposed to hold yarn, fabric and craft supplies. At 35\" high, the large top surface is at an optimal height for setting down keys and other \"on the go\" items, or as a spot for your favorite lamp and decorative items. Constructed from non-toxic, CARB-2 compliant, laminated composite woods. Ships ready to assemble, includes an instruction booklet for easy assembly and has a 5-year manufacturer\u2019s limited parts warranty. Manufactured in Canada and meets all North American safety standards.", "pricing": [280.99], "images": ["https://m.media-amazon.com/images/I/51994qN3ezL.jpg", "https://m.media-amazon.com/images/I/41pSnpuhppL.jpg", "https://m.media-amazon.com/images/I/41t5qQLRJuL.jpg", "https://m.media-amazon.com/images/I/31z+9qCOzgL.jpg", "https://m.media-amazon.com/images/I/414fB+BjzSL.jpg", "https://m.media-amazon.com/images/I/41iNrl7zsOL.jpg", "https://m.media-amazon.com/images/I/61q46ecPHIL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Storage & Organization \u203a Clothing & Closet Storage \u203a Shoe Organizers \u203a Free Standing Shoe Racks", "average_rating": 4.5, "small_description": ["Thirty-two storage cubbies are spacious enough to hold a pair of size 13 men's shoes (6.875 in. W x 4.875 in. H x 14 in. D) ", "Four large upper cubbies for baskets, games, books (13.25 in. W x 7.25 in. H x 14 in. D) ", "Side and top moldings; Decorative kicker; 4\" high notch on each side to accommodate baseboards ", "No visible hardware with connecting rod and cam lock construction ", "Assembled Dimensions: 60 in. W x 35 in. H x 15.5 in. D; Weight Capacity: 200 lbs on top; 10 lbs per each top compartment "], "model": "\u200eDUSG-0014-1", "customization_options": "", "asin": "B08HN55NGW", "category": "garden", "query": "cabinets", "page": 115, "Title": "Prepac Entryway Shoe Cubby Console, 60\", Drifted Gray", "Description": "The Prepac 60\" Shoe Cubby Console is a great option for organizing an entryway, mudroom or family room. There are 32 shoe cubbies to keep shoes from cluttering your floors and four large top compartments to stow books, bags and catch-all baskets. Not just for shoes, the cubbies can also be used for scarves, gloves and other items. This versatile console could also be repurposed to hold yarn, fabric and craft supplies. At 35\" high, the large top surface is at an optimal height for setting down keys and other \"on the go\" items, or as a spot for your favorite lamp and decorative items. Constructed from non-toxic, CARB-2 compliant, laminated composite woods. Ships ready to assemble, includes an instruction booklet for easy assembly and has a 5-year manufacturer\u2019s limited parts warranty. Manufactured in Canada and meets all North American safety standards.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Thirty-two storage cubbies are spacious enough to hold a pair of size 13 men's shoes (6.875 in. W x 4.875 in. H x 14 in. D) ", "Four large upper cubbies for baskets, games, books (13.25 in. W x 7.25 in. H x 14 in. D) ", "Side and top moldings; Decorative kicker; 4\" high notch on each side to accommodate baseboards ", "No visible hardware with connecting rod and cam lock construction ", "Assembled Dimensions: 60 in. W x 35 in. H x 15.5 in. D; Weight Capacity: 200 lbs on top; 10 lbs per each top compartment "], "Price": "$280.99", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/51994qN3ezL.jpg"}} +{"id": "B01MSP2B0I", "contents": "wrangler men's retro slim fit straight leg jean, black, 42w x 32l wrangler men's retro slim straight jean. this retro jean was designed with style in mind. an everyday staple built with a slim fit, this retro jean is a classic that never goes out of style. great for a night on the town or out to dinner, this jean keeps you looking buttoned-up no matter the occasion. features slim fit. slim fit through the seat and thighs. retro style. \"\"w\"\" stitching on the back pockets, leather logo patch, 1947 rivet on the front pocket. traditional 5-pocket jean. (2) embroidered hip pockets, (1) watch pocket, and (2) front pockets. durable comfort. built with a durable cotton blend. slim fit. this slim fit straight leg jean is designed with fashion-forward style. built with a slim fit through the seat and thigh, our retro jean sits lower on the waist and leaves enough room to fit over your favorite pair of boots. ", "product": {"name": "Wrangler Men's Retro Slim Fit Straight Leg Jean, Black, 42W x 32L", "full_description": "Wrangler Men's Retro Slim Straight Jean. This Retro jean was designed with style in mind. An everyday staple built with a slim fit, this Retro jean is a classic that never goes out of style. Great for a night on the town or out to dinner, this jean keeps you looking buttoned-up no matter the occasion. FEATURES Slim Fit. Slim fit through the seat and thighs. Retro Style. \"\"W\"\" stitching on the back pockets, leather logo patch, 1947 rivet on the front pocket. Traditional 5-Pocket Jean. (2) embroidered hip pockets, (1) watch pocket, and (2) front pockets. Durable Comfort. Built with a durable cotton blend.", "pricing": [63.05], "images": ["https://m.media-amazon.com/images/I/312J3aUg8UL.jpg", "https://m.media-amazon.com/images/I/31uEjHWJWGL.jpg", "https://m.media-amazon.com/images/I/31yw1e3NkCL.jpg", "https://m.media-amazon.com/images/I/512m9mQazjL.jpg", "https://m.media-amazon.com/images/I/41B1WQkr1BL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Men \u203a Clothing \u203a Jeans", "average_rating": 5, "small_description": ["SLIM FIT. This slim fit straight leg jean is designed with fashion-forward style. Built with a slim fit through the seat and thigh, our Retro jean sits lower on the waist and leaves enough room to fit over your favorite pair of boots. ", "RETRO STYLING. Designed with Retro style in mind, this slim straight jean provides a vintage look for the modern man. Complete with our signature Retro finishes and slim fit, this jean will keep you looking good for any occasion. ", "QUALITY MATERIALS. Made from high-quality material, this slim fit straight jean is constructed for comfort, function, and style. Finished with a unique wash technique - whiskering, handsanding, distressing - each style varies in finishing. ", "ICONIC EMBELLISHMENTS. This premium slim jean is finished with our iconic Wrangler \u201cW\u201d stitching, leather Wrangler patch on the back pocket, and 1947 rivet on the front pocket. Maintain that effortless classic style with a touch of Retro. ", "FIVE POCKET STYLING. Constructed with our classic five-pocket jean styling, these straight leg jeans are made with (2) embroidered hip pockets, (1) watch pocket, and (2) front pockets. "], "customization_options": "", "asin": "B01MSP2B0I", "category": "fashion", "query": "men's jeans", "page": 21, "Title": "Wrangler Men's Retro Slim Fit Straight Leg Jean, Black, 42W x 32L", "Description": "Wrangler Men's Retro Slim Straight Jean. This Retro jean was designed with style in mind. An everyday staple built with a slim fit, this Retro jean is a classic that never goes out of style. Great for a night on the town or out to dinner, this jean keeps you looking buttoned-up no matter the occasion. FEATURES Slim Fit. Slim fit through the seat and thighs. Retro Style. \"\"W\"\" stitching on the back pockets, leather logo patch, 1947 rivet on the front pocket. Traditional 5-Pocket Jean. (2) embroidered hip pockets, (1) watch pocket, and (2) front pockets. Durable Comfort. Built with a durable cotton blend.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["SLIM FIT. This slim fit straight leg jean is designed with fashion-forward style. Built with a slim fit through the seat and thigh, our Retro jean sits lower on the waist and leaves enough room to fit over your favorite pair of boots. ", "RETRO STYLING. Designed with Retro style in mind, this slim straight jean provides a vintage look for the modern man. Complete with our signature Retro finishes and slim fit, this jean will keep you looking good for any occasion. ", "QUALITY MATERIALS. Made from high-quality material, this slim fit straight jean is constructed for comfort, function, and style. Finished with a unique wash technique - whiskering, handsanding, distressing - each style varies in finishing. ", "ICONIC EMBELLISHMENTS. This premium slim jean is finished with our iconic Wrangler \u201cW\u201d stitching, leather Wrangler patch on the back pocket, and 1947 rivet on the front pocket. Maintain that effortless classic style with a touch of Retro. ", "FIVE POCKET STYLING. Constructed with our classic five-pocket jean styling, these straight leg jeans are made with (2) embroidered hip pockets, (1) watch pocket, and (2) front pockets. "], "Price": "$63.05", "options": {}, "option_to_image": {}, "Attributes": ["slim fit", "straight leg", "quality materials"], "MainImage": "https://m.media-amazon.com/images/I/312J3aUg8UL.jpg"}} +{"id": "B073WX1ZSK", "contents": "pepperidge farm goldfish cheddar crackers, 22 snack packs, 28g/1 oz. each {imported from canada} ", "product": {"name": "Pepperidge Farm Goldfish Cheddar Crackers, 22 Snack Packs, 28g/1 oz. Each {Imported from Canada}", "full_description": "", "pricing": [31.99], "images": ["https://m.media-amazon.com/images/I/51-iJBYhnmL.jpg", "https://m.media-amazon.com/images/I/51mDMdDtLXL.jpg", "https://m.media-amazon.com/images/I/51bvu0oVWsL.jpg", "https://m.media-amazon.com/images/I/51DlNbPpI+S.jpg", "https://m.media-amazon.com/images/I/51wPwl57csS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "", "average_rating": 4.7, "small_description": [""], "customization_options": "", "asin": "B073WX1ZSK", "category": "grocery", "query": "snack crackers", "page": 33, "Title": "Pepperidge Farm Goldfish Cheddar Crackers, 22 Snack Packs, 28g/1 oz. Each {Imported from Canada}", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": [""], "Price": "$31.99", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/51-iJBYhnmL.jpg"}} +{"id": "B004HO58MA", "contents": "fujifilm finepix z90 14 mp digital camera with fujinon 5x wide angle optical zoom lens and 3-inch touch-screen lcd (purple) the fuji finepix z90 14mp purple digital camera is packed full of fun and easy-to use features. it houses an innovative 3 inch wide lcd touch screen that automatically rotates the display to portrait or landscape view. this stylish compact body incorporates the award-winning fujinon lens with 5x zoom, 14 megapixels and digital image stabilization. with the ability to capture both photos and movies in high-definition 16:9 format, the finepix z90 lets you discover the impact of full-screen hdtv image display. with motion panorama the camera automatically stitches together three consecutive shots creating a stunning wide-scale image. plus it features image selection and editing functions that make it easier than ever to upload video clips or still photos to youtube and facebook sites. the finepix z90 is the perfect camera for a fashion conscious audience that is looking for a combination of quality and style. z90 the finepix z90 digital camera is the latest addition to fujifilm's sleek and stylish range of z-series compact cameras, and features a large 3-inch resistive touch-screen lcd, a 14-megapixel ccd sensor, with a fujinon 5x wide angle refractive optical zoom lens (28mm equivalent) for added range and flexibility. the finepix z90's impressive features also include one-touch 720p hd movie capture, an intuitive dual direction gui that allows for easy navigating, and \"tap and shoot\" capabilities for images and videos. the z90 also has tagging with automatic upload functions to youtube and facebook. fujifilm finepix z90 highlights chic design the finepix z90 features a slim metal chassis and a chic horizontal sliding lens barrier that makes it ultra-portable. it is available in a choice of five stylish colors: matte black, red, blue, pink and purple. the finepix z90 digital camera is the latest addition to fujifilm's sleek and stylish range of z-series compact cameras, and features a large 3-inch resistive touch-screen lcd, a 14-megapixel ccd sensor, with a fujinon 5x wide angle refractive optical zoom lens (28mm equivalent) for added range and flexibility. the finepix z90's impressive features also include one-touch 720p hd movie capture, an intuitive dual direction gui that allows for easy navigating, and \"tap and shoot\" capabilities for images and videos. the z90 also has tagging with automatic upload functions to youtube and facebook. fujifilm finepix z90 highlights chic design the finepix z90 features a slim metal chassis and a chic horizontal sliding lens barrier that makes it ultra-portable. it is available in a choice of five stylish colors: matte black, red, blue, pink and purple. 14 million effective pixels; 1/2.3 inch ccd with primary color filter; 5x optical zoom lens plus approx 6.8x digital zoom color: black, purple, red", "product": {"name": "Fujifilm FinePix Z90 14 MP Digital Camera with Fujinon 5x Wide Angle Optical Zoom Lens and 3-Inch Touch-Screen LCD (Purple)", "full_description": "The Fuji FinePix Z90 14MP Purple Digital Camera is packed full of fun and easy-to use features. It houses an innovative 3 inch wide LCD touch screen that automatically rotates the display to portrait or landscape view. This stylish compact body incorporates the award-winning Fujinon lens with 5x zoom, 14 megapixels and digital image stabilization. With the ability to capture both photos and movies in high-definition 16:9 format, the FinePix Z90 lets you discover the impact of full-screen HDTV image display. With Motion Panorama the camera automatically stitches together three consecutive shots creating a stunning wide-scale image. Plus it features image selection and editing functions that make it easier than ever to upload video clips or still photos to YouTube and Facebook sites. The FinePix Z90 is the perfect camera for a fashion conscious audience that is looking for a combination of quality and style. Z90 The FinePix Z90 digital camera is the latest addition to Fujifilm's sleek and stylish range of Z-series compact cameras, and features a large 3-inch resistive touch-screen LCD, a 14-megapixel CCD sensor, with a FUJINON 5x wide angle refractive optical zoom lens (28mm equivalent) for added range and flexibility. The FinePix Z90's impressive features also include one-touch 720p HD movie capture, an intuitive Dual Direction GUI that allows for easy navigating, and \"tap and shoot\" capabilities for images and videos. The Z90 also has tagging with automatic upload functions to YouTube and Facebook. Fujifilm FinePix Z90 Highlights Chic Design The FinePix Z90 features a slim metal chassis and a chic horizontal sliding lens barrier that makes it ultra-portable. It is available in a choice of five stylish colors: matte black, red, blue, pink and purple. The FinePix Z90 digital camera is the latest addition to Fujifilm's sleek and stylish range of Z-series compact cameras, and features a large 3-inch resistive touch-screen LCD, a 14-megapixel CCD sensor, with a FUJINON 5x wide angle refractive optical zoom lens (28mm equivalent) for added range and flexibility. The FinePix Z90's impressive features also include one-touch 720p HD movie capture, an intuitive Dual Direction GUI that allows for easy navigating, and \"tap and shoot\" capabilities for images and videos. The Z90 also has tagging with automatic upload functions to YouTube and Facebook. Fujifilm FinePix Z90 Highlights Chic Design The FinePix Z90 features a slim metal chassis and a chic horizontal sliding lens barrier that makes it ultra-portable. It is available in a choice of five stylish colors: matte black, red, blue, pink and purple.", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/51PVBF1I4ML.jpg", "https://m.media-amazon.com/images/I/41J07xMa0LL.jpg", "https://m.media-amazon.com/images/I/31fOp4ZvSTL.jpg", "https://m.media-amazon.com/images/I/41m5JEhq5tL.jpg", "https://m.media-amazon.com/images/I/61oJqm3cyiL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Digital Cameras \u203a DSLR Cameras", "average_rating": 4.4, "small_description": ["14 million effective pixels; 1/2.3 inch CCD with primary color filter; 5x optical zoom lens plus approx 6.8x digital zoom ", "3.0 inch wide touch panel LCD; Auto rotation to portrait or landscape view; HD movie 720p with sound ", "6 scene SR auto; Motion Panorama mode with auto stitch; Touch and shoot; Touch and track; Multi Frame Playback; Image search ", "Digital image stabilization; Tracking auto focus ", "Approx. 38MB internal memory; USB 2.0 High-speed; Video output NTSC / PAL selectable; SD/SDHC/SDXC card compatible (card NOT included) ", "14-megapixel CCD sensor; 5x wide-angle optical zoom lens ", "3-inch resistive touch-screen LCD; Dual Direction GUI , 720p HD video capture; one-touch movie button, Easy Web upload to Facebook and YouTube, Capture images and video to SD/SDHC memory cards (not included)"], "model": "Z90 Purple", "customization_options": {"Color": [{"is_selected": false, "url": "https://www.amazon.com/dp/B004HO58L6/ref=twister_B004YD2638?_encoding=UTF8&psc=1", "value": "Black", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51XbxKQqtBL.jpg"}, {"is_selected": true, "url": null, "value": "Purple", "price_string": "", "price": 0, "image": "https://m.media-amazon.com/images/I/51PVBF1I4ML.jpg"}, {"is_selected": false, "url": "https://www.amazon.com/dp/B004HO58M0/ref=twister_B004YD2638?_encoding=UTF8&psc=1", "value": "Red", "price_string": "$68.90", "price": 68.9, "image": "https://m.media-amazon.com/images/I/41+YXsd6PSL.jpg"}]}, "asin": "B004HO58MA", "category": "electronics", "query": "digital cameras", "page": 119, "Title": "Fujifilm FinePix Z90 14 MP Digital Camera with Fujinon 5x Wide Angle Optical Zoom Lens and 3-Inch Touch-Screen LCD (Purple)", "Description": "The Fuji FinePix Z90 14MP Purple Digital Camera is packed full of fun and easy-to use features. It houses an innovative 3 inch wide LCD touch screen that automatically rotates the display to portrait or landscape view. This stylish compact body incorporates the award-winning Fujinon lens with 5x zoom, 14 megapixels and digital image stabilization. With the ability to capture both photos and movies in high-definition 16:9 format, the FinePix Z90 lets you discover the impact of full-screen HDTV image display. With Motion Panorama the camera automatically stitches together three consecutive shots creating a stunning wide-scale image. Plus it features image selection and editing functions that make it easier than ever to upload video clips or still photos to YouTube and Facebook sites. The FinePix Z90 is the perfect camera for a fashion conscious audience that is looking for a combination of quality and style. Z90 The FinePix Z90 digital camera is the latest addition to Fujifilm's sleek and stylish range of Z-series compact cameras, and features a large 3-inch resistive touch-screen LCD, a 14-megapixel CCD sensor, with a FUJINON 5x wide angle refractive optical zoom lens (28mm equivalent) for added range and flexibility. The FinePix Z90's impressive features also include one-touch 720p HD movie capture, an intuitive Dual Direction GUI that allows for easy navigating, and \"tap and shoot\" capabilities for images and videos. The Z90 also has tagging with automatic upload functions to YouTube and Facebook. Fujifilm FinePix Z90 Highlights Chic Design The FinePix Z90 features a slim metal chassis and a chic horizontal sliding lens barrier that makes it ultra-portable. It is available in a choice of five stylish colors: matte black, red, blue, pink and purple. The FinePix Z90 digital camera is the latest addition to Fujifilm's sleek and stylish range of Z-series compact cameras, and features a large 3-inch resistive touch-screen LCD, a 14-megapixel CCD sensor, with a FUJINON 5x wide angle refractive optical zoom lens (28mm equivalent) for added range and flexibility. The FinePix Z90's impressive features also include one-touch 720p HD movie capture, an intuitive Dual Direction GUI that allows for easy navigating, and \"tap and shoot\" capabilities for images and videos. The Z90 also has tagging with automatic upload functions to YouTube and Facebook. Fujifilm FinePix Z90 Highlights Chic Design The FinePix Z90 features a slim metal chassis and a chic horizontal sliding lens barrier that makes it ultra-portable. It is available in a choice of five stylish colors: matte black, red, blue, pink and purple.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["14 million effective pixels; 1/2.3 inch CCD with primary color filter; 5x optical zoom lens plus approx 6.8x digital zoom ", "3.0 inch wide touch panel LCD; Auto rotation to portrait or landscape view; HD movie 720p with sound ", "6 scene SR auto; Motion Panorama mode with auto stitch; Touch and shoot; Touch and track; Multi Frame Playback; Image search ", "Digital image stabilization; Tracking auto focus ", "Approx. 38MB internal memory; USB 2.0 High-speed; Video output NTSC / PAL selectable; SD/SDHC/SDXC card compatible (card NOT included) ", "14-megapixel CCD sensor; 5x wide-angle optical zoom lens ", "3-inch resistive touch-screen LCD; Dual Direction GUI , 720p HD video capture; one-touch movie button, Easy Web upload to Facebook and YouTube, Capture images and video to SD/SDHC memory cards (not included)"], "Price": "$100.0", "options": {"color": ["black", "purple", "red"]}, "option_to_image": {"black": "https://m.media-amazon.com/images/I/51XbxKQqtBL.jpg", "purple": "https://m.media-amazon.com/images/I/51PVBF1I4ML.jpg", "red": "https://m.media-amazon.com/images/I/41+YXsd6PSL.jpg"}, "Attributes": ["optical zoom", "touch screen", "digital camera", "high speed"], "MainImage": "https://m.media-amazon.com/images/I/51PVBF1I4ML.jpg"}} +{"id": "B09S2Z2GMJ", "contents": "lfqchrert hair clipper professional beard trimmer adjustable ceramic blade haircut kit mustache shaving clipper with 4 comb input voltage: ac 110-240v power: 3woutput voltage: dc 3v 300macharging time: 8 hoursusing time: 60 min.color: blackplug: euadapter cable length: 1.8m1. titanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation.2. low vibration, exceptionally quiet, it is no problem to haircut even when baby fallen asleep.3. have 0.8-2mm adjustable haircut limit comb design, and equipped with 4 limit combs(3mm / 6mm / 9mm / 12mm), you can freely control your hair length.4. cordless and battery dual use, no longer to worry about no electricity, more convenient for use.5. after 8 hours fully charged, the power can be used for 60 minutes continuously. titanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation. ", "product": {"name": "LFQCHRERT Hair Clipper Professional Beard Trimmer Adjustable Ceramic Blade Haircut Kit Mustache Shaving Clipper with 4 Comb", "full_description": "Input Voltage: AC 110-240V Power: 3WOutput Voltage: DC 3V 300mACharging time: 8 hoursUsing time: 60 min.Color: BlackPlug: EUAdapter cable length: 1.8m1. Titanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation.2. Low vibration, exceptionally quiet, it is no problem to haircut even when baby fallen asleep.3. Have 0.8-2mm adjustable haircut limit comb design, and equipped with 4 limit combs(3mm / 6mm / 9mm / 12mm), you can freely control your hair length.4. Cordless and battery dual use, no longer to worry about no electricity, more convenient for use.5. After 8 hours fully charged, the power can be used for 60 minutes continuously.", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/31R779ZkwbL.jpg", "https://m.media-amazon.com/images/I/41IjwghVOrL.jpg", "https://m.media-amazon.com/images/I/41LIGGd0+oL.jpg", "https://m.media-amazon.com/images/I/41EJnu8fsYL.jpg", "https://m.media-amazon.com/images/I/41cz3MaVZFL.jpg", "https://m.media-amazon.com/images/I/41F907R-cnL.jpg", "https://m.media-amazon.com/images/I/31srnMU8pYL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Hair Care \u203a Hair Cutting Tools \u203a Hair Clippers & Accessories", "average_rating": "", "small_description": ["Titanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation. ", "Low vibration, exceptionally quiet, it is no problem to haircut even when baby fallen asleep. ", "Have 0.8-2mm adjustable haircut limit comb design, and equipped with 4 limit combs(3mm / 6mm / 9mm / 12mm), you can freely control your hair length. ", "Cordless and battery dual use, no longer to worry about no electricity, more convenient for use. ", "After 8 hours fully charged, the power can be used for 60 minutes continuously. "], "customization_options": "", "asin": "B09S2Z2GMJ", "category": "beauty", "query": "shave & hair removal", "page": 163, "Title": "LFQCHRERT Hair Clipper Professional Beard Trimmer Adjustable Ceramic Blade Haircut Kit Mustache Shaving Clipper with 4 Comb", "Description": "Input Voltage: AC 110-240V Power: 3WOutput Voltage: DC 3V 300mACharging time: 8 hoursUsing time: 60 min.Color: BlackPlug: EUAdapter cable length: 1.8m1. Titanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation.2. Low vibration, exceptionally quiet, it is no problem to haircut even when baby fallen asleep.3. Have 0.8-2mm adjustable haircut limit comb design, and equipped with 4 limit combs(3mm / 6mm / 9mm / 12mm), you can freely control your hair length.4. Cordless and battery dual use, no longer to worry about no electricity, more convenient for use.5. After 8 hours fully charged, the power can be used for 60 minutes continuously.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["Titanium ceramic moving blade, easily clipping off various hair and will not hurting the skin when operation. ", "Low vibration, exceptionally quiet, it is no problem to haircut even when baby fallen asleep. ", "Have 0.8-2mm adjustable haircut limit comb design, and equipped with 4 limit combs(3mm / 6mm / 9mm / 12mm), you can freely control your hair length. ", "Cordless and battery dual use, no longer to worry about no electricity, more convenient for use. ", "After 8 hours fully charged, the power can be used for 60 minutes continuously. "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": ["hair clipper"], "MainImage": "https://m.media-amazon.com/images/I/31R779ZkwbL.jpg"}} +{"id": "B09Q5J5HKG", "contents": "sweetty golf art classic canvas low top sneakers for unisex men women fashion sports shoes black description:rubber strong and soft outsoles for high top canvas shoes; soft canvas upper lining construction with eva padded insolescomplete with aluminium eyelets and cotton laces up closure for a classic look; perfect for every season, wear them all year roundqualified fabric and well-made products help to ensure comfortable feeling during long time movementshipping information: 14-28 business days. the processing time may be affected due to external factors such as pandemic or other natural disasters.\u00a0returns and exchanges: i gladly accept returns, exchanges, and cancellations. contact me within: a day of delivery. ship items back within: a day of delivery. request a cancellation within: 24 hours of purchase.conditions of return:buyers are responsible for return shipping costs. if the item is not returned in its original condition, the buyer is responsible for any loss in value. \u2764 material: canvas ", "product": {"name": "SWEETTY Golf Art Classic Canvas Low Top Sneakers for Unisex Men Women Fashion Sports Shoes Black", "full_description": "DESCRIPTION:Rubber strong and soft outsoles for high top canvas shoes; soft canvas upper lining construction with EVA padded insolesComplete with aluminium eyelets and cotton laces up closure for a classic look; perfect for every season, wear them all year roundQualified fabric and well-made products help to ensure comfortable feeling during long time movementShipping Information: 14-28 business days. The processing time may be affected due to external factors such as pandemic or other natural disasters.\u00a0Returns and exchanges: I gladly accept returns, exchanges, and cancellations. Contact me within: a day of delivery. Ship items back within: a day of delivery. Request a cancellation within: 24 hours of purchase.Conditions of return:Buyers are responsible for return shipping costs. If the item is not returned in its original condition, the buyer is responsible for any loss in value.", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/41aLacVcJpL.jpg", "https://m.media-amazon.com/images/I/51DhavdZbLL.jpg", "https://m.media-amazon.com/images/I/414TW3xbv6L.jpg", "https://m.media-amazon.com/images/I/51iEgJ6XARL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Clothing, Shoes & Jewelry \u203a Women \u203a Shoes \u203a Fashion Sneakers", "average_rating": "", "small_description": ["\u2764 Material: Canvas ", "\u2764 Sizes: Please refer to the size chart picture for your sizes. Remember to measure your feet length and compare our size chart for a perfect fit before ordering. ", "\u2764 This can be used for indoor or outdoor activities such as walking, running, athletic, training, exercise, workout, traveling. Various colors match with any stylish clothes. ", "\u2764 Our shoes are perfectly breathable, soft, durable, fashionable and cleanable. ", "\u2764 [Gift] Hot products festival gift; holiday gift St, mother\u2019s day, father's day, Thanksgiving day, Christmas, Graduation, Birthday, Easter, Wedding and Anniversary. "], "customization_options": "", "asin": "B09Q5J5HKG", "category": "fashion", "query": "women's fashion sneakers", "page": 89, "Title": "SWEETTY Golf Art Classic Canvas Low Top Sneakers for Unisex Men Women Fashion Sports Shoes Black", "Description": "DESCRIPTION:Rubber strong and soft outsoles for high top canvas shoes; soft canvas upper lining construction with EVA padded insolesComplete with aluminium eyelets and cotton laces up closure for a classic look; perfect for every season, wear them all year roundQualified fabric and well-made products help to ensure comfortable feeling during long time movementShipping Information: 14-28 business days. The processing time may be affected due to external factors such as pandemic or other natural disasters.\u00a0Returns and exchanges: I gladly accept returns, exchanges, and cancellations. Contact me within: a day of delivery. Ship items back within: a day of delivery. Request a cancellation within: 24 hours of purchase.Conditions of return:Buyers are responsible for return shipping costs. If the item is not returned in its original condition, the buyer is responsible for any loss in value.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u2764 Material: Canvas ", "\u2764 Sizes: Please refer to the size chart picture for your sizes. Remember to measure your feet length and compare our size chart for a perfect fit before ordering. ", "\u2764 This can be used for indoor or outdoor activities such as walking, running, athletic, training, exercise, workout, traveling. Various colors match with any stylish clothes. ", "\u2764 Our shoes are perfectly breathable, soft, durable, fashionable and cleanable. ", "\u2764 [Gift] Hot products festival gift; holiday gift St, mother\u2019s day, father's day, Thanksgiving day, Christmas, Graduation, Birthday, Easter, Wedding and Anniversary. "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41aLacVcJpL.jpg"}} +{"id": "B00HTXJLL0", "contents": "adidas pure game anti-perspirant roll on, 48h protection, 50ml 48h protection, 50ml ", "product": {"name": "Adidas Pure Game Anti-perspirant Roll On, 48h Protection, 50ml", "full_description": "48h Protection, 50ml", "pricing": [7.99], "images": ["https://m.media-amazon.com/images/I/21GSd-KXQLL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Personal Care \u203a Deodorants & Antiperspirants \u203a Deodorant", "average_rating": 5, "small_description": [""], "customization_options": "", "asin": "B00HTXJLL0", "category": "beauty", "query": "deodorants & antiperspirants", "page": 52, "Title": "Adidas Pure Game Anti-perspirant Roll On, 48h Protection, 50ml", "Description": "48h Protection, 50ml", "Reviews": [], "Rating": "N.A.", "BulletPoints": [""], "Price": "$7.99", "options": {}, "option_to_image": {}, "Attributes": ["anti perspirant"], "MainImage": "https://m.media-amazon.com/images/I/21GSd-KXQLL.jpg"}} +{"id": "B07BKRV1QH", "contents": "sunland artisans golfing kokopelli metal wall art - 18 inches tall - rust finish - crafted in usa this rustic 18-inch medium golfing kokopelli 3d metal wall art in a rich rust finish measures approximately 18in h x 7.75in w x 0.5in d. this unique southwestern decor wall art piece is meticulously plasma-cut from high quality steel that is expertly finished and clear coated to last a lifetime. a joy to own or give as a gift, this indoor/outdoor southwestern hanging art piece is created in arizona, usa for sunland artisans, a collaboration of nearby skilled artists. it includes a built-in sawtooth hook for easy mounting and adjusting. the metal is cut out into this original design, which gives a 3d effect when hung on the wall. it is then treated to give an amazing color and texture. clear-coating makes this the perfect weather-resistant outdoor wall decoration. it is best displayed under the protection of and eave or overhang; perfect for patio. it will also weather rustically if displayed exposed to the elements (sun and rain). proudly made in america. contains the predominate color(s): rust. 18-inches high x 7.75-inches wide x 0.5-inches deep size: 12 in, 18 in, 24 in, 30 in", "product": {"name": "Sunland Artisans Golfing Kokopelli Metal Wall Art - 18 inches Tall - Rust Finish - Crafted in USA", "full_description": "This rustic 18-inch medium Golfing Kokopelli 3D Metal Wall Art in a rich rust finish measures approximately 18in H x 7.75in W x 0.5in D. This unique Southwestern Decor wall art piece is meticulously plasma-cut from high quality steel that is expertly finished and clear coated to last a lifetime. A joy to own or give as a gift, this indoor/outdoor Southwestern hanging art piece is created in Arizona, USA for Sunland Artisans, a collaboration of nearby skilled artists. It includes a built-in sawtooth hook for easy mounting and adjusting. The metal is cut out into this original design, which gives a 3D effect when hung on the wall. It is then treated to give an amazing color and texture. Clear-coating makes this the perfect weather-resistant outdoor wall decoration. It is best displayed under the protection of and eave or overhang; perfect for patio. It will also weather rustically if displayed exposed to the elements (sun and rain). Proudly made in America. Contains the predominate color(s): Rust.", "pricing": [46.99], "images": ["https://m.media-amazon.com/images/I/41co3IdeEiL.jpg", "https://m.media-amazon.com/images/I/41Ojpfp7W7L.jpg", "https://m.media-amazon.com/images/I/610c7hWTtTL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Home D\u00e9cor Products \u203a Home D\u00e9cor Accents \u203a Sculptures \u203a Wall Sculptures", "average_rating": 4.8, "small_description": ["18-inches high x 7.75-inches wide x 0.5-inches deep ", "Indoor / Outdoor Decor ", "Made to order: Ships in 5-10 business days ", "Built in sawtooth hook for easy mounting "], "customization_options": {"Size": [{"is_selected": false, "url": "https://www.amazon.com/dp/B07BKQ7DZW/ref=twister_B07BKRTDKB?_encoding=UTF8&psc=1", "value": "12 in", "price_string": "$25.99", "price": 25.99, "image": null}, {"is_selected": true, "url": null, "value": "18 in", "price_string": "$46.99", "price": 46.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BKV41DX/ref=twister_B07BKRTDKB?_encoding=UTF8&psc=1", "value": "24 in", "price_string": "$84.99", "price": 84.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B07BKTKX23/ref=twister_B07BKRTDKB?_encoding=UTF8&psc=1", "value": "30 in", "price_string": "$160.99", "price": 160.99, "image": null}]}, "asin": "B07BKRV1QH", "category": "garden", "query": "wall art", "page": 132, "Title": "Sunland Artisans Golfing Kokopelli Metal Wall Art - 18 inches Tall - Rust Finish - Crafted in USA", "Description": "This rustic 18-inch medium Golfing Kokopelli 3D Metal Wall Art in a rich rust finish measures approximately 18in H x 7.75in W x 0.5in D. This unique Southwestern Decor wall art piece is meticulously plasma-cut from high quality steel that is expertly finished and clear coated to last a lifetime. A joy to own or give as a gift, this indoor/outdoor Southwestern hanging art piece is created in Arizona, USA for Sunland Artisans, a collaboration of nearby skilled artists. It includes a built-in sawtooth hook for easy mounting and adjusting. The metal is cut out into this original design, which gives a 3D effect when hung on the wall. It is then treated to give an amazing color and texture. Clear-coating makes this the perfect weather-resistant outdoor wall decoration. It is best displayed under the protection of and eave or overhang; perfect for patio. It will also weather rustically if displayed exposed to the elements (sun and rain). Proudly made in America. Contains the predominate color(s): Rust.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["18-inches high x 7.75-inches wide x 0.5-inches deep ", "Indoor / Outdoor Decor ", "Made to order: Ships in 5-10 business days ", "Built in sawtooth hook for easy mounting "], "Price": "$46.99", "options": {"size": ["12 in", "18 in", "24 in", "30 in"]}, "option_to_image": {"12 in": null, "18 in": null, "24 in": null, "30 in": null}, "Attributes": ["wall art"], "MainImage": "https://m.media-amazon.com/images/I/41co3IdeEiL.jpg"}} +{"id": "B001E77OCU", "contents": "arm & hammer peroxicare toothpaste \u2013 clean mint- fluoride toothpaste , 6 ounce (pack of 6) arm & hammer peroxicare deep clean toothpaste is the ultimate deep cleaning formula that cleans and whitens safely, gently and effectively. the fluoride cavity protection and enamel strengthening formula removes more plaque in hard to reach places than a non-baking soda toothpaste. you get a deep clean that penetrates in between teeth and along the gum line to remove plaque and stains. it also includes a tartar control agent that helps keep tartar from forming. all that combined with the gentle power of arm & hammer baking soda to safely whiten gives you something to smile about. it\u2019s a low abrasion formula, so the enamel won\u2019t be damaged. the baking soda also neutralizes acids that weaken and erode enamel. your teeth will look whiter and you\u2019ll know they\u2019re getting a deep clean. this formula includes peroxide, which gently targets tough set-in stains with extra whitening power. plus, the clean mint flavor leaves your breath fresh. includes one 6 oz. tube of arm & hammer peroxicare deep clean toothpaste. for stronger, healthier teeth and gums*, choose arm & hammer baking soda toothpastes. versatile and affordable. gentle yet powerful. for generations of families, arm & hammer baking soda has been the standard of purity, and a trusted household staple in millions of cabinets and pantries. our toothpastes and many of our personal care products are made with arm & hammer baking soda, delivering the quality you can count on, from the brand you trust. *when used as part of a complete brushing routine gum health: clinically shown to help improve gum health, including reducing gum redness and bleeding, so you can maintain healthy gums. ", "product": {"name": "ARM & HAMMER Peroxicare Toothpaste \u2013 Clean Mint- Fluoride Toothpaste , 6 Ounce (Pack of 6)", "full_description": "Arm & Hammer PeroxiCare Deep Clean Toothpaste is the ultimate deep cleaning formula that cleans and whitens safely, gently and effectively. The fluoride cavity protection and enamel strengthening formula removes more plaque in hard to reach places than a non-baking soda toothpaste. You get a deep clean that penetrates in between teeth and along the gum line to remove plaque and stains. It also includes a tartar control agent that helps keep tartar from forming. All that combined with the gentle power of Arm & Hammer Baking Soda to safely whiten gives you something to smile about. It\u2019s a low abrasion formula, so the enamel won\u2019t be damaged. The baking soda also neutralizes acids that weaken and erode enamel. Your teeth will look whiter and you\u2019ll know they\u2019re getting a deep clean. This formula includes peroxide, which gently targets tough set-in stains with extra whitening power. Plus, the Clean Mint flavor leaves your breath fresh. Includes one 6 oz. tube of Arm & Hammer PeroxiCare Deep Clean Toothpaste. For stronger, healthier teeth and gums*, choose Arm & Hammer Baking Soda toothpastes. Versatile and affordable. Gentle yet powerful. For generations of families, Arm & Hammer Baking Soda has been the standard of purity, and a trusted household staple in millions of cabinets and pantries. Our toothpastes and many of our personal care products are made with Arm & Hammer Baking Soda, delivering the quality you can count on, from the brand you trust. *when used as part of a complete brushing routine", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/41-M-nTTsGL.jpg", "https://m.media-amazon.com/images/I/51TSmesEUQL.jpg", "https://m.media-amazon.com/images/I/51IIhmm1hrL.jpg", "https://m.media-amazon.com/images/I/41QLupQpRdL.jpg", "https://m.media-amazon.com/images/I/41h7NeKxc2L.jpg", "https://m.media-amazon.com/images/I/41+AlgaH5XL.jpg", "https://m.media-amazon.com/images/I/511L2b2D8uL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Beauty & Personal Care \u203a Oral Care \u203a Toothpaste", "average_rating": 4.8, "small_description": ["GUM HEALTH: Clinically shown to help improve gum health, including reducing gum redness and bleeding, so you can maintain healthy gums. ", "REMOVES BACTERIA: Helps remove plaque bacteria and bacteria associated with gum health problems. ", "POWER OF BAKING SODA: ARM & HAMMER baking soda gently cleans and neutralizes acids that weaken and erode enamel ", "CAVITY PROTECTION: Fluoride toothpaste deep cleans and penetrates between the teeth and along the gum line to remove plaque and help prevent cavities ", "Six- 6 oz. tubes of Arm & Hammer Toothpaste "], "customization_options": "", "asin": "B001E77OCU", "category": "beauty", "query": "toothpaste", "page": 12, "Title": "ARM & HAMMER Peroxicare Toothpaste \u2013 Clean Mint- Fluoride Toothpaste , 6 Ounce (Pack of 6)", "Description": "Arm & Hammer PeroxiCare Deep Clean Toothpaste is the ultimate deep cleaning formula that cleans and whitens safely, gently and effectively. The fluoride cavity protection and enamel strengthening formula removes more plaque in hard to reach places than a non-baking soda toothpaste. You get a deep clean that penetrates in between teeth and along the gum line to remove plaque and stains. It also includes a tartar control agent that helps keep tartar from forming. All that combined with the gentle power of Arm & Hammer Baking Soda to safely whiten gives you something to smile about. It\u2019s a low abrasion formula, so the enamel won\u2019t be damaged. The baking soda also neutralizes acids that weaken and erode enamel. Your teeth will look whiter and you\u2019ll know they\u2019re getting a deep clean. This formula includes peroxide, which gently targets tough set-in stains with extra whitening power. Plus, the Clean Mint flavor leaves your breath fresh. Includes one 6 oz. tube of Arm & Hammer PeroxiCare Deep Clean Toothpaste. For stronger, healthier teeth and gums*, choose Arm & Hammer Baking Soda toothpastes. Versatile and affordable. Gentle yet powerful. For generations of families, Arm & Hammer Baking Soda has been the standard of purity, and a trusted household staple in millions of cabinets and pantries. Our toothpastes and many of our personal care products are made with Arm & Hammer Baking Soda, delivering the quality you can count on, from the brand you trust. *when used as part of a complete brushing routine", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["GUM HEALTH: Clinically shown to help improve gum health, including reducing gum redness and bleeding, so you can maintain healthy gums. ", "REMOVES BACTERIA: Helps remove plaque bacteria and bacteria associated with gum health problems. ", "POWER OF BAKING SODA: ARM & HAMMER baking soda gently cleans and neutralizes acids that weaken and erode enamel ", "CAVITY PROTECTION: Fluoride toothpaste deep cleans and penetrates between the teeth and along the gum line to remove plaque and help prevent cavities ", "Six- 6 oz. tubes of Arm & Hammer Toothpaste "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": [], "MainImage": "https://m.media-amazon.com/images/I/41-M-nTTsGL.jpg"}} +{"id": "B08YQKXLVG", "contents": "staoptics 15x60 uhd binoculars,high power astronomy binoculars for stargazing and long distance bird watching hunting-fully multi-broadband coated lenses view clear and bright,adapt to tripod black staoptics 15x60 uhd binoculas,advanced fully multi-broadband coated lenses 90% light transmission to bring optimum brightness and true color across the entire light spectrum.please note: in order to facilitate the use, the adjustment of the eye mask is relatively loose, please do not buy it if you mind, thank you. \u3010super optical components\u3011staoptics 15x60 uhd binoculars uses top quality optical glass to provide you with a crystal-like vision,ultra-low dispersion coated prisms provide super high-quality images with almost no chromatic aberration. style: 10x50 hd binoculars, 10x50 uhd binoculars, 15x60 hd binoculars, 15x60 uhd binoculars, 8x40 hd binoculars, 8x40 uhd binoculars", "product": {"name": "Staoptics 15x60 UHD Binoculars,High Power Astronomy Binoculars for Stargazing and Long Distance Bird Watching Hunting-Fully Multi-Broadband Coated Lenses View Clear and Bright,Adapt to Tripod Black", "full_description": "Staoptics 15x60 UHD Binoculas,Advanced Fully Multi-Broadband Coated lenses 90% light transmission to bring optimum brightness and true color across the entire light spectrum.Please note: In order to facilitate the use, the adjustment of the eye mask is relatively loose, please do not buy it if you mind, thank you.", "pricing": [159.99], "images": ["https://m.media-amazon.com/images/I/41gcxEcMSPL.jpg", "https://m.media-amazon.com/images/I/41ygZd4fZtL.jpg", "https://m.media-amazon.com/images/I/4185rwyfgxS.jpg", "https://m.media-amazon.com/images/I/410hlVHnlZL.jpg", "https://m.media-amazon.com/images/I/41tjFtSmtKL.jpg", "https://m.media-amazon.com/images/I/41Er84u5d6L.jpg", "https://m.media-amazon.com/images/I/61my5Yop7xL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Electronics \u203a Camera & Photo \u203a Binoculars & Scopes \u203a Binoculars", "average_rating": 4, "small_description": ["\u3010SUPER OPTICAL COMPONENTS\u3011Staoptics 15x60 UHD Binoculars uses top quality optical glass to provide you with a crystal-like vision,ultra-low dispersion coated prisms provide super high-quality images with almost no chromatic aberration. ", "\u301090% light transmission\u3011Using the most advanced Fully Multi-broadband Coated technology,makes anti-reflection and brightening treatment to all visible light (wavelength 380-780nm),so the light transmission reach an astonishing rate at 90%,can provide excellent Resolution and high-clear image,bright field of view even in low light conditions. ", "\u3010FOR LONG RANGE DISTANCE VIEWING\u3011High power 15x magnification Porro prism Binoculars,can provide a large field of view of 219ft/1000yards,60mm large objective lens can provide the greatest image brightness,very suitable for long-range distance Bird watching,Hunting,Astronomy,Stargazing etc outdoor activities. ", "\u3010COMFORTABLE LONG EYE RELIEF\u301120mm Long Eye relief design,you can watch it comfortably no matter you wear glasses or not.Large center focusing pulley for easy focusing,rubber armor provides a secure,non-slip grip,and durable external protection. ", "\u3010WARRANNTY AND DELIVERY CHECKLIST\u3011Your purchase will receive Staoptics brand lifetime warranty service and unlimited technical support.Delivery checklist:Binoculars x1,Protective bag x1,Silicone air blaster x1,Objective lens cover x2,Eyepiece cover x1,Neck strap x1 ,Cleaning cloth x1,Starter manual x1. "], "model": "UHD1560", "customization_options": {"Style": [{"is_selected": false, "url": "https://www.amazon.com/dp/B08YCW88M9/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "10x50 HD Binoculars", "price_string": "$59.99", "price": 59.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YRLGPTS/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "10x50 UHD Binoculars", "price_string": "$79.99", "price": 79.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YD49FTK/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "15x60 HD Binoculars", "price_string": "", "price": 0, "image": null}, {"is_selected": true, "url": null, "value": "15x60 UHD Binoculars", "price_string": "$159.99", "price": 159.99, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08Y6HFTJT/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "8x40 HD Binoculars", "price_string": "", "price": 0, "image": null}, {"is_selected": false, "url": "https://www.amazon.com/dp/B08YRSGF3H/ref=twister_B094FWDCT6?_encoding=UTF8&psc=1", "value": "8x40 UHD Binoculars", "price_string": "$69.99", "price": 69.99, "image": null}]}, "asin": "B08YQKXLVG", "category": "electronics", "query": "binoculars & scopes", "page": 32, "Title": "Staoptics 15x60 UHD Binoculars,High Power Astronomy Binoculars for Stargazing and Long Distance Bird Watching Hunting-Fully Multi-Broadband Coated Lenses View Clear and Bright,Adapt to Tripod Black", "Description": "Staoptics 15x60 UHD Binoculas,Advanced Fully Multi-Broadband Coated lenses 90% light transmission to bring optimum brightness and true color across the entire light spectrum.Please note: In order to facilitate the use, the adjustment of the eye mask is relatively loose, please do not buy it if you mind, thank you.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u3010SUPER OPTICAL COMPONENTS\u3011Staoptics 15x60 UHD Binoculars uses top quality optical glass to provide you with a crystal-like vision,ultra-low dispersion coated prisms provide super high-quality images with almost no chromatic aberration. ", "\u301090% light transmission\u3011Using the most advanced Fully Multi-broadband Coated technology,makes anti-reflection and brightening treatment to all visible light (wavelength 380-780nm),so the light transmission reach an astonishing rate at 90%,can provide excellent Resolution and high-clear image,bright field of view even in low light conditions. ", "\u3010FOR LONG RANGE DISTANCE VIEWING\u3011High power 15x magnification Porro prism Binoculars,can provide a large field of view of 219ft/1000yards,60mm large objective lens can provide the greatest image brightness,very suitable for long-range distance Bird watching,Hunting,Astronomy,Stargazing etc outdoor activities. ", "\u3010COMFORTABLE LONG EYE RELIEF\u301120mm Long Eye relief design,you can watch it comfortably no matter you wear glasses or not.Large center focusing pulley for easy focusing,rubber armor provides a secure,non-slip grip,and durable external protection. ", "\u3010WARRANNTY AND DELIVERY CHECKLIST\u3011Your purchase will receive Staoptics brand lifetime warranty service and unlimited technical support.Delivery checklist:Binoculars x1,Protective bag x1,Silicone air blaster x1,Objective lens cover x2,Eyepiece cover x1,Neck strap x1 ,Cleaning cloth x1,Starter manual x1. "], "Price": "$159.99", "options": {"style": ["10x50 hd binoculars", "10x50 uhd binoculars", "15x60 hd binoculars", "15x60 uhd binoculars", "8x40 hd binoculars", "8x40 uhd binoculars"]}, "option_to_image": {"10x50 hd binoculars": null, "10x50 uhd binoculars": null, "15x60 hd binoculars": null, "15x60 uhd binoculars": null, "8x40 hd binoculars": null, "8x40 uhd binoculars": null}, "Attributes": ["bird watching", "high power", "non slip"], "MainImage": "https://m.media-amazon.com/images/I/41gcxEcMSPL.jpg"}} +{"id": "B0836D6CW4", "contents": "sunbeam heated electric fleece throw comforter blanket with controller, auto off setting, thermofine wiring, and 3 heat settings, red plaid treat yourself to some warm, velvet bedding, and find time to relax with the sunbeam heated electric fleece blanket. don't let cold winter weather ruin your home movie nights. with this heated throw blanket, prioritize your comfort and add an extra layer of warmth to your bed or couch. this fleece throw covers an area of 50 inches wide and 60 inches long. with a 3-hour auto-off setting, rest easy and get the kind of deep sleep that you deserve. let yourself be picky and customize your cozy experience with the included controller. with 3 heat settings and thermofine wiring, regulate the temperature exactly to your liking. to wash your heated blanket, simply disconnect the controller and toss your throw blanket into the washing machine. make a day out of snuggling up in your bed and giving yourself time to relax. with the sunbeam cozy feet velvet heated blanket, stay warm and get cozy. plaid heated blanket: heated throw blanket made for movie nights at home and snuggling up on the couch; 60 inches long and 50 inches wide ", "product": {"name": "Sunbeam Heated Electric Fleece Throw Comforter Blanket with Controller, Auto Off Setting, Thermofine Wiring, and 3 Heat Settings, Red Plaid", "full_description": "Treat yourself to some warm, velvet bedding, and find time to relax with the Sunbeam Heated Electric Fleece Blanket. Don't let cold winter weather ruin your home movie nights. With this heated throw blanket, prioritize your comfort and add an extra layer of warmth to your bed or couch. This fleece throw covers an area of 50 inches wide and 60 inches long. With a 3-hour auto-off setting, rest easy and get the kind of deep sleep that you deserve. Let yourself be picky and customize your cozy experience with the included controller. With 3 heat settings and thermofine wiring, regulate the temperature exactly to your liking. To wash your heated blanket, simply disconnect the controller and toss your throw blanket into the washing machine. Make a day out of snuggling up in your bed and giving yourself time to relax. With the Sunbeam Cozy Feet Velvet Heated Blanket, stay warm and get cozy.", "pricing": [45.99], "images": ["https://m.media-amazon.com/images/I/416DVe6EAML.jpg", "https://m.media-amazon.com/images/I/41m80+fsKrL.jpg", "https://m.media-amazon.com/images/I/51+lRf+p8tL.jpg", "https://m.media-amazon.com/images/I/418pdMl-IpL.jpg", "https://m.media-amazon.com/images/I/41kG3+qS-2L.jpg", "https://m.media-amazon.com/images/I/51xLgwTdwbL.jpg", "https://m.media-amazon.com/images/I/51o36zKzLxL.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Home & Kitchen \u203a Bedding \u203a Blankets & Throws \u203a Throws", "average_rating": 4.3, "small_description": ["PLAID HEATED BLANKET: Heated throw blanket made for movie nights at home and snuggling up on the couch; 60 inches long and 50 inches wide ", "SUPER-SOFT FLEECE: Extra soft fleece keeps you warm and comfortable throughout the night or as you relax ", "CUSTOMIZABLE: Includes a controller with 3 heat settings designed to customize your relaxation session ", "CONSISTENT TEMPERATURE: Warming system regulates the heat for consistent warmth and some well-deserved sleep ", "NO-STRESS: 3 Hour auto-off gives you peace of mind as you drift comfortably to sleep; Machine washable for easy care; controller disconnects easily from the blanket "], "customization_options": "", "asin": "B0836D6CW4", "category": "garden", "query": "throw blankets", "page": 86, "Title": "Sunbeam Heated Electric Fleece Throw Comforter Blanket with Controller, Auto Off Setting, Thermofine Wiring, and 3 Heat Settings, Red Plaid", "Description": "Treat yourself to some warm, velvet bedding, and find time to relax with the Sunbeam Heated Electric Fleece Blanket. Don't let cold winter weather ruin your home movie nights. With this heated throw blanket, prioritize your comfort and add an extra layer of warmth to your bed or couch. This fleece throw covers an area of 50 inches wide and 60 inches long. With a 3-hour auto-off setting, rest easy and get the kind of deep sleep that you deserve. Let yourself be picky and customize your cozy experience with the included controller. With 3 heat settings and thermofine wiring, regulate the temperature exactly to your liking. To wash your heated blanket, simply disconnect the controller and toss your throw blanket into the washing machine. Make a day out of snuggling up in your bed and giving yourself time to relax. With the Sunbeam Cozy Feet Velvet Heated Blanket, stay warm and get cozy.", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["PLAID HEATED BLANKET: Heated throw blanket made for movie nights at home and snuggling up on the couch; 60 inches long and 50 inches wide ", "SUPER-SOFT FLEECE: Extra soft fleece keeps you warm and comfortable throughout the night or as you relax ", "CUSTOMIZABLE: Includes a controller with 3 heat settings designed to customize your relaxation session ", "CONSISTENT TEMPERATURE: Warming system regulates the heat for consistent warmth and some well-deserved sleep ", "NO-STRESS: 3 Hour auto-off gives you peace of mind as you drift comfortably to sleep; Machine washable for easy care; controller disconnects easily from the blanket "], "Price": "$45.99", "options": {}, "option_to_image": {}, "Attributes": ["fleece throw", "super soft", "throw blanket", "machine washable"], "MainImage": "https://m.media-amazon.com/images/I/416DVe6EAML.jpg"}} +{"id": "B0813C1C4J", "contents": "att 5g phone signal booster home verizon straight talk 4g lte cell phone signal booster 700mhz band 13/12/17 fdd mobile signal repeater amplifier, up to 4500 sqft improve data and calls, fcc approved \u3010fcc approved\u3011the home cell phone signal booster has been approved by fcc,and awarded the fcc authentication certificate. it will boost 5g n12 and 4g lte band 13/12/17 signal from tower, works with verion, at&t, straight talk, u.s. cellular. compatible with ios, android, windows phone systems, pad (with sim card), wifi hotpots (with sim card). increase the signal strength, reduce dropped calls. no more buffering during netflix or watching videos, don\u2019t have to go outside for a call any more ", "product": {"name": "ATT 5G Phone Signal Booster Home Verizon Straight Talk 4G LTE Cell Phone Signal Booster 700MHz Band 13/12/17 FDD Mobile Signal Repeater Amplifier, up to 4500 SqFt Improve Data and Calls, FCC Approved", "full_description": "", "pricing": [100.0], "images": ["https://m.media-amazon.com/images/I/41XwxfsqfML.jpg", "https://m.media-amazon.com/images/I/51EkH7R3tJL.jpg", "https://m.media-amazon.com/images/I/51sDOZ5SGhL.jpg", "https://m.media-amazon.com/images/I/51xhldU+SFL.jpg", "https://m.media-amazon.com/images/I/51GC+Xk5gDS.jpg", "https://m.media-amazon.com/images/I/51mq7TN3hnL.jpg", "https://m.media-amazon.com/images/I/51l6bOa6MKS.jpg", "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel.gif"], "product_category": "Cell Phones & Accessories \u203a Accessories \u203a Signal Boosters", "average_rating": "", "small_description": ["\u3010FCC APPROVED\u3011The Home Cell Phone Signal Booster has been approved by FCC,and awarded the FCC authentication certificate. It will boost 5G N12 and 4G Lte band 13/12/17 signal from tower, works with Verion, AT&T, Straight Talk, U.S. Cellular. Compatible with iOS, Android, Windows Phone Systems, Pad (with SIM Card), WiFi hotpots (with SIM Card). Increase the signal strength, reduce dropped calls. No more buffering during Netflix or watching videos, don\u2019t have to go outside for a call any more ", "\u3010AMPLIFY VOICE AND 4G LTE DATA SIGNALS\u3011The Aclogue Home Cell Signal Repeater Booster will boosts 4g lte 5g data and calls, strong and stable signal coverage and internet connection improve your productivity, efficiency and safety by ensuring you are connected. Boosts 4g lte 5g data and calls. You will use your phone to surf the Internet, chat with your friends and get the latest news, enjoy high signal availability to accessing calls and digital data services ", "\u3010MORE GAIN ANTENNA KITS\u3011The highly directional LDPA antenna with more gain increases the performance of the signal booster and work better with low quality signal. The indoor ceiling antenna has more gain and will get you the better signal and larger coverage area. Enjoy Excellent Voice quality and Fast 4G LTE 5G internet connection, Supports multiple phones dimultaneously, fewer dropped calls, higher voice quality, Improve poor signal reception, faster 4G LTE 5G data speeds & streaming ", "\u3010A RELATIVELY LARGE COVERAGE AREA\u3011The Home Cell Phone Signal Booster could cover up to 4000-4500 sq.ft, you will get a more reliable signal anywhere in your house. If the outdoor signal is weak, it will cover a lot less area inside than stated 4000sq.ft. This phone signal booster will only work in US, won't work in other countries ", "\u3010EASY SETUP\u3011Nice heavy duty construction. Metal case ensures efficient heat dissipation and low Operating Temperature. It's widely used in Village, Living Room, Bedroom, Basement, Villa, Apartment, Office, Hotel, Restaurant and so on. It's easy to set up and instructions are easy to follow. Please read the instructions before you start the installation! Please contact us if you need any technical support "], "customization_options": "", "asin": "B0813C1C4J", "category": "electronics", "query": "signal boosters", "page": 36, "Title": "ATT 5G Phone Signal Booster Home Verizon Straight Talk 4G LTE Cell Phone Signal Booster 700MHz Band 13/12/17 FDD Mobile Signal Repeater Amplifier, up to 4500 SqFt Improve Data and Calls, FCC Approved", "Description": "", "Reviews": [], "Rating": "N.A.", "BulletPoints": ["\u3010FCC APPROVED\u3011The Home Cell Phone Signal Booster has been approved by FCC,and awarded the FCC authentication certificate. It will boost 5G N12 and 4G Lte band 13/12/17 signal from tower, works with Verion, AT&T, Straight Talk, U.S. Cellular. Compatible with iOS, Android, Windows Phone Systems, Pad (with SIM Card), WiFi hotpots (with SIM Card). Increase the signal strength, reduce dropped calls. No more buffering during Netflix or watching videos, don\u2019t have to go outside for a call any more ", "\u3010AMPLIFY VOICE AND 4G LTE DATA SIGNALS\u3011The Aclogue Home Cell Signal Repeater Booster will boosts 4g lte 5g data and calls, strong and stable signal coverage and internet connection improve your productivity, efficiency and safety by ensuring you are connected. Boosts 4g lte 5g data and calls. You will use your phone to surf the Internet, chat with your friends and get the latest news, enjoy high signal availability to accessing calls and digital data services ", "\u3010MORE GAIN ANTENNA KITS\u3011The highly directional LDPA antenna with more gain increases the performance of the signal booster and work better with low quality signal. The indoor ceiling antenna has more gain and will get you the better signal and larger coverage area. Enjoy Excellent Voice quality and Fast 4G LTE 5G internet connection, Supports multiple phones dimultaneously, fewer dropped calls, higher voice quality, Improve poor signal reception, faster 4G LTE 5G data speeds & streaming ", "\u3010A RELATIVELY LARGE COVERAGE AREA\u3011The Home Cell Phone Signal Booster could cover up to 4000-4500 sq.ft, you will get a more reliable signal anywhere in your house. If the outdoor signal is weak, it will cover a lot less area inside than stated 4000sq.ft. This phone signal booster will only work in US, won't work in other countries ", "\u3010EASY SETUP\u3011Nice heavy duty construction. Metal case ensures efficient heat dissipation and low Operating Temperature. It's widely used in Village, Living Room, Bedroom, Basement, Villa, Apartment, Office, Hotel, Restaurant and so on. It's easy to set up and instructions are easy to follow. Please read the instructions before you start the installation! Please contact us if you need any technical support "], "Price": "$100.0", "options": {}, "option_to_image": {}, "Attributes": ["4g lte", "signal booster", "cell phone", "heavy duty"], "MainImage": "https://m.media-amazon.com/images/I/41XwxfsqfML.jpg"}} diff --git a/external/webshop-minimal/webshop_minimal/templates/description_page.html b/external/webshop-minimal/webshop_minimal/templates/description_page.html new file mode 100644 index 0000000000000000000000000000000000000000..5fd598e613abee0f3940e79c016dc9fbfa9cd4f7 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/templates/description_page.html @@ -0,0 +1,43 @@ + + + + + + + + + + + +
    +
    +
    +
    +

    Instruction:
    {{ instruction_text }}

    +
    +
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +

    {{product_info.Description}}

    +
    +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/templates/done_page.html b/external/webshop-minimal/webshop_minimal/templates/done_page.html new file mode 100644 index 0000000000000000000000000000000000000000..4803dc89764961be11de208c0ad4de6281aca89e --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/templates/done_page.html @@ -0,0 +1,50 @@ + + + + + + + + + + +
    +
    +
    +
    +

    Thank you for shopping with us!

    +
    +
    +

    Your code:

    +

    {{ mturk_code }}
    (Paste it in your MTurk interface.)

    +
    +

    Purchased

    +
    +

    asin
    {{ asin }}

    +

    options
    {{ options | tojson }}

    +

    attrs
    {{ purchased_attrs }}

    +

    category
    {{ category }}

    +

    query
    {{ query }}

    +

    product category
    {{ product_category }}

    +

    Target

    +
    +

    asin
    {{ goal.asin }}

    +

    options
    {{ goal.goal_options }}

    +

    attrs
    {{ goal.attributes }}

    +

    price upper
    {{ goal.price_upper }}

    +

    instuction text
    {{ goal.instruction_text }}

    +

    category
    {{ goal.category }}

    +

    product category
    {{ goal.product_category }}

    +

    query
    {{ goal.query }}

    +

    Goal
    {{ goal | pprint }}

    +

    Reward

    +
    +
    +

    Your score (min 0.0, max 1.0)
    {{ reward }}

    + +
    +
    +
    +
    + + diff --git a/external/webshop-minimal/webshop_minimal/templates/features_page.html b/external/webshop-minimal/webshop_minimal/templates/features_page.html new file mode 100644 index 0000000000000000000000000000000000000000..4baab1047c07be55f98b8598f02226d3fd2275b1 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/templates/features_page.html @@ -0,0 +1,47 @@ + + + + + + + + + + + +
    +
    +
    +
    +

    Instruction:
    {{ instruction_text }}

    +
    +
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
      + {% for bulletpoint in product_info.BulletPoints %} +
    • {{bulletpoint}}

    • + {% endfor %} +
    +
    +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/templates/results_page.html b/external/webshop-minimal/webshop_minimal/templates/results_page.html new file mode 100644 index 0000000000000000000000000000000000000000..03373f57a95f2da4528f39ddd2175c8bf0b485d3 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/templates/results_page.html @@ -0,0 +1,89 @@ + + + + + + + + + + + +
    + + \ No newline at end of file diff --git a/external/webshop-minimal/webshop_minimal/utils.py b/external/webshop-minimal/webshop_minimal/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..e6acbc92b8067d3eec2bdf98f59f6bf500cda680 --- /dev/null +++ b/external/webshop-minimal/webshop_minimal/utils.py @@ -0,0 +1,140 @@ +import bisect +import hashlib +import logging +import random +from os.path import dirname, abspath, join +from bs4 import BeautifulSoup + +BASE_DIR = dirname(abspath(__file__)) + +# these paths must be initialized with init_basedir +DEFAULT_ATTR_PATH = "" # join(BASE_DIR, 'data/items_ins_v2_1000.json') +DEFAULT_FILE_PATH = "" # join(BASE_DIR, 'data/items_shuffle_1000.json') + +FEAT_CONV = join(BASE_DIR, 'data/feat_conv.pt') # NOT USED in RAGEN version +FEAT_IDS = join(BASE_DIR, 'data/feat_ids.pt') # NOT USED in RAGEN version + +HUMAN_ATTR_PATH = join(BASE_DIR, 'data/items_human_ins.json') + +# TODO: Move this to a config file +def init_basedir(dataset: str = 'small') -> None: + """Initialize the base directory for the package and update related paths. + + Args: + dataset (str): Dataset size to use - either 'small' or 'full'. Default is 'small'. + """ + global BASE_DIR, DEFAULT_ATTR_PATH, DEFAULT_FILE_PATH, FEAT_CONV, FEAT_IDS, HUMAN_ATTR_PATH + + if dataset not in ['small', 'full']: + raise ValueError("dataset must be either 'small' or 'full'") + + # Set file paths based on dataset size + if dataset == 'small': + attr_file = 'items_ins_v2_1000.json' + items_file = 'items_shuffle_1000.json' + else: # full + attr_file = 'items_ins_v2.json' + items_file = 'items_shuffle.json' + + DEFAULT_ATTR_PATH = join(BASE_DIR, f'data/{dataset}/{attr_file}') + DEFAULT_FILE_PATH = join(BASE_DIR, f'data/{dataset}/{items_file}') + + FEAT_CONV = join(BASE_DIR, 'data/feat_conv.pt') # NOT USED in RAGEN version + FEAT_IDS = join(BASE_DIR, 'data/feat_ids.pt') # NOT USED in RAGEN version + + HUMAN_ATTR_PATH = join(BASE_DIR, 'data/items_human_ins.json') + +def get_base_dir() -> str: + """Get the base directory for the package. + + Returns: + str: The base directory path. + """ + return BASE_DIR + +def get_attr_path() -> str: + return DEFAULT_ATTR_PATH + +def get_file_path() -> str: + return DEFAULT_FILE_PATH + +def get_human_attr_path() -> str: + return HUMAN_ATTR_PATH + +def get_feat_conv_path() -> str: + return FEAT_CONV + +def get_feat_ids_path() -> str: + return FEAT_IDS + + +def random_idx(cum_weights): + """Generate random index by sampling uniformly from sum of all weights, then + selecting the `min` between the position to keep the list sorted (via bisect) + and the value of the second to last index + """ + pos = random.uniform(0, cum_weights[-1]) + idx = bisect.bisect(cum_weights, pos) + idx = min(idx, len(cum_weights) - 2) + return idx + +def setup_logger(session_id, user_log_dir): + """Creates a log file and logging object for the corresponding session ID""" + logger = logging.getLogger(session_id) + formatter = logging.Formatter('%(message)s') + file_handler = logging.FileHandler( + user_log_dir / f'{session_id}.jsonl', + mode='w' + ) + file_handler.setFormatter(formatter) + logger.setLevel(logging.INFO) + logger.addHandler(file_handler) + return logger + +def generate_mturk_code(session_id: str) -> str: + """Generates a redeem code corresponding to the session ID for an MTurk + worker once the session is completed + """ + sha = hashlib.sha1(session_id.encode()) + return sha.hexdigest()[:10].upper() + +from bs4 import BeautifulSoup + +def html_to_markdown(html): + soup = BeautifulSoup(html, 'html.parser') + + # Remove script and style elements + for script in soup(["script", "style"]): + script.extract() + + markdown = "" + + # Convert headings + for i in range(1, 7): + for heading in soup.find_all(f'h{i}'): + markdown += f"{'#' * i} {heading.get_text().strip()}\n\n" + + # Convert paragraphs + for p in soup.find_all('p'): + markdown += f"{p.get_text().strip()}\n\n" + + # Convert links + for a in soup.find_all('a'): + markdown += f"[{a.get_text().strip()}]({a.get('href', '')})\n\n" + + # Convert inputs + for inp in soup.find_all('input'): + markdown += f"[{inp.get('placeholder', 'Input')}]\n\n" + + # Convert lists + for ul in soup.find_all('ul'): + for li in ul.find_all('li'): + markdown += f"* {li.get_text().strip()}\n" + markdown += "\n" + + for ol in soup.find_all('ol'): + for i, li in enumerate(ol.find_all('li')): + markdown += f"{i+1}. {li.get_text().strip()}\n" + markdown += "\n" + + return markdown.strip() \ No newline at end of file diff --git a/outputs/2025-11-17/14-48-10/.hydra/config.yaml b/outputs/2025-11-17/14-48-10/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d1f83ebed81cdc9f74455b46c7c247e8fdac9823 --- /dev/null +++ b/outputs/2025-11-17/14-48-10/.hydra/config.yaml @@ -0,0 +1,752 @@ +actor_rollout_ref: + actor: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-06 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + _target_: verl.workers.config.FSDPActorConfig + strategy: fsdp + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: false + ppo_max_token_len_per_gpu: 16384 + clip_ratio: 0.2 + clip_ratio_low: 0.2 + clip_ratio_high: 0.2 + freeze_vision_tower: false + policy_loss: + _target_: verl.workers.config.PolicyLossConfig + loss_mode: vanilla + clip_cov_ratio: 0.0002 + clip_cov_lb: 1.0 + clip_cov_ub: 5.0 + kl_cov_ratio: 0.0002 + ppo_kl_coef: 0.1 + clip_ratio_c: 3.0 + loss_agg_mode: token-mean + entropy_coeff: 0.001 + tis_imp_ratio_cap: -1 + use_kl_loss: false + use_torch_compile: true + kl_loss_coef: 0.001 + kl_loss_type: kl + ppo_epochs: 1 + shuffle: false + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + use_fused_kernels: ${oc.select:actor_rollout_ref.model.use_fused_kernels,false} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + grad_clip: 1.0 + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + use_remove_padding: ${oc.select:actor_rollout_ref.model.use_remove_padding,false} + use_ref: true + grpo_advantage_length_weight: ${grpo_advantage_length_weight} + ref: + strategy: ${actor_rollout_ref.actor.strategy} + use_torch_compile: ${oc.select:actor_rollout_ref.actor.use_torch_compile,true} + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + model: null + ulysses_sequence_parallel_size: ${oc.select:actor_rollout_ref.actor.ulysses_sequence_parallel_size,1} + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + rollout: + _target_: verl.workers.config.RolloutConfig + name: vllm + mode: sync + temperature: 1 + top_k: -1 + top_p: 1 + prompt_length: 1 + response_length: 400 + dtype: bfloat16 + gpu_memory_utilization: 0.5 + ignore_eos: false + enforce_eager: true + cudagraph_capture_sizes: null + free_cache_engine: true + tensor_model_parallel_size: 1 + data_parallel_size: 1 + expert_parallel_size: 1 + max_num_batched_tokens: 8192 + max_model_len: 3600 + max_num_seqs: 1024 + enable_chunked_prefill: true + enable_prefix_caching: true + load_format: dummy + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + disable_log_stats: true + do_sample: true + 'n': 1 + over_sample_rate: 0 + multi_stage_wake_up: false + engine_kwargs: + vllm: {} + sglang: {} + val_kwargs: + _target_: verl.workers.config.SamplingConfig + top_k: -1 + top_p: 1.0 + temperature: 0.5 + 'n': 1 + do_sample: true + multi_turn: + _target_: verl.workers.config.MultiTurnConfig + enable: false + max_assistant_turns: null + tool_config_path: null + max_user_turns: null + max_parallel_calls: 1 + max_tool_response_length: 256 + tool_response_truncate_side: middle + interaction_config_path: null + use_inference_chat_template: false + tokenization_sanity_check_mode: strict + format: hermes + num_repeat_rollouts: null + calculate_log_probs: false + agent: + _target_: verl.workers.config.AgentLoopConfig + num_workers: 8 + agent_loop_config_path: null + custom_async_server: + _target_: verl.workers.config.CustomAsyncServerConfig + path: null + name: null + update_weights_bucket_megabytes: 512 + trace: + _target_: verl.workers.config.TraceConfig + backend: null + token2text: false + skip_rollout: false + skip_dump_dir: /tmp/rollout_dump + skip_tokenizer_init: true + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: ${oc.select:actor_rollout_ref.actor.profiler.enable,false} + all_ranks: ${oc.select:actor_rollout_ref.actor.profiler.all_ranks,false} + ranks: ${oc.select:actor_rollout_ref.actor.profiler.ranks,[]} + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + layered_summon: false + rollout_filter_ratio: 1 + rollout_filter_type: largest + rollout_filter_metric: reward_variance + model: + _target_: verl.workers.config.HFModelConfig + path: ${model_path} + hf_config_path: null + tokenizer_path: null + use_shm: false + trust_remote_code: false + custom_chat_template: null + external_lib: null + override_config: {} + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + exclude_modules: null + use_liger: false + use_fused_kernels: false + fused_kernel_options: + impl_backend: torch + hybrid_engine: true + nccl_timeout: 600 +data: + tokenizer: null + use_shm: false + train_files: ~/data/rlhf/gsm8k/train.parquet + val_files: ~/data/rlhf/gsm8k/test.parquet + prompt_key: prompt + reward_fn_key: data_source + max_prompt_length: null + max_response_length: null + train_batch_size: null + val_batch_size: null + return_raw_input_ids: false + return_raw_chat: false + return_full_prompt: false + shuffle: true + dataloader_num_workers: 8 + validation_shuffle: false + filter_overlong_prompts: false + filter_overlong_prompts_workers: 1 + truncation: error + image_key: images + video_key: videos + trust_remote_code: false + custom_cls: + path: null + name: null + return_multi_modal_inputs: true + sampler: + class_path: null + class_name: null + datagen: + path: null + name: null + apply_chat_template_kwargs: {} +critic: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-05 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + model: + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + path: ${model_path} + tokenizer_path: ${oc.select:actor_rollout_ref.model.path,"~/models/deepseek-llm-7b-chat"} + override_config: {} + external_lib: ${oc.select:actor_rollout_ref.model.external_lib,null} + trust_remote_code: ${oc.select:actor_rollout_ref.model.trust_remote_code,false} + _target_: verl.workers.config.FSDPCriticModelCfg + use_shm: false + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + _target_: verl.workers.config.FSDPCriticConfig + rollout_n: ${oc.select:actor_rollout_ref.rollout.n,1} + strategy: fsdp + enable: null + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + ppo_max_token_len_per_gpu: 32768 + forward_max_token_len_per_gpu: ${.ppo_max_token_len_per_gpu} + ppo_epochs: ${oc.select:actor_rollout_ref.actor.ppo_epochs,1} + shuffle: ${oc.select:actor_rollout_ref.actor.shuffle,false} + cliprange_value: 0.5 + loss_agg_mode: ${oc.select:actor_rollout_ref.actor.loss_agg_mode,token-mean} + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + forward_micro_batch_size: ${oc.select:.ppo_micro_batch_size,null} + forward_micro_batch_size_per_gpu: ${oc.select:.ppo_micro_batch_size_per_gpu,null} + ulysses_sequence_parallel_size: 1 + grad_clip: 1.0 +reward_model: + enable: false + enable_resource_pool: false + n_gpus_per_node: 0 + nnodes: 0 + strategy: fsdp + model: + input_tokenizer: ${actor_rollout_ref.model.path} + path: ~/models/FsfairX-LLaMA3-RM-v0.1 + external_lib: ${actor_rollout_ref.model.external_lib} + trust_remote_code: false + use_shm: false + use_remove_padding: false + use_fused_kernels: ${actor_rollout_ref.model.use_fused_kernels} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + micro_batch_size: null + micro_batch_size_per_gpu: null + max_length: null + use_dynamic_bsz: ${critic.use_dynamic_bsz} + forward_max_token_len_per_gpu: ${critic.forward_max_token_len_per_gpu} + reward_manager: naive + launch_reward_fn_async: false + sandbox_fusion: + url: null + max_concurrent: 64 + memory_limit_mb: 1024 + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + ulysses_sequence_parallel_size: 1 +custom_reward_function: + path: null + name: compute_score +algorithm: + _target_: verl.trainer.config.AlgoConfig + gamma: 1.0 + lam: 1.0 + adv_estimator: gae + norm_adv_by_std_in_grpo: true + use_kl_in_reward: false + kl_penalty: kl + kl_ctrl: + _target_: verl.trainer.config.KLControlConfig + type: fixed + kl_coef: 0.001 + horizon: 10000 + target_kl: 0.1 + use_pf_ppo: false + pf_ppo: + reweight_method: pow + weight_pow: 2.0 + high_level_gamma: 0.95 + bi_level_gae: false +trainer: + balance_batch: true + total_epochs: 30 + total_training_steps: 200 + project_name: ragen_latest + experiment_name: frozen_lake-ppo + logger: + - console + - wandb + log_val_generations: 0 + rollout_data_dir: null + validation_data_dir: null + nnodes: 1 + n_gpus_per_node: 1 + save_freq: 100 + esi_redundant_time: 0 + resume_mode: auto + resume_from_path: null + val_before_train: true + val_only: false + test_freq: 10 + critic_warmup: 0 + default_hdfs_dir: null + del_local_ckpt_after_load: false + default_local_dir: checkpoints/${trainer.project_name}/${trainer.experiment_name} + max_actor_ckpt_to_keep: 1 + max_critic_ckpt_to_keep: 1 + ray_wait_register_center_timeout: 300 + device: cuda + use_legacy_worker_impl: auto + local_log_dir: results/ + validation_steps: 1 + generations_to_log_to_wandb: + val: 20 +global_profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: null + steps: null + profile_continuous_steps: false + save_path: outputs/profile + global_tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: false + controller_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + worker_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + capture-range: cudaProfilerApi + capture-range-end: null + kill: none + torch_memory: + trace_alloc_max_entries: 100000 + stack_depth: 32 + context: all + stacks: all + kw_args: {} +ray_kwargs: + ray_init: + num_cpus: null + timeline_json_file: null +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 10 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 10 + env_instruction: 'You are solving the FrozenLake puzzle. The observation includes + both a symbol grid and zero-indexed coordinates for the start, goal, player, + and any holes. + + Coordinates range from the top-left corner (0, 0) to the bottom-right corner + (5, 5). + + Beware that the ice is slippery, so the agent might slide and end up in an unintended + tile. + + Respond with a sequence of actions such as Left || Up || Up. + + ' + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +system: + CUDA_VISIBLE_DEVICES: 3 +seed: + train: 10000 + val: 123 +micro_batch_size_per_gpu: 4 +ppo_mini_batch_size: 32 +model_path: Qwen/Qwen2.5-3B-Instruct +enable_response_mask: true +grpo_advantage_length_weight: false +lora: + rank: 0 + alpha: 64 + target_modules: all-linear +agent_proxy: + max_context_window: -1 + max_turn: 5 + action_sep: '||' + max_actions_per_turn: 2 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 8 + val: + env_groups: 32 + group_size: 16 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 32 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null diff --git a/outputs/2025-11-17/14-48-10/train.log b/outputs/2025-11-17/14-48-10/train.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-17/14-48-50/train.log b/outputs/2025-11-17/14-48-50/train.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-19/15-19-10/.hydra/config.yaml b/outputs/2025-11-19/15-19-10/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9f4e07be8a102fb5e7e8785d7d888988205dacdb --- /dev/null +++ b/outputs/2025-11-19/15-19-10/.hydra/config.yaml @@ -0,0 +1,749 @@ +actor_rollout_ref: + actor: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-06 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + _target_: verl.workers.config.FSDPActorConfig + strategy: fsdp + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: false + ppo_max_token_len_per_gpu: 16384 + clip_ratio: 0.2 + clip_ratio_low: 0.2 + clip_ratio_high: 0.2 + freeze_vision_tower: false + policy_loss: + _target_: verl.workers.config.PolicyLossConfig + loss_mode: vanilla + clip_cov_ratio: 0.0002 + clip_cov_lb: 1.0 + clip_cov_ub: 5.0 + kl_cov_ratio: 0.0002 + ppo_kl_coef: 0.1 + clip_ratio_c: 3.0 + loss_agg_mode: token-mean + entropy_coeff: 0.001 + tis_imp_ratio_cap: -1 + use_kl_loss: false + use_torch_compile: true + kl_loss_coef: 0.001 + kl_loss_type: kl + ppo_epochs: 1 + shuffle: false + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + use_fused_kernels: ${oc.select:actor_rollout_ref.model.use_fused_kernels,false} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + grad_clip: 1.0 + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + use_remove_padding: ${oc.select:actor_rollout_ref.model.use_remove_padding,false} + use_ref: true + grpo_advantage_length_weight: ${grpo_advantage_length_weight} + ref: + strategy: ${actor_rollout_ref.actor.strategy} + use_torch_compile: ${oc.select:actor_rollout_ref.actor.use_torch_compile,true} + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + model: null + ulysses_sequence_parallel_size: ${oc.select:actor_rollout_ref.actor.ulysses_sequence_parallel_size,1} + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + rollout: + _target_: verl.workers.config.RolloutConfig + name: vllm + mode: sync + temperature: 1 + top_k: -1 + top_p: 1 + prompt_length: 1 + response_length: 400 + dtype: bfloat16 + gpu_memory_utilization: 0.5 + ignore_eos: false + enforce_eager: true + cudagraph_capture_sizes: null + free_cache_engine: true + tensor_model_parallel_size: 1 + data_parallel_size: 1 + expert_parallel_size: 1 + max_num_batched_tokens: 8192 + max_model_len: 3600 + max_num_seqs: 1024 + enable_chunked_prefill: true + enable_prefix_caching: true + load_format: dummy + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + disable_log_stats: true + do_sample: true + 'n': 1 + over_sample_rate: 0 + multi_stage_wake_up: false + engine_kwargs: + vllm: {} + sglang: {} + val_kwargs: + _target_: verl.workers.config.SamplingConfig + top_k: -1 + top_p: 1.0 + temperature: 0.5 + 'n': 1 + do_sample: true + multi_turn: + _target_: verl.workers.config.MultiTurnConfig + enable: false + max_assistant_turns: null + tool_config_path: null + max_user_turns: null + max_parallel_calls: 1 + max_tool_response_length: 256 + tool_response_truncate_side: middle + interaction_config_path: null + use_inference_chat_template: false + tokenization_sanity_check_mode: strict + format: hermes + num_repeat_rollouts: null + calculate_log_probs: false + agent: + _target_: verl.workers.config.AgentLoopConfig + num_workers: 8 + agent_loop_config_path: null + custom_async_server: + _target_: verl.workers.config.CustomAsyncServerConfig + path: null + name: null + update_weights_bucket_megabytes: 512 + trace: + _target_: verl.workers.config.TraceConfig + backend: null + token2text: false + skip_rollout: false + skip_dump_dir: /tmp/rollout_dump + skip_tokenizer_init: true + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: ${oc.select:actor_rollout_ref.actor.profiler.enable,false} + all_ranks: ${oc.select:actor_rollout_ref.actor.profiler.all_ranks,false} + ranks: ${oc.select:actor_rollout_ref.actor.profiler.ranks,[]} + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + layered_summon: false + rollout_filter_ratio: 1 + rollout_filter_type: largest + rollout_filter_metric: reward_variance + model: + _target_: verl.workers.config.HFModelConfig + path: ${model_path} + hf_config_path: null + tokenizer_path: null + use_shm: false + trust_remote_code: false + custom_chat_template: null + external_lib: null + override_config: {} + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + exclude_modules: null + use_liger: false + use_fused_kernels: false + fused_kernel_options: + impl_backend: torch + hybrid_engine: true + nccl_timeout: 600 +data: + tokenizer: null + use_shm: false + train_files: ~/data/rlhf/gsm8k/train.parquet + val_files: ~/data/rlhf/gsm8k/test.parquet + prompt_key: prompt + reward_fn_key: data_source + max_prompt_length: null + max_response_length: null + train_batch_size: null + val_batch_size: null + return_raw_input_ids: false + return_raw_chat: false + return_full_prompt: false + shuffle: true + dataloader_num_workers: 8 + validation_shuffle: false + filter_overlong_prompts: false + filter_overlong_prompts_workers: 1 + truncation: error + image_key: images + video_key: videos + trust_remote_code: false + custom_cls: + path: null + name: null + return_multi_modal_inputs: true + sampler: + class_path: null + class_name: null + datagen: + path: null + name: null + apply_chat_template_kwargs: {} +critic: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-05 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + model: + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + path: ${model_path} + tokenizer_path: ${oc.select:actor_rollout_ref.model.path,"~/models/deepseek-llm-7b-chat"} + override_config: {} + external_lib: ${oc.select:actor_rollout_ref.model.external_lib,null} + trust_remote_code: ${oc.select:actor_rollout_ref.model.trust_remote_code,false} + _target_: verl.workers.config.FSDPCriticModelCfg + use_shm: false + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + _target_: verl.workers.config.FSDPCriticConfig + rollout_n: ${oc.select:actor_rollout_ref.rollout.n,1} + strategy: fsdp + enable: null + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + ppo_max_token_len_per_gpu: 32768 + forward_max_token_len_per_gpu: ${.ppo_max_token_len_per_gpu} + ppo_epochs: ${oc.select:actor_rollout_ref.actor.ppo_epochs,1} + shuffle: ${oc.select:actor_rollout_ref.actor.shuffle,false} + cliprange_value: 0.5 + loss_agg_mode: ${oc.select:actor_rollout_ref.actor.loss_agg_mode,token-mean} + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + forward_micro_batch_size: ${oc.select:.ppo_micro_batch_size,null} + forward_micro_batch_size_per_gpu: ${oc.select:.ppo_micro_batch_size_per_gpu,null} + ulysses_sequence_parallel_size: 1 + grad_clip: 1.0 +reward_model: + enable: false + enable_resource_pool: false + n_gpus_per_node: 0 + nnodes: 0 + strategy: fsdp + model: + input_tokenizer: ${actor_rollout_ref.model.path} + path: ~/models/FsfairX-LLaMA3-RM-v0.1 + external_lib: ${actor_rollout_ref.model.external_lib} + trust_remote_code: false + use_shm: false + use_remove_padding: false + use_fused_kernels: ${actor_rollout_ref.model.use_fused_kernels} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + micro_batch_size: null + micro_batch_size_per_gpu: null + max_length: null + use_dynamic_bsz: ${critic.use_dynamic_bsz} + forward_max_token_len_per_gpu: ${critic.forward_max_token_len_per_gpu} + reward_manager: naive + launch_reward_fn_async: false + sandbox_fusion: + url: null + max_concurrent: 64 + memory_limit_mb: 1024 + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + ulysses_sequence_parallel_size: 1 +custom_reward_function: + path: null + name: compute_score +algorithm: + _target_: verl.trainer.config.AlgoConfig + gamma: 1.0 + lam: 1.0 + adv_estimator: gae + norm_adv_by_std_in_grpo: true + use_kl_in_reward: false + kl_penalty: kl + kl_ctrl: + _target_: verl.trainer.config.KLControlConfig + type: fixed + kl_coef: 0.001 + horizon: 10000 + target_kl: 0.1 + use_pf_ppo: false + pf_ppo: + reweight_method: pow + weight_pow: 2.0 + high_level_gamma: 0.95 + bi_level_gae: false +trainer: + balance_batch: true + total_epochs: 30 + total_training_steps: 200 + project_name: ragen_latest + experiment_name: frozen_lake-ppo-icl + logger: + - console + - wandb + log_val_generations: 0 + rollout_data_dir: null + validation_data_dir: null + nnodes: 1 + n_gpus_per_node: 1 + save_freq: 100 + esi_redundant_time: 0 + resume_mode: auto + resume_from_path: null + val_before_train: true + val_only: false + test_freq: 10 + critic_warmup: 0 + default_hdfs_dir: null + del_local_ckpt_after_load: false + default_local_dir: /mnt/general/wanghy/RAGEN/saves/ + max_actor_ckpt_to_keep: 1 + max_critic_ckpt_to_keep: 1 + ray_wait_register_center_timeout: 300 + device: cuda + use_legacy_worker_impl: auto + local_log_dir: results/ + validation_steps: 1 + generations_to_log_to_wandb: + train: 128 + val: 20 +global_profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: null + steps: null + profile_continuous_steps: false + save_path: outputs/profile + global_tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: false + controller_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + worker_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + capture-range: cudaProfilerApi + capture-range-end: null + kill: none + torch_memory: + trace_alloc_max_entries: 100000 + stack_depth: 32 + context: all + stacks: all + kw_args: {} +ray_kwargs: + ray_init: + num_cpus: null + timeline_json_file: null +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 10 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 10 + env_instruction: "You are solving the FrozenLake puzzle. The observation includes\ + \ both a symbol grid and zero-indexed coordinates for the start, goal, player,\ + \ and any holes.\nCoordinates range from the top-left corner (0, 0) to the bottom-right\ + \ corner (5, 5).\nBeware that the ice is slippery, so the agent might slide\ + \ and end up in an unintended tile.\nRespond with a sequence of actions such\ + \ as Left || Up || Up.\n\nHere is a successful example trajectory\ + \ of this env:\nState1\n____\n___P\n__O_\n___G\n\nAction1\nDown || Down\n\n\ + State2 \n____\n____\n__OP\n___G\n\nAction2\nDown\n\nState3\n____\n____\n__O_\n\ + ___√\n" + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +system: + CUDA_VISIBLE_DEVICES: 2 +seed: + train: 10000 + val: 123 +micro_batch_size_per_gpu: 1 +ppo_mini_batch_size: 32 +model_path: Qwen/Qwen2.5-0.5B-Instruct +enable_response_mask: true +grpo_advantage_length_weight: false +lora: + rank: 0 + alpha: 16 + target_modules: all-linear +agent_proxy: + max_context_window: -1 + max_turn: 5 + action_sep: '||' + max_actions_per_turn: 5 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 8 + val: + env_groups: 256 + group_size: 1 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 256 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null diff --git a/outputs/2025-11-19/15-19-10/.hydra/hydra.yaml b/outputs/2025-11-19/15-19-10/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..115209f1bd2bb52372bf9e9e6fa8b1e9759a0a1e --- /dev/null +++ b/outputs/2025-11-19/15-19-10/.hydra/hydra.yaml @@ -0,0 +1,176 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: + - system.CUDA_VISIBLE_DEVICES=2 + - trainer.experiment_name=frozen_lake-ppo-icl + - algorithm.adv_estimator=gae + - algorithm.kl_ctrl.kl_coef=0.001 + - actor_rollout_ref.actor.kl_loss_coef=0.001 + - actor_rollout_ref.actor.clip_ratio_high=0.2 + - actor_rollout_ref.rollout.rollout_filter_ratio=1 + job: + name: train + chdir: null + override_dirname: actor_rollout_ref.actor.clip_ratio_high=0.2,actor_rollout_ref.actor.kl_loss_coef=0.001,actor_rollout_ref.rollout.rollout_filter_ratio=1,algorithm.adv_estimator=gae,algorithm.kl_ctrl.kl_coef=0.001,system.CUDA_VISIBLE_DEVICES=2,trainer.experiment_name=frozen_lake-ppo-icl + id: ??? + num: ??? + config_name: _3_frozen_lake + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-19/15-19-10 + choices: + reward_model: dp_reward_model + critic: dp_critic + critic/../engine@critic.model.fsdp_config: fsdp + critic/../optim@critic.optim: fsdp + model@actor_rollout_ref.model: hf_model + rollout@actor_rollout_ref.rollout: rollout + ref@actor_rollout_ref.ref: dp_ref + ref/../engine@actor_rollout_ref.ref.fsdp_config: fsdp + data: legacy_data + actor@actor_rollout_ref.actor: dp_actor + actor/../engine@actor_rollout_ref.actor.fsdp_config: fsdp + actor/../optim@actor_rollout_ref.actor.optim: fsdp + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-20/00-05-30/.hydra/config.yaml b/outputs/2025-11-20/00-05-30/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4352ea32e90515821a12c56217c698e72549fa77 --- /dev/null +++ b/outputs/2025-11-20/00-05-30/.hydra/config.yaml @@ -0,0 +1,753 @@ +actor_rollout_ref: + actor: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-06 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + _target_: verl.workers.config.FSDPActorConfig + strategy: fsdp + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: false + ppo_max_token_len_per_gpu: 16384 + clip_ratio: 0.2 + clip_ratio_low: 0.2 + clip_ratio_high: 0.2 + freeze_vision_tower: false + policy_loss: + _target_: verl.workers.config.PolicyLossConfig + loss_mode: vanilla + clip_cov_ratio: 0.0002 + clip_cov_lb: 1.0 + clip_cov_ub: 5.0 + kl_cov_ratio: 0.0002 + ppo_kl_coef: 0.1 + clip_ratio_c: 3.0 + loss_agg_mode: token-mean + entropy_coeff: 0.001 + tis_imp_ratio_cap: -1 + use_kl_loss: false + use_torch_compile: true + kl_loss_coef: 0.001 + kl_loss_type: kl + ppo_epochs: 1 + shuffle: false + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + use_fused_kernels: ${oc.select:actor_rollout_ref.model.use_fused_kernels,false} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + grad_clip: 1.0 + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + use_remove_padding: ${oc.select:actor_rollout_ref.model.use_remove_padding,false} + use_ref: true + grpo_advantage_length_weight: ${grpo_advantage_length_weight} + ref: + strategy: ${actor_rollout_ref.actor.strategy} + use_torch_compile: ${oc.select:actor_rollout_ref.actor.use_torch_compile,true} + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + model: null + ulysses_sequence_parallel_size: ${oc.select:actor_rollout_ref.actor.ulysses_sequence_parallel_size,1} + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + rollout: + _target_: verl.workers.config.RolloutConfig + name: vllm + mode: sync + temperature: 1 + top_k: -1 + top_p: 1 + prompt_length: 1 + response_length: 400 + dtype: bfloat16 + gpu_memory_utilization: 0.5 + ignore_eos: false + enforce_eager: true + cudagraph_capture_sizes: null + free_cache_engine: true + tensor_model_parallel_size: 1 + data_parallel_size: 1 + expert_parallel_size: 1 + max_num_batched_tokens: 8192 + max_model_len: 3600 + max_num_seqs: 1024 + enable_chunked_prefill: true + enable_prefix_caching: true + load_format: dummy + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + disable_log_stats: true + do_sample: true + 'n': 1 + over_sample_rate: 0 + multi_stage_wake_up: false + engine_kwargs: + vllm: {} + sglang: {} + val_kwargs: + _target_: verl.workers.config.SamplingConfig + top_k: -1 + top_p: 1.0 + temperature: 0.5 + 'n': 1 + do_sample: true + multi_turn: + _target_: verl.workers.config.MultiTurnConfig + enable: false + max_assistant_turns: null + tool_config_path: null + max_user_turns: null + max_parallel_calls: 1 + max_tool_response_length: 256 + tool_response_truncate_side: middle + interaction_config_path: null + use_inference_chat_template: false + tokenization_sanity_check_mode: strict + format: hermes + num_repeat_rollouts: null + calculate_log_probs: false + agent: + _target_: verl.workers.config.AgentLoopConfig + num_workers: 8 + agent_loop_config_path: null + custom_async_server: + _target_: verl.workers.config.CustomAsyncServerConfig + path: null + name: null + update_weights_bucket_megabytes: 512 + trace: + _target_: verl.workers.config.TraceConfig + backend: null + token2text: false + skip_rollout: false + skip_dump_dir: /tmp/rollout_dump + skip_tokenizer_init: true + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: ${oc.select:actor_rollout_ref.actor.profiler.enable,false} + all_ranks: ${oc.select:actor_rollout_ref.actor.profiler.all_ranks,false} + ranks: ${oc.select:actor_rollout_ref.actor.profiler.ranks,[]} + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + layered_summon: false + rollout_filter_ratio: 1 + rollout_filter_type: largest + rollout_filter_metric: reward_variance + model: + _target_: verl.workers.config.HFModelConfig + path: ${model_path} + hf_config_path: null + tokenizer_path: null + use_shm: false + trust_remote_code: false + custom_chat_template: null + external_lib: null + override_config: {} + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + exclude_modules: null + use_liger: false + use_fused_kernels: false + fused_kernel_options: + impl_backend: torch + hybrid_engine: true + nccl_timeout: 600 +data: + tokenizer: null + use_shm: false + train_files: ~/data/rlhf/gsm8k/train.parquet + val_files: ~/data/rlhf/gsm8k/test.parquet + prompt_key: prompt + reward_fn_key: data_source + max_prompt_length: null + max_response_length: null + train_batch_size: null + val_batch_size: null + return_raw_input_ids: false + return_raw_chat: false + return_full_prompt: false + shuffle: true + dataloader_num_workers: 8 + validation_shuffle: false + filter_overlong_prompts: false + filter_overlong_prompts_workers: 1 + truncation: error + image_key: images + video_key: videos + trust_remote_code: false + custom_cls: + path: null + name: null + return_multi_modal_inputs: true + sampler: + class_path: null + class_name: null + datagen: + path: null + name: null + apply_chat_template_kwargs: {} +critic: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-05 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + model: + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + path: ${model_path} + tokenizer_path: ${oc.select:actor_rollout_ref.model.path,"~/models/deepseek-llm-7b-chat"} + override_config: {} + external_lib: ${oc.select:actor_rollout_ref.model.external_lib,null} + trust_remote_code: ${oc.select:actor_rollout_ref.model.trust_remote_code,false} + _target_: verl.workers.config.FSDPCriticModelCfg + use_shm: false + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + _target_: verl.workers.config.FSDPCriticConfig + rollout_n: ${oc.select:actor_rollout_ref.rollout.n,1} + strategy: fsdp + enable: null + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + ppo_max_token_len_per_gpu: 32768 + forward_max_token_len_per_gpu: ${.ppo_max_token_len_per_gpu} + ppo_epochs: ${oc.select:actor_rollout_ref.actor.ppo_epochs,1} + shuffle: ${oc.select:actor_rollout_ref.actor.shuffle,false} + cliprange_value: 0.5 + loss_agg_mode: ${oc.select:actor_rollout_ref.actor.loss_agg_mode,token-mean} + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + forward_micro_batch_size: ${oc.select:.ppo_micro_batch_size,null} + forward_micro_batch_size_per_gpu: ${oc.select:.ppo_micro_batch_size_per_gpu,null} + ulysses_sequence_parallel_size: 1 + grad_clip: 1.0 +reward_model: + enable: false + enable_resource_pool: false + n_gpus_per_node: 0 + nnodes: 0 + strategy: fsdp + model: + input_tokenizer: ${actor_rollout_ref.model.path} + path: ~/models/FsfairX-LLaMA3-RM-v0.1 + external_lib: ${actor_rollout_ref.model.external_lib} + trust_remote_code: false + use_shm: false + use_remove_padding: false + use_fused_kernels: ${actor_rollout_ref.model.use_fused_kernels} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + micro_batch_size: null + micro_batch_size_per_gpu: null + max_length: null + use_dynamic_bsz: ${critic.use_dynamic_bsz} + forward_max_token_len_per_gpu: ${critic.forward_max_token_len_per_gpu} + reward_manager: naive + launch_reward_fn_async: false + sandbox_fusion: + url: null + max_concurrent: 64 + memory_limit_mb: 1024 + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + ulysses_sequence_parallel_size: 1 +custom_reward_function: + path: null + name: compute_score +algorithm: + _target_: verl.trainer.config.AlgoConfig + gamma: 1.0 + lam: 1.0 + adv_estimator: gae + norm_adv_by_std_in_grpo: true + use_kl_in_reward: false + kl_penalty: kl + kl_ctrl: + _target_: verl.trainer.config.KLControlConfig + type: fixed + kl_coef: 0.001 + horizon: 10000 + target_kl: 0.1 + use_pf_ppo: false + pf_ppo: + reweight_method: pow + weight_pow: 2.0 + high_level_gamma: 0.95 + bi_level_gae: false +trainer: + balance_batch: true + total_epochs: 30 + total_training_steps: 200 + project_name: ragen_latest + experiment_name: frozen_lake-ppo-noslipper + logger: + - console + - wandb + log_val_generations: 0 + rollout_data_dir: null + validation_data_dir: null + nnodes: 1 + n_gpus_per_node: 1 + save_freq: 100 + esi_redundant_time: 0 + resume_mode: auto + resume_from_path: null + val_before_train: true + val_only: false + test_freq: 10 + critic_warmup: 0 + default_hdfs_dir: null + del_local_ckpt_after_load: false + default_local_dir: /mnt/general/wanghy/RAGEN/saves/ + max_actor_ckpt_to_keep: 1 + max_critic_ckpt_to_keep: 1 + ray_wait_register_center_timeout: 300 + device: cuda + use_legacy_worker_impl: auto + local_log_dir: results/ + validation_steps: 1 + generations_to_log_to_wandb: + train: 128 + val: 20 +global_profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: null + steps: null + profile_continuous_steps: false + save_path: outputs/profile + global_tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: false + controller_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + worker_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + capture-range: cudaProfilerApi + capture-range-end: null + kill: none + torch_memory: + trace_alloc_max_entries: 100000 + stack_depth: 32 + context: all + stacks: all + kw_args: {} +ray_kwargs: + ray_init: + num_cpus: null + timeline_json_file: null +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 10 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 10 + env_instruction: 'You are solving the FrozenLake puzzle. The observation includes + both a symbol grid and zero-indexed coordinates for the start, goal, player, + and any holes. + + Coordinates range from the top-left corner (0, 0) to the bottom-right corner + (5, 5). + + Beware that the ice is slippery, so the agent might slide and end up in an unintended + tile. + + Respond with a sequence of actions such as Left || Up || Up. + + ' + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +system: + CUDA_VISIBLE_DEVICES: 2 +seed: + train: 10000 + val: 123 +micro_batch_size_per_gpu: 1 +ppo_mini_batch_size: 32 +model_path: Qwen/Qwen2.5-0.5B-Instruct +enable_response_mask: true +grpo_advantage_length_weight: false +lora: + rank: 0 + alpha: 16 + target_modules: all-linear +agent_proxy: + max_context_window: -1 + max_turn: 5 + action_sep: '||' + max_actions_per_turn: 5 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 8 + val: + env_groups: 256 + group_size: 1 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 256 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null diff --git a/outputs/2025-11-20/14-29-30/.hydra/config.yaml b/outputs/2025-11-20/14-29-30/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..84b6ae72f60ea23a83ce0c3bf176e8cefa9a9e4d --- /dev/null +++ b/outputs/2025-11-20/14-29-30/.hydra/config.yaml @@ -0,0 +1,753 @@ +actor_rollout_ref: + actor: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-06 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + _target_: verl.workers.config.FSDPActorConfig + strategy: fsdp + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: false + ppo_max_token_len_per_gpu: 16384 + clip_ratio: 0.2 + clip_ratio_low: 0.2 + clip_ratio_high: 0.2 + freeze_vision_tower: false + policy_loss: + _target_: verl.workers.config.PolicyLossConfig + loss_mode: vanilla + clip_cov_ratio: 0.0002 + clip_cov_lb: 1.0 + clip_cov_ub: 5.0 + kl_cov_ratio: 0.0002 + ppo_kl_coef: 0.1 + clip_ratio_c: 3.0 + loss_agg_mode: token-mean + entropy_coeff: 0.001 + tis_imp_ratio_cap: -1 + use_kl_loss: false + use_torch_compile: true + kl_loss_coef: 0.001 + kl_loss_type: kl + ppo_epochs: 1 + shuffle: false + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + use_fused_kernels: ${oc.select:actor_rollout_ref.model.use_fused_kernels,false} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + grad_clip: 1.0 + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + use_remove_padding: ${oc.select:actor_rollout_ref.model.use_remove_padding,false} + use_ref: true + grpo_advantage_length_weight: ${grpo_advantage_length_weight} + ref: + strategy: ${actor_rollout_ref.actor.strategy} + use_torch_compile: ${oc.select:actor_rollout_ref.actor.use_torch_compile,true} + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + model: null + ulysses_sequence_parallel_size: ${oc.select:actor_rollout_ref.actor.ulysses_sequence_parallel_size,1} + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + rollout: + _target_: verl.workers.config.RolloutConfig + name: vllm + mode: sync + temperature: 1 + top_k: -1 + top_p: 1 + prompt_length: 1 + response_length: 400 + dtype: bfloat16 + gpu_memory_utilization: 0.5 + ignore_eos: false + enforce_eager: true + cudagraph_capture_sizes: null + free_cache_engine: true + tensor_model_parallel_size: 1 + data_parallel_size: 1 + expert_parallel_size: 1 + max_num_batched_tokens: 8192 + max_model_len: 3600 + max_num_seqs: 1024 + enable_chunked_prefill: true + enable_prefix_caching: true + load_format: dummy + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + disable_log_stats: true + do_sample: true + 'n': 1 + over_sample_rate: 0 + multi_stage_wake_up: false + engine_kwargs: + vllm: {} + sglang: {} + val_kwargs: + _target_: verl.workers.config.SamplingConfig + top_k: -1 + top_p: 1.0 + temperature: 0.5 + 'n': 1 + do_sample: true + multi_turn: + _target_: verl.workers.config.MultiTurnConfig + enable: false + max_assistant_turns: null + tool_config_path: null + max_user_turns: null + max_parallel_calls: 1 + max_tool_response_length: 256 + tool_response_truncate_side: middle + interaction_config_path: null + use_inference_chat_template: false + tokenization_sanity_check_mode: strict + format: hermes + num_repeat_rollouts: null + calculate_log_probs: false + agent: + _target_: verl.workers.config.AgentLoopConfig + num_workers: 8 + agent_loop_config_path: null + custom_async_server: + _target_: verl.workers.config.CustomAsyncServerConfig + path: null + name: null + update_weights_bucket_megabytes: 512 + trace: + _target_: verl.workers.config.TraceConfig + backend: null + token2text: false + skip_rollout: false + skip_dump_dir: /tmp/rollout_dump + skip_tokenizer_init: true + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: ${oc.select:actor_rollout_ref.actor.profiler.enable,false} + all_ranks: ${oc.select:actor_rollout_ref.actor.profiler.all_ranks,false} + ranks: ${oc.select:actor_rollout_ref.actor.profiler.ranks,[]} + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + layered_summon: false + rollout_filter_ratio: 1 + rollout_filter_type: largest + rollout_filter_metric: reward_variance + model: + _target_: verl.workers.config.HFModelConfig + path: ${model_path} + hf_config_path: null + tokenizer_path: null + use_shm: false + trust_remote_code: false + custom_chat_template: null + external_lib: null + override_config: {} + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + exclude_modules: null + use_liger: false + use_fused_kernels: false + fused_kernel_options: + impl_backend: torch + hybrid_engine: true + nccl_timeout: 600 +data: + tokenizer: null + use_shm: false + train_files: ~/data/rlhf/gsm8k/train.parquet + val_files: ~/data/rlhf/gsm8k/test.parquet + prompt_key: prompt + reward_fn_key: data_source + max_prompt_length: null + max_response_length: null + train_batch_size: null + val_batch_size: null + return_raw_input_ids: false + return_raw_chat: false + return_full_prompt: false + shuffle: true + dataloader_num_workers: 8 + validation_shuffle: false + filter_overlong_prompts: false + filter_overlong_prompts_workers: 1 + truncation: error + image_key: images + video_key: videos + trust_remote_code: false + custom_cls: + path: null + name: null + return_multi_modal_inputs: true + sampler: + class_path: null + class_name: null + datagen: + path: null + name: null + apply_chat_template_kwargs: {} +critic: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-05 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + model: + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + path: ${model_path} + tokenizer_path: ${oc.select:actor_rollout_ref.model.path,"~/models/deepseek-llm-7b-chat"} + override_config: {} + external_lib: ${oc.select:actor_rollout_ref.model.external_lib,null} + trust_remote_code: ${oc.select:actor_rollout_ref.model.trust_remote_code,false} + _target_: verl.workers.config.FSDPCriticModelCfg + use_shm: false + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + _target_: verl.workers.config.FSDPCriticConfig + rollout_n: ${oc.select:actor_rollout_ref.rollout.n,1} + strategy: fsdp + enable: null + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + ppo_max_token_len_per_gpu: 32768 + forward_max_token_len_per_gpu: ${.ppo_max_token_len_per_gpu} + ppo_epochs: ${oc.select:actor_rollout_ref.actor.ppo_epochs,1} + shuffle: ${oc.select:actor_rollout_ref.actor.shuffle,false} + cliprange_value: 0.5 + loss_agg_mode: ${oc.select:actor_rollout_ref.actor.loss_agg_mode,token-mean} + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + forward_micro_batch_size: ${oc.select:.ppo_micro_batch_size,null} + forward_micro_batch_size_per_gpu: ${oc.select:.ppo_micro_batch_size_per_gpu,null} + ulysses_sequence_parallel_size: 1 + grad_clip: 1.0 +reward_model: + enable: false + enable_resource_pool: false + n_gpus_per_node: 0 + nnodes: 0 + strategy: fsdp + model: + input_tokenizer: ${actor_rollout_ref.model.path} + path: ~/models/FsfairX-LLaMA3-RM-v0.1 + external_lib: ${actor_rollout_ref.model.external_lib} + trust_remote_code: false + use_shm: false + use_remove_padding: false + use_fused_kernels: ${actor_rollout_ref.model.use_fused_kernels} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + micro_batch_size: null + micro_batch_size_per_gpu: null + max_length: null + use_dynamic_bsz: ${critic.use_dynamic_bsz} + forward_max_token_len_per_gpu: ${critic.forward_max_token_len_per_gpu} + reward_manager: naive + launch_reward_fn_async: false + sandbox_fusion: + url: null + max_concurrent: 64 + memory_limit_mb: 1024 + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + ulysses_sequence_parallel_size: 1 +custom_reward_function: + path: null + name: compute_score +algorithm: + _target_: verl.trainer.config.AlgoConfig + gamma: 1.0 + lam: 1.0 + adv_estimator: gae + norm_adv_by_std_in_grpo: true + use_kl_in_reward: false + kl_penalty: kl + kl_ctrl: + _target_: verl.trainer.config.KLControlConfig + type: fixed + kl_coef: 0.001 + horizon: 10000 + target_kl: 0.1 + use_pf_ppo: false + pf_ppo: + reweight_method: pow + weight_pow: 2.0 + high_level_gamma: 0.95 + bi_level_gae: false +trainer: + balance_batch: true + total_epochs: 30 + total_training_steps: 200 + project_name: ragen_latest + experiment_name: frozen_lake-ppo-frommlp-singleaction-newenv + logger: + - console + - wandb + log_val_generations: 0 + rollout_data_dir: null + validation_data_dir: null + nnodes: 1 + n_gpus_per_node: 1 + save_freq: 100 + esi_redundant_time: 0 + resume_mode: auto + resume_from_path: null + val_before_train: true + val_only: false + test_freq: 10 + critic_warmup: 0 + default_hdfs_dir: null + del_local_ckpt_after_load: false + default_local_dir: /mnt/general/wanghy/RAGEN/saves/ + max_actor_ckpt_to_keep: 1 + max_critic_ckpt_to_keep: 1 + ray_wait_register_center_timeout: 300 + device: cuda + use_legacy_worker_impl: auto + local_log_dir: results/ + validation_steps: 1 + generations_to_log_to_wandb: + train: 128 + val: 20 +global_profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: null + steps: null + profile_continuous_steps: false + save_path: outputs/profile + global_tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: false + controller_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + worker_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + capture-range: cudaProfilerApi + capture-range-end: null + kill: none + torch_memory: + trace_alloc_max_entries: 100000 + stack_depth: 32 + context: all + stacks: all + kw_args: {} +ray_kwargs: + ray_init: + num_cpus: null + timeline_json_file: null +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. The observation includes + both a symbol grid and zero-indexed coordinates for the start, goal, player, + and any holes. + + Coordinates range from the top-left corner (0, 0) to the bottom-right corner + (5, 5). + + Beware that the ice is slippery, so the agent might slide and end up in an unintended + tile. + + Respond with a sequence of actions such as Left || Up || Up. + + ' + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +system: + CUDA_VISIBLE_DEVICES: 2 +seed: + train: 10000 + val: 123 +micro_batch_size_per_gpu: 1 +ppo_mini_batch_size: 32 +model_path: /mnt/general/wanghy/LLaMA-Factory/saves/qwen3/full/sft/qwen2.5_0.5B_it_frozen_lake_subagent_newenv_slippery +enable_response_mask: true +grpo_advantage_length_weight: false +lora: + rank: 0 + alpha: 16 + target_modules: all-linear +agent_proxy: + max_context_window: -1 + max_turn: 25 + action_sep: '||' + max_actions_per_turn: 1 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 8 + val: + env_groups: 256 + group_size: 1 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 256 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null diff --git a/outputs/2025-11-20/14-36-49/.hydra/overrides.yaml b/outputs/2025-11-20/14-36-49/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fe51488c7066f6687ef680d6bfaa4f7768ef205c --- /dev/null +++ b/outputs/2025-11-20/14-36-49/.hydra/overrides.yaml @@ -0,0 +1 @@ +[] diff --git a/outputs/2025-11-20/21-22-58/.hydra/config.yaml b/outputs/2025-11-20/21-22-58/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..75046bc2b25af28c62c322468c9f2e82e7fa93f7 --- /dev/null +++ b/outputs/2025-11-20/21-22-58/.hydra/config.yaml @@ -0,0 +1,753 @@ +actor_rollout_ref: + actor: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-06 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + _target_: verl.workers.config.FSDPActorConfig + strategy: fsdp + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: false + ppo_max_token_len_per_gpu: 16384 + clip_ratio: 0.2 + clip_ratio_low: 0.2 + clip_ratio_high: 0.2 + freeze_vision_tower: false + policy_loss: + _target_: verl.workers.config.PolicyLossConfig + loss_mode: vanilla + clip_cov_ratio: 0.0002 + clip_cov_lb: 1.0 + clip_cov_ub: 5.0 + kl_cov_ratio: 0.0002 + ppo_kl_coef: 0.1 + clip_ratio_c: 3.0 + loss_agg_mode: token-mean + entropy_coeff: 0.001 + tis_imp_ratio_cap: -1 + use_kl_loss: false + use_torch_compile: true + kl_loss_coef: 0.001 + kl_loss_type: kl + ppo_epochs: 1 + shuffle: false + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + use_fused_kernels: ${oc.select:actor_rollout_ref.model.use_fused_kernels,false} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + grad_clip: 1.0 + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + use_remove_padding: ${oc.select:actor_rollout_ref.model.use_remove_padding,false} + use_ref: true + grpo_advantage_length_weight: ${grpo_advantage_length_weight} + ref: + strategy: ${actor_rollout_ref.actor.strategy} + use_torch_compile: ${oc.select:actor_rollout_ref.actor.use_torch_compile,true} + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + model: null + ulysses_sequence_parallel_size: ${oc.select:actor_rollout_ref.actor.ulysses_sequence_parallel_size,1} + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + rollout: + _target_: verl.workers.config.RolloutConfig + name: vllm + mode: sync + temperature: 1 + top_k: -1 + top_p: 1 + prompt_length: 1 + response_length: 400 + dtype: bfloat16 + gpu_memory_utilization: 0.5 + ignore_eos: false + enforce_eager: true + cudagraph_capture_sizes: null + free_cache_engine: true + tensor_model_parallel_size: 1 + data_parallel_size: 1 + expert_parallel_size: 1 + max_num_batched_tokens: 8192 + max_model_len: 3600 + max_num_seqs: 1024 + enable_chunked_prefill: true + enable_prefix_caching: true + load_format: dummy + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + disable_log_stats: true + do_sample: true + 'n': 1 + over_sample_rate: 0 + multi_stage_wake_up: false + engine_kwargs: + vllm: {} + sglang: {} + val_kwargs: + _target_: verl.workers.config.SamplingConfig + top_k: -1 + top_p: 1.0 + temperature: 0.5 + 'n': 1 + do_sample: true + multi_turn: + _target_: verl.workers.config.MultiTurnConfig + enable: false + max_assistant_turns: null + tool_config_path: null + max_user_turns: null + max_parallel_calls: 1 + max_tool_response_length: 256 + tool_response_truncate_side: middle + interaction_config_path: null + use_inference_chat_template: false + tokenization_sanity_check_mode: strict + format: hermes + num_repeat_rollouts: null + calculate_log_probs: false + agent: + _target_: verl.workers.config.AgentLoopConfig + num_workers: 8 + agent_loop_config_path: null + custom_async_server: + _target_: verl.workers.config.CustomAsyncServerConfig + path: null + name: null + update_weights_bucket_megabytes: 512 + trace: + _target_: verl.workers.config.TraceConfig + backend: null + token2text: false + skip_rollout: false + skip_dump_dir: /tmp/rollout_dump + skip_tokenizer_init: true + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: ${oc.select:actor_rollout_ref.actor.profiler.enable,false} + all_ranks: ${oc.select:actor_rollout_ref.actor.profiler.all_ranks,false} + ranks: ${oc.select:actor_rollout_ref.actor.profiler.ranks,[]} + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + layered_summon: false + rollout_filter_ratio: 1 + rollout_filter_type: largest + rollout_filter_metric: reward_variance + model: + _target_: verl.workers.config.HFModelConfig + path: ${model_path} + hf_config_path: null + tokenizer_path: null + use_shm: false + trust_remote_code: false + custom_chat_template: null + external_lib: null + override_config: {} + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + exclude_modules: null + use_liger: false + use_fused_kernels: false + fused_kernel_options: + impl_backend: torch + hybrid_engine: true + nccl_timeout: 600 +data: + tokenizer: null + use_shm: false + train_files: ~/data/rlhf/gsm8k/train.parquet + val_files: ~/data/rlhf/gsm8k/test.parquet + prompt_key: prompt + reward_fn_key: data_source + max_prompt_length: null + max_response_length: null + train_batch_size: null + val_batch_size: null + return_raw_input_ids: false + return_raw_chat: false + return_full_prompt: false + shuffle: true + dataloader_num_workers: 8 + validation_shuffle: false + filter_overlong_prompts: false + filter_overlong_prompts_workers: 1 + truncation: error + image_key: images + video_key: videos + trust_remote_code: false + custom_cls: + path: null + name: null + return_multi_modal_inputs: true + sampler: + class_path: null + class_name: null + datagen: + path: null + name: null + apply_chat_template_kwargs: {} +critic: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-05 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + model: + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + path: ${model_path} + tokenizer_path: ${oc.select:actor_rollout_ref.model.path,"~/models/deepseek-llm-7b-chat"} + override_config: {} + external_lib: ${oc.select:actor_rollout_ref.model.external_lib,null} + trust_remote_code: ${oc.select:actor_rollout_ref.model.trust_remote_code,false} + _target_: verl.workers.config.FSDPCriticModelCfg + use_shm: false + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + _target_: verl.workers.config.FSDPCriticConfig + rollout_n: ${oc.select:actor_rollout_ref.rollout.n,1} + strategy: fsdp + enable: null + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + ppo_max_token_len_per_gpu: 32768 + forward_max_token_len_per_gpu: ${.ppo_max_token_len_per_gpu} + ppo_epochs: ${oc.select:actor_rollout_ref.actor.ppo_epochs,1} + shuffle: ${oc.select:actor_rollout_ref.actor.shuffle,false} + cliprange_value: 0.5 + loss_agg_mode: ${oc.select:actor_rollout_ref.actor.loss_agg_mode,token-mean} + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + forward_micro_batch_size: ${oc.select:.ppo_micro_batch_size,null} + forward_micro_batch_size_per_gpu: ${oc.select:.ppo_micro_batch_size_per_gpu,null} + ulysses_sequence_parallel_size: 1 + grad_clip: 1.0 +reward_model: + enable: false + enable_resource_pool: false + n_gpus_per_node: 0 + nnodes: 0 + strategy: fsdp + model: + input_tokenizer: ${actor_rollout_ref.model.path} + path: ~/models/FsfairX-LLaMA3-RM-v0.1 + external_lib: ${actor_rollout_ref.model.external_lib} + trust_remote_code: false + use_shm: false + use_remove_padding: false + use_fused_kernels: ${actor_rollout_ref.model.use_fused_kernels} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + micro_batch_size: null + micro_batch_size_per_gpu: null + max_length: null + use_dynamic_bsz: ${critic.use_dynamic_bsz} + forward_max_token_len_per_gpu: ${critic.forward_max_token_len_per_gpu} + reward_manager: naive + launch_reward_fn_async: false + sandbox_fusion: + url: null + max_concurrent: 64 + memory_limit_mb: 1024 + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + ulysses_sequence_parallel_size: 1 +custom_reward_function: + path: null + name: compute_score +algorithm: + _target_: verl.trainer.config.AlgoConfig + gamma: 1.0 + lam: 1.0 + adv_estimator: gae + norm_adv_by_std_in_grpo: true + use_kl_in_reward: false + kl_penalty: kl + kl_ctrl: + _target_: verl.trainer.config.KLControlConfig + type: fixed + kl_coef: 0.001 + horizon: 10000 + target_kl: 0.1 + use_pf_ppo: false + pf_ppo: + reweight_method: pow + weight_pow: 2.0 + high_level_gamma: 0.95 + bi_level_gae: false +trainer: + balance_batch: true + total_epochs: 30 + total_training_steps: 200 + project_name: ragen_latest + experiment_name: frozen_lake-ppo-frommlp-singleaction-newenv + logger: + - console + - wandb + log_val_generations: 0 + rollout_data_dir: null + validation_data_dir: null + nnodes: 1 + n_gpus_per_node: 1 + save_freq: 100 + esi_redundant_time: 0 + resume_mode: auto + resume_from_path: null + val_before_train: true + val_only: false + test_freq: 10 + critic_warmup: 0 + default_hdfs_dir: null + del_local_ckpt_after_load: false + default_local_dir: /mnt/general/wanghy/RAGEN/saves/ + max_actor_ckpt_to_keep: 1 + max_critic_ckpt_to_keep: 1 + ray_wait_register_center_timeout: 300 + device: cuda + use_legacy_worker_impl: auto + local_log_dir: results/ + validation_steps: 1 + generations_to_log_to_wandb: + train: 128 + val: 20 +global_profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: null + steps: null + profile_continuous_steps: false + save_path: outputs/profile + global_tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: false + controller_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + worker_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + capture-range: cudaProfilerApi + capture-range-end: null + kill: none + torch_memory: + trace_alloc_max_entries: 100000 + stack_depth: 32 + context: all + stacks: all + kw_args: {} +ray_kwargs: + ray_init: + num_cpus: null + timeline_json_file: null +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. The observation includes + both a symbol grid and zero-indexed coordinates for the start, goal, player, + and any holes. + + Coordinates range from the top-left corner (0, 0) to the bottom-right corner + (5, 5). + + Beware that the ice is slippery, so the agent might slide and end up in an unintended + tile. + + Respond with a sequence of actions such as Left || Up || Up. + + ' + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +system: + CUDA_VISIBLE_DEVICES: 1 +seed: + train: 10000 + val: 123 +micro_batch_size_per_gpu: 1 +ppo_mini_batch_size: 32 +model_path: /mnt/general/wanghy/LLaMA-Factory/saves/qwen3/full/sft/qwen2.5_0.5B_it_frozen_lake_subagent_newenv_slippery +enable_response_mask: true +grpo_advantage_length_weight: false +lora: + rank: 0 + alpha: 16 + target_modules: all-linear +agent_proxy: + max_context_window: -1 + max_turn: 25 + action_sep: '||' + max_actions_per_turn: 1 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 8 + val: + env_groups: 256 + group_size: 1 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 256 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null diff --git a/outputs/2025-11-20/21-22-58/.hydra/hydra.yaml b/outputs/2025-11-20/21-22-58/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f987cd96e7dbe148fe9542303f378844f8c96a5d --- /dev/null +++ b/outputs/2025-11-20/21-22-58/.hydra/hydra.yaml @@ -0,0 +1,176 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: + - system.CUDA_VISIBLE_DEVICES=1 + - trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv + - algorithm.adv_estimator=gae + - algorithm.kl_ctrl.kl_coef=0.001 + - actor_rollout_ref.actor.kl_loss_coef=0.001 + - actor_rollout_ref.actor.clip_ratio_high=0.2 + - actor_rollout_ref.rollout.rollout_filter_ratio=1 + job: + name: train + chdir: null + override_dirname: actor_rollout_ref.actor.clip_ratio_high=0.2,actor_rollout_ref.actor.kl_loss_coef=0.001,actor_rollout_ref.rollout.rollout_filter_ratio=1,algorithm.adv_estimator=gae,algorithm.kl_ctrl.kl_coef=0.001,system.CUDA_VISIBLE_DEVICES=1,trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv + id: ??? + num: ??? + config_name: _3_frozen_lake + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-20/21-22-58 + choices: + reward_model: dp_reward_model + critic: dp_critic + critic/../engine@critic.model.fsdp_config: fsdp + critic/../optim@critic.optim: fsdp + model@actor_rollout_ref.model: hf_model + rollout@actor_rollout_ref.rollout: rollout + ref@actor_rollout_ref.ref: dp_ref + ref/../engine@actor_rollout_ref.ref.fsdp_config: fsdp + data: legacy_data + actor@actor_rollout_ref.actor: dp_actor + actor/../engine@actor_rollout_ref.actor.fsdp_config: fsdp + actor/../optim@actor_rollout_ref.actor.optim: fsdp + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-20/22-31-22/.hydra/hydra.yaml b/outputs/2025-11-20/22-31-22/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3c7afda3ca0437e067f4e3f8c69c214cecf6a5b1 --- /dev/null +++ b/outputs/2025-11-20/22-31-22/.hydra/hydra.yaml @@ -0,0 +1,176 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: + - system.CUDA_VISIBLE_DEVICES=1 + - trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv + - algorithm.adv_estimator=gae + - algorithm.kl_ctrl.kl_coef=0.001 + - actor_rollout_ref.actor.kl_loss_coef=0.001 + - actor_rollout_ref.actor.clip_ratio_high=0.2 + - actor_rollout_ref.rollout.rollout_filter_ratio=1 + job: + name: train + chdir: null + override_dirname: actor_rollout_ref.actor.clip_ratio_high=0.2,actor_rollout_ref.actor.kl_loss_coef=0.001,actor_rollout_ref.rollout.rollout_filter_ratio=1,algorithm.adv_estimator=gae,algorithm.kl_ctrl.kl_coef=0.001,system.CUDA_VISIBLE_DEVICES=1,trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv + id: ??? + num: ??? + config_name: _3_frozen_lake + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-20/22-31-22 + choices: + reward_model: dp_reward_model + critic: dp_critic + critic/../engine@critic.model.fsdp_config: fsdp + critic/../optim@critic.optim: fsdp + model@actor_rollout_ref.model: hf_model + rollout@actor_rollout_ref.rollout: rollout + ref@actor_rollout_ref.ref: dp_ref + ref/../engine@actor_rollout_ref.ref.fsdp_config: fsdp + data: legacy_data + actor@actor_rollout_ref.actor: dp_actor + actor/../engine@actor_rollout_ref.actor.fsdp_config: fsdp + actor/../optim@actor_rollout_ref.actor.optim: fsdp + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-20/22-31-22/.hydra/overrides.yaml b/outputs/2025-11-20/22-31-22/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4d3358ab692a93841e12ffd332cfcb8c8d84f696 --- /dev/null +++ b/outputs/2025-11-20/22-31-22/.hydra/overrides.yaml @@ -0,0 +1,7 @@ +- system.CUDA_VISIBLE_DEVICES=1 +- trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv +- algorithm.adv_estimator=gae +- algorithm.kl_ctrl.kl_coef=0.001 +- actor_rollout_ref.actor.kl_loss_coef=0.001 +- actor_rollout_ref.actor.clip_ratio_high=0.2 +- actor_rollout_ref.rollout.rollout_filter_ratio=1 diff --git a/outputs/2025-11-21/00-08-28/.hydra/hydra.yaml b/outputs/2025-11-21/00-08-28/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..850799903a29e5b800e0d6270236611dfa6c0bd2 --- /dev/null +++ b/outputs/2025-11-21/00-08-28/.hydra/hydra.yaml @@ -0,0 +1,176 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: + - system.CUDA_VISIBLE_DEVICES=1 + - trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + - algorithm.adv_estimator=gae + - algorithm.kl_ctrl.kl_coef=0.001 + - actor_rollout_ref.actor.kl_loss_coef=0.001 + - actor_rollout_ref.actor.clip_ratio_high=0.2 + - actor_rollout_ref.rollout.rollout_filter_ratio=1 + job: + name: train + chdir: null + override_dirname: actor_rollout_ref.actor.clip_ratio_high=0.2,actor_rollout_ref.actor.kl_loss_coef=0.001,actor_rollout_ref.rollout.rollout_filter_ratio=1,algorithm.adv_estimator=gae,algorithm.kl_ctrl.kl_coef=0.001,system.CUDA_VISIBLE_DEVICES=1,trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + id: ??? + num: ??? + config_name: _3_frozen_lake + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-21/00-08-28 + choices: + reward_model: dp_reward_model + critic: dp_critic + critic/../engine@critic.model.fsdp_config: fsdp + critic/../optim@critic.optim: fsdp + model@actor_rollout_ref.model: hf_model + rollout@actor_rollout_ref.rollout: rollout + ref@actor_rollout_ref.ref: dp_ref + ref/../engine@actor_rollout_ref.ref.fsdp_config: fsdp + data: legacy_data + actor@actor_rollout_ref.actor: dp_actor + actor/../engine@actor_rollout_ref.actor.fsdp_config: fsdp + actor/../optim@actor_rollout_ref.actor.optim: fsdp + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-21/00-08-28/train.log b/outputs/2025-11-21/00-08-28/train.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-21/00-11-15/.hydra/overrides.yaml b/outputs/2025-11-21/00-11-15/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ca35cef9637c1b1bfff96ab301219fc109a4529e --- /dev/null +++ b/outputs/2025-11-21/00-11-15/.hydra/overrides.yaml @@ -0,0 +1,7 @@ +- system.CUDA_VISIBLE_DEVICES=1 +- trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery +- algorithm.adv_estimator=gae +- algorithm.kl_ctrl.kl_coef=0.001 +- actor_rollout_ref.actor.kl_loss_coef=0.001 +- actor_rollout_ref.actor.clip_ratio_high=0.2 +- actor_rollout_ref.rollout.rollout_filter_ratio=1 diff --git a/outputs/2025-11-21/00-31-48/.hydra/hydra.yaml b/outputs/2025-11-21/00-31-48/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f35265325da0e9e75c30db18db445a39bb80f29d --- /dev/null +++ b/outputs/2025-11-21/00-31-48/.hydra/hydra.yaml @@ -0,0 +1,176 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: + - system.CUDA_VISIBLE_DEVICES=1 + - trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + - algorithm.adv_estimator=gae + - algorithm.kl_ctrl.kl_coef=0.001 + - actor_rollout_ref.actor.kl_loss_coef=0.001 + - actor_rollout_ref.actor.clip_ratio_high=0.2 + - actor_rollout_ref.rollout.rollout_filter_ratio=1 + job: + name: train + chdir: null + override_dirname: actor_rollout_ref.actor.clip_ratio_high=0.2,actor_rollout_ref.actor.kl_loss_coef=0.001,actor_rollout_ref.rollout.rollout_filter_ratio=1,algorithm.adv_estimator=gae,algorithm.kl_ctrl.kl_coef=0.001,system.CUDA_VISIBLE_DEVICES=1,trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + id: ??? + num: ??? + config_name: _3_frozen_lake + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-21/00-31-48 + choices: + reward_model: dp_reward_model + critic: dp_critic + critic/../engine@critic.model.fsdp_config: fsdp + critic/../optim@critic.optim: fsdp + model@actor_rollout_ref.model: hf_model + rollout@actor_rollout_ref.rollout: rollout + ref@actor_rollout_ref.ref: dp_ref + ref/../engine@actor_rollout_ref.ref.fsdp_config: fsdp + data: legacy_data + actor@actor_rollout_ref.actor: dp_actor + actor/../engine@actor_rollout_ref.actor.fsdp_config: fsdp + actor/../optim@actor_rollout_ref.actor.optim: fsdp + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-21/00-31-48/.hydra/overrides.yaml b/outputs/2025-11-21/00-31-48/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ca35cef9637c1b1bfff96ab301219fc109a4529e --- /dev/null +++ b/outputs/2025-11-21/00-31-48/.hydra/overrides.yaml @@ -0,0 +1,7 @@ +- system.CUDA_VISIBLE_DEVICES=1 +- trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery +- algorithm.adv_estimator=gae +- algorithm.kl_ctrl.kl_coef=0.001 +- actor_rollout_ref.actor.kl_loss_coef=0.001 +- actor_rollout_ref.actor.clip_ratio_high=0.2 +- actor_rollout_ref.rollout.rollout_filter_ratio=1 diff --git a/outputs/2025-11-21/00-31-48/train.log b/outputs/2025-11-21/00-31-48/train.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-21/00-32-04/.hydra/overrides.yaml b/outputs/2025-11-21/00-32-04/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fe51488c7066f6687ef680d6bfaa4f7768ef205c --- /dev/null +++ b/outputs/2025-11-21/00-32-04/.hydra/overrides.yaml @@ -0,0 +1 @@ +[] diff --git a/outputs/2025-11-21/09-48-53/.hydra/hydra.yaml b/outputs/2025-11-21/09-48-53/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c1fc3963095ff1f435c4f9c30e6366f2f0ca6e7e --- /dev/null +++ b/outputs/2025-11-21/09-48-53/.hydra/hydra.yaml @@ -0,0 +1,176 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: + - system.CUDA_VISIBLE_DEVICES=1 + - trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + - algorithm.adv_estimator=gae + - algorithm.kl_ctrl.kl_coef=0.001 + - actor_rollout_ref.actor.kl_loss_coef=0.001 + - actor_rollout_ref.actor.clip_ratio_high=0.2 + - actor_rollout_ref.rollout.rollout_filter_ratio=1 + job: + name: train + chdir: null + override_dirname: actor_rollout_ref.actor.clip_ratio_high=0.2,actor_rollout_ref.actor.kl_loss_coef=0.001,actor_rollout_ref.rollout.rollout_filter_ratio=1,algorithm.adv_estimator=gae,algorithm.kl_ctrl.kl_coef=0.001,system.CUDA_VISIBLE_DEVICES=1,trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + id: ??? + num: ??? + config_name: _3_frozen_lake + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-21/09-48-53 + choices: + reward_model: dp_reward_model + critic: dp_critic + critic/../engine@critic.model.fsdp_config: fsdp + critic/../optim@critic.optim: fsdp + model@actor_rollout_ref.model: hf_model + rollout@actor_rollout_ref.rollout: rollout + ref@actor_rollout_ref.ref: dp_ref + ref/../engine@actor_rollout_ref.ref.fsdp_config: fsdp + data: legacy_data + actor@actor_rollout_ref.actor: dp_actor + actor/../engine@actor_rollout_ref.actor.fsdp_config: fsdp + actor/../optim@actor_rollout_ref.actor.optim: fsdp + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-21/09-48-53/train.log b/outputs/2025-11-21/09-48-53/train.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-21/10-20-37/.hydra/hydra.yaml b/outputs/2025-11-21/10-20-37/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7836332eb785b57d967b04126d8ae3fe3fb86033 --- /dev/null +++ b/outputs/2025-11-21/10-20-37/.hydra/hydra.yaml @@ -0,0 +1,176 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: + - system.CUDA_VISIBLE_DEVICES=1 + - trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + - algorithm.adv_estimator=gae + - algorithm.kl_ctrl.kl_coef=0.001 + - actor_rollout_ref.actor.kl_loss_coef=0.001 + - actor_rollout_ref.actor.clip_ratio_high=0.2 + - actor_rollout_ref.rollout.rollout_filter_ratio=1 + job: + name: train + chdir: null + override_dirname: actor_rollout_ref.actor.clip_ratio_high=0.2,actor_rollout_ref.actor.kl_loss_coef=0.001,actor_rollout_ref.rollout.rollout_filter_ratio=1,algorithm.adv_estimator=gae,algorithm.kl_ctrl.kl_coef=0.001,system.CUDA_VISIBLE_DEVICES=1,trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + id: ??? + num: ??? + config_name: _3_frozen_lake + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-21/10-20-37 + choices: + reward_model: dp_reward_model + critic: dp_critic + critic/../engine@critic.model.fsdp_config: fsdp + critic/../optim@critic.optim: fsdp + model@actor_rollout_ref.model: hf_model + rollout@actor_rollout_ref.rollout: rollout + ref@actor_rollout_ref.ref: dp_ref + ref/../engine@actor_rollout_ref.ref.fsdp_config: fsdp + data: legacy_data + actor@actor_rollout_ref.actor: dp_actor + actor/../engine@actor_rollout_ref.actor.fsdp_config: fsdp + actor/../optim@actor_rollout_ref.actor.optim: fsdp + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-21/10-20-37/.hydra/overrides.yaml b/outputs/2025-11-21/10-20-37/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ca35cef9637c1b1bfff96ab301219fc109a4529e --- /dev/null +++ b/outputs/2025-11-21/10-20-37/.hydra/overrides.yaml @@ -0,0 +1,7 @@ +- system.CUDA_VISIBLE_DEVICES=1 +- trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery +- algorithm.adv_estimator=gae +- algorithm.kl_ctrl.kl_coef=0.001 +- actor_rollout_ref.actor.kl_loss_coef=0.001 +- actor_rollout_ref.actor.clip_ratio_high=0.2 +- actor_rollout_ref.rollout.rollout_filter_ratio=1 diff --git a/outputs/2025-11-21/10-24-43/.hydra/config.yaml b/outputs/2025-11-21/10-24-43/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b9b79032e3e8d01cfd855ae94fc185e0c8e17a10 --- /dev/null +++ b/outputs/2025-11-21/10-24-43/.hydra/config.yaml @@ -0,0 +1,753 @@ +actor_rollout_ref: + actor: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-06 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + _target_: verl.workers.config.FSDPActorConfig + strategy: fsdp + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: false + ppo_max_token_len_per_gpu: 16384 + clip_ratio: 0.2 + clip_ratio_low: 0.2 + clip_ratio_high: 0.2 + freeze_vision_tower: false + policy_loss: + _target_: verl.workers.config.PolicyLossConfig + loss_mode: vanilla + clip_cov_ratio: 0.0002 + clip_cov_lb: 1.0 + clip_cov_ub: 5.0 + kl_cov_ratio: 0.0002 + ppo_kl_coef: 0.1 + clip_ratio_c: 3.0 + loss_agg_mode: token-mean + entropy_coeff: 0.001 + tis_imp_ratio_cap: -1 + use_kl_loss: false + use_torch_compile: true + kl_loss_coef: 0.001 + kl_loss_type: kl + ppo_epochs: 1 + shuffle: false + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + use_fused_kernels: ${oc.select:actor_rollout_ref.model.use_fused_kernels,false} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + grad_clip: 1.0 + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + use_remove_padding: ${oc.select:actor_rollout_ref.model.use_remove_padding,false} + use_ref: true + grpo_advantage_length_weight: ${grpo_advantage_length_weight} + ref: + strategy: ${actor_rollout_ref.actor.strategy} + use_torch_compile: ${oc.select:actor_rollout_ref.actor.use_torch_compile,true} + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + model: null + ulysses_sequence_parallel_size: ${oc.select:actor_rollout_ref.actor.ulysses_sequence_parallel_size,1} + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + rollout: + _target_: verl.workers.config.RolloutConfig + name: vllm + mode: sync + temperature: 1 + top_k: -1 + top_p: 1 + prompt_length: 1 + response_length: 400 + dtype: bfloat16 + gpu_memory_utilization: 0.5 + ignore_eos: false + enforce_eager: true + cudagraph_capture_sizes: null + free_cache_engine: true + tensor_model_parallel_size: 1 + data_parallel_size: 1 + expert_parallel_size: 1 + max_num_batched_tokens: 8192 + max_model_len: 7200 + max_num_seqs: 1024 + enable_chunked_prefill: true + enable_prefix_caching: true + load_format: dummy + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + disable_log_stats: true + do_sample: true + 'n': 1 + over_sample_rate: 0 + multi_stage_wake_up: false + engine_kwargs: + vllm: {} + sglang: {} + val_kwargs: + _target_: verl.workers.config.SamplingConfig + top_k: -1 + top_p: 1.0 + temperature: 0.5 + 'n': 1 + do_sample: true + multi_turn: + _target_: verl.workers.config.MultiTurnConfig + enable: false + max_assistant_turns: null + tool_config_path: null + max_user_turns: null + max_parallel_calls: 1 + max_tool_response_length: 256 + tool_response_truncate_side: middle + interaction_config_path: null + use_inference_chat_template: false + tokenization_sanity_check_mode: strict + format: hermes + num_repeat_rollouts: null + calculate_log_probs: false + agent: + _target_: verl.workers.config.AgentLoopConfig + num_workers: 8 + agent_loop_config_path: null + custom_async_server: + _target_: verl.workers.config.CustomAsyncServerConfig + path: null + name: null + update_weights_bucket_megabytes: 512 + trace: + _target_: verl.workers.config.TraceConfig + backend: null + token2text: false + skip_rollout: false + skip_dump_dir: /tmp/rollout_dump + skip_tokenizer_init: true + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: ${oc.select:actor_rollout_ref.actor.profiler.enable,false} + all_ranks: ${oc.select:actor_rollout_ref.actor.profiler.all_ranks,false} + ranks: ${oc.select:actor_rollout_ref.actor.profiler.ranks,[]} + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + layered_summon: false + rollout_filter_ratio: 1 + rollout_filter_type: largest + rollout_filter_metric: reward_variance + model: + _target_: verl.workers.config.HFModelConfig + path: ${model_path} + hf_config_path: null + tokenizer_path: null + use_shm: false + trust_remote_code: false + custom_chat_template: null + external_lib: null + override_config: {} + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + exclude_modules: null + use_liger: false + use_fused_kernels: false + fused_kernel_options: + impl_backend: torch + hybrid_engine: true + nccl_timeout: 600 +data: + tokenizer: null + use_shm: false + train_files: ~/data/rlhf/gsm8k/train.parquet + val_files: ~/data/rlhf/gsm8k/test.parquet + prompt_key: prompt + reward_fn_key: data_source + max_prompt_length: null + max_response_length: null + train_batch_size: null + val_batch_size: null + return_raw_input_ids: false + return_raw_chat: false + return_full_prompt: false + shuffle: true + dataloader_num_workers: 8 + validation_shuffle: false + filter_overlong_prompts: false + filter_overlong_prompts_workers: 1 + truncation: error + image_key: images + video_key: videos + trust_remote_code: false + custom_cls: + path: null + name: null + return_multi_modal_inputs: true + sampler: + class_path: null + class_name: null + datagen: + path: null + name: null + apply_chat_template_kwargs: {} +critic: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-05 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + model: + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + path: ${model_path} + tokenizer_path: ${oc.select:actor_rollout_ref.model.path,"~/models/deepseek-llm-7b-chat"} + override_config: {} + external_lib: ${oc.select:actor_rollout_ref.model.external_lib,null} + trust_remote_code: ${oc.select:actor_rollout_ref.model.trust_remote_code,false} + _target_: verl.workers.config.FSDPCriticModelCfg + use_shm: false + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + _target_: verl.workers.config.FSDPCriticConfig + rollout_n: ${oc.select:actor_rollout_ref.rollout.n,1} + strategy: fsdp + enable: null + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + ppo_max_token_len_per_gpu: 32768 + forward_max_token_len_per_gpu: ${.ppo_max_token_len_per_gpu} + ppo_epochs: ${oc.select:actor_rollout_ref.actor.ppo_epochs,1} + shuffle: ${oc.select:actor_rollout_ref.actor.shuffle,false} + cliprange_value: 0.5 + loss_agg_mode: ${oc.select:actor_rollout_ref.actor.loss_agg_mode,token-mean} + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + forward_micro_batch_size: ${oc.select:.ppo_micro_batch_size,null} + forward_micro_batch_size_per_gpu: ${oc.select:.ppo_micro_batch_size_per_gpu,null} + ulysses_sequence_parallel_size: 1 + grad_clip: 1.0 +reward_model: + enable: false + enable_resource_pool: false + n_gpus_per_node: 0 + nnodes: 0 + strategy: fsdp + model: + input_tokenizer: ${actor_rollout_ref.model.path} + path: ~/models/FsfairX-LLaMA3-RM-v0.1 + external_lib: ${actor_rollout_ref.model.external_lib} + trust_remote_code: false + use_shm: false + use_remove_padding: false + use_fused_kernels: ${actor_rollout_ref.model.use_fused_kernels} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + micro_batch_size: null + micro_batch_size_per_gpu: null + max_length: null + use_dynamic_bsz: ${critic.use_dynamic_bsz} + forward_max_token_len_per_gpu: ${critic.forward_max_token_len_per_gpu} + reward_manager: naive + launch_reward_fn_async: false + sandbox_fusion: + url: null + max_concurrent: 64 + memory_limit_mb: 1024 + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + ulysses_sequence_parallel_size: 1 +custom_reward_function: + path: null + name: compute_score +algorithm: + _target_: verl.trainer.config.AlgoConfig + gamma: 1.0 + lam: 1.0 + adv_estimator: gae + norm_adv_by_std_in_grpo: true + use_kl_in_reward: false + kl_penalty: kl + kl_ctrl: + _target_: verl.trainer.config.KLControlConfig + type: fixed + kl_coef: 0.001 + horizon: 10000 + target_kl: 0.1 + use_pf_ppo: false + pf_ppo: + reweight_method: pow + weight_pow: 2.0 + high_level_gamma: 0.95 + bi_level_gae: false +trainer: + balance_batch: true + total_epochs: 30 + total_training_steps: 200 + project_name: ragen_latest + experiment_name: frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + logger: + - console + - wandb + log_val_generations: 0 + rollout_data_dir: null + validation_data_dir: null + nnodes: 1 + n_gpus_per_node: 1 + save_freq: 100 + esi_redundant_time: 0 + resume_mode: auto + resume_from_path: null + val_before_train: true + val_only: false + test_freq: 10 + critic_warmup: 0 + default_hdfs_dir: null + del_local_ckpt_after_load: false + default_local_dir: /mnt/general/wanghy/RAGEN/saves/ + max_actor_ckpt_to_keep: 1 + max_critic_ckpt_to_keep: 1 + ray_wait_register_center_timeout: 300 + device: cuda + use_legacy_worker_impl: auto + local_log_dir: results/ + validation_steps: 1 + generations_to_log_to_wandb: + train: 128 + val: 20 +global_profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: null + steps: null + profile_continuous_steps: false + save_path: outputs/profile + global_tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: false + controller_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + worker_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + capture-range: cudaProfilerApi + capture-range-end: null + kill: none + torch_memory: + trace_alloc_max_entries: 100000 + stack_depth: 32 + context: all + stacks: all + kw_args: {} +ray_kwargs: + ray_init: + num_cpus: null + timeline_json_file: null +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. The observation includes + both a symbol grid and zero-indexed coordinates for the start, goal, player, + and any holes. + + Coordinates range from the top-left corner (0, 0) to the bottom-right corner + (5, 5). + + Beware that the ice is slippery, so the agent might slide and end up in an unintended + tile. + + Respond with a sequence of actions such as Left || Up || Up. + + ' + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +system: + CUDA_VISIBLE_DEVICES: 1 +seed: + train: 10000 + val: 123 +micro_batch_size_per_gpu: 1 +ppo_mini_batch_size: 32 +model_path: /mnt/general/wanghy/LLaMA-Factory/saves/qwen3/full/sft/qwen2.5_0.5B_it_frozen_lake_subagent_newenv_noslippery +enable_response_mask: true +grpo_advantage_length_weight: false +lora: + rank: 0 + alpha: 16 + target_modules: all-linear +agent_proxy: + max_context_window: -1 + max_turn: 25 + action_sep: '||' + max_actions_per_turn: 1 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 8 + val: + env_groups: 256 + group_size: 1 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 256 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null diff --git a/outputs/2025-11-21/10-24-43/.hydra/overrides.yaml b/outputs/2025-11-21/10-24-43/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ca35cef9637c1b1bfff96ab301219fc109a4529e --- /dev/null +++ b/outputs/2025-11-21/10-24-43/.hydra/overrides.yaml @@ -0,0 +1,7 @@ +- system.CUDA_VISIBLE_DEVICES=1 +- trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery +- algorithm.adv_estimator=gae +- algorithm.kl_ctrl.kl_coef=0.001 +- actor_rollout_ref.actor.kl_loss_coef=0.001 +- actor_rollout_ref.actor.clip_ratio_high=0.2 +- actor_rollout_ref.rollout.rollout_filter_ratio=1 diff --git a/outputs/2025-11-21/10-24-43/train.log b/outputs/2025-11-21/10-24-43/train.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-21/11-52-40/.hydra/config.yaml b/outputs/2025-11-21/11-52-40/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ea4e3884e51854d156a6ebd6e3685ac984359318 --- /dev/null +++ b/outputs/2025-11-21/11-52-40/.hydra/config.yaml @@ -0,0 +1,753 @@ +actor_rollout_ref: + actor: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-06 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + _target_: verl.workers.config.FSDPActorConfig + strategy: fsdp + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: false + ppo_max_token_len_per_gpu: 16384 + clip_ratio: 0.2 + clip_ratio_low: 0.2 + clip_ratio_high: 0.2 + freeze_vision_tower: false + policy_loss: + _target_: verl.workers.config.PolicyLossConfig + loss_mode: vanilla + clip_cov_ratio: 0.0002 + clip_cov_lb: 1.0 + clip_cov_ub: 5.0 + kl_cov_ratio: 0.0002 + ppo_kl_coef: 0.1 + clip_ratio_c: 3.0 + loss_agg_mode: token-mean + entropy_coeff: 0.001 + tis_imp_ratio_cap: -1 + use_kl_loss: false + use_torch_compile: true + kl_loss_coef: 0.001 + kl_loss_type: kl + ppo_epochs: 1 + shuffle: false + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + use_fused_kernels: ${oc.select:actor_rollout_ref.model.use_fused_kernels,false} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + grad_clip: 1.0 + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + use_remove_padding: ${oc.select:actor_rollout_ref.model.use_remove_padding,false} + use_ref: true + grpo_advantage_length_weight: ${grpo_advantage_length_weight} + ref: + strategy: ${actor_rollout_ref.actor.strategy} + use_torch_compile: ${oc.select:actor_rollout_ref.actor.use_torch_compile,true} + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + model: null + ulysses_sequence_parallel_size: ${oc.select:actor_rollout_ref.actor.ulysses_sequence_parallel_size,1} + entropy_from_logits_with_chunking: false + entropy_checkpointing: false + rollout: + _target_: verl.workers.config.RolloutConfig + name: vllm + mode: sync + temperature: 1 + top_k: -1 + top_p: 1 + prompt_length: 1 + response_length: 400 + dtype: bfloat16 + gpu_memory_utilization: 0.5 + ignore_eos: false + enforce_eager: true + cudagraph_capture_sizes: null + free_cache_engine: true + tensor_model_parallel_size: 1 + data_parallel_size: 1 + expert_parallel_size: 1 + max_num_batched_tokens: 8192 + max_model_len: 7200 + max_num_seqs: 1024 + enable_chunked_prefill: true + enable_prefix_caching: true + load_format: dummy + log_prob_micro_batch_size: null + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + log_prob_use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + log_prob_max_token_len_per_gpu: ${oc.select:actor_rollout_ref.actor.ppo_max_token_len_per_gpu,16384} + disable_log_stats: true + do_sample: true + 'n': 1 + over_sample_rate: 0 + multi_stage_wake_up: false + engine_kwargs: + vllm: {} + sglang: {} + val_kwargs: + _target_: verl.workers.config.SamplingConfig + top_k: -1 + top_p: 1.0 + temperature: 0.5 + 'n': 1 + do_sample: true + multi_turn: + _target_: verl.workers.config.MultiTurnConfig + enable: false + max_assistant_turns: null + tool_config_path: null + max_user_turns: null + max_parallel_calls: 1 + max_tool_response_length: 256 + tool_response_truncate_side: middle + interaction_config_path: null + use_inference_chat_template: false + tokenization_sanity_check_mode: strict + format: hermes + num_repeat_rollouts: null + calculate_log_probs: false + agent: + _target_: verl.workers.config.AgentLoopConfig + num_workers: 8 + agent_loop_config_path: null + custom_async_server: + _target_: verl.workers.config.CustomAsyncServerConfig + path: null + name: null + update_weights_bucket_megabytes: 512 + trace: + _target_: verl.workers.config.TraceConfig + backend: null + token2text: false + skip_rollout: false + skip_dump_dir: /tmp/rollout_dump + skip_tokenizer_init: true + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: ${oc.select:actor_rollout_ref.actor.profiler.enable,false} + all_ranks: ${oc.select:actor_rollout_ref.actor.profiler.all_ranks,false} + ranks: ${oc.select:actor_rollout_ref.actor.profiler.ranks,[]} + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + layered_summon: false + rollout_filter_ratio: 1 + rollout_filter_type: largest + rollout_filter_metric: reward_variance + model: + _target_: verl.workers.config.HFModelConfig + path: ${model_path} + hf_config_path: null + tokenizer_path: null + use_shm: false + trust_remote_code: false + custom_chat_template: null + external_lib: null + override_config: {} + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + exclude_modules: null + use_liger: false + use_fused_kernels: false + fused_kernel_options: + impl_backend: torch + hybrid_engine: true + nccl_timeout: 600 +data: + tokenizer: null + use_shm: false + train_files: ~/data/rlhf/gsm8k/train.parquet + val_files: ~/data/rlhf/gsm8k/test.parquet + prompt_key: prompt + reward_fn_key: data_source + max_prompt_length: null + max_response_length: null + train_batch_size: null + val_batch_size: null + return_raw_input_ids: false + return_raw_chat: false + return_full_prompt: false + shuffle: true + dataloader_num_workers: 8 + validation_shuffle: false + filter_overlong_prompts: false + filter_overlong_prompts_workers: 1 + truncation: error + image_key: images + video_key: videos + trust_remote_code: false + custom_cls: + path: null + name: null + return_multi_modal_inputs: true + sampler: + class_path: null + class_name: null + datagen: + path: null + name: null + apply_chat_template_kwargs: {} +critic: + optim: + _target_: verl.workers.config.FSDPOptimizerConfig + lr: 1.0e-05 + lr_warmup_steps_ratio: 0.0 + total_training_steps: -1 + weight_decay: 0.01 + lr_warmup_steps: -1 + betas: + - 0.9 + - 0.999 + clip_grad: 1.0 + min_lr_ratio: 0.0 + num_cycles: 0.5 + warmup_style: constant + model: + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + optimizer_offload: false + offload_policy: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + model_dtype: fp32 + use_orig_params: false + ulysses_sequence_parallel_size: 1 + entropy_from_logits_with_chunking: false + use_torch_compile: true + entropy_checkpointing: false + forward_only: false + strategy: fsdp + path: ${model_path} + tokenizer_path: ${oc.select:actor_rollout_ref.model.path,"~/models/deepseek-llm-7b-chat"} + override_config: {} + external_lib: ${oc.select:actor_rollout_ref.model.external_lib,null} + trust_remote_code: ${oc.select:actor_rollout_ref.model.trust_remote_code,false} + _target_: verl.workers.config.FSDPCriticModelCfg + use_shm: false + enable_gradient_checkpointing: true + enable_activation_offload: false + use_remove_padding: false + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + _target_: verl.workers.config.FSDPCriticConfig + rollout_n: ${oc.select:actor_rollout_ref.rollout.n,1} + strategy: fsdp + enable: null + ppo_mini_batch_size: ${ppo_mini_batch_size} + ppo_micro_batch_size: null + ppo_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + use_dynamic_bsz: ${oc.select:actor_rollout_ref.actor.use_dynamic_bsz,false} + ppo_max_token_len_per_gpu: 32768 + forward_max_token_len_per_gpu: ${.ppo_max_token_len_per_gpu} + ppo_epochs: ${oc.select:actor_rollout_ref.actor.ppo_epochs,1} + shuffle: ${oc.select:actor_rollout_ref.actor.shuffle,false} + cliprange_value: 0.5 + loss_agg_mode: ${oc.select:actor_rollout_ref.actor.loss_agg_mode,token-mean} + checkpoint: + _target_: verl.trainer.config.CheckpointConfig + save_contents: + - model + - optimizer + - extra + load_contents: ${.save_contents} + async_save: false + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: ${oc.select:global_profiler.global_tool_config.nsys.discrete} + npu: + _target_: verl.utils.profiler.config.NPUToolConfig + contents: [] + level: level1 + analysis: true + discrete: false + torch: + _target_: verl.utils.profiler.config.TorchProfilerToolConfig + step_start: 0 + step_end: null + torch_memory: + _target_: verl.utils.profiler.config.TorchMemoryToolConfig + trace_alloc_max_entries: ${oc.select:global_profiler.global_tool_config.torch_memory.trace_alloc_max_entries,100000} + stack_depth: ${oc.select:global_profiler.global_tool_config.torch_memory.stack_depth,32} + forward_micro_batch_size: ${oc.select:.ppo_micro_batch_size,null} + forward_micro_batch_size_per_gpu: ${oc.select:.ppo_micro_batch_size_per_gpu,null} + ulysses_sequence_parallel_size: 1 + grad_clip: 1.0 +reward_model: + enable: false + enable_resource_pool: false + n_gpus_per_node: 0 + nnodes: 0 + strategy: fsdp + model: + input_tokenizer: ${actor_rollout_ref.model.path} + path: ~/models/FsfairX-LLaMA3-RM-v0.1 + external_lib: ${actor_rollout_ref.model.external_lib} + trust_remote_code: false + use_shm: false + use_remove_padding: false + use_fused_kernels: ${actor_rollout_ref.model.use_fused_kernels} + fsdp_config: + _target_: verl.workers.config.FSDPEngineConfig + wrap_policy: + min_num_params: 0 + param_offload: false + reshard_after_forward: true + fsdp_size: -1 + forward_prefetch: false + micro_batch_size: null + micro_batch_size_per_gpu: null + max_length: null + use_dynamic_bsz: ${critic.use_dynamic_bsz} + forward_max_token_len_per_gpu: ${critic.forward_max_token_len_per_gpu} + reward_manager: naive + launch_reward_fn_async: false + sandbox_fusion: + url: null + max_concurrent: 64 + memory_limit_mb: 1024 + profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: ${oc.select:global_profiler.tool,null} + enable: false + all_ranks: false + ranks: [] + save_path: ${oc.select:global_profiler.save_path,null} + tool_config: ${oc.select:actor_rollout_ref.actor.profiler.tool_config,null} + ulysses_sequence_parallel_size: 1 +custom_reward_function: + path: null + name: compute_score +algorithm: + _target_: verl.trainer.config.AlgoConfig + gamma: 1.0 + lam: 1.0 + adv_estimator: gae + norm_adv_by_std_in_grpo: true + use_kl_in_reward: false + kl_penalty: kl + kl_ctrl: + _target_: verl.trainer.config.KLControlConfig + type: fixed + kl_coef: 0.001 + horizon: 10000 + target_kl: 0.1 + use_pf_ppo: false + pf_ppo: + reweight_method: pow + weight_pow: 2.0 + high_level_gamma: 0.95 + bi_level_gae: false +trainer: + balance_batch: true + total_epochs: 30 + total_training_steps: 200 + project_name: ragen_latest + experiment_name: frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + logger: + - console + - wandb + log_val_generations: 0 + rollout_data_dir: null + validation_data_dir: null + nnodes: 1 + n_gpus_per_node: 1 + save_freq: 100 + esi_redundant_time: 0 + resume_mode: auto + resume_from_path: null + val_before_train: true + val_only: false + test_freq: 10 + critic_warmup: 0 + default_hdfs_dir: null + del_local_ckpt_after_load: false + default_local_dir: /mnt/general/wanghy/RAGEN/saves/ + max_actor_ckpt_to_keep: 1 + max_critic_ckpt_to_keep: 1 + ray_wait_register_center_timeout: 300 + device: cuda + use_legacy_worker_impl: auto + local_log_dir: results/ + validation_steps: 1 + generations_to_log_to_wandb: + train: 128 + val: 20 +global_profiler: + _target_: verl.utils.profiler.ProfilerConfig + tool: null + steps: null + profile_continuous_steps: false + save_path: outputs/profile + global_tool_config: + nsys: + _target_: verl.utils.profiler.config.NsightToolConfig + discrete: false + controller_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + worker_nsight_options: + trace: cuda,nvtx,cublas,ucx + cuda-memory-usage: 'true' + cuda-graph-trace: graph + capture-range: cudaProfilerApi + capture-range-end: null + kill: none + torch_memory: + trace_alloc_max_entries: 100000 + stack_depth: 32 + context: all + stacks: all + kw_args: {} +ray_kwargs: + ray_init: + num_cpus: null + timeline_json_file: null +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. The observation includes + both a symbol grid and zero-indexed coordinates for the start, goal, player, + and any holes. + + Coordinates range from the top-left corner (0, 0) to the bottom-right corner + (5, 5). + + Beware that the ice is slippery, so the agent might slide and end up in an unintended + tile. + + Respond with a sequence of actions such as Left || Up || Up. + + ' + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +system: + CUDA_VISIBLE_DEVICES: 2 +seed: + train: 10000 + val: 123 +micro_batch_size_per_gpu: 1 +ppo_mini_batch_size: 32 +model_path: /mnt/general/wanghy/LLaMA-Factory/saves/qwen3/full/sft/qwen2.5_0.5B_it_frozen_lake_subagent_newenv_noslippery +enable_response_mask: true +grpo_advantage_length_weight: false +lora: + rank: 0 + alpha: 16 + target_modules: all-linear +agent_proxy: + max_context_window: -1 + max_turn: 25 + action_sep: '||' + max_actions_per_turn: 1 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 8 + val: + env_groups: 256 + group_size: 1 + env_configs: + tags: + - CoordFrozenLake + n_groups: + - 256 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null diff --git a/outputs/2025-11-21/11-52-40/.hydra/hydra.yaml b/outputs/2025-11-21/11-52-40/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3d769251c26ab4b232cc166b133d627ab267115f --- /dev/null +++ b/outputs/2025-11-21/11-52-40/.hydra/hydra.yaml @@ -0,0 +1,176 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: + - system.CUDA_VISIBLE_DEVICES=2 + - trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + - algorithm.adv_estimator=gae + - algorithm.kl_ctrl.kl_coef=0.001 + - actor_rollout_ref.actor.kl_loss_coef=0.001 + - actor_rollout_ref.actor.clip_ratio_high=0.2 + - actor_rollout_ref.rollout.rollout_filter_ratio=1 + job: + name: train + chdir: null + override_dirname: actor_rollout_ref.actor.clip_ratio_high=0.2,actor_rollout_ref.actor.kl_loss_coef=0.001,actor_rollout_ref.rollout.rollout_filter_ratio=1,algorithm.adv_estimator=gae,algorithm.kl_ctrl.kl_coef=0.001,system.CUDA_VISIBLE_DEVICES=2,trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery + id: ??? + num: ??? + config_name: _3_frozen_lake + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-21/11-52-40 + choices: + reward_model: dp_reward_model + critic: dp_critic + critic/../engine@critic.model.fsdp_config: fsdp + critic/../optim@critic.optim: fsdp + model@actor_rollout_ref.model: hf_model + rollout@actor_rollout_ref.rollout: rollout + ref@actor_rollout_ref.ref: dp_ref + ref/../engine@actor_rollout_ref.ref.fsdp_config: fsdp + data: legacy_data + actor@actor_rollout_ref.actor: dp_actor + actor/../engine@actor_rollout_ref.actor.fsdp_config: fsdp + actor/../optim@actor_rollout_ref.actor.optim: fsdp + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-21/11-52-40/.hydra/overrides.yaml b/outputs/2025-11-21/11-52-40/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f7c26ea28e08a732c470ca489a2e8bb10ce4eea7 --- /dev/null +++ b/outputs/2025-11-21/11-52-40/.hydra/overrides.yaml @@ -0,0 +1,7 @@ +- system.CUDA_VISIBLE_DEVICES=2 +- trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery +- algorithm.adv_estimator=gae +- algorithm.kl_ctrl.kl_coef=0.001 +- actor_rollout_ref.actor.kl_loss_coef=0.001 +- actor_rollout_ref.actor.clip_ratio_high=0.2 +- actor_rollout_ref.rollout.rollout_filter_ratio=1 diff --git a/outputs/2025-11-21/11-52-40/train.log b/outputs/2025-11-21/11-52-40/train.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-21/12-15-00/.hydra/config.yaml b/outputs/2025-11-21/12-15-00/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d209ebc65094ccfed4e17160dce9be52bacc8eba --- /dev/null +++ b/outputs/2025-11-21/12-15-00/.hydra/config.yaml @@ -0,0 +1,254 @@ +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. The observation includes + both a symbol grid and zero-indexed coordinates for the start, goal, player, + and any holes. + + Coordinates range from the top-left corner (0, 0) to the bottom-right corner + (5, 5). + + Beware that the ice is slippery, so the agent might slide and end up in an unintended + tile. + + Respond with a sequence of actions such as Left || Up || Up. + + ' + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +enable_response_mask: true +system: + CUDA_VISIBLE_DEVICES: '0' +seed: + train: 10000 + val: 123 +model_path: /mnt/general/wanghy/RAGEN/saves/global_step_200/actor_hf +lora: + rank: 0 + alpha: 64 + target_modules: all-linear +actor_rollout_ref: + model: + path: ${model_path} + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + rollout: + name: vllm + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + tensor_model_parallel_size: 1 + dtype: bfloat16 + max_model_len: 7200 + prompt_length: 1 + response_length: 400 + gpu_memory_utilization: 0.9 + max_num_batched_tokens: 8192 + enforce_eager: true + free_cache_engine: true + enable_chunked_prefill: false + disable_log_stats: false + do_sample: true + val_kwargs: + do_sample: true + temperature: 0.5 + top_p: 1.0 + top_k: -1 + logprobs: 20 +agent_proxy: + max_context_window: -1 + max_turn: 25 + action_sep: '||' + max_actions_per_turn: 1 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - FrozenLake + n_groups: + - 8 + val: + env_groups: 32 + group_size: 128 + env_configs: + tags: + - FrozenLake + n_groups: + - 32 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null +output: + dir: results/eval + filename: val_rollouts.pkl + append_timestamp: true + keep_batch_keys: null + keep_non_tensor_keys: null + keep_meta_info: true diff --git a/outputs/2025-11-21/12-15-53/.hydra/config.yaml b/outputs/2025-11-21/12-15-53/.hydra/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d209ebc65094ccfed4e17160dce9be52bacc8eba --- /dev/null +++ b/outputs/2025-11-21/12-15-53/.hydra/config.yaml @@ -0,0 +1,254 @@ +custom_envs: + SimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + LargerSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + dim_x: 8 + dim_y: 8 + num_boxes: 2 + max_steps: 100 + search_depth: 10 + SokobanDifferentGridVocab: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. \nYou are the player and\ + \ you need to push all boxes to targets. \nWhen you are right next to a box,\ + \ you can push it by moving in the same direction. \nYou cannot push a box through\ + \ a wall, and you cannot pull a box. \nThe answer should be a sequence of actions,\ + \ like Right || Right || Up\n" + max_tokens: 100 + env_config: + search_depth: 30 + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + grid_lookup: + 0: W + 1: . + 2: G + 3: C + 4: B + 5: A + 6: '@' + grid_vocab: + W: wall + .: empty + G: target + C: box on target + B: box + A: player + '@': player on target + CoordSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: "You are solving the Sokoban puzzle. You are the player and you\ + \ need to push all boxes to targets.\nYou are provided with a symbol grid and\ + \ the zero-indexed coordinates of the player, each box, and each target. \n\ + Coordinates range from the top-left corner (0, 0) to the bottom-right corner\ + \ (5, 5). \nWhen you are exactly next to a box, you can push it by moving in\ + \ the same direction. \nYou cannot push a box through a wall, and you cannot\ + \ pull a box.\nThe answer should be a sequence of actions, like Right\ + \ || Right || Up.\n" + max_tokens: 120 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + observation_format: grid_coord + VisualSimpleSokoban: + env_type: sokoban + max_actions_per_traj: 10 + env_instruction: You are solving the Sokoban puzzle. You are the player and you + need to push all boxes to targets. When you are right next to a box, you can + push it by moving in the same direction. You cannot push a box through a wall, + and you cannot pull a box. The answer should be a sequence of actions, like + Right || Right || Up + max_tokens: 100 + env_config: + dim_x: 6 + dim_y: 6 + num_boxes: 1 + max_steps: 100 + render_mode: rgb_array + Countdown: + env_type: countdown + max_actions_per_traj: 1 + env_instruction: 'You are solving the Countdown puzzle. You should use the num + list to create an equation that equals the target. Example answer format: + To find an equation using [3, 5, 2] to get 4. Let''s check 2 + 5 = 7, 7 - 3 + = 4. So the answer is 2 + 5 - 3 = 4. 2 + 5 - 3' + max_tokens: 100 + env_config: null + Bandit: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: train + BanditTest: + env_type: bandit + max_actions_per_traj: 1 + env_instruction: '' + max_tokens: 100 + env_config: + split: test + FrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. Forbid the whole and + go to the target. You may move to the unintended direction due to the slippery + ice. Example answer format: To forbid the hole and go to the target, + I should go left then go up.Left || Up' + max_tokens: 100 + env_config: null + CoordFrozenLake: + env_type: frozen_lake + max_actions_per_traj: 25 + env_instruction: 'You are solving the FrozenLake puzzle. The observation includes + both a symbol grid and zero-indexed coordinates for the start, goal, player, + and any holes. + + Coordinates range from the top-left corner (0, 0) to the bottom-right corner + (5, 5). + + Beware that the ice is slippery, so the agent might slide and end up in an unintended + tile. + + Respond with a sequence of actions such as Left || Up || Up. + + ' + max_tokens: 120 + env_config: + observation_format: grid_coord + MetamathQA: + env_type: metamathqa + max_actions_per_traj: 1 + env_instruction: 'You are solving Math problems. ' + max_tokens: 100 + env_config: null + WebShop: + env_type: webshop + max_actions_per_traj: 9 + env_instruction: 'You are browsing an online shop. Based on the instruction, buy + a product that close to the production description. You need to search, read + the search results, pick a product, choose the size and color and buy. You should + only choose action from the available actions list provided later. Example + process: I need a gingko light and 20x20 pillow cover that is hand painted. + First search[gingko light 20x20 pillow cover hand painted], answer format: search[blanket + with fleece throw]. Valid answer is search[] or click[].' + max_tokens: 200 + env_config: + dataset: small + Lean: + env_type: lean + max_actions_per_traj: 30 + env_instruction: You are a Lean theorem prover. Given a Lean theorem statement, + propose a sequence of tactics that completes the proof. Think step by step about + which tactics to apply next. Provide tactics separated by '||', for example + intro || simp || rfl. + max_tokens: 512 + env_config: null +enable_response_mask: true +system: + CUDA_VISIBLE_DEVICES: '0' +seed: + train: 10000 + val: 123 +model_path: /mnt/general/wanghy/RAGEN/saves/global_step_200/actor_hf +lora: + rank: 0 + alpha: 64 + target_modules: all-linear +actor_rollout_ref: + model: + path: ${model_path} + lora_rank: ${lora.rank} + lora_alpha: ${lora.alpha} + target_modules: ${lora.target_modules} + rollout: + name: vllm + log_prob_micro_batch_size_per_gpu: ${micro_batch_size_per_gpu} + tensor_model_parallel_size: 1 + dtype: bfloat16 + max_model_len: 7200 + prompt_length: 1 + response_length: 400 + gpu_memory_utilization: 0.9 + max_num_batched_tokens: 8192 + enforce_eager: true + free_cache_engine: true + enable_chunked_prefill: false + disable_log_stats: false + do_sample: true + val_kwargs: + do_sample: true + temperature: 0.5 + top_p: 1.0 + top_k: -1 + logprobs: 20 +agent_proxy: + max_context_window: -1 + max_turn: 25 + action_sep: '||' + max_actions_per_turn: 1 + use_turn_scores: false + enable_think: true + reward_normalization: + grouping: state + method: identity +es_manager: + format_penalty: -0.1 + train: + env_groups: 8 + group_size: 16 + env_configs: + tags: + - FrozenLake + n_groups: + - 8 + val: + env_groups: 32 + group_size: 128 + env_configs: + tags: + - FrozenLake + n_groups: + - 32 +ctx_manager: + generation: + gen_config: + response_length: ${actor_rollout_ref.rollout.response_length} + temperature: ${actor_rollout_ref.rollout.temperature} + top_p: ${actor_rollout_ref.rollout.top_p} + top_k: ${actor_rollout_ref.rollout.top_k} + kwargs: null +output: + dir: results/eval + filename: val_rollouts.pkl + append_timestamp: true + keep_batch_keys: null + keep_non_tensor_keys: null + keep_meta_info: true diff --git a/outputs/2025-11-21/12-15-53/.hydra/hydra.yaml b/outputs/2025-11-21/12-15-53/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..81e801b7c7da62dd30c93ab880c1bd0595337ac9 --- /dev/null +++ b/outputs/2025-11-21/12-15-53/.hydra/hydra.yaml @@ -0,0 +1,157 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: [] + job: + name: agent_proxy + chdir: null + override_dirname: '' + id: ??? + num: ??? + config_name: eval.yaml + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-21/12-15-53 + choices: + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-21/12-15-53/agent_proxy.log b/outputs/2025-11-21/12-15-53/agent_proxy.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-21/13-46-52/.hydra/hydra.yaml b/outputs/2025-11-21/13-46-52/.hydra/hydra.yaml new file mode 100644 index 0000000000000000000000000000000000000000..29546ef446edc132d3abd2503f0922b1554e5ff7 --- /dev/null +++ b/outputs/2025-11-21/13-46-52/.hydra/hydra.yaml @@ -0,0 +1,157 @@ +hydra: + run: + dir: outputs/${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${hydra.job.num} + launcher: + _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher + sweeper: + _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper + max_batch_size: null + params: null + help: + app_name: ${hydra.job.name} + header: '${hydra.help.app_name} is powered by Hydra. + + ' + footer: 'Powered by Hydra (https://hydra.cc) + + Use --hydra-help to view Hydra specific help + + ' + template: '${hydra.help.header} + + == Configuration groups == + + Compose your configuration from those groups (group=option) + + + $APP_CONFIG_GROUPS + + + == Config == + + Override anything in the config (foo.bar=value) + + + $CONFIG + + + ${hydra.help.footer} + + ' + hydra_help: + template: 'Hydra (${hydra.runtime.version}) + + See https://hydra.cc for more info. + + + == Flags == + + $FLAGS_HELP + + + == Configuration groups == + + Compose your configuration from those groups (For example, append hydra/job_logging=disabled + to command line) + + + $HYDRA_CONFIG_GROUPS + + + Use ''--cfg hydra'' to Show the Hydra config. + + ' + hydra_help: ??? + hydra_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][HYDRA] %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + root: + level: INFO + handlers: + - console + loggers: + logging_example: + level: DEBUG + disable_existing_loggers: false + job_logging: + version: 1 + formatters: + simple: + format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s' + handlers: + console: + class: logging.StreamHandler + formatter: simple + stream: ext://sys.stdout + file: + class: logging.FileHandler + formatter: simple + filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log + root: + level: INFO + handlers: + - console + - file + disable_existing_loggers: false + env: {} + mode: RUN + searchpath: [] + callbacks: {} + output_subdir: .hydra + overrides: + hydra: + - hydra.mode=RUN + task: [] + job: + name: agent_proxy + chdir: null + override_dirname: '' + id: ??? + num: ??? + config_name: eval.yaml + env_set: {} + env_copy: [] + config: + override_dirname: + kv_sep: '=' + item_sep: ',' + exclude_keys: [] + runtime: + version: 1.3.2 + version_base: '1.3' + cwd: /mnt/general/wanghy/RAGEN + config_sources: + - path: hydra.conf + schema: pkg + provider: hydra + - path: /mnt/general/wanghy/RAGEN/config + schema: file + provider: main + - path: /mnt/general/wanghy/RAGEN/verl/verl/trainer/config + schema: file + provider: command-line + - path: '' + schema: structured + provider: schema + output_dir: /mnt/general/wanghy/RAGEN/outputs/2025-11-21/13-46-52 + choices: + hydra/env: default + hydra/callbacks: null + hydra/job_logging: default + hydra/hydra_logging: default + hydra/hydra_help: default + hydra/help: default + hydra/sweeper: basic + hydra/launcher: basic + hydra/output: default + verbose: false diff --git a/outputs/2025-11-21/13-46-52/.hydra/overrides.yaml b/outputs/2025-11-21/13-46-52/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fe51488c7066f6687ef680d6bfaa4f7768ef205c --- /dev/null +++ b/outputs/2025-11-21/13-46-52/.hydra/overrides.yaml @@ -0,0 +1 @@ +[] diff --git a/outputs/2025-11-21/13-50-23/agent_proxy.log b/outputs/2025-11-21/13-50-23/agent_proxy.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/outputs/2025-11-21/14-26-53/.hydra/overrides.yaml b/outputs/2025-11-21/14-26-53/.hydra/overrides.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f7c26ea28e08a732c470ca489a2e8bb10ce4eea7 --- /dev/null +++ b/outputs/2025-11-21/14-26-53/.hydra/overrides.yaml @@ -0,0 +1,7 @@ +- system.CUDA_VISIBLE_DEVICES=2 +- trainer.experiment_name=frozen_lake-ppo-frommlp-singleaction-newenv-noslippery +- algorithm.adv_estimator=gae +- algorithm.kl_ctrl.kl_coef=0.001 +- actor_rollout_ref.actor.kl_loss_coef=0.001 +- actor_rollout_ref.actor.clip_ratio_high=0.2 +- actor_rollout_ref.rollout.rollout_filter_ratio=1 diff --git a/outputs/2025-11-21/14-30-20/train.log b/outputs/2025-11-21/14-30-20/train.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391